/*
 * Ext Core Library Examples 3.0
 * 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;
    left: 0;
}

.ux-carousel-slide {
    float: left;
    overflow: hidden;    
    text-align: center;
    /* background:#fff; /* fff vit*/
    /*width:480px; /*752px*/
    /*height:580px;  /*416*/
}

/* Hur hög ska bilden vara?*/
/*Nuvarande bildyta är 735 x 520*/
.ux-carousel-slide img {		
    height:520px; /*416px*/
    padding-left:10px; /* Utrymme mellan bilderna vid växlingen */
}

.ux-carousel-nav {
    height: 50px;
    width: 840px;   /*752px*/ 
    position: absolute;    
    /*top: 440px;*/
    top: 542px;
    left: 0px;
    /*
    opacity: 0.7;
    filter:alpha(opacity=70);
    */    
}
/* pilar */
.ux-carousel-nav-prev,
.ux-carousel-nav-next,
.ux-carousel-nav-play {
    height: 24px;
    display: block;
    float: right;
    margin: 7px 0;
    background-position: 0 24px;        
    padding:0px;
    outline-style: none;     
    outline-width:0px;
}
/* Text till bilden */
.ux-carousel-caption {
	font:bold 16px/30px arial;
	color:#9ab7c8;
  float: right;
  padding: 4px 5px 0 50px; /*5px 5px 0 50px*/
  margin:0px;
  text-transform: none;
  overflow: hidden;    
  height: 40px;
 	width:685px !important; /*630px*/
 	background: url('../img/captionframe.png') no-repeat;
 /*	background-color:#ccc;*/
  background-position: 20px 2px;  
 	overflow:hidden; 	
}
.ux-carousel-nav .ux-carousel-nav-prev {
    background-image: url('../img/arrow_left3.png');
    width: 19px;    
    margin-right:8px;
}

.ux-carousel-nav .ux-carousel-nav-next {
    background-image: url('../img/arrow_right3.png');
    margin-right: 18px;
    width: 19px;
}

.ux-carousel-nav-play {
    /* background-image: url('../images/play_pause.png'); */ 
    width: 0px;
}

.ux-carousel-nav-play:hover {
    background-position: 0 0; 
}
.ux-carousel-nav-play.ux-carousel-playing {
    background-position: 24px 24px;
}
.ux-carousel-nav-play.ux-carousel-playing:hover {
    background-position: 24px 0;
}

.ux-carousel-nav-prev:hover,
.ux-carousel-nav-next:hover {
    background-position: 0 48px;
}

.ux-carousel-nav-prev.ux-carousel-nav-disabled,
.ux-carousel-nav-next.ux-carousel-nav-disabled {
    background-position: 0 0;
}
