/*
	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:210px;
	border:10px solid #82c7ef;
	-webkit-box-shadow:0 5px 10px rgba(0,0,0,5);
	background-color: #a5c720;
	background-image: url(../images/progress.gif);
	background-repeat: no-repeat;
	background-position: center center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 160px;
}

.mosaic-block.two{
	margin:0 20px;
}

.mosaic-block.three{
	margin:0 20px 0 0;	
}

	.mosaic-backdrop {
	display:none;
	position:absolute;
	top:0;
	height:100%;
	width:100%;
	background-color: #a5c720;
	}
	
	.mosaic-overlay {
	display:none;
	z-index:5;
	position:absolute;
	width:100%;
	height:100%;
	overflow: hidden;
	background-color: #fff;
	opacity:0.9;
	}
	
		/*** Custom Animation Styles (You can remove/add any styles below) ***/
		.circle .mosaic-overlay {
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	display:none;
	background-image: url(../images/hover-magnify.png);
	background-repeat: no-repeat;
	background-position: center center;
		}
		
		.fade .mosaic-overlay {
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	background-image: url(../images/bg-black.png);
		}
		
		.bar .mosaic-overlay {
	bottom:-160px;
	height:160px;
	background-image: url(../images/bg-black.png);
		}
		
		.bar2 .mosaic-overlay {
	bottom:-157px;
	height:200px;
	opacity:0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter:alpha(opacity=80);
		}
		
			.bar2 .mosaic-overlay:hover {
	opacity:.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter:alpha(opacity=80);
			}
		
		.bar3 .mosaic-overlay {
	top:-210px;
	height:210px;
	background-image: url(../images/bg-black.png);
		}
