/* Wrapper for image centering */
#lightwrap {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align:center;
    cursor:-webkit-zoom-out;
    cursor:-moz-zoom-out;
    z-index:999;
}
/* overlay covering website */
#lightbg {
    display: none;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: fixed;
    background: none repeat scroll 0% 0% black;
    z-index: 99;
    opacity: 0.3;
}
#lightwrap img {position:absolute;display:none;}
#lightzoomed {opacity:0;}
#off-screen {position: fixed;right:100%;opacity: 0;}

		.float-left {
		    display:block;
		    float:left;
		    max-width:250px;
		    margin:0 10px 10px 0px;
		    cursor:-webkit-zoom-in;
		    cursor:-moz-zoom-in;
		}
		.float-right {
		    display:block;
		    float:right;
		    max-width:250px;
		    margin:0 0px 10px 10px;
		    cursor:-webkit-zoom-in;
		    cursor:-moz-zoom-in;
		}
		@media screen and (max-width: 400px) {
			.float-left, .float-right {
				max-width: 100%;
				height: auto;
				margin:10px 0;
			}
		}