/* this makes it possible to add next button beside scrollable */
.carousel {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(left-right-home-buttons.gif) no-repeat;
	display: block;
	width: 20px;
	height: 56px;
	float: left;
	margin: 40px 0 0;
	cursor: pointer;
	font-size: 1px;

}

/* right */
a.right 		{ background-position: -20px 0; clear:right; margin-left: 2px;}
a.right:hover 	{ background-position: -20px -56px; }
a.right:active 	{ background-position: -20px 0px ; } 


/* left */
a.left			{ margin-right: 2px; } 
a.left:hover  	{ background-position:0 -56px; }
a.left:active  	{ background-position: 0 0; }

/* up and down */
a.up, a.down		{ 
	background:url(arrow/left_dark.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	
} 	

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.carousel {

	/* required settings */
	position: relative;
	overflow: hidden;
	width: 940px;
	height: 138px;
}

.carousel_home {

	/* required settings */
	position: relative;
	overflow: hidden;
	height: 230px;
	margin-left: 22px;
	width: 940px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.carousel .carousel-items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

.carousel_home .carousel-items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.carousel-item {
	float:left;
}

/* position and dimensions of the navigator */
.navi {
	width:200px;
	height:20px;
	display: inline;
	position: absolute;
	top: 220px;
	left: 450px;
	z-index: 10;
}


/* items inside navigator */
.navi a {
	width:11px;
	height:11px;
	float:left;
	margin:3px;
	background: url(navigator2.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -11px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -22px;     
}

.main_item
{
    float: left; 
    width: 940px; 
    height: 230px;
}

.item
{
    width: 100%;
}