@charset "utf-8";
/* CSS Document */

html{
	scrollbar-arrow-color: #FFFFFF;
	scrollbar-base-color:#CCCCCC;
	scrollbar-shadow-color:#000080;
	scrollbar-face-color:#CC0000;
	scrollbar-highlight-color:#FFFFFF;
	scrollbar-dark-shadow-color:black;
	scrollbar-3d-light-color:#FFFFFF;
}

body {
	font: 80% Verdana, Arial, Helvetica, sans-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: #666666
	background-color: #FFFFFF;
}


h1{
	font-size: 100%;
	font-weight: bold;
	color: #CC0000;
	}
	
.bodybold{
	font-weight: bold;
	font-size: 110%;
	}	
	
.bodysmall{
	font-size: 80%;
	}
	
.lowheight{
	line-height: 90%;
	}
	
ul.no_bullet{
	list-style-type:none;
	list-style-position:outside;
	}
	
ul.outdent{
	list-style-position:outside;
	margin-left: 0em;
	list-style-type:none;
	}
	
a:link {	/* unvisited link */
	text-decoration:none;
	color:#CC0000;
	font-weight: bold;
	}
	
a:visited {  /* visited link */
	text-decoration:none;
	color:#CC0000;
	font-weight: bold;
	}
	
a:hover { /* mouse over link */
	text-decoration: underline;
	}
	 
a:active { /* selected link */
	text-decoration:none;
	color:#000000;
	}  



/* Miscellaneous classes for reuse */
.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;
	margin-right: 10px;
}

.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;
}
