/* main nav */
#main-nav li a {
    display: inline!important;
}
/* pulse nav link text */
#main-nav>ul>li:nth-child(2)>a {
    animation: 2s ease-in-out infinite pulse;
    -webkit-animation: 2s ease-in-out infinite pulse;
}
@keyframes pulse {
    0% {
        opacity: .25;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: .25;
    }
}
@-webkit-keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: 0.5;
    }
}

/* boats for sale page - steber */
.boat_parent_cat,
.big-photo,
.widget_boatdetail_widget {
    position: relative;
}

.boat-reduced,
.boat-specials {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 2px;
    width: 60px;
    height: 60px;
    z-index:1;
}
.boat-reduced {
    background: transparent url(http://steber.com.au/wp-content/themes/steber-default/images/spr-ribbon.png) no-repeat 100%;
}
.boat-specials {
    background: transparent url(http://steber.com.au/wp-content/themes/steber-default/images/ms-ribbon.png) no-repeat 100%;
}
