
/* container for slides */
.images {
    border:0px;
    position:relative;
    width:500px;
    height:281px;
    float:left;
    margin: 0px;
	padding: 0px;
    cursor:pointer;

}

/* single slide */
.images div {
    display:none;
    position:absolute;
	text-align:center;
    top:0;
    left:0;
	width: 500px;
    height:281px;
	padding: 0px;
	margin: 0px;
    font-size:12px;
}


/* tabs (those little circles below slides) */
.slidetabs {
    clear:both;
	padding: 10px 0px 0px 0px;
    margin: 0px;
}

/* single tab */
.slidetabs a {
    width:10px;
    height:10px;
    float: left;
    margin: 0px 5px 0px 5px;
    background:url(kuvat/pallukat.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
}

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

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


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