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

.nav ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px;
 /*bottom spacing between each UL and rest of content*/
}

.nav ul li{
padding-bottom: 2px;
  /*bottom spacing between menu items*/
}

.nav ul li a{
	color: #000066;
	display: block;
	padding-left: 20px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 1px;
	padding-right: 0;
	padding-bottom: 1px;
}

.nav ul li a:visited{
	color: #000066;
	text-decoration: none;
}

.nav ul li a:hover{ /*hover state CSS*/
	color: #000066;
	background-color: #FFFFFF; /*custom bullet list image*/
	background-image: url(../images/here.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}

a.BG{
	color: #333333;
	text-decoration: blink;
}
.nav ul li a.BG{ /*hover state CSS*/
	background-image: url(../images/here.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}