/*****************************************************************************
Resets
*****************************************************************************/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/*****************************************************************************
Helpers
*****************************************************************************/

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/*****************************************************************************
Static Footer
*****************************************************************************/

/* Necessary for static footer */
html, body {
    height: 100%;
}
body {
    overflow-y: scroll;
}
/* Necessary for static footer */
.content-wrap {
    min-height: 100%;
    height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
    height: 100%;
    margin: 0 auto -80px; /* the bottom margin is the negative value of the footer's height */
}
/* Necessary for static footer */
.static-foot,
.static-foot-push {
	height: 80px;
	margin-bottom: 0;
}

/*****************************************************************************
Base
*****************************************************************************/

body {
	width: 780px;
	margin: auto;
	font-family: Helvetica, Arial, Sans-serif;
	font-size: 18px;
	line-height: 28px;
	color: #777;
}
@media (max-width: 640px) {
	body {
		width: auto;
	}
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1,h2,h3,h4,h5,h6 {
	margin-bottom: 25px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #000;
}
h1 {
	font-size: 34px;
	line-height: 36px;
}
h2 {
	font-size: 24px;
	line-height: 32px;
}
p {
	margin-bottom: 25px;
}

/*****************************************************************************
Header
*****************************************************************************/

header {
	padding: 30px 0 10px;
	border-bottom: 1px dashed #ccc;
}
@media (max-width: 640px) {
	header {
		padding-top: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
header .logo {
	float: left;
}
@media (max-width: 640px) {
	header .logo {
		float: none;
		display: block;
		text-align: center;
	}
}
header nav {
	float: right;
	margin-top: 47px;
	margin-right: -10px;
}
@media (max-width: 640px) {
	header nav {
		float: none;
		display: block;
		margin-top: 10px;
		text-align: center;
	}
	header ul {
		display: inline-block;
	}
}
header li {
	display: inline-block;
}
header li a {
	padding: 5px 10px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: inherit;
}
@media (max-width: 640px) {
	header li a {
		padding: 5px 8px;
		font-size: 13px;
	}
}
header li a:hover,
header li a.active {
	background-color: gold;
	color: #000;
}

/*****************************************************************************
Footer
*****************************************************************************/

footer p {
	border-top: 1px dashed #ccc;
	padding: 20px 80px;
	margin-bottom: 0;
	font-size: 16px;
}
@media (max-width: 640px) {
	footer p {
		padding: 20px 20px;
	}
}

/*****************************************************************************
Layout
*****************************************************************************/

main {
	padding: 30px 0 50px;
}
section {
	position: relative;
	padding: 30px 80px 50px;
}
@media (max-width: 640px) {
	section {
		padding: 30px 20px 50px;
	}
}
section.hr {
	border-top: 1px dashed #ccc;
}
.section-image {
	position: absolute;
	top: 30px;
	right: 80px;
}
@media (max-width: 640px) {
	.section-image {
		position: static;
		margin-bottom: 30px;
		text-align: center;
	}
}

/*****************************************************************************
Home
*****************************************************************************/

body.home h1 {
	text-align: center;
}
body.home section {
	padding: 50px 80px 0;
	margin-bottom: 100px;
}
@media (max-width: 640px) {
	body.home section {
		padding: 25px 20px 0;
		margin-bottom: 50px;
	}
}
.embed-container {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.photo-circle {
	position: relative;
	height: 300px;
	width: 300px;
	border: 1px solid #e3e3e3;
	border-radius: 150px;
	margin: 0 auto 30px;
	overflow: hidden;
	text-align: center;
}
.photo-circle img {
	position: absolute;
	top: 0;
	left: -60px;
}

/*****************************************************************************
Counseling
*****************************************************************************/

body.counseling section {
	padding-bottom: 30px;
}
body.counseling section ul {
	list-style: disc;
	padding-left: 20px;
}
body.counseling .image-emotional,
body.counseling .image-development {
	right: 120px;
}

/*****************************************************************************
Philosophy
*****************************************************************************/

body.philosophy section.bio h2 {
	text-align: center;
	margin-bottom: 30px;
}
body.philosophy section {
	padding-bottom: 30px;
}
body.philosophy h2 {
	margin-bottom: 5px;
}
body.philosophy .image-sun {
	top: 20px;
	right: 65px;
}

/*****************************************************************************
Contact
*****************************************************************************/

body.contact h2 {
	margin-bottom: 5px;
	line-height: 34px;
}
body.contact section {
	padding-bottom: 0;
}
body.contact .section-image {
	position: static;
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
@media (max-width: 640px) {
	body.contact .section-image {
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
	}
}
.email,
.phone {
	margin-bottom: 30px;
}
@media (max-width: 640px) {
	.email span,
	.phone span {
		display: block;
		text-align: center;
	}
}
.email a ,
.phone a {
	text-decoration: none;
	color: #000;
}
.email a:hover,
.phone a:hover {
	text-decoration: underline;
}