/* 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: #bbcf95 url(../images/background.jpg) repeat-x;/*81D67E*/
  color: #153106;
  font-family: Arial, Helvetica, sans-serif ; /*"Times New Roman", Times, serif*/
  font-size: 12pt;
  line-height: 14pt;
  margin: 0 0 0 0; /* 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. */
}
/* Header styles */
h1 {
  color: #163206;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h2 {
  color: #006633;
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
}

h3 {
  color: #003333;
  font-size: 18px;
  line-height: 22px;
}

h4 {
  color: #003333;
  font-size: 17px;
  line-height: 18px;
}
/*   Link Styles  */
a,  a:link {
  color: #000099;
  font-weight: normal;
  text-decoration: none;
}

a:visited {
  color: #006600;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for links on mouseover, focus and being activated/clicked. */

a:hover, a:focus, a:active {
  color: #0000CC;
  text-decoration: underline;
}

/* Sets distance between lines on lists */
ul{
 line-height: 1.5em;
}
/*---------------------------*/
/* Sets line break properties */
hr {
  border: 0;
  color: #163206;
  background-color:#163206;
  height: 1px;
  text-align: center;
}
/* 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: 10px 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: 1000px;
}
#outerWrapper #header {
  background-color: #92b876;
  border-bottom: solid 1px #92b876; /* 657f51 Sets the bottom border properties for an element using shorthand notation */
  /*font-size: 18px;
  font-weight: bold;
  line-height: 15px;*/
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation {
  background: #edf6e4;
  /*background-image:url(../p7pm/img/nav-button2.jpg) repeat-x;*/
  border-bottom: solid 1px #92b876; /* Sets the bottom border properties for an element using shorthand notation */
  height: 36px;
  padding: 0px opx 0px 0px;
  margin-right: 2px;
}
/* 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 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 30px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.imgRight  {float:right;
  margin:5px 0 0 5px;
  border:none; }

.imgRight2  {float:right;
  margin:0 0 0 5px;
  border:none; }

.imgLeft  {float:left;
  margin:5px 5px 0 0;
  border:none; }
  
.imgBorder  {border:none;}

.indentLeft {margin:0 300px 10px 10px;}
.indentLeft2 {margin:0 300px 10px 300px;}


.indentRight {float:right;
    width:375px;
	margin-left; 10px;}/*margin:0 10px 10px 450px;*/
	
.columnLeft {float: left;
    width:300px;
	padding: 0 10px;
	margin-right: 30px;
	background: #d9ebb6;
	border: ridge #163206 1px;}


.center {text-align:center;}
.right {text-align:right;}
.left {text-align:left;}

ul.plain {
	list-style:none;
	line-height: 1.5em;
	padding-left: 0;
	margin-left: 0;
	margin-top: 0;
	}

ul.tight {
	line-height: 1.4em;
	padding-left: 5px;
	margin-left: 4px;
	margin-top: 0;
	}

.small {font-size:12px;}	
/*.large {font-size:15px;
	line-height:17px;*/
	margin-bottom:10px;}

.largeBlue {color: #4f81bd;
  font-size: 16px;
  line-height: 18px;}

.spacer {font-size:8px;
  line-height:8px;}

#outerWrapper #footer {
  background-color: #edf6e4;
  border-top: solid 1px #92b876; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size:10px;
}
