/*******************************
 *
 *	TYPO_HIGHCONTRAST.CSS
 *
 *  Version: 1.0
 *
 *	Authors: 
 *	The Roundhouse
 *  Tom Knowles / Dan Nisbet / Mike Harris / Paul Lewis
 *
 *  Description:
 *
 *	This CSS deals exclusively in typography, 
 *  including font size, weights, leading etc
 *  It also includes links, link decoration 
 *  and all text colours.
 *
 *  NB. HIGH CONTRAST VERSION - MUST BE USED IN 
 *  CONJUNCTION WITH TEXTONLY.CSS
 */


html
{
	font-family: 		Arial, Helvetica, sans-serif;
	font-size: 			100%;
}

body
{
	line-height: 		150%;
	color: 				#ffd800;
	background:			#000;
}

hr
{
	border:				1px solid #ffd800;

}

h1
{
	font-size: 			180%;
	width: 				auto;
}

h2
{
	font-size: 			150%;
	width: 				auto;
}

a
{
	color: 				#0099FF;
}

a:visited
{
	color: 				#00CCFF;
}

/* useful classes */

.smalltext
{
	font-size: 	100%;
}

.mediumtext
{
	font-size: 	120%;
}

.largetext
{
	font-size: 	140%;
}


/* print only stuff (javascript gubbins) */

.printOnly 
{
    display: 			none;
}