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

body {
	/*	background-color: #42413C; */
	background-color: #f7f7f7;
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 724px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden;
}
h1{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 32px;
	margin: 0;
	float: left;
	padding-left: 20px;
}
.header {
	color: #000;
	height: 44px;
	padding-top: 2px;
	position: relative;
}
.header_centered {
	color: #008000;
	height: 32px;
	padding-top: 2px;
	position: relative;
	clear: both;
	text-align: center;
}
.content {
	width: 724px;
	text-align: justify;
}
.map_wrapper {
	width: 100%;
	text-align: center;
}
.faq {
	padding-left: 8px;
	width: 622px;
}
.faqq {
	color: #008000;
	padding-bottom: 3px;
}
.faqa {
	color: #000;
	padding-bottom: 10px;
}
.footer {
	color: #000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	height: auto;
	padding-top: 10px;
	padding-bottom: 5px;
}

/* ~~ Element/tag selectors ~~ */
li {
	margin-top: 5px;
}
ul {
	margin-bottom: 18px;
    margin-left:2em;
    padding-left:2px;
}
a img { /* this selector removes the default blue borer displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
/*	color: #6E6C64;  */
	color: #FFF;
	text-decoration: underline;
}

a.blue:link {
	color: #0000ff;
}

a.blue:visited {
	color: #0000ff;
}
 
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.light_blue {
	color: #0080ff;
}


