/*THIS SI CSS RESET. WE NEED IT ANYWAY*/


/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}


/*!END OF normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

body {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background-color: #e6e6e6;
    text-align: center;
    font-family: arial, verdana, helvetica;
    min-width: 320px;
}

a:hover {
    background-color: #D3D3D3
}


/*Table behaviour*/
table {
    width: 100%;
    max-width: 100%;
}

table:first-child tr:first-child {
    width: 100%;
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
}

table:nth-child(2) {
    background: white;
    text-align: left;
    border-radius: 15px;
}

table:nth-child(2) img {
    max-height: 65px;
    padding: 5px 0 5px 15px;
}

table:nth-child(3) {
    border: 0px solid #a1a1a1;
    margin-top: 15px;
    background: #dddddd;
    border-radius: 15px;
}

table:nth-child(3) h1 {
    text-align: center;
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
}

table:nth-child(4) {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    margin-top: 15px;
}

table:nth-child(4) td {
    vertical-align: top;
    padding-bottom: 18px;
    font-size: 14px;
}

table:nth-child(4) img {
    width: 25%;
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    min-width: 120px;
    clear: both
}

.hidden-xs {
    display: inline;
}

.visible-xs {
    display: none;
}

#container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

#container:after {
    content: "";
    display: block;
    clear: both;
}


/*Media queryes for right #container behavior */

@media (min-width: 768px) {
    #container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    #container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    #container {
        width: 1170px;
    }
}


/*Media queryes for right content behavior */

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
    #container {
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
    }
}

@media (max-width: 450px) {
    .hidden-xs {
        display: none;
    }
    .visible-xs {
        display: block;
    }
    #container {
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
    }
}