/** body **/
  body
  {
  }

  #page,
  #closure-blocks
  {
    /*
     * If you want to make the page a fixed width and centered in the viewport,
     * this is the standards-compliant way to do that. See also the ie.css file
     * for the necessary IE5 hack to center a div.
     */
    margin-left: auto;
    margin-right: auto;
    width: 885px;	
  }

  #page-inner
  {
  }

/** header **/
  #header
  {
	height:143px;
  }

  #header-inner
  {
  }

  #logo-title
  {
  }

  #logo
  {
    float: left;
  }

/** main (container for everything else) **/
  #main
  {
    position: relative;
		background: #66FF00;
  }

  #main-inner
  {
  }

/** content **/
  #content,
  .no-sidebars #content
  {
    float: left;
    width: 885px;
    margin-left: 0;
    margin-right: -885px; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  .sidebar-left #content
  {
    width: 650px;
    margin-left: 235px; /* The width of #sidebar-left. */
    margin-right: -885px; /* Negative value of #content's width + left margin. */
  }

  .sidebar-right #content
  {
    width: 235px;
    margin-left: 0;
    margin-right: -650px; /* Negative value of #content's width + left margin. */
  }
  .sidebar-left #content-inner
  {
  margin: 0 20px 0 15px;
  }

  .two-sidebars #content
  {
    width: 415px;
    margin-left: 235px; /* The width of #sidebar-left */
    margin-right: -650px; /* Negative value of #content's width + left margin. */
  }

  #content-inner
  {
    margin: 0;
    padding: 0;
  }	
/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 235px;
    margin-left: 0;
    margin-right: -235px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
  }

  #sidebar-left-inner
  {
	margin:0 0 0 35px;
    padding: 0;
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: left;
    width: 235px;
    margin-left: 650px; /* Width of content + sidebar-left. */
    margin-right: -885px; /* Negative value of #sidebar-right's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
		background:#FFCC66;
  }

  #sidebar-right-inner
  {
    margin: 0 0 0 20px;
    padding: 0;
  }

/** footer **/
  #footer
  {
	  height:60px;
  }

  #footer-inner
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    /*word-wrap: break-word; *//* A very nice CSS3 property */
  }

  /* If a div.clear-block doesn't have any content after it, Firefox and Safari
     will mistakenly place several pixels worth of space between the bottom of
     the div and the bottom of the viewport. This fixes it. */
  #page { overflow-y: hidden; } /* CSS3 property */
	
	.brclear { /* Use a break with this class to clear float containers */
  clear:both;
  height:0;
  margin:0;
  font-size: 1px;
  line-height: 0;
}

/*
* Markup free clearing
* Details: http://www.positioniseverything.net/easyclearing.html
*/
	.clear-block:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}
	
	.clear-block {
		display: inline-block;
	}
	
	/* Hides from IE-mac \*/
	* html .clear-block {
		height: 1%;
	}
	.clear-block {
		display: block;
	}
	/* End hide from IE-mac */
