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


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

body{
	background-color: #6a5d56;
	background-image: url(../images_main/patterns/blackcanvas4.jpg);
	background-repeat: repeat;
}
html, body, div, span, applet, object, ul, li { 
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size: 100%; 
	font: Verdana, Arial, Helvetica, sans-serif;

}
img{
	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*/ 
}

a:link {
	color: #222;
	text-decoration: underline;
}
a:visited {
	color: #222;
}

a:hover {
	color: #222;
}
a:active {
	color: #222;
}

/* ==============Outer Containers and Header=========*/ 

#container1 {/* =====centers and gives padding at bottom==== */
	margin: 0 auto;
	padding-bottom: 50px;
	width: 812px;

}
#container2 {/* =====establishes content area ==== */

	width: 810px;
	background-color: #99927f;
	border-right: 1px solid #b66558;
	border-bottom: 1px solid #b66558;
	border-left: 1px solid #b66558;
	border-top: 12px solid #e0be62; /*yellow */
	border-top: 12px solid #712225;/*brick */
	border-top: 0;
	position: relative;
}

#header{


}
#header img {
	margin: 0px;
	border: none;
}


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


#content{ /* ===wraps col1 and col2; clearfloat follows; enables footer to follow == */
	border: none;
	width: 810px;
	margin: 0;
	padding: 0;
}
#column1 { 
	float:left;
	padding: 0 0 50px 75px;
	margin: 0;
	width: 655px;
	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*/
}
#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*/


}
#title {
	width: 810px;
	border-bottom: 1px solid #6a5d56;
	margin-bottom: 0;
	height: 60px;
	clear: both;
}
#title p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 28px;
	margin: 0;
	padding: 12px 80px 0 100px;
	color:#6a5d56;
	float: left;
	white-space: nowrap;

}
#title h1{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
	padding: 24px 80px 0 0;
	float: right;
	color:#DFCFAA;
	color:#BA8741;
	color:#6a5d56;
}
#quote_main { 
	background-color: #DFCFAA;
	width: 595px;
	padding: 12px 25px 24px 35px;
	border-bottom: 4px solid #712225;
	background-color: #6a5d56;
}
#quote_main p{
	font-style: italic;
	color: #DFCFAA;
	font-size: .9em;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 12px;
	width: 100%;
}
#quote_main p.normal{
	font-style: normal;
}
#quote_main img{
	float: right;
	border: solid 1px #9f4808;
	margin-left: 12px;
	margin-bottom: 12px;	
}
#maincontent{
	width: 595px;
	padding: 12px 25px 0 35px;
	
}

/* 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 ============================================*/

