.droplinebar{
overflow: hidden;
}

.droplinebar ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: normal 14px Times;
background: #ffffff; /*default background of menu bar*/
}

.droplinebar ul li{
display: inline;
}

.droplinebar ul li a{
float: left;
color: black;
padding: 6px 11px;
text-decoration: none;
}

.droplinebar ul li a:visited{
color: black;
}

.droplinebar ul li a:hover, .droplinebar ul li .current{ /*background of main menu bar links onMouseover*/
color: #000000;
background: #83BBD9;
}

/* Sub level menus*/
.droplinebar ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
background: #ffffff; /*sub menu background color */
visibility: hidden;
}

/* Sub level menu links style */
.droplinebar ul li ul li a{
font: normal 12px Times;
color: black;
padding: 9px;
padding-right: 8px;
margin: 1;
border-bottom: 2px white;
}

.droplinebar ul li ul li a:hover{ /*sub menu links' background color onMouseover */
background: #83BBD9;
}