/**
This reset content was lifted from Eric Meyers "Reset Reloaded" article.
**/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/** remember to define focus styles! **/
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/**
End of "Reset Reloaded"
**/

/**
This will put a scrollbar on every page, which, for horizontally centred designs, will stop the page from "jumping" a bit when ever a scrollbar appears or disappears.
**/
html { height: 100%; margin-bottom: 1px; }

body {
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: small;
	line-height: 1.5em;
}

#wrapper {
	margin:0 auto;  /**put in the centre of the page - doesnt work for ie (see IE specific stylesheet)**/
}

#banner h1 {
	text-indent: -9999px;
}

.clearer {
	padding-top:1px;
	height:0px;
	overflow:hidden;
	clear:both;
}

p {
	margin:1.4em 0;
}

h2,h3,h4 {
	margin:1.4em 0;
}

.right {
	float:right;
	margin-left:2em;
	margin-bottom:2em;
}

.left {
	float:left;
	margin-right:2em;
	margin-bottom:2em;
}

.note {
	font-size:.9em;
	line-height:1.1em;
	color:#888;	
}

.quote {
	font-style:italic;
}

strong {
	font-weight:bold;
}