@charset "utf-8";
body {
	font: 100% Verdana, Geneva, Arial, sans-serif;
	background: #333333;
	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: #cccccc;
}
body a:link, a:visited {
	color: #cccccc;
	font-weight: normal;
	text-decoration:none;
}
body a:hover {
	color: #ffffff;
	font-weight: normal;
	text-decoration:none;
}
.IndexPage #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #333333;
	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. */
}
.IndexPage #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 320px; /* 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 */
	padding-top: 150px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.IndexPage #mainContent {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.IndexPage #footer {
	margin: 0;
	background:#333333;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align:center;
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: x-small;
	color: #999999;
	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;
}
.IndexPage #container #sidebar1 .SiteOwner {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: large;
	font-style: normal;
	color: #cccccc;
	word-spacing: normal;
	text-align: center;
}
.IndexPage #container #sidebar1 .SiteName {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: medium;
	color: #cc9900;
	text-align: center;
	font-weight: normal;
	font-variant: normal;
}
.IndexPage #container #sidebar1 .MainLinks {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: small;
	color: #cccccc;
	line-height: 40px;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
}
.IndexPage #container #sidebar1 .MainLinks a:link, a:visited {
	color: #cccccc;
	font-weight: bold;
	text-decoration: none;
}
.IndexPage #container #sidebar1 .MainLinks a:hover {
	color: #eeeeee;
	font-weight: bold;
	text-decoration: none;
}
.IndexPage #container #sidebar1 .MoreLinks {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #cc9900;
	line-height: 60px;
	text-decoration:none;
	text-align: left;
}
.IndexPage #container #sidebar1 .MoreLinks a:link, a:visited {
	color: #cc9900;
	font-weight: normal;
	text-decoration:none;
}
.IndexPage #container #sidebar1 .MoreLinks a:hover {
	color: #ff9900;
	font-weight: normal;
	text-decoration:none;
}
.BodyPage #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #333333;
	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. */
}
.BodyPage #container #flashcontent {
	width: 980px;
	height: 640px;
}
.BodyPage #container #header .SiteOwner {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: large;
	font-style: normal;
	font-weight: normal;
	color: #cccccc;
	word-spacing: normal;
	text-align: left;
}
.BodyPage #container #header .SiteOwner a:link, a:visited, a:hover {
	font-weight: normal;
	color: #cccccc;
	text-decoration: none;
}
.BodyPage #container #header .SiteName {
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: medium;
	color: #cc9900;
	text-align: left;
	font-weight: normal;
	font-variant: normal;
}
.BodyPage #container #header .SiteName {
	color: #cc9900;
	text-decoration: none;
}
.BodyPage #header {
	background: #333333;
	padding: 0 10px 0 20px;  /* 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: 60px;
}
.BodyPage #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.BodyPage #TopNavSidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 320px; /* 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 */
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: x-small;
	color: #999999;
	text-align: right;
}
.BodyPage #TopNavSidebar a:link, a:visited, a:hover {
	color: #999999;
	text-decoration: none;
}
.BodyPage #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #333333;
}
.BodyPage #footer {
	margin: 0;
	background:#333333;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align:center;
	font-family: Verdana, Geneva, Arial, sans-serif;
	font-size: x-small;
	color: #999999;
	text-align: center;
}
.BodyPage #footer a:link, a:visited, a:hover {
	color: #999999;
	text-decoration: none;
}
.BodyTitle {
	line-height: 24px;
	font-weight: bold;
}
