@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 20px 0 0 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;
}
#container {
	width: 780px;
	background: #FFFFFF;
	position: relative;
	border-top: 2px solid #000000;
	padding: 10px 0 0 0;
	margin: 0 auto 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#nav {
	font-size: 65%;
	letter-spacing: .35em;
	text-align: left;
	color: #000000;
	text-transform: uppercase;
	margin: 0 0 0 300px;
	clear: right;
}
#nav a {
	text-decoration: none;
	color: #000000;
	}
#nav a:visited {
	color:#999999;
	}
#nav a:hover {
	color: #c3a473;
	}
#nav a:active {
	color:#8c713f;
	}		
#header { 
	background: #FFFFFF; 
	padding: 0 0 20px 0;
} 
#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 */
}
#sidebar1 {
	position: absolute; 
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
}
#mainContent {
	padding: 20px 20px 0 280px;
	min-height: 500px;
	height: auto !important;
	height: 500px;	
	} 
#mainContent img {
	margin-right: 15px;
	}
#mainContent p {
	padding-left: 15px;
}
#mainContent a {
	text-decoration: none;
	color: #849743;
	}
#mainContent a:active {
	color:#999999;
	}
#mainContent a:hover {
	color: #666600;
	}
div.package {
	width: auto;
	text-align: right;
	padding-top: 10px;
	margin-right: -32px;
}
#footer { 
	margin: 0;
	text-align: right;
	padding: 0;
	font-size: 90%;
	background:#FFFFFF;
	color: #000000;
	letter-spacing: .1em;	
	margin: 20px 0 6px 0;
	border-bottom: 2px solid #000000;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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: 22px;
}
.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;
}
#logobar {
	float: right;
	width: 400px;
	text-align: right;
}
#address {
	font-size: 70%;
	color: #000000;
	letter-spacing: .1em	
}
p {
	padding: 0;
	margin-bottom: -.1em;
	font-size: 70%;
	line-height: 2em;
}
h1 {
	font-size: 90%;
	color: #8c713f;
	letter-spacing: .5em;
}
	
h2 {
	font-size: 70%;
	color:#8c713f;
	letter-spacing: .2em;
	padding-bottom: -10px;
}
.emphasis1 {
	font-style: italic;
	}
	
.hanging-indent {
	text-indent: -40px;
	padding: 40px;
	}
.indent {
	padding-left: 15px;
	}
	
