﻿/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable
{
    /* required settings */
    position: relative;
    overflow: hidden;
    width: 775px;
    height: 175px; /* custom decorations */
    border: 0px solid #ccc;
}

/*
	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 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px 8px 5px 8px;
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
	cursor:pointer;
	width:112px;
	height:150px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

div.scrollable div.items
{
    width:  20000em;
    position: absolute;
}

div.scrollable div.items div 
{
    float: left;
}

div.items div.active
{
    border: 1px inset #ccc;
    background-color: #fff;
}

#bbtooltip
{
    display:    none;
    background: url(/spectrumnew/images/buttons/black_arrow.png);
    font-size:  14px;
    height:     70px;
    width:      110px;
    padding:    25px;
    color:      #fff;
}

#demotip
{
    display: none;
    background:transparent url(/spectrumnew/images/buttons/black_arrow.png);
    font-size: 12px;
    height: 70px;
    width: 160px;
    padding: 25px;
    color: #ff52b6;
}
