@charset "UTF-8";
body  {
	font: 90% Arial, Helvetica, sans-serif;
	background: #ccc url(images/template/WhiteGreyGradVertical.jpg) repeat-x;
	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;
}
#container { 
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #919d75;
	margin: 0 auto 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: #000000 1px solid;
	border-top: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.header { 
	padding: 0; 
	margin: 10px 0 0 0;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#mainContent { 
	margin: 0; /* 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: 10px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff;
	min-height: 300px;
} 
#footer { 
	margin: 0;
	padding: 10px 0 15px 0;
	color: #ddd;
	height: 150px;
	background: #919d75;
} 
#footerBBB {
	float:right; 
	padding-top: 30px; 
	padding-right: 10px;
}
#footerText {
	width: 600px; 
	text-align: center; 
	margin-left: 140px
}
#footer p { 
	margin: 8px;
	padding: 0;
} 
#footer a { 
	color: #fff;
	text-decoration: none;
} 
#footer a:visited { 
	color: #fff;
} 
#footer a:hover { 
	color: #ddd;
	text-decoration: underline;
} 
.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;
}

.sub1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333333;
	font-weight: bold;
}
a:link {
	color: #336633;
}
a:visited {
	color: #336633;
}
a:hover {
	color: #8d7150;
}
a:active {
	color: #990000;
}
h1, h2, h3, h4, h5 {
	font-family: "Times New Roman", Times, serif;
	color: #895306;
}
h1 {
	margin-bottom: 16px;
	border-bottom: #666 solid 1px;
}
h1 a {
	text-decoration: none;
}
h1 a:hover {
	text-decoration: underline;
}
h2 {
	font-size: 20px;
	margin-bottom: 4px;
}
h3 {
	font-size: 18px;
	margin-bottom: 4px;
}
h4 {
	font-size: 14px;
	margin-bottom: 4px;
}
p {
	margin-top: 0;
}
li {
	margin-bottom: 8px;
}
.pageart {
	float: right; 
	margin: 0 0 8px 8px;
}
.sidebar {
	float: right; 
	margin: 0 0 8px 8px;
	padding: 40px 12px;
	border: #999999 thin solid;
	background: #EEEEEE;
	width: 290px;
	font: 150% "Times New Roman", Times, serif;
}
.sidebar p, .sidebar h1, .sidebar h2, .sidebar h3, .sidebar h4, .sidebar h5 {
	margin: 0;
	padding: 0;
	color: #000;
}
ul.indexList {
	margin-top: 14px;
	font-size: 16px;
	font-weight: bold;
}
.textSmall {
	font-size: 90%;
}