@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #5e9bd9;
	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;
}
#container {
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #75c0e8;
	margin: 15px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #333;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
h1 {
	font: "Times New Roman", Times, serif;
	color: #fff;
	font-style: italic;
	font-size: 18px;
	padding: 25px 10px 00px 10px;
	margin: 0px;
	text-align: center;
}
h2 {
	font-size: 14px;
	text-decoration: underline;
	padding: 20px 20px 10px;
	margin: 0px;
	margin-top: 10px;
	text-transform: uppercase;
}
h3 {
	font-size: 14px;
	text-decoration: underline;
	padding: 20px 20px 10px;
	margin: 0px;
	margin-top: 0px;
	text-transform: uppercase;
}
p {
	font-size: 12px;
	padding: 5px 20px;
	margin: 0px;
}
ul {
	list-style: none;
	margin: 10px 0px 10px 25px;
	padding-left: 10px;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	clear: both;
}
li {
	margin-left: 10px;
	list-style: disc;
	padding-right: 35px;
}
#short ul {
	list-style: none;
	margin: -5px 0px 10px 25px;
	padding-left: 10px;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	clear: both;
}
a {
	color: #012c59;
	text-decoration: underline;
}
a:hover {
	color: #fff;
	text-decoration: underline;
}
#header {
	background: #333333;
	height: 165px; 
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#navigation {
	background-color: #3333333;
	height: 40px;
}
#mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #75c0e8;
	height: auto;
}
#index {
	width: 780px;
	background-color: #a2d6ee;
	margin: 35px;
}
#indexTop {
	width: 780px;
	background-image: url(../images/index-top.gif);
	height: 42px;
	clear: left;
}
#indexBottom {
	width: 780px;
	background-image: url(../images/index-bottom.gif);
	background-position: bottom;
	height: 42px;
}
#left {
	width: 500px;
	background-color: #a2d6ee;
	margin: 35px 15px 35px 35px;
	float: left;
}
#leftTop {
	width: 500px;
	background-image: url(../images/left-top.gif);
	height: 42px;
	clear: left;
}
#leftBottom {
	width: 500px;
	background-image: url(../images/left-bottom.gif);
	background-position: bottom;
	height: 42px;
}
#right {
	margin: 35px 35px 35px 15px;
	width: 250px;
	float: right;
}
.date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #fff;
	text-decoration: none;
	padding: 0px 10px 7px 0px;
}
#prefooter {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #75c0e8;
	background-image: url(../images/pre-footer.gif);
	background-position: top;
	background-repeat: repeat-x;
	height: 95px;
}
#prefooter p {
	padding-top: 50px;
	color: #012c59;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
}
#prefooter a {
	color: #012c59;
	text-decoration: none;
}
#prefooter a:hover {
	color: #fff;
	text-decoration: underline;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #333;
	border-top: 2px solid #fff;
	height: 30px;
}
#footer p {
	margin: 0;
	font-size: 10px;
	color: #fff;
	text-align: center;
	line-height: 20px;
}