@charset "UTF-8";
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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	background-image: url(../Images/Backgrounds/Bckgrnd.shoes.jpg);
}
.thrColFixHdr #container {
	width: 790px;
	text-align: center; /* this overrides the text-align: center on the body element. */
	background-color: #FFCC00;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-bottom-width: 20px;
	border-bottom-style: solid;
	border-bottom-color: #669900;
	padding: 0px;
} 
.thrColFixHdr #header {
	padding: 0;  /* 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: #FFCC00;
} 
.thrColFixHdr #header h1 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	background-image: url(../Images/Backgrounds/Bckgrnd.shoes.jpg);
	margin: 0;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 258px; /* padding keeps the content of the div away from the edges */
	background-color: #FFCC00;
	color: #993300;
	border-left-width: 3px;
	border-left-style: dashed;
	border-left-color: #FFFFFF;
	padding: 0px;
	border-top-width: 3px;
	border-top-style: dashed;
	border-top-color: #FFFFFF;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 246px; /* padding keeps the content of the div away from the edges */
	background-color: #FFCC00;
	border-top-width: 3px;
	border-right-width: 3px;
	border-top-style: dashed;
	border-right-style: dashed;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
.thrColFixHdr #mainContent {
	background-color: #FFCC00;
	margin-top: 0;
	margin-right: 260px;
	margin-bottom: 0;
	margin-left: 262px;
	border-right-width: 3px;
	border-left-width: 3px;
	border-right-style: dashed;
	border-left-style: dashed;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
	padding: 0;
	border-top-width: 3px;
	border-top-style: dashed;
	border-top-color: #FFFFFF;
} 
.thrColFixHdr #footer {
	background-color: #FFCC00;
	border-right-width: 3px;
	border-left-width: 3px;
	border-right-style: dashed;
	border-left-style: dashed;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-bottom-width: 3px;
	border-bottom-style: dashed;
	border-bottom-color: #FFCC00;
} 
.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;
}
.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;
}
