﻿/* =========================================================
 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, h1, h2, h3, h4 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
	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 {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	line-height: 1.2em;
	font-size: 1em;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #000;
	background-color: #F9F8F4;
	/* background-image:url('../images/bkg-edge-woods.jpg');*/
	margin: 0px;
	padding: 0px;
}
body img {
/*	border-style: solid;
	border-color: inherit;*/
	border-width: 0px;
	text-decoration: none;
	max-width: 100%;
	text-align: center;
	float: none;
}
/*=======================
Heading styles
========================*/
h1, h2, h3, h4 {
	margin: 10px 0px 0px 0px;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	font-weight: normal;
}
h1 {
	font-size: 1.5em;
	color: #5D1F12;
	line-height: 1.2;
}
h2 {
	font-size: 1.35em;
	color: #5D1F12;
	line-height: 1.1;
}
h3 {
	font-size: 1.25em;
	color: #5D1F12;
	line-height: 1.0;
}
h4 {
	font-size: 1.1em;
	color: #5D1F12;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #CC6600;
	text-decoration: underline;
}
a:visited {
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #D0BFA5;
	text-decoration:none;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #8E6329;
	text-decoration:none;
}
/*===================================
Masthaead Styles
====================================*/
#masthead {
 	background-color: #F9F8F4;
 	padding: 0px;
	color: #DAFFC1;
	width: auto;
}
.site-name {
	color:black;
	font-size: 2em;
	font-weight:bold;
	text-align: center;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
/*	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;  */
}
.tagline {
	font-size: 0.6em;
}
/*==============================================
This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the 
container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply 
set the left and right margins to center the container on the page. 
================================================*/
#outerWrapper {
	background-color: #F9F8F4;
		width: 90%;
	/*text-align: left; /* Redefines the text alignment defined by the body element. */
	margin: 0px auto;
/*	border-top: 0px solid #FDEAD5;
	border-bottom: 0px solid #FDEAD5;*/
	max-width: 850px;
}
/*========================================
Top Navigation
=========================================*/
#topNavigation {
	/*background-color: #85530E;*/
	background-color: #D2C1A7;
	text-align:center;
/*	padding: 10px 10px 10px 10px;*/
	border: solid 1px #00000;
/*	border-top-color: #809672;
	border-bottom-color: #1C140E;*/
	max-width: 850px;
}
/*#topNavigation img {
	height: 36px;
}*/
#topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 3px 0px 0px 0px;
}
#topNavigation li {
	display: inline-block;
	position: relative;
	top: 0px;
	height: 28px;
}
#topNavigation a {
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px 6px;
	padding: 2px;
	display: block;
}
#topNavigation a:hover {
	background-color: #C0A683;
	color: #ffffff;
}
/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	background: #FFFFFF;
	border: solid 1px #85530E;
}
/*==================================
 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. 
===================================*/
#content {
	padding: 0% 4% 0% 4%;
	float: left;
	margin: 0% 0% 0% 0%;
	width: 70%;
}
#content-wide {
	width: 100%;
	float: none;
	padding: 3% 4%;
}
/*==================================
Right sidebar
===================================*/
#rightColumn1 {
	padding: 10px 10px 10px 10px;
	float: right;
	width: 200px;
	background: #FFFFFF;
	border: solid 1px #D2C1A7;
}

/*================================
right sidebar navigation menu
==================================*/
/*#rightColumn1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content
}
#rightColumn1 ul li {
	padding-bottom: 2px; /*bottom spacing between menu items
}
#rightColumn1 ul li a {
	font: normal .85em Arial;
	color: #000000;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 30px;
	text-decoration: none;
	background: url('../images/bullet4.png') 8px 6px no-repeat;
}
#rightColumn1 ul li a:visited {
	color: #000000;
}
#rightColumn1 ul li a:hover {
	color: #ffffff;
	background: #809672 url('../images/bullet3.png') 8px 6px no-repeat;	
}
*/

/*.heading {
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #000000;
	margin-bottom: 0; /*bottom spacing between header and rest of content
	text-transform: uppercase;
	padding: 7px 0 7px 15px;
}*/


/* TEXT ATTRIBUTES */
.paratext {
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	font-size: 1em;
	color: #800000;
	text-align: left;
	margin-left: 20px;
	margin-right: 20px;
}
.paratext-centered {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: small;
	color: #800000;
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;
}
.paratextbold {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: medium;
	color: #663300;
	text-align: left;
	margin-left: 40px;
	margin-right: 40px;
	font-weight: bold;
}
.paraitalictext {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: small;
	color: #663300;
	text-align: left;
	margin-left: 40px;
	margin-right: 40px;
	font-style: italic;
}
.resumetext {
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	color: #000000;
	text-align: left;
	margin-left: 15px;
	margin-right: 15px;
	width: 90%;
}

.welcome-text {
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
	font-size: medium;
	color: #666;
	margin-right: 0px;
	margin-left: 10px;
	text-align: left;
}
.gallery-table-spacing {
	text-align: center;
	height: 93px;
}
.blk-italic-lg-ctr {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: x-large;
	font-style: italic;
	color: #000000;
	text-align: center;
}
.left-column-text {
	border: thin solid #000000;
	padding: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: small;
	color: #983917;
	text-align: left;
	margin-right: 5px;
	margin-left: 5px;
}
.left-column-text-gil {
	border: thin none #000000;
	padding: 10px;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
	font-size: medium;
	color: #FF0000;
	text-align: left;
	margin-right: 5px;
	margin-left: 5px;
}
.right_calendar_title {
	border-width: 4px;
	border-style: double;
	font-size: 18px;
	text-align: center;
	color: #999966;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	width: 200px;
}
.right_calendar_text {
	font-size: small;
	text-align: right;
	color: #999966;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
.copyright {
	font-size: .85em
}



/* ========================================
 Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without 
being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and 
before the close of the container with floated elements. 
===========================================*/
.clearFloat {
	display: block;
	clear: both;
}
/*=================================================
Footer Styles 
==================================================*/
#footer {
	background-color: #A47E4D;
/*	background-image:url('../images/bkg-edge-woods.jpg');*/
	padding: 5px;
	color: #FFF;
	text-align: center;
	margin: 0px auto;
	max-width: 850px;
}
#footer p {
	margin: 0px;
	font-size: .75em;
}
#footer a:link {
	color: #FFF;
	font-weight: normal;
	text-decoration: underline;
}
#footer a:visited {
	color: #FFFFFF;
}
#footer a:hover, #outerWrapper #footer a:focus {
	color: #E7E7E7;
	font-weight: normal;
	text-decoration: underline;
}
#footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}

/*================================
can beassigned to the first heading to remove all margins. This class can be used on any element for which you would like to remove margin.
====================================*/

.page-topper {
	margin: 0px;
}
.img.ctr-scalable {
	border: 1px solid #000000;
	/*text-align: center;*/
	height: auto !important;
	width: auto !important;
	max-width: 100%;

}
.p.text-left {
	text-align: left;
}
.ul_ctr {
	text-align: center;
}
.li_ctr {
	display: inline-block;
}
.resumetext-ul {
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	color: #000000;
	text-align: left;
	width: 90%;
	text-decoration: underline;
}
#content-wide {
	padding: 0px 4% 10px 4%;
	float: none;
	margin: 0% 0% 0% 0%;
	width: 100%;
}
