@charset "utf-8";
body  {
	margin: 50px;
	padding: 50px, 50px;
	text-align: right;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	position: absolute;
}
#container {
	position: relative;
	width:90%;
	background: #FFFFCC;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-left: 10px;
} 
#banner p{
	background-color:#0099FF;
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bold;
	font-style: normal;
}
/* Tips for absolutely positioned sidebars:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
*/
.thrColAbs #sidebar1 {
	position: absolute;
	top: 0;
	left: 1px;
	width: 148px; /* 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 */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	height: 328px;
}
#sidebar1 ul {
		list-style-type:none;
		padding:0;
		margin:0;
	}
	
	#sidebar1 ul li {
		padding-left:5px;
	}
	
	#sidebar1 a {
	text-decoration:none;
	color: #000099;
	}
	
	#sidebar1 a:hover {
		font-weight:bold;
	}
	
	#sidebar1 ul li ul li a {
		padding-left:25px;
		display: block;

	}
	#sidebar1 ul li ul li a:hover {
		background: url('images/bghover.gif') center left no-repeat;
		background-color: #0000ff;
		color:white;
		}
.thrColAbs #sidebar2 {
	position: absolute;
	top: 0;
	right: -1px;
	width: 195px; /* 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 */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 2px;
	padding-bottom: 15px;
	padding-left: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height: 523px;
}
 #ads{
	padding-top: 15px;
	padding-right: 30px;
	float: right;
}
.thrColAbs #mainContent {
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	}
.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;
}
#footer {
	background-color: #FFFFFF;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	text-align:center;
}
#footer I{
	vertical-align:super;
	font-size:xx-small;
}
.thankyou #container {
	width: 75%;
}
.thankyou #container #mainContent {
	background-color: #CCCCCC;
	width: 50%;
}

