/*****************************************************************************************************************
 * This is the main file, containing almost all the css rules for the app_start pages.  Please define anything   *
 * that gets re-used in the variables section (colors, font sizes etc...) in order to make code more             *
 * maintainable.  If something is very specific to a certain front door, then define it it's own scss file.      *
 *                                                                                                               *
 *                                                                                                               *
 * Table of Contents                                                                                             *
 * 1. Function Definitions                                                                                       *
 * 2. Variable Definitions                                                                                       *
 * 3. Mixin Definitions                                                                                          *
 * 4. Base Classes - to be extended                                                                              *
 * 5. CSS3 Navigation                                                                                            *
 * 6. Helpful Responsive UI Definitions                                                                          *
 * 7. Helpful Style Classes                                                                                      *
 * 8. Main Building Blocks                                                                                       *
 * 9. Page-Specific Elements                                                                                     *
 ****************************************************************************************************************/
/*****************************************************************************************************************
 *                                                                                                               *
 * Not everything here will work in IE8. You will need to include a separate css file that ie IE8-x only, using  *
 * conditional HTML. We should not 'fix' good CSS as a work-around for IE8.                                      *
 *                                                                                                               *
 ****************************************************************************************************************/
/*****************************************************************************************************************
 * 1. Function Definitions                                                                                       *
 ****************************************************************************************************************/
/*****************************************************************************************************************
 * 2. Variable Definitions                                                                                       *
 ****************************************************************************************************************/
@font-face {
  font-family: 'nexa_bookregular';
  src: url("/static/start/view/common/responsive/font/nexa-book-webfont.eot");
  src: url("/static/start/view/common/responsive/font/nexa-book-webfont.eot?#iefix") format("embedded-opentype"), url("/static/start/view/common/responsive/font/nexa-book-webfont.woff2") format("woff2"), url("/static/start/view/common/responsive/font/nexa-book-webfont.woff") format("woff"), url("/static/start/view/common/responsive/font/nexa-book-webfont.ttf") format("truetype"), url("/static/start/view/common/responsive/font/nexa-book-webfont.svg#nexa_bookregular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'compassbold';
  src: url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.eot");
  src: url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.eot?#iefix") format("embedded-opentype"), url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.woff2") format("woff2"), url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.woff") format("woff"), url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.ttf") format("truetype"), url("/static/start/view/common/responsive/font/flat-it_-_compasse-extrabold-webfont.svg#compasseextrabold") format("svg");
  font-weight: bold;
  font-style: bold; }
@font-face {
  font-family: 'nexa_boldregular';
  src: url("/static/start/view/common/responsive/font/nexa-bold-webfont.eot");
  src: url("/static/start/view/common/responsive/font/nexa-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/static/start/view/common/responsive/font/nexa-bold-webfont.woff2") format("woff2"), url("/static/start/view/common/responsive/font/nexa-bold-webfont.woff") format("woff"), url("/static/start/view/common/responsive/font/nexa-bold-webfont.ttf") format("truetype"), url("/static/start/view/common/responsive/font/nexa-bold-webfont.svg#nexa_boldregular") format("svg");
  font-weight: bold;
  font-style: bold; }
@font-face {
  font-family: nexaLight;
  src: local("Nexa Light"), local("Nexa-Light"), url(/redesign/common/fonts/NexaLight.otf);
  font-weight: normal; }
@font-face {
  font-family: Compasse Light;
  src: local("Compasse Light"), local("Compasse Light"), url(/redesign/common/fonts/Compasse-Light.otf);
  font-weight: normal; }
@font-face {
  font-family: Compasse;
  src: local("Compasse"), local("Compasse"), url(/redesign/common/fonts/Compasse-Regular.otf);
  font-weight: normal; }
/*****************************************************************************************************************
 * 3. Mixin Definitions                                                                                          *
 ****************************************************************************************************************/
/*****************************************************************************************************************
 * 4. Base Classes                                                                                               *
 * To use - you will extend these and add the missing styles.                                                    *
 * ex: .iconSpLogin {                                                                                            *
 *         @extend .spriteGeneral;                                                                               *
 *         margin-top : -4px;                                                                                    *
 *         @include sprite(-83px,-4px);                                                                          *
 *     }                                                                                                         *
 ****************************************************************************************************************/
.spriteGeneral {
  width: 25px;
  height: 25px;
  float: left;
  margin-top: -5px; }

/*****************************************************************************************************************
 * 5. CSS3 Navigation                                                                                            *
 *                                                                                                               *
 * We won't be using this for this phase.                                                                        *
 ****************************************************************************************************************/
.mobileNav {
  display: none;
  background: linear-gradient(#9e9e9e, #989898);
  width: 50%;
  height: 90%;
  overflow: hidden;
  position: fixed;
  left: 50%;
  height: 100%;
  -webkit-transition: -webkit-transform 1s ease;
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  transition: transform 1s ease; }
  @media screen and (max-device-width: 360px) {
    .mobileNav {
      display: block; } }

#mobileNav:target {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }

.closeMenu {
  display: none; }

.closeNav {
  display: none; }

#mobileNav:target + #wrapper, #mobileNav:target + #container {
  position: fixed;
  -webkit-transform: translate3d(-50%, 0, 0);
  -moz-transform: translate3d(-50%, 0, 0);
  -o-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0); }
  #mobileNav:target + #wrapper .openMenu, #mobileNav:target + #container .openMenu {
    display: none; }
  #mobileNav:target + #wrapper .closeMenu, #mobileNav:target + #container .closeMenu {
    display: block; }
  #mobileNav:target + #wrapper .closeNav, #mobileNav:target + #container .closeNav {
    display: block; }

/*****************************************************************************************************************
 * 6. Helpful Responsive UI Definitions                                                                          *
 ****************************************************************************************************************/
img,
embed,
object,
video {
  max-width: 100%; }

.absoluteCenter {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

/*****************************************************************************************************************
 * 7. Helpful Style Classes                                                                                      *
 ****************************************************************************************************************/
.drop-shadow {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5); }

.fLeft {
  float: left; }

.fRight {
  float: right; }

.divLink {
  cursor: pointer; }

.upper {
  text-transform: uppercase; }

/*****************************************************************************************************************
 * 8. Main Building Blocks                                                                                       *
 *                                                                                                               *
 * This is where pretty much all the main, shared CSS styles should go.                                          *
 * Keep the structure nested, and let SASS generate the CSS rules for you.  This will keep it easiset to manage. *
 *                                                                                                               *
 * example of CSS vs SASS:                                                                                       *
 *                                                                                                               *
 * .someClass {                                                                                                  *
 *    font-size : 18px;                                                                                          *
 * }                                                                                                             *
 *                                                                                                               *
 * .someClass h1 {                                                                                               *
 *    margin-top : 15px;                                                                                         *
 *    font-weight : bold;                                                                                        *
 *    font-size : 22px;                                                                                          *
 * }                                                                                                             *
 *                                                                                                               *
 *  In SASS, this would be:                                                                                      *
 *                                                                                                               *
 *  .someClass {                                                                                                 *
 *     font-size : 18px;                                                                                         *
 *                                                                                                               *
 *     h1 {                                                                                                      *
 *        margin-top : 15px;                                                                                     *
 *        font-weight : bold;                                                                                    *
 *        font-size : 22px;                                                                                      *
 *     }                                                                                                         *
 *  }                                                                                                            *
 *                                                                                                               *
 *                                                                                                               *
 ****************************************************************************************************************/
html {
  font-family: nexa_bookregular;
  font-size: 1em;
  color: #646469; }

h1 {
  font-family: nexa_bookregular;
  font-size: 1.77778em;
  text-transform: uppercase;
  color: #ff9e15; }

h2 {
  font-family: nexa_bookregular;
  font-size: 1.33333em;
  text-transform: uppercase; }

#wrapper, #container {
  margin-left: auto;
  margin-right: auto;
  background: white;
  width: 1280px; }

#container .content {
  margin-left: 25px;
  margin-right: 25px; }

header a {
  color: #646469;
  text-decoration: none; }
  header a:link {
    color: #646469;
    text-decoration: none; }
  header a:visited {
    color: #646469;
    text-decoration: none; }
  header a:hover {
    color: white;
    background: "";
    text-decoration: none; }
header #devicesNav a, header #servicesNav a, header .banner .navMenu #devicesNav a, header .banner .navMenu #plansNav a, header #plansNav a, header #coverageNav a, header #dataaward a, header #cashaward a, header #home a, header #accountmanagement a, header #billingstatements a {
  color: #646469;
  text-decoration: none; }
  header #devicesNav a:link, header #servicesNav a:link, header .banner .navMenu #devicesNav a:link, header .banner .navMenu #plansNav a:link, header #plansNav a:link, header #coverageNav a:link, header #dataaward a:link, header #cashaward a:link, header #home a:link, header #accountmanagement a:link, header #billingstatements a:link {
    color: #646469;
    text-decoration: none; }
  header #devicesNav a:visited, header #servicesNav a:visited, header .banner .navMenu #devicesNav a:visited, header .banner .navMenu #plansNav a:visited, header #plansNav a:visited, header #coverageNav a:visited, header #dataaward a:visited, header #cashaward a:visited, header #home a:visited, header #accountmanagement a:visited, header #billingstatements a:visited {
    color: #646469;
    text-decoration: none; }
  header #devicesNav a:hover, header #servicesNav a:hover, header .banner .navMenu #devicesNav a:hover, header .banner .navMenu #plansNav a:hover, header #plansNav a:hover, header #coverageNav a:hover, header #dataaward a:hover, header #cashaward a:hover, header #home a:hover, header #accountmanagement a:hover, header #billingstatements a:hover {
    color: #646469;
    background: "";
    text-decoration: none; }
header ul {
  margin: 0px;
  padding: 0px; }
header > div {
  text-transform: uppercase;
  font-family: compassbold;
  font-weight: bold;
  font-size: 12px;
  color: white;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 7px 40px 13px;
  margin: 0px; }
header div + div {
  text-transform: uppercase; }
header nav li {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px; }
header .banner {
  position: relative;
  background: url("/static/start/view/img/redesign/product_header_tile.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 210px;
  margin: 0;
  padding: 0; }
  header .banner #NZ_Logo {
    float: left;
    width: 120px;
    height: 48px;
    background: url("/static/start/view/img/redesign/Header_logo.png"); }
  header .banner nav {
    position: absolute;
    z-index: 999999;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    color: #646469;
    font-family: nexa_bookregular;
    font-size: 20px; }
    header .banner nav ul {
      display: block;
      float: right; }
  header .banner .navMenu {
    cursor: pointer; }
    header .banner .navMenu ul {
      list-style-type: none;
      width: 150px; }
    header .banner .navMenu li li {
      display: none;
      width: 150px;
      font-size: 18px;
      text-transform: capitalize;
      margin-left: -55px;
      line-height: 35px;
      padding-left: 25px; }
    header .banner .navMenu #servicesNav + ul, header .banner .navMenu #devicesNav + ul, header .banner .navMenu #plansNav + ul {
      width: 200px;
      height: 35px; }
    header .banner .navMenu #servicesNav + ul li, header .banner .navMenu #devicesNav + ul li, header .banner .navMenu #plansNav + ul li {
      width: 200px;
      height: 35px;
      border-bottom: 1px #a9a8a9 solid; }
    header .banner .navMenu .noHover {
      background: rgba(255, 255, 255, 0.9); }
    header .banner .navMenu .hover {
      background: #f7a94b;
      color: rgba(255, 255, 255, 0.9); }

.overlay {
  display: none;
  z-index: 5000;
  border-radius: 0.5em;
  border: 3px solid #FFDBA9;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  color: #FFA500;
  font-size: 19px;
  width: 400px;
  height: 200px; }
  .overlay .close {
    cursor: pointer;
    position: absolute;
    top: 0px;
    width: 36px;
    height: 36px;
    background: url("/static/start/view/img/overlays/close_icon.png") no-repeat; }
  .overlay .overlayHeader {
    height: 78px;
    width: 100%;
    background: #252525; }
    .overlay .overlayHeader img {
      margin-bottom: 6px; }
    .overlay .overlayHeader .horizLine {
      background: #ee3524;
      height: 6px; }
      .overlay .overlayHeader .horizLine .left {
        float: left;
        height: 6px;
        width: 313px;
        background: url("/static/start/view/img/frontdoorblack/header-bar-left.png"); }
      .overlay .overlayHeader .horizLine .right {
        float: right;
        height: 6px;
        width: 313px;
        background: url("/static/start/view/img/frontdoorblack/header-bar-right.png"); }
  .overlay .content {
    padding: 10px 10px 10px 10px; }

#success-box {
  display: none; }
  #success-box #green-box-message {
    float: none;
    font-size: 26px;
    color: #72a84f;
    margin-top: 10px;
    margin-bottom: 10px; }
  #success-box div {
    float: left;
    font-size: 18px;
    color: #646469; }
  #success-box div[rel="response"] {
    font-size: 22px;
    color: #ff9e15; }

#failure-box, #failure-box-fed {
  display: none; }
  #failure-box #red-box-message, #failure-box-fed #red-box-message {
    float: none;
    font-size: 26px;
    color: #e53c2e; }
  #failure-box div, #failure-box-fed div {
    float: left;
    font-size: 18px;
    color: #646469; }

#purchaseSubmitAjax {
  display: none; }

#phone-error-box {
  display: none;
  font-size: 22px;
  color: #e53c2e; }

footer a {
  color: #999999;
  text-decoration: none; }
  footer a:link {
    color: #999999;
    text-decoration: none; }
  footer a:visited {
    color: #999999;
    text-decoration: none; }
  footer a:hover {
    color: #999999;
    background: "";
    text-decoration: none; }
footer ul {
  margin: 0px;
  padding: 0px; }
footer > div {
  font-family: compassbold;
  font-weight: bold;
  font-size: 13px;
  color: white;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 40px; }
footer nav {
  margin: 0 auto;
  width: 85%;
  margin-top: 5px; }
footer nav li {
  display: inline-block;
  font-size: 14px;
  color: #999999;
  padding-right: 10px;
  padding-left: 8px;
  border-right: 1px solid #999999; }
footer li:last-of-type {
  border-right: none; }

.slides_container {
  padding: 0;
  margin: 0; }

/*****************************************************************************************************************
 * 9. Page-Specific Elements                                                                                     *
 *                                                                                                               *
 * This is where page-specific css styles should go.                                                             *
 * Keep the structure nested, and let SASS generate the CSS rules for you.  This will keep it easiset to manage. *
 * If you want something truly page-specific, then put it within id selector for that page. Make sure that you   *
 * give the <body> that id, so that the rules match.                                                             *
 *                                                                                                               *
 ****************************************************************************************************************/
input[type="radio"].styled + label {
  display: inline-block;
  border-radius: 14px;
  width: 10px;
  height: 10px;
  background: white;
  border: 3px solid #ff9e15; }

input[type="radio"].styled:checked + label {
  display: inline-block;
  border-radius: 8px;
  border: none;
  background: #646469;
  border: 3px solid #ff9e15; }

input[type="radio"].styled {
  display: none; }

#billing input[type="text"].billingError {
  border: 1px red solid; }
#billing input[type="password"].billingError {
  border: 1px red solid; }
#billing div.billingError {
  border: 1px red solid; }
#billing label.billingError {
  display: block;
  background: none;
  color: red;
  font-weight: bold; }
#billing input[type="radio"] + label {
  display: inline-block;
  border-radius: 14px;
  width: 10px;
  height: 10px;
  background: white;
  border: 3px solid #ff9e15; }
#billing input[type="radio"]:checked + label {
  display: inline-block;
  border-radius: 8px;
  border: none;
  background: #646469;
  border: 3px solid #ff9e15; }
#billing input[type="radio"] {
  display: none; }
#billing input + div {
  height: 35px; }
#billing #leftSide {
  width: 830px;
  height: 1230px;
  float: left; }
#billing #rightSide {
  width: 412px;
  height: 1230px;
  background: #f0eeed;
  float: left; }
#billing #pageError {
  display: none; }
#billing input[type="text"], #billing input[type="password"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #cbc8c7;
  padding: 6px;
  width: 230px;
  height: 40px; }
  #billing input[type="text"].small, #billing input[type="password"].small {
    width: 110px; }
  #billing input[type="text"].medium, #billing input[type="password"].medium {
    width: 230px; }
  #billing input[type="text"].large, #billing input[type="password"].large {
    width: 470px; }
#billing .styled-select-base, #billing .styled-select-small, #billing .styled-select-medium, #billing .styled-select-large, #billing .styled-cvv-small {
  overflow: hidden; }
  #billing .styled-select-base select, #billing .styled-select-small select, #billing .styled-select-medium select, #billing .styled-select-large select, #billing .styled-cvv-small select {
    background: transparent;
    border: none;
    height: 40px;
    padding-left: 5px;
    padding-top: 0px; }
  #billing .styled-select-base.billingError, #billing .billingError.styled-select-small, #billing .billingError.styled-select-medium, #billing .billingError.styled-select-large, #billing .billingError.styled-cvv-small {
    border: 1px solid red;
    border-radius: 5px; }
  #billing .styled-select-base.slate, #billing .slate.styled-select-small, #billing .slate.styled-select-medium, #billing .slate.styled-select-large, #billing .slate.styled-cvv-small {
    border: 1px solid #cbc8c7;
    border-radius: 5px; }
#billing .styled-select-small select {
  width: 135px; }
#billing .styled-select-small.slate {
  background: url("/static/start/view/img/redesign/110x40_drop.png") no-repeat right center;
  width: 110px; }
#billing .styled-select-medium select {
  width: 252px; }
#billing .styled-select-medium.slate {
  background: url("/static/start/view/img/redesign/230x40_drop.png") no-repeat right center;
  width: 230px; }
#billing .styled-select-large select {
  width: 495px; }
#billing .styled-select-large.slate {
  background: url("/static/start/view/img/redesign/470x40_drop.png") no-repeat right center;
  width: 470px; }
#billing .styled-cvv-small input {
  width: 110px; }
#billing .styled-cvv-small.slate {
  background: url("/static/start/view/img/redesign/110x40_tip.png") no-repeat right center;
  width: 110px; }
#billing select {
  -webkit-appearance: none; }
#billing .contactPreferences {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 10px;
  background: #e5e4e3;
  border: 1px #d8d6d5 solid; }
  #billing .contactPreferences #contactDetails {
    float: right;
    color: #004d71; }
#billing .restyleInput {
  border: 1px solid #cbc8c7;
  border-radius: 5px;
  width: 470px; }
  #billing .restyleInput input {
    border: none; }
#billing .editSection {
  cursor: pointer;
  color: blue;
  font-size: 12px;
  text-align: right;
  display: none; }
#billing input[type='button'] {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }
  #billing input[type='button'].blue {
    margin-left: 20px;
    display: block;
    float: left;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 26px/100% nexa_bookregular;
    height: 40px;
    text-transform: uppercase;
    border: none;
    color: white;
    background: #32b1ca;
    width: 230px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px; }
#billing input[type='button'] + input[type='button'] {
  margin-left: 20px;
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #3ab0c8;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }
#billing #transferContainer, #billing #assignNewContainer, #billing #continueAndSave {
  display: none; }

#showAllDevices header {
  background: none; }

.offerDetails {
  margin-left: 120px;
  margin-bottom: 20px; }

.bigDevicePrice3 {
  float: left;
  color: #e53c2e;
  font-weight: bold;
  font-size: 30px;
  height: 40px; }

.smallDevicePrice3 {
  float: left;
  color: #e53c2e;
  font-weight: bold;
  font-size: 24px; }

.bigDevicePrice4 {
  float: left;
  color: #65646a;
  font-weight: bold;
  font-size: 30px;
  height: 40px; }

.smallDevicePrice4 {
  float: left;
  color: #65646a;
  font-weight: bold;
  font-size: 24px; }

#deviceList, #serviceList {
  width: 1200px;
  margin: 0 auto; }

.deviceServiceList, .serviceServiceList {
  width: 1200px;
  margin: 0 auto; }

.confirmEmail {
  width: 470px;
  height: 32px;
  margin-top: 2px; }

.devicebox, .servicebox {
  float: left;
  width: 300px;
  margin-left: 50px;
  margin-right: 50px;
  cursor: pointer;
  text-align: center; }
  .devicebox h1, .servicebox h1 {
    font-family: nexa_bookregular;
    font-size: 1.77778em;
    text-transform: uppercase;
    color: #646469; }
  .devicebox h2, .servicebox h2 {
    font-family: nexa_bookregular;
    font-size: 1.33333em;
    text-transform: uppercase; }

.devicebox:nth-of-type(3n+1) {
  clear: both; }

#intro-slider {
  position: absolute;
  top: -24px;
  overflow: hidden;
  z-index: 100; }

.closePlanOverlay {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #3ab0c8;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-family: nexa_bookregular;
  font-size: 26px;
  padding: 0px !important; }

h2#select {
  color: #ff9e15;
  margin-left: 40px; }

#plans-static .plansSection {
  height: 400px;
  width: 700px;
  margin: 40px;
  text-align: center; }
#plans-static .buttonDiv {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 150px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin: 0 auto;
  display: inline-block;
  line-height: 45px;
  float: none; }
#plans-static button {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 150px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin: 0 auto;
  display: inline-block;
  line-height: 25px;
  float: none; }

.byod .restyle-base, .byod .restyle-select, .byod .restyle-input {
  border: 1px #a9a8a9 solid;
  min-width: 220px;
  height: 44px;
  overflow: hidden;
  display: inline-block;
  float: left;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }
.byod .restyle-select {
  background: url("/static/start/view/img/redesign/230x40_drop.png") no-repeat right; }
  .byod .restyle-select select {
    display: block;
    float: left;
    outline: none;
    border: 1px #a9a8a9 solid;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #999999;
    font-size: 1em;
    padding: 0.25em 0.25em 0.1em 0.25em;
    width: 230px;
    height: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 115%; }
.byod .restyle-input {
  position: relative;
  background: url("/static/start/view/img/redesign/230x40_tip.png") no-repeat right;
  margin-left: 20px; }
  .byod .restyle-input input {
    display: block;
    float: left;
    outline: none;
    border: 1px #a9a8a9 solid;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #999999;
    font-size: 1em;
    padding: 0.25em 0.25em 0.1em 0.25em;
    width: 230px;
    height: 30px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: none; }
  .byod .restyle-input div {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0px; }
.byod .restyle-select:not(:first-of-type) {
  margin-left: 20px; }
@-moz-document url-prefix() {
  .byod .restyle-select select {
    width: 110%; } }
.byod .restyle-select select::-ms-expand {
  display: none; }
.byod _:-o-prefocus .restyle-select, .byod .selector .restyle-select {
  background: none; }
.byod .restyle-input + button {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #3ab0c8;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: inline-block; }
.byod .restyle-input + button {
  margin-left: 20px;
  height: 45px; }
.byod hr {
  border: 0;
  height: 0;
  border-top: 1px solid #a9a8a9; }
.byod button {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  line-height: 25px; }

.pq-box-button, .ineligible-button {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  width: 230px;
  float: none;
  padding: 0.38em 2em 0.3em;
  height: 38px;
  font-family: nexa_bookregular;
  font-size: 26px; }

.ineligible-button {
  width: 440px; }

#find-device-number {
  width: 710px;
  height: 330px;
  overflow: auto;
  background: white;
  color: #646469;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 2px #ff9e15 solid;
  -webkit-box-shadow: 0px 0px 9px #646469;
  -moz-box-shadow: 0px 0px 9px #646469;
  box-shadow: 0px 0px 9px #646469; }
  #find-device-number > div {
    margin: 20px; }
  #find-device-number .headerText {
    font-family: nexa_bookregular;
    font-size: 22px;
    color: #ff9e15; }
    #find-device-number .headerText > div {
      margin-top: 12px;
      margin-left: 10px; }
  #find-device-number ul {
    list-style-position: inside;
    padding: 0;
    line-height: 24px;
    font-size: 15px; }
    #find-device-number ul > span {
      font-size: 13px;
      color: #ff9e15; }

#find-device-number-arrow {
  width: 65px;
  height: 42px;
  background: url("/static/start/view/img/redesign/tooltip-arrow.png"); }

.width240 {
  width: 240px; }

.width720 {
  width: 720px; }

.width270 {
  width: 270px; }

.width80p {
  width: 80%; }

.pRight10 {
  padding-right: 10px; }

.padding10 {
  padding: 10px; }

.pTop58 {
  padding-top: 58px; }

.pRelative {
  position: relative;
  top: -5px; }

.cBoth {
  clear: both; }

.mRight63 {
  margin-right: 63px; }

.mLeft10 {
  margin-left: 10px; }

.mLeft35 {
  margin-left: 35px; }

.mLeft40 {
  margin-left: 40px; }

.mLeft60 {
  margin-left: 60px; }

.mLeft63 {
  margin-left: 63px; }

.mLeft160 {
  margin-left: 160px; }

.mLeft215 {
  margin-left: 215px; }

.mLeft225 {
  margin-left: 225px; }

.mLeft590 {
  margin-left: 590px; }

.mRight35 {
  margin-right: 35px; }

.height14 {
  height: 14px; }

.height63 {
  height: 63px; }

.height60 {
  height: 60px; }

.height100 {
  height: 100px; }

.height104 {
  height: 104px; }

.height72 {
  height: 72px; }

.height120 {
  height: 120px; }

.height190 {
  height: 190px; }

.height250 {
  height: 250px; }

.height350 {
  height: 350px; }

.width830 {
  width: 830px; }

.ordersummary {
  background-color: #f0eeed;
  height: 1340px;
  padding: 30px 20px;
  border-radius: 5px; }

.width375 {
  width: 375px; }

.errorCode {
  border-radius: 5px;
  background: #e63c2e;
  padding: 10px;
  color: white;
  font-family: nexa_boldregular;
  font-size: 18px;
  margin-right: 115px; }

.errorbox {
  border: 2px solid #e63c2e;
  border-radius: 5px 5px 5px 5px;
  font-size: 18px; }

.nexabook14pt {
  font-family: nexa_bookregular;
  font-size: 14px; }

.colorBlue {
  color: #004d71; }

.colorGrey {
  color: #646469; }

.colorWhite {
  color: white; }

.bgColorBlue {
  background: #6fc0d3; }

.nexabook10pt {
  font-family: nexa_bookregular;
  font-size: 10px;
  color: #646469; }

.nexabook13pt {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: #646469; }

.nexabook13ptwhite {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: white; }

.nexabook13ptBlue {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: #004d71; }

.nexabook13ptGold {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: #ff9e15; }

.nexabook13ptGray2 {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: #646469; }

.nexabook13ptGray1 {
  font-family: nexa_bookregular;
  font-size: 13px;
  color: #999999; }

.nexabook14ptblue2 {
  font-family: nexa_bookregular;
  font-size: 14px;
  color: #3ab0c8; }

.nexabook14ptblue {
  font-family: nexa_boldregular;
  font-size: 14px;
  color: #004d72; }

.nexabook14ptgrey {
  font-family: nexa_bookregular;
  font-size: 14px;
  color: #646469; }

.nexabook16pt {
  font-family: nexa_bookregular;
  font-size: 16px;
  color: #646469; }

.nexabook16ptblue {
  font-family: nexa_bookregular;
  font-size: 16px;
  color: #004d71; }

.nexabook18ptBlue {
  font-family: nexa_bookregular;
  font-size: 18px;
  color: #004d71; }

.nexabook18ptblue {
  font-family: nexa_bookregular;
  font-size: 18px;
  color: #3ab0c8; }

.nexabook18ptgold {
  font-family: nexa_bookregular;
  font-size: 18px;
  color: #ff9e15; }

.nexabook18pt {
  font-family: nexa_bookregular;
  font-size: 18px;
  color: #646469; }

.nexabook18ptwhite {
  font-family: nexa_bookregular;
  font-size: 18px;
  color: white; }

.nexabook19pt {
  font-family: nexa_bookregular;
  font-size: 19px;
  color: #646469; }

.nexabook20ptwhite {
  font-family: nexa_bookregular;
  font-size: 20px;
  color: white; }

.nexabook20pt {
  font-family: nexa_bookregular;
  font-size: 20px;
  color: #646469; }

.nexabook22pt {
  font-family: nexa_bookregular;
  font-size: 22px;
  color: #ff9e15; }

.nexabook24pt {
  font-family: nexa_bookregular;
  font-size: 24px;
  color: #ff9e15; }

.nexabook24ptgray {
  font-family: nexa_bookregular;
  font-size: 24px;
  color: #646469; }

.nexabook25pt {
  font-family: nexa_bookregular;
  font-size: 25px;
  color: #ff9e15; }

.nexabook26ptwhite {
  font-family: nexa_bookregular;
  font-size: 26px;
  color: white;
  font: 26px/100% nexa_bookregular; }

.nexabook26pt {
  font-family: nexa_bookregular;
  font-size: 26px; }

.nexabook26ptgold {
  font-family: nexa_bookregular;
  font-size: 26px;
  color: #ff9e15; }

.nexabook28ptgold {
  font-family: nexa_bookregular;
  font-size: 28px;
  color: #ff9e15; }

.nexabook30pt {
  font-family: nexa_bookregular;
  font-size: 30px;
  color: #ff9e15; }

.nexabook30ptblue {
  font-family: nexa_bookregular;
  font-size: 30px;
  color: #3ab0c8; }

.nexabook32pt {
  font-family: nexa_bookregular;
  font-size: 32px;
  color: #ff9e15; }

.nexabook32ptwhite {
  font-family: nexa_bookregular;
  font-size: 32px;
  color: white; }

.nexabook32ptblue {
  font-family: nexa_bookregular;
  font-size: 32px;
  color: #3ab0c8; }

.nexabook38pt {
  font-family: nexa_bookregular;
  font-size: 38px;
  color: white; }

.nexabook40ptblack {
  font-family: nexa_bookregular;
  font-size: 40px;
  color: black; }

.nexabook50ptblack {
  font-family: nexa_bookregular;
  font-size: 50px;
  color: black; }

.nexalight13ptwhite {
  font-family: nexaLight;
  font-size: 13px;
  color: white; }

.nexalight14ptwhite {
  font-family: nexaLight;
  font-size: 14px;
  color: white; }

.nexalight16ptwhitebold {
  font-family: nexaLight;
  font-size: 16px;
  font-weight: bold;
  color: white; }

.nexalight16ptgray {
  font-family: nexaLight;
  font-size: 16px;
  color: #333333; }

.nexalight18ptgray {
  font-family: nexaLight;
  font-size: 18px;
  color: #333333; }

.nexalight18ptgold {
  font-family: nexaLight;
  font-size: 18px;
  color: #ff9e15; }

.nexalight20ptwhite {
  font-family: nexaLight;
  font-size: 20px;
  color: white; }

.nexalight20ptgray {
  font-family: nexaLight;
  font-size: 20px;
  color: #646469; }

.nexalight24ptgray {
  font-family: nexaLight;
  font-size: 24px;
  color: #646469; }

.nexalight20ptFF4E16 {
  font-family: nexaLight;
  font-size: 20px;
  color: #FF4E16; }

.nexalight28ptFF4E16 {
  font-family: nexaLight;
  font-size: 28px;
  color: #FF4E16; }

.nexalight38pt {
  font-family: nexaLight;
  font-size: 38px;
  color: white; }

.nexalight40ptblack {
  font-family: nexaLight;
  font-size: 40px;
  color: black; }

.nexalight50ptblack {
  font-family: nexaLight;
  font-size: 50px;
  color: black; }

.compassbold26pt {
  font-family: compassbold;
  font-size: 26px;
  color: #e53c2e; }

.compassbold30pt {
  font-family: compassbold;
  font-size: 30px;
  color: #e53c2e; }

.compassbold32pt {
  font-family: compassbold;
  font-size: 32px;
  color: #e53c2e; }

.compassbold40pt {
  font-family: compassbold;
  font-size: 40px;
  color: #e53c2e;
  height: 50px; }

.compassbold30ptwhite {
  font-family: compassbold;
  font-size: 30px;
  color: white; }

.compassbold40ptwhite {
  font-family: compassbold;
  font-size: 40px;
  color: white; }

.nexabold18pt {
  font-family: nexa_boldregular;
  font-size: 18px;
  color: #004d71; }

.nexabold15pt {
  font-family: nexa_boldregular;
  font-size: 15px;
  color: #ff9e15; }

.nexabold15ptGray {
  font-family: nexa_boldregular;
  font-size: 15px;
  color: #646469; }

.nexabold14pt {
  font-family: nexa_boldregular;
  font-size: 14px;
  color: #646469; }

.nexabold24pt {
  font-family: nexa_boldregular;
  font-size: 24px;
  color: #ff9e15; }

.nexabold18ptgrey {
  font-family: nexa_boldregular;
  font-size: 18px;
  color: #646469; }

.nexabold24ptgold {
  font-family: nexa_boldregular;
  font-size: 24px;
  color: #ff9e15; }

.nexabold20ptblack {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: black; }

.nexabold20ptgray {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: #646469; }

.nexabold20ptgray333333 {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: #333333; }

.nexabold20ptwhite333333 {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: white; }

.nexabold20ptblue5ab9cb {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: #5ab9cb; }

.nexabold13pt {
  font-family: nexa_boldregular;
  font-size: 13px;
  color: #646469; }

.nexabold13ptblue {
  font-family: nexa_boldregular;
  font-size: 13px;
  color: #004d71; }

.nexabold20ptwhite {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: white; }

.nexabold20ptgold {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: #ff9e15; }

.nexabold20ptgray999999 {
  font-family: nexa_boldregular;
  font-size: 20px;
  color: #999999; }

.nexabold32ptwhite {
  font-family: nexa_boldregular;
  font-size: 32px;
  color: white; }

.nexabold36ptwhite {
  font-family: nexa_boldregular;
  font-size: 36px;
  color: white; }

.compasseWhite13 {
  font-family: Compasse;
  font-size: 13px;
  color: white; }

.compasseBlue16 {
  font-family: Compasse;
  font-size: 16px;
  color: #5ab9cb; }

.compasseLightWhite12 {
  font-family: Compasse Light;
  font-size: 12px;
  color: white; }

.compasseLightGold18 {
  font-family: Compasse Light;
  font-size: 18px;
  color: #ff9e15; }

.compasseLightWhite20 {
  font-family: Compasse Light;
  font-size: 20px;
  color: white; }

.compasseBoldWhite20 {
  font-family: compassbold;
  font-size: 20px;
  color: white; }

.compasse18pt333333 {
  font-family: Compasse Light;
  font-size: 18px;
  color: #333333; }

.compasseLight20pt333333 {
  font-family: Compasse Light;
  font-size: 20px;
  color: #333333; }

.compasseLight28pt004c71 {
  font-family: Compasse Light;
  font-size: 28px;
  color: #004c71; }

.compassebold28ptgold {
  font-family: compassbold;
  font-size: 28px;
  color: #ff9e15; }

.center {
  align: center;
  text-align: center; }

.displayblock {
  display: block; }

.width15 {
  width: 15px; }

.width1050 {
  width: 1050px; }

.width907 {
  width: 907px; }

.width740 {
  width: 740px; }

.width330 {
  width: 330px; }

.mLeft80 {
  margin-left: 80px; }

.mLeft73 {
  margin-left: 73px; }

.mLeft70 {
  margin-left: 70px; }

.mLeft30 {
  margin-left: 30px; }

.mLeft100 {
  margin-left: 100px; }

.mLeft110 {
  margin-left: 110px; }

.mLeft180 {
  margin-left: 180px; }

.mLeft250 {
  margin-left: 250px; }

.mLeft390 {
  margin-left: 390px; }

.mLeft394 {
  margin-left: 394px; }

.mLeft500 {
  margin-left: 500px; }

.mLeft534 {
  margin-left: 534px; }

.mLeft900 {
  margin-left: 900px; }

.mTop5 {
  margin-top: 5px; }

.mTop7 {
  margin-top: 7px; }

.mTop10 {
  margin-top: 10px; }

.mTop12 {
  margin-top: 12px; }

.mTop15 {
  margin-top: 15px; }

.mTop16 {
  margin-top: 16px; }

.mTop18 {
  margin-top: 18px; }

.mTop30 {
  margin-top: 30px; }

.mTop40 {
  margin-top: 40px; }

.mTop56 {
  margin-top: 56px; }

.mTop63 {
  margin-top: 63px; }

.mTop75 {
  margin-top: 75px; }

.mBottom40 {
  margin-bottom: 40px; }

.pTop3 {
  padding-top: 3px; }

.pTop5 {
  padding-top: 5px; }

.pTop7 {
  padding-top: 7px; }

.pTop8 {
  padding-top: 8px; }

.pTop10 {
  padding-top: 10px; }

.pTop12 {
  padding-top: 12px; }

.pTop14 {
  padding-top: 14px; }

.pTop16 {
  padding-top: 16px; }

.pTop17 {
  padding-top: 17px; }

.pTop20 {
  padding-top: 20px; }

.pTop30 {
  padding-top: 30px; }

.pTop35 {
  padding-top: 35px; }

.pTop40 {
  padding-top: 40px; }

.pTop50 {
  padding-top: 50px; }

.pTop70 {
  padding-top: 70px; }

.pTop75 {
  padding-top: 75px; }

.pBottom20 {
  padding-bottom: 20px; }

.pLeft20 {
  padding-left: 20px; }

.pLeft5 {
  padding-left: 5px; }

.pLeft650 {
  padding-left: 650px; }

.pLeft630 {
  padding-left: 630px; }

.font08em {
  font-size: 0.8em; }

.tCenter {
  text-align: center; }

.vCenter {
  vertical-align: middle; }

.mTop50 {
  margin-top: 50px; }

.width114 {
  width: 114px; }

.width175 {
  width: 175px; }

.width180 {
  width: 180px; }

.width200 {
  width: 200px; }

.width234 {
  width: 234px; }

.width285 {
  width: 285px; }

.width415 {
  width: 415px; }

.width420 {
  width: 420px; }

.width450 {
  width: 450px; }

.width680 {
  width: 680px; }

.arrowDown {
  cursor: pointer;
  height: 40px;
  width: 110px;
  position: absolute;
  right: 0px;
  background: #ffffff;
  background: url("/static/start/view/img/redesign/down-arrow-select.png") 0; }

.button {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 60px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 16px;
  padding: 5px 60px 12px 32px; }

.viewButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 10px;
  padding: 5px 60px 12px 32px;
  margin-left: 40px;
  margin-top: 5px;
  font-size: 16px; }

.serviceButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 160px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-family: nexa_bookregular;
  font-size: 26px;
  padding: 0px !important; }

.emailSucces {
  float: none;
  font-size: 26px;
  color: #72a84f; }

.emailError {
  float: none;
  font-size: 26px;
  color: #e53c2e; }

.deviceButton, .deviceButtonMifi {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 160px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-family: nexa_bookregular;
  font-size: 26px;
  line-height: 40px;
  padding: 0px !important; }

.deviceButtonMifi {
  width: 200px;
  font-size: 20px;
  height: 40px;
  line-height: 40px; }

.deviceButton50-off {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 189px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-family: nexaLight;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  padding: 0px !important; }

.deviceButtonBlue {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #31b1ca;
  width: 200px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-family: nexaLight;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  padding: 0px !important; }

.plansButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e19;
  width: 70px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 20px;
  padding: 8px 50px 12px 36px;
  font-size: 22px; }

.plansPhoneButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e19;
  width: 70px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 20px;
  padding: 8px 20px 8px 20px;
  font-size: 26px;
  width: 120px;
  line-height: 20px; }

.checkButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #32b1ca;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 40px;
  padding: 7px 48px 13px 42px;
  text-align: center; }

.purchaseButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e19;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  height: 40px;
  padding: 8px 48px 12px 42px;
  line-height: 25px; }

.btnWidth {
  height: 40px;
  width: 230px; }

.textDecNone {
  text-decoration: none; }

.width60 {
  width: 60px; }

.width188 {
  width: 188px; }

.width116 {
  width: 116px; }

.pRight5 {
  padding-right: 5px; }

.mBottom10 {
  margin-bottom: 10px; }

.mBottom25 {
  margin-bottom: 25px; }

.width25 {
  width: 25px; }

.height30 {
  height: 30px; }

.height35 {
  height: 35px; }

.height62 {
  height: 62px; }

.height50 {
  height: 50px; }

.height40 {
  height: 40px; }

.height400 {
  height: 400px; }

.width890 {
  width: 874px; }

.padding15 {
  padding: 5px 15px; }

.planType {
  background: #a9a8a9;
  width: 140px;
  height: 20px;
  border-radius: 5px 5px 0px 0px;
  padding: 15px 20px; }

.planTypePhone {
  background: #a9a8a9;
  height: 48px; }

.planTypePhoneStatic, .planTypePhoneStaticClosed {
  background: #a9a8a9;
  width: 185px;
  height: 50px; }

.planTypePhoneStaticClosed {
  border-radius: 0px 5px 0px 0px; }

.planTypeMobileStatic, .planTypeMobileStaticClosed {
  background: #a9a8a9;
  height: 50px; }

.planTypeMobileStaticClosed {
  border-radius: 0px 5px 0px 0px; }

.planTypePhone:first-of-type, .planTypePhoneStatic:first-of-type, .planTypePhoneStaticClosed:first-of-type, .planTypeMobileStatic:first-of-type, .planTypeMobileStaticClosed:first-of-type {
  border-radius: 5px 0 0 0px; }

.planTypePhone:last-of-type {
  border-radius: 0px 5px 0px 0px; }

.planSize {
  background: #6fc0d3;
  width: 140px;
  height: 39px;
  padding: 20px; }

.planPhoneSize {
  background: #6fc0d3;
  width: 180px;
  height: 79px; }

.planCost {
  background: #3bb0c9;
  width: 140px;
  height: 40px;
  border-radius: 0px 0px 5px 5px;
  padding: 10px 20px; }

.planCostPhone {
  background: #6dc0d3; }

.planSpace {
  width: 10px; }

.borderWhite {
  border: 2px solid white; }

.borderBlue {
  border-right: 2px solid #6dc0d3;
  border-bottom: 2px solid #6dc0d3; }

.borderBlueRight {
  border-right: 2px solid #6dc0d3; }

.borderBlueLeft {
  border-left: 2px solid #6dc0d3; }

.borderBlueBottom {
  border-bottom: 2px solid #6dc0d3; }

.borderGrey {
  border-right: 2px solid #a9a8a9; }

.borderTopGold {
  border-top: 1px solid #ff9e15; }

.borderRightGold {
  border-right: 1px solid #ff9e15; }

.borderTopWhite {
  border-top: 1px solid white; }

.borderTopWhite3 {
  border-top: 3px solid white; }

.borderBottomWhite {
  border-bottom: 1px solid white; }

.borderBottomGrey {
  border-bottom: 1px solid #cbc8c7; }

.borderLeftNone {
  border-left: none; }

.borderRightNone {
  border-right: none; }

.bBottomRadius5 {
  border-radius: 0 0 5px 5px; }

.handSet {
  height: 16px;
  padding: 4px 5px; }

.unlimited {
  height: 25px;
  padding: 25px 5px; }

.font10 {
  font-size: 10px; }

.mLeft10 {
  margin-left: 10px; }

.mLeft20 {
  margin-left: 20px; }

.mLeft25 {
  margin-left: 25px; }

.mLeft30 {
  margin-left: 30px; }

.mLeft33 {
  margin-left: 33px; }

.mLeft40 {
  margin-left: 40px; }

.mLeft45 {
  margin-left: 45px; }

.mLeft50 {
  margin-left: 50px; }

.mLeft60 {
  margin-left: 60px; }

.mLeft70 {
  margin-left: 70px; }

.mLeft80 {
  margin-left: 80px; }

.mLeft90 {
  margin-left: 90px; }

.mLeft200 {
  margin-left: 200px; }

.mRight60 {
  margin-right: 60px; }

.mRight10 {
  margin-right: 10px; }

.mRight115 {
  margin-right: 115px; }

.mRight400 {
  margin-right: 400px; }

.mRight30 {
  margin-right: 30px; }

.mRight40 {
  margin-right: 40px; }

.pAbsolute {
  position: absolute; }

.height25 {
  height: 25px; }

.height35 {
  height: 35px; }

.height62 {
  height: 62px; }

.height50 {
  height: 50px; }

.height40 {
  height: 40px; }

.height200 {
  height: 200px; }

.height300 {
  height: 300px; }

.height354 {
  height: 354px; }

.width25 {
  width: 25px; }

.width60 {
  width: 60px; }

.width110 {
  width: 110px; }

.width116 {
  width: 116px; }

.width140 {
  width: 140px; }

.width150 {
  width: 150px; }

.width168 {
  width: 168px; }

.width170 {
  width: 170px; }

.width173 {
  width: 173px; }

.width185 {
  width: 185px; }

.width188 {
  width: 188px; }

.width220 {
  width: 220px; }

.width230 {
  width: 230px; }

.width320 {
  width: 320px; }

.width300 {
  width: 300px; }

.width460 {
  width: 460px; }

.width474 {
  width: 474px; }

.width480 {
  width: 480px; }

.width560 {
  width: 560px; }

.width570 {
  width: 570px; }

.width640 {
  width: 640px; }

.width655 {
  width: 655px; }

.width890 {
  width: 874px; }

.padding7 {
  padding: 7px; }

.padding5 {
  padding: 5px; }

.termsSec, .termsSec2 {
  background: #e5e4e3;
  padding: 15px;
  width: 680px;
  border-radius: 5px;
  height: 130px; }

.termsSec2 {
  width: 880px;
  height: 100px; }

input::-moz-focus-inner, select::-moz-focus-inner {
  border: 0;
  outline: 0; }

/*Custom Select box*/
.styled-select-small, .styled-select-medium, .styled-select-large {
  overflow: hidden; }

.styled-select-small select {
  background: transparent;
  border: none;
  height: 40px;
  padding: 10px 5px;
  /* If you add too much padding here, the options won't show in IE */
  width: 135px; }

.styled-select-small.slate {
  background: url(/static/start/view/img/redesign/110x40_drop.png) no-repeat right center;
  height: 38px;
  width: 110px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

.styled-select-small.slateError {
  background: url(/static/start/view/img/redesign/110x40_drop.png) no-repeat right center;
  height: 38px;
  width: 110px;
  border: 1px solid red;
  border-radius: 5px; }

.styled-select-medium select {
  background: transparent;
  border: none;
  height: 40px;
  padding: 10px 5px;
  /* If you add too much padding here, the options won't show in IE */
  width: 252px; }

.styled-select-medium.slate {
  background: url(/static/start/view/img/redesign/230x40_drop.png) no-repeat right center;
  height: 40px;
  width: 230px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

.styled-select-medium.slateError {
  background: url(/static/start/view/img/redesign/230x40_drop.png) no-repeat right center;
  height: 40px;
  width: 230px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

.styled-select-large select {
  background: transparent;
  border: none;
  height: 40px;
  padding: 10px 5px;
  /* If you add too much padding here, the options won't show in IE */
  width: 495px; }

.styled-select-large.slate {
  background: url(/static/start/view/img/redesign/470x40_drop.png) no-repeat right center;
  height: 38px;
  width: 470px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

.styled-select-large.slateError {
  background: url(/static/start/view/img/redesign/470x40_drop.png) no-repeat right center;
  height: 38px;
  width: 470px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

.styled-cvv-small input {
  background: transparent;
  border: none;
  height: 40px;
  padding: 10px 5px;
  /* If you add too much padding here, the options won't show in IE */
  width: 110px; }

.styled-cvv-small.slate {
  background: url(/static/start/view/img/redesign/110x40_tip.png) no-repeat right center;
  height: 40px;
  width: 110px;
  border: 1px solid #cbc8c7;
  border-radius: 5px; }

/*Custom Select box*/
#device-left, #service-left {
  float: left;
  width: 580px;
  margin-top: 10px; }

#DeviceDescription {
  float: left;
  width: 580px;
  margin-top: 15px; }

#ServiceDescription {
  float: left;
  width: 580px; }

.smallText {
  font-size: 18px;
  color: #646469;
  line-height: 22px; }

.specialSelection {
  font-size: 30px;
  color: #999899; }

.a {
  font-size: 13px;
  color: #646469; }

.bb {
  font-size: 24px;
  color: #ff9e15;
  font-family: nexa_bookregular; }

.c {
  font-size: 18px;
  color: #646469;
  font-family: nexa_bookregular;
  min-height: 60px;
  width: 580px;
  float: left; }

.d {
  font-size: 18px;
  font-family: nexa_bookregular;
  color: #646469;
  margin-left: 30px; }

.f {
  font-size: 18px;
  font-family: nexa_boldregular;
  color: #646469;
  margin-top: 15px; }

.r {
  font-size: 24px;
  color: #646469; }

.u {
  font-size: 18px;
  color: #004d71;
  font-family: nexa_boldregular;
  padding-left: 35px;
  clear: both;
  cursor: pointer;
  text-transform: uppercase; }

.devicePriceBox3, .servicePriceBox3 {
  color: #e53c2e;
  font-family: compassbold;
  font-size: 40px;
  float: left;
  height: 50px; }

#dollarsign, #priceDollars, #priceCents {
  float: left; }

#realButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0px !important;
  font-size: 26px; }

.downloadButton {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #ff9e15;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0px !important;
  font-size: 22px; }

#playforfree {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #32b1ca;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0px !important;
  margin-left: 20px;
  line-height: 40px; }

ul.radio-group li {
  position: relative;
  list-style: none;
  padding: 10px 10px 10px 0px; }

.highlightText {
  color: #646469; }

ul.radio-group {
  padding-left: 0px; }

input[type="radio"] + label > span {
  position: relative;
  border-radius: 14px;
  width: 14px;
  height: 14px;
  background-color: white;
  border: 3px solid #ff9e15;
  display: inline-block;
  vertical-align: middle; }

input[type="radio"]:checked + label > span span {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 8px;
  border: none;
  background: #646469; }

input[type="radio"] {
  opacity: 0;
  position: absolute; }

input[type="checkbox"] + label > span {
  position: relative;
  width: 14px;
  height: 14px;
  background-color: white;
  border: 3px solid #ff9e15;
  display: inline-block;
  vertical-align: middle; }

input[type="checkbox"]:checked + label > span span {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 2px;
  top: 2px;
  border: none;
  background: #646469; }

input[type="checkbox"] {
  opacity: 0;
  position: absolute; }

#canadaJuno input[type="checkbox"] {
  opacity: 100;
  position: relative; }

#products_mifi .pagination_three li {
  padding-left: 12px;
  width: 110px;
  height: 80px;
  float: left;
  list-style: none; }

#products_mifi .pagination_three li.current {
  border-bottom: 2px solid #e53c2e;
  padding-bottom: 10px; }

.DeviceSpot, .ServiceSpot {
  clear: both; }

#tabs-container {
  margin-top: 30px; }

.tabs-menu {
  height: 40px;
  clear: both;
  margin: 30px 0px 0px 0px;
  padding: 0px;
  position: relative;
  background-color: #DCD8D6;
  border: 1px solid #ff9e15; }

.tabs-menu li {
  float: left;
  border: 1px solid #ff9e15;
  border-left: 0px;
  border-bottom: 0px;
  list-style: none;
  padding: 4px 20px 4px 20px; }

.tabs-menu li.current {
  position: relative;
  background-color: white;
  border-bottom: 0px;
  z-index: 5; }

.tabs-menu li a {
  color: #b3b1b1;
  text-decoration: none;
  font-size: 24px;
  font-family: nexa_bookregular; }

.tabs-menu .current a {
  color: #ff9e15; }

.tab {
  border: 1px solid #ff9e15;
  border-top: 0px;
  background-color: #fff;
  width: 1170px;
  padding: 20px;
  float: left;
  margin-bottom: 30px; }

.tab-content {
  display: none; }

#features {
  display: block; }

.pts {
  margin-left: 20px;
  margin-right: 20px;
  float: left;
  width: 450px;
  min-height: 50px;
  line-height: 18px; }

.pts1 {
  margin-left: 20px;
  margin-right: 20px;
  float: left;
  width: 450px;
  line-height: 18px; }

.width550 {
  width: 550px; }

#extraText {
  margin-top: 18px;
  float: left;
  margin-left: 10px;
  font-size: 18px;
  color: #646469;
  font-family: nexa_boldregular; }

#topText {
  font-size: 21px;
  color: #646469;
  font-family: nexa_boldregular; }

.star {
  font-size: 25px;
  vertical-align: super; }

#detailsLimitations {
  color: #004d71;
  font-size: 15px;
  font-weight: bold;
  margin-right: 5px;
  cursor: pointer;
  margin-bottom: 20px;
  float: left; }

#detailsLimitationsView {
  display: none; }

.pLeft50 {
  padding-left: 50px; }

#dslBox {
  width: 520px;
  background-color: #E5E4E3;
  font-size: 18px;
  font-family: nexa_bookregular;
  color: #646469;
  border: 2px solid #D8D6D5;
  padding: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 20px; }

.callText {
  color: #c25219;
  font-size: 25px;
  font-family: nexa_bookregular; }

.textBox, #zip {
  width: 230px;
  height: 31px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px; }

.error {
  border-radius: 5px;
  background: #e63c2e;
  padding: 10px !important;
  color: white;
  font-family: nexa_boldregular;
  font-size: 20px;
  float: left;
  margin-bottom: 10px;
  margin-top: 10px; }

.deviceHead, .serviceHead {
  font-family: nexa_bookregular;
  font-size: 1.77778em;
  text-transform: uppercase;
  color: #ff9e15;
  margin-bottom: 5px;
  margin-top: 20px; }

.q {
  cursor: pointer; }

.closebtn {
  display: block;
  float: left;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 26px/100% nexa_bookregular;
  height: 40px;
  text-transform: uppercase;
  border: none;
  color: white;
  background: #8b8a8f;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0px !important; }

.rotateImg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }

.redLine {
  position: relative;
  top: 20px;
  left: 20px;
  width: 94px;
  border-top: 1px red solid;
  transform: rotate(-15deg);
  height: 0px; }

.whiteSlash {
  position: relative;
  top: 15px;
  left: 100px;
  width: 90px;
  border-top: 2px #fff solid;
  margin-top: 6px;
  height: 0px; }

.graySlash {
  position: relative;
  top: 15px;
  left: 100px;
  width: 90px;
  border-top: 2px #999999 solid;
  transform: rotate(-13deg);
  height: 0px; }

.originalPrice {
  text-align: center;
  border: 1px; }

.OGPriceBox {
  position: relative;
  max-width: 100%;
  width: 300px;
  height: 40px;
  text-align: center; }
  .OGPriceBox div {
    font-family: compassbold;
    font-size: 30px; }

.wwwrightBox {
  marging: 30px; }

#simple_overlay {
  display: none;
  z-index: 10000;
  width: 1050px;
  background-color: white;
  min-height: 1000px;
  border-radius: 5px 5px 5px 5px;
  -moz-box-shadow: 0 0 90px 5px #000;
  -webkit-box-shadow: 0 0 90px #000;
  position: absolute; }
  #simple_overlay .close {
    background: url("/static/start/view/img/overlays/close_icon.png") no-repeat;
    top: 0px;
    right: 2px;
    left: inherit; }
  #simple_overlay button {
    display: block;
    float: left;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 26px/100% nexa_bookregular;
    height: 40px;
    text-transform: uppercase;
    border: none;
    color: white;
    background: #8b8a8f;
    width: 230px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px; }
    #simple_overlay button:first-of-type {
      display: block;
      float: left;
      outline: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      font: 26px/100% nexa_bookregular;
      height: 40px;
      text-transform: uppercase;
      border: none;
      color: white;
      background: #ff9e15;
      width: 230px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      border-radius: 4px; }
  #simple_overlay button + button {
    margin-left: 20px; }
  #simple_overlay span {
    color: #999999;
    font-size: 18px; }
    #simple_overlay span:first-of-type {
      color: #ff9e15;
      font-size: 24px; }

#simple_overlay .content {
  margin: 30px 0px 30px 30px;
  color: #ffffff;
  font-size: 16px; }

#simple_overlay .oos {
  font-size: 26px; }

#simple_overlay .email {
  font-size: 12px;
  font-style: italic; }

#simple_overlay .leftContent {
  float: left;
  width: 378px; }

#simple_overlay .rightContent {
  float: left;
  margin-left: 30px; }

#coverageButton{
	display: inline;
	vertical-align: top;
	float: right;
  }
  
#coverageButton3G{
	height: 27px !important;
    width: 39px !important;
    background-color: #8BDC65 !important;
    color: white !important;
    font: 15px nexa_bookregular !important;
}

#coverageButton34G{
	height: 27px !important;
    width: 81px !important;
    background-color: #084E73 !important; 
    color: white !important;
    font: 15px nexa_bookregular !important;
}

div#lowmenu ul li {
  display: inline-block;
  font-size: 13px;
  color: #999999;
  padding-right: 10px;
  padding-left: 8px;
  border-right: 1px solid #999999;
  line-height: 90%; }

.dataBRight {
  border-right: 1px solid #b6dfe9; }

.dataBBottom {
  border-bottom: 1px solid #b6dfe9; }

#data100 {
  height: 100px;
  line-height: 100px;
  vertical-align: middle;
  text-align: center; }

#data120 {
  height: 120px;
  line-height: 120px;
  vertical-align: middle;
  text-align: center; }

#PhonePlansGap {
  height: 4px; }

.deviceTag {
  color: #32B1CA;
  font-family: nexa_boldregular;
  padding: 5px;
  text-align: center;
  border-top: 2px solid #32B1CA;
  border-bottom: 2px solid #32B1CA;
  margin-bottom: 20px;
  margin-left: -35px; }

input.clearIe::-ms-clear {
  display: none; }

/*Styles for Marketing Landing Pages*/
#LandingContainer {
  width: 1000px;
  margin-left: auto;
  margin-right: auto; }

#priceHolder {
  width: 300px;
  margin-left: auto;
  margin-right: auto; }

.goldLine {
  position: relative;
  top: 30px;
  left: 20px;
  width: 94px;
  border-top: 1px #ff9e15 solid;
  transform: rotate(-15deg);
  height: 0px; }

.row1000 {
  width: 1000px; }

.LandingBigPrice {
  font-size: 40px;
  color: #65646a;
  font-weight: bold;
  line-height: 64px; }

.imagerow2 {
  width: 330px;
  height: 200px;
  float: left; }

.imagerow6, .imagerow6a {
  width: 250px;
  height: 80px;
  float: left; }

.imagerow6a {
  width: 200px; }

.supportLink {
  margin-right: 16px;
  text-align: center;
  background-image: url("/static/start/view/img/2015landing/basicbutton-medium_u6.png"); }

.loginLink {
  margin-right: 6px;
  text-align: center;
  width: 91px;
  background-image: url("/static/start/view/img/2015landing/basicbutton-medium_u4.png"); }

.seeDevices {
  font-family: nexaLight;
  font-size: 38px; }

.landing-chart-blue-bg {
  background-color: #81c9d8; }

.landing-chart-gray-bg {
  background-color: #cccccc; }

.landing-chart-borderTopWhite {
  border-top: 2px solid #ffffff; }

.landing-chart-borderTopWhite1 {
  border-top: 1px solid #ffffff; }

.landing-chart-borderRightWhite {
  border-right: 2px solid #ffffff; }

.landing-chart-borderRightWhite1 {
  border-right: 1px solid #ffffff; }

.landing-chart-borderTopGrey {
  border-top: 2px solid #cbc8c7; }

.landing-chart-borderRightGrey {
  border-right: 2px solid #cbc8c7; }

.landing-chart-borderBottomGrey {
  border-bottom: 2px solid #cbc8c7; }

.landing-chart-borderBottomGrey1 {
  border-bottom: 1px solid #cbc8c7; }

.landing-chart-borderBottomWhite {
  border-bottom: 2px solid #ffffff; }

.landing-chart-borderBottomWhite1 {
  border-bottom: 1px solid #ffffff; }

.landing-chart-borderLeftGrey {
  border-left: 2px solid #cbc8c7; }

.landing-chart-borderLeftGrey1 {
  border-left: 1px solid #cbc8c7; }

.landing-chart-borderLeftWhite1 {
  border-left: 1px solid white; }

.landing-chart-borderTopRed {
  border-top: 2px solid #fc662b; }

.landing-chart-borderRightRed {
  border-right: 2px solid #fc662b; }

.landing-chart-borderBottomRed {
  border-bottom: 2px solid #fc662b; }

.landing-chart-borderLeftRed {
  border-left: 2px solid #fc662b; }

.landing-chart-borderTopWhite {
  border-top: 2px solid #fff; }

.landing-chart-borderRightWhite {
  border-right: 2px solid #fff; }

.landing-chart-borderBottomWhite {
  border-bottom: 2px solid #fff; }

.landing-chart-borderLeftWhite {
  border-left: 2px solid #fff; }

.landing-chart-borderLeftTBlue {
  border-left: 1px solid #31b1ca; }

.landing-chart-borderBottomTBlue {
  border-bottom: 1px solid #31b1ca; }

.landingplansButton, .landingplansButtonRed, .landingplansButtonGold, .landingplansButtonBlue {
  background: none repeat scroll 0 0 #ff9e19;
  border: medium none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: block;
  float: left;
  height: 16px;
  outline: medium none;
  padding: 4px 16px 10px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 90px; }

.landingplansButtonRed {
  background: none repeat scroll 0 0 #fc662b; }

.landingplansButtonGold {
  padding: 4px 16px 4px 16px; }

.landingplansButtonBlue {
  background: none repeat scroll 0 0 #31b1ca;
  padding: 4px 16px 4px 16px; }

.landingplansBgRed {
  background: none repeat scroll 0 0 #fc662b; }

.landingplansBgBlue {
  background: none repeat scroll 0 0 #31b1ca; }

button, input, optgroup, select, textarea {
  color: #646469; }

.font12White {
  font-size: 12px;
  font-family: nexa_bookregular;
  font-weight: normal !important;
  color: #ffffff !important;
  text-decoration: none; }

.deviceNew {
  width: 290px;
  height: 150px;
  border-top: 2px solid #00cccc;
  border-bottom: 2px solid #00cccc;
  margin-right: 15px;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 20px; }

.font18Blue {
  font-size: 18px;
  font-family: nexa_bookregular;
  font-weight: normal;
  color: #216580; }

.serviceNew {
  width: 185px;
  height: 160px;
  margin-right: 15px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 20px;
  padding-left: 35px; }

.footer {
  width: 1280px;
  margin: 0 auto; }

#base {
  position: absolute;
  z-index: 0; }

#u0 {
  height: 370px;
  left: -460px;
  position: absolute;
  top: 0;
  width: 1920px; }

#u4 {
  height: 60px;
  left: -460px;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 1920px; }

#u4_img {
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  width: 1920px; }

.ax_shape {
  color: #333333;
  font-family: "Arial Regular","Arial";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center; }

.ax_image {
  color: #000000;
  font-family: "Arial Regular","Arial";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center; }

#multitile {
  height: 450px;
  margin-left: -360px;
  width: 1820px;
  background-image: url("/static/start/view/img/2015landing/5/tile_02.jpg"); }

#faqs {
  position: relative; }

#faqs h4 {
  cursor: pointer; }

#faqs h4.active {
  color: #ff9e15; }

#faqs div {
  position: relative; }

#faqs div p {
  padding: 0;
  margin-bottom: 15px; }
