@charset "utf-8";
/* CSS Document */

.editable-gallery a {
	text-decoration: none;
	content:normal;
}
.editable-gallery a img {
	max-width: 150px;
	border: solid 1px #ddd;
	padding: 4px;
	margin: 0px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	background-color: #BAB8AC;
}
.editable-gallery a:hover img {
	border-color: #6E4B2B;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
