.mhVideoModal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*display: none;*/
	visibility: hidden;
	z-index: 2000;
}

.mhModalCover{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	filter: alpha(opacity=70);
	background-color: #000000;
	cursor: pointer;
}

.mhModalClose{
	position: absolute;
	right: 5px;
	top: 2px;
	opacity: 0.5;
	cursor: pointer;
}

.mhModalClose:hover {
	opacity: 0.7;
}

.mhModalVideo{
	position: absolute;
	width: 900px;
	padding: 20px;
	background-color: #ffffff;
	margin-left: -470px;
	left: 50%;
	top: 20px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.flowplayer{
	margin: 0px;
}

@media (min-width: 1200px) {
	.mhModalVideo{
		width: 960px;
		margin-left: -500px;
	}
}

@media (max-width: 979px) {
	.mhModalVideo{
		width: 684px;
		margin-left: -362px;
	}
}


@media (max-width: 767px) {
	.mhModalVideo{
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		
		width: 100%;
		margin-left: 0;
		left: 0;
	}
}