/* testing some css for divs */

/* color palette
drk brown - #2d1e1e
med brn - #4b3c37
med grn - #96a576
light grn - #cde196
creamy #ffffbb  */

body {background-color: #ffffbb;
	text-align: center;
	margin: 0;
	padding: 0:}

/* the container div does just that - contains our whole set of information */

#container {width: 800;
	height: 100%;
	background-color: #96a576;
	margin: 0 auto 10 auto;
	}

#header {background-color: #cde196;
	height: 200;
	}

#banner {height: 125px; 
	text-align: center;
	padding-top: 30px;}

#nav {
	background-color: #2d1e1e;
	text-align: center;
	height: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
	color: #cde196;
}

#content {margin-top: 0px; 
	padding-top: 0px;}

#leftCol {
	float: left;
	width: 150;
	padding: 15 10 15 10;}

#rightCol {
	float: right;
	width: 550; 
	padding: 15 10 15 10;
	background-color:#cde196;
	height: 100%; }

div.footer { clear: both; 
margin: 0; 
padding: 3 0 3 0; 
position: fixed; 
bottom: 0; left: 0; 
width: 100%; height: 20px; 
background: #4b3c37; }

div.footer p { text-transform: uppercase; width: 580px; margin: 3 auto; font-size: 11px; padding: 0; max-width: none; 
color: #cde196;}

a:link {
color: #ffffbb;
text-decoration: none;
}

a:visited {
color: #ffffbb;
}

a:hover {
color: #ffffbb;
font-weight: bold;
}

a:hover {
color: #cde196;
font-weight: bold;
}


