
/* 
CSS by Reid Stott http://reidstott.com/
Revised 01:14 8/31/2008

TOC
	Tags/Reset
	Structure
		Grid Divs & Combos
	Typography
		Paragraphs
		Headings
		Lists
		Links
		Font trimmings
		Images
	Header
	Nav
	Main
	Footer

*/
/* ----------------------------------------------------------------------- */
/* -------------------------- Tags / Reset ------------------------------- */
/* ----------------------------------------------------------------------- */
body {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 62.5%;
	line-height: 140%;
	color: #333;
	background: #fff;
	text-align: center;
        margin: 0;
        padding: 0;
	}
html {
	font-size: 100.01%
        margin: 0;
        padding: 0;
	height: 100%;
	margin-bottom: 1px;
	overflow-y: scroll;
	}
h1, h2, h3, h4, h5, h6, blockquote, ul, ol, dl, dt, dd, pre, form, fieldset, input, textarea, td {
        margin: 0px;
        padding: 0px;
	font-weight: normal; 
	}
li, blockquote {
        margin-left: 15px;
	}
ol, ul { 
	list-style:none; 
} 
p { 
	margin: 0px 0px 1em 0px;
	}
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr, acronym, fieldset, img { 
	border: 0; 
	} 
a {
	color: #3344aa;
	text-decoration: none;
	}
a:visited {
	color: #7744bb;
	text-decoration: none;
	}
a:hover {
	color: #990000;
	text-decoration: underline;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Structure -------------------------------- */
/* ----------------------------------------------------------------------- */
#wrap {
	text-align: center;
/*	background-image: url(../gfx/draftback_920.jpg);
	background-repeat : repeat-y; 
	background-position : center top; */
	}
#container {
	background: #fff;
	width: 980px;
	margin: 0 auto;
	}
div.hr {
	clear: both;
	}
div.hr hr {
	display: none;
	}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
.clearfix { display: block; }
* html .clearfix { height: 1%; }
/* End hide from IE-mac */
/* |||||||||||||||||||||||||||||||||| */
/*            GRID DIVS               */
/* |||||||||||||||||||||||||||||||||| */
/* Set common styles - all grid divs must be assigned this class */
.generic {
	margin-bottom: 1.5em;
}
/* this class must be given to a grid div that is the first in a horizontal series */
.break, .clear {
	clear: both;
}
/* this class must be given to a grid div that is the last in a horizontal series */
.end {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* ----------------------------------------------------------------------- */
/* ------------------------ Typography Base ------------------------------ */
/* ----------------------------------------------------------------------- */
/*|||||||||||| PARAGRAPHS ||||||||||||| */
.generic p {
	font-size: 1.4em;
	line-height: 150%;
	margin-bottom: 1em;
	text-align: left;
}
/* Assign this class to the first paragraph in an article */
p.intro:first-line {
	font-variant:small-caps;
}
/* Styles a drop cap on each paragraph with this class */
p.drop:first-letter {
	float:left;
	font-size:3em;
	margin-top:-0.05em;
	margin-right:0.1em;
	margin-bottom:-0.5em;
}
/* |||||||||||||HEADINGS ||||||||||||||| */
h1, h2, h3, h4, h5, h6 {
/*	font-family:  "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", Times, serif; */
	}
h1 {
	color: #000;
	font-size: 3.2em;
	margin-bottom: 0.6em;
	font-style:italic;
	line-height: 1.2em;
}
h2 {
	color: #000;
	font-size: 2.2em;
	font-weight: 700;
	margin-bottom: 0.9em;
	line-height: 0.9em;
}
h3 {
	color: #000;
	font-size: 1.9em;
	margin-bottom: 1em;
	line-height: 1.2em;
	font-variant: small-caps;
}
h4 {
	color:#000;
	font-size: 1.6em;
	font-weight: 400;
	margin-bottom: 1em;
}
h5 {
	color:#000;
	font-size: 1.2em;
	margin-bottom: 1em;
	line-height: 1.8em;
	font-variant: small-caps;
}
h6 {
	color: #000;
	font-size: 1.1em;
	margin-bottom: 1em;
	line-height: 1.8em;
}
/* ||||||||||||||| LINKS |||||||||||||| */
p a:link,
p a:visited {
	color:#333;
	border-bottom: 1px dotted #333;
}
p a:hover {
	text-decoration:none;
	color:#666;
	border-bottom: 1px dotted #666;
}
h1 a {
	color:#000;
}
h1 a:hover {
	text-decoration:none;
}
li a {
	color:#3344aa;
	border-bottom: 1px dotted #3344aa;
}
li a:hover {
	text-decoration:none;
}
/* |||||||||||||||| LISTS |||||||||||||||| */
ul{
	margin-bottom: 1em;
	list-style: square inside;
}
ul li{
	font-size: 1.4em;
	line-height: 150%;
	text-align: left;
}
ul li.caption{ /* Apply this class to the first list item in a list to give it a caption */
	font-variant: small-caps;
	list-style: none;
	color: #000;
}
li > ul, li > ol {
	margin-bottom: 0;
	margin-left: 3em;
}
li > ul li, li > ol li {
	font-size: 1em;
}
ol{
	margin-bottom: 1.5em;
	list-style: decimal inside;
}
ol li{
	font-size: 1.3em;
	line-height: 150%;
	text-align: left;
}
/* |||||||||||||| FONT TRIMMINGS ||||||||||| */
blockquote p {
	font-size: 1.3em!important;
	line-height: 1.5em!important;
	margin-bottom: 1em!important;
	font-style: italic;
	font-weight: bold;
}
blockquote p cite {
	font-style: normal;
}
.generic strong.caps {
	font-variant:small-caps;
}
.generic em {
	font-style: italic;
	font-weight: inherit;
}
.amp { 
	font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
	font-style: italic;
	font-weight: normal;
	line-height: inherit;
}
abbr {
	border-bottom:1px dotted #666;
	border-color:inherit;
	cursor: help;
}
.clear {
	clear: both;
}
.floatright { 
	float: right;
	margin: 0 0 20px 20px;
}
.floatleft {
	float: left;
	margin: 0 20px 20px 0;
}
/* ||||||||||||||| IMAGES ||||||||||||||||||||| */
img {
	font-size: 1em;
}
img.imgleft { 
	font-size: 1em;
	float: left;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-right: 2em;
	margin-top: 0.3em;
}
img.imgright { 
	font-size: 1em;
	float: right;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-left: 2em;
	margin-top: 0.3em;
}
/* IE6 */
.ie6 p.drop:first-letter {
	float:left;
	font-size:3em;
	padding:0.5em;
	color:#fff;
	background:#666;
}
.ie6 ul li.caption{ 
	font-variant:small-caps;
	list-style:none;
	color:#000;
	text-indent:-1.5em;
}
.ie6 .generic {
	display: inline;
	}
.ie6 li ul li, .ie6 li ol li {
	font-size: 1em;
}
.ie6 li ul, .ie6 li ol {
	margin-bottom: 0;
	margin-left: 3em;
}
/* IE7 */
.ie7 p.drop:first-letter {
	float:left;
	font-size:3em;
	padding:0.5em;
	color:#fff;
	background:#666;
}
.ie7 ul li.caption{ 
	font-variant:small-caps;
	list-style:none;
	color:#000;
	text-indent:-1.5em;
}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Header ----------------------------------- */
/* ----------------------------------------------------------------------- */
#header {
	height: 180px; 
	margin: 0 auto;
	text-align: center;
	background: #fff;
/*	background-image: url(../gfx/headback1.jpg);
	background-repeat: no-repeat;
	background-position : left top; */
	}
#fixed-head {
	width: 980px;
	height: 180px;
	margin: 0 auto;
	background: #fff;
/*	background-image: url(../gfx/innerheadback1.jpg);
	background-repeat: no-repeat;
	background-position : left top; */
	}
body#about img#logo {
	margin: 35px auto 0 auto;
}
img#logo {
	margin: 35px auto 0 auto;
}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Nav -------------------------------------- */
/* ----------------------------------------------------------------------- */

/* ----------------------------------------------------------------------- */
/* ---------------------------- Main ------------------------------------- */
/* ----------------------------------------------------------------------- */
#main {

	}
body#home #main {
	height: 450px;
	background-image: url(../gfx/home-image.jpg);
	background-repeat: no-repeat;
	background-position : left top;
}
.left {
	float: left;
	width: 320px;
}
.right {
	float: right;
	width: 540px;
	margin: 0 80px 0 0;
}
#fixed-head .left {
	height: 180px;
	}
#fixed-head .right {
	height: 180px;
	}
#fixed-head .right h1.head {
	display: none;
}
#fixed-head .right h4 {
	font-weight: normal;
	font-style: italic;
	text-align: left;
	font-size: 1.6em;
	font-family: Georgia, Times New Roman, Times, Serif;
	}
#fixed-head .right h4.barrie {
	margin: 35px 0 0.5em 0;
	}
#fixed-head .right h4.nancy {
	margin: 0 0 1em 90px;
	}
div.blueline {
	float: left;
	width: 100px;
	margin: 0 0 10px 140px;
	border-top: 1px solid #7991AD;
	}
div.headcontent p {
	clear: left;
	font-family: Georgia, Times New Roman, Times, Serif;
	font-size: 1.5em;
	}
.home-links {
	float: left;
	width: 200px;
	height: 150px;
	padding: 30px 0 0 10px;
}
.home-links .nav li {
	font-size: 1.3em;
	margin-bottom: 1em;
	list-style-type: none;
}
.home-links .nav a:link,
.home-links .nav a:visited {
	font-family: Georgia, Times New Roman, Times, Serif;
	color: #eee;
	text-decoration: underline;
	}
.home-links .nav a:hover {
		color: #fff;
	}
.home-quote {
	float: right;
	width: 500px;
	height: 120px;
	margin: 160px 110px 0 0;
}
.home-quote p {
	font-family: Georgia, Times New Roman, Times, Serif;
	color: #fff;
	font-size: 2.8em;
	text-align:left;
	line-height: 140%;
}
.home-quote p span {
	font-size: 0.6em;
	font-style:italic;
}
ul#nav {
	clear: left;
	margin: 30px 0 0 0;
}
ul#nav li {
	display: inline-block;
	float: left;
	width: auto;
	margin: 0 20px 0 0;
	list-style-type:none;
	font-size: 1.4em;
}
ul#nav a:link,
ul#nav a:visited {
	color: #778c3b;
	border-color: #778c3b;
}
ul#nav a:hover {
	color: #99ac5b;
	border-color: #99ac5b;
}
body#families a.families,
body#professionals a.professionals,
body#about a.about {
	color: #5282aa;
}
body#about h1 {
	font-size: 1.7em;
	font-style:normal;
	font-weight: 400;
	text-align: left;
	margin-bottom: 1.5em;
}
body#about blockquote {
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 1em 2em 1em 2em;
	background-image: url(../gfx/blockquote-back.jpg);
	background-repeat: no-repeat;
	background-position : left top;
}
body#about blockquote p {
	font-style: normal;
	font-weight: 400;
}
#main .right h4 {
	font-size: 1.4em;
	font-style:normal;
	font-weight: 700;
	text-align: left;
	margin-bottom: 1em;
}
#top-photo {
	height: 295px;
	background-image: url(../gfx/photo-top.jpg);
	background-repeat: no-repeat;
	background-position : left top;
	text-align: center;
}
#bottom-photo {
	height: 295px;
	background-image: url(../gfx/photo-bottom.jpg);
	background-repeat: no-repeat;
	background-position : left top;
	text-align: center;
}
body#about #main .left h4 {
	color: #fff;
	font-weight:400;
	margin: 0.5em 0 0 30px;
	font-size: 1.3em;
	text-align: left;
	}
body#about .left img {
	margin-top: 30px;
}
body#professionals #main {
	background-image: url(../gfx/pro-colback.jpg);
	background-repeat: no-repeat;
	background-position : left top;
}
body#families #main {
	background-image: url(../gfx/family-back.jpg);
	background-repeat: no-repeat;
	background-position : left top;
}
body#faq #main {
	background-image: url(../gfx/faq-colback.jpg);
	background-repeat: no-repeat;
	background-position : left top;
}
body#professionals .left p {
	margin: 360px 45px 0 40px;
	color: #fff;
}
body#professionals .left p cite {
	display: block;
	float: right;
	text-align: right;
	font-style: normal;
	margin: 1em 0 0 0;
}
body#families .left p {
	margin: 360px 45px 0 40px;
	color: #fff;
}
body#families .left p cite {
	display: block;
	float: right;
	text-align: right;
	font-style: normal;
	margin: 1em 0 0 0;
}
body#faq .left p {
	margin: 330px 45px 0 40px;
	color: #fff;
}
body#faq .left p a:link,
body#faq .left p a:visited {
	color: #fff;
	border-color: #fff;
}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Footer ----------------------------------- */
/* ----------------------------------------------------------------------- */
#footer {
	clear: both;
	height: 50px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
/*	background-image: url(../gfx/footback1.jpg);
	background-repeat: no-repeat;
	background-position : center bottom; */
	}
#fixed-foot {
	width: 980px;
	height: 50px;
	margin: 0 auto;
/*	background-image: url(../gfx/innerfootback1.jpg);
	background-repeat: no-repeat;
	background-position : left top; */
	}
#wrap #footer #fixed-foot h4 {
	font-size: 1.3em;
	font-weight: 400;
	text-align: center;
	clear: both;
	font-weight: normal;
	margin: 30px 0 0 0;
	color: #666;
}
#fixed-foot h4 a:link,
#fixed-foot h4 a:visited
 {
	color: #778c3b;
	border-color: #778c3b;
}
#fixed-foot h4 a:hover {
	color: #99ac5b;
	border-color: #99ac5b;
}