/*
 *  TV Set Controls
 *  Author: Daniel Marino
 *  Last Modified: May 2010
 *
 */

#tv-set {
	height: 366px;
	margin: 40px 30px 0 80px;
	position: relative;
	width: 628px;
}

#tv-set :focus {
	outline: none;
}

#tv-set #player-frame {
	background: transparent url(player-frame.png) no-repeat;
	height: 366px;
	left: 0;
	position: absolute;
	top: 0;
	width: 628px;
}

#tv-set #player {
	display: block;
	height: 206px;
	left: 137px;
	position: absolute;
	top: 40px;
	width: 275px;
}

#tv-set .controls {
	left: 460px;
	position: absolute;
	top: 30px;
	width: 55px;
}

#tv-set .clips {
	left: 460px;
	position: absolute;
	top: 85px;
	width: 55px;
}

#tv-set .play, #tv-set .pause,
#tv-set .clips a {
	background: rgba(255, 255, 255, .4);
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, .25);
	-webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, .25);
	color: #111;
	cursor: pointer;
	display: block;
	font-family: verdana, helvetica, arial, sans-serif;
	font-size: 9px;
	font-weight: bold;
	float: left;
	height: 15px;
	line-height: 14px;
	margin: 0 5px 5px 0;
	text-align: center;
	text-decoration: none;
	width: 20px;
}

#tv-set .play:hover, #tv-set .pause:hover,
#tv-set .clips a:hover {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .5);
}

#tv-set .clips a.playing,
#tv-set .clips a.paused {
	background: rgba(0, 0, 0, .4);
	border: 1px solid rgba(0, 0, 0, .75);
	color: #fff;
}

#tv-set .play, #tv-set .pause {
	margin-bottom: 6px;
	width: 47px;
}

#tv-set .time {
	font-family: "Courier New", courier, verdana, helvetica, arial, sans-serif;
	font-size: 10px;
	line-height: 1.3;
	text-align: center;
	width: 50px;
}

#tv-set .mute,
#tv-set .track {
	display: none;
}
