/*
	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.
*/

/* Most common stuff you'll need to change */

	.coda-slider-wrapper {}
	.coda-slider {}

	/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
	.coda-slider-no-js .coda-slider {width:250px;}
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel {width:250px;} 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel {width:250px;}
	.coda-slider-wrapper.arrows .coda-slider {margin:0;}
	
	/* Arrow styling */
	.coda-nav-left-custom, .coda-nav-right-custom {position:absolute; width:15px; height:15px; overflow:hidden; bottom:0;}
	.coda-nav-left-custom a, .coda-nav-right-custom a{display:block; width:100%; height:100%;}
	.coda-nav-left-custom {left:0px; background:url('../img/gui/codaLeftArrow.jpg');}
	.coda-nav-right-custom {right:0px; background:url('../img/gui/codaRightArrow.jpg');}

	
	/* Tab nav */
	.coda-nav ul li a.current {background:#f5d109;}
	
	/* Panel padding */
	.coda-slider .panel-wrapper {background:#e2f2f2; margin-bottom:10px; padding-bottom:5px;}
	
	/* Preloader */
	.coda-slider p.loading {padding:20px; text-align:center;}

/* Don't change anything below here unless you know what you're doing */

	/* Tabbed nav */
	.coda-nav ul { clear:both; display:block; margin:0 auto; overflow:hidden;}
	.coda-nav ul li {display:inline;}
	.coda-nav ul li a {background:#a80731; display:block; float:left; margin:0 1px 1px 0; font-size:0; text-indent:-9999px; height:15px; width:15px;}
	
	/* 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 }
	
