/* Video system (general) */

body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:85%; }

.videoPlayer {
	/*background-color: white;*/
	/*border: 1px solid #ff0000;*/
	background: #050505;
	width: 624px;
}

.videoPlayer .videoFlash {
	text-align: center;
	display: block;
}

.videoPlayer .videoThumbnails {
	padding: 5px;
	margin: 5px;
	background-color: #0a0a0a;
	border: 2px solid #1B1B1B;
	min-height: 135px;
	overflow:auto;
}

/* Sample CSS for thumbs on the left */
.videoPlayer.thumbsLeft {
	width: 540px;
}

.videoPlayer.thumbsLeft .videoThumbnails {
	width: 110px;
	height: 242px;
	float: left;
}

/* Sample CSS for thumbs on the right */
.videoPlayer.thumbsRight {
	width: 540px;
}

.videoPlayer.thumbsRight .videoThumbnails {
	width: 110px;
	height: 242px;
	float: right;
}


.thumbnail-small, .thumbnail-med, .thumbnail-large {
	position:relative;
	border: 1px solid #AAAAAA;
	float: left;
	margin: 2px 5px;
	padding: 1px;
}

.thumbnail-small {
	width: 80px;
	height: 60px;
}

.thumbnail-med {
	width: 160px;
	height: 120px;
}

.videoThumbnails img {
	border:0;
}

.videoThumbnails .videoFilename {
	display:none;
	position: absolute;
	bottom: 0px;
	height: 50%;
	font-size: 0.8em;
	font-weight:bold;
	padding: 2px;
	text-align:center;
	left: 0px;
	right:0px;
	background-color: black;
	color: white;
	opacity:0.8;
	filter:alpha(opacity=80);
	overflow:hidden;
}

.videoThumbnails .videoThumbLink {
	text-decoration: none;
	color:black;
}


.videoThumbnails .videoThumbLink:hover .videoFilename {
	display:block;
}

#floatingPlayer {
	position: absolute;
	top: 200px;
	border: 2px solid black;
	z-index: 201;
	background: #0a0a0a url('/video/_images/waiting.gif') center center no-repeat;
	border:2px solid  #1B1B1B;
}

#videoFlash { background-color: #0a0a0a; }

#floatingPlayer #floatingClose {
	display:block;
	z-index: 202;
	text-align: right;
	color: white;
	text-decoration: none;
	padding: 0 5px 2px 5px;
	font-weight:bold;
	background-color: #1F1F1F;
	border-bottom: 1px solid #333333;
}

#floatingPlayer #floatingTitle {
	float: left;
	color: #FFFFFF;
	font-size: 0.8em;
	font-weight:normal;
	padding: 2px;
}

#curtain {
	position: fixed;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background-color:#000000;
	opacity:0;
	filter:alpha(opacity=0);
	z-index: 200;
}


.clearer { clear:both; }
.nothingToDisplay { color: white; padding: 20px; }
