/* 
 TYPOGRAPHY
 Font related information only (ie. font-*, text-*, line-height )
 See http://www.alistapart.com/articles/howtosizetextincss for sizing technique

*/
body {
	font-family: "Lucida Sans Unicode", "Lucida Grande", arial, verdana, sans-serif;
  	/*font-size:100%; - This is defined in the reset.css so dont need it here*/
  	line-height:1.125em; /* 16×1.125=18 */
}
h1, h2, h3, h4, h5, h6{
	line-height: 1.5em;
}

h1 {
	font-size: 	2.125em;
}

h2 {
	font-size: 1.625em;
}

h3, p#strapline, p#date strong {
	font-size: 1.25em;
}

p a, li a {
	font-size: 1em;
}

/*standard font size*/
p, li, a, dd, dt {
	font-size: 0.6875em;
}

p.caption {
	font-size: 0.55em;
}

/*Bold*/
a, #footer-content, strong {
	font-weight: bold;
}