/*
 * Ext Core Library Examples 3.0 Beta
 * http://extjs.com/
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * 
 * The MIT License
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * 
 */

.ux-carousel-container {
    overflow: hidden;
    position: relative;
}

.ux-carousel-slides-wrap {
    position: absolute;
    top: 0;
    right: 0;
	padding-left: 1px;
}

.ux-carousel-slide {
    float: left;
    overflow: hidden;
    text-align: left;
	height: 50px;
}

.ux-carousel-nav {
    height: 18px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
	/*
    opacity: 0.8;
    filter:alpha(opacity=80);
	*/
	background-image:url('../../../../content/html/imgs/sfondi/nero50perc.png');
	background-repeat:repeat;
	
}

.ux-carousel-caption {
	font-family: Arial,sans-serif; font-style: normal; font-variant: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; 
    font-size: 11px;
    float: left;
    padding: 3px;
    margin: 0px;
    color: #eeeeee;
	letter-spacing: 0px;
    overflow: hidden;
    height: 25px;
	line-height: 11px;
}

.ux-carousel-nav-prev,
.ux-carousel-nav-next,
.ux-carousel-nav-play {
    height: 18px;
    display: block;
    float: right;
    margin: 0px;
    background-position: 0 18px;
}

.ux-carousel-nav-prev:hover,
.ux-carousel-nav-next:hover,
.ux-carousel-nav-play:hover {
    background-color: #ffffff;
}

.ux-carousel-nav .ux-carousel-nav-prev {
    background-image: url('images/prev.png');
    width: 24px;    
}

.ux-carousel-nav .ux-carousel-nav-next {
    background-image: url('images/next.png');
    width: 24px;
}

.ux-carousel-nav-play {
    background-image: url('images/play_pause.png');
    width: 24px;
}

.ux-carousel-nav-play:hover {
    background-position: 0 0px; 
}
.ux-carousel-nav-play.ux-carousel-playing {
    background-position: 22px 18px;
}
.ux-carousel-nav-play.ux-carousel-playing:hover {
    background-position: 22px 0px;
}

.ux-carousel-nav-prev:hover,
.ux-carousel-nav-next:hover {
    background-position: 0 18px;
}

.ux-carousel-nav-prev.ux-carousel-nav-disabled,
.ux-carousel-nav-next.ux-carousel-nav-disabled {
    background-position: 0 0;
}