/* 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: 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 {
	background-color: #E0DDBC;
	color: #999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 15px;
	margin: 15px 15px 15px 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {color: #000; font-size: 14px; font-weight: bold;line-height: 14px}
/* Commonly used to style section titles. */
h2 {color: #000; font-size: 12px;  font-weight: bold;  line-height: 14px}
/* Sets the style for unvisited links. */
a,  a:link {color: #000;font-weight: normal;text-decoration: none}
/* Sets the style for visited links. */
a:visited {color: #000;font-weight: normal;text-decoration: none}
/* Sets the style for links on mouseover. */
a:hover {color: #000;text-decoration: underline}
/* Sets the style for a link that has focus. */
a:focus {color: #000}
/* Sets the style for a link that is being activated/clicked. */
a:active {color: #000}
/* 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: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 780px;
}
#outerWrapper #header {
	background-color: #ABA350; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 85px;
}
#outerWrapper #topNavigation {
	height: 45px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	font-size: 11px;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link {color: #000066}
#outerWrapper #contentWrapper #leftColumn1 a:visited {color: #000099}
#outerWrapper #contentWrapper #leftColumn1 a:hover {color: #FF0000}
/* 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 {
  margin: 0 0 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {color: #006600}
#outerWrapper #contentWrapper #content a:visited {color: #006600}
#outerWrapper #contentWrapper #content a:hover {color: #7A732B}
/* 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 {clear: left;display: block}
#outerWrapper #footer {padding: 10px 10px 10px 10px; color: #fff;background-color: #ABA350}
#invertedtabs{
margin-left: 2px;
padding: 0;
width: 100%;
background: transparent;
voice-family: "\"}\"";
voice-family: inherit;
padding-left: 0px;
}
#invertedtabs ul{font: bold 11px Arial, Verdana, sans-serif;margin:0;margin-bottom: 1em;padding:0;list-style:none}
#invertedtabs li{display:inline;margin:0 2px 0 0;padding:0;text-transform:uppercase;line-height: 1.5em}
#invertedtabs a{
	float:left;
	color: #7A732B;
	background: #E0DDBC url(../images/color_tabs_left2.gif) no-repeat left bottom;
	margin:0 2px 0 0;
	padding:0 0 0 3px;
	text-decoration:none;
	letter-spacing: 1px;
	font-weight: bold;
}
#invertedtabs a span{float:left;display:block;background: transparent url(../images/color_tabs_right2.gif) no-repeat right bottom;padding:3px 9px 3px 6px}
#invertedtabs a span{float:none}
#invertedtabs a:hover{background-color: #7A732B;color:white}
#invertedtabs a:hover span{background-color: #7A732B;color:white}
#invertedtabs #current a, #invertedtabs #current span{ /*currently selected tab*/background-color: #7A732B;color:white;}
#invertedtabsline{
	clear: both;
	padding: 0;
	width: 100%;
	height: 8px;
	line-height: 8px;
	background: #7A732B;
	border-bottom: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
}
input, textarea, select {color:#000066;background:#fff;font-family: Arial;font-size: 8pt;border: 1px solid #999 /*#000066;*/}
.button {
	color: #A70303;
	background: #6DABC4;
	height: 20px;
	font-family: Arial;
	font-size: 9pt;
	font-weight: bold;
	border: 1px solid #A70303;
}
input.radio {background-color: #fff;color: #6B71AB;border: 1px solid #E6F6F9}
input.checkbox {background-color: #fff;color: #6B71AB;border: 1px solid #E6F6F9}
fieldset { border:1px solid #A70303 }
legend {
  padding: 0.2em 0.5em;
  border:1px solid #A70303;
  color:#A70303;
  font-size:100%;
  text-align:right;
  }
#outerWrapper #contentWrapper #content2 {
	margin: 0 0 0 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
img {border: 0px none}
.right_image {
	float: right;
	margin-left: 10px;
	margin-top: 0px;
	padding: 3px;
	border-top: 1px solid #999; 
	border-left: 1px solid #999; 
	border-right: 1px solid #454545; 
	border-bottom: 1px solid #454545;
	}
.left_image {
	float: left;
	margin-left: 25px;
	margin-top: 0px;
	padding: 3px;
	border-top: 1px solid #999; 
	border-left: 1px solid #999; 
	border-right: 1px solid #454545; 
	border-bottom: 1px solid #454545;
	}
	
.left_image_no_border {
	float: left;
	margin-left: 0px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	}
.photos {
	padding: 3px;
	border-top: 1px solid #999; 
	border-left: 1px solid #999; 
	border-right: 1px solid #454545; 
	border-bottom: 1px solid #454545;
	}
.pullquote {
	width: 75%;
	float:left;
	font-size:18px;
	line-height:165%;
	margin:5px;
	background: url(../images/closequote.gif) no-repeat bottom right !important;
	background /**/:url(); /* removing quote graphic in IE5+ */
	padding:0px 35px 5px 0px;
	font-weight: normal;
	color: #7A732B;
}
.pullquote:first-letter {
	background: url(../images/openquote.gif) no-repeat left top !important;
	padding:5px 2px 10px 35px!important;
	padding /**/:0px; 	/* resetting padding in IE5+ */
	background /**/: url(); /* removing quote graphic in IE5+ */
	}
.leftnavcontainer {width: 190px;font-family: Verdana, Arial, Helvetica, sans-serif}
.leftnav a {
	color: #000066;
	background-color: #B2D1E5;
	padding: 5px;
	padding-left: 1px;
	display: block;
	border-bottom: 1px dashed #0072BB;
	font: 13px Verdana, sans-serif;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
}
ul { margin: 0px;padding-left: 2em} 
li {margin:0 0 0.45em 0} 
  .lowercase{text-transform:lowercase}
.capitalize{text-transform:capitalize}
