@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #cc3;
	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;
}
.twoColFixLtHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #cc3;
	text-align: left;
	border-top: none #000000;
	border-right: none #000000;
	border-bottom: none #000000;
	border-left: none #000000;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
} 
.twoColFixLtHdr #header #logo {
	float: left;
	height: 229px;
	width: 296px;
	padding: 0px;
	margin: 0px;
}

#header #shawnunderwood {
	float: right;
	height: 190px;
	width: 504px;
	padding: 0px;
}
#header #menu {
	padding: 0px;
	height: 39px;
	margin: 0px;
	float: right;
	width: 504px;
}


.twoColFixLtHdr #header {
	background: #cc3;
	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. */
	height: 229px;
	width: 800px;
	margin: 0px;
	
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 296px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #cc3; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	height: 550px;
	margin: 0px;
	clear: none;

}

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #cc3 url(../images/maincontent.jpg) repeat-y;
	width: 504px;
	border-style: none;
	float: right;
	clear: none;
} 
.twoColFixLtHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#cc3;
	margin: 0px 0px 0px 296px;
	height: 58px;
	width: 800px;
} 
.twoColFixLtHdr #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: 0px 0;
}
.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;
}
h3   {
	font: bold 18px "Courier New", Courier, monospace;
	color: #C00;
	text-align: center;
}
.twoColFixLtHdr #container #mainContent h4 {
	font: 14px "Courier New", Courier, monospace;
	color: #000;
	text-align: center;
}

p {
	margin: 25px;
}
.textred #mainContent{
	font: normal 16px "Courier New", Courier, monospace;
	color: #C00;
}
h4 {
	font: bold 14px "Courier New", Courier, monospace;
	color: #06C;
}

