#imageBox {
	width: 640px;
	height: 480px;
	border: 1px solid rgba(255, 255, 255, 1);
	margin: auto;
	background-image: url('images/photos/edit_1.jpg');
	background-size: cover;
	position: relative;
	border-radius: 10px;
	}

.photobox {
	max-width: 580px;
	margin: auto;
	position: relative;
	text-align: left;
	}

#thumb {
	position: relative;
	width: 80px;
	height: 80px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-flex;
	margin: 1px;
	cursor: pointer;
	border-radius: 5px;
	box-shadow: inset 0 0 0px rgba(255, 255, 255, 0);
	transition: box-shadow 0.15s;
	}

#thumb:hover {
	box-shadow: inset 0 0 30px rgba(60, 60, 60, 0.8);
	}