body  {
	font: 12px Trebuchet MS, Helvetica, sans-serif;
	background: #fff;
	margin: 20px 0 0 0;
	padding: 0;
	text-align: center; /* centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #003366;
	line-height:145%;
}

a {color: #669900; text-decoration:none;}
a:hover {color: #99cccc; text-decoration:none;}


#container { 
	width: 862px;  
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: #99cccc 1px solid;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	padding: 10px;  
	height: 108px;
	border-bottom: #99cccc 1px solid;
} 

#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: 159px; /* 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: 10px 0 0 10px;*/
	padding: 0;
}

	/* SIDE NAVIGATION */
		#navcontainer 
			{
			border: #99cccc 1px solid; 
			margin: 10px 10px 0 10px;
			padding: 0 10px 0 10px;
			}
		
		#navlist { 
			list-style: none;
			padding-left: 0;
			margin-left: 0;
			}
			
			#navlist li {
			padding: 5px 5px 5px 18px;
			background-image: url(../images/arrow.gif);
			background-repeat: no-repeat;
			background-position: 5px;
			border-bottom: #99cccc 1px solid;
			}
			
			#navlist li.last {
			padding: 5px 5px 5px 18px;
			background-image: url(../images/arrow.gif);
			background-repeat: no-repeat;
			background-position: 5px;
			border-bottom: 0px;
			}
			
			#navlist a {color: #669900; text-decoration:none;}
			#navlist a:hover {color: #99cccc; text-decoration:none;}
			#active a {color: #003366; text-decoration:none;}
		
		
	/* END SIDE NAVIGATION */
	
	
	/*DROP SHADOW BOX */
	
		.dropshadow {
			background:url(../images/dsBox.jpg) no-repeat;
			width: 158px;
			margin: 0;
			height: 155px;
			padding: 0;
			/*padding: 20px 0px 0px 0px;*/
			}
			
			.dropshadow p {
			margin: 0px 10px 0px 18px
			/*margin: 10px 10px 0px 18px !important;
			margin: 20px 10px 0px 18px;*/
			
			}
			
			.dropshadow img {
			padding-bottom: 8px;
			padding-top: 10px;
			}
			
			.dropshadow a {font-size: 10px}

	/*COPYRIGHT INFO */
	
		#copyright {
			margin: 10px 10px 10px 12px;
			color: #669900;
		}


#mainContent { 
	margin: 10px 0 0 149px; /* 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. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 

/*MIDDLE  COLUMN & ITS STYLES */

		#copySpace {
		float:left;
		width: 410px;
		padding-left: 5px;
		padding-bottom: 40px;
		}	
		
		.blueBlock {
		background: #d5eae9;
		padding: 8px;
		}
		
		h1 {
		color: #003366;
		font: 14px Trebuchet MS, Helvetica, sans-serif;
		font-weight:bold;
		margin: 5px 0 5px 0;
		}
		
		h2 {
		color: #669900;
		font: 14px Trebuchet MS, Helvetica, sans-serif;
		font-weight:bold;
		margin: 5px 0 5px 0;
		}
		
		#copySpace a {#color: #669900; text-decoration:none;}
		#copySpace a:hover {color: 99cccc;}
		
		
		#newsLinks {
		
		}
			#newslinks h1 {
			color: #003366;
			font: 14px Trebuchet MS, Helvetica, sans-serif;
			font-weight:bold;
			margin: 5px 0 0 17px;
			}
		
			#newslinks ul {
			border-top: #99cccc 1px solid;
			margin-left: 17px;
			padding-left: 0;
			
			}
			
			#newslinks li {
			list-style-image: url(../images/arrow.gif);
			padding: 5px 0 5px 0px;
			border-bottom: #99cccc 1px solid;
			margin-left: 0;
			}
			
		
		
		
		
/*THIRD COLUMN */

		#sponsors {
		border: #99cccc 1px solid;
		float:left;
		margin: 10px 2px 0 14px;
		padding:0;
		width:260px;
		/*text-align:center;*/
		}
		
			#sponsors h1{
			background: #99cccc;
			width: 250px;
			padding: 5px;
			color: #FFFFFF;
			margin: 0;
			font: 12px Trebuchet MS, Helvetica, sans-serif;
			font-weight:bold;
			text-align: left;
			}
		
			#sponsors p {
			margin: 0;
			padding: 3px 8px 5px 8px;
			}
				


#footer { 
	width: 862px;  
	background: #FFFFFF;
	margin: 10px auto; 
	border: #99cccc 1px solid;
	text-align: left; 
	
} 

#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
}


.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;
}