

/*----------------------------
	Thumbnails
-----------------------------*/

.thumbs{
	width:100%;/*480px;*/
	margin:15px auto 15px; 
	text-align:center;
}

.thumbs a{
	width:220px;
	height:150px;
	display:inline-block;
	border:1px solid #303030;
	box-shadow:0 1px 3px rgba(0,0,0,0.5);
	border-radius:4px;
	margin: 2px 2px 25px;
	position:relative;
	text-decoration:none;
	
	background-position:center center;
	background-repeat: no-repeat;
	
	background-size:cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
}

/* href's title */
.thumbs a:after{
	background-color: #303030;
    border-radius: 7px;
    bottom: -160px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    content: attr(title);
    display: inline-block;
    font-size: 10px;
    max-width: 200px; /*180*/
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}


/*----------------------------
	Media Queries
-----------------------------*/


@media screen and (max-width: 960px) {
	.thumbs{
		width:auto;
	}
	
}