/*
 * jQuery Nivo Slider v2.7.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
 
#slider-wrapper {
  position: relative;
  background: url(/global/img/imgLayout/slider.png) no-repeat left top;
  width: 780px;
  height: 230px;  
  margin: -1px 3px 31px -10px;
  text-shadow: 0 1px rgba(0,0,0,0.4);
}

/* The Nivo Slider styles */
.nivoSlider {
  position:relative;
  width: 780px;
  height: 230px;
  margin-left: 0px;
  margin-top: 6px;
  background: url(/global/img/imgLayout/loading.gif) no-repeat 50% 50%;
}
.nivoSlider img {
  position:absolute;
  top:0px;
  left:0px;
  display:none;
    width:530px; /* Make sure your images are the same size */
    height:230px; /* Make sure your images are the same size */
}
.nivoSlider a {
    border:0;
    display:block;
  color: #fff;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  border:0;
  padding:0;
  margin:0;
  z-index:6;
  display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
  display:block;
  position:absolute;
  z-index:5;
  height:100%;
}
.nivo-box {
  display:block;
  position:absolute;
  z-index:5;
}

/* Caption styles */
.nivo-caption {
  position:absolute;
  left: auto;
  right:0px;
  bottom:50px;
  background: rgba(0,0,0,0.8);
  color:#fff;
  text-shadow: 0 1px #000;
  opacity:0.8; /* Overridden by captionOpacity setting */
  z-index:8;
  width: 425px;
  padding: 15px;
  overflow: hidden;
}
.nivo-caption p {
  padding:0;
  margin:0;
}
.nivo-caption a {
  display:inline !important;
  border-bottom: 1px dotted #fff;
}
.nivo-caption a:hover {
  border-bottom-style: solid;
  text-decoration: none;
}
.nivo-html-caption {
    display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  position:absolute;
  top:45%;
  z-index:9;
  cursor:pointer;
  text-indent: -10000px;
  width: 30px;
  height: 30px;
  background-image: url(/global/img/imgLayout/arrows.png);
  background-repeat: no-repeat;
}
.nivo-prevNav {
  left:15px;
  background-position: left top;
}
.nivo-nextNav {
  right:15px;
  background-position: -31px top;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
    background: url(/global/img/imgLayout/control-nav.png) no-repeat left top;
    width:95px;
    height:12px;
    position:absolute;
    left:400px; /* Tweak this to center bullets */
    bottom:-22px;
    padding: 12px 18px 13px;
    z-index:20;
}
.nivo-controlNav a {
    display:block;
    width:11px;
    height:12px;
    background:url(/global/img/imgLayout/bullets.png) no-repeat left top;
  position:relative;
  z-index:9;
  cursor:pointer;
    text-indent:-10000px;
    border:0;
    margin-left:10px;
    float:left;
}
.nivo-controlNav a:first-child {
  margin-left:0;
}
.nivo-controlNav a.active {
    background-position:0 -13px;
  font-weight:bold;
}




