/* 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;
	margin: 0 auto;
	text-align: center;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	}

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

#container {width: 800px;
	overflow:auto;
	margin: 0px auto 10px auto;
	background-image:url(images/bkgstrip.jpg);
	background-repeat:repeat-y;
	}

#header {
	background-color: #cde196;  
	height: 192px;
	}

#banner {height: 126px; 
	text-align: center;
	padding-top: 20px;}
	
	/* top menu navigation info in here -- */

#nav {
	background-color: #2d1e1e;
	height: 35px;
	text-align: center;
	font-size: 11px;
	color: #cde196;
}

#nav ul {padding: 0;
  }
  
#nav  li {list-style-type: none;
	display: inline;}

  
#nav a:link, #nav a:visited {
	color: #2d1e1e;
	background:#96a576;
	margin: 6px 0px 0px 0px;
	padding: 5px 0px 5px 10px; 
	float:left;
	width: 114px;
	
/* decorative items */
	
	border-left: 7px solid #4b3c37;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform:uppercase;
	 }
	 
 /* Add a rollover image */

#nav a:hover {background-image: url(images/leaf.jpg);
	color:  #ffffbb}
	 
#nav .active a{
	color: #cde196;
	background:#41530e;
	margin: 6px 0px 0px 0px;
	padding: 5px 0px 5px 10px; 
	float:left;
	width: 113px;
	border-left: 7px solid #4b3c37;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform:uppercase;
	 }


.tilt {font-style: italic}

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

#leftCol {
	float: left;
	width: 190px;
	padding: 15px 5px 15px 20px;
	background-color:#cde196;
	height: 650px;
	text-align: left;}

#rightCol {
	float: right;
	width: 550px; 
	padding: 15px 10px 15px 10px;
	height: 650px;
	text-align:left; }

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

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

