/*
	Feuille de style CSS pour le player vidéo JW
*/

#wrapperPage {
/* Calque contenant le player et les calques relatifs à celui-ci */
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 10;
}

#wrapperOpaque {
/* Calque de fond opaque  */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	filter:alpha(opacity=40);
	-moz-opacity:0.4;
	opacity: 0.4;
}

#wrapperPlayer {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 11;
}

#playerBackground {
	background-color: #000;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity: 1;
	z-index: 12;
	width: 0%;
	height: 450px;
}

#wrapperMovie {
	display: none;
	background-color: #000;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	width: 650px;
	height: 448px;			/* Hauteur de la vidéo - 2 pixels de contour */
}

#playerClose {
	display: none;
	position: absolute;
	top: 250px;
	left: 750px;
	z-index: 20;
}

#playerPlaylist {
	position: absolute;
	top: 150px;
	left: 30px;
	z-index: 15;
	display: none;
	border-style: solid;
	border-color: #900;
	border-width: thin;
	width: 260px;
	height: 370px;
	padding: 3px;
	background-color: #000;
}

#playerControl {
	position: absolute;
	top: 500px;
	left: 400px;
	z-index: 15;
}

div.playlist_item {
	border-style: solid;
	border-color: #000;
	border-width: thin;
	margin-bottom: 10px;
	width: 100%;
	height: 92px;
}

div.playlist_item_hover {
	border-style: solid;
	border-color: #900;
	border-width: thin;
	cursor: pointer;
	margin-bottom: 10px;
	width: 100%;
	height: 92px;
}

