@charset "utf-8";
/* CSS Document */

<style type="text/css"> 
<!-- 
body  {
	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: justify; /* 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-image: url();
	background-repeat: repeat-y;
	background-color: #F8F8F8;/*8 used to be 9*/
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-style: normal;
	
}

a:link{color:blue; text-decoration:underline; }
a:visited{color:blue; text-decoration:underline;}
a:hover{color:#700;  background:#E0E0E0; text-decoration:none; text-decoration:underline}
a:active{color:red;  background:#E0E0E0; text-decoration:none; text-decoration:underline}

.twoColElsLtHdr #container {
	width: 890px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-top: 0 px;/* 10*/
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding: 5px; /* 10 */
	 }
} 
.twoColElsLtHdr #header { 
	background: #DDDDDD; 
	height:inherit;
	width: 890px; 

} 
.twoColElsLtHdr #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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


.twoColElsLtHdr #header h2 {
	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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 150px; /* since this element is floated, a width must be given */
	height: 800px; /* this was added 800px*/
	background: #E1E1E1;
	/*border: 1px solid #707070;*/
	padding: 10 5px;
	margin-top: 43 px; /*80 */
	margin-bottom: 1 px;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	
}


.twoColElsLtHdr #mainContent {
	/*border: 1px solid #000000; */
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-style: normal;
	margin-top: 40 px; /*80 */
	margin-right: 5px;
	margin-bottom: 10 px;
	margin-left: 200px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
} 

.faq {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	font-size: 15pt;
	font-style: italic;
	color: #700;
	font-weight:bold;
}
/* table formatting */
table,td,th
{
border:0 px solid;
}
table
{
width:100%;
}
tr
{
height: 25px;
}

td
{
text-align:left;
vertical-align:top;

}



.twoColElsLtHdr #footer { 
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.twoColElsLtHdr #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: 0px 0 px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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;
}
--> 
</style><!--[if IE]>

