/* 946 basic page formatting style, fits 1024 X 768 display */

/* basic page formatting style */

		
	



div>p:first-child {					/* this causes ie and compliant browsers to display first p in a div the same */
	margin-top: 0px;
	}
	
html {  /* this forces vertical scroll bar on firefox*/
  height: 100%;
  margin-bottom: 1px;
	}
 	
#container {   /* <div id="container"> */
	width: 946px;
	background-image: url('../images/gradient.jpg');  /* bkgd image */
	background-position: center center;  /* bkgd image to center */
	background-attachment: fixed;  /* bkgd image remains static */
	background-repeat: repeat-x;		/* bkgd image does not repeat */  
	/* also bkgd image repeat-y or repeat-x */
	background-color: #ffffff;		/* bkgd color  */
	margin: 20px auto 0px auto;
	padding: 0px 0px 10px 0px;
	text-align: left;
	border: 1px #000 solid;
	}

#header {   /* <div id="header"> */
	position: static;
	width: 946px;	
	margin: 0px auto 0px auto;
	background: #606060;
	}
	
.headerbar {
	width: 946px;
	background: #606060;
	display: block;
	
	}
	
	
#maincopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 910px;
	margin: 0px 0px 0px 0px;
	padding: 10px 16px 10px 20px;
	text-align: left;	
	border-top: solid #000;
	}
	
	
#footer {   /* <div id="footer"> */
	width: 914px;
	text-align: center;
	font-family: Verdana;
	font-size: 65%;
	margin: 0px auto 0px auto;
	padding-top: 0px;
	padding-bottom: 10px;
	}


.clear {  /* clears all floats in the container, use in container only */
	clear: both;
	width: 912px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
		
.clearmaincopy {   /* clears all floats in main copy, use in main copy only */
	clear: both;
	width: 710px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
	
.nobottom {   /* forces bottom to move up */
	margin-bottom:	0;
	padding-bottom:	0;
	}
	
.notop {     /* forces top to move up */
	margin-top:	0;
	padding-top:	0;
	}	

	
a {  /* color of link */
  	color:	#ffffff;
  	text-decoration:	none;
  	padding:	0px 3px 0px 3px;
  	}
	
a:visited {  /* color of visited link */
		color: #ffffff;
		text-decoration: none;
  	padding:	0px 3px 0px 3px;
		}

a:hover {  /* color of link when hovered*/
		color: #328743;
		text-decoration: none;
  	padding:	0px 3px 0px 3px;
		background-color: #000;
		}	
		
			
.footer a {  /* color of link in footer */
  	color:	#303030;
  	text-decoration:	none;
  	padding:	0px;
  	}
	
.footer a:visited {  /* color of visited link in footer */
		color: #303030;
		text-decoration: none;
		padding:	0px;
		}

.footer a:hover {  /* color of link when hovered in footer */
		color: #048484;
		text-decoration: none;
		padding:	0px;
		background-color: #000;
		}	
		
h1 {
  font-size:      220%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;			
	font-weight:    normal;
	padding-top:		5px;
	}
	
	
h2 {  /* headline 2 */
  font-size:      190%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:    normal;	
	}	

	
h3 {  /* headline 3 */
  font-size:      160%;	
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:    normal;
	}	
	
h4 {  /* headline 3 */
  font-size:      130%;	
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:    normal;
	}	
	
.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 */
	}.tl {   /* text left */
	text-align:	left;
	font-weight:    normal;
	}
	
.tc {   /* text center*/
	text-align:	center;
	font-weight:    normal;
	}
	
.tr {   /* text right*/
	text-align:	right;
	font-weight:    normal;
	}
	
.tj {   /* text justified*/
	text-align:	justify;
	font-weight:    normal;
	}
	
.small {
	font-size:      80%;
	}