/******************************************************************
Site Name: Skystorm Army
Author: Spry Group

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
FIX IE7 INLINE-BLOCK
*********************/
.fixIE7 {
  *display: inline;
  *zoom: 1;
}
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.opensans-400 {
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.opensans-600 {
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.opensans-600-em {
  font-family: "open-sans-i6", "open-sans", sans-serif;
  font-style: italic;
  font-weight: 600;
}
.opensans-700 {
  font-family: "open-sans-n7", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.opensans-800 {
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
BACKGROUND SIZE
*********************/
/*
USAGE: .background-size(4px, 4px); 
*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
OPACITY
*********************/
/*********************
PLACEHOLDER
*********************/
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name: Skystorm Army
Author: Spry Group

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

------------ MAP ------------

01. GENERAL STYLES
03. LAYOUT & GRID STYLES
04. LINK STYLES
05. H1, H2, H3, H4, H5 STYLES
06. HEADER SYTLES
07. NAVIGATION STYLES
08. POSTS & CONTENT STYLES
09. PAGE NAVI STYLES
13. FOOTER STYLES
14. PAGES

******************************************************************/
/* =RESET
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
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,
td,
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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
/*********************
01. GENERAL STYLES
*********************/
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
/*********************
03. LAYOUT & GRID STYLES
*********************/
#wrap {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  background: url(/images/map-bg.jpg) no-repeat center 152px;
  background-size: cover;
}
.center {
  width: 100%;
  padding: 0 15px;
}
#content {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 100%;
  padding-bottom: 220px;
  z-index: 99;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
/*********************
04. LINK STYLES
*********************/
/******************************************************************
05. H1, H2, H3, H4, H5 STYLES
******************************************************************/
/*********************
06. HEADER SYTLES
*********************/
#header {
  position: relative;
  display: block;
  width: 100%;
  height: 152px;
  background: #1e1e1e;
  z-index: 100;
}
#header .header-grad {
  position: relative;
  display: block;
  width: 100%;
  height: 111px;
  background: url(/images/header-grad.jpg) repeat-x;
}
#header .header-grad #logo {
  position: relative;
  display: block;
  float: left;
  width: 75px;
  height: 100px;
  margin-top: 5px;
  background: url(/images/logo.png) no-repeat;
}
#header .header-grad .header-name {
  position: relative;
  display: table-cell;
  font-family: "open-sans-n7", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #FFF;
  height: 111px;
  vertical-align: middle;
  padding-left: 20px;
  text-transform: uppercase;
}
#header .header-yellow {
  position: relative;
  display: block;
  width: 100%;
  height: 41px;
  background: #f5c936;
}
#header .header-yellow .center {
  padding: 0;
}
#header .header-yellow .crumbs {
  position: relative;
  display: none;
  float: left;
  height: 41px;
  line-height: 41px;
  font-family: "open-sans-n7", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
}
#header .header-yellow .crumbs span {
  font-family: "open-sans-n7", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
}
#header .header-yellow .crumbs a {
  font-family: "open-sans-n7", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
}
#header .header-yellow .crumbs .crumb-Videos a {
  cursor: default;
}
#header #menu-main-navigation {
  position: relative;
  display: block;
  width: 100%;
}
#header #menu-main-navigation > li {
  position: relative;
  display: block;
  float: right;
  width: 100%;
  text-align: center;
}
#header #menu-main-navigation > li a {
  position: relative;
  display: block;
  height: 41px;
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  text-transform: uppercase;
  line-height: 41px;
}
#header #menu-main-navigation > li .sub-menu {
  position: absolute;
  display: none;
  top: 41px;
  left: 0;
  width: 100%;
  background: #f5c936;
  border-left: solid 1px #000;
  left: -1px;
}
#header #menu-main-navigation > li .sub-menu li {
  position: relative;
  display: block;
}
#header #menu-main-navigation > li .sub-menu li a {
  position: relative;
  display: block;
  width: 100%;
  height: 35px;
  line-height: 34px;
  background: #f5c936;
  border-top: solid 1px #333333;
  padding-left: 20px;
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  letter-spacing: 1px;
  text-align: left;
}
#header #menu-main-navigation > li:hover .sub-menu {
  display: block;
}
#header #menu-main-navigation > li#menu-item-80 {
  border-left: solid 1px #333333;
}
#header #menu-main-navigation > li#menu-item-80 > a {
  background: url(/images/drop-arrow.png) no-repeat 72% 18px;
}
/*********************
07. NAVIGATION STYLES
*********************/
/*********************
08. POSTS & CONTENT STYLES
*********************/
/*********************
09. PAGE NAVI STYLES
*********************/
/*********************
13. FOOTER STYLES
*********************/
#footer {
  position: relative;
  display: block;
  height: 90px;
  margin-top: -90px;
  z-index: 100;
  background: url(/images/footer-grad.jpg) repeat-x;
  -webkit-background-size: auto 90px;
  -moz-background-size: auto 90px;
  background-size: auto 90px;
}
#footer .footer-logo {
  position: relative;
  display: block;
  float: left;
  width: 123px;
  height: 41px;
  margin-top: 24px;
  background: url(/images/footer-logo.png) no-repeat;
}
#footer .footer-text {
  position: absolute;
  display: block;
  bottom: 110px;
  left: 0;
  padding: 0 30px;
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  color: #FFF;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.4em;
}
#footer .footer-text .yellow {
  color: #f5c936;
}
#footer .footer-text a {
  color: #FFF;
}
#footer .footer-social {
  position: relative;
  display: block;
  float: right;
  width: 98px;
  margin-top: 30px;
}
#footer .footer-social a {
  position: relative;
  display: block;
  float: left;
  width: 28px;
  height: 28px;
  margin-right: 7px;
}
#footer .footer-social a.twitter {
  background: url(/images/footer-twitter.png) no-repeat;
}
#footer .footer-social a.facebook {
  background: url(/images/footer-facebook.png) no-repeat;
}
#footer .footer-social a.tumblr {
  background: url(/images/footer-tumblr.png) no-repeat;
  margin-right: 0;
}
/*********************
14. PAGESsolid 1px #FFF
*********************/
#content.home .center {
  padding-top: 55px;
}
#content.home .main-title {
  position: relative;
  display: block;
  margin-bottom: 55px;
  text-align: center;
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #FFF;
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#content.home .main-title .yellow {
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #f5c936;
}
#content.home .video-links {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 50px 0;
}
#content.home .video-links #menu-video-navigation {
  position: relative;
  display: block;
}
#content.home .video-links #menu-video-navigation > li {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  width: 100%;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 35px;
}
#content.home .video-links #menu-video-navigation > li a {
  position: relative;
  display: inline-block;
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: #FFF;
  padding-bottom: 3px;
  border-bottom: solid 1px #FFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.home .video-links #menu-video-navigation > li a:hover {
  color: #f5c936;
  border-bottom: solid 1px #f5c936;
}
#content.splash .sub-title {
  position: relative;
  text-align: center;
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFF;
  margin-bottom: 40px;
  line-height: 1.4em;
}
#content.splash .formatted {
  position: relative;
  padding: 0 15px;
}
#content.splash .formatted p {
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5em;
  margin-bottom: 15px;
}
#content.splash .formatted a {
  color: #f5c936;
}
#content.splash .icon-links {
  position: relative;
}
#content.splash .icon-links .a-product {
  position: relative;
  display: block;
  width: 100%;
}
#content.splash .icon-links .a-product .icon {
  position: relative;
  display: block;
  overflow: hidden;
  width: 150px;
  height: 110px;
  margin: 0 auto 15px auto;
}
#content.splash .icon-links .a-product .icon img {
  display: block;
}
#content.splash .icon-links .a-product .title {
  position: relative;
  display: block;
  text-align: center;
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: #FFF;
  text-transform: uppercase;
  line-height: 1.4em;
  margin-bottom: 40px;
  padding: 0 20px;
}
#content.splash .icon-links .a-product .content {
  display: none;
}
#content.splash .icon-links .a-product .learn-more {
  display: none;
}
body.page-template-default #header {
  height: 186px;
}
body.page-template-default #header .header-yellow {
  height: 75px;
}
body.page-template-default #header .header-yellow #menu-main-navigation {
  min-height: 41px;
  z-index: 200;
}
body.page-template-default #header .header-yellow .crumbs {
  position: relative;
  display: block;
  width: 100%;
  height: 34px;
  line-height: 31px;
  z-index: 100;
  background: #f5c936;
  border-top: solid 1px #000;
  font-size: 11px;
  padding: 0 10px;
}
#content.page-template .right-col {
  position: relative;
  width: 100%;
}
#content.page-template .right-col .left-col-tablet {
  display: none;
}
#content.page-template .right-col .video-container {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin-bottom: 36px;
}
#content.page-template .right-col .video-container .inside:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#content.page-template .right-col .video-container iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
#content.page-template .right-col .video-container .overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(/images/grey-slice2.png) repeat;
}
#content.page-template .right-col .info-container {
  position: relative;
}
#content.page-template .right-col .info-container .refs {
  position: relative;
  margin-bottom: 30px;
  z-index: 400;
}
#content.page-template .right-col .info-container .refs .warning {
  position: relative;
  display: block;
  float: left;
  width: 48%;
  height: 31px;
  margin-right: 2%;
  margin-bottom: 20px;
  border: solid 3px #f53636;
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
  background: none;
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  color: #f53636;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.page-template .right-col .info-container .refs .warning.pulseAnimate {
  box-shadow: 0 0 26px rgba(245, 54, 54, 0.85);
  -moz-box-shadow: 0 0 26px rgba(245, 54, 54, 0.85);
  -webkit-box-shadow: 0 0 26px rgba(245, 54, 54, 0.85);
  -o-box-shadow: 0 0 26px rgba(245, 54, 54, 0.85);
}
#content.page-template .right-col .info-container .refs .caution {
  position: relative;
  display: block;
  float: right;
  width: 48%;
  height: 31px;
  margin-left: 2%;
  margin-bottom: 20px;
  border: solid 3px #f5c936;
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
  background: none;
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  color: #f5c936;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.page-template .right-col .info-container .refs .caution.pulseAnimate {
  box-shadow: 0 0 26px rgba(245, 201, 54, 0.85);
  -moz-box-shadow: 0 0 26px rgba(245, 201, 54, 0.85);
  -webkit-box-shadow: 0 0 26px rgba(245, 201, 54, 0.85);
  -o-box-shadow: 0 0 26px rgba(245, 201, 54, 0.85);
}
#content.page-template .right-col .info-container .refs .other-materials {
  position: relative;
  display: block;
  width: 100%;
  min-width: 122px;
  height: 31px;
  cursor: pointer;
}
#content.page-template .right-col .info-container .refs .other-materials .inside {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 31px;
  max-height: 31px;
  top: 0;
  left: 0;
  border: solid 3px #FFF;
  text-align: left;
  line-height: 25px;
  letter-spacing: 1px;
  padding-left: 12px;
  background: none;
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  color: #FFF;
  text-transform: uppercase;
  background: url(/images/grey-slice.png) repeat;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.page-template .right-col .info-container .refs .other-materials .inside .ref-title {
  position: relative;
}
#content.page-template .right-col .info-container .refs .other-materials .inside .ref-title span {
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 6px;
  background: url(/images/white-drop-arrow.png) no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.page-template .right-col .info-container .refs .other-materials .inside .ref-title,
#content.page-template .right-col .info-container .refs .other-materials .inside a {
  margin-bottom: 5px;
}
#content.page-template .right-col .info-container .refs .other-materials .inside a {
  position: relative;
  display: block;
  color: #FFF;
  padding-left: 0;
  padding-right: 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.page-template .right-col .info-container .refs .other-materials.open .inside {
  max-height: 200px;
}
#content.page-template .right-col .info-container .refs .other-materials.open .inside .ref-title span {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}
#content.page-template .right-col .formatted {
  position: relative;
  margin-bottom: 26px;
}
#content.page-template .right-col .formatted .the-title {
  position: relative;
  display: block;
  font-family: "open-sans-i6", "open-sans", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: #FFF;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#content.page-template .right-col .formatted p {
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5em;
  margin-bottom: 15px;
}
#content.page-template .left-col {
  position: relative;
  display: block;
  width: 100%;
  border: solid 3px #f5c936;
  background: url(/images/sidebar-bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 13px 17px;
  margin-bottom: 40px;
}
#content.page-template .left-col .the-title {
  position: relative;
  display: block;
  font-family: "open-sans-n8", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  color: #f5c936;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: solid 1px #f5c936;
}
#content.page-template .left-col .video-list {
  position: relative;
}
#content.page-template .left-col .video-list a {
  position: relative;
  display: block;
  font-family: "open-sans-n6", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #FFF;
  margin-bottom: 10px;
}
#content.page-template .left-col .video-list a.active,
#content.page-template .left-col .video-list a.current-parent {
  color: #f5c936;
}
#content.page-template .left-col .video-list a.completed {
  color: #008000;
}
#content.page-template .left-col .video-list a.sub {
  padding-left: 20px;
}
#content.page-template .left-col .video-list a .warning-yes,
#content.page-template .left-col .video-list a .caution-yes {
  display: none;
}
#content.page-template .app-links {
  position: relative;
  display: block;
  width: 180px;
  margin: 0 auto;
  padding-bottom: 16px;
}
#content.page-template .app-links a {
  position: relative;
  display: none;
  width: 180px;
  height: 72px;
  margin-bottom: 21px;
  background: url(/images/sidebar-bg.jpg) no-repeat center top;
}
#content.page-template .app-links a .icon {
  position: relative;
  display: block;
  float: left;
  width: 90px;
  height: 66px;
  margin-left: 7px;
  margin-right: 14px;
}
#content.page-template .app-links a .icon img {
  display: block;
  width: 90px;
  height: 66px;
}
#content.page-template .app-links a .other-icon {
  position: relative;
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  margin-top: 7px;
}
#content.page-template .app-links a.apple {
  border: none;
  background: url(/images/appstore-btn.png) no-repeat center center;
  -webkit-background-size: 180px 72px;
  -moz-background-size: 180px 72px;
  background-size: 180px 72px;
}
#content.page-template .app-links a.android {
  border: solid 3px #73bb24;
}
#content.page-template .app-links a.android .other-icon {
  background: url(/images/android.png) no-repeat;
  margin-top: 8px;
}
#content.page-template .mobile-content {
  font-family: "open-sans-n4", "open-sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5em;
}
#content.page-template .mobile-content .yellow {
  color: #f5c936;
}
html.android #content.page-template .right-col .video-container {
  height: 350px;
}
html.android #content.page-template .right-col .video-container iframe {
  height: 350px;
}
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
/*
@media only screen and (min-width: 481px) {

	// styles in 481up.less
	@import "_481up.less";

} // end of media query
*/
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 768px) {
  #content {
    padding-bottom: 153px;
  }
  #header #menu-main-navigation {
    float: right;
    width: auto;
    margin-right: 50px;
  }
  #header #menu-main-navigation > li {
    position: relative;
    display: block;
    float: right;
    margin-left: 14px;
    width: auto;
  }
  #header #menu-main-navigation > li a {
    position: relative;
    display: block;
    height: 41px;
    padding-right: 17px;
    padding-left: 17px;
    font-family: "open-sans-n6", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    line-height: 41px;
    border-bottom: solid 0px #000;
  }
  #header #menu-main-navigation > li#menu-item-17 a {
    -webkit-transition: border 0.2s ease-in-out;
    -moz-transition: border 0.2s ease-in-out;
    -ms-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
  }
  #header #menu-main-navigation > li#menu-item-17 a:hover {
    border-bottom: solid 2px #000;
  }
  #header #menu-main-navigation > li .sub-menu {
    position: absolute;
    display: none;
    top: 41px;
    right: 0;
    left: auto;
    width: 237px;
    background: #f5c936;
    border-left: solid 1px #000;
  }
  #header #menu-main-navigation > li .sub-menu li {
    position: relative;
    display: block;
  }
  #header #menu-main-navigation > li .sub-menu li a {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    line-height: 34px;
    background: #f5c936;
    border-top: solid 1px #333333;
    padding-left: 20px;
    font-family: "open-sans-n6", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px;
  }
  #header #menu-main-navigation > li .sub-menu li a:hover {
    text-decoration: underline;
  }
  #header #menu-main-navigation > li:hover .sub-menu {
    display: block;
  }
  #header #menu-main-navigation > li#menu-item-80 {
    border: none;
  }
  #header #menu-main-navigation > li#menu-item-80 > a {
    background: url(/images/drop-arrow.png) no-repeat right 18px;
  }
  #header .header-grad .header-name {
    position: relative;
    display: block;
    float: left;
    height: auto;
    font-family: "open-sans-n7", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #FFF;
    padding-top: 46px;
    padding-left: 40px;
    text-transform: uppercase;
  }
  #header .header-yellow .crumbs {
    display: block;
  }
  #footer {
    height: 152px;
    margin-top: -152px;
    background: url(/images/footer-grad.jpg) repeat-x;
    -webkit-background-size: auto 152px;
    -moz-background-size: auto 152px;
    background-size: auto 152px;
  }
  #footer .footer-logo {
    margin-top: 60px;
    margin-right: 74px;
    margin-left: 15px;
  }
  #footer .footer-text {
    padding: 0 220px;
    top: 53px;
    bottom: auto;
    text-align: left;
  }
  #footer .footer-social {
    position: relative;
    display: block;
    float: right;
    width: 98px;
    margin-top: 60px;
    margin-right: 15px;
  }
  #footer .footer-social a {
    position: relative;
    display: block;
    float: left;
    width: 28px;
    height: 28px;
    margin-right: 7px;
  }
  #footer .footer-social a.twitter {
    background: url(/images/footer-twitter.png) no-repeat;
  }
  #footer .footer-social a.facebook {
    background: url(/images/footer-facebook.png) no-repeat;
  }
  #footer .footer-social a.tumblr {
    background: url(/images/footer-tumblr.png) no-repeat;
    margin-right: 0;
  }
  #content.home .center {
    padding-top: 125px;
  }
  #content.home .main-title {
    font-size: 41px;
    margin-bottom: 65px;
  }
  #content.home .video-links {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 50px 0;
  }
  #content.home .video-links #menu-video-navigation {
    position: relative;
    display: block;
  }
  #content.home .video-links #menu-video-navigation > li {
    float: left;
    width: 25%;
    padding: 0;
    margin-left: 18.65%;
    text-align: left;
    margin-bottom: 35px;
  }
  #content.home .video-links #menu-video-navigation > li a {
    font-size: 30px;
  }
  #content.splash .center {
    padding-top: 100px;
  }
  #content.splash .main-title {
    margin-bottom: 75px;
  }
  #content.splash .sub-title {
    display: none;
  }
  #content.splash .formatted {
    padding: 0 50px;
  }
  #content.splash .icon-links {
    text-align: center;
    padding-bottom: 120px;
  }
  #content.splash .icon-links .a-product {
    display: inline-block;
    vertical-align: top;
    width: 28%;
    margin: 0 2%;
  }
  #content.splash .icon-links .a-product .title {
    margin-bottom: 20px;
    padding: 0;
    letter-spacing: 1px;
  }
  #content.splash .icon-links .a-product .content {
    position: relative;
    display: block;
    font-family: "open-sans-n4", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: #FFF;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
  #content.splash .icon-links .a-product .learn-more {
    posiiton: relative;
    display: block;
    text-align: center;
    font-family: "open-sans-n7", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    color: #f5c936;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
  }
  body.page-template-default #header {
    height: 152px;
  }
  body.page-template-default #header .header-yellow {
    height: 41px;
  }
  body.page-template-default #header .header-yellow #menu-main-navigation {
    min-height: 41px;
    z-index: 200;
  }
  body.page-template-default #header .header-yellow .crumbs {
    width: auto;
    height: 41px;
    line-height: 41px;
    font-size: 13px;
    padding: 0 15px;
    border-top: none;
  }
  #content.page-template .center {
    padding-top: 60px;
  }
  #content.page-template .right-col .info-container .refs .clearmobile {
    display: none;
  }
  #content.page-template .right-col .info-container .refs .warning,
  #content.page-template .right-col .info-container .refs .caution {
    width: 122px;
    margin: 0 20px 0 0;
  }
  #content.page-template .right-col .info-container .refs .caution {
    float: left;
  }
  #content.page-template .right-col .info-container .refs .other-materials {
    width: auto;
    float: left;
  }
  #content.page-template .right-col .info-container .refs .other-materials .inside {
    position: relative;
  }
  #content.page-template .right-col .info-container .refs .other-materials .inside a:hover {
    color: #f5c936;
  }
  #content.page-template .right-col .formatted {
    padding-left: 36%;
  }
  #content.page-template .right-col .left-col-tablet {
    position: relative;
    display: block;
    width: 33%%;
    float: left;
    border: solid 3px #f5c936;
    background: url(/images/sidebar-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 13px 17px;
    margin-bottom: 40px;
    z-index: 999;
  }
  #content.page-template .right-col .left-col-tablet .the-title {
    position: relative;
    display: block;
    font-family: "open-sans-n8", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 15px;
    color: #f5c936;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: solid 1px #f5c936;
  }
  #content.page-template .right-col .left-col-tablet .video-list {
    position: relative;
  }
  #content.page-template .right-col .left-col-tablet .video-list a {
    position: relative;
    display: block;
    font-family: "open-sans-n6", "open-sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #FFF;
    margin-bottom: 10px;
  }
  #content.page-template .right-col .left-col-tablet .video-list a.active,
  #content.page-template .right-col .left-col-tablet .video-list a.current-parent {
    color: #f5c936;
  },
  #content.page-template .right-col .left-col-tablet .video-list a.completed {
    color: #008000;
  }
  #content.page-template .right-col .left-col-tablet .video-list a.sub {
    padding-left: 26px;
  }
  #content.page-template .right-col .left-col-tablet .video-list a .warning-yes,
  #content.page-template .right-col .left-col-tablet .video-list a .caution-yes {
    display: none;
  }
  #content.page-template .left-col {
    display: none;
  }
  #content.page-template .app-links {
    margin: 0;
    padding-left: 36%;
    width: auto;
    height: 93px;
  }
  #content.page-template .app-links a {
    float: left;
    display: none;
  }
  #content.page-template .app-links .apple {
    margin-right: 17px;
  }
  #content.page-template .mobile-content {
    padding-left: 36%;
  }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 960px) {
  .center {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  #header #menu-main-navigation {
    margin-right: 0;
  }
  #footer .footer-text {
    padding: 0;
    width: 590px;
    text-align: left;
    left: 50%;
    margin-left: -278px;
    font-size: 12px;
  }
  #content.home .video-links #menu-video-navigation > li {
    margin-bottom: 45px;
  }
  #content.splash .formatted {
    padding: 0 100px;
  }
  #content.splash .icon-links .a-product .learn-more {
    font-size: 16px;
  }
  body.page-template-default #header .header-yellow .crumbs {
    padding: 0;
  }
  #content.page-template {
    padding-bottom: 200px;
  }
  #content.page-template .mobile-content {
    display: none;
  }
  #content.page-template .left-col {
    display: block;
    width: 256px;
    float: left;
  }
  #content.page-template .left-col .video-list a:hover {
    color: #f5c936;
  }
  #content.page-template .right-col {
    width: 660px;
    float: right;
  }
  #content.page-template .right-col .left-col-tablet {
    display: none;
  }
  #content.page-template .right-col .formatted {
    padding-left: 0;
  }
  #content.page-template .app-links {
    padding-left: 303px;
  }
}
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-device-width: 2300px),
       only screen and (min--moz-device-pixel-ratio: 1.5) and (max-device-width: 2300px),
       only screen and (min-device-pixel-ratio: 1.5) and (max-device-width: 2300px) {

	// styles in 2x.less
	@import "_2x.less";

} // end of media query
*/
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {

  // iPhone 5 or iPod Touch 5th generation styles (you can include your own file if you want)

}
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
/*
@media print {

	@import "_print.less";

} // end of media query
*/