@charset "UTF-8";
body {
	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: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 95%;
	background-image: url(images/background_grunch.jpg);
	background-color: #333;
}
.oneColFixCtrHdr #container {
	width: 960px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position: relative;
}
.oneColFixCtrHdr #mainContent {
	background-color: #FFF;
	border: 2px solid #999;
	padding-right: 150px;
	padding-left: 140px;
	padding-bottom: 0px;
}
.oneColFixCtrHdr #footer {
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 0px;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #FFF;
	border: 2px solid #999;
	font-size: 80%;
	text-align: center;
}
.CSE_logo {
	position: absolute;
	width: 400px;
	left: 2px;
}
.navigation {
	position: absolute;
	left: 0px;
	top: 350px;
	padding-left: 2px;
}
.top_left {
	width: 300px;
	position: absolute;
	left: -120px;
	top: 0px;
	background-repeat: no-repeat;
	text-align: right;
	background-image: url(images/top_left.gif);
	height: 330px;
}
.top_right {
	background-image: url(images/top_right.gif);
	height: 330px;
	width: 300px;
	position: absolute;
	top: 0px;
	right: -150px;
	background-repeat: no-repeat;
}
.page_image {
	position: absolute;
	text-align: center;
	border: 2px solid #999;
	top: 70px;
}
a:link {
	color: #666;
	text-decoration: underline;
}
a:visited {
	color: #999;
}
a:hover {
	text-decoration: none;
	color: #FFF;
	background-color: #333;
}
a:active {
	color: #333;
}
