@charset "utf-8";
body  {
	background-color: #7ac943;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
}
.thrColFixHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #7ac943;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid navy;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url("images/gradientBG.gif");
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: bottom;
} 
.thrColFixHdr #header { 
	background: #DDDDDD; 
	padding: 0 0px 0 0px;  /* 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. */
} 
.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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	/*text-align: center;*/
}

.thrColFixHdr #sidebar2 {
	width: 160px; /* 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 */
	float: right; /* since this element is floated, a width must be given */
	background: #0375bf; /* padding keeps the content of the div away from the edges */
	margin-top: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
/* I put this in just to show how it could be done - this is an entity that floats right and text wraps around it - it is essentially the same as sidebar2 */
#imagewrap {
	width: 160px; /* 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 */
	float:right;
	padding-left:10px;
	background-color: #0375bf;
	margin: 5px;
	border: thin double #6600FF;
	clear: right;
	color: #ffffff;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
 min-height:500px;
  height:auto !important;
  height:500px;
/* use this with pstsCMS.php - if you don't want the text to wrap - do not use it with pstsCMSfloatright
	width: 400px;
*/
} 
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.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 */
}
.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;
}
.bottomNote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	text-align: center;
}
.bottomNote2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	text-align: center;
}
h1        {
	color: #003366;
	font-size: large;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 12pt;
	font-weight: bold;
}
h2        {
	color: #003366;
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 12pt;
	font-weight: bold;
}
h3     {
	color: #003366;
	font-size: small;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: italic;
}
p       {
	color: #000000;
	font-size: small;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 12px;
	margin-bottom: 0px;
	clear: right;
}
p.menu      {
	color: #000000;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 2px;
	margin-bottom: 0px;
}
h3.menu      {
	margin-top: 3px;
	margin-bottom: 0px;
}
h3.nospace      {
	margin-top: 0px;
	margin-bottom: 0px;
}
h2.menu      {
	margin-top: 3px;
	margin-bottom: 3px;
}
a:link, a:visited     { color: #003366; text-decoration: underline}
a:hover      {
	color: #FFFFFF;
	text-decoration: none
}
ul       {
/*	padding: 0px;
	margin-top: 6px;
	margin-bottom: 0px;
*/}
li       {
	font-size: small;
	list-style-type: square;
/*	padding: 0px;
	margin: 0px;
*/}

input.test {
	display: none;
}