/*
	Palette:
	Default font: Arial, Helvetica, Sans-serif
	Default size: 10pt (1em)
	Text color: #132b47
	Offwhite background: #fffef5 (main content background)
	Blue: #2c4b79 (nav bar background)
	Dark blue: #132b47 (standard text)
	Red: #a10000
	
	Normal page structure:
	
	body - whole window, tile background
		bodydouble - whole window, gradient background on top
			Container - sets content width, auto-centered
				Main - main content body, indented left & right from Container,
				       float to pushes down Footer
					LeftNavBar - absolute position within Container						 
					/LeftNavBar
					RightPhotos - absolute position within Container
					/RightPhotos
					MainIndent - constrains text flow within Main
								to avoid overlap with LeftNavBar and RightPhotos
					/MainIndent
				/Main
				Footer - width of Container, clears bottom of Main
				/Footer
			/Container
		/bodydouble
	/body
*/
html {
	height:100%; margin:0; padding:0;
}

body {
	margin:0; padding:0;
	width:100%; height:100%;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10pt; /* = 1.0 em */
	color:#132b47;
	background-image:url(../images/backgrndtile.jpg);
	background-repeat:repeat;
}

#bodydouble {
	margin:0; padding:0;
	width:100%; height:850px;  /* height of the background gradient */
	background-image:url(../images/backgrndgradient.jpg);
	background-repeat:repeat-x;
}

img {
	border:0;
}

h1, h2, h3, h4, h5, h6 {
	color:#A10000;
	margin:0 0 .4em 0; 
	padding:0;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:normal;
}

h1 { font-size:2.2em; }

h2 { font-size: 1.4em; }

#Container {
	position:relative; top:0; left:0;
	width:800px; height:500px;
	margin-left:auto; margin-right:auto;
	margin-top:0; margin-bottom:0;
	padding:0;
	border:0;
}

#Main {
	position:absolute; top:0px; left:120px;
	margin:0; padding:0;
	width:622px;
	background-color:#fffef5;
	z-index:0;
}

#MainIndent {
	position:static;
	margin:50px 0 0 90px;
	width:317px;
	padding:0;
	z-index:1;
}

#BottomIndent {
	position:static;
	margin:50px 0 0 90px;
	width:317px;
	padding:0;
	z-index:1;
}

#MainIndent p {
	font-size: 1.1em;
	margin:0 0 1em 0; padding:0;
}

#MainIndent a {
	color: #a10000;
	text-decoration:none;
}

#MainIndent a:hover {
	text-decoration:underline;
}

#Footer { /* pinned to the bottom of Main */
	float:left; width:100%;
	padding:0; margin:0;
}

#Footer p {
	font-size:.8em;
	padding:0; margin:0;
}

#FooterLinks { /* pinned to the bottom of Main */
	float:left; width:100%;
	padding:10px 0 10px 0; 
	margin:0;
	background-image:url(../images/backgrndtile.jpg);
}

#FooterLinks table {
	width:100%;
}

#FooterLinks table tr {
	height:auto;
}

#FooterLinks table tr td {
	width:auto;
	text-align:center;
	border-right:1px solid #ffffff;
}

#FooterLinks a {
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
	font-size:.8em; line-height:.8em;
	text-decoration:none;
}

#FooterValidation { /* pinned to the bottom of Main */
	float:left; width:100%;
	padding:10px 0 10px 0; 
	margin:0;
	background-image:url(../images/backgrndtile.jpg);
}

.clear {
	clear:both;
	height:1px; width:100%;
	font-size:1px;
	margin:0; padding:0;
}

.pushdown {
	float:left;
	width:1px; height:750px;
}

.centered {
	margin-left: auto; margin-right: auto;
}
