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

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


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

/*Styles the box behind the words in the drop down menu, basically the div*/
.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border:none;
border-bottom-width: 0;
font-family:Georgia, Goudy, "Times New Roman", Times, serif;
font-size:smaller;
color:#000;
line-height: 1.68em;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #84aac7;
width: 10em; /* default width for menu */
}

/*Styles the drop down list in the menu*/
.anylinkcss ul{
margin: 0;
padding: .4em;
list-style-type: none;
}

/*Styles the links in the drop down menu, before they are rolled over*/
.anylinkcss ul li a{
	color:#000;
width: 100%;
display: block;
text-indent: .19em;
border-bottom: 0px solid;
padding: .06em 0;
text-decoration: none;
text-indent: .08em;
}

/*Styles the links in the drop dowm menu when rolled over*/
.anylinkcss a:hover{ /*hover background color*/
background: #c7d6e8;
color: #2b6a97;
}




