styles/site.css
@charset "iso-8859-1";
/* Margins and padding are set with properties for an element using shorthand notation (top, right, bottom, left) */
/* If all four measurements are the same then you need only use one unit of measurement - instead of 0px 0px 0px 0px use just 0px */
/* 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, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	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. Stles the top border background of the page repeated horizontally */
body {
	background: #E7DEBD url('../images/bord_floral_036.gif') repeat-x;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	line-height: 1.2em;
	font-size: 1em;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
}
/* ===================
Keeps images that are hyperlinks from having the ugly blue border 
=================== */
body img {
	border: 0px;
	text-decoration: none;
}
/* ==========================
Page Background
============================*/
#pagebg {
	background: url('../images/wp_floral_036.jpg') repeat;
}
/* ===================
Commonly used to style page titles. 
=================== */
h1, h2, h3 {
	color: #5A1818;
	margin: 5px 0px 5px 10px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 1.7em;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #931818;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
	color: #4870aa;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #6A7456;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}
/* 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: #E7DEBD;
	width: 965px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 174px auto 0px auto;
	border-left: 1px solid #5A1818;
	border-right: 1px solid #5A1818;
}
/* ===================
Syling for page header and site name 
=================== */
#outerWrapper #header {
	background-color: #E7DEBD;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #5A1818;
	height: 50px;
}
#outerWrapper #header .title {
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	font-size: 1.7em;
	font-weight: bold;
	color: #000000;
	margin-top: 15px;
	margin-left: 25px;
}
/* ===================
  Style for top navigation wrapper
=================== */
#outerWrapper #topNavigation {
	background-color: #E7DEBD;
	/*height: 25px;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #5A1818;  */
}
/* ===================
background repeated vertically styles the equal height columns 
=================== */
#outerWrapper #contentWrapper {
	background: #E7DEBD url('../images/content-background..gif');
	background-repeat: repeat-y;
}
/* ===================
styles for left column 
=================== */
#outerWrapper #contentWrapper #leftColumn1 {
	padding: 10px 10px 10px 10px;
	float: left;
	width: 150px;
	font-size: .85em;
}
/* ===================
styles for right column 
=================== */
#outerWrapper #contentWrapper #rightColumn1 {
	padding: 10px 10px 10px 10px;
	float: right;
	width: 150px;
	font-size: .85em;
}
/* side box styling  */
.sidebox {
	border: 2px solid #5A1818;
	margin: 0px 5px 3px 5px;
	padding: 0px 3px 15px 3px;
	background: #E7DEBD;
	color: #000000;
	font-size: 85%;
}
.sideboxheading {
	background: #751818;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	margin-top: 3px;
	padding: 2px;
}
#outerWrapper #contentWrapper #rightColumn1 .sidebox a:link {
	color: #9D0000;
	font-weight: bold;
	text-decoration: none;
}
#outerWrapper #contentWrapper #rightColumn1 .sidebox a:visited {
	color: #009900;
	font-weight: bold;
	text-decoration: none;
}
#outerWrapper #contentWrapper #rightColumn1 .sidebox a:hover {
	color: #C60029;
	font-weight: bold;
}
#outerWrapper #contentWrapper #rightColumn1 .sidebox a:active {
	color: #1534B3;
	font-weight: bold;
	text-decoration: none;
}
/* 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: 0px 170px 0px 170px;
}
/* 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: both;
}
/* ===================
footer styles 
=================== */
#outerWrapper #footer {
	background-color: #E7DEBD;
	border-top: solid 1px #5A1818;
/* Sets the top border properties for an element using shorthand notation */padding: 10px 10px 10px 10px;
}
/* removes the top and bottom margins*/
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
/* ===================
styles for floating images left, right, and 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;
}
/* ===================
Misc styles 
=================== */
.ctr {
	text-align: center;
}
/* styling small size text*/
.smltxt {
	font-size: small;
}
/* Styling for extra small size text*/
.tinytxt {
	font-size: xx-small;
}
/*============ 
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 1px solid #353c48;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	border: 1px solid #000000;
	color: #ffffff;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
	background-color: #000000;
}
.cf {
	border: 1px solid #424852;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #000000;
	background-color: #000000;
	color: white;
}