/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
 * (en) stylesheet for screen layout
 * (de) Stylesheet für das Bildschirm-Layout
 *
 * @creator       YAML Builder V1.2.1 (http://builder.yaml.de)
 * @file          basemod.css
 * @-yaml-minver  3.3
 */
 

 /* Laptops, Desktops, etc ---- */



@media screen, projection
{
  /** 
   * (en) Forcing vertical scrollbars in IE8, Firefox, Webkit & Opera 
   * (de) Erzwingen vertikaler Scrollbalken in IE8, Firefox, Webkit & Opera 
   *
   * @workaround
   * @affected IE8, FF, Webkit, Opera
   * @css-for all
   * @valid CSS3
   */
    .page_margins {
        width: 70%;

        
        min-width: 1120px;
        max-width: 1320px;
    }
    .page_margins_small {
        padding-left: 60px !important;
    }

    
  body { overflow-y: scroll; }

  /*-------------------------------------------------------------------------*/

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
  body {
    padding: 0px 0;
    margin: 0px;
  }

  /* Layout Alignment | Layout-Ausrichtung */
  .page_margins { margin: 0 auto; }

  /* Layout Properties | Layout-Eigenschaften */
  #header { 
    position: relative;
    padding: 0;
    height: 160px;
  }
  #main { margin: 0 0; }
  #footer { 
    position: relative;
    z-index: -5;
    padding: 0px 0px 0px 0px;
    height: 255px;
/*     width: 1120px; */

    width: 100%;
    
    #margin-top: 0px;
    background-color: transparent;
  }

  #footer_content { 
	width: 100%;
	margin: auto;
  }
  

  
  
  /*-------------------------------------------------------------------------*/

  /**
   * (en) Formatting content container
   * (de) Formatierung der Inhalts-Container
   *
   */

  #main { 
    padding: 0px 0px;
  }
	
  /*-------------------------------------------------------------------------*/

  .page_margins {
    border: 0 none;
    background: transparent;

    background-repeat:repeat-y;
    background-position:left;
  }

  
  .page {
    border: 0 none;
    margin: 0 0 0 0px;
    padding: 0px 0px 0px 0px;
    background-repeat:repeat-y;
    background-position:right;
  }


  #border-top {
    overflow:hidden;
    width: auto;
    height: 20px;
    font-size:0;
    margin-bottom: -15px;
    background-repeat:repeat-x;
    background-position:top left;
  }

  #border-bottom {
    position: relative;
    width: auto;
    height: 130px;
    margin-top: -15px;
    font-size:0;
    background-repeat:repeat-x;
    background-position:bottom left;
  }

  #edge-tl {
    float:left;
    width: 10px;
    height: 10px;
    font-size:0;
    background-position: top left;
  }

  #edge-tr {
    position:relative; /* IE Fix | z-index */
    float:right;
    width: 10px;
    height: 10px;
    font-size:0;
    background-position: top right;
  }

  #edge-bl {
    float:left;
    width: 10px;
    height: 130px;
    background-position: bottom left;
  }

  #edge-br {
    position:relative; /* IE Fix | z-index */
    float:right;
    width: 10px;
    height: 130px;
    background-position: bottom right;
  }

  #edge-bl_extend {
    position: absolute;
    bottom:0px;
    left: -140px;
    width: 140px;
    height: 76px;
    z-index: 10;
  }

  #edge-br_extend {
    position: absolute;
    bottom:0px;
    right: -140px;
    width: 140px;
    height: 76px;
    z-index: 10;
  } 

 
}