/*
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)

*/

/* REMOVE PADDING AND MARGIN VALUES */
*, html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, img,
blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form,
input, textarea, fieldset, pre
{margin: 0; padding: 0;}


/* SET BASE FONT ATTRIBUTES */
html, body {
	/*font-size:12px/1.5em;*/
	/*font: 62.5% "Trebuchet MS", Trebuchet, Arial, "Arial Unicode MS", "Lucida Grande", Myriad, Helvetica, Verdana,  Sans-serif;*/
	font-size: 62.5%;
	font-family: Arial, "Arial Unicode MS", "Helvetica Neue", Helvetica, "Lucida Grande", Myriad, Verdana, Sans-serif;	
	color:#000;
	font-weight: normal;
	font-style: normal;
}

/* SORT OUT HEADER FORMATTING AND SIZES */
h1, h2, h3, h4, h5 {font-weight: bold;}
h1 {font-size: 2.25em;}
h2 {font-size: 2.0em;}
h3 {font-size: 1.75em;}
h4 {font-size: 1.5em;}
h5 {font-size: 1.25em;}
h6 {font-size: 1.0em;}


/* 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: #fff; background-color:inherit;}
a img, a:link img, a:visited img {border: none;}


/* REMOVE BROWSERS DEFAULT TABLE BORDERS */
table {border-collapse: collapse;}


/* REMOVE AUTOMATIC TOP/BOTTOM MARGINS ON NESTED LISTS */
ul ul, ul ol, ul dir, ul menu, ul dl,
ol ul, ol ol, ol dir, ol menu, ol dl,
dir ul, dir ol, dir dir, dir menu, dir dl,
menu ul, menu ol, menu dir, menu menu, menu dl,
dl ul, dl ol, dl dir, dl menu, dl dl
{margin-top: 0; margin-bottom: 0;}


/* HARMONISE LIST-BULLET TYPE */ /* why? */
ul, ol, dl {list-style-type: disc;}

/* REMOVE THE DOTTED FOCUS BORDER FROM LINK ELEMENTS */
a {
   outline: none;
}



