/* *******************************************************************************
   VASRT 2009 Challenge: Answer sheet style
   v.1.0, Jo Wood, 9th June 2009.
   *******************************************************************************/

/* ------------------ General layout, text colours and sizes  ------------------ */

/* Page-wide styles. By setting the font-size to a %, all other size measurements
   can be declared in terms of ems, keeping the layout elastic with an appropriate
   range of font sizes depending on the user's browser settings.
   At 80% font size, 1 em is 12.8 pixels (1 pixel = 0.0779 ems) on IE's 'Medium' 
   text size setting. The main content area is equivalent to 460 pixels wide on 
   a medium text setting.
 */
body 
{
	color:#0;
	background-color:white;
	font-size: 10pt;
	margin: 2em;
	font-family: arial, helvetica, sans-serif;
}

h1
{
	font-size: 12pt;
	text-align:center;
}

h1 .challenge
{
	background: #00ff00;
	text-decoration:underline;
}

h2
{
	font-size: 10pt;
}

.indent
{
	margin-left: 2em;
}

.question
{
	font-weight : bold;
}

.figureCaption
{
	margin-top: 0.5em;
	font-variant: small-caps;
	margin-bottom: 2em;
}

.figureCaption b
{
	font-variant: normal;
}

.fixed
{
	font-family: courier, courier new;
}

.todo
{
	color: #cc3333;
	font-weight: bold;
	font-style: italic;
}