/* -------- GLOBAL STYLES --------*/

h1, h2, h3, p, ul, li, img {
	margin: 0;
	padding: 0;
	border: 0;
}

body  {
	font: 100% Geneva, Arial, Helvetica, sans-serif;
	background: #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: #000;
}

/* -------- MAIN CONTAINER STYLES --------*/

 #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* -------- HEADER STYLES --------*/

 #header {
	background: #fff;  /* 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. */
} 

#header  h1 span {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	position: absolute;
	top: -10000px;
}

/* -------- NAVIGATION STYLES --------*/

#main-nav {
}

/* -------- SIDEBAR STYLES --------*/

 #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 288px;
}

/* -------- CONTENT STYLES --------*/

 #mainContent {
	float: left;
	margin-top: 50px;
	margin-right: 0;
	margin-bottom: 0;
	width: 490px;
}

#mainContent h2 {
	color: #6c2d07;
	font-size: 0.9em;
	margin-top: 12px;
}
#mainContent p {
	font-size: 0.75em;
	line-height: 1.1;
}
.link_top_space {
	margin-top: 5px;
}
#mainContent a {
	color: #6c2d07;
	text-decoration: none;
}

/* -------- FOOTER STYLES --------*/

#footer p {
	font-size: 0.6em;
	padding-top: 40px;
	padding-right: 0;
	padding-left: 0;
}

#footer a {
	color: #6c2d07;
	text-decoration: none;
	line-height: 1em;
}

 /* -------- VARIOUS CLASSES --------*/

.group {
	border-top: 1px solid #999999;
	padding-top: 2px;
}

.lite-border-bottom {
	border-bottom: 1px solid #999999;
	padding-bottom: 10px;
}
 
.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: 10px;
	margin-bottom: 5px;
}

.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;
	margin: 0px;
	padding: 0px;
}
