/*****************************************************************************************************************
 * 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                                                                                       *
 ****************************************************************************************************************/
 html *{
	font-family:helvetica,arial !important;
}

#footer div{
	font-family: compassbold !important;
}

#orderConfirmation div[class="mTop10 fLeft mBottom10"] span[class="nexabook18pt"]{
	font-size: 16px !important;
}

form[name="logoutForm"] div[class="fLeft pRelative colorWhite"]{
	font-family: compassbold !important;
}

/* @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; }

#audioCaptchaImg {
	margin-left: 10px;
	margin-bottom: 15px;
	width: 35px;
}

/*****************************************************************************************************************
 * 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;
  font-family: compassbold !important;
}
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: 265px;
      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-3GDevices #red-box-message{
   	float: none;
    font-size: 18px;
    color: #e53c2e;
   }
   #failure-box-3GDevices{
    display:none;
   }
  #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: 100%;
  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; 
  font-family: compassbold !important;}

.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; }

.pRight25 {
  padding-right: 25px; }

.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; }
  
.font12 {
  font-size: 12px; }  

.mLeft5 {
  margin-left: 5px; }
  
.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 !important;
  font-size: 40px;
  float: left;
  height: 50px; }
  
#extraText1{
	 padding-top: 10px; }
  
.smallDevicePrice, .bigDevicePrice, .smallDevicePrice{
	font-family: compassbold !important;
}

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

#realButton, .norton-SubBtn {
  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;
  margin-left: 15px; }

.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;
}

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

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; }
 
 /******************************/
 /* Front door redesign - 2017 */ 
 /******************************/ 
.servicesBlock{
 width:30%;
 display:inline-block;
 padding-bottom:25px;
 padding-left:30px;
 vertical-align:top;
}
#services a{
 text-decoration:none;
}
.linkText{
 text-decoration:none;
 text-transform:uppercase;
  font-size: 16px;
  color: #ff9e15;
  line-height: 22px;
  font-family:nexa_bookregular;
  font-weight:bold;
}  
#headerNav2{
 height:60px !important;
} 
#services{
	margin-top:0px;
	padding-left:0px !important;
}
#footer{
	bottom: 0px !important;
}
.descrp{
 display:block;
 position:absolute;
 text-align:center;
 opacity:0;
 filter: alpha(opacity=0); /* IE8 and lower */
 background:url("/static/start/view/img/2017landing/1x1-6dc0d3cc.png");
 color:white;
 width:275px;
 height:185px;
 font-size:15px;
 font-family:nexa_boldregular;
}

#hov:hover .descrp{
 opacity:1;
   filter: alpha(opacity=100); /* IE8 and lower */
 
}
#hov:hover  img{
border:3px solid rgb(109,192,211) !important;
 box-shadow: 3px 3px 2px rgba(109,192,211,0.3) !important;
 
}
.serviceDescrp{
	padding:10px;
	margin-top:8px;
	line-height:1.3em;
	}
#Security .serviceDescrp{
	margin-top:5px;
}
#Entertainment .serviceDescrp{
	font-size: 15px;
	padding:8px;
	margin-top:5px;
	line-height:1.23em;
}

.servicesBlock img{
	height:180px;
	border:3px solid rgba(0,0,0,0.7);
	-webkit-background-clip: padding-box; /* for Safari */
    background-clip: padding-box;  /* for IE9+ */
	box-shadow: 3px 3px 2px rgba(0,0,0,0.3);
}
/* byod select new css */
.byodTableSelect{
	border-radius:5px;
	width:200px;
	height:45px;
	color:#999999;
	border: 1px #a9a8a9 solid;
}

.byodTableInput{
	/* background:url("/static/start/view/img/redesign/230x40_tip.png") no-repeat right; */
	border-radius:5px;
	width:250px;
	height:45px;
	 border:1px solid rgb(169, 169, 169);
}
.byodTableHeaderRow{
	color: #ff9e15; 
	font-family: nexa_boldregular; 
	text-align:left
}
.byodTableHeader{
	font-weight:300;
	padding:1px;
}
.captchaTypedText{
	font-size:14px;
	padding-bottom:0px;
}
.captchaErrorMsg{
	color:#ff0000;
	font-sixe:16px;
	font-weight:bold;
}
.byod .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: #3ab0c8;
  width: 230px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: inline-block; }

.nLifeLock .norton-SubBtn{
	float: none;
    margin: auto;
    font-size: 16px;
    text-transform: none;
    width: 175px;
}
.nLifeLock .product-header, .nLifeLock .feature{
    width: 22%;
}
.nLifeLock .product-logo, .nLifeLock .feature-title{
    width: 40%;
}
.nLifeLock .product-pricing-info{
    text-align: center;
}
.nLifeLock .border-top{
	margin: 10px 0px;
	display: block;
    height: 2px;
    background-color: #ff9e15;
}
.nLifeLock .norton-name {
    padding-top: 18px;
}
.nLifeLock  .norton-type {
    padding: 0 0 10px 0;
    min-height: 28px;
}
.nLifeLock .circle{
	height: 18px;
    width: 18px;
    background-color: #ff9e15;
    border-radius: 50%;
    display: inline-block;
}
.nLifeLock .feature .feature-table{
	justify-content: left;
	display: inline-flex;
}
.nLifeLock .feature-title{
	padding: 20px 5px 20px 10px;
}
.nLifeLock .feature div {
	display: flex;
    justify-content: center;
}
.nLifeLock .orange-top{
	border-top: 1px solid #ff9e15;
}
.nLifeLock .orange-bottom{
	border-bottom: 1px solid #ff9e15;
}
.nLifeLock .gray-bottom{
	border-bottom: 1px solid #a9a8a9;
}
.nLifeLock .section-text {
    font-size: 22px;
    color: #ff9e15;
    text-align: center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    writing-mode: tb-rl;
}
.nLifeLock .monthly.price {
    margin-bottom: 30px;
}
.font24 {
  font-size: 24px; }
.nLifeLock .feature-body a, .nLifeLock.reference a {
  color: #0089c6;
  text-decoration: none;
}
.nLifeLock .toggle-content{
	height: 14px;
    width: 14px;
}
.nLifeLock .toggle-content.expanded{
    font-weight: 900;
}	
.nLifeLock .toggle-content.collapsed{
    background: url(/static/start/view/img/redesign/services/expand.png) no-repeat;
    background-size: 100%;
}	
.nLifeLock .toggle-content.collapsed:hover{
    background: url(/static/start/view/img/redesign/services/expand_hover.png) no-repeat;
    background-size: 100%;
}	

/*** CSS for NZ Contact US page ***/
/*** ---------------------------- ***/
@import "../font/font-awesome.css"
@font-face {
  font-family: 'nexa_bookregular';
  src: url("../font/nexa-book-webfont.eot");
  src: url("../font/nexa-book-webfont.eot?#iefix") format("embedded-opentype"), url("../font/nexa-book-webfont.woff2") format("woff2"), url("../font/nexa-book-webfont.woff") format("woff"), url("../font/nexa-book-webfont.ttf") format("truetype"), url("../font/nexa-book-webfont.svg#nexa_bookregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'compassbold';
  src: url("../font/flat-it_-_compasse-extrabold-webfont.eot");
  src: url("../font/flat-it_-_compasse-extrabold-webfont.eot?#iefix") format("embedded-opentype"), url("../font/flat-it_-_compasse-extrabold-webfont.woff2") format("woff2"), url("../font/flat-it_-_compasse-extrabold-webfont.woff") format("woff"), url("../font/flat-it_-_compasse-extrabold-webfont.ttf") format("truetype"), url("../font/flat-it_-_compasse-extrabold-webfont.svg#compasseextrabold") format("svg");
  font-weight: bold;
  font-style: bold; }

@font-face {
  font-family: 'nexa_boldregular';
  src: url("../font/nexa-bold-webfont.eot");
  src: url("../font/nexa-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../font/nexa-bold-webfont.woff2") format("woff2"), url("../font/nexa-bold-webfont.woff") format("woff"), url("../font/nexa-bold-webfont.ttf") format("truetype"), url("../font/nexa-bold-webfont.svg#nexa_boldregular") format("svg");
  font-weight: bold;
  font-style: bold; }
  
/* Table of Contents
------------------------------------------------------- *

	0. Bootstrap Fixes
	1. Less Variables & Mixins
	2. Top Bar
	3. Header
	4. Links
	5. Navigation Menu
	6. Slider
	7. Content
		7.1. Primary
		7.2. Secondary
	8. Pagination
	9. Footer
	10. HTML Markup and Formatting
	11. Widgets Style
	12. Comments
	
/* 0. Bootstrap Fixes
-------------------------------------------------------	*/
body {
  background: #E3E3E3;
}
#main {
  width: 100%;
}
.container {
max-width:1280px;
  margin: auto;
  padding:0px;
}
code {
  white-space: pre-wrap !important;
}
.navbar-default .navbar-nav > li > a {
  color: none;
}
.navbar-default .navbar-nav > li > a:hover {
  color: none;
}
/* 1. Less Variables & Mixins
-------------------------------------------------------	*/
.font {
  font-family: "Open Sans", Helvetica, nexa_bookregular, sans-serif;
}
#parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#page {
  position: relative;
  z-index: 888;
  width:95%;
  margin:0 auto;
}
/* 2. Top Bar
------------------------------------------------------- */
#top-bar {
  background: #222222;
  padding: 5px 100px;
  position: relative;
  z-index: 99999;
  opacity: 0.8;
}
#social-icons {
  float: right;
  text-align: right;
}
.social-icon {
  color: #78757a;
  font-size: 28px;
  margin-right: 2px;
  position: relative;
  top: 0px;
  left: 0px;
  transition: ease 0.4s all;
}
.social-icon:hover {
  color: #89db52;
  text-shadow: 3px 3px 1px #918f93;
  top: -2px;
  left: -2px;
}
a:hover .social-icon {
  text-decoration: none;
}
#top-search {
 padding:6em 0 0 13em;
}
#top-search input[type=text] {
  background: #fff;
  outline: none;
  border: 1px solid #999999;
  width: 25em;
  height:1.6emx;
  position:relative;
  font-size:22px;
  opacity:0.8;
  color:#555555;
}
#top-search input[type=text]:hover,
#top-search input[type=text]:focus {
  background: #ffffff;
}
#top-search ::-webkit-input-placeholder {
  color: #78757a;
}
#top-search :-moz-placeholder {
  /* Firefox 18- */

  color: #78757a;
}
#top-search ::-moz-placeholder {
  /* Firefox 19+ */

  color: #78757a;
}
#top-search :-ms-input-placeholder {
  color: red;
}
#top-search button {
  position: relative;
  padding: 0.06em 0em;
  background: orange;
  font-size:24px;
  top:4px;
  left:5px;
  height:1.6em;
  width:230px;
  border: none;
  -webkit-linear-gradient: none;
  box-shadow: none;
  color: #ffffff;
}
.topNav{margin-right:3em;font-size:1.8em;margin-top:0.8em;color:#555555;}
.topNav .nav li a{padding:0em 0.5em; color:#646469;}
.topNav .nav li a:hover,.topNav .nav li a:focus{background:none;text-decoration:none;}
/* 3. Header
------------------------------------------------------- */
body {
  font-family: "Open Sans", Helvetica, nexa_bookregular, sans-serif;
}
#masthead {
background:url("/static/start/view/img/helpsite/Help_header_tile.png");
background-repeat: no-repeat;
 height:250px;
}
.site-title {
  font-family: "Open Sans", Helvetica, nexa_bookregular, sans-serif;
  position: relative;
  top: -10px;
}
.site-title a {
  color: black;
}
.site-title a:hover {
  text-decoration: none;
}
.main_logo {
  max-width: 360px;
}
@media screen and (max-width: 992px) {
  .site-title,
  #social-icons {
    text-align: center;
    float: none;
    padding: 15px 5px;
  }
  .site-title {
    margin-top: -5px;
  }
  #social-icons {
    padding: 10px 5px;
  }
}
/* 4. Links
------------------------------------------------------- */
a {
  color: #004D71;
}
a:hover,
a:focus,
a:active {
  color: #89db52;
  text-decoration: none;
}
.breadcrumbs {
padding: 7px;
margin-bottom: 4px;
color:#555555;
font-size: 13px;
}
.breadcrumbs a {
color:#0489B1;
}
/* 5. Navigation Menu 
-------------------------------------------------------	*/
/* Default Navigation */
#site-navigation {
  clear: both;
  display: block;
  float: right;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 30px;
  padding-bottom: 0px;
}
#site-navigation .menu li > a:after {
  content: '\f0da';
  font-family: "FontAwesome";
  padding: 5px 0;
  font-size: 10px;
  float: right;
}
#site-navigation .menu li a:before {
  content: "";
  font-family: "FontAwesome";
}
#site-navigation .menu > li > a:after {
  content: '\f0d7';
  font-family: "FontAwesome";
  padding: 5px;
  font-size: 10px;
}
#site-navigation div.menu > ul > li > a:after {
  content: '\f0d7';
  font-family: "FontAwesome";
  padding: 5px;
  font-size: 10px;
}
#site-navigation .menu li > a:only-child:after {
  content: '';
}
#site-navigation .current_page_item > a {
  background: #eeeeee;
  border-top: solid 3px #222;
  padding-top: 12px;
}
#site-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-bottom: 0px;
}
#site-navigation ul li:hover > ul {
  /* Dropdown*/

  display: block;
}
#site-navigation ul ul {
  display: none;
  float: left;
  position: absolute;
  top: 3.4em;
  left: 0;
  z-index: 99999;
  background: #eeeeee;
}
#site-navigation ul ul ul {
  border: solid 1px #d5d5d5;
  left: 100%;
  top: 0;
}
#site-navigation ul ul a {
  min-width: 200px;
  max-width: 255px;
  font-size: 14px;
  font-weight: normal;
  color: #555;
  padding: 8px 20px;
}
#site-navigation ul ul a:hover {
  border-top: none;
  background: #333;
  color: #eee;
  padding: 8px 20px;
}
#site-navigation li {
  float: left;
  position: relative;
  clear: right;
}
#site-navigation a {
  display: block;
  color: #918f93;
  text-decoration: none;
  padding: 16px 15px;
  font-weight: normal;
}
#site-navigation a:hover {
  background: #f3f3f3;
  border-top: #0C9 solid 4px;
}
#site-navigation li:hover > a {
  background: #eeeeee;
  border-top: #89db52 solid 4px;
  padding-top: 12px;
  color: black;
}
#site-navigation ul ul li:hover > a {
  background: #ffffff;
  border-top: none;
  padding: 8px 20px;
  color: black;
}
/* Small menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
    font-size: 14px;
    height: 40px;
    clear: none;
  }
  .menu-toggle ul:before,
  .main-navigation.toggled .nav-menu ul:before {
    content: "";
  }
  .menu-toggle:before {
    content: "\f0ca";
    font-family: "FontAwesome";
    float: right;
    font-size: 27px;
    padding: 0px 30px 10px 10px;
  }
  .td_mobile_menu_wrap {
    text-align: center;
    float: left;
    margin-top: -46px;
    width: 80%;
    display: none;
  }
  .mobileMenu {
    margin-bottom: 10px;
    text-align: left;
    width: 80%;
  }
}
@media screen and (max-width: 1100px) {
  #site-navigation {
    float: none;
    width: 100%;
    margin: auto;
  }
}
/* 6. Slider
-------------------------------------------------*/
.slider-wrapper {
  margin: auto;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding-top: 15px;
  margin-bottom: 40px;
}
.slide-title {
  font-family: "Open Sans", Helvetica, nexa_bookregular, sans-serif;
  color: #ddd;
}
.nivo-caption {
  max-width: 750px;
  min-width: 200px;
  overflow: hidden;
  bottom: 15px;
  left: 10px;
}
.nivo-html-caption {
  display: none;
}
div.slide-title {
  font-size: 36px;
  display: block;
}
div.slide-description {
  font-family: Helvetica, nexa_bookregular, sans-serif;
}
.nivo-imageLink {
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  div.slide-title {
    font-size: 18px;
  }
  div.slide-description {
    font-size: 13px;
  }
}
/* 7. Content 
------------------------------------------------------- */
#content {
  background: white;
  padding:20px 65px 140px;
  margin-right: 0px;
  margin-left: 0px;
}
/* 7.1 Primary 
------------------------------------------------------- */
#primary {
  padding: 0 15px;
  width:96%;
}
#primary .icon-time:before,
#primary .icon-user:before {
  color: #918f93 !important;
}
#primary .byline {
  display: inline;
}
article.archive .article-rest {
  margin: auto;
}
.featured-thumb {
  margin: auto;
  margin-top: 35px;
  overflow: hidden;
  width: 95%;
  padding: 0px;
}
.featured-thumb .img-meta {
  position: absolute;
  z-index: 9999;
  background: rgba(137, 219, 82, 0);
  width: 100%;
  height: 100%;
  left: 0px;
  display: none;
  text-align: center;
}
.featured-thumb .img-meta .meta-icon {
  display: inline-block;
  font-size: 24px;
  width: 36px;
  background: #4c901e;
  border-radius: 4px;
  margin-top: 100px;
}
.featured-thumb .img-meta .meta-link {
  padding: 15px 25px;
  color: #5e5c60;
}
.featured-thumb .img-meta .meta-link:hover {
  color: #89db52;
  text-decoration: none;
}
.featured-thumb .img-meta .meta-link i {
  position: relative;
  left: -19px;
}
.featured-thumb .img-meta .meta-link .icon-link {
  left: -17px;
}
.featured-thumb:hover .img-meta {
  background: rgba(137, 219, 82, 0.65);
}
.featured-thumb:hover img {
  -webkit-transform: scale(1.05);
  opacity: 0.8;
}
.featured-thumb img {
  box-shadow: 0px 1px 2px #444;
  border-top: solid 5px rgba(137, 219, 82, 0.8);
  margin-bottom: 0px;
  transition: 0.4s all ease;
  min-width: 100%;
  height: auto;
}
.archive .entry-title a {
  font-size: 26px;
  font-weight:bold;
  color: #004d71;
}
.archive .entry-title a:hover {
  color: #ff9e15;
  text-decoration:none;
}
.archive .entry-meta {
  font-size: small;
  color: #918f93;
}
.archive .entry-meta .posted-on {
  margin-right: 6px;
}
.featured-image-single {
  text-align: center;
}
.featured-image-single img {
  max-width: 80%;
  border: solid 5px #ffffff;
  box-shadow: 0px 2px 2px #888;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .featured-thumb .img-meta .meta-icon {
    margin-top: 30px;
  }
}
/* 7.2 Secondary 
------------------------------------------------------- */
#secondary {
  padding: 20px 10px;
}
#secondary ul {
  list-style: none;
  margin-left: 5px;
}
#secondary ul li:before {
  margin-right: 5px;
  content: "\f0da";
  font-family: "FontAwesome";
  color: #918f93;
}
#secondary ul ul {
  margin-left: 15px;
}
#secondary ul ul li:before {
  content: "\f111";
  font-size: 5px;
  position: relative;
  top: -3px;
}
#secondary ul ul ul {
  margin-left: 5px;
}
#secondary .widget_recent_entries li:before {
  content: "\f0f6";
}
#secondary .widget_recent_entries li {
  border-bottom: solid 1px #f7f7f7;
  padding: 5px 0px;
}
#secondary .widget_recent_comments li:before {
  content: "\f075";
  font-size: 12px;
  position: relative;
  top: -2px;
}
#secondary .widget_calendar caption {
  font-weight: bold;
  margin-bottom: 7px;
}
#secondary .widget_calendar table {
  padding: 5px;
  text-align: center;
  background: #fff;
}
#secondary .widget_calendar thead {
  border-bottom: solid 1px #89db52;
}
#secondary .widget_calendar thead th {
  background: #ddd;
  padding: 5px;
  text-align: center;
}
#secondary .widget_calendar tr td {
  padding: 8px !important;
  background: #eee;
  margin: 4px;
  text-align: center;
}
#secondary .widget_calendar #prev {
  text-align: left;
}
#secondary .widget_calendar #next {
  text-align: right;
}
#secondary h1.widget-title {
  font-size: 20px;
  font-weight: normal;
  border-bottom: solid 4px #89db52;
  background: #fafafa;
  padding: 5px;
  margin-top: 0px;
}
#secondary .widget_search form {
  padding: 10px 5px;
}
#secondary .widget_search input[type=submit] {
  display: inline-block;
}
#secondary .widget_search input[type=text] {
  display: block;
  width: 250px !important;
  position: relative;
  left: 30px;
}
#secondary select#cat {
  margin-bottom: 10px;
  margin-left: 10px;
}
#secondary .widget {
  background: #fafafa;
  border: solid 1px #eee;
  margin-top: 15px;
  padding-top: 0px;
}
#secondary .widget > div {
  padding: 7px;
}
/* 8. Pagination
-----------------------------------------------*/
.pagination {
  margin: 20px 0;
  width: 100%;
  margin-left: -20px;
  text-align: center;
  clear: both;
}
.pagination ul {
  list-style: none;
  display: inline-block;
  text-align: center;
  margin-bottom: 0;
}
.pagination ul > li {
  display: inline;
}
.pagination ul > li > a {
  color: #eeeeee;
  transition: all 0.4s ease;
}
.pagination ul > li > a .next {
  float: right;
}
.pagination ul > li > a:hover {
  color: #918f93;
  background: #eee;
}
.pagination .current {
  background: #88e04d;
}
.pagination ul  > li  > a,
.pagination ul  > li  > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: solid 1px #f1f1f1;
  border-left-width: 0;
  display: inline-block;
  color: #919191;
}
.pagination ul  > li:first-child  > a,
.pagination ul  > li:first-child  > span {
  border-left-width: 1px;
}
.pagination ul  > li:last-child  > a,
.pagination ul  > li:last-child  > span {
  border-rigth-width: 1px;
}
/* 9. Footer 
------------------------------------------------------- */
#colophon {
  background: #ffffff;
  padding: 10px;
  border-top: solid 1px #ddd;
  border-bottom: solid 4px #ddd;
  width: auto;
  margin-left: 0px;
  margin-right: 0px;
}
#footertext {
  float: right;
  text-align: right;
}
/* 9. HTML Markup & Formatting
--------------------------------------------------- */
article table {
  background: #f7f7f7;
}
article table td {
  padding: 5px;
  border: solid 1px #fff;
}
article table th {
  padding: 5px;
  background: #fff;
  border: solid 1px #fff;
}
/* 11. Widgets Style
---------------------------------------------------- */
.rp-item {
  display: block;
  clear: both;
  overflow: auto;
  margin-bottom: 5px;
  border-bottom: solid 1px #f7f7f7;
  padding-bottom: 5px;
}
.rp-item:before {
  content: none !important;
}
.rp-thumb {
  float: left;
  width: 64px;
  margin-right: -5px;
  margin-top: 3px;
}
.rp-thumb img {
  width: 48px;
  border: solid 2px #eee;
  border-radius: 2px;
}
.rp-thumb rp-title {
  clear: none;
}
.rp-thumb rp-title a {
  display: block;
}
/* 12. Comments
---------------------------------------------------------- */
#respond input[type=text] {
  max-width: 450px;
}
#comments ol.comment-list {
  list-style: none;
}
#comments li.comment {
  border: solid 1px #eee;
  padding: 10px;
  margin-top: 15px;
  list-style: none;
  background: #f9f9f9;
}
#comments .vcard img {
  border: solid 4px #ffffff;
  border-radius: 5px;
  margin: 0 10px 10px 0;
}
#comments .comment-metadata {
  font-weight: bold;
}
.fRight{float:right;}
.fLeft{float:left;}
.cBoth{clear:both;}
.pRight5{padding-right:5px;}
header nav li {
  display: inline-block;
  padding-right: 0.5em;
  padding-left: 0.5em; }
  #NZ_Logo {
    float: left;
    width: 120px;
    height: 48px;
    background: url("/static/start/view/img/helpsite/Header_logo.png"); }
	  #footer{height:80px;}
.pRelative{position:relative;top:-5px;}
.pRight10{padding-right:10px;}
div#lowmenu ul{margin-left:0px;}
div#lowmenu ul li {
    border-right: 1px solid #999999;
    color: #999999;
    display: inline-block;
    font-size: 13px;
    line-height: 90%;
    padding-left: 8px;
    padding-right: 10px;
	margin-top:15px;
	}
.tCenter{text-align:center;}
footer a:link {
    color: #999999;
    text-decoration: none;
    font-size: 12px;
}
footer > div {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 13px;
    font-weight: bold;
}
[class*="col-"]{background:none;border:none;padding:0.3em}
.nav>li>a{padding:5px 6px;}
 .navHeader{
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
    color: #646469;
    height: 55px;
    position: absolute;
    width: 100%;
    z-index: 999999;
	}
.row{margin:0px;}
.service{width:100%;
height:240px;padding:60px 0px;
border:2px solid #b1b1b4;text-align:center;
border-radius:5px;}
.servicelarge{width:100%;
height:160px;padding:30px 0px;
border:2px solid #b1b1b4;text-align:center;
border-radius:5px;}
.phone{width:100%;
height:240px;margin:0.48em;;
text-align:center;
border-radius:5px;}
.borderGrey{border:2px solid #b1b1b4;}
.G1 {
    color: #FF9E15;
    font-size: 26px;}
	.I {
    color: #646469;
    font-size: 14px;
    font-weight:bold;}
.Hh {
    color: #FF9E15;
    font-size: 18px;
}
.font16gold{ color: #FF9E15;
    font-size: 16px;}
.pTop5{padding-top:5px;}.pTop5{padding-top:5px;}
.blueButton{background:#32b1ca; color:#ffffff;font:18px;padding:5px;text-align:center;border-radius:5px;width:100%;}
.brownButton{background:#c35219; color:#ffffff;font:18px;padding:5px;text-align:center;border-radius:5px;width:100%;margin:10px 0px;}
.orangeButton{background:#FF9E19; color:#ffffff;font-size:24px;padding:5px;text-align:center;border-radius:5px;width:100%; height: 38px;line-height: 30px;box-shadow: none;}
.greenButton{background:#72A94E; color:#ffffff;font:18px;padding:5px;text-align:center;border-radius:5px;width:100%; height: 38px;line-height: 30px;}
.lightGreenButton{background:#B9D3A5; color:#ffffff;font:18px;padding:5px;text-align:center;border-radius:5px;width:100%;height: 38px;line-height: 30px;}
.nexabold20gold{ font-size:20px; font-weight:bold; color: #FF9E15;padding-bottom:5px;}
.nexabook14Gold{ font-size:14px; font-weight:bold; color: #FF9E15;padding-bottom:5px;}
.borderBottomGrey{border-bottom:2px solid #cccccc;}
.nexabold14blue{  font-size:14px;font-weight:bold;color: #004D71;padding-bottom:3px;}
.nexabook14cyan{  font-size:14px; color: #3ab0c8;}
.nexabook14Red{  font-size:14px; color: #e53c2e;}
.breadcrumbs{padding:10px 84px;}
.mRight10{margin-right:10px;}
.mBottom10{margin-bottom:10px;}
.inputTxt{height:32px !important;border-radius:3px;width:100%;border:1px solid #98D8E4 !important;}
.inputTxtBlk{height:32px !important;border-radius:3px;width:100%;border:1px solid #ccc !important;}
.txtArea{border:1px solid #98D8E4 !important;border-radius:3px;width:100%;}
.fWeightBold{font-weight:bold !important;}
.font11{font-size:11px !important;}
.spamBox{border:2px solid #e53c2e;padding:15px;}

.styled-select-large {
   overflow: hidden;
   }
.styled-select-large select {
   background: transparent;
   border: none;
   height: 30px;
   padding: 6px; /* If you add too much padding here, the options won't show in IE */
   width:350px;
}
.styled-select-large.slate {
    background: url("/static/start/view/img/helpsite/330x30_drop.png") no-repeat right center;
   height: 30px;
   border-radius:5px;
}

@media screen and (max-width: 480px) {
  li.comment {
    margin-left: -5%;
  }
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { 
.nav > li > a {
display:inline !important;
 padding: 5px !important;
}
.nav > li {
display:inline !important;
}
.topNav{
	color: #555555 !important;
    font-size: 1.2em !important;
    margin-right: 0em !important;
    margin-top: 0em !important;
}

#top-search {
    padding: 5em 0 0 1em !important;
}
#top-search input[type="text"] {
    background: none repeat scroll 0 0 #fff !important;
    border: 1px solid #999999 !important;
    color: #555555 !important;
    font-size: 22px !important;
    opacity: 0.8 !important;
    outline: medium none !important;
    position: relative !important;
    width: 14em !important;
}
#content {
    background: none repeat scroll 0 0 white;
    margin-left: 0;
    margin-right: 0;
    padding: 0px !important;
}
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { 
#top-search {
    padding: 5em 0 0 14em !important;
}
#top-search input[type="text"] {
    background: none repeat scroll 0 0 #fff !important;
    border: 1px solid #999999 !important;
    color: #555555 !important;
    font-size: 22px !important;
    opacity: 0.8 !important;
    outline: medium none !important;
    position: relative !important;
    width: 14em !important;
}
.topNav{
	color: #555555 !important;
    font-size: 1.2em !important;
    margin-right: 0em !important;
    margin-top: 0em !important;
}
}