.stripViewer .panelContainer .panel ul {
	text-align: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

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

.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	border: 0px solid #000; /* this is the border. should have the same value for the links */
	margin: auto;
	width: 500px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 540px;
	clear: both;
	background-color: #F0F0F0;
}

.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: 120%;
	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: 500px; /* 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;
}


.stripViewer .panelContainer .panel li.contract {
	padding: 30px 0 10px 0px;
	margin-bottom: 8px;
	margin-left: 20px;
	overflow: hidden;
	width: 460px;
	border-bottom: 3px solid #CCC;
	list-style: none;
}

.stripViewer .panelContainer .panel li.contract a:link, .stripViewer .panelContainer .panel li.contract a:visited  {
	color: #363636;
	display: block;
	text-decoration: none;
}

.stripViewer .panelContainer .panel li.contract a:hover {
	color: #555;
	}

.stripViewer .panelContainer .panel li.contract p {
	float: left;
	display: inline;
	margin: 0 0 4px 0;
	width: 460px;
	font-size: 15px;
	letter-spacing: normal;
	color: #006699;
	line-height: 110%;
	letter-spacing: normal;
}

.stripViewer .panelContainer .panel li.contract .textinfo p {
	float: left;
	display: inline;
	margin: 0 0 4px 10px;
	width: 300px;
	font-size: 14px;
	letter-spacing: normal;
	color: #666;
	line-height: 110%;
	letter-spacing: normal;
}


.stripViewer .panelContainer .panel li {
	padding: 10px 0;
	margin: 0 30px;
	overflow: hidden;
	width: 438px;
	font-size: 13px;
	letter-spacing: normal;
	border-bottom: 1px dotted #CCC;
	list-style: none;
}

* html .stripViewer .panelContainer .panel li {
	padding: 10px 0 0 0;
}

.stripViewer .panelContainer .panel li a {
	text-decoration: none;
}

.stripViewer .panelContainer .panel li img {
	float: left;
	display: inline;
	padding: 4px;
	border: 1px solid #CCC;
}

.stripViewer .panelContainer .panel li p {
	float: left;
	display: inline;
	margin: 2px 0 6px 10px;
	width: 318px;
	font-size: 13px;
	line-height: 110%;
	letter-spacing: normal;
}


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

.stripNav ul { /* The auto-generated set of links */
	list-style: none;
	width: 500px;
}

.stripNav ul li {
	float: left;
	margin-right: 4px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
}

.stripNav ul li.pages {
	margin: 4px 4px 0 0;
	}

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

.stripNav li a:hover {
	background: #555;
	color: #EEE;
}

.stripNav li a.current {
	background: #222;
	color: #EEE;
}

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

.stripNavL a, .stripNavR a {
	display: block;
	height: 22px;
	width: 22px;
}

.stripNavL {
	left: 0;
}

.stripNavR {
	right: 0;
}

.stripNavL {
	background: url("../img/arrow-left.gif") no-repeat center;
}

.stripNavR {
	background: url("../img/arrow-right.gif") no-repeat center;
}