/* Thumb Navigation */
#thumb_nav {
  position: relative;
  bottom: 0;
}

.thumb_nav_item {
  display: block;
  text-align: center;
}

.thumb_nav_item p { text-align: center; text-decoration: none; }
.thumb_nav_item p { text-decoration: none; }

.thumb_nav_item a { text-decoration: none; border: none; }

.thumb_nav_item_highlight {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 67px;
  height: 42px;
  background: transparent url('/images/movies/thumb_over.png') no-repeat;
}

* html .thumb_nav_item_highlight {
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/movies/thumb_over.png', sizingMethod='crop');
}
/* End Thumb Navigation */ 

/* Horizontal Carousel */
#horizontal_carousel {
  width: 625px;
  height: 42px;
  margin-top: 15px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#horizontal_carousel .container {
  float: left;
  width: 565px;
  height: 42px;
  position: relative;
  overflow: hidden;
}

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

#horizontal_carousel ul li {
  width: 72px;
  height: 42px;
  text-align: center; 
  list-style: none;   
  float:left;
}

#horizontal_carousel ul li:first-child {
  margin-left: 5px;
}

#horizontal_carousel .previous_button {
  float:left;
  margin-top: 10px;
  width: 13px;
  height: 20px;
  background: url(/images/skin/left_arrow.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .previous_button_over {
  background: url(/images/skin/left_arrow_over.png) no-repeat;
}

#horizontal_carousel .previous_button_disabled {
  background: url(/images/skin/left_arrow_disabled.png) no-repeat;
  cursor: default;
}

#horizontal_carousel .next_button {
  float:left;
  margin-top: 10px;
  width: 13px;
  height: 20px;
  background: url(/images/skin/right_arrow.png) no-repeat;
  z-index: 100;
  cursor: pointer;
}

#horizontal_carousel .next_button_over {
  background: url(/images/skin/right_arrow_over.png) no-repeat;
}

#horizontal_carousel .next_button_disabled {
  background: url(/images/skin/right_arrow_disabled.png) no-repeat;
  cursor: default;
}