html, body {
	background-color: black;
	color: white;  /* font color */
	font-family: Helvetica, Verdana, sans-serif;
	font-size: 10px;
}

div#content {
	width: 700px;
	margin: 0 auto;  /* center the content horizontally by auto-setting 
		the left/right margins */
}

a {
	color: #CCF;  /* light blue links */
}

a img {
	border: none;  /* no border on linked images */
}


/* center the headings */
h1 {
	text-align: center;  
}


div.video-sample {
	clear: both;
	margin: 5em;   /* space above and below */
	padding: 10px;
	background-color:  #111;
}
div.video-sample h2 {
	margin-top: 0; /* no extra space above headings in boxes */
}


img.video-thumb {
	float: left;
	margin-right: 15px;
	width: 175px;
	height: 122px;
}


/* fix the floats so that the sample box entirely wraps the thumbnail */
div.video-sample:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}