/* 
    Document   : jquery.fp-banners
    Created on : May 8, 2010, 11:57:34 AM
    Author     : anguaji
    Description:
        Slideshow For Frontpage Banners - jquery code css
*/

/* container for slides */
#frontpage-banners {
    position:relative;
    height:170px;
    width: 960px;
    text-align: center;
}

/* single slide */
#frontpage-banners li {
    display:none;
    position:absolute;
    top:0;
    left:0;
}


/* tabs (those little circles below slides) */
.slidetabs {
    clear:both;
    margin-left: 10px;
    width: 300px;
}

/* single tab */
.slidetabs a {
    width:8px;
    height:8px;
    float:left;
    margin:3px;
    background:url(../images/navigator.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
}

/* mouseover state */
.slidetabs a:hover {
    background-position:0 -8px;
}

/* active state (current page state) */
.slidetabs a.current {
    background-position:0 -16px;
}

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
    visibility:hidden !important;
}

