.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 ######### */
/*drop down menu box style:*/
.anylinkcss{
position: absolute;
left: 0;
top: 0;
margin: 4px 0px 0px 0px;
visibility: hidden;
border: 0px solid #222222;
border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 5px 5px;
box-shadow: 1px 4px 5px #000;
-moz-box-shadow: 1px 4px 5px #000;
-webkit-box-shadow: 1px 4px 5px #000;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
/*background-color: red;*/
/*width: 200px;*/ /* default width for menu */
color: #ffffff;
text-shadow: 1px 1px 2px #222222;
background-color: #1872B3;   /*aaaaaa*/
overflow:hidden;
text-decoration: none;
}

/*drop down menu links style:*/
.anylinkcss a:link{ /*hover background color*/
/*
background: black;
color: white;
*/
color: #ffffff;   
text-shadow: 0px 0px 2px #222222;
text-decoration: none;
}

/*drop down menu links style:*/
.anylinkcss a:visited{ /*hover background color*/
/*
background: black;
color: white;
*/
color: #ffffff;   
text-shadow: 0px 0px 2px #222222;
text-decoration: none;
}

/*drop down menu links style:*/
.anylinkcss a:active{ /*hover background color*/
/*
background: black;
color: white;
*/
color: #02ECFB;   
text-shadow: 0px 0px 2px #444444;
/*background-color: #454545;*/ /*#01284F;*/
text-decoration: none;
}

/*drop down menu links style:*/
.anylinkcss a:hover{ /*hover background color*/
/*
background: black;
color: white;
*/
color: #02ECFB;   
text-shadow: 0px 0px 2px #444444;
/*background-color: #454545;*/ /*#01284F;*/
text-decoration: none;
}







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

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
}



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


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 12px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #DEFFCA;
text-decoration: none;
}

.anylinkcsscols .column{
width: 130px;
float: left;
text-decoration: none;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
text-decoration: none;
}

.anylinkcsscols li{
padding-bottom: 3px;
text-decoration: none;
}

/* ######### class for shadow DIV ######### */

/*drop down menu box shadow - NOT IN USE - using standard box shadow style:*/
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
text-decoration: none;
}