/* Special Layout for 2 col without menu based on col 3-1-2 */
 
/**
 * (en) Repositioning content container
 *
 * |-------------------------------|
 * | #header                       |
 * |-------------------------------|
 * | #col1               | #col2   |
 * | 720px               | 280px   |
 * |-------------------------------|
 * | #footer                       |
 * |-------------------------------|
 */


/* #col1 becomes the left (main) column */
#col1 {
	width:720px;
	float:right;
	margin-left:-1000px;
	margin-right: 280px;
	min-height: 400px;
}

/* #col2 becomes the right column */
#col2 {
	width:280px;
	float:right;
	margin-right: 0px;
}

/* #col3 is extremly small */
#col3 {
	width:1px;
}