/*
	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
*/


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

.details{ margin: 5px 5px; }	
.mosaic-block .title{
	font-size: 1.3em;
	margin: 5px; 
	color:#fff; 
	text-shadow:1px 1px 0 rgb(0,0,0); 
}
.mosaic-block p{ color:#fff; font-size: 0.8em;}
.mosaic-block p a{ color:#000; outline:none;}
.mosaic-block p a:hover{ color:#fff;}

	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:0;
		height:100%;
		width:100%;
		background:#00a8a8;
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:100%;
		height:100%;
		background:#00a8a8;
	}
		.efeito .mosaic-overlay {
			bottom:-50px;
			height:110px;
			opacity:0.7;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
			filter:alpha(opacity=70);
		}
		
			.efeito .mosaic-overlay:hover {
				opacity:1;
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
				filter:alpha(opacity=100);
			}
		
	
		/*** End Animation Styles ***/
