/*
	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 */

	body {}
	.panel h2.title { margin-bottom: 10px }
	noscript div { background: #ccc; border: 1px solid #900; margin: 20px 0; padding: 15px }

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

	.coda-slider-wrapper {
		padding-bottom:5px;		
	}
	.coda-slider {
		margin-top:-2px;
		background-repeat:repeat-x;
		background-position:left top;
		
		border-width:1px;
		border-style:solid;
		border-top:none;
		
	}
	
	/* 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: 600px } 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { width:939px; }
	.coda-slider-wrapper.arrows .coda-slider {}
	
	/* Arrow styling */
	.coda-nav-left,
	.coda-nav-right {
		position:absolute;
		top:0;
		z-index:99;
	}
	.coda-nav-left {
		right:33px;
	}
     .coda-nav-right {
		right:0;
	}
	.coda-nav-left a,
	.coda-nav-right a {
		width:30px;
		height:30px;
		background-repeat:no-repeat;
	}
	.coda-nav-left a {
		background-position:0 -30px;
	}
	.coda-nav-left a:hover {
		background-position:2px 0;
	}
	.coda-nav-right a {
		background-position:-30px 0;
	}
	.coda-nav-right a:hover {
		background-position:-32px -30px;
	}
	
	/* Tab nav */
	
	
	/* Panel padding */
	.coda-slider .panel-wrapper { padding:30px 0 32px 26px;}
	.coda-slider .panel-wrapper h2 { font-size:24px;}
	
	/* Preloader */
	.coda-slider p.loading { padding: 50px 0 0 0; margin:0; text-align: center; color:white; }
	.coda-slider p.loading img { margin-top:7px;}

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

	/* Tabbed nav */
	.coda-nav {
		position:relative;
		z-index:99;
	}
	.coda-nav ul { 
		clear: both; 
		display: block;
		margin:0 0 0 -1px;
		overflow:hidden;
		padding:0;
	}
	.coda-nav ul li { 
		float:left; 
		padding:0;
		margin:0 -2px 0 0; 
		background-repeat:no-repeat;
		background-position:1px 11px;
	}
	.coda-nav ul li:first-child {
	}
	.coda-nav ul li a { 
		padding:0;
		background:none; 
		display: block; 
		position:relative; 
		float: left; 
		font-size:11px;
		font-weight:bold;
		text-transform:uppercase; 
		text-decoration: none; 
	}
	.coda-nav ul li a:hover span {
		text-decoration:underline;
	}
		.coda-nav ul li a span {
			display:inline-block;
		}
		.coda-nav ul li a .left {
			padding-left:1px;
			background-repeat:no-repeat;
			background-position:left -52px;
		}
		.coda-nav ul li a .right {
			padding-right:2px;
			background-repeat:no-repeat;
			background-position:right -52px;
		}
		.coda-nav ul li a .middle {
			height:52px;
			line-height:51px;
			padding:0 34px;
			background-repeat:repeat-x;
			background-position:left -52px;
		}
	
	.coda-nav ul li a.current span {
		text-decoration:none !important;
	}	
		.coda-nav ul li a.current .left,
		.coda-nav ul li a.current .middle {
			background-position:left top;
		}
		.coda-nav ul li a.current .right {
			background-position:right top;
		}
	
	/* Miscellaneous */
	.coda-slider-wrapper { clear: both;}
	.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 }