/*
	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;
	position:relative;
	overflow:hidden;
	padding: 13px;	
	border: 1px solid #d5d5d5;	
	height: 200px;
	margin-bottom: 20px;

	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.10);
	   -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.10);
	   		box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.10);
}

.mosaic-backdrop img{
  	width:100%;	
}


	.mosaic-backdrop {
		display:none;
		width:100%;		
		overflow: hidden;
		position: relative;
		height: 200px;
	}
	
	.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) ***/								
		.bar .mosaic-overlay {
			bottom: -40px;
			left: 0;
			height: 75px;
			width: 100%;
			/*margin: 0 18px;*/
			background: rgba(250, 250, 250, 0.75);
		}			

		.bar .mosaic-overlay:hover{
			text-decoration: none;
			color: #333;
		}
		/*** End Animation Styles ***/
