.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background-color: #f8e9bd;
text-decoration: underline;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-left: 2px solid #FDB302;
border-right: 2px solid #FDB302;
border-bottom: 0px solid #FDB302;
border-top: 2px solid #FDB302;
font: normal 12px arial;
line-height: 16px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FDB302;
width: 150px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.anylinkmenu ul li  {
border-bottom: 2px solid #FDB302;
}

.anylinkmenu ul li a{
width: 97%;
display: block;
padding: 2px 0px 2px 4px ;
text-decoration: none;
font-weight: bold;
color: #000000;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #ffffff;
padding: 2px 0px 2px 4px; 
color: #000000;
text-decoration: underline;
}

.anylinkmenu2{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-left: 2px solid #FDB302;
border-right: 2px solid #FDB302;
border-bottom: 2px solid #FDB302;
border-top: 2px solid #FDB302;
font: bold 12px arial;
line-height: 16px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #ffffff;
width: 500px; /* default width for menu */
}

.anylinkmenu2 ul{
margin: 0 0 0 10px;
padding: 0;
list-style-type: none;
}
.anylinkmenu2 ul li  {
border-bottom: 0px solid #999999;
float: left;
width: 32%;
}
.anylinkmenu2 ul li a{
width: 96%;
display: block;
padding: 3px 5px 3px 5px;
text-decoration: none;
font-weight: normal;
color: #000000;
}
.anylinkmenu2 a:hover{ /*hover background color*/
background: #FDB302;
padding: 3px 5px 3px 5px;
color: #000000;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 600px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px 10px 10px 15px;
font: normal 12px arial;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #ffffff;
}

.anylinkmenucols li{
padding-bottom: 3px;
background-image: url(../images/1_yell_arrow.png);
background-repeat: no-repeat;
background-position: 0 7px; 
}

.anylinkmenucols .column{
float: left;
padding: 2px 2px;
margin-right: 5px;
background: #ffffff;
width: 31%;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}
 .anylinkmenucols .column ul li{
 
}
.anylinkmenucols .column ul a{
width: 96%;
display: block;
padding: 3px 5px 3px 10px;
text-decoration: none;
font-weight: bold;
color: #000000;
}
.anylinkmenucols .column ul a:hover{ /*hover background color*/
/*background: #FDB302;*/
padding: 3px 5px 3px 10px;
color: #000000;
text-decoration: underline;
}
/* ######### 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;
}