/* CSS for jQuery Orbit Plugin 1.4.0
 * Maintained for Foundation. foundation.zurb.com
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 
/* CONTAINER
   ================================================== */

div.orbit-wrapper {
    width: 1px;
    height: 1px;
    position: relative; 
}

div.orbit {
    width: 1px;
    height: 1px;
    position: relative;
    overflow: hidden 
}
    
div.orbit.with-bullets {
    /* margin-bottom: 40px;*/ 
}

div.orbit .orbit-slide {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0; 
	
}

div.orbit a.orbit-slide {
    border: none;
    line-height: 0; 
    display: none; 
}

div.orbit div.orbit-slide {
    width: 100%;
    height: 100%; 
	
}

/* CAPTIONS
   ================================================== */

.orbit-caption {
	display: none;
	width:auto;
	padding-right:32px;
}

.orbit-wrapper > .orbit-caption {
	background: #C00;
    background: rgba(204,0,0,0.8);
 	z-index: 28;
	color: #fff;
	padding-top:16px;
	padding-bottom:16px;
	padding-left:16px;
	paddding-right:32px;
	box-shadow:2px 2px 5px rgba(0,0,0,0.5) ;
	
}

/* FLUID LAYOUT
   ================================================== */
   
div.orbit img.fluid-placeholder {
    visibility: hidden;
    position: static;
    display: block;
    width: 100%; }

div.orbit, div.orbit-wrapper { width: 100% !important; }

ul.orbit-bullets {

	margin:0px;
	
  	position: absolute;
    z-index:29;
    list-style: none;
	top:-32px;
	left:-35px;
}

ul.orbit-bullets li {
	float: left;
	margin-left: 5px;
	cursor: pointer;
	color: #999;
	overflow: hidden;
	text-indent: -9999px;

    /*
    width: 20px;
    height: 20px;
	background: url('../images/orbit/iconBullets.png') no-repeat 0px 0;
    */
}

ul.orbit-bullets li.has-thumb {
    background: none;
    width: 100px;
    height: 75px; }

ul.orbit-bullets li.active {
    color: #222;
    /*
    background-position: -20px 0; 
    */
    }

ul.orbit-bullets li.active.has-thumb {
    background-position: 0 0;
    border-top: 2px solid #000; }
	
