/* zweispaltig.css */


           /* Formate teilweise aufheben, wenn das Browserfenster zu schmal wird, siehe auch esperanto.css,
           Bereich "Aus dem Seitenbereich entfernen" */
           @media screen and (min-width:840px) {

                 #novajhoj {
                         float:right;
                         width:30%;
                         border:1px dotted yellow;
                         }
                 #novajhoj>h2 {
                         margin-top:0;
                         }
                 #enh {
                         float:left;
                         width:69%;
                         }
                 #enh p {
                         margin-top:0;
                         }
                 #fino {
                         clear:both;
                         }

               @supports (display:flex) or (display:-webkit-flex) {
                         #novajhoj {
                                 float:none;
                                 width:31%;
                         }
                         #enh {
                                 float:none;
                         }
                         .inhalt {
                                 display:-webkit-flex;
                                 display:flex;
                         }

               }       /* Ende @supports */

           }   /* Ende @media */