/* ######### Default class for drop down menus ######### */

.anylinkmenu1{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #081003;
border-bottom-width: 0;
font: normal 10px "Lucida Sans Unicode","Lucida Grande",Verdana,Arial,Helvetica,sans-serif;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #353f2d;
width: 136px; /* default width for menu */
}

.anylinkmenu1 ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu1 ul li a{
width: 100%;
display: block;
border-bottom: 1px solid #081003;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-align:center;
}

.anylinkmenu1 a:hover{ /*hover background color*/
background: #edebc5;
color: #2b3524;
}

.anylinkmenu2{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #081003;
border-bottom-width: 0;
font: normal 10px "Lucida Sans Unicode","Lucida Grande",Verdana,Arial,Helvetica,sans-serif;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #353f2d;
width: 165px; /* default width for menu */
}

.anylinkmenu2 ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu2 ul li a{
width: 100%;
display: block;
border-bottom: 1px solid #081003;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-align:center;
}

.anylinkmenu2 a:hover{ /*hover background color*/
background: #edebc5;
color: #2b3524;
}





/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}