cyaml 0.0.30 → 0.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/stylesheets/cyaml/core/base.css +224 -0
 - data/stylesheets/cyaml/core/base.sass +1 -0
 - data/stylesheets/cyaml/core/iehacks.css +324 -0
 - data/stylesheets/cyaml/core/slim_base.css +0 -0
 - data/stylesheets/cyaml/core/slim_iehacks.css +127 -0
 - data/stylesheets/cyaml/core/slim_iehacks.sass +1 -1
 - metadata +7 -3
 
| 
         @@ -0,0 +1,224 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
             * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
         
     | 
| 
      
 3 
     | 
    
         
            +
             *
         
     | 
| 
      
 4 
     | 
    
         
            +
             * (en) YAML core stylesheet
         
     | 
| 
      
 5 
     | 
    
         
            +
             * (de) YAML Basis-Stylesheet
         
     | 
| 
      
 6 
     | 
    
         
            +
             *
         
     | 
| 
      
 7 
     | 
    
         
            +
             * Don't make any changes in this file!
         
     | 
| 
      
 8 
     | 
    
         
            +
             * Your changes should be placed in any css-file in your own stylesheet folder.
         
     | 
| 
      
 9 
     | 
    
         
            +
             *
         
     | 
| 
      
 10 
     | 
    
         
            +
             * @copyright       Copyright 2005-2010, Dirk Jesse
         
     | 
| 
      
 11 
     | 
    
         
            +
             * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
         
     | 
| 
      
 12 
     | 
    
         
            +
             *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
         
     | 
| 
      
 13 
     | 
    
         
            +
             * @link            http://www.yaml.de
         
     | 
| 
      
 14 
     | 
    
         
            +
             * @package         yaml
         
     | 
| 
      
 15 
     | 
    
         
            +
             * @version         3.2.1
         
     | 
| 
      
 16 
     | 
    
         
            +
             * @revision        $Revision: 454 $
         
     | 
| 
      
 17 
     | 
    
         
            +
             * @lastmodified    $Date: 2010-01-01 17:31:10 +0100 (Fr, 01. Jan 2010) $ */
         
     | 
| 
      
 18 
     | 
    
         
            +
            @media all {
         
     | 
| 
      
 19 
     | 
    
         
            +
              * {
         
     | 
| 
      
 20 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 21 
     | 
    
         
            +
                padding: 0; }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              option {
         
     | 
| 
      
 24 
     | 
    
         
            +
                padding-left: 0.4em; }
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              select {
         
     | 
| 
      
 27 
     | 
    
         
            +
                padding: 1px; }
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
              * html body * {
         
     | 
| 
      
 30 
     | 
    
         
            +
                overflow: visible; }
         
     | 
| 
      
 31 
     | 
    
         
            +
              * html iframe, * html frame {
         
     | 
| 
      
 32 
     | 
    
         
            +
                overflow: auto; }
         
     | 
| 
      
 33 
     | 
    
         
            +
              * html frameset {
         
     | 
| 
      
 34 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
              body {
         
     | 
| 
      
 37 
     | 
    
         
            +
                font-size: 100.01%;
         
     | 
| 
      
 38 
     | 
    
         
            +
                background: white;
         
     | 
| 
      
 39 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 40 
     | 
    
         
            +
                text-align: left; }
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
              div {
         
     | 
| 
      
 43 
     | 
    
         
            +
                outline: 0 none; }
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
              fieldset, img {
         
     | 
| 
      
 46 
     | 
    
         
            +
                border: 0 solid; }
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
              ul, ol, dl {
         
     | 
| 
      
 49 
     | 
    
         
            +
                margin: 0 0 1em 1em; }
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
              li {
         
     | 
| 
      
 52 
     | 
    
         
            +
                line-height: 1.5em;
         
     | 
| 
      
 53 
     | 
    
         
            +
                margin-left: 0.8em; }
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
              dt {
         
     | 
| 
      
 56 
     | 
    
         
            +
                font-weight: bold; }
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
              dd {
         
     | 
| 
      
 59 
     | 
    
         
            +
                margin: 0 0 1em 0.8em; }
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
              blockquote {
         
     | 
| 
      
 62 
     | 
    
         
            +
                margin: 0 0 1em 0.8em; }
         
     | 
| 
      
 63 
     | 
    
         
            +
                blockquote:before, blockquote:after {
         
     | 
| 
      
 64 
     | 
    
         
            +
                  content: ""; }
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
              q:before, q:after {
         
     | 
| 
      
 67 
     | 
    
         
            +
                content: ""; }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              .clearfix {
         
     | 
| 
      
 70 
     | 
    
         
            +
                display: block; }
         
     | 
| 
      
 71 
     | 
    
         
            +
                .clearfix:after {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  clear: both;
         
     | 
| 
      
 73 
     | 
    
         
            +
                  content: ".";
         
     | 
| 
      
 74 
     | 
    
         
            +
                  display: block;
         
     | 
| 
      
 75 
     | 
    
         
            +
                  font-size: 0;
         
     | 
| 
      
 76 
     | 
    
         
            +
                  height: 0;
         
     | 
| 
      
 77 
     | 
    
         
            +
                  visibility: hidden; }
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
              .floatbox {
         
     | 
| 
      
 80 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
              #ie_clearing {
         
     | 
| 
      
 83 
     | 
    
         
            +
                display: none; }
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
              .skip, .hideme, .print {
         
     | 
| 
      
 86 
     | 
    
         
            +
                position: absolute;
         
     | 
| 
      
 87 
     | 
    
         
            +
                top: -32768px;
         
     | 
| 
      
 88 
     | 
    
         
            +
                left: -32768px; }
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
              .skip:focus, .skip:active {
         
     | 
| 
      
 91 
     | 
    
         
            +
                position: static;
         
     | 
| 
      
 92 
     | 
    
         
            +
                top: 0;
         
     | 
| 
      
 93 
     | 
    
         
            +
                left: 0; }
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
              #skiplinks {
         
     | 
| 
      
 96 
     | 
    
         
            +
                position: absolute;
         
     | 
| 
      
 97 
     | 
    
         
            +
                top: 0px;
         
     | 
| 
      
 98 
     | 
    
         
            +
                left: -32768px;
         
     | 
| 
      
 99 
     | 
    
         
            +
                z-index: 1000;
         
     | 
| 
      
 100 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 101 
     | 
    
         
            +
                margin: 0;
         
     | 
| 
      
 102 
     | 
    
         
            +
                padding: 0;
         
     | 
| 
      
 103 
     | 
    
         
            +
                list-style-type: none; }
         
     | 
| 
      
 104 
     | 
    
         
            +
                #skiplinks a.skip:focus, #skiplinks a.skip:active {
         
     | 
| 
      
 105 
     | 
    
         
            +
                  left: 32768px;
         
     | 
| 
      
 106 
     | 
    
         
            +
                  outline: 0 none;
         
     | 
| 
      
 107 
     | 
    
         
            +
                  position: absolute;
         
     | 
| 
      
 108 
     | 
    
         
            +
                  width: 100%; } }
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
            @media screen, projection {
         
     | 
| 
      
 111 
     | 
    
         
            +
              #header {
         
     | 
| 
      
 112 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
              #topnav {
         
     | 
| 
      
 115 
     | 
    
         
            +
                text-align: right; }
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
              #header {
         
     | 
| 
      
 118 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 119 
     | 
    
         
            +
                #header #topnav {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  position: absolute;
         
     | 
| 
      
 121 
     | 
    
         
            +
                  top: 10px;
         
     | 
| 
      
 122 
     | 
    
         
            +
                  right: 10px; }
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
              #nav, #main, #footer {
         
     | 
| 
      
 125 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
              #col1 {
         
     | 
| 
      
 128 
     | 
    
         
            +
                float: left;
         
     | 
| 
      
 129 
     | 
    
         
            +
                width: 200px; }
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
              #col2 {
         
     | 
| 
      
 132 
     | 
    
         
            +
                float: right;
         
     | 
| 
      
 133 
     | 
    
         
            +
                width: 200px; }
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
              #col3 {
         
     | 
| 
      
 136 
     | 
    
         
            +
                width: auto;
         
     | 
| 
      
 137 
     | 
    
         
            +
                margin: 0 200px; }
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
              #col1_content, #col2_content, #col3_content {
         
     | 
| 
      
 140 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
              .subcolumns {
         
     | 
| 
      
 143 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 144 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
              .subcolumns_oldgecko {
         
     | 
| 
      
 147 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 148 
     | 
    
         
            +
                float: left; }
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
              .c20l, .c25l, .c33l, .c40l, .c38l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l {
         
     | 
| 
      
 151 
     | 
    
         
            +
                float: left; }
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
              .c20r, .c25r, .c33r, .c40r, .c38r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r {
         
     | 
| 
      
 154 
     | 
    
         
            +
                float: right;
         
     | 
| 
      
 155 
     | 
    
         
            +
                margin-left: -5px; }
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
              .c20l, .c20r {
         
     | 
| 
      
 158 
     | 
    
         
            +
                width: 20%; }
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
              .c40l, .c40r {
         
     | 
| 
      
 161 
     | 
    
         
            +
                width: 40%; }
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
              .c60l, .c60r {
         
     | 
| 
      
 164 
     | 
    
         
            +
                width: 60%; }
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
              .c80l, .c80r {
         
     | 
| 
      
 167 
     | 
    
         
            +
                width: 80%; }
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
              .c25l, .c25r {
         
     | 
| 
      
 170 
     | 
    
         
            +
                width: 25%; }
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
              .c33l, .c33r {
         
     | 
| 
      
 173 
     | 
    
         
            +
                width: 33.333%; }
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
              .c50l, .c50r {
         
     | 
| 
      
 176 
     | 
    
         
            +
                width: 50%; }
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
              .c66l, .c66r {
         
     | 
| 
      
 179 
     | 
    
         
            +
                width: 66.666%; }
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
              .c75l, .c75r {
         
     | 
| 
      
 182 
     | 
    
         
            +
                width: 75%; }
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
              .c38l, .c38r {
         
     | 
| 
      
 185 
     | 
    
         
            +
                width: 38.2%; }
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
              .c62l, .c62r {
         
     | 
| 
      
 188 
     | 
    
         
            +
                width: 61.8%; }
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
              .subc {
         
     | 
| 
      
 191 
     | 
    
         
            +
                padding: 0 0.5em; }
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
      
 193 
     | 
    
         
            +
              .subcl {
         
     | 
| 
      
 194 
     | 
    
         
            +
                padding: 0 1em 0 0; }
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
              .subcr {
         
     | 
| 
      
 197 
     | 
    
         
            +
                padding: 0 0 0 1em; }
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
              .equalize {
         
     | 
| 
      
 200 
     | 
    
         
            +
                overflow: visible;
         
     | 
| 
      
 201 
     | 
    
         
            +
                display: table;
         
     | 
| 
      
 202 
     | 
    
         
            +
                table-layout: fixed; }
         
     | 
| 
      
 203 
     | 
    
         
            +
                .equalize .subcolumns {
         
     | 
| 
      
 204 
     | 
    
         
            +
                  overflow: visible;
         
     | 
| 
      
 205 
     | 
    
         
            +
                  display: table;
         
     | 
| 
      
 206 
     | 
    
         
            +
                  table-layout: fixed; }
         
     | 
| 
      
 207 
     | 
    
         
            +
                .equalize > div {
         
     | 
| 
      
 208 
     | 
    
         
            +
                  display: table-cell;
         
     | 
| 
      
 209 
     | 
    
         
            +
                  float: none;
         
     | 
| 
      
 210 
     | 
    
         
            +
                  margin: 0;
         
     | 
| 
      
 211 
     | 
    
         
            +
                  overflow: hidden;
         
     | 
| 
      
 212 
     | 
    
         
            +
                  vertical-align: top; } }
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
            @media print {
         
     | 
| 
      
 215 
     | 
    
         
            +
              .subcolumns > div, .floatbox {
         
     | 
| 
      
 216 
     | 
    
         
            +
                overflow: visible;
         
     | 
| 
      
 217 
     | 
    
         
            +
                display: table; }
         
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
              .print {
         
     | 
| 
      
 220 
     | 
    
         
            +
                position: static;
         
     | 
| 
      
 221 
     | 
    
         
            +
                left: 0; }
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
              .noprint {
         
     | 
| 
      
 224 
     | 
    
         
            +
                display: none !important; } }
         
     | 
| 
         @@ -0,0 +1,324 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
             * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
         
     | 
| 
      
 3 
     | 
    
         
            +
             *
         
     | 
| 
      
 4 
     | 
    
         
            +
             * (en) YAML core stylesheet - structure-independent bugfixes of IE/Win CSS-bugs
         
     | 
| 
      
 5 
     | 
    
         
            +
             * (de) YAML Basis-Stylesheet - Strukturunabhängige Bugfixes von CSS-Bugs des IE/Win
         
     | 
| 
      
 6 
     | 
    
         
            +
             *
         
     | 
| 
      
 7 
     | 
    
         
            +
             * Don't make any changes in this file!
         
     | 
| 
      
 8 
     | 
    
         
            +
             * Your changes should be added to a separate patch-file.
         
     | 
| 
      
 9 
     | 
    
         
            +
             *
         
     | 
| 
      
 10 
     | 
    
         
            +
             * @copyright       Copyright 2005-2010, Dirk Jesse
         
     | 
| 
      
 11 
     | 
    
         
            +
             * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
         
     | 
| 
      
 12 
     | 
    
         
            +
             *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
         
     | 
| 
      
 13 
     | 
    
         
            +
             * @link            http://www.yaml.de
         
     | 
| 
      
 14 
     | 
    
         
            +
             * @package         yaml
         
     | 
| 
      
 15 
     | 
    
         
            +
             * @version         3.2.1
         
     | 
| 
      
 16 
     | 
    
         
            +
             * @revision        $Revision: 454 $
         
     | 
| 
      
 17 
     | 
    
         
            +
             * @lastmodified    $Date: 2010-01-01 17:31:10 +0100 (Fr, 01. Jan 2010) $
         
     | 
| 
      
 18 
     | 
    
         
            +
             * @appdef yaml */
         
     | 
| 
      
 19 
     | 
    
         
            +
            @media all {
         
     | 
| 
      
 20 
     | 
    
         
            +
              /*
         
     | 
| 
      
 21 
     | 
    
         
            +
               * (en) Debugging:When you see a green background, IE is getting this stylesheet
         
     | 
| 
      
 22 
     | 
    
         
            +
               * (de) Fehlersuche:Hintergrund leuchtet grün, wenn das Stylesheet korrekt geladen wurde
         
     | 
| 
      
 23 
     | 
    
         
            +
               *
         
     | 
| 
      
 24 
     | 
    
         
            +
               * @debug
         
     | 
| 
      
 25 
     | 
    
         
            +
               * @app-yaml-default disabled */
         
     | 
| 
      
 26 
     | 
    
         
            +
              /* body { background:#0f0; background-image:none; } */
         
     | 
| 
      
 27 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 28 
     | 
    
         
            +
              /*
         
     | 
| 
      
 29 
     | 
    
         
            +
               * (en) No need to force scrollbars in older IE's - it even makes problems in IE6 when set
         
     | 
| 
      
 30 
     | 
    
         
            +
               * (de) Scrollbar-Fix wird in alten IE's nicht benötigt, zudem verursacht der Fix Probleme im IE6
         
     | 
| 
      
 31 
     | 
    
         
            +
               *
         
     | 
| 
      
 32 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 33 
     | 
    
         
            +
               * @affected   IE6, IE7
         
     | 
| 
      
 34 
     | 
    
         
            +
               * @css-for    IE6, IE7
         
     | 
| 
      
 35 
     | 
    
         
            +
               * @valid      no */
         
     | 
| 
      
 36 
     | 
    
         
            +
              body {
         
     | 
| 
      
 37 
     | 
    
         
            +
                o\verflow: visible; }
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 40 
     | 
    
         
            +
              /*
         
     | 
| 
      
 41 
     | 
    
         
            +
               * (en) Fixes IE5.x and IE6 overflow behavior of textarea and input elements elements
         
     | 
| 
      
 42 
     | 
    
         
            +
               * (de) Korrigiert das fehlerhafte overflow-Verhalten von textarea und input-Elementen
         
     | 
| 
      
 43 
     | 
    
         
            +
               *
         
     | 
| 
      
 44 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 45 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 46 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 47 
     | 
    
         
            +
               * @valid      no */
         
     | 
| 
      
 48 
     | 
    
         
            +
              * html textarea {
         
     | 
| 
      
 49 
     | 
    
         
            +
                overflow: scroll;
         
     | 
| 
      
 50 
     | 
    
         
            +
                overflow-x: hidden; }
         
     | 
| 
      
 51 
     | 
    
         
            +
              * html input {
         
     | 
| 
      
 52 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 55 
     | 
    
         
            +
              /*
         
     | 
| 
      
 56 
     | 
    
         
            +
               * (en) Stability fixes with 'position:relative'
         
     | 
| 
      
 57 
     | 
    
         
            +
               * (de) Stabilitätsverbesserungen durch 'position:relative'
         
     | 
| 
      
 58 
     | 
    
         
            +
               *
         
     | 
| 
      
 59 
     | 
    
         
            +
               * Essential for correct scaling in IE7 (body). IE5 must get static positioned body instead.
         
     | 
| 
      
 60 
     | 
    
         
            +
               * Helpful to fix several possible problems in older IE versions (#main).
         
     | 
| 
      
 61 
     | 
    
         
            +
               *
         
     | 
| 
      
 62 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 63 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 64 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 65 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 66 
     | 
    
         
            +
              body, #main {
         
     | 
| 
      
 67 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              * html body {
         
     | 
| 
      
 70 
     | 
    
         
            +
                position: static; }
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 73 
     | 
    
         
            +
              /*
         
     | 
| 
      
 74 
     | 
    
         
            +
               * (en) Clearfix adjustents for containing floats in IE
         
     | 
| 
      
 75 
     | 
    
         
            +
               * (de) Clearfix-Anpassung für diverse IE-Versionen
         
     | 
| 
      
 76 
     | 
    
         
            +
               *
         
     | 
| 
      
 77 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 78 
     | 
    
         
            +
               * @see        http://perishablepress.com/press/2009/12/06/new-clearfix-hack/
         
     | 
| 
      
 79 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 80 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 81 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 82 
     | 
    
         
            +
              .clearfix {
         
     | 
| 
      
 83 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
              /* hasLayout aktivieren */
         
     | 
| 
      
 86 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 87 
     | 
    
         
            +
              /*
         
     | 
| 
      
 88 
     | 
    
         
            +
               * (en) Adjustment of .floatbox class for IE
         
     | 
| 
      
 89 
     | 
    
         
            +
               * (de) Anpassung der .floatbox-Klasse für IE
         
     | 
| 
      
 90 
     | 
    
         
            +
               *
         
     | 
| 
      
 91 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 92 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 93 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 94 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 95 
     | 
    
         
            +
              .floatbox {
         
     | 
| 
      
 96 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 99 
     | 
    
         
            +
              /*
         
     | 
| 
      
 100 
     | 
    
         
            +
               * (en) Special class for oversized content element
         
     | 
| 
      
 101 
     | 
    
         
            +
               * (de) Spezielle Klasse für übergroße Inhaltselemente
         
     | 
| 
      
 102 
     | 
    
         
            +
               *
         
     | 
| 
      
 103 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 104 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 105 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 106 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 107 
     | 
    
         
            +
              .slidebox {
         
     | 
| 
      
 108 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 109 
     | 
    
         
            +
                margin-right: -1000px;
         
     | 
| 
      
 110 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 113 
     | 
    
         
            +
              /*
         
     | 
| 
      
 114 
     | 
    
         
            +
               * (en):Bugfix for partially displayed column separators
         
     | 
| 
      
 115 
     | 
    
         
            +
               * (de):Bugfix für unvollständige Darstellung der Spalteninhalte / Spaltentrenner
         
     | 
| 
      
 116 
     | 
    
         
            +
               *
         
     | 
| 
      
 117 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 118 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 119 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 120 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 121 
     | 
    
         
            +
              * html #col1, * html #col2, * html #col3 {
         
     | 
| 
      
 122 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 125 
     | 
    
         
            +
              /*
         
     | 
| 
      
 126 
     | 
    
         
            +
               * (en) Preventing several css bugs by forcing "hasLayout"
         
     | 
| 
      
 127 
     | 
    
         
            +
               * (de) Vermeidung verschiedenster Bugs durch Erzwingen von "hasLayout"
         
     | 
| 
      
 128 
     | 
    
         
            +
               *
         
     | 
| 
      
 129 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 130 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 131 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 132 
     | 
    
         
            +
               * @valid      no */
         
     | 
| 
      
 133 
     | 
    
         
            +
              body {
         
     | 
| 
      
 134 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
              .page_margins, .page, #header, #nav, #main, #footer {
         
     | 
| 
      
 137 
     | 
    
         
            +
                zoom: 1; }
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
              /* IE6 & IE7 */
         
     | 
| 
      
 140 
     | 
    
         
            +
              * html .page_margins, * html .page {
         
     | 
| 
      
 141 
     | 
    
         
            +
                height: 1%;
         
     | 
| 
      
 142 
     | 
    
         
            +
                hei\ght: auto; }
         
     | 
| 
      
 143 
     | 
    
         
            +
              * html #header, * html #nav, * html #main, * html #footer {
         
     | 
| 
      
 144 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 145 
     | 
    
         
            +
                wid\th: auto; }
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
              /* IE 5.x & IE6 | IE6 only */
         
     | 
| 
      
 148 
     | 
    
         
            +
              /* IE 5.x & IE6 | IE6 only */
         
     | 
| 
      
 149 
     | 
    
         
            +
              /* trigger hasLayout to force containing content */
         
     | 
| 
      
 150 
     | 
    
         
            +
              .subc, .subcl, .subcr {
         
     | 
| 
      
 151 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
      
 153 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 154 
     | 
    
         
            +
              /*
         
     | 
| 
      
 155 
     | 
    
         
            +
               * Disappearing List-Background Bug
         
     | 
| 
      
 156 
     | 
    
         
            +
               * @see        http://www.positioniseverything.net/explorer/ie-listbug.html
         
     | 
| 
      
 157 
     | 
    
         
            +
               *
         
     | 
| 
      
 158 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 159 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 160 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 161 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 162 
     | 
    
         
            +
              * html ul, * html ol, * html dl {
         
     | 
| 
      
 163 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
      
 165 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 166 
     | 
    
         
            +
              /*
         
     | 
| 
      
 167 
     | 
    
         
            +
               * List-Numbering Bug
         
     | 
| 
      
 168 
     | 
    
         
            +
               *
         
     | 
| 
      
 169 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 170 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 171 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 172 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 173 
     | 
    
         
            +
              body ol li {
         
     | 
| 
      
 174 
     | 
    
         
            +
                display: list-item; }
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
              /*
         
     | 
| 
      
 177 
     | 
    
         
            +
               * Form related bugfixes
         
     | 
| 
      
 178 
     | 
    
         
            +
               *
         
     | 
| 
      
 179 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 180 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 181 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 182 
     | 
    
         
            +
               * @valid      no */
         
     | 
| 
      
 183 
     | 
    
         
            +
              fieldset, legend {
         
     | 
| 
      
 184 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 187 
     | 
    
         
            +
              /*
         
     | 
| 
      
 188 
     | 
    
         
            +
               * (en) Workaround for 'collapsing margin at #col3' when using CSS-property clear
         
     | 
| 
      
 189 
     | 
    
         
            +
               *      Left margin of #col3 collapses when using clear:both in 1-3-2 (or 2-3-1) layout and right column is the
         
     | 
| 
      
 190 
     | 
    
         
            +
               *      longest and left column is the shortest one. For IE6 and IE7 a special workaround was developed
         
     | 
| 
      
 191 
     | 
    
         
            +
               *      in YAML.
         
     | 
| 
      
 192 
     | 
    
         
            +
               *
         
     | 
| 
      
 193 
     | 
    
         
            +
               * (de) Workaround für 'kollabierenden Margin an #col3' bei Verwendung der CSS-Eigenschaft clear
         
     | 
| 
      
 194 
     | 
    
         
            +
               *      Der linke Margin von #col3 kollabiert bei der Verwendung von clear:both im 1-3-2 (oder 2-3-1) Layout
         
     | 
| 
      
 195 
     | 
    
         
            +
               *      wenn gleichzeitig die linke Spalte die kürzeste und die rechte die längste ist. Im IE6 und IE7 lässt
         
     | 
| 
      
 196 
     | 
    
         
            +
               *      sich der Bug durch eine speziell für YAML entwickelten Workaround umgehen.
         
     | 
| 
      
 197 
     | 
    
         
            +
               *
         
     | 
| 
      
 198 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 199 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 200 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 201 
     | 
    
         
            +
               * @valid      no */
         
     | 
| 
      
 202 
     | 
    
         
            +
              html #ie_clearing {
         
     | 
| 
      
 203 
     | 
    
         
            +
                /* (en) Only a small help for debugging */
         
     | 
| 
      
 204 
     | 
    
         
            +
                /* (de) Nur eine kleine Hilfe zur Fehlersuche */
         
     | 
| 
      
 205 
     | 
    
         
            +
                position: static;
         
     | 
| 
      
 206 
     | 
    
         
            +
                /* (en) Make container visible in IE */
         
     | 
| 
      
 207 
     | 
    
         
            +
                /* (de) Container sichtbar machen im IE */
         
     | 
| 
      
 208 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 209 
     | 
    
         
            +
                /* (en) No fix possible in IE5.x, normal clearing used instead */
         
     | 
| 
      
 210 
     | 
    
         
            +
                /* (de) Kein Fix im IE5.x möglich, daher normales Clearing */
         
     | 
| 
      
 211 
     | 
    
         
            +
                clear: both;
         
     | 
| 
      
 212 
     | 
    
         
            +
                /* (en) forcing clearing-like behavior with a simple oversized container in IE6 & IE7 */
         
     | 
| 
      
 213 
     | 
    
         
            +
                /* (de) IE-Clearing mit 100%-DIV für IE6 bzw. übergroßem Container im IE7 */
         
     | 
| 
      
 214 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 215 
     | 
    
         
            +
                font-size: 0px;
         
     | 
| 
      
 216 
     | 
    
         
            +
                margin: -2px 0 -1em 1px; }
         
     | 
| 
      
 217 
     | 
    
         
            +
             
     | 
| 
      
 218 
     | 
    
         
            +
              * html #ie_clearing {
         
     | 
| 
      
 219 
     | 
    
         
            +
                margin: -2px 0 -1em 0; }
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
              #col3_content {
         
     | 
| 
      
 222 
     | 
    
         
            +
                margin-bottom: -2px; }
         
     | 
| 
      
 223 
     | 
    
         
            +
             
     | 
| 
      
 224 
     | 
    
         
            +
              /* (en) avoid horizontal scrollbars in IE7 in borderless layouts because of negative margins */
         
     | 
| 
      
 225 
     | 
    
         
            +
              /* (de) Vermeidung horizontaler Scrollbalken bei randabfallenden Layouts im IE7 */
         
     | 
| 
      
 226 
     | 
    
         
            +
              html {
         
     | 
| 
      
 227 
     | 
    
         
            +
                margin-right: 1px; }
         
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
              * html {
         
     | 
| 
      
 230 
     | 
    
         
            +
                margin-right: 0; }
         
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
              /* (en) Bugfix:Essential for IE7 */
         
     | 
| 
      
 233 
     | 
    
         
            +
              /* (de) Bugfix:Notwendig im IE7 */
         
     | 
| 
      
 234 
     | 
    
         
            +
              #col3 {
         
     | 
| 
      
 235 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
      
 237 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 238 
     | 
    
         
            +
              /*
         
     | 
| 
      
 239 
     | 
    
         
            +
               * IE/Win Guillotine Bug
         
     | 
| 
      
 240 
     | 
    
         
            +
               * @see        http://www.positioniseverything.net/explorer/guillotine.html
         
     | 
| 
      
 241 
     | 
    
         
            +
               *
         
     | 
| 
      
 242 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 243 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 244 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 245 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 246 
     | 
    
         
            +
              * html body a {
         
     | 
| 
      
 247 
     | 
    
         
            +
                background-color: transparent; }
         
     | 
| 
      
 248 
     | 
    
         
            +
                * html body a:hover {
         
     | 
| 
      
 249 
     | 
    
         
            +
                  background-color: transparent; } }
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
            @media screen, projection {
         
     | 
| 
      
 252 
     | 
    
         
            +
              /*
         
     | 
| 
      
 253 
     | 
    
         
            +
               * (en) IE-Adjustments for content columns and subtemplates
         
     | 
| 
      
 254 
     | 
    
         
            +
               * (de) IE-Anpassung für Spaltencontainer und Subtemplates
         
     | 
| 
      
 255 
     | 
    
         
            +
               *
         
     | 
| 
      
 256 
     | 
    
         
            +
               * Doubled Float-Margin Bug
         
     | 
| 
      
 257 
     | 
    
         
            +
               * @see        http://positioniseverything.net/explorer/doubled-margin.html
         
     | 
| 
      
 258 
     | 
    
         
            +
               *
         
     | 
| 
      
 259 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 260 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 261 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 262 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 263 
     | 
    
         
            +
              #col1, #col2, .c20l, .c25l, .c33l, .c38l, .c40l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l, .c20r, .c25r, .c33r, .c38r, .c40r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r {
         
     | 
| 
      
 264 
     | 
    
         
            +
                display: inline; }
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
              /* Fix for:"Linking to anchors in elements within the containing block" Problem in IE5.x & IE 6.0 */
         
     | 
| 
      
 267 
     | 
    
         
            +
              * html .equalize {
         
     | 
| 
      
 268 
     | 
    
         
            +
                overflow: visible;
         
     | 
| 
      
 269 
     | 
    
         
            +
                display: block; }
         
     | 
| 
      
 270 
     | 
    
         
            +
                * html .equalize .subcolumns {
         
     | 
| 
      
 271 
     | 
    
         
            +
                  overflow: visible;
         
     | 
| 
      
 272 
     | 
    
         
            +
                  display: block; }
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
              .equalize {
         
     | 
| 
      
 275 
     | 
    
         
            +
                overflow: hidden;
         
     | 
| 
      
 276 
     | 
    
         
            +
                display: block; }
         
     | 
| 
      
 277 
     | 
    
         
            +
                .equalize .subcolumns {
         
     | 
| 
      
 278 
     | 
    
         
            +
                  overflow: hidden;
         
     | 
| 
      
 279 
     | 
    
         
            +
                  display: block; }
         
     | 
| 
      
 280 
     | 
    
         
            +
                .equalize .c20l, .equalize .c40l, .equalize .c60l, .equalize .c80l, .equalize .c25l, .equalize .c33l, .equalize .c38l, .equalize .c50l, .equalize .c62l, .equalize .c66l, .equalize .c75l {
         
     | 
| 
      
 281 
     | 
    
         
            +
                  float: left;
         
     | 
| 
      
 282 
     | 
    
         
            +
                  display: inline;
         
     | 
| 
      
 283 
     | 
    
         
            +
                  padding-bottom: 32767px;
         
     | 
| 
      
 284 
     | 
    
         
            +
                  margin-bottom: -32767px; }
         
     | 
| 
      
 285 
     | 
    
         
            +
                .equalize .c20r, .equalize .c40r, .equalize .c60r, .equalize .c80r, .equalize .c25r, .equalize .c33r, .equalize .c38r, .equalize .c50r, .equalize .c62r, .equalize .c66r, .equalize .c75r {
         
     | 
| 
      
 286 
     | 
    
         
            +
                  float: right;
         
     | 
| 
      
 287 
     | 
    
         
            +
                  margin-left: -5px;
         
     | 
| 
      
 288 
     | 
    
         
            +
                  display: inline;
         
     | 
| 
      
 289 
     | 
    
         
            +
                  padding-bottom: 32767px;
         
     | 
| 
      
 290 
     | 
    
         
            +
                  margin-bottom: -32767px; }
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
              /* transform CSS tables back into floats */
         
     | 
| 
      
 293 
     | 
    
         
            +
              .no-ie-padding .c20l, .no-ie-padding .c40l, .no-ie-padding .c60l, .no-ie-padding .c80l, .no-ie-padding .c20r, .no-ie-padding .c40r, .no-ie-padding .c60r, .no-ie-padding .c80r, .no-ie-padding .c25l, .no-ie-padding .c33l, .no-ie-padding .c38l, .no-ie-padding .c50l, .no-ie-padding .c62l, .no-ie-padding .c66l, .no-ie-padding .c75l, .no-ie-padding .c25r, .no-ie-padding .c33r, .no-ie-padding .c38r, .no-ie-padding .c50r, .no-ie-padding .c62r, .no-ie-padding .c66r, .no-ie-padding .c75r {
         
     | 
| 
      
 294 
     | 
    
         
            +
                padding-bottom: 0;
         
     | 
| 
      
 295 
     | 
    
         
            +
                margin-bottom: 0; }
         
     | 
| 
      
 296 
     | 
    
         
            +
             
     | 
| 
      
 297 
     | 
    
         
            +
              /*------------------------------------------------------------------------------------------------------ */
         
     | 
| 
      
 298 
     | 
    
         
            +
              /*
         
     | 
| 
      
 299 
     | 
    
         
            +
               * Internet Explorer and the Expanding Box Problem
         
     | 
| 
      
 300 
     | 
    
         
            +
               * @see http://www.positioniseverything.net/explorer/expandingboxbug.html
         
     | 
| 
      
 301 
     | 
    
         
            +
               *
         
     | 
| 
      
 302 
     | 
    
         
            +
               * @workaround
         
     | 
| 
      
 303 
     | 
    
         
            +
               * @affected   IE 5.x/Win, IE6
         
     | 
| 
      
 304 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6
         
     | 
| 
      
 305 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 306 
     | 
    
         
            +
              * html #col1_content, * html #col2_content, * html #col3_content {
         
     | 
| 
      
 307 
     | 
    
         
            +
                word-wrap: break-word; }
         
     | 
| 
      
 308 
     | 
    
         
            +
              * html .subc, * html .subcl, * html .subcr {
         
     | 
| 
      
 309 
     | 
    
         
            +
                word-wrap: break-word;
         
     | 
| 
      
 310 
     | 
    
         
            +
                o\verflow: hidden; }
         
     | 
| 
      
 311 
     | 
    
         
            +
             
     | 
| 
      
 312 
     | 
    
         
            +
              /* avoid growing widths */ }
         
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
            @media print {
         
     | 
| 
      
 315 
     | 
    
         
            +
              /*
         
     | 
| 
      
 316 
     | 
    
         
            +
               * (en) Avoid unneeded page breaks of #col3 content in print layout.
         
     | 
| 
      
 317 
     | 
    
         
            +
               * (de) Vermeiden von unnötigen Seitenumbrüchen beim Ausdruck der Spalte #col3.
         
     | 
| 
      
 318 
     | 
    
         
            +
               *
         
     | 
| 
      
 319 
     | 
    
         
            +
               * @bugfix
         
     | 
| 
      
 320 
     | 
    
         
            +
               * @affected   IE7
         
     | 
| 
      
 321 
     | 
    
         
            +
               * @css-for    IE 5.x/Win, IE6, IE7
         
     | 
| 
      
 322 
     | 
    
         
            +
               * @valid      yes */
         
     | 
| 
      
 323 
     | 
    
         
            +
              #col3 {
         
     | 
| 
      
 324 
     | 
    
         
            +
                height: 1%; } }
         
     | 
| 
         
            File without changes
         
     | 
| 
         @@ -0,0 +1,127 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /* "Yet Another Multicolumn Layout" v3.2.1 (c) by Dirk Jesse (http://www.yaml.de)
         
     | 
| 
      
 2 
     | 
    
         
            +
             ** $Revision: 443 $ $Date: 2009-12-31 18:05:05 +0100 (Do, 31. Dez 2009) $ */
         
     | 
| 
      
 3 
     | 
    
         
            +
            @media all {
         
     | 
| 
      
 4 
     | 
    
         
            +
              body {
         
     | 
| 
      
 5 
     | 
    
         
            +
                o\verflow: visible; }
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
              * html textarea {
         
     | 
| 
      
 8 
     | 
    
         
            +
                overflow: scroll;
         
     | 
| 
      
 9 
     | 
    
         
            +
                overflow-x: hidden; }
         
     | 
| 
      
 10 
     | 
    
         
            +
              * html input {
         
     | 
| 
      
 11 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              body, #main {
         
     | 
| 
      
 14 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              * html body {
         
     | 
| 
      
 17 
     | 
    
         
            +
                position: static; }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              .clearfix {
         
     | 
| 
      
 20 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              .floatbox {
         
     | 
| 
      
 23 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              .slidebox {
         
     | 
| 
      
 26 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 27 
     | 
    
         
            +
                margin-right: -1000px;
         
     | 
| 
      
 28 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
              * html #col1, * html #col2, * html #col3 {
         
     | 
| 
      
 31 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              body {
         
     | 
| 
      
 34 
     | 
    
         
            +
                height: 1; }
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
              .page_margins, .page, #header, #nav, #main, #footer {
         
     | 
| 
      
 37 
     | 
    
         
            +
                zoom: 1; }
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
              * html .page_margins, * html .page {
         
     | 
| 
      
 40 
     | 
    
         
            +
                height: 1%;
         
     | 
| 
      
 41 
     | 
    
         
            +
                hei\ght: auto; }
         
     | 
| 
      
 42 
     | 
    
         
            +
              * html #header, * html #nav, * html #main, * html #footer {
         
     | 
| 
      
 43 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 44 
     | 
    
         
            +
                wid\th: auto; }
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
              .subc, .subcl, .subcr {
         
     | 
| 
      
 47 
     | 
    
         
            +
                height: 1%; }
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
              * html ul, * html ol, * html dl {
         
     | 
| 
      
 50 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
              body ol li {
         
     | 
| 
      
 53 
     | 
    
         
            +
                display: list-item; }
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
              fieldset, legend {
         
     | 
| 
      
 56 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
              html #ie_clearing {
         
     | 
| 
      
 59 
     | 
    
         
            +
                position: static;
         
     | 
| 
      
 60 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 61 
     | 
    
         
            +
                clear: both;
         
     | 
| 
      
 62 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 63 
     | 
    
         
            +
                font-size: 0px;
         
     | 
| 
      
 64 
     | 
    
         
            +
                margin: -2px 0 -1em 1px; }
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
              * html #ie_clearing {
         
     | 
| 
      
 67 
     | 
    
         
            +
                margin: -2px 0 -1em 0; }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              #col3_content {
         
     | 
| 
      
 70 
     | 
    
         
            +
                margin-bottom: -2px; }
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
              html {
         
     | 
| 
      
 73 
     | 
    
         
            +
                margin-right: 1px; }
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
              * html {
         
     | 
| 
      
 76 
     | 
    
         
            +
                margin-right: 0; }
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
              #col3 {
         
     | 
| 
      
 79 
     | 
    
         
            +
                position: relative; }
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
              * html body a {
         
     | 
| 
      
 82 
     | 
    
         
            +
                background-color: transparent; }
         
     | 
| 
      
 83 
     | 
    
         
            +
                * html body a:hover {
         
     | 
| 
      
 84 
     | 
    
         
            +
                  background-color: transparent; } }
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            @media screen,projection {
         
     | 
| 
      
 87 
     | 
    
         
            +
              #col1, #col2, .c20l, .c25l, .c33l, .c38l, .c40l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l, .c20r, .c25r, .c33r, .c38r, .c40r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r {
         
     | 
| 
      
 88 
     | 
    
         
            +
                display: inline; }
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
              * html .equalize {
         
     | 
| 
      
 91 
     | 
    
         
            +
                overflow: visible;
         
     | 
| 
      
 92 
     | 
    
         
            +
                display: block; }
         
     | 
| 
      
 93 
     | 
    
         
            +
                * html .equalize .subcolumns {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  overflow: visible;
         
     | 
| 
      
 95 
     | 
    
         
            +
                  display: block; }
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
              .equalize {
         
     | 
| 
      
 98 
     | 
    
         
            +
                overflow: hidden;
         
     | 
| 
      
 99 
     | 
    
         
            +
                display: block; }
         
     | 
| 
      
 100 
     | 
    
         
            +
                .equalize .subcolumns {
         
     | 
| 
      
 101 
     | 
    
         
            +
                  overflow: hidden;
         
     | 
| 
      
 102 
     | 
    
         
            +
                  display: block; }
         
     | 
| 
      
 103 
     | 
    
         
            +
                .equalize .c20l, .equalize .c40l, .equalize .c60l, .equalize .c80l, .equalize .c25l, .equalize .c33l, .equalize .c38l, .equalize .c50l, .equalize .c62l, .equalize .c66l, .equalize .c75l {
         
     | 
| 
      
 104 
     | 
    
         
            +
                  float: left;
         
     | 
| 
      
 105 
     | 
    
         
            +
                  display: inline;
         
     | 
| 
      
 106 
     | 
    
         
            +
                  padding-bottom: 32767px;
         
     | 
| 
      
 107 
     | 
    
         
            +
                  margin-bottom: -32767px; }
         
     | 
| 
      
 108 
     | 
    
         
            +
                .equalize .c20r, .equalize .c40r, .equalize .c60r, .equalize .c80r, .equalize .c25r, .equalize .c33r, .equalize .c38r, .equalize .c50r, .equalize .c62r, .equalize .c66r, .equalize .c75r {
         
     | 
| 
      
 109 
     | 
    
         
            +
                  float: right;
         
     | 
| 
      
 110 
     | 
    
         
            +
                  margin-left: -5px;
         
     | 
| 
      
 111 
     | 
    
         
            +
                  display: inline;
         
     | 
| 
      
 112 
     | 
    
         
            +
                  padding-bottom: 32767px;
         
     | 
| 
      
 113 
     | 
    
         
            +
                  margin-bottom: -32767px; }
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
              .no-ie-padding .c20l, .no-ie-padding .c40l, .no-ie-padding .c60l, .no-ie-padding .c80l, .no-ie-padding .c20r, .no-ie-padding .c40r, .no-ie-padding .c60r, .no-ie-padding .c80r, .no-ie-padding .c25l, .no-ie-padding .c33l, .no-ie-padding .c38l, .no-ie-padding .c50l, .no-ie-padding .c62l, .no-ie-padding .c66l, .no-ie-padding .c75l, .no-ie-padding .c25r, .no-ie-padding .c33r, .no-ie-padding .c38r, .no-ie-padding .c50r, .no-ie-padding .c62r, .no-ie-padding .c66r, .no-ie-padding .c75r {
         
     | 
| 
      
 116 
     | 
    
         
            +
                padding-bottom: 0;
         
     | 
| 
      
 117 
     | 
    
         
            +
                margin-bottom: 0; }
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
              * html #col1_content, * html #col2_content, * html #col3_content {
         
     | 
| 
      
 120 
     | 
    
         
            +
                word-wrap: break-word; }
         
     | 
| 
      
 121 
     | 
    
         
            +
              * html .subc, * html .subcl, * html .subcr {
         
     | 
| 
      
 122 
     | 
    
         
            +
                word-wrap: break-word;
         
     | 
| 
      
 123 
     | 
    
         
            +
                o\verflow: hidden; } }
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            @media print {
         
     | 
| 
      
 126 
     | 
    
         
            +
              #col3 {
         
     | 
| 
      
 127 
     | 
    
         
            +
                height: 1%; } }
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: cyaml
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 33
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 0
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 0
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 9 
     | 
    
         
            +
              - 31
         
     | 
| 
      
 10 
     | 
    
         
            +
              version: 0.0.31
         
     | 
| 
       11 
11 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
12 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            - Michael Gerber
         
     | 
| 
         @@ -49,6 +49,10 @@ files: 
     | 
|
| 
       49 
49 
     | 
    
         
             
            - stylesheets/cyaml/core/iehacks.sass
         
     | 
| 
       50 
50 
     | 
    
         
             
            - stylesheets/cyaml/core/slim_base.sass
         
     | 
| 
       51 
51 
     | 
    
         
             
            - stylesheets/cyaml/core/slim_iehacks.sass
         
     | 
| 
      
 52 
     | 
    
         
            +
            - stylesheets/cyaml/core/iehacks.css
         
     | 
| 
      
 53 
     | 
    
         
            +
            - stylesheets/cyaml/core/slim_base.css
         
     | 
| 
      
 54 
     | 
    
         
            +
            - stylesheets/cyaml/core/slim_iehacks.css
         
     | 
| 
      
 55 
     | 
    
         
            +
            - stylesheets/cyaml/core/base.css
         
     | 
| 
       52 
56 
     | 
    
         
             
            - stylesheets/cyaml/core/base.sass
         
     | 
| 
       53 
57 
     | 
    
         
             
            - stylesheets/cyaml/print/print_103_draft.sass
         
     | 
| 
       54 
58 
     | 
    
         
             
            - stylesheets/cyaml/print/print_120_draft.sass
         
     |