/* =============================================================================
   GALLERY
   ========================================================================== */
.gallery_container{
	position: relative;
}
	.gallery_container ul li{
		margin: 10px 5px 0 5px;
		overflow: hidden;
	}
	.gallery_container ul li img{		
	}
	.gallery_container ul li img:hover{
		transition: opacity .3s cubic-bezier(.5,.5,.5,.5);
		opacity: 0.6;
	    filter: alpha(opacity=60); /* For IE8 and earlier */
	}
/* =============================================================================
   MAKE COVER IMG
   ========================================================================== */
.gallery_image_wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
  .gallery_image_wrapper .gallery_image_img{
    position: absolute;
    display: table-cell;
    top: -9999px;
      bottom: -9999px;
      left: -9999px;
      right: -9999px;
      margin: auto;
  }
  .gallery_image_wide .gallery_image_img{
    height: 100%;
    max-width: none;
  }
  .gallery_image_tall .gallery_image_img{
    width: 100%;
  }

/* =============================================================================
   ----------/////////  MEDIA QUERRIES  /////////------------
   ========================================================================== */
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 979px) {
}
@media screen and (max-width: 859px) {	
}
@media screen and (max-width: 767px) {	
}
@media screen and (max-width: 640px) {	
}
@media screen and (max-width: 479px) {	
}