/* Horizontal Carousel */
#carousel
{
	float: left;
	width: 190px;
	position: relative;
}
#carousel .container
{
	float: left;
	width: 170px;
	height: 110px;
	position: relative;
	overflow: hidden;
}

#carousel ul
{
	margin: 0;
	padding: 0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 110px;
}

#carousel ul li
{
	width: 170px;
	height: 110px;
	text-align: center;
	list-style: none;
	float: left;
}
#carousel .previous_button
{
	float: left;
	width: 10px;
	height: 110px;
	background-color:white;
	/*background: url(left.png);*/
	z-index: 100;
	cursor: pointer;
}

#carousel .previous_button_over
{
	/*background: url(left_over.png);*/
}

#carousel .previous_button_disabled
{
	/*background: url(left_disabled.png);
	cursor: default;*/
}

#carousel .next_button
{
	float: left;
	width: 10px;
	height: 110px;
	background-color:white;
	/*background: url(right.png);*/
	z-index: 100;
	cursor: pointer;
}

#carousel .next_button_over
{
	/*background: url(right_over.png);*/
}

#carousel .next_button_disabled
{
	/*background: url(right_disabled.png);
	cursor: default;*/
}
