/*
	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 */

	

/* Most common stuff you'll need to change */

	.coda-slider-wrapper { padding: 0px; position: relative; height: 240px; padding-bottom: 0px ; margin: 0px; float: left}
	.coda-slider { background: #ebebeb }
	
	/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
	.coda-slider-no-js .coda-slider { height: 240px; overflow: hidden;  }
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel { height: 240px; width: 726px } 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { height: 240px; width: 726px }
	.coda-slider-wrapper.arrows .coda-slider { margin: 0px }
	
	/* Panel padding */
	.coda-slider .panel-wrapper { padding: 0px }
	
	/* Preloader */
	.coda-slider p.loading { padding: 0px; text-align: center }

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

	/* Miscellaneous */
	.coda-slider-wrapper {  overflow: none }
	.coda-slider { float: left; overflow: hidden; position: relative }
	.coda-slider .panel { display: block; float: left }
	.coda-slider .panel-container { position: relative }
	
	
	
	.coda-nav-right  a {
		position: absolute; 
		top: 0px ;
		left: 825px ;
		display: block;
		width: 75px ;
		height: 350px ;
		background: url(../img/lightbox-blank.gif) ;
		z-index: 9999999994;
	}
	
		.coda-nav-right  a:hover {
			background: url(../img/slide_next.png) no-repeat center center ;
		}
	
	
	.coda-nav-left  a {
		position: absolute; 
		top: 0px ;
		left: 0px ;
		display: block;
		width: 75px ;
		height: 350px ;
		background: url(../img/lightbox-blank.gif) ;
		z-index: 9999999999 ;
	}
	
		.coda-nav-left  a:hover {
			background: url(../img/slide_previous.png) no-repeat center center ; ;
		}
	
	
	.coda-nav { /* This is the div to hold your nav (the UL generated at run time) */
		top: 220px ;
		left: 0px ;
		padding: 0px ;
		margin: 0px ;
		padding-left: 9px ;
		z-index: 999999999 ;
		width: 700px ;
		position: absolute; 
	}
	
	.coda-nav ul { /* The auto-generated set of links */
		list-style: none;
		margin: 0px ;
		padding: 0px ;
	}
	
	.coda-nav ul li {
		float: left;
		margin-right: 3px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
	}
	
	.coda-nav ul li a { /* The nav links */
		font-size: 3px;
		font-family: georgia ;
		text-align: center;
		height: 10px;
		width: 10px;
		background: #c28486;
		color: #333;
		text-decoration: none;
		display: block;
		padding: 0px;
	}
	
	
	.coda-nav ul li a:hover {
		background: #b0080e;
		color: #FFF ;
		text-decoration:none ;
	}
	
	.coda-nav ul li a.current {
		background: #b0080e;
	}