/* 
Contains strucural styles of the page.

(c) Copyright 2008 PuzzWorks OHG.
Author: Georg Freund <georg.freund@puzzworks.com>

Allowed:
all structure related styles
display, width/height, padding/margin, position, top/right/bottom/left, overflow, float, ...

Not allowed:
Any color or font styles or any style wich is not relevant for the strukture of the page.

Keep this file as small as possible!

*/

/* Dialog */

#dialog {
	display:none;
}

body.dialog {
	overflow:hidden;
}

body.dialog #dialog {
	display:block;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
}


