@charset "utf-8";
/* CSS Document */


 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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;
}
.thrColFix #container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto; /* 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. */
	height: auto;
} 
.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
	height: 380px;
	background-color: #39C;
}
.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 10px 20px; /* padding keeps the content of the div away from the edges */
	height: 380px;
	background-color: #39C;
}
.thrColFix #mainContent {
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #000;
	color: #FFF;
	font-size: 10px;
	text-align: center;
	height: 380px;
}
.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 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.thrColFix #sidebar1 { width: 180px; }
.thrColFix #sidebar2 {
	width: 150px;
	padding: 10px 10px 10px 10px;
}
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.thrColFix #sidebar2, .thrColFix #sidebar1 { padding-top: 30px; }
.thrColFix #mainContent {
	zoom: 1;
	padding: 20px;
	color: #CCC;
	font-size: 11px;
	height: auto;
}
  .maintextcen A:link {text-decoration: none; color: #ecd318; font-weight:bold;}
 .maintextcen A:visited {text-decoration: none; color: #ecd318; font-weight:bold;}
.maintextcen A:active {text-decoration: none; color: #ecd318; font-weight:bold;}
 .maintextcen A:hover {text-decoration: none; color: #bdab21; font-weight:bold;}
 
 .question {
	color:#0C0;
	font-weight: bold;
 }
 
     #feedbacktextxx{
	position: inherit;
	margin: 3px 5px 5px 5px;
	color: #CCC;
	padding: 5px 0px 5px 0px;
	width: 700px;
	height: auto;
	display: block;
	opacity: 100;
	float: left;
	text-align: justify;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 3px;
 }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

<![endif]

