@charset "utf-8";
/* Table of Content
==================================================
    #Reset & Basics
    #Basic Styles
*/


/* #Reset & Basics
================================================== */
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;
    outline: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
:focus, :active {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* #Basic Styles
================================================== */
roothtml {
    font-size: 100%;
}
html {
    font-size: 100%;
    height: 100%;
}
body {
    background: #FFFFFF;
    height: 100%;
    font-size: 62.5%;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

.tooltip-wrapper {
    position: relative;
}
.tooltip-wrapper .hint {
    margin-left: -999em;
    position: absolute;
    padding: 0.5em 0.8em 0.8em 0.5em;
    white-space: normal;
}
.tooltip-wrapper .hint.open {
    border-radius: 5px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 1em;
    top: 4em;
    z-index: 99;
    margin-left: 0; width: 250px;
}
.tooltip-wrapper .hint em {
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    padding: 0.2em 0 0.6em 0;
}
.hint.classic {
    background: #FFFFAA;
    border: 1px solid #FFAD33;
}
.hint.critical {
    background: #FFCCAA;
    border: 1px solid #FF3334;
}
.hint.help {
    background: #9FDAEE;
    border: 1px solid #2BB0D7;
}
.hint.info {
    background: #9FDAEE;
    border: 1px solid #2BB0D7;
}
.hint.warning {
    background: #FFFFAA;
    border: 1px solid #FFAD33;
}
.hint strong {
    font-weight: bold;
}
