﻿/* IFRAME RESIZABLE WRAPPER */
.iframeWrapper 
{
	position: relative;
	padding-top: 25px;
	height: 0;
}
.iframeWrapper.fixedHeight {
	padding-bottom: 0;
}
.iframeWrapper.r4x3 {
	padding-bottom: 75.00%; /* 4:3 */
}
.iframeWrapper.r16x9 {
	padding-bottom: 56.25%; /* 16:9 */
}
.iframeWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
