@CHARSET "UTF-8";

/* Initialize & Reset Elements
*******************************/
* { box-sizing: border-box; }
:focus { outline: none; }
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, 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, input, select, button {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    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 {
    font-family: Arial, "PT Serif", Georgia, Times, serif;
	font-size: 10px;
	font-weight: 400px;
	line-height: 10px;
}
/* End Reset
*************/

/* Text Related Sizing, Weight, Display
****************************************/
.underline { text-decoration: underline; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.lowercase { text-transform: lowercase; }
.italic, em, i { font-style: italic; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center, center { text-align: center; }
.text-weight-lighter { font-weight: lighter; }
.text-weight-normal { font-weight: normal; }
.text-weight-bold { font-weight: bold; }
.text-weight-bolder, strong { font-weight: bolder; }
.no-wrap { white-space: nowrap; }
.normal-wrap { white-space: normal; }
.overflow-hidden { overflow: hidden; }
.overflowX-scroll { overflow-x: auto; }
.overflowX-scroll:not(.overflowY-scroll) { overflow-y: hidden; }
.overflowY-scroll { overflow-y: hidden; }
.overflowY-scroll:not(.overflowX-scroll) { overflow-x: hidden; }
.h1-shadow {
	font-size: 200%;
  /* again, to increase the chance of the text exceeding
     the view-port: */
  	letter-spacing: 400%;
  /* to prevent scroll-bars: */
  	overflow: hidden;
  /* preventing line-breaks, to stop wrapping: */
  	white-space: nowrap;
	text-shadow: 0.2rem 0.2rem 0.4rem rgba(0,0,0,0.80);
}
.size-smallest {
	font-size: 2.0rem;
	line-height: 2.8rem;
}
.size-xsmall {
	font-size: 2.6rem;
	line-height: 3.6rem;
}
.size-small {
	font-size: 3.0rem;
	line-height: 4.2rem;
}
.size-regular {
	font-size: 3.4rem;
	line-height: 4.8rem;
}
.size-large {
	font-size: 3.8rem;
	line-height: 5.0rem;
}
.size-larger {
	font-size: 4.2rem;
	line-height: 5.4rem;
}
.size-xlarge {
	font-size: 4.8rem;
	line-height: 5.8rem;
}
.size-largest {
	font-size: 5.6rem;
	line-height: 6.8rem;
}
h1 {
	font-size: 5.6rem;
	line-height: 6.8rem;
	margin: 0;
	padding: 0;
}
h2 {
	font-size: 4.8rem;
	line-height: 5.8rem;
	margin: 0;
	padding: 0;
}
h3 {
	font-size: 4.2rem;
	line-height: 5.4rem;
	margin: 0;
	padding: 0;
}
h4 {
	font-size: 3.8rem;
	line-height: 5rem;
	margin: 0;
	padding: 0;
}
h5 {
	font-size: 3rem;
	line-height: 4.2rem;
	margin: 0;
	padding: 0;
}
h6 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin: 0;
    padding: 0;
}
/* End Text Setting
********************/

/* Clear
*********/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    height: 0;
}
.clear { clear: both; }
/* End Clear
*************/

/* Display
***********/
.display-block { display: block; }
.display-flex {
    display: flex;
    flex-wrap: nowrap;
}
.display-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.display-none { display: none; }
.display-table { display: table; }
.display-inline { display: inline; }
.display-inline-block { display: inline-block; }
.align-center { align-items: center; }
.align-top { align-items: flex-start; }
/* End Display
***************/

/* Overflow
************/
.no-wrap { white-space: nowrap; }
.normal-wrap { white-space: normal; }
.overflow-hidden { overflow: hidden; }
.overflowX-scroll {
    overflow-x: auto;
    &:not(.overflowY-scroll) { overflow-y: hidden; }
}
.overflowY-scroll {
    &:not(.overflowX-scroll) { overflow-x: hidden; }
    overflow-y: scroll;
}
/* End Overflow
****************/

/* Float
*********/
.float-left { float: left; }

/* Width & Height
******************/
.width-onethird { width: 33.3%; }
.width-twothirds { width: 66.6%; }
.width-half { width: 50%; }
.width-max { width: 100%; }
.width-maxview { width: 100vw; }
.height-max { height: 100%; }
.height-maxview { height: 100vh; }
/* End Width & Height
**********************/

/* Padding & Margin
********************/
.padding-none {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}
.padding-bottom-none { padding-bottom: 0; }
.padding-left-none { padding-left: 0; }
.padding-right-none { padding-right: 0; }
.padding-top-none { padding-top: 0; }
.padding-fourth {
    padding-bottom: 0.8rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-top: 0.8rem;
}
.padding-bottom-fourth { padding-bottom: 0.8rem; }
.padding-left-fourth { padding-left: 0.8rem; }
.padding-right-fourth { padding-right: 0.8rem; }
.padding-top-fourth { padding-top: 0.8rem; }
.padding-half {
    padding-bottom: 1.7rem;
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    padding-top: 1.7rem;
}
.padding-bottom-half { padding-bottom: 1.7rem; }
.padding-left-half { padding-left: 1.7rem; }
.padding-right-half { padding-right: 1.7rem; }
.padding-top-half { padding-top: 1.7rem; }
.padding {
    padding-bottom: 3.4rem;
    padding-left: 3.4rem;
    padding-right: 3.4rem;
    padding-top: 3.4rem;
}
.padding-bottom { padding-bottom: 3.4rem; }
.padding-left { padding-left: 3.4rem; }
.padding-right { padding-right: 3.4rem; }
.padding-top { padding-top: 3.4rem; }
.padding-double {
    padding-bottom: 6.8rem;
    padding-left: 6.8rem;
    padding-right: 6.8rem;
    padding-top: 6.8rem;
}
.padding-bottom-double { padding-bottom: 6.8rem; }
.padding-left-double { padding-left: 6.8rem; }
.padding-right-double { padding-right: 6.8rem; }
.padding-top-double { padding-top: 6.8rem; }
.margin-none {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}
.margin-bottom-none { margin-bottom: 0; }
.margin-left-none { margin-left: 0; }
.margin-right-none { margin-right: 0; }
.margin-top-none { margin-top: 0; }
.margin-fourth {
    margin-bottom: 0.8rem;
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    margin-top: 0.8rem;
}
.margin-bottom-fourth { margin-bottom: 0.8rem; }
.margin-left-fourth { margin-left: 0.8rem; }
.margin-right-fourth { margin-right: 0.8rem; }
.margin-top-fourth { margin-top: 0.8rem; }
.margin-half {
    margin-bottom: 1.7rem;
    margin-left: 1.7rem;
    margin-right: 1.7rem;
    margin-top: 1.7rem;
}
.margin-bottom-half { margin-bottom: 1.7rem; }
.margin-left-half { margin-left: 1.7rem; }
.margin-right-half { margin-right: 1.7rem; }
.margin-top-half { margin-top: 1.7rem; }
.margin {
    margin-bottom: 3.4rem;
    margin-left: 3.4rem;
    margin-right: 3.4rem;
    margin-top: 3.4rem;
}
.margin-bottom { margin-bottom: 3.4rem; }
.margin-left { margin-left: 3.4rem; }
.margin-right { margin-right: 3.4rem; }
.margin-top { margin-top: 3.4rem; }
.margin-double {
    margin-bottom: 6.8rem;
    margin-left: 6.8rem;
    margin-right: 6.8rem;
    margin-top: 6.8rem;
}
.margin-bottom-double { margin-bottom: 6.8rem; }
.margin-left-double { margin-left: 6.8rem; }
.margin-right-double { margin-right: 6.8rem; }
.margin-top-double { margin-top: 6.8rem; }
/* End Padding & Margin
************************/

/* Position
************/
.position-relative { position: relative; }
.position-bottom-left {
    bottom: 0;
    left: 0;
    position: absolute;
}
.position-bottom-right {
    bottom: 0;
    right: 0;
    position: absolute;
}
.position-top-left {
    top: 0;
    left: 0;
    position: absolute;
}
.position-top-right {
    top: 0;
    right: 0;
    position: absolute;
}
/* End Position
****************/

/* Colors
**********
Red: #AB2011
Green: #36F890
Black: #000000
White: #FFFFFF
Grey Dark: #333333, rgb(51, 51, 51)
Grey Light: #EEEEEE, rgb(238, 238, 238)
Accent Dark: #001E44, rgb(0, 30, 68)
Accent Light: #00459E, rgb(0, 69, 158)
Primary: #F7AA1D, rgb(247, 170, 29)
************************************/
.paint-white { background-color: #FFFFFF; }
.paint-white-p5 { background-color: rgba(255, 255, 255, 0.5); }
.paint-white-p75 { background-color: rgba(255, 255, 255, 0.75); }
.paint-black { background-color: #000000; }
.paint-black-p25 { background-color: rgba(0, 0, 0, 0.25); }
.paint-black-p5 { background-color: rgba(0, 0, 0, 0.5); }
.paint-dark-grey { background-color: #333333; }
.paint-light-grey { background-color: #EEEEEE; }
.paint-light-grey-p75 { background-color: rgba(238, 238, 238, 0.75); }
.paint-dark-grey-p75 { background-color: rgba(0, 0, 0, 0.75); }
.paint-dark-grey-p60 { background-color: rgba(0, 0, 0, 0.50); }
.paint-primary { background-color: #F7AA1D; }
.paint-accent { background-color: #00459E; }
.paint-accent-dark { background-color: #001E44; }
.paint-accent-dark-p5 { background-color: rgba(0, 30, 68, 0.5); }
.paint-good { background-color: #36F890; }
.paint-bad { background-color: #AB2011; }
.color-black { color: #000000; }
.color-white { color: #FFFFFF; }
.color-dark-grey { color: #333333; }
.color-light-grey { color: #EEEEEE; }
.color-primary { color: #F7AA1D; }
.color-accent { color: #00459E; }
.color-accent-dark { color: #001E44; }
.color-good { color: #36F890; }
.color-bad { color: #AB2011; }
/* End Color
*************/

/* Border
**********/
.border-black { border: 1px solid #000000; }
.border-top-black { border-top: 1px solid #000000; }
.border-left-black { border-left: 1px solid #000000; }
.border-right-black { border-right: 1px solid #000000; }
.border-bottom-black { border-bottom: 1px solid #000000; }
.border-black-p5 { border: 1px solid rgba(0,0,0,0.50); }
.border-top-black-p5 { border-top: 1px solid rgba(0,0,0,0.50); }
.border-left-black-p5 { border-left: 1px solid rgba(0,0,0,0.50); }
.border-right-black-p5 { border-right: 1px solid rgba(0,0,0,0.50); }
.border-bottom-black-p5 { border-bottom: 1px solid rgba(0,0,0,0.50); }
.border-bad { border: 4px solid #AB2011; }
/* End Border
**************/

/* BODY
********/
body {
	background-color: #000000;
	color: #FFFFFF;
	direction: ltr;
	font-size: 3.4rem;
	font-weight: 400px;
	height: 100vh;
	line-height: 4.8rem;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100vw;
}
/* End Body
************/

/* Messaging
*************/
.message {
	display: block;
	margin-bottom: 3.4rem;
    padding-bottom: 3.4rem;
    padding-left: 3.4rem;
    padding-right: 3.4rem;
    padding-top: 3.4rem;
}
.message.good {
	color: #333333;
    background-color: #36F890;
}
.message.bad {
	color: #EEEEEE;
	background-color: #AB2011;
}
.messagesign.bad {
	color: #EEEEEE;
	background-color: #AB2011;
}
.message.generic {
	color: #FFFFFF;
	background-color: #00459E;
}

/* Mock Form
*************/
.mock-form {
    /*background-color: #161616;*/
    background-color: #ffffff;
    -moz-box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
    color: #000000;
    display: block;
    padding-bottom: 3.4rem;
    padding-left: 3.4rem;
    padding-right: 3.4rem;
    padding-top: 3.4rem;
    position: relative;
}
/* End Mock Form
*****************/

/* Label
*********/
label {
	display: block;
	font-size: 2rem;
	line-height: 2.8rem;
	text-transform: uppercase;
}
/* End Labels
**************/

/* Inputs
**********/
input {
	background-color: #000000;
	border: 4px solid rgba(0,0,0,0.25);
	-webkit-border-radius: 8rem;
    -moz-border-radius: 8rem;
    -ms-border-radius: 8rem;
    -o-border-radius: 8rem;
    border-radius: 8rem;
    color: #EEEEEE;
    display: block;
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin: 0;
    padding: 2.4rem 2rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
}
input:focus, input.focus {
	background-color: #000000;
	border: 4px solid #C25f11;
}
input.is-error { border: 4px solid #AB2011; }

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #5b5b5b;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #5b5b5b;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #5b5b5b;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #5b5b5b;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #5b5b5b;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #5b5b5b;
}

/* End Input
*************/

/* Buttons
***********/
button {
    background-image: none;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
}
button.cta {
	background-color: #0F52BA;
    border: 4px solid transparent;
    -webkit-box-shadow: 0px 0px 6px #333333;
    -moz-box-shadow: 0px 0px 6px #333333;
    box-shadow: 0px 0px 6px #333333;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    border-radius: 1rem;
    color: #FFFFFF;
    font-size: 3.8rem;
    line-height: 3.8rem;
    padding-bottom: 3.0rem;
    padding-left: 4.0rem;
    padding-right: 4.0rem;
    padding-top: 3.2rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}
button.cta-red {
	background-color: red;
    border: 4px solid transparent;
    -webkit-box-shadow: 0 0 6px #333333;
    -moz-box-shadow: 0 0 6px #333333;
    box-shadow: 0 0 6px #333333;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    color: #ffffff;
    font-size: 3.8rem;
    line-height: 3.8rem;
    padding-bottom: 3.0rem;
    padding-left: 4.0rem;
    padding-right: 4.0rem;
    padding-top: 3.2rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}

button.cta-gray {
	background-color: darkslategray;
    border: 4px solid transparent;
    -webkit-box-shadow: 0 0 6px #333333;
    -moz-box-shadow: 0 0 6px #333333;
    box-shadow: 0 0 6px #333333;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    color: #ffffff;
    font-size: 3.8rem;
    line-height: 3.8rem;
    padding-bottom: 3.0rem;
    padding-left: 4.0rem;
    padding-right: 4.0rem;
    padding-top: 3.2rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}

button.cta:focus, button.cta.focus {
	background-color: #FF061c;
    border: 4px solid #FF5A5A;
    color: #FFFFFF;
    -webkit-box-shadow: 0 0 8px #333333;
    -moz-box-shadow: 0 0 8px #333333;
    box-shadow: 0 0 8px #333333;
    text-decoration: none;
}
button.cta:active, button.cta.focus:active {
	background-color: #FF061c;
    border: 4px solid #000000;
    color: #FFFFFF;
    -webkit-box-shadow: 0 0 8px transparent;
    -moz-box-shadow: 0 0 8px transparent;
    box-shadow: 0 0 8px transparent;
    text-decoration: none;
}
button.option {
	/*background-color: rgba(0, 69, 158, 0.25);*/
	border-radius: 25px;
	background-color: #242529;
    /*border: 4px solid #FFFFFF;*/
    font-family: Arial, Helvetica, sans-serif;
    border: 4px solid #0E1225;
    color: #FFFFFF;
    font-size: 3.8rem;
    line-height: 3.8rem;
    padding-bottom: 3.0rem;
    padding-left: 4.0rem;
    padding-right: 4.0rem;
    padding-top: 3.2rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}
button.option:focus, button.option.focus {
	/*background-color: rgba(0, 69, 158, 0.50);*/
	background-color: rgba(153, 153, 153, 0.50);
	border: 4px solid #FFFFFF;
    /*border: 4px solid #F7AA1D;*/
    color: #FFFFFF;
    text-decoration: none;
}
button.option:active, button.option.focus:active {
	background-color: rgba(0, 69, 158, 0.75);
    border: 4px solid #000000;
    color: #FFFFFF;
    text-decoration: none;
}
button.fade-option {
	/*background-color: rgba(0, 69, 158, 0.25);*/
	background-color:#000000;
    border: 4px solid rgba(238, 238, 238, 0.75);
    color: rgba(238, 238, 238, 0.75);
    font-size: 2.2rem;
    line-height: 2.2rem;
    padding-bottom: 2.2rem;
    padding-left: 3.0rem;
    padding-right: 3.0rem;
    padding-top: 2.2rem;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    text-transform: uppercase;
}
button.fade-option:focus, button.fade-option.focus {
	background-color: rgba(0, 69, 158, 0.85);
    border: 4px solid #F7AA1D;
    color: #FFFFFF;
    padding-bottom: 2.2rem;
    padding-left: 3.0rem;
    padding-right: 3.0rem;
    padding-top: 2.2rem;
    text-decoration: none;
}
button.fade-option:active, button.fade-option.focus:active {
	background-color: rgba(0, 69, 158, 0.85);
    border: 4px solid #000000;
    color: #FFFFFF;
    padding-bottom: 2.2rem;
    padding-left: 3.0rem;
    padding-right: 3.0rem;
    padding-top: 2.2rem;
    text-decoration: none;
}
button.round {
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 0px 6px #333333;
    -moz-box-shadow: 0px 0px 6px #333333;
    box-shadow: 0px 0px 6px #333333;
    border: 4px solid transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    color: #333333;
    font-size: 3.8rem;
    line-height: 3.8rem;
    padding-bottom: 3.0rem;
    padding-left: 4.0rem;
    padding-right: 4.0rem;
    padding-top: 3.2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
button.round:focus, button.round.focus {
	background-color: #00459E;
    border: 4px solid #CCCCCC;
    color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 8px #333333;
    -moz-box-shadow: 0px 0px 8px #333333;
    box-shadow: 0px 0px 8px #333333;
    text-decoration: none;
}
button.round:active, button.round.focus:active {
	background-color: #001E44;
    border: 4px solid #000000;
    color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 8px transparent;
    -moz-box-shadow: 0px 0px 8px transparent;
    box-shadow: 0px 0px 8px transparent;
    text-decoration: none;
}
/* End Button
**************/

/* Link
********/
a.option-channel, a.option-channel:link, a.option-channel:visited {
	border-bottom: 2px solid rgb(0,0,0);
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-top: 2px solid rgb(0,0,0);
    color: #FFFFFF;
    text-decoration: none;
}
a.option-channel:focus, a.option-channel.focus {
	border-bottom: 2px solid #F7AA1D;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-top: 2px solid #F7AA1D;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-channel:active, a.option-channel.focus:active {
    border-bottom: 2px solid #000000;
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
	border-top: 2px solid #000000;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-lineup, a.option-lineup:link, a.option-lineup:visited {
	border: 8px solid transparent;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-lineup:focus, a.option-lineup.focus {
	border: 8px solid #F7AA1D;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-lineup:active, a.option-lineup.focus:active {
    border: 8px solid #000000;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-show, a.option-show:link, a.option-show:visited {
	border-bottom: 4px solid transparent;
	border-left: 2px solid rgba(0,0,0,0.25);
	border-right: 2px solid transparent;
	border-top: 4px solid transparent;
    color: #FFFFFF;
    text-decoration: none;
}
a.option-show:focus, a.option-show.focus {
	background-color: rgba(0, 69, 158, 0.50);
	border-bottom: 4px solid #F7AA1D;
	border-left: 2px solid rgba(0,0,0,0.25);
	border-right: 2px solid transparent;
	border-top: 4px solid #F7AA1D;
    color: #F7AA1D;
    text-decoration: none;
}
a.option-show:active, a.option-show.focus:active {
	background-color: rgba(0, 69, 158, 0.75);
    border-bottom: 4px solid #000000;
	border-left: 2px solid rgba(0,0,0,0.25);
	border-right: 2px solid transparent;
	border-top: 4px solid #000000;
    color: #F7AA1D;
    text-decoration: none;
}
/* End Link
************/

/* General Messaging
*********************/
#generalMessaging {
	background-color: transparent;
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 10000;
}
#generalMessaging > div {
	background-color: rgba(0,0,0,0.5);
	color: #FFFFFF;
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10001;
}
/* End General Messaging
*************************/

/* Splash & Intro & Auth
*************************/
#splash {
    /*background-image: url("https://s3-us-west-2.amazonaws.com/klowdtvstorage/herring/images/heros/couchFam_1400x560.png");*/
    background-image: url("../images/rush_bg.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #FFFFFF;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}
#splash > div:first-child {
	background-color: rgba(0,0,0,0.25);
	height: 100%;
	position: relative;
	width: 100%;
}
#splash > div:first-child > div {
	display: block;
	padding: 0 20rem 0 20rem;
	position: absolute;
	width: 100%;
}
#intro {
	top: 10rem;
	text-shadow: 0.1rem 0.1rem 0.4rem rgba(0,0,0,0.75);
}
#credentials {
    top: 50%;
    transform: translateY(-50%);
    margin:auto;
}
/* End Splash & Intro & Auth
*****************************/

/* Player
**********/
#myVideo {
    position: fixed;
  right: 0;
  bottom: 0;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  z-index: -100;    
  background-size: cover;
}

#playerContainer {
	background-color: #000000;
	display: block;
	height: 100vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}
#playerContainer > #playerMessage {
	background-color: rgba(0,0,0,0.5);
	color: #FFFFFF;
	left: 50%;
	padding: 5rem 10rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
#playerContainer #av-player {
	width: 100%;
	height: 100%;
	z-index: 2;
}
/* End Player
**************/

/* Channel Guide
*****************/
#epgContainer {
	background-color: rgba(0,0,0,0.85);
	height: 100vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 30;
}
#epg {
	display: block;
    height: 100%;
    position: relative;
    width: 100%;
}
#epgContainer #jumpBackParent {
	display: block;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 36;
}
#epgContainer #jumpBackParent #jumpBackContainer { height: 14rem; }
#epgContainer #showsParent {
	background-color: rgba(0,0,0,0.5);
	display: block;
	height: 75%;
	left: 0;
	overflow: hidden;
	padding-top: 20rem;
	position: absolute;
	top: 0;
	white-space: nowrap;
	width: 100%;
	z-index: 31;
}
#epgContainer #showsParent ul {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(22,32,45,0.90)), color-stop(95%, rgba(22,32,45,0.50)));
    background-image: -webkit-linear-gradient(bottom, rgba(22,32,45,0.90) 10%,rgba(22,32,45,0.50) 95%);
    background-image: -moz-linear-gradient(bottom, rgba(22,32,45,0.90) 10%,rgba(22,32,45,0.50) 95%);
    background-image: -o-linear-gradient(bottom, rgba(22,32,45,0.90) 10%,rgba(22,32,45,0.50) 95%);
    background-image: linear-gradient(to top, rgba(22,32,45,0.90) 10%,rgba(22,32,45,0.50) 95%);
}
#epgContainer #channelParent {
	display: block;
	height: 75%;
	left: 0;
	overflow: hidden;
	padding-top: 20rem;
	position: absolute;
	top: 0;
	width: 25rem;
	z-index: 32;
}
#epgContainer #timeParent {
	display: block;
	left: 0;
	overflow: hidden;
	padding-top: 14rem;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 34;
}
#epgContainer #timeParent #timeContainer {
    background-color: rgba(51, 51, 51, 0.25);
	height: 6rem;
}
#epgContainer #dateParent {
	display: block;
	left: 0;
	overflow: hidden;
	padding-top: 14rem;
	position: absolute;
	top: 0;
	width: 25rem;
	z-index: 35;
}
#epgContainer #dateParent #dateContainer { height: 6rem; }
#epgContainer #showInformationParent {
	bottom:0;
	display:block;
	height:25%;
	left:0;
	position:absolute;
	width:100%;
	z-index: 33;
}
/* End Channel Guide
*********************/

/* Now Info
************/
#now {
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20;
}
#now > div {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(75%, rgba(0,0,0,0.85)), color-stop(100%, transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0,0,0,0.85) 75%, transparent 100%);
	bottom: 0;
	display: block;
	left: 0;
	position: absolute;
	width: 100%;
}

#playerOverlay {
    width:100%;
    height: 100%;
    /*background-color:#E3000000;*/
    background-color:rgba(0,0,0,0.6);
    position: absolute;
    z-index: 1000;
}

#program-information {
    padding: 30px;
    position: absolute;
    bottom: 0;
}

#playerInfo {
    padding-bottom: 80px;
}

#playerInfoDescription {
    padding-left: 20px;
}

#playerInfo p {
    color:#cccccc;
}

#playerControls {
    text-align: center;
    padding-bottom: 20px;
}

#playerControls a {
    padding-left: 100px;
}

#playerControls  a:link {
    color:#FFFFFF;
}

#playerControls  a:visited {
    color:white;
}

#playerControls a:hover {
    color:orange !important;
}

#playerControls a:focus  {
	color:orange !important;
}

/* */
#nowPlayingBar  a:link {
    color:#FFFFFF;
}

#nowPlayingBar  a:visited {
    color:white;
}

#nowPlayingBar a:hover {
    color:orange;
}

#nowPlayingBar a:focus  {
	color:orange;
}
/* End Now Info
****************/

/* Menu
********/
#menu {
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20;
}
#menu > #options {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(75%, rgba(0,0,0,0.85)), color-stop(100%, transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0,0,0,0.85) 75%, transparent 100%);
	bottom: 0;
	display: block;
	left: 0;
	position: absolute;
	width: 100%;
}
/* End Menu
************/

/* Notification
********/
#notification {
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20;
}
#notification > #options {
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(75%, rgba(0,0,0,0.85)), color-stop(100%, transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.85) 75%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0,0,0,0.85) 75%, transparent 100%);
	bottom: 0;
	display: block;
	left: 0;
	position: absolute;
	width: 100%;
}
/* End Notification
************/


/* Animations
**************/
.anim-slide {
	display: inline-block;
	-webkit-animation: slide 4s linear infinite;
    -moz-animation: slide 4s linear infinite;
    -o-animation: slide 4s linear infinite;
	animation: slide 4s linear infinite;
	transform: translate(-50%, 0);
}
@-webkit-keyframes slide {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 100%;
    }
    100% {
        margin-left: 0;
    }
}
@-moz-keyframes slide {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 100%;
    }
    100% {
        margin-left: 0;
    }
}
@-o-keyframes slide {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 100%;
    }
    100% {
        margin-left: 0;
    }
}
@keyframes slide {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 100%;
    }
    100% {
        margin-left: 0;
    }
}
