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

.anylinkcss{
font: 10px verdana;
display:none;
line-height: 13px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
width: 100px; /* default width for menu */
}

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

.navsublink{
width: 100%;
display: block;
padding: 1px 0;
text-decoration: none;
text-indent: 5px;
color:#999999;
text-transform:lowercase;
}

.navmainlink{
width: 100%;
display: block;
padding: 1px 0;
text-decoration: none;
text-indent: 0px;
color:#333333;
text-transform:uppercase;
}


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

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

