
/*----- mod embed 16:9  -------*/
.embed-container-16-9 {
    position: relative;
	max-width: 100%;
	height: 0;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0;
    overflow: hidden;
}
.embed-container-16-9 iframe, .embed-container-16-9 object,  .embed-container-16-9 embed {
    position: absolute;
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
}

/*----- mod embed 3:2  -------*/
.embed-container-3-2 {
    position: relative;
	max-width: 100%;
	height: 0;
    padding-bottom: 66.67%; /* 3:2 */
    padding-top: 0;
    overflow: hidden;
}
.embed-container-3-2 iframe, .embed-container-3-2 object,  .embed-container-3-2 embed {
    position: absolute;
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
}

/*----- mod embed 4:3  -------*/
.embed-container-4-3 {
    position: relative;
	max-width: 100%;
	height: 0;
    padding-bottom: 75.00%; /* 4:3 */
    padding-top: 0;
    overflow: hidden;
}
.embed-container-4-3 iframe, .embed-container-4-3 object,  .embed-container-4-3 embed {
    position: absolute;
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
}

/*----- mod embed 1:1  -------*/
.embed-container-1-1 {
    position: relative;
	max-width: 100%;
	height: 0;
    padding-bottom: 100.00%; /* 1:1 */
    padding-top: 0;
    overflow: hidden;
}
.embed-container-1-1 iframe, .embed-container-1-1 object,  .embed-container-1-1 embed {
    position: absolute;
	width: 100%;
    height: 100%;
	top: 0;
    left: 0;
}
