@charset "utf-8";
/* CSS Document */

body  {
	font-size:100%;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #482706;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #ebdcb1;
	background-image: url(../images/par_bg.jpg);
}
#container {
	width: 780px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/par_bg.jpg);
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-bottom: 10px;
} 
#header {
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav {
	text-align: center;
	font-size: 0.75em;
	font-weight: 400;
	padding: 2px;
	border-top-style: solid;
	border-top-color: #583205;
	border-top-width: 1px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #583205;
	border-right-color: #583205;
	border-bottom-color: #583205;
	border-left-color: #583205;
}
#mainContent {
	font-size: 0.8em;
	line-height: 1.5em;
	color: #482706;
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #A08867;
} 
#footer {
	padding: 0;
	background-color: #D1C297;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #533205;
	border-right-color: #533205;
	border-bottom-color: #533205;
	border-left-color: #533205;
	border-bottom-style: solid;
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 0;
}
.bodyText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 1.275em;
}
.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;
}
.hr1 {
	color:#603502;
}
a:link {
	color: #4F2A00;
	text-decoration: none;
	font-weight: normal;
}
a:visited {
	text-decoration: none;
	color: #009933;
	font-weight: inherit;
}
a:hover {
	text-decoration: none;
	color: #FFF;
	background-color: #0c8f9f;
	font-weight: inherit;
}
a:active {
	text-decoration: none;
	font-weight: inherit;
}
.h3 {margin-bottom: 0px;}

