
/* css class for scrolling div that pops up - edit to change the appearance and position of the div box */
.menu {
	/* edit to change the appearance */
	font-size: 11px; color: #A50800; background-color: #ffffff; font-weight: bold; text-decoration: none; font-family: arial, verdana, sans-serif;
	width: 116px; height: 250px; 
	border: #000 1px solid;
	
	/* adjust pixels numbers to get exact position */
	margin-top: -2px;
	margin-left: 0px;
	
	/* do not edit */
	visibility: hidden; 
	position: absolute;
	overflow-x: hidden;
	overflow-y: scroll;
}


 
/* css class for the navigation links in normal state - edit to change the appearance of the text links within the css box */
a.navlink {
	font-weight: normal; text-decoration: none; font-size: 11px; width: 160px; color: #000; font-family: arial, verdana, sans-serif; background-color: #ffffff;
	/*padding-bottom: 1px;
	padding-top: 1px;*/
	padding-left: 4px;
}



/* css class for the navigation links for hover, active and visited - edit to change the appearance of the text links within the css box*/
a.navlink:hover, active, visited {
	color: #ffffff; background-color: #316AC5; font-weight: normal; text-decoration: none; font-family: arial, verdana, sans-serif; font-size: 11px;
	/*padding-bottom: 1px;
	padding-top: 1px;*/
	padding-left: 4px;
}






