/* ===== SITE COLORS ===== */
/*RED: #E2261C;*/


/* ===== GENERAL STYLES ===== */
html {
    width: 100%;
    height: 100%;
    margin-left: 0 !important;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    font-weight: 400;
    min-width: 320px;
    height: 100%;
    background-color: #000000;
    color: #000000;
}
a {
    text-decoration: none;
}
p {
    font-size: 0.9em;
    line-height: 1.5em;
}
h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    line-height: 1em;
}
.centerWrapper {
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}
.clearFix {
    overflow: hidden;
    clear: both;
}
.t200 {
    -webkit-transition: all 200ms ease-in-out;
       -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
         -o-transition: all 200ms ease-in-out;
            transition: all 200ms ease-in-out;
}
.t300 {
    /* easeOutQuart */
    -webkit-transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
       -moz-transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
        -ms-transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
         -o-transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
            transition: all 300ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.t400 {
    -webkit-transition: all 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
       -moz-transition: all 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -ms-transition: all 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
         -o-transition: all 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
            transition: all 400ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.ui-tooltip {
    padding: 20px;
    line-height: 1.25em;
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    position: absolute;
    z-index: 9999;
    max-width: 600px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0 ,0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0 ,0.2);
    color: #000000 !important;
    background-color: #FFFFFF !important;
    background-image: none !important;
}

/* ===== MEDIA QUERIES ===== */
@media only screen and (min-width: 800px) {
    h1 {
        font-size: 3em;
    }
}

@media only screen and (min-width: 1300px) {
    .centerWrapper {
        position: relative;
        overflow: hidden;
        width: 1280px;
        padding: 0;
        margin: 0 auto;
    }
}