@charset "utf-8";

/* CSS Document */


/* this may help */

.container-fluid {
	width: 100%;
	margin: 9px auto 0 auto;
}

/* the gallery */

.the-photoGallery {
    padding-right: 15px;
    background-color: burlywood;
}
.the-box {
	/*background-color: rgba(100,46,47,0.53); */
	display: block;
	width: 33.333%;
	float: left;
	/*margin: 2px; */
}
.work-thumb {
    position: relative;
    margin-bottom: -8px;
}

.work-thumb img {
    width: 100%;
}

.work-thumb .rollover {
    background-color: #2d72cc;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-image: url(../images/hover-magnify.png);
    background-position: center center;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
	margin-bottom: 8px;
}

.work-thumb:hover .rollover {
    opacity: .7;
}






