@charset "utf-8";
/* CSS Document */

.tinytabs .tab-section { /* body at tabs bottom */
	background-color: indianred;
	overflow: hidden;
	padding: 15px 2px 2px;
	clear: both;
	border-radius: 8px;
	margin:10px 0px 0px;
	-moz-box-shadow: 7px 8px 16px -6px black;
    -webkit-box-shadow: 7px 8px 16px -6px black;
    box-shadow: 7px 8px 16px -6px black;
}
.tinytabs .tabs .tab { /*inactive tab*/
	display: block; 
	color: indianred; background-color: white;
	margin: 0px 5px 5px; padding: 6px 15px;
	text-decoration: none;
	font-weight: bold;
	border-radius:12px; border:solid 2px indianred;
	font-size: 16pt!important; font-family: 'header-big'!important;
}
.tinytabs .tabs .tab:hover:not(.tab.sel) {
	background-color: #D77B7B; color: white;
	border:solid 2px #D77B7B;
	transition: ease-out 0.2s;
  transform:scale(1.05);
  -webkit-transform:scale(1.05);
  -moz-transform:scale(1.05);
  -ms-transform:scale(1.05);
}
.tinytabs .tab.sel { /*active tab*/
	background-color: indianred; color: white;
	text-shadow: none;
	border-radius:12px;
	border:solid 2px indianred;
	font-size: 16pt!important; font-family: 'header-big'!important;
}




