/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/
#home #products div div {margin:0px; padding:0px;} 

div.scrollable { 
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 879px;     
    height:180px;    
} 
 
/*  
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items {     
    /* this cannot be too large */ 
    width:20000em;     
    position:absolute;         
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
	height:180px;
	width:293px;
	background-color:#FFFFFF;
	border:0px solid #000000;
	border-right:1px solid #7A7650;
} 

div.scrollable div.items div img { 
 	position:absolute;   
}

div.scrollable div.items div p { 
 	background-color:#7A7650;
	position:absolute;
	width:293px;
	bottom:0px;
	left:0px;
	color:#ffffff;
	text-align:center;
	font-weight:normal;
}

#home #wrapper #products div.scrollable div.items div p a { 
 	color:#ffffff;
	padding-right:6px;
	font-weight:normal;
}

#home #wrapper #products div.scrollable div.items div p a:hover { 
 	color:#CCCCCC;
}   
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
    border:0px inset #ccc;         
    background-color:#000000; 
}

