@charset "utf-8";
body
{
	background: #666666;
	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.01%; /* Fix for IE & Opera */
	background-color: #EEE8E0;
}
h1, h2, h3, h4, h5, h6, p, pre, blockquote, address
{
	margin: .5em 0;
	padding: 0;
}
.twoColFixLtHdr #mainContent h1
{
	margin-bottom: 0em;
	padding-bottom: 0em;
}

ul, ol, dl
{
	margin: .5em 0;
	padding: 0 1em;
}
.twoColFixLtHdr #container
{
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #header
{
	background: url(../images/top-banner.jpg);
	padding: 0px;  /* 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: 100px;
	margin: 0px;
}
.twoColFixLtHdr #navBar
{
	background: #EDE6DE url(../images/navBar_bg.gif) repeat-x;
	padding: 0px;  /* 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: 30px;
	margin: 0px;
}
.twoColFixLtHdr #navBar a
{
	font-size: 0.85em;
	text-decoration: none;
	color: #036;
	line-height: 30px;
	font-family: Verdana, Geneva, sans-serif;
	padding-right: 6px;
	padding-left: 6px;
	border-left: 1px dotted #B19572;
}
.twoColFixLtHdr #navBar a:hover
{
	font-size: 0.9em;
	text-decoration: underline;
	color: #900;
}
.twoColFixLtHdr #navBar p
{
	font-family: Verdana, Geneva, sans-serif;
	font-style: normal;
	margin: 0px;
	padding: 0px 1em;
	line-height: 25px;
}
.twoColFixLtHdr #header h1
{
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFF;
	font-size: 2em;
	font-style: italic;
	text-align: right;
	line-height: 100px;
}
.twoColFixLtHdr #sidebar1
{
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 15px 20px;
	font-size: 0.75em;
	margin-top: 0px;
}
.twoColFixLtHdr #mainContent
{
	padding: 20px 10px 30px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
	border-left: 2px dashed #C6BCAE;
	font-size: 0.85em;
	margin: 0px 0px 0px 230px;
}
#mainContent .intro
{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.15em;
	line-height: 1.4;
	color: #404860;
	margin-bottom: 0.5em;
}
#mainContent h1, #mainContent h2, #mainContent h3, #mainContent h4, #mainContent h5
{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: normal;
	color: #BD8206;
}
/* ----- mainContent table styles -----*/

#mainContent table#gearTbl
{
	width: 100%;
	background: #445745;
	margin: 0 auto;
	border: 1px solid #333;
	border-collapse: collapse;
}
#mainContent #gearTbl caption
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #4D5744;
	line-height: 1.6;
	text-align: left;
}
#mainContent #gearTbl tbody
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 0.85em;
	font-style: normal;
	color: #fff;
}
#mainContent #gearTbl thead
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 1em;
	color: #fff;
}
#mainContent #gearTbl th
{
	background: #444;
	height: 190px;
	vertical-align: bottom;
	text-align: center;
	padding-bottom: 0.5em;
	border: 1px solid #333;
}
#mainContent #gearTbl td
{
	padding: 1.5em 1em;
	border: 1px solid #333;
}
#mainContent #gearTbl tr.odd
{
	background: #58725a;
}
#mainContent #gearTbl tr:hover
{
	background: #333;
}
.twoColFixLtHdr #footer
{
	padding: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDD8D2;
	border-top: 1px solid #333;
}
.twoColFixLtHdr #footer p
{
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
	text-align: center;
}
.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;
}
.author
{
	font-style: italic;
	font-weight: bold;
	color: #066;
}
