/* Horizontal Carousel */
#carousel
{
	float: left;
	width: 930px;
	margin-left: 10px;
	margin-top: 10px;
	position: relative;
}
#carousel .container
{
	float: left;
	width: 885px;
	height: 115px;
	position: relative;
	overflow: hidden;
}

#carousel ul
{
	margin: 0;
	padding: 0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 115px;
}

#carousel ul li
{
	width: 177px;
	height: 115px;
	text-align: center;
	list-style: none;
	float: left;
}
#carousel .previous_button
{
	float: left;
	width: 15px;
	height: 90px;
	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: 15px;
	height: 90px;
	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;
}
