@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Lato:400,300,700,900,900italic,700italic);
/*Prefix Import*/
/* ===============================================
	
	zak-efraim4
	
	Sesame Communications - (c) 2015	
	Written by: Vita Stillion
	All rights reserved.
	Any reproduction or intentional misuse is strictly prohibited
	
=============================================== */
/*Colors */
/*bodyfont*/
/*pink - h1*/
/* h2, tagline */
/*light blue - body bg*/
/*blue - nav bg*/
/*div.hr*/
/*white*/
/*black*/
/* ===============================================
					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!important;
}
.supp {
  font-variant: small-caps;
}
.normal {
  /*text-transform:none!important;*/
  font-style: normal!important;
}
.mini {
  font-size: 10px!important;
  font-size: 1.0rem!important;
}
.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*/
.mclear {
  clear: both;
  width: 100%;
}
/* tablet and desktop are [ clear:none width:auto ] */
.wimp {
  width: 100%!important;
}
.wall {
  width: 100%;
}
.hall {
  width: 50%;
}
.troll {
  width: 33%;
}
.auto {
  width: auto;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.clear {
  clear: both;
}
.clearleft {
  clear: left;
}
.clearright {
  clear: right;
}
.noclear {
  clear: none;
}
.behave {
  display: block;
  float: left;
}
.rehave {
  display: block;
  float: right;
}
.restrain {
  width: auto;
  float: none;
  display: inline-block;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.left {
  float: left;
}
.right {
  float: right;
}
.nofloat {
  float: none;
}
.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;
}
.trans2 {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.no-trans {
  -webkit-transition-duration: 0;
  -moz-transition-duration: 0;
  -o-transition-duration: 0;
  -ms-transition-duration: 0;
  transition-duration: 0;
}
.fade {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}
.round {
  border-radius: 50%;
}
/*functional mixins*/
.vertical-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ghost {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=(0));
  opacity: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.ghost:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
/* ===============================================
	fonts
=============================================== */
html {
  font-size: 62.5%;
}
/*font reset for rem units*/
.font-g {
  font-family: Georgia, "Times New Roman", Times, serif;
}
.font-l {
  font-family: 'Lato', sans-serif;
}
.font-oc {
  font-family: 'Open Sans Condensed', sans-serif;
}
.font-v {
  font-family: 'Verdana', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
/* ===============================================
Basic Stylings
These will affect every size of the site.
=============================================== */
* {
  -webkit-font-smoothing: antialiased;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*GLOBAL OVERRIDES*/
.fa {
  vertical-align: 0;
}
nav ul li a {
  padding: 0;
}
address,
div.address {
  margin-bottom: 0;
  line-height: inherit;
  font-style: inherit;
}
/* Body */
body {
  line-height: 24px;
  line-height: 2.4rem;
  font-size: 14px;
  font-size: 1.4rem;
  color: #37393b;
  background: #ffffff;
  overflow: hidden;
}
p {
  margin: 0 0 1.65em;
  /*global override*/
  /*text-align:justify;*/
}
/* Links */
a {
  text-decoration: none;
}
a:hover,
a.active {
  text-decoration: none;
}
#content a {
  font-weight: 700;
  color: #008fc8;
  text-decoration: none;
}
#content a:hover {
  text-decoration: underline;
}
a:hover img {
  /*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";opacity:0.8;*/
}
/* h-fam */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  text-align: left;
  color: #1b1360;
  margin: 0 0 0.4em;
}
h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 35px;
  line-height: 3.5rem;
  font-size: 35px;
  font-size: 3.5rem;
  color: #af075b;
}
h2 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
}
h3 {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #2f3133;
}
h4 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #be3026;
}
h5 {
  font-size: 15px;
  font-size: 1.5rem;
}
h6 {
  font-size: 14px;
  font-size: 1.4rem;
}
/* List Styling */
#content ul {
  margin: 0 0 1.47em 2.1em;
}
/*global override*/
#content ul li {
  list-style: disc outside;
  /*list-style-image:none;*/
}
.home #content ul li {
  line-height: 27px;
  line-height: 2.7rem;
}
.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;
}
/* ==================================================================
	header
=================================================================== */
#hd {
  text-align: center;
  padding: 0;
  margin-top: 50px;
  padding: 15px 0;
  /* ===============================================
					unav
=============================================== */
  /*#utility-nav {
	
	ul { 
		.fs(1.4);
		.lh(1.4);
		color:@color3;
		width:auto;
		
		li { 
			.auto;
			.inline-block;
			height:40px;
			margin:0;
			
			a { 
				.trans;
				.lt;
				color:@color3;
				width:100%;
			}
			
			a:hover {  color:@color1; }
		}
		
		li.last{ margin:0; }
	}
}*/
  /*end utility*/
}


#hd a {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#hd #logo {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  margin-bottom: 15px;
  max-width: 218px;
}
#hd #logo a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
#hd #contact-info {
  line-height: 14px;
  line-height: 1.4rem;
}
#hd #contact-info a {
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  color: #484949;
}
#hd #contact-info .phone {
  display: block;
  font-weight: 700;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 30px;
  line-height: 3rem;
  color: #484949;
}
#hd #contact-info span {
  line-height: 22px;
  line-height: 2.2rem;
  text-transform: uppercase;
  display: block;
  color: #049b4c;
}
#hd #contact-info a:hover {
  color: #049b4c;
}
#hd #contact-info .left, #hd #contact-info .right {
  float: none;
}

.appt{margin: 15px auto 0;padding: 10px 15px 10px;width: 209px;/* font-weight: bold; */line-height: 18px;border-bottom: 3px solid #fcdd81;box-shadow: 0px 14px 0 -10px #efefef;-moz-box-shadow: 0px 14px 0 -10px #efefef;-webkit-box-shadow: 0px 14px 0 -10px #efefef;background: #fcbd00;color:#af075b;}
#hd .appt a{
	line-height:22px;
	line-height: 3rem;
	font-size:14px;
	font-size:1.4rem;
	text-transform:uppercase;
	display:block;
	height:22px;
	color:#fff;
}

#hd .appt a:hover{ color:#af075b; }

/*end #hd*/
/* ===============================================
					social-media 
=============================================== */
.social-media img,
.social-media .ib {
  vertical-align: top;
}
/*global override*/
.container {
  max-width: 1000px;
}
.social-media {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  height: 28px;
  padding: 0;
  background: none;
}
.social-media a {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  display: inline-block;
  line-height: 28px;
  line-height: 2.8rem;
  font-size: 18px;
  font-size: 1.8rem;
  height: 28px;
  width: 28px;
  color: #ffffff;
  margin: 0 4px;
  vertical-align: top;
}
.social-media a:last-child {
  margin-right: 0;
}
.social-media a.google .fa {
  /*.va(-2px);*/
  line-height: 16px;
  line-height: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.social-media a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}
/* ==================================================================
							main-nav
=================================================================== */
#main-nav {
  background: #008fc8;
  text-align: center;
  padding: 0;
  margin: 0;
  height: 50px;
  width: 100%;
  clear: both;
  position: absolute;
  z-index: 600;
  top: 0;
}
#main-nav .container {
  height: 50px;
  width: 100%!important;
  padding: 0;
}
#main-nav .trigger {
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 50px;
  line-height: 5rem;
  color: #ffffff;
  background: none;
  padding: 0;
  margin: 0 auto;
  height: 50px;
  width: 100%;
  /*default 100%*/
  position: relative;
  z-index: 600;
}
#main-nav a:hover.trigger,
#main-nav li.active a.trigger,
#main-nav li:hover a.trigger,
#main-nav ul li a:active.trigger,
#main-nav .open .trigger {
  text-decoration: none;
  color: #ffffff;
  background: #007daf;
}
#main-nav ul {
  width: 100%;
  background: #00b3fb;
  /*margin-top:3px;*/
  padding: 1em 0;
  position: relative;
  z-index: 590;
  /* ===============================================
					flyouts 
=============================================== */
}
#main-nav ul li {
  display: inline-block;
}
#main-nav ul li a[id] {
  text-transform: uppercase;
  line-height: 40px;
  line-height: 4rem;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 0;
  height: 40px;
}
#main-nav ul li.active > a[id],
#main-nav ul li:hover > a[id] {
  color: #1b1360;
}
#main-nav ul ul {
  padding: 6px 0;
  width: 100%;
  float: left;
  background: #008fc8;
}
#main-nav ul ul li {
  width: 100%;
  background: none;
  border: none;
  float: left;
}
#main-nav ul ul li a {
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  line-height: 40px;
  line-height: 4rem;
  /*default 40*/
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: normal;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  width: 100%;
  /*usually 100%*/
  height: 40px;
  /*default 40*/
  /*margin:0;*/
  background: none;
}
#main-nav li.active li a,
#main-nav li:hover li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  margin-bottom: 0;
  background: 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: none;
  color: #ffffff;
  background: #FCBD00;
  display: block;
  margin-bottom: 0;
}
/* ==================================================================
	slideshow
=================================================================== */
#slideshow {
  border-bottom: solid 6px #d388bd;
}
#slideshow .container {
  padding: 0;
}
#slideshow #home-slideshow.slideshow {
  width: 300%;
  margin-left: -140%;
}
#tagline {
  font-weight: 300;
  font-size: 30px;
  font-size: 3rem;
  line-height: 30px;
  line-height: 3rem;
  text-align: center;
  color: #1b1360;
  background: #fbe001;
  background: rgba(251, 224, 1, 0.7);
  padding: 20px 0;
}
#tagline .span1 {
  font-weight: 400;
}
#tagline .span2 {
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 35px;
  font-size: 3.5rem;
}
#tagline .span3 {
  font-weight: 900;
  font-style: italic;
  font-size: 40px;
  font-size: 4rem;
}
#tagline .container > div .first,
#tagline .container > div .last {
  display: inline-block;
}
/* ==================================================================
	callouts
=================================================================== */
#callouts {
  text-align: center;
  margin-top: 10px;
}
#callouts .container {
  padding: 15px 0;
}
#callouts a {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-transform: uppercase;
  vertical-align: top;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #ffffff;
  width: 183px;
  height: 111px;
  margin-bottom: 15px;
  padding: 20px 0 0;
  background-repeat: no-repeat;
}
#callouts a span {
  font-weight: 700;
  display: block;
}
#callouts a.appointment {
  letter-spacing: 0.2em;
  color: #4d4d4d;
  background-image: url(../images/callouts/appointment-request.png);
  background-position: center 81%;
  margin-bottom: 25px;
  padding-top: 0;
  height: auto;
}
#callouts a.appointment:hover {
  color: #af075b;
}
#callouts a.information {
  background-image: url(../images/callouts/patient-information.png);
}
#callouts a.office-tour {
  background-image: url(../images/callouts/office-tour.png);
}
#callouts a.office-tour span {
  letter-spacing: 0.2em;
}
#callouts a.invisalign {
  letter-spacing: 0.05em;
  background-image: url(../images/callouts/invisalign.png);
}
#callouts a.invisalign:hover {
  color: #af075b;
}
#callouts a span {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 20px;
  font-size: 2rem;
  line-height: 26px;
  line-height: 2.6rem;
  margin-bottom: 2px;
}
#callouts a img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;


  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
/*
#callouts a:hover {
  color: #37393b;
}
*/
#callouts a:hover img {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
/* ==================================================================
	ip-sub
=================================================================== */
#ip-sub {
  font-family: 'Verdana', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  text-align: center;
  line-height: 20px;
  line-height: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
  color: #454545;
  border-top: solid 1px #90cee3;
  border-bottom: solid 1px #90cee3;
}
#ip-sub .container {
  padding: 20px 0;
}
#ip-sub p {
  padding: 0;
  margin: 0;
}
#ip-sub p.subnav {
  padding: 0 2%;
}
#ip-sub span {
  margin: 0 0.1em;
}
#ip-sub h2 {
  font-weight: 400;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: center;
  text-transform: none!important;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  color: #af075b;
  margin-bottom: 17px;
}
#ip-sub a {
  line-height: 20px;
  line-height: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
  color: #454545;
}
#ip-sub a.active,
#ip-sub a:hover {
  color: #049b4c;
}
/* ==================================================================
	content
=================================================================== */
#bd {
  padding: 0 0 30px;
}
#bd .container {
  max-width: 980px;
}
#bd #content {
  font-family: 'Verdana', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
#sidebar {
  /*display:none;*/
  width: 100%;
  /*max-width:250px;*/
  margin: 15px auto;
  padding: 0;
}
/*.home #sidebar, */
body[class^='meet-dr-'] #sidebar,
.meet-the-doctor #sidebar,
.blog #sidebar,
.our-blog #sidebar {
  display: block;
}
.validation-only {
  margin: 0;
  padding: 0;
  height: 0;
}

.insurance-block{width:100%; margin:0px;}


/* ===============================================
					sitepics 
=============================================== */
/*.static { 
	.wall;
	margin-bottom:25px;
	width:323px;
}
*/
.staff {
  float: right;
  width: 45%;
  max-width: 180px;
  margin: 0 0 0.8em 0.8em;
  border-radius: 12px;
}
.img-right,
.img-left {
  padding: 0;
  border: none;
}
.team {
  max-width: 460px;
}

/*********************************************************************
	affiliations
*********************************************************************/
#affiliations{  width:100%; text-align:center; margin-left:auto; margin-right:auto; clear:both; }
#affiliations img{ float:left; margin-right:3.7%;margin-bottom:15px;  }



/* ==================================================================
	Sitemap
=================================================================== */
body.sitemap #content ul {
  margin-left: 0;
  list-style: none;
}
body.sitemap #content ul li {
  margin-bottom: 1.45em;
  list-style: none;
}
body.sitemap #content ul li a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  font-size: 2.2rem;
  color: #1b1360;
  text-decoration: none;
}
body.sitemap #content ul ul {
  padding-left: 0;
  margin: 0;
}
body.sitemap #content ul ul li {
  list-style: none;
  margin-bottom: 0;
  margin-left: 25px;
  /*default=15px*/
}
body.sitemap #content ul ul li a {
  font-size: 15px;
  font-size: 1.5rem;
  color: #1b1360;
  font-weight: 400;
  text-transform: none!important;
  margin-left: 0;
  /*to increase space adjust li, margin-left, above*/
}
body.sitemap #content ul a:hover {
  text-decoration: underline;
}
/* ==================================================================
	footer

=================================================================== */
#ft {
  text-align: center;
  background: #008FC8;
  /*ft-right*/
}
#ft .container {
  padding-bottom: 25px;
}
#ft a {
  color: #ffffff;
  text-transform: uppercase;
}
#ft a:hover {
  color: #af075b;
}
	
#ft h2 {
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #ffffff;
}
#ft a#back-to-top {
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin: -22px auto 23px;
}
#ft a#back-to-top:hover {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#ft p.text-nav {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2.0rem;
  margin: 0;
  padding: 20px 0 40px;
}
#ft p.text-nav a {
  font-weight: 900;
  display: block;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
  margin: 0 15px;
}
#ft .affiliations h2 {
  margin-bottom: 20px;
}
#ft .affiliations a {
  display: inline-block;
  padding: 0 8px;
  margin-bottom: 17px;
}
#ft .affiliations a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}
#ft .ft-right {
  margin-top: 25px;
}
#ft .ft-right #locations h2 {
  margin-bottom: 15px;
}
.ft-location .addy {
	margin-bottom: 10px;
}
#ft .ft-right #locations .map img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
#ft .ft-right #locations a:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}

#habla_window_div.habla_window_div_base {
    display: none !important;
    z-index: 99999999;
}

#ft-links {
  padding: 15px;
  text-align: center;
  background: rgba(255,255,255,0.65);
}
#ft-links a {
  margin: 5px;
}
#ft-links a.btn {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 41px;
  line-height: 4.1rem;
  text-transform: uppercase;
  display: inline-block;
  color: #ffffff;
  background: #af075b;
  -webkit-box-shadow: 0px 13px 0 -11px #af90a0;
  box-shadow: 0px 13px 0 -11px #af90a0;
  -webkit-box-shadow: 0px 13px 0 -11px rgba(175, 7, 91, 0.1);
  box-shadow: 0px 13px 0 -11px rgba(175, 7, 91, 0.1);
  height: 43px;
  border-bottom: solid 3px #99024d;
  padding: 0 5px;
}
#ft-links a.btn:hover {
  background: #7e0542;
}
#ft-links a.facebook-like {
  background: none;
  border: none;
  margin-top: 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#ft-links a.facebook-like:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=(70));
  opacity: 0.7;
}


/*end #ft*/
/* ==================================================================
	#links
=================================================================== */
#links {
  color: #444343;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  padding: 18px 0px 10px;
  /*sesame link*/
}
#links a {
  display: inline-block;
  letter-spacing: 0.02em;
  color: #8a8a8a;
}
#links a:hover {
  color: #000000;
}
#links a#sesame-link {
  height: 32px;
  padding: 0 0 0 32px;
  background: url(../images/icons/sesame.png) no-repeat 0 2px;
}
/*end links*/
/*superlative*/
/************************************************************************************************************************************************/
/* div.hr */
div.hr {
  width: 100%;
  height: 1px;
  margin: 17px auto 18px;
  padding: 0;
  clear: both;
  border: none;
  background: #90908f;
}
hr {
  display: none;
  height: 0px;
}
.meet-the-team hr { 
	display: block;
	height: 1px;
	background: #90cee3;
	margin-bottom: 1.8em;
}
.success {
  text-transform: none;
  font-weight: 400;
  color: #ffffff;
  padding: 16px;
  float: left;
  background: #af075b;
}
/* button colors */
form button {
  text-transform: uppercase;
  letter-spacing: normal;
  color: #ffffff;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #af075b;
  border: 1px solid #af075b;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  transition-duration: 0.8s;
  /*border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;*/
}
form button:hover {
  color: #af075b;
  border-color: #af075b;
  background-color: transparent;
}
form p {
  height: auto;
}
/* ==================================================================
			other slideshows
=================================================================== */
#content .slideshow-nav,
#invisalign-footer h3,
#pro-pack #invisalign-footer h3,
#suresmile-footer h3 {
  background: #af075b;
}
#content .slideshow-nav a {
  color: #1b1360;
  text-decoration: none;
}
#content .slideshow-nav a:hover,
#content .slideshow-nav li.slideshow-active-page a {
  text-decoration: none;
  color: #ffffff;
}
.office-tour.slideshow,
.before-and-after.slideshow {
  margin-bottom: 3em;
}
#content ul.slideshow {
  margin: 0 auto;
}
#before-after-container,
div.office-tour {
  margin-bottom: 5%;
  max-width: 464px;
  padding: 0;
}
.before-and-after.slideshow img {
  display: inline-block;
}
.before-and-after.slideshow p,
.office-tour.slideshow p {
  display: block;
  text-align: center;
  padding: 1% 0;
  background: #fff;
  clear: both;
  min-height: 45px;
  margin: 0;
}
.office-tour.slideshow .slideshow-pagination,
.before-and-after.slideshow .slideshow-pagination {
  margin: 0 20%;
}
/*common procedures styles*/
p#procedures-nav {
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #37393b;
  padding-bottom: 1em;
  margin-bottom: 3em;
  border-bottom: 1px solid #fff;
}
p#procedures-nav a {
  color: #37393b;
}
p#procedures-nav a:hover {
  text-decoration: none;
  color: #1b1360;
}
/*********************************************************************/
/*embedded videos*/
/*********************************************************************/
/*keeps videos from getting too hooj*/
.embed-container {
  width: 100%;
}
.embed-container.ratio16x9,
.embed-container.docvid {
  padding-bottom: 46%;
}
.before-and-after .embed-container,
.testimonials .embed-container {
  margin-left: auto;
  margin-right: auto;
}
.clarity-sl .embed-container {
  padding: 0 0 10% 0;
  width: 60%;
}
.clarity-sl .embed-container a {
  line-height: 70px;
  line-height: 7.0rem;
}
/*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*/
.contact .embed-container,
.bracetown-orthodontics .embed-container,
body[class*="office"] .embed-container,
body[class*="location"] .embed-container {
  width: auto;
  margin-top: 2em;
  padding-bottom: 55%;
  /*default 55%*/
  /*padding-bottom adjusts height of google map*/
}
h3.hours {
  margin-top: 2em;
}
.location-page,
table.office-hours {
  margin-bottom: 2em;
}
p.office-hours {
  margin-bottom: 0;
}
.office-info,
.office-location table {
  margin-bottom: 2em;
}
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;
}
/*hides p tag under slideshow*/
#invisalign-before-after p {
  display: none;
}
.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: #333;
}
/*invisalign footer*/
#invisalign-footer,
#suresmile-footer {
  max-width: none;
  width: 100%;
}
#pro-pack #invisalign-footer {
  width: 90%;
  float: none;
  margin: 1em auto;
}
#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;
}
/*.damon-smile-before-and-after*/
#content #damon-before-after a {
  color: #fff;
  text-shadow: none;
}
#content #damon-before-after a:hover,
#content #damon-before-after li.slideshow-active-page a {
  color: #CC9C54;
}
/* 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: #1b1360;
  font-size: 1.5em;
  margin: 0 0 0.8em;
  font-weight: 400;
  text-align: center;
}
form#blog_search {
  color: #000000;
  position: relative;
  text-align: left;
  width: 275px;
  float: none;
  margin: 0 auto;
}
form#blog_search label {
  color: #37393b;
  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.9);
}
form#blog_search button {
  font-weight: bold;
  font-size: 10px!important;
  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: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.24);
}
/*other forms*/
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="file"] {
  height: 34px;
}

.fb-feed { 
	float:right; margin-left:25px; margin-bottom:15px;
}

.featherlight .featherlight-content {
  border: 2px solid #f5f5f5;
  border-radius: 15px;
}
.lightbox {
  display: none;
}
#featherlight-welcome h2,
#featherlight-welcome h3 {
  color: #a60a51;
}

#featherlight-welcome .button {
  background: #049147;
  color: #fff;
  padding: 0 30px;
  display: inline-block;
  line-height: 40px;
  height: 40px;
  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;
}

#featherlight-welcome .button:hover {
  background: #fcb405;
}

#smilecheck {
    color: #1783ce;
    line-height: 2.125;
    font-size: 20px;
    width: 12.17em;
    height: 2.625em;
    margin: 0 0 -6.08em;
    background: none!important;
    position: fixed;
    left: -4.8em;
    bottom: 50%;
    z-index: 3000;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: rotate(90deg);
}

#smilecheck a {
    width: 11.225em;
    height: 2.625em;
    padding: 0;
    line-height: 2.625em;
    background-color: #049147;
    color: #fff;
    text-decoration: none;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3000;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}
#smilecheck a img {
  height: 2.625em;
  vertical-align: top;
  line-height: 2.625em;
  margin-right: 10px;
}
#smilecheck a:hover {
  background: #0084c1;
}
#smilecheck a:hover img {
  opacity: 1;
}

/* ==================================================================
	pop-up
=================================================================== */

.popup-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 28px;
    background-color: #00b3fb;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    box-shadow:0 2px 6px rgba(0,0,0,.38); 
    z-index:5000;
}

.location-button {
  display:inline-block;
    padding: 10px 28px;
    background-color: #00b3fb;
    color: #fff;
    width:200px;
    border: none;
    margin:5px;
    text-decoration:none;
    cursor: pointer;
    font-size: 18px;
    box-shadow:0 2px 6px rgba(0,0,0,.38); 
    outline:none !important;
}

.location-button:hover {
    padding: 10px 28px;
    background-color: #fcdd81;
    color: #fff;
    border: none;
    margin:5px;
    text-decoration:none;
    cursor: pointer;
    font-size: 18px;
    box-shadow:0 2px 6px rgba(0,0,0,.38); 
}

.location-button a {
  color:#fff;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: .7em 4em;
  margin: -3em;
}  

/* Hidden by default */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index:5000;
}

.popup-content {
  width: 90vw;
  max-width: 400px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}
.weave-modal {
  width: 90%;
  max-width: 700px;
  height: 95%;
  max-height: 750px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.weave-modal iframe {
  width: 100%;
  flex: 1;
  border: none;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

/************************************************************************************************************************************************/
/*end superlative*/
/* ===============================================
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) {
  #callouts a {
    display: inline-block;
    margin: 0 5px 15px;
  }
}
/* ===============================================
Tablet / Desktop Stylings
Supports 48em (768px) and up
=============================================== */
@media only screen and (min-width: 48em) {
  /**************************************/
  /*          superlative            */
  /**************************************/
  /*keeps videos from getting too hooj*/
  .embed-container {
    width: 60%;
    padding-bottom: 30%;
  }
  .embed-container.ratio16x9,
  .embed-container.docvid {
    padding-bottom: 30%;
  }
  /*invisalign footer*/
  #pro-pack #invisalign-footer {
    width: 100%;
    float: left;
  }
  #pro-pack #invisalign-footer ul {
    float: left;
  }
  #pro-pack #invisalign-footer a.external,
  #pro-pack #invisalign-footer p.cf {
    float: right;
    clear: right;
  }
  /*hfam*/
  /*hd*/
  #hd {
    padding-bottom: 0;
    border-bottom: solid 6px #d388bd;
  }
  #hd .container {
	background-image: url(../images/hd-divider.png);
    background-repeat: no-repeat;
    background-position: 260px center;
	min-height: 200px;
  } 
  #hd #logo {
    width: auto;
    float: left;
  }
  #hd .location {
    /* display: inline-block; */
    margin: 0 5px;
  }
  #hd .hd-links {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 15px;
  }
  #hd #contact-info {
    margin-top: 36px;
    margin-left: 50px;
    width: 260px;
    float: left;
  }
  #hd #contact-info .left {
    float: left;
  }
  #hd #contact-info .right {
    float: right;
  }
  .home #hd {
    border: none;
  }
  .appt {
    margin-top: 26px;
    margin-right: 0;
  }

  /**************************************/
  /*             slideshow              */
  /**************************************/
  #slideshow {
    position: relative;
    z-index: 1;
    /*full width slideshow*/
  }
  #slideshow #home-slideshow.slideshow {
    width: 100%;
    margin: 0;
  }
  /**************************************/
  /*              #callouts              */
  /**************************************/
  #callouts {
    position: relative;
    z-index: 2;
  }
  #callouts .container {
    padding: 0;
  }
  #callouts a {
    margin-bottom: 41px;
    margin-left: -7px !important;
  }
  /**************************************/
  /*              #ip-sub                */
  /**************************************/
  #ip-sub {
    text-align: left;
    border: none;
  }
  #ip-sub h2 {
    text-align: left;
  }
  #ip-sub a {
    display: block;
  }
  #ip-sub span {
    display: none;
  }
  /**************************************/
  /*              content                */
  /**************************************/
  #bd {
    padding: 20px 0;
  }
  #content {
    padding-top: 18px;
    min-height: 400px;
    width: 69%;
    float: right;
    text-align: justify;
  }
  .home #bd #content {
    /*.center;*/
    min-height: 0;
    /*padding:0; 
		max-width:720px;
		float:none;
		width:80%;
*/
    /*text-align:justify; */
  }
  /*content*/
  /*body[class*='acceledent'] #content,
body[class^='before-'] #content,
body.bonding #content,
body.brace-painter #content,
body.braces-diagram #content,
body.bridges #content,
body.carriere-distalizer-appliance #content,
body.clarity-sl #content,
body.clearcorrect #content,
body[class^='common-'] #content,
body.common-orthodontic-issues #content,
body.crowns #content,
body[class^='damon-'] #content,
body.dentures #content,
body.digital-x-rays #content,
body[class*='empower'] #content,
body.e4d-dentist #content,
body.extractions #content,
body[class*='forsus'] #content,
body.gum-disease #content,
body.home #content,
body.i-cat #content,
body.incognito #content,
body.in-ovation #content,
body[class*='in-ovation'] #content,
body[class*='invisalign'] #content,
body.itero-digital-impression-system #content,
body.juvederm-xc #content,
body.meet-the-team #content,
body.meet-our-team #content,
body.meet-the-staff #content,
body.meet-our-staff #content,
body.minimaster #content,
body.mouthguards #content,
body.mtm-no-trace #content, 
body.office-tour #content,
body.around-our-office #content,
body.palatal-expander #content,
body.patient-care-videos #content,
body.propel-orthodontics #content,
body.retainer-instructions #content,
body.retainers #content,
body.sealants #content,
body.sitemap #content,
body.slimline-palatal-expander #content,
body.smiles-change-lives #content,
body.smartclip #content,
body.solea-dental-laser #content,
body.somnodent-sleep-apnea-appliance #content,
body[class*='suresmile-'] #content,
body.tap-appliance #content,
body[class^='trudenta-'] #content,
body.headache-symptoms-and-causes #content,
body[class^='types-of'] #content,
body.the-wand-sta #content,
body.veneers #content,
body.wildsmiles #content,
body.wisdom-teeth #content,
body.my-life-my-smile-my-orthodontist #content,
body.your-child-s-first-orthodontic-checkup #content,
body.aao-testimonials #content,
body.ortho-tv #content,
body.our-orthodontic-team #content
{ width:100%;max-width:none; }*/
  /*default 100%*/
  div[class^='hp-column-'] {
    display: block;
    /*padding-bottom:3em;*/
  }
  div[class^='hp-column-'][class*='left'] {
    float: left;
    width: 48.5%;
    max-width: 460px;
  }
  div[class^='hp-column-'][class*='right'] {
    float: right;
    width: 48.5%;
    max-width: 460px;
  }
  
  .insurance-block{width:45.5%; margin:0 10px; display:inline-block}

  /**************************************/
  /*              sidebar                */
  /**************************************/
  body #bd #sidebar {
    float: left;
    display: block;
    width: 27%;
    margin: 0;
    max-width: 323px;
    border-left: solid 1px #90cee3;
  }
  /*sidebar*/
  /*body[class*='acceledent'] #bd #sidebar,
body[class^='before-'] #bd #sidebar,
body.bonding #bd #sidebar,
body.brace-painter #bd #sidebar,
body.braces-diagram #bd #sidebar,
body.bridges #bd #sidebar,
body.carriere-distalizer-appliance #bd #sidebar,
body.clarity-sl #bd #sidebar,
body.clearcorrect #bd #sidebar,
body[class^='common-'] #bd #sidebar,
body.common-orthodontic-issues #sidebar,
body.crowns #bd #sidebar,
body[class^='damon-'] #bd #sidebar,
body.dentures #bd #sidebar,
body.digital-x-rays #bd #sidebar,
body[class*='empower'] #bd #sidebar,
body.e4d-dentist #bd #sidebar,
body.extractions #bd #sidebar,
body[class*='forsus'] #bd #sidebar,
body.gum-disease #bd #sidebar,
body.home #bd #sidebar,
body.i-cat #bd #sidebar,
body.incognito #bd #sidebar,
body.in-ovation #bd #sidebar,
body[class*='invisalign'] #bd #sidebar,
body.itero-digital-impression-system #bd #sidebar,
body.juvederm-xc #bd #sidebar,
body.meet-the-team #bd #sidebar,
body.meet-our-team #bd #sidebar,
body.meet-the-staff #bd #sidebar,
body.meet-our-staff #bd #sidebar,
body.minimaster #bd #sidebar,
body.mouthguards #bd #sidebar,
body.mtm-no-trace #bd #sidebar,
body.office-tour #bd #sidebar,
body.around-our-office #bd #sidebar,
body.palatal-expander #bd #sidebar,
body.patient-care-videos #bd #sidebar,
body.propel-orthodontics #bd #sidebar,
body.retainer-instructions #bd #sidebar,
body.retainers #bd #sidebar,
body.sealants #bd #sidebar,
body.sitemap #bd #sidebar,
body.slimline-palatal-expander #bd #sidebar,
body.smiles-change-lives #bd #sidebar,
body.smartclip #bd #sidebar,
body.solea-dental-laser #bd #sidebar,
body.somnodent-sleep-apnea-appliance #bd #sidebar,
body[class*='suresmile'] #bd #sidebar,
body.tap-appliance #bd #sidebar,
body[class^='trudenta-'] #bd #sidebar,
body.headache-symptoms-and-causes #bd #sidebar,
body[class^='types-of-'] #bd #sidebar,
body.the-wand-sta #bd #sidebar,
body.veneers #bd #sidebar,
body.wildsmiles #bd #sidebar,
body.wisdom-teeth #bd #sidebar,
body.my-life-my-smile-my-orthodontist #bd #sidebar,
body.your-child-s-first-orthodontic-checkup #bd #sidebar,
body.aao-testimonials #bd #sidebar,
body.ortho-tv #bd #sidebar,
body.our-orthodontic-team #sidebar
{ display:none; }
*/
  /**************************************/
  /*              sitemap                */
  /**************************************/
  body.sitemap .width1 {
    width: 50%;
    /*default 50%*/
  }
  /**************************************/
  /*              footer                */
  /**************************************/
  #ft .ft-left,
  #ft .ft-right {
    width: 50%;
    display: inline-block;
  }
  #ft .ft-left {
    float: left;
  }
  #ft .ft-right {
    float: right;
    margin: 0;
  }
  /*#ft p.text-nav a {
    display: inline-block;
  }*/
}
/*end mobile/tablet*/
/* ===============================================
Desktop Only Stylings
Supports 64em (1024px) and up
=============================================== */
@media only screen and (min-width: 64em) {
  /*********************************************************************
	global
*********************************************************************/
  /*hfam*/
  h1 {
    line-height: 40px;
    line-height: 4rem;
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 60px;
  }
  .home h1 {
    margin-bottom: 53px;
  }
  #sticky {
    /*	padding:0;
	position:fixed;
	.wall; 
	background:@color3;
	z-index:3000;  
*/
  }
  /*HD*/
  #hd {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 3000;
    border: none;
  }
  #hd .container {
    padding: 0;
  }
  #hd #logo {
    float: left;
    margin: 18px 0 0 17px;
  }
  #hd #contact-info {
    text-align: left;
    position: absolute;
    top: 10px;
    left: 290px;
    width: 400px;
  }
  #hd #contact-info .left, #hd #contact-info .right {
    width: 50%;
  }
    
  #hd .social-media {
    margin-top: 4px;
    background-position: left top;
    background-repeat: no-repeat;
    height: 40px;
    position: relative;
    right: 0;
}
  
  #hd .social-media a {
    margin-bottom: 5px;
  }

  /* ==================================================================
	main-nav
=================================================================== */
  #main-nav {
    padding: 0;
    position: relative;
    height: 60px;
    z-index: 3100;
    /**************************************/
    /*	special drop Locations		*/
    /**************************************/
  }
  #main-nav .container {
    background: none;
  }
  #main-nav .collapsible {
    margin: 0 auto;
  }
  #main-nav ul {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
    float: none;
    /*<def-none*/
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    /* ===============================================
					flyouts 
=============================================== */
  }
  #main-nav ul li {
    height: 64px;
    float: none;
    margin: 0;
    /*adjust margin for desired space between buttons*/
    padding: 0;
    vertical-align: top;
    margin-top: -6px;
  }
  #main-nav ul li:last-child,
  #main-nav ul li.last {
    /*margin:0; border:none;*/
  }
  #main-nav ul li a[id] {
    font-weight: 400;
    line-height: 70px;
    line-height: 7rem;
    font-size: 16px;
    font-size: 1.6rem;
    /*white-space:nowrap;*/
    text-align: center;
    /*default center */
    color: #ffffff;
    margin: 0;
    padding: 0 11px;
    position: relative;
    z-index: 590;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center -65px;
  }
  #main-nav ul li a[id]:last-child,
  #main-nav ul li a[id].last {
    margin: 0;
  }
  #main-nav ul li a#home {
    width: 73px;
    background-image: url(../images/nav/home.png);
  }
  #main-nav ul li a#about-us {
    width: 105px;
    background-image: url(../images/nav/about-us.png);
  }
  #main-nav ul li a#for-new-patients {
    width: 173px;
    background-image: url(../images/nav/for-new-patients.png);
  }
  #main-nav ul li a#wearing-braces {
    width: 164px;
    background-image: url(../images/nav/wearing-braces.png);
  }
  #main-nav ul li a#about-orthodontics {
    width: 213px;
    background-image: url(../images/nav/about-orthodontics.png);
  }
  #main-nav ul li a#invisalign {
    width: 127px;
    background-image: url(../images/nav/invisalign.png);
  }
  #main-nav ul li a#contact-us {
    width: 124px;
    background-image: url(../images/nav/contact-us.png);
  }
  #main-nav ul li.contact-us {
    /*margin:0;*/
  }
  #main-nav ul li.contact-us a {
    text-align: right;
    padding-right: 10%;
  }
  #main-nav ul li.active > a[id],
  #main-nav ul li:hover > a[id] {
    text-decoration: none;
    color: #ffffff;
    background-position: center top;
  }
  #main-nav ul ul {
    width: 240px;
    height: auto;
    padding: 15px 0;
    position: absolute;
    z-index: 580;
    margin-left: 4px;
  }
  #main-nav ul ul li {
    float: left;
    margin: 0;
    padding: 0;
    width: 105%;
    /*default 100%*/
    height: 26px;
    /*default 25*/
    background: none;
  }
  #main-nav ul ul li a {
    font-family: 'Verdana', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    text-transform: none!important;
    font-weight: 400;
    line-height: 26px;
    line-height: 2.6rem;
    font-size: 13px;
    font-size: 1.3rem;
    text-indent: 12px;
    text-align: left;
    white-space: nowrap;
    height: 27px;
    width: 100%;
    padding: 0;
    margin: 0;
    float: left;
    color: #ffffff;
    /*background:none;*/
    box-shadow: none;
  }
  #main-nav ul li.contact-us ul li a,
  #main-nav ul li.contact ul li a {
    /*		text-align:right; 
		padding-right:10px; 
*/
  }
  #main-nav ul li.contact-us ul {
    /*width:280px; */
  }
  #main-nav ul li.about-orthodontics ul {
    width: 260px;
  }
  #main-nav ul li:hover ul,
  #main-nav ul li.sfhover ul {
    /*left:-10px;*/
    /*top:50px;*/
  }
  #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,
  #main-nav ul li.pediatric:hover ul,
  #main-nav ul li.pediatric.sfhover ul {
    left: auto;
    right: 0;
    margin: 0;
  }
  /* ==================================================================
	slideshow
=================================================================== */
  #slideshow #home-slideshow {
    /*for subpage images that look like the slideshow*/
  }
  #slideshow #home-slideshow.slideshow {
    width: 100%;
    margin: 0 auto;
    z-index: 0;
  }
  #slideshow #home-slideshow .slideshow-item {
    left: 50%;
    width: 2000px;
    margin: 0 -1000px;
    /*width:1001px;*/
  }
  #slideshow #home-slideshow .static {
    max-width: 2000px;
  }
  #tagline {
    font-size: 46px;
    font-size: 4.6rem;
    line-height: 26px;
    line-height: 2.6rem;
    background: none;
    width: 100%;
    padding: 0;
    position: absolute;
    top: 510px;
    z-index: 2;
  }
  #tagline .container {
    padding-left: 20px;
  }
  #tagline .container > div {
    float: left;
    padding: 22px 34px 0 26px;
    width: 465px;
    height: 148px;
    background: url(../images/slideshow/tagline-bg.png) no-repeat center center;
  }
  #tagline .container > div > div {
    display: block;
    width: 100%;
  }
  #tagline .container > div > div.first {
    text-align: left;
  }
  #tagline .container > div > div.last {
    text-align: right;
    margin-top: 14px;
  }
  #tagline .span1 {
    letter-spacing: -0.06em;
  }
  #tagline .span2 {
    line-height: 46px;
    line-height: 4.6rem;
    font-size: 56px;
    font-size: 5.6rem;
    vertical-align: -8px;
  }
  #tagline .span3 {
    font-size: 56px;
    font-size: 5.6rem;
    vertical-align: -5px;
  }
  /* ==================================================================
	#callouts
=================================================================== */
  #callouts {
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
  #callouts a {
    margin-bottom: 22px;
  }
  #callouts a div {
    margin-left: 10px;
  }
  #callouts a.appointment {
    text-align: left;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-left: 7px;
    width: auto;
    max-width: 199px;
    margin-bottom: 29px;
    margin-top: 10px;
  }
  #callouts a.appointment span {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    line-height: 3rem;
    font-weight: 400;
    margin-bottom: 3px;
  }
  /* ==================================================================
	#ip-sub
=================================================================== */
  #ip-sub {
    margin-left: 5px;
  }
  #ip-sub a {
    line-height: 27px;
    line-height: 2.7rem;
  }
  #ip-sub p.subnav {
    padding: 0 0 0 11px;
  }
  /* ==================================================================
	#bd
=================================================================== */
  #bd {
    padding-top: 31px;
  }
  #bd #content {
    padding: 1em 0;
  }
  .home #bd {
    margin-top: 0;
  }
  #content {
    width: 71.5%;
  }
  body #bd #sidebar {
    margin-left: 26px;
    margin-top: -5px;
    width: 25%;
  }
  
  #affiliations{ margin-left:60px;}
  
  /* ==================================================================
	#footer
=================================================================== */
  #ft .container {
    padding: 2px 0 0 0;
  }
  #ft h2 {
    text-align: left;
  }
  #ft p.text-nav {
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 20px;
  }
/*  #ft p.text-nav a {
    margin: 0 18px 0 0;
  }*/
  #ft .ft-left {
    margin-left: 11px;
  }
  #ft .ft-left .affiliations a {
    float: left;
    padding: 0;
  }
  #ft .ft-left .affiliations a.aao {
    margin-right: 107px;
  }
  #ft .ft-left .affiliations a.invisalign-teen {
    margin-right: 120px;
    margin-bottom: 5px;
  }
  #ft .ft-left .affiliations a.propel {
    margin-bottom: 5px;
  }
  #ft .ft-right {
    width: 44.2%;
  }
  #ft #locations {
	margin-bottom: 30px;
  }
  .ft-location {
	text-align: left;
  }
  .ft-location .map {
	display: inline-block;
  }
  #ft .ft-right .addy {
    display: inline-block;
    line-height: 20px;
    line-height: 2rem;
    text-align: left;
    margin-left: 20px;
  }
  #ft .ft-right .map img {
    margin-right: 15px;
  }
  #ft .ft-right .map span {
    font-size: 13px;
    font-size: 1.3rem;
    position: absolute;
    top: 204px;
    left: 590px;
  }
  /*end footer*/
}
/*end desktop*/
/*#utility-nav a.last, #callouts a.last,*/
#contact-info .last,
.social-media a.last {
  margin-right: 0!important;
}
.ie8 .container {
  width: 100%!important;
}
.ie8 #ft-links a:hover img,
.ie9 #ft-links a:hover img,
.ie8 #ft a#back-to-top:hover,
.ie9 #ft a#back-to-top:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}

body.viewhipaa #hd, body.viewhipaa #ft, body.viewhipaa #main-nav, body.viewhipaa #bd #sidebar, body.viewhipaa #affiliations,body.viewhipaa #links, body.viewhipaa #smilecheck, body.viewhipaa header h1,body.viewhipaa #slideshow{display:none}

body.viewhipaa .gtranslate_wrapper{float:right;margin-right: -10%;}
@media only screen and (min-width: 64em) {
body.viewhipaa .gtranslate_wrapper{width: 25%;}
}
body.viewhipaa #content{width:100%;
padding:3% }


body.viewhipaa #bd .container{padding:0 4% 3% ;
box-shadow:0 2px 6px rgba(0,0,0,.6);
background:#fff; }

body.viewhipaa #bd {background: #32C2F3;background: linear-gradient(0deg,rgba(50, 194, 243, 1) 0%, rgba(111, 209, 243, 1) 11%, rgba(219, 237, 243, 1) 84%, rgba(255, 255, 255, 1) 100%);padding-bottom: 45px;}

.sub-menu {
	z-index: 5;
}


