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

.anylinkcss {
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 0;
line-height: 16px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #5592A0;
}

.anylinkcss a {
display: block;
border-top: 2px solid #FFFFFF;
padding: 5px 30px 7px 20px;
color: #FFFFFF;
font-size: 14px;
}

.anylinkcss a:hover { /*hover background color*/
background: #088A84;
}

.anylinkshadow { /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}
