@charset "utf-8";
/* CSS Document */

/*----------Coda Slider----------*/
		.stripViewer .panelContainer .panel ul {
		text-align: left;
		margin: 0 0px 0 0px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
		margin: 10px auto;
		position: relative;
		width: 950px;
		}
	
		.wrapper ol li {
		background-image: url(images/leaf.png) ;
		background-position: top left;
		background-repeat: no-repeat;
		padding-left: 20px;
		list-style: none;
		line-height:1.55em;
		font-size:13px;	
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 460px; background: #fff; overflow: scroll}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin: 0px auto 0px auto;
			width: 830px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: inherit;
			clear: both;
			padding: 10px 0px 10px 10px;
			border: 1px solid silver;
			}

		.stripViewer .panelContainer { /* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
			position: relative;
			left: 0; top: 0;
			width: 100%;
			list-style-type: none;
			/* -moz-user-select: none; // This breaks CSS validation but stops accidental (and intentional - beware) panel highlighting in Firefox. Some people might find this useful, crazy fools. */
		}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
			float:left;
			height:100%;
			position: relative;
			width: 830px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 10px 20px 10px 20px;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
		}
		
		.stripNav a { /* The nav links */
			position:relative;
			font-size: 0.9em;
			line-height:2.7em;
			font-weight: 300;
			text-align: center;
			color:#009;
			text-decoration: none;
			display: block;
			padding: 0 25px;
			z-index:1;
		}
		
		.stripNav li.tab1 a { width:90px;height:40px;}
		.stripNav li.tab2 a { width:96px;height:40px;}
		.stripNav li.tab3 a { width:90px;height:40px;}
		.stripNav li.tab4 a { width:90px;height:40px;}
		
		.stripNav li.tab1 a:focus, li.tab1 a:active, li.tab1 a.current {background-image:url(images/selectedtab.png); text-decoration:none; bottom:-1px;}
		.stripNav li.tab2 a:focus, li.tab2 a:active, li.tab2 a.current {background-image:url(images/selectedtab.png); bottom:-1px;}
		.stripNav li.tab3 a:focus, li.tab3 a:active, li.tab3 a.current {background-image:url(images/selectedtab.png); bottom:-1px;}
		.stripNav li.tab4 a:focus, li.tab4 a:active, li.tab4 a.current {background-image:url(images/selectedtab.png); bottom:-1px;}

		.stripNav li.tab1 a:hover {background-image:url(images/tabhover.png);}
		.stripNav li.tab2 a:hover {background-image:url(images/tabhover.png);}
		.stripNav li.tab3 a:hover {background-image:url(images/tabhover.png);}
		.stripNav li.tab4 a:hover {background-image:url(images/tabhover.png);}


		.imgwrap {float:right; margin: -20px 0px 10px 10px;}

		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 200px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 40px;
			width: 40px;
		}

		.stripNavL {left: 0;}
		
		.stripNavR {right: 0;}
		
		.stripNavL {background: url("images/lfarrow.png") no-repeat center;}	
		.stripNavL:hover {background: url("images/lfarrow_over.png") no-repeat center;}		
		.stripNavR {background: url("images/rtarrow.png") no-repeat center;}		
		.stripNavR:hover {background: url("images/rtarrow_over.png") no-repeat center;}