/* By www.weevers.net */
/* This stylesheet sets basic styling (fonts, colors, background-colors, margins, paddings etcetera). */
/* It will be used by all CSS-capable user agents. */

body {
	font: 75%/1.6 Arial, Helvetica, sans-serif;
	color: black;
	background-color: white;
}

/* Set margins and paddings for various elements */
/* This will overrule the margins and paddings that are set in the default stylesheet of the user agent. */
address, blockquote, dl, fieldset, form, hr, ol, p, pre, table, ul {
	margin-top: 0;
	margin-bottom: 1.5em;
	padding-top: 0;
	padding-bottom: 0;
}

/* Headers */

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 160%;
	line-height: 116%;
	color: #5584BA;
	border-bottom: 1px solid #7FA3CB;
	margin-bottom: 1em;
}

h2 {
	font-size: 125%;
	color: #004798;
}

h3 {
	font-size: 100%;
}

h4 {
	font-size: 80%;
}

h5 {
	font-size: 70%;
}

h6 {
	font-size: 60%;
}

/* anchors */

a:link {
	color: #5584BA;
}

a:visited {
	color: #E03030;
}

/* classes */

.clearBoth {
	clear: both;
}

/* img */

img {
	margin: 0;
	padding: 0;
	border: none;
}

