/*******************************
 *
 *	TYPO_HIGHCONTRAST.CSS
 *
 *  Version: 1.0
 *
 *	Authors: 
 *	The Roundhouse
 *  Tom Knowles / Dan Nisbet / Mike Harris
 *
 *  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%;
	background:			#000;
}

body
{
	line-height: 		150%;
	color: 				#ffd800;
}

h1
{
	font-size: 			180%;
	width: 				auto;
}

h2
{
	font-size: 			150%;
	width: 				auto;
}

a
{
	color: 				#0099FF;
}

a:visited
{
	color: 				#00CCFF;
}

hr
{
	color: 				#ffd800;
	height: 			1px;
	border: 			0;
	background-color: 	#ffd800;
}

fieldset
{
	border: 			1px solid #0099FF;
	padding:			20px;
}

/*  table styling */

table
{
	width: 				100%;
	border-collapse: 	collapse;	
	margin-bottom: 		20px;
}

caption, 
thead
{
	font-size: 			150%;
	width: 				auto;
	padding: 			20px;
}

table td
{
	vertical-align: 	top;
	padding: 			15px;
	border: 			1px #0099FF solid;
}

/* useful classes */

.smalltext
{
	font-size: 			100%;
}

.mediumtext
{
	font-size: 			120%;
}

.largetext
{
	font-size: 			140%;
}

.separator
{
	display: 			none;
}

/* print only stuff (javascript gubbins) */

.printOnly 
{
    display: 			none;
}