body {
	font-size: 12pt;
	font-family: 'bitstream vera sans',sans-serif;
	margin: 20px;
	padding: 0;
	top: 10px;
	background-color: white;
	color:black;

	/* 
	 * US Letter is 21.590cm
	 * A4 is 20.997cm

	 * I'll take the smallest in width (A4)
	 * Most browser have a default border of
	 * 0.5 at left and right, so minus one cm
	 * And to get rid of hardware-margins
	 * minus another one . . .
	 */

	max-width: 18.997cm;
	min-width: 18.997cm;
	width: 18.997cm;

	/*
	 * I'm searching to define page-wrapping
	 */

	height: auto;

}

.dontprintme
{
	display: block;
	margin-bottom: 50px;
}

.document
{
	margin:10px;

	border-style: solid;
	border-width: 1px;
}

a
{
	text-decoration: none;
}


.description
{
	font-size: 24pt;
	white-space: normal;
}

.about
{
	font-size: 18pt;
	color: green;
	position: relative;
	white-space: normal;
}

.section
{
	width: auto;
	position: relative;
	margin:20px;
}

.subject
{
	max-width: 18.997cm;
	height: auto;	
	left: 10px;
	position: relative;
	margin-bottom:30px;
}

.question
{
	font-size: 14pt;
	color: purple;
	position: absolute;
	left: 0px;
	top: 0px;
	white-space: normal;

}

.answer
{
	position: relative;
	left: 30%;

	/* 
	 * Helps some browsers with line wrapping 
	 */

	max-width: 70%;

	color: black;
	font-size: 12pt;
	margin: 5px;
	white-space: normal;

}

.list
{
	background-color: white;
	list-style-position: inside;
	position: relative;
	left: 15px;
	display: list-item;
	color: black;
	font-size: 12pt;
	list-style: circle;
	margin: 5px;
	white-space: normal;
}


