.projectNavigator 
{
    text-align:center;
    width:550px;
    color:#D21242;
}
.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin: 0 15px 0 30px;
}
.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	margin: 7px 0;
	position: relative;
	height:515px;
}
/* These 2 lines specify style applied while slider is loading */
.csw {
	/*width: 100%;
	height: 520px;*/
	overflow: scroll
}
.csw .loading {
	margin: 200px 0 300px 0;
	text-align: center
}
.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden;
	border:1px solid #d21242;
	margin: auto;
	width: 620px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 520px;
}
.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;
	height:520px;
	width: 100%;
	list-style-type: none;
}
.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	height: 100%;
	position: relative;
	height:520px;
	width: 620px; /* 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; */
}
.stripNavL { float:left; }
.stripNavL a:link, .stripNavL a:visited {
	float:left;
	width:16px;
	height:30px;
	background-image:url(/images/main/arrow_left.gif);
	background-repeat:no-repeat;
	background-position:top right;
	background-color:#FFFFFF;
}
.stripNavL a:hover {
	background-image:url(/images/main/arrow_left_over.gif);
	background-repeat:no-repeat;
	background-position:top right;
}
.stripNavR { float:right; margin-right:20px; width:16px; height:30px; }
.stripNavR a:link, .stripNavR a:visited {
	float:right;
	width:16px;
	height:30px;
	background-image:url(/images/main/arrow_right.gif);
	background-repeat:no-repeat;
	background-position:top left;
	background-color:#FFFFFF;
}
.stripNavR a:hover {
	background-image:url(/images/main/arrow_right_over.gif);
	background-repeat:no-repeat;
	background-position:top left;
}