/*

	Marsbrook
	
	- Defines styles for browsers that don't support @import
	- Only body & links need styling
	- Markup should be nice so site should still be usable
	
	a:link,
a:visited { color:#333; }
a:hover,
a:focus { color:#831026; }
	
*/

@import url(/styles/default.css); /* IMPORTS MODERN CSS */

body {font-family:"Lucida Grande", Verdana, Arial, Helvetica, sans-serif; font-size:16px}  /* JUST FONT-FAMILY & COLOURS */



a:link {
	color:#333333;
	text-decoration:none;
	}
a:visited {
	color:#666666;
	text-decoration:none;
	}
a:hover {
	color:#00547E;
	text-decoration:none;
	}
a:active {
	color:#00547E;
	text-decoration:none;
	}