.slideshow
{
    position:                       relative;
}

/* container for slides */
.images
{
    position:						relative;
    width:							520px;
    height:							300px;
}

/* single slide */
.images > div
{
    display:						none;
    position:						absolute;
    top:							0;
    left:							0;
    height:							300px;
}

/* tabs (those little circles below slides) */
.slidetabs
{
    position:                       absolute;
    left:                           5px;
    bottom:                         5px;
}

/* single tab */
.slidetabs a {
    width:							8px;
    height:							8px;
    float:							left;
    margin:							3px;
    display:						block;
    font-size:						1px;
    line-height:					1px;
    content:						"";

    border:							1px solid #fff;
    background-color:				#fff;

    /* CSS3 tweaks for modern browsers */
    -webkit-border-radius:			4px;
       -moz-border-radius:			4px;
            border-radius:			4px;

}

.slidetabs a:hover {
	background-color:				#eee;
}

.slidetabs a.current {
    border-color:                   #0091c9;
	background-color:				#0091c9;
}
