div.videoScroller {
	/* modify width and height of scrolling videoSection if necessary	*/		
	width: 800px;
	height: 800px;
	overflow: hidden;
	}
	div.videoScroller div.videoSection {
	/* modify width and height of each videoSection as needed (should match the size of the scroller window)	*/		
	width:800px;
	height:800px;
	overflow:auto;
	float:left;
	}
	div.videoScroller div.content {
		width: 10000px;
	}

	div#videoSection2 {
	background:#515151;
	color:#999999;
	}
	
	.videoControls{
	width: 100%;
	overflow: hidden; /*bottom horizontal line that runs beneath tabs*/
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #515151;
	}
	
	.videoControls ul{
	margin: 0;
	padding: 0;
	padding-left: 0px;
	list-style-type: none;
	font-size: 12px;
	font-weight: bold;
	}
	
	.videoControls li{
	display: inline;
	margin: 0;
	}
	
	.videoControls li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 8px; /*right divider between tabs*/
	color: white;
	background: #515151; /*background of tabs (default state)*/
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #414141;
	}
	
	.videoControls li a:visited{
	color: white;
	}
	
	.videoControls li a:hover, .videoControls li.selected a{
	background-color: #CCCCCC;
	}