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: Palatino, serif;
	font-size: 12pt;
	background-color: #FCFCFC;
}
a:link {
	color: #947A1A;
	text-decoration: none;
}
a:visited {
	color: #717873;
	text-decoration: none;
}
a:hover {
	color: #B9971F;
	text-decoration: none;
}
h3 {
	font-weight: lighter;
}
.thrColFixHdr #container {
	width: 790px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 10px;
} 
.thrColFixHdr #header {
	margin-top: 3px;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: center;
}
.thrColFixHdr #container #Photos {
	text-align: center;
	margin-top: 12px;
}
.thrColFixHdr #container #NavBar {
	margin-top: 17px;
	margin-bottom: 7px;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #161616; /* padding keeps the content of the div away from the edges */
	margin-top: 14px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	padding-bottom: 15px;
	padding-right: 16px;
	padding-left: 20px;
	background-image: url(images/column.gif);
	margin-top: 12px;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0px;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 10px;
	font-size: 14pt;
} 
.thrColFixHdr #container #mainContent p {
	padding-top: 7px;
}
.thrColFixHdr #footer {
	color: #000000;
} 
.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 8pt;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 8px;
}
.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;
}
