
#slideshow_box {
    margin:0px 0px 20px 0px;
    padding:0px;
	width:510px;
}

#slideshow_box p {
	margin:0px 0px 10px 0px;
    padding:0px;
}

/* container for slides */
.slideshow {
	background:#fff url(h300.png) repeat-x;
	border:1px solid #666;
	position:relative;
	height:210px;
	margin:0px;
	cursor:pointer;
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;	
}

/* single slide */
.slideshow div {
	display:none;
	position:absolute;
	margin:20px;
	padding:0px 0px 0px 0px;
	font-size:12px;
}

/* header */
.slideshow h3 {
	font-size:22px;
	font-weight:normal;
	margin:0px 0px 10px 0px;
    padding:0px;
	color:#456;
}

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

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

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

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


/***************** slideshow navigation ******************/
.slideshow_controll {
	margin:5px 0px 0px 0px;
}

.slideshow .navigator {
    float:left;
}

/* prev, next buttons */
.slideshow_controll .navigator .forward, .slideshow_controll .navigator .backward {
	float:left;
	display:block;
	margin:0px 5px 0px 5px;
	background:#fff url(hori_large.png) no-repeat;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
}
.slideshow_controll .navigator .play {
	float:left;
	display:block;
	margin:0px 5px 0px 5px;
	background:#fff url(btn_pause.png) no-repeat;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
    outline:none;
}

/* next */
.slideshow_controll .navigator .forward                     { background-position: 0 -30px; clear:right; }
.slideshow_controll .navigator .forward:hover         { background-position:-30px -30px; }
.slideshow_controll .navigator .forward:active       { background-position:-60px -30px; } 

/* prev */
.slideshow_controll .navigator .backward:hover       { background-position:-30px 0; }
.slideshow_controll .navigator .backward:active     { background-position:-60px 0; }

/* play */
.slideshow_controll .navigator .play                     { background-position: 0px 0px; }
.slideshow_controll .navigator .play:hover         { background-position: -30px 0px; }
.slideshow_controll .navigator .play:active       { background-position: -60px 0px; } 

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


