		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 30px;
			float : left;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			width: 700px;
			position: relative;
			margin: 0 400px 0 40px;
			font-size : 14px;
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 50px; height: 20px; #fff; overflow: hidden;}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin: auto;
			color : white;
			/*width: 700px; /* Also specified in  .stripViewer .panelContainer .panel  below */
		}
		
		.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; /* Stops the panels from highlighting/selecting, which I found problematic in Firefox. Also stops the CSS from validating though. Oh well. */
		}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
			float:left;
			display :inline;
			width: 700px; /* Also specified in  .stripViewer  above */
			height: 100%;
		}
		
		.stripViewer .panelContainer .panel .newsWrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 10px;
			/*width : 670px;*/
			color : white;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			width : 700px;
			margin : 0 0 0 -290px;
		}
		
		.stripNav ul li {
			display : inline;
		}
		.stripNav a { /* The nav links */
			font-size: 14px;
			font-weight: bold;
			text-align: left;
			line-height: 32px;
			color: white;
			text-decoration: none;
		}
		
		.stripNav a:hover {
		}
		
		.stripNav a.current {
			color: #EC1D25;
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			text-indent: -9000em;
		}

#stripNavL0, .stripNavL {
	display : none;
}

.newsWrapper h2 {
	color         : white;
	font-weight   : bold;
	font-size     : 18px;
	line-height   : 18px;
	text-align    : left;
	margin        : 6px 0 10px 0;
}

.newsWrapper ul {
	list-style : none;
	padding : 0;
	width : 200px;
}

.newsWrapper a {
	color : white;
}

.newsWrapper a:hover {
	color : #EC1D25;
}

.newsWrapper ul li{
	list-style : none;
	margin : 8px 0 0 -30px;
	padding : 0;
}

.newsWrapper ul li .hr {
	color  : #573d30;
	line-height : 1px;
	margin : 2px 0 2px 0;
	border : 0;
	border-top : 1px solid gray;
}

