@charset "utf-8";
body  {
	font: 10px Arial, Helvetica, sans-serif;
	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: #666666
}
#container { 
	width: 880px;
	height: 515px;
	background: #FFFFFF;
	margin: 60px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #BCBEC0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	text-align: right;
	padding: 51px 60px 21px 20px;  /* 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. */
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 165px; /* 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 */
	margin: 0 0 0 50px;
	position: relative;
}
#sidebar1 a {
	color: #a1a2a4;
	text-decoration:none;
}
#sidebar1 a:hover {
	color: #666666;
	text-decoration:none;
}
#mainContent { 
	margin: 0 60px 0 215px; /* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent p {
	padding: 0 60px 0 0;
}
#mainContent a {
	color: #a1a2a4;
	text-decoration:none;
}
#mainContent a:hover {
	color: #666666;
	text-decoration:none;
}
#customscroll {
	/* Typical fixed height and fixed width example */
	width: 603px;
	height: 150px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	margin:15px 0 0 0;
}
#customscroll p {
	padding: 0 60px 0 0;
}
#logo {
	margin: 0 0 0 530px;
}
#nav {
	font-size:9px;
	padding:15px 0 0 195px;
}
#nav a {
	color: #a1a2a4;
	text-decoration:none;
}
#nav a:hover {
	color: #666666;
	text-decoration:none;
}
.selected {
	color: #666666;
}
.address {
	font-size: 11px;
	line-height: 20px;
}
#peopleimg {
	float:left;
	margin: -140px 0 0 -165px;
	width: 127px;
	height: 127px;
}
#map {
	float:right;
	width:220px;
	margin:30px 130px 0 0;
}
#thumbscroll {
	/* Typical fixed height and fixed width example */
	width: 201px;
	height: 315px;
	overflow:hidden;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
}
#galleryimg {
	float:right;
	width:385px;
	margin:15px 60px 0 0;
}
#galleryimg p {
	color: #a1a2a4;	
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
#copyright {
	width: 880px;
	margin: 0 auto;
	padding: 10px 0 0 0;
	font-size: 9px;
	color:#BCBEC0;
	text-align: left;
}
.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;
}