@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;
	background: #F7E8DD;
}
#container {
	width: 980px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999;
	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;
}
#header {
	height: 235px;
	position: relative;
}


#logoDiv {
	padding-top: 10px;
	padding-left: 445px;
}
#nameDiv img {
	position: absolute;
	left: 239px;
	top: 80px;
}
#taglineDiv img {
	padding-left: 315px;
}
#navigation {
	height: 50px;
}

#flash {
	height: 359px;
	width: 579px;
	margin-left: 201px;
	position: relative;
	margin-top: 10px;
}
#mainContent {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
	margin-left: 104px;
	position: relative;
}
#footer {
	height: 115px;
	clear: both;
}
#footer p {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 14px;
	color: #990000;
	text-align: center;
	margin: 0px;
	padding: 0px 0px 5px;
}
#footer .tagfooter {
	margin-top: 10px;
}

#footer #lineArt {
	margin-top: 10px;
}
#footer .copyright {
	margin-top: 10px;
	font-weight: bold;
	font-size: 14px;
}
#footer .creditline {
	font-size: 11px;
	color: #333333;
	text-align: center;
}

#footer img {
	width: 802px;
	margin-left: 89px;
}

.redText {
	color: #990000;
}
.blueText {
	color: #0000FF;
}
.greenText {
	color: #339900;
}

.fontsize {
	font-size: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
}
.underline {
	text-decoration: underline;
}
#mainContent #snowform {
}
.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;
}
