@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, img { /* just a standard reset class to reset browser styles */
	border:0 none;
	font-size:100%;
	margin:0;
	outline-color:-moz-use-text-color;
	outline-style:none;
	outline-width:0;
	padding:0;
}

body  {
	font: 100% "Times New Roman", Times, serif;
	background: #CCCC99;
	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: #281000;
	font-weight: bold;
}
:link:focus, :visited:focus { /* a reset property for firefox */
	outline-color:-moz-use-text-color;
	outline-style:none;
	outline-width:medium;
}

h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	text-align:center;
	padding-right: 80px;
	color: #281000;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	text-align:center;
	font-weight: bold;
	color: #281000;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	text-align:center;
	padding-right: 10px;
	color: #281000;
}
h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	color: #281000;
	text-align:center;
	font-style: italic;
	padding-right: 70px;
}

h5 {
	color:#281000;
	font-family: "Times New Roman", Times, serif;
	font-size: 22px;
	text-align:center;
	padding-right: 70px;
}

h6 {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	text-align:left;
	padding-right: 80px;
	color: #281000;
}

	
a, a:link {
	color: #503705;
	font-weight: bold;
	text-decoration: underline;
	font-family: "Times New Roman", Times, serif;
}
a:visited {
	color: #993300;
	font-weight: bold;
	text-decoration: underline;
	font-family: "Times New Roman", Times, serif;
}
a:hover {
	font-weight: bold;
	text-decoration: underline;
	font-family: "Times New Roman", Times, serif;
	color: #063000;
}
a:focus {
	color: #993300;
}
a:active {
	color: #993300;
}

#wrapperbackground { /* defines the outter background of the bricks and how to display it*/
	background-image: url(images/bg.jpg); /* can change the background img here or remove the image part and select solid color*/
	background-position: top left;
	background-repeat: repeat;

}

#container { /* this is the overall content box that will contain the other divs or blocks of content */
	width: 880px; 
	background: #CCCC99;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: justify; /* this overrides the text-align: center on the body element. */

} 
#header{ /*header container, contains all of the header divs also known as nested divs */
	width:870px;
	height:165px;
	background: #CCCC99; 
	float: left;
	margin-left: 5px;
	margin-top: 10px;
	margin-bottom: 13px;
}
#header_left { /* this is the img box in the left image of header */
	float: left;
	width: 95px;
	height: 135px;
	margin-left: 35px;
}
#header_title { /* this is the content box in the middle of header where the text is */
	margin-left: 5px;
	padding-top: 10px;
	font-size: 16px;
	color: #281000;
	text-align:center;
	font-family: "Times New Roman", Times, serif;

}

#header_right { /* this is the img box in the right image of header */
	float:right;
	width: 117px;
	height: 110px;
	margin-top: 10px;
	margin-right:35px;
}

#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:32px;

}
#sidebar1 { /*regular sidebar used in all pages except photos, will expand automatically as you add content*/
	float: left; /* since this element is floated, a width must be given */
	width: 185px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #CCCC99; /* the background color will be displayed for the length of the content in the column, but no further so you can have the sidebar a different background color for the space the content takes up in the sidebar */
	padding: 0px 10px 10px 5px;
}

#sidebar2 { /*only used on photos page - have to use min height to avoid the photos from wrapping into the sidebar. using sidebar2 with a min height to support the the full length of the photos. to add more photo rows, will need to increase the min height*/
	float: left; /* since this element is floated, a width must be given */
	width: 185px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #CCCC99; /* the background color will be displayed for the length of the content in the column, but no further so you can have the sidebar a different background color for the space the content takes up in the sidebar */
	padding: 0px 10px 10px 5px;
	min-height: 1500px;
}

#menu { /* the menu items below are for the nav menu on the left */
	float: right;
	width: 170px;
	height: 405px;
	margin: 0;
	padding: 5px 0 0 0;
}

#menu ul {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu li a { /* styles the normal state of the header links */
	display: block;
	width: 155px;
	height: 22px;
	background-color:#271B01;
	color: #fff;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: normal;
	margin: 0 0 10px 0;
	padding: 0px 0 0 0px;
	border: #503705 2px double;
	text-align: center;
	text-decoration: none;

}

#menu li a:hover, #menu li .current { /* styles the hover and current states of the menu links */
	color: #fff;
	background-color: #009900;
	text-decoration: none;
}
#sidebar1_news { /* the announcement box, it will expand as you add content to it, including the border */
	float:left;
	width:165px;
	display: inline-block;
	font-family:"Times New Roman", Times, serif;
	font-weight: normal;
	margin-top: 10px;
	margin-left: 10px;
	padding: 1px;
	border: 2px #063000 solid;
	text-align: justify;


}

#mainContent { /* main content area for the left side of the page where regular content is, used in all page pages except photos */
	margin: 0 0 0 200px; /* 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-right: 10px;
	; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-left: 10px;
	text-align: justify;
} 
#photoContent { /* used only on the photos page */
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much cont
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 2820px;
	max-width: 7750px;
} 
.photoContainer1 { /* container for photo gallery. */
	text-align: left;
	font-size: 11px;
	padding-bottom: 3px;
	height: auto;
	min-height: 1740px; /*will have to increase this when adding more pictures, this is a box that surrounds each gallery to prevent smashing when browser resize*/

}

.photoContainer1 img {
	border: 1px solid #77859A;
}
.photoContainer2 { /* another container for photo gallery that contains 2 rows. must increase min height when adding another row of images.
	min-height: 300px; /*will have to increase this for the small photo boxes to add more images, main container for the last two two image boxes*/

	text-align: left;
	font-size: 11px;
	padding-bottom: 3px;
	height: auto;
	min-height: 295px;
}
.photoContainer3 { /* another container for photo gallery that contains 2 rows. must increase min height when adding another row of images.
	min-height: 300px; /*will have to increase this for the small photo boxes to add more images, main container for the last two two image boxes*/

	text-align: left;
	font-size: 11px;
	padding-bottom: 3px;
	height: auto;
	min-height: 265px;
}


.featureboxes3 img {
	border: 1px solid #77859A;
}
.vestryboxes { /* container for photo gallery. */
	text-align: center;
	font-size: 14px;
	margin-left: auto;
	margin-right:auto;
	min-height: 410px;
	height: 430px;
	clear:right;
	padding: 0px;
}

.vestryboxes img {
	border: 0px solid #77859A;
}

.staffboxes { /* container for photo gallery. */
	text-align: center;
	font-size: 14px;
	padding-top: 0px;
	margin-left: auto;
	margin-right:auto;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	min-height: 280px;
	height: auto;
	clear:right;
}

.staffboxes img {
	border: 0px solid #77859A;
}

.left-box1 { /*these are the indiv boxes the photos and text are in on photos page only*/
	width: 120px;
	margin-right: 15px;
	float: left;
	padding-top: 2px;
	padding-bottom: 10px;
}
.left-box2 {
	width: 120px;
	margin-right: 15px;
	float: left;
	padding-top: 2px;
	padding-bottom: 10px;
}
.middle-box2 {
	float: left;
	width: 120px;
	margin-right: 15px;
	padding-top: 2px;
	padding-bottom: 10px;
}
.right-box1 {
	float: left;
	width: 120px;
	margin-right: 15px;
	padding-top: 2px;
	padding-bottom: 10px;

}
.right-box2 {
	float: left;
	width: 120px;
	padding-top: 2px;
	padding-bottom: 10px;

}

.featuretitle2 { /*the text formaat for the photos page*/
	font-size: 14px;
	font-weight: bolder;
	line-height: 16px;
	display: block;
	padding-left: 10px;
}

#footer{
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #000;
	height: 145px;
	text-align:center;
}
#footer hr{
	width:97%;
}

.right { /* 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;
}
.left { /* 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;
}
.center {
	display: block;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.centercolumn { /* centers an item in its container*/
	display: block;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-right: 13px;
}
hr { /*styles the horizontal line, the 95% or if you choose to increase or decrease the % is of the total container the hr is placed in*/
background-color:#063000;
border:0 none;
color:#063000;
height:2px;
width:100%;
margin:auto;
}

.page_header {
	font-family: "Times New Roman", Times, serif;
	font-size: 30px;
	text-align:center;
	padding-right: 10px;
	color: #281000;
}

.small_center {
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
}

.small_blue_justify {
	font-size: 12px;
	font-weight: bold;
}
