/*
----------------------------------------------------------------------------------
 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.1
 Updated:        16/04/2006
---------------------------------------------------------------------------------- */
/*
----------------------------------------------------------------------------------
 Display upgrade message
---------------------------------------------------------------------------------- */
body {
	margin: 0;
	padding: 120px 5% 5% 5%;
	background-color: #fff;
	background-image: url(../images/upgrade.gif);
	background-repeat: no-repeat;
	background-position: top left;
	}



/*
----------------------------------------------------------------------------------
 Typography
---------------------------------------------------------------------------------- */

/* Fonts
----------------------------------------------- */
body, ol, ul, li, p {
	font-family: verdana, arial, helvetica, sans-serif;
	color: #000;
	}
h1, h2, h3, h4, h5, h6 {
	font-family: verdana, arial, helvetica, sans-serif;
	color: #000;
	}
pre, code {
	font-family: "Courier New", Courier, monospace;
	color: #000;
	}

/* Type sizing
----------------------------------------------- */
h1 {
	font-size: 150%;
	font-weight: normal;
	}
h2 {
	font-size: 120%;
	font-weight: normal;
	}
h3 {
	font-size: 100%;
	font-weight: normal;
	}
h4 {
	font-size: 80%;
	font-weight: normal;
	}
h5 {
	font-size: 70%;
	font-weight: normal;
	}
h6 {
	font-size: 64%;
	font-weight: normal;
	}
p, ol, ul, li, td, th, label {
	font-size: 80%;
	line-height: 120%;
	}
/* Vital for main stylesheet to avoid compound sizing */
ul li, li p, ul ul, td p, th p {
	font-size: 100%;
	}
li p, td p, th p {
	margin:0;
	}
pre, code {
	font-size: 80%;
	}

/* Additional type settings
----------------------------------------------- */
strong, b {
	font-weight: bold;
	}


/*
----------------------------------------------------------------------------------
 Additional basic styles
---------------------------------------------------------------------------------- */
img {
	border: 0;
	}



