@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;
	background-image: url(../images/line.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
}

.nav ul li a{
	color: #000000;
	display: block;
	padding-left: 20px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	width: 130px;
	margin-right: auto;
	margin-left: auto;

}

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

.nav ul li a:hover{ /*hover state CSS*/
	color: #000066; /*custom bullet list image*/
	background-image: url(../images/here.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: none;	
}

.nav ul li a.BIG{ /*hover state CSS*/
	background-image: url(../images/here.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}