.hmenu_style{
	/*font: bold 12px "Trebuchet MS";
	background: #414141; /*background of menu bar (default state)*/
	width: 100%;
	text-align: left;
}

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

/*Top level list items*/
.hmenu_style ul li{
	position: relative;
	display: inline;
	float: right;
}

/*Top level menu link items style*/
.hmenu_style ul li a{
	display: block;
	/*background: #414141; /*background of menu items (default state)*/
	padding: 8px 8px 24px;
	/*border-right: 1px solid #778;*/
	color: #2d2b2b;
	text-decoration: none;
}

.hmenu_style ul li span{
	display: block;
	padding: 8px 0px;
	color: #FFF;
}

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

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

.hmenu_style ul li a.active{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: url('../images/menu_hover.jpg') no-repeat bottom center;
}

.hmenu_style ul li a:hover{
	color: #32CAF1;
	background: url('../images/menu_hover.jpg') no-repeat bottom center; /*background of menu items during onmouseover (hover state)*/
}
	
/*1st sub level menu*/
.hmenu_style ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	/*background: #A03603;*/
	background: #999999;
	/*filter:alpha(opacity=80);
	opacity:0.8;*/
}

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

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

/* Sub level menu links style */
.hmenu_style ul li ul li a{
/*font: bold 12px "Trebuchet MS";*/
width: 205px; /*width of sub menus*/
padding: 10px 15px;
border-top-width: 0;
border-bottom: 1px dotted white;
}
.hmenu_style ul li ul li a:hover{
	background: #336699;
}

/* Holly Hack for IE \*/
* html .hmenu_style{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### 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{ /*shadow for NON CSS3 capable browsers*/
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;
}