@import url(../fonts/fonts.css);
html {
    height: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	font: 16px 'Droid Arabic Kufi', serif;
	height: 100%;
	margin: 0;
	padding: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
	background: #ffffff; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

h1 {
	font-size: 1.7em;
	margin: 0 auto;
}
h2 {
	font-size: 1.5em;
	margin: 0 auto;
}
a {
	color: inherit;
	text-decoration: none;
}


header h1 {
    text-align: center;
    background: -webkit-gradient( linear, right top, right bottom, from(#424175), to(#4241751a) );
    color: white;
    text-shadow: 0px 0px 10px black;
    border-bottom: 1px solid black;
}


header h1 a {
	display: block;
}

#channels-list {
	padding: 1em;
}
section h2:first-child {
	background: -webkit-gradient(linear, right top, left top, from(white), to(rgba(255, 255, 255, 0)));
	margin-bottom: 2px;
	padding-right: 15px;
	border-right: 5px solid lightgreen;
	color: rgb(148, 99, 99);
}

#channels-list nav ul{
	padding: 0;
	border: 1px solid white;
	list-style: none;
	margin: 0 15px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 10px;
	box-shadow: inset 0 0px 4px black;
	text-align: center;
}
#channels-list nav ul li a {
	display: block;
	padding: 5px 15px 5px 0px;
	border-bottom: 1px solid #999;
	border-top: 1px solid white;
}
#channels-list nav ul li:first-child a {
	border-top: none;
}
#channels-list nav ul li:last-child a {
	border-bottom: none;
}

#player #markup {
    background-color: rgba(255, 255, 255, 0.4);
    margin: 20px auto;
    height: 256px;
    width: 256px;
    border-radius: 256px;
	position: relative;
}

#player {
	padding: 16px;
	display: none;
}

#player #markup span {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 250px;
    font-size: 1.5em; 
}
#player #markup.ready span a {
	display: block;
	border-radius: 256px;
}
#player #markup.loading {
	border: 1px solid orange;
	box-shadow: inset 0px 0px 10px orange;
}
#player #markup.loading span a {
    color: orange;
    text-shadow: -1px 0px 2px black;
}

#player #markup.ready {
	border: 1px solid #0066FF;
	box-shadow: inset 0px 0px 10px #0066FF;
}
#player #markup.ready span a {
    color: #0066FF;
    text-shadow: -1px 0px 2px black;
}

#player #markup.playing {
	border: 1px solid #009900;
	box-shadow: inset 0px 0px 10px #009900;
}
#player #markup.playing span a {
    color: #CC0033;
    text-shadow: -1px 0px 2px orange;
}

footer {
	font-size: .75em;
	text-align: center;
	color: darkgray;
	text-shadow: 0px 1px 1px white;
	border-top: 1px solid darkgray;
	box-shadow: inset 0px 1px 1px white;
}