@charset "utf-8";

/* 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;
}

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;
}

/******************************************************************************/
/* Html                                                                       */
/******************************************************************************/

html {
    width:100%;
    height:100%;
}

/******************************************************************************/
/* Body                                                                       */
/******************************************************************************/

body {
    width:100%;
    height:100%;
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    background-color:#000000;
}

@media only screen and (min-width:768px) and (max-width:999px) {
    body {
        font-size:13px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    body {
        font-size:11px;
    }
}

@media only screen and (max-width:479px) {
    body {
        font-size:9px;
    }
}

body > div {
    width:100%;
    height:100%;
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:center;
}

body > div > div {
    width:calc(100% - 20px);
    max-width:800px;
    margin:10px;
}

body > div > div > img {
    width:100%;
    margin-bottom:30px;
    vertical-align:middle;
}

body > div > div > h1 {
    margin-bottom:15px;
    line-height:1.3em;
    font-size:1.3em;
    color:#FFFFFF;
    text-align:center;
}

body > div > div > p {
    margin-bottom:15px;
    line-height:1.3em;
    font-size:1.3em;
    color:#FFFFFF;
    text-align:center;
}

body > div > div > p strong {
    font-size:1.2em;
    font-weight:bold;
    color:#FDDC08;
}
body > div > div > p sup {
    font-size:50%;
    vertical-align:super;
}

body > div > div > ul {
}

body > div > div > ul > li {
    margin-bottom:15px;
    line-height:1.3em;
    font-size:1.3em;
    color:#FFFFFF;
    text-align:center;
}

body > div > div > ul > li a {
    color:inherit;
    text-decoration:none;
}

body > div > div > ul > li a > span {
    margin-right:5px;
}

body > div > div > ul > li a > span > strong{
    display:none;
}

body > div > div > ul#lang {
    display:flex;
    margin-bottom:5px;
    flex-direction:row;
    flex-wrap:nowrap;
    justify-content:flex-end;
    align-items:stretch;
}

body > div > div > ul#lang > li {
    margin-bottom:0px;
    margin-right:5px;
    padding-right:5px;
    line-height:1em;
    font-size:1em;
    border-right:1px solid #FFFFFF;
}

body > div > div > ul#lang > li:last-child {
    margin-right:0px;
    padding-right:0px;
    border-right:none;
}