  
  article, section, aside, nav, header, hgroup, footer {
    display: block;
    max-width: 100%; /* fix the weird overflowing horizontal scroll bar */
  }
  
  body {
    font: 14px/18px Arial, Helvetica, sans-serif;
    margin: 0;
    border-top: solid 5px #2e85ea;
    border-bottom: solid 5px #2e85ea;
  }
  
  a {
    -webkit-transition: color linear .2s;
    -moz-transition: color linear .2s;
    -o-transition: color linear .2s;
    color: #06d;
    border-radius: 3px;
  }
  
    a:hover {
      color: #04b;
      text-decoration: none;
      background-color: #ffe97e;
    }
  
    a:active {
      color: #cc9;
      background-color: #ffe;
    }
  
  a img { border: none; }
  
  a.button {
    padding: 4px 10px;
    color: White;
    background-color: #04b;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#06d), to(#04b));
    background-image: -moz-linear-gradient(top, #06d, #04b);
    border: solid 1px #33c;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,1);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,1);
    box-shadow: 0 1px 1px rgba(0,0,0,1);
    font-weight: bold;
    text-shadow: 0 -1px 1px #003;
    text-decoration: none;
  }
  
    a.button:hover,
    a.button.hover
    {
      color: #ffe97e;
    }
      
      a.button:active
      {
        -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.3);
        -moz-box-shadow: inset 0 2px 2px rgba(0,0,0,.3);
        box-shadow: inset 0 2px 2px rgba(0,0,0,.3);
        background-color: #06d;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#04b), to(#06d));
        background-image: -moz-linear-gradient(top, #04b, #06d);
        border-color: #448;
      }
  
  #canvas {
    width: 960px;
    margin: 40px auto 0 auto;
  }
  
  nav {
    border-bottom: solid 1px #eee;
    background-color: rgba(255,255,255,.6);
  }
  
    .ie.lt-ie9 nav {
      background-color: #fff;
    }
  
    nav ul {
      list-style: none;
      margin: 0 auto; padding: 10px;
      width: 970px;
    }
  
    nav li {
      display: inline;
      margin: 0 20px 0 0;
    }
  
    nav a {
      color: #68a;
      padding: 2px 4px;
      border-radius: 4px;
      text-decoration: none;
      -webkit-transition: linear color, background-color .2s;
      -moz-transition: linear color, background-color .2s;
      -o-transition: linear color, background-color .2s;
    }
  
      nav a:hover, nav a.selected {
        color: #456;
        text-decoration: none;
        background-color: #ffe97e;
      }
  
      nav a:active {
        color: #cc9;
        background-color: #ffe;
      }
  
      #logo a {
        font: bold 22px/16px Kreon, Arial, Helvetica, sans-serif;
        vertical-align: text-bottom;
        text-decoration: none;
        color: #333;
        background-color: #fe9;
        padding: 0 4px;
        -webkit-text-stroke: #222 .1px;
      }
  
        .ie.lt-ie9 #logo a {
          vertical-align: bottom;
        }
  
        #logo a:hover {
          background-color: #fff6c9;
          color: #960;
        }
  
        #logo a span.glyph {
          color: #dcbe2f;
          font-size: 18px;
        }
  
    #signin {
      float: right;
      margin: 0 0 0 20px;
    }
      
      #signin a {
        font-weight: bold;
        color: #333;
        background-color: #fe9;
        text-decoration: none;
      }
  
        #signin a:hover {
          background-color: #fff6c9;
          color: #960;
        }
  
  #pricing a {
    font-weight: bold;
    color: #333;
  }
  
  header {
    margin: 0 auto;
    width: 960px;
  }
  
    #title {
      text-align: center;
      margin-top: 40px;
    }
    
      #title h1 {
        font: bold 42px Kreon, Arial, Helvetica, sans-serif;
        text-shadow: 0 2px 2px rgba(0,0,0,0.2);
        padding: 8px 0;
        -webkit-mask-image: -webkit-gradient(linear, left top, left bottom,
          from(rgba(92,92,92,.4)), to(rgba(0,0,0,1)));
      }
    
  div.inpage-nav {
    text-align: center;
    margin: 0 0 20px 0;
  }
  
  span.flow {
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    font-style: italic;
  }
  
  section h1, section h2 {
    font-size: 28px;
    font-family: Kreon, Arial, Helvetica, sans-serif;
    border-bottom: solid 1px #ddd;
    /*text-shadow: 0 -1px -1px white, 0 2px 2px rgba(0,0,0,0.2);*/
    text-shadow: 0 0 1px rgba(0,0,0,.00001);
    color: #333;
    font-weight: bold;
    line-height: 1px;
    margin: 0 0 40px 0;
    text-align: center;
  }
    
    section h1 span, section h2 span {
      background-color: #ffe97e;
      border-radius: 5px;
      -moz-border-radius: 5px;
      padding: 2px 7px;
      -webkit-text-stroke-width: 0.3px;
      -webkit-text-stroke-color: #222;
    }
  
      /* dirty hack to fix padding on macs */
      .mac section h1 span, .mac section h2 span { padding-top: 9px; }
  
    section table caption h1 {
      font-size: 24px;
    }
  
  section.column {
    width: 450px;
    float: left;
  }
  
    section.column h1 { margin-top: 0; }  
    section.column h2 { line-height: 24px; font-size: 18px; }
    section.column h2 + p { margin-top: 0; }
  
    section.column p, section.column li {
      color: #222;
    }
  
    section.column li {
      margin: 0 0 7px 0;
      width: 90%;
    }
    
  section.clear { clear: both; }
  
  section.columns, section.separated {
    clear: both;
    border-top: solid 2px #eee;
    padding: 50px 0 0 0;
  }
  
    section.columns header {
      clear: both;
    }
  
    section.right {
      width: 450px;
      float: right;
    }
  
  section.tour-sheet {
    width: 100%;
    clear: both;
    padding-top: 30px;
  }
  
    section.tour-sheet header {
      margin: 0 0 40px 0;
    }
    
      section.tour-sheet h2 {
        text-align: center;
        margin: 0 0 60px 0;
        font-size: 32px;
      }
  
      section.tour-sheet h3 {
        font-weight: bold;
        font-size: 18px;
        margin: 0;
      }
  
      section.tour-sheet header p {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        width: 600px;
        margin-left: auto; margin-right: auto;
      }
  
    section.tour-sheet > ol {
      margin: 0; padding: 0;
      list-style: none;
    }
  
      section.tour-sheet > ol > li {
        margin: 0 0 40px 0; padding: 0 0 40px 0;
        border-bottom: solid 2px #ddd;
        text-align: center;
      }
  
        section.tour-sheet > ol > li:last-child {
          border-bottom: none;
        }
  
        section.tour-sheet > ol > li span.desc {
          display: block;
          margin: 4px 0 0 0;
          font-weight: normal;
          font-size: 14px;
          color: #777;
        }
  
  section.tour-sheet span.new {
    color: #c00;
    font-weight: bold;
  }
  
      section.tour-sheet > ol > li > img {
        width: 700px; height: 438px;
        margin: 10px 0 0 0;
        border: solid 1px #ccc;
        box-shadow: 0 5px 5px rgba(0,0,0,.2);
        -webkit-box-shadow: 0 5px 5px rgba(0,0,0,.2);
        -moz-box-shadow: 0 5px 5px rgba(0,0,0,.2);
      }
  
      section.tour-thumbnails > ol {
        width: 750px;
        margin: 0 auto;
        padding-left: 48px;
      }
  
      section.tour-thumbnails > ol > li {
        width: 220px; height: 380px;
        margin: 0 20px 40px 0;
        float: left;
        border: none;
      }
  
        #tour-abstract > ol > li, #tour-editor > ol > li { padding-bottom: 0; }
  
        section.tour-thumbnails > ol > li > img {
          width: 220px; height: 300px;
          margin: 0 0 20px 0;
          box-shadow: 0 4px 4px rgba(0,0,0,.2);
          -webkit-box-shadow: 0 4px 4px rgba(0,0,0,.2);
          -moz-box-shadow: 0 4px 4px rgba(0,0,0,.2);
        }
  
  #get-feedback {
    position: relative;
    height: 500px; width: 700px;
    list-style: none;
    margin: 40px auto 0 auto; padding: 0;
  }
  
    #get-feedback li {
      position: absolute;
      width: 200px; height: 200px;
      border: solid 1px #ccc;
      box-shadow: 0 5px 5px rgba(0,0,0,.2);
      -moz-box-shadow: 0 5px 5px rgba(0,0,0,.2);
      -webkit-box-shadow: 0 5px 5px rgba(0,0,0,.2);
    }
    
    #get-feedback .number {
      position: absolute;
      bottom: -5px; left: -10px;
      color: white;
      background-color: #c33;
      padding: 4px 8px;
      border-radius: 15px;
      -moz-border-radius: 15px;
      border: solid 3px #fff;
      box-shadow: 0 0 2px rgba(0,0,0,.2);
      -moz-box-shadow: 0 0 2px rgba(0,0,0,.2);
      -webkit-box-shadow: 0 0 2px rgba(0,0,0,.2);
    }
    
    #get-feedback .label {
      position: absolute;
      bottom: 0; left: 35px;
      display: none;
    }
    
    #get-feedback img { width: 200px; height: 200px; }
    
    #get-feedback-step1 { top: 0; left: 0; }  
    #get-feedback-step2 { top: 0; left: 250px; }
    #get-feedback-step3 { top: 0; left: 500px; }
    #get-feedback-step4 { top: 250px; left: 0; }
    #get-feedback-step5 { top: 250px; left: 250px; }
    #get-feedback-step6 { top: 250px; left: 500px; }
    
    #get-feedback-step6 {
      padding-top: 90px;
      height: 110px !important;
      border: solid 1px #ccc;
      text-align: center;
      vertical-align: middle;
    }
    
      #get-feedback-step6 .label {
        display: block;
        position: relative;
        font-size: 48px;
        left: 0;
        font-family: Kreon, Arial, Helvetica, sans-serif;
        font-weight: bold;
        text-shadow: 0 0 1px rgba(0,0,0,.0001);
      }
  
  section.tour-thumbnails#tour-flow li {
    height: 100px;
  }
  
  footer.start {
    clear: both;
    padding: 20px 40px 80px 40px;
    text-align: center;
  }

    footer.start a.button {
      padding: 12px 20px;
      font-size: 22px;
      display: inline-block;
      margin: 0 0 7px 0;
    }
  
    footer.start h3 { margin: 0 0 10px 0; }  
  
  body > footer {
    clear: both;
    padding: 10px; margin: 100px 0 0 0;
    text-align: center;
    color: #333;
    border-top: solid 1px #eee;
    font-size: 12px;
  }
  
    footer p { margin: 0; }  
  
    footer .pipes {
      color: #369;
    }
    
  section.plans-pricing {
    height: 420px;
    margin: 0 auto 0 auto;
    padding: 20px 0 0 0;
  }
  
  #plans-title {
    float: left;
    width: 250px;
    margin: 0 100px 0 0;
  }
  #plans-title h1, #plans-title h2 {
    background: none;
    line-height: 1em;
    border: none;
    text-align: left;
    margin-bottom: 20px;
  }
  #plans-title h1 {
    font-size: 24px;
  }
  #plans-title h2 {
    font-size: 28px;
  }
  
  section.plan {
    float: left;
    position: relative;
    width: 250px; height: 300px;
    text-align: center;
    padding: 0 10px 20px 10px;
    border: solid 2px #eee;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  
  #basic {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -moz-border-top-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-right: none;
  }
  #free, #premium {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    -moz-border-top-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
  }
  
    section.plan h2 {
      margin: 40px 0 30px 0;
      font: bold 28px Kreon, Arial, Helvetica, sans-serif;
      border: none;
    }
  
  section.plan h2 span {
    background: none;
    font-size: 16px;
    color: #c33;
  }
    
    section.plan h3 {
      margin-top: 4px;
      color: #c33;
    }
  
    section.plan ul.features li {
      color: #555;
    }
  
    section.plan ul {
      list-style: none;
      margin: 0; padding: 0;
    }
    
      section.plan ul.leading {
        font-size: 16px;
        margin: 0 0 15px 0;
        color: #555;
      }
  
        section.plan ul.leading li {
          margin: 0 0 3px 0;
        }
      
        section.plan ul.leading strong {
          color: #04b;
        }
  
        span.tick {
          color: Green;
        }
        
        section.plan ul.features li.unavailable {
          color: #aaa;
          text-decoration: line-through;
        }
    
    section.plan p.signup {
      position: absolute;
      bottom: 20px; left: 0;
      width: 100%;
      text-align: center;
    }
  
  section.recommended {
    position: relative;
    background: #eaf5ff;
  }
  
    #recommended {
      position: absolute;
      top: -3px; left: 0;
      text-align: center;
      width: 100%;
      background-color: #40973c;
      color: white;
      padding: 0;
      margin: 0;
      font-size: 12px;
      font-weight: bold;
    }
  
    section.recommended p {
      color: #000;
      font-size: 16px;
      line-height: 20px;
    }
  
      section.recommended ul.leading {
        font-size: 18px;
      }
    
        section.recommended ul.leading strong {
          color: #06d;
        }
  
      section.recommended ul.features li {
        color: #000;
      }
  
    section.recommended a.button {
      font-size: 18px;
      padding: 6px 15px;
    }
  
  #allplans-features {
    clear: both;
    padding-top: 20px;
    text-align: right;
    font-weight: bold;
    margin-right: 80px;
    color: #444;
  }
  
  #whatdoiget {
    border-top: none;
  }
  
    #whatdoiget h2, #plans-faq h2 {
      margin-bottom: 10px;
      text-align: left;
    }
  
    #whatdoiget em, #plans-faq em {
      font-style: normal;
      color: #04b;
    }
  
  #plans-faq, #plans-support {
    clear: both;
    padding-top: 40px;
    border-top: none;
  }
  
  #plans-support p {
    font-size: 18px;
    text-align: center;
  }
  
  p.clear { clear: both; }
  
  section.narrow {
    width: 700px;
    margin: 0 auto;
  }
  
  #youshould {
    text-align: center;
    font-size: 24px;
  }
  
  #process {
    margin: 50px auto 0 auto;
    width: 680px;
  }
  
  #process ol {
    list-style: none;
    margin: 0; padding: 0;
    height: 120px;
  }
  
    #process li {
      width: 120px; height: 120px;
      line-height: 120px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      float: left;
      margin: 0 15px 0 0;
      background-color: #eee;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ccc));
      background-image: -moz-linear-gradient(top, #eee, #ccc);
      border-radius: 5px;
      position: relative;
    }
    .mac #handcraft-goes-here { line-height: 145px; }
  
    #process li:last-child { margin: 0; }
  
  #process #design {
    background: #eee url(/media/bg-process.png) -680px -20px no-repeat;
  }
  
  #process #wireframing {
    background: #eee url(/media/bg-process.png) -200px -20px no-repeat;
  }
  
  #process #profit {
    background: #eee url(/media/bg-process.png) -450px -20px no-repeat;
  }
  
  #process #development {
    background: #eee url(/media/bg-process.png) -850px -20px no-repeat;
  }
  
  #process li img {
    position: absolute;
    bottom: -20px; right: -48px;
    z-index: 1999;
  }
  
  #handcraft-is {
    font: bold 16px Arial, Helvetica, sans-serif;
    width: 320px;
  }
  
  #process #handcraft-goes-here {
    font-size: 108px;
    color: #333;
    text-shadow: 0 0 1px rgba(0,0,0,.2);
    font-family: Kreon, Arial, Helvetica, sans-serif;
    background-color: #fe3;
    background-image: none;
  }
  
    #handcraft-goes-here span {
      display: block;
      position: absolute;
      top: -70px; right: -310px;
      line-height: 0;
      font: bold 28px Kreon, Arial, Helvetica, sans-serif;
      white-space: nowrap;
      line-height: 0;
      height: 75px;
      background: url(/media/handcraftgoeshere.png) top left no-repeat;
      width: 330px;
      text-align: right;
      padding-top: 10px;
    }
  
  #whatitdoes, #more {
    margin: 80px 0 0 0;
    border-top: none;
  }
  
  #whatitdoes section {
    margin-top: 60px;
  }
  
    #whatitdoes footer.start {
      padding-top: 50px;
    }
    
    #whatitdoes section h2 {
      line-height: 1px;
      text-align: center;
      margin-top: 20px;
    }
    
    #whatitdoes section h2 span {
      background-color: white;
      padding: 2px 10px;
    }
    
  #directives {
    list-style: none;
    margin: 20px 0; padding: 0;
  }
  
    #directives strong {
      font-size: 14px;
      color: #000;
    }
    
    #directives li {
      clear: both;
      margin: 0 0 10px 0;
      color: #555;
    }
  
      #directives li img {
        width: 100px;
        float: left;
        margin: 0 20px 20px 0;
      }
  
      #directives li.separator {
        text-align: center;
        font-size: 36px;
        color: #ccc;
        margin: 20px 0;
      }
  
  ul.reasons li {
    margin: 0 0 2px 0;
  }
  
  ul.reasons li strong {
    color: #000;
    background-color: #ffe97e;
  }
  
  #comparison {
    margin: 30px 0;
  }
  #comparison col { width: 50%; }
  #comparison td, #comparison th {
    vertical-align: top;
    padding: 10px;
    border-bottom: solid 1px #eee;
  }
  #comparison th:first-child, #comparison td:first-child {
    border-right: solid 2px #999;
    text-align: right;
  }
  #comparison th:last-child { text-align: left; }
  
  /* tweaks */
  .ios #logo a,
  .mac #logo a {
    padding-top: 4px;
  }

