/**
 * Responsive Video Embed CSS
 *
 * CSS needed to automatically resize embedded videos. This method was originally 
 * invented by Anders M. Andersen at http://amobil.se/2011/11/responsive-embeds/
 * LESS CSS processed locally with OS X Less App and output as minified CSS.
 */

.rve-embed-container {

	/** Dynamic responsive container */
	.rve-embed-container-inner {
		position:relative !important;
		padding-bottom:56.25% !important; /* 16/9 ratio */
		padding-top:30px !important; /* IE6 workaround*/
		height:0 !important;
		overflow:hidden !important;
	}
	
	/** Embed elements */
	iframe,
	object,
	embed {
		position:absolute !important;
		top:0 !important;
		left:0 !important;
		width:100% !important;
		height:100% !important;
	}
}