@charset "utf-8";
/*----------basic styling----------------*/
* {
	margin: 0px;
	padding: 0px;
}
body {
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:85%;
	text-align: center;
	background-color: #666;
	color: #000;
}
.thrColFixHdr #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000;
	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;
} 

.thrColFixHdr #header {
	background-color: #F00;
	background-image: url(images/headerBG.png);
	height: 150px;
	padding-top: 2;
	padding-right: 10px;
	padding-bottom: 3;
	padding-left: 2px;
	color: #FFF;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: right;
	font-size: 1.3em;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* padding keeps the content of the div away from the edges */
	color: #FFF;
	padding-top: 15px;
	padding-bottom: 15px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* padding keeps the content of the div away from the edges */
	padding-top: 10px;
	padding-bottom: 15px;
	text-align: center;
}
.thrColFixHdr #mainContent {
	border-left-width: 2px;
	border-left-color: #C12121;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-top-color: #C12121;
	border-right-color: #C12121;
	border-bottom-color: #C12121;
	margin-right: 200px;
	margin-left: 200px;
	padding-top: 10;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
} 
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #container {
	width: 960px; /* 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-image: url(images/containerBG.jpg);
} 

.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;
}
.center {
	text-align: center;
}
#content2 {
	float: right;
	width: 275px;
	background-color: #CCC;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}

.marg2AllfltLT {
	margin: 2px;
	float: left;
}
.thrColFixHdr #links{
	background-color: #000;
	color: #FFF;
	overflow: hidden;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 30px;
}
.thrColFixHdr #links ul {
	list-style-type: none;
	overflow: hidden;
}
.thrColFixHdr #links ul li {
	float: left;
	overflow: hidden;
	font-weight: bold;
	margin-left: 0px;
	font-size: 1em;
}
.thrColFixHdr #links ul li a:link {
	color: #FFF;
	text-decoration: none;
	background-color: #000;
	padding-left: 15px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
}

.thrColFixHdr #links ul li a:visited {
	color: #FFF;
	text-decoration: none;
	padding-left: 15px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	background-color: #000;
}

.thrColFixHdr #links ul li a:hover {
	color: #000;
	text-decoration: underline;
	padding-left: 15px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	background-color: #FFF;
}
.thrColFixHdr #footer{
	background-color: #000;
	color: #FFF;
	overflow: hidden;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 300px;
}
.thrColFixHdr #footer ul {
	list-style-type: none;
	overflow: hidden;
}
.thrColFixHdr #footer ul li {
	float: left;
	overflow: hidden;
	font-weight: bold;
	margin-left: 0px;
	font-size: .8em;
}
.thrColFixHdr #footer ul li a:link {
	color: #FFF;
	text-decoration: none;
	background-color: #000;
	padding-left: 5px;
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 20px;
}

.thrColFixHdr #footer ul li a:visited {
	color: #FFF;
	text-decoration: none;
	padding-left: 5px;
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 20px;
	background-color: #000;
}

.thrColFixHdr #footer ul li a:hover {
	color: #000;
	text-decoration: underline;
	padding-left: 5px;
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 20px;
	background-color: #FFF;
	text-align: center;
}
.pad20ALL {
	padding: 20px;
	text-align: left;
}
form {
	font-weight: bold;
}

.pad10LR {
	padding-right: 20px;
	padding-left: 20px;
	font-weight: normal;
	text-align: justify;
}
.smallTXTpad10LR {
	padding-right: 20px;
	padding-left: 20px;
	font-weight: normal;
	text-align: justify;
	font-size: .9em;
}
.floatRTpad10All {
	float: right;
	padding: 10px;
	background-position: bottom;
}



.center {
	text-align: center;
}
.floatRTclear {
	clear: right;
	float: right;
	padding: 10px;
}

.smalltext {
	font-size: 0.80em;
	padding-right: 10px;
	padding-left: 10px;
	text-align: justify;
}
h1 {
	font-size: 1.5em;
}
h2 {
	font-size: 1.3em;
}
.thrColFixHdr #container #mainContent ol li {
	list-style-position: inside;
	height: 35px;
}
.thrColFixHdr #container #mainContent p {
	text-align: left;
}
