/*
	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:left;
	position:relative;
	overflow:hidden;
	width: 416px;
	height:230px;
	margin:10px 40px 10px 0px;
	background:#f5f5f5 url(../img/progress.gif) no-repeat center center;
	border:1px solid #fff;
	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 4px 0px #888;

}
.mosaic-block-two {
	float:left;
	position:relative;
	overflow:hidden;
	width: 457px;
	height:250px;
	margin:10px 40px 30px 0px;
	background:#f5f5f5 url(../img/progress.gif) no-repeat center center;
	border:1px solid #fff;
	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 4px 0px #888;

}
.mosaic-block-three {
	float:left;
	position:relative;
	overflow:hidden;
	width: 291px;
	height:250px;
	margin:10px 40px 30px 0px;
	background:#f5f5f5 url(../img/progress.gif) no-repeat center center;
	border:1px solid #fff;
	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 4px 0px #888;
}
.mosaic-block-four{
	float:left;
	position:relative;
	overflow:hidden;
	width: 208px;
	height:208px;
	margin:10px 40px 30px 0px;
	background:#f5f5f5 url(../img/progress.gif) no-repeat center center;
	border:1px solid #fff;
	-moz-box-shadow: 0 0 5px 5px #888;
	-webkit-box-shadow: 0 0 5px 5px #888;
	box-shadow: 0 0 4px 0px #888;

}

	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:0;
		height:100%;
		width:100%;
		background:#111;
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:100%;
		height:100%;
		background:#111;
	}
	
		/*** Custom Animation Styles (You can remove/add any styles below) ***/
		.magnifier .mosaic-overlay {
			background:url(../img/hover-magnify.png) no-repeat center center;
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			display:none;
		}	
		
		.magnifier2 .mosaic-overlay {
			background:url(../img/hover-magnify.png) no-repeat center 40%;
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			display:none;
		}
		
		.magnifier2 .details a{
			background:none;
		}		

		.magnifier2 .details a.pf_title_link{
			text-transform:uppercase; 
			font-weight:bold;
			color:#fff;
			background:url(../img/bg-black.png);
			text-align:center;
			height:35px;
			width:100%;
			line-height:35px;
			position:absolute;
			bottom:0;
			margin:0 0 0 -20px;
			z-index:5;
			visibility:hidden;
		}
		
			.magnifier2:hover .details a{
			visibility:visible;
		}		
		
		.fade .mosaic-overlay {
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			background:url(../img/bg-black.png);
		}
		
		.bar .mosaic-overlay {
			bottom:-100px;
			height:100px;
			background:url(../img/bg-black.png);
		}
		
		.bar2 .mosaic-overlay {
			bottom:-60px;
			height:100px;
			opacity:0.8;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
			filter:alpha(opacity=80);
		}
				
		.cover2 .mosaic-overlay {
			background:url(../img/bg-black.png);
		}
		
		.cover3 .mosaic-overlay {
			background:url(../img/bg-black.png);
		}
		
		.bar2 .details{
			margin:11px 20px;
		}
		
		.bar2 .details .pf_item_title{
			margin-bottom:10px;
		}
		
			.bar2 .mosaic-overlay:hover {
				opacity:1;
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
				filter:alpha(opacity=100);
			}
		
		.bar3 .mosaic-overlay {
			top:-100px;
			height:100px;
			background:url(../img/bg-black.png);
		}
		/*** End Animation Styles ***/
