/* THIS CSS IS FOR MOUSEOVER MENU */

/* The following functions are for mouseover inline menus */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.ubercolortabs{
padding: 0;
width: 100%;
overflow: hidden;
background: transparent;
}

.ubercolortabs ul{
font: bold 11px Arial, Verdana, sans-serif;
margin: 0;
padding: 0;
list-style: none;
}

.ubercolortabs li{
display: inline;
margin: 0px 2px 0em 0px;padding: 0em;}

/* Hide this for now 

.ubercolortabs a{
float: left;
color: white;
background: #804000
url(media/roundleft.gif) no-repeat left top; /*default background color of tabs, left corner image 
margin: 0 2px 0 0;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}
*/

.ubercolortabs a{
float: left;
color: white;
background: green;
background-image: url(media/roundleft.gif) no-repeat left top; /*default background color of tabs, left corner image */
margin: 0px 2px 0em 0px;
padding: 0 0 1px 3px;
text-decoration: none;
letter-spacing: 1px;}
.ubercolortabs a span{
float: left;
display: block;
background: transparent url(media/roundright.gif) no-repeat right top; /*right corner image*/
padding: 7px 9px 3px 6px;
cursor: pointer;
}

.ubercolortabs a span{
float: none;
}

/* Change mouseover from brown to light green 

.ubercolortabs a:hover, .ubercolortabs li.selected a{
background-color: #AE5300; /*background color of tabs onMouseover 
color: white;
}
*/

/* Make mouseover color light green */

.ubercolortabs a:hover, .ubercolortabs li.selected a{
background-color: #00ff00; /*background color of tabs onMouseover */
color: white;
}

.ubercolortabs a:hover span{
background-color: transparent;
}

.ubercolordivider{ /*CSS for horizontal line.*/
clear: both;
padding: 0;
width: 100%;
height: 2px;
line-height: 5px;
background: #00ff00; /*background color of horizontal line */
border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
}


/* End of the Mouseover functions for inline menus */

