/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; border:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are two custom edits:
 * make the line-height relative and unit-less
 * remove the pre,code styles as we use a recommendation from Eric Meyer instead
*/
body { font-size:16px; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% arial,helvetica,"Nimbus Sans L", "Bitstream Vera Sans", sans-serif; }


/* normalize monospace sizing 
 * meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/
 */
code, pre { font-family: "Courier New", monospace, serif; font-size: 1em; }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#6c6b6b; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:active { outline: none; }
a:focus { outline: thin dotted; }

a, a:active, a:visited { color:black; text-decoration: none; }
a:hover { color:#fbb567; }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #fbb567; color:#fff; text-shadow: none; }
::selection { background:#fbb567; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999px; overflow:hidden; background-repeat: none; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }


body {
  background: #fcdad5;
}

#container {
  min-width: 1024px;
  margin: 0 auto;
}

/* splash page */
.splash h1 {
  width: 810px;
  height: 181px;
  background-image: url(/img/bigsplash.png);
  background-repeat: none;
  text-indent: -9999em;
  z-index: 30;
  margin: 125px auto;
}
.splash a {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: -9999em;
  display: block;
  z-index: 50;
  position: absolute;
}
.splash .sparkle {
  z-index: 40;
}

/* fancy stripes*/

#topleft, #bottomright {
  width: 400px;
  height: 200px;
  background-image: url(/img/stripe.png);
  display: none;
}
.csstransforms #topleft, .csstransforms #bottomright {
  display: block;
}
@media all and (device-width: 480) {
  #topleft, #bottomright {
    display: none;
  }
}
#topleft {
  position: absolute;
  top: -50px;
  left: -150px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#bottomright {
  position: fixed;
  bottom: -50px;
  right: -200px;
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

/* all framed content pages */
.framed h1 {
  width: 450px;
  height: 101px;
  background-image: url(/img/master.png);
  background-repeat: none;
  background-position: top left;
  text-indent: -9999em;
  margin: 40px auto;
  z-index: 20;
}
.framed h1 a {
  display: block;
  width: 450px;
  height: 101px;
}
#container .sparkle {
  z-index: -10;
}
.framed header nav {
  width: 100%;
  height: 35px;
  border-top: 2px solid #9b9a9a;
  border-bottom: 2px solid #9b9a9a;
  z-index: 10;
}
.framed header nav ul {
  width: 760px;
  margin: 0 auto;
}
.framed header nav li {
  display: block;
  float: left;
  margin-top: 3px;
  margin-left: 3px;
}
.framed header nav li:first-child {
  margin-left: 0;
}
.framed header nav li a {
  background-image: url(/img/master.png);
  background-repeat: none;
  display: block;
  height: 40px;
  text-indent: -9999px;
}
li.permanent-cosmetics-link a {background-position: 0px 371px; width: 175px;}
li.permanent-cosmetics-link a:hover, li.permanent-cosmetics-link.current-page a {background-position: 0px 331px;}
li.lash-extensions-link a {background-position: -178px 371px; width: 132px;}
li.lash-extensions-link a:hover, li.lash-extensions-link.current-page a {background-position: -178px 331px;}
li.hd-brows-link a {background-position: -669px 81px; width: 84px;}
li.hd-brows-link a:hover, li.hd-brows-link.current-page a {background-position: -669px 41px;}
li.lash-lift-link a {background-position: -754px 81px; width: 104px;}
li.lash-lift-link a:hover, li.lash-lift-link.current-page a {background-position: -754px 41px;}
li.lash-dip-link a {background-position: -312px 371px; width: 73px;}
li.lash-dip-link a:hover, li.lash-dip-link.current-page a {background-position: -312px 331px;}
li.makeup-link a {background-position: -388px 371px; width: 73px;}
li.makeup-link a:hover, li.makeup-link.current-page a {background-position: -388px 331px;}
li.products-link a {background-position: -465px 371px; width: 84px;}
li.products-link a:hover, li.products-link.current-page a {background-position: -465px 331px;}
li.price-list-link a {background-position: -552px 371px; width: 80px;}
li.price-list-link a:hover, li.price-list-link.current-page a {background-position: -552px 331px;}
li.media-link a {background-position: -635px 371px; width: 57px;}
li.media-link a:hover, li.media-link.current-page a {background-position: -635px 331px;}
li.about-us-link a {background-position: -695px 371px; width: 80px;}
li.about-us-link a:hover, li.about-us-link.current-page a {background-position: -695px 331px;}
li.contact-link a {background-position: right 371px; width: 80px;}
li.contact-link a:hover, li.contact-link.current-page a {background-position: right 331px;}

/* content box */

#mainpart {
  background: white;
  width: 798px;
  margin: 17px auto;
  -moz-box-shadow: 5px 5px 5px #f2bbc4;
  -webkit-box-shadow: 5px 5px 5px #f2bbc4;
  box-shadow: 5px 5px 5px #f2bbc4;
  min-height: 511px;
  z-index: 50;
}

/* footer */

footer .footer-info-wrapper {
  border-top: 2px solid #9b9a9a;
  border-bottom: 2px solid #9b9a9a;
  height: 26px;
  width: 100%;
}
footer .footer-info-wrapper ul {
  background: white;
  width: 100%;
  height: 19px;
  margin: 3px 0 0 0;
  text-align: center;
}
footer ul.info li {
  display: inline-block;
  margin-right: 15px;
}
footer ul.info li.lastone {
  margin-right: 0;
}

footer .info li, footer .info li a {
  background-image: url(/img/master.png);
  height: 18px;
  text-indent: -9999px;
}
footer .info li a { display: block;}
footer .info .info-address {background-image: url(/img/address.png); width: 273px;}
footer .info .info-phone {background-position: -241px 273px; width: 115px; margin-right: 22px;}
footer .info .info-policies {background-position: -379px 291px; width: 45px; }
footer .info .info-policies:hover {background-position: -379px 273px;}
footer .info .info-credits {background-position: -440px 291px; width: 43px; }
footer .info .info-credits:hover {background-position: -440px 273px;}
footer .info .info-website {background-position: -499px 291px; width: 148px; }
footer .info .info-website:hover {background-position: -499px 273px;}

footer ul.contact {
  text-align: center;
  margin-top: 5px;
}
footer ul.contact li {
  display: inline-block;
  height: 23px;
}
footer ul.contact .social-links *, footer ul.contact li.mailinglist-link {
  background-image: url(/img/master.png);
  height: 23px;
  display: inline-block;
  text-indent: -9999px;
}
footer ul.contact .social-links span {background-position: -496px 0; width: 62px;}
footer ul.contact .social-links .social-instagram {background-position: -560px 0; width: 84px;}
footer ul.contact .social-links .social-facebook {background-position: -643px 0; width: 94px;}
footer ul.contact .mailinglist-link {background-position: -737px 0; width: 123px;}

/* the mailing list link should go away */
footer ul.contact li.mailinglist-link {
  display: none;
}

/* tabnav pages */

.makeup #mainpart, .lashext #mainpart, .permcos #mainpart {
  background: #fbb567;
}

.tabnav {
  padding-top: 20px;
}

.makeup .tabcontent, .lashext .tabcontent, .permcos .tabcontent {
  background: white;
  margin: 0 27px 27px;
  padding: 27px;
}

.tabnav ul {
  list-style-type: none;
  margin-left: 27px;  
}
.tabnav ul li {
  float: left;
}
.tabnav ul li a {
  display: block;
  height: 26px;
  background-image: url(/img/tabs.png);
  text-indent: -9999px;
}
.tabnav ul li.information a {width: 97px; background-position: 0 -26px; }
.tabnav ul li.information a:hover {background-position: 0px -52px; }
.tabnav ul li.information.current-tab a, .tabnav ul li.information.current-tab a:hover {background-position: 0px 0px; }
.tabnav ul li.photographs a {width: 104px; background-position: -97px -26px; }
.tabnav ul li.photographs a:hover {background-position: -97px -52px; }
.tabnav ul li.photographs.current-tab a, .tabnav ul li.photographs.current-tab a:hover {background-position: -97px 0px; }
.tabnav ul li.lash-options a {width: 99px; background-position: -201px -26px; }
.tabnav ul li.lash-options a:hover {background-position: -201px -52px; }
.tabnav ul li.lash-options.current-tab a, .tabnav ul li.lash-options.current-tab a:hover {background-position: -201px 0px; }
.tabnav ul li.information-technique a {width: 192px; background-position: -478px -26px; }
.tabnav ul li.information-technique a:hover {background-position: -478px -52px; }
.tabnav ul li.information-technique.current-tab a, .tabnav ul li.information-technique.current-tab a:hover {background-position: -478px 0px; }
.tabnav ul li.portfolio a {width: 78px; background-position: -300px -26px; }
.tabnav ul li.portfolio a:hover {background-position: -300px -52px; }
.tabnav ul li.portfolio.current-tab a, .tabnav ul li.portfolio.current-tab a:hover {background-position: -300px 0px; }
.tabnav ul li.testimonials a {width: 100px; background-position: -378px -26px; }
.tabnav ul li.testimonials a:hover {background-position: -378px -52px; }
.tabnav ul li.testimonials.current-tab a, .tabnav ul li.testimonials.current-tab a:hover {background-position: -378px 0px; }

.makeup .tabcontent p, .lashext .tabcontent p, .permcos .tabcontent p {
  margin-bottom: 1em;
}

/* permanent cosmetics page */

.permcos .tabcontent {
  min-height: 440px;
}
.permcos .answerbox {
  padding-top: 1.5em;
  border-top: 2px solid #fcdad5;
}
.permcos h2 {
  margin-top: 10px; 
  margin-bottom: 5px;
  cursor: pointer; 
  background-image: url(/permanent-cosmetics/permcosheads.png); 
  width: 514px; 
  height: 16px; 
  text-indent: -9999px;
}

#permcos-whatis {background-position: top left; }
#permcos-whatis.open {background-position: top right; }
#permcos-whoben {background-position: 0px -16px; }
#permcos-whoben.open {background-position: -514px -16px; }
#permcos-whatdiff {background-position: 0px -32px; }
#permcos-whatdiff.open {background-position: -514px -32px; }
#permcos-pain {background-position: 0px -48px; }
#permcos-pain.open {background-position: -514px -48px; }
#permcos-safe {background-position: 0px -64px; }
#permcos-safe.open {background-position: -514px -64px; }

/* permanent cosmetics testimonials page */

.permcos.testimonials .tabcontent {
  background-image: url(/permanent-cosmetics/testimonials/testimonial.png);
  width: 741px;
  height: 450px;
  padding: 0;
  position: relative;
}

.permcos.testimonials .tabcontent a {
  width: 26px;
  height: 26px;
  background-image: url(/permanent-cosmetics/testimonials/plus.png);
  background-position: top left;
  text-indent: -9999px;
  display: block;
  cursor: pointer;
  position: absolute;
  z-index: 100;
}
.permcos.testimonials .tabcontent a:hover {
  background-position: top right;
}
.permcos.testimonials .tabcontent div {
  background: white;
  -moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  position: absolute;
  display: none;
  z-index: 200;
  background-image: url(/permanent-cosmetics/testimonials/testimonials.png);
  text-indent: -9999px;
}
.permcos.testimonials .tabcontent div em {
  color: #fbb567;
  font-weight: bold;
}
#t1l {left: 70px; top: 79px; }
#t1 { width: 588px; height: 192px; left: 89px; top: 97px;}
#t2l {left: 281px; top: 105px; }
#t2 { width: 381px; height: 252px; left: 299px; top: 122px; background-position: 0px -192px;}
#t3l {left: 459px; top: 110px; }
#t3 { width: 243px; height: 301px; left: 223px; top: 129px; background-position: -381px -192px;}
#t4l {left: 692px; top: 104px; }
#t4 { width: 647px; height: 316px; left: 49px; top: 122px; background-position: 0px -492px;}
#t5l {left: 86px; top: 278px; }
#t5 { width: 612px; height: 263px; left: 105px; top: 17px; background-position:top right;}
#t6l {left: 562px; top: 337px; }
#t6 { width: 550px; height: 370px; left: 12px; top: 15px; background-position:-647px -263px;}
#t7l {left: 366px; top: 369px; }
#t7 { width: 298px; height: 277px; left: 383px; top: 94px; background-position:-647px -631px;}
#t8l {left: 640px; top: 410px;}
#t8 { width: 440px; height: 360px; left: 200px; top: 50px; background-position: -210px -810px;}

/* lash extensions page */

#lashext-whatare {
  width: 683px;
  height: 77px;
  background-image: url(/lash-extensions/lash-headers.png);
  background-position: top left;
  text-indent: -9999px;
}
#lashext-whatkind {
  width: 683px;
  height: 72px;
  background-image: url(/lash-extensions/lash-headers.png);
  background-position: 0 -77px;
  text-indent: -9999px;
  margin-bottom: 10px;
  margin-top: -25px;
}
#lashext-restricted {
  width: 683px;
  height: 69px;
  background-image: url(/lash-extensions/lash-headers.png);
  background-position: 0 -149px;
  text-indent: -9999px;
  margin-bottom: 10px;
}
#lashext-longbefore {
  width: 683px;
  height: 70px;
  background-image: url(/lash-extensions/lash-headers.png);
  background-position: 0 -218px;
  text-indent: -9999px;
}
#lashext-longlast {
  width: 683px;
  height: 57px;
  background-image: url(/lash-extensions/lash-headers.png);
  background-position: bottom left;
  text-indent: -9999px;
  margin-top: 10px;
}

/* lash extension options page */

.lashext.options .tabcontent {
  padding: 9px;
}
.lashext .eyephotos {
  list-style-type: none;
  margin: 10px 0 0 0 ;
}
.lashext .eyephotos li {
  display: none;
}
.lashext .eyephotos li:first-child {
  display: block;
}

.lashext .eyenav {
  margin: 0;
  width: 724px;
  height: 20px;
  background: #fcdad5;
}
.lashext .eyenav li {
  display: block;
  float: left;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 20px;
  height: 20px;
  background-image: url(/lash-extensions/options/options.png);
  text-indent: -9999px;
}

#eyenav-noext { width: 94px; background-position: 0px 0px;}
#eyenav-noext:hover {background-position: 0px 20px;}
#eyenav-macgraw { width: 85px; background-position: -94px 0px;}
#eyenav-macgraw:hover {background-position: -94px 20px;}
#eyenav-audrey { width: 71px; background-position: -179px 0px;}
#eyenav-audrey:hover {background-position: -179px 20px;}
#eyenav-bardot { width: 69px; background-position: -250px 0px;}
#eyenav-bardot:hover {background-position: -250px 20px;}
#eyenav-kardashian { width: 93px; background-position: 93px 0px;}
#eyenav-kardashian:hover {background-position: 93px 20px;}

/* hd brows info page */

.hdbox,
.llbox {
  min-height: 400px;
}

#hdbrows-header {
  background-image: url(/img/hdbrows.png);
  width: 683px;
  height: 30px;
  background-position: top left;
  text-indent: -9999px;
  margin-top: 30px;
}

.hdbrows-image {
  background-image: url(/img/hdbrows.png);
  width: 247px;
  height: 186px;
  margin: 40px 0 0 40px;
  background-position: bottom left;
  float: right;
  display: block;
}

/* hd brows photo page */

.makeupphotos.hdbrows {
  padding-left: 0;
  margin-left: 0;
}
.makeupphotos.hdbrows li {
  text-align: center;
}
.llbox p {
  width: 400px;
}

/* lash lift info page */

#lashlift-header {
  background-image: url(/img/lashlift.png);
  width: 684px;
  height: 192px;
  margin: 40px 0 -160px 0;
  text-indent: -9999px;
}


/* makeup page */

.makeup .tabcontent h3 {
  font-style: italic;
  margin-bottom: 1em;
}

.makeup .tabcontent strong {
  color: #fbb567;
}
.makeup .headerspacer {
  float: right;
}
#makeup-services {
  width: 684px;
  height: 163px;
  background-image: url(/makeup/makeupheaders.png);
  background-position: top left;
  text-indent: -9999px;
  margin-bottom: -95px;
}
#makeup-lessons {
  width: 684px;
  height: 127px;
  background-image: url(/makeup/makeupheaders.png);
  background-position: 0px -163px;
  text-indent: -9999px;
  margin-bottom: -49px;
}
#makeup-trip {
  width: 684px;
  height: 127px;
  background-image: url(/makeup/makeupheaders.png);
  background-position: bottom left;
  text-indent: -9999px;
  margin-bottom: -20px;
}

/* makeup photos page / permanent cosmetics portfolio page */

.makeup .makeupphotos, .permcos.portfolio .portfolio {
  list-style-type: none;
}
.makeup .makeupphotos li, .permcos.portfolio .portfolio li {
  display: none;
}
.makeup .makeupphotos li:first-child, .permcos.portfolio .portfolio li:first-child {
  display: block;
}

.permcos.portfolio ul.portfolio { margin: 0; }
.permcos.portfolio .tabcontent {padding: 0;}
.permcos.portfolio ul.portfolio li { height: 449px;}

.photonav {
  float: right;
  margin-top: 17px;
  margin-right: 25px;
}
.photonav li {
  display: block;
  float: left;
  height: 17px;
  width: 17px;
  background-image: url(/img/master.png);
  text-indent: -9999px;
  margin: 2px;
  cursor: pointer;
  -moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.25);
  -webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.25);
  box-shadow: 3px 3px 5px rgba(0,0,0,0.25);
}

.photonav li.c1 { background-position: -662px -204px;}
.photonav li.c1:hover { background-position: -662px -221px;}
.photonav li.c2 { background-position: -679px -204px;}
.photonav li.c2:hover { background-position: -679px -221px;}
.photonav li.c3 { background-position: -696px -204px;}
.photonav li.c3:hover { background-position: -696px -221px;}
.photonav li.c4 { background-position: -713px -204px;}
.photonav li.c4:hover { background-position: -713px -221px;}
.photonav li.c5 { background-position: -730px -204px;}
.photonav li.c5:hover { background-position: -730px -221px;}
.photonav li.c6 { background-position: -747px -204px;}
.photonav li.c6:hover { background-position: -747px -221px;}
.photonav li.c7 { background-position: -764px -204px;}
.photonav li.c7:hover { background-position: -764px -221px;}
.photonav li.c8 { background-position: -781px -204px;}
.photonav li.c8:hover { background-position: -781px -221px;}
.photonav li.c9 { background-position: -798px -204px;}
.photonav li.c9:hover { background-position: -798px -221px;}
.photonav li.c10 { background-position: -815px -204px;}
.photonav li.c10:hover { background-position: -815px -221px;}
.photonav li.c11 { background-position: -832px -204px;}
.photonav li.c11:hover { background-position: -832px -221px;}
.photonav li.c12 { background-position: -664px -281px;}
.photonav li.c12:hover { background-position: -664px -298px;}
.photonav li.c13 { background-position: -680px -281px;}
.photonav li.c13:hover { background-position: -680px -298px;}
.photonav li.c14 { background-position: -697px -281px;}
.photonav li.c14:hover { background-position: -697px -298px;}



/* normal pages */

.contact #mainfiller, .policies #mainfiller, .credits #mainfiller, .intro #mainfiller {
  width: 656px;
  margin: 0 auto;
  padding-top: 75px;
  line-height: 1.5em;
}

/* intro page */

.intro #mainfiller {
  width: 719px;
  padding: 0;
  margin: 0;
  height: 511px;
}

.intro #mainfiller h2 {
  margin: 0 auto;
  width: 719px;
  height: 189px;
  background-image: url(/intro/vanity.jpg);
  text-indent: -9999px;
}

.intro #mainfiller p {
  width: 685px;
  margin: 1.5em auto 0;
}

.intro #mainfiller p em {
  font-style: normal;
  font-weight: bold;
  color: #fbb567;
}

.intro #mainfiller a {
  color: #fbb567;
}
.intro #mainfiller a:hover {
  color: black;
}


/* lash dip page */

.lash-dip #mainfiller {
  padding-top: 30px;
}
.lash-dip #mainfiller p {
  margin: 0 auto 40px;
  width: 271px;
  height: 373px;
  text-indent: -9999px;
  background-image: url(/img/lashdip.png);
  background-position: top left;
}
.lash-dip #mainfiller h2 {
  margin: 0 auto;
  width: 161px;
  height: 28px;
  text-indent: -9999px;
  background-image: url(/img/lashdip.png);
  background-position: bottom left;
}


/* products list page */

.products #mainfiller {
  background-image: url(/products/productsbg.png);
  background-repeat: repeat-y;
}

.products h2, .products p.moretocome {
  width: 798px;
  height: 84px;
  background-image: url(/products/productsframe.png);
  text-indent: -9999px;
}
.products h2 { background-position: top left;}
.products p.moretocome { background-position: bottom left;}

.products .intro {
  width: 600px;
  text-align: center;
  margin: 20px auto;
}

.products h3 {
  font-weight: normal;
  color: #fbb567;
  text-align: center;
}
.products p.aftercare {
  width: 322px;
  text-align: center;
  margin: 0 auto;
}

.products #mainfiller ul {
  list-style-type: none;
  text-align: center;
}
.products #mainfiller ul li {
  display: inline-block;
  width: 230px;
  font-size: 12px;
  font-weight: bold;
}
.products #mainfiller ul li span {
  font-weight: normal;
  font-style: italic;
  font-size: 14px;
}
.products .logo {
  margin: 50px auto 20px;
  display: block;
}

/* price list page */

.price-list #mainfiller {
  width: 720px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  line-height: 1.2em;
}
.price-list #mainfiller ul {
  margin-bottom: 1.5em;
  list-style-type: none;
}
.price-list #mainfiller li {
  text-align: right;
}
.price-list #mainfiller h2 {
  width: 161px;
  height: 493px;
  background-image: url(/img/pricelist.png);
  float: left;
  text-indent: -9999px;
}
.price-list #mainfiller h3, .price-list #mainfiller h4 {
  background-image: url(/img/pricelist.png);
  text-indent: -9999px;
  margin-left: auto;
  margin-bottom: 5px;
}
.price-list #mainfiller .perm {width: 181px; height: 12px; background-position: top right; }
.price-list #mainfiller .lash {width: 134px; height: 12px; background-position: 181px -12px; }
.price-list #mainfiller .touch {width: 159px; height: 9px; background-position: 181px -24px; }
.price-list #mainfiller .dip {width: 64px; height: 12px; background-position: 181px -34px; }
.price-list #mainfiller .application {width: 164px; height: 12px; background-position: 181px -46px; }
.price-list #mainfiller .lessons {width: 130px; height: 12px; background-position: 181px -58px; }
.price-list #mainfiller .hdbrow {width: 140px; height: 12px; background-position: 181px -70px;}
.price-list #mainfiller .lashlift {width: 105px; height: 12px; background-position: 181px -82px;}

/* media page */

.media #mainfiller { padding: 30px 60px 0;}

.media #mainfiller h2 {
  width: 306px;
  height: 85px;
  background-image: url(/img/media.png);
  background-position: top left;
  margin: 0 auto;
  text-indent: -9999em;
}

.media hr {
  color: #fbb567;
  border-color: #fbb567;
  border-width: 2px;
  margin: 30px 0;
}
.media hr.bottom {
  margin-bottom: 40px;
}

.media .aboutitems {
  list-style-type: none;
  text-align: center;
  padding: 40px 0 10px;
  margin-left: 0;
  line-height: 100px;
}

.media .aboutitems li {
  display: block;
  float: left;
  padding: 0 10px;
  width: 319px;
  text-align: center;
}
.media .aboutitems li.single {
  clear: left;
  width: 100%;
}

.media #mainfiller .videos {
  margin: 25px auto;
  width: 746px;
}
.media #mainfiller .videos p {
  margin-top: 20px;
}
.media #mainfiller p.about {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}
.media #mainfiller .videos p strong {
  color: #fbb567;
}
.media #mainfiller .videoholder {
  display: block;
  text-align: center;
  padding: 10px;
}
.media #mainfiller .pdfholder {
  width: 100%;
  height: 800px;
  overflow: hidden;
  margin-bottom: 20px;
}
.media .pdfinfo {
  text-align: center;
}
.media #mainfiller .videoframe {
  width: 351px;
  height: 271px;
  background-image: url(/img/media.png);
  background-position: bottom left;
  -moz-box-shadow: 5px 5px 5px #CCC;
  -webkit-box-shadow: 5px 5px 5px #CCC;
  box-shadow: 5px 5px 5px #CCC;
}
.media #mainfiller .videoframe .actualvideo {
  padding: 15px;
}

.media .video-js-box {width: 320px; margin: 0 auto 20px;}

/* about us page */

.about-us #mainfiller {
  width: 740px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 1.2em;
}
.about-us h2 {
  width: 192px;
  height: 630px;
  background-image: url(/img/about-us.jpg);
  background-repeat: none;
  text-indent: -9999px;
  float: left;
  margin-right: 20px;
}
.about-us p {
  margin-bottom: 1em;
  text-align: justify;
  font-size: 15px;
}
.about-us h3 {
  background-image: url(/img/master.png);
  text-indent: -9999px;
  margin-top: 2em;
  margin-bottom: 1em;
}
.about-us h3.lk {
  background-position: -674px -181px;
  width: 184px;
  height: 11px;
  margin-left: 212px;
}
.about-us h3.cn {
  background-position: -662px -250px;
  width: 196px;
  height: 11px;
  margin-top: 2.5em;
  margin-left: 212px;
}

/* contact page */

.contact #mainfiller {
  width: 720px;
}
.contact p {
  text-align: right;
  margin-bottom: 1em;
}
.contact h2 {
  width: 643px;
  height: 255px;
  background-image: url(/img/master.png);
  background-position: 0 -216px;
  text-indent: -9999px;
  margin-bottom: -10px;
}


/* policies page */
.policies h2 {
  margin-bottom: 1em;
  width: 172px;
  height: 13px;
  background-image: url(/img/master.png);
  text-indent: -9999px;
  background-position: -686px -32px;
}
.policies #mainfiller p {
  margin-bottom: 1em;
}

/* credits page */

.credits #mainfiller dl, .credits #mainfiller p {
  text-align: right;
}
.credits h2 {
  width: 354px;
  height: 43px;
  background-image: url(/img/master.png);
  text-indent: -9999px;
  background-position: -504px -51px;
  margin-top: 50px;
  margin-left: auto;
}
.credits #mainfiller dl dt {
  text-transform: lowercase;
  font-weight: bold;
  margin-top: 20px;
}
.credits #mainfiller p {
  margin-top: 20px;
  font-style: italic;
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none; }

  a, a:visited { color: #444 !important; text-decoration: underline; }

  a:after { content: " (" attr(href) ")"; } 

  abbr:after { content: " (" attr(title) ")"; }
  
  .ir a:after { content: ""; }  /* Don't show links for images */
  
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  
  img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

  h2, h3{ page-break-after: avoid; }
}

@media screen and (width: 480px) {
  
  
  /* Prevent iOS, WinMobile from adjusting font size */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 
}

