.hmenu { /*background of menu bar (default state)*/ width: 100%; }
.hmenu ul{ z-index:100; margin: 0; padding: 0; list-style-type: none; }

/*Top level list items*/
.hmenu ul li{ position: relative; display: inline; float: left; }

/*Top level menu link items style*/
.hmenu ul li a{ display: block; /* background: #414141; color: white; */ }

/*IE6 hack to get sub menu links to behave correctly*/
* html .hmenu ul li a { display: inline-block; }

.hmenu ul li a:link, .hmenu ul li a:visited{ /*color: white;*/ }

/*CSS class that's dynamically added to the currently active menu items' LI A element*/
.hmenu ul li a.selected{ font-weight:bold !important; color:#000!important; /*background: black; color: white;*/ }

/*background of menu items during onmouseover (hover state)*/
.hmenu ul li a:hover {  }


/*1st sub level menu*/
.hmenu ul li ul{ height:auto !important; margin:0px !important; padding:0px !important; background:#E1DBC7 !important; width:180px !important; position: absolute; left: 0; display: none; visibility: hidden; }

/*Sub level menu list items (undo style from Top level List Items)*/
.hmenu ul li ul li{ display: list-item !important; float: none !important; width:auto !important; text-align:left; }

.hmenu ul li ul li a { text-align:left !important; }

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.hmenu ul li ul li ul{ top: 0; }

/* Sub level menu links style */
.hmenu ul li ul li a{ width: 160px; /*width of sub menus*/ padding: 5px; margin: 0; border-top-width: 0;  }

.hmenu ul li ul li a:hover {
	background:none !important;
}

/* Holly Hack for IE \*/
* html .hmenu{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{ position: absolute; left: 0; top: 0; width: 0; height: 0; background: silver; }
.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/ opacity: 0.8; }
