/*
 * 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;
    left: 0;
}

.ux-carousel-slide {
    float: left;
    overflow: hidden;
    text-align: left;
}

.ux-carousel-nav {
    height: 29px;
    width: 100%;
    background-color: #d1ccc7;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    filter:alpha(opacity=70);
    display: none !important;
}

.ux-carousel-caption {
    font-size: 20px;
    float: left;
    padding: 7px 5px;
    margin: 0;
    text-transform: none;
    color: black;
    overflow: hidden;
    height: 29px;
    width: 100px;
}

.ux-carousel-nav-prev,
.ux-carousel-nav-next,
.ux-carousel-nav-play {
    height: 24px;
    display: block;
    float: right;
    margin: 2px 0;
    background-position: 0 24px;
}

.ux-carousel-nav .ux-carousel-nav-prev {
    background-image: url('../images/carousel/prev.png');
    width: 31px;    
}

.ux-carousel-nav .ux-carousel-nav-next {
    background-image: url('../images/carousel/next.png');
    margin-right: 2px;
    width: 30px;
}

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

.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;
}

/* slider */
#slider {
  background: #408dc6 url(../images/slider/bg.jpg) no-repeat 0 0;
  margin: 0;
  padding: 0;
}
#slider-content {
  width: 800px;
  float: left;
}
#slider div.article {
  text-align: left;
  color: #fff;
}
#slider div.article h1 {
  margin: 30px 0 0 30px;
  font-size: 55px;
  line-height: 55px;
  color: #fff;
}
#slider div.article h2 {
  margin: 5px 0 0 32px;
  font-size: 30px;
  line-height: 30px;
  height: 100px;
  font-weight: normal;
}
#slider div.article p {
  margin: 5px 0 0 32px;
}
#slider div.article a.button {
  
}

/* navi */
ul.slider-navigation {
  position: absolute;
  list-style-type: none;
  z-index: 120;
  left: 340px;
  top: 324px;
}
ul.slider-navigation li {
  float: left;
  margin: 0;
  padding: 0;
}
ul.slider-navigation li a {
  outline: none;
}
ul.slider-navigation li a:hover {
  
}

/* tabs */
div#tabs {
  height: 254px;
  margin-bottom: 20px;
}
div#tabs-content {
  border: 1px solid #c5cdd2;
  height: 224px;
}
div#tabs-content div.article {
  margin: 20px 0 0 20px;
}
ul.tabs-navigation {
  height: 30px;
  border-bottom: 1px solid #c5cdd2;
  background: transparent url(../images/slider/bg-tab.gif) no-repeat 0 0;
  list-style-type: none;
  position: relative;
  z-index:200;
  top: 1px;
  margin: 0;
  padding: 0 0 0 8px;
}
ul.tabs-navigation li {
  float: left;
}
ul.tabs-navigation a {
  color: #464648;
  font-size: 12px;
  display: block;
  height: 27px;
  padding: 1px 8px 0 8px;
  margin: 3px 0 0 0;
  line-height: 24px;
  outline: none;
}
ul.tabs-navigation a.active {
  background-color: #fff;
  border: 1px solid #c5cdd2;
  border-bottom: 0;
  padding: 0 7px 0 7px;
}
