﻿@charset "UTF-8";
/* CSS Document */
.twoColFixRtHdr #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
	-moz-box-shadow: 0 0 5px 5px #033;
	-webkit-box-shadow: 0 0 5px 5px #033;
	box-shadow: 0 0 10px 10px #033;
} 
.twoColFixRtHdr #header { 
	background: #000; 
	padding: 0 10px 0 20px;
	height: 50px;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; 
	padding: 10px 0;
}
.twoColFixRtHdr #sidebar1 {
	float: right; 
	width: 300px;
	background: #c95425; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	min-height: 500px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 325px 0 0;
	padding: 0 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#502723;
	height: 435px;
} 
.twoColFixRtHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
#header ul {
	float: left;
	position: absolute;
	padding: 0;
	margin: 0;
	list-style: none;
}
#header ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
    text-align: center;
	color: #fff;
	float: left;
	padding: 15px 36px;
}
#header.admin ul li {
	padding: 15px 29px;
}
#header ul li a:link {
	color: #fff;
	text-decoration: none;
}
#header ul li a:hover {
	color: #fff;
	text-decoration: none;
}
#header ul li a:visited {
	color: #fff;
	text-decoration: none;
}
.bottom-links {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #fff;
	padding-top:25px;
	padding-left: 20px;
	text-align: left;
	line-height: 40px;
}
.bottom-links a:link {
	color: #fff;
	text-decoration: none;
}
.bottom-links a:hover {
	color: #fff;
	text-decoration: none;
}
.bottom-links a:visited {
	color: #fff;
	text-decoration: none;
}
.thumbnail_block {
	vertical-align: middle;
	min-width: 100px;
	height: 100%;
	float:left;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 5px;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; 
	padding: 0;
	text-align: center; 
	background-color:#00786a;
	font-size: 12px;

	background-image: -moz-radial-gradient(50% 50%, circle closest-corner, #00786a, #000000 2000px);

	background-image: -webkit-radial-gradient(50% 50%, circle closest-corner, #00786a, #000000 2000px);

	background-image: -o-radial-gradient(50% 50%, circle closest-corner, #00786a, #000000 2000px);

	background-image: -ms-radial-gradient(50% 50%, circle closest-corner, #00786a, #000000 2000px);

	background-image: radial-gradient(50% 50%, circle closest-corner, #00786a, #000000 2000px)
}