.gallery .control-button {
  color: #aaa;
  color: rgba(0, 0, 0, 0.4);
}

.gallery .control-button:hover {
  color: #aaa;
  color: rgba(0, 0, 0, 0.8);
}


/*
	Theme controls how everything looks in Gallery CSS.
*/
.gallery {
	position: relative;
	width: 50em;
	border: none;
}
.gallery .item {
	margin: 0;
	height: 37.5em;
	overflow: hidden;
	text-align: left;
	background: white;
}
.gallery .itemimg {
	width: 50em;
	height: 37.5em;
}

.gallery .controls {
	position: relative;
	bottom: 0;
	width: 100%;
	text-align: left;
	height: 2em;
}
.gallery .control-button {
	display: inline-block;
	margin: 0 0.2em 0 0;
	font-size: 3em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: color .1s;
}



.gallery .hover-layer {
	position: absolute;
	top: 0;
	display: table;
	height: 37.5em;
	width: 100%;
}

.gallery .left-hover, .gallery .right-hover {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	opacity: 0;
}
.gallery .left-hover:hover, .gallery .right-hover:hover {
	opacity: 0.667;
}
.gallery .left-hover {
	text-align: left;
}
.gallery .right-hover {
	text-align: right;
}

.gallery .left-arrow, .right-arrow {
	display: inline-block;
	width: 4em;
	height: 4em;
	border-radius: 50%;
/*	background: white;*/
/*	background: rgba(255, 255, 255, 0.75);*/
	margin: 2em;
/*	box-shadow: 0 0 0.45em white;*/
}
.gallery .left-arrow:after, .gallery .right-arrow:after {
	content: '';
	display: inline-block;
	margin-top: 1.05em;
	width: 1.4em;
	height: 1.4em;
	border-top: 0.5em solid black;
	border-right: 0.5em solid black;
}
.gallery .left-arrow:after {
	margin-left: 1.4em;
	-moz-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.gallery .right-arrow:after {
	margin-right: 1.4em;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}