/*
	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.
*/
/* 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;}
/* Preloader */
	.coda-slider p.loading { text-align: center; }
/* Miscellaneous */
	.coda-slider-wrapper { clear: both; overflow: auto; position: relative; padding-left: 39px; margin-top: 39px;}
	.coda-slider { float: left; overflow: hidden; position: relative; background: #000;	margin-top: 39px; } /* Margin-top is equal to how far navigation bar extends below */
	.coda-slider .panel { display: block; float: left; }
	.coda-slider .panel-container { position: relative; }
/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel { width: 902px; line-height: 0; } 
/* Arrow styling */
	.coda-nav-left, .coda-nav-right { position: absolute; top: 50%; }
	.coda-nav-left { left: 0; }
	.coda-nav-right { right: 0; }
	.coda-nav-left a, .coda-nav-right a {
		display: block;
		text-align: center;
		text-decoration: none;
		color: #fff;
		padding-top: 76px;
		height: 124px;
		width: 33px;
		font-size: 39px;
		margin-top: -100px;
		overflow: hidden;
		/* background: #000; */
	}
	.coda-nav-left a:hover, .coda-nav-right a:hover {
		background: #000;
	}
/* Tabbed nav */
	div.coda-nav {
		float: right;
		margin-right: 39px;
		height: 28px;
		padding-top: 5px;
		padding-right: 15px;
		border-top: 8px solid transparent;
	}
	.coda-nav, .coda-nav ul, .coda-nav ul li { display: inline;}
	.coda-nav ul li {
		list-style-type: none;
	}
	.coda-nav ul li a {
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #737373;
		text-decoration: none;		
	}
	.coda-nav ul li a.current {
		color: #fff;
	}
	.coda-nav ul li a:hover {
		color: #a1b926;
	}