/**
 * Layout.css - Global styles
 */

body {
	font: 12px Arial, Helvetica, sans-serif;
}

.player-placeholder {
	width: 100%;
	height: 300px;
	background-color: black;
}


.player-controls {
	padding: 10px;
	width: 450px;
	height: 10px;
	background: url(../img/player-sprite.png) repeat-x;
	overflow:hidden;
}

.player-play {
	display: block;
	float: left;
	margin-right: 10px;
	width: 15px;
	height: 10px;
	background: url(../img/player-sprite.png) no-repeat 0 -40px;
	text-indent: -9999px;
	overflow: hidden;
	outline: none;
}

.paused .player-play {
	background-position: 0 -30px;
}

.player-mute {
	display: block;
	float: right;
	width: 15px;
	height: 10px;
	background: url(../img/mutesprite.png) no-repeat 0 0px;
	text-indent: -9999px;
	overflow: hidden;
	outline: none;
}

.muted {
	background-position: 0 -10px;
}

.player-duration {
	float: left;
	margin: 1px 0;
	width: 393px;
	height: 6px;
	background: url(../img/player-sprite.png) repeat-x 0 -50px;
	border: 1px solid white;
}

.player-elapsed {
	height: 6px;
	background: url(../img/player-sprite.png) repeat-x 0 -56px;
	font-size: 6px;
}
