@charset "UTF-8";
body  {
	font: Georgia, "Times New Roman", Times, serif;
	background: #c0c0c0;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #908f8a;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #FFFFFF; 
	background-image:url(images/CullenPalmerWbannerRt.jpg);
	background-position: top right;
	background-repeat:no-repeat;
	padding: 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. */
	margin: 0;
} 
#header img {
border: none;
}

#address {
background-image: url(images/greybar.gif);
background-repeat: repeat-x;
margin: 0;
	font-size: 75%;
	letter-spacing: .05em;
	color: #908f8a;
	padding: 7px 0 15px 15px;
	}
#address a {
	text-decoration:none;
	color: #757470;
	}
#address a:hover {
	color: #336699;
	}
	
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #908f8a; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 30px;
	padding: 0 0 0px 15px;
}
#sidebar1 img{	
	float: right;
	}

#sidebar1 h1{
	font-size: 80%;
	font-weight: normal;
	letter-spacing: .1em;
	text-align: right;
	padding: 15px 20px 0 30px;
	color: #ffffff;
	margin-bottom: -5px;
	}
#sidebar1 p{
	font-size: 75%;
	text-align: right;
	padding: 0px 20px 0 30px;
	color: #Ffffff;
	margin-bottom: -5px;
	}
	#sidebar1 a {
	text-decoration: none;
	color: #ffffff;
}	
#sidebar1 a:hover {
	color: #336699;
	}
#mainContent { 
	margin: 30px 0 0 240px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent p{
	font-size: 80%;
	line-height: 1.5em;
	}
#mainContent a{
	color: #336699;
	text-decoration: underline;
	}
	
#mainContent h1 {
	font-size: 95%;
	color: #000000;
	margin-bottom: -5px;
	}
#mainContent h2 {
	font-size: 75%;
	font-weight:bold;
	color: #7e7881;
	text-transform: uppercase;
	margin-bottom: -5px;
	}
#mainContent h3 {
	font-size: 70%;
	font-weight:bold;
	color: #7e7881;
	text-transform: uppercase;
	margin-bottom: -7px;
	}
#mainContent img {
	padding: 0 20px 10px 0;
	text-align: left;
	}
.ul li{
margin-bottom: -5px;
	}
#footer { 
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
} 
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 60%;
	color: #c0c0c0;
}
#footer a{
	text-decoration: underline;
	color: #c0c0c0;
	}
	#footer a:hover {
	color: #666666;
	}
.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;
}
	/* email form
	_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _*/
	form {
		margin-top: -8px;
	}
	fieldset {
		margin: .9em 0;
		padding: 1em;
		border: 4px solid #908f8a;
		background-color: #d0cfcd;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	}
	legend {
		font-weight: bold;
		color: #434342;
		font-size: 1.2em;
	}
	label {
		float: left;
		width: 25%;
		cursor: pointer;
		font-size: .9em;
		color: #434342;
	}
	input {
		width: 70%;
	}
	input.submit {
		width: 10em;
		text-align: center;
		margin: auto;
		background-color: #d0cfcd;
		color: #434342;
		font-weight: bold;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;

	}
	input.submit:hover {
		background-color: #fff;
		font-weight: bold;
	}
	label.inline  {
		width: auto;
		padding-right: 4em;
	}
	form div {
		clear: left;
		margin: 10px;
	}
	textarea {
		width: 95%;
		height: 10em;
	}
	form em {
		font-size: .8em;
		color: #e76924;
		padding-left: 1em;
	}
	
