.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
/*background: yellow;*/
}

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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #EE6648;
color:#EE6648;
/*border-bottom-width: 0;*/
font-size: 12px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FFFFFF;
/*width: 200px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
text-align:left;
}

.anylinkmenu li{
padding-bottom: 3px;
}
.anylinkmenu ul li a{
display: block;
/*border-bottom: 1px solid #EE6648;*/
/*padding: 2px 0;*/
padding: 3px 8px;
text-decoration: none;
}


.anylinkmenu a:hover{ /*hover background color*/
background: #EE6648;
color: #FFFFFF;
}


/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
/*width: 530px;*/
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #EE6648;
/*padding: 10px;*/
font-size: 12px;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #E9E9E9;
}

.anylinkmenucols li{
padding-bottom: 3px;
}

.anylinkmenucols .column{
float: left;
background: #FFFFFF;
color:#EE6648;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
text-align:left;
}

.anylinkmenucols .column ul li a{
display: block;
padding: 3px 8px;
text-decoration: none;
}

.anylinkmenucols .column a:hover{ /*hover background color*/
background: #EE6648;
color: #FFFFFF;
}

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