/* Minification failed. Returning unminified contents.
(52,66): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
 */
#HeaderPane {
    background-color: white !important;
    border-bottom: 3px solid #455e69;
    border-radius: 8px;
}

div.header {
    background: inherit !important;
}

div.headerSub {
    color: black;
    text-shadow: 0 1px 0 rgb(35, 32, 32);
}


#FooterPane {
    background-color: white !important;
    border-top: 3px solid #455e69;
    border-radius: 8px;
}

div.footer {
    background: inherit !important;
}

span.footer {
    color: white;
}

#divMainFooter > table > tbody > tr > td > div.footerInfo > span > span {
    color: black !important;
}

a.footer {
    color: white;
}

.girisBackground {
    filter: none;
    background: none;
}

#divGiris {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

#rpnGiris {
    background: #fff6e4;
    background: -moz-linear-gradient(top,#8b9da9 0, #687e8d 100%):;
    background: -webkit-linear-gradient(top,#8b9da9 0,#d6fbe3 100%);
    background: -o-linear-gradient(top,#8b9da9 0,#687e8d 100%);
    background: -ms-linear-gradient(top,#8b9da9 0,#687e8d 100%);
    background-color: #3d434e;
    color: white !important;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 10px 10px 10px grey;
    border-color: transparent;
    opacity: 0.8;
}

.crossfade > figure {
    animation: imageAnimation 48s linear infinite 0s;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center center;
    color: transparent;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    margin: 0 !important;
}

    .crossfade > figure:nth-child(1) {
        background-image: url('images/001.jpg');
    }

    .crossfade > figure:nth-child(2) {
        animation-delay: 12s;
        background-image: url('images/002.jpg');
    }

    .crossfade > figure:nth-child(3) {
        animation-delay: 24s;
        background-image: url('images/003.jpg');
    }

    .crossfade > figure:nth-child(4) {
        animation-delay: 36s;
        background-image: url('images/004.jpg');
    }

    .crossfade > figure:nth-child(5) {
        animation-delay: 48s;
        background-image: url('images/005.jpg');
    }

@keyframes imageAnimation {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }

    8% {
        animation-timing-function: ease-out;
        opacity: 1;
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

