/*
	jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
	Copyright (c) 2009 Niall Doherty
	This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/

/* Insignificant stuff, for demo purposes */


/* Most common stuff you'll need to change */

	.coda-slider-wrapper { padding: 0 }
	.coda-slider { width:812px; display:block;  margin-bottom:50px;}
	
	/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
	.coda-slider-no-js .coda-slider { height: 200px; overflow: auto !important; }
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel { width: 812px;  height:536px; overflow:hidden;} 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { width: 812px }
	.coda-slider-wrapper.arrows .coda-slider {}
	
	/* Arrow styling */
	.coda-nav-left a, .coda-nav-right a { background: url(../images/sprite.png) no-repeat; width:36px; height:45px; display:block; text-indent:-9999px; margin-top:245px;}
	.coda-nav-left a {background-position:0 -123px; margin-right:8px;}
	.coda-nav-right a {background-position:-37px -123px; margin-left:8px;}
	/* Tab nav */
	.coda-nav ul li a.current { background: #39c }
	
	/* Panel padding */
	.coda-slider .panel-wrapper {  }
	
	/* Preloader */
	.coda-slider p.loading {  text-align: center }

/* Don't change anything below here unless you know what you're doing */
	
/* IMAGES INSIDE THE PANELS */
	.panel-wrapper ul {display:block; list-style:none; margin:0; padding:0;}
	.panel-wrapper ul li {background:#ccc; width:252px; height:160px; float:left; margin:0 28px 28px 0;}
	.panel-wrapper ul li a {width:252px; height:160px; display:block; -moz-transition:opacity .3s ease; -webkit-transition:opacity .3s ease; transition:opacity .3s ease;}
	.panel-wrapper ul li a:hover {opacity:.7;}
	.panel-wrapper ul li a img {max-width:100%;}
	.panel-wrapper ul li.last {margin-right:0;}
	
	/* Miscellaneous */
	.coda-slider-wrapper { clear: both; overflow: auto }
	.coda-slider { float: left; overflow: hidden; position: relative }
	.coda-slider .panel { display: block; float: left }
	.coda-slider .panel-container { position: relative }
	.coda-nav-left, .coda-nav-right { float: left }
	.coda-nav-left a, .coda-nav-right a { display: block; text-align: center; text-decoration: none }