/*
	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:300px;
	height:200px;
	margin:0 30px 30px 0;
	background:#111 url(../images/progress.gif) no-repeat center center;
	-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);}
	
	.mosaic-block a{ text-decoration:none !important}
	.mosaic-block a span{
		position:absolute;
		bottom:5px;
		left:84px;
		padding:5px;
		font-size:14px;
		font-weight:400;
		text-decoration:none;
		background:#006485;
		font-family: 'Open Sans', sans-serif;
		color:#fff;}
	
	.mosaic-backdrop {
		display:none;
		position:absolute;
		top:0;
		height:100%;
		width:100%;
		background:#111;
	}
	
	.mosaic-overlay {
		display:none;
		z-index:5;
		position:absolute;
		width:300px;
		height:200px;
		top:0;
		right:0;
		background:#111;
	}
	
		/*** Custom Animation Styles (You can remove/add any styles below) ***/
		.circle .mosaic-overlay {
			background:url(../images/hover-magnify_blue.png) no-repeat center center;
			opacity:0;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
			filter:alpha(opacity=00);
			display:none;
		}


@media only screen and (max-device-width:500px), only screen and (max-width:500px) {
.mosaic-block a,a.mosaic-overlady{width: 220px;height: 130px;}
.mosaic-block,.mosaic-backdrop,.mosaic-block, .circle,.mosaic-backdrop img{width: 220px;height: 147px;}
.mosaic-block{margin: 10px;}
.nomargin{margin: 10px;}
}

@media only screen and (min-width: 768px) and (max-width: 1025px), only screen and (min-device-width: 768px) and (max-device-width: 1025px) {
.mosaic-block a,a.mosaic-overlady{width: 290px;height: 195px;}
.mosaic-block, .circle,.mosaic-backdrop img{width: 290px;height: 195px;}
}
		