/* CSS Document */

/*	
	All new below this line.
	Added 02.09.09
	This is an attempt to fix a bug in the three column layout
	that seems to have randomally appeared.
	Based on the source found at "http://www.alistapart.com/articles/holygrail"
	And updated to fix an IE bug using source found at "http://www.infocraft.com/articles/the_case_of_the_disappearing_column/"
	The bug would have the left column flicker somewhere in the middle of the page only when the browser is resized. 
	This solution will break under IE 5 and NN 4. But to those people still using those browsers we say, "Really? What the hell?" 
*/
body {
  /*min-width: 760px;*/      /* 2x (LC fullwidth +
                            CC padding) + RC width */
  min-width: 810px;

  padding: 5px 0px;
}


#container {
  position:relative;
  padding:0;
}


#centercontent {
  padding-left:248px;
  padding-right:280px;
  position:relative;
  background:#fff;
  font-size: 0.9em;
  color: #333333;
}


#leftcontent {
  width: 235px;
  position: absolute;
  top:0;
  left:0;
  background:#red;
  border-right: 2px solid #97B141;
  font-size: 0.9em;
  color: #333333;
}

#rightcontent {
  width: 260px;          /* RC width */
  top:0;
  right:0;
  position:absolute;
   
  background:#fff;
  font-size: 0.9em;
  color: #333333;
}

#footer {
  clear: both;
}
