/*
	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-top {
	float:left;
	position:relative;
	overflow:hidden;
	width:150px;
	height:150px;
	margin-left:10px;
	margin-bottom:10px;
	padding:0px 15px 20px 5px;
	background:#fff url(/images/mosaic/progress.gif) no-repeat center center;
	border:5px solid #DDD;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
}

.mosaic-block {
	float:left;
	position:relative;
	overflow:hidden;
	width:191px;
	height:191px;
	margin-left:10px;
	margin-bottom:10px;
	padding:0px 15px 20px 5px;
	background:#fff url(/images/mosaic/progress.gif) no-repeat center center;
	border:5px solid #DDD;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
}

		
		
	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:10px;
		height:100%;
		width:100%;
		background:#fff;
		text-align:center;
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:100%;
		height:100%;
		padding-top:10px;
	}
	
		/*** Custom Animation Styles (You can remove/add any styles below) ***/
		
		.bar .mosaic-overlay {
			bottom:-100px;
			height:40px;
			background:url(/images/mosaic/bg-white.png);
		}
		
		/*** End Animation Styles ***/
