@charset "UTF-8";
body {
	background:#FFFFFF;
	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; 
	color: #000000;
	font:"Times New Roman", Times, serif;
	}
a:link, a:hover, a:visited, a:active {
	text-decoration:none;
	color:#FFFFFF;
	font:"Times New Roman", Times, serif;
	}
a:hover {
	font-style:italic;
	}	
#container {
	width: 905px; 
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; 
}
#header {
	background:url(../images/io-home-page.jpg);
	height:236px; 
	padding:0px 10px 0 20px;
	font: 18px;
	color:#FFFFFF;
	margin:0 0 10px 0;
}
#header h1 {
	padding: 25px 10px 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	float:left;
	font:37px "Times New Roman", Times, serif;
	line-height:1em;	
}
#logo {
	background:url(../images/logo-silver.png) no-repeat;
	width:135px;
	height:115px;
	margin:20px 0 0 0;
	float:left;
	
}
#header p {
	color:#FFFFFF;
	clear:both;	
	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 */
	font: italic 18px "Times New Roman", Times, serif;
	line-height:1em;
	
	}
#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	}
#mainContent p {
	text-indent:20px;
	font:14px Arial, Helvetica, sans-serif;
	}
#mainContent p.no-indent {
	text-indent:0;
	}
#mainContent h2 {
	font:22px "Times New Roman", Times, serif;
	text-align:center;
	color:#FFFFFF;
	margin: 0;

}
#mainContent a:hover {
	font-style:italic;
	}

#leftpic-home, #centerpic-home, #rightpic-home {
	width:294px;
	height:147px;
	float:left;
}
#leftpic-home {
	background:url(../images/Residence-full.jpg) no-repeat;
	margin:0 10px 10px 0;
}
#centerpic-home {
	background:url(../images/Day-program.jpg) no-repeat;
	margin:0 10px 10px 0;
}
#rightpic-home {
	background:url(../images/Adult-Family-home.jpg) no-repeat;
	margin:0 0 10px 0;
}
#leftpic-res, #centerpic-res, #rightpic-res, #leftpic-day, #centerpic-day, #rightpic-day {
	width:294px;
	height:64px;
	float:left;
}
#leftpic-res {
	background:url(../images/Res-ACT-NAV.jpg) no-repeat;
	margin:0 10px 5px 0;
}
#centerpic-res {
	background:url(../images/Day-pro-INACT-NAV.jpg) no-repeat;
	margin:0 10px 5px 0;
}
#rightpic-res {
	background:url(../images/AFH-inact-nav.jpg) no-repeat;
	margin:0 0 5px 0;
}
#leftpic-day {
	background:url(../images/Res-INACT-NAV.jpg) no-repeat;
	margin:0 10px 5px 0;
}
#centerpic-day {
	background:url(../images/Day-pro-ACT-NAV.jpg) no-repeat;
	margin:0 10px 5px 0;
}
#rightpic-day {
	background:url(../images/AFH-inact-nav.jpg) no-repeat;
	margin:0 0 5px 0;
}
#horiz-line-res {
	clear:both;
	width:100%;
	height:6px;
	background-color:#7FA855;
	}
#horiz-line-day {
	clear:both;
	width:100%;
	height:6px;
	background-color:#D78D58;
	}

#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear:both;
	font:14px Arial, Helvetica, sans-serif;

}
#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: 0 0 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}
#footer a {
	color:#000000;
	font:14px Arial, Helvetica, sans-serif;
	text-decoration:underline;
	}
.floatright {
	float:right;
	}
