@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

/*** defaults ***/
body  {
	font: 14px "Trebuchet MS", Verdana, "Palatino Linotype", Arial, Helvetica, sans-serif;
	margin: 0 auto;
	text-align: center;
	background: #FFFFFF;
	color: #222;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #a9672e;
	margin: 0.8em 0;
}
h1 { font-size: 20px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 10px; }

p, li { margin: 0.8em 0; }
ul.plain li { margin: 0; }

input, textarea { border: 1px solid #999; }

a { color: #a9672e; }

ul { list-style-type: none; margin-left: 30px; margin-right: 40px; }

/*** layout ***/
#top { 
	height: 150px;
	padding-top: 20px;
	background: url(images/drop-shadow-top-grey-800x172.gif) no-repeat top center;
}
#header { 
	text-align: left;
	margin: 0 auto;
	width: 760px;
	height: 150px;
	/*border-bottom: 1px solid #CCCCCC;*/
	overflow: hidden;
}

#middle { 
	background: url(images/drop-shadow-sides-800x40.gif) repeat-y top center;
}
#container { 
	width: 680px;
	padding: 40px 40px 0 40px;
	margin: 0 auto;
	text-align: left;
} 

#sidebar1 {
	float: right;
	width: 100px;
	text-align: center;
	padding-top: 66px;
	padding-bottom: 20px;
}
#sidebar1 ul {
	list-style-type: none;
	margin: 0 0 20px 0;
}
#sidebar1 ul li {
	font: 18px Georgia, "Times New Roman", Times, serif;
	color: #a9672e;
	padding: 0 0 5px 0;
}
#sidebar1 ul li.active {
	background: url(images/nav-underline-52x6.gif) no-repeat bottom center;
}
#sidebar1 ul li a {
	color: #333333;
	text-decoration: none;
}
#sidebar1 ul li a:hover {
	color: #a9672e;
}


#mainContent { 
	margin-right: 140px; /*margin for sidebar*/
	padding-bottom: 15px;
}
#pageheader {
	background: url(images/heading-line-540x10.gif) no-repeat bottom center;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#sitename {
	float: right;
	color: #333333;
	margin: 0;
}
#pageheading {
	text-transform: lowercase;
	margin: 0;
}

#contactdetails { font-size: 12px; color: #999;}
#contactdetails a { text-decoration: none; }
#contactdetails a:hover { text-decoration: underline; }

#bottom { 
	height: 20px; /* +20px=40px */
	padding-bottom: 20px;
	background: url(images/drop-shadow-bottom-800x40.gif) no-repeat top center;
}
#footer { 
	position: relative;
	width: 760px;
	height: 40px;
	margin: 0 auto;
	text-align: left;
}
#credit {
	font-size: 10px;
	color: #999;
	position: absolute;
	bottom: 0;
	right: 30px;
}
#credit a { text-decoration: none; }
#credit a:hover { text-decoration: underline; }


/*** misc. stuff ***/
.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;
}
.fltlft16px { /* this class can be used to float an element left in your page */
	float: left;
	margin: 0 16px 0 0;
}
.fltlft16px16px { /* this class can be used to float an element left in your page */
	float: left;
	margin: 16px 16px 0 0;
}


.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;
}