/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

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;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1d1d1d;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
}

.container {
    position: absolute;
    z-index: 10;
    top: 0;
    width : 500px;
    height: 100%;
    overflow-y: scroll;
}

.container .content {
    margin: 30px;
    background: #FFFFFF;
    padding:40px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 3px 2px rgba(52,52,52,0.3);
    box-shadow: 0 2px 3px 2px rgba(52,52,52,0.3);
}

.content hr {
    border-bottom: 1px solid #d1d1d1;
    border-top: none;
    border-left: none;
    margin-bottom: 30px;
    padding-top: 10px;
}

.content h2 {
    font-size: 20px;
    color: #f44336;
    margin-bottom: 20px;
    line-height: 30px;
}

.content h3 {
    font-size: 16px;
    color: #f44336;
    margin-bottom: 20px;
    line-height: 30px;
}

.content p {
    line-height: 25px;
    margin-bottom: 20px;
    font-size: 14px;
}

.content p strong {
    font-weight: 700;
    color: #f44336;
}

.btn {
    background: #f44336;
    cursor: pointer;
    color: white;
    text-align: center;
    padding:20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

select {
    display: block;
    width: 100%;
    height: 50px;
    max-width: 95%;
    border-radius: 2px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    color: #727272;
    font-size: 1.125rem;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 0;
    white-space: nowrap;
}

.whitedrop {
    background: rgba(255,255,255, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 20;
}

.outputContainer {
    background: white;
    width: 860px;
    height: 70%;
    padding:50px;
    overflow-y: scroll;
    margin: 50px auto 0 auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}