
.overlayContainer {
    background-color: #FFFFFF;
    box-shadow: 0 0 0.5em 1px rgba(0, 0, 0, 0.44);
    padding: 0.5em 1em;
    position: fixed;
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    z-index: 1000;
}

	.overlayContainer .wrapper {
		height: 100%;
		overflow: hidden;
		position: relative;
		width: 100%;
	}

	.overlayContainer .wrapper .image {
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		 -webkit-transition: left 0.5s ease-out 0s;
		transition: left 0.5s ease-out 0s;
		width: 100%;
	}

.overlayShade {
    background-color: #808080;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}