@charset "UTF-8";
/* CSS Document */

<style type="text/css"> 
 
body  {
background-color:#CCCC99;
	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:#222222;

}
.twoColFixRtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	line-height:23px;
	color:#222222;
} 
.twoColFixRtHdr #header {
	
	padding: 0;  /* 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. */
	height: 100px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #660000;
	text-decoration: none;
	margin: 0px;
} 
.twoColFixRtHdr #header h3 {
	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 10px 25; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#EEEEEE;
	font-family:Georgia, "Times New Roman", Times, serif;
}


.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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:#90825e; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	color: #EEEEEE;
	font-family: Georgia, "Times New Roman", Times, serif;
	border: 1px solid #FFFFFF;
	
}

.twoColFixRtHdr #sidebar1 p{ font-family:Tahoma, Geneva, sans-serif; color:#EEEEEE; line-height:22px; font-size:small;}

.twoColFixRtHdr #sidebar1 a {
	color: #EEEEEE;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-decoration:none;
	line-height:25px;
}

.twoColFixRtHdr #sidebar1 a:hover {
	background:#EEEEEE;
	padding:3px;
	color: #663300;
	font-family: Georgia, "Times New Roman", Times, serif;	
	width: 100%;
}

.twoColFixRtHdr #mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color:#222222;
	line-height:23px;
}

.twoColFixRtHdr #mainContent h3 {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family:Tahoma, Geneva, sans-serif; color:#444444; font-size:90%;
}
 
.twoColFixRtHdr #mainContent p, ul  {
	color:#222;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:90%;
}

.twoColFixRtHdr #mainContent ol  {
	color:#222;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:90%;
}

.twoColFixRtHdr #mainContent a { color:#663300; text-decoration:underline; 
	font-family:Georgia, "Times New Roman", Times, serif;
}

.twoColFixRtHdr #mainContent a:hover {color:#990000; text-decoration:none; 
	font-family:Georgia, "Times New Roman", Times, serif;
}


.twoColFixRtHdr #footer { 
	padding: 0 10px 0 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#663300; font:Georgia, "Times New Roman", Times, serif;
} 
.twoColFixRtHdr #footer p { color:#DDDDDD; font:Georgia, "Times New Roman", Times, serif; font-weight:lighter;font-size:small;
	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 */
}
.twoColFixRtHdr #footer a {color:#EEEEEE; font-size:smaller; font-weight:lighter;font:Georgia, "Times New Roman", Times, serif;}
.twoColFixRtHdr #footer a:hover {color: #FFFFCC;font:Georgia, "Times New Roman", Times, serif;}   

.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;
}
#globalLinks {
	background-color:#82522C;
	width:auto;		
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	border: 1px solid #FFFFFF;
	color:#EEEEEE;
	font-family:Georgia, "Times New Roman", Times, serif;
}
#globalLinks a {	color:#EEEEEE;
	font-family:Georgia, "Times New Roman", Times, serif; text-decoration:none; padding-right:5px; padding-left:5px;}
	
	#globalLinks a:hover {	
	color:#444;
	font-family:Georgia, "Times New Roman", Times, serif; text-decoration:none;
	border:1px dotted color:#82522C;
	background-color:#f4e5b2;
	padding:5px;}
	
	
.table {border: 1px dotted #90825e;}
.table img {border: 1px solid #90825e;}
#td {border: 1px solid #90825e; height:30px; width:175px;}

.twoColFixRtHdr #mainContent table p {
	padding:5px 15px;
	color:#643917;
	text-align:left;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:90%;}
	
.style1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #663300; padding-left:25px;
}
.style2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	color: #996633; font-size:120%;
}

 #qa {
	 color:#82522C; font-family:Georgia, "Times New Roman", Times, serif; font-variant:small-caps; font-weight:bold; float:left; font-size:medium;  padding-left:1px; 
 }
 
 hr { border:dotted 1px #90825e;}


 
 
 
</style>
[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixRtHdr #sidebar1 { width: 220px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixRtHdr #sidebar1 { padding-top: 30px; }
.twoColFixRtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
