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

html, body {
     height: 100%;
     margin: 0 0 1px;
     padding: 0;
}

html { min-height: 100%; margin-bottom: 1px; }

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FC6;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-image: url(bg1.png);
	background-repeat: repeat-y;
/*background-color: #6b8a8f;*/
	background-color: #378a87;
	background-position: center top;
	background-attachment: fixed;
}

.photo {text-align: left; }
.photoC {text-align: center; }

.greeting {
	font-size:110%;
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
}

a { text-decoration: none; }
a:link { color: #FC6; }
a:visited { color: #FC6; }
a:hover { color:#066;}
a:active {color:#066; }
a:focus {
	color:#FC6;
	text-align: center;
}

li {
	color: #FFF;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: center;
	font-size: 86%;
	/*color:#FFF;*/
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	width: 746px;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 48px;
}

.oneColFixCtrHdr #mainContent h4 {
	text-align: justify;
}

.fq {
	color:#3CC;
	font-size: 100%;
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size: 86%;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
h1 {
	color: #FFF;
}
blockquote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: italic;
	text-align: justify;
	word-spacing: normal;
	border-left:-20px;
}

.mobile { font-size:86%; }

.tiny { font-size:72%; }

.floatleft { float: left; }
.floatright { float: right; }
.mg { clear:both; }
