﻿/* #Default Gallery
================================================== */
	a.defaultgallery-img {
		background-size: cover !important;
		display:inline-block;
		margin: 5px;
		-webkit-transition: all .3s ease-in-out;
  		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
	  	transition: all .3s ease-in-out;
	}
	
	a.defaultgallery-img img {
		display: none;
	}
	
	a.defaultgallery-img:hover {
		opacity: 0.75;
		-webkit-transition: all .3s ease-in-out;
  		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
	  	transition: all .3s ease-in-out;	
		cursor:-webkit-zoom-in;	
	}
