@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

.booking-form {
  margin: 30px 30px;
  font-size: 14px;
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
}

#page .booking-form h1,
#page .booking-form h2,
#page .booking-form h3,
#page .booking-form h4 {
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

@media all and (max-width: 800px) {
  .booking-form {
    margin: 30px 15px;
  }
}

.booking-form > div {
  margin: 10px 0;
}

.booking-form label {
  display: inline-block;
  width: 12em;
}

.booking-form input,
.booking-form select {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  vertical-align: baseline;
  font-family: "Open Sans", sans-serif;
  line-height: 1.1;
  width: 16em;
  max-width: 20em;
  box-sizing: border-box;
  -webkit-appearance: none;
  background-color: white;
}

.booking-form .datetimebox input,
.booking-form .datetimebox select {
  width: 11em;
  margin: 3px 6px 3px 0;
}

@media (max-width: 500px) {
  .booking-form label {
    display: block;
    margin-bottom: 5px;
    width: auto;
  }
  .booking-form input {
    width: 100%;
  }
}

.booking-form input[type="submit"] {
  width: 12em;
  margin-top: 20px;
  padding: 10px;
  cursor: pointer;
}

.booking-form input[type="submit"]:hover {
  background-color: #f0f0f0;
}

.booking-form .error {
  color: #b04040;
  margin: 30px 0 10px;
}

.booking-form .error.success {
  color: #40b040;
}@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: local('Oswald Light'), local('Oswald-Light'), url(https://themes.googleusercontent.com/static/fonts/oswald/v7/HqHm7BVC_nzzTui2lzQTDbO3LdcAZYWl9Si6vvxL-qU.woff) format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: local('Oswald Regular'), local('Oswald-Regular'), url(https://themes.googleusercontent.com/static/fonts/oswald/v7/qpy-UiLNKP-VfOdbcs6r6-vvDin1pK8aKteLpeZ5c0A.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/DXI1ORHCpsQm3Vp6mXoaTaRDOzjiPcYnFooOUGCOsRk.woff) format("woff");
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/MTP_ySUJH_bn48VBG8sNShampu5_7CjHW5spxoeN3Vs.woff2) format('woff2');
}

body {
	margin: 0;
	background-color: #404040;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}

#mobnav {
    display: none;
}

.cen {
	position: relative;
	height: 100%;
}

img.fixr {
    float: right;
    width: 40%;
    max-width: 150px;
    border: 2px solid #1f5c99;
    margin: 0 25px 30px 30px;
}

img.floatr {
    width: 40%;
    max-width: 300px;
    float: right;
    margin: 0 0 30px 30px;
}

#pageHeader {
	position: relative;
	height: 175px;
        	background: #f6f6f6; /* Old browsers */
	background: -moz-linear-gradient(top,  #fdfdfd 10%, #f6f6f6 90%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(10%,#fdfdfd), color-stop(90%,#f6f6f6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fdfdfd 10%,#f6f6f6 90%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fdfdfd 10%,#f6f6f6 90%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fdfdfd 10%,#f6f6f6 90%); /* IE10+ */
	background: linear-gradient(to bottom, #fdfdfd 10%,#f6f6f6 90%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
}

#logo > img {
	position: absolute;
	top: 25px;
	left: 5px;
	width: 185px;
	bottom: 25px;
}

#mainnav {
	position: absolute;
	top: 28px;
	bottom: 28px;
	right: 0;
	left: 235px;
  font-size: 16px;
  text-align: right;
}

#mainnav > div {
	display: inline-block;
  position: relative;
  height: 100%;
  width: 45%;
  max-width: 250px;
	margin-left: 12px;
	border-top: 3px solid #1f5c99;
	border-bottom: 3px solid #1f5c99;
	text-align: center;
	font-family: "Oswald", sans-serif;
	background-color: white;
  box-sizing: border-box;
  min-width: 140px;
}

#mainnav > div.link {
	background-color: transparent;
	border-bottom: 3px solid #2673bf;
}


#mainnav > div.link:hover {
	background-color: #f0f0f0;
}

#mainnav > div.link:active {
	background-color: white;
}

#mainnav > div h2 {
	position: absolute;
	top: 12%;
	left: 0;
	right: 0;
	height: 30%;
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.4em;
	margin: 0;
	color: #1f5c99;
}

#mainnav > div.link h2 {
    color: #2673bf;
}

#mainnav > div div {
	position: absolute;
	bottom: 12%;
	left: 0;
	right: 0;
	height: 36.67%;
	font-size: 1em;
	font-weight: 300;
	line-height: 1.4em;
    color: #404040;
}

#mainnav > div.link div {
}

#mainnav > div div span {
	color: #d07800;
	font-weight: normal;
}

#mainnav > div.link div span {
}

#mainnav > div a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-left: 1px solid #c0c0c0;
	border-right: 1px solid #c0c0c0;
}

#pageContainer {
	position: relative;
	/*background-color: #e7e7e7;
	background-image: url('../png/pageCont_tg.png');*/
	background-color: #2673bf;
    background-image: url('../png/bk.png');
	padding: 30px 0;
}

#pageContainer .dec {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#pageContainer .dec1, #pageContainer .dec2 {
	background-image: url("../png/page_h.png");
	height: 6px; left: 15px; right: 15px;
}
#pageContainer .dec1 { bottom: auto; background-position: 0 0; }
#pageContainer .dec2 { top: auto; background-position: 0 -24px; }

#pageContainer .dec3, #pageContainer .dec4 {
	background-image: url("../png/page_v.png");
	width: 6px; top: 15px; bottom: 15px;
}
#pageContainer .dec3 { right: auto; background-position: 0 0; }
#pageContainer .dec4 { left: auto; background-position: -24px 0; }

#pageContainer .dec5, #pageContainer .dec6, #pageContainer .dec7, #pageContainer .dec8 {
	background-image: url("../png/page_c.png");
	width: 15px; height: 15px;
}
#pageContainer .dec5 { bottom: auto; right: auto; background-position: 0 0; }
#pageContainer .dec6 { bottom: auto; left: auto; background-position: -15px 0; }
#pageContainer .dec7 { top: auto; right: auto; background-position: 0 -15px; }
#pageContainer .dec8 { top: auto; left: auto; background-position: -15px -15px; }

#sidebar {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	border-left: 1px solid #e0e0e0;
	background-color: #f7f7f7;
	width: 231px;
}

#sidebar > div {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
}

#sidebar > div + div {
    border-top: 1px solid white;
}

.callnow p,
#sidebar .callnow p {
    margin: 0;
}

.callnow p.n,
#sidebar .callnow p.n {
    font-size: 0.8em;
    font-weight: 300;
    color: #606060;
    line-height: 1.3em;
    font-style: italic;
    margin-top: 2px;
}

.callnow p.t,
#sidebar .callnow p.t {
    font-size: 1em;
    color: black;
    font-weight: normal;
    line-height: 1.5em;
    font-family: "Oswald", sans-serif;
}

.callnow p.b,
#sidebar .callnow p.b {
    font-size: 1.6em;
    color: #1f5c99;
    font-weight: normal;
    line-height: 1.5em;
    font-family: "Oswald", sans-serif;
}

.callnow ul,
#sidebar .callnow ul {
    margin: 0;
}

.callnow img {
    width: 100%;
    margin: 0 0 15px 0;
}

#pageContainer > .bk_t {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background-image: url('../png/pageCont_h.png');
}

#page {
	background-color: white;
	padding: 1px 11px 2em 0;
	margin-right: 220px;
    color: #303030;
    font-weight: 300;
}

#page p.bread {
    color: black;
    font-size: 14px;
    padding-top: 0.75em;
    line-height: 1.5em;
    border-top: 1px dotted #808080;
    margin-top: 3em;
}

#page h1, #page h2, #page h3, #page h4, #page p {
    margin: 0 30px;
}

#page h1, #page h2, #page h3, #page h4 {
	font-size: 2.6em;
    color: #2673bf;
	line-height: 1.4em;
    margin-top: 1.4em;
    margin-bottom: 0;
	font-weight: 300;
}

#page h1 {
	line-height: 1.4em;
	margin-top: 23px;
}

#page h2 {
	font-size: 2em;
}

#page h3 {
    font-size: 1.5em;
}

#page h4 {
    font-size: 1em;
}

#page p.sub {
}

#page .hero {
    position: relative;
    padding-bottom: 250px;
    margin: 2px 5px 35px 5px;
    border-top: 2px solid #1f5c99;
    border-bottom: 2px solid #1f5c99;
    background-image: url("../jpg/home_hero.jpg");
    background-position: 25% 50%;
    background-size: cover;
}

#page .hero.short {
    padding-bottom: 200px;
}

#page .physio.hero {
    background-image: url("../jpg/physio_hero.jpg");
    background-position: 100% 50%;
}

#page .chiro.hero {
    background-image: url("../jpg/chiro_hero.jpg");
    background-position: 35% 50%;
}

#page .chiro.hero img {
    position: absolute;
    left: 25px;
    top: 35px;
    width: 327px;
    height: 180px;
}

#page .pod.hero {
    background-image: url("../jpg/pod_hero.jpg");
    background-position: 0 50%;
}

#page .hero h3 {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 1.4em;
    line-height: 1.3em;
    padding: 0.3em 25px 0.4em 25px;
    margin: 0;
    color: #d07800;
    background: white;
    background: rgba(255,255,255,0.95);
}

#page .hero div.home {
    background-image: url("../png/home_hero_text.png");
    background-position: 80% 50%;
}

#googlemap {
    position: relative;
    height: 250px;
    margin: 35px 5px 35px 5px;
    border-top: 2px solid #1f5c99;
    border-bottom: 2px solid #1f5c99;
}

#subnav {
    height: 40px;
    margin: 0 5px;
    padding: 0 14px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fafafa;
}

#subnav a {
    display: block;
    float: left;
    height: 41px;
    padding: 0 15px;
    line-height: 40px;
    color: black;
    font-weight: normal;
    text-decoration: none;
    background-color: white;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

#subnav a.link {
    color: #a0a0a0;
    height: 40px;
    font-weight: normal;
    background-color: #fafafa;
    border-left: 1px solid #fafafa;
    border-right: 1px solid #fafafa;
}

#page h1 + .hero, #page h1 + #subnav {
    margin-top: 30px;
}

#page p {
    margin-top: 1.35em;
    line-height: 1.35em;
}

#page p em {
    font-style: normal;
    font-weight: bold;
    color: #2673bf}

#page p + p {
    margin-top: 1em;
}

#page ul {
    margin: 1.3em 30px;
    line-height: 1.3em;
    padding: 0 0 0 1.5em;
}

#page ul.dem {
    color: #606060;
    font-size: 0.95em;
}

#page ul li {
    padding: 0;
}

#page ul li + li {
    padding-top: 0.75em;
}

#page div.list {
    position: relative;
    padding: 1em 0;
    margin: 1.35em 5px 0 5px;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}

#page div.team {
    position: relative;
    padding: 1.5em 0;
    margin: 1.35em 5px 0 5px;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}

#page div.team h4 {
    margin-top: 0;
    font-size: 1.2em;
}

#page div.team p, #page div.team ul {
    font-size: 0.9em;
}

#page div.list ul {
    padding-left: 1.5em;
    line-height: 1.6em;
    margin: 0 51% 0 25px;
}

#page div.list ul + ul {
    position: absolute;
    top: 1em;
    bottom: 1em;
    left: 51%;
    right: 25px;
    margin: 0;
}

#page div.list ul li {
    padding: 0;
}

#page ul li em {
    font-style: normal;
    font-weight: normal;
    color: #1f5c99}

#pageFooter {
	position: relative;
	border-top: 2px solid black;
	background-color: #404040;
    color: #e0e0e0;
    font-size: 14px;
    text-align: center;
    padding: 2em;
}

/* FULL WIDTH */

html {
	min-width: 1100px;
}

.cen {
	margin: 0 auto;
	width: 950px;
}

#pageContainer .cen {
	width: 938px;
	padding: 6px;
}

a:link {
    color: #e08000;
}

a:visited {
    color: #e08000;
}

a:hover {
    color: orange;
}

a:active {
    color: red;
}

/* ALMOST FULL WIDTH */

@media all and (max-width: 1100px) {

html {
	min-width: 1000px;
}

.cen {
	margin: 0 auto;
	width: 900px;
}

#pageContainer .cen {
	width: 888px;
	padding: 6px;
}

}

/* MEDIUM WIDTH */

@media all and (max-width: 1000px) {

html {
	min-width: 900px;
}

.cen {
	margin: 0 50px;
	width: auto;
}

#pageContainer .cen {
	width: auto;
}

#page {
    margin-right: 195px;
}

#sidebar {
    width: 206px;
}

#subnav {
    height: auto;
    padding: 0;
}

#subnav a {
    float: none;
    border: none;
    background-color: white;
    font-weight: bold;
}

}

/* NARROW WIDTH */

@media all and (max-width: 900px) {

html {
	min-width: 800px;
    font-size: 0.9em;
}

.cen {
	margin: 0 15px;
	width: auto;
}

#mainnav {
    left: 215px;
}

}

/* SEMI-MOBILE */

@media all and (max-width: 800px) {

html {
	min-width: 700px;
}

#pageHeader {
    height: 160px;
}

#pageContainer {
    padding: 15px 0;
}

#pageContainer > .cen {
    margin: 0;
    padding: 5px 0;
}

#pageContainer > .cen .dec {
    display: none;
}

#pageContainer > .cen .dec.dec1,
#pageContainer > .cen .dec.dec2 {
    display: block;
    left: 0;
    right: 0;
}

#logo img {
    width: 163px;
    height: 110px;
}

#mainnav {
    font-size: 14px;
    left: 195px;
}

.cen {
	margin: 0 15px;
	width: auto;
}

#sidebar {
    right: 0;
}

#page {
    margin: 0;
    padding-right: 207px;
}

#page h1, #page h2, #page h3, #page h4, #page p {
    margin-left: 15px;
    margin-right: 15px;
}

#page .hero, #page div.list {
    margin-left: 0;
    margin-right: 0;
}

#page div.list ul {
    margin-left: 15px;
}

#page div.list ul {
    right: 15px;
}

#page .hero h3 {
    font-size: 1.3em;
    line-height: 1.3em;
    padding: 0.3em 15px 0.4em 15px;
}

#page .chiro.hero img {
    left: 15px;
}

}

/* MOBILE */

.show-on-mobile {
    display: none;
}

.callnow.show-on-mobile {
    margin: -35px 0 35px 0;
    padding: 10px 0 30px 0;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

@media all and (max-width: 700px) {

html {
	min-width: 300px;
}

#pageHeader {
    height: 160px;
}

#pageContainer {
    padding: 15px 0;
}

#googlemap {
    height: 200px;
}

#page h1 {
    font-size: 2.5em;
}

#sidebar {
    position: relative;
    width: auto;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.hero + #sidebar {
  margin-top: -40px;
  border-top: none;
}

.hide-on-mobile {
  display: none;
}

.show-on-mobile {
  display: block;
}

#page {
    margin: 0;
    padding-right: 0;
}

#mainnav {
    left: 180px;
}

}

@media all and (max-width: 600px) {

#logo > img {
    top: 15px;
    bottom: 15px;
}

#mobnav {
    display: block;
    position: absolute;
    left: 190px;
    right: 0;
    top: 18px;
    bottom: auto;
    height: 97px;
	border-top: 3px solid #1f5c99;
	border-bottom: 3px solid #2673bf;
    border-left: 1px solid #b0b0b0;
    border-right: 1px solid #b0b0b0;
}

#mobnav > div {
    position: relative;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px dotted #808080;
	font-family: "Oswald", sans-serif;
    font-weight: normal;
    padding: 8px 1em;
    background-color: white;
    color: black;
}

#mobnav > div.link {
    background-color: transparent;
    color: #2673bf;
}

#mobnav > div.link:last-child {
    border: none;
}

#mobnav a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#page .hero {
    padding-bottom: 200px;
    background-size: 600px 214px;
}

#page .chiro.hero img {
    top: 28px;
    width: 260px;
    height: 144px;
}

}

@media all and (max-width: 400px) {

    .cen {
        margin-left: 10px;
        margin-right: 10px;
    }

}
