@charset "utf-8";

/* HTML5 elementen instellen/resetten, zie html5doctor.com/html-5-reset-stylesheet */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #676405;
	margin: 0;
	padding: 0;
	color: #000;
}

ul, ol, dl { 
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6{
	padding:0;
	margin:0;
}



/* layoutcontainer met vaste breedte. Geen structuurelement, dus ongewijzigd */
#container {
	width: 720px;
	background: #FFF;
	margin: 0 auto; 
}

/* Header, alleen voor het koptekstgebied */
#container > header{
	text-align:center;
	background-color:#0A4967;
	color:#FFF;
}

/* slagzin onder de titel */
#container > header h2{
	font-size:100%;
	font-weight: normal;
	margin:10px 0px;	
}

/* wordt gebruikt om titels te verbergen die wel in de documentstructuur horen, maar niet getoond moeten worden in de UI */
.hiddenTitle {
		display:none;
}

/* Navigatie */
nav ul {
	width: 100%;
	height: 43px;
	background: #0A4967 url("images/menu-bg.gif") top left repeat-x;
	font-size: 0.8em;
	font-family: "Lucida Grande", Verdana, sans-serif;
	font-weight: bold;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
nav ul li {
	display: block;
	float: left;
	margin: 0 0 0 5px;
}
nav ul li a {
	height: 43px;
	color: #777;
	text-decoration: none;
	display: block;
	float: left;
	line-height: 200%;
	padding: 8px 15px 0;
}
nav ul li a:hover {
	color: #333;
}
nav ul li a.current {
	color: #FFF;
	background: #FFF url("images/current-bg.gif") top left repeat-x;
	padding: 5px 15px 0;
}


/* Inhoud */
#content {
	padding: 10px 20px;
}



article h1{	
	font-size:160%;
}
article h1 a{
	color:#0A4967;
	text-decoration:none;	
}
article h1 a:hover{
	color:#676405;
	text-decoration:underline;	
}

/* Het element aside (zijdelingse informatie bij blog-post) vormgeven */
article aside{
	float: right;
	width:200px;
	margin:10px;
	padding: 5px;
	background-color:#ffc;
	border-top: 5px solid #960;
	border-bottom: 5px solid #960;
	font-style: italic;
	clear:right;
	
}

/* koptekst binnen de aside */
article aside h1{
	font-size:110%;
	font-variant:small-caps;
	font-style:normal;
	text-align:center;
}

/* alineatekst binnen de aside */
article aside p{
	font-size:80%;
}


.datum{
	font-weight: bold;
	border-left:1px solid #676405;
	border-bottom:	1px solid #676405;
	padding-left:5px;
	padding-bottom:5px;
	margin-left:5px;
	float:right;
}

a.leesVerder{
	color:#0A4967;
	text-decoration:none;
}
a.leesVerder:hover{
	color:#676405;
	text-decoration:underline;
}

/* footer */
footer{
	padding: 10px 20px;
	border-top: 1px solid #0A4967;
	text-align:center;
	font-size: smaller;
}