styles/site.css
@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. */
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. */
body {
	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;
	background: #ffffff url('../images/bg3.jpg') repeat-x;
}
body img {
	border: 0px;
	text-decoration: none;
}
/* =============================
Commonly used to style page titles. 
================================ */

h1, h2, h3 {
	color: #576152;
	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;
}
/* =================
link styles
=================== */
a, a:link {
	color: #993300;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #006600;
	text-decoration: underline;
}
a:active {
	color: #FFFFFF;
}
/* 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 {
	width: 964px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto 0px auto;
	background-color: #ffffff;
	border-top: 1px #ffffff solid;
	border-right: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;	
*/
}
/* ==================
Top Navigation
==================== */
#outerWrapper #topNavigation {
	padding: 0px 5px 0px 5px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */height: 35px;
	background-color: #2C4E1D;
}
/* Styles for Navigation */
#outerWrapper #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0px 0px 20px 0px;
}
#outerWrapper #topNavigation a {
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px 1px;
	padding: 5px;
	display: block;
	font: normal 1.1em "Century Gothic", Verdana, Helvetica, sans-serif;
	letter-spacing: 2px;
}
#outerWrapper #topNavigation a:hover {
	background-color: #E6ECE4;
	color: #000000;
}
/*=======================
masthead styles
======================== */
#outerWrapper #header {
	background: #2C4E1D url('../images/1150629328-513.jpg') no-repeat left bottom;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #4b647f;
	height: 180px;
	border-bottom-color: #2C4E1D;
}
#outerWrapper #header .title {
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	letter-spacing: 2px;
	font-size: 1.7em;
	font-weight: bold;
	color: #FFFFFF;
	margin-top: 30px;
	margin-left: 25px;
	float: right;
}
/* ===================
Content Wrapper image provides the equal column look
==================== */
#outerWrapper #contentWrapper {
	clear: both;
	background: url('../images/content-bg.jpg') repeat-y;
}
/* =======================
left side column
======================== */
#outerWrapper #contentWrapper #leftColumn1 {
	width: 200px;
	padding: 10px 10px 10px 10px;
	float: left;
	font-size: .85em;
}
#outerWrapper #contentWrapper #leftColumn1 .headerbar {
	font: bold 1em Arial;
	color: white;
	background: #4F5B49 url(media/titlebar.png) repeat-x left;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/;
	text-transform: uppercase;
	padding: 4px 0px 4px 10px; /*header text is indented 10px*/
}
#outerWrapper #contentWrapper #leftColumn1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#outerWrapper #contentWrapper #leftColumn1 li a {
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	display: block;
	background: transparent url(../images/arrowgreen.gif) 100% 0;
	height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/;
	padding: 4px 0 4px 10px;
	line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn1 li a:link, li a:visited {
	color: #5E7830;
}
#outerWrapper #topNavigation li {
	float: right;
}
#outerWrapper #contentWrapper #leftColumn1 li a:hover {
	color: #26370A;
	background-position: 100% -32px;
}
#outerWrapper #contentWrapper #leftColumn1 li a.selected {
	color: #26370A;
	background-position: 100% -64px;
}
/* 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 0px 0px 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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
======================== */
#footer {
	padding: 10px 10px 10px 10px;
	width: 948px;
	margin: 0px auto 0px auto;
	background-image: url('../images/footer-border.jpg');
	background-repeat: repeat-x;
}
/* removes the top and bottom margins*/
#footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
/* =================
bottom page graphic 
=================== */
#bottom-bg {
	border: thin solid #FFFFFF;
	background: #FFFFFF url('../images/fotolia_11343079.jpg') repeat-x left bottom;
	height: 225px;
}
/* ==================
image styles
=================== */
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
/* center image on the page */
.imgctr {
	display: block;
	margin: 0px auto;
}
.ctr {
	text-align: center;
}
/* styling small size text*/
.smltxt {
	font-size: small;
}
.tinytxt {
	font-size: x-small;
}
/*============ 
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 1px solid #586253;
}
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 #353c48;
	color: #ffffff;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
	background-color: #576152;
}
.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 #353c48;
	background-color: #353c48;
	color: white;
}