/* Horizontal Carousel */
#horizontal_carousel {
	float: left;
	width: 100%;
	height: 100px;
	position: relative;
}
#horizontal_carousel .container {
	float: left;
	width: 520px;
	height: 100px;
	position: relative;
	overflow: hidden;
}
#horizontal_carousel ul {
	margin: 0;
	padding:0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 100px;
}
#horizontal_carousel ul li {
	width: 130px;
	height: 100px;
	text-align: center;
	list-style:none;
	float:left;
}
#horizontal_carousel img{
	border:4px solid #f2ddc8;
}
#horizontal_carousel .previous_button {
	float:left;
	width: 15px;
	height: 100px;
	background: url(../images/left-arrow.gif) no-repeat center;
	z-index: 100;
	cursor: pointer;
	cursor:hand;
}
#horizontal_carousel .previous_button_over {
	background: url(../images/left-arrow.gif) no-repeat center;
}
#horizontal_carousel .previous_button_disabled {
	background: url(../images/left-arrow-dis.gif) no-repeat center;
	cursor: default;
}
#horizontal_carousel .next_button {
	float:left;
	width: 15px;
	height: 100px;
	background: url(../images/right-arrow.gif) no-repeat center;
	z-index: 100;
	cursor: pointer;
	cursor:hand;
}
#horizontal_carousel .next_button_over {
	background: url(../images/right-arrow.gif) no-repeat center;
}
#horizontal_carousel .next_button_disabled {
	background: url(../images/right-arrow-dis.gif) no-repeat center;
	cursor: default;
}

