/*
	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:  0px;
	position: absolute;
	left: 75px;
	top: 30px;
	border-radius: .5em;
	-moz-border-radius: .5em;
	
}

.coda-slider-1 {
	background: #ffffff;
	overflow: hidden;
	border-radius: .5em;
	-moz-border-radius: .5em;
}

									/* 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; 
	border-radius: .5em;
	-moz-border-radius: .5em;
}
	
									/* Change the width of the entire slider (without dynamic arrows) */
.coda-slider, .coda-slider .panel { 
	width: 825px; 
	height: 450px;
	overflow: hidden;
	border-radius: .5em;
	-moz-border-radius: .5em;
} 
	
									/* Change margin and width of the slider (with dynamic arrows) */
.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { 
	width: 825px;
	height: 660px; 
}

.coda-slider-wrapper.arrows .coda-slider { 
	margin: 0px; 
}
	
									/* Arrow styling */
.coda-nav-left a  {
	color: #646464;
	padding: 0px;
	width: 10px;
	top: 455px;
	/* left:392px;*/
	/*left:0px;*/
	left:785px;
	position: absolute;
	z-index: 9000;
}
.coda-nav-right a {
	color: #646464;
	padding: 0px;
	width: 10px;
	top: 455px;
	/* left:422px;*/
	 /*left:20px;*/
	 left:805px;
	position: absolute;
	z-index: 9000;
}
	
									/* Tab nav */
.coda-nav ul li a.current { 
	color: #2d2d2d;
	cursor: pointer;
}
	
									/* Panel padding */
.coda-slider .panel-wrapper { 
	padding: 0px;
	border-radius: .5em;
	-moz-border-radius: .5em;
}
	
									/* Preloader */
.coda-slider p.loading { 
	padding:  0px; 
	text-align: center; 
	border-radius: .5em;
	-moz-border-radius: .5em;
}

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

									/* Tabbed nav */
.coda-nav ul {
	clear: both;
	display: block;
	margin: auto;
	overflow: hidden;
	font-size: .8em;
}
.coda-nav ul li { 
	display: inline 
}
.coda-nav ul li a {
	color: #646464;
	display: block;
	float: left;
	margin-right: 1px;
	text-decoration: none;
	padding-top: 3px;
	padding-right: 50px;
	padding-bottom: 0px;
	padding-left: 10px;
}
	
								/* Miscellaneous */
.coda-slider-wrapper { 
	clear: both; 
	overflow: hidden;
}
.coda-slider { 
	float: left; 
	overflow: hidden; 
	position: relative;
	border-radius: .5em;
	-moz-border-radius: .5em;
}
.coda-slider .panel { 
	display: block; 
	float: left;
	border-radius: .5em;
	-moz-border-radius: .5em;
}
.coda-slider .panel-container { 
	position: relative; 
	border-radius: .5em;
	-moz-border-radius: .5em;
}
.coda-nav-left, .coda-nav-right { 
	float: left ;
	
}
.coda-nav-left a, .coda-nav-right a { 
	display: block; 
	text-align: center; 
	text-decoration: none 
}
	
