/*
	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 {  
	background: #FFF; padding: 5px 0;
	border-top:1px solid #b9cde0;
	border-bottom:1px solid #b9cde0;
	margin-bottom:20px }
.coda-slider { height:280px;  }
	
	/* 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: 860px } 
	
	/* Change margin and width of the slider (with dynamic arrows) */
.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel {  }
.coda-slider-wrapper.arrows .coda-slider { margin: 0 8px }
	
	/* Arrow styling */
.coda-nav-left a, .coda-nav-right a {
	width:45px;
	height:220px;
	top: 95px;
	margin-top:-90px;
	padding: 1px 2px;
	position: absolute;
	outline: none;
}
.coda-nav-left a {
	left: 0;
	float: left;
	background: #FFF url(/images/arrowblueleftout.gif) center center no-repeat;
}
.coda-nav-right a {
	right: 0;
	float: right;
	background: #FFF url(/images/arrowbluerightout.gif) center center no-repeat;
}

.coda-nav-left a:hover { background-image: url(/images/arrowblueleft.gif) }
.coda-nav-right a:hover { background-image: url(/images/arrowblueright.gif) }
			

.coda-nav ul li a.current { background: #9FF}
.coda-slider .panel-wrapper { padding: 10px 30px; height:220px; width: 780px; }
.coda-slider p.loading { padding: 20px; text-align: center; width: 780px; }

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

	/* Tabbed nav */
.coda-nav ul {  display: block; overflow: hidden; float:none; clear:both; margin-left:40px }
.coda-nav ul li { display: inline }
.coda-nav ul li a { background: #FFF; color: #333; display: block; float: left; margin: 0 1px; padding: 1px 5px; text-decoration: none }
	
	/* Miscellaneous */
.coda-slider-wrapper { clear: both; height: 265px; }
.coda-slider { float: left; overflow: hidden; position: relative;clear: both }
.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: inherit}
	