/* Horizontal Carousel */
#carouselMini
{
 float: left;
 width: 395px;
 position: relative;
}
#carouselMini .container
{
 float: left;
 width: 345px;
 height: 60px;
 position: relative;
 overflow: hidden;
}

#carouselMini ul
{
 margin: 0;
 padding: 0;
 width: 100000px;
 position: relative;
 top: 0;
 left: 0;
 height:60px;
}

#carouselMini ul li
{
 width: 115px;
 height: 60px;
 text-align: center;
 list-style: none;
 float: left;
}
#carouselMini ul li a
{
 color: #999999;
 font-weight: normal;
}
#carouselMini ul li a:Hover
{
 color: #cc0000;
 font-weight: normal;
 text-decoration: none;
}
#carouselMini .previous_button
{
 float: left;
 width: 25px;
 height: 60px;
 background: url(m_left.png);
 z-index: 100;
 cursor: pointer;
}

#carouselMini .previous_button_over
{
 background: url(m_left_over.png);
}

#carouselMini .previous_button_disabled
{
 background: url(m_left_disabled.png);
 cursor: default;
}

#carouselMini .next_button
{
 float: left;
 width: 25px;
 height: 60px;
 background: url(m_right.png);
 z-index: 100;
 cursor: pointer;
}

#carouselMini .next_button_over
{
 background: url(m_right_over.png);
}

#carouselMini .next_button_disabled
{
 background: url(m_right_disabled.png);
 cursor: default;
}

