
/******************************
 STATIC BANNERS
*******************************/
.static-banners > div {
    margin-right: -20px; }

.static-banner {
    position: relative;
    padding-right: 20px;
    margin-bottom: 20px; }
.static-banner img {
    width: 100%;
    height: auto;
    float: left; }
.static-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 20px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s; }
.static-banner .banner-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -17px;
    margin-left: -15px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    transition: all .2s; }
.static-banner:hover .banner-overlay {
    transition: all 0.2s;
    visibility: visible;
    opacity: 1; }
.static-banner:hover .banner-overlay i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1); }
.static-banner .block-content {
    display: block; }

#content .static-banners {
    margin-bottom: 0; }