/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	/*width: 498px;	 */
	height: 113px;
	background: #DDDDDD;
	margin: 1px;
	/*border:1px solid #DDDDDD;*/
}

#ana-coverflow {
	width: 620px;	 
	height: 114px;
	margin: auto;
	overflow: hidden;
	margin-bottom: 20px;
	text-align: center;
	background: #DDDDDD;
	/**border:1px solid #222;*/
	
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	margin-left: -1px;
	/**border:1px solid #222;*/
	left: 0px;
	height: 113px;
}
#thumbs #thumbs-border {	
	width: auto;
	border-right: 71px solid #DDDDDD;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#thumbs div {
	float:left;
	width:93px;
	height: 113px;
	background:#DDDDDD ;
	color:#fff;
	border: none;
	margin-left:1px;
	cursor:pointer;
	overflow: hidden;
}

/* style when mouse is over the item */
#thumbs div.hover, #thumbs div.hover p {
	/*background-color: #8F8F8F;*/
	background: #50701D url('../gfx/coverflow-hovercolor.png') repeat;
	color: #FFFFFF;
}

/* style when element is active (clicked) */
#thumbs div.active, #thumbs div.active p {
	background-color: #606060;
	color: #FFFFFF;
	cursor: default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:5px;		
	font-family:"bitstream vera sans";
	font-size:11px;
	color:#000;
	text-align:center;	
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float: left;
	width: 563px;
	background-color: #DDDDDD;
}
div.less {
	background-color: #000000;
}


/* prev, next, prevPage and nextPage buttons
a.prev, a.next, a.prevPage, a.nextPage, .ana-coverflow-left, .ana-coverflow-right {
	display: block;
	width: 25px;
	height: 150px;
	background: url(../gfx/left.png) no-repeat;
	float:left;
	margin: 0px;
	cursor: pointer;
	font-size: 1px;
} */
/* prev, next, prevPage and nextPage buttons */
.ana-coverflow-left, .ana-coverflow-right {
	display: block;
	width: 27px;
	height: 114px;
	background: url(../gfx/left.png) no-repeat;
	float:left;
	margin: 0px;
	cursor: pointer;
	font-size: 1px;
}
/* next button uses another background image
a.next, a.nextPage, .ana-coverflow-right {
	background-image:url(../gfx/right.png);
	clear:right;	
} */
/* next button uses another background image */
.ana-coverflow-right {
	background-image:url(../gfx/right.png);
	clear:right;	
}

/* mouseover state
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover, a:hover .ana-coverflow-left, a:hover .ana-coverflow-right {
	background-position:0px -150px;
} */

/* mouseover state */
a:hover .ana-coverflow-left, a:hover .ana-coverflow-right, .ana-coverflow-left:hover, .ana-coverflow-right:hover, #ana-coverflow a:hover div {
	background-position:0px -150px;
}

/* IE6 gets green arrows all the time */
* html .more a div{
	background-image:url(../gfx/left.png) no-repeat;
	background-position:0px -150px;
}
* html .less a div{
	background-image:url(../gfx/right.png) no-repeat;
	background-position:0px -150px;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}
#ana-coverflow span {
	display: none;
}
#thumbs .ana-productgroup p {
	font-family: Arial,Verdana,Helvetica,Osaka,sans-serif;
	float: none;
	height: 34px;
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../gfx/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	



