@charset "utf-8";
/* CSS Document */
.iframe-container {
    position: relative;
	max-width:50%;
	margin:10px auto 15px;
    padding-bottom: 38%;
    height: 0;
    overflow: hidden;
	border-style:solid;
	border-width:1px;
	box-shadow: 8px 8px 8px #AAA;
}
.iframe-container iframe {
    position: absolute;
    top:0;
    left: 0%;
    width: 100%;
    height: 100%;
	border-style:none;
}
@media screen and (max-width : 760px){
	.iframe-container {
		max-width:100%;
		padding-bottom:75%;
		box-shadow:none;
	}
}
