/* remove underline from state abbreviations in the svg map */
svg a {
	text-decoration:none
	}

/* set State border color and weight */
svg a path{
	stroke:white;
	stroke-width:1.5px;
	}
	svg a:hover path {
		fill-opacity:0.7;
		}

/* color the maps.  Note: all 3 maps will use the same color scheme */
#RuralMap .rur1, #UrbanMap .urb1, #NonPkMap .non1 {fill:#AAAAAA;}
#RuralMap .rur2, #UrbanMap .urb2, #NonPkMap .non2 {fill:#AC6539;}
#RuralMap .rur3, #UrbanMap .urb3, #NonPkMap .non3 {fill:#423076;}
#RuralMap .rur4, #UrbanMap .urb4, #NonPkMap .non4 {fill:#336633;}
#RuralMap .rur5, #UrbanMap .urb5, #NonPkMap .non5 {fill:#256FEE;}

/* map sizing and positioning */
#main_map {
	width:600px;
	}
	#main_map svg {
	width:600px; 
	height:400px;
	}
	#main_map .map_title {
		text-align:center; 
		margin: 2em 0 0 0; 
		font-size:1.25em;
		}
a.other_maps {
	display:table-cell; 
	text-align:center; 
	width:300px; 
	padding: 0 0 2em 0; 
	text-decoration:none;
	}
	a.other_maps .map_title {
		font-size: 1em; 
		margin:0 auto;
		}
	a.other_maps img {
		width: 200px; 
		height:133px; 
		margin: 0 auto; 
		opacity:0.7; 
		}
		a.other_maps:hover img {
			opacity:1; 
			background-color:#eee;
			}

/* Override css1.css for sidebar navigation */
.NavText a {
	text-decoration:none;
	opacity: 0.8
	}
	.NavText a:hover {
		color: black;
		opacity:1;
		background-color:#BBFFDD;
		}
