/* Horizontal Carousel */
#horizontal_carousel {
	position: relative;
    -moz-border-radius: 10px;
    background: #F0F6F9;
    width: 900px;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 40px;
	margin: 10px 10px 0px 10px;
}

#horizontal_carousel .container {
	width:  900px;
	height: 90px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	z-index: 2;
}

#horizontal_carousel ul {
	overflow: hidden;
	left: 0;
	margin: 0;
	padding: 0;
	position: relative;
	top: 0;
	width: 100000px;
}

#horizontal_carousel ul li {
    width: 75px;
    height: 90px;
	background:#ffffff;
	border:solid #ffffff 5px;
    margin-right: 10px;
	float: left;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}

#horizontal_carousel .previous_button {
	position: absolute;
    top: 38px;
    left: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../images/buttons/previous.png) no-repeat 0 0;
}

#horizontal_carousel .previous_button_over {
  background-position: -32px 0;
}

#horizontal_carousel .previous_button_disabled {
    cursor: default;
    background-position: -96px 0;

}

#horizontal_carousel .next_button {
	position: absolute;
    top: 38px;
    right: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../images/buttons/next-horizontal.png) no-repeat 0 0;
}

#horizontal_carousel .next_button_over {
    background-position: -32px 0;
}

#horizontal_carousel .next_button_disabled {
    cursor: default;
    background-position: -96px 0;
}
