/*
----------------------------------------------------------------------------------
 Name:           basic.css
 Title:          CSS file containing low level style for screen for older 
			     browsers, just enough to be tolerable. Styles are subsequently 
                 overwritten for modern browsers.
 Author:         Colin Mc Mahon [Protomatter Web Solutions], www.protomatter.co.uk
 Version:        0.3
 Updated:        07/12/2005
 Documentation:  None
---------------------------------------------------------------------------------- */

/*
----------------------------------------------------------------------------------
 Basic page properties
---------------------------------------------------------------------------------- */
/* This body is used to display upgrade message */
/*body {
	margin: 0;
	padding: 110px 5% 5% 5%;
	background-color: #fff;
	background-image: url(../images/upgrade.gif);
	background-repeat: no-repeat;
	background-position: top left;
	}*/
img {
	margin: 0;
	padding: 0;
	border: 0;
	}
strong, b {
	font-weight: bold;
	}
ol, ul, li {
	list-style: none;
	list-style-type:none;
	}


/*
----------------------------------------------------------------------------------
 Typography
---------------------------------------------------------------------------------- */
/* Set Fonts */
h1, h2, h3, h4, h5, h6, th {
	font-family: "Apple Garamond", "Times New Roman", Times, serif;
	}
body, ol, ul, li, p, input, label, td, textarea, select, legend, #nav a {
	font-family: Arial, Helvetica, sans-serif;
	}
	
/* Set font sizes in pixels in this sheet for older
   browsers that don't handle ems very well */
h1 {
	font-size: 19px;
	}
h2 {
	font-size: 17px;
	}
h3 {
	font-size: 14px;
	}
h4 {
	font-size: 13px;
	}

body, ol, ul, li, p, input, label, td, th, textarea, select, legend {
	font-size: 12px;
	}
strong, b {
	font-weight: bold;
	}

/* ----------------------------------------------------------------------------------
   Set Font colours
   ---------------------------------------------------------------------------------- */
h1 {
	color:#60223B;
	}
h2, h3, h4 {
	color:#60223B;
	}
/*body, ol, ul, li, p, h5, label, span.label {
	color:#000;
	}*/
/* links - order always :link, :visited, :hover, :active */
a:link {
	color:#138855;
	}
a:visited {
	color:#138855;
	}
a:hover {
	/*hover doesn't work in nn4*/
	color:#60223B;
	}
a:active {
	color:#60223B;
	}