/** 
 * LAYOUT_TWOCOLUMN.CSS
 * Featuring a Two-Column LAYOUT
 *
 * Specific TWO-COLUMN LAYOUT STYLES used in first level web pages at SoySUD, i.e. a section start page.
 * Source: http://matthewjamestaylor.com/blog/perfect-2-column-right-menu.htm - Feb/04/2009
 *
 * @author Matthew James Taylor <matt@matthewjamestaylor.com>
 * @author Virgilio Montemayor <vmontemayor@soysud.com>
 * @version 1.0
 */

/** 
 * Import SoySUD generic layout styles
 */ 
@import url("layout.css");

/* Two Column (right menu) settings */
.two_column {
	background:#fff;	/* right column background colour */
}
.two_column .column_left {
	right:15%;			/* right column width */
	background:#fff;	/* left column background colour */
}
.two_column .column_1 {
	width:85%;			/* left column content width (left column width minus left and right padding) */
	left:15%;			/* (right column width) plus (left column left padding) */
}
.two_column .column_2 {
	width:15%;			/* right column content width (right column width minus left and right padding) */
	left:15%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
}