@charset "utf-8";
/* CSS Document */

.videoWrapper {
	position: relative;
	padding-bottom: 45.25%; /* 16:9 */
	padding-top: 25px;
	height: 500px;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/

}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*change as desired*/
	max-height:480px;/*if you change max-width, make sure the height has a ratio of 16:9*/
	width: 100%;
	height: 100%;
}

