﻿/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.cleardiv
{
	clear: both;
	height: 0;
	overflow: hidden;
}
.hide
{
	display: none !important;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 1px;
	margin-bottom: 1px;
	padding-top: 0;
	padding-bottom: 0;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
margin:0;
padding:0;
line-height: 1.1em;
  background: url(/images/bkGrad.gif) #fff0b3 repeat-x top left;
}

#pageWrapper
{
width: 820px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/
}

#topsection{
	background: #efd361;
	height: 176px; /*Height of top section*/
	background:  url(/images/banner_01.png) transparent no-repeat top left;
}
#content
{
	text-align:left;
	background-color: #ffffff;
	width: 818px;
	border-top: 1px #1C5D1D solid;
	border-left: 1px #1C5D1D solid;
	border-right: 1px #1C5D1D solid;
}
#header {
	background:  url(/images/backgrounds/header-full.gif) #fff no-repeat top left;
	height: 39px;
	width: 818px;
    padding-top: 5px;
  	padding-bottom:10px;
	position: relative;
	color: #fff;
	font-size: 26px;
    font-weight: bold;
	text-align: left;
}
#content p {
	padding: 0 10px 5px 10px;
}
.innertube{
margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}
#footer
{
clear: left;
width: 100%;
background: #006600;
color: #FFF;
text-align: center;
padding: 4px 0;
}
#footer a
{
  color: #fff;
  background-color: #006600;
}
