@charset "utf-8";
/* CSS Document */

.videoList {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	  
	  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}

.videoList li { 
-ms-flex-preferred-size: 49%;
               flex-basis: 49%;
			   max-width:49%; margin-bottom: 20px;
}

@media screen and (max-width:736px) {
.videoList li { 
-ms-flex-preferred-size: 100%;
               flex-basis: 100%;
			   max-width:100%;
			   margin-bottom:15px;
}	
}