/* ----------Home Advert Scroller--------------- */

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 560px;
	height:230px;
}

.scrollable .items {
	/* this cannot be too large */
	width: 20000em;
	position:absolute;
	clear:both;
	margin:0;
	padding:0;

}

.items div {
	float:left;
	width:560px;
	display:block;
}

/* single scrollable item */
.scrollable img {
	float:left;	
}

/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}

/* ----------Navigation buttons--------------- */

/* position and dimensions of the navigator */
.navi {
	width:200px;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/assets/themes/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;     
}


/*---------- Tool Tips ------------*/


/* trigger button */
#price_tooltip {
	cursor:pointer;
}
 
/* mouseover state */
#price_tooltip:hover {
	background-position:0 -44px ;		
}
 
/* clicked state */
#price_tooltip:focus {
	background-position:0 -88px;
}
 
/* tooltip styling */
.tooltip {
	display:none;
	background:url(/assets/themes/black_arrow_big.png);
	height:163px;
	padding:40px 30px 10px 30px;
	width:310px;
	font-size:11px;
	color:#fff;
}
 
/* a .label element inside tooltip */
.tooltip .name {
	color:FFF;
	font-weight:bold;
	font-size:12px;
}
 
.tooltip a {
	color:#ad4;
	font-size:11px;
	font-weight:bold;
}


/*----- Vertical Scroler ---------*/


/* root element for scrollable */
.scrollable_vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 595px;	 
	width: 700px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.vertical_items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.vertical_item {
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;
}

/* elements inside single item */
.vertical_item img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

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

/* the action buttons above the scrollable */
#actions {
	width:595px;
	margin:30px 0 10px 0;	
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

