/* ######### CSS for top level tabs ######### */
.tabsmenuclass{
border-bottom: 1px solid #add8e6;
margin-bottom: 1px;
}

.tabsmenuclass ul{
padding: 3px 0;
margin-left: 8px;
margin-top: 1px;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

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

.tabsmenuclass a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #add8e6;
color: #5e5ed9;
background: #F1F5FA top left repeat-x; /*THEME CHANGE HERE*/
}

.tabsmenuclass a:hover, .tabsmenuclass a.selected{
background: white;
color: #DD1EA2;
border-bottom-color: white;
}

.tabsmenuclass li.selected{
}

.tabsmenuclass li.selected a{ /*selected main tab style */
background: white; /*THEME CHANGE HERE*/
border-bottom-color: white;
}

.tabsmenuclass li.selected a:hover{ /*selected main tab style */
text-decoration: none;
}

/* ######### CSS for sub menu container below ######### */

.tabsmenucontentclass{
clear: left;
background: #FFFFFF;
font: 14px Arial;
color: #5e5ed9;
width: auto;
height: 14px;
padding: 4px;
border-bottom: 1px dotted #add8e6;
}

.tabsmenucontentclass ul{
margin: 0;
padding: 0;
list-style-type: none;
color: #5e5ed9;
}

.tabsmenucontentclass a:hover{
text-decoration: underline;
}

.tabsmenucontentclass li a:visited{
color: #0000ee;
}

.tabsmenucontentclass li{
float: left;
margin-right: 2em;
}

#tabs {
	float:left;
	width:100%;
	font-size:93%;
	line-height:normal;
	border-bottom:1px solid #666;
	margin-bottom:1em; /*margin between menu and rest of page*/
	overflow:hidden;
	}

#tabs ul {
	margin:0;
	padding:10px 10px 0 0px;
	list-style:none;
	
	}

#tabs li {
	display:inline;
	margin:0;
	padding:0;
	}

#tabs a {
	float:left;
	background:url("main_data/left.png") no-repeat left top;
	margin:0;
	padding:0 0 0 6px;
	text-decoration:none;
	}

#tabs a span {
	float:left;
	display:block;
	background:url("main_data/right.png") no-repeat right top;
	padding:6px 15px 4px 6px;
	margin-right:2px;
	color:#FFF;
	}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span {float:none;}

/* End IE5-Mac hack */
#tabs a:hover span {
	}

#tabs a:hover {
	background-position:0% -42px;
	}

#tabs a:hover span {
	background-position:100% -42px;
	}
