.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; 
	margin: auto;
	width: 100%; /* Also specified in  .stripViewer .panelContainer .panel  below */
	/*height: 350px;*/
	height: 287px;
	clear: both;
}

.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: 920px; /*This value must be specified or it becomes the width of the entire panelContainer*/
}

.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
	margin: auto;
	/*left: 475px; Left offset to imitate the dimensions provided to us*/
	/*top: 20px; Top offset to imitate the dimensions provided to us*/
	right: 13px;
	bottom: 20px;
	position: absolute; /*So it can draw on top of things :)*/
	z-index: 20; /*Bring it to the front, this will need to be adjusted so it does not compete with the drop downs*/
}

.stripNav ul li {
	list-style: none;
	float: left;
	margin-right: 1px; /* 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: .9em;
	font-weight: bold;
	text-align: center;
	line-height: 26px; /*We use line-height rather than height because line-height centers text vertically*/
	background: url(../../../images/slidePictures/navLinkBackground.png);
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0px 5px;
	cursor: pointer;
}

.stripNav li a:hover {
	background: #333;
}

.stripNav li a.current {
	background: #666;
	color: #fff;
}

.stripNavL, .stripNavR { /* The left and right arrows */
	position: absolute;
	/*top: 155px;*/
	top: 127px;
	text-indent: -9000em;
}

.stripNavL a, .stripNavR a {
	display: block;
	height: 35px;
	width: 30px;
	cursor: pointer;
}

.stripNavL, .stripNavR {
	width: 35px;
	height: 30px;
}

.stripNavL {
	left 0;
	background: url(../../../images/home/button_carousel_previous.png) no-repeat center;
}

.stripNavR {
	right: 0;
	background: url(../../../images/home/button_carousel_next.png) no-repeat center;
}

/*Custom styles / renames*/
div.prev {
	margin-left: 15px;
}

div.next {
	margin-right: 15px;
}

div.prev, div.next {
	z-index: 20;
	display: none;
}