.menu{
font: bold 12px Verdana;
/*background: #414141; /*background of menu bar (default state)*/
width: 100%;
}

.menu ul{
z-index:100;
margin: 0;
/*padding: 6px 0 0 0;*/
list-style-type: none;
}

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

/*Top level menu link items style*/
.menu ul li a{
display: block;
font: bold 12px Verdana;
color: white;
/*padding: 8px 10px;*/
color: #2d2b2b;
text-decoration: none;
}

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

.menu ul li a:link, .menu ul li a:visited{
/*color: white;*/
}

/*CSS class that's dynamically added to the currently active menu items' LI A element*/
.menu ul li a.selected{ 
/*background: black; 
color: white;*/
}

/*background of menu items during onmouseover (hover state)*/
.menu ul li a:hover{
/*background: black; 
color: white;*/
}
	
/*1st sub level menu*/
.menu ul li ul{
background: #adba34;
width:240px;
position: absolute;
padding: 0;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
border: solid 1px #ccc;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li{
display: list-item;
width:215px;
float: left;
clear:left;
}

/* Sub level menu links style */
.menu ul li ul li a{
background: #adba34;
margin:1px;
padding:5px;
font: normal 12px Verdana;
color: #000;
width: 100%; /* width of sub menus */
border: solid 1px #ccc;
}

.menu ul li ul li a:hover {
background-color: #cede3e;
background-image:none;
}

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

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


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

.downarrowclass{
position: absolute;
top: 15px;
right: 15px;
}

.rightarrowclass{
position: absolute;
top: 7px;
right: 20px;
}

/* ######### 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;
}