@charset "UTF-8";
/* CSS Document */

body  {
	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: #000000;
	font-family:'Quattrocento Sans', sans-serif;
	font-size: 100%;
	background-repeat: repeat;
}
.thrColFixHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-style: none;
} 


.thrColFixHdr #header {
	font-family: 'Quattrocento Sans', sans-serif;  /* 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. */
	background-color: #FFFFFF;
	background-image: url(../images/Simplicity-Seating.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 110px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 4px;
} 

#header img {
	padding-right: 5px;
}
.thrColFixHdr #mainContent {
	margin-top: 12px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 35;
	padding-left: 10px;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #999999;
	text-align: center;
	font-size: 75%;
} 
.thrColFixHdr #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: 10px 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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-top: -75px;
}
.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;
}

.small {
	font-size: 70%;
}
a:link {
	color: #C41E3A;
	text-decoration: none;
}

a:hover {
	color: #C41E3A;
	text-decoration: underline;
}
a:visited {
	color: #C41E3A;
	text-decoration: none;
}

#mainContent h1 {
	font-weight: 400;
	font-size: 220%;
}
.simple-red {
	color: #D71146;
}
