.groupHeaderContainer {
	width: 80%;
	margin: auto;
}
.imageGrid {
	/*background-color: #F5F5F5;*/
	/*border: 1px dashed #999999;*/
	/*max-width: 740px;*/
	/*max-width: 1024px;*/
	width: 80%;
	margin: auto;
	padding: 0px;
}
.gridItem > img {
	border: none;
}

.gridItem {
	outline: 0;
	margin: 15px;
	border: 1px solid black;
	display: block;
	text-align: center;
	transition: box-shadow 0.18s;
	-webkit-transition: box-shadow 0.18s; /* Safari */
}
.gridItem:active, .gridItem:hover {
	box-shadow: 0px 0px 15px #A5A5A5;
}

.gridItem > p {
	color: #444;
	position: absolute;
	text-decoration: none;
	text-overflow:ellipsis;
	overflow: hidden;
	white-space: nowrap;
	bottom: 0px;
	width: 100%;
	margin: 0px;
	border: 0px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	padding: 5px;
	padding-top: 50px;
	padding-bottom: 12px;
	/*background: white;*/
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8), white);
	background-image: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8), white);
	background-image: -ms-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8), white);
	background-image: -o-linear-gradient(top, rgba(255,255,255,0), rgba(255,255,255,0.8), white);
	opacity: 0;
	transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s; /* Safari */
}
.gridItem > p:hover, .gridItem:hover > p {
	opacity: 1.8;
}
.preGlow {
	transition: box-shadow 1s !important;
	-webkit-transition: box-shadow 1s !important; /* Safari */
}

.glow {
	-webkit-box-shadow: 0px 0px 30px 0px #00FFFF !important;
	-moz-box-shadow:    0px 0px 30px 0px #00FFFF !important;
	box-shadow:         0px 0px 30px 0px #00FFFF !important;
}