/* 
Contains text styles of the page.

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

Allowed:
all text related styles like
font-size, font-weight, line-height, text-align, whitespace, ...

Not allowed:
Any color, width/height or margin/padding styles!

Try to use em not px if possible!

*/

/* Tags */

body {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	font-size:10pt;
}
a {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}

h1 {
	font-size:1.4em;
	text-align:center;
	font-weight:900;
}
h2 {
	font-size:1.2em;
}
h3 {
	font-size:0.9em;
	font-weight:900; 
}



/* Nav */

#nav ul {
	font-size:8pt; 
	line-height:8pt;
}
#nav ul li {
	line-height:12px;
}
#nav ul li a {
	font-size:10px; 
	font-style:normal; 
	font-weight:900; 
}
#nav ul li a:hover {
	text-decoration:none;
}
/* Page */


#page {
	font-size:12pt;
}
#page .center {
	text-align:center;
}
#page .bold {
	font-weight:900;
}
#page .italic {
	font-style:italic;
}
#page .uppercase {
	text-transform:uppercase;
}
#page .small {
	font-size:0.9em;
}
#page .big { 
	font-size:1.3em;
}
#page .bigger {
	font-size:1.8em;
}
#page .wide {
	line-height:1.5em;
}
#page .cite {
	text-align:center; 
	font-weight:900; 
	font-size:.9em; 
	font-family:"Century Schoolbook", serif;
}
#page .cite cite {
	font-size:.9em; 
	font-weight:normal;
}
#page .changesize {
	text-align:right; 
	font-size:11pt;
}


/* Foot */

.copyright {
	font-size:8pt; 
	font-weight:900;
}
.copyright a {
	font-size:8pt;
}
