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

body  {
	background: #015b7e;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	font-family: "Century Gothic", Century, Helvetica;
}
#container  {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 0.9em;
	height: 1125px;
} 
#header  {
	text-align: center;
	padding-bottom: 10px;
} 
.navigation {
	font-size: 1.2em;
	font-weight: bold;
	padding-right: 10px;
	padding-left: 10px;
	text-decoration: underline;
}

#header_img {
	padding-bottom: 20px;
}

#header a{
	color: #000;
}
#header a:visited {
	color: #000;
}
#header a:hover {
	color: #000;
}
#header a:active {
	color: #000;
}

#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-left: 15px;
	padding-top: 30px;
	padding-right: 10px;
	height: 750px;
	margin-left: 10px;
}
#sidebar1 img {
	margin: 5px;
	border: 2px solid #333;
}
#sidebar1 div {
	text-align: center;
	margin-top: 10px;
	margin-right: 10px;
}

#mainContent  {
	padding-top: 30px;
	padding-bottom: 40px;
	text-align: left;
	margin-left: 240px;
	margin-right: 40px;

} 


#mainContent ul {
	padding-left: 25px;
}
h1 {
	font-size: 1.3em;
	text-align: center;
}
h3 {
	font-size: 1em;
	font-weight: normal;
	font-style: italic;
	text-align: center;
}



#info {
	text-align: left;
	font-size: 0.9em;
	font-weight: bold;
	margin-top: 10px;
}


#footer  {
	font-size: 0.8em;
	text-align: center;
	padding-top: 20px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #666;
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
div, h1, h2, h3, h4, table, ul, li, p, img, a {
	margin: 0px;
	padding: 0px;
}
a:link {
	color: #666;
}
a:visited {
	color: #666;
}
a:hover {
	color: #666;
}
a:active {
	color: #666;
}
