@charset "utf-8";
/* CSS Document */
.menutabs{
	width: 100%;
	overflow: hidden; /*bottom horizontal line that runs beneath tabs*/
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FBAF33;
	border-bottom-color: #FBAF33;
}

.menutabs ul{
	margin: 0;
	padding-left: 35px;
	list-style-type: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-weight: bold;
	color: #F37835;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	text-transform: uppercase;
}

.menutabs li{
display: inline;
margin: 0;
}

.menutabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color: #F37835; /*background of tabs (default state)*/
	background-color: #FFFFFF;
}

.menutabs li a:visited{
	color: #F37835;
}
.menutabs li a:hover{
	background: #F37835; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: #FFFFFF;
}
.menutabs li a:active{
	background: #F37835; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: #FFFFFF;
} 

