@charset "utf-8";

/* player */

#player {
	position:relative; /* offset parent */
	width: 650px;
	height: 500px;
	margin: 0px 0px 0px 4%;
	padding: 0px;
	float: left;
	/* centered */
	text-align:center;
	/* some "skinning" */
	background-color: #000;
	overflow: hidden;
}

#window {
	position:absolute;
	top:0px;
	left:0px;
	width:650px;
	height:460px;
	background-color:#000;	
}

#play-pause-btn {
	position:absolute;
	bottom:0px;
	left:0px;
	width:40px;
	height:40px;
	background:#000 url(../__imgs/furn/play-pause-btn.gif) 0px 0px no-repeat;
	cursor:pointer;
}

#seekbar {
	position:absolute;
	bottom:0px;
	left:41px;
	width:534px;
	height:6px;
	background:#d61920 url(../__imgs/furn/seekbar-bg.gif) 0px 0px no-repeat;
	border:17px solid #000;
}

#mute-btn {
	position:absolute;
	bottom:0px;
	right:0px;
	width:40px;
	height:40px;
	background:#000 url(../__imgs/furn/mute-btn.gif) 0px 0px no-repeat;
	cursor:pointer;
}

/* thumbnails */
#thumbnails {
	width:150px;
	float:left;
	list-style:none;
}

#thumbnails li {
	position:relative;
	float:left;
	width:35px;
	height:35px;
	margin:0px 0px 5px 5px;
	border:5px solid #000;
	overflow:hidden;
}

#thumbnails li.selected {
	border:5px solid #d61920;
}

#thumbnails li img {
	display:block;
	position:relative;
	top:50%;
	left:50%;
	margin:-32px 0 0 -58px;
}