/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 75%;
	height:120px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/images/h300.png) repeat-x;
}

div.scrollable_detected {

	/* required settings */
	position:relative;
	overflow:hidden;
	height: 415px; 
    width: 100%; 
    text-align: center;
	/* custom decorations */
	border:1px solid #ccc;
	/*background:url(/images/h300.png) repeat-x;*/
	/*padding-left: 20px;*/
}

div.scrollable_matches {

	/* required settings */
	position:relative;
	overflow:hidden;
	height: 275px; 
    width: 95%; 
	/* custom decorations */
	border:1px solid #ccc;
	/*background:url(/images/h300.png) repeat-x;*/
	padding-left: 5px;
}

/*
	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:100em;
	position:absolute;
	clear:both;
}

.items_detected div {
	border-bottom:1px solid #ddd;
	margin:0px 0;
	font-size:12px;
	height:130px;
	width:66%;
}

.item_matches div {
	border-bottom:1px solid #ddd;
	margin:0px -5px;
	font-size:12px;
	height:80px;
	width: 85%;
}

div.items_detected { 
    position:absolute; 
 	/*background-color: red;*/
 	/* this time we have very large space for the height */ 
    height:100em; 
    width: 170px;
    padding-left: 24px;
}

div.item_matches { 
    position:absolute; 
 	/*background-color: red;*/
 	/* this time we have very large space for the height */ 
    height:100em; 
    width: 100%;
    padding-left: 5px;
}

.items_detected img {
	/*margin-right:20px;*/
	height:120px;
	margin: 5px;
}

.item_matches img {
	margin-right:0px;
}

.items_detected h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

#actions {
	/*background-color: red;*/
	width:100%;
	margin: 0px 0px 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}


/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 15px 10px 13px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:70px;
	height:88px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:1;
	position:relative;
}

.scrollable_detected .active {
	/*border:2px solid #92278F;*/
	background-color: #92278F;
	z-index:1;
	position:relative;
}

.scrollable_matches .active {
	border:2px solid #92278F;
	z-index:1;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px; margin-top: 50px; }
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; margin-top: 50px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(/images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

.navi { 
	margin-left:0px; 
    width:300px; 
    height:20px;
} 
 
 
/* items inside navigator */ 
.navi a { 
    width:8px; 
    height:8px; 
    float: left;
    margin:3px; 
    background:url(/images/navigator.png) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
} 
 
/* mouseover state */ 
.navi a:hover { 
    background-position:0 -8px;       
} 
 
/* active state (current page state) */ 
.navi a.active { 
    background-position:0 -16px;      
}
