.gallery {
	
	margin: 0 auto;
	/*background: #ddd;*/
	/*width: 95%;*/
    max-width: 970px;
    line-height: 1em;
    

}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.gallery ul li {
    text-align: center;
    margin: 0em 1em 1em 1em;
	flex: 1 0 200px;
	list-style: none;
	font-family: serif;
	/*margin: 2% 2% 10px 2%;*/
	border: #ddd;
	/*border-width: 1px;
	border-style: solid;
	border-radius: 0.5em; */
	  /*Для последних картинок чтобы не было растянутой рамки */	:;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-ms-border-radius: 0.5em;
	-o-border-radius: 0.5em;
}

	
.gallery img {
	width: 100%;
	max-width: 480px;
	border-radius: 0.5em;
	transition: 0.2s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.gallery img:hover {
	transform: scale(1.05);
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
	transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
}


.gallery a, a:visited, .gallery a:link {
	font-size: 0.9em;
    font-weight: bold;
	text-decoration: none;
	color: #444;
	font-family: Arial;
}
.gallery a:hover {
	color:#f00;
}

.gallery ul li div {
}



