/*-------------------------
	Simple reset
--------------------------*/
*{
	margin:0;
	padding:0;
}
/*----------------------------
	Thumbnails
-----------------------------*/

.thumbs{
	padding:0;
	text-align: center;
}

.thumbs a{
	/*width:120px;*/
	height:140px;
	display:inline-block;
	border:1px solid #99994D;
	box-shadow:0 1px 6px rgba(0,0,0,0.5);
	border-radius:2px;
	margin: 3px 3px 3px;
	position:relative;
	text-decoration:none;
	background-repeat: no-repeat;
	
	background-size:cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
}

.thumbs a:after{ 
	background-color:#006;
	opacity:0.7;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color:#FFF;
    display: inline-block;
    font-size: 9px;
    max-width: 100px;
    overflow: hidden;
    padding: 20px 1px;
    position: relative;
    text-align:;
    white-space: nowrap;
	display: inline-block;
	content: attr(title);
}

#credit{
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	font-size: 11px;
	margin: 0 auto 70px;
	opacity: 0.5;
	padding: 12px 16px;
	text-align: center;
	width: 400px;
}


/*----------------------------
	Media Queries
-----------------------------*/


@media screen and (max-width: 960px) {
	.thumbs, #credit{
		width:auto;
	}
	#bsaHolder{
		display:none;
	}
}

