﻿/* Horizontal Carousel */
#horizontal_carousel {
  width: 1000px;
  height: 110px;
}

#horizontal_carousel .container 
{
  position:relative;
  width: 960px;
  overflow: hidden;
  padding-top:10px;
  border-top:solid 2px #003366;
}

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

#horizontal_carousel ul li {
  width: 235px;
  height: 90px;
  text-align: center; 
  list-style:none;   
  float:left;
  background-image: none;
  padding-right:6px;
}

#horizontal_carousel .buttons{
	display:block;
 	clear:both;
}
#horizontal_carousel .previous_button {
  float:left;  
  width: 15px;
  height: 90px;
  margin-top:12px;
  background: #cccccc url(../images/icon_banner_prev.gif) no-repeat center center;
  z-index: 100;
  cursor: pointer;border:solid 1px #cccccc;
}

#horizontal_carousel .previous_button_over {
  background: #cccccc url(../images/icon_banner_prev_hov.gif) no-repeat center center;
}
#horizontal_carousel .previous_button_disabled 
{
	background-image: none;
  background-color:#cccccc;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:right;  
  width: 15px;
  height: 90px;
  margin-top:12px;
  background: #cccccc url(../images/icon_banner_next.gif) no-repeat center center;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: #cccccc url(../images/icon_banner_next_hov.gif) no-repeat center center;
}

#horizontal_carousel .next_button_disabled 
{
	background-image: none;
  background-color:#cccccc;
  cursor: default;
}