.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
/*background: #C2D0EA;*/
color:#f00;
}


/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
padding:5px;
visibility: hidden;
border: 1px solid black;
border-bottom-width: 0;
font: normal 12px Verdana;
text-align:left;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #C2D0EA;
width: 600px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 20px;
list-style-type: square;
background: lightblue;
}

.anylinkcss ul li {
width: 100%;
text-indent: 3px;
padding: 1px 0;
text-decoration: none;
font-weight: normal;
text-indent: 5px;

}

.anylinkcss a:hover{ /*hover background color*/
background: black;
color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;

text-align:left;
font: normal 12px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #C2D0EA;
}

.anylinkcsscols h2{
background: #9CB6E5;
color:#29396B;
padding: 10px;
}
.anylinkcsscols p{
padding: 10px;
}

.anylinkcsscols .column{
width: 250px;
float: left;
padding: 0 10px 0 10px;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 10px 20px 20px 20px;
list-style-type: square;

}

.anylinkcsscols li{
padding-bottom: 3px;
}



/* ######### 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;
}