/*
	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:100%;
	height:100%;
	margin:0px;
	background:#FFFFFF url(../../images/progress.gif) no-repeat center center;
	border:0px solid #fff;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
}

	.mosaic-backdrop {
	display:none;
	position:absolute;
	top:0;
	width:100%;
	background-color: #FFFFFF;
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:100%;
	}

		/*** Custom Animation Styles (You can remove/add any styles below) ***/

		.bar .mosaic-overlay {
	bottom:-20px;
	height:20px;
	background-image: url(../../images/bg-black.png);
	font-weight: bold;
	color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
		}
		
		.bar2 .mosaic-overlay {
			bottom:-255px;
			height:255px;
		}
		

		/*** End Animation Styles ***/
