@charset "utf-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; padding: 0 0 0 10px; /* Resets browser defaults */
	text-align: center; /* IE 5 fix */
	color: #333;
	font-size: 12px;
	background-color: #666;
}

body ul { margin: 15px; padding: 0px; }

p { line-height: 1.25em; }




#container { 
width: 790px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 0;
text-align: left; /* this overrides the text-align: center on the body element. */
}

#header { 
background: #DDD;
padding: 0 0 0 0;   this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
	#collage {
	float: right;
	padding: 20px 0;
	}
	
		#address p {
		color: #666;
		font-style: italic;
		}
	
	#logo {
	padding: 14px 52px;
	}

#main {
width: 165px;
padding: 10px 0 10px 0;
margin: 0 0 0 20px;
float: left; /* since this element is floated, a width must be given */
background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
}
	
	#main a { text-decoration: none; color: #333; }
	#main a:hover { text-decoration: underline; }
	
	#main h2 {
	font-size: 18px;
	color: #333;
	}
	
	#main h3 {
	font-size: 16px;
	margin: 0;
	letter-spacing: 1pt;
	font-weight: bold;
	color: #7F4F00;
	}

#navlist {
margin:0;
padding:0;
margin-left: 0;
padding-left: 0;
list-style: none;
}

	#navlist ul	li {
	font-size: .75em;
	padding-left: 10px;
	background-image: url(../images/arrow.gif);
	background-repeat: no-repeat;
	background-position: 0 .5em;
	}
	
	#navlist ul li {
	list-style: none;
	}

#content {
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
width: 540px;
padding: 10px 20px 0 20px;
margin: 20px 10px 0 0;
border-left:1px dashed #999; 
float: right;
margin: 0;
}

	#content h2 {
	font-size: 16px;
	color: #7F4F00;
	padding: 0 0 20px 0;
	margin: 0;
	}
	
	#content h3 {
	font-size: 14px;
	margin: 0;
	}

	#content h4 {
	font-size: 10pt;
	padding: 5px 0 2px 0;
	margin: 0;
	}
	
	#content h5 {
	font-size: 9pt;
	margin: 0;
	}
	
#bread {
color: #666;
}

	#bread ul {
	margin-left: 0;
	padding-left: 0;
	display: inline;
	border: none;
	} 
	
	#bread ul li {
	margin-left: 0;
	padding-left: 2px;
	border: none;
	list-style: none;
	display: inline;
	}
	
	<!--autogeneration script, ignore -->
	#bread-gen ul li:before {
	content: "\0020 \0020 \0020 \00BB \0020";
	color: #ff9;
	}
	
	<!--autogeneration script, ignore -->
	#bread-gen ul li.first:before {
	content: " ";
	}

/* This is the background image */
#graphic { width: 470px; height: 160px; background: url(../images/sample.jpg) no-repeat; }
	
#graphic {
margin: 10px 0;
padding: 0px;
}

/* This is the transparent box */
#transbox {
width: 150px;
margin: 0 0 0 200px;
background-color: #333;
filter:alpha(opacity=60);
opacity: 0.60;
-moz-opacity: 0.60;
}

/* This is the container which set text to solid color.
position: relative used for IE */
#transbox div {
font-size: 1.5em;
padding: 15px;
font-weight: bold;
color: #CC820B;
filter:alpha(opacity=100);
opacity: 1.0;
-moz-opacity: 1.0;
position: relative;
text-align:center;
}

#image {
padding: 10px;
margin: 5px;
float: right;
border: 1px solid #666;
}

#image p {
font-size: 11px;
margin: 2px;
}

#footer { 
padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
background:#333;
}

	#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	/*padding: 10px 0;  padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	line-height: 40px;
	color: #ccc;
	}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}