/* Minification failed. Returning unminified contents.
(51,66): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
 */
#HeaderPane {
    background-color: #8b837b7d;
    border-bottom: 3px solid hsl(32.88deg 88.89% 54.12%);
    border-radius: 8px;
}

div.header {
    background: inherit !important;
}

div.headerSub {
    color: dimgray;
    text-shadow: 0 1px 0 rgb(35, 32, 32);
}

#FooterPane {
    background-color: #8b837b7d;
    border-top: 3px solid hsl(32.88deg 88.89% 54.12%);
    border-radius: 8px;
}

div.footer {
    background: inherit !important;
}

span.footer {
    color: white;
}

#divMainFooter > table > tbody > tr > td > div.footerInfo > span > span {
    color: inherit !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,#a94442 100%);
    background: -webkit-linear-gradient(top,#8b9da9 0,#333 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 30s 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: 6s;
        background-image: url('images/002.jpg');
    }

    .crossfade > figure:nth-child(3) {
        animation-delay: 12s;
        background-image: url('images/003.jpg');
    }

    .crossfade > figure:nth-child(4) {
        animation-delay: 18s;
        background-image: url('images/004.jpg');
    }

    .crossfade > figure:nth-child(5) {
        animation-delay: 24s;
        background-image: url('images/005.jpg');
    }
	
	 .crossfade > figure:nth-child(6) {
        animation-delay: 36s;
        background-image: url('images/006.jpg');
		
    }
	
	 .crossfade > figure:nth-child(7) {
        animation-delay: 48s;
        background-image: url('images/007.jpg');
    }
	
	 .crossfade > figure:nth-child(8) {
        animation-delay: 60s;
        background-image: url('images/008.jpg');
    }
	
	 .crossfade > figure:nth-child(9) {
        animation-delay: 72s;
        background-image: url('images/009.jpg');
    }
	
	 .crossfade > figure:nth-child(10) {
        animation-delay: 84s;
        background-image: url('images/010.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
    }
}

