@charset "utf-8";
/* CSS Document */

.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 ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
margin-top:2px;
visibility: hidden;
border:none;
font: bold 13px Verdana;
line-height: 22px;
z-index: 1000; /* zIndex should be greater than that of shadow's below */
background:#354E6D; /* darker blue */
width: 260px; /* default width for menu */
}

.anylinkcss ul{
margin: 0px 5px 0px 5px;
padding: 5px 0px 5px 0px;
list-style-type: none;
}

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

/*hover background color*/
.anylinkcss a:hover{ 
font-weight:bold;
background: #6893B6;/* lighter blue */
}

/* ######### Alternate multi-column class for drop down menus ######### */
.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: none;
padding: 10px;
font: bold 13px Verdana;
line-height: 22px;
z-index: 1000; /*zIndex should be greater than that of shadow's below*/
background:#354E6D;
}

.anylinkcsscols .column{
width: 130px;
float: left;
margin: 0px 5px 0px 0px;
}

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

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

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

.anylinkcsscols .column ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom:none;
padding: 1px 0;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
color:#FFFFFF;
}

/*hover background color*/
.anylinkcsscols .column a:hover{ 
font-weight:bold;
background: #6893B6;/* lighter blue */
}
/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 999; /*zIndex for shadow*/
background: black;
visibility: hidden;
}