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


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

	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:0;
		height:100%;
		width:100%;
		background: #e6e6e2 /*#333333;*/
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:100%;
		height:100%;
		background: #e6e6e2; /*#333333;*/ 
		text-decoration: none; 
		cursor: hand; 
		cursor: pointer;
	}
	
		.mosaic-item .mosaic-overlay {
			bottom:-80px;
			height:100px;
			opacity:0.8;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
			filter:alpha(opacity=80);
		}
		
			.mosaic-item .mosaic-overlay:hover {
				opacity:0.9;
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
				filter:alpha(opacity=90);
			}
		
