@charset "UTF-8";
body  {
	background: #2089ff;
	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;
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
}
.twoColFixLt #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #2089ff;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/bgd_waterfade2.jpg);
	background-repeat: repeat-y;
}
.twoColFixLt #sidebar1 {
	float: left;
	width: 320px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 0px 0px 0px;
	height: inherit;
	
}
.twoColFixLt #mainContent {
	float: right;
	width: 580px;
	margin: 20px 0; /*20px 0 300px; the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px; /* 20px 20px;  remember that padding is the space inside the div box and margin is the space outside the div box */
	vertical-align: top;
} 

.twoColFixLt #mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 1px;
	display: inline;
	line-height: 150%;

}
	
.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;
	margin-bottom: 8px;
	border: 0;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
	border: 0;

}
.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;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	line-height: 200%;
	font-weight: bold;
	color: #F8DC00;
	letter-spacing: 2px;
	padding-left: 15px;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;
	color: #0B29AF;
	letter-spacing: 3px;
	display: inline;
}

#space {
	height: 75px;
}

#spacehalf {
	height: 25px;
}

#center {
	text-align: center;
}
a.one:link {color: #f8dc00; text-decoration: none}
a.one:visited {color: #f8dc00; text-decoration: none}
a.one:hover {color: #ffffff; text-decoration: underline}
a.one:active {color: #ffffff; text-decoration: none}

a.two:link {color: #ffffff; text-decoration: none}
a.two:visited {color: #ob29af; text-decoration: none}
a.two:hover {color: #ffffff; text-decoration: underline}
a.two:active {color: #ob29af;text-decoration: none}

a.three:link {color: #f8dc00; text-decoration: underline}
a.three:visited {color: #7d6a55; text-decoration: none}
a.three:hover {color: #000000}
a.three:active {color: #ffffff}