.dmenu{
	font: bold 11px Verdana;

	width: 880px;
	margin-left: 10px;
}
#menucontainer{
height:30px;
}

.dmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;

}

/*Top level list items*/
.dmenu ul li{
position: relative;
display: inline;
float: left;

 
}
.dmenu ul li current{
background-image: url(../Images/ahover.png);
 
}

*+html .dmenu ul li{top:-2px; }


/*Top level menu link items style*/
.dmenu ul li a{
	display: block; /*background of menu items (default state)*/
	color: white;
	color: #2d2b2b;
	text-decoration: none;
	padding-top: 7px;
	padding-right: 23px;
	padding-bottom: 4px;
	padding-left: 23px;
	height: 19px;
	margin-left: 2px;

}

* html .dmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;

}

.dmenu ul li a:link, .dmenu ul li a:visited{
color: white;

}

.dmenu li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background-image: url(../Images/ahover.png);
	color: white;
	background-repeat: repeat-x;
}

.dmenu li a:hover{
	background-image: url(../Images/ahover.png);
	background-position:top
	color: white;
	background-repeat: repeat-x;
	text-decoration:none

}



/*1st sub level menu*/
.dmenu ul li ul{
position: absolute;
left: 0;

display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
background-color: #C60000;
}

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

}

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

/* Sub level menu links style */
.dmenu ul li ul li a{
	width: 170px; /*width of sub menus*/
	padding: 5px;
	margin: 0;
	font-family: Verdana;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
}
.dmenu ul li ul li a:hover{
font: normal 11px Verdana;
width: 170px; /*width of sub menus*/
padding: 5px;
margin: 0;
font-weight: bold;


}


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

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

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

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.6;
}

