/* CSS Document */

/*             Holy Grail by http://www.alistapart.com/articles/holygrail             */
/*             ----------------------------------------------------------           */
/*We recommend you use semantic ids in any application of this technique.*/

body {
      min-width: 890px;  /* 2x (LC fullwidth +
                            CC padding) + RC fullwidth */
}
#header {
	/*height is needed to set left column top margin to the right negative value*/
	height: 150px;
}

#container {
  padding-left: 320px;   /* LC fullwidth */
  padding-right: 230px;  /* RC fullwidth + CC padding */
  /* equal height columns*/
  
}
#container .column { 
	position: relative; 
	float: left; 
	/*border: 1px dashed pink;*/
	/* equal height columns*/
} 
#center { 
	padding: 10px 10px;    /* CC padding */
	width: 100%; 
	/*background-color: white;*/
} 
#left {
  width: 300px;          /* LC width */
  padding: 0 10px;       /* LC padding */
  right: 340px;          /* LC fullwidth + CC padding*/ 
  margin-left: -100%;  
  margin-top: -150px;
 /* background-color:#FF0099;*/
}

#right {
	/*border: 1px dotted white;*/
  width: 190px;          /* RC width */
  padding: 0 10px;       /* RC padding */

   margin-right: -230px; /* RC fullwidth + CC padding */
}
#footer { 
	clear: both; 
	/* equal height columns
	position: relative;*/
} 
/*** IE6 Fix ***/ 
* html #left { 
	left : -360px; /* IE5 fix - LC fullwidth + central padding */ 
	lef\t : 200px; /* IE6 fix - RC width */ 
}
#container > #left {
  /*margin-left: expression(document.all.content.offsetWidth * -1);*/
  /*http://www.gerd-riesselmann.net/development/the-holy-grail-css-layout-fix-for-ie7*/
  left: -340px; /* -LC width for others */ 
  margin-left: expression( document.all.center.offsetWidth * -1  + parseFloat(document.all.left.currentStyle.paddingLeft) + parseFloat(document.all.left.currentStyle.paddingRight) ); /* Fix for IE7 */
}


/*HTML structure

<div id="header"></div>

<div id="container">
  <div id="center" class="column"></div>
  <div id="left" class="column"></div>
  <div id="right" class="column"></div>
</div>

<div id="footer"></div>

*/