/*
	Mosaic - Sliding Boxes and Captions jQuery Plugin
	Version 1.0.1
	www.buildinternet.com/project/mosaic
	
	By Sam Dunn / One Mighty Roar (www.onemightyroar.com)
	Released under MIT License / GPL License
*/

* {
	margin:0;
	padding:0;
	border:none;
	outline:none;
}

/*General Mosaic Styles*/
.mosaic-block {
	float:right;
	position:relative;
	overflow:	hidden;
	width:150px;
	height:150px;
	margin:10px;
	background:#111 url(../img/progress.gif) no-repeat center center;
	border::1px solid #fff;
	-webkit-box-shadow:0 10px 3px rgba(0,0,0,0.5);
}


	
	
	.mosaic-overlay {
		display:	none;
		z-index:5;
		position:	absolute;
		width:100%;
		height:100%;	
		background:#000000;
		
	}
	
		/*** Custom Animation Styles (You can remove/add any styles below) ***/
	
		
		.fade .mosaic-overlay {
			background:url(../img/hover-magnify.png) no-repeat center center;
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
			filter:alpha(opacity=10);
			background:url(../img/bg-black.png);
		}
		
	
		
	
	
		/*** End Animation Styles ***/
