#navcontainer{
	font: normal 1.2em "Lucida Grande", Arial, Helvetica, sans-serif;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	width: 760px;
	height: 35px;
	text-align: center;
	overflow: display;
	background-color: #3199B0;
	background-image: url(../img/menu_down_new.png);
	background-repeat: repeat-x;
	background-position: top;
}

#navcontainer ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
#navcontainer ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
#navcontainer ul li a{
	display: block;
	/*background of top menu buttons (default state)*/
padding: 8px 14px 12px 14px;
	color: #fff;
	text-decoration: none;
	background-color: #1160AE;
	background-image: url(../img/menu_down_new.png);
	background-repeat: repeat-x;
	background-position: top;
}

#navcontainer ul li a:hover {
	color: #fff;
	background-color: #022bd2;
	background-image: url(../img/menu_hover_new.png);
	background-repeat: repeat-x;
	background-position: 0 0;
/*background of top menu buttons during hover state*/
}

#navcontainer ul li a:selected {
background: #4e4e4e url(../img/menu_select.png) 0 0 repeat-x; 
/*background of top menu buttons during hover state*/
}
	
/*1st sub level menu*/
#navcontainer ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;

}

/*Sub level menu list items (undo style from Top level List Items)*/
#navcontainer ul li ul li{
display: list-item;
float: none;

}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#navcontainer ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
#navcontainer ul li ul li a{
	font: normal 12px "Lucida Grande", Arial, Helvetica, sans-serif;
	width: 160px; /*width of sub menus*/
	background-color: #3199B0;
	background-image: none;
	color: #fff;
	padding: 4px 5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #fff;
	text-align:left;
}

#navcontainer ul li ul li a:hover{ /*sub menus hover style*/
	color: #fff;
	background-color: #09325d;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 7px;
right: 5px;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 5px;
}

