@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(../images/background.png);
	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 { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {
	text-align:center;
	background-image:url(../images/headerBackground.png);
	width:779px;
}

#sidebar1 {
	position: absolute;
	top: 150px;
	left: 0px;
	width: 129px; /* 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 */
	height:410px;
	background-image:url(../images/sidebar.png);
	padding: 0px 10px 30px 0px; /* padding keeps the content of the div away from the edges */
	border-right:thin solid #666600;
	border-left:1px solid #FFFFFF;
}

#photoBar {
	width:128px;
	padding-top:5px;
	padding-left:6px;
}

#serviceArea {
	color:#FFFFFF;
	font-size:12px;
	text-align:center;
	padding-top:5px;
	padding-bottom:5px;
}

#mainContent { 
	margin: 0 15px 0 170px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top:25px;
	height: 415px;
}

#footer {
	border-top:thin solid #666600;
	border-bottom:thin solid #666600;
	position:absolute;
	top:568px;
	margin:0 0 0 170px;
	width: 629px;
	font-size:10px;
	left: -24px;
	height:16px;
	vertical-align:middle;
}

#footer a, a:visited {
	color:#C18557;
	text-decoration:none;
		font-weight:bold;
}

#footer a:hover {
	color:#666600;
	text-decoration:none;
	font-weight:bold;
}

.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;
}

.menuItem {
	width:99px;
	height:20px;
	padding:7px 20px;
	margin:0;
	font-size:16px;
	font-weight:bold;
	border-bottom:thin solid #666600;
}

.menuItem a,a:visited {
	color:#FFFFFF;
	text-decoration:none;
}

.menuItem a:hover {
	color:#C18557;
	text-decoration:none;
}

.heading1 {
	text-decoration:underline;
}

.heading2 {
	color:#C18557;
	text-decoration:underline;
	margin-bottom:3px;
}

.services {
	font-size:12px;
	height:300px;
	overflow-y:scroll;
}

.services h3{
	padding:0;
	margin:0;
	text-decoration:underline;
}

.services h2 {
	text-decoration:underline;
	text-align:center;
}
