/* CSS Document */

/* --------- 1. defaults  --------- */
* {
	margin: 0;
	padding: 0;
		}

body {
	font: 1em Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	color: #FFF; /* zorgt ervoor er in dit geval voor dat de menu items altijd wit zijn */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
/*  -------- tekstopmaak -------- */
p {
	font-size: 0.9em;
	line-height: 1.5em;
	color: #333;
}

h1 {
	font-size: 2.6em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-variant: small-caps;
	color: #e8e8e8;
}
h2 {
	font-size: 1.1em;
	font-family: verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #008c35;
	font-variant: small-caps;
}
h3 {
	font-size: 1.1em;
	font-family: verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #153a89;
	font-variant: small-caps;
}
h4 {
	font-size: 1.1em;
	font-family: verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #6a197c;
	font-variant: small-caps;
}
h5 {
	font-size: 1.0em;
	font-weight: bold;
	color: #6b6c74;
	display: inline;
}
h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #fff;
	display: inline;
	font-variant: small-caps;
	padding-right: 25px;
}
strong {
	color: #6b6c74;
}
a {
	color: #FC7A18;
	text-decoration: none;
}
a:link {
	text-decoration: none;
}
a:hover {
	color: #585858;
	text-decoration: underline;
	cursor: hand;
}
a:active { 
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
ul {
	color: #6b6c74;
	list-style-image: url(/images/bullit_msd.png);
	margin-top: 5px;
	margin-left: 50px;
}
ol {
	padding-left: 30px;
	color: #6b6c74;
	list-style-type: decimal;
	list-style-position: outside;
}
li {
	margin-top: 7px;
}
table tr td {
	vertical-align: top;
	color: #6b6c74;
	font-size: 0.8em;
}

