/* Audio Player */

body{
	margin: 0;
	padding: 0;
	height: 260px;
	width: 600px;
	background: #fff url(player-bk.jpg) no-repeat 20px 20px;
	position: absolute;
	left: 0;
	top: 0;
	font: 13px "Lucida Grande", Lucida, Verdana, sans-serif;
}

img {
	border-style: none;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

#tracks {
	position: absolute;
	left: 340px;
	top: 10px;
}

#tracks h2 {
	font-size: 18px;
	text-transform: capitalize;
}

a {
	color: #333;
	text-decoration: none;
	font-size: 11px;
}

a:hover {
	color: #ee2255;
	text-decoration: none;
}

#playcontrols {
	position: absolute;
	top: 214px;
	left: 142px;
	display: inline;
	width: 68px;
}

#playcontrols a#prev {
	width: 16px;
	height: 16px;
	display: block;
	float: left;
	margin-right: 4px;
	background: url(prev.png) 0 -16px;
}

#playcontrols a#prev:hover {
	background-position: 0 0;
}

#playcontrols a#playpause {
	width: 28px;
	height: 16px;
	background: url(playpause.png) no-repeat 0 -16px;
	display: block;
	float: left;
}

#playcontrols a#playpause:hover {
	background-position: 0 0;
}

#playcontrols a#next {
	width: 16px;
	height: 16px;
	display: block;
	float: right;
	background: url(next.png) 0 -16px;
}

#playcontrols a#next:hover {
	background-position: 0 0;
}
