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

/* !CSS RESET */
/**********************************************************************************************************************/
/* SELECTIONS KILL OUT */

:focus {
    outline: 0;
}
::selection
{
    background-color:transparent;
}
::-moz-selection
{
    background-color:transparent;
}
::-webkit-selection
{
    background-color:transparent;
}

/**********************************************************************************************************************/

html, body {
    font-family: Agenda-Light, Agenda Light, Agenda, Arial Narrow, sans-serif;
}
body {
    background: #000000;
}

/**********************************************************************************************************************/

h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 0;
    letter-spacing: .3rem;
    color: #ffffff;
}

h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 2.5rem;
    letter-spacing: .3rem;
    color: #ffffff;
}

h3 {
    font-size: 1rem;
    text-transform: none;
    line-height: 2.5rem;
    letter-spacing: .3rem;
    color: #ffffff;
}
h4 {
    font-size: 1rem;
    text-transform: none;
    line-height: 2.5rem;
    letter-spacing: .3rem;
    color: #ffffff;
}

h5 {
    font-size: 1rem;
    text-transform: none;
    line-height: 1.5rem;
    color: #ffffff;
}

h6 {
    line-height: 1.5em;
    font-size: 0.5em;
    color: #ffffff;
}

p {
    margin: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #ffffff;
}

a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background:rgba(0,0,0,0.5);
    padding: 1rem;
    transition: .6s background;
}

a:hover{
    background:rgba(0,0,0,0.9);
}

.text-link {
    margin: 1.25em;
    font-size: 0.875em;
    line-height: 1.5em;
}

p:first-letter {
    color: #ffffff;
    font-size: 1.5rem;
}

p.initial-off:first-letter {
    font-size: 1rem;
    color: #ffffff;
}

/**********************************************************************************************************************/

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.uppercase {
    text-transform: uppercase;
}

b {
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}
/**************/

.width-small {
    width: 33%;
}

.width-medium {
    width: 50%;

}

/**************/

.clear-fix {
    float: none;
    clear: both;
}

.left-float {
    float: left;
}

.right-float {
    float: right;
}

.no-collapse { /*???*/
    padding: 0.1px;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

/**********************************************************************************************************************/

.fixed-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    height: 3rem;
    width: 1px;
}

.logo {
    width: 1px;
}

.logo img{
    margin: 0.5rem;
    width: 180px;
    text-align: left;

}

/**********************************************************************************************************************/

article {
    margin: 1rem auto;
    padding: 2rem;
    width: 80%;

    background: rgba(0,0,0,0.5);
}

/**********************************************************************************************************************/

section.module {
    margin: 1rem 0;
    border: 0;
    padding: 2rem 0;
    width: 100%;

}

section.module:first-of-type {

}

section.module:last-of-type {

}

/**********************************************************************************************************************/

video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: url("") no-repeat;
    background-size: cover;
    transition: 1s opacity;
}

.stopfade {
    opacity: .5;
}

/**********************************************************************************************************************/

.table-container {
    max-width: 400px;
    margin: auto;
    padding: 0.5rem;
    color: #ffffff;
    text-align: center;
}
table {
    vertical-align: middle;
}

tr  {
    border: 1px solid #ffffff;
    padding: 0.25rem;
}

td {
    border: 1px solid #ffffff;
    padding: 0.25rem;
    width: 200px;
    vertical-align:middle
}

/**********************************************************************************************************************/

footer.module {
    position: fixed;
    border-top: 1px solid rgba(255,255,255,0.2);
    bottom: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 3rem;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 0.5rem;
    margin: 0;
}

footer.module .content {
    position: relative;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

footer.module .content .datafield {
    height: 3rem;
    padding: 0;
    width: 100%;
}

footer.module .content .datafield div {
    width: 33%;
    float: left;
    text-align: center;
}

/**********************************************************************************************************************/
/*
@media screen and (max-width: 500px) {
    /*article{width:70%;}*/
/*}/*
@media screen and (max-device-width: 600px) {
    html { background: url("") #000 no-repeat center center fixed; }
    #background-video { display: none; }
}