/* CSS Document */
/* container for the scrollable items */
.items {
float:left;
width:700px;
height: 170px;
display: block;
margin-top: 17px;
overflow:hidden;
}

/* outmost wrapper element */
#scrollable {
padding:0px 0px 0px 0px;
background-color:#000;
width:935px;
height: 202px;
overflow:hidden;
}
#slide {
height: 202px;
margin-top: 10px;
margin-left: 3px;
margin-bottom:10px;
}

.slide-items {
height: 155px;
width: 155px;
margin-left: 5px;
margin-right: 5px;
float: left;
background-color: #FFF;
padding: 5px;
overflow:hidden;
}
.slide-items-a a {
font-size: 12px;
margin: 8px 0px 0px 0px;
display: block;
color:#FFF;
text-align:center;
background:#872023;
padding:2px 0;
text-decoration:none;
}

/* single item */
/* next / prev buttons */
a.prev, a.next {
display:block;
width:30px;
height:202px;
float:left;
background-repeat:no-repeat;	
margin:0px 0 0 0;
}

a.prev {
background:url(images/slide-button-left.gif);
}


a.next {
background:url(images/slide-button-right.gif);	
margin-left: 2px;
}

/* navigator */
div.navi {
position:relative;
top:-30px;
left:310px;
margin-left:-50px;
width:50px;
height:0px;
}

/* items inside navigator */
div.navi span {
width:8px;
height:8px;
float:left;
margin:3px;
background:url(img/dots.png) 0 0 no-repeat;     
cursor:pointer;
}

div.navi span:hover {
background-position:0 -8px;      
}

div.navi span.active {
background-position:0 -16px;     
} 	

.scrollable input {
border: 1px solid #DBDBDB;
height: 25px;
}

/* Captions */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}
/* End captions */


