@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Screen layout for YAML examples
 * (de) Bildschirmlayout für YAML-Beispiele
 *
 *      additional CSS for the 2 Col layout 
 */

@media all
{

  /* 
   * Need to remove the 25% margin-right in that subtemplate
   */ 
   
  #col1 { width: 25%; }
  #col1_content { padding: 10px 10px 10px 20px; }
   
  /*
  #col2 { width: 25% }
  #col2_content { padding: 10px 20px 10px 10px; }
  */

  #col3 { margin: 0 0 0 25% }
  #col3_content {
	padding: 10px;
	border-left: 1px dotted #f00;
	float: left;
}

}

