
/* 
CSS by Reid Stott http://reidstott.com/
Revised 15:59 4/30/2009

TOC
	Tags/Reset
	Structure
		Grid Divs & Combos
	Typography
		Paragraphs
		Headings
		Lists
		Links
		Font trimmings
		Images
	Header
	Nav
	Main
	Footer

Site colors:
	body background: #c9b9a9
	page background: #ddd9cc
	blue: #225988
	red: #772211
	brown: #442200
*/
/* ----------------------------------------------------------------------- */
/* -------------------------- Tags / Reset ------------------------------- */
/* ----------------------------------------------------------------------- */
body {
	font-family: Verdana, Geneva, Helvetica, Arial, sans-serif;
	font-size: 62.5%;
	line-height: 140%;
	color: #222222;
	background: #c9b9a9;
	background-image: url(../gfx/bodyback1.jpg);
	background-repeat : repeat-x; 
	background-position : left top; 
	text-align: center;
        margin: 0;
        padding: 0;
	}
html {
	font-size: 100.01%
        margin: 0;
        padding: 0;
	}
h1, h2, h3, h4, h5, h6, blockquote, ul, ol, dl, dt, dd, pre, form, fieldset, input, textarea, td {
        margin: 0px;
        padding: 0px;
	font-weight: normal; 
	}
li, blockquote {
        margin-left: 15px;
	}
ol, ul { 
	list-style:none; 
} 
p { 
	margin: 0px 0px 1em 0px;
	}
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr, acronym, fieldset, img { 
	border: 0; 
	} 
a {
	color: #225988;
	text-decoration: none;
	}
a:visited {
	color: #225988;
	text-decoration: none;
	}
a:hover {
	color: #772211;
	text-decoration: underline;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Structure -------------------------------- */
/* ----------------------------------------------------------------------- */
#wrap {
	text-align: center;
	background-image: url(../gfx/wrapback1.jpg);
	background-repeat : repeat-y; 
	background-position : center top; 
	}
#container {
	background: #ddd9cc;
	width: 920px;
	margin: 0 auto;
	}
div.hr {
	clear: both;
	}
div.hr hr {
	display: none;
	}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
.clearfix { display: block; }
* html .clearfix { height: 1%; }
/* End hide from IE-mac */
/* |||||||||||||||||||||||||||||||||| */
/*            GRID DIVS               */
/* |||||||||||||||||||||||||||||||||| */
/* COMBOS THAT WORK
grid840 (full width with 40px margins)
add grid300 + grid520 inside grid 840 = Golden Ratio
grid420 + grid420 inside grid880 = Half and Half
.onethird + .onethird + .onethird inside grid880 = Thirds
   COMBOS THAT WORK */
/* Set common styles - all grid divs must be assigned this class */
.generic {
	float: left;
}
/* this class can be given to a grid div that is the first in a horizontal series */
.break, .clear {
	clear: both;
}
/* this class can be given to a grid div that is the last in a horizontal series */
.end {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.grid180 {
	width: 180px;
	margin-right: 20px;
}
.grid220 {
	width: 220px;
	margin-right: 20px;
}
.onethird {
	width: 265px;
	margin-right: 20px;
	}
.grid420, .onehalf {
	width: 420px;
	margin-right: 20px;
}
.grid500 {
	width: 500px;
	margin-right: 20px;
}
.grid520 {
	width: 540px;
	margin-right: 0px;
}
.grid840 {
	width: 840px;
	margin-left: 40px;
}
.grid880 {
	width: 880px;
	margin-left: 40px;
}
.grid920, .full {
	width: 920px;
	margin-right: 0px;
}
/* ----------------------------------------------------------------------- */
/* ------------------------ Typography Base ------------------------------ */
/* ----------------------------------------------------------------------- */
/*|||||||||||| PARAGRAPHS ||||||||||||| */
.generic p {
	font-size: 1.3em;
	line-height: 150%;
	margin-bottom: 1.0em;
	text-align: left;
}
/* Assign this class to the first paragraph in an article */
p.intro:first-line {
	font-variant:small-caps;
}
/* Styles a drop cap on each paragraph with this class */
p.drop:first-letter {
	float:left;
	font-size:3em;
	margin-top:-0.05em;
	margin-right:0.1em;
	margin-bottom:-0.5em;
}
/* |||||||||||||HEADINGS ||||||||||||||| */
h1, h2, h3, h4, h5, h6 {
	font-family:  "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", Times, serif;
	}
h1 {
	color: #772211;
	font-size: 3.2em;
	margin-bottom: 0.4em;
	font-style:italic;
	line-height: 1.2em;
}
h2 {
	color: #772211;
	font-size: 2.2em;
	font-weight: 900;
	margin-bottom: 0.9em;
	line-height: 0.9em;
}
h3 {
	color: #772211;
	font-size: 1.9em;
	margin-bottom: 1.2em;
	line-height: 1.2em;
	font-variant: small-caps;
}
h4 {
	color: #772211;
	font-size: 1.7em;
	font-weight: 900;
	margin-bottom: 1.5em;
}
h5 {
	color: #772211;
	font-size: 1.2em;
	margin-bottom: 1.8em;
	line-height: 1.8em;
	font-variant: small-caps;
}
h6 {
	color: #772211;
	font-size: 1.1em;
	margin-bottom: 1.8em;
	line-height: 1.8em;
}
.generic h1, .generic h2, .generic h3, .generic h4 {
	text-align: left;
	}
.generic h4 {
	margin-bottom: 0.25em;
	}
/* ||||||||||||||| LINKS |||||||||||||| */
p a {
	color: #225988;
}
p a:hover {
	text-decoration: none;
}
h1 a {
	color: #225988;
}
h1 a:hover {
	text-decoration: none;
}
li a {
	color: #225988;
}
li a:hover {
	text-decoration: none;
}
/* |||||||||||||||| LISTS |||||||||||||||| */
ul{
	margin-bottom: 1.5em;
	list-style: square inside;
}
ul li{
	font-size: 1.3em;
	line-height: 150%;
	text-align: left;
}
ul li.caption{ /* Apply this class to the first list item in a list to give it a caption */
	font-variant: small-caps;
	list-style: none;
	color: #000;
}
li > ul, li > ol {
	margin-bottom: 0;
	margin-left: 3em;
}
li > ul li, li > ol li {
	font-size: 1em;
}
ol{
	margin-bottom: 1.5em;
	list-style: decimal inside;
}
ol li{
	font-size: 1.3em;
	line-height: 150%;
	text-align: left;
}
/* |||||||||||||| FONT TRIMMINGS ||||||||||| */
blockquote p {
	font-size: 1.3em!important;
	line-height: 1.5em!important;
	margin-bottom: 1.5em!important;
	font-style: italic;
	font-weight: bold;
}
blockquote p cite {
	font-style: normal;
}
.generic strong.caps {
	font-variant:small-caps;
}
.generic em {
	font-style: italic;
	font-weight: inherit;
}
.amp { 
	font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
	font-style: italic;
	font-weight: normal;
	line-height: inherit;
}
abbr {
	border-bottom:1px dotted #666;
	border-color:inherit;
	cursor: help;
}
.clear{
	clear: both;
}
.floatright { 
	float:right;
	margin-left: 2em;
	margin-right: 0;
}
.floatleft {
	float: left;
	margin-right: 2em;
	margin-left: 0;
}
/* ||||||||||||||| IMAGES ||||||||||||||||||||| */
img {
	font-size: 1em;
}
img.imgleft { 
	font-size: 1em;
	float: left;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-right: 2em;
	margin-top: 0.3em;
}
img.imgright { 
	font-size: 1em;
	float: right;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-left: 2em;
	margin-top: 0.3em;
}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Header ----------------------------------- */
/* ----------------------------------------------------------------------- */
#header {
	height: 200px;
	margin: 0 auto;
	text-align: center;
	background-image: url(../gfx/headback1.jpg);
	background-repeat: no-repeat;
	background-position : center top;
	}
#fixed-head {
	width: 920px;
	height: 200px;
	margin: 0 auto;
	background: #ddd9cc;
	background-image: url(../gfx/innerheadback2.jpg);
	background-repeat: no-repeat;
	background-position : center top;
	}
#fixed-head h1 {
	font-weight: 900;
	font-size: 4em;
	letter-spacing: 0.0em;
	text-align: left;
	margin: 0 0 0 215px;
	padding: 40px 0 10px 0;
	}
#fixed-head h2 {
	font-weight: 900;
	font-size: 1.7em;
	text-align: left;
	margin: 0 0 0 215px;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Nav -------------------------------------- */
/* ----------------------------------------------------------------------- */
div#topnav {
	border-top: 2px solid #c9b9a9;
	border-bottom: 2px solid #c9b9a9;
	padding-left: 25px;
	text-align: left;
	}
ul.nav {
	list-style-type: none;
	margin: 0;
	}
ul.nav li {
	display: inline;
	list-style-type: none;
	}
ul.nav li a:link,
ul.nav li a:visited {
	font-weight: 900;
	font-size: 1.2em;
	line-height: 150%;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Main ------------------------------------- */
/* ----------------------------------------------------------------------- */
#main {
	margin-bottom: 0px;
	}
#main h1 {
	text-align: left;
	}
/* ----------------------- Home Page ------------------------------------- */
.homeoptions {
	padding-bottom: 20px;
	}
.homeoptions h3 {
	margin: 0;
	padding: 5px 5px 5px 5px;
	line-height: 100%;
	background-image: url(../gfx/homebox1.jpg);
	background-repeat : no-repeat; 
	background-position : center top; 
	}
.homeoptions h3 a:link,
.homeoptions h3 a:visited {
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	line-height: 150%;
	background: #225988;
	color: #fff;
	font-weight: 900;
	}
.homeoptions h3 a:hover {
	background: #772211;
	color: #fff;
	text-decoration: none;
	}
.homeoptions .text {
	background-image: url(../gfx/homebox1b.jpg);
	background-repeat : repeat-y; 
	background-position : center top; 
	}
.homeoptions .text p {
	margin: 0px 8px 0px 12px;
	}
.homeoptions .cap {
	height: 15px;
	background-image: url(../gfx/homebox1.jpg);
	background-repeat : no-repeat; 
	background-position : center bottom; 
	}
/* ----------------- callouts -------------------------------------------- */
.calloutred {
	}
.calloutred a:link,
.calloutred a:visited {
	display: block;
	width: 300px;
	border: 3px solid #333;
	background: #772211;
	color: #fff;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 2em;
	font-weight: 900;
	padding: 5px 5px 5px 5px;
	line-height: 150%;
	}
.calloutred a:hover {
	border: 3px solid #fff;
	background: #550900;
	text-decoration: none;
	}
.calloutblue {
	}
.calloutblue a:link,
.calloutblue a:visited {
	display: block;
	width: 300px;
	border: 3px solid #333;
	background: #225988;
	color: #fff;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 2em;
	font-weight: 900;
	padding: 5px 5px 5px 5px;
	line-height: 150%;
	}
.calloutblue a:hover {
	border: 3px solid #fff;
	background: #003966;
	text-decoration: none;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Footer ----------------------------------- */
/* ----------------------------------------------------------------------- */
#footer {
	clear: both;
	height: 120px;
	margin: 0 auto;
	text-align: center;
	background-image: url(../gfx/footback1.jpg);
	background-repeat : repeat-y; 
	background-position : center bottom; 
	}
#fixed-foot {
	width: 920px;
	height: 120px;
	margin: 0 auto;
/*	background-image: url(../gfx/innerfootback1.jpg);
	background-repeat: no-repeat;
	background-position : left top; */
	}
#fixed-foot h4 {
	padding: 25px 0px 0px 0px;
	}
#fixed-foot h5 {
	color: #442200;
	}
