/*

Parchment
=========

Built: 2012-08-12

Copyright (c) 2008-2012 The Parchment Contributors
BSD licenced
http://code.google.com/p/parchment

*/
html{
	overflow-y:scroll;
	-webkit-text-size-adjust:none;
}

body{
	background:#ffffff; /* #FFF */
	background-image:url(bg.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	background-attachment:fixed;
	color:#333333; /* #000 */
	font-family: Century Gothic, sans-serif; /* Georgia,Palatino,serif;  - THIS IS THE FONT USED*/
	font-size:14px; /* 16px */
	margin:0 0 8px;
	text-align:center;
}
	
#parchment{
	margin:0 auto;
	text-align:left;
}

#gameport{
	line-height:1.45; /* 1.4 - THIS IS THE SPACE BETWEEN LINES*/
	margin:0 auto;
	text-align:left;
	width:550px; /* 80% - THIS IS THE WIDTH OF THE TEXT */
}

.dialog{
	background:#ffffff;
	border:3px solid #ddd;
	border-radius:10px;
	-webkit-box-shadow:5px 5px 10px #777;
	box-shadow:5px 5px 10px #777;
	left:30%;
	padding:0 20px;
	position:fixed;
	top:20%;
	width:40%;
	}
	
.load{
	text-align:left;
}

.panel input{
	display:block;
	margin:0 auto;
	width:50%;
}

.error{
	background:red;
	color:white;
	padding:10px;
	margin:10px;
}
	
#parchment{
	white-space:pre-wrap;
}
		
.TextInput{ /* This is what the player writes */
	background:none;
	border:0;
	color:inherit;
	display:inline;
	font:inherit;
	outline:0;
	padding:0;
}
.CharInput{
	left:-999em;
	position:absolute;
}
	
.TextGrid{
	position:fixed;
	z-index:2;
}

.box{
	position:absolute;z-index:1;
}

.main,.TextGrid{
	padding:0 1px;
}

tt{
	font-family:monospace;
	line-height:1;
}








