﻿/* This file contains the core layout required 
 * by the presentation system.  It does not 
 * contain any visual styling. 
 */
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.Presentation {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.Presentation > .PresentationInner {
	width: 2000%;
	position: absolute;
	overflow: hidden;
}
.PresentationInner > .Slide {
	float: left;
	position: relative;
	padding: 10px;
	overflow: hidden;
}
.PresentationInner > .Slide .SlideNumber {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 18px;
	font-style: italic;
}

.Clear {
	clear: both;
}

/* In order for complicated animations to work
 * correctly, items must be shrink-wrapped.
 */
.PresentationInner > .Slide .Item {
	float: left;
	clear: both;
}
