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

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: #111111;
	font-family: "Trebuchet MS", Helvetica, Arial, Verdana;
	font-size: 100%;
	background-color: #333333;
}

h1 {
	color: #111111;
	font-family: "Trebuchet MS", Helvetica, Arial, Verdana;
	font-size: 100%;
	font-weight: normal;
}

A:link {
	color: #444444;
	text-decoration: none;
}

A:visited {
	color: #444444;
	text-decoration: none;
}

 A:hover {
	color: #CC0000;
	text-decoration: none;
}

A:active {
	color: #999999;
	text-decoration: none;
}



.oneColFixCtrHdr #container {
	width: 955px;  /* 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. */
}
.oneColFixCtrHdr #header {
	height: 100px;
	background-color: #FFFFFF;
	background-image: url(images/banner.png);
	background-position: center top;
	padding-bottom: 10px;
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	background-color: #FFFFFF;
	background-image: url(images/footer.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 40px;
	vertical-align: middle;
}
.footertext {
	font-family: "Trebuchet MS", Helvetica, Arial, Verdana;
	font-size: small;
	color: #999999;
	vertical-align: middle;
}
.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: 8px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.footertext A:link {
	color: #FFFFFF;
	text-decoration: none;
}

.footertext A:visited {
	color: #FFFFFF;
	text-decoration: none;
}

.footertext A:hover {
	color: #FFFF00;
	text-decoration: none;
}

.footertext A:active {
	color: #FFFFFF;
	text-decoration: none;
}

.image {
}

A:link img, A:visited img {
	border-color: #333333;
}
A:hover img  {
	border-color: #CC0000;
}
