/* ==|== HelpLess - LESS Helpers Library (http://m6tt.github.com/HelpLess) = */
/* HelpLess
*
*  @What is it:
*  HelpLess is a Helper Library for the brilliant LESS dynamic stylesheet language.
*  Read more about LESS: http://lesscss.org/
*  
*  I have tried to make HelpLess as all-encompasing as possible with support for dynamic
*  grids and page starter themes as well as all the css3 features I could think of.
*  Unlike other libraries, HelpLess has an invisible footprint until you call a mixin 
*  so if you import HelpLess but don't use it, it will not increase your compiled file size
*  
*  @thanks: 
*  Eric Meyer for his html reset - http://meyerweb.com/eric/tools/css/reset/
*  Necolas for his normalize - https://github.com/necolas/normalize.css
*
*  @How to use:
*  Import helpless.x.x.x.less into your main style.less file. 
*
*  @Author: 
*  m6tt: m6tt.com
*
*  @Reference:
*  ------------------------------------------------------------------------------
*    BASICS                     =>    syntax
*  ------------------------------------------------------------------------------
*    - .reset                   =>    #hl.reset() - call outside of element
*    - .normalize               =>    #hl.normalize - call outside of element
*    - .clearfix                =>    #hl.clearfix()
*    - .centered                =>    #hl.centered(width)
*    - .border                  =>    #hl.border(color)
*    - .opacity                 =>    #hl.opacity(value)
*    - .round-all-corners       =>    #hl.round-all-corners(radius)
*    - .rounded-corners         =>    #hl.rounded-corners(topLeft, topRight, bottomRight, bottomLeft)
*    - .transition              =>    #hl.transition(property, duration, ease, delay)
*    - .drop-shadow             =>    #hl.drop-shadow(x, y, blur, color)
*    - .inner-shadow            =>    #hl.inner-shadow(x, y, blur, color)
*    - .text-shadow             =>    #hl.text-shadow(x, y, blur, color)
*    - .background-gradient     =>    #hl.background-gradient(colorFrom, colorTo, fallbackColor, fallbackImageUrl)
*    - .scale                   =>    #hl.scale(amount)
*    - .scaleX                  =>    #hl.scaleX(amount)
*    - .scaleY                  =>    #hl.scaleY(amount)
*    - .rotate                  =>    #hl.rotate(degrees)
*    - .rotateX                 =>    #hl.rotateX(degrees)
*    - .rotateY                 =>    #hl.rotateY(degrees)
*    - .skew                    =>    #hl.skew(angleX, angleY)
*    - .skewX                   =>    #hl.skewX(angleX)
*    - .skewY                   =>    #hl.skewY(angleY)
*    - .translate               =>    #hl.translate(x, y)
*    - .translateX              =>    #hl.translateX(x)
*    - .translateY              =>    #hl.translateY(y)
*    - .matrix                  =>    #hl.matrix(n, n, n, n, n, n)
*
*  ------------------------------------------------------------------------------
*    GRID                       =>    syntax
*  ------------------------------------------------------------------------------
*    - .grid                    =>    namespace, do not call directly, use .make or one of the predefined grid makers
*     - .make                   =>    #hl.grid.make(width, colNumber, gutterWidth)
*     - .1200                   =>    #hl.grid.1200();
*     - .1120                   =>    #hl.grid.1120();
*     - .1040                   =>    #hl.grid.1040();
*     - .960                    =>    #hl.grid.960();
*     - .880                    =>    #hl.grid.880();
*     - .800                    =>    #hl.grid.800();
*     - .720                    =>    #hl.grid.720();
*     - .640                    =>    #hl.grid.640();
*     - .560                    =>    #hl.grid.560();
*     - .480                    =>    #hl.grid.480();
*     - .400                    =>    #hl.grid.400();
*     - .320                    =>    #hl.grid.320();
*     - .240                    =>    #hl.grid.240();
*     - .row                    =>    #hl.grid.row();
*     - .col                    =>    #hl.grid.col(colSpan);
*
*  ---------------------------------------
*    TYPOGRAPHY
*  ---------------------------------------
*    - .typo                    =>    namespace, do not call directly
*     - .serif                  =>    #hl.typo.serif(webfont-name-optional);
*     - .sans                   =>    #hl.typo.sans(webfont-name-optional);
*     - .columns                =>    #hl.typo.columns(count, gap)
* 
*  ---------------------------------------
*    IMAGES
*  ---------------------------------------
*    - .img                     =>    namespace, do not call directly
*     - .responsive             =>    #hl.img.responsive();
*     - .framed                 =>    #hl.img.framed();

*  ---------------------------------------
*    USER INTERFACE
*  ---------------------------------------
*    - .ui                      =>    namespace, do not call directly
*     - .themes                 =>    namespace, do not call directly
*      - .light                 =>    #hl.ui.themes.light(); - call within <body> element
*      - .dark                  =>    #hl.ui.themes.dark(); - call within <body> element
*     - .list                   =>    namespace, do not call directly
*      - .subtle                =>    #hl.ui.list.subtle(); - call within <ul> element
*      - .horizontal            =>    #hl.ui.list.horizontal(); - call within <ul> element
*
*/
#hl {
  /************************************
  * Meyer Reset
  * http://meyerweb.com/eric/tools/css/reset/
  ************************************/

  /************************************
  * Normalize by necolas
  * https://github.com/necolas/normalize.css
  ************************************/

  /************************************
  * Clearfix
  *
  * what?: Contains floats, for more info see h5bp.com/q.
  *        Removes the need to add .clearfix as a class
  *        to your elements.
  *
  ************************************/

  /************************************
  * Centered
  *
  * @what?: Center your object with an
  *         automatic margin
  *
  * @params: width,      default = 960px
  *
  ************************************/

  /************************************
  * Border
  *
  * @what?: Add a 1px solid border
  *        super quick.
  *
  * @params: colour,      default = #000
  *
  ************************************/

  /************************************
  * Opacity
  *
  * @what?: Add opacity to an HTML element that works
  *         in all browsers including ie6+
  *
  * @params: value,      default = .5
  *
  ************************************/

  /************************************
  * Round all corners
  *
  * @what?: Rounds every corner equally
  *
  * @params: radius,      default = 5px
  *
  ************************************/

  /************************************
  * Rounded corners
  *
  * @what?: Round each corner individually
  *
  * @params: topLeft,     default = 5px
  *          topRight,    default = 5px
  *          bottomRight, default = 5px
  *          bottomLeft,  default = 5px
  *
  ************************************/

  /************************************
  * Transition
  *
  * @what?: Defines a CSS3 transition
  *
  * @params: property,    default = all
  *          duration,    default = .5s
  *          ease,        default = linear
  *          delay,       default = .0s
  *
  ************************************/

  /************************************
  * Drop shadow
  *
  * @what?: Adds an outer shadow to the
  *         html element. To add a shadow
  *         to text use #hl.text-shadow(...)
  *
  * @params: x,           default = 0px
  *          y,           default = 1px
  *          blur,        default = 1px
  *          colour,      default = rgba(0, 0, 0, .6)
  *
  ************************************/

  /************************************
  * Inner shadow
  *
  * @what: Adds an inner shadow to the
  *        html element.
  *
  * @params: x,           default = 0px
  *          y,           default = 1px
  *          blur,        default = 1px
  *          colour,      default = rgba(0, 0, 0, .6)
  *
  ************************************/

  /************************************
  * Text shadow
  *
  * @what?: Adds an outer shadow to text
  *
  * @params: x,           default = 1px
  *          y,           default = 1px
  *          blur,        default = 1px
  *          colour,      default = rgba(0, 0, 0, .6)
  *
  ************************************/

  /************************************
  * Background Gradient
  *
  * @what?: Adds a background gradient to
  *         an HTML element
  *
  * @params: colourFrom,       default = #bbb
  *          colourTo,         default = #f1f1f1
  *          fallbackColour,   default = #f1f1f1
  *          fallbackImageUrl, default = ''
  *
  ************************************/

  /************************************
  * Scale
  *
  * @what?: Defines a 2D scale transformation
  *
  * @params: amount,      default = 1
  *
  ************************************/

  /************************************
  * ScaleX
  *
  * @what?: Defines a scale transformation
  *         by giving a value for the X-axis
  *
  * @params: x,           default = 1
  *
  ************************************/

  /************************************
  * ScaleY
  *
  * @what?: Defines a scale transformation
  *         by giving a value for the Y-axis
  *
  * @params: y,           default = 1
  *
  ************************************/

  /************************************
  * Rotate
  *
  * @what?: Defines a 2D rotation, the angle
  *         is specified in the parameter
  *
  * @params: degrees,     default = 90deg
  *
  ************************************/

  /************************************
  * RotateX
  *
  * @what?: Defines a 3D rotation along the X-axis
  *
  * @params: degrees,     default = 90deg
  *
  ************************************/

  /************************************
  * RotateY
  *
  * @what?: Defines a 3D rotation along the Y-axis
  *
  * @params: degrees,     default = 90deg
  *
  ************************************/

  /************************************
  * Skew
  *
  * @what?: Defines a 2D skew transformation
  *         along the X- and the Y-axis
  *
  * @params: angleX,      default = 10deg
  *          angleY,      default = 10deg
  *
  ************************************/

  /************************************
  * SkewX
  *
  * @what?: Defines a 2D skew transformation
  *         along the X-axis
  *
  * @params: angleX,      default = 10deg
  *
  ************************************/

  /************************************
  * SkewY
  *
  * @what?: Defines a 2D skew transformation
  *         along the Y-axis
  *
  * @params: angleY,      default = 10deg
  *
  ************************************/

  /************************************
  * Translate
  *
  * @what?: Defines a 2D translation
  *
  * @params: x,           default = 10px
  *          y,           default = 10px
  *
  ************************************/

  /************************************
  * TranslateX
  *
  * @what?: Defines a translation, using
  *         only the value for the X-axis
  *
  * @params: x,           default = 10px
  *
  ************************************/

  /************************************
  * TranslateY
  *
  * @what?: Defines a translation, using
  *         only the value for the Y-axis
  *
  * @params: y,           default = 10px
  *
  ************************************/

  /************************************
  * Matrix
  *
  * @what?: Defines a 2D transformation,
  *         using a matrix of six values
  *
  * @params: n1,          default = 0
  *          n2,          default = 0
  *          n3,          default = 0
  *          n4,          default = 0
  *          n5,          default = 0
  *          n6,          default = 0
  *
  ************************************/

  /************************************
  * Grid
  ************************************/

  /***********************************
  * TYPOGRAPHY
  ***********************************/

  /***********************************
  * IMAGE
  ***********************************/

  /***********************************
  * UI 
  ***********************************/

}
#hl .grid {
  /************************************
    * Make
    *
    * @what?: Defines the base variables needed
    *         for the HelpLess grid system.
    *
    * @params: @width,      default = 960
    *          @colnum,     default = 16
    *          @colgutter,  default = 10
    *
    ************************************/

  /************************************
    * 1200
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 1120
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 1040
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 960
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 880
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 800
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 720
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 640
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 560
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 480
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 400
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 320
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * 240
    *
    * @what?: Predefined grid maker
    *
    ************************************/

  /************************************
    * Row
    *
    * @what?: Defines an element as a row.
    *         clears all clearfixes all columns
    *         directly inside.
    *
    ************************************/

  /************************************
    * Col
    *
    * @what?: Defines an element as a column.
    *         Sets the width depending on the
    *         supplied arguments and the width
    *         set in .grid()
    *
    * @params: @colSpan,  default = 1
    *
    ************************************/

}
#hl .typo {
  /************************************
    * Serif
    *
    * @what?: Quickly set your font family
    *         as a serif set
    *
    * @params: @webfont,  default = none
    *
    ************************************/

  /************************************
    * Serif
    *
    * @what?: Quickly set your font family
    *
    * @params: @webfont,  default = none
    *
    ************************************/

  /************************************
    * Columns
    *
    * @what?: Sets CSS3 columns within
    *         block of html text
    *
    * @params: count,       default = 1
    *          gap,         default = 10px
    *
    ************************************/

}
#hl .img {
  /************************************
    * Responsive
    *
    * @what?: Set image max-width: 100%
    *
    ************************************/

  /************************************
    * Framed
    *
    * @what?: Add a quick 10px frame to your image
    *
    ************************************/

}
#hl .ui {
  /***********************************
     * PREDEFINED THEMES
     ***********************************/

  /***********************************
     * LISTS
     ***********************************/

  /***********************************
     * FORMS
     ***********************************/

}
#hl .ui .themes {
  /***********************************
       * Theme: Light
       *
       * @what?: Quickly style the base elements
       *         of your page
       *
       ***********************************/

  /***********************************
       * Theme: Dark
       *
       * @what?: Quickly style the base elements
       *         of your page
       *
       ***********************************/

}
#hl .ui .list {
  /***********************************
       * Subtle
       *
       * @what?: Quickly removes the styling 
       *         from a list
       *
       ***********************************/

  /***********************************
       * Horizontal
       *
       * @what?: Creates a horizontal list, 
       *         useful for styling your site nav
       *
       ***********************************/

}
/* ==|== Import HTML5 ✰ Boilerplate LESS library =========================== */
/*
 * HTML5 ✰ Boilerplate - LESS
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * Converted to LESS by @m6tt: m6tt.com/less-boilerplate
 */
#blr {
  /* ==|== normalize ======================================== */

  /* ==|== non-semantic helper classes ======================================== */

  /* ==|== print styles ======================================================= */

}
/* Normalize */
/* =============================================================================
       HTML5 display definitions
       ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
       Base
       ========================================================================== */
/*
     * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
     * 2. Force vertical scrollbar in non-IE
     * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
     */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231;
}
body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */
::-moz-selection {
  background: #0abbcd;
  color: #555555;
  text-shadow: none;
}
::selection {
  background: #0abbcd;
  color: #555555;
  text-shadow: none;
}
/* =============================================================================
       Links
       ========================================================================== */
a {
  color: #0000ee;
}
a:visited {
  color: #551a8b;
}
a:hover {
  color: #0000ee;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
       Typography
       ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
       Lists
       ========================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
       Embedded content
       ========================================================================== */
/*
     * 1. Improve image quality when scaled in IE7: h5bp.com/d
     * 2. Remove the gap between images and borders on image containers: h5bp.com/e
     */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
     * Correct overflow not hidden in IE9
     */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
       Figures
       ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
       Forms
       ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
     * 1. Correct color not inheriting in IE6/7/8/9
     * 2. Correct alignment displayed oddly in IE6/7
     */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}
/*
     * 1. Correct font-size not inheriting in all browsers
     * 2. Remove margins in FF3/4 S5 Chrome
     * 3. Define consistent vertical alignment display in all browsers
     */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
     * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
     * 2. Correct inner spacing displayed oddly in IE6/7
     */
button,
input {
  line-height: normal;
  *overflow: visible;
}
/*
     * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
     */
table button,
table input {
  *overflow: auto;
}
/*
     * 1. Display hand cursor for clickable form elements
     * 2. Allow styling of clickable form elements in iOS
     */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
/*
     * Consistent box sizing and appearance
     */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
     * Remove inner padding and border in FF3/4: h5bp.com/l
     */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
     * 1. Remove default vertical scrollbar in IE6/7/8/9
     * 2. Allow only vertical resizing
     */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
       Tables
       ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* ==|== fonts =====================================================
   Less Elements from http://lesselements.com/
   ========================================================================== */
/* ==|== fonts =====================================================
   Author: Matthew Bishop (matt@airlocksoftware.com)
   ========================================================================== */
@font-face {
  font-family: 'luz-sans-bd';
  src: url('fonts/LUZHPHRO.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'luz-sans-med';
  src: url('fonts/LUZHPMRO.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'luz-sans-book';
  src: url('fonts/LUZHPORO.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'luz-sans-light';
  src: url('fonts/LUZHPLRO.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* ==|== primary styles =====================================================
   Author: Matthew Bishop (matt@airlocksoftware.com)
   ========================================================================== */
/* ==|== fonts ===================================================== */
.heavy {
  font-family: "luz-sans-bd", "Futura", Arial, sans-serif;
}
.medium {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
}
.book {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
}
.light {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
}
/* ==|== colors ===================================================== */
/* ==|== functions ===================================================== */
/* A three column layout with fixed-size left and right columns and flexible center column */
/* Two column layout with a fixed-size left column and flexible right column */
/* ==|== classes ===================================================== */
.center {
  margin: 0 auto;
}
.button {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.clear {
  clear: both;
}
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
}
/* ==|== dom ===================================================== */
body {
  background: url(../img/astronaut.png) right top no-repeat, url(../img/lunar-pattern.jpg) left top repeat;
  background-attachment: fixed, fixed, scroll;
  margin: 0;
  padding: 0;
}
a {
  color: #1c94cb;
}
a:visited {
  color: #07364c;
}
a:hover {
  color: #cb122a;
}
header {
  padding-left: 350px;
  padding-right: 350px;
  height: 180px;
}
header #status-container,
header #subtitle,
header #logo {
  position: relative;
  float: left;
}
header #logo {
  width: 350px;
  right: 350px;
  margin-left: -100%;
}
header #subtitle {
  width: 100%;
}
header #status-container {
  width: 350px;
  margin-right: -350px;
}
header #subtitle h2 {
  margin: 20px;
  margin-top: 60px;
}
header #logo {
  text-align: center;
  margin-top: 20px;
}
header h2 {
  color: #404040;
  font-size: 2.5em;
  text-align: center;
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
}
@media only screen and (max-width: 1060px) {
  header {
    padding: 0;
  }
  header #subtitle {
    float: none;
    display: none;
    width: 0;
  }
  header #logo {
    float: left;
    right: 0;
    margin-left: 0;
  }
  header #status-container {
    float: right;
    margin: 0;
  }
}
@media only screen and (max-width: 800px) {
  header #logo {
    float: none;
    width: 100%;
    text-align: center;
  }
  header #status-container {
    float: none;
    display: none;
  }
}
#status-box {
  font-size: 1.3em;
  margin-top: 30px;
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  background: url(../img/status-bg.png) center no-repeat;
  width: 234px;
  height: 110px;
}
#status-box img#bg-img {
  position: relative;
  width: 100%;
  /* for IE 6 */

}
#status-box div#label {
  position: relative;
  top: -110px;
  width: 199px;
  padding: 10px;
}
#status-box #contact-button {
  display: block;
  position: relative;
  top: -122px;
  width: 188px;
  height: 40px;
  margin: 10px;
  cursor: pointer;
  background-color: #8c8828;
}
#status-box #contact-button img,
#status-box #contact-button span {
  margin: 6px 0px 0px 13px	;
  display: inline-block;
  color: white;
  vertical-align: middle;
  font-size: 1.3em;
}
#status-box #contact-button:hover {
  background-color: #cb122a;
}
#status-box .bold {
  font-family: "luz-sans-bd", "Futura", Arial, sans-serif;
  color: #8c8828;
}
nav {
  z-index: 10;
  border-top-color: #7f1825;
  border-top-style: solid;
  border-top-width: 5px;
  border-bottom-color: #a6a6a6;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
  background-color: white;
  height: 60px;
  padding-left: 300px;
}
nav #nav-list,
nav #subtitle {
  position: relative;
  float: left;
}
nav #nav-list {
  width: 100%;
}
nav #subtitle {
  width: 300px;
  right: 300px;
  margin-left: -100%;
}
nav #nav-list {
  text-align: center;
}
nav #subtitle {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 2.2em;
  color: #404040;
  padding-top: 12px;
  text-align: right;
}
nav #subtitle img#nav-logo {
  display: none;
}
nav ul {
  display: inline-block;
}
nav li {
  float: left;
  list-style-type: none;
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  font-size: 2em;
  cursor: pointer;
  padding-left: 30px;
}
nav li.nav-text-link {
  padding-top: 15px;
}
nav li a {
  text-decoration: none;
  color: #404040;
}
nav li a:visited {
  color: #404040;
}
nav li a:hover {
  color: #7f1825;
}
nav li a:active {
  color: #cb122a;
  border-bottom-color: #cb122a;
  border-bottom-width: 2px;
}
nav li#github,
nav li#dribbble {
  padding-top: 11px;
}
nav li#github span,
nav li#dribbble span {
  vertical-align: middle;
}
nav li#github img,
nav li#dribbble img {
  max-width: 100%;
}
@media only screen and (max-width: 1064px) {
  nav {
    padding-left: 250px;
    height: 50px;
    left: 0;
    right: 0;
  }
  nav #nav-list,
  nav #subtitle {
    position: relative;
    float: left;
  }
  nav #nav-list {
    width: 100%;
  }
  nav #subtitle {
    width: 250px;
    right: 250px;
    margin-left: -100%;
  }
  nav #subtitle {
    font-size: 2.0em;
    padding-top: 10px;
  }
  nav #subtitle img#nav-logo {
    height: 35px;
  }
  nav li {
    font-size: 1.8em;
    padding-left: 15px;
  }
  nav li.nav-text-link {
    padding-top: 13px;
  }
  nav #github,
  nav #dribble {
    padding-top: 9px;
  }
  nav #github img,
  nav #dribble img {
    height: 22px;
  }
}
@media only screen and (max-width: 840px) {
  nav {
    padding-left: 0px;
  }
  nav #subtitle {
    display: none;
  }
  nav #subtitle,
  nav #nav-list {
    float: none;
  }
}
@media only screen and (max-width: 550px) {
  nav {
    height: auto;
  }
  nav ul {
    display: inline;
  }
  nav li {
    float: none;
    font-size: 2.3em;
    padding: 10px 0px;
  }
  nav #github,
  nav #dribble {
    padding-top: 9px;
  }
  nav #github img,
  nav #dribble img {
    height: 22px;
  }
}
#intro,
#work,
#services,
#about-and-contact {
  max-width: 1440px;
  margin: 0 auto;
}
#intro-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
}
#intro #left,
#intro #right,
#intro #center-wrapper {
  float: left;
}
#intro #center {
  margin: 0 325px 0 350px;
}
#intro #left {
  width: 350px;
  margin-left: -100%;
}
#intro #right {
  width: 325px;
  margin-left: -325px;
}
#intro div#center {
  max-width: 760px;
  min-width: 380px;
  font-color: rgba(0, 0, 0, 0.25);
}
#intro div#center h2 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 3.5em;
}
#intro div#center img {
  float: left;
  margin: 0px 20px 20px 0;
  border: 10px solid #e0e0e0;
}
#intro div#center p.subheading {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.8em;
}
#intro div#center p.subheading strong {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
}
#intro div#center p {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.4em;
}
#intro div#right {
  text-align: center;
}
#intro div#right img {
  margin-bottom: 50px;
  margin-top: 75px;
}
@media only screen and (max-width: 1060px) {
  #intro #center {
    padding-left: 5%;
    padding-right: 5%;
    margin: 0 0 0 280px;
  }
  #intro #right {
    display: none;
    width: 0;
    margin-left: 0;
  }
  #intro #left {
    width: 280px;
  }
}
@media only screen and (max-width: 800px) {
  #intro #left {
    width: 0;
    display: none;
  }
  #intro #center,
  #intro #left,
  #intro #right {
    float: none;
  }
  #intro #center {
    margin: 0;
  }
}
div#app-list {
  margin-top: 40px;
  margin-right: 60px;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  background-color: #f2f2f2;
}
div#app-list div#title {
  text-align: right;
  border-bottom: 2px solid #7f1825;
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  padding: 10px;
  font-size: 2em;
}
div#app-list ul {
  margin: 0px;
  padding: 0px;
}
div#app-list li {
  list-style-type: none;
  height: 40px;
  padding: 10px 40px;
}
div#app-list li span {
  float: left;
  padding-top: 10px;
}
div#app-list li div {
  float: right;
}
div#app-list li div img {
  padding-left: 20px;
}
div#app-list li a {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  font-size: 1.3em;
  color: #3f3f3f;
  text-decoration: none;
}
div#app-list li:hover {
  background-color: #cb122a;
}
div#app-list li:hover a {
  color: white;
}
@media only screen and (max-width: 1060px) {
  div#app-list {
    margin-top: 25px;
    margin-right: 0px;
  }
  div#app-list li {
    padding: 10px 20px;
  }
}
#services-wrapper {
  background-color: rgba(51, 51, 51, 0.9);
  border-top: 4px solid #1c94cb;
}
#services {
  padding-bottom: 40px;
}
#services div#title-container {
  text-align: center;
}
#services div#title {
  margin: 0;
  padding: 0;
  height: 175px;
}
#services div#title * {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  display: inline-block;
  text-shadow: 0px 2px #000000;
}
#services div#title a {
  margin-top: 7px;
  font-size: 1.6em;
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  color: white;
}
#services div#title a * {
  display: block;
}
#services div#title a img {
  padding-bottom: 10px;
}
#services div#title a:hover {
  color: #8c8828;
}
#services div#title a.active {
  color: #1c94cb;
}
#services div#title a.active:hover {
  color: #1c94cb;
}
#services div#title a.active:active {
  color: #1c94cb;
}
#services div#title h2 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 4em;
  color: white;
  position: relative;
  top: -45px;
}
#services div#title img {
  height: 90px;
}
@media only screen and (max-width: 1160px) {
  #services div#title h2 {
    font-size: 3.7em;
  }
  #services div#title * {
    margin-left: 7px;
    margin-right: 7px;
  }
}
@media only screen and (max-width: 1060px) {
  #services div#title h2 {
    font-size: 3.3em;
  }
}
@media only screen and (max-width: 850px) {
  #services div#title h2 {
    font-size: 2.9em;
  }
  #services div#title img {
    height: 65px;
  }
  #services div#title a {
    font-size: 1.4em;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 800px) {
  #services div#title {
    height: 275px;
  }
  #services div#title h2 {
    font-size: 3.5em;
  }
  #services div#title a {
    display: inline-block;
  }
  #services div#title h2#and {
    display: inline;
  }
  #services div#title h2#designed_and_built {
    top: 20px;
    display: block;
  }
  #services div#title * {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
  }
}
div#services-android,
div#services-web {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.5em;
}
div#services-android h4,
div#services-web h4 {
  font-size: 1.7em;
  margin: 0 0 0.0em 0;
}
div#services-android div,
div#services-web div {
  float: left;
  color: white;
}
div#services-android ul,
div#services-web ul {
  margin: 0px;
}
@media only screen and (max-width: 1160px) {
  div#services-android,
  div#services-web {
    font-size: 1.3em;
  }
  div#services-android h4,
  div#services-web h4 {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 850px) {
  
}
div#services-android #about {
  width: 30%;
  padding-left: 4%;
}
div#services-android #center {
  text-align: center;
  width: 21%;
}
div#services-android #experience {
  width: 35%;
}
div#services-android #right {
  width: 10%;
  text-align: center;
}
@media only screen and (max-width: 1060px) {
  div#services-android #about {
    width: 46%;
  }
  div#services-android #center {
    display: none;
  }
  div#services-android #experience {
    width: 50%;
  }
  div#services-android #right {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  div#services-android #about,
  div#services-android #experience {
    float: none;
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
}
div#services-web {
  display: none;
}
div#services-web #about {
  width: 30%;
  padding-left: 4%;
}
div#services-web #center {
  text-align: center;
  width: 17%;
}
div#services-web #experience {
  width: 33%;
}
div#services-web #right {
  width: 15%;
  text-align: center;
}
@media only screen and (max-width: 1060px) {
  div#services-web #about {
    width: 46%;
  }
  div#services-web #center {
    display: none;
  }
  div#services-web #experience {
    width: 50%;
  }
  div#services-web #right {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  div#services-web #about,
  div#services-web #experience {
    float: none;
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
}
#work-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  border-top: 4px solid #1c94cb;
}
#work #title h2 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 5em;
  display: inline-block;
  margin: 20px 40px;
}
@media only screen and (max-width: 800px) {
  #work #title h2 {
    font-size: 3.5em;
  }
}
#work-content {
  padding-left: 300px;
  padding-right: 550px;
}
#work-content #right,
#work-content #center,
#work-content #left {
  position: relative;
  float: left;
}
#work-content #left {
  width: 300px;
  right: 300px;
  margin-left: -100%;
}
#work-content #center {
  width: 100%;
}
#work-content #right {
  width: 550px;
  margin-right: -550px;
}
#work-content div#center {
  font-color: #404040;
}
#work-content div#center div {
  display: none;
}
#work-content div#center div.active,
#work-content div#center div#gallery {
  display: block;
}
#work-content div#center h3 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 2.5em;
  margin: 0px;
}
#work-content div#center h4 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 1.3em;
  margin: 0px;
}
#work-content div#center p,
#work-content div#center li {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.4em;
}
#work-content div#left li {
  list-style-type: none;
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.6em;
  color: white;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/works-sel-def.svg);
  margin: 10px 0px;
  padding: 13px 20px;
}
#work-content div#left li.active {
  background-image: url(../img/works-sel-act.svg);
  padding: 17px 20px;
}
#work-content div#left li.active:hover {
  background-image: url(../img/works-sel-act.svg);
}
#work-content div#left li:hover {
  background-image: url(../img/works-sel-hov.svg);
}
#work-content div#right {
  text-align: center;
}
@media only screen and (max-width: 1170px) {
  #work-content {
    padding-right: 5%;
  }
  #work-content div#center {
    width: 100%;
    padding-right: 0px;
  }
  #work-content div#right {
    display: none;
    float: none;
  }
}
@media only screen and (max-width: 800px) {
  #work-content {
    padding-left: 0;
    padding-right: 0;
  }
  #work-content div#center,
  #work-content div#left {
    float: none;
    padding: 0px;
    width: 90%;
    margin: 5%;
    padding: 0;
  }
  #work-content div#left {
    left: 0;
    width: 300px;
    margin: 0 auto;
  }
  #work-content div#left ul#work-list {
    padding: 0;
  }
  #work-content div#left li {
    width: 160px;
    text-align: center;
    margin: 0 40px 0 40px;
    padding: 17px 20px;
  }
  #work-content div#left li.active {
    width: 300px;
    margin: 0px;
    background-image: url(../img/works-sel-act-mobile.svg);
    padding: 20px 0px;
  }
  #work-content div#left li.active:hover {
    background-image: url(../img/works-sel-act-mobile.svg);
  }
}
#mobile-gallery {
  display: none;
  clear: both;
}
@media only screen and (max-width: 1170px) {
  #mobile-gallery {
    display: inline;
  }
}
#mobile-gallery img {
  display: block;
  margin: 0 auto 1em;
  max-width: 100%;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
}
#mobile-gallery ol {
  list-style-type: none;
  display: block;
}
#mobile-gallery li {
  margin: 0 5% 1.5em 0;
  width: 20%;
  float: left;
}
div#gallery-controls {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  position: relative;
  top: -80px;
}
div#gallery-controls * {
  display: inline-block;
  cursor: pointer;
}
div#gallery-controls div.arrow {
  background-size: contain;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
div#gallery-controls div.right {
  background-image: url(../img/gallery-arrow-right.svg);
}
div#gallery-controls div.right:hover {
  background-image: url(../img/gallery-arrow-right-active.svg);
}
div#gallery-controls div.left {
  background-image: url(../img/gallery-arrow-left.svg);
}
div#gallery-controls div.left:hover {
  background-image: url(../img/gallery-arrow-left-active.svg);
}
div#gallery-controls div.indicator {
  width: 16px;
  height: 16px;
  margin: 12px 7px;
  background-color: #07364c;
}
div#gallery-controls div.indicator:hover {
  background-color: #1c94cb;
}
div#gallery-controls div.active {
  background-color: transparent;
  border: 2px solid #07364c;
  width: 12px;
  height: 12px;
}
div#gallery-controls div.active:hover {
  background-color: transparent;
  border: 2px solid #1c94cb;
}
@media only screen and (max-width: 1170px) {
  div#gallery-controls {
    display: none;
    text-align: right;
    top: 20px;
  }
}
div#image-frame {
  position: relative;
  top: -40px;
}
div#image-frame img {
  border: 10px solid #808080;
}
@media only screen and (max-width: 1170px) {
  div#image-frame {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    border: 3px solid #7f7f7f;
    border-bottom-width: 10px;
    overflow: hidden;
    /* this is important */
  
  }
  div#image-frame img {
    margin: 0px 0px -400px 0px;
  }
}
#about-and-contact-wrapper {
  background-color: rgba(220, 220, 220, 0.7);
  border-top: 4px solid #cb122a;
}
div#about-and-contact {
  color: black;
}
div#about-and-contact h2 {
  font-family: "luz-sans-light", "Futura Lt BT Light", Arial, sans-serif;
  font-size: 5em;
  display: inline-block;
}
@media only screen and (max-width: 800px) {
  div#about-and-contact h2 {
    font-size: 3.5em;
  }
}
div#about-and-contact div#left {
  width: 36%;
  padding: 0px 7%;
  float: left;
}
div#about-and-contact div#left div#about-text {
  padding-top: 200px;
}
div#about-and-contact div#left div#about-text p {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  font-size: 1.35em;
}
div#about-and-contact div#left div#about-text p.subtitle {
  font-size: 1.95em;
}
@media only screen and (max-width: 1000px) {
  div#about-and-contact div#left div#about-text {
    padding-top: 150px;
  }
  div#about-and-contact div#left div#about-text p {
    font-size: 1.15em;
  }
  div#about-and-contact div#left div#about-text p.subtitle {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 1284px) {
  div#about-and-contact div#left {
    width: 42%;
    padding: 0px 4%;
  }
}
div#about-and-contact div#right {
  float: right;
  width: 50%;
}
div#about-and-contact div#right div#response {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  text-size: 1.55em;
}
div#about-and-contact div#right div#response.success {
  text-color: #07364c;
}
div#about-and-contact div#right div#response.error {
  text-color: #cb122a;
}
@media only screen and (max-width: 800px) {
  div#about-and-contact div#right,
  div#about-and-contact div#left {
    float: none;
    width: 90%;
    padding: 0px 5%;
  }
}
ul#contact-info {
  list-style: none;
  padding: 0;
}
ul#contact-info li {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  font-size: 1.5em;
  color: #3f3f3f;
  list-style: none;
}
ul#contact-info span.label {
  width: 140px;
  display: inline-block;
}
@media only screen and (max-width: 1160px) {
  @form-label-width- 1160;
}
@media only screen and (max-width: 960px) {
  ul#contact-info span.label {
    width: 90px;
  }
}
form#contact-form {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  margin: auto;
  position: relative;
  font-weight: bold;
  font-size: 1.5em;
  color: #3f3f3f;
}
form#contact-form div * {
  padding: 5px;
  vertical-align: top;
}
form#contact-form label {
  height: 56px;
  display: inline-block;
  width: 140px;
}
form#contact-form input,
form#contact-form textarea {
  font-family: "luz-sans-book", "Futura-Book", Arial, sans-serif;
  font-size: 1.0em;
  font-weight: normal;
  display: inline-block;
  border: 1px solid #cb122a;
  outline-width: 0;
  width: 400px;
}
form#contact-form input[name=message],
form#contact-form textarea[name=message] {
  height: 200px;
}
@media only screen and (max-width: 1160px) {
  form#contact-form label {
    width: 100px;
  }
  form#contact-form input,
  form#contact-form textarea {
    width: 330px;
  }
}
@media only screen and (max-width: 960px) {
  form#contact-form {
    font-size: 1.33em;
  }
  form#contact-form label {
    width: 90px;
  }
  form#contact-form input,
  form#contact-form textarea {
    width: 280px;
  }
}
#send-email-button {
  width: 150px;
  height: 40px;
  margin: 15px;
  margin-left: 155px;
  cursor: pointer;
  background-color: #8c8828;
}
#send-email-button img,
#send-email-button span {
  margin: 6px 0px 0px 13px	;
  display: inline-block;
  color: white;
  vertical-align: middle;
  font-size: 1.9em;
}
#send-email-button:hover {
  background-color: #cb122a;
}
#send-email-button:active {
  background-color: #7f1825;
}
#send-email-button.sending {
  width: 200px;
  background-color: #808080;
}
@media only screen and (max-width: 1160px) {
  #send-email-button {
    margin-left: 115px;
  }
}
@media only screen and (max-width: 960px) {
  #send-email-button {
    margin-left: 105px;
  }
}
div#portrait-box img#portrait {
  background-color: #ffffff;
  padding: 15px;
  border: 1px solid #cb122a;
  float: left;
}
div#portrait-box #label {
  font-family: "luz-sans-med", "Futura", Arial, sans-serif;
  float: right;
  width: 230px;
  padding: 50px 15px 50px 35px;
  font-size: 1.55em;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/portrait-status-bg.svg);
}
div#portrait-box #label span.bold {
  font-family: "luz-sans-bd", "Futura", Arial, sans-serif;
  color: #8c8828;
}
@media only screen and (max-width: 1100px) {
  div#portrait-box #label {
    width: 210px;
    padding: 45px 10px 45px 30px;
    font-size: 1.35em;
  }
  div#portrait-box img#portrait {
    padding: 10px;
    width: 120px;
  }
}
@media only screen and (max-width: 950px) {
  div#portrait-box #label {
    width: 190px;
    padding: 40px 5px 40px 25px;
    font-size: 1.25em;
  }
  div#portrait-box img#portrait {
    padding: 7px;
    width: 110px;
  }
}
@media only screen and (max-width: 830px) {
  div#portrait-box #label {
    width: 180px;
    padding: 40px 5px 40px 25px;
    font-size: 1.25em;
  }
  div#portrait-box img#portrait {
    padding: 5px;
    width: 100px;
  }
}
/* ==|== endos ==============================================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
