/* Custom CSS to make YouTube Videos responsive. https://www.ostraining.com/blog/coding/responsive-videos/ Note You must surround the YouTube embed code with <div class="video-responsive"> and </div>*/
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/*End of custom CSS for Youtube Responsive*/

/* Custom CSS to make my Banner modules display at 100% width*/
.my-banner {
	min-width: 100%;
}
/* End of custom CSS for My-Banner*/