.expDiv {
	position: relative;
	left: 450px;
	bottom: 152px;
	z-index: 1;
	font-size: 20px;
	color: #DDFFDD;
	font-weight: bold;
	text-shadow: #DDFFDD 0px 0px 3px; 
}

.expBoxLeft {
	position: absolute;
	text-shadow: white 5px 0px 3px; 
	z-index: 2;

}

.expBoxRight {
	position: absolute;
	text-shadow: white -5px 0px 3px; 
	z-index: 2;

}

.expBoxLeft img, .expBoxRight img {
	width: 100%;
	height:100%;
}

.expBoxLeft p, .expBoxRight p {
	border: 2px solid white;
	width: 150px;
	height: 150px;
	background: purple;
	position: absolute;
	display: none;
}

.expBoxLeft p {
	top: 10px;
	left: 10px;
}

.expBoxRight p {
	top: 10px;
	right: 10px;
}

.expBoxLeft:hover p, .expBoxRight:hover p {
	display: block;
}