/*-------------------------
	Simple reset
--------------------------*/




/*-------------------------
	General Styles
--------------------------*/



a, a:visited {
	outline:none;
	color:#1c4f64;
}

a:hover{
	text-decoration:none;
}




/*----------------------------
	The Header
-----------------------------*/




/*----------------------------
	Thumbnails
-----------------------------*/

.thumbs{
	width:900px;
	text-align:center;/*Con el tamaño del thumbs podemos cuadrar cuantos cuadros por cuadricula*/
	
}

.thumbs a{
	width:300px;/*Tamaño de la imagen en el ancho*/
	height:200px;/*Tamaño de la imagen en el alto*/
	display:inline-block;
	border:7px solid #303030;
	box-shadow:0 1px 3px rgba(0,0,0,0.3);
	border-radius:4px;
	margin: 6px 6px 40px;
	position:relative;
	text-decoration:none;
	
	background-position:center center;
	background-repeat: no-repeat;
	
	background-size:cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
}

.thumbs a:after{
	background-color: #303030;
    border-radius: 7px;
    bottom: -216px;/*Posición del texto*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    content: attr(title);
    display: inline-block;
    font-size: 10px;
    max-width: 100px;
    overflow: hidden;
    padding: 2px 20px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}




/*----------------------------
	Media Queries
-----------------------------*/


@media screen and (max-width: 960px) {
	.thumbs, #credit{
		width:auto;
	}
	
	footer{
		display:none;
	}
	
	#bsaHolder{
		display:none;
	}
}


