html { height: 100%; }
body {
	color: ivory;
	background-color: black;
	height: 100%;
	margin: 0px;
	padding: 0px;
	}

#outer {
	height: 100%;
	width: 100%;
	/* overflow: hidden;
	position: relative; */
	}
#outer[id] {
	display: table;
	position: static;
	}

#middle {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	} /* for explorer only*/
#middle[id] {
	display: table-cell;
	vertical-align: middle;
	position: static;
	}

#inner {
	position: relative;
	top: 0px;
	text-align: left;
	} /* for explorer only */
#inner {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	} /* for all browsers*/

p.quote {
	font-family: calibri, arial;
	font-size: 90%;
	text-align: left;
	}
p.author {
	text-align: right;
	font-family: cursive;
	font-weight: bold;
	font-style: italic;
	font-size: 80%;
	}
p.id {
	display: none;
	}
a.author {
	color: inherit;
	text-decoration: none;
	cursor: auto;
	}
