/* =============================================================================
   HTML & Body standards
   ========================================================================== */

html,
body {
  height: 100%;
  margin: 0;
  min-width: 980px;
  padding: 0;
  position: relative;
  width: 100%;
}

.desktop-website body {
  background: #4F4F50;
}

.no-js body,
.browser-not-supported body {
  background: #FFF;
  color: #000;
}

.loading body{
  background: url('/img/spinner.gif') center center no-repeat #FFF;
}
.loading body #desktop-website {
  display: none;
}

body {
  font-family: 'Asap', sans-serif;
}

.center-container {
/*  background: url('/img/grid.png');*/
  margin: 0 auto;
  width: 980px;
}


/* =============================================================================
   Fonts defaults
   ========================================================================== */

a,
a:link,
a:hover,
a:active,
a:visited {
  outline: none !important;
}

p a,
p a:link,
p a:hover,
p a:active,
p a:visited {
  color: #426B92;
}

p a:hover {
  text-decoration: none;
}

pre, code {
  font-size: 14px;
  line-height: 24px;
}

.strike {
  text-decoration: line-through;
}


/* =============================================================================
   Form defaults
   ========================================================================== */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

fieldset > div,
fieldset > p {
  margin: 12px 0;
}

form .textarea {
  padding-left: 134px;
}

input,
textarea {
  border-radius: 6px;
  width: 402px;
}

input[disabled],
textarea[disabled] {
  background: #EDEEEE;
}

input.error,
textarea.error {
  border-color: red;
}

label {
  display: inline-block;
  padding-right: 10px;
  width: 120px;
  text-align: right;
}

label.horizontal {
  display: block;
  padding: 0;
  margin: 8px 0 4px 0;
  width: auto;
  text-align: left;
}

form .info.error {
  color: red;
}

form .buttons {
  text-align: right;
}


/* =============================================================================
   Button defaults
   ========================================================================== */

.button {
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  line-height: 32px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none;
}

.button a,
.button a:link,
.button a:active,
.button a:hover,
.button a:visited {
  color: inherit;
  text-decoration: inherit;
}

.button.blue,
.button.blue:link,
.button.blue:visited {
  background: #426B92;
  color: #FFF;
}

.button.blue:hover {
  background: #395F85;
}

.button.blue:focus {
  background: #2F4F6E;
  box-shadow: 0 0 3px #1F3448;
}

.button.blue:active {
  background: #34577A;
}

.button.white,
.button.white:link,
.button.white:visited {
  background: #FFF;
  color: #426B92;
}

.button.white:hover {
  background: rgba(255, 255, 255, 0.85);
}

.button.white:active {
  background: rgba(255, 255, 255, 0.70);
}

.button.gray,
.button.gray:link,
.button.gray:visited {
  background: #EDEEEE;
  color: #6F6F6F;
}

.button.gray:hover {
  background: #E8E8E8;
}

.button.gray:focus {
  background: #DDD;
  box-shadow: 0 0 3px #A0A0A0;
}

.button.gray:active {
  background: #DCDCDC;
}


/* =============================================================================
   Misc defaults
   ========================================================================== */

.rounded-box {
  border-radius: 6px;
  overflow: hidden;
  padding: 16px 20px;
}

.hidden {
  display: none !important;
}


/* =============================================================================
   No script
   ========================================================================== */

.js noscript {
  display: none;
}

.no-js noscript {
  background: url('/img/nodejitsu-small.png') center center no-repeat;
  display: block;
  margin: 100px auto;
  padding-bottom: 108px;
  text-align: center;
  width: 420px;
}


/* =============================================================================
   Overlay
   ========================================================================== */

.overlay {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.overlay-outer-wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.overlay-outer-wrapper.absolute {
  display: block;
}

.overlay-inner-wrapper {
  display: table-cell;
  height: inherit;
  text-align: center;
  vertical-align: middle;
}

.absolute .overlay-inner-wrapper {
  display: block;
  height: auto;
  margin: 0 auto;
  position: absolute;
  width: auto;
}


/* =============================================================================
   Dialogs
   ========================================================================== */

.dialog {
  background: #FFF;
  display: inline-block;
  text-align: left;
}

.dialog h6 {
  font-size: 24px;
}


/* =============================================================================
   Dialog forms
   ========================================================================== */

.dialog fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.dialog fieldset label {
  display: inline-block;
  width: auto;
}

.dialog fieldset input,
.dialog fieldset textarea {
  border-radius: 6px;
  width: 358px;
}

.dialog p {
  margin: 0;
}

.dialog .info {
  margin-top: 4px;
}

.dialog .info.ok {
  color: green;
}

.dialog .info.error {
  color: red;
}

.dialog .buttons {
  text-align: right;
}


/* =============================================================================
   Not supported
   ========================================================================== */

#browser-not-supported-dialog {
  width: 400px;
}

#browser-not-supported-dialog p {
  margin-bottom: 24px;
}

#browser-not-supported-dialog ul,
#browser-not-supported-dialog ul li {
  list-style: none;
  padding: 0;
  text-align: center;
}

#browser-not-supported-dialog ul li a,
#browser-not-supported-dialog ul li a:link,
#browser-not-supported-dialog ul li a:active,
#browser-not-supported-dialog ul li a:visited,
#browser-not-supported-dialog ul li a:hover {
  background: url('/img/browser-logos.png') no-repeat;
  color: #426B92;
  display: inline-block;
  margin: 0 10px;
  padding-top: 72px;
  width: 72px;
}

#browser-not-supported-dialog ul li a:hover {
  text-decoration: none;
}

#browser-not-supported-dialog ul li #chrome-link {
  background-position: left top;
}

#browser-not-supported-dialog ul li #ff-link {
  background-position: -72px top;
}

#browser-not-supported-dialog ul li #opera-link {
  background-position: -144px top;
}

#browser-not-supported-dialog ul li #safari-link {
  background-position: -212px top;
}


/* =============================================================================
   User sign up dialogs
   ========================================================================== */

.dialog h6 .step {
  float: right;
  font-size: 15px;
}

#user-sign-up-step-1,
#user-sign-up-step-2,
#user-sign-up-step-3,
#user-sign-up-processing,
#user-sign-up-success {
  width: 370px;
}

#user-sign-up-step-1 label,
#user-sign-up-step-2 label {
  display: inline-block;
  width: auto;
}

#user-sign-up-step-1 input {
  width: 270px;
}

#user-sign-up-step-1 .info {
  padding-left: 92px;
}

#user-sign-up-step-1 .info.processing {
  background: url('/img/arrow-spinner.gif') 90px center no-repeat;
  padding-left: 110px;
}

#user-sign-up-step-2 input {
  width: 298px;
}

#user-sign-up-step-2 .info {
  padding-left: 65px;
}

#user-sign-up-step-2 .suggested em {
  color: #426B92;
  cursor: pointer;
  text-decoration: underline;
}

#user-sign-up-step-2 .suggested em:hover {
  text-decoration: none;
}

#user-sign-up-processing .info {
  margin-bottom: 24px;
}

#user-sign-up-processing .info.processing {
  background: url('/img/arrow-spinner.gif') left center no-repeat;
  padding-left: 20px;
}

#user-sign-up-success p {
  margin-bottom: 24px;
}


/* =============================================================================
   Websites
   ========================================================================== */

#desktop-website {
  overflow: hidden;
}

.no-js #desktop-website,
.no-js #mobile-website {
  display: none;
}


/* =============================================================================
   Menu
   ========================================================================== */

#menu {
  background: #FFF;
  line-height: 96px;
  white-space: nowrap;
}

#menu .center-container {
  text-align: center;
  white-space: nowrap;
}

#menu a,
#menu a:link,
#menu a:visited {
  color: #333;
  margin-right: 5px;
  text-decoration: none;
}

#menu a.active {
  background: #F6F6F6;
}

#menu a:hover {
  background: #E8E8E8;
}

#menu a:active {
  background: #E2E2E2;
}

#menu a:last-child {
  margin-right: 0;
}

/* =============================================================================
   Home header
   ========================================================================== */

#home {
  background: url('/img/header.png') center top no-repeat #FFF;
}

#home header {
  height: 336px;
}

#home nav {
  height: 72px;
  line-height: 72px;
  text-align: right;
}

#home hgroup {
  float: right;
  margin: 24px 50px 0 0;
}

#home hgroup h1 {
  background: url('/img/logotype.png') center top no-repeat;
  height: 96px;
  margin: 0;
  width: 430px;
}

#home hgroup h1 span {
  left: -99999px;
  position: absolute;
}

#home hgroup h2 {
  font-size: 28px;
  font-weight: normal;
  line-height: 36px;
  padding-left: 10px;
  width: 420px;
  margin-bottom: 36px;
}


/* =============================================================================
   Home block defaults
   ========================================================================== */

#home {
  overflow: hidden;
  min-width: 980px;
}

#home > .center-container {
  background: url('/img/limited-beta-ribbon.png') 501px 335px no-repeat;
  overflow: hidden;
}

#home aside {
  float: left;
  width: 220px;
}

#home aside a,
#home aside a:link,
#home aside a:visited {
  background-color: #EDEEEE;
  color: #333;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

#home aside a:hover,
#home aside a:active {
  background-color: #E8E8E8;
}

#home aside a article h4 {
  color: #426B92;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
}

#home aside a article p {
  margin-bottom: 3px;
}

#home aside a article strong {
  background: url('/img/text-arrow.png') right top no-repeat;
  padding-right: 10px;
}

#home .content {
  overflow: hidden;
}

#home .content article {
  background: #426B92;
  color: #FFF;
  float: left;
  height: 208px;
  margin-left: 10px;
  width: 330px;
}

#home .content article.testimonial {
  height: auto;
  width: 360px;
  padding-right: 0;
  margin-left: 0;
  background: none;
  color: #333;
}

#home .content .testimonial blockquote {
  margin-top: 50px;
  padding-bottom: 20px;
  font-size: 17px;
  font-style: italic;
  line-height: 23px;
}

#home .content .testimonial:last-child {
  padding: 16px 25px 16px 35px;
  width: 320px;
}

#home .content .testimonial:last-child blockquote {
  padding-bottom: 66px;
}

#home .content .testimonial a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}

#home .content .testimonial a:hover,
#home .content .testimonial a:focus,
#home .content .testimonial a:active {
  opacity: .9;
}

#home .content article * {
  margin: 0;
}

#home .content article h3 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 8px;
}

#home .content article ul {
  padding: 0;
  text-align: center;
}

#home .content article ul li {
  display: inline;
  margin: 0 3px 0 0;
}

#home .content article ul li a,
#home .content article ul li a:link,
#home .content article ul li a:visited {
  background: url('/img/text-arrow.png') 5px -22px no-repeat rgba(255,255,255, 0.15);
  color: #FFF;
  line-height: 24px;
  padding-left: 18px;
  text-decoration: none;
}

#home .content article ul li a:hover {
  background-color: rgba(255,255,255, 0.215);
}

/* =============================================================================
   PaaS block
   ========================================================================== */

#home .paas {
  position: relative;
}

#home .paas #paas-ribbon {
  background: url('/img/limited-beta-ribbon.png') no-repeat;
  height: 100px;
  position: absolute;
  right: -1px;
  width: 100px;
  top: -1px;
}

#home .paas #paas-ribbon span {
  left: -99999px;
  position: absolute;
}

#home .paas p {
  margin-right: 40px;
}

#home .paas p.try {
  margin: 0;
  text-align: center;
}

#home .paas p.try .button {
  font-size: 18px;
  line-height: 36px;
  margin: 28px auto 32px auto;
}

#home .enterprise p {
  margin-bottom: 24px;
}


/* =============================================================================
   Content & Scroller
   ========================================================================== */

#content {
  background: #FFF;
  overflow: hidden;
  position: relative;
  padding-bottom: 57px;
}

#scroller {
  width: 1000%;
  overflow: hidden;
}

/* =============================================================================
   Section defaults
   ========================================================================== */

#scroller section {
  width: 10%;
  min-width: 980px;
}

#scroller section .center-container {
  min-height: 24px;
  padding: 0 40px;
  position: relative;
  width: 900px;
}

#scroller section hgroup {
  margin-bottom: 60px;
  width: 880px;
}

#scroller section hgroup h1 {
  color: #426B92;
  font-size: 28px;
  margin-bottom: 12px;
}

#scroller section hgroup h2 {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
}

#scroller section nav {
  float: left;
  margin: -6px 40px 174px 0;
  width: 260px;
}

#scroller section nav > a,
#scroller section nav > a:link,
#scroller section nav > a:visited {
  background: url('/img/menu-arrow.png') -10px 14px no-repeat;
  border-bottom: 1px solid #D6D6D6;
  color: #426B92;
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: -1px;
  padding: 6px 0;
  text-decoration: none;
}

#scroller section nav > a:hover,
#scroller section nav > a:active,
#scroller section nav > a.active {
  background-position: left 14px;
  padding-left: 12px;
}

#scroller section .content {
  float: left;
  position: relative;
  width: 590px;
}

#scroller section .content h3 {
  font-size: 22px;
  margin-bottom: 0;
}

#scroller section .content h4 {
  font-size: 18px;
  margin: 24px 0 0 0;
}

#scroller section .content img {
  display: block;
}

#scroller section .content article {
  margin-bottom: 72px;
  opacity: 0;
  z-index: 0;
}

#scroller section .content article.active {
  opacity: 1;
  z-index: 1;
}


/* =============================================================================
   PaaS - How it works
   ========================================================================== */

#paas #paas-how-it-works div {
  width: 290px;
}

#paas #paas-how-it-works #io,
#paas #paas-how-it-works #dt {
  padding: 48px 0 48px 300px;
}

#paas #paas-how-it-works #dt {
  margin-top: -48px;
  background: url('/img/visuals/visual-1.png') left center no-repeat;
}

#paas #paas-how-it-works #io {
  background: url('/img/visuals/visual-2.png') left center no-repeat;
}

#paas #paas-how-it-works #ci {
  padding: 24px 300px 24px 0;
}

#paas #paas-how-it-works #ci {
  background: url('/img/visuals/visual-3.png') right center no-repeat;
}

#paas #paas-how-it-works #tl {
  width: auto;
}

#paas #paas-how-it-works p {
  margin: 0;
}


/* =============================================================================
   PaaS - Getting started
   ========================================================================== */

#paas #paas-getting-started img {
  margin-left: -55px;
}

#paas #paas-getting-started .code,
#paas #paas-getting-started .highlight,
#paas #paas-getting-started .command {
  background: #333;
  border-radius: 6px;
  color: #FFF;
  margin: -4px 70px 22px 0;
  padding: 16px 20px;
}

#paas #paas-getting-started .code,
#paas #paas-getting-started .highlight {
  background: #EDEEEE;
  color: #333;
}

/* =============================================================================
   PaaS - Dev tools
   ========================================================================== */

#paas #paas-tools #jitsu,
#paas #paas-tools #haibu {
  float: left;
  width: 290px;
}

#paas #paas-tools #haibu {
  margin-right: 10px;
}

#paas #paas-tools #jitsu > .rounded-box,
#paas #paas-tools #haibu > .rounded-box {
  background: #EDEEEE;
}

#paas #paas-tools #jitsu h4,
#paas #paas-tools #haibu h4 {
  margin: 0;
}

#paas #paas-tools #jitsu pre,
#paas #paas-tools #haibu pre {
  background: #333;
  color: #FFF;
  font-size: 14px;
  line-height: 36px;
  margin-bottom: 4px;
  padding: 0 15px;
}

#paas #paas-tools #jitsu a,
#paas #paas-tools #haibu a {
  color: #426B92;
  display: block;
  margin: 12px 0;
  width: 100%;
  text-align: center;
}

#paas #paas-tools #jitsu a:hover,
#paas #paas-tools #haibu a:hover {
  text-decoration: none;
}


/* =============================================================================
   PaaS - Features
   ========================================================================== */

#paas #paas-features .table-outer-container {
  background: #EDEEEE;
  margin-bottom: 48px;
}

#paas #paas-features table {
  border-top: 1px solid #D6D6D6;
  margin: -5px 0 10px 0; /* TODO: bottom 8px after fix last row */
  width: 550px;
}

#paas #paas-features table tr {
  border-bottom: 1px solid #D6D6D6;
  line-height: 35px;
  margin-top: -1px;
}

#paas #paas-features table tbody tr th,
#paas #paas-features table tbody tr td {
  color: #426B92;
}

#paas #paas-features table thead tr th {
  text-align: center;
}

#paas #paas-features table tbody tr th {
  width: 180px;
}

#paas #paas-features table tbody tr td {
  text-align: center;
}

#paas #paas-features table .node,
#paas #paas-features table .mc,
#paas #paas-features table .cc {
  padding: 0 10px;
}

#paas #paas-features table .mc {
  padding-left: 15px;
}

#paas #paas-features table tbody tr th a,
#paas #paas-features table tbody tr th a:link {
  color: #426B92;
  text-decoration: none;
}

/* =============================================================================
   PaaS - Pricing
   ========================================================================== */

#paas #paas-pricing .notice,
#paas #paas-pricing-warning {
  border: 1px solid #d6d6d6;
  padding: 10px 15px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #fff;
}

#paas #paas-pricing-warning {
  margin-bottom: 30px;
  background: #fcfcd7;
  border: 1px solid #ddd96f;
}

#paas #paas-pricing .notice p,
#paas #paas-pricing-warning p {
  margin: 0;
  padding: 0 0 0 15px;
  background: url(../img/pricing-icons.png) no-repeat 0 5px;
}

#paas #paas-pricing-warning p {
  padding: 0 0 0 22px;
  background-position: 0 -237px;
}

#paas #paas-pricing #paas-pricing-sandbox {
  padding: 20px 25px 0 20px;
  margin: 40px 0;
  background: #edeeee;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: auto;
}

#paas #paas-pricing #paas-pricing-sandbox h4 {
  margin: 0;
}

#paas #paas-pricing #paas-pricing-sandbox p {
  float: left;
  max-width: 320px;
}

#paas #paas-pricing #paas-pricing-sandbox .button {
  float: right;  
  margin-top: 5px;
}

#scroller section#paas nav#subnav {
  width: 100%;
  float: none;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #e6e6e6;
}

#paas #subnav ul {
    overflow: auto;
    padding-left: 0;
}

#paas #subnav li {
    float: left;
    margin-right: 40px;
}

#paas #subnav a,
#paas #subnav a:active,
#paas #subnav a:focus {
  color: #000;
  font-weight: bold;
}

#paas #subnav a:active,
#paas #subnav a:hover {
  background: #e2e2e2;
}

#paas #subnav a:first-child {
  margin-left: 0;
}

#paas h3 {
  padding-bottom: 15px;
}

#paas .features {
  overflow: auto;
}

#paas .features h4 {
  padding-bottom: 20px;
}

#paas .features ul {
  min-width: 200px;
  float: left; 
  padding-left: 40px;
}

#paas .features ul:first-of-type {
  padding-left: 0;
}

#paas .features ul li {
  padding: 0 0 0 25px;
  list-style-type: none;
  background: url(../img/pricing-icons.png) no-repeat 0 -31px;
}

#paas .plans-container {
  background: #edeeee;
  padding: 0 20px;
  margin: 30px 0 20px 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

#paas .plans-container h3 {
  padding: 0;
}

#scroller #paas .plans-container h4 {
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  color: #426b92;
  border-bottom: 1px solid #cdcdcd;
}

#paas .plans-container h4 span {
  color: #7598b8;
  font-size: 11px;
  text-transform: uppercase;
}

#paas .plan p {
  font-weight: bold;
  padding-left:20px;
  background: url(../img/pricing-icons.png) no-repeat 0 -194px;
}

#paas .plan .button {
  margin-left: 15px;
}
#paas .plans-container .plan.large {
  width: 145px;
}
#paas .plans-container .plan:last-child {
  padding-right: 0;
  border: none;
}

#paas .plans-container .plan {
  width: 100px;
  position: relative;
  padding: 20px 15px;
  float: left;
  border-right: 1px solid #cdcdcd;
}

#paas .plan .popular {
  position: absolute;
  top: -9px;
  right: 10px;
  padding: 0 0 0 13px;
  color: #fff;
  font-size: 11px;
  line-height: 19px;
  font-weight: bold;
  text-transform: uppercase;
  height: 19px;
  width: 91px;
  background: url(../img/popular-ico.png) no-repeat;
}

#paas .plans-container .plan:first-child {
  padding-left: 0;
}

#paas .plans-container .plan.popular {
  background: #e2e3e3;
}

#paas #paas-pricing-individual {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cdcdcd;
}

#paas #paas-pricing-businesses .plans-container {
  margin-top: 50px;
}

/* =============================================================================
   FAQ
   ========================================================================== */

#paas #paas-faq .poweredby {
  margin-bottom: 16px;
}

#paas #paas-faq p {
  margin-bottom: 35px;
}

/* =============================================================================
   Enterprise
   ========================================================================== */

#scroller #enterprise nav {
/*  margin-bottom: 270px;*/
}

#enterprise #enterprise-quote,
#enterprise #enterprise-quote:link,
#enterprise #enterprise-quote:visited {
  background: #EDEEEE;
  border: none;
  color: #333;
  display: block;
  margin: 24px 0 10px 0;
  padding: 16px 20px;
  text-decoration: none;
}

#enterprise #enterprise-quote:hover,
#enterprise #enterprise-quote:active {
  background: #E8E8E8;
}

#enterprise #enterprise-quote h6 {
  color: #426B92;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
}

#enterprise #enterprise-quote p {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 3px;
}

#enterprise #enterprise-quote span {
  background: url('/img/text-arrow.png') right top no-repeat;
  padding-right: 12px;
}


/* =============================================================================
   Enterprise - Intro
   ========================================================================== */

#enterprise #enterprise-intro #software,
#enterprise #enterprise-intro #support-services {
  float: left;
  width: 290px;
}

#enterprise #enterprise-intro #software {
  margin-right: 10px;
}

#enterprise #enterprise-intro #software > .rounded-box,
#enterprise #enterprise-intro #support-services > .rounded-box {
  background: #EDEEEE;
  height: 196px;

}

#enterprise #enterprise-intro #software h4,
#enterprise #enterprise-intro #support-services h4 {
  margin: 0;
}


/* =============================================================================
   Enterprise - Products
   ========================================================================== */

#enterprise #enterprise-products > div {
  margin-bottom: 10px;
}

#enterprise #enterprise-products > div > .rounded-box {
  background-color: #EDEEEE;
  padding-left: 250px;
}

#enterprise #enterprise-products .description {
  width: 50%;
  float: right;
}

#enterprise #enterprise-products > div h4 {
  margin: 0;
}

#enterprise #enterprise-products > div p {
  margin-bottom: 24px;
}

#enterprise #enterprise-products .conservatory {
  background: url('/img/products/conservatory.png') 40px center no-repeat;
  height: 246px;
}

#enterprise #enterprise-products .orchestrion {
  background: url('/img/products/orchestrion.png') 40px center no-repeat;
  height: 246px;
}

#enterprise #enterprise-products .web {
  background: url('/img/products/web.png') 40px center no-repeat;
  height: 246px;
}

#enterprise #enterprise-products .jitsu {
  padding-left: 20px !important;
}


/* =============================================================================
   Open source
   ========================================================================== */

#scroller #open-source .content {
  width: 100%;
}

#open-source .rounded-box {
  background-color: #EDEEEE;
}

#open-source #open-source-nodejitsu,
#open-source #open-source-flatiron {
  float: left;
  width: 445px;
}

#open-source #open-source-nodejitsu {
  margin-right: 10px;
}

#open-source #open-source-nodejitsu .rounded-box {
  height: 404px;
}

#open-source #open-source-flatiron,
#open-source #open-source-github {
  float: right;
}

#open-source #open-source-github {
  margin-top: 24px;
  padding: 0 20px;
  width: 405px;
}

#open-source h3,
#open-source h4 {
  margin: 0;
}

#open-source a,
#open-source a:link,
#open-source a:active,
#open-source a:visited {
  color: #426B92;
}

#open-source a:hover {
  text-decoration: none;
}

.nodejitsu-logo {
  background: url('/img/nodejitsu.png') center center no-repeat;
  display: block;
  height: 125px;
  width: 100%;
}

.flatiron-logo {
  background: url('/img/flatiron.png') center center no-repeat;
  display: block;
  height: 140px;
  width: 100%;
}

.github-logo {
  background: url('/img/github.jpg') center top no-repeat;
  display: block;
  float: left;
  height: 60px;
  margin-right: 10px;
  width: 60px;
}


/* =============================================================================
   Support
   ========================================================================== */

#scroller #support .content {
  width: 100%;
}

#support #support-irc,
#support #support-github,
#support #support-assistly {
  float: left;
  width: 293px;
}

#support #support-irc,
#support #support-github {
  margin-right: 10px;
}

#support #support-assistly {
  margin-right: 0;
}

#support #support-irc .rounded-box,
#support #support-github .rounded-box,
#support #support-assistly .rounded-box {
  background: #EDEEEE;
  height: 250px;
}


/* =============================================================================
   Company - Team
   ========================================================================== */

#company-team ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#company-team ul li {
  overflow: hidden;
  padding: 0;
  margin: 0 0 35px 0;
  border-bottom: 1px solid #D6D6D6;
  min-height: 215px;
}

#company-team ul li .img {
  display: block;
  float: left;
  height: 126px;
  margin: 0px 15px 0 0;
  width: 126px;
}

#company-team ul li .img img {
  border-radius: 0.25em;
  display: block;
  height: inherit;
  width: inherit;
  z-index: 0;
}

#company-team ul li div {
  line-height: 36px;
}

#company-team ul li div .twitter,
#company-team ul li div .github {
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
}

#company-team ul li p {
  padding: 0;
  margin: 0 0 20px 141px;
}

#scroller section .content #company-team h4 {
  margin: 0 0 15px 0;
}

#company-team ul li h4 {
  color: #3d3d3d;
}

#company-team div {
  position: absolute;
  margin-top: 6em;
}

#company-team .button {
  display: block;
  margin: 0 0 5px 0;
  width: 102px;
}

/* =============================================================================
   Company - Contact
   ========================================================================== */

#company-contact form,
#contact-form-thank {
  background: #EDEEEE;
}

#contact-form-thank p {
  margin-bottom: 0;
}

#contact-form-info {
  display: inline-block;
  line-height: 32px;
  float: left;
  padding-left: 135px;
}

#contact-form-info.processing {
  background: url('/img/arrow-spinner-gray-bg.gif') 135px center no-repeat #EDEEEE;
  padding-left: 155px;
}

#contact-form-info.error {
  color: red;
}


#company-contact form.processing .buttons {
  opacity: 0.5;
}

#company-contact form .info {
  margin-top: 4px;
  padding-left: 140px;
}

#company-contact form .textarea .info {
  padding-left: 8px;
}


/* =============================================================================
   Jobs
   ========================================================================== */

#jobs-content h3 > span:last-child {
  font-weight: normal;
  font-size: 18px;
}


/* =============================================================================
   Partners
   ========================================================================== */

.joyent-logo,
.nodefirm-logo,
.iris-couch-logo {
  float: left;
  height: 100px;
  margin-right: 10px;
  width: 100px;
}

.joyent-logo span,
.nodefirm-logo span,
.iris-couch-logo span {
  display: none;
}

.nodefirm-logo {
  background: url('/img/nodefirm.png') center center no-repeat;
}

.joyent-logo {
  background: url('/img/joyent.jpg') center center no-repeat;
}


.iris-couch-logo {
  background: url('/img/iris-couch-logo.png') center center no-repeat;
}


/* =============================================================================
   Footer
   ========================================================================== */

#top-footer {
  background: #E2E2E3;
  overflow: hidden;
  padding: 24px 0;
}

#bottom-footer {
  background: #4F4F50;
  height: 168px;
  padding-top: 48px;
}


/* =============================================================================
   Footer - Site map
   ========================================================================== */

#bottom-footer .center-container {
  overflow: hidden;
}

#bottom-footer nav {
  padding: 0 14px;
}

#bottom-footer nav ul,
#bottom-footer nav ul li {
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  overflow: hidden;
  padding: 0;
}

#bottom-footer nav > ul > li {
  display: block;
  float: left;
  padding-right: 20px;
  width: 110px;
}

#bottom-footer nav > ul > li > span,
#bottom-footer nav > ul > li > a,
#bottom-footer nav > ul > li > a:link,
#bottom-footer nav > ul > li > a:active,
#bottom-footer nav > ul > li > a:visited {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

#bottom-footer nav > ul > li > a:hover {
  color: rgba(255, 255, 255, 0.8);
}

#bottom-footer .legal {
  background: url('/img/nodejitsu-small.png') right 40px no-repeat;
  color: rgba(255, 255, 255, 0.6);
  float: right;
  padding: 72px 0 0 0;
  width: 220px;
}

#bottom-footer .legal > a {
  text-transform: none !important;
}

#bottom-footer a,
#bottom-footer a:link,
#bottom-footer a:active,
#bottom-footer a:visited {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

#bottom-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* =============================================================================
   Footer - Sign up elements
   ========================================================================== */

#sign-up-paas {
  margin: 0 auto 0 160px;
  width: 560px;
}

#sign-up-paas h6 {
  float: left;
  font-size: 28px;
  font-weight: normal;
  line-height: 36px;
  margin: 0 30px 12px 0;
  width: 150px;
}

#sign-up-paas p {
  float: left;
  margin-bottom: 12px;
  width: 320px;
}

#sign-up-paas a {
  margin-left: 180px;
}


/* =============================================================================
   Tweaks no custom fonts
   ========================================================================== */

.fonts-error #menu a {
  margin-right: 0;
  padding: 0 10px;
}

.fonts-error #sign-up-paas {
  margin: 0 auto 0 150px;
}

.fonts-error #sign-up-paas h6 {
  margin: 0 30px 12px 0;
  width: 160px;
}

.fonts-error #sign-up-paas p {
  width: 300px;
}

.fonts-error #sign-up-paas a {
  margin-left: 190px;
}

.fonts-error #bottom-footer nav {
  padding: 0 20px;
}

.fonts-error #bottom-footer nav > ul > li {
  padding-right: 20px;
  width: 120px;
}

.fonts-error #bottom-footer .legal {
  width: 220px;
}


/* =============================================================================
   Transitions
   ========================================================================== */

.absolute .overlay-inner-wrapper {
  transition: top 0.3s ease;
  -moz-transition: top 0.3s ease;
  -webkit-transition: top 0.3s ease;
}

#desktop-website {
  position: relative;
}

#home {
  transition: margin 0.65s ease;
  -moz-transition: margin 0.65s ease;
  -webkit-transition: margin 0.65s ease;
}

.paas #home,
.enterprise #home,
.open-source #home,
.support #home,
.company #home,
.jobs #home,
.joyent #home,
.page-not-found #home {
  margin-top: -800px;
}

#content {
  transition: height 0.65s ease;
  -moz-transition: height 0.65s ease;
  -webkit-transition: height 0.65s ease;
}

.home #content {
  height: 0;
}

#top-footer {
}

.paas #top-footer {
  height: 116px;
  padding: 24px 0;
}

#scroller section .content {
  transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -webkit-transition: height 0.35s ease;
}

#scroller section .content article {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
}

#scroller section nav > a {
  transition-property: padding, background;
  transition-duration: 0.1s, 0.1s;
  transition-timing-function: ease, ease;
  -moz-transition-property: padding, background;
  -moz-transition-duration: 0.1s, 0.1s;
  -moz-transition-timing-function: ease, ease;
  -webkit-transition-property: padding, background;
  -webkit-transition-duration: 0.1s, 0.1s;
  -webkit-transition-timing-function: ease, ease;
}

.absolute .overlay-inner-wrapper.no-transitions,
.no-transitions #scroller section nav > a,
.no-transitions #home,
.no-transitions #content,
.no-transitions #scroller,
.no-transitions #scroller section .content,
.no-transitions #scroller section .content article,
.no-transitions #top-footer {
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}


/* =============================================================================
   Websites
   ========================================================================== */

html.mobile-website,
.mobile-website body {
  min-width: 100%;
}

#mobile-website {
  background: url('/img/header.png') -250px 20px no-repeat #FFF;
  padding: 48px 20px 48px 20px;
}

#mobile-website header h1 {
  background: url('/img/logotype-small.png') left center no-repeat;
  height: 48px;
  margin: 0;
  width: 100%;
}

#mobile-website header h1 span {
  display: none;
}

#mobile-website header h2 {
  font-weight: normal;
  max-width: 400px;
}

#mobile-website .no-support.rounded-box {
  background-color: #FFFCEA;
  color: #8B8980;
  font-size: 13px;
  padding: 8px 10px;
}

#mobile-website .rounded-box {
  background: #426B92;
  color: #FFF;
  margin-bottom: 24px;
}

#mobile-website .rounded-box h3 {
  margin-bottom: 12px;
}

#mobile-website .rounded-box p {
  margin-bottom: 0;
}











/* =============================================================================
   Joyent
   ========================================================================== */

#joyent-call-to-action {
  background-image: url('/img/joyent-announcement-logo.png');
  background-position: 20px 18px;
  background-repeat: no-repeat;
  padding-top: 48px;
}

#joyent-call-to-action h4 {
  display: none;
}

#joyent-intro {
  width: 900px;
}

#joyent-intro .left {
  float: left;
  margin-right: 20px;
  /*width: 400px;*/
}

#joyent-lp-logo {
  background: url('/img/joyent-lp-logo.png') left center no-repeat;
  height: 48px;
  margin-bottom: 12px;
  width: 500px;
}

#joyent-intro ul {
  color: #FE763A;
  padding-left: 18px;
  text-align: left;
}

#joyent-intro ul li span {
  color: #313131;
}

#joyent-intro .right {
  float: left;
  width: 480px;
}

#joyent-intro .right p {
  background: url('/img/joyent-lp-clouds.png') 120px 24px no-repeat;
  padding: 120px 0 48px 0;
  text-align: center;
}

#joyent-sign-up {
  background: #F26621;
  color: #FFF;
  display: inline-block;
  font-size: 22px;
  font-weight: normal;
  line-height: 40px;
  padding: 0 18px;
}

#joyent-sign-up:hover {
  background: #E4601E;
}

.joyent-sign-up .buttons {
/*  background: url('/img/powered-by-joyent-logo.png') left center no-repeat;*/
}