/* segeln.css */
/* stylsheet für segel webseite */

/* specific for menu structure */
  @media screen {
    #main {
      margin-left: 180px; padding: 0 0; /* offset menu breite */
      min-width: 20em;  
      width: auto;
/*      width: 600px; */
    }    
    
    div#menu {
      position: absolute;
      top: 0em; left: 0em;
      height: 100%;
      float: left; width: 180px;
      margin: 0 0 0 0;
      padding: 0 0;
      background-color: green; 
    }
    
    html>body div#menu {  /* nur fuer moderne Browser! */
      position: fixed;
    }    

    div#menu ul {
      background-color: transparent; 
      font-size: 1em;
      float: left; width: 160px;
      margin: 0 0 0 0; padding: 3px 10px;
    }
    
    div#menu * li {
      background-color: #c0c0ff;    
      list-style: none;
      font-weight: bold;
      text-align: center;
      float: left; width: 160px;
      margin: 0 0 0 0; padding: 0.3em 0;
    }
/* end of specific for menu structure */
  } /* end of @media screen */
  
  /* dont print menu */
  @media print {  
    div#menu * {
      display: none; 
    }    
  } /* end of @media print */
  
  
    body {
      background-color: yellow;
    }

