/* the overlayed element */ 
div.overlay { 
     
    /* growing background image */ 
    background-image:url(../capr_images/overlay/white2.png);  
		background-repeat:no-repeat; 
     
    /* dimensions after the growing animation finishes  */ 
    width:680px; 
    height:545px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding:30px;
} 
div.overlay2 { 
     
    /* growing background image */ 
    background-image:url(../capr_images/overlay/white2.png);  
		background-repeat:no-repeat; 
     
    /* dimensions after the growing animation finishes  */ 
    width:620px; 
    height:480px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding:30px;
}  
/* default close button positioned on upper right corner */ 
/*
.overlay div.close,
.overlay2 div.close { 
    background-image:url(../capr_images/overlay/close.png); 
    position:absolute; 
    right:65px;
    top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
*/ 
.close {
	background:url(http://static.flowplayer.org/img/overlay/close.png) no-repeat;
	position:absolute;
	top:2px;
	right:5px; 
	display:block;
	width:35px;
	height:35px;
	cursor:pointer;
} 
 
/* black */ 
div.overlay.black { 
    background:url(../capr_images/overlay/transparent.png) no-repeat !important; 
    color:#fff; 
} 
 
/* petrol */ 
div.overlay.petrol { 
    background:url(../capr_images/overlay/petrol.png) no-repeat !important; 
    color:#fff; 
} 
 
div.black h2, div.petrol h2 { 
    color:#ddd;         
}

#thumb {
  float: left;
  /*width:156px;*/
	text-align: center;
	border: 2px solid darkblue;
	margin-right: 0.5em;
}
#thumb:hover {
  background: lightblue;
}

.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    width:600px;     
    min-height:200px; 
    border:1px solid #666; 
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image:url(../capr_images/overlay/close.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
		z_index:10001;
}

#player {
	height:520px;
	display:block;
}