
a, a:visited {
	outline:none;
	color:#333333;
}

a:hover{
	text-decoration:none;
}

section{
	display: block;
}


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

.thumbs{
	width:auto; /* was 480 */
	margin:5px auto 15px;/* was 60 and 35 */
	text-align:center;
	/*border:1px solid blue;  myk */

}

.thumbs a{
	width:120px;
	height:120px;
	display:inline-block;
	/*border:7px solid #303030;*/
	/*box-shadow:0 1px 3px rgba(0,0,0,0.5);*/
	/*border-radius:4px;*/
	margin: 0px 3px 0px; /* was 6 6 40 */
	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{ /*allows you to insert content onto a page from CSS */
	background-color: #303030;
    border-radius: 7px;
    bottom: -136px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    /*content: attr(title); removes titles*/
    display: inline-block; 
    font-size: 10px;
    max-width: 90px;
    overflow: hidden;
    padding: 2px 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

