/* Common CSS elements. Reset everything and the set base styles */

/* Reset everything using Eric Raymond's css */
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: "" "";
}

/*****************************************************************************/

/* Common classes and elements */

/* Elements */
body
{
	font-family:arial,helvetica,sans-serif;
	font-size:100%;
	line-height:1.4em;
	margin:1em;
}
em
{
	font-style:italic;
}
h1
{
	margin-top:.5em;
	margin-bottom:.5em;
	text-decoration:underline;
	font-size:200%;
	font-weight:bold;
}
h2
{
	margin-top:.5em;
	font-size:150%;
	font-weight:bold;
}
h3
{
	margin-top:.5em;
	font-size:130%;
	font-weight:bold;
}
p
{
	margin:1em;
	margin-bottom:0;
}

/* Classes */

/* Hidden element */
.hide
{
	display:none;
}

/* List indents */
ul, li
{
	margin-left:1em;
}

/* List with disc bullet */
ul.disc
{
	list-style-type:disc;
}

/* List with circle bullet */
ul.circle
{
	list-style-type:circle;
}

/* List with square bullet */
ul.square
{
	list-style-type:square;
}

/* Slightly bigger text */
.big
{
	font-size:125%;
}

/* Float right */
.right
{
	float:right;
}

/* Float left */
.left
{
	float:left;
}

/* Half size text */
.half
{
	font-size:50%;
}

/* Bold text */
.bold,.strong
{
	font-style:bold;
}

/* Clear both */
div.clearboth
{
	clear:both;
}

/* Clear left */
{
	clear:left;
}

/* Clear right */
{
	clear:right;
}

/* Full width */
.fullwidth
{
	width:100%;
}

/* Centre */
.centre
{
	text-align:center;
}
