@charset "UTF-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #000;
	background: #243D23; /* bluegreen blend between #455F02  and #021A43 */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	border: 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 */
	min-width:908px; /* This is the sum of the width of the left and right header images plus the 40px each for left and right margins */
}
#container {
	width: 94%; /* The width is given as a percentage here so that auto margins can be set and avoid a bug in IE6 */
	padding: 0; /* the auto margins (in conjunction with a width) center the page */
	background: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 1.5em auto 1.5em auto;
}
#headerwrapper { /* the whole purpose of this is to give a background image under the left and right header images if the window gets too big */
	width: auto;
	height: 128px;
	background:#B3C7EA;
	border: none;
	padding: 0;
	margin: 0;
}
#headerwrapper p {
	text-align: right;
	font-family:"Times New Roman", Times, serif;
	font-style:italic;
	font-weight:bold;
	color: #FFF;
	position: absolute;
	padding: 0;
	margin: 0;
	right: 16px;
	top: 16px;
}
#headerrightimage {
	width: auto;
	background:none;
	background-image:url(../image/layout/bannerright.jpg);
	background-repeat:no-repeat;
	background-position: top right;
	border: none;
	padding: 0;
	margin: 0 auto 0 0; /* This left margin is 0 to align the left image properly below */
}
#header {
	position: relative; /* needed so that the logo navigation link can be absolutely positioned within it. */
	height: 128px;
	margin: 0;
	padding: 0; /* uses bottom padding in pixels to be height the side and bottom gradients */
	border: none;
}
#header a {
	position: absolute;
	top: 0;
	left: 0;
	height: 128px;
	width: 706px;
	padding: 0;
	margin: 0;
	border: none;
	text-align: left;
	background: #FFF;
	background-image:url(../image/layout/bannerleft.jpg);
	background-repeat:no-repeat;
	background-position: top left;
	text-decoration: none;
	outline: none;
	color: #AF127C;
	clear: both; /* added to fix IE6.0 bug */
}
#header a:visited {
	text-decoration: none;
	outline: none;
}
#header span {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}
#navbar {
	width: auto;
	margin: 0;
	border-top: 3px #455F02 solid;
	border-bottom: 3px #455F02 solid;
	padding: .5em 2% .5em 2%;
	background: #693057;
	clear:both; /* added to fix IE6.0 bug */
}
#navbar table {
	margin: 0 auto 0 auto;
	padding: 0;
	border: none;
	font-size: .688em;
	letter-spacing: 0.1em;
	font-weight: bold;
	width: 100%;
	text-align: center;
	background: #6F823C;
}
#navbar td {
	border: 1px #FFF solid;
	padding: .25em;
	color: #021A43;
	background:#B3C7EA;
}
#navbar a {
	color: #021A43;
	text-decoration: none;
}
#navbar a:hover {
	color:#AF127C;
	text-decoration: none;
	background:#B3C7EA;
}
#innerwrapper {
	width: auto;
	margin: 0;
	padding: 1.5%;
	background: #BFC8A8; /* pale green: this is a blend between #999 and #E5F7B7 */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: auto;
}
.curvedtopleft { /* this is the left corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #FFF;
	background-image:url(../image/layout/cornersFFF/ul.jpg);
	background-repeat:no-repeat;
	background-position: top left;
	border: none;
	padding: 0;
	margin: 0;
}
.curvedtopright { /* this is the right corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #FFF;
	background-image:url(../image/layout/cornersFFF/ur.jpg);
	background-repeat:no-repeat;
	background-position: top right;
	border: none;
	padding: 0;
	margin: 0 0 0 8px;
}
.curvedbottomleft { /* this is the left corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #FFF;
	background-image:url(../image/layout/cornersFFF/ll.jpg);
	background-repeat:no-repeat;
	background-position: bottom left;
	border: none;
	padding: 0;
	margin: 0;
}
.curvedbottomright { /* this is the right corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #FFF;
	background-image:url(../image/layout/cornersFFF/lr.jpg);
	background-repeat:no-repeat;
	background-position: bottom right;
	padding: 0;
	margin: 0 0 0 8px;
}
/* Tips for sidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".Elastic #sidebar1 p" rule.
*/
#sidebarRwrapper {
	float: right;
	width: 30%; /* since this element is floated, a width must be given */
	background: #FFF;
	border: none;
	margin: 0;
	padding: 0;
}
#sidebarLwrapper {
	float: left;
	width: 20%; /* since this element is floated, a width must be given */
	background: #FFF;
	border: none;
	margin: 0;
	padding: 0;
}
#sidebar {
	width: auto;
	background:none;
	margin: 0;
	border: none;
	padding-top: .5em;
	padding-right: 1em;
	padding-bottom: .125em;
	padding-left: 1em;
	font-size: .75em;
	color: #000;
	overflow: auto;
}
#sidebar h2 { /* this should be the first element of the content */
	margin-top: .125em;
}
#sidebarRwrapper li {
	padding-top: .25em;
}
#sidebarLwrapper li {
	padding-top: .5em; /* was .25 on the top for the home page */
	padding-bottom: .5em;
}
#sidebarLwrapper ul { /* added for the subpages assuming it only will contain a list to keep the left margin not looking so big */
	padding-left: 1.5em;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
	margin: 0;
	color: #693057;
}
/* Tips for maincontent:
1. The space between the maincontent and sidebar1 is created with the left margin on the maincontent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #maincontent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated maincontent area below the sidebar) if an element wider than it can contain is placed within the maincontent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the maincontent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the maincontent "hasLayout." This may help avoid several IE-specific bugs.
*/
#maincontentLwrapper {
	width: auto;
	background: #FFF;
	border: none;
	margin: 0 31.5% 0 0;
	padding: 0;
}
#maincontentRwrapper {
	width: auto;
	background: #FFF;
	border: none;
	margin: 0 0 0 21.5%;
	padding: 0;
}
#maincontentwrapper {
	width: auto;
	background: #FFF;
	border: none;
	margin: 0;
	padding: 0;
}
#maincontent {
	width: auto;
	background: #FFF;
	margin: 0;
	border: none;
	padding-top: .5em;
	padding-right: 1em;
	padding-bottom: .125em;
	padding-left: 1em;
	font-size: .813em;
	color: #000;
	overflow: auto;
}
#maincontent h1 { /* this should be the first element of the content */
	margin-top: .125em;
}
#statisticswrapper {
	float: right;
	width:  212px; /* since this element is floated, a width must be given Either 40% or the width of the logo plus the padding should be gove */
	background: #E5F7B7;
	border: none;
	margin: 0 0 1em 1em;
	padding: 0;
}
#statistics {
	width: auto;
	background:none;
	margin: 0;
	border: none;
	padding-top: .5em;
	padding-right: 1em;
	padding-bottom: .125em;
	padding-left: 1em;
	color: #000;
}
#statistics h2 { /* this should be the first element of the main content */
	margin-top: .125em;
	color: #455F02;
}
#statistics a:link {
	color: #AF127C;
}
#statistics a:visited {
	color: #693057;
}
#statistics a:hover {
	color: #FFF;
	text-decoration:none;
	background: #455F02;
}
#statistics a:active {
	color: #AF127C;
}
#statistics li {
	padding-top: .25em;
}
.curvedcontrasttopleft { /* this is the left corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #E5F7B7;
	background-image:url(../image/layout/cornersE5F7B7/ul.jpg);
	background-repeat:no-repeat;
	background-position: top left;
	border: none;
	padding: 0;
	margin: 0;
}
.curvedcontrasttopright { /* this is the right corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #E5F7B7;
	background-image:url(../image/layout/cornersE5F7B7/ur.jpg);
	background-repeat:no-repeat;
	background-position: top right;
	border: none;
	padding: 0;
	margin: 0 0 0 8px;
}
.curvedcontrastbottomleft { /* this is the left corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #E5F7B7;
	background-image:url(../image/layout/cornersE5F7B7/ll.jpg);
	background-repeat:no-repeat;
	background-position: bottom left;
	border: none;
	padding: 0;
	margin: 0;
}
.curvedcontrastbottomright { /* this is the right corner */
	width: auto;
	height: 8px; /* this is the width of the corner */
	background: #E5F7B7;
	background-image:url(../image/layout/cornersE5F7B7/lr.jpg);
	background-repeat:no-repeat;
	background-position: bottom right;
	border: none;
	padding: 0;
	margin: 0 0 0 8px;
}
#footer {
	background: #693057;
	font-size: .688em;
	letter-spacing: 0.1em;
	font-weight: bold;
	color: #FFF;
	padding: 1em 2% 0 2%; /* uses top padding in pixels to match the side and bottom gradients */
	border-top: 3px #455F02 solid;
}
#footer p {
	padding: 0;
	margin: 0;
	text-align:center;
}
#footerbottomleft { /* this is the left corner */
	clear: both;
	width:  auto;
	height: 16px; /* this is the width of the corner */
	background: #693057;
	background-image:url(../image/layout/corners693057/bigll.jpg);
	background-repeat:no-repeat;
	background-position: bottom left;
	border: none;
	padding: 0;
	margin: 0 0 16px 0;
}
#footerbottomright { /* this is the right corner */
	width: auto;
	height: 16px; /* this is the width of the corner */
	background: #693057;
	background-image:url(../image/layout/corners693057/biglr.jpg);
	background-repeat:no-repeat;
	background-position: bottom right;
	border: none;
	padding: 0;
	margin: 0 0 0 16px;
}
