@charset "utf-8";
body  {
	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 */

}
#containertop { 
	width: 100%;
	height: 211px;
	margin: 0 auto;
	text-align: left;
	background-image:url(/custom/themes/default/images/tile-top.jpg);
	background-repeat:repeat-x;
} 

#header { 
	position: relative;
	width: 786px;
	height: 211px;
	margin: 0 auto;
	text-align: left;
}
	
#logo{ 
	width: 229px;
	height: 211px;
}

.toppict{
	position: absolute;
	top: 0px;
	left: 229px;
	width: 557px;
	height: 211px;
	}

#toppict1{
	background-image:url(/custom/images/toppict/pict1.jpg);
}
#toppict2{
	background-image:url(/custom/images/toppict/pict2.jpg);
}
#toppict3{
	background-image:url(/custom/images/toppict/pict3.jpg);
}
#toppict4{
	background-image:url(/custom/images/toppict/pict4.jpg);
}
#toppict5{
	background-image:url(/custom/images/toppict/pict5.jpg);
}

#toppict6{
	background-image:url(/custom/images/toppict/pict6.jpg);
}

#toppict7{
	background-image:url(/custom/images/toppict/pict7.jpg);
}

#toppict8{
	background-image:url(/custom/images/toppict/pict8.jpg);
}

#tagline {
	position: absolute;
	top: -10px;
	left: 0px;
}
	
#tagline h1{
	font-weight: normal;
	margin: 0px;
	color: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
}

#phone{
	position: absolute;
	top: 2px;
	left: 440px;
	color: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	}

#wrappermiddle { 
	width: 100%;
	background-image:url(/custom/themes/default/images/tile-back.jpg);
} 
#containermiddle { 
	width: 786px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	background: #fff url(/custom/themes/default/images/tile.jpg) repeat-y left;

} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 232px; 
	background-image:url(/custom/themes/default/images/side-bar.jpg);
}

#sidenavwrap2{
	width: 232px;
	height: 312px;
	padding: 0 10px 0 10px;
	background-image:url(/custom/themes/default/images/tile-nav.jpg);
	background-repeat:repeat-y;
}
#sidenavbottom{
	width: 232px;
	height: 172px;
	background-image: url(/custom/themes/default/images/nav-bottom.jpg);
}

#mainContent { 
	margin: 0 0 0 242px; /* 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 15px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#contentbox1 {
	width: 520px;
	background-image:url(/custom/themes/default/images/contentbox1.gif);
	}
#contentbox14 {
	width: 520px;
	background-image:url(/custom/themes/default/images/contentbox14.gif);
	}
#contentbox1txt {
	padding: 10px 10px 0px 10px;
	color: #6c5e51;
	}	
#contentbox1txt h1 {
	font-weight: normal;
	margin: 0px;
	color: #886038;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	}	
#contentbox1-foot{
	width: 520px;
	height: 25px;
	background-image:url(/custom/themes/default/images/contentbox1-foot.gif);
	}
#contentbox2 {
	width: 510px;
	padding: 0 0px 0px 10px;
	}
#contentbox2 h1 {
	font-weight: bold;    
	margin: 0px;
	color: #886038;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	}	
	
#contentbox2 h2 {
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	color: #81180c;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	}	
	
#pict	{
	padding: 0 5px 35px 0;
	}
		
#footer { 
	padding: 10px 0px 10px 20px;
	background-color: #886038;
	margin-left: 2px;
	color: #ffffff;
} 

.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;
}
