/* 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: #2b3a3c url(../images/bg_fill.gif) repeat-y top;
  color: #2d2e2e;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: .9em;
  line-height: 1.3em;
  margin: 0;
  padding: 0;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
h1 {
  color: #3C6060;
  font-size: 1.8em;
  font-weight: bold;
  padding-bottom: .5em;
}
h2 {
  color: #6d9863;
  font-size: 1.6em;
  padding: 1.2em 0 .3em 0;
  line-height: 1.1em;
}
h3 {
  font-size: 1.4em;
  padding: 1.2em 0 .3em 0;
}
h4 {
  font-size: 1.2em;
  padding: .5em 0 .3em 0;
  line-height: 1.5em;
}
h5 {
  font-size: 1em;
}
a,  a:link {
  color: #2086ED /*#3c982d*/;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  color: #2086ED /*#2d7336*/;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #2d7336 /*#66CC33*/;
  text-decoration: underline;
}
a:focus {
  color: #09760d;
}
a:active {
  color: #164619;
}
/* 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;
  text-align: left;
  width: 800px;
}
#outerWrapper #header {
  background-color: #8ab573;
  border-bottom: solid 1px #628152;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 40px 40px 40px 40px;
}
#outerWrapper #header h1 a {
  font-size: 1.2em;
  color: #FFFFFF;
  padding: 0 0 10px 0;
  text-decoration: none;
}
#outerWrapper #header h2 a {
  font-size: .9em;
  color: #3E6060;
  text-decoration: none;
}
#outerWrapper #menu {
  color: #fff;
  background: #B16900 url(../images/menu_blend2.png) top left repeat-x /*#d4e0cd*/;
  border-bottom: solid 1px #628152; 
  margin: 0;
  padding: .3em 1em;
  text-align: center;
}
#outerWrapper #menu a {
	color: #fff /*#3366CC*/;
	font-weight: bold;
  	margin: 0;
	padding: 0;
}
#outerWrapper #menu a:visited {
	color: #fff /*#3366CC*/;
	font-weight: bold;
  	margin: 0;
	padding: 0;
}
#outerWrapper #menu a:hover {
	color: #000;
	font-weight: bold;
  	margin: 0;
	padding: 0;
}
/* 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: 50px;
}
#outerWrapper #contentWrapper #content.background {
	background: #FFF url(../images/bekierman.jpg) no-repeat top center;
}
#outerWrapper #footer {
  background-color: #eef6ed;
  border-top: solid 1px #8ab573;
  padding: 20px 20px 20px 20px;
  text-align: center;
}

/* Custom Styles */
.underline_red {
	border-bottom: 1px #F30 solid;
}
.underline_green {
	border-bottom: 1px #393 solid;
}
.photobox_340 {
	width: 340px;
	float: left;
}
.photobox_340 p {
	font-size: .9em;
	font-style: italic;
	padding: .3em 0 0;
	margin: 0;
}
.text_red {
	color:#F30;
}

