
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:210px;

	/* custom decorations */
/*	border:1px solid #CCC;*/
	text-align:center;
	margin-bottom:10px;
	
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .carousel-items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable .carousel-items a {
	display:block;
	float:left;
	margin-left:7px; }

.carousel-item {
width:130px;
float:left;
color:#F00;
margin-left:10px;
margin-right:10px;
}

.carousel-item a{
font-size:x-small;
text-decoration:none;
color:#333;
}

.carousel-item a:hover{
font-size:x-small;
text-decoration:none;
color:#484848;
border-bottom: 1px dotted #484848;
}

.scrollable img {
    margin:0; 
	border: 1px solid #CCC;
}


/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 0px 0px 0px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:120px;
	height:120px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}


/* tooltip styling */
#tooltip {
display:none;
background:#6d453c;
color:white;
font-size:13px;
height:50px;
width:100px;
padding:0px;
text-align:center;
opacity:0.4;
}