
/* container for slides */
.images {
    position:absolute;
    top:0;
    left:0;
    height:308px;
    width:721px;
    margin:15px 0px;
    cursor:pointer;
}

/* single slide */
.images div 
{
    /*
    display:none;
    height:308px;
    width:721px;
    position:absolute;
    top:0;
    left:0;
    */
    
    float: left;
    height: 308px;
    text-align: center;
    width: 721px;
    
    
    
}



/* tabs (those little circles below slides) */
.slidetabs {
    clear:both;
    position:absolute;
    right:10px;
    top:280px;
}

/* single tab */
.slidetabs a {
    background-color: #000000;
    color: #FFFFFF;
    display: block;
    float: left;
    height: auto;
    margin: 1px;
    opacity: 0.6;
    text-align: center;
    padding:3px;
    text-decoration: none;
    width: 15px;
    font-size:11px;
    font-family: Trebuchet MS;
    font-weight:bold;
    
}

/* mouseover state */
.slidetabs a:hover {
    background-position:0 -8px;
    opacity:1;
}

/* active state (current page state) */
.slidetabs a.current {
    background-position:0 -16px;
    opacity:1;
    background-color:#FFFFFF;
    color:#000000;
}






/* disabled navigational button. is not needed when tabs are
   configured with rotate: true */
.disabled {
    visibility:hidden !important;
}