html, body {
	background: #333 url(../images/bg.jpg);
	color: #222;
	font-family: 'Titillium Text Regular', helvetica, arial, sans-serif;
	font-size: 14px;
	overflow-y: scroll;
}

#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: url(../images/beatlesLogo.png) 20px 20px no-repeat;
	text-align: right;
}

#header .wrap {
	padding: 15px 20px;
	color: #fff;
	text-shadow: 0 2px 5px #111;
}

#header span {
	font-size: 12px;
	color: #aaa;
}

#header a {
	display: inline-block;
	padding: 5px 10px;
	background: #555; /* Old browsers */
	background: -moz-linear-gradient(top, #777777 0%, #555555 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777777), color-stop(100%,#555555)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #777777 0%,#555555 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #777777 0%,#555555 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #777777 0%,#555555 100%); /* IE10+ */
	background: linear-gradient(top, #777777 0%,#555555 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#555555',GradientType=0 ); /* IE6-9 */	color: #fff;
	text-decoration: none;
	border-radius: 20px;
	margin: 5px -10px;
	border-bottom: 3px solid #2c2c2c;
	text-shadow: 0 1px 0 #111;
}

#header a:hover {
	background: #777; /* Old browsers */
	background: -moz-linear-gradient(top,  #888888 0%, #5f5f5f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888888), color-stop(100%,#5f5f5f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #888888 0%,#5f5f5f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #888888 0%,#5f5f5f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #888888 0%,#5f5f5f 100%); /* IE10+ */
	background: linear-gradient(top,  #888888 0%,#5f5f5f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888888', endColorstr='#5f5f5f',GradientType=0 ); /* IE6-9 */
}

#container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 70px;
	/* background: #fff; */
	border-radius: 5px;
	/* box-shadow: 0 5px 30px #888; */
}

#container .disc {
	width: 200px;
	height: 200px;
	background-color: #aaa;
	float: left;
	box-shadow: 0 5px 40px #111;
	-moz-backface-visibility: hidden;
}

#container .disc:hover {
	box-shadow: 0 0 10px #00d8ff;
}

#container .disc .glass {
	width: 200px;
	height: 200px;
	background: url(../images/glass.png) no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

#footer {
	position: fixed;
	bottom: 10px;
	right: 15px;
	text-align: center;
	color: #555;
	font-size: 12px;
}

#footer a {
	color: #555;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}