@charset "utf-8";
.redtabs{
	width: 100%;
	overflow: hidden;
	background-color: #cc0033;


/*border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/*/
	text-align: center;
	font: 12px Arial;
}

.redtabs ul{
	margin: 0;
	padding: 0;
	padding-left: 5px; /*offset of tabs relative to browser left edge*/
	font:  12px Arial;
	list-style-type: none;
}

.redtabs li{
display: inline;
margin: 0;
}

.redtabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 4px 5px; /*padding inside each tab*/
	/*border-right: 1px solid white; right divider between tabs*/
	color: white;
	background: #cc0033; /*background of tabs (default state)*/
}

.redtabs li a:visited{
	color: #FFFFFF;
}

.redtabs li a:hover, .redtabs li.selected a{
	background: white; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: #cc0033;

}
.olivetabs{
	width: 100%;
	overflow: hidden;
	background-color: #8c7144;
	/*border-bottom: 1px solid white;   white line in footer below menu */
	font: 11px Arial;
}

.olivetabs ul{
	margin: 0;
	padding: 0;
	padding-left: 5px; /*offset of tabs relative to browser left edge*/
	font:  12px Arial;
	list-style-type: none;
}

.olivetabs li{
display: inline;
margin: 0;
}

.olivetabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 4px 5px; /*padding inside each tab*/
	/*border-right: 1px solid white; /*right divider between tabs*/
	color: white;
	background: #8c7144; /*background of tabs (default state)*/
}

.olivetabs li a:visited{
color: white;
}

.olivetabs li a:hover, .olivetabs li.selected a{
	background: white; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: #8c7144;

}
