.droplinetabs{
overflow: hidden;
}
.droplinetabs a span{
float: none;
}
.droplinetabs a:hover{
background-color: #b05016; /*background color of tabs onMouseover*/
color: white;
}
.droplinetabs a:hover span{
background-color: transparent;
}
/* Sub level menus*/
.droplinetabs ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
height:40px;
background: #007dbe; /*sub menu background color */
visibility: hidden;
padding-left:10px;
}
/* Sub level menu links style */
.droplinetabs ul li ul li a{
	height:40px;
	line-height:40px;
	color: #75cffe;
}
.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 */
color: #fff;
}

