	
.sampgallery{
    /*font-size: 0;removes margin between inline-blocks*/
    overflow: hidden;
    min-height: 100%;
    clear: both;
    float:none;
    display:none;
	
}
.sampgallery-thumb{
    display: block;
    float: left;
	position:relative;
	text-align: center;
	overflow:hidden;
	background-position:center;
	background-size: 100% auto;
	background-repeat:no-repeat;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 100px;
    min-height: 100px;
}
.sampgallery-thumb.sampgallery-thumb-intro{
    opacity:0;
	
}
.sampgallery-thumb.sampgallery-active{
    overflow: visible;
 }
.sampgallery-thumb.sampgallery-active:after{
	position:absolute;
	left:50%;
	bottom: 0;
    margin-left: -5px;
	content:'';
	width:0;
	height:0;
	border-style:solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #333 transparent;
}
.sampgallery-thumb img{
	margin: auto;
	width: auto;
	height: 100%;
}
.sampgallery-thumb.sampgallery-loading{
    opacity: 0.85;
}
.sampgallery-thumb.sampgallery-loading:after{
    width:100%;
    height:50%;
    display: block;
    position: absolute;
    content:'';
    margin:-25% 0 0 0;
    padding:0;
    left:0;
    top:50%;
    background-image: url(../images/ajax-loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60% auto;
}

@media only screen and (min-width: 801px) { 
.sampgallery-caption {
    display: none;
    visibility:hidden;
	font-size: 15px;
	line-height: 1.8;
	
}
}

@media screen and (max-width: 600px) { 
.sampgallery-caption {
    display: none;
    visibility:hidden;
	font-size: 13px;
	line-height: 1.2;
	
}
}

.sampgallery-preview .sampgallery-caption {
    display: block;
    visibility: visible;
    position: absolute;
    top:0;
    left:0;
    width: 95%;
	height:100%;
    padding:3.5%;
    margin: 0;
    color: #fff;
    background-color: #333333; /*this control the word background */
    text-align: left;
}

.sampgallery-preview{
    width:100%;
    height:0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    clear:both;
    float:left;
    position:relative;
    text-align:center;
    padding:2.5%;
    overflow:hidden;
    background-color: #333333;
}
.sampgallery-preview img{
    width: auto;
    height : auto;
    max-height: 100%;
    max-width: 100%;
}
.sampgallery-ctrls{
    position:absolute;
    right:0;
    top:0;
    width:40px;
    background-color: rgba(125,125,125, 0.5);
}
.sampgallery-ctrl{
    height:40px;
    font-size:inherit;
    color: #fff;
    display:block;
    cursor:pointer;
    background-image: url(../images/icons.png);
    background-position:center top;
    background-size: 100% auto;
    background-repeat:no-repeat;
}
.sampgallery-ctrl-close{
	background-position:center 0%;
}
.sampgallery-ctrl-zoomin{
    background-position: center 22.2%;
    display: none;
}
.sampgallery-ctrl-zoomout{
    background-position: center 11.1%;
    display: none;
}
.sampgallery-ctrl-openimage{
    background-position: center 44.4%;
}