/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable { 
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 668px;     
    height:188px;
	border: 1px solid #000000;
	margin: 10px 10px 0px 10px;
	background-image: url(../images/home/slider-bg.jpg);
	float: left;
	clear: none;    
}
 
/*  
    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 */ 
    height:20000em;     
    position:absolute;
	float: left;
	clear: none;     
} 
 
/*  
    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;
	clear: none;
} 
 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
    border:1px inset #ccc;         
    background-color:#fff; 
} 

/* position and dimensions of the navigator */
.navi {
	width:670px;
	height:60px;
	margin-left: 10px;
	margin-bottom: 10px;
	background-image: url(../images/home/slider-navigation.png);
	float: left;
	clear: none;
}

	.navi div {
		height: 60px;
		display: block;
		cursor: pointer;
		float: left;
		clear: none;
	}

	#t0 { left: 0; width: 198px; }
	#t1 { left: 198px; width: 197px; }
	#t2 { left: 395px; width: 136px; }
	#t3 { left: 531px; width: 139px; }
	
	#t0:hover { background: transparent url(../images/home/slider-navigation.png) 0 -120px no-repeat; }
	#t1:hover { background: transparent url(../images/home/slider-navigation.png) -198px -120px no-repeat; }
	#t2:hover { background: transparent url(../images/home/slider-navigation.png) -395px -120px no-repeat; }
	#t3:hover { background: transparent url(../images/home/slider-navigation.png) -531px -120px no-repeat; }
	
	#t0.active { left: 0; width: 198px; background: transparent url(../images/home/slider-navigation.png) 0 -60px no-repeat; }
	#t1.active { left: 198px; width: 197px; background: transparent url(../images/home/slider-navigation.png) -198px -60px no-repeat; }
	#t2.active { left: 395px; width: 136px; background: transparent url(../images/home/slider-navigation.png) -395px -60px no-repeat; }
	#t3.active { left: 531px; width: 139px; background: transparent url(../images/home/slider-navigation.png) -531px -60px no-repeat; }
