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

.menuTabs{
	border:none;
}

.menuTabs ul{
padding: 3px 0;
margin-left: 0;
margin-top: 0px;
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*/
}

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

.menuTabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #006;
color:#009;
background-color:#FF0; /*THEME CHANGE HERE*/
}

.menuTabs li a:visited{
color:#009;
}

.menuTabs li a:hover{
text-decoration: none;
color: #FF0;			/* TextColor for the first-level MenuItem on Mouse over */
background-color:#03F; /* BACKGROUND Color for the first-level MenuItem on Mouse over */
}

.menuTabs li.selected{
}

.menuTabs li.selected a{ /*selected main tab style */

}

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

/* ######### Style for Drop Down Menu ######### */

.dropMenuDiv{
position:absolute;
top: 0;
border: 1px solid #000; /*THEME CHANGE HERE*/
border-width: 1px 1px;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: #FF3;
width: auto;
visibility: hidden;
}


.dropMenuDiv a{
width: auto;
display: block;
text-indent: 5px;
border: 0 solid #918d8d; /*THEME CHANGE HERE*/
border-bottom-width: 1px;
padding: 2px 2px;
text-decoration: none;
color: black;
}

* html .dropMenuDiv a{ /*IE only hack*/
width: 100%;
}

.dropMenuDiv a:hover{ /*THEME CHANGE HERE*/
background-color: #06C;
color:#FF0;
}