@charset "utf-8";
/* CSS Document */

.bigVideoClass { 
	 display:none;
	 position:absolute;
	 padding-top: 50px;
	 top:0px;
	 left:0px;
	 width:100%;
	 height:100%;
	 z-index: 1001;
}
	
.bigVideoBackground {
	position:fixed; 
	top:0; 
	left:0; 
	background-color:#555;
	filter: alpha(opacity=97);
	opacity: 0.97;
	z-index:-1; 
	width:100%; 
	height:100%; 
}

.bigVideoHover {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 320px;
	z-index: 1002;
}

.bigVideoClose {
	position: absolute;
	top: 0px;
	left: 240px;
	z-index: 1002;
}

#bigVideoEnv {
	position:absolute;
	top: 38px;
	left: 0;
	z-index: 1002;
}

.videoFrame {
	width: 320px;
	height: 179px;
}

@media only screen and (min-width: 708px) { /* 1024px monitors */
	
	.bigVideoClass { 
		 padding-top: 50px;
	}
	
	.bigVideoHover {
		width: 708px;
	}
	
	.bigVideoClose {
		left: 628px;
	}

	.videoFrame {
		width: 708px;
		height: 398px;
	}

}

@media only screen and (min-width: 1140px) { /* 1280px monitors */

	.bigVideoClass { 
		 padding-top: 50px;
	}
	
	.bigVideoHover {
		width: 1120px;
	}
	
	.bigVideoClose {
		left: 1040px;
	}

	.videoFrame {
		width: 1120px;
		height: 630px;
	}

}


