/* CSS for jQuery Orbit Plugin 1.2.3
 * www.ZURB.com/playground
 * Copyright 2010, ZURB
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 
 
 
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY
   ================================================== */
 
#presentation { 
	width:960px;
	height:320px;
	background:#111 url('orbit/loading.gif') no-repeat center center;
	overflow:hidden;
    box-shadow:0 0 8px rgba(0,0,0,.3);
    -moz-box-shadow:0 0 8px rgba(0,0,0,.3);
    -webkit-box-shadow:0 0 8px rgba(0,0,0,.3);
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    margin:0 -10px;
    border:10px solid #fff;
}
#presentation > div {
    display:none;
    width:960px;
    height:320px;
    overflow:hidden;
}
#presentation p {
    position:absolute;
    background-color:#6fa623;
    background-image:-webkit-gradient(
      linear, left bottom, left top,
      color-stop(0, #669622), color-stop(1, #6fa623));
    background-image:-moz-linear-gradient(
      center bottom,
      #669622 0, #6fa623 100%);
    color:#fff;
    line-height:32px;
    padding:0 10px;
    margin:0;
    width:910px;
    left:15px;
    bottom:15px;
}
#presentation span.zoom {
    display:block;
    width:70px;
    height:70px;
    position:absolute;
    left:445px;
    top:80px;
    background:url(/static/img/zoom.png) no-repeat 0 0;
}
#presentation span.zoom:hover {
    background:url(/static/img/zoom.png) no-repeat 0 -70px;
}


/* CONTAINER
   ================================================== */

div.orbit-wrapper {
    width: 1px;
    height: 1px;
    position: relative; }

div.orbit {
    width: 1px;
    height: 1px;
    position: relative;
    overflow: hidden }

div.orbit>img {
    position: absolute;
    top: 0;
    left: 0;
    display: none; }

div.orbit>a {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0; 
    display: none; }

.orbit>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */


/* TIMER
   ================================================== */

div.timer {
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    top: 30px;
    right: 20px;
    opacity: .7;
    cursor: pointer;
    z-index: 1001; }

span.rotator {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: -20px;
    background: url(orbit/rotator-black.png) no-repeat;
    z-index: 3; }

span.mask {
    display: block;
    width: 20px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    overflow: hidden; }

span.rotator.move {
    left: 0 }

span.mask.move {
    width: 40px;
    left: 0;
    background: url(orbit/timer-black.png) repeat 0 0; }

span.pause {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(orbit/pause-black.png) no-repeat;
    z-index: 4;
    opacity: 0; }

span.pause.active {
    background: url(orbit/pause-black.png) no-repeat 0 -40px }

div.timer:hover span.pause,
span.pause.active {
    opacity: 1 }


/* DIRECTIONAL NAV
   ================================================== */

div.slider-nav {
    display: block }

div.slider-nav span {
    width: 78px;
    height: 100px;
    text-indent: -9999px;
    position: absolute;
    z-index: 1000;
    top: 50%;
    margin-top: -50px;
    cursor: pointer; }

div.slider-nav span.right {
    background: url(orbit/right-arrow.png);
    right: 0; }

div.slider-nav span.left {
    background: url(orbit/left-arrow.png);
    left: 0; }

/* BULLET NAV
   ================================================== */

.orbit-bullets {
    z-index:0;
    list-style: none;
    padding:10px 0;
    position:absolute;
    width:42px;
    height:170px;
    top:30px;
    right:-52px;
    border-top-right-radius:10px;
    -moz-border-top-right-radius:10px;
    -webkit-border-top-right-radius:10px;
    border-bottom-right-radius:10px;
    -moz-border-bottom-right-radius:10px;
    -webkit-border-bottom-right-radius:10px;
    background-color:#fff;
}
.orbit-bullets li {
    margin:0 0 5px 0;
    cursor: pointer;
    color: #6fa623;
    text-align:center;
    width: 32px;
    height: 24px;
    overflow: hidden;
    font:bold normal normal 13px/26px "Droid Sans", Arial, sans-serif;
    background-image:url(/static/img/stripes.png);
}
.orbit-bullets li.active,
.orbit-bullets li:hover {
    background-color:#6fa623;
    color:#fff;
    background-image:-webkit-gradient(
      linear, left bottom, left top,
      color-stop(0, #669622), color-stop(1, #6fa623));
    background-image:-moz-linear-gradient(
      center bottom,
      #669622 0, #6fa623 100%);
}