/* CSS Document */
/* 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: 900px;
	background-image:url(../gfx/basics/bg.content.white.gif);
	background-repeat:repeat-y;
	/*margin-left: 0;*//* for lefthanded layout instead of centered*/
	/* margin-top: XXpx; */ /* offset from pagetop */
}
#pagewrapperHome{
	width: 900px;
	background-image:url(../gfx/basics/bg.content.home.gif);
	background-repeat:repeat-y;
}	
#pagewrapperProducts{
	width: 900px;
	background-image:url(../gfx/basics/bg.content.grey.gif);
	background-repeat:repeat-y;
}	
#header{ height: 150px; background-image:url(../gfx/basics/bg.header.gif); background-repeat:repeat-y}
#content{	/*margin-top: -38px;*/ /* fix offset from #topnav */	}


#contentProducts{	background-image:url(../gfx/basics/bg.content.grey.gif); background-repeat:repeat-y; background-color:#000000	}
#footer{ background-image:url(../gfx/basics/bg.footer.white.gif); background-repeat:no-repeat; height:50px; background-color:#FFFFFF}
#footerHome{ background-image:url(../gfx/basics/bg.footer.home.gif); background-repeat:no-repeat; height:50px; background-color:#FFFFFF}
#footerProducts { background-image:url(../gfx/basics/bg.footer.grey.gif);background-repeat:no-repeat;height:50px; background-color:#FFFFFF}


/*.col1{	width: 200px;}
.col2{	width: 700px; }*//* = pagewrapper.width - col1.width */
#crumbpath{ color: #000; text-transform:lowercase}

/* ############### 2 COLUMN LAYOUT ADDONS: dimensions, colors, backgrounds ############### */
.twoCols#header .col1{
	height: 100px;
	width: 500px;
	margin-top:50px; 
	margin-left:50px;}
.twoCols#header .col2{
	float:right;
	height: 90px;
	margin-top:40px;
	margin-right:11px;
	text-align:right;}

.twoCols#content .col1{
	width: 178px;}
.twoCols#content .col2{
	margin:30px 20px 30px 20px;
	width: 672px;}
	
.twoCols#content .imgSpacing img{
	margin:2px 10px 5px 0;}

	
/* exeptions for Homepage *****************************/	

.twoColsHome#header .col1{
	height: 100px;
	width: 512px;
	margin-top:50px; 
	margin-left:50px;}
.twoColsHome#header .col2{
	height: 90px;
	width: 208px;
	}
	
.twoColsHome#contentHome .col1{
	width: 432px;
	height: 360px;
	position:relative;
	left:25px;	
	margin-top:30px;		
}

.twoColsHome#contentHome .col2{
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 30px ;
	width: 388px;
	min-height: 330px;
}
	


/* 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: 400px;} /* mozilla + IE7 */
*html* .twoCols#content .col1 {height: 400px;} /* IE6 */

.twoCols#content .col2 {min-height: 400px;} /* mozilla + IE7 */
*html* .twoCols#content .col2 {height: 400px;} /* IE6 */


/* ############### HEADER ADDONS ############### */
.twoCols#header .col1{ }
.twoCols#header .col2{ }
.twoCols#header .col1 a{
	display: block;
}

