@charset "UTF-8";
body  {
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Helvetica", Arial,  sans-serif;
	font-size: 100%;
}

/*     CONTAINER WRAP     */
#container {
	width: 1050px;
	background: #FFFFFF;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 5px;
	font-size: small;
	font-family: "Helvetica", Arial,  sans-serif;
} 


/*     SIDEBAR     */
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* the actual width of this div, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 30px 0px 0px;
	background-color: #FFFFFF;
	height: 590px;
}

/*     CONTENT     */


#mainContent {
	text-align: center;
	padding-top: 10px;
	width: 1050px;
	font-family: Helvetica, Arial, sans-serif
}
.style2 {
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
}
.style3 {
	font-size: 16pt;
	font-family: Helvetica, Arial;
	font-weight: bold;
}

/*     FOOTER     */

#footer {
	background:#FFFFFF;
	height: 10px;
	width: 1000px;
	font-weight: normal;
	font-size: 100%;
	text-align: center;
	font-family: Helvetica, Arial, sans-serif;
} 
#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: #FFFFFF;
	position: relative;
	text-align: center;
}

/*     CLEAR     */

.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;
	font-family: Helvetica, Arial, sans-serif;
}

/*     LINK HANDLING     */

a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #800000;
	text-decoration: none;
}
a:hover {
	color: #800000;
	text-decoration: none;
}
a:active {
	color: #000000;
	text-decoration: none;
}
