@CHARSET "UTF-8";

div.playerWindow {
	display:none;
	
	background-color:#CCE6FF;
	border:1px solid black;
	color:#333333;
	
	position:fixed;
	top: 25%;
	left:550px;
	margin-left:-300px;
	padding:12px;
	
	width:320px;
}
.close{
	cursor: pointer;
	font-weight: bold;
	float: right;
}

.jqDrag {
	width: 100%;
	cursor:move;
}
.playerOverlay {
	background-color:#000000;
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html div.playerWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
     left: expression(Math.round(50 *(document.documentElement.offsetWidth || document.body.clientWidth) /100) + 'px'); 
}




