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

body  {
	font: 90% arial, helvetica, sans-serif;
			background: url(../images/bkgrnd.gif);
			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;
}
 #container { 
	width: 777px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header { 
	background: url(../images/header2.gif) no-repeat;
			width:777px;
			height: 193px;  /* 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. */
			margin-top:5px;
			font-size:14px;
			color:#FFFFFF;
} 

#logoleft {
float: left;
width: 154px;
height:155px;
margin-top:20px;

}
/*
#headerright {	
	z-index: 11;
	position: absolute; top: 150px; left: 465px;
	width:420px;
	
	
}
*/
 #headerright {	
	float: right;
	margin: 150px 15px 0 0;
	
}
 
#navlist ul
{
margin: 0;
white-space: nowrap;
padding: 0;
}

#navlist li
{
display: inline;
list-style-type: none;
font-size:16px;
font-weight:bold;
}

#navlist a
{
padding: 0 5px 0 5px;
border: 1px solid #fff;
background-color: transparent;
color:#FFF;
font-weight:bold;
}

#navlist a:link, #navlist a:visited
{
color: #fff;
text-decoration: none;
background-color:#990099;
}

#navlist a:hover
{
border: 1px solid #333;
background-color: #FFF;
color: #990099;
}



/*
#headerright ul li a{
display: inline-block;
list-style-type: none;
padding-right: 20px;
color:#FFFFFF;
background:transparent;
text-align:center;
height:2em;
font-size:10px;
float:right;
width: 200px;
	margin: 30px 20px 0 0;
	padding-top: 10px;
}
*/

#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* 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; the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 10px 5px;
	text-align:left;
	
}
#sidebar1 p{
	background: #990099;
	color: #fff;
	font-weight:bold;
	width: 130px;
	height:1em;
	padding:10px;
	margin-left:5px;
	margin-bottom:20px;
	text-align:center;
	font-size:12px;
}
#sidebar1 h1 { 
text-align:left;
color: #990099;
font-size:16px;
padding-top:10px;

}
#sidebar1 a {
	background-color:inherit;
	color:#fff;
	text-decoration:none;
	font-weight:bold;
}
#sidebar1 ul li {
	font-size:12px;
	list-style-type: disc;
	
	
}
#sidebar1 ul li a{
	text-decoration:none;
	font-weight:bold;
	color:#990099;
	background-color:#fff;
}
#sidebar1 ul li a:hover{
	text-decoration:none;
	font-weight:bold;
	color:#fff;
	background-color:#990099;
}
 #mainContent { 
	margin: 0 0 0 205px; /* 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 10px 0 20px;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	 border-left:solid thin #990099;
	 font-size:14px;
} 
#mainContent a {
	background-color: #transparent;
color: #000;
}
#mainContent a:link, #active a:visited, #active a:hover
{

background-color: #transparent;
color: #000;
}
		
		
		#mainContent ul li {
			font-size:14px;
		}
		.rev {
			font-size:16px;
			font-weight: bold;
			font-style:italic;
			
		}
		.circle {
			color: #36F;
			background:inherit;
			font-weight:bold;
			font-style:italic;
		}
		.indent {
			margin-left:30%;
		}
		.small {
			font-size:10px;
		}
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
	
} 
 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:10px;
	border:0;
	color:#999;
	background-color:transparent;
}
#footer a {
	color:#999;
	background-color:transparent;
}
#footer a:link, #active a:visited, #active a:hover {
	color:#999;
	background-color:transparent;
}
.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;
}
h1 {
font-size:18px;
color:#990099;
background-color:transparent;
text-align:left;
}
h2 {
font-size:16px;

}
h3 {
font-size:14px;
}
.center {
	text-align:center;
}
.emphasize {
	color: #682F73;
	font-weight: bold;
	font-style: italic;
}
.purple {
	color: #990099;
	background:inherit;
	font-weight:bold;
	font-style: italic;
}
.italicsreg {
font-style:italic;
font-size:14px;
font-weight:normal;
}
.italicsbold {
font-style:italic;
font-size:14px;
font-weight:bold;
}
/* 2 column layout with right side wider no bullets */
.wideright {
width:70%;
float:right;
}
.narrowleft {
float:left;
width:30%;
}
/* equal width columns */
.equalright{
width:50%;
float:right;
}
.equalleft{
width:50%;
float:left;
}
.leftborder {
width:45%;
float:left;
border-right:#000000 solid thin;
padding-right:5px;
}
.narrowright{
width:30%;
float:right;
}
.wideleft{
width:65%;
float:left;
}
.clear {
clear:both;
}
.bold {
color:#000000;
background-color:transparent;
font-weight:bold;
}
image {
	border: none;
}