/* Styles for the CoverPop.js plugin */

#CoverPop-cover {
	display: none;
	height: 0;
	background-color: #54710e;
	text-align: center;
	border: 1px solid #999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	color: #fff;
	-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-content {
	text-shadow: 1px 1px 1px #000;
}
.CoverPop-content h2.splash-title {
	color: #ffffff!important;
}
.CoverPop-content a:link, .CoverPop-content a:visited, .CoverPop-content a:hover {
  color: #ffffff;
}
.CoverPop-content span {
	padding: 0 25px 0 25px;
}

.CoverPop-open #CoverPop-cover {
	display: block;
}
 @-webkit-keyframes fade-in {
 0% {
opacity: 0;
}
 25% {
opacity: 0;
}
 100% {
opacity: 1;
}
}
