/* Some basic properties just for aesthetics */

body
{
	font-size: 81%;

	margin: 2.0em;
}

/* Font properties */
h1, h2, h3, h4, h5, h6, p, dl, ol, ul, label, input
{
	font-family: "Bitstream Vera Sans", Verdana, Arial, sans-serif;
}

/* General header reset */
h1, h2, h3, h4, h5, h6
{
	margin: 0em;
	margin-bottom: 1.0em;
	padding: 0em;
	font-size: 1.0em;
}

h1
{
	font-size: 1.8em;
	border-bottom: 1px solid black;
	
	margin-bottom: 2.0em;
}

/* Section headers, such as "Block-level Test" 
	and "Definition List Test" */
h2
{
	font-size: 1.3em;
	font-style: italic;
}

/* The "descend the text block" header */
h3
{
	font-weight: normal;
	font-size: 1.0em;
	margin: 0em;
}

h4
{
	font-weight: normal;
	font-style: italic;
	
	font-size: 0.9em;
}

/* Make these elements look clickable, since they 
 	have click event-handlers assigned to them */
h3, dl dt
{
	color: rgb(50, 50, 200); /* Medium blue */
	cursor: pointer;
	
	text-decoration: underline;
}

p, dl, dt, dd
{
	/* Force to 0 to avoid any doubt about 
		margins or padding */
	margin: 0em; 
	padding: 0em;
}


dl, div.block
{
	/* Ensures wrapping for the purpose of the test */
	width: 40.0em;
}