@charset "UTF-8";
body {
	background: white;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

/* Basic font styles */
p {
	line-height: 1.5;
}
li {
	line-height: 1.5;
}

h1 {
	color: #808080;
	font-size: 200%;
	font-weight: normal;
}

h2 {
	color: #808080;
	font-size: 180%;
	font-weight: normal;
}
h3 {
	color: #808080;
	font-size: 160%;
	font-weight: normal;
}

h4 {
	color: #808080;
	font-size: 140%;
	font-weight: normal;
}
h5 {
	color: #808080;
	font-size: 120%;
	font-weight: normal;
}
h6 {
	color: #808080;
	font-size: 100%;
	font-weight: normal;
}

a:link {
	color: #808080;
}
a:visited {
	color: #999999;
	}

a:hover {
	color: #FE0204;
	}

/* Main container */
#container {
	width: 75%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 2em;
	margin-right: auto;
	margin-bottom: 0em;
	margin-left: auto;
	padding: 20px 30px 30px 30px;
	background-color: white;
}


/* For laying out title logo and text */
#titleContainer {
}
#titleImageBox {
	text-align: center;
}
#titleTextBox {
	text-align: center;
	margin-top: 10px;
	color: #808080;
	font-size: 180%;
	font-weight: normal;
}

/* Container for main text */
#mainContent {
	margin-top: 1em;
	padding-top: 1em;
	padding-bottom: 0.5em;
	padding-left: 20px;
	padding-right: 20px;
}

#mainContent p {
	text-align: justify;
}

/* Footer for legalese and stuff */
#footer {
	padding: 1em;
	width: 60%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
	font-size: 10px;
	color: #C0C0C0;
	padding: 1em;
	text-align: center;
}
#footer a {
	color: #C0C0C0;
}
