

/*----------------------------
	Thumbnails
-----------------------------*/

.thumbs{
	width:100%;
	/*margin:60px auto 35px;*/
	text-align:center;
	height: 100%;
}

.thumbs ul{
	padding : 0;
	height: 100%;
	overflow-y: auto;
	padding-bottom: 32px;
}

.thumbs li{
	display : inline-block;
	list-style-type:none;
	vertical-align:top;
}

.thumbs a{
	width:150px;
	height:150px;
	display:inline-block;
	border:3px solid #303030;
	box-shadow:0 1px 3px rgba(0,0,0,0.5);
	border-radius:4px;
	margin: 10px 10px 60px;
	position:relative;
	text-decoration:none;
	
	background-position:left top;
	background-repeat: no-repeat;
	
	background-size:cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
	
	  -webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	-ms-transition: all 250ms linear;
	-o-transition: all 250ms linear;
	transition: all 250ms linear;
}

.thumbs a:hover{
	box-shadow:0 1px 5px rgba(255,255,255,08);
}

.thumbs a:after{
	background-color: #303030;
    border-radius: 5px;
    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: 130px;
    overflow: hidden;
    padding: 2px 6px;
    position: relative;
    text-align: center;
    white-space: normal;
}

/* GALLERI DETAIL PAGE SPECIFIQUE */
.thumbs ul{
	margin: 0;
}

#slider.activebox #galerie {
	padding-bottom: 75px;
}

/*----------------------------
	Media Queries
-----------------------------*/


@media screen and (max-width: 960px) {
	.thumbs{
		width:auto;
	}

	#bsaHolder{
		display:none;
	}
}

