body {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}

*, body {
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-focus-ring-color: rgba(0,0,0,0);
    outline: none;

    -webkit-text-size-adjust: none;
}

input, textarea {
    -moz-user-select: text;
    -o-user-select: text;
    -khtml-user-select: text;
    -webkit-user-select: text;
    user-select: text;
    resize: none;
}

img {
    border: 0;
    vertical-align: top;
}

p {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.hidden {
    display: none !important;
}

.visibility {
    visibility: hidden;
}

.animation {
    -webkit-transition: background-color 0.7s, color 1s, opacity 0.5s;
    -ms-transition: background-color 0.7s, color 1s, opacity 0.5s;
    -o-transition: background-color 0.7s, color 1s, opacity 0.5s;
    -moz-transition: background-color 0.7s, color 1s, opacity 0.5s;
    transition: background-color 0.7s, color 1s, opacity 0.5s;
}

.no_script_message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;

    display: block;
    font-size: 0.8em;
    padding: 0.25em 0;
    line-height: 1.3;
    text-align: center;

    color: black;
    background: #DFDFDF;
    text-shadow: 1px 1px 1px white;
    border-bottom: 1px solid #AAAAAB;
}

@media screen and (max-width: 700px) {
    * {
        -moz-user-select: -moz-none;
        -o-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        user-select: none;
    }

    .no_script_message {
        font-size: 12px;
    }
}