/* 
    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:165px;
	width: 845px;
	text-align: center;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
}

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


/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left: 10px;
	width: 95%;
	z-index:4;
	margin-top: 6px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#fff;
}

/* 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;
}

