body {
	margin:  0;
	padding: 0;
	border:  0;
}

.container{
	display: block;
	text-align: center;
	margin-bottom: 50px;

	width: 586px;


	position: absolute;
	left:   0;
	right:  0;
	margin: 10% auto;
}

.tape{


/*	width:  240px;
	height: 200px;*/
	width:  586px;
	height: 379px;
	margin: 1px;
	position: relative;
	-webkit-transition: all .4s ease-in-out;	
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.tape-back{
	width:  100%;
	height: 100%;
	position: relative;
	background: transparent url(images/inner.png) no-repeat center center;
	background-size: contain;
}
.tape-wheel{
/*	width:   50px;
	height:  50px;
	top:     68px;*/
	width:  152px;
	height: 152px;
	top:     95px;
	position: absolute;
	background: transparent;
	border-radius: 50%;
}

.tape-wheel-left{
/*	left: 145px;*/
	left: 97px;
	box-shadow: 0 0 0 20px #000;
}

.tape-wheel-right{
/*	right: 145px;*/
	right: 99px;
}

@-webkit-keyframes rotateLeft {
	0% { -webkit-transform: rotate(0deg) translateZ(-1px); }
	100% { -webkit-transform: rotate(-360deg) translateZ(-1px); }
}
@-webkit-keyframes rotateRight {
	0% { -webkit-transform: rotate(0deg) translateZ(-1px); }
	100% { -webkit-transform: rotate(360deg) translateZ(-1px); }
}
@-moz-keyframes rotateLeft {
	0% { -moz-transform: rotate(0deg) translateZ(-1px); }
	100% { -moz-transform: rotate(-360deg) translateZ(-1px); }
}
@-moz-keyframes rotateRight {
	0% { -moz-transform: rotate(0deg) translateZ(-1px); }
	100% { -moz-transform: rotate(360deg) translateZ(-1px); }
}
@-o-keyframes rotateLeft {
	0% { -o-transform: rotate(0deg) translateZ(-1px); }
	100% { -o-transform: rotate(-360deg) translateZ(-1px); }
}
@-o-keyframes rotateRight {
	0% { -o-transform: rotate(0deg) translateZ(-1px); }
	100% { -o-transform: rotate(360deg) translateZ(-1px); }
}
@-ms-keyframes rotateLeft {
	0% { -ms-transform: rotate(0deg) translateZ(-1px); }
	100% { -ms-transform: rotate(-360deg) translateZ(-1px); }
}
@-ms-keyframes rotateRight {
	0% { -ms-transform: rotate(0deg) translateZ(-1px); }
	100% { -ms-transform: rotate(360deg) translateZ(-1px); }
}
@keyframes rotateLeft {
	0% { transform: rotate(0deg) translateZ(-1px); }
	100% { transform: rotate(-360deg) translateZ(-1px); }
}
@keyframes rotateRight {
	0% { transform: rotate(0deg) translateZ(-1px); }
	100% { transform: rotate(360deg) translateZ(-1px); }
}

.tape-wheel div{
	width: 100%;
	height: 100%;
	background: transparent url(images/wheel.png) no-repeat center center;
	background-size: contain;
}
.tape-front{
	width: 100%;
	height: 100%;
	position: absolute;
	background: transparent url(images/outer.png) no-repeat center center;
	background-size: contain;
	top: 0px;
	left: 0px;
}

#ctrls {
	display: block;
	width: 360px;
	height: 50px;
	left:   0;
	right:  0;
	margin: 0 auto;
}

ul.controls{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
/*	padding-left: 18px;
	margin-top:  -20px;*/
	text-align: left;
	z-index: 9999999000;
}

ul.controls li {
	display: block;
	float: left;
	width:  50px;
	height: 8px;
	line-height: 10px;
	text-align: center;
    padding: 16px;
	margin: 0;
    cursor: pointer;
    background: #ddd url(images/metal.jpg) no-repeat center top;
	box-shadow: 
		inset 0 0 0 1px rgba(0,0,0, 0.2), 
		inset 0 0 1px 2px rgba(255,255,255,0.9),
		inset 0 -6px 5px rgba(0,0,0,0.1),
		0 6px 7px rgba(0,0,0,0.3),
		0 4px 1px rgba(0,0,0,0.5);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

ul.controls li:first-child{
	border-radius: 4px 0 0 4px;
}

ul.controls li:last-child{
	border-radius: 0px 4px 4px 0px;
}

ul.controls li.control-play{
	width: 80px;
}

ul.controls li.control-active{
	margin-top: 2px;
	background-image: url(images/metal-dark.jpg);
	box-shadow: 
		inset 0 0 0 1px rgba(0,0,0, 0.18), 
		inset 0 0 1px 2px rgba(255,255,255,0.5),
		inset 0 -6px 5px rgba(0,0,0,0.1),
		0 6px 7px rgba(0,0,0,0.3),
		0 2px 1px rgba(0,0,0,0.5);

}

ul.controls li,
.volume-wrap:after{
	font-size:   12px;
	font-weight: 300;
	letter-spacing: 1px;
	color: #666;
	text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.tape-front div {
	position: relative;
	top:   52px;
	left: 115px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: lighter;
	font-size:   17px;
	width:  340px;
	height:  60px;
	overflow: hidden;
	text-align: left;
	line-height: 26px;
}
.tape-front a {
	color: #888;
}
.tape-front a:link    { text-decoration: none; }
.tape-front a:hover   { text-decoration: underline; }