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

.slider-wrap {width:560px; position:relative; margin-left:0px; }
		
		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 30px;
		}
		


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

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			 /* this is the border. should have the same value for the links */
			margin: auto;
			width: 560px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 470px;
			clear: both;
			background: #1A1A1A;
			border-top:0px solid;
			border-bottom:#1A1A1A solid thin;
			border-right:0px solid;
			border-left:0px solid;
			border-bottom:none;
			-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
			
		}
		
		.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;
			
			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: 450px;
			position: relative;
			width: 560px; /* Also specified in  .stripViewer  above */
			
			top:0px;
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding:  10px;
			width:200px;
			height:470px;
			background:#1A1A1A;
			margin-left:320px;
			margin-top:0px;
		}
		
		
		
		.panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 10px 10px;
			width:200px;
			height:470px;
			background:#1A1A1A;
			margin-left:320px;
			margin-top:0px;
		}
		
		
		.panelContainer .panel .wrapper p{ color:#D0D0D0;}
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			float:left;
			width:580px;
		}
		
		.stripNav h3 {
			padding:2px 0px 2px 10px;
			margin:0px;
			width:548px; 
			display:block; 
			border:1px solid #1A1A1A; 
			background:#1A1A1A;
			color:#D0D0D0;
			border-top:none;
			-moz-border-radius-bottomright:5px;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			width: 580px;
			
			
		}
		
		.stripNav ul li {
			float: left;
			border-right: 2px solid #ffffff; /* 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 */
			font-size: 10px;
			font-weight: bold;
			text-align: center;
			line-height: 32px;
			background: #ffffff;
			color: #000;
			text-decoration: none;
			border:thin #1a1a1a solid;
			border-top:none;
			display: block;
			padding: 0 15px;
			-moz-border-radius-bottomleft:5px; 
			
			-moz-border-radius-bottomright:5px;
			
		}
		
		
		
		.stripNav li a.current {
			background: #1A1A1A;
			color: #D0D0D0;
			border:none;
			
			border-top: solid 1px #1A1A1A;
			
			
			
		}
		
		
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 230px;
			text-indent: -9000em;
			z-index:20;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 40px;
			width: 40px;
		}
		
		.stripNavL {
			left: 0;
		}
		
		.stripNavR {
			right: 0;
		}
		
		.stripNavL {
			background: url(images/arrow-left.gif) no-repeat center;
		}
		
		.stripNavR {
			background: url(images/arrow-right.gif) no-repeat center;
		}
		
		.postIt {height:300px; width:630px; float:left;}
		
		.panel {height:300px; width:100%;}