/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
    position: relative;
	right: 20px;
	top: 60px;

    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    min-width:500px;     
    min-height:100px; 
    border:1px solid #666;
	
	padding: 5px 5px 10px 5px;
	margin:0;
	
	text-align: left;
	text-transform: none;
	color: #fff;
	
	float:right;
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(img/overlay/close.png); 
    position:absolute; 
    right:-15px; 
    bottom:-15px; 
    cursor:pointer; 
    height:0px; 
    width:0px; 
}
.loading { 
    position:absolute;
	width:100%; 
	height:100%; 
	background:#FFFFFF url(img/overlay/loading.gif) 50% 50% no-repeat; 
	left:0px; 
	top:0px; 
	opacity:0.8; 
	filter:alpha(opacity=80)
}
/* the overlayed element */ 
.video_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
    position: relative;

    /* place overlay on top of other elements */ 
    z-index:0; 
     
    /* styling */ 
    background-color:#333; 
     
    min-width:560px;     
    min-height:300px; 
    border:0px solid #666;
	
	padding: 5px 5px 10px 5px;
	margin:0;
	
	text-align: left;
	text-transform: none;
	color: #fff;
	
	float:right;
	overflow:hidden;
} 
.video_overlay textarea {  
	border:1px solid #1F1F1F; 
	width:90%; 
	height: 200px; 
	background:#373737; 
	padding:10px; 
	color:#CCCCCC; 
	margin-left: 15px; 
	float: left; 
	margin-top: 15px;
}
/* close button positioned on upper right corner */ 
.video_overlay .close { 
    background-image:url(images/forplayer/close.png); 
    position:absolute; 
    right:15px; 
    top:15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

