/* iPhone Stylized */

/* hide from ie on mac \*/
html {
  height: 100%;
}
/* end hide */

body {
  height: 100%;
}

body.showingOverlay #mainHolder {
  overflow: hidden;
  visibility: hidden;
}

div#flashcontentholder, div#flashcontent {
  height: 100%;
}

#main_flash {
  display: block; /* to remove bottom margin */
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 16px;
  font-family: helvetica, tahoma, verdana, arial;
  vertical-align: baseline;
  
  -webkit-text-size-adjust: none;
}


div#noflash {
  padding: 30px;
}


img{vertical-align:middle;}
img{width:100%;height:auto;}

h1 { font-size: 20px; }
h2 { font-size: 20px; }
h3 { font-size: 20px; }

hr { border: none; margin: 0 0 25px 0; }



#siteMenu {
  position: fixed;
  top: 0;
  z-index: 100; /* compensating for a slideshow z-index seems to be variable */
  width: 100%;
  height: 55px;
  box-shadow: inset 0px -1px 0px rgba(1, 1, 1, 0.3);
}

body.showingOverlay #siteMenu {
  visibility: hidden;
}

.navbar-toggle {
  float: right;
  height: 55px;
  width: 100px;
  margin-right: 5px;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  border-radius: 4px;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  position: relative;
}

.navbar-toggle .menu-text {
  position: absolute;
  top: 18px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
}

.navbar-toggle .icon-bar-holder {
  position: absolute;
  top: 20px;
  right: 12px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #2a2a2a;
}
.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 3px;
}

/* Menu Overlay */
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 23px;
  background-color: white;
  opacity: 1;
  height: 100%;
  width: 100%;
  z-index: 5000;
  overflow: hidden !important;
  display: none;
}
body.showingOverlay #overlay {
  display: block;
}
#overlay .closeButton {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  
  float: right;
  height: 53px;
  width: 53px;
  cursor: pointer;
  outline: none;
}

#overlay .closeButton .icon-bar {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  
  width: 20px;
  height: 3px;
  background-color: #2a2a2a;
  display: inline-block;
  
  position: absolute;
  top: 26px;
  right: 16px;
}

#overlay .closeButton .icon-bar+.icon-bar {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}



/* Style our Nav */
div#nav-container ul.main-nav-container {
  margin-left: 0;
  padding: 90px 0;
  text-indent: 0;
  text-align: center;
}

div#nav-container ul li {
  width: auto;
  list-style: none;
}

div#nav-container ul li a:link, 
div#nav-container ul li a:visited {
  text-decoration: none;
}

div#nav-container ul.main-nav-container li a {
  text-transform: uppercase;
  font-size: 28px;
  color: #fff;
  display: block;
  width: 100%;
  font-weight: 400;
  padding: 15px 0;
}

div#nav-container ul.sub-nav-container {
  margin: 5px 0 10px;
  padding: 20px 0;
  box-shadow: inset 0px -1px 0px rgba(1, 1, 1, 0.1), inset 0px 1px 0px rgba(1, 1, 1, 0.1);
  overflow: hidden;
}

div#nav-container ul.sub-nav-container li a {
  text-transform: lowercase;
  font-size: 18px;
  font-weight: 300;
  display: block;
  width: 100%;
  padding: 7px 0;
}
div#nav-container ul li.main-nav a.selected, 
div#nav-container ul li.sub-nav a.selected {
  color: #ccc;
}


/* Mobile sub nav arrow */
.arrow_box {
  position: relative;
  top: -20px;
  width: 0; 
  height: 0; 
  margin: 0 auto;
}
.arrow_box:after, .arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  margin-left: -10px;
}

.arrow_box:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(149, 166, 161, .3);
}
.arrow_box:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  margin-top: -1px;
}

/* Show hide sub nav */
.sub-nav-container:not(.selected) {
  display:none;
}


/* Menu White / Black */
body.white div#overlay {
  background-color: #fff;
}
body.white div#nav-container ul li.main-nav a {
    color: #999;
}
body.white div#nav-container ul li.sub-nav a {
    color: #999;
}
body.white div#nav-container ul li.main-nav a.selected, 
body.white div#nav-container ul li.sub-nav a.selected {
    color: #2a2a2a;
}
body.white div#nav-container ul.sub-nav-container {
  background-color: #f5f5f5;
}


body.black div#overlay {
  background-color: #000;
}
body.black div#nav-container ul li.main-nav a {
    color: #999;
}
body.black div#nav-container ul li.sub-nav a {
    color: #999;
}
body.black div#nav-container ul li.main-nav a.selected, 
body.black div#nav-container ul li.sub-nav a.selected {
    color: #fff;
}
body.black div#nav-container ul.sub-nav-container {
  background-color: #2a2a2a;
  box-shadow: inset 0px -1px 0px rgba(254, 254, 254, 0.1), inset 0px 1px 0px rgba(254, 254, 254, 0.1);
}
body.black div#nav-container ul.sub-nav-container .arrow_box:after {
    border-top-color: #000;
}
body.black #overlay .closeButton .icon-bar {
  background-color: #fff;
}





/* Launch Buttons */
button.launch {
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
  border: none;
  padding: 16px 25px;
  border-radius: 4px;
  margin-top: 20px;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


/* Page Content */
h1#mainTitle {
  font-weight: bold;
}

div#pageText h1, div#pageText h2 {
  line-height: 21px;
}

div#branding {
  margin-top: 55px;
}
div#branding-spacer {
  padding: 20px;
}
div#pageContent {
  overflow: hidden;
  margin: 0 20px;
}

div.pageTitle {
  margin: 20px 0;
}

div#subPageTitle {
  border-bottom: 1px solid #ddd;
}

div#subPageTitle h2 {
  padding-bottom: 20px;
}

div#pageText {
  line-height: 22px;
  margin-top: -20px;
  margin-bottom: 60px;
  overflow: hidden;
}
div#pageText p {
  margin: 20px 0;
}

/* Social Icons */
div.socialLinks {
  border-top: 1px solid #ddd;
  padding-top: 7px;
  padding-bottom: 16px;
}
div.socialLinks.hideBorder {
  border-top: none;
  padding-top: 0;
  margin-top: -10px;
}
div.socialLinks svg.icon {
  width: 24px;
  height: 24px;
  margin-right: 23px;
  margin-top: 13px;
}

h1#mainTitle {
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
}
h2#subTitle {
  text-transform: lowercase;
}

div#cloverIcon {
  float: right;
  width: 100%;
  text-align: right;
  margin: 10px;
}


/* List Page */

body.list-page #pageText .img-spacer {
  float: left;
  width: 100%;
  margin: 0 20px 20px 0;
}

body.list-page #mainTitle {
  line-height: initial;
  padding-bottom: 10px;
}

body.list-page #subTitle {
  text-transform: inherit;
}

body.list-page #pageText .pageTitle {
  margin-top: 0;
}


#passwordFormWrapper,
#passwordFormWrapper form,
#passwordFormWrapper input,
#passwordFormWrapper label,
#passwordFormWrapper button,
#passwordFormWrapper div {
  font-size: 14px;
  box-sizing: border-box;
}

div#passwordFormWrapper {
  min-width: 280px;
  white-space: nowrap;
  color: #454545;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin-top: 50px;
  width: 100%;
  min-width: 320px;
}

#passwordFormWrapper form {
  margin: 0;
  padding: 20px;
  border: none;
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  
  #passwordFormWrapper form {
    max-width: 550px;
    margin: 28px auto;
    padding: 24px;
    border: 1px solid #D8D8D8;
    
    /* https://www.colorzilla.com/gradient-editor/#ffffff+0,ffffff+57,f8f8f8+82,ededed+96,e8e8e8+100;Custom */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 57%, #f8f8f8 82%, #ededed 96%, #e8e8e8 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(57%,#ffffff), color-stop(82%,#f8f8f8), color-stop(96%,#ededed), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
  }
}


#passwordMessage {
  margin-bottom: 34px;
}
#passwordMessage p {
  white-space: normal;
  padding-left: 50px;
  padding-top: 8px;
  padding-right: 3px;
}
.passwordIcon {
  width: 43px;
  height: 48px;
  margin-right: 9px;
  background-repeat: no-repeat;
  background-color: #000000;
  float: left;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dppx) {
  .passwordIcon {
    background-image: url(../images/password-icon-mask-2x.png);
    background-size: 43px 48px;
  }
}

#passwordFormWrapper .passwordInput {
  width: 100%;
  margin-bottom: 8px;
}
#passwordFormWrapper .passwordButtons {
  width: 100%;
  white-space: nowrap;
  text-align: right;
}

#passwordFormWrapper label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 300;
  padding-left: 4px;
  line-height: 6px;
}
#passwordFormWrapper label.error {
  color: #c02727;
}

#passwordFormWrapper input {
  width: 100%;
  height: 34px;
  padding: .5rem;
  font-size: 14px;
  font-weight: 300;
  
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  outline: none;
  background: #F5F5F5;
  color: #454545;
  
  /* https://www.colorzilla.com/gradient-editor/#e8e8e8+0,ededed+4,f8f8f8+18,fefefe+33,ffffff+100;Custom */
  background: #e8e8e8; /* Old browsers */
  background: -moz-linear-gradient(top,  #e8e8e8 0%, #ededed 4%, #f8f8f8 18%, #fefefe 33%, #ffffff 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8e8e8), color-stop(4%,#ededed), color-stop(18%,#f8f8f8), color-stop(33%,#fefefe), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #e8e8e8 0%,#ededed 4%,#f8f8f8 18%,#fefefe 33%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #e8e8e8 0%,#ededed 4%,#f8f8f8 18%,#fefefe 33%,#ffffff 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #e8e8e8 0%,#ededed 4%,#f8f8f8 18%,#fefefe 33%,#ffffff 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #e8e8e8 0%,#ededed 4%,#f8f8f8 18%,#fefefe 33%,#ffffff 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8e8', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  
  
  -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
}

#passwordFormWrapper button.disabled:hover,
#passwordFormWrapper button {
  border-radius: 3px;
  border: 1px solid #d8d8d8;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  width: 103px;
  height: 43px;
  
  /* https://www.colorzilla.com/gradient-editor/#ffffff+0,ffffff+57,f8f8f8+82,ededed+96,e8e8e8+100;Custom */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 57%, #f8f8f8 82%, #ededed 96%, #e8e8e8 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(57%,#ffffff), color-stop(82%,#f8f8f8), color-stop(96%,#ededed), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
}

#passwordFormWrapper button:hover {
  
  /* https://www.colorzilla.com/gradient-editor/#ffffff+0,ffffff+47,f8f8f8+72,ededed+96,e8e8e8+100;Custom */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 47%, #f8f8f8 72%, #ededed 96%, #e8e8e8 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#ffffff), color-stop(72%,#f8f8f8), color-stop(96%,#ededed), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 47%,#f8f8f8 72%,#ededed 96%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 47%,#f8f8f8 72%,#ededed 96%,#e8e8e8 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 47%,#f8f8f8 72%,#ededed 96%,#e8e8e8 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 47%,#f8f8f8 72%,#ededed 96%,#e8e8e8 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
}

#passwordFormWrapper .disabled {
  cursor: default;
  opacity: .5;
  
  /* https://www.colorzilla.com/gradient-editor/#ffffff+0,ffffff+57,f8f8f8+82,ededed+96,e8e8e8+100;Custom */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 57%, #f8f8f8 82%, #ededed 96%, #e8e8e8 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(57%,#ffffff), color-stop(82%,#f8f8f8), color-stop(96%,#ededed), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 57%,#f8f8f8 82%,#ededed 96%,#e8e8e8 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 ); /* IE6-9 */
}



.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


.slideShow {
  clear: both;
}

.img-spacer {
  margin-bottom: 4px;
}


/* < ipad xxx */
/* IPHONE PORTRAIT */
@media all and (max-width : 767px) and (orientation:portrait) {
  button.launch {
    width: 100%;
  }
}
@media (max-width : 767px) {
  div#nav-container ul.main-nav-container li a {
    font-size: 20px;
  }
  div#nav-container ul.sub-nav-container li a {
    font-size: 16px;
  }
}