/**
 *  A short, sweet global css reset
 *
 *  only for inits of elements
 */
/* Reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, b, bdo, big, blockquote, center, cite, code,
del, dfn, em, i, img, ins, kbd, q, samp,
small, strike, strong, sub, sup, tt, u, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, thead, tfoot, tbody, tr, th, td,
article, aside, canvas, details, embed, figcaption, figure,
footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body, button, input, textarea, select {
    font-size: 11px;
    line-height: 16px;
    font-family: Arial, sans-serif;
}
body, button, input, textarea {
    background-color: #F5F9FF;
}
:focus {
    outline: 1px dotted #ccc;
}

/**
 * Lists
 */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
    padding: 0;
    display: block;
}

/**
 * Blockquote
 */
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
blockquote, q {
    quotes: none;
}

/**
 * Tables
 */
table {
    border-collapse: collapse;
    border-spacing: 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 {
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

/* Correct overflow not hidden in IE9 */

svg:not(:root) {
    overflow: hidden;
}
/**
 * html5 backwards compatibility
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
audio, canvas, video {
    display: inline-block;
}
.oldie audio, .oldie canvas, .oldie video {
    display: inline;
    zoom: 1;
}
audio:not([controls]) {
    display: none;
}
[hidden] {
    display: none;
}

/**
 * Clearfix  (h5bp.com/q)
 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1;
}