body {
	text-align: center;
	margin-top: 10px;
	margin-left: 10px; 
	background-attachment: scroll; 
	background-repeat: repeat; 
	font-size: 14px;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	background-color: #000000;
	color: #eeeeee;
}

@media print {
	body {
		background-color: #ffffff;
		color: #000000;
	}
}

.textbig {
	font-size: 22px;
}
.textregular {
	font-sizeE: 14px;
}
.textsmall {
	font-size: 11px;
}
.thumbnaildisplay {
}

a:link, a:visited {
	color: #9999ff;
	text-decoration: underline;
}
a:hover {
	color: white;
}

/* to center the page (for the start.html page)*/
div.limitwidth {
	max-width: 800px;
	margin: auto;
}

/* the stuff below is for the movie page. It displays a play button on top of the movie image */
/* it superimposes two divs: one for the movie image, and one for the play button */
/* both are centered vertically and horizontally within the div (by using tables cell centering) */
div.penclosure {
	/* allows us to put the movie picture anywhere on the page*/
	position: relative;
	border: none;
	/* height should get set on web page, here's a default */
	width: 100%;
	height: 600px;
	clear: both;
}

div.ptable {
	/* one of these div for each superimposed picture */
	/* the table inside allows pic to be centered vert and horiz */
	position: absolute;
	left: 0px;
	top: 0px;
    width: 100%;
    height: 100%;
	display: table;
}

div.pcell{
	/* a single tablecell with vertically centered content */
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

img.centerimage {
	/* creates a separate block that can be centered inside table cell */
	display: block;
	margin: 1em auto;
	border: 0px;
}
img.centerbutton {
	/* creates a separate block that can be centered inside table cell */
	display: block;
	margin: 1em auto;
	border: 0px; /* removes default border for links */
	opacity: .3;
	filter: alpha(opacity=30);
	-moz-opacity:.3;
}
img.centerbutton:hover {
	opacity: .99;
	filter: alpha(opacity=99);
	-moz-opacity:.99;
}
img.floatright { float : right; margin : 0 10px 5px 10px; /* Top, Right, Bottom, Left */ }
img.floatleft { float : left; margin : 0 10px 5px 10px; /* Top, Right, Bottom, Left */ }
