body { 	
	background-color: #ffffff;		/* bkgd color  */
	margin: 0px;
	font-family: verdana, geneva, arial, sans-serif;  /* default fonts */
	font-size: small;  /* default font size 10 px */
	text-align: center; /* default text alignment */
	padding-left:0px;   /* default text padding */
	padding-right:0px; 
	padding-top:20px; 
	padding-bottom:20px
	}	

div>p:first-child {					/* this causes ie and compliant browsers to display first p in a div the same */
	margin-top: 0px;
	}
	
img {  /* removes border from linked images */
	border: 0px;
	} 	

#container {   /* <div id="container"> */
	width: 720px;
	background-color: #ffffff;
	margin: 20px auto 15px auto;
	padding: 10px;
	text-align: left;
		}

#header {   /* <div id="header"> */
	position: static;
	width: 688px;	
	margin: 0px auto 0px auto;
	}
	
#nav {   /* <div id="nav"> used for side navigation */
	position: 			static;
	width: 					160px;
	background-color:	#ffffff;
	margin: 				15px 0px 0px 0px;
	padding: 				10px 5px 10px 15px;
	text-align: 		left;
	font-size:     	85%;	
	font-weight:   	normal;
	}
	
#maincopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 486px;
	margin: 10px 0px 0px 0px;
	padding: 10px 16px 10px 20px;
	text-align: left;	
	}
	
.clearmaincopy {   /* clears all floats in main copy, use in main copy only */
	clear: both;
	width: 484px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
	
.fullwidth {  /* 688 wide division */
	width: 688px;
	margin: 0px;
	padding: 10px 16px 10px 16px;
	text-align: left;
	}
	
.fullwidthpadded {   /* 50 px white space added inside fullwidth division */
	width: 588px;
	margin: 0px auto 0px auto;
	padding: 10px 66px 10px 66px; 
	text-align: left;
	}
	
.clear {  /* clears all floats in the container, use in container only */
	clear: both;
	width: 686px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
	
h1 {  /* headline 1 */
  font-size:      200%;	
	text-align:			center;
	font-weight:    normal;	
	}
	
h2 {  /* headline 2 */
  font-size:      160%;
	text-align:			center;	
	font-weight:    normal;	
	}

.tl {   /* text left */
	text-align:	left;
	}
	
.ltl {   /* large text left */
	font-size:      120%;	
	font-weight:    normal;
	text-align:	left;
	}
	
.stl {    /* small text left */
	font-size:      85%;	
	font-weight:    normal;
	text-align:	left;
	}
	
.tc {   /* text center*/
	text-align:	center;
	}
	
.ltc {  /* large text center*/
	font-size:      120%;	
	font-weight:    normal;
	text-align:	center;
	}
	
.stc {   /* small text center*/
	font-size:      85%;	
	font-weight:    normal;
	text-align:	center;
	}
	
.tr {   /* text right*/
	text-align:	right;
	}
	
.ltr {   /* large text right*/
	font-size:      120%;	
	font-weight:    normal;
	text-align:	right;
	}
	
.str {  /* small text right*/
	font-size:      85%;	
	font-weight:    normal;
	text-align:	right;
	}
	
.brown {
	color: #4f3f2d;
	}
	
.green {
	color: #0e7f2b;
	}
	
.border {   /* adds a 1px black border*/
	border: 1px solid black;
	}
	
.floatl {   /* floats to the left*/
	float: left;
	display: inline;					/* fix IE double margin bug on floats */
	}

.floatr {  /* floats to the right*/
	float: right;
	display: inline;					/* fix IE double margin bug on floats */
	}
	
.divcenter{      /* creates an auto centering division */
	margin: 0px auto 0px auto;
	}

p.nobottom {   /* forces bottom text to move up */
	margin-bottom:	0;
	padding-bottom:	0;
	}
	
p.notop {     /* forces top text to move up */
	margin-top:	0;
	padding-top:	0;
	}	
	
	
/* link colors */
	
	a {  /* color of link */
  	color:	#630000;
  	text-decoration:	none;
  	padding:	0px;
  	}
	
	a:visited {  /* color of visited link */
		color: #630000;
		text-decoration: none;
		padding:	0px;
		}

	a:hover {  /* color of link when hovered*/
		color: #0e521c;
		text-decoration: none;
		padding:	0px;
		background-color: #d2efd9;
		}
		
		
/* lists */
	
ul {  /* definition of an unordered list */
	margin-top:		0;
	padding-top: 	0;
	margin-left:	10px;
	padding-left:	10px;
	}
		
ul.image {  /* image at the beginning of an unordered list */
	list-style-image: url('../images/bullet.gif');
	}
		
ul.noimage {	 /* no image at the beginning of an unordered list */
 	list-style-type: none;
	}			
			