@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-attachment: scroll;
	background-repeat: repeat;
	background-position: left top;
	background-image: url(../images/background_pattern.jpg);
}
.twoColFixLtHdr #container {
	width: 1190px;
	margin: 0 auto;
	text-align: left;
	background-repeat: repeat;
} 
.twoColFixLtHdr #header {
	background-color: #ffffff;
	background-image: url(../images/header.gif);
	background-repeat: no-repeat;
	background-position: right top;
	height: 200px;
	width: 1190px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image: url(../images/sidebar_pattern.jpg);
	background-repeat: repeat-y;
	height: auto;
	background-attachment: scroll;
	background-position: left top;
	margin: 0px;
}

.twoColFixLtHdr #sidebar2 {
	float: right;
	right: 0;
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image: url(../images/sidebar2_bg.gif);
}

.twoColFixLtHdr #mainContent {
	background-repeat: repeat;
	height: inherit;
	width: 810px;
	background-attachment: scroll;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url(../images/mc_bg.gif);
	background-color: #FFFFFF;
} 

.twoColFixLtHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top-width: 3px;
	border-top-style: groove;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #97782B;
	width: 810px;
	margin-left: 190px;
	height: auto;
	background-image: url(../images/background_pattern.jpg);
	background-repeat: repeat;
	font-size: 10px;
	letter-spacing: 2px;
	text-align: center;
	vertical-align: middle;
	line-height: 200%;
} 
.text_main_content {
	width: 750px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	margin-right: 0px;
}

.flashArea {
	height: 500px;
	width: 660px;
	margin-right: 20px;
	border: 5px inset 4e4e4d;
}
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.image_right {
	padding: 0px;
	float: right;
	border: 10px ridge #97782B;
	margin: 20px;
}
.image_left {
	padding: 0px;
	float: left;
	border: 10px ridge #97782B;
	margin: 20px;
}
