/***********************************************************************************************
COLOR PALLETTES

GREEN: #99ca3c;
BLUE: #29a4c4;
DARK BLUE: #1c4b5c;
CHOCOLATE BROWN: #330c09;
LIGHTER BROWN: #88362f;
CORAL PINK:#d88e88;

************************************************************************************************/
/***********************************************************************************************
FONT INFORMATION

Google Font:

HTML STANDARD:
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>

JAVASCRIPT:
<script type="text/javascript">
  WebFontConfig = {
    google: { families: [ 'Lato:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic:latin' ] }
  };
  (function() {
    var wf = document.createElement('script');
    wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
    wf.type = 'text/javascript';
    wf.async = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })(); </script>


CSS CODE:
font-family: 'Lato', sans-serif;
@import url(http://fonts.googleapis.com/css?family=Lato:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic);


************************************************************************************************/

@import url(http://fonts.googleapis.com/css?family=Lato:400,300,300italic,100,100italic,400italic,700,700italic,900,900italic);
/***********************************************************************************************
CSS STYLE RESET
************************************************************************************************/
@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Lato', sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  color: #000;
}

a {
  text-decoration: none;
}

/***********************************************************************************************
BULK STYLING
************************************************************************************************/
.break {
  display: block;
}

.clearbox {
  clear: both;
}

.clearRight {
  clear: right;
}

.clearLeft {
  clear: left;
}

.pos_rel {
  position: relative;
}

.position {
  position: absolute;
}

.float_right {
  float: right;
}

.float_left {
  float: left;
}

.dis_inline {
  display: inline;
}

.dis_block {
  display: block;
}

.txt_cap {
  text-transform: uppercase;
}

.txt_bold {
  font-weight: bold;
}

.textleft {
  text-align: left;
}

.textcenter {
  text-align: center;
}

.textright {
  text-align: right;
}

.fs_10 {
  font-size: 10px;
}

.fs_12 {
  font-size: 12px;
}

.fs_13 {
  font-size: 13px;
}

.fs_14 {
  font-size: 14px;
}

.fs_15 {
  font-size: 15px;
}

.fs_16 {
  font-size: 16px;
}

.fs_18 {
  font-size: 18px;
}

.fs_21 {
  font-size: 21px;
}

.fs_22 {
  font-size: 22px;
}

.fs_24 {
  font-size: 24px;
}

.fs_25 {
  font-size: 25px;
}

.fs_28 {
  font-size: 28px;
}

.fs_32 {
  font-size: 32px;
}

.fs_49 {
  font-size: 49px;
}

.lh_0 {
  line-height: 0;
}

.lh_1 {
  line-height: 0;
}

.lh_2 {
  line-height: 2;
}

.lh_4 {
  line-height: 4;
}

.lh_6 {
  line-height: 6;
}

.lh_8 {
  line-height: 8;
}

.lh_10 {
  line-height: 10;
}

.lh_12 {
  line-height: 12;
}

.lh_13 {
  line-height: 13;
}

.lh_15 {
  line-height: 15;
}

.lh_17 {
  line-height: 17;
}

.lh_19 {
  line-height: 19;
}

.lh_21 {
  line-height: 21;
}

.lh_24 {
  line-height: 24;
}

.lh_28 {
  line-height: 28;
}

.lh_36 {
  line-height: 36;
}

.lh_56 {
  line-height: 56;
}

.floatShim30 {
  width: 30px;
  height: 40px;
}

.color_black {
  color: #000;
}

.color_white {
  color: #FFF;
}

.color_lightgray {
  color: #CCC;
}

.color_darkgray {
  color: #666;
}

.color_green {
  color: #99ca3c;
}

.color_blue {
  color: #29a4c4;
}

.color_darkBlue {
  color: #1c4b5c;
}

.color_brown {
  color: #330c09;
}

.color_lightbrown {
  color: #88362f;
}

.color_coralpink {
  color: #d88e88;
}

.borderradius2 {
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.borderradius4 {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.borderradius6 {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.borderradius8 {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.borderradius10 {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/***********************************************************************************************
INDEX PAGE
************************************************************************************************/
.pageArrows_container {
  position: fixed;
  z-index: 9998;
  right: 50px;
  top: 700px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.pageArrows_container p {
  font-size: 300px;
  color: #000;
  opacity: .4;
  line-height: .4;
  margin: 0;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.pageArrows_container p:hover {
  font-size: 300px;
  color: #000;
  opacity: .2;
  line-height: .4;
  margin: 0;
}

.pageArrows_container a {
  text-decoration: none;
  color: #000;
}

.header {
  padding-top: 40px;
}

#headerBar {
  width: 100%;
  height: 40px;
  background-color: #330c09;
  position: fixed;
  top: 0;
  z-index: 9999;
}

#headerBar_left {
  width: 50%;
  height: 40px;
  float: left;
}

#headerBar_left img {
  margin-top: 7px;
}

#headerBar_right {
  width: 50%;
  height: 40px;
  float: right;
}

#headerNav {
  width: 420px;
  height: 40px;
}

#headerNav li {
  width: 100px;
  height: 40px;
  text-align: center;
  background-color: #330c09;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#headerNav li:hover {
  background-color: #88362f;
}

#headerNav li a {
  color: #fff;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#headerNav li a:hover {
  color: #d88e88;
}

.wrapper {
  width: 100%;
  height: 3000px;
  margin: 0 auto;
}

.mainContent_home {
  margin: 0 auto;
  height: 768px;
}

.mainContent_home p {
  margin-top: 25px;
}

.mainContent_home_content {
  margin: 0 auto;
  height: 768px;
}

.mainContent_home_content img {
  margin-top: 65px;
}

#btn_clickStart {
  margin: 35px 0 0 248px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#btn_clickStart:hover {
  margin: 35px 0 0 248px;
  opacity: .5;
}

#logo_home_clower {
  margin: 35px 0 0 255px;
}



#homepage_masthead {
  margin: 0 auto;
  position: relative;
  width: 738px;
}

.wrapper .mainContent_home img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) {

  /* Specific to this particular image */
  .wrapper .mainContent_home img.bg {
    left: 50%;
    margin-left: -512px;
    /* 50% */
  }
}

.section_seperator {
  width: 100%;
  height: 255px;
  background-color: #330c09;
  position: relative;
  z-index: 9997;
  border-top: 7px solid #6e2923;
  border-bottom: 14px solid #6e2923;
}

.section_seperator2 {
  width: 100%;
  height: 300px;
  background-color: #330c09;
  position: relative;
  z-index: 9997;
  border-top: 7px solid #6e2923;
  border-bottom: 14px solid #6e2923;
}

#initial_checkin_content {
  width: 960px;
  height: 255px;
  margin: 0 auto;
}

#initial_checkin_content p {
  width: 740px;
  text-align: left;
  margin: 0 auto;
  color: #fff;
  float: right;
  font-size: 20px;
}

#initial_checkin_content h1 {
  width: 740px;
  text-align: left;
  margin: 12px auto 0;
  float: right;
}

#start_intro {
  width: 960px;
  height: 300px;
  margin: 0 auto;
}

#start_intro p {
  width: 740px;
  text-align: left;
  margin: 0 auto;
  color: #fff;
  float: right;
  font-size: 20px;
}

#start_intro h1 {
  width: 740px;
  text-align: left;
  margin: 12px auto 0;
  float: right;
  font-size: 38px;
}


#button_checkin {
  margin-top: 15px;
  height: 44px;
  width: 146px;
  top: 150px;
  width: 146px;
  background-image: url('../images/button_checkin.jpg');
  left: 220px;
  position: relative;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#button_checkin:hover {
  margin-top: 15px;
  height: 44px;
  width: 146px;
  top: 150px;
  width: 146px;
  opacity: .8;
  background-image: url('../images/button_checkin_hover.jpg');
  left: 220px;
  position: relative;
}

#button_start {
  margin-top: 15px;
  height: 44px;
  width: 146px;
  top: 200px;
  width: 146px;
  background-image: url('../images/button_startyourchallenge.jpg');
  left: 220px;
  position: relative;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

#button_start:hover {
  margin-top: 15px;
  height: 44px;
  width: 146px;
  top: 200px;
  width: 146px;
  opacity: .8;
  background-image: url('../images/button_startyourchallenge_hover.jpg');
  left: 220px;
  position: relative;
}

.mainContent_intitialCheck {
  width: 100%;
  height: 768px;
  position: relative;
}

.mainContent_chocochallenge {
  width: 100%;
  height: 805px;
  position: relative;
}

.chocolateChallenge_mainContent_container {
  height: 1100px;
  width: 100%;
}


.checkIn_form_container {
  position: absolute;
  z-index: 9998;
  left: 25%;
  top: 100px;
}

.checkIn_form_container .doctorContainer {
  width: 300px;
  height: 600px;
  float: left;
}

.checkIn_form_container .formContainer {
  width: 400px;
  height: 600px;
  background-color: #29a4c4;
  float: left;
  border: 10px solid #FFFFFF;
}

.checkIn_form_container .formContainer .formContainer_top {
  height: 65px;
  background-color: #1c4b5c;
}

.checkIn_form_container .formContainer .formContainer_top h1 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  padding-top: 6px;
}

.checkIn_form_container .formContainer .formContainer_inputs input {
  margin: 15px 0 0 35px;
  width: 320px;
  height: 35px;
}

.checkIn_form_container .formContainer .formContainer_inputs select {
  margin: 15px 0 0 35px;
  width: 333px;
  height: 35px;
}

.checkIn_form_container .formContainer .formContainer_inputs p {
  color: #000;
  font-size: 18px;
  margin-left: 20px;
}

.checkIn_form_container .formContainer .formContainer_bottom {}

input[type="text"] {
  color: #bcbcbc;
  padding-left: 10px;
}

input[type="text"]:focus {
  color: #29a4c4;
}

select {
  color: #bcbcbc;
  padding-left: 10px;
}

select:focus {
  color: #29a4c4;
}

input[type='text']:hover {
  -moz-box-shadow: 0px 0px 4px #ffffff;
  -webkit-box-shadow: 0px 0px 4px #ffffff;
  box-shadow: 0px 0px 4px #ffffff;
}

.formContainer_inputs .inputLabels {
  margin: 35px 0 0 0;
}

.docOffice_img_container {
  margin: 0 auto;
}

html body div.wrapper div.mainContent_intitialCheck img.mainContent_intitialCheck_bg {
  margin: 0 auto;
  width: 100%;
}

#medBag {
  margin: 17px 25px 0 0;
  float: left;
}

#chocolateChallenge_footer {
  width: 100%;
  height: 300px;
  background-color: #330c09;
  position: relative;
}

/***********************************************************************************************
SLIDING TEXT AND ICON MENU
************************************************************************************************/
.sti-menu {
  width: 630px;
  margin: 0 auto;
}

.sti-menu li {
  float: left;
  width: 200px;
  height: 135px;
  margin-right: 10px;
}

.sti-menu li a {
  display: block;
  overflow: hidden;
  background: #fff;
  text-align: center;
  height: 100%;
  width: 100%;
  position: relative;
  border: 2px solid #472600;
  border-top: none;
  /*-moz-box-shadow:1px 1px 2px #ddd;-webkit-box-shadow:1px 1px 2px #ddd;
                              box-shadow:1px 1px 2px #ddd;*/
}

.sti-menu li a h2 {
  color: #472600;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  padding: 0 10px 0 10px;
  width: 180px;
  top: 80px;
  left: 0px;
  line-height: 1;
  margin: 0 0 0 0;
}

.sti-menu li a h3 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #6c6c6c;
  position: absolute;
  top: 97px;
  left: 0px;
  width: 180px;
  padding: 0 10px 0 10px;
  margin: 0 0 0 0;
}

.sti-icon {
  width: 100px;
  height: 100px;
  position: absolute;
  background-position: top left;
  background-repeat: no-repeat;
  background-color: transparent;
  left: 50px;
  top: 15px;
}

.sti-icon-previous {
  background-image: url(../images/sprite_nav_previous.png);
}

.sti-icon-start {
  background-image: url(../images/sprite_nav_home.png);
}

.sti-icon-next {
  background-image: url(../images/sprite_nav_next.png);
}

/***********************************************************************************************
SLIDING TEXT AND ICON MENU REGULAR STYLING
************************************************************************************************/
.container {
  width: 960px;
  position: fixed;
  z-index: 100;
  margin: 0 auto;
}

.content {
  width: 1000px;
  margin: 0 auto;
}

h1 {
  margin: 0 0 0 0;
  font-size: 40px;
  color: #fff;
  font-family: 'Lato', sans-serif;
}

h1 span {
  font-size: 22px;
  text-transform: uppercase;
}

.more ul {
  text-transform: uppercase;
  font-size: 13px;
  padding: 50px 0px 30px 20px;
  height: 30px;
  clear: both;
  font-family: 'Lato', sans-serif;
  width: 830px;
  margin: 0 auto;
}

.more ul li {
  float: left;
  margin: 0px 2px;
}

.more ul li.selected a,
.more ul li.selected a:hover {
  background: #000;
  color: #fff;
}

.more ul li a {
  text-shadow: 1px 1px 1px #fff;
  color: #555;
  background: #f7f7f7;
  padding: 3px 6px;
}

.more ul li a:hover {
  background: #000;
  color: #472600;
  text-shadow: none;
}

/*.content                      {width:100%;position:relative;}*/

/***********************************************************************************************
LEFT DASHBOARD STYLING
************************************************************************************************/
.chocolateChallenge_mainContent_container .dashboard_container {
  height: 1100px;
  width: 300px;
  background-color: #d88e88;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
}

.chocolateChallenge_mainContent_container .dashboard_container h1 {
  height: 50px;
  width: 300px;
  background-color: #88362f;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  font-weight: 400;
}

html body div.wrapper div.mainContent_chocochallenge div.chocolateChallenge_mainContent_container div.dashboard_container div.dashCheckup img {
  opacity: 1;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

html body div.wrapper div.mainContent_chocochallenge div.chocolateChallenge_mainContent_container div.dashboard_container div.dashCheckup img:hover {
  opacity: .5;
}

.chocolateChallenge_mainContent_container .checkIn_revealContainer {
  height: 650px;
  width: 300px;
  background-color: #29a4c4;
  float: left;
  opacity: 0;
  filter: alpha(opacity=0);
  margin-top: 147px;
}

.chocolateChallenge_mainContent_container .checkIn_revealContainer h1 {
  height: 49px;
  width: 340px;
  background-color: #1c4b5c;
  text-transform: uppercase;
  text-align: right;
  line-height: 45px;
  font-size: 35px;
  font-weight: 900;
  padding-right: 10px;
}

.chocolateChallenge_mainContent_container .checkIn_revealContainer h1 a {
  opacity: 1;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.chocolateChallenge_mainContent_container .checkIn_revealContainer h1 a:hover {
  opacity: .4;
}

#checkIn_reveal_toggle {
  margin-left: 300px;
}

.chocolateChallenge_mainContent_container .dashboard_container .dashCheckup {
  margin: 0 auto;
  width: 100px;
  padding: 35px 0 20px 0;
}

.chocolateChallenge_mainContent_container .dashboard_container .challenge_tiles {
  margin: 0 auto;
  width: 300px;
  height: 255px;
  background-color: #d88e88;
}

.chocolateChallenge_mainContent_container .dashboard_container .challenge_tiles_row {
  margin: 0 auto;
  width: 300px;
  height: 85px;
}

.chocolateChallenge_mainContent_container .dashboard_container .challenge_tiles_row img {
  float: left;
  -o-transition: .5s;
  -ms-transition: .5s;
  padding: 20px;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  margin-left: 0;
}

.chocolateChallenge_mainContent_container .dashboard_container .challenge_tiles_row img:hover {
  float: left;
  background-color: #88362f;
  opacity: .7;
}