/* By www.meercommunicatie.nl */
/* This stylesheet sets basic styling (fonts, colors, background-colors, margins, paddings etcetera). */
/* It will be used by all CSS-capable user agents. */

/* 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: 1em;
	padding-top: 0;
	padding-bottom: 0;
}

/* Headers */

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 0;
	padding: 0;
}

h1 {
	font-weight: normal;
	font-size: 200%;
	line-height: 1.5em;
	text-align: center;
	margin-bottom: 1em;
}

h2 {
	font-size: 125%;
}

h3 {
	font-size: 112.5%;
}

h4 {
	font-size: 100%;
}

h5 {
	font-size: 90%;
}

h6 {
	font-size: 80%;
}

/* img */

img {
	border: none;
}

/* align */

.left {
	float: left;
	margin: 0em 1em 1em 0;
}

.right {
	float: right;
	margin: 0em 0 1em 1em;
}

/* form */

form div {
	clear: both;
	margin-bottom: 1em;
}

form div label {
	display: block;
	float: left;
	width: 6em;
}

form div div {
	clear: none;
	margin: 0;
}

form div div label {
	display: inline;
	float: none;
	width: auto;
}


form div.footer {
	text-align: right;
	margin-top: 1em;
	padding: .5em 0 2em 0;
	border-top: 1px solid white;
}

select,
textarea {
	font-size: 100%;
}


/* table */

table {
	font-size: 100%;
}

td, th {
	vertical-align: top;
}

table.border {
	border-collapse: collapse;
	border-style: solid;
}

table.border th,
table.border td {
	padding: .5em .5em;
	border: 1px solid white;
}


