/*
Theme Name:   Room 118 Solutions
Template:     boilerplate
Version:      1.0
*/

/**************************************************
 *  After changes, compress as style.min.css at:  *
 *  http://refresh-sf.com/yui/                    *
 **************************************************/


/*
  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/*
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/*
 * minimal base styles
 */


body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; }

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre {
  padding: 15px;

  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* colors for form validity */
/* Disable since we're using H5F and classes */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
    -moz-box-shadow: none;
 -webkit-box-shadow: none;
         box-shadow: none;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/*
 * Non-semantic helper classes
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden, .screen-reader-text { position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << j.mp/phayesclearfix */
.clearfix:after  { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author:
 */
html {
  background: #959595;
  background: -moz-linear-gradient(#959595, #8b8b8b);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#959595), to(#8b8b8b));
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  min-height: 100%;
}

  body {
    overflow: hidden;
  }

  .wrapper {
    margin: 0 auto;
    width: 900px;
  }

/** Header **/
header {
  background: #20201f;
  padding-top: 15px;
  padding-bottom: 5px;
}

  header h1 a {
    background-image: url(img/logo.png); /* No versioning as it will break DD_belatedPNG */
    background-size: 335px 115px;
    float: left;
    height: 115px;
    width: 335px;
  }

  header nav {
    float: right;
    font-size: 93%;
    margin-top: 40px;
  }

    header nav ul {
      margin: 0;
    }

      header nav li {
        border-right: 1px solid #181817;
        border-left: 1px solid #323231;
        float: left;
        height: 2.75em;
        line-height: 2.75em;
      }

        header nav li:first-child {
          border-left: none;
        }

        header nav li:last-child {
          border-right: none;
        }

        header nav a {
          color: #00afe8;
          font-weight: bold;
          margin: 0 19px;
          text-decoration: none;
        }

          header nav a:hover {
            border-bottom: 2px solid #fff;
            color: #fff;
          }

          header nav .current_page_item a {
            border-bottom: 2px solid #fff;
            color: #fff;
          }

/** Footer **/
body > footer {
  border-top: 1px solid #b2b2b2;
  -moz-box-shadow: 0 -1px 0 #959595;
  -webkit-box-shadow: 0 -1px 0 #959595;
  box-shadow: 0 -1px 0 #959595;
  color: #555;
  font-size: 85%;
  line-height: 16px;
  padding: 20px 0;
}

  body > footer ul {
    float: left;
    list-style: none;
    margin-left: 0;
    width: 314px;
  }

    body > footer .nav li {
      margin-bottom: 0.25em;
    }

    body > footer .social li {
      margin-bottom: 0.75em;
    }

      body > footer a {
        color: #555;
        vertical-align: bottom;
      }

        body > footer a:hover {
          color: #fff;
          text-decoration: none;
        }

        footer .social a:before {
          background: url(img/social.png) no-repeat;
          content: '';
          display: inline-block;
          height: 16px;
          margin-right: 4px;
          width: 16px;
          vertical-align: middle;
        }

          footer li.twitter a:before { background-position: -16px top; }
          footer li.facebook a:before { background-position: left top; }
          footer li.github a:before { background-position: -32px top; }
          footer li.rss a:before { background-position: -48px top; }

            footer li.twitter a:hover:before { background-position: -16px -16px; }
            footer li.facebook a:hover:before { background-position: left -16px; }
            footer li.github a:hover:before { background-position: -32px -16px; }
            footer li.rss a:hover:before { background-position: -48px -16px; }

  body > footer p {
    float: right;
  }

/** Banner **/
#banner {
  background: #0094cb url(img/clouds-bg.jpg?v=1) repeat-x top center;
  border-top: 1px solid #03bfe8;
  color: #fff;
  height: 47px;
  padding-top: 40px;
  -moz-animation: moving-clouds 50s linear infinite;
  -webkit-animation: moving-clouds 50s linear infinite;
}

@-moz-keyframes moving-clouds {
  from { background-position: 0 0; }
  to { background-position: -1200px 0; }
}

@-webkit-keyframes moving-clouds {
  from { background-position: 0 0; }
  to { background-position: -1200px 0; }
}

  .home #banner {
    height: 220px;
    padding-top: 50px;
  }

  #banner .wrapper {
    height: 100%;
    padding-right: 450px;
    position: relative;
    width: 450px;
  }

    #banner h2 {
      font-size: 262%;
      margin-bottom: 0.5em;
      text-shadow: #005375 0 1px 0;
    }

    #banner p {
      font-size: 123.1%;
      font-weight: bold;
      line-height: 1.6;
      text-shadow: #005375 0 1px 0;
    }

      #banner a {
        color: #fff;
      }

    #hand {
      background: url(img/hand.png) no-repeat;
      bottom: 0;
      height: 148px;
      position: absolute;
      right: 0;
      width: 202px;
    }

    #plane {
      background: url(img/paper-plane.png) no-repeat; /* No versioning as it will break DD_belatedPNG */
      bottom: 194px;
      height: 87px;
      position: absolute;
      right: 244px;
      width: 143px;

      -moz-transition-property: right, margin-bottom, -moz-transform, bottom;
      -moz-transition-duration: 1.75s, 0.35s, 1.25s, 1.75s;
      -moz-transition-timing-function: ease-out, linear, linear, ease-in;
      -o-transition-property: right, margin-bottom, -moz-transform, bottom;
      -o-transition-duration: 1.75s, 0.35s, 1.25s, 1.75s;
      -o-transition-timing-function: ease-out, linear, linear, ease-in;
      -webkit-transition-property: right, margin-bottom, -webkit-transform, bottom;
      -webkit-transition-duration: 1.75s, 0.35s, 1.25s, 1.75s;
      -webkit-transition-timing-function: ease-out, linear, linear, ease-in;
    }

      #plane.no-anim {
        -moz-transition: opacity 0.5s linear;
        -o-transition: opacity 0.5s linear;
        -webkit-transition: opacity 0.5s linear;
      }

      #plane.tease {
        -moz-animation: shake-horizontal 0.5s 0.25s linear infinite alternate,
                        shake-vertical 0.4s 0.2s linear infinite alternate;
        -webkit-animation:  shake-horizontal 0.5s 0.25s linear infinite alternate,
                            shake-vertical 0.4s 0.2s linear infinite alternate;
      }

@-moz-keyframes shake-horizontal {
  from { right: 244px; }
  to { right: 249px; }
}

@-moz-keyframes shake-vertical {
  from { bottom: 194px; }
  to { bottom: 199px; }
}

@-webkit-keyframes shake-horizontal {
  from { right: 244px; }
  to { right: 249px; }
}

@-webkit-keyframes shake-vertical {
  from { bottom: 194px; }
  to { bottom: 199px; }
}

/** Technology Bar **/
#technology {
  background: #cfcfcf;
  background: -moz-linear-gradient(#d5d5d5, #ccc);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#d5d5d5), to(#ccc));
  border-top: 1px solid #efefef;
}

  #technology ul {
    text-align: center;
  }

    #technology li {
      background: url(img/tech-sprite.png) no-repeat top center; /* No versioning as it will break DD_belatedPNG */
      display: inline-block;
      height: 66px;
      margin: 0 9px;
    }

      .ie6 #technology li,
      .ie7 #technology li {
        float: left;
        margin: 0 10px;
      }

      #technology .jquery {
        background-position: 50% 0;
        width: 82px;
      }

      #technology .php {
        background-position: 50% -66px;
        width: 53px;
      }

      #technology .ruby {
        background-position: 50% -132px;
        width: 79px;
      }

      #technology .ci {
        background-position: 50% -198px;
        width: 55px;
      }

      #technology .ror {
        background-position: 50% -264px;
        width: 32px;
      }

      #technology .mysql {
        background-position: 50% -330px;
        width: 86px;
      }

      #technology .cakephp {
        background-position: 50% -396px;
        width: 54px;
      }

      #technology .kohana {
        background-position: 50% -462px;
        width: 74px;
      }

      #technology .wp {
        background-position: 50% -528px;
        width: 43px;
      }

      #technology .postgres {
        background-position: 50% -594px;
        width: 119px;
      }

/** Main Content **/
#main {
  background: #fff;
  background: -moz-linear-gradient(#e7e7e7, #fff 145px, #fff);
  background: #fff -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7e7), color-stop(0.25, #fff), to(#fff));
  border-top: 1px solid #fff;
  padding: 40px 0;
}

  .home #main {
    background: #fff -webkit-gradient(linear, 0 0, 0 100%, from(#e7e7e7), color-stop(0.5, #fff), to(#fff));
  }

  .no-cssgradients #main {
    background-image: url(img/main-gradient-bg.png); /* No versioning as it will break DD_belatedPNG */
    background-position: top center;
    background-repeat: repeat-x;
  }

  #main section {
    border-right: 1px solid #fff;
    -moz-box-shadow: 1px 0 0 #ccc;
    -webkit-box-shadow: 1px 0 0 #ccc;
    box-shadow: 1px 0 0 #ccc;
    float: left;
    padding-right: 22px;
    width: 585px;
  }

    .no-boxshadow #main section {
      border-right: 1px solid #ccc;
    }

    #main h3 {
      color: #333;
      font-size: 153.9%;
      font-weight: normal;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    #main p {
      color: #666;
      font-size: 93%;
      line-height: 1.6;
      margin-bottom: 1em;
    }

    #main a {
      color: #00a1e3;
      text-decoration: none;
    }

      #main a:hover {
        text-decoration: underline;
      }

/** Sidebar **/
aside {
  float: right;
  width: 272px;
}

  aside h4 {
    color: #333;
    font-size: 138.5%;
    margin-bottom: 25px;
  }

    aside h4:not(:first-child) {
      margin-top: 40px;
    }

  #map {
    background: url(img/map.png) no-repeat; /* No versioning as it will break DD_belatedPNG */
    height: 130px;
    margin-top: 40px;
  }

/** Testimonial Block **/
.testimonial {
  margin-bottom: 30px;
}

  .testimonial p {
    color: #333 !important;
  }

  .testimonial .client {
    color: #666 !important;
  }

    .testimonial .client strong {
      display: block;
    }

/** Home **/
.home #main ul {
  list-style: none;
}

  .home #main li {
    border-left: 1px solid #ccc;
    border-right: 1px solid #fff;
    float: left;
    padding: 0 20px;
    width: 272px;
  }

    .home #main li:first-child {
      border-left: none;
      padding-left: 0;
    }

    .home #main li:last-child {
      border-right: none;
      padding-right: 0;
    }

    .home #main h3 {
      font-weight: bold;
    }

/** About Us - Person block **/
.person {
  margin: 25px 0 40px;
}

  .person:last-child {
    margin-bottom: 0;
  }

  .person img {
    background: #fff;
    border: 1px solid #e5e5e5;
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    float: left;
    padding: 5px;
  }

  .person .copy {
    margin-left: 180px;
  }

    .person h4 {
      color: #333;
      font-size: 138.5%;
      margin-bottom: 0.75em;
    }
    /*
    .person h5 {
      font-size: 108%;
      font-style: italic;
      font-weight: normal;
      line-height: 1.43;
      margin-bottom: 1em;
    }
    */
/** Our Work - Project block **/
.project {
  margin-bottom: 35px;
}

  .project:last-child {
    margin-bottom: 0;
  }

  .project img {
    background: #fff;
    border: 1px solid #e5e5e5;
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    float: left;
    padding: 5px;
  }

  .project .copy {
    margin-left: 180px;
  }

    .project h4 {
      color: #333;
      font-size: 138.5%;
    }

/** Form **/
form ul {
  list-style: none;
  margin-left: 0;
}

  form li {
    margin: 1em 0;
  }

    form label {
      color: #333;
      display: block;
      font-size: 108%;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      border: 1px solid #ccc;
      padding: 7px;
    }

      input[type="text"]:focus,
      input[type="email"]:focus,
      input[type="tel"]:focus,
      textarea:focus {
        border: 1px solid #00afe8;
        outline: none;
      }

    form textarea {
      height: 180px;
    }

    form small {
      color: #666;
    }

    form.wpcf7-form input[type="text"],
    form.wpcf7-form input[type="email"],
    form.wpcf7-form input[type="tel"],
    form.wpcf7-form textarea {
      display: block;
      font-size: 138.5%;
      width: 570px;
    }

    form.wpcf7-form input[type="submit"] {
      background: #989898;
      background: -moz-linear-gradient(#989898, #717171);
      background: -webkit-gradient(linear, 0 0, 0 100%, from(#989898), to(#717171));
      border: 1px solid #bfbfbf;
      -moz-border-radius: 7px;
      -webkit-border-radius: 7px;
      border-radius: 7px;
      -moz-box-shadow: 0 -1px 0 #717171;
      -webkit-box-shadow: 0 -1px 0 #717171;
      box-shadow: 0 -1px 0 #717171;
      color: #fff;
      cursor: pointer;
      font-size: 123.1%;
      padding: 17px 27px;
    }

      form.wpcf7-form input[type="submit"]:hover {
        background: #717171;
        background: -moz-linear-gradient(#717171, #989898);
        background: -webkit-gradient(linear, 0 0, 0 100%, from(#717171), to(#989898));
      }

abbr.req {
  border-bottom: none;
  color: #bd141a;
}

p.error {
  color: #f00 !important;
  font-size: 123.1% !important;
}

/** Form validation **/
input.required, textarea.required,
input.error, textarea.error {
    -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input.required,
.no-boxshadow input.error,
.no-boxshadow textarea.required,
.no-boxshadow textarea.error { background-color: #f0dddd; }

/** Blog **/
.post {
  margin-bottom: 25px;
}

  .post + .post {
    border-top: 1px dotted #ccc;
    padding-top: 25px;
  }

  #main .post h3 {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .post .entry-meta {
    color: #888;
    font-size: 85%;
    margin-bottom: 1.5em;
  }

  .post .entry-content h1,
  .post .entry-content h2 {
    margin: 1.5em 0 0.5em;
  }

    .post .entry-content h1 { font-size: 138.5%; }
    .post .entry-content h2 { font-size: 123.1%; }

  .post blockquote {
    background: #efefef;
    font-style: italic;
    margin: 1em 3em;
    overflow: hidden;
    padding: 2em;
    position: relative;
  }

    .post blockquote :last-child {
      margin-bottom: 0 !important;
    }

#searchform input[type="text"] {
  width: 200px;
}

.entry-utility {
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  color: #888;
  font-size: 85%;
  padding: 1.5em 0;
}

#entry-author-info {
  border-bottom: 1px dotted #ccc;
  font-size: 85%;
  padding: 1.5em 0;
}

  #entry-author-info img {
    float: left;
  }

  #entry-author-info .copy {
    margin-left: 75px;
  }

    #entry-author-info h4 {
      color: #444;
      margin-bottom: 0.5em;
    }

    #entry-author-info p {
      color: #888;
      font-size: 100%;
    }

.author #entry-author-info {
  background: #efefef;
  border-bottom: none;
  margin: 0 auto 25px;
  padding: 1.5em;
  width: 90%;
}

.archive #main h1,
.page-title {
  border-bottom: 1px dotted #ccc;
  border-top: 1px dotted #ccc;
  font-size: 182%;
  margin-bottom: 25px;
  padding: 0.5em 0;
  text-align: center;
}

#nav-above {
  margin-bottom: 1em;
}

.navigation .nav-previous {
  float: right;
}

.navigation .nav-next {
  float: left;
}

img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
}

/** Mobile **/
/*@media screen and (max-width: 480px) {*/
@media screen and (max-width: 920px) {
  html {
    -ms-text-size-adust: none;
    -webkit-text-size-adjust: none;
  }

  .wrapper {
    font-size: 93%;
    width: 100%;
  }

  header h1 a {
    background-image: url(img/logo-small.png);
    background-size: 300px 103px;
    display: block;
    float: none;
    height: 103px;
    margin: 0 auto;
    width: 300px;
  }

  header nav {
    float: none;
    margin-top: 5px;
  }

    header nav ul {
      text-align: center;
    }

      header nav li {
        display: inline;
        float: none;
      }

        header nav a {
          margin: 0 6px;
        }

  body > footer {
    padding: 10px 0;
  }

    body > footer ul {
      float: none;
      margin-bottom: 10px;
      text-align: center;
    }

      body > footer li {
        display: inline;
        margin: 0 6px;
        white-space: nowrap;
      }

    body > footer p {
      float: none;
      text-align: center;
    }

  #banner {
    background-image: url(img/clouds-bg-small.jpg?v=1);
    background-position: bottom center;
    height: auto;
    padding: 10px;
    -webkit-animation: none;
  }

    .home #banner {
      height: auto;
      padding: 10px;
    }

    #banner .wrapper {
      padding: 0;
      width: auto;
    }

      #banner h2 {
        margin: 0;
      }

        .home #banner h2 {
          margin-bottom: 0.5em;
        }

    #hand, #plane {
      display: none;
    }

  #technology {
    display: none;
  }

  #main {
    padding: 20px 10px;
  }

    #main section {
      border-right: none;
      -moz-box-shadow: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      float: none;
      padding-right: 0;
      width: auto;
    }

    aside {
      display: none;
    }

    .home #main li {
      border: none;
      float: none;
      padding: 0;
      width: auto;
    }

    .person img, .project img {
      float: left;
      height: 85px;
      margin-right: 10px;
      padding: 3px;
      width: 81px;
    }

    .person .copy, .project .copy {
      margin-left: 0;
    }

    form textarea {
      height: 100px;
    }

    form.wpcf7-form input[type="text"],
    form.wpcf7-form textarea {
      width: 95%;
    }

    .post img {
      max-width: 100%;
    }
}

/** Print **/
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }

  a, a:visited { color: #444 !important; text-decoration: underline; }

  a:after { content: " (" attr(href) ")"; }

  abbr:after { content: " (" attr(title) ")"; }

  .ir a:after { content: ""; }  /* Don't show links for images */

  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }

  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */

  tr, img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

  h2, h3{ page-break-after: avoid; }
}
