/* layout2c.css */

/* ===[ begin ]=== */

/*
  Title:                   2 Columns Layout Design Style
  Author:                  Dzenan Ridjanovic
  Influenced By:           http://www.simplebits.com/
  Created:                 2006-09-03
  Updated:                 2011-12-09
*/
	
/* ===[ 2 columns layout ]=== */
     
  #main {
    float: left;
    width: 70%;
  }

  #side {
    float: right;
    width: 30%;
    background: #fffff0;
  }
		
/* ===[ end ]=== */