.image-list-item {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 120px;
	margin-bottom: 50px;
	border: 2px solid #ddd;
	border-radius: 5px;
}

.image-list-item:hover {
	cursor: pointer;
	border: 2px solid #337ab7;
}

.image-list-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
	transform: translate(-50%, -50%);
}

.image-list-item p {
	margin-top: 120px;
	text-align: center;
	font-size: 90%;
}

.image-list-item:hover p {
	color: #337ab7;
}