@import url(https://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic,300|Libre+Baskerville:400,400italic);
/* ===============================================
	
	kim-ray
	
	Sesame Communications - (c) 2016
	Written by: James Stillion
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/*Colors */
/* hypertext */
/* brown */
/* turquoise || hyperlinks */
/* indigo */
/* ===============================================
					fonts 
=============================================== */
.font-la {
  font-family: 'Lato', sans-serif;
}
.font-li {
  font-family: 'Libre Baskerville', serif;
}
/* ===============================================
					Mixins 
=============================================== */
/*font-mixins*/
.lt {
  font-weight: 300;
}
.roman {
  font-weight: 400;
}
.mbold {
  font-weight: 500;
}
.sbold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.xbold {
  font-weight: 800;
}
.ubold,
.black {
  font-weight: 900;
}
.ob {
  font-style: oblique;
}
.italic {
  font-style: italic;
}
.upp {
  text-transform: uppercase;
}
.loww {
  text-transform: lowercase;
}
.noo {
  text-transform: none;
}
.supp {
  font-variant: small-caps;
}
.normal {
  /*text-transform:none!important;*/
  font-style: normal;
}
.ns {
  letter-spacing: normal;
}
/*LINE HEIGHT AND FONT SIZE || declare in rem value => '1.2' is 12px */
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
.alignleft {
  text-align: left;
}
.justify {
  text-align: justify;
}
/*helper mixins*/
.clear {
  clear: both;
}
.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.near {
  clear: none;
}
.wimp {
  width: 100%!important;
}
.wall {
  width: 100%;
}
.hall {
  width: 50%;
}
.thrall {
  width: 33%;
}
.auto {
  width: auto;
}
.trbl_0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.show {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.hide,
.validation-only {
  display: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  display: inline-block;
  float: none;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.trans {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.fade {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.vertical-align-ie8 {
  position: absolute;
  top: 20%;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.vertical-align-nul {
  position: relative;
  top: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.g-style {
  background-color: #a82416;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b12a1c), color-stop(100% #9e1d0f));
  background-image: -webkit-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: -moz-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: -ms-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: -o-linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
  background-image: linear-gradient(top, #b12a1c 0%, #9e1d0f 100%);
}
.g-style-linear {
  background-color: #00b3db;
  background-image: -webkit-gradient(linear, left top, left top, color-stop(0%, #00b7e0), color-stop(100% #00afd6));
  background-image: -webkit-linear-gradient(left, #00b7e0 0%, #00afd6 100%);
  background-image: -moz-linear-gradient(left, #00b7e0 0%, #00afd6 100%);
  background-image: -ms-linear-gradient(left, #00b7e0 0%, #00afd6 100%);
  background-image: -o-linear-gradient(left, #00b7e0 0%, #00afd6 100%);
  background-image: linear-gradient(left, #00b7e0 0%, #00afd6 100%);
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
/*resets*/
* {
  -webkit-font-smoothing: antialiased;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
/*font reset for rem units*/
/*GLOBAL OVERRIDES*/
.fa {
  vertical-align: 0;
}
li {
  line-height: inherit;
}
nav ul li a,
nav ul ul li a {
  padding: 0;
}
address,
div.address {
  margin-bottom: 0;
  line-height: inherit;
  font-style: inherit;
}
/* Body */
body,
input,
select,
textarea {
  font-family: 'Lato', sans-serif;
}
body {
  line-height: 28px;
  line-height: 2.8rem;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
  overflow: hidden;
}
p {
  margin: 0 0 1.75em;
  /*global override*/
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
/* Links */
a {
  text-decoration: none;
}
#content a {
  color: #00b3db;
  text-decoration: none;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#content a:hover {
  text-decoration: underline;
  color: #443124;
}
/* hfam */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: left;
  color: #003494;
  margin: 0 0 0.8em;
  text-rendering: auto;
}
h1 {
  line-height: 22px;
  line-height: 2.2rem;
  font-size: 22px;
  font-size: 2.2rem;
  text-transform: uppercase;
  padding-bottom: 0.65em;
  margin-bottom: 0.6em;
  border-bottom: 1px solid #ccc9c4;
  position: relative;
}
.home h1 {
  text-align: center;
  text-transform: none;
  position: relative;
  padding-bottom: 1.5em;
  margin-bottom: 1.05em;
  border: none;
}
/*.home h1:before {
  content: '';
  max-width: 328px;
  width: 60%;
  height: 1px;
  margin: 0 -30%;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #ccc9c4;
}*/
h1,
h2 {
  font-weight: 400;
}
h2 {
  font-size: 22px;
  font-size: 2.2rem;
  text-transform: uppercase;
}
h3 {
  font-size: 17px;
  font-size: 1.7rem;
}
h4,
h5,
h6 {
  font-style: italic;
}
h4 {
  font-size: 16px;
  font-size: 1.6rem;
}
h5 {
  font-size: 15px;
  font-size: 1.5rem;
}
h6 {
  font-size: 14px;
  font-size: 1.4rem;
}
/*containers*/
.container {
  max-width: 1004px;
}
/* List Styling */
#content ul,
#content ol {
  margin: 0 0 1.7em 52px;
}
/*global override*/
.what-sets-us-apart #content ol,
.meet-the-team #content ol,
.our-office #content ol,
.office-tour #content ol,
body[class*="-after"] #content ol {
  margin: 0;
}
#content ul li {
  list-style: disc outside;
  /*list-style-image:none;*/
}
.oral-and-maxillofacial-surgery #content ul li,
.periodontal-treatments #content ul li,
#content #brushing-instructions ul li,
#content #flossing-instructions ul li {
  list-style: none;
}
#content dt {
  margin-top: 1em;
}
#content dl {
  margin-bottom: 1.6em;
}
#ft ul,
#subnav {
  margin: 0;
  padding: 0;
}
#ft ul li,
#subnav li,
body.sitemap #content ul li {
  list-style: none;
}
/* ==================================================================
	vertex
=================================================================== */
#vertex {
  padding: 50px 0 0;
  background: rgba(0, 52, 148, 0.85);
  position: relative;
  z-index: 3000;
}
.no-rgba #vertex {
  background: url(../images/icons/i86.png) repeat 0 0;
}
/* ==================================================================
	main-nav
=================================================================== */
#main-nav {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  height: 50px;
  width: 100%;
  clear: both;
  position: absolute;
  top: 0;
  z-index: 600;
}
#main-nav .container {
  height: 50px;
  padding: 0;
  width: 100%!important;
}
#main-nav .trigger {
  line-height: 50px;
  line-height: 5rem;
  text-align: center;
  color: #fff;
  padding: 0;
  margin: 0 auto;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 600;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#main-nav .trigger .fa {
  line-height: 50px;
  line-height: 5rem;
  font-size: 18px;
  font-size: 1.8rem;
  height: 50px;
  margin: 0 0.4em;
  position: absolute;
  right: 0;
  top: 0;
}
#main-nav .trigger:hover {
  color: #00b3db;
}
#main-nav .open .trigger {
  color: #00b3db;
}
#main-nav ul {
  width: 100%;
  margin: 0;
  padding: 1em 0;
  z-index: 550;
  position: relative;
}
#main-nav ul:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: url(../images/wood.jpg) repeat-y center top;
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  opacity: 0.90;
}
#main-nav ul li {
  clear: both;
}
#main-nav ul li a[id] {
  line-height: 40px;
  line-height: 4rem;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
  padding: 0;
  height: 40px;
}
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #fff;
  text-decoration: underline;
}
#main-nav ul ul {
  padding: 0;
  width: 100%;
  float: left;
  background: rgba(0, 179, 219, 0.89);
}
#main-nav ul ul:before {
  display: none;
}
#main-nav ul ul li {
  width: 100%;
  float: left;
  background: none;
}
#main-nav ul ul li a {
  line-height: 40px;
  line-height: 4rem;
  /*default 40*/
  color: #fff;
  width: 100%;
  height: 40px;
  /*default 40*/
  margin: 0;
  background: none;
  border: none;
}
#main-nav ul li.active ul li a:hover,
#main-nav ul ul li a:hover,
#main-nav ul ul li a.active {
  text-decoration: underline;
  color: #fff;
  display: block;
  margin-bottom: 0;
  background: none;
  border: none;
}
.no-rgba #main-nav ul ul {
  background: url(../images/icons/t89.png) repeat 0 0;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  line-height: 30px;
  line-height: 3rem;
  text-align: center;
  padding: 1em 0;
  position: relative;
}
/* utility-nav */
#utility-nav {
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
#utility-nav ul {
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
}
#utility-nav ul li {
  text-align: center;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
#utility-nav ul li a {
  line-height: 30px;
  line-height: 3rem;
  font-size: 11px;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #00b3db;
  white-space: nowrap;
  width: auto;
  height: 30px;
  padding: 0;
  margin: 0 0.4em;
  vertical-align: top;
  position: relative;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#utility-nav ul li a[data-name="home"] {
  font-size: 22px;
  font-size: 2.2rem;
  color: #fff;
}
#utility-nav ul li.active a,
#utility-nav ul li:hover a {
  color: #fff;
}
#utility-nav ul li.active a[data-name="home"],
#utility-nav ul li:hover a[data-name="home"] {
  color: #00b3db;
}
/*
#utility-nav a:hover,
#utility-nav li.active a,
#utility-nav ul li:hover a, 
#utility-nav ul li a:active{ color:#66aed8; .fa{ color:#66aed8;background:none; } }
*/
/* logo  */
#logo {
  text-align: center;
  display: block;
  width: 88%;
  max-width: 329px;
  padding: 0;
  margin: 2em auto 1em;
}
/*contact info || aka hd-locations */
#contact-info {
  font-size: 22px;
  /*font-size: 2.2rem;*/
  text-align: center;
  margin: 0.4em 0 1em;
}
#contact-info .phone {
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #fff;
  display: inline-block;
  width: 100%;
}
#contact-info a:hover {
  color: #00b3db;
}
/* social-media || aka social-icons */
.social-media img,
.social-media .ib {
  vertical-align: top;
}
/*global override*/
.social-media {
  text-align: center;
  height: auto;
  width: auto;
  display: inline-block;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 400;
}
.social-media .ib {
  display: inline-block;
}
.social-media a {
  line-height: 45px;
  line-height: 4.5rem;
  font-size: 30px;
  font-size: 3rem;
  color: #00b3db;
  height: 49px;
  width: 49px;
  border-radius: 50%;
  margin: 0 4px 0 0;
  position: relative;
  display: block;
  float: left;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  border: 2px solid #00b3db;
  /*.scale(1);*/
}
.social-media a.facebook .fa {
  vertical-align: -1px;
}
.social-media a.google {
  font-size: 24px;
  font-size: 2.4rem;
}
.social-media a.youtube {
  font-size: 27px;
  font-size: 2.7rem;
}
.social-media a.healthgrades .fa {
  vertical-align: -3px;
}
.social-media a.last {
  margin: 0;
}
.social-media a:hover {
  color: #00b3db;
  z-index: 400;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.no-csstransforms .social-media a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  text-align: center;
  position: relative;
  z-index: 400;
}
#slideshow #home-slideshow.slideshow {
  width: 100%;
  margin: 0;
}
#slideshow .container {
  width: 100%!important;
}
#slideshow .cycle-caption a.slogan {
  line-height: 37px;
  line-height: 3.7rem;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: #443124;
  width: 100%;
  /*max-width:363px;*/
  height: 176px;
  padding-top: 45px;
  border: 1px solid #443124;
  position: relative;
  overflow: hidden;
  display: block;
  /*aylen styles*/
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#slideshow .cycle-caption a.slogan .trait {
  line-height: 42px;
  line-height: 4.2rem;
  font-size: 31px;
  font-size: 3.1rem;
  font-family: 'Lato', sans-serif;
  /*text-transform:none!important;*/
  font-style: normal;
  text-transform: uppercase;
  font-weight: 300;
}
#slideshow .cycle-caption a.slogan:before,
#slideshow .cycle-caption a.slogan:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
#slideshow .cycle-caption a.slogan:before {
  background: #6e9ce9;
}
#slideshow .cycle-caption a.slogan:after {
  background: #3164c3;
}
#slideshow .cycle-caption a.slogan[class]:hover {
  color: #fff;
  border-color: #fff;
}
#slideshow .cycle-caption a.slogan[class]:hover:before,
#slideshow .cycle-caption a.slogan[class]:hover:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
#slideshow .cycle-caption a.slogan[class]:hover:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
/* ==================================================================
	callouts || aka bd-callouts
=================================================================== */
#callouts {
  text-align: center;
  padding: 3em 0;
  margin: 0;
  background: #fff;
  border-top: 3px solid #fcfcfc;
  position: relative;
}
#callouts:before {
  content: '';
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/wood.jpg) repeat center top;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=59)";
  opacity: 0.79;
}
#callouts .container {
  width: 100%!important;
}
#callouts a {
  line-height: 13px;
  line-height: 1.3rem;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  width: 44%;
  max-width: 300px;
  display: inline-block;
  margin: 2%;
  padding: 5em 0;
  border: 3px solid #fff;
  position: relative;
  overflow: hidden;
  /*aylen styles*/
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#callouts a .fa,
#callouts a .topic {
  position: absolute;
  left: 0;
  -webkit-transition-duration: 0.26s;
  -moz-transition-duration: 0.26s;
  -o-transition-duration: 0.26s;
  -ms-transition-duration: 0.26s;
  transition-duration: 0.26s;
  z-index: 400;
}
#callouts a .fa {
  width: 100%;
  top: 20%;
}
#callouts a .topic {
  width: 100%;
  bottom: 20%;
}
#callouts a.first .fa {
  font-size: 40px;
  font-size: 4rem;
}
#callouts a.middle .fa {
  font-size: 38px;
  font-size: 3.8rem;
}
#callouts a.last .fa {
  font-size: 47px;
  font-size: 4.7rem;
}
#callouts a:before,
#callouts a:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  /*z-index: -1;*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
#callouts a:before {
  background: #6e9ce9;
}
#callouts a:after {
  background: #3164c3;
}
#callouts a:hover .fa {
  top: 45%;
}
#callouts a:hover .topic {
  bottom: 60%;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#callouts a:hover:before,
#callouts a:hover:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
#callouts a:hover:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
/*co-plus*/
/* ==================================================================
	ip-sub || aka subnav-outer
=================================================================== */
#ip-sub {
  letter-spacing: 0.06em;
  line-height: 21px;
  line-height: 2.1rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 3em 0;
  background: #443124;
  position: relative;
}
#ip-sub:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/wood.jpg) repeat center top;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=96)";
  opacity: 0.96;
}
#ip-sub p {
  margin: 0;
  padding: 0;
}
#ip-sub a {
  color: #fff;
  display: inline-block;
  margin: 0 0.8em 0.4em;
}
#ip-sub a:hover,
#ip-sub a.active {
  color: #fff;
  text-decoration: underline;
}
#ip-sub span {
  display: none;
}
/* ==================================================================
	content || aka #home-content and .interior-content
=================================================================== */
#bd {
  padding: 2em 0;
  background: #f7f6f4;
  position: relative;
  /*z-index:500;*/
}
/* Content */
#content a img {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#content a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}
/* hp columns */
.content-text {
  width: 100%;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  -webkit-column-width: 100%;
  -moz-column-width: 100%;
  column-width: 100%;
}
/* custom content */
/* ===============================================
					sitemap 
=============================================== */
.sitemap #content ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 0;
}
.sitemap #content .column > ul > li {
  margin-bottom: 1.45em;
}
.sitemap #content ul a {
  letter-spacing: 0.1em;
  font-size: 22px;
  font-size: 2.2rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #003494;
}
.sitemap #content a:hover {
  text-decoration: underline;
  color: #443124;
}
.sitemap #content ul ul li a {
  letter-spacing: normal;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: none;
  color: #00b3db;
  margin-left: 0;
  /*to increase space adjust [body.sitemap #bd ul ul li] below*/
}
body.sitemap #bd ul li {
  list-style: none;
}
body.sitemap #bd ul ul li {
  list-style: none;
  /*list-style-image:none;*/
  margin-left: 0;
  /*default=15px*/
}
/* ==================================================================
	sidebar / sitepics
=================================================================== */
#sidebar {
  display: none;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 6%;
  padding: 0;
}
/*.home #sidebar,*/
/*body[class^='meet-the-'] #sidebar, body[class^='meet-our-'] #sidebar,*/
body[class^='meet-dr-'] #sidebar,
body[class^='meet-doctor-'] #sidebar,
body[class~='blog'] #sidebar {
  display: block;
}
/*sitepics*/
#hide-stock {
  display: inline-block;
  width: 100%;
  border: 5px solid #fff;
  outline: 1px solid #00b3db !important;
  position: relative;
}
#hide-stock:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.85);
  z-index: 400;
}
.static {
  /*330*/
  width: 100%;
  position: relative;
}
/*#sidebar { img {  } }*/
/* ^^see static above^^ */
.staff {
  width: 45%;
  max-width: 205px;
  margin: 0 0 1em 1em;
  float: right;
  border: 5px solid #fff;
  outline: 1px solid #00b3db !important;
}
.team {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 2% auto;
  border: 10px solid #fff;
  outline: 1px solid #00b3db !important;
}
/*.team-photo{  }*/
/*.img-right { max-width: 100%; }*/
/*???*/
/* spotlight */
#spotlight {
  padding: 3em 0;
  background: url(../images/spotlight.jpg) no-repeat center center;
}
/*toy*/
#toy {
  line-height: 28px;
  line-height: 2.8rem;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #333333;
  padding: 1em 0 2em;
  background: #433b36;
}
#toy .container {
  width: 100%!important;
}
#toy h2 {
  letter-spacing: 0.2em;
  line-height: 45px;
  line-height: 4.5rem;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}
#toy .cycle-slideshow {
  padding: 0 2em 2em;
  background: #fff;
  display: inline-block;
  width: 100%;
}
#toy .icon {
  display: block;
  margin: 1.8em auto 1.4em;
}
#toy .voluble {
  padding: 0 6%;
}
#toy .toy-btn {
  line-height: 37px;
  line-height: 3.7rem;
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  color: #00b3db;
  width: 118px;
  height: 39px;
  display: block;
  margin: 1.9em auto;
  border: 1px solid #00b3db;
  position: relative;
  overflow: hidden;
  /*aylen styles*/
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#toy .toy-btn:before,
#toy .toy-btn:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
#toy .toy-btn:before {
  background: #6e9ce9;
}
#toy .toy-btn:after {
  background: #3164c3;
}
#toy .toy-btn:hover {
  color: #fff;
}
#toy .toy-btn:hover:before,
#toy .toy-btn:hover:after {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
#toy .toy-btn:hover:after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
}
#per-slide-template {
  background: #fff;
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
}
#per-slide-template a {
  line-height: 40px;
  line-height: 4rem;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  display: block;
  -webkit-transition-duration: 0.36s;
  -moz-transition-duration: 0.36s;
  -o-transition-duration: 0.36s;
  -ms-transition-duration: 0.36s;
  transition-duration: 0.36s;
}
#per-slide-template a.slide1 {
  background: #6e9ce9;
}
#per-slide-template a.slide2 {
  background: #4e7ed6;
}
#per-slide-template a.slide3 {
  background: #3164c3;
}
#per-slide-template a.slide4 {
  background: #154baf;
}
#per-slide-template a.slide5 {
  background: #003494;
}
#per-slide-template a.cycle-pager-active {
  color: #00b3db;
  background: #fff;
}
#per-slide-template a:hover {
  color: #0fd3ff;
  background: #F0F8FF;
}
/* ==================================================================
    co-marks 
=================================================================== */
/*#co-marks{ 
    .aligncenter;
    padding:1em 0 6em;
    background:fade(@color0, 50%);
    
	a{ .auto;max-width:28%;margin:2%;.inline-block;.va(middle);
	    img{ .trans; }
		&:hover{ .fade; }
	}
}*/
/* ==================================================================
	#ft
=================================================================== */
#ft {
  text-align: center;
  height: 391px;
  position: relative;
  background: url(../images/footer/oakhurst-orthodontic-office.png) no-repeat center center;
  border-top: 1px solid #e6e6e6;
}
/* ===============================================
		location || aka ft-location
=============================================== */
#location {
  text-align: center;
  color: #fff;
  padding: 1em 0;
  width: 100%;
  background: rgba(24, 78, 177, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 400;
}
#location .ft-logo {
  width: 88%;
  max-width: 329px;
  margin: 0 auto 0.4em;
}
#location .phone {
  line-height: 32px;
  line-height: 3.2rem;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 300;
  display: inline-block;
  height: 32px;
  width: 100%;
}
#location .addy {
  line-height: 26px;
  line-height: 2.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
}
#location .addy .pointer {
  width: 22px;
  height: 43px;
  margin: 0 -9px;
  position: absolute;
  left: 50%;
  top: -124px;
}
#location a {
  color: #fff;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
#location a:hover {
  color: #00b3db;
}
.no-rgba #location {
  background: url(../images/icons/i80.png) repeat 0 0;
}
/* ==================================================================
		links || aka ft-design-credit
=================================================================== */
#links {
  line-height: 20px;
  line-height: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: #00b3db;
  padding: 1em 0 2em;
  margin: 0;
  background: #003494;
}
#links a,
#links .divider {
  display: inline-block;
}
#links .divider {
  margin: 0 0.4em;
}
#links a {
  color: #00b3db;
}
#links a:hover {
  color: #fff;
}
#links .util {
  letter-spacing: 0.08em;
  font-size: 10px;
  font-size: 1rem;
  margin-top: 1em;
}
/*sesame link*/
a#sesame-link {
  padding: 0 0 0 27px;
  background: url(../images/icons/sesame-icon.png) no-repeat left center;
}
/*back-to-top*/
#btt {
  display: block;
  width: 100%;
  text-align: center;
}
a#back-to-top {
  font-size: 20px;
  font-size: 2rem;
  width: auto;
  height: 20px;
  display: inline-block;
  position: relative;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
a#back-to-top .fa {
  position: relative;
  z-index: 400;
}
a#back-to-top:hover {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
/*tnav*/
/*#tnav{ .fs(1.2);.upp;.aligncenter;color:@color1;padding:0;margin:0;

	p.text-nav{ margin:0;padding:0; }
	a{ color:@color1;.inline-block;.auto;margin:0.4em 0.8em;
		&:hover{ color:#c08bc8; } 
	}
	span{ .hide; }
}
*/
/*superlative*/
/************************************************************************************************************************************************/
/* hide double hr */
hr {
  display: none;
  height: 0px;
}
div.hr {
  width: 100%;
  height: 1px;
  margin: 14px auto;
  padding: 0;
  clear: both;
  background: #ccc9c4;
}
/*success message*/
.success {
  text-transform: none;
  font-weight: 400;
  color: #fff;
  padding: 16px;
  float: left;
  background: #00b3db;
  width: 100%;
}
/* Form Buttons */
form button {
  letter-spacing: normal;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #00b3db;
  border: 1px solid #00b3db;
}
form button:hover {
  color: #00b3db;
  border-color: #00b3db;
  background-color: transparent;
}
form p {
  height: auto;
}
/* BLOG FORM */
.stButton {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.st_plusone_large {
  top: 9px;
  position: relative;
}
.share-article-links {
  text-align: center;
}
.share-text {
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0 0 0.8em;
  font-weight: 400;
  text-align: center;
}
form#blog_search {
  color: #000;
  position: relative;
  text-align: left;
  width: 275px;
  float: none;
  margin: 0 auto;
}
form#blog_search label {
  color: #00b3db;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: none;
  margin: 0px;
  text-align: left;
  text-transform: none;
}
form#blog_search input {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  width: 178px;
  margin: 6px auto;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
form#blog_search input:hover {
  background: rgba(255, 255, 255, 0.95);
}
form#blog_search button {
  font-weight: 700;
  font-size: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  padding: 4px 8px!important;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.26);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
form#blog_search button:active,
form#blog_search button:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.24);
}
/* end blog css */
/* Generic Classes */
.ie8 nav.horizontal ul li a {
  max-width: none;
}
.ie8 .slideshow-item {
  display: none;
}
.ie8 .slideshow-active {
  display: block;
}
.shift {
  position: relative;
}
.columns {
  display: inline;
  float: left;
}
.genie {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
.genie:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*other forms*/
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"],
textarea {
  /*width:80%;*/
}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"] {
  height: 34px;
}
/* hidden field styles */
.hidden-option {
  display: none;
}
body.office-tour .video-sleeve {
  margin: 0 auto;
  max-width: 600px;
}
.invisalign-before-after #pro-pack {
  text-align: center;
}
#invisalign-before-after {
  max-width: 464px;
  width: 100%;
  display: inline-block;
}
#invisalign-before-after ul {
  margin: 0;
}
#invisalign-before-after p.caption {
  position: relative;
}
#damon-before-after {
  max-width: 539px;
  width: 100%;
}
.test-cred {
  display: block;
  font-weight: bold;
  font-size: smaller;
}
.flash {
  margin: 20px 0;
}
/* Office Tour Slideshow */
/*.slideshow{ border-bottom:3px solid @color1;margin: 0 auto; }*/
.slideshow-text {
  background: #00b3db;
  padding: 0 10px;
  color: #fff;
}
.invisalign-before-after.slideshow,
.office-tour.slideshow,
.before-and-after.slideshow {
  border-bottom: 3px solid #00b3db;
  margin: 0 auto;
}
.invisalign-before-after.slideshow .slideshow-nav a,
.office-tour.slideshow .slideshow-nav a,
.before-and-after.slideshow .slideshow-nav a {
  padding: 5px 5px;
}
.invisalign-before-after.slideshow .slideshow-nav a.prev,
.office-tour.slideshow .slideshow-nav a.prev,
.before-and-after.slideshow .slideshow-nav a.prev,
.invisalign-before-after.slideshow .slideshow-nav a.next,
.office-tour.slideshow .slideshow-nav a.next,
.before-and-after.slideshow .slideshow-nav a.next {
  padding: 5px 15px;
}
.invisalign-before-after.slideshow .slideshow-nav a:hover,
.office-tour.slideshow .slideshow-nav a:hover,
.before-and-after.slideshow .slideshow-nav a:hover {
  color: #666666;
}
.invisalign-before-after .slideshow-nav-paginated li.slideshow-active-page a,
.office-tour .slideshow-nav-paginated li.slideshow-active-page a,
.before-and-after .slideshow-nav-paginated li.slideshow-active-page a {
  color: #666666;
}
.office-tour.slideshow .slideshow-nav,
.before-and-after.slideshow .slideshow-nav {
  background: #00b3db;
}
/*body[class^='meet-dr-'] #hide-stock { display:block !important; text-align:center; margin: 1em auto; }*/
/*unecessary rule - see #sidebar*/
/* Office Tour */
ul.slideshow {
  margin: 0 auto !important;
}
body.office-tour #main-content {
  display: inline-block;
  text-align: center;
  width: auto !important;
}
form p {
  height: auto;
}
/*office-location*/
.address-and-hours .embed-container,
body[class*="office"] .embed-container,
body[class*="location"] .embed-container {
  width: auto;
  margin-top: 2em;
  padding-bottom: 55%;
  /*default 55%*/
}
.location-page,
table.office-hours {
  margin-bottom: 1em;
}
p.office-hours {
  margin-bottom: 0;
}
.office-info,
.office-location table {
  margin-bottom: 2em;
}
/*padding-bottom adjusts height of google map*/
h3.hours {
  margin-top: 2em;
}
/* ==================================================================
			other slideshows
=================================================================== */
.office-tour.slideshow .slideshow-nav,
.before-and-after.slideshow .slideshow-nav {
  box-shadow: none;
  /*global override*/
}
.office-tour.slideshow .slideshow-item,
.before-and-after.slideshow .slideshow-item {
  /*margin-top:70px!important;*/
}
#content .slideshow-nav,
#invisalign-footer h3,
#pro-pack #invisalign-footer h3,
#suresmile-footer h3 {
  background: #00b3db;
}
#invisalign-footer ul,
#suresmile-footer ul {
  margin: 0;
}
#content .slideshow-nav a {
  color: #fff;
  text-decoration: none;
}
#content .slideshow-nav a:hover,
#content .slideshow-nav li.slideshow-active-page a {
  text-decoration: none;
  color: #333333;
}
.office-tour.slideshow,
.before-and-after.slideshow {
  margin-bottom: 3em;
}
#content ul.slideshow {
  margin: 0 auto;
}
#before-after-container,
.slideshow.office-tour {
  margin-bottom: 5%;
  max-width: 460px;
  padding: 0;
}
.before-and-after.slideshow img {
  display: inline-block;
}
.before-and-after.slideshow p,
.office-tour.slideshow p {
  line-height: 45px;
  line-height: 4.5rem;
  display: block;
  text-align: center;
  padding: 1% 0;
  background: #fff;
  clear: both;
  min-height: 45px;
  margin: 0;
}
.before-and-after .cycle-detail {
  padding: 1.4em;
  background: #999999;
}
.before-and-after .cycle-detail span {
  display: block;
}
.before-and-after.slideshow .slideshow-item img {
  margin: 0;
}
.office-tour.slideshow .slideshow-pagination,
.before-and-after.slideshow .slideshow-pagination {
  margin: 0 10%;
}
.slideshow .slideshow-item .caption {
  line-height: 16px;
  line-height: 1.6rem;
  width: 100%;
}
/*global overrides*/
.slideshow-nav-paginated ol {
  padding: 0 4em;
}
.before-and-after .slideshow-nav-paginated ol {
  padding: 0 7em;
}
.before-and-after.slideshow .slideshow-nav a {
  padding: 15px 5px;
}
.office-tour.slideshow .slideshow-nav a {
  padding: 10px 5px;
}
.office-tour.slideshow .slideshow-nav a.prev,
.before-and-after.slideshow .slideshow-nav a.prev,
.office-tour.slideshow .slideshow-nav a.next,
.before-and-after.slideshow .slideshow-nav a.next {
  position: absolute;
  top:5px;
}
.ie8 .office-tour.slideshow .slideshow-nav a.prev,
.ie8 .before-and-after.slideshow .slideshow-nav a.prev,
.ie8 .office-tour.slideshow .slideshow-nav a.next,
.ie8 .before-and-after.slideshow .slideshow-nav a.next {
  top: -3px;
}
/*common procedures styles*/
p#procedures-nav {
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #00b3db;
  padding-bottom: 1em;
  margin-bottom: 3em;
  border-bottom: 1px solid #333333;
}
p#procedures-nav a {
  color: #00b3db;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
p#procedures-nav a:hover {
  text-decoration: none;
  color: #00b3db;
}
/*********************************************************************/
/*embedded videos*/
/*********************************************************************/
/*patient care videos*/
#flash-patient-care {
  width: 100%;
  max-width: 500px;
}
/*keeps videos from getting too hooj*/
.embed-container {
  width: 100%;
}
.embed-container.ratio16x9,
.embed-container.docvid {
  padding-bottom: 46%;
}
.clarity-sl .embed-container {
  padding: 0 0 10% 0;
  width: 60%;
}
.clarity-sl .embed-container a {
  line-height: 70px;
  line-height: 7rem;
}
/*exceptions - there are exceptions to every rule!!!*/
.acceledent .embed-container:nth-of-type(1) {
  float: right;
  height: auto;
  padding-bottom: 0;
  width: auto;
}
/*office-location*/
.address-and-hours .embed-container,
body[class*="office"] .embed-container,
body[class*="location"] .embed-container {
  width: auto;
  margin-top: 2em;
  padding-bottom: 55%;
  /*default 55%*/
}
.location-page,
table.office-hours {
  margin-bottom: 1em;
}
p.office-hours {
  margin-bottom: 0;
}
.office-info,
.office-location table {
  margin-bottom: 2em;
}
/*padding-bottom adjusts height of google map*/
h3.hours {
  margin-top: 2em;
}
/*********************************************************************
	invisalign overrides
*********************************************************************/
.invisalign-testimonials ul#testimonials {
  margin: 0 0 100px 0;
}
/*keeps invisalign before and after gallery from getting too hooj*/
#invisalign-before-after .before-and-after.slideshow {
  max-width: 550px;
}
/*invisalign videos*/
.invisalign-videos h3 {
  text-align: center;
}
.invisalign-videos .embed-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*hides p tag under slideshow*/
.invisalign-testimonials ul#testimonials {
  background: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.invisalign-testimonials ul#testimonials p {
  line-height: 18px;
  line-height: 1.8rem;
  font-size: 17px;
  font-size: 1.7rem;
  text-shadow: none;
  font-weight: 400;
  color: #333333;
}
/*invisalign footer*/
#invisalign-footer,
#suresmile-footer {
  max-width: 100%;
  width: auto;
}
#invisalign-footer a:hover img,
#suresmile-footer a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}
#pro-pack #invisalign-footer {
  width: 90%;
  float: none;
  margin: 1em auto;
}
#pro-pack #invisalign-footer a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}
#invisalign-footer li,
#suresmile-footer li,
#pro-pack #invisalign-footer li {
  width: auto;
}
/*other stuff*/
.braces-diagram #content p {
  float: none;
  margin: 0 auto!important;
  padding: 0;
}
.braces-diagram #content .img-left {
  float: none;
  margin: 0 auto;
  clear: none;
  display: block;
}

.home h1:before { 
	content: '';
    background: url(../images/hm-logo.png) top center no-repeat;
    width: 240px;
    height: 163px;
    display: block;
    margin: 0 auto 10px;
}

#spotlight h2 { 
	letter-spacing: 0.2em;
    line-height: 45px;
    line-height: 4.5rem;
    font-size: 30px;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    box-sizing: border-box;
    border: 1px solid #fff;
    max-width: 680px;
    margin: 0 2% 20px;
    padding: 20px;
}

.slick-prev,
.slick-next { 
	display: none !important;
}

#tour-wrapper ul.tour-slider { 
	margin: 0;
}

#tour-wrapper ul.tour-slider li { 
	min-height: 1px;
	min-width: 1px;
}

.office-tour .bx-wrapper .bx-viewport { 
	left: 0;
}


/************************************************************************************************************************************************/
/* end superlatives */
/* ===============================================
Small Tablet/Large Phone Stylings (Optional)
Supports 30em (480px) to 47.9375em (767px)
------
Useful for making minor adjustments between
awkward sizes.
=============================================== */
@media only screen and (min-width: 30em) and (max-width: 47.9375em) {
  /*END*/
}
/* ===============================================
Tablet / Desktop Stylings
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /**/
  .row > .col {
    border: 0px solid rgba(0, 0, 0, 0);
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
    background-clip: padding-box !important;
    margin-left: 5%;
  }
  .row > .col:first-child {
    margin-left: 0%;
  }
  #staff-array .row > .col {
    margin-left: 0;
  }
  #staff-array .row > .col:first-child {
    margin-left: 5%;
  }
  /* 12 Column Grid */
  .row > .col.span1 {
    width: 3.75%;
  }
  .row > .col.span2 {
    width: 12.5%;
  }
  .row > .col.span3,
  .row > .col.quarter {
    width: 21.25%;
  }
  .row > .col.span4,
  .row > .col.third {
    width: 30%;
  }
  .row > .col.span5 {
    width: 38.75%;
  }
  .row > .col.span6,
  .row > .col.half {
    width: 47.5%;
  }
  .row > .col.span7 {
    width: 56.25%;
  }
  .row > .col.span8 {
    width: 65%;
  }
  .row > .col.span9 {
    width: 73.75%;
  }
  .row > .col.span10 {
    width: 82.5%;
  }
  .row > .col.span11 {
    width: 91.25%;
  }
  .row > .col.span12,
  .row > .col.full {
    width: 100%;
  }
  .row > .col.offset1 {
    margin-left: 8.75%;
  }
  .row > .col.offset2 {
    margin-left: 17.5%;
  }
  .row > .col.offset3 {
    margin-left: 26.25%;
  }
  .row > .col.offset4 {
    margin-left: 35%;
  }
  .row > .col.offset5 {
    margin-left: 43.75%;
  }
  .row > .col.offset6 {
    margin-left: 52.5%;
  }
  .row > .col.offset7 {
    margin-left: 61.25%;
  }
  .row > .col.offset8 {
    margin-left: 70%;
  }
  .row > .col.offset9 {
    margin-left: 78.75%;
  }
  .row > .col.offset10 {
    margin-left: 87.5%;
  }
  .row > .col.offset11 {
    margin-left: 96.25%;
  }
  /**/
  /* ===============================================
					super 
=============================================== */
  /*keeps videos from getting too hooj*/
  .embed-container {
    width: 60%;
    padding-bottom: 30%;
  }
  .embed-container.ratio16x9,
  .embed-container.docvid {
    padding-bottom: 30%;
  }
  .what-sets-us-apart .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .damon-smile-testimonials .embed-container.ratio16x9 {
    margin-left: auto;
    margin-right: auto;
  }
  /* in-ovation pages */
  .which-is-right-for-me #content p {
    display: inline-block;
    float: left;
  }
  .which-is-right-for-me #content a[href^="/sesame_media/docs/"] {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
  }
  .which-is-right-for-me #content a[href^="/sesame_media/docs/"] img {
    display: inline-block;
  }
  .in-ovation-testimonials .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  [class^="inovation-chart-"] {
    display: inline-block;
    float: left;
  }
  /*damon pages*/
  .damon-smile-info img[src$='damon-3.png'] {
    float: right;
    margin: 0 0 0.8em 0.8em;
  }
  .damon-smile-info img[src$='damon-3.png'] + p {
    display: block;
    width: 100%;
    clear: both;
  }
  /*suremsile pages*/
  [class*="suresmile"] iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .suresmile-before-and-after #content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .how-suresmile-works .embed-container {
    display: none;
  }
  .suresmile-info .embed-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /*invisalign footer*/
  #pro-pack #invisalign-footer,
  #suresmile-footer {
    width: 100%;
    float: left;
  }
  #pro-pack #invisalign-footer ul,
  #suresmile-footer ul {
    float: left;
    width: auto;
    margin: 0;
    min-width: 120px;
  }
  #pro-pack #invisalign-footer a.external,
  #suresmile-footer a.external,
  #pro-pack #invisalign-footer p.cf,
  #suresmile-footer p.cf {
    float: right;
    clear: right;
  }
  /**/
  .video-sleeve {
    width: 100%;
    max-width: 80%;
  }
  .video-sleeve-60 {
    width: 100%;
    max-width: 60%;
  }
  /*hfam*/
  h1 {
    line-height: 35px;
    line-height: 3.5rem;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .home h1 {
    letter-spacing: 0.081em;
    font-size: 22px;
    font-size: 2.2rem;
    white-space: nowrap;
  }
  /* ===============================================
					header 
=============================================== */
  /* ===============================================
					slideshow 
=============================================== */
  #slideshow #home-slideshow.slideshow {
    width: 100%;
    margin: 0;
  }
  #slideshow #home-slideshow.slideshow .cycle-slideshow {
    /*margin-top:-5%;*/
  }
  #slideshow #home-slideshow img {
    /*max-width:2000px;*/
  }
  /* ===============================================
					callouts 
=============================================== */
  #callouts a {
    line-height: 40px;
    line-height: 4rem;
    font-size: 20px;
    font-size: 2rem;
    width: 30%;
    margin: 1%;
    padding: 4em 0;
  }
  /*co-plus*/
  /* ===============================================
				content / sidebar 
=============================================== */
  #bd {
    padding: 7.4em 0 3.56em;
  }
  #content {
    float: left;
    width: 60.1593%;
    max-width: 654px;
  }
  #content p {
    text-align: justify;
  }
  .home #bd {
    padding: 30px 0 3em;
    /*.container{ width:72%!important;max-width:716px; }*/
  }
  .home #bd #content {
    width: 72%;
    max-width: 716px;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .home #bd #content p {
    /*.justify;*/
  }
  .home #bd #sidebar {
    display: none;
  }
  #sidebar {
    display: block;
    float: right;
    clear: right;
    width: 33.8645%;
    margin: 7px 0 1em;
  }
  /* blanket content width 100% and sidebar hide*/
  body[class*='acceledent'],
  body[class^='before-'],
  .smile-gallery,
  .bonding,
  .brace-painter,
  .braces-diagram,
  .bridges,
  .carriere-distalizer-appliance,
  .clarity-ceramic-brackets,
  .clarity-sl,
  .clearcorrect,
  body[class^='common-'],
  .crowns,
  body[class^='damon-'],
  .dentures,
  .complete-dentures,
  .digital-x-rays,
  .digital-cad-cam-dentistry,
  body[class*='empower'],
  .e4d-dentist,
  .extractions,
  body[class*='forsus'],
  .gum-disease,
  .home,
  .i-cat,
  .incognito,
  .in-ovation,
  .which-is-right-for-me,
  .in-ovation-for-adults,
  .in-ovation-testimonials,
  .in-ovation-before-after,
  .in-ovation-videos,
  .in-ovation-r,
  .mtm-no-trace,
  .in-ovation-c,
  .in-ovation-system,
  body[class*='invisalign'],
  .itero-digital-impression-system,
  .itero-element,
  .juvederm-xc,
  .lythos-digital-scan,
  body[class*="-team"],
  body[class*="-staff"],
  .meet-our-hygienists,
  .minimaster,
  .mouthguards,
  body[class*='office-tour'],
  .around-our-office,
  .our-office,
  .palatal-expander,
  .patient-care-videos,
  .philips-zoom,
  .propel-orthodontics,
  .retainer-instructions,
  .retainers,
  .sealants,
  .sitemap,
  .slimline-palatal-expander,
  .smiles-change-lives,
  .smile-for-a-lifetime,
  .smartclip,
  .solea-dental-laser,
  .somnodent-sleep-apnea-appliance,
  .sponsorships,
  body[class*='suresmile-'],
  .tap-appliance,
  body[class^='trudenta-'],
  .headache-symptoms-and-causes,
  body[class^='types-of'],
  .the-wand-sta,
  .veneers,
  .wildsmiles,
  .wisdom-teeth,
  .my-life-my-smile-my-orthodontist,
  .your-child-s-first-orthodontic-checkup,
  .aao-testimonials,
  .ortho-tv {
    /*#bd{ .container{ width:72%!important;max-width:716px; } }*/
  }
  body[class*='acceledent'] #content,
  body[class^='before-'] #content,
  .smile-gallery #content,
  .bonding #content,
  .brace-painter #content,
  .braces-diagram #content,
  .bridges #content,
  .carriere-distalizer-appliance #content,
  .clarity-ceramic-brackets #content,
  .clarity-sl #content,
  .clearcorrect #content,
  body[class^='common-'] #content,
  .crowns #content,
  body[class^='damon-'] #content,
  .dentures #content,
  .complete-dentures #content,
  .digital-x-rays #content,
  .digital-cad-cam-dentistry #content,
  body[class*='empower'] #content,
  .e4d-dentist #content,
  .extractions #content,
  body[class*='forsus'] #content,
  .gum-disease #content,
  .home #content,
  .i-cat #content,
  .incognito #content,
  .in-ovation #content,
  .which-is-right-for-me #content,
  .in-ovation-for-adults #content,
  .in-ovation-testimonials #content,
  .in-ovation-before-after #content,
  .in-ovation-videos #content,
  .in-ovation-r #content,
  .mtm-no-trace #content,
  .in-ovation-c #content,
  .in-ovation-system #content,
  body[class*='invisalign'] #content,
  .itero-digital-impression-system #content,
  .itero-element #content,
  .juvederm-xc #content,
  .lythos-digital-scan #content,
  body[class*="-team"] #content,
  body[class*="-staff"] #content,
  .meet-our-hygienists #content,
  .minimaster #content,
  .mouthguards #content,
  body[class*='office-tour'] #content,
  .around-our-office #content,
  .our-office #content,
  .palatal-expander #content,
  .patient-care-videos #content,
  .philips-zoom #content,
  .propel-orthodontics #content,
  .retainer-instructions #content,
  .retainers #content,
  .sealants #content,
  .sitemap #content,
  .slimline-palatal-expander #content,
  .smiles-change-lives #content,
  .smile-for-a-lifetime #content,
  .smartclip #content,
  .solea-dental-laser #content,
  .somnodent-sleep-apnea-appliance #content,
  .sponsorships #content,
  body[class*='suresmile-'] #content,
  .tap-appliance #content,
  body[class^='trudenta-'] #content,
  .headache-symptoms-and-causes #content,
  body[class^='types-of'] #content,
  .the-wand-sta #content,
  .veneers #content,
  .wildsmiles #content,
  .wisdom-teeth #content,
  .my-life-my-smile-my-orthodontist #content,
  .your-child-s-first-orthodontic-checkup #content,
  .aao-testimonials #content,
  .ortho-tv #content {
    width: 100%;
    max-width: none;
    /*default mw::none*/
  }
  body[class*='acceledent'] #sidebar,
  body[class^='before-'] #sidebar,
  .smile-gallery #sidebar,
  .bonding #sidebar,
  .brace-painter #sidebar,
  .braces-diagram #sidebar,
  .bridges #sidebar,
  .carriere-distalizer-appliance #sidebar,
  .clarity-ceramic-brackets #sidebar,
  .clarity-sl #sidebar,
  .clearcorrect #sidebar,
  body[class^='common-'] #sidebar,
  .crowns #sidebar,
  body[class^='damon-'] #sidebar,
  .dentures #sidebar,
  .complete-dentures #sidebar,
  .digital-x-rays #sidebar,
  .digital-cad-cam-dentistry #sidebar,
  body[class*='empower'] #sidebar,
  .e4d-dentist #sidebar,
  .extractions #sidebar,
  body[class*='forsus'] #sidebar,
  .gum-disease #sidebar,
  .home #sidebar,
  .i-cat #sidebar,
  .incognito #sidebar,
  .in-ovation #sidebar,
  .which-is-right-for-me #sidebar,
  .in-ovation-for-adults #sidebar,
  .in-ovation-testimonials #sidebar,
  .in-ovation-before-after #sidebar,
  .in-ovation-videos #sidebar,
  .in-ovation-r #sidebar,
  .mtm-no-trace #sidebar,
  .in-ovation-c #sidebar,
  .in-ovation-system #sidebar,
  body[class*='invisalign'] #sidebar,
  .itero-digital-impression-system #sidebar,
  .itero-element #sidebar,
  .juvederm-xc #sidebar,
  .lythos-digital-scan #sidebar,
  body[class*="-team"] #sidebar,
  body[class*="-staff"] #sidebar,
  .meet-our-hygienists #sidebar,
  .minimaster #sidebar,
  .mouthguards #sidebar,
  body[class*='office-tour'] #sidebar,
  .around-our-office #sidebar,
  .our-office #sidebar,
  .palatal-expander #sidebar,
  .patient-care-videos #sidebar,
  .philips-zoom #sidebar,
  .propel-orthodontics #sidebar,
  .retainer-instructions #sidebar,
  .retainers #sidebar,
  .sealants #sidebar,
  .sitemap #sidebar,
  .slimline-palatal-expander #sidebar,
  .smiles-change-lives #sidebar,
  .smile-for-a-lifetime #sidebar,
  .smartclip #sidebar,
  .solea-dental-laser #sidebar,
  .somnodent-sleep-apnea-appliance #sidebar,
  .sponsorships #sidebar,
  body[class*='suresmile-'] #sidebar,
  .tap-appliance #sidebar,
  body[class^='trudenta-'] #sidebar,
  .headache-symptoms-and-causes #sidebar,
  body[class^='types-of'] #sidebar,
  .the-wand-sta #sidebar,
  .veneers #sidebar,
  .wildsmiles #sidebar,
  .wisdom-teeth #sidebar,
  .my-life-my-smile-my-orthodontist #sidebar,
  .your-child-s-first-orthodontic-checkup #sidebar,
  .aao-testimonials #sidebar,
  .ortho-tv #sidebar {
    display: none;
  }
  /*hp-col*/
  /*.home .content-text{ .column-count(2);.column-gap(20px); }*/
  /* custom content */
  /* ===============================================
					sitemap 
=============================================== */
  body.sitemap .width1 {
    width: 50%;
    /*default 50%*/
  }
  /* spotlight  */
  /*toy*/
  #toy {
    padding: 3em 0 4em;
  }
  #toy h2 {
    font-size: 30px;
    font-size: 3rem;
  }
  #toy #per-slide-template {
    width: 37.0517928286853%;
    float: left;
  }
  #toy #per-slide-template a {
    line-height: 104px;
    line-height: 10.4rem;
    font-size: 20px;
    font-size: 2rem;
    height: 4.990em;
  }
  #toy .cycle-slideshow {
    min-height: 499px;
    width: 62.94820717131475%;
    float: right;
  }
  #toy .voluble {
    text-align: justify;
    padding: 0;
  }
  #toy .cycle-slide {
    width: 410px;
    left: 50%!important;
    margin: 0 -205px;
  }
  #toy .toy-btn {
    margin-bottom: 0;
  }
  
  #spotlight h2 { 
  	margin: 0 auto 20px;
  }
  /* co-marks */
  /* ===============================================
					footer 
=============================================== */
  /*location*/
  #location .ft-logo {
    position: absolute;
    left: 0;
    top: 0;
  }
  #location .phone,
  #location .addy {
    text-align: left;
    float: left;
    margin-left: 368px;
  }
  #location .addy .pointer {
    top: -174px;
    margin: 0 -13px;
  }
  /*tnav*/
  /*links*/
  #links {
    height: 47px;
    padding: 14px 0 0;
  }
  #links .util {
    width: auto;
    margin: 0;
    float: left;
  }
  #links .divider {
    margin: 0 0.3em;
  }
  /*back to top*/
  #btt {
    float: right;
    width: auto;
  }
  a#back-to-top {
    margin: 0;
  }
  /*sesame-link*/
  /*a#sesame-link{ .left; }*/
  /*END*/
}
/* ===============================================
Desktop Only Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /*body*/
  /*hfam*/
  /*.home h1:before {
    margin: 0 -164px;
    width: 328px;
  }*/
  /*vertex*/
  #vertex {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 3000;
  }
  /*HD*/
  #hd {
    padding: 0;
    position: relative;
    z-index: 3000;
  }
  #logo {
    position: absolute;
    top: 0;
    left: 0;
    margin: 16px 0 0 1px;
    z-index: 3000;
  }
  #contact-info {
    width: auto;
    margin: 3px 0 0;
    float: right;
  }
  #utility-nav {
    width: auto;
    float: left;
    margin: 5px 0 0 370px;
    position: static;
  }
  #utility-nav ul {
    position: static;
  }
  #utility-nav ul li {
    margin: 0 0.8em 0 0;
  }
  #utility-nav ul li.home {
    width: auto;
    margin: 0;
    position: absolute;
    top: 4px;
    right: 165px;
  }
  #utility-nav ul li a {
    margin: 0;
  }
  .social-media {
    width: 49px;
    height: auto;
    padding: 0;
    position: fixed;
    right: 12px;
    top: 227px;
    z-index: 3000;
  }
  .social-media a {
    clear: both;
    margin-bottom: 4px;
  }
  .social-media a.last {
    margin: 0;
  }
  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    height: 37px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    z-index: 2900;
  }
  #main-nav .container {
    height: 37px;
    background: none;
    padding: 0;
    margin-top: 42px;
  }
  #main-nav div.collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    height: 37px;
    width: auto;
    float: right;
    /*<def-nofloat*/
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: static;
  }
  #main-nav ul:before {
    display: none;
  }
  #main-nav ul li {
    height: 37px;
    float: none;
    margin: 0 28px 0 0;
    /*adjust margin for spacing*/
    background: none;
    position: relative;
    vertical-align: top;
  }
  #main-nav ul li.home {
    display: none;
  }
  #main-nav ul li.contact,
  #main-nav ul li.contact-us {
    margin-right: 0;
    padding-right: 0;
  }
  #main-nav ul li a[id] {
    letter-spacing: 0.11em;
    line-height: 12px;
    line-height: 1.2rem;
    font-size: 11px;
    font-size: 1.1rem;
    color: #fff;
    text-align: left;
    /*default center */
    text-decoration: none;
    height: 37px;
    width: auto;
    padding: 8px 0 0;
    margin: 0;
    position: relative;
    z-index: 3000;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    color: #00b3db;
    text-decoration: none;
  }
  #main-nav ul ul {
    width: 230px;
    height: auto;
    padding: 9px 0 11px;
    margin: 0;
    /* border-top:1px solid #c3a566; */
    z-index: 2800;
    position: absolute;
  }
  #main-nav ul ul li {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 25px;
    /*default 25*/
    background: none;
  }
  #main-nav ul ul li a {
    line-height: 25px;
    line-height: 2.5rem;
    text-align: left;
    text-indent: 21px;
    white-space: nowrap;
    height: 25px;
    width: 100%;
    padding: 0;
    margin: 0;
    float: left;
    /*background:none;*/
    box-shadow: none;
    border-right: none;
    position: relative;
  }
  /* reverses text-align for flyout on last nav item */
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    text-align: right;
    padding-right: 21px;
  }
  /* custom width adjustment for specific flyouts */
  #main-nav ul li.orthodontic-treatments ul {
    width: 250px;
  }
  #main-nav ul li.my-life-my-smile ul {
    width: 315px;
  }
  /* ===============================================
			special drop locations 
=============================================== */
  #main-nav ul li:hover ul,
  #main-nav ul li.sfhover ul {
    /*left:-3px;*/
    /*top:37px;*/
  }
  #main-nav ul li.contact-us:hover ul,
  #main-nav ul li.contact-us.sfhover ul,
  #main-nav ul li.contact:hover ul,
  #main-nav ul li.contact.sfhover ul {
    left: auto;
    right: 0px;
    margin: 0;
  }
  /*nav.horizontal ul li { float:none; }*/
  /*dealt with in previous code*/
  /* ==================================================================
	slideshow
=================================================================== */
  #slideshow {
    width: 100%;
    margin-top: 0;
    border: none;
    /*position:fixed;top:0;z-index:-1;*/
  }
  #slideshow #home-slideshow {
    position: relative;
    /*.static{ max-width:2000px; }*/
    /*for subpage images that look like the slideshow*/
  }
  #slideshow #home-slideshow.slideshow {
    width: 100%;
    margin: 0 auto;
  }
  #slideshow #home-slideshow.slideshow .cycle-slideshow {
    margin-top: 0;
    left: 50%;
    width: 2000px;
    margin: 0 -1000px;
  }
  #slideshow #home-slideshow .slideshow-item {
    /*left:50%; width:2000px; margin:0 -1000px;*/
    /*full width slideshow CYCLE2*/
  }
  #slideshow .container {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 -502px;
    z-index: 400;
  }
  #slideshow .cycle-caption a.slogan {
    width: 363px;
    position: absolute;
    right: 0;
    top: 466px;
  }
  #slideshow .cycle-caption a.slogan.slide2 {
    color: #003494;
    border-color: #003494;
  }
  #slideshow .cycle-caption a.slogan.slide3 {
    color: #553d2d;
    border-color: #553d2d;
  }
  #slideshow .cycle-caption a.slogan.slide5 {
    color: #553d2d;
    border-color: #553d2d;
  }
  /*callouts*/
  #callouts {
    padding: 4.1em 0 4.4em;
  }
  #callouts a {
    letter-spacing: 0.11em;
    height: 151px;
    width: 300px;
    margin: 0 24px;
    padding: 0;
  }
  #callouts a .topic {
    bottom: 22%;
  }
  #callouts a:hover .topic {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  #callouts a:hover .fa {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
  }
  /*co-plus*/
  /*spotlight*/
  #spotlight {
    padding: 5em 0;
  }
  /*toy*/
  #toy {
    padding: 5.1em 0 6.25em;
  }
  #toy h2 {
    margin: 0 0 1.52em;
  }
  #toy #per-slide-template a {
    letter-spacing: 0.1em;
  }
  /* ==================================================================
	bd || content || sidebar
=================================================================== */
  #sidebar {
    margin-right: 1px;
  }
  /* ==================================================================
ip-sub 
=================================================================== */
  #ip-sub {
    padding: 10.9em 0 3.9em;
  }
  #ip-sub a {
    margin: 0;
  }
  #ip-sub span {
    display: inline-block;
    margin: 0 0.4em;
  }
  /*co-marks*/
  /*#co-marks{ padding:2.3em 0 6.5em;
	a, a[class]{ max-width:none;margin:0 38px; }
}*/
  /*footer*/
  /*location*/
  #location {
    padding: 1.6em 0;
  }
  #location .ft-logo {
    width: 329px;
    top: 5px;
    left: 3px;
  }
  #location .addy {
    letter-spacing: 0.04em;
  }
  /*links*/
  #links span {
    margin: 0 0.4em;
  }
  
  .slick-prev,
	.slick-next { 
		display: inline-block !important;
	}

  
  /*back-to-top*/
  /*tnav*/
  /*
#tnav{ margin:0;.left;.auto;
	a{ margin:0;.inline-block;.auto; }
	span{ .inline-block; }
}
*/
  /*END*/
}
/* ie nonsense */
/***********************************************
target ie10: .ie10
target ie11: html[data-useragent*='Trident/7.0']
***********************************************/
.ie8 {
  /*#main-nav a[id]{ .ls(normal); &:before{ .hide; } }
	#main-nav ul li.active > a[id]:before, #main-nav ul li:hover > a[id]:before{ .show; }*/
}
.ie8 .container {
  width: 100%!important;
}
.ie8 #main-nav a#about-us {
  width: 44px;
}
.ie8 #main-nav a#for-new-patients {
  width: 60px;
}
.ie8 #main-nav a#wearing-braces {
  width: 61px;
}
.ie8 #main-nav a#orthodontic-treatments {
  width: 96px;
}
.ie8 #main-nav a#invisalign {
  width: 84px;
}
.ie8 #main-nav a#my-life-my-smile {
  width: 64px;
}
.ie8 #main-nav a#contact-us {
  width: 61px;
}
.ie8 #main-nav ul ul li a {
  letter-spacing: normal;
}
.ie8 .slick-track > div {
  float: left;
}
.ie8 #slideshow .cycle-caption a.slogan:hover,
.ie9 #slideshow .cycle-caption a.slogan:hover,
.ie8 #callouts a:hover,
.ie9 #callouts a:hover,
.ie8 .toy-btn:hover,
.ie9 .toy-btn:hover {
  background: #6e9ce9;
}
