@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
.twoColFixRtHdr #container {
	width: 1026px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	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;
	background-color: #FFFFFF;
	background-image: url(images/background.png);
	background-repeat: repeat-y;
} 
.twoColFixRtHdr #header {
	background: #DDDDDD;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 205px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	background-image: url(images/up_10.png);
	height: 383px;
	background-repeat: no-repeat;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 25px;
	padding-left: 20px;
	background-attachment: fixed;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
} 
.twoColFixRtHdr #footer {
	padding: 0;
	background-color: #DDDDDD;
	background-image: url(images/up_12.png);
	height: 42px;
} 
small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.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;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #900;
}

a {
	color: #900;
}
h2 {
	font-size: 18px;
	color: #900;
	font-family: Arial, Helvetica, sans-serif;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

