@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;
}

@font-face {
	font-family: 'JungleFeverRegular';
	src: url('font/JungleFever-webfont.eot');
	src: local('☺'), url('font/JungleFever-webfont.woff') format('woff'), url('font/JungleFever-webfont.ttf') format('truetype'), url('font/JungleFever-webfont.svg#webfontNnM3o3mv') format('svg');
	font-weight: normal;
	font-style: normal;
	letter-spacing:200%;
}

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;
}
/* Slagschaduw toevoegen voor h1 en h2 */
h1, h2 {
	text-shadow: 2px 2px 2px #555;	/* algemeen */
 filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='#555', Positive='true');
>
}
/* 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;
}

#container > header h1{
	font-family:JungleFeverRegular, Verdana, Arial, Helvetica, sans-serif;
}
/* 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;
}
/* Artikelen in twee kolommen */
.tweeKolom {
	/* kolommen in Firefox */
	-moz-column-count: 2;
	-moz-column-gap: 1em;
	-moz-column-rule-width: 1px;
	-moz-column-rule-style: solid;
	-moz-column-rule-color: black;
	/* kolommen volgens CSS3-specificatie */
	column-count: 2;
	column-gap: 10px;
	column-rule-width: 1px;
	column-rule-style: solid;
	column-rule-color: black;
}
article h1 {
	font-size:160%;
}
article h1 a {
	color:#0A4967;
	text-decoration:none;
}
article h1 a:hover {
	color:#676405;
	text-decoration:underline;
}
article p{
	font-family: 'Droid Sans', arial, sans-serif;
}
/* 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;
	/* toevoegen slagschaduw voor de box.*/
	-webkit-box-shadow: 8px 8px 2px #999;
	-moz-box-shadow: 8px 8px 2px #999;
	box-shadow: 8px 8px 2px #999;
	/* afgeronde hoeken */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
/* 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;
}
