/* ######### Default class for drop down menus ######### */

.second_level{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
/*border: 1px solid #dcdbdb;*/
border-bottom-width: 0;
width: 200px;
margin:0 0 0 2px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
z-index: 150; /* zIndex should be greater than that of shadow's below */
background-color:#f8f0d4;
}

.second_level ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.second_level ul li a{
color:#888888;
width: 100%;
display: block;
text-indent: 3px;
/*border-bottom: 1px solid #dcdbdb;*/
font:bold 10px Verdana, Arial, Helvetica, sans-serif; 
color:#8b898d; 
border-bottom:1px solid #bdbbbf; 
text-decoration: none;
text-indent: 5px;
height:18px;
padding: 2px 0 0 0px;
vertical-align:middle;
}

.second_level a:hover{ /*hover background color*/
background: #eae8ec;
color: #8b898d;
}


/* ######### class for shadow DIV ######### */
.second_levelshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99;
	visibility: hidden;
}