/* Styles for the CoverPop.js plugin */


html,
body {
    overflow: auto;
}

body {
    /*position: relative;*/
}

.CoverPop-open,
.CoverPop-open body {
    overflow: hidden;
}

#CoverPop-cover {
    display: none;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    -webkit-animation: fade-in .25s ease-in;
    -moz-animation-name: fade-in .25s ease-in;
    -ms-animation-name: fade-in .25s ease-in;
    -o-animation-name: fade-in .25s ease-in;
    animation-name: fade-in .25s ease-in;
}

    .CoverPop-open #CoverPop-cover {
        display: block;
    }


@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    25% { opacity: 0; }
    100% { opacity: 1; }
}

    
    .CoverPop-close{
        position: absolute;
		top: 10px;
		right: 10px;
		display: block;
		text-decoration: none;
		color: black;
		font-size:35px;
		line-height: 35px;
    }


    .splash {
        background-color: rgb(255,255,255);
        background-color: rgba(255,255,255,0.8);
    }

        .splash-center {
            text-align: center;
            max-width: 90%;            
            margin: 0 auto;
            margin-top: 5%;	
		height: 90%;	
        }

	#cover_content{
		height: 90%;
		display: inline-block;
		position: relative;
	}

.splash-center img{
	max-height: 100%;
	width: auto;
}

