/*
	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 {
	position:relative;
	overflow:hidden;
	width:245px;
	height:375px;
-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
-webkit-border-radius: 0 8px 0 8px;
-khtml-border-radius: 0 8px 0 8px;
-moz-border-radius: 0 8px 0 8px;
border-radius:  0 8px 0 8px;
border: 1px solid #e0e0e0;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
background: #fff;

}

@media (min-width:500px) {
.mosaic-block {
	float:left;
	position:relative;
	overflow:hidden;
	width:244px;
	height:375px;
-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
-webkit-border-radius: 0 8px 0 8px;
-khtml-border-radius: 0 8px 0 8px;
-moz-border-radius: 0 8px 0 8px;
border-radius:  0 8px 0 8px;
border: 1px solid #e0e0e0;
margin-bottom: 36px;
margin-left: 18px;
margin-right: 18px;
background: #fff;
}

}

/*
	margin:5px;
	border:1px solid #fff;
	background:#111 url(../i/progress.gif) no-repeat center center;

*/


	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:10px;
		left:10px;
		height:100%;
		width:100%;
		background:#fff;
	}
	
	.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) ***/
		.circle .mosaic-overlay {
			background:url(../i/hover-magnify.png) no-repeat center center;
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			display:none;
		}
		
		.fade .mosaic-overlay {
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			background:url(../i/bg-black.png);
		}
		
		.bar .mosaic-overlay {
			bottom:-70px;
			height:70px;
		}

/*		background:url(../i/bg-black.png);  */

		
		.bar2 .mosaic-overlay {
			bottom:-50px;
			height:100px;
			opacity:0.8;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
			filter:alpha(opacity=80);
		}
		
			.bar2 .mosaic-overlay:hover {
				opacity:1;
				-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
				filter:alpha(opacity=100);
			}
		
		.bar3 .mosaic-overlay {
			top:-100px;
			height:100px;
			background:url(../i/bg-black.png);
		}
		/*** End Animation Styles ***/
