/* ==============STRUCTURAL =========*/


/* ============== Site Wide Defaults =========*/ 

body{
	background-color: #6a5d56;
}
html, body, div, span, object, ul, li{ 
	margin:0;
	padding:0;
	border:0;
	font-size: 1em; 
	font: Verdana, Arial, Helvetica, sans-serif;
}
a:link {
	color: #DFCFAA;
	text-decoration: underline;
}
a:visited {
	color: #DFCFAA;
}
a:hover {
	color: #DFCFAA;
}
a:active {
	color: #DFCFAA;
}
/* ==============Outer Containers and Header=========*/ 

#container1 {/* =====centers and gives padding at bottom==== */
	margin: 0 auto 0 auto;
	padding: 0 0 100px 0;
	width: 812px;
	background-color: #6a5d56;
}
#container2 {/* =====establishes content area ==== */
	padding-bottom: 0;
	width: 810px;
	background-color: #333333;
	border-right: 1px solid #CC6;
	border-bottom: 1px solid #CC6;
	border-left: 1px solid #CC6;
	border-top: 12px solid #e0be62; /*yellow */
	border-top: 12px solid #a94943;/*brick */
	position: relative;
}
#header{
	margin: 0px;
	padding: 0px;
}
#header img {
	margin: 0px;
	border: none;
}

/* =================Content Divs============================*/

#content{ /* ===wraps col1 and col2; clearfloat follows; enables footer to follow == */
	border: none;
	width: 810px;
	margin-top: 0;
	padding:0;
}
#column1 {
	float:left;
	padding: 0 0 100px 85px;
	margin: 0;
	width: 660px;

}
#column2 {/*paceholder in case we later add a column2*/	
	float:right;
	margin: 0;
	width: 0;
	overflow: hidden; /*fixes IE 6 bug that causes floated column to drop below the floated column in should be next to -- caused by IE6 not being able to handle italics properly when in floated columns*/
	display: inline; /*fixes IE 6 bug that causes margins to double when an element with a margin is floated in the direction of the margin -- safe to put on all floats to avoid forgetting one*/

}
.blackback{
	background-color: #000000;

}
/* THE HACK ZONE - */


/*==================================================START:Clearfix=================================================*/


/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;

}	     /* further ensures the period is not visible */


.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}

/*=======================================END Clearfix ============================================*/

