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

.anylinkcss{
position: absolute;
left: 0;
top: 0;
margin-top:12px;
visibility: hidden;
border: 1px solid #4d73bc;
border-bottom-width: 0;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: lightyellow;
width: 150px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;

}

.anylinkcss ul li a{
display: block;
border-bottom: 1px solid #4d73bc;
padding-left:5px;
text-decoration: none;

}

.anylinkcss a:hover{ /*hover background color*/
background: #d90308;
color: white;
padding-left:5px;
}


