﻿/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	/*background:gray; -> turned off for background image*/
	
	font-family:arial,verdana, Garamond, Times New Roman, Sans-Serif;
	/*font-size:medium;*/
	color:#000000;
}
/* -> Will use the css-content setting for the <h> tags.
h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}
	h1, h2, a {
		color:orange;
	}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}
*/
#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:987px;/*used to be 987 on Jan 6. 2010*/
	/*background:#f0f0f0;*/
	
	/*height:auto; !important;  real browsers */
	height:100%;  /*IE6: treaded as min-height*/

	/*min-height:885px;  controls the minimum height of each page */
}

#header
{
	/*padding:1em;*/ /*background: #ddd url(  "../csslayout.gif" ) 98% 10px no-repeat;*/
	border-bottom: 6px double gray;
	padding-bottom: 2.25em; /*Used to be 2em --> ONLY! Adjust this number to change the top double grey line spacing*/
	color: Black;
	height: 40px;/*This controls: the height of the header portion of the page mainly the menu height too*/
	width: 989px;
}
#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}
#content
{
	/*Original used to be: padding:1em 1em 5em; */ /*PADDING SETTINGS:=> Padding will change the inside spacing of this DIV */
	padding-bottom: 0em; /*Used to be 2.5em*/
	padding-left: 0em; /*Used to be 1em*/
	padding-right: 0em; /*Used to be 1em*/
	padding-top: 0em; /*Used to be 0.5em*/ /*BOARDER SETTINGS:*/
	border-bottom: #666666 1px solid;
	border-left: #666666 1px solid;
	border-top: #666666 1px solid;
	border-right: #666666 1px solid;
	height: auto;
	width:100%;
	/*background-color: #ffffff;*/
}

#content p
{
	text-align: justify;
	padding-bottom: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0px;
}

#footer
{ 
	position: static; /*Used to be absolute position*/
	height: 25px;
	bottom: auto; /* was 0 before */
	border-top: 6px double gray;
	background: #000000;
	color: #ffffff;
	font-size: 1em;
	text-align: center;
	width: 984px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-top: 5px; /*was .8em before*/
	margin-bottom: 5px;
}

#footer p {
	padding:1em;
	margin:0;
	}
#sitemap
{
	font-size: 1.1em;
	width: 100%;
	position: static;
	height: 50%;
	background-color: #666666;
	vertical-align: middle;
}
/*-------------------- NEW MENU CLASS --------------------------
This .menu class below is for the RadMenu formatting

----------------------------------------------------------------*/
#menu
{
	text-transform: uppercase;
	color: #ffffff;
	font-size: 1.1em;
	font-weight: bold;
	width: 989px;
	height: 25px;
	text-align: left;
}

#menu a:link
{
	text-decoration: underline;
	color: #ffffff;
	text-decoration:  none;
}
/*
.menu a:visited
{
	color: #ffffff; 
	text-decoration: none;
}
*/
#menu a:hover
{
	text-decoration: underline;
	font-weight: bold;
	color: #ffffbb;
}

#menu a:active
{
	text-decoration: underline;
	color: #ffcc00;
}
.menu
{
	text-decoration: underline;
	font-weight: bold;
	color: #ffffbb;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	pagetitle - OFFICIAL DIV ID SETTING FOR THIS CONTROL

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


#pagetitle
{
	position: static;
	border-bottom: #666666 2px solid;
	height: 20px;
	line-height: 1.1em;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: -5px;
	padding-bottom: 10px;
	text-transform: uppercase;
	color: #000099;
	font-weight: bold;
}
#pagetitle h1 {padding:1em; margin:0;}

/*#pagetitle a:link,
#pagetitle a:visited {
	color:#FFFFFF;
	text-decoration:none;
	}

#pagetitle a:hover{
	color:#D4E7F8;
	text-decoration:none;
	}*/