@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Coda:400,800|Roboto:400,100,300);

/**
 * 
 * 
 * 
 * 
 *
 *
 **/


/* General - Reset
   ------------------------------------------------------------------------- */


    /* http://meyerweb.com/eric/tools/css/reset/
       v2.0 | 20110126
       License: none (public domain)
    */

    /*noinspection CssOverwrittenProperties*/
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }

    /* HTML5 display-role reset for older browsers */

    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
        display: block;
    }

    body {
        line-height: 1.4;
    }

    ol, ul {
        list-style: none;
    }

    blockquote, q {
        quotes: none;
    }

    /*noinspection CssOverwrittenProperties*/
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }


/* General - Global
   ------------------------------------------------------------------------- */


    * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    body {
        font-size: 1.4rem;
        font-family: Roboto, Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
        font-weight: 100;
        color: #101010;
        background: #f0f0f0;
    }

    code, pre {
        font-family: Consolas, Monaco, monospace
    }

    h1, h2, h3, h4, h5, h6, th {
        font-family: Coda, "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
        font-weight: 800;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.17rem;
    }

    h4 {
        font-size: 1.12rem;
    }

    h5 {
        font-size: .83rem;
    }

    h6 {
        font-size: .67rem;
    }

    table th, table td {
        vertical-align: top;
    }


/* Application - Header
 ------------------------------------------------------------------------- */


    .header {
        background: #101010;
        white-space: nowrap;
        padding: 2rem;
    }


/* Application - Header, Logo
 ------------------------------------------------------------------------- */


    .header .logo {
        /*position: relative;*/
        /*top: .5rem;*/
        display: inline-block;
        /*margin: 2rem 0 0 2rem;*/
    }

    .header .logo a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        height: 100%;
        border-radius: 9999999px;
        background: #008cba;
        line-height: 1;
        font-size: 3rem;
        color: #101010;
        text-decoration: none;
        outline: none;

    }

    .header .logo a ins {
        position: absolute;
        display: none;
    }

    .header .logo a span {
        position: relative;
        top: .25rem;
    }

    .header .logo a:hover, .header .logo a:focus {
        color: #ffffff;
    }

    .header .logo a:hover ins, .header .logo a:focus ins {
       display: inline-block;
    }

    .header .logo a small {
        position: absolute;
        top: 3rem;
        left: 6rem;
        font-size: 1.4rem;
        font-weight: 100;
        text-decoration: none !important;
    }


/* Application - Header, Navigation
------------------------------------------------------------------------- */


    .header .navigation {
        position: relative;
        top: -.5rem;
        display: inline-block;
        vertical-align: middle;
        margin-left: 13rem;
        font-family: Coda, "Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    }

    .header .navigation li {
        display: inline-block;

    }

    .header .navigation a {
        display: block;
        padding: .5rem 1rem .5rem 1.2rem;
        border-radius: 1rem 1rem 1rem .5rem;
        font-weight: 400;
        color: #f0f0f0;
        text-decoration: none;
        outline: none;
    }

    .header .navigation a:hover, .header .navigation a:focus {
        color: #fff;
        background: #008cba;
    }


/* Application - Body
------------------------------------------------------------------------- */


    .body {
        margin: 2rem;
    }


/* Helper - Visibility
   ------------------------------------------------------------------------- */


    .hidden {
        display: none;
    }

    .invisible {
        visibility: hidden;
    }


/* Responsive - Tiny (640 and down)
   ------------------------------------------------------------------------- */


    @media all and (min-width: 0) and (max-width: 40rem) {

    }

/* Responsive - Small (640 to 1024)
   ------------------------------------------------------------------------- */


    @media all and (min-width: 40.063rem) and (max-width: 64rem) {

    }


/* Responsive - Medium (1024 to 1440) 
   ------------------------------------------------------------------------- */


    @media all and (min-width: 64.063rem) and (max-width: 90rem) {

    }


/* Responsive - Large (1440 to 1080)
   ------------------------------------------------------------------------- */


    @media all and (min-width: 90.063rem) and (max-width: 120rem) {

    }


/* Responsive - Large (1080 and up)
   ------------------------------------------------------------------------- */


    @media all and (min-width: 120.063rem) and (max-width: 99999999rem) {

    }

  