.droplinebar{
overflow: hidden;
}

.droplinebar ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: normal 11px Century Gothic;
background: #7a705d transparent url(../images/skinbar.jpg) center center repeat-x; /*default background of menu bar*/
}

.droplinebar ul li{
display: inline;
}

.droplinebar ul li a{
float: left;
color: #7a705d; /* font color of drop-down menu */
padding: 4px 11px;
text-decoration: none;
}

.droplinebar ul li a:visited{ /* font color of main menu bar and drop-downs */
color: #7a705d;
}

.droplinebar ul li a:hover, .droplinebar ul li .current{ /*background of main menu bar links onMouseover*/
color: #FFFFFF;
background: transparent url(../images/skinbarover.jpg) right center repeat-x;
}

/* Sub level menus*/
.droplinebar ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
background: #FFFFFF; /*sub menu drop-down background color */
visibility: hidden;
}

/* Sub level menu links style */
.droplinebar ul li ul li a{
font: normal 11px Century Gothic;
padding: 6px;
padding-right: 8px;
margin: 0;
border-bottom: 1px solid #7a705d;
}

.droplinebar ul li ul li a:hover{ /*sub menu links' background color onMouseover */
background: #7a705d;
}