#galleryWrapper{
	position: relative;
	margin: 0;
	padding: 328px 0 0;
	width: 658px;  /*  Width of the entire gallery.  */
	overflow: hidden;  /*  This is a "safety" to make sure nothing sticks out of the box.  */
	background-color: #ccc;  /*  The color that appears behind video-player.swf.  */
	border: 1px #888 solid;
}

#playerPort{  /*  Container for video-player.swf.  */
	position: absolute;
	top: 0;
	left: 53px;
	margin: 0;
	padding: 0;
}

#videoClips{
	margin: 0;
	padding: 0;
	width: 658px;  /*  Width of playlist box. (Minus width of border-left)  */
	border-top: 1px #888 solid;
	background: #fff url('/video-gallery/img/bg-videoClips.png') repeat-x bottom left;
	overflow-x: scroll;
	overflow-y: hidden;
}

#videoClips ul{
	position: relative;
	margin: 0;
	padding: 0;
	width: 658px;
	list-style-type: none;
	list-style-position: inside;
}

#videoClips ul li{
	float: left;
	clear: none;
	margin: 5px 0 5px -1px;
	padding:  5px 20px;
	width: 150px;
	border-left: 1px dotted #888;
	border-right-width: 0;
}

#videoClips ul li img{  /*  Playlist thumbnails.  */
	margin: 0 10px 0 0;
	border: none;
}

#videoClips a{  /*  Playlist titles.  */
	font-size: 1em;
	text-decoration: none;
}

#videoClips a:hover{  /*  Playlist titles hover.  */
	text-decoration: underline;
}

#videoClips .description{  /*  Playlist descriptions.  */
	color: #1f1433;
	font-size: .9em;
}