/*

STICKER - A valid, easy to use CSS sticky footer by Ryan Fait

This is the basic CSS you need along with the one extra empty
div and the wrapper required to achieve the effect. I suggest
that you leave the * { margin: 0; } code in while testing and
building your site because margins do have a tendency to mess
things up a bit. Have fun!

Copyright (c) 2006-2007 Ryan Fait

*/





* {
	margin: 0;
}
html, body {
	height: 100%;
}
body {
	padding:0;
	background: #FFFFFF url(../structure_images/background.gif) repeat-y left top;
}
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -4em; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
	height: 6em; /* .push must be the same height as .footer */
}
.footer {
	height: 6em;	
	background: #B48B6A repeat;
	border: none;
	width: 100%;
}

#header {
	background: url(../structure_images/header.gif) no-repeat left top;
	width: 100%;
	height: 100px;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #66CC66;
	border-left: none;
	margin-bottom: 15px;

}
#nav {
	width: 150px;
	float: left;
	height: auto;
	background: #FFFFFF url(../structure_images/menu_back.gif) no-repeat right bottom;
	border-top: 3px solid #66CC66;
	border-right: 1px solid #66CC66;
	border-bottom: 3px solid #66CC66;
	border-left: 1px solid #66CC66;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 15px;
	padding-top: 5px;
	padding-bottom: 5px;

}
#content {margin-left: 200px; margin-right: 30px; padding-bottom: 3em; height: auto;}

#nav p, #content p, #content ul {margin: 1em;}
#nav ul {margin-left: 0; padding-left: 0;}
#nav li {margin: 0 1em 0 2em;}
