.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: none;
}
/* ######### Default class for drop down menus ######### */
.anylinkcss{
position: absolute;
left: 0;
top: 0;
margin-top: 15px;
margin-left: -10px;
visibility: hidden;
border: 1px solid #fff;
border-bottom-width: 0;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #000;
width: 275px; /* default width for menu */
-moz-border-radius: 0 5px 5px 0;
border-radius: 0 5px 5px 0;
display: none;
}
@media only screen and (min-width: 897px) { 
.anylinkcss{
display: block;
}
}
.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.anylinkcss ul li a{
max-width: 257px;
display: block;
border-bottom: 1px solid #fff;
padding: 8px;
font-size: 1em;
line-height: 1em;
text-decoration: none;
color: #fff;
text-transform: uppercase;
}
.anylinkcss a:hover{ /*hover background color*/
background: #97ADD6;
color: #fff;
}
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
max-height: 173px;
margin-top: 15px;
margin-left: -10px;
z-index: 99; /*zIndex for shadow*/
background: #727176;
-moz-border-radius: 0 5px 5px 0;
border-radius: 0 5px 5px 0;
visibility: hidden;
display: none;
}
@media only screen and (min-width: 897px) { 
.anylinkshadow{
display: block;
}
}