/*
	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 { /*padding: 20px*/ }
	.panel h2.title { margin-bottom: 10px; margin-top:0px; font-size:1.5em !important; }
	.panel h2.titles { margin-bottom: 10px; margin-top:0px; font-size:1.5em !important; }

	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: 0px 0; background-color:#FFF; /*min-height:250px;*/    /* optional rounded corners for browsers that support it */
   -moz-border-radius:6px 6px 6px 6px;
   -khtml-border-radius:6px 6px 6px 6px;
   -webkit-border-radius:6px;
   border-radius:6px 6px 6px 6px;
   /* optional drop shadow for browsers that support it */
   -moz-box-shadow: .1em .1em .4em #C2C2C2;
   -khtml-box-shadow: .1em .1em .4em #C2C2C2;
   -webkit-box-shadow: .1em .1em .4em #C2C2C2;
   box-shadow: .1em .1em .4em #C2C2C2;
   border:#DDDDDD solid 1px;
  	 }
	.coda-slider { /*background: #fff*/ }
	
	/* 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: 658px } 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { width: 638px }
	.coda-slider-wrapper.arrows .coda-slider { margin: 0 10px }
	
	/* Arrow styling */
	.coda-nav-left a, .coda-nav-right a { background: #000; color: #fff; padding: 5px; width: 100px }
	
	/* Tab nav */
	.coda-nav ul li a.current { background: #FFF; color:#fff; background-image:url(../images/ul-bg-current.jpg); background-position: bottom !important; padding-bottom: 10px; }
	.top-left-curve{ -moz-border-radius-topleft:6px; -khtml-border-radius-topleft:6px; -webkit-border-radius-topleft: 6px; border-radius-topleft:6px; }
	.tab1 a{ -moz-border-radius-topleft:6px; -khtml-border-radius-topleft:6px; -webkit-border-radius-topleft: 6px; border-radius-topleft:6px; }
	
	
	/* Panel padding */
	.coda-slider .panel-wrapper { padding-top: 15px; padding-bottom: 15px; padding-left: 15px; padding-right: 15px; }
	
	/* Preloader */
	.coda-slider p.loading { padding: 20px; text-align: left }

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

	/* Tabbed nav */
	.coda-nav ul { clear: both; display: block; overflow: hidden; background-color:#EBEBEB; width:658px !important; -moz-border-radius-topright:6px; background-image:url(../images/ul-bg.jpg); background-repeat:repeat; margin-left:0px !important; margin-bottom:0px !important; }
	.coda-nav ul li { display: inline }
	.coda-nav ul li a {
	background:none;
	color:#666666;
	display: block;
	float: left;
	margin-right: 0px;
	text-decoration: none;
	font-size:1em;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-right:1px #cccccc solid;
}
	.coda-nav ul li a:hover {
	background-image:url(../images/ul-bg-current.jpg);	
	color:#FFFFFF;
}
	
	/* Miscellaneous */
	.coda-slider-wrapper { clear: both; overflow: auto }
	.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: left; text-decoration: none }
	
