div.window{	
	background-color: white;
	overflow: auto;
	margin: 0px;
	border: 1px black solid;
	padding: 5px;
}

div.shadow{
	box-shadow: 10px 10px 20px 5px gray;
}

div.dialog{
	position: fixed;
	top: 200px;
	left: 0;
	right: 0;
	margin: auto;
	width: 600px;
	z-index: 100;
	padding: 5px;
}

h1.label{
	font-size: 20px;
	background: black;
	color: white;
	padding: 5px;
	margin: -5px -5px 5px -5px;
}


div.error{
	z-index: 200;
	border-color: red;
	background-color: #E68080;
}

div.smoke{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: hsla(0,0%,50%,0.5);
	z-index: 50;
}


