.blockItemContentHidden{
	display: none;
}
.blockItemTitle{
	text-align: center;
}
.blockItem {
	display: inline-block;
	max-width: 300px;
}
.blockItem .icon_container{
	position: relative;
	height: auto;
}
.blockItem .icon{
	max-width: 100%;
	max-height: 100%;
}
.blockItem .hoverimage{
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
}
.blockItem .hoverimage img{
	 margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0; 
	right: 0;
	-webkit-transition-duration: 0.6s;
	-moz-transition-duration: 0.6s;
	-o-transition-duration: 0.6s;
	transition-duration: 0.6s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	opacity: 0;
	z-index: 2;
	cursor: pointer;
}
.blockItem .icon_container:hover .hoverimage img{
	opacity: 0.7;
}
.blockItem .icon_container:hover .hoverimage img:hover{
	opacity: 1;
}
.blockItem .blockItemTitle{
	margin-bottom: 5px;
	padding-bottom: 2px;
	border-bottom: 1px solid #d3d3d3;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
}
.blockItem .overlay-image{
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	background-color: #1D7AF3;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.blockItem .icon_container:hover .overlay-image{
	opacity: 0.75;
}
.active_content{
	height: 0px;
}
.blockMenu .active_content .closeContainer{
	clear: both;
	text-align: center;
}
.blockMenu .active_content .closeContainer .closeButton{
	cursor: pointer;
	background: #1D7AF3;
	width: 100%;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	color: white;
	border: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding-bottom: 5px;
	padding-top: 5px;
	font-size: 20px;
	font-weight: 500;
	
}
.blockMenu .active_content .closeContainer .closeButton:hover{
	background-color: #0c4ea4;
}
.clear-fix{
	clear: both;
}
.active_content_container .tempDiv
{
	display: none;
}
.blockItemContainer{
	width: 50%;
	display: inline-block;
	text-align: center;
	float: left;
	margin-top: 10px;
}
@media all and (max-width:1025px)
{
	.blockItemContainer{
		width: 100%;
		float: none;
		display: block;
	}
	.blockItem .icon_container{
		height: auto;
	}
}