/* LAYOUT STYLESHEET */
body
{
  font-size: 100.01%; /* [1] */
}

/* change column width(s) here*/
#col-b
{
  margin-left: -130px;
}

#col-c
{
  margin-right: 0;
}

.show-all #columns
{
  padding: 0 0 0 130px;/* 0 sidecol-c 0 sidecol-b */
}

.hide-left #columns
{
  padding: 0 0 0 0;/* 0 sidecol-c 0 0 */
}

.hide-right #columns
{
  padding: 0 0 0 130px;/* 0 0 0 sidecol-b */
}

.sidecol-b
{
  width: 130px;
}
.sidecol-c
{
  width: 0;
}

/* end widths */

#col-a
{
  float: right;
  width: 100%;
}

#col-a[id] /* [2] */
{
  margin-left: -1px;
}

#col-b
{
  float: left;
  z-index: 10; /* [3] */
}

#col-b[id] /* [2] */
{
  margin-right: 1px;
}

#col-c
{
  float: right;
  z-index: 11; /* [3] */
}

#col-c[id] /* [2] */
{
  margin-left: 1px;
}

.cols-wrapper
{
  width: 100%;
}

.cols-wrapper[class]
{
  padding-bottom: 0.1px; /* [4] */
}

.float-wrapper
{
  float: left;
  width: 100%;
  position: relative;
  z-index: 0;
}

.float-wrapper[class] /* [2] */
{
  margin-right: -1px;
}

.sidecol-b, .sidecol-c
{
  position: relative;
  /*overflow: hidden;*/
}

#footer
{
  clear: both;
}
.clear
{
  clear: both;
}
.none
{
  display: none;
}

/*
  [1] Play nice with EMs in Opera 6 and IE Win.
  [2] Support for Mozilla, but IE doesn't likes it.
  [3] Z indices needed for link clickability in IE Mac and Opera 6.
  [4] Mozilla needs a non zero value, seems to be a bug.
*/



/* HACKS */

/* for containers containing a float - to "stretch" the container all around the float */
/* http://www.positioniseverything.net/easyclearing.html */
/* <div class="clearfix"></div> */
.clearfix:after
{
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix { display: inline-block; }
/* hides from ie-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* end hide from ie-mac */


/* THE HOLLY HACK http://www.positioniseverything.net/articles/hollyhack.html */
/* Hides from IE5-mac \*/
* html .buggybox { height: 1%; }
/* End hide from IE5-mac */

