/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Custom Code
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
    max-width: 1224px;
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top; }

/* For devices larger than 400px */



/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
     font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
      color: #212121;
	  background: white;
    font-family: 'centuryGothic', sans-serif; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 5px;
    font-weight: 100;
letter-spacing: -1px;
line-height: 40px;}
h1 { font-size: 2em;}
h2 { font-size: 1.5em; }
h3 { font-size: 1.25em; }
h4 { font-size: 1.10em;}
h5 { font-size: 1.05em;  }
h6 { font-size: 1em;   }
h1, h3, h5{
	color:black;
}
h2, h4, h6{
  color:#ac1d24;
}
/*h3, h4, h5, h6 {
    line-height: 20px;
    margin-bottom: 0px;
}*/
@media (min-width: 1001px) {
  h1 {font-size: 2.5em; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.75em; }
  h4 { font-size: 1.5em; }
  h5 { font-size: 1.25em; }
  h6 { font-size: 1em; }
}

p {
  margin-top: 0; }

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: black;
    -webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
    text-decoration: none;
}
a:hover {
  color: #597076;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: white;
    text-align: center;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: .1rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    cursor: pointer;
    box-sizing: border-box;
    background: #0c548e;
    border: none;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
     color: white;
    outline: 0;
    background: #F07525;}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }

.clear{
	clear:both;
}
/* Custom Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fRight{
	float:right;
	margin-left: 25px
}
.fLeft{
	float:left;
	margin-right: 25px;
}
.fullWidth{
width:100%;
}
.txtLeft{
	text-align:left	;
}
.txtRight{
	text-align:right;
}
.txtCenter{
	text-align:center;
}
.txtCenterImp{
  text-align:center!important;
}
.blockCenter{
	margin:0 auto;
	display:block;
}
.boldTxt{
	font-weight:bold;
}
.noLeftMargin{
	margin-left: 0!important;
}
.middleVert{
  vertical-align: middle!important;
}
.drImg{
  max-width: 300px;
}
.scrollToTop {
    width: 30px;
    height: 30px;
    padding: 10px;
    text-align: center;
    background: whiteSmoke;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 35px;
    right: 10px;
    display: none;
    z-index: 999;
    border-radius: 100%;
}

.scrollToTop:hover {
    text-decoration: none;
}
.fontZero{
  font-size: 0;
}
.invisImg{
  max-width: 270px;
  margin: 0 auto;
}
.emTxt{
    font-style: italic;
}
.mainBtn {
    cursor: pointer;
    width: 100%;
    max-width: 250px;
    text-align: center;
    border: solid 1px #597076;
}
.mainBtn a {
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    color: black;
    display: block;
}
.mainBtn a:hover {
    background: #597076;
}
.grayBorder{
  border: solid 1px gray;
}
@font-face {
  font-family: 'centuryGothic';
  src: url('http://jellypreview.com/Cosmetic/css/fonts/GOTHIC.TTF')  format('truetype');
}
header {
    background: #597076;
    position: fixed;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    background-position: center;
    border-bottom: solid 3px white;
}
.show-menu:after {
    content: 'Show Menu';
}
input[type=checkbox]:checked ~ .show-menu:after {
    content: 'Close Menu';
}
.relative{
  position: relative;
}
.contactInfo {
    font-size: 17px;
    font-size: 1em;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 0;
    color: white;
    line-height: 24px;
    padding-top: 0;
    clear: both;
}
.contactInfo a{
    text-decoration: none;
        font-size: 24px;
        color: white;
}
.contactNumber a {
color: #F07525;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
    font-size: 1.35em;
}
.logo {
    width: 100%;
    max-width: 335px;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Navigation Styles. */
/*.navContainer {
    background: #39438a;
    outline: #676ea5 5px double;
}*/
/*.navContainer {
    width: 860px;
}*/
.headerImg{
    padding: 0;
}
nav{
    position: relative;
    display: block;
    margin: 0 auto;
	height: 30px;
}
/*Strip the ul of padding and list styling*/
.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    text-align: right;
    padding: 0 10px;
    box-sizing: border-box;
}

/*Create a horizontal list with spacing*/
.navigation li {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
}

/*Style for menu links*/
.navigation li a {
	display:block;
	font-family: 'centuryGothic', "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: none;
	text-decoration: none;
-webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
	text-align: left;
  color: white;
	text-transform: uppercase;
	box-sizing: border-box;
font-size: 15px;
    font-size: .9em;
    padding: 0 7px;
    height: 30px;
    line-height: 30px;
    float: right!important;
    line-height: 40px;
}
.navigation li ul li a {
background: #e5e1cf;
    color: #190A33;
    height: 40px;
    line-height: 40px;
		-webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
	    transition: color .15s linear;
}
/*Hover state for top level links*/
.navigation li:hover a {
    color: #0c242b;
}
/*Hover state for second level links*/
.navigation li:hover ul {
    opacity: 1;
    visibility: visible;
	z-index: 999;
}
/*transitions second level links*/
.navigation li ul {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    margin-top: 0;
	width: auto;
}
/*Style for dropdown links*/
.navigation li:hover ul a {
	height: 40px;
	line-height: 40px;
	background: #e5e1cf;
    color: #282419;
}

/*Hover state for dropdown links*/
.navigation li:hover ul a:hover {
    color: #a19a5f;
}

/*Hide dropdown links until they are needed*/
.navigation li ul {
visibility: hidden;
padding: 0;
    margin: 0;
}

/*Make dropdown links vertical*/
.navigation li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.navigation li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.navigation li a:hover + .hidden, .hidden:hover {
visibility: visible;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
	display: none;
    margin: 0 auto;
    border-top: solid 1px #e4e4e4;
    margin-top: 10px;
        color: white;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*.navContainer, nav, .navigation{
	    width: 880px;
}*/
.hidden li {
    width: 270px;
    left: 0;
}
#firstLink {
    padding-left: 0;
}
#lastLink {
    padding-right: 0;
}
nav{
        width: 740px;
    float: right;
}
.headerFb{
      float: right;
}
.headerFb a{
   color:white;
}
.cycle-slideshow, .cycle-slideshow img {
  width: 100%;
}
/*.cycle-slideshow {
max-height: 454px; /* Must be full height of slideshow images, if having a white space between image and bottom border, adjust this value
}*/
.cycle-slide {
    width: 100%;
}
.homeTest {
    max-width: 845px;
    margin: 0 auto;
    width: 90%;
}

.smallItalics{
      font-size: 18px;
    font-size: .68em;
    font-style: italic;
}

.left-chevron{
      width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-top: 25px solid transparent;
    border-left: 20px solid #8689ad;
    border-bottom: 25px solid transparent;
}
main, footer {
    top: -8px;
    position: relative;
}
main p {
    font-size: 18px;
}
.smiles{
      margin-top: 50px;
}
.learnMore{
  margin: 50px auto;
}
.drImg{
  border: solid 1px #597076;
}
.grayBg {
    background: #bac9cc;
    padding: 100px 0;
}
.mainCopy{
	    max-width: 1224px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

#website{
  display: none;
}
.formFields input,
.formFields select,
.formFields textarea {
    width: 100%;
    margin-bottom: 10px;
}
main form input[type="checkbox"], main form input[type="radio"] {
    display: inline;
    width: auto;
}
main, footer {
    top: 200px;
    position: relative;
}
main {
    margin-top: 50px;
}
section {
    padding: 50px 0!important;
    box-sizing: border-box;
}
.aaSect {
    background: linear-gradient(180deg, #405357, #405357, #596c70, #405357, #405357);
        padding: 0!important;
}
.aaSect a{
    color: white;
}
.smileBg {
    background-image: url(../images/smileBg.png);
    background-position: top left;
    background-repeat: no-repeat;
}
.aaText {
    padding: 50px 0;
    margin: 0 auto;
    text-align: center;
    color: white;
}
.aaText p:first-of-type {
    margin-top: 50px;
}
.ui-accordion-content p {
    font-size: 16px;
}
article {
    padding:0 30px!important;
}
.support header {
    top: 0;
}
.ui-accordion-header {
    color: white;
    font-size: 24px;
    line-height: 34px;
    cursor: pointer;
    outline: none;
    border: solid 1px white;
    border-radius: 10px;
}
.ui-accordion-content p {
    margin-top: 0!important;
    text-align: left!important;
}
.ui-accordion-header-active {
    color: #121212;
}
.ui-accordion-content ul {
    text-align: left;
}
.footerLogos{
    font-size: 0;
}
.footerLogos img{
  width: 100%;
}
footer {
    background: white;
    padding: 20px 0;
    color: black;
}
footer a {
    color: black;
}
footer .mainBtn {
    max-width: 310px;
}
footer ul {
    margin: 0;
    list-style: none;
}
.socialIcons {
    display: inline-block;
    margin-bottom: 30px;
    width: 10%;
}
.gMap{
width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    height: 280px;
}
.copyright {
    background: white;
    position: relative;
    top: 90px;
}
.copyright p{
	margin:0;
	text-align:center;
}
.parallax {
  background-image: url("../images/MontereyPhoto1.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallaxTwo {
  background-image: url("../images/MonteryPhoto2.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

@media screen and (min-width : 1101px){
.navigation{
	display:block!important;/* Fixes issue with desktop links keeping their mobile layout; media queries must follow each other (max = 930 & min = 931) */
}
}
/* For devices larger than 550px */
@media (min-width: 1100px) {
   .headerImg, main, footer, .reviewBg {
    top: 85px!important;
    position: relative;
}

  .container {
    width: 95%; }
  .column,
  .columns {
    margin-left: 3%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }
}

@media screen and (max-width : 1100px){
  header {
    background-position: inherit;
}
main, footer {
    top: 155px;
    }
.headerImg {
    top: 156px;
    position: relative;
}
  main iframe{
  width: 100%;
    max-width: 560px;
}
	.navContainer, nav, .navigation {
    width: 100%;
}

.logo {
    max-width: 200px;
}
	header .columns {
		text-align: center!important;
}
.contactInfo {
    text-align: center;
}
	nav {
	width: 100%;
  position: relative;
  height: auto;
	}
	/*Make dropdown links appear inline*/
	.navigation {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.navigation li {
		  display: block;
  float: none;
  margin-right: 1px;
      left: auto;
	}
	.navigation li a {
color: white;
}
	/*Make all menu links full width*/
	.navigation li, li a {
		width: 100%;
    background: #fdf8f8;
	}
	.navigation li ul{
	width:100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.navigation li a:hover + .hidden, .hidden:hover {
  max-width: 100%;
  position: relative;
	}
.navigation li:hover ul a {
    color: #282419;
    background: #fdf8f8;
    padding-left: 50px;
}
#firstLink {
    padding-left: 6px;
}
#tabs li {
    width: 100%;
    box-sizing: border-box;
}
#tabs li a {
    width: 100%;
    background: none;
    display: block;
        box-sizing: border-box;
        outline: none!important;
}
.ui-tabs-panel img {
width: 100%;
    max-width: 442px;
    display: block;
    margin: 0 auto 20px auto;
}
header {
    background-position: inherit;
    background-size: unset;
}
.smiles img {
    max-width: 90%;
}
.drImg {
    margin: 0 auto;
    display: block;
}
.meetDr{
  margin: 10px auto;
    display: block;
}
.copyright {
    top: 145px;
}
.invisImg{
  display: block;
}
.genServBoxes .servBtn {
    width: 100%!important;
    display: inline-block;
    margin: 0 auto 50px auto;
    max-width: 208px;
}
.genServBoxes,
 .cosServBoxes{
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
footer {
    text-align: center;
}
.tagline {
    width: 90%;
}
footer .mainBtn {
    margin: 0 auto;
}
footer ul {
    text-align: center;
    margin: 30px auto;
}
.headerFb {
    float: none;
}
}