/* 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: #24251E;
  background-image: url(../_images/background_home_2011.jpg);
  background-repeat:no-repeat;
  background-position:top;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  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. */
}
/* 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: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  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 {
  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: 1040px;
}
#outerWrapper #header {
  font-size: 18px;
  height: 177px;
  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 #header_1 {
	background-image:url(../_images/header1.jpg);
	background-repeat:no-repeat;
	height: 62px;	
}
#outerWrapper #contentWrapper {
  background-repeat: repeat-y;
  overflow: hidden;
  padding:0;
  margin:0;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-image:url(../_images/background_left_col_home_2011.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 315px;
  height: 360px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-image:url(../_images/background_right_col_home_2011.jpg);
  background-repeat:no-repeat;
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 315px;
  height: 360px;
}

#outerWrapper #contentWrapper #rightColumn3 {
  background-image:url(../_images/right_col_home3.jpg);
  background-repeat:no-repeat;
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 315px;
  height: 360px;
}

#outerWrapper #contentWrapper #rightColumn4 {
  background-image:url(../_images/right_col_home4.jpg);
  background-repeat:no-repeat;
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 315px;
  height: 360px;
}

/* 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 {
  background-image: url(../_images/background_middle_2011.jpg);
  background-repeat:no-repeat;
  background-position:top;
  margin: 0 315px 0 315px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 18px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}
/*#outerWrapper #footer {
  background-color: #ddd;*/
  /*border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  /*padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left)
}*/
#footer {
	background-color: #CBDDEF;
	border-top: solid 5px #B9D1EA; /* Sets the top border properties for an element using shorthand notation */
	border-bottom: solid 5px #B9D1EA;
	padding: 3px 0 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 65px;
	color: #666;
	font-size: 9px;
	margin-top:10px;
}
#main_menu {/*Main menu css*/
  height: 24px;
  width: 562px;
  float:right;
  padding-top: 0px;
  font-size: 10px;
}
#outerWrapper #search {
	height: 35px;
	background-repeat:no-repeat;
	text-align:right;
	font-size: 10px;
	padding:0;
	margin:0;
}
*html #outerWrapper #search {height :32px;} /*style for IE 6 hack */

#outerWrapper #search form {padding:0; margin:0;}

#outerWrapper #search input {
	background-color: #BFEEFF;
	border: 1px solid #09F;
	padding: 2px 3px;
}
#logo {
  float:left;
  height: 62px;
}
.float_left { float:left; margin-right:  10px;}
.float_right { float:right; margin-left: 10px;}
/*Start of navcontainer3 menu on the right had sub-menus needed on most pages*/
#navcontainer3{
	padding-top: 40px;
	padding-left: 100px;
}
#navcontainer3 ul
{
list-style-type: none;
text-align: left;
padding-bottom:0;
margin-bottom:0;
}
#navcontainer3 ul li {
	padding-bottom: 0px;
}
#navcontainer3 ul li a
{
background: transparent url("../_images/list-onn3.gif") left center no-repeat;
padding-left: 15px;
text-align: left;
font: normal 11px "Arial", "helvetica", verdana, lucida, sans-serif;
text-decoration: none;
color: #333;
font-size: 10px;
}

#navcontainer3 ul li a:hover
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #000;
text-decoration: underline;
}

#navcontainer3 ul li a#current
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #03F;
}
/*End of navcontainer3 menu used on the right column of most pages.*/
/*Start of navcontainer4 menu on the right had sub-menus needed on most pages*/
#navcontainer4{
	padding-top: 35px;
	padding-left: 115px;
}
#navcontainer4 ul
{
list-style-type: none;
text-align: left;
}
#navcontainer4 ul li {
	padding-bottom: 0px;
}
#navcontainer4 ul li a
{
background: transparent url("../_images/list-onn3.gif") left center no-repeat;
padding-left: 15px;
text-align: left;
font: normal 11px "Arial", "helvetica", verdana, lucida, sans-serif;
text-decoration: none;
color: #333;
font-size: 10px;
}

#navcontainer4 ul li a:hover
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #000;
text-decoration: underline;
}

#navcontainer4 ul li a#current
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #03F;
}
/*End of navcontainer5 menu used on the right column of most pages.*/
/*Start of navcontainer3 menu on the right had sub-menus needed on most pages*/
#navcontainer5{
	padding-top: 40px;
	padding-left: 100px;
}
#navcontainer5 ul
{
list-style-type: none;
text-align: left;
padding-bottom:0;
margin-bottom:0;
}
#navcontainer5 ul li {
	padding-bottom: 0px;
}
#navcontainer5 ul li a
{
background: transparent url("../_images/list-onn3.gif") left center no-repeat;
padding-left: 15px;
text-align: left;
font: normal 11px "Arial", "helvetica", verdana, lucida, sans-serif;
text-decoration: none;
color: #333;
font-size: 10px;
}

#navcontainer5 ul li a:hover
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #000;
text-decoration: underline;
}

#navcontainer5 ul li a#current
{
background: transparent url("../_images/list-offn3.gif") left center no-repeat;
color: #03F;
}
/*End of navcontainer5 menu used on the right column of most pages.*/
table {
	background-image:url(../_images/table_background.jpg);
	background-repeat:no-repeat;
}
table th {
	padding-left: 15px;
	font-size: 16px;
	color:#90C3D2;
	font-family:Arial, Helvetica, sans-serif;
	padding-bottom: 0px;
	letter-spacing: 2px;
}
.home2011 table {
	background-image:url(../_images/table_background_2011.jpg);
	background-repeat:no-repeat;
}
.home2011 table th {
	padding-left: 15px;
	font-size: 16px;
	color:#90C3D2;
	font-family:Arial, Helvetica, sans-serif;
	padding-bottom: 0px;
	letter-spacing: 2px;
}
#navcontainer6{
}
#navcontainer6 ul
{
	margin: 2px 0 0 0;
	padding-bottom: 5px;
list-style-type: none;
text-align: left;
}
#navcontainer6 ul li {
	padding-bottom: 0px;
}
#navcontainer6 ul li a
{
padding-bottom: 0px;
text-align: left;
font: bold 11px "Arial", "helvetica", verdana, lucida, sans-serif;
text-decoration: none;
/*color: #B4CA77;*/
color:#FFD900;
}

#navcontainer6 ul li a:hover
{
/*color: #DCE7C0;*/
color:#FFE96A;
font-weight: bold;
text-decoration: underline;
}

#navcontainer6 ul li a#current
{
color: #03F;
}
/*End of navcontainer3 menu used on the right column of most pages.*/

/*Start of links used on the left column of homepage*/
/*#myjps a{
	display:block;
	position:absolute;
	top:533px;
	left:56px;
	width:216px;
	height:69px;
}*/



#social {
	margin:15px 40px 0 55px;
	height:35px;
}

#ehouse {
	margin:27px  40px 0 49px;
	height:110px;
}

#conserveenergy {
	margin:8px 40px 0 55px;
	height:52px;
}
#myjps {
	margin:12px 40px 0 55px;
	height:68px;
}
/*End of links used on the left column of homepage*/

/*Start of links used on the right column of homepage*/
#archive {
	/*display:block;
	position:absolute;
	top:312px;
	left:935px;
	width:50px;
	height:23px;*/
	margin:35px 50px 0 210px;
	/*color:#FF0000;*/
}
#archive a {
	color:#F00;
	font-size:9px;
	font-weight:bold;
	text-decoration:none;
}

#archive a:hover {
	text-decoration:underline;
}
#conserve {
	margin:0 55px 0 45px;
	height:53px;
}

#sponsor {
	margin:5px 55px 0 45px;
	height:125px;
	line-height:3px;
}
#sponsor_more {
	/*display:block;
	position:absolute;
	top:312px;
	left:935px;
	width:50px;
	height:23px;*/
	margin:20px 50px 0 210px;
	/*color:#FF0000;*/ 
} 

#sponsor img {
    display: block;
    margin-left: auto;
    margin-right: auto
}
	
#sponsor_more a {
	color:#F00;
	font-size:9px;
	font-weight:bold;
	text-decoration:none;
}

#sponsor_more a:hover {
	text-decoration:underline;
}
#theft {
	margin:0 55px 0 45px;
	height:53px;

}

/*End of links used on the right column of homepage*/
#news{
	margin-top:10px;
	padding:0 55px 0 55px;
	font-size:11px;
	height:160px;
	
}

#news p{ padding:0; margin:0;}
#news .date{
	color: #999;
	font-weight:bold
}
#news .title{
	color: #333;
	font-weight:bold;
	padding-left:15px;
}
#news .excerpt{
	color: #333;
	font-weight:normal;
	padding-left:15px;
	font-size:10px;
}

#news .excerpt a{
	color:#FF0000;
	font-weight:bold;
	text-decoration:none;
}
#news .excerpt a:hover{
	text-decoration: underline;	
}

#news2{
	margin-top:10px;
	padding:0 55px 0 55px;
	font-size:11px;
	height:107px;
	
}
#news2 p{ padding:0; margin:0;}
#news2.date{
	color: #999;
	font-weight:bold
}
#news2 .title{
	color: #333;
	font-weight:bold;
	padding-left:15px;
}
#news2 .excerpt{
	color: #333;
	font-weight:normal;
	padding-left:15px;
	font-size:10px;
}

#news2 .excerpt a{
	color:#FF0000;
	font-weight:bold;
	text-decoration:none;
}
#news2 .excerpt a:hover{
	text-decoration: underline;	
}


