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



body  {
	background:#dcd8c8;
	font:"Times New Roman", Times, serif;
	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;
	font-size:1em;
	font-family: "Times New Roman", Times, serif;
}
#container { 
	width: 779px;  /* 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. */
	background-color:#FFFFFF;
}

#header { 
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:80%;
} 


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	margin-top: 10px;
	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 */
	padding: 0px 10px 15px 20px;
	font-size:1.2em;
}

#sidebar1 a:link {  
	color: #36C; text-decoration: none;}
#sidebar1 a:hover {  
	color: #666; text-decoration: underline;}
#sidebar1 a:active {  
	color: #666; text-decoration: none;}
#sidebar1 a:visited {  
	color:  #006; text-decoration: none;}
	
	
 #mainContent { 
 margin-top: 30px;
	margin-left:200px; /* the left margin on this div element creates the column down the left 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 40px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.small
{font-size:.8em}

.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: 15px;
	margin-bottom: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
.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;
}

img {
border:none;
}

a {
color: #36C;
}

a:visited {
color:#006;
}


h1 {
font-size:1.2em;
color:#36C;
font-weight:normal;
}

h2 {
font-size:100%;
color:#36C;
font-weight:normal;
}


h3 {
font-size:90%;
color:#36C;
font-weight:normal;
}

h3 a{
color: #36C;
text-decoration:none;
}

h3 a:visited{
color: #333333;
text-decoration:none;
}

h3 a:hover{
color: #003333;
text-decoration:underline;
}

ul {margin: 0; padding: 0;}
ul li {margin: 0 0 0 2em; padding: 0;
    text-indent: -2em; background: transparent;
    list-style: none;}

.hangingindent {
  padding-left: 22px ;
  text-indent: -22px ;
}

