/*--------------------------------------------------------------------------*
 * 
 * Copyright (C) 2011 Brand Labs LLC
 *
 * Logo Scroller (Alice)
 * 
 * Version 1.0.1
 * 
 *--------------------------------------------------------------------------*/

#alice_container{
	width:769px;
	overflow:hidden;
	position:relative;	
	margin-top:10px;
}

/* The scroll wrapper is always the same width and 
   height as the containing element (div). Overflow 
   is hidden because you don't want to show all of 
   the scrollable area.
*/
.alice_scroll_wrapper
{
	position: relative;
	overflow: hidden;
	width: 890px;
	height: 155px;
}

.alice_scrollable_area
{
	position: relative;		
	height: 73px;
	margin:0;
	padding:0;
	
	/*Important: The width of the scrollable area must be set to a large integer for the script to work correctly in Opera. */	
	width: 32766px;
}

.alice_scrollable_area li{
	list-style:none;
	list-style-position:outside;
	float:left;
}

.alice_scrollable_area img{
	border: 0 none;
}

.alice_hotspot_left
{
	width: 11px;
	height: 73px;
	background: url(/v/alice/images/arrow-left.png) no-repeat top right transparent;
	position: absolute;
	z-index: 200;
	left: 0;
	cursor: pointer;
}

.alice_hotspot_right
{
	width: 11px;
	height: 73px;
	background: url(/v/alice/images/arrow-right.png) no-repeat top right transparent;
	position: absolute;
	z-index: 200;
	cursor: pointer;
	left: 758px;
}


#homepage_brands .homepage_brands_scroll_area_hidden {
	visibility: hidden;
}




