/* CSS Document */

* { /* this eliminates those extra spaces between divs */
	margin: 0;
	padding: 0;
	}
	
a {
	outline: none;
	}	


p {
	font-size: 85%;	
	}
	
	
	
	
/*relative divs*/	
	
#container {
	width: 900px;
	margin: 0px auto 0px auto;
	position: relative;
	}

#nav{
	padding-top: 7px;
	position: relative;
	height:34px;
	z-index: 2;
	}	
	
	
#spacer {
	height:18px;
	clear:both;
	}


#footer {
	position:relative;
	color: #0f2b72;
	text-align:center;
	padding: 12px 0;
	text-transform:uppercase;
	background-color:#fac81b;
	font-weight:bold;
	height:18px;
	z-index:-1;
	}
	

#bottom {
	position:relative;
	height:40px;
	padding-right:24px;
	}	
	
	
	
/* text styles */	
		

#footer p {
	font-size:70%;
	}


#bottom p {
	line-height:2em;
	padding-top:12px;
	font-size: 65%;
	color:#999;
	text-align:right;
	}
	
		


/* link styles */

	
#bottom a {
	text-decoration: none;
	color: #999;
	}	



