/* Morphing divs */

#morphing {
	position: absolute;
	right: 0px;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 500;
	display: none;
}

#morphingInside	{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transition-property: height, width, top, left;
	transition-duration: 2s, 2s, 2s, 2s;
	display: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.grow {
    transition: all 2s ease;
     /*transition: opacity 2s ease;*/
    transform: scale(2.5);
    /*-webkit-transform: scale(2.0) ;*/
    opacity:0;
}
