/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #B2CE9B;
	color: #000;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 11px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0;
}
#outerWrapper1 {
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
	background-image: url(../Images/page%20elements/pageBackground1.jpg);
}
#outerWrapper2 {
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
	background-image: url(../Images/page%20elements/pageBackground2.jpg);
}
#outerWrapper3 {
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
	background-image: url(../Images/page%20elements/pageBackground3.jpg);
}
#contentWrapper1 {
	background-image: url(../Images/page%20elements/pageTop1.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

#contentWrapper2 {
	background-image: url(../Images/page%20elements/pageTop2.jpg);
	background-repeat: no-repeat;
	background-position: top;
}
#contentWrapper3 {
	background-image: url(../Images/page%20elements/pageTop3.jpg);
	background-repeat: no-repeat;
	background-position: top;
}
#header {
	background-image: url(../Images/page%20elements/header.jpg);
	background-repeat: no-repeat;
	height: 190px;
}
#navBar {
	background-image: url(../Images/page%20elements/navBar.jpg);
	background-repeat: no-repeat;
	height: 40px;
	text-align: center;
}
#navBar a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}
#navBar a:hover {
	background-color: #F6EDC0;
	padding-top: 2px;
	padding-bottom: 2px;
}
#navBar h6 {
	font-size: 12px;
	position: relative;
	top: 4px;
}
#titleBar {
	background-image: url(../Images/page%20elements/titleBar.jpg);
	height: 40px;
	text-align: center;
}
#titleBar h1 {
	padding-top: 8px;
	font-size: 16px;
	font-style: italic;
}
#noticeBox {
	background-color: #FFF;
	height: 90px;
	width: 300px;
	border: 2px solid #900;
	line-height: 1.5em;
	position: absolute;
	top: 90px;
	margin-left: 336px;
	background-image: url(../Images/graphics/X_white.gif);
	background-repeat: no-repeat;
	background-position: right top;
	z-index: 999;
	padding: 10px;
	visibility: hidden;
}
#noticeBox img {
	float: right;
	padding-top: 20px;
}
#breadCrumbNav {
	width: 200px;
	position: absolute;
	font-size: 11px;
	top: 240px;
	margin-left: 620px;
}
#breadCrumbNav a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}
#breadCrumbNav a:hover {
	color: #C00;
	text-decoration: none;
	padding: 2px;
}
#leftColumn{
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 175px;
	text-align: center;
	font-size: 12px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}
#leftColumn a {
	color: #72A3E5;
	font-weight: bold;
}
#leftColumn a:hover {
	color: #000000;
	background-color: #CADEBA;
}
#leftColumn li {
	margin-left: -20px;
	color: #5B87C4;
	padding-top: 5px;
	padding-bottom: 15px;
	font-size: 12px;
}
#leftColumn p {
	line-height: 1.4em;
	font-size: 0.9em;
	font-style: italic;
	font-weight: bold;
}
#leftColumn h3 {
	font-size: 1.1em;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #99856F;
	padding-top: 2px;
}

#leftColumn h4 {
	background-color: #C5E4F7;
	padding: 5px;
	border: 1px solid #999999;
	margin-bottom: 10px;
	font-size: 13px;
	margin-right: 10px;
	margin-left: 10px;
}
#leftColumn h5 {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
#leftColumn h6 {
	color: #900;
	font-size: 12px;
	font-style: italic;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#centerColumn {
	margin-left: 200px;
	margin-right: 200px;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 5px;
	padding-left: 25px;
	margin-bottom: 5px;
}
#centerColumn p {
	line-height: 1em;
}
#centerColumn h3 {
	background-color: #10222B;
	padding: 10px;
	margin-right: 100px;
	margin-left: 100px;
	font-weight: bold;
	text-align: center;
	border: 3px outset #75AAE6;
	font-size: 95%;
	color: #FFF;
}
#centerColumn h4 {
	padding: 3px;
}
#centerColumn h5 {
	background-color: #000;
	color: #FFF;
	padding: 5px;
}

#centerColumn h6 {
	color: #6394DE;
	font-size: 100%;
	margin-bottom: 5px;
	text-align: center;
	margin-top: 10px;
}
#rightColumn {
	float: right;
	width: 175px;
	margin-right: 3px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#rightColumn p {
	font-size: .9em;
}
#rightColumn h4 {
	background-color: #C5E4F7;
	padding: 5px;
	border: 1px solid #999999;
	margin-bottom: 10px;
	font-size: 13px;
	text-align: center;
	margin-right: 10px;
	margin-left: 10px;
}
#rightColumn img {
	border: 1px solid #666;
}
#rightColumn li {
	line-height: 1.3em;
}
#content {
	margin-left: 210px;
	font-size: 12px;
	padding-top: 20px;
	padding-right: 25px;
	padding-left: 20px;
}
#content h3 {
	padding: 10px;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	color: #900;
}
#content h5 {
	background-color: #CADEBA;
	color: #000;
	padding: 5px;
	line-height: 1.5em;
	margin-right: 80px;
	margin-left: 80px;
}

#content h6 {
	color: #6394DE;
	font-size: 100%;
	margin-bottom: 5px;
	text-align: center;
	margin-top: 10px;
}
#singleColumn {
	font-size: 12px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#singleColumn h1 {
	font-size: 20px;
	color: #000000;
	background-color: #D6DB7A;
	margin-right: 250px;
	margin-left: 250px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid #5D7846;
	text-align: center;
}
#singleColumn h3 {
	background-color: #99856F;
	padding: 5px;
	margin-right: 150px;
	margin-left: 150px;
	font-weight: normal;
	text-align: center;
	border: 2px solid #7B9166;
	font-size: 12px;
	color: #FFF;
	font-style: italic;
}
#singleColumn h5 {
	margin-top: 10px;
	font-size: 12px;
}
#googleCalendar {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	padding: 5px;
	margin-top: 10px;
}
#wagmp_map_1 {
	margin-right: auto;
	margin-left: auto;
	border: 2px solid #000000;
	margin-top: 10px;
}
#pageBottom1 {
	background-image: url(../Images/page%20elements/pageBottom1.jpg);
	height: 40px;
}
#pageBottom2 {
	background-image: url(../Images/page%20elements/pageBottom2.jpg);
	height: 40px;
}
#pageBottom3 {
	background-image: url(../Images/page%20elements/pageBottom3.jpg);
	height: 40px;
}
#footer {
	text-align: center;
	padding-bottom: 5px;
	background-color: #B2CE9B;
}
#footer a {
	text-decoration: underline;
	color: #000;
}
#footer a:hover {
	background-color: #F3EAB3;
	text-decoration: none;
	padding-top: 2px;
	padding-bottom: 2px;
}
#footer h6 {
	font-size: 10px;
	color: #000000;
	position: relative;
}
#payPalBox {
	float: right;
	margin-left: 10px;
	padding: 10px;
}
#forRent {
	background-color: #e2e2e2;
	border: 6px double #900;
	padding: 5px;
	margin-left: auto;
	margin-top: 10px;
	text-align: center;
	margin-right: auto;
	width: 610px;
}
hr {
	margin: 20px;
}
h1 {
	font-size: 14px;
	color: #900;
	text-align: center;
}


h2 {
	padding-top: 3px;
	padding-bottom: 3px;
	margin-top: 5px;
	color: #000;
	font-size: 14px;
}
h3 {
	font-size: 14px;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}

h4 {
	font-size: 13px;
	background-color: #F3EAB3;
	padding: 2px;
	text-align: center;
}
h5 {
	text-align: center;
	font-size: 12px;
}
li {
	line-height: 1.3em;
}
.alignLeft {
	text-align: left;
}
.img_Left {
	float: left;
	border: 1px solid #666666;
	margin-right: 10px;
	margin-top: 15px;
	margin-left: 10px;
}
.img_Left-noBorder {
	float: left;
	margin-right: 25px;
	margin-top: 20px;
	margin-left: 0px;
	margin-bottom: 30px;
}
.img_Right {
	float: right;
	border: 1px solid #666666;
	margin-left: 10px;
	margin-top: 15px;
	margin-bottom: 10px;
}
.img_Right {
}
.maroonText {
	color: #900;
}
.textMaroonBold {
	font-weight: bold;
	color: #900;
}

.linkText {
	color: #5B87C4;
	text-decoration: underline;
}
.linkTextLarge {
	color: #5B87C4;
	text-decoration: underline;
	font-size: 18px;
}
.superScript {
	vertical-align: text-top;
	font-size: 80%;
}
.textIndent {
	padding-left: 55px;
	margin-bottom: -5px;
}
.payPalText {
	font-weight: bold;
	color: #900;
	padding-left: 10px;
}

