@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.15 Verdana, Geneva, sans-serif;
	background: #ffcc99;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
}

h1, h3, h5, h6 { color:#2e5425; font-weight:bold;
}

h1 { font-size:22px; 
}

h2 { font-size:18px; color: #2e5425; font-weight:bold;
}

h3 { font-size:16px; 
}

h4 { font-size:14px; 
}

p, li{ font-size:13px;  	
}

a img { 
	border: none;
}
a:link {
	color:#2e5425; font-weight:bold; 
	text-decoration: underline; 
}
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline; color:#000;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 984px;
	background: #e5d9c1;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

hr {
	color:#FFF;
	line-height: normal;
}
header {
	background: #70846b; height:288px;  background-image: url(images/banner.jpg);  background-repeat: no-repeat;
}

.sidebar1 {
	float: right;
	width: 244px;
	background: #e5d9c1;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 740px;
	float: right;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 10px 10px 40px; font-size:14px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
nav ul li {
	border-bottom: 1px solid #666;  /* this creates the button separation */
}


nav ul a, nav ul a:visited { 
	padding: 5px 5px 5px 15px;
	display: block; 
	width: 160px; 
	text-decoration: none;
	background: #C6D580;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { 
	background; #ADB96E; 
	color: #FFF;
}

/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background: #000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
