@font-face {
    font-family: 'robotothin';
    src: url('font/roboto-thin-webfont.eot');
    src: url('font/roboto-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/roboto-thin-webfont.woff') format('woff'),
         url('font/roboto-thin-webfont.ttf') format('truetype'),
         url('font/roboto-thin-webfont.svg#robotothin') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('font/roboto-light-webfont.eot');
    src: url('font/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/roboto-light-webfont.woff') format('woff'),
         url('font/roboto-light-webfont.ttf') format('truetype'),
         url('font/roboto-light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;
}

.noscript-info {
    width: 30rem;
    position: relative;
    background: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
    margin: 0.5em auto;
    overflow: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}
.noscript-info:before {
    font-size: 21px;
    content: " X ";
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #b00000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #ff5656;
    left: 0;
    top: 0;
}
.noscript-info-inner {
    font-size: 14px;
    text-align: center;
    padding-left: 2em;
}
.noscript-info-inner p {
    margin: 0.2em;
}


body {
	background: #BBB;
    margin: 0;
    padding: 0;
    font-family: robotothin, Arial, Helvetica, sans-serif;
}
a         { color: #FFC591; text-decoration: none; }
a:HOVER   { color: #FFC591; }
a:VISITED { color: #FFC591; }
#logo {
    z-index: 100;
    position: fixed;
    top: 26px;
    right: 38px;
    cursor: pointer;
}

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 852px;
    
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
    
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}
@media screen and (max-width: 852px) {
  img.bg {
    left: 50%;
    margin-left: -426px;   /* 50% */
  }
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-aspect-ratio: 16/9) {
  .bg-video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .bg-video {
    width: 300%;
    left: -100%;
  }
}
#login-container {
    z-index: 100;
    position: fixed;
    top: 45%;
    left: 50%;
    width: 359px;
    height: 308px;
    color: #fff;
    margin-left: -180px;
    margin-top: -225px;
}
.login-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid white;
    background: #1d78d3; 
    opacity: 0.75;
    
    -webkit-box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
       -moz-box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
            box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
    
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
}
#spinner-underlay {
	z-index: 1000;
	display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white; 
    opacity: 0.65;
    border: 1px solid white;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
}
#spinner {
    z-index: 500;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
}
.login-controls {
    position: absolute;
    width: 262px;
    height: 238px;
    margin-top: 22px;
    margin-left: 51px;
}
#login-header {
    position: absolute;
    left: 0px;
    top: 10px;
    font-size: 32px;
    font-weight: bold;
}
.btn {
    background: none;
    border: 2px solid #fff;
    color: white;
    font-weight: bold;
    padding: 10px 16px;
    text-align: center;
    cursor: pointer;
    
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
            
    -webkit-transition: background-color 250ms linear, border 250ms linear;
       -moz-transition: background-color 250ms linear, border 250ms linear;
        -ms-transition: background-color 250ms linear, border 250ms linear;
         -o-transition: background-color 250ms linear, border 250ms linear;
            transition: background-color 250ms linear, border 250ms linear;
}
.btn:HOVER {
    color: #1864A9;
    background-color: white;
}
.main-btn {
	width: 74px;
}
input {
    display: block;
    outline: 0;
    font-size: 17px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid white;
    margin-top: 12px;
    color: #1864A9;
    width: 240px;
    height: 40px;
    background: white;
    
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
            
    -webkit-box-shadow: 1px 1px 3px #616161;
       -moz-box-shadow: 1px 1px 3px #616161;
            box-shadow: 1px 1px 3px #616161;
}
#login-pass-reset-link {
    position: absolute;
    right: 7px;
    bottom: -27px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: robotolight, Arial, sans-serif;
}
#login-pass-reset-link:HOVER {
    color: #FFC591;
}
#about-link {
    position: absolute;
    left: 11px;
    bottom: -27px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: robotolight, Arial, sans-serif;
}
#about-link:HOVER {
    color: #FFC591;
}
#more-link {
    position: absolute;
    right: 0;
    bottom: 28px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: robotolight, Arial, sans-serif;
}
#more-link:HOVER {
    color: #FFC591;
}
#login-email-input {
    position: absolute;
    top: 54px;
    left: 0;
}
#login-pass-input {
    position: absolute;
    top: 116px;
    left: 0;
}
#login-btn {
    position: absolute;
    bottom: 0;
    left: 0;
}
#login-feedback {
	display: none;
    position: absolute;
    bottom: 27px;
    color: #FFD6D6;
    font-size: 15px;
    width: 262px;
    margin-left: 51px;
    font-weight: bold;
}
#pass-reset-controls {
    display: none;
    position: absolute;
    top: 129px;
    left: 0;
}
#pass-reset-btn {
	display: inline-block;
}
#more-btn {
    background: none;
    border: 2px solid #ffd9b8;
    color: #ffddc0;
    position: absolute;
    right: 0;
    bottom: 0;
}
#more-btn:HOVER {
    color: #0051ab;
    background-color: #c6e7ff;
    border: 2px solid #c6e7ff;
}
#reset-feedback {
    color: #FFD6D6;
    font-size: 15px;
    width: 262px;
    font-weight: bold;
    margin-top: 15px;
}
#reset-confirmation {
	display: none;
    position: absolute;
    top: 129px;
    left: 0;
    color: white;
    font-size: 17px;
    font-weight: bold;
}

.sidemenu {
	position: fixed;
	right: 0;
	top: 100px;
	z-index: 9999;
}
.sidemenu-item {
	display: inline-block;
    height: 36px;
    background-color: #fff;
    margin-bottom: 12px;
    font-size: 15px;
    font-family: robotolight, Arial, sans-serif;
    cursor: pointer;
    border: 1px solid #f7f7f7;
    position: absolute;
    right: -300px;
    overflow: hidden;
    /**/
    border-radius: 3px;
}
.sidemenu-icon {
    display: inline-block;
    background-color: #4182d6;
    height: 100%;
    width: 40px;
    position: absolute;
    /**/
    border-radius: 3px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sidemenu-item:HOVER > .sidemenu-icon {
    background-color: #d67241;
}
.sidemenu-icon img {
    position: absolute;
}
.sidemenu-content {
    display: inline-block;
    position: absolute;
    top: 9px;
    left: 45px;
    padding: 0 14px 0 6px;
    color: #4e4e4e;
    white-space: nowrap;
}
#sidemenu-item-call  { top: 0px;   width: 217px; cursor: default; }
#sidemenu-item-trial { top: 50px;  width: 208px; }
#sidemenu-item-buy   { top: 100px; width: 237px; }

.sidemenu-icon-call  { top: 5px; left: 7px; }
.sidemenu-icon-trial { top: 4px; left: 7px; }
.sidemenu-icon-buy   { top: 5px; left: 6px; }

#buy-now-dialog {
    display: none;
    z-index: 100;
    position: fixed;
    top: 45%;
    left: 50%;
    width: 380px;
    height: 178px;
    color: #fff;
    margin-left: -180px;
    margin-top: -225px;
    font-family: robotolight, Arial, sans-serif;
    text-align: center;
}
.buy-now-dialog-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid white;
    background: #1d78d3; 
    opacity: 0.75;
    
    -webkit-box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
       -moz-box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
            box-shadow: 0px 7px 8px 2px rgba(0,0,0,0.3);
    
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
}
#buy-now-dialog p {
	position: absolute;
	color: white;
	font-size: 16px;
	padding: 0 34px;
}
.buy-now-p1 {
	left: 50px;
	top: 26px;
}
.buy-now-p2 {
	top: 69px;
}














