/* C M P P - public part */
/* Extracted from existing inline styles. Values are intentionally unchanged. */

body {
    color: Black;
    background: White;
    background-image: url('/obrazky/poz_para.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: normal;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: Salmon;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.valign-top { vertical-align: top; }

.link-plain { text-decoration: none; }
.link-orange { text-decoration: none; color: Orange; }
.link-salmon { text-decoration: none; color: Salmon; }

.bg-white { background: White; }
.bg-gainsboro { background: Gainsboro; }

.bg-darkslateblue {
    color: White;
    background: DarkSlateBlue;
}

.bg-darkslateblue-center {
    color: White;
    background: DarkSlateBlue;
    text-align: center;
}

.bg-slateblue {
    color: White;
    background: SlateBlue;
}

.bg-white-center {
    background: White;
    text-align: center;
}

.bg-red {
    color: White;
    background-color: Red;
}
