.droplinebar{
overflow: hidden;
}

.droplinebar ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: bold 13px Arial;
/*background: #242c54 url(bluedefault.gif) center center repeat-x; /*default background of menu bar*/
background-image:url(../Images/MenuBackground.png); // added
}

.droplinebar ul li{
display: inline;
}

.droplinebar ul li a{
float: left;
color: white;
/*padding: 9px 11px;*/
padding-right: 15px; // added
padding-left: 15px; // added
text-decoration: none;
}

.droplinebar ul li a:visited{
color: white;
}

.droplinebar ul li a:hover, .droplinebar ul li .current{ /*background of main menu bar links onMouseover*/
color: white;
/*background: transparent url(blueactive.gif) center center repeat-x;*/
background: #242c54; // added
}

/* Sub level menus*/
.droplinebar ul li ul{
	position: absolute;
	z-index: 100;
	/*left: 0;
top: 0;*/
left: 408px;



// added
top: 10px; // added
background: #303c76; /*sub menu background color 
/*background-image:url(../Images/MenuBackground.png); // added*/
visibility: hidden;
}

/* Sub level menu links style */
.droplinebar ul li ul li a{
font: normal 12px Verdana;
padding: 5px;
/*padding-right: 8px;
margin: 0;*/
padding-right: 15px; // added
padding-left: 15px;  // added
margin-top:15px;  // added
marker-offset:15px; // added
/*border-bottom: 1px solid navy;*/
background-image:url(../Images/MenuBackground.png); // added
}

.droplinebar ul li ul li a:hover{ /*sub menu links' background color onMouseover */
background: #242c54;
}

