/*
	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: 253px;
	overflow: auto !important;
}
/* Change the width of the entire slider (without dynamic arrows) */
.coda-slider, .coda-slider .panel {
	width: 888px;
	height: 253px;
	overflow: hidden;
}
/* Change margin and width of the slider (with dynamic arrows) */
.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel {
	width: 888px;
	height: 253px;
	overflow: hidden;
}

/* Arrow styling */
.coda-nav-left a, .coda-nav-left a:visited,
.coda-nav-right a, .coda-nav-right a:visited {
	display: block;
	text-decoration: none;
	z-index:10;
	position: absolute;
	left: 0;
	top: 221px;
	width: 21px;
	height:41px;
	outline: none;
	background-image:url('../images/prev.png');
}
/* Arrow styling */
.coda-nav-right a, .coda-nav-right a:visited {
	left: 909px;
	background-image:url('../images/next.png');
}
#slidercontainer .coda-nav-left a:hover {
	background-image: url('../images/prev-hover.png');
	text-decoration: none;
}
#slidercontainer .coda-nav-right a:hover {
	background-image: url('../images/next-hover.png');
	text-decoration: none;
}

/* Panels */
.coda-slider .panel-wrapper {
	padding: 15px 0 0 0px;
	background-color: #0a0909;
	height: 253px;
	color: #fff;
	overflow: hidden;
}
.arrows img  {
	border: 0;
}

/* Preloader */
.coda-slider p.loading {
	padding: 20px;
	text-align: center
}
/* Don't change anything below here unless you know what you're doing */

/* Tabbed nav */
.coda-nav ul {
	clear: both;
	display: block;
	margin: 0 auto;
	background-color: #fff;
	margin-top: -3px; /* =< IE7 */

}
.coda-nav ul li {
	display: inline
}
div#container .coda-nav ul li a {
	background: #8ab745;
	color: #fff;
	display: block;
	float: left;
	margin-right: 1px;
	padding: 3px 6px;
	text-decoration: none;
	border-top: 1px solid #fff;
}
div#container .coda-nav ul li a.current {
	background: #e10a0a;
	display: block;
	color: #fff;
}

/* Miscellaneous */
.coda-slider-wrapper {
	padding: 0px 0;
	overflow: hidden;
	width: 100%;
}
.coda-slider {
	float: left;
	overflow: hidden;
	position: relative;
}
.coda-slider .panel {
	float: left
}

.coda-nav-left, .coda-nav-right {
	float: left
}
.coda-nav-left a, .coda-nav-right a {
	display: block;
}
