/* CSS Document */
/* ############### tales.be css framework v0.3 (by kvd) ###############  */

/* revision v.03.b : 14-02-2008 : explanation added */
/* revision v.03.a : 12-02-2008 : IE-versionnumbering with CC */

/* v0.3 includes only one update:
around the pagewrapper a couple of spans are written with IE Conditional Comments
These spans have no layout-influence, it only writes a span around #pagewrapper
which identifies the IE-version ran by the client.

f.e.: <span id="IE6">

This span is closed after the pagewrapper:
	<span id="IE6">
		<div id="pagewrapper">bla</div>
	</span>		


What this means:

1. no more need for an additional IE7-stylesheet
2. the !important - hack is not necessary anymore to target IE6.
	as in:
		.myrule
			{	bla: 7px !important; 
				bla: 5px;}

Instead, you can now write your code like this:

.mystuff{	bla: 7px;} -> targets all decent browsers
#IE6 .mystuff{ bla: 9px}
#IE7 .mystuff{ bla: 8px}

This makes your CSS-code and the exceptions for the various IE-flavours:
	-> clean
	-> easy to read and interprete
	-> fully W3C-compliant

version vectors supported 'till now:
#IE5
#IE55
#IE6
#IE7
#IE8

WWhy no #IE4? -> IE4 doesn't understand CC, therefore this selector has no use.
#IE8? IE8 isn't out yet, but will most likely work with CC


*/


/* ############### BASIC BUILDING BLOCKS ADDONS ############### */
#pagewrapper{
	width: 984px;
	background-color:#ffffff
	/*margin-left: 0;*//* for lefthanded layout instead of centered*/
	/* margin-top: XXpx; */ /* offset from pagetop */
}
#headerwrapper{ background-color:#000000}
#topblock{ display:block; float:right; margin-right:20px; background-color:#2d2f36; }
#header{
	background-color:#000000;
	margin-left:20px;
	margin-top:20px;/* height: 165px*/}
	
#content{
	/*margin-top: -38px;*/ /* fix offset from #topnav */
	background-color:#FFFFFF;
/*	min-height: 450px;*/
	margin-left: 0px;
	margin-top: -14px;
	}
#footer{ margin-top:14px; padding: 15px 15px 15px 15px; background-color:#000000; border:1px solid #3c3f47; text-align: center;}
#address{ background-color:#2d2f36;}
#accessibility{
	display: none;
}
#topnav{
	width: 984px;
	height: 42px;
	background-color: #000000}

.red #navTitle{background-color:#e72b30}
.green #navTitle{background-color:#8db300}
.blue #navTitle{background-color:#00aade}
.grey #navTitle{background-color:#434348}


/*.col1{	width: 200px;}
.col2{	width: 700px; }*//* = pagewrapper.width - col1.width */


/* ############### 1 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.oneCol#header .col1{
	background-color: #fff;
	color: #000;
	height: 180px;
	width: 984px;
	}
#IE6 .oneCol#header .col1, #IE7 .oneCol#header .col1{
	margin-left: 1px;	}


/* ############### 3 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.threeCols#header .col1{
	background-color:#2d2f36;
	color: #fff;
	height: 150px;
	width: 200px;}
.threeCols#header .col2{
	background-color:#2d2f36;
	color: #fff;
	height: 150px;
	width: 500px;}
.threeCols#header .col3{
	background-color:#2d2f36;
	color: #fff;
	height: 150px;
	width: 200px;
	}

.threeCols#content .col1{
	width: 226px;
	margin-top:40px;
	}
#IE6 .threeCols#content .col1{
	margin-left: 8px;
}
.threeCols#content .col2{
	width: 452px;
	margin: 10px 20px 40px 20px;
	}
#IE6 .threeCols#content .col2{
	/*margin-left: 0px;*/
}
.threeCols#content .col3{
	width: 236px;
	margin-top:40px;
	}

/* minHeight zodat content minimale hoogte heeft van 400 : min-height op de css werkte niet in IE en flikkerde bij openen pagina*/
/* col3 wordt in 2 gesplitst met links een div die enkel dient om een minimale hoogte te garanderen en flikkeren tegen te gaan*/
.threeCols#content .col3 #minHeight{
	float:left;
	background-color:red;
	height:400px;
	width:0px;}
	
.threeCols#content .col3 #col3sideblock{
	float:right;}
	
.threeCols#content .col1plus2{
	width: 698px;
	margin: 40px 20px 40px 20px !important;
	margin: 40px 20px 40px 10px;
	}

#IE6	.threeCols#content .col3{	margin-left: 0px;}
#IE7	.threeCols#content .col3{	margin-left: 0px;}

/* minimum height for sidenav and text-block */
/* remember: if working with backgroundcolors or borders, 
you'll need to set a repeating background on 
.twoCols#content, since col1 doesn't know how
long col2 becomes (and vice-versa)
 !!!!!
*/
.threeCols#content .col1 {min-height: 200px;} /* mozilla + IE7 */
*html* .threeCols#content .col1 {height: 200px;} /* IE6 */

.threeCols#content .col2 {min-height: 200px;} /* mozilla + IE7 */
*html* .threeCols#content .col2 {height: 200px;} /* IE6 */


/*.threeCols#content .col3 {min-height: 200px;}*/ /* mozilla + IE7 */
/**html* .threeCols#content .col3 {height: 200px;}*/ /* IE6 */




/* ############### HEADER ADDONS ############### */
.oneCol#header .col1{display: block;}

.lft{float:left}
.rgt{ float:right}

