
.imageDiv {
}

.imageDiv > *:last-child {
	padding-bottom: 40px;
}

.imageDiv h1 {
	display: block;
	width: 900px;
	margin: 50px 0px 20px 30px;
	
	float: left;
	
	font-size: 20px;
	color: #009688;
	line-height: 50px;
	
	border-bottom: 1px solid #009688;
}

.imageDiv i {
	position: absolute;
	display: block;
	top: 178px;
	left: 118px;
	
	height: 34px;
	width: 34px;

	font-size: 33px;
	color: #009688;
}

.imageWrapper {
	display: block;
	position: relative;
	width: 215px;
	margin: 20px 0px 10px 12px;
	padding: 5px 5px 5px 5px;
	float: left;
	
	background: #FFFFFF;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.26);
}

.imageWrapperMain {   
    display: block;
    margin: auto;
    margin-bottom: 20px;
    height: 360px;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.26);
}

.imageWrapper:hover {
	cursor: pointer;
}

.imageWrapper:hover .imageWrapperCover {
	visibility: visible;
	background: #26a69a;
	
	-webkit-transition: background-color 150ms linear;
    -moz-transition: background-color 150ms linear;
    -o-transition: background-color 150ms linear;
    -ms-transition: background-color 150ms linear;
    transition: background-color 150ms linear;
}

.imageWrapper:hover label {
	visibility: visible;
}

.imageWrapper:hover img {
	-webkit-transform:scale(1.15);
    -moz-transform:scale(1.15); 
    -ms-transform:scale(1.15);
    -o-transform:scale(1.15); 
	transform:scale(1.15);
}

.imageWrapper span {
	display: block;
	overflow: hidden;
}

.imageWrapperCover {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;

	opacity: 0.7;
}

.imageWrapper label {
	display: block;
	width: 100%;
	position: absolute;
	z-index: 2;
	top: 50%;
	margin-top: -10px;
	visibility: hidden;
	
	color: #FFFFFF;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 2px 2px rgba(0,0,0,0.26);
}

.imageWrapper label:hover {
	cursor: pointer;
}

#innerImage {
	position: relative;
	height: 275px;
	width: 100%;
}

.imageWrapper img {
	max-height: 275px;
	max-width: 215px;
	width: auto;
	height: auto;
 
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	
	-webkit-transition: all 1s ease; 
    -moz-transition: all 1s ease; 
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.imageWrapper h3 {
	display: block;
	margin: 15px 0px 15px 15px;
	
	font-size: 15px;
	color: #009688;
}

.imageWrapper h4 {
	position: absolute;
	display: block;
	bottom: 10px;
	right: 10px;
	
	font-size: 14px;
	color: #009688;
}

.imageWrapper p {
	display: block;
	width: 205px;
	padding: 0px 10px;
}

/*POPUP*/
#pageCover {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #000000;
	z-index: 3;
	top: 0;
	
	display: none;
	
	opacity: 0.8;
}

#popupImage {
	position: fixed;
	z-index: 4;
	width: 500px;
	height: 500px;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding: 0px 80px;
	
	display: none;
	line-height: 0;
	
	opacity: 0;
	border-radius: 3px;

	-webkit-animation: fadeInPopup 0.5s ease-out;
    -moz-animation: fadeInPopup 0.5s ease-out;
    -o-animation: fadeInPopup 0.5s ease-out;
	animation: fadeInPopup 0.5s ease-out;
}



#popupImage img {
	max-height: 500px;
	max-width: 500px;
	width: auto;
	height: auto;
	
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#popupImage span {
	position: absolute;
	display: block;
	z-index: 4;
	height: 100%;
	width: 80px;
	top: 0;
	
	color: #00bfa5;
	font-size: 100px;
}

#popupImage span:hover, #popupImage label:hover {
	cursor: pointer;
}

#popupImage span:hover i, #popupImage span:hover label {
	color: #00796b;
	
	-webkit-transition: color 50ms linear;
    -moz-transition: color 50ms linear;
    -o-transition: color 50ms linear;
    -ms-transition: color 50ms linear;
    transition: color 50ms linear;
}

#popupImage #popupClose {
	height: 50px;
	z-index: 5;
	top: 0;
	right: 0;
	
	font-size: 30px;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
}

#popupLeft i, #popupRight i {
	display: block;
	height: 100px;
	width: 100%;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	
	text-align: center;
}

#popupImage #popupLeft {
	left: 0;
}

#popupImage #popupRight {
	right: 0;
}

/*POPUP ANIMATION*/
@-webkit-keyframes fadeInPopup {
    0% {display: none; opacity: 0;}
    1% {display: block; opacity: 0;}
    100% {display: block; opacity: 1;}
}

@-moz-keyframes fadeInPopup {
    0% {display: none; opacity: 0;}
    1% {display: block; opacity: 0;}
    100% {display: block; opacity: 1;}
}

@-o-keyframes fadeInPopup {
    0% {display: none; opacity: 0;}
    1% {display: block; opacity: 0;}
    100% {display: block; opacity: 1;}
}

@keyframes fadeInPopup {
    0% {display: none; opacity: 0;}
    1% {display: block; opacity: 0;}
    100% {display: block; opacity: 1;}
}

@-webkit-keyframes fadeOutPopup {
	0% {display: none; opacity: 1;}
    1% {display: block; opacity: 1;}
    100% {display: block; opacity: 0;}
}

@-moz-keyframes fadeOutPopup {
	0% {display: none; opacity: 1;}
    1% {display: block; opacity: 1;}
    100% {display: block; opacity: 0;}
}

@-o-keyframes fadeOutPopup {
	0% {display: none; opacity: 1;}
    1% {display: block; opacity: 1;}
    100% {display: block; opacity: 0;}
}

@keyframes fadeOutPopup {
	0% {display: none; opacity: 1;}
    1% {display: block; opacity: 1;}
    100% {display: block; opacity: 0;}
}