@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.4 Georgia, "Times New Roman", Times, serif;
	background-color: #D5D4A4;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	width:80%;
	padding: 0;
	color: #000;
}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 10;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: large;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}

h1 {
	font-size: x-large;
	color: #D40002;
}

h2 {
	font-size: x-large;
	font-weight: bold;
	color: #69843F;

}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

a:link {
	color: #00F;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color:#698440;
	text-decoration: underline;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;
	background-color: #EEE;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height:auto;
	
}

#container2 {
	float:left;
	width:100%;
	background:white;
	padding: 0px;
	margin: 0px;
}

.header {
	float:left;
	width:100%;
	height: 142px;
	margin-bottom: 40px;
	background-color: #69843F;
}

.leftColumn {
	float: left;
	width: 25%;
	background: #FFF;
	padding-bottom: 10px;
	padding-left: 0px;
	padding-top: 10px;
}
.mainContent {
	background: #FFF;
	float: left;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	width: 51%;
}

.rightColumn {
	float: left;
	width: 24%;
	background: #FFF;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

IMG.centered {
    display: block;
    margin-left: auto;
    margin-right: auto }
	
.center
{
	margin-left:auto;
	margin-right:auto;
	text-align: center;
}

.alignright {
	text-align: right;
}
.lineHeight115 {
	line-height: 1.15em;
}
.quickLinks {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: x-large;
	font-weight: bold;
	color: #996600;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
.fontXLarge {
	font-size: x-large;
}

.fontLarge {
	font-size:large;
	}
.fontMedium {
	font-size: medium;
}

.fontSmallPhotos {
	font-size:medium;
	font-style:italic;
	text-align:center;
	}

/* ~~The footer ~~ */
.footer {
	padding: 10px 0;
	background: #D5D4A4;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */

}
