@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* CSS reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
html,body {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
input{
	border:1px solid #b0b0b0;
	padding:3px 5px 4px;
	color:#979797;
	width:190px;
}
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}
/* General Demo Style */
body{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	background: #000;
	font-weight: 400;
	font-size: 15px;
	color: #aa3e03;
	overflow-y: scroll;
	overflow-x: hidden;
}
.ie7 body{
	overflow:hidden;
}
a{
	color: #333;
	text-decoration: none;
}
.container{
	text-align: center;
}
.clr{
	clear: both;
}
.container > header{
	padding: 30px 30px 10px 20px;
	margin: 0px 20px 10px 20px;
	display: block;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: left;
}
.container > header h1{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 35px;
	line-height: 35px;
	position: relative;
	font-weight: 400;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    padding: 0px 0px 5px 0px;
}
.radio-info span{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 25px;
	line-height: 25px;
	position: relative;
	font-weight: 300;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    padding: 0px 0px 5px 0px;
    opacity: .5;
}
.jp-state-playing .radio-info span{
    opacity: 1;
}
.container > header h2, p.info{
	font-size: 16px;
	font-style: italic;
	color: #f8f8f8;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}
.head {
	position: relative;
	top: 184px;
}
.radio-info {
	margin-top:10px;
}
#page{
	background-color: #000;
}
.logo {
	background: url(../images/logo.jpg) no-repeat center center;
	width: 106px;
	height: 105px;
	margin-left: 10%;
	position: relative;
}
ul.players {
	width: 80%;
	margin:0 auto;
	margin-top: 150px;
}
ul.players li {
	width: 33%;
	display: inline-block;
	text-align: center;
	margin:20px 0;
}

.background {
	/*animation: fade 1s linear forwards;
	-moz-animation: fade 1s linear forwards;
	-webkit-animation:  fade 1s linear forwards;*/
	animation: grow 1s linear forwards;
	-moz-animation: grow 1s linear forwards;
	-webkit-animation:  grow 1s linear forwards;
	position:fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	background-position: center;
	opacity: 1;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	/* mix-blend-mode: screen; */
	z-index: -1;
}
.pre {
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 1;
	overflow: hidden;

	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center center;
}
.background {
    transform-origin: 20% 80%;
    transition: transform 30s linear;
    transform: scale(1) rotate(0.1deg);
}
.background.zoom {
    transform: scale(1.4) rotate(0.1deg);
}

.background-link {
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
}

.background-link a {
	position:absolute;
	right: 20px;
	bottom: 20px;
	text-decoration: none;
	color:rgba(250, 250, 250, 0.75);
	font-size: 1.8em;
	/*mix-blend-mode: difference;*/
	padding: 10px 20px;
	background-color: rgba(100,100,100,.5)
}
/* Media Queries */
@media screen and (max-width: 934px) {
	ul.players li {
		width: 39%;
	}
}
@media screen and (max-width: 767px) {
	.container > header{
		text-align: center;
	}
	ul.players li {
		width: 90%;
	}
}


@-webkit-keyframes fade {
	0%  { opacity: 0; }
	100% { opacity: 1; }
}
@-moz-keyframes fade {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-o-keyframes fade {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fade {
	0%   { opacity: 0; }
	100% {  opacity: 1; }
}

@-webkit-keyframes grow {
	0%  { opacity: 0; }
	100% { opacity: 1; }
}
@-moz-keyframes grow {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-o-keyframes grow {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes grow {
	0%   { opacity: 0; }
	100% {  opacity: 1; }
}
