@charset "UTF-8";
body  {
	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: #663300;
	font-family: Georgia, Arial, Tahoma, sans-serif, "Trebuchet MS";
	font-size: 12px;
	background-image: url(images/background.jpg);
	background-repeat: repeat-y;
	background-position: center;
	background-attachment: fixed;
}
#container  {
	width: 800px;
	margin: 0 auto;
	text-align: left;
	background-image: url(images/images/main_09.jpg);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 
#header  {
	padding: 0px;
	margin: 0px;
} 
.twoColFixRtHdr #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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 220px;
	margin-right: 25px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	background-color: #DDCEAF;
	padding: 10px;
	font-size: 10px;
}
.twoColFixRtHdr #container #sidebar1 h1 {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 25px;
	margin-bottom: 0;
	margin-left: 25px;
	padding: 0px;
} 
#mainContent h1   {
	padding: 0px;
	font-size: 22px;
	font-weight: bold;
}
#mainContent h2   {
	font-size: 14px;
	font-weight: bold;
}
#mainContent h3 {
	font-size: 12px;
	font-weight: bold;
}
#mainContent h4 {
	font-size: 16px;
	font-style: italic;
	color: #DE6A07;
}
#mainContent h5 {
	font-size: 12px;
	color: #DE6A07;
	font-style: italic;
}
#mainContent h6 {
	font-size: 11px;
	color: #C2B59B;
	font-weight: normal;
}
#footer  {
	padding-top: 0;
	padding-bottom: 0;
} 
#container #footer h1  {
	font-size: 10px;
	font-weight: normal;
	padding-right: 25px;
	padding-left: 25px;
}
#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: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
.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;
	margin-bottom: 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;
}
.caption {
	font-size: 11px;
	font-style: italic;
	color: #CBA177;
}
.centeredtable {
	text-align: center;
}
.cleararoundimage {
	clear: right;
	overflow: auto;
}
a:link {
	color: #663300;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #663300;
}
a:hover {
	text-decoration: none;
	color: #F93;
}
a:active {
	text-decoration: none;
	color: #F93;
}
a img {border:none}
