/* 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: 902px;
	/*margin-left: 0;*//* for lefthanded layout instead of centered*/
	/* margin-top: XXpx; */ /* offset from pagetop */
}
#accessibility{
	display: none;
}
#header{ height: 166px}


#content{
	/*background-color: Red;*/
	background-image: url(../gfx/basics/background.content.repeater.gif);
	background-repeat: repeat-y;
	background-position: 11px 0px;
	padding: 0 0 30px 0;
}
.home #content{	background-image: none !important;}
#contentwrapper{
	display: block;
	background-image: url(../gfx/basics/background.content.gif);
	background-repeat: no-repeat;
	background-position: 11px 0px;
}


#topnav{
	background-image: url(../gfx/basics/background.topnav.jpg);
	background-repeat: no-repeat;
	background-position: 11px 0px;
	width: 902px;
	height: 28px;
	overflow: hidden;
	margin-bottom: 11px;
}
#footer{ 
	display: block;
	height: 80px;
	background-image: url(../gfx/basics/background.content.bottom.gif);
	background-repeat: no-repeat;
	background-position: 11px 0px;
	padding-top: 20px;
	text-align: center;
}
.home #footer{	background-image: none !important;}

#crumbpath{
	
}

/*.col1{	width: 200px;}
.col2{	width: 700px; }*//* = pagewrapper.width - col1.width */


/* ############### 1 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.oneCol#header .col1{
	height: 166px;
	width: 902px;
	background-image: url(../gfx/basics/background.header.jpg);
	background-repeat: no-repeat;
	background-position: 29px;
	
	}
.oneCol#content .col1{
	/*background-color: red;*/
	width: 880px;
	padding: 0 11px 0 11px;
	}

/* ############### 2 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.twoCols#header .col1{
	background-color: #000;
	color: #fff;
	height: 150px;
	width: 200px;}
.twoCols#header .col2{
	background-color: green;
	color: #fff;
	height: 150px;
	width: 700px;}

.twoCols#content .col1{
	background-color: #ffcc00;
	width: 200px;}
.twoCols#content .col2{
	background-color: #fff;
	width: 700px;
}

/* 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)
 !!!!!
*/
.twoCols#content .col1 {min-height: 200px;} /* mozilla + IE7 */
*html* .twoCols#content .col1 {height: 200px;} /* IE6 */

.twoCols#content .col2 {min-height: 200px;} /* mozilla + IE7 */
*html* .twoCols#content .col2 {height: 200px;} /* IE6 */



/* ############### 3 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.threeCols#header .col1{
	background-color: #000;
	color: #fff;
	height: 150px;
	width: 200px;}
.threeCols#header .col2{
	background-color: green;
	color: #fff;
	height: 150px;
	width: 500px;}
.threeCols#header .col3{
	background-color: orange;
	color: #fff;
	height: 150px;
	width: 200px;}

.threeCols#content .col1{
	/*background-color: #ffcc00;	*/
	width: 170px;
	padding-top: 16px;	}
.threeCols#content .col2{
	/*background-color: yellow;*/
	width: 529px;
	padding: 16px;}
.threeCols#content .col3{
	/*background-color: Maroon;*/
	width: 153px;
	padding: 16px 3px 10px 3px;}

/* 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: 285px;} /* mozilla + IE7 */
*html* .threeCols#content .col2 {height: 285px;} /* IE6 */


.threeCols#content .col3 {min-height: 200px;} /* mozilla + IE7 */
*html* .threeCols#content .col3 {height: 200px;} /* IE6 */




/* ############### HEADER ADDONS ############### */
.twoCols#header .col1{ }
.twoCols#header .col2{ }
.twoCols#header .col1 a{
	display: block;
}

