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

body {
	background: #000000;
	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: #336600;
	background-image: url(images/80x80green.gif);
	background-repeat: repeat;
	background-color: #3C4C1C;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 20px;
}
a:visited {
}

.twoColFixLtHdr #container {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #101C10;
	text-align: left;
	background-color: #FFFFCC;
}
.twoColFixLtHdr #container1024 {
	width: 1024px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #101C10;
	text-align: left;
	background-color: #FFFFE6;
}

.twoColFixLtHdr #header {
	background: #3C4C1C;
	padding: 0 0px 0 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. */
}
.twoColFixLtHdr #header h1 {
	margin: 0; /* 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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #navbar1 {
	width: auto;
	background-color: #FFBA45;
	background-image: url(images/linksnavbar.png);
	letter-spacing: 1px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #CC6600;
	line-height: 28px;
}
#navbar1 a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #CC6600;
	text-decoration: none;
	font-weight: bold;
}
#navbar1 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #CC6600;
	text-decoration: none;
	font-weight: bold;
}
#navbar1 a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #CC6600;
	text-decoration: none;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent {
	margin: 0 10px 0 10px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the navbar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #navbar1 space when the content in #navbar1 ends. */
	padding: 10px 10px 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.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;
}
.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;
}
.orangefont {
	color: #FF9900
}
.darkorangefont {
	color: #FF7700;
}
.yellowfont {
	color: #FFFFCC
}
.darkyellowfont {
	color: #FFFF99
}
.greenfont {
	color: #336600;
}
.smallblackArial {
	color: #000000;
	font-size: x-small;
}
a:link {
	color: #FF9900;
	font-weight: bold;
}
a:hover {
	color: #FF6600;
}
a:visited {
	color: #338800;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #FFA500;
	width: auto;
	line-height: 28px;
	background-image: url(images/linksnavbar.png);
}
.twoColFixLtHdr #footer p {
	padding: 0 0 0 0;
}
.smallerfont {
	font-size: smaller
}
.boldfont {
	font-weight: bold
}
