

/* ==============STRUCTURAL =========*/


/* ============== Site Wide Defaults =========*/ 

body{
	background-color: #333333;

}
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;
}
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 0 auto;
	padding: 0 0 150px 0;
	width: 858px;
	background-color: #333333;
}
#container2 {/* =====establishes content area with faux columns==== */
	padding-bottom: 0;
	width: 858px;
	background-image: url(../images/structural/fauxcol/fauxcolumn.jpg);
	background-repeat: repeat-y;
}
#header{
	margin: 0px;
	padding: 0px;

}
#header img {
	margin: 0px;
}


/* =================Content Divs============================*/


#content{ /* ===wraps col1 and col2; clearfloat follows; enables footer to follow == */
	border: none;
	width: 854px;
}
#column1 { 
	float:left;
	margin: 0;
	width: 450px;
	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 {
	float:right;
	margin: 20px 0 0;
	width: 402px;
	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*/
}
#quote_main { 
	background-color: #DFCFAA;
	width: 450px;
	padding: 12px 0 24px 0;
	border-bottom: 2px dotted #c30;

}
#quote_main p{
	font-style: italic;
	padding-right: 20px;

}
#quote_main img{
	float: right;
	border: solid 1px #9f4808;
	margin-right: 12px;
	margin-left: 12px;
	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*/

}



/* 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 ============================================*/
