
	/*
		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: outside;
	}
	
	ul.bulleted li, div.bulleted {
		background-image: url('/fbto/assets/images/menu_items/themablok_bullet.gif');
		background-repeat: no-repeat;
		background-position: center left;
	}
	
	/* fix IE bug met textindent probleem en list-style-position */
	ul.bulleted li {
		padding-left: 1em;
	}
	
	/* bulleted lijst (1 kolom) voor opsommingen oid */
	ul.bulleted.optionslist li {
		margin-top: 2px;
		line-height: 1.5em;
		background-position: .4em .6em;
	}
	
	/* bulleted lijst (1 kolom) voor opsommingen oid */
	ul.bulleted.optionslistcompact li {
		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;
	}
	
	li.threelinefix {
		line-height: .75em;
		clear: both;
		/* for correct spacing, compensate for the line-height */
		margin: .25em 0em .25em 0em;
	}
	
	li.threelinefix div.threelinefix {
		float: left;
		margin: .75em 0 .5em;
		/* assuming bullet of 12px (.microactie) */
		width: 1.3em;
		#width: 1.05em;
	}
	
	/* global recurring style for FBTO website */
	
	
	.textnormal, .textsmall, .textsmaller, .textsmallest {
		font-family: Arial,Helvetica,sans-serif;
		font-weight: normal;
	}
	
	.textbig {
		font-family: Arial,Helvetica,sans-serif;
		font-weight: bold;
		font-size: 14px;
	}
	
	.textnormal {
		font-size: 12px;
	}
	
	.textsmall {
		font-size: 11px;
	}
	
	.textsmaller {
		font-size: 10px;
	}
	
	.textsmallest {
		font-size: 9px;
	}
	
	.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;
	}
	
	.twocolumn .column_left, .twocolumn .column_right {
		float: left;
		height: 100%;
	}
	
	.twocolumn .column_right {
		margin-left: 1em;
		width: 50%;
	}
	
	.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_small.small3 {
		margin-top: 20px;
	}
	
	.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;
	}
	.no_underline {
		text-decoration: none;
	}
	
	/* horizontal rules */
	
	
	/* IE hack for fixing default spacing under hr, by using div as parent */
	div.hr_stipblauw {
		background-image: url('/fbto/assets/images/home/static/stipblauw.png');
		background-repeat: repeat-x;
		height: 3px;
	}
	
	div.hr_line {
		height: 1px;
	}
	
	div.hr_bigline {
		font-size: 3px;
		height: 3px;
	}
	
	div.hr_microstip {
		background-image: url('/fbto/assets/images/layout/stip_hor_b.gif');
		background-repeat: repeat-x;
		height: 1px;
		font-size: 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;
	}

	/* 
		Om een tabel er een beetje mooi uit te laten zien op ie6 komen hier 2 stijlen bij
		<div style="clear:both; height:0px;line-height:0px;font-size:0px;"></div>
		<div style="height:3px;line-height:3px;font-size:3px;">&nbsp;</div>
		(Harrie 11-11-2008)
	*/

	.colwin {
		clear: both;
		height: 0px;
		line-height: 0px;
		font-size: 0px;
	}

	.picwin {
		height: 3px;
		line-height: 3px;
		font-size: 3px;
	}
	
	/* USP's */
	div.usp3_title {
	  background-color: #D8E5F4;
	  color: #00349A;
	  height: 35px;
	  width: 100%;
	  font-family: Tahoma;
	  font-size: 20px;
	  font-weight: bold;
	  padding-top: 6px;
	  padding-left: 8px;
	}
	
	div.usp_categoriepagina .wrapper{
		padding:1em 0 1em 5px; 
	}
	div.usp_categoriepagina .separatorline {
		width:215px;

	}
	div.usp_categoriepagina .uspnumber {
		width:25px;
	 	float:left;
	 	font-size:30px;
	 	padding:0 0 0 7px;
	 	font-family: Tahoma, Arial,Helvetica,sans-serif;
	}
	div.usp_categoriepagina .usptext {
		padding-top:3.8px;
		#padding-top:5px; /* tbv IE */
		width:180px;
		float:left;
		font-size:17px;
		font-weight:bold;
		font-family: Arial,Helvetica,sans-serif;
	}