 
* {
	margin: 0px;
	padding: 0px;
}
body  {
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #003300;
	/*background-image: url(images/stripe.gif);
	/* formerly was font-size: 11px;*/
	font-size: 68%; /*I changed to percent to allow for resize*/
	line-height: 1.3em;
}
p {   /* Space between paragraphs */
	padding-bottom: .9em;
	
}
/* I added different visited and hover colors to links*/

a:link{
	color: #4b6044;
	text-decoration: none;
}
a:visited {
	color:#444422;
	text-decoration: none;
}
}
a:hover {
	color:#934900;
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
}

/* I added H1. I also changed all to ems. */
h1 {
	font-size: 1.2em; /* changed from 13px */
	padding-bottom: 0.8em;
	color: #ad5d16;
	line-height: 1.3em;
}

h2 {
	font-size: 1.2em;
	padding-bottom: 0.8em;
	color: #ad5d16;
	line-height: 1.3em;
}
h3 {
	font-size: 1.1em;
	color: #ad5d16;
	padding-bottom: 9px;
	line-height: 1.2em;
}
h4 {
	color: #ad5d16;
	font-size: 1em;
	padding-bottom: 2px;
	line-height: 1.2em;
}

/* I added this because former css had bold class. */
.bold {
	font-weight: bold;
}

/********** Container **********/

.thrCol  #container {
	width: 780px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
}

/********** Header **********/

.thrCol #header  {
	float: left;
	width: 780px;
}
.thrCol     #header     h1 {
	background-color: #8B6453;
	font-size: 13px;
	text-align: left;
	padding: 8px 2px 10px 6px;
	width: 557px;
	margin-left: 177px;
	color: #FFFFFF;
	line-height: 1.2em;
}
.thrCol #header img {
	float: left;
}
.insideMarg        {
	background-color: #FFFFFF;
	margin-right: 19px;
	margin-left: 19px;
}
.title     {
	width: 565px;
	padding-left: 177px;
	float: right;
}

/* added top, bottom, and right padding to create space around Google search*/
.search    {
	width: 542px; /*originally 552px. Reduced to keep this in line with right side of main container which bumps out with added padding-right*/
	padding-left: 190px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	float: right;
}

/* customizes Google search button to be smaller, white, normal font, and less padding around text, minimizes appearance of button*/

#mysubmit { background-color:#FFFFFF; font-size: 80%; 
    padding: 1px; font-weight: normal; }


/********** MidContainer (sidebars + main content) **********/

.thrCol  #midcontainer  {    /* contains all center columns - left & right sidebar and center content or white area. */
	background-color: #FFFFFF;
	margin: 0px 19px;
	padding-top: 1.5em;   /* gap or white space below header */
	padding-bottom: 0.5em;
}

/********** Navbar Left **********/

.thrCol  #navbar {
	float: left; /* since this element is floated, a width must be given */
	width: 163px;
	text-align: right;
	font-weight: bold;
	padding-left: 2px;
	font-size: 0.9em; /*was 10px - ems make it resizable*/
}
.thrCol   #navbar   ul {
	list-style: none;
	padding-bottom: 1.3em;
	padding-left: .3em;
}
.thrCol #navbar li {
	padding-bottom: .5em;
}
.thrCol #navbar li.first {    
	padding-top: 2px;    /* Visually top aligns left sidebar to other columns */
}
.thrCol      #navbar      .dotline {
	border-bottom-width: 4px;
	line-height: 20px;
	letter-spacing: 0.5em;
	font-size: 6px;
	color: #AD5D16;
	margin-right: -3px;
	margin-bottom: -10px;
}
.thrCol #navbar a:hover {
	text-decoration: underline;
}

/********** Sidebar Right **********/

.thrCol  #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 152px;
	padding-right: 3px;
	font-size: 90%; /* was 10px, changed to allow resize*/
	line-height: 1.3em;
	margin-right: -3px;
}
.thrCol  #sidebar  h2 {
	font-size: 11px;
	color: #AD5D16;
	padding-bottom: .6em;
}
.thrCol #sidebar ul li {
	list-style-position: outside;
	padding-right: 4px;
	padding-bottom: 0.8em;
}
.thrCol #sidebar a:hover {
	text-decoration: underline;
}
.thrCol   #sidebar   .box   p {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	background-color: #EDDDAF;
	display: block;
}

 /********** Main Content **********/
 
.thrCol  #mainContent {
	margin-left: 181px;
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 166px;
}
.thrCol  #mainContent a:link {
	text-decoration: underline;
}
.thrCol #mainContent a:visited {
	text-decoration: underline;
}
.thrCol   #mainContent2  {  /*  Main content in the center. It is positioned by using the left & right margins (no width needed) */
	margin-right: 10px;
	margin-left: 181px;
} 
.thrCol #mainContent2 a:link {
	text-decoration: underline;
}
.thrCol #mainContent2 a:visited {
	text-decoration: underline;
}
 

ul   {list-style-type: square; /* I added this because I can't find triangles */
	list-style-position: outside; 
	padding-bottom: 0.8em;
	padding-left: 1.3em;
}
ul  li   {
	padding-bottom: 0.5em;
}

/* I added ol */
ol {
	list-style: decimal outside;
	margin-left: 1em;
	padding-left: 2em;
	padding-bottom: 0.8em;
	/*line-height: 1.4em;*/
}

	

/********** Footer **********/

#footer  {
	margin: 0 19px 5px 19px;
	padding-bottom: 0px;
} 
#footer  p {
	font-size: 10px;
	padding: 6px 10px 8px 10px;
	
	color: #dfdfd2;
	letter-spacing: 0.1em;
	line-height: 14px;
	background-color: #757C68;
	margin-left: 177px;
	margin-top: -35px;
}
.leftcorner   {
	float: left;
}

/********** ****** **********/

/** Use to place images with text wrap and padding **/

.imgleft {float: left; padding: 8px} 
.imgright {float: right; padding: 8px} 

.tanback {   /* no width here so it can be used in sidebar and main content areas */
	background-color: #edddaf;
	padding: 5px 5px 7px 7px;
	margin-bottom: 1em;
}
.clear {
	clear: both;
	
}



