/*
	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 {padding:8px 8px 8px 8px; background-color:#d6d2c5; overflow: hidden;}
	.coda-slider {  overflow:hidden; }
	
	/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
	.coda-slider-no-js .coda-slider { height: 354px; overflow: auto !important; padding-right: 20px }
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel { width: 531px; height: 354px;  } 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider { width: 531px; }
	.coda-slider-wrapper.arrows .coda-slider .panel { width: 531px;}
	.coda-slider-wrapper.arrows .coda-slider { margin: 0px }
	
	/* 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 
	}
	.coda-slider { 
		float: left; 
		overflow-x: hidden; 
		position: relative 
	}
	.coda-slider .panel { 
		display: block; 
		float: left;
		margin: 0px;
		padding:0px;
	}
	.coda-slider .panel-container { position: relative; }
	.coda-nav-left, .coda-nav-right { display: none; }

	
	/* Tabbed nav */
	.coda-nav {
		width: 200px !important;
		
	}

	.coda-nav ul { 
		clear: both; 
		display: block; 
		padding: 0px; 
		margin:0px 0 8px 0px;
		width:500px !important;
		overflow: hidden;
	}
	
	.coda-nav ul li { float: left;margin:0 8px 0px 0;  list-style: none; }
	.coda-nav ul li a { 
		background: url(../images/template/bg_selector.gif) no-repeat; 
		overflow: hidden;
		display: block; 
		float: left; 
		padding:0px; margin:0px;
		
		width: 17px; 
		height: 15px; 
		text-decoration: none 
	}
	.coda-nav ul li a:hover,
	.coda-nav ul li a.current  { background-position: 0 -15px;}
	

	
	
