/*
	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 { width: 100%; }
	.coda-slider { }
	
	/* 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; padding-right: 20px; }
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel {
		width: 2000px; /* Starting width, adjusted with jQuery */
	} 
	
	/* Arrow styling */
	.coda-nav-left a, .coda-nav-right a { background: #000; color: #f5f5f5; padding: 5px; width: 100px }
	
	/* Tab nav */
	.coda-nav ul {
	margin-left:20px;
	position:absolute;
	bottom:0;
	left:0;
	}
	.coda-nav ul li { display: inline; }
	.coda-nav ul li a {
		color:#cdf500;
		display: block;
		float: left;
		padding: 2px;
		margin-right:10px;
		text-decoration: none;
		font-size:20px;
		font-weight:normal;
		border-bottom:5px solid #000;
		margin-bottom:3px;
	}
	.coda-nav ul li a:hover {
		border-bottom-color:#f5f5f5;	
	}
	.coda-nav ul li a.current {
		color:#f5f5f5;
		border-bottom-color:#f66f00;
		border-bottom-width:8px;
		margin-top:-3px;
	}
	
	/* Panel padding */
	.coda-slider .panel-wrapper {
		padding: 0px;
		width: 820px;
	}
	
	/* Preloader */
	.coda-slider p.loading { padding: 20px; text-align: center }

/* Don't change anything below here unless you know what you're doing */

	/* Miscellaneous */
	.coda-slider-wrapper { clear: both; overflow: auto; overflow-x:hidden; }
	.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 { position: fixed; z-index:99; }
	.coda-nav-left { top:50%; left:0; }
	.coda-nav-right { top:50%; right:0; }
	.coda-nav-left a, .coda-nav-right a { display: block; text-align: center; text-decoration: none; }
	