/*
credit goes to http://mattwilcox.net/ 

BASE.CSS
attempts to set all layout attributes to the absolute basics, so that inbuilt 
browser formatting won't produce un-expected results (i.e. incosistant padding 
values on across different browsers wont catch you out, because we set them 
all here)
*/


/* SET BASE FONT ATTRUBUTES */
html, body {
	font: 12px/1em  verdana, tahoma, Arial, "Arial Unicode MS", Myriad, Helvetica, Verdana, "Trebuchet MS", Sans-serif;	
	color:#000;
	font-weight: normal;
	font-style: normal;
}

body {
	padding: 0px 2px 2px 2px;
	margin:0px;
}

/* SORT OUT HEADER FORMATTING AND SIZES */
h1, h2, h3, h4, h5 {font-weight: bold;}
h1 {font-size: 1.75em;}
h2 {font-size: 1.5em;}
h3 {font-size: 1.2em;}
h4 {font-size: 1.1em;}
h5 {font-size: 1em;}
h6 {font-size: 1em;}

/* HARMONIZE LINKS, KILL BORDER ON IMG LINKS */
a {text-decoration: underline;}
a:link, a:visited {color: #00f; background-color:inherit;}
a:hover {color: #33f; background-color:inherit;}
a:active {color: #blue; background-color:inherit;}
a img, a:link img, a:visited img {border: none;}

/* REMOVE BROWSERS DEFAULT TABLE BORDERS */
table {border-collapse: collapse;}

/* HARMONISE LIST-BULLET TYPE */
ul, ol, dl, menu, dir {
  display: block;
  list-style-type: disc;
}
