.droplinetabs{
overflow: hidden;
border-bottom: 1px solid gray; /*underline across bottom of main tabs*/
width: 960px;
float: left;
display: inline;
height: 33px;
}

.droplinetabs ul{
margin: 0;
padding: 0;
width: 100%;
list-style: none;
}

.droplinetabs li{
display: inline;
padding: 0;
}


.droplinetabs a{
float: left;
color: white;
background: url(/Content/button.png) no-repeat left top; 
padding-top: 8px;
height: 25px;
text-decoration: none;
width: 120px;
}

.droplinetabs a:link, .droplinetabs a::visited, .droplinetabs a:active{
}

.droplinetabs a span{
float: left;
display: block;
padding: 7px 9px 3px 6px;
cursor: pointer;
}

.droplinetabs a span{
float: none;
}


.droplinetabs a:hover{
background: url(/Content/buttonhover.png); /*background color of tabs onMouseover*/
color: #000;
}

.droplinetabs a:hover span{
background-color: transparent;
}

/* Sub level menus*/
.droplinetabs ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
visibility: hidden;
background: url(/Content/submenuhover.png) no-repeat;
height: 33px;
}

/* Sub level menu links style */
.droplinetabs ul li ul li a
{
	font-size: 14px;
	font-weight: normal;
color: #28537E;
background: none;
width: auto;
padding-left: 10px;
padding-right: 10px;
}

.droplinetabs ul li ul li a span{
background: #c76023; /*sub menu background color */
}

.droplinetabs ul li ul li a:hover{ /*sub menu links' background color onMouseover. Add rounded edges in capable browsers */
                                   background: #dadada;
}
