@charset "iso-8859-1";
/* 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. */
/* margin and padding properties for an element using shorthand notation (top, right, bottom, left) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* 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. */;
	background: #800000; url('images/red-grad.jpg');
	background-repeat: repeat-x;
	font-family: Tamoha, Helvetica, Arial, sans-serif;
	padding: 0px;
	color: #000;
	background-color: #800000;
}
/*===============indicates no border around any image ============*/
body img {
	border: 0px;
	text-decoration: none;
}
h1, h2, h3 {
	background-color: inherit;
	color: #006600;
	Font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 150%;
}
h2 {
	font-size: 120%;
}
h3 {
	font-size: 100%;
}
/* Sets the style for unvisited links. */
a, a:link {
	font-weight: bold;
	color: #354616;
	background: transparent;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #728152;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	font-weight: bold;
	text-decoration : underline;
	background: #DFEBD9;
	color: #8c9d67;
}
/* 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 {
	margin: 10px auto 10px auto;
	width: 750px;
	border: 1.5px solid #EDBC12;
	padding: 10px 10px 10px 40px;
	background-color: #f8faef;
	text-align: left; /* Redefines the text alignment defined by the body element. */
}
#outerWrapper #header {
	background-color: #f8faef;
	height: 180px;
	line-height: 15px;
	font-size: 20px;
	padding: 10px 10px 25px 10px;
	background-repeat: no-repeat;
	background-position: center center;
	font-weight: bold;
	background-image: url('../images/rhodiad.jpg');
	
}
#outerWrapper #sitename {
	background-color: #f8faef;
	color: #006600;
	text-align: center;
	font-size: 2.5em;
	padding: 5px 0px;
	margin: 5px 0px;
	border-top: 2px solid #EDBC12;
	border-bottom: 2px solid #EDBC12;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
}
/* 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. */
#outerWrapper #contentWrapper #content {
	padding: 10px 10px 10px 10px;
	margin: 0 0 0 20px;
}
#outerWrapper #contentWrapper #content ul li {
	list-style-image: url('../images/bullet2.gif');
	margin: 2px;
	padding: 2px;
}
#outerWrapper #contentWrapper {
	list-style-image: none;
	padding: 2px 0;
}
/* 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. */
#outerWrapper #contentWrapper .clearFloat {
	display: block;
	clear: left;
}
#outerWrapper #footer {
	padding: 5px;
	border-top: 2px solid #EDBC12;
	background-color: #f8faef;
	text-align: center;
	font-size: small;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/* =======================
Styles photo gallery.
=========================== */
#gallery {
	border-collapse: separate;
	margin: 10px auto 30px auto;
	border: 1px ridge #dbdbdb;
	width: 99%;
}
#gallery td {
	border: 1px ridge #dbdbdb;
	width: 33%;
	padding: 10px 5px 10px 5px;
}
.photo {
	/*height:200px;*/   
	vertical-align: middle;
	text-align: center;
}
.title {
	vertical-align: middle;
	font-size: .9em;
	font-weight: bold;
	text-align: center;
}
/*================
 Styles the table
===============*/
#chapman {
	border-collapse: collapse;
	width: 90%;
	border: thin #000000 solid;
}
#chapman caption {
	font-size: large;
	font-weight: bold;
	color: #005B1E;
	text-align: center;
}
#chapman td {
	vertical-align: top;
	padding: 5px;
	border: thin #000000 solid;
	text-align: center;
}
.shaded {
	background-color: #eeeecc;
}
.date {
	width: 50px;
	font-weight: bold;
}
.special {
	font-size: xx-small;
}
.smtxt {
	font-size: smaller;
}
.sign {
	font-size: 2.9em;
	font-family: "Mistral"; 
	color: #005B1E;
	
	}

/*================= 
horizontal lines 
================*/
hr {
	background-color: #f8faef;
	border: 2px;
	height: 2px;
	color: #EDBC12;
}
.ctr {
	text-align: center;
}
/*================= 
Styles the form 
================*/
.cf {
	background-color: #DCE5C9;
}

.button {
	background-color:#DCE5C9;
}

.input text{
	background-color:#DCE5C9;
	background-image: url('../images/form-backgd.jpg'); 
	background-repeat: repeat; }

}
.search {
	background-color: #DCE5C9;
	color: #000000; 
	font-weight: bold;

}
.wcc { 
	background-color: #DCE5C9; 
	background-image: url('../images/form-backgd.jpg'); 
	background-repeat: repeat; 
}

.any, all, exact, alike {
	background-color:#DCE5C9;
	background-image: url('../images/form-backgd.jpg'); 
	background-repeat: repeat; 
}	
	
.get {
	
	background-color:#DCE5C9;
	background-image: url('../images/form-backgd.jpg'); 
	background-repeat: repeat; 
}

.imglft {
	border-style: solid;
	border-width: 1px;
	float-left;
	margin-right: 25px;
	margin-top: 25px;
	margin-bottom: 25px;
}
