/* general settings */
/* reset margin and padding for consistency across browsers */
* {
	margin:0;
	padding:0;
}
body {
	font-size: 62%;
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
	background-color: none;
	color: none;
	background-repeat: repeat;
	background-image: url(/images/greenbg.jpg);
	
	

}
p, li {
	font-size: 1.2em;
	line-height: 1.6em;
}
img {
	border: none;
}

/* main containers/wrappers */
		#container {
			border-width: 0px;
			border-style: solid;
			width: 805px;
			margin-left: auto;
			margin-right: auto;
			background-color:#FFF
		}
/* #wrapper-wrapper provides the border and background even when height of the div is not known; note the float:left and width:100% */
		#wrapper-wrapper {
			float:left; 
			width:100%; 
			border:1px solid silver;
			background-repeat: no-repeat;
			background-position: left bottom;
			background-image: url(/images/background-image.jpg);
			background-color:#FFF
		}
		#sidebar-wrapper {
			float: left;
			width: 270px;
			background-color:#FFF
		}
		#content-wrapper {
			float: left;
			height: 100%;
			width: 529px;
			background-color:#FFF
		}
		#footer-wrapper {
			margin-left: auto;
			margin-right: auto;
			width: 805px;
			margin-top:8px;
			background-color:#FFF
		}
/* other sections */
		#logo {
			width: 100%;
		}
		#logo img {
			border: none;
		}
		

		#nav {
			margin-top: 20px;
		}
		#nav a {
			text-decoration: none;
			color: #80561b;
			text-transform: uppercase;
			margin-left: 0px;
			font-size: 1em;
			line-height: 2em;
		}
		#nav li {
			border: #b4cd95 solid 0px;
			border-bottom-width: 1px;
			margin-left:20px;
			margin-top: 4px;
			list-style-position: inside;
			list-style-image: url(/images/bullet-blank.gif);	
		}
		#nav li.active, #nav li:hover {		
			list-style-position: inside;		
			list-style-image: url(/images/bullet.gif);		
		}
		#anchor {
			margin-top:10px;
		}
		#anchor li {
			margin-left:20px;
			margin-top: 4px;
			list-style-position: inside;		
			list-style-image: url(/images/bullet-blank.gif);		
		}
		#anchor a {
			color: #2461A2;
			text-decoration: none;
			text-transform: capitalize;
			margin-left: 0px;
			font-size: 1em;
			line-height: 1.4em;
		}
		#anchor a:hover{
			text-decoration: underline;
		}

		#content-body {
			margin-left: 10px;
			margin-right: 30px;
			margin-bottom: 10px;
			background-color:#FFF
		}
		#content-body p {
			margin-bottom: 1em;
		}
		#content-body li {
			list-style-position: inside;		
		}
		
		#content-body img{
			padding: 5px;
		}

		#footer {
			float: right;
			margin-top: 5px;
			margin-right: 5px;
			color: #80561b;
			font-size: .9em;
		}
