@charset "utf-8";

	.popover, video { cursor: pointer; }
	.hide-pop { display: none; }
	.pop-title { color: #F05323; font: 20px "Avenir LT W01 55 Roman", Verdana, Arial, sans-serif; text-align: center; margin-bottom: 20px; }
	#overlay { 
		display: none; 
		position: fixed; 
		top: 0; left: 0; 
		width: 100%; height: 100%; 
		background-color: rgba(70, 70, 70, .5); 
		cursor: pointer;
		z-index: 101;
	}
	
	#overlay_box { 
		display: none; 
		background-color: #fff; 
		position: absolute;
		left: 50%; 
    outline: none;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 12px black;
    -moz-background-clip: padding;
    -o-background-clip: padding-box;
    -webkit-background-clip: padding;
    background-clip: padding-box;
		overflow: hidden;
		z-index: 102;
	}
	
	#overlay_box_inner {
		overflow-y: auto;
		margin: 40px 0 20px 0;
		padding: 0 30px 0 30px;
	}
	
	#pop_close {
		position: absolute;
		top: 10px;
		right: 10px;
		height: 20px;
		width: 20px;
		background: url("https://cdn.staticsfly.com/i/sflystore/imgDialogClose.png") top left no-repeat;
		cursor: pointer;
		text-indent: -9999px;
		z-index: 999;
	}