@charset "UTF-8";
/* CSS Document */

body  {
	font: 90%/1.5em Georgia, "Times New Roman", Times, serif;
	background: #fffdf1 url(images/content-bg.gif) repeat-y center 0px;
	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: #63321B;
}
.twoColFixLtHdr #container {
	width: 1020px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #container a {
	font-weight: bold;
	color: #660033;
}
.twoColFixLtHdr #container a:hover {
	font-weight: bold;
	background: #660033;
	padding: 0px 0px;
	text-decoration: none;
	color: #fffdf1;
}
.twoColFixLtHdr #header {
	background: #dfd6b9;
	padding: 0;
	height: 190px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* ============== NAV ===================*/ 

.twoColFixLtHdr #nav {
	margin-bottom: 10px;
}
.twoColFixLtHdr #container table.border {
	border-bottom: 1px solid #63321B;
}

#nav {
	width: 1020px;
	font-size: 0.95em;
	line-height: normal;
	font-weight: bold;
	margin: 0px auto;
}


/* ============== other styles ===================*/ 

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 380px; /* 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 30px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #mainContent h1 {
	font-size: 1.6em;
	color: #a31f1c;
	margin: 20px 0px 10px 0px;
}
.twoColFixLtHdr h2, .twoColFixLtHdr h3, .twoColFixLtHdr h4, .twoColFixLtHdr h5 {
	margin: 0px;
	padding: 6px 0px;
}
.twoColFixLtHdr p {
	margin: 0px;
	padding: 4px 0px 10px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 330px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 30px;
}
.twoColFixLtHdr #sidebar1 h3 {
	color: #516f80;
	font-size: 1.3em;
}
.twoColFixLtHdr #footer {
	padding: 15px 20px 15px 30px;
} 
.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: 4px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer  h6  {
	width: 700px;
	color: #516f80;
	font-weight: bold;
	font-size: 0.85em;
	margin: 10px auto 0px;
}
.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: 10px;
	background: #FFFFFF;
	padding: 4px;
	border: 1px solid #944C4B;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
	border: 1px solid #944C4B;
	background: #FFFFFF;
	padding: 4px;
}
.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;
}
.photoby {
	font-size: 85%;
	font-style: italic;
}

