@charset "utf-8";
/* CSS Document */
/* Mobile Layout: 480px and below. */
	  
    #iframe-wrapper2 {
        position: relative;
		top:    0;
        height: 210px;
        width:   300px;
		border: none;
		  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
    }

    #iframe2 {
        display: block;
        position: absolute;
        top:    0;
        bottom: 10;
        left:   0;
        right:  0;
        min-width:  210px;
        min-height: 180px;
		border: none;
}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

    #iframe-wrapper2 {
        position: relative;
		top:    0;
        height: 210px;
        width:   300px;
		border: none;
		 -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
    }

    #iframe2 {
        display: block;
        position: absolute;
        top:    0;
        bottom: 10;
        left:   0;
        right:  0;
        min-width:  295px;
        min-height: 210px;
		border: none;
}

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
 
    #iframe-wrapper2 {
        position: relative;
		top:    0;
        height: 210px;
        width:   300px;
		border: none;
		-webkit-overflow-scrolling: auto;
  overflow-y: hidden;
    }

    #iframe2 {
        display: block;
        position: absolute;
        top:    0;
        bottom: 10;
        left:   0;
        right:  0;
        min-width:  295px;
        min-height: 210px;
		border: none;
		overflow: scroll;
}
}

