@charset "UTF-8";
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
h1 {
	font-size:16px;
	padding: 15px;
}
body  {
	font: 100% Arial, Helvetica, sans-serif;
	font-size:13px;
	background: #b6c9f4;
	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: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px 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 { 
	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. */
} 

#navHome {
	background:url(images/nav_back_02.jpg);
	width: 197px;
	height: 584px;
	float:left;
}
#nav {
	background:url(images/nav_repeat_02.gif) repeat-y;
	width: 197px;
	float:left;
}
#navHome p, #nav p {
	padding: 0 0 0 60px;
	color:#FFF;
	line-height: 30px;
	font-size:13px;
	letter-spacing: 1px;
}
#navHome a:link, #nav a:link {
	color:#FFF;
	text-decoration:none;
}
#navHome a:visited, #nav a:visited {
	color:#FFF;
	text-decoration:none;
}
#navHome a:hover, #nav a:hover {
	color: #b6c9f4;
	text-decoration:none;
}
.selected {
	position:relative;
	left: -11px;
	top: 3px;
}
#mainContent {
	background:url(images/home_back_03.jpg);
	float: left;
	width: 603px;
	height: 584px;
}
#mainContent p {
	padding: 15px 30px 0 50px;
	line-height: 17px;
}
#mainContent a:link {
	color:#36C;
}
#mainContent a:visited {
	color:#36C;
}
#mainContent a:hover {
	color:#039;
}
#main {
	float: left;
	width: 603px;
}
#main p {
	padding: 15px 40px 0 0;
	line-height: 17px;
}
#main ol {
	padding: 0 40px 10px 270px;
	line-height: 17px;
}
#main ul {
	padding: 15px 30px 0 270px;
}
#main li {
	padding-bottom: 10px;
}

#pictures {
	padding: 15px 15px 0 25px;
	float:left;
	text-align:center;
}
#photoGallery {
	text-align:center;
	padding: 15px 10px 0 25px;
	float: left;
}

#footerHome { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/footer_04.gif);
	height: 42px;
} 
#footerHome 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: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFF;
	text-align:center;
	font-size:10px;
}
#footer { 
	background:url(images/footer2_19.gif);
	height: 159px;
	margin: 0;
} 
#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: 140px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFF;
	text-align:center;
	font-size:10px;
}
.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;
}