


.sk-simple-banner {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.sk-simple-banner-img-container {
	display: block;
	position: relative;
	overflow: hidden;
}

.sk-simple-banner img {
	max-width: 100%;
	display: block;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}

.sk-simple-banner .sk-simple-banner-text {
	display: block;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	text-align: center;
	background:#000;
	background:rgba(0,0,0,.6);
	color:#fff;
	font-size: 13px;
	line-height: 1.4;
	padding:13px;

	text-shadow: 0px 1px 3px #000, 1px 1px 2px #000;

	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}

.sk-simple-banner:hover .sk-simple-banner-text {
	background:#000;
	background:rgba(0,0,0,.8);
}
.sk-simple-banner:hover img {
	opacity:1;
	-webkit-transform: scale(1.1,1.1);
	   -moz-transform: scale(1.1,1.1);
	    -ms-transform: scale(1.1,1.1);
	     -o-transform: scale(1.1,1.1);
	        transform: scale(1.1,1.1);
}