﻿/********************** WORK ********************/
.stripViewer .panelContainer .panel ul { text-align: left; }

/* This div isn't entirely necessary but good for getting the side arrows vertically centered */
.slider-wrap {
	margin: 40 0 0 0;
	position: relative;
	width: 100%;
	text-align: center;
}

/* These 2 lines specify style applied while slider is loading */
.csw {width: 100%; background: transparent; overflow: hidden;}
.csw .loading {margin: 0px 0 0px 0; text-align: left}

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	border: none; /* this is the border. should have the same value for the links */
	margin: auto;
	width: 450px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	clear: both;
	background: transparent;
}

/* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
.stripViewer .panelContainer { 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. */
}

/* Each panel is arranged end-to-end */
.stripViewer .panelContainer .panel {float:left; height: 100%; position: relative; width: 445px; /* Also specified in  .stripViewer  above */ }

/* Wrapper to give some padding in the panels, without messing with existing panel width */
.stripViewer .panelContainer .panel .entry { padding: 5px; }

/* This is the div to hold your nav (the UL generated at run time) */
.stripNav { margin: auto; }

/* The auto-generated set of links */
.stripNav ul { list-style: none; padding: 0px; vertical-align: top; }

.stripNav ul li {
	float: left;
	margin-right: 2px; 
}

/* The nav links */
.stripNav a { 
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	line-height: 32px;
	background: #c6e3ff;
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 15px;
}

.stripNav div a.current { background: #000; color: #fff; }

/* The left and right arrows */ 
.stripNavL, .stripNavR { position: absolute; top: 100px; text-indent: -9000em; }

.stripNavL a, .stripNavR a { display: block; height: 91px; width: 33px; }
.stripNavL a:hover, .stripNavR a:hover { color: #666; }

.stripNavL { left: -35px; top: 50px;}
.stripNavR { right: -35px; top: 50px; }

.stripNavL { background:transparent url('../../images/arrow_left.gif') no-repeat center; }
.stripNavR { background:transparent url('../../images/arrow_right.gif') no-repeat center; }

