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

/* 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: #FEF8E8;
	color: #333333;
	background-image: url(images/parchmentBG.jpg);
	background-repeat: repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	margin: 10 50 10 10;
}


/* Commonly used to style page titles. */
h1 {
	color: #336633;
	font-family: "Monotype Corsiva", "Times New Roman", Times, serif;
	font-size: 42px;
	font-style: italic;
	font-weight: normal;
	line-height: 42px;
}


/* Commonly used to style section titles. */
h2 {
	color: #000000;
	font-size: 20px;
	font-weight: normal;
	line-height: normal;
	font-style: italic;
	font-family: "Monotype Corsiva", "Times New Roman", Times, serif;
}

.smallFont {
	font-size: 11px;
}

.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FEF1DB url(images/parchmentBG.jpg);
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 5px 5px 10px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
} 
.twoColFixLtHdr #header {
	background: #FEF1DB url(images/parchmentBG.jpg);
	padding: 0 0px;  /* 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. */
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FEF1DB url(images/parchmentBG.jpg);
	font-weight: lighter;
} 
.twoColFixLtHdr #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 */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.dkBrown {
	color: #66431f;
}
.twoColFixLtHdr #container #sidebar1 h3 {
}
.subtitle {
	font-family: "Monotype Corsiva";
	font-size: 24px;
	font-style: italic;
	font-weight: normal;
	text-decoration: none;
	line-height: 26px;
	color: #336633;
}
.largeFontDk {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #452f19;
	text-decoration: none;
}
.topnav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #336633;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}
a:hover.topnav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #996633;
	text-decoration: underline;
	padding-right: 10px;
	padding-left: 10px;
}
.largeBodyFont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	list-style-image: url(images/bullet-chk.gif);
}
#bulletedCenter {
	text-align: left;
	list-style-type: disc;
	margin-right: 10px;
	margin-left: 10px;
	padding-left: 60px;
}
.subtitlesm {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	line-height: 18px;
	color: #24632C;
}
#indentedSection {
	margin-left: 5px;
	padding-left: 10px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	list-style-type: disc;
	margin-right: 50px;
}
.lightWeight {
	font-weight: lighter;
}
.medBodyFont {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #333333;
	text-decoration: none;
	list-style-image: url(images/bullet-chk.gif);
}
#testimonial {
	padding: 10px 5px 10px 15px;
	margin-right: 5px;
	margin-left: 5px;
	border: 1px dashed #CCD7A7;
	text-align: left;
}
.testimonialFont {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	color: #245724;
	text-decoration: none;
}
#boxCenter {
	width: 680px;
	text-align: center;
	margin-right: 50px;
	margin-left: 50px;
}
.subtitleLight {
	font-family: "Monotype Corsiva";
	font-size: 20px;
	font-style: italic;
	font-weight: lighter;
	text-decoration: none;
	line-height: 22px;
	color: #336633;
	letter-spacing: 0.025em;
}
.testimonialFontBrown {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: normal;
	line-height: 14px;
	font-weight: normal;
	color: #66431F;
	text-decoration: none;
}
.HeadingSubTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	line-height: 18px;
	font-weight: normal;
	color: #56392A;
	margin-left: 12px;
}
.middleText {
	margin-right: 150px;
	margin-left: 150px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.largeBodyFontBrown {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #66431F;
	text-decoration: none;
	list-style-image: url(images/bullet-chk.gif);
}
