
	/*
		holly-hack for IE5-6, which fixes the peek-a-boo bug (encountered in the gainlayout box on the homepage).
		
		Cause: floating divs in IE5-6 don't have the intrinsic hasLayout property and won't render correctly
		Solution: provide the hasLayout property extrinsicly by means of a CSS style [hack]
		Paradigm: 	1. Any floating content that has a text-rendering problem in IE, try assigning the "gainlayout" to it
					2. Any floating content that seems to suffer displacement, try assigning the "gainlayout" to it
		
		http://www.positioniseverything.net/explorer/peekaboo.html
		http://www.satzansatz.de/cssd/onhavinglayout.html#hack
	*/
	
	/* \*/
		* html .gainlayout { height: 1%; }
	/* */
	
	
	/* global absolute styles for FBTO website */
	
	.clear {
		clear: both;
		height: 1px;
		line-height: 1px;
	}
	
	img {
		border-style: none;
		/* known xhtml (Strict?) bugfix */
		margin-bottom: -4px; 
	}
	
	strong {
		font-weight: bold;
	}
	
	.nospace, .nospace_top {
		margin-top: 0px !important;
	}
	
	.nospace, .nospace_bottom {
		margin-bottom: 0px !important;
	}
	
	ul {
		list-style-type: none;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}
	
	ul.bulleted {
		list-style-position: inside;
	}
	
	ul.bulleted li, div.bulleted {
		background-image: url('themablok_bullet.gif');
		background-repeat: no-repeat;
		background-position: center left;
		text-indent: 1em;
	}
	
	/* fix IE bug met textindent probleem en list-style-position */
	ul.bulleted li {
		#text-indent: 0em;
	}
	
	/* bulleted lijst (1 kolom) voor opsommingen oid */
	ul.bulleted.optionslist li {
		margin-top: 2px;
		line-height: 1.5em;
		background-position: .4em .6em;
	}
	
	/* in order to remove spacing, we need to change the li's height 
		and for that, we need to realign text to the top */
	ul.no_gaps li * {
		vertical-align: top;
	}
	
	ul.no_gaps li {
		line-height: .9em;
	}
	
	/* fix two line issue (with whitespace wrapping) when using custom bullets and no floats */
	
		/* example:
			<li class="twolinefix">
				<div class="twolinefix">
					<a class="microactie bereken" href="#">&nbsp;&nbsp;&nbsp;&nbsp;</a>
				</div>
				<a class="navlink textsmall" href="#">
					Bereken uw<br />kredietmogelijkheden
				</a>
			</li>
		*/
		
	li.twolinefix {
		line-height: .75em;
		clear: both;
		/* for correct spacing, compensate for the line-height */
		margin: .25em 0em .25em 0em;
	}
	
	li.twolinefix div.twolinefix {
		float: left;
		margin-top: .5em;
		/* assuming bullet of 12px (.microactie) */
		width: 1.3em;
		#width: 1.05em;
	}
	
	/* global recurring style for FBTO website */
	
	
	.textnormal, .textsmall, .textsmaller {
		font-family: Arial,Helvetica,sans-serif;
		font-weight: normal;
	}
	
	.textnormal {
		font-size: 12px;
	}
	
	.textsmall {
		font-size: 11px;
	}
	
	.textsmaller {
		font-size: 10px;
	}
	
	.micronavlink {
		font-family: Arial,Helvetica,sans-serif;
		font-size: 11px;
		font-weight: bold;
	}
	
	.textnav {
		font-family: Tahoma;
		font-size: 12px;
		font-weight: bold;
	}
	
	select {
		font-family:Tahoma;
		font-size: 9px;
		font-weight: normal;
	}
	
	.header_big, .header_medium, .header_mediumsmall, .header_small, .header_smaller {
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
	}
	
	.header_small, .header_smaller {
		margin-bottom: 5px;
		margin-top: 0px;
	}
	
	.header_small.small2, .header_smaller.smaller2 {
		margin-bottom: 0px;
	}
	
	.header_big {
		font-size: 18px;
	}
	
	.header_medium {
		font-size: 14px;
	}
	
	.header_mediumsmall {
		font-size: 13px;
	}
	
	.header_small {
		font-size: 12px;
	}
	
	.header_smaller {
		font-size: 11px;
	}
	
	.floating_image, .floating_imageholder {
		float: left;
	}
	
	.centeredcontent {
		text-align: center;
	}
	
	.underline {
		text-decoration: underline;
	}
	
	
	/* horizontal rules */
	
	
	/* IE hack for fixing default spacing under hr, by using div as parent */
	div.hr_stipblauw {
		background-image: url('stipblauw.png');
		background-repeat: repeat-x;
		height: 3px;
	}
	
	div.hr_line {
		height: 1px;
	}
	
	div.hr_bigline {
		height: 3px;
	}
	
	div.hr_microstip {
		background-image: url('stip_hor_b.gif');
		background-repeat: repeat-x;
		height: 1px;
	}
	
	/* 
		hr's are not visible to the user, but for semantic reasons still included in the sourcecode
		ie.: <div class="hr_stipblauw"><hr /></div>
	*/
	hr {
		display: none;
	}	
	
	
	/* borders */
	
	
	.simpleborder {
		border-style: solid;
		border-width: 1px;
	}