/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 3px solid #c6c5a6;
border-bottom-width: 0;
font: normal 12px Verdana,Arial,Helvetica,sans-serif;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #c6c5a6;
width: 363px; /* default width for menu */
height:34px;
max-height:31px;
}

.anylinkcss ul{
width:362px;
max-width:360px;
height:26px;
margin: 0;
padding: 0;
list-style-type: none;
border:1px #a2a188 solid;
}

.anylinkcss ul li{
margin:0;
padding:0;
width:90px;
float:left;
clear:none
}

.anylinkcss ul li a:link, .anylinkcss ul li a:visited{
float:left;
clear:none;
width:90px;
max-width:70px;
color:black;
height:26px;
line-height:26px;
text-decoration: none;
padding:0 10px;
}

.anylinkcss ul li a:active, .anylinkcss ul li a:hover{ /*hover background color*/
color: #c6c5a6;
background: #a2a188;
width:90px;
}

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