*{
	margin:0;
	padding:0;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:url(imgs/body_bg.png) repeat-x top #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

img{
	border:0;
}

a{
	color:#F16E21;
	text-decoration:none;
	border:0;
}
a:hover{
	background:#F16E21;
	color:#fff;
}

#wrapper-shadow{
margin-left:auto;
margin-right:auto;
margin-bottom:-176px;
height:176px;
width:970px;
background:url(imgs/wrapper_shadow.png) no-repeat;
}

.template #container { 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0 5px;
	padding-bottom:7px;
	width: 950px;
	/*max-width:1024px;*/
	background:url(imgs/container_bg.png) repeat-y transparent;
	border:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow:hidden;
}
	.template #container p{
	
	}
	
	
.template #header { 
	background:#513127; 
	padding: 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height:60px;
	border-bottom:2px solid #663300;
} 
	.template #header h2 {
		margin: 0;
		padding: 0;
		float:left;
	}
	.template #header .links{
		margin-right:10px;
		float:right;
		font-size:9px;
		color:#fff;
		overflow:hidden;
	}
	.template #header a, .template #header a:visited{
		color:#fff;
		text-decoration:none;
	}
	.template #header a:hover{
		text-decoration:underline;
	}
	
	.template #searchform{
	display:inline;
	}
	.template #search{
	font-size:10pt;
	display:inline;
	}
		.template #search input{
		font-size:8pt;
		}

.template #sub{
width:100%;
background:#e9e4d9;
height:26px;
}
	.template #sub h3{
	margin:5px 10px;
	font-size:10pt;
	display:inline;
	line-height:1.9em;
	}
	.template #sub h4{
	margin:5px 10px;
	font-size:10pt;
	font-weight:normal;
	display:inline;
	line-height:1.9em;
	}
		
.template #sidebar {
	padding-bottom:10px;
	float: right;
	width: 220px;
	background: #e9e4d9;
	font-size:9pt;
	line-height:1.4em;
	color:#4c4b48;
}
	.template #sidebar h3{
	padding:10px 15px 3px 15px;
	font-size:1.2em;
	}
	.template #sidebar p{
	padding:0 15px 15px 15px;
	font-size:8pt;
	}
	.template #sidebar ul{
	margin-top:8px;
	list-style:none;
	}
		.template #sidebar ul li{
		padding:0;
		border:1px #9d9887;
		border-top-style:solid;
		background:url(imgs/nav_sub-shadow.png) repeat-x bottom #E9E4D9;
		}
		.template #sidebar ul li a{
		padding:4px 5px 5px 15px;
		display:block;
		color:#4c4b48;
		background:transparent;
		border:0;
		}
		.template #sidebar ul li a:hover{
		background:#c5bbab;
		}
	.template #sidebar img{
	border:1px solid #C8C6BD;
	}
.template #mainContent { 
	margin: 10px 15px 10px 10px; 
	padding: 0;
	font-size:9pt;
	color:#32312f;
	width:700px;
}
	.template #mainContent h1{
	font-size:2em;
	text-transform:uppercase;
	}
	.template #mainContent h2{
	font-size:1.5em;
	letter-spacing:-.01em;
	}
	.template #mainContent p{
	margin-bottom:10px;
	padding-left:10px;
	line-height:1.6em;
	}
	.template #mainContent #print-url{
	display:none;
	}
.template #footer{
	padding:1em 0 1em 100px;
	font-size:8pt;
	text-align:center;
	color:#7C7B76;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
