edge_framework 0.9.10 → 0.9.11
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.
- checksums.yaml +8 -8
 - data/README.md +297 -89
 - data/assets/sass/edge/_base.scss +29 -14
 - data/assets/sass/edge/components/_button.scss +36 -47
 - data/assets/sass/edge/components/_grid.scss +7 -7
 - data/assets/sass/edge/components/_tile.scss +20 -5
 - data/assets/sass/edge/components/_typography.scss +1 -6
 - data/assets/sass/edge/components/_visibility.scss +15 -35
 - data/assets/sass/edge.scss +1 -1
 - data/assets/sass/for-test.scss +13 -6
 - data/assets/test.html +42 -45
 - data/bin/edge +3 -3
 - data/lib/edge/install_generator.rb +56 -0
 - data/lib/edge/message.rb +2 -6
 - data/lib/edge/version.rb +1 -1
 - data/lib/edge_framework.rb +4 -0
 - data/readme-img/compass-edge-big.jpg +0 -0
 - data/readme-img/compass-edge.jpg +0 -0
 - data/readme-img/generator/assets/css/.keep +0 -0
 - data/readme-img/generator/assets/css/app.css +67 -0
 - data/readme-img/generator/assets/css/framework.css +1015 -0
 - data/readme-img/generator/assets/files/.keep +0 -0
 - data/readme-img/generator/assets/fonts/.keep +0 -0
 - data/readme-img/generator/assets/img/favicon-big.png +0 -0
 - data/readme-img/generator/assets/img/favicon.png +0 -0
 - data/readme-img/generator/assets/img/ipad.svg +19 -0
 - data/readme-img/generator/assets/img/iphone.svg +22 -0
 - data/readme-img/generator/assets/js/app.js +3 -0
 - data/readme-img/generator/assets/js/vendor/custom.modernizr.js +4 -0
 - data/readme-img/generator/assets/js/vendor/jquery.min.js +6 -0
 - data/readme-img/generator/assets/sass/_setting.scss +107 -0
 - data/readme-img/generator/assets/sass/app.scss +102 -0
 - data/readme-img/generator/assets/sass/framework.scss +10 -0
 - data/readme-img/generator/content.html +40 -0
 - data/readme-img/generator/index.html +49 -0
 - data/readme-img/generator/robots.txt +7 -0
 - data/readme-img/grid-centered.jpg +0 -0
 - data/readme-img/grid-collapse.jpg +0 -0
 - data/readme-img/grid-large-small.jpg +0 -0
 - data/readme-img/grid-large.jpg +0 -0
 - data/readme-img/grid-nesting.jpg +0 -0
 - data/readme-img/grid-offset.jpg +0 -0
 - data/readme-img/grid-ordering.jpg +0 -0
 - data/readme-img/grid-tile.jpg +0 -0
 - data/readme-img/logo.jpg +0 -0
 - data/readme-img/rails-edge-big.jpg +0 -0
 - data/readme-img/rails-edge.jpg +0 -0
 - data/template/base/assets/sass/_setting.scss +41 -52
 - data/template/master/assets/sass/_setting.scss +118 -0
 - data/template/rails/application.html.erb +30 -0
 - metadata +36 -2
 
| 
         @@ -0,0 +1,1015 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /* ----------------------------------
         
     | 
| 
      
 2 
     | 
    
         
            +
            - EDGE Framework - edge.setyono.net
         
     | 
| 
      
 3 
     | 
    
         
            +
            - v0.9.10 (Crixalis)
         
     | 
| 
      
 4 
     | 
    
         
            +
            ------------------------------------- */
         
     | 
| 
      
 5 
     | 
    
         
            +
            /* ----------------
         
     | 
| 
      
 6 
     | 
    
         
            +
              EDGE Normalize
         
     | 
| 
      
 7 
     | 
    
         
            +
            ---------------- */
         
     | 
| 
      
 8 
     | 
    
         
            +
            *,
         
     | 
| 
      
 9 
     | 
    
         
            +
            *:before,
         
     | 
| 
      
 10 
     | 
    
         
            +
            *:after {
         
     | 
| 
      
 11 
     | 
    
         
            +
              -webkit-box-sizing: border-box;
         
     | 
| 
      
 12 
     | 
    
         
            +
              -moz-box-sizing: border-box;
         
     | 
| 
      
 13 
     | 
    
         
            +
              box-sizing: border-box; }
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            *, body {
         
     | 
| 
      
 16 
     | 
    
         
            +
              margin: 0;
         
     | 
| 
      
 17 
     | 
    
         
            +
              padding: 0; }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            body {
         
     | 
| 
      
 20 
     | 
    
         
            +
              -webkit-animation: bugfix infinite 1s; }
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            @-webkit-keyframes bugfix {
         
     | 
| 
      
 23 
     | 
    
         
            +
              from {
         
     | 
| 
      
 24 
     | 
    
         
            +
                padding: 0; }
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
              to {
         
     | 
| 
      
 27 
     | 
    
         
            +
                padding: 0; } }
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            html {
         
     | 
| 
      
 30 
     | 
    
         
            +
              font-family: sans-serif;
         
     | 
| 
      
 31 
     | 
    
         
            +
              -webkit-text-size-adjust: 100%;
         
     | 
| 
      
 32 
     | 
    
         
            +
              -ms-text-size-adjust: 100%; }
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            a {
         
     | 
| 
      
 35 
     | 
    
         
            +
              cursor: pointer;
         
     | 
| 
      
 36 
     | 
    
         
            +
              text-decoration: none; }
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            a:focus {
         
     | 
| 
      
 39 
     | 
    
         
            +
              outline: none; }
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            a:active, a:hover {
         
     | 
| 
      
 42 
     | 
    
         
            +
              outline: 0; }
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6 {
         
     | 
| 
      
 45 
     | 
    
         
            +
              margin: 0; }
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            hr {
         
     | 
| 
      
 48 
     | 
    
         
            +
              -moz-box-sizing: content-box;
         
     | 
| 
      
 49 
     | 
    
         
            +
              box-sizing: content-box;
         
     | 
| 
      
 50 
     | 
    
         
            +
              display: block;
         
     | 
| 
      
 51 
     | 
    
         
            +
              height: 1px;
         
     | 
| 
      
 52 
     | 
    
         
            +
              margin: 1em 0;
         
     | 
| 
      
 53 
     | 
    
         
            +
              padding: 0;
         
     | 
| 
      
 54 
     | 
    
         
            +
              border: 0;
         
     | 
| 
      
 55 
     | 
    
         
            +
              border-top: 1px solid #ccc; }
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            img {
         
     | 
| 
      
 58 
     | 
    
         
            +
              border: 0;
         
     | 
| 
      
 59 
     | 
    
         
            +
              display: inline-block;
         
     | 
| 
      
 60 
     | 
    
         
            +
              vertical-align: middle;
         
     | 
| 
      
 61 
     | 
    
         
            +
              -ms-interpolation-mode: bicubic; }
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            img,
         
     | 
| 
      
 64 
     | 
    
         
            +
            object,
         
     | 
| 
      
 65 
     | 
    
         
            +
            embed {
         
     | 
| 
      
 66 
     | 
    
         
            +
              max-width: 100%;
         
     | 
| 
      
 67 
     | 
    
         
            +
              height: auto; }
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            object,
         
     | 
| 
      
 70 
     | 
    
         
            +
            embed {
         
     | 
| 
      
 71 
     | 
    
         
            +
              height: 100%; }
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
            #map_canvas img,
         
     | 
| 
      
 74 
     | 
    
         
            +
            #map_canvas embed,
         
     | 
| 
      
 75 
     | 
    
         
            +
            #map_canvas object,
         
     | 
| 
      
 76 
     | 
    
         
            +
            .map_canvas img,
         
     | 
| 
      
 77 
     | 
    
         
            +
            .map_canvas embed,
         
     | 
| 
      
 78 
     | 
    
         
            +
            .map_canvas object {
         
     | 
| 
      
 79 
     | 
    
         
            +
              max-width: none !important; }
         
     | 
| 
      
 80 
     | 
    
         
            +
             
     | 
| 
      
 81 
     | 
    
         
            +
            article,
         
     | 
| 
      
 82 
     | 
    
         
            +
            aside,
         
     | 
| 
      
 83 
     | 
    
         
            +
            details,
         
     | 
| 
      
 84 
     | 
    
         
            +
            figcaption,
         
     | 
| 
      
 85 
     | 
    
         
            +
            figure,
         
     | 
| 
      
 86 
     | 
    
         
            +
            footer,
         
     | 
| 
      
 87 
     | 
    
         
            +
            header,
         
     | 
| 
      
 88 
     | 
    
         
            +
            hgroup,
         
     | 
| 
      
 89 
     | 
    
         
            +
            main,
         
     | 
| 
      
 90 
     | 
    
         
            +
            nav,
         
     | 
| 
      
 91 
     | 
    
         
            +
            section,
         
     | 
| 
      
 92 
     | 
    
         
            +
            summary {
         
     | 
| 
      
 93 
     | 
    
         
            +
              display: block; }
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
            audio,
         
     | 
| 
      
 96 
     | 
    
         
            +
            canvas,
         
     | 
| 
      
 97 
     | 
    
         
            +
            video {
         
     | 
| 
      
 98 
     | 
    
         
            +
              display: inline-block; }
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
            audio:not([controls]) {
         
     | 
| 
      
 101 
     | 
    
         
            +
              display: none;
         
     | 
| 
      
 102 
     | 
    
         
            +
              height: 0; }
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            [hidden] {
         
     | 
| 
      
 105 
     | 
    
         
            +
              display: none; }
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            abbr[title] {
         
     | 
| 
      
 108 
     | 
    
         
            +
              border-bottom: 1px dotted; }
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
            dfn {
         
     | 
| 
      
 111 
     | 
    
         
            +
              font-style: italic; }
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
            mark {
         
     | 
| 
      
 114 
     | 
    
         
            +
              background: #ff0;
         
     | 
| 
      
 115 
     | 
    
         
            +
              color: #000; }
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            code, kbd, pre, samp {
         
     | 
| 
      
 118 
     | 
    
         
            +
              font-family: monospace, serif;
         
     | 
| 
      
 119 
     | 
    
         
            +
              font-size: 1em; }
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            q {
         
     | 
| 
      
 122 
     | 
    
         
            +
              quotes: "\201C" "\201D" "\2018" "\2019"; }
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
            small {
         
     | 
| 
      
 125 
     | 
    
         
            +
              font-size: 80%; }
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
            sub, sup {
         
     | 
| 
      
 128 
     | 
    
         
            +
              font-size: 75%;
         
     | 
| 
      
 129 
     | 
    
         
            +
              line-height: 0;
         
     | 
| 
      
 130 
     | 
    
         
            +
              position: relative;
         
     | 
| 
      
 131 
     | 
    
         
            +
              vertical-align: baseline; }
         
     | 
| 
      
 132 
     | 
    
         
            +
             
     | 
| 
      
 133 
     | 
    
         
            +
            sup {
         
     | 
| 
      
 134 
     | 
    
         
            +
              top: -0.5em; }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
            sub {
         
     | 
| 
      
 137 
     | 
    
         
            +
              bottom: -0.25em; }
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
            svg:not(:root) {
         
     | 
| 
      
 140 
     | 
    
         
            +
              overflow: hidden; }
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
            figure {
         
     | 
| 
      
 143 
     | 
    
         
            +
              margin: 0; }
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
            fieldset {
         
     | 
| 
      
 146 
     | 
    
         
            +
              border: 0;
         
     | 
| 
      
 147 
     | 
    
         
            +
              margin: 0;
         
     | 
| 
      
 148 
     | 
    
         
            +
              padding: 0; }
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            legend {
         
     | 
| 
      
 151 
     | 
    
         
            +
              border: 0;
         
     | 
| 
      
 152 
     | 
    
         
            +
              padding: 0; }
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
            button, input, select, textarea {
         
     | 
| 
      
 155 
     | 
    
         
            +
              font-family: inherit;
         
     | 
| 
      
 156 
     | 
    
         
            +
              font-size: 100%;
         
     | 
| 
      
 157 
     | 
    
         
            +
              margin: 0; }
         
     | 
| 
      
 158 
     | 
    
         
            +
             
     | 
| 
      
 159 
     | 
    
         
            +
            button, input {
         
     | 
| 
      
 160 
     | 
    
         
            +
              line-height: normal; }
         
     | 
| 
      
 161 
     | 
    
         
            +
             
     | 
| 
      
 162 
     | 
    
         
            +
            button, select {
         
     | 
| 
      
 163 
     | 
    
         
            +
              text-transform: none; }
         
     | 
| 
      
 164 
     | 
    
         
            +
             
     | 
| 
      
 165 
     | 
    
         
            +
            button, html input[type="button"], input[type="reset"], input[type="submit"] {
         
     | 
| 
      
 166 
     | 
    
         
            +
              -webkit-appearance: button;
         
     | 
| 
      
 167 
     | 
    
         
            +
              cursor: pointer; }
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
            button[disabled], html input[disabled] {
         
     | 
| 
      
 170 
     | 
    
         
            +
              cursor: default; }
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            input[type="checkbox"], input[type="radio"] {
         
     | 
| 
      
 173 
     | 
    
         
            +
              box-sizing: border-box;
         
     | 
| 
      
 174 
     | 
    
         
            +
              padding: 0; }
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            input[type="search"] {
         
     | 
| 
      
 177 
     | 
    
         
            +
              -webkit-appearance: textfield;
         
     | 
| 
      
 178 
     | 
    
         
            +
              -moz-box-sizing: content-box;
         
     | 
| 
      
 179 
     | 
    
         
            +
              -webkit-box-sizing: content-box;
         
     | 
| 
      
 180 
     | 
    
         
            +
              box-sizing: content-box; }
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
            input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
         
     | 
| 
      
 183 
     | 
    
         
            +
              -webkit-appearance: none; }
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
            button::-moz-focus-inner, input::-moz-focus-inner {
         
     | 
| 
      
 186 
     | 
    
         
            +
              border: 0;
         
     | 
| 
      
 187 
     | 
    
         
            +
              padding: 0; }
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
            textarea {
         
     | 
| 
      
 190 
     | 
    
         
            +
              overflow: auto;
         
     | 
| 
      
 191 
     | 
    
         
            +
              vertical-align: top;
         
     | 
| 
      
 192 
     | 
    
         
            +
              resize: vertical;
         
     | 
| 
      
 193 
     | 
    
         
            +
              height: auto;
         
     | 
| 
      
 194 
     | 
    
         
            +
              min-height: 50px; }
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            table {
         
     | 
| 
      
 197 
     | 
    
         
            +
              border-collapse: collapse;
         
     | 
| 
      
 198 
     | 
    
         
            +
              border-spacing: 0; }
         
     | 
| 
      
 199 
     | 
    
         
            +
             
     | 
| 
      
 200 
     | 
    
         
            +
            /* Miscellaneous useful HTML classes */
         
     | 
| 
      
 201 
     | 
    
         
            +
            .left {
         
     | 
| 
      
 202 
     | 
    
         
            +
              float: left !important; }
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
            .right {
         
     | 
| 
      
 205 
     | 
    
         
            +
              float: right !important; }
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
            .text-left {
         
     | 
| 
      
 208 
     | 
    
         
            +
              text-align: left !important; }
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
            .text-right {
         
     | 
| 
      
 211 
     | 
    
         
            +
              text-align: right !important; }
         
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
            .text-center {
         
     | 
| 
      
 214 
     | 
    
         
            +
              text-align: center !important; }
         
     | 
| 
      
 215 
     | 
    
         
            +
             
     | 
| 
      
 216 
     | 
    
         
            +
            .text-justify {
         
     | 
| 
      
 217 
     | 
    
         
            +
              text-align: justify !important; }
         
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
            .hide {
         
     | 
| 
      
 220 
     | 
    
         
            +
              display: none !important;
         
     | 
| 
      
 221 
     | 
    
         
            +
              visibility: hidden !important; }
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
            .visual-hide {
         
     | 
| 
      
 224 
     | 
    
         
            +
              border: 0 !important;
         
     | 
| 
      
 225 
     | 
    
         
            +
              clip: rect(0 0 0 0) !important;
         
     | 
| 
      
 226 
     | 
    
         
            +
              height: 1px !important;
         
     | 
| 
      
 227 
     | 
    
         
            +
              margin: -1px !important;
         
     | 
| 
      
 228 
     | 
    
         
            +
              overflow: hidden !important;
         
     | 
| 
      
 229 
     | 
    
         
            +
              padding: 0 !important;
         
     | 
| 
      
 230 
     | 
    
         
            +
              position: absolute !important;
         
     | 
| 
      
 231 
     | 
    
         
            +
              width: 1px !important; }
         
     | 
| 
      
 232 
     | 
    
         
            +
             
     | 
| 
      
 233 
     | 
    
         
            +
            .bold, b, strong {
         
     | 
| 
      
 234 
     | 
    
         
            +
              font-weight: 700 !important; }
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
            .italic, em {
         
     | 
| 
      
 237 
     | 
    
         
            +
              font-style: italic !important; }
         
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
      
 239 
     | 
    
         
            +
            .antialiased {
         
     | 
| 
      
 240 
     | 
    
         
            +
              -webkit-font-smoothing: antialiased; }
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
            /* -----------------
         
     | 
| 
      
 243 
     | 
    
         
            +
              EDGE Typography
         
     | 
| 
      
 244 
     | 
    
         
            +
            ----------------- */
         
     | 
| 
      
 245 
     | 
    
         
            +
            body {
         
     | 
| 
      
 246 
     | 
    
         
            +
              position: relative;
         
     | 
| 
      
 247 
     | 
    
         
            +
              background: white;
         
     | 
| 
      
 248 
     | 
    
         
            +
              font-size: 16px;
         
     | 
| 
      
 249 
     | 
    
         
            +
              font-family: "Helvetica", Helvetica, Arial, "sans-serif";
         
     | 
| 
      
 250 
     | 
    
         
            +
              font-weight: 400;
         
     | 
| 
      
 251 
     | 
    
         
            +
              line-height: 1.5;
         
     | 
| 
      
 252 
     | 
    
         
            +
              color: #222222; }
         
     | 
| 
      
 253 
     | 
    
         
            +
             
     | 
| 
      
 254 
     | 
    
         
            +
            .baseline {
         
     | 
| 
      
 255 
     | 
    
         
            +
              background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0.3) 100%);
         
     | 
| 
      
 256 
     | 
    
         
            +
              background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0.3) 100%);
         
     | 
| 
      
 257 
     | 
    
         
            +
              background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0.3) 100%);
         
     | 
| 
      
 258 
     | 
    
         
            +
              background-size: 100% 1.5em; }
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
            h1, h2, h3, h4, h5, h6 {
         
     | 
| 
      
 261 
     | 
    
         
            +
              color: #222222;
         
     | 
| 
      
 262 
     | 
    
         
            +
              font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, "sans-serif";
         
     | 
| 
      
 263 
     | 
    
         
            +
              font-weight: 700; }
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
            a {
         
     | 
| 
      
 266 
     | 
    
         
            +
              color: #3a2c3d; }
         
     | 
| 
      
 267 
     | 
    
         
            +
             
     | 
| 
      
 268 
     | 
    
         
            +
            h1 {
         
     | 
| 
      
 269 
     | 
    
         
            +
              font-size: 2.75em; }
         
     | 
| 
      
 270 
     | 
    
         
            +
             
     | 
| 
      
 271 
     | 
    
         
            +
            h2 {
         
     | 
| 
      
 272 
     | 
    
         
            +
              font-size: 2.25em; }
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
            h3 {
         
     | 
| 
      
 275 
     | 
    
         
            +
              font-size: 1.75em; }
         
     | 
| 
      
 276 
     | 
    
         
            +
             
     | 
| 
      
 277 
     | 
    
         
            +
            h4 {
         
     | 
| 
      
 278 
     | 
    
         
            +
              font-size: 1.375em; }
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
            h5 {
         
     | 
| 
      
 281 
     | 
    
         
            +
              font-size: 1.125em; }
         
     | 
| 
      
 282 
     | 
    
         
            +
             
     | 
| 
      
 283 
     | 
    
         
            +
            h6 {
         
     | 
| 
      
 284 
     | 
    
         
            +
              font-size: 1em; }
         
     | 
| 
      
 285 
     | 
    
         
            +
             
     | 
| 
      
 286 
     | 
    
         
            +
            p {
         
     | 
| 
      
 287 
     | 
    
         
            +
              margin-top: 0;
         
     | 
| 
      
 288 
     | 
    
         
            +
              margin-bottom: 1em; }
         
     | 
| 
      
 289 
     | 
    
         
            +
              p:last-child {
         
     | 
| 
      
 290 
     | 
    
         
            +
                margin-bottom: 0; }
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
            .inline-list {
         
     | 
| 
      
 293 
     | 
    
         
            +
              zoom: 1; }
         
     | 
| 
      
 294 
     | 
    
         
            +
              .inline-list:before, .inline-list:after {
         
     | 
| 
      
 295 
     | 
    
         
            +
                content: " ";
         
     | 
| 
      
 296 
     | 
    
         
            +
                display: table; }
         
     | 
| 
      
 297 
     | 
    
         
            +
              .inline-list:after {
         
     | 
| 
      
 298 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 299 
     | 
    
         
            +
              .inline-list > li {
         
     | 
| 
      
 300 
     | 
    
         
            +
                display: inline-block;
         
     | 
| 
      
 301 
     | 
    
         
            +
                float: left;
         
     | 
| 
      
 302 
     | 
    
         
            +
                vertical-align: top; }
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
      
 304 
     | 
    
         
            +
            ul {
         
     | 
| 
      
 305 
     | 
    
         
            +
              list-style-type: disc;
         
     | 
| 
      
 306 
     | 
    
         
            +
              padding-left: 20px; }
         
     | 
| 
      
 307 
     | 
    
         
            +
              ul[class] {
         
     | 
| 
      
 308 
     | 
    
         
            +
                list-style-type: none;
         
     | 
| 
      
 309 
     | 
    
         
            +
                padding-left: 0; }
         
     | 
| 
      
 310 
     | 
    
         
            +
              ul ul {
         
     | 
| 
      
 311 
     | 
    
         
            +
                list-style-type: circle; }
         
     | 
| 
      
 312 
     | 
    
         
            +
             
     | 
| 
      
 313 
     | 
    
         
            +
            ol {
         
     | 
| 
      
 314 
     | 
    
         
            +
              list-style-type: decimal;
         
     | 
| 
      
 315 
     | 
    
         
            +
              padding-left: 25px; }
         
     | 
| 
      
 316 
     | 
    
         
            +
              ol ol {
         
     | 
| 
      
 317 
     | 
    
         
            +
                list-style-type: lower-alpha; }
         
     | 
| 
      
 318 
     | 
    
         
            +
             
     | 
| 
      
 319 
     | 
    
         
            +
            blockquote {
         
     | 
| 
      
 320 
     | 
    
         
            +
              margin-bottom: 1em; }
         
     | 
| 
      
 321 
     | 
    
         
            +
              blockquote cite {
         
     | 
| 
      
 322 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 323 
     | 
    
         
            +
                font-style: italic; }
         
     | 
| 
      
 324 
     | 
    
         
            +
             
     | 
| 
      
 325 
     | 
    
         
            +
            /* ------------
         
     | 
| 
      
 326 
     | 
    
         
            +
              EDGE Grid
         
     | 
| 
      
 327 
     | 
    
         
            +
            ------------ */
         
     | 
| 
      
 328 
     | 
    
         
            +
            .row {
         
     | 
| 
      
 329 
     | 
    
         
            +
              margin: 0 auto;
         
     | 
| 
      
 330 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 331 
     | 
    
         
            +
              max-width: 1150px;
         
     | 
| 
      
 332 
     | 
    
         
            +
              zoom: 1; }
         
     | 
| 
      
 333 
     | 
    
         
            +
              .row:before, .row:after {
         
     | 
| 
      
 334 
     | 
    
         
            +
                content: " ";
         
     | 
| 
      
 335 
     | 
    
         
            +
                display: table; }
         
     | 
| 
      
 336 
     | 
    
         
            +
              .row:after {
         
     | 
| 
      
 337 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 338 
     | 
    
         
            +
              .row.collapse {
         
     | 
| 
      
 339 
     | 
    
         
            +
                margin: 0 auto;
         
     | 
| 
      
 340 
     | 
    
         
            +
                width: 100%;
         
     | 
| 
      
 341 
     | 
    
         
            +
                max-width: 1140px; }
         
     | 
| 
      
 342 
     | 
    
         
            +
                .row.collapse .column,
         
     | 
| 
      
 343 
     | 
    
         
            +
                .row.collapse .columns {
         
     | 
| 
      
 344 
     | 
    
         
            +
                  padding-right: 0;
         
     | 
| 
      
 345 
     | 
    
         
            +
                  padding-left: 0; }
         
     | 
| 
      
 346 
     | 
    
         
            +
              .row .row {
         
     | 
| 
      
 347 
     | 
    
         
            +
                margin-right: -5px;
         
     | 
| 
      
 348 
     | 
    
         
            +
                margin-left: -5px;
         
     | 
| 
      
 349 
     | 
    
         
            +
                width: auto;
         
     | 
| 
      
 350 
     | 
    
         
            +
                max-width: none; }
         
     | 
| 
      
 351 
     | 
    
         
            +
                .row .row.collapse {
         
     | 
| 
      
 352 
     | 
    
         
            +
                  margin: 0;
         
     | 
| 
      
 353 
     | 
    
         
            +
                  padding-right: 0;
         
     | 
| 
      
 354 
     | 
    
         
            +
                  padding-left: 0;
         
     | 
| 
      
 355 
     | 
    
         
            +
                  width: auto;
         
     | 
| 
      
 356 
     | 
    
         
            +
                  max-width: none; }
         
     | 
| 
      
 357 
     | 
    
         
            +
             
     | 
| 
      
 358 
     | 
    
         
            +
            .column,
         
     | 
| 
      
 359 
     | 
    
         
            +
            .columns {
         
     | 
| 
      
 360 
     | 
    
         
            +
              position: relative;
         
     | 
| 
      
 361 
     | 
    
         
            +
              float: left;
         
     | 
| 
      
 362 
     | 
    
         
            +
              padding-right: 5px;
         
     | 
| 
      
 363 
     | 
    
         
            +
              padding-left: 5px;
         
     | 
| 
      
 364 
     | 
    
         
            +
              width: 100%; }
         
     | 
| 
      
 365 
     | 
    
         
            +
             
     | 
| 
      
 366 
     | 
    
         
            +
            .large-1 {
         
     | 
| 
      
 367 
     | 
    
         
            +
              width: 8.33333%; }
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
            .large-2 {
         
     | 
| 
      
 370 
     | 
    
         
            +
              width: 16.66667%; }
         
     | 
| 
      
 371 
     | 
    
         
            +
             
     | 
| 
      
 372 
     | 
    
         
            +
            .large-3 {
         
     | 
| 
      
 373 
     | 
    
         
            +
              width: 25%; }
         
     | 
| 
      
 374 
     | 
    
         
            +
             
     | 
| 
      
 375 
     | 
    
         
            +
            .large-4 {
         
     | 
| 
      
 376 
     | 
    
         
            +
              width: 33.33333%; }
         
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
            .large-5 {
         
     | 
| 
      
 379 
     | 
    
         
            +
              width: 41.66667%; }
         
     | 
| 
      
 380 
     | 
    
         
            +
             
     | 
| 
      
 381 
     | 
    
         
            +
            .large-6 {
         
     | 
| 
      
 382 
     | 
    
         
            +
              width: 50%; }
         
     | 
| 
      
 383 
     | 
    
         
            +
             
     | 
| 
      
 384 
     | 
    
         
            +
            .large-7 {
         
     | 
| 
      
 385 
     | 
    
         
            +
              width: 58.33333%; }
         
     | 
| 
      
 386 
     | 
    
         
            +
             
     | 
| 
      
 387 
     | 
    
         
            +
            .large-8 {
         
     | 
| 
      
 388 
     | 
    
         
            +
              width: 66.66667%; }
         
     | 
| 
      
 389 
     | 
    
         
            +
             
     | 
| 
      
 390 
     | 
    
         
            +
            .large-9 {
         
     | 
| 
      
 391 
     | 
    
         
            +
              width: 75%; }
         
     | 
| 
      
 392 
     | 
    
         
            +
             
     | 
| 
      
 393 
     | 
    
         
            +
            .large-10 {
         
     | 
| 
      
 394 
     | 
    
         
            +
              width: 83.33333%; }
         
     | 
| 
      
 395 
     | 
    
         
            +
             
     | 
| 
      
 396 
     | 
    
         
            +
            .large-11 {
         
     | 
| 
      
 397 
     | 
    
         
            +
              width: 91.66667%; }
         
     | 
| 
      
 398 
     | 
    
         
            +
             
     | 
| 
      
 399 
     | 
    
         
            +
            .large-12 {
         
     | 
| 
      
 400 
     | 
    
         
            +
              width: 100%; }
         
     | 
| 
      
 401 
     | 
    
         
            +
             
     | 
| 
      
 402 
     | 
    
         
            +
            .column.large-centered,
         
     | 
| 
      
 403 
     | 
    
         
            +
            .columns.large-centered {
         
     | 
| 
      
 404 
     | 
    
         
            +
              display: block;
         
     | 
| 
      
 405 
     | 
    
         
            +
              float: none;
         
     | 
| 
      
 406 
     | 
    
         
            +
              margin-right: auto !important;
         
     | 
| 
      
 407 
     | 
    
         
            +
              margin-left: auto !important; }
         
     | 
| 
      
 408 
     | 
    
         
            +
             
     | 
| 
      
 409 
     | 
    
         
            +
            @media only screen and (min-width: 461px) {
         
     | 
| 
      
 410 
     | 
    
         
            +
              .large-offset-1 {
         
     | 
| 
      
 411 
     | 
    
         
            +
                margin-left: 8.33333%; }
         
     | 
| 
      
 412 
     | 
    
         
            +
             
     | 
| 
      
 413 
     | 
    
         
            +
              .push-1 {
         
     | 
| 
      
 414 
     | 
    
         
            +
                left: 8.33333%;
         
     | 
| 
      
 415 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 416 
     | 
    
         
            +
             
     | 
| 
      
 417 
     | 
    
         
            +
              .pull-1 {
         
     | 
| 
      
 418 
     | 
    
         
            +
                right: 8.33333%;
         
     | 
| 
      
 419 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 420 
     | 
    
         
            +
             
     | 
| 
      
 421 
     | 
    
         
            +
              .large-offset-2 {
         
     | 
| 
      
 422 
     | 
    
         
            +
                margin-left: 16.66667%; }
         
     | 
| 
      
 423 
     | 
    
         
            +
             
     | 
| 
      
 424 
     | 
    
         
            +
              .push-2 {
         
     | 
| 
      
 425 
     | 
    
         
            +
                left: 16.66667%;
         
     | 
| 
      
 426 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 427 
     | 
    
         
            +
             
     | 
| 
      
 428 
     | 
    
         
            +
              .pull-2 {
         
     | 
| 
      
 429 
     | 
    
         
            +
                right: 16.66667%;
         
     | 
| 
      
 430 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 431 
     | 
    
         
            +
             
     | 
| 
      
 432 
     | 
    
         
            +
              .large-offset-3 {
         
     | 
| 
      
 433 
     | 
    
         
            +
                margin-left: 25%; }
         
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
              .push-3 {
         
     | 
| 
      
 436 
     | 
    
         
            +
                left: 25%;
         
     | 
| 
      
 437 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 438 
     | 
    
         
            +
             
     | 
| 
      
 439 
     | 
    
         
            +
              .pull-3 {
         
     | 
| 
      
 440 
     | 
    
         
            +
                right: 25%;
         
     | 
| 
      
 441 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 442 
     | 
    
         
            +
             
     | 
| 
      
 443 
     | 
    
         
            +
              .large-offset-4 {
         
     | 
| 
      
 444 
     | 
    
         
            +
                margin-left: 33.33333%; }
         
     | 
| 
      
 445 
     | 
    
         
            +
             
     | 
| 
      
 446 
     | 
    
         
            +
              .push-4 {
         
     | 
| 
      
 447 
     | 
    
         
            +
                left: 33.33333%;
         
     | 
| 
      
 448 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 449 
     | 
    
         
            +
             
     | 
| 
      
 450 
     | 
    
         
            +
              .pull-4 {
         
     | 
| 
      
 451 
     | 
    
         
            +
                right: 33.33333%;
         
     | 
| 
      
 452 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 453 
     | 
    
         
            +
             
     | 
| 
      
 454 
     | 
    
         
            +
              .large-offset-5 {
         
     | 
| 
      
 455 
     | 
    
         
            +
                margin-left: 41.66667%; }
         
     | 
| 
      
 456 
     | 
    
         
            +
             
     | 
| 
      
 457 
     | 
    
         
            +
              .push-5 {
         
     | 
| 
      
 458 
     | 
    
         
            +
                left: 41.66667%;
         
     | 
| 
      
 459 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 460 
     | 
    
         
            +
             
     | 
| 
      
 461 
     | 
    
         
            +
              .pull-5 {
         
     | 
| 
      
 462 
     | 
    
         
            +
                right: 41.66667%;
         
     | 
| 
      
 463 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 464 
     | 
    
         
            +
             
     | 
| 
      
 465 
     | 
    
         
            +
              .large-offset-6 {
         
     | 
| 
      
 466 
     | 
    
         
            +
                margin-left: 50%; }
         
     | 
| 
      
 467 
     | 
    
         
            +
             
     | 
| 
      
 468 
     | 
    
         
            +
              .push-6 {
         
     | 
| 
      
 469 
     | 
    
         
            +
                left: 50%;
         
     | 
| 
      
 470 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
              .pull-6 {
         
     | 
| 
      
 473 
     | 
    
         
            +
                right: 50%;
         
     | 
| 
      
 474 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 475 
     | 
    
         
            +
             
     | 
| 
      
 476 
     | 
    
         
            +
              .large-offset-7 {
         
     | 
| 
      
 477 
     | 
    
         
            +
                margin-left: 58.33333%; }
         
     | 
| 
      
 478 
     | 
    
         
            +
             
     | 
| 
      
 479 
     | 
    
         
            +
              .push-7 {
         
     | 
| 
      
 480 
     | 
    
         
            +
                left: 58.33333%;
         
     | 
| 
      
 481 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 482 
     | 
    
         
            +
             
     | 
| 
      
 483 
     | 
    
         
            +
              .pull-7 {
         
     | 
| 
      
 484 
     | 
    
         
            +
                right: 58.33333%;
         
     | 
| 
      
 485 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 486 
     | 
    
         
            +
             
     | 
| 
      
 487 
     | 
    
         
            +
              .large-offset-8 {
         
     | 
| 
      
 488 
     | 
    
         
            +
                margin-left: 66.66667%; }
         
     | 
| 
      
 489 
     | 
    
         
            +
             
     | 
| 
      
 490 
     | 
    
         
            +
              .push-8 {
         
     | 
| 
      
 491 
     | 
    
         
            +
                left: 66.66667%;
         
     | 
| 
      
 492 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 493 
     | 
    
         
            +
             
     | 
| 
      
 494 
     | 
    
         
            +
              .pull-8 {
         
     | 
| 
      
 495 
     | 
    
         
            +
                right: 66.66667%;
         
     | 
| 
      
 496 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 497 
     | 
    
         
            +
             
     | 
| 
      
 498 
     | 
    
         
            +
              .large-offset-9 {
         
     | 
| 
      
 499 
     | 
    
         
            +
                margin-left: 75%; }
         
     | 
| 
      
 500 
     | 
    
         
            +
             
     | 
| 
      
 501 
     | 
    
         
            +
              .push-9 {
         
     | 
| 
      
 502 
     | 
    
         
            +
                left: 75%;
         
     | 
| 
      
 503 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 504 
     | 
    
         
            +
             
     | 
| 
      
 505 
     | 
    
         
            +
              .pull-9 {
         
     | 
| 
      
 506 
     | 
    
         
            +
                right: 75%;
         
     | 
| 
      
 507 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 508 
     | 
    
         
            +
             
     | 
| 
      
 509 
     | 
    
         
            +
              .large-offset-10 {
         
     | 
| 
      
 510 
     | 
    
         
            +
                margin-left: 83.33333%; }
         
     | 
| 
      
 511 
     | 
    
         
            +
             
     | 
| 
      
 512 
     | 
    
         
            +
              .push-10 {
         
     | 
| 
      
 513 
     | 
    
         
            +
                left: 83.33333%;
         
     | 
| 
      
 514 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 515 
     | 
    
         
            +
             
     | 
| 
      
 516 
     | 
    
         
            +
              .pull-10 {
         
     | 
| 
      
 517 
     | 
    
         
            +
                right: 83.33333%;
         
     | 
| 
      
 518 
     | 
    
         
            +
                left: auto; }
         
     | 
| 
      
 519 
     | 
    
         
            +
             
     | 
| 
      
 520 
     | 
    
         
            +
              .large-offset-11 {
         
     | 
| 
      
 521 
     | 
    
         
            +
                margin-left: 91.66667%; }
         
     | 
| 
      
 522 
     | 
    
         
            +
             
     | 
| 
      
 523 
     | 
    
         
            +
              .push-11 {
         
     | 
| 
      
 524 
     | 
    
         
            +
                left: 91.66667%;
         
     | 
| 
      
 525 
     | 
    
         
            +
                right: auto; }
         
     | 
| 
      
 526 
     | 
    
         
            +
             
     | 
| 
      
 527 
     | 
    
         
            +
              .pull-11 {
         
     | 
| 
      
 528 
     | 
    
         
            +
                right: 91.66667%;
         
     | 
| 
      
 529 
     | 
    
         
            +
                left: auto; } }
         
     | 
| 
      
 530 
     | 
    
         
            +
            @media only screen and (max-width: 460px) {
         
     | 
| 
      
 531 
     | 
    
         
            +
              .column,
         
     | 
| 
      
 532 
     | 
    
         
            +
              .columns {
         
     | 
| 
      
 533 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 534 
     | 
    
         
            +
             
     | 
| 
      
 535 
     | 
    
         
            +
              .small-1 {
         
     | 
| 
      
 536 
     | 
    
         
            +
                width: 8.33333%; }
         
     | 
| 
      
 537 
     | 
    
         
            +
             
     | 
| 
      
 538 
     | 
    
         
            +
              .small-2 {
         
     | 
| 
      
 539 
     | 
    
         
            +
                width: 16.66667%; }
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
              .small-3 {
         
     | 
| 
      
 542 
     | 
    
         
            +
                width: 25%; }
         
     | 
| 
      
 543 
     | 
    
         
            +
             
     | 
| 
      
 544 
     | 
    
         
            +
              .small-4 {
         
     | 
| 
      
 545 
     | 
    
         
            +
                width: 33.33333%; }
         
     | 
| 
      
 546 
     | 
    
         
            +
             
     | 
| 
      
 547 
     | 
    
         
            +
              .small-5 {
         
     | 
| 
      
 548 
     | 
    
         
            +
                width: 41.66667%; }
         
     | 
| 
      
 549 
     | 
    
         
            +
             
     | 
| 
      
 550 
     | 
    
         
            +
              .small-6 {
         
     | 
| 
      
 551 
     | 
    
         
            +
                width: 50%; }
         
     | 
| 
      
 552 
     | 
    
         
            +
             
     | 
| 
      
 553 
     | 
    
         
            +
              .small-7 {
         
     | 
| 
      
 554 
     | 
    
         
            +
                width: 58.33333%; }
         
     | 
| 
      
 555 
     | 
    
         
            +
             
     | 
| 
      
 556 
     | 
    
         
            +
              .small-8 {
         
     | 
| 
      
 557 
     | 
    
         
            +
                width: 66.66667%; }
         
     | 
| 
      
 558 
     | 
    
         
            +
             
     | 
| 
      
 559 
     | 
    
         
            +
              .small-9 {
         
     | 
| 
      
 560 
     | 
    
         
            +
                width: 75%; }
         
     | 
| 
      
 561 
     | 
    
         
            +
             
     | 
| 
      
 562 
     | 
    
         
            +
              .small-10 {
         
     | 
| 
      
 563 
     | 
    
         
            +
                width: 83.33333%; }
         
     | 
| 
      
 564 
     | 
    
         
            +
             
     | 
| 
      
 565 
     | 
    
         
            +
              .small-11 {
         
     | 
| 
      
 566 
     | 
    
         
            +
                width: 91.66667%; }
         
     | 
| 
      
 567 
     | 
    
         
            +
             
     | 
| 
      
 568 
     | 
    
         
            +
              .small-12 {
         
     | 
| 
      
 569 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 570 
     | 
    
         
            +
             
     | 
| 
      
 571 
     | 
    
         
            +
              .small-offset-1 {
         
     | 
| 
      
 572 
     | 
    
         
            +
                margin-left: 8.33333%; }
         
     | 
| 
      
 573 
     | 
    
         
            +
             
     | 
| 
      
 574 
     | 
    
         
            +
              .small-offset-2 {
         
     | 
| 
      
 575 
     | 
    
         
            +
                margin-left: 16.66667%; }
         
     | 
| 
      
 576 
     | 
    
         
            +
             
     | 
| 
      
 577 
     | 
    
         
            +
              .small-offset-3 {
         
     | 
| 
      
 578 
     | 
    
         
            +
                margin-left: 25%; }
         
     | 
| 
      
 579 
     | 
    
         
            +
             
     | 
| 
      
 580 
     | 
    
         
            +
              .small-offset-4 {
         
     | 
| 
      
 581 
     | 
    
         
            +
                margin-left: 33.33333%; }
         
     | 
| 
      
 582 
     | 
    
         
            +
             
     | 
| 
      
 583 
     | 
    
         
            +
              .small-offset-5 {
         
     | 
| 
      
 584 
     | 
    
         
            +
                margin-left: 41.66667%; }
         
     | 
| 
      
 585 
     | 
    
         
            +
             
     | 
| 
      
 586 
     | 
    
         
            +
              .small-offset-6 {
         
     | 
| 
      
 587 
     | 
    
         
            +
                margin-left: 50%; }
         
     | 
| 
      
 588 
     | 
    
         
            +
             
     | 
| 
      
 589 
     | 
    
         
            +
              .small-offset-7 {
         
     | 
| 
      
 590 
     | 
    
         
            +
                margin-left: 58.33333%; }
         
     | 
| 
      
 591 
     | 
    
         
            +
             
     | 
| 
      
 592 
     | 
    
         
            +
              .small-offset-8 {
         
     | 
| 
      
 593 
     | 
    
         
            +
                margin-left: 66.66667%; }
         
     | 
| 
      
 594 
     | 
    
         
            +
             
     | 
| 
      
 595 
     | 
    
         
            +
              .small-offset-9 {
         
     | 
| 
      
 596 
     | 
    
         
            +
                margin-left: 75%; }
         
     | 
| 
      
 597 
     | 
    
         
            +
             
     | 
| 
      
 598 
     | 
    
         
            +
              .small-offset-10 {
         
     | 
| 
      
 599 
     | 
    
         
            +
                margin-left: 83.33333%; }
         
     | 
| 
      
 600 
     | 
    
         
            +
             
     | 
| 
      
 601 
     | 
    
         
            +
              .column.small-centered,
         
     | 
| 
      
 602 
     | 
    
         
            +
              .columns.small-centered {
         
     | 
| 
      
 603 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 604 
     | 
    
         
            +
                float: none;
         
     | 
| 
      
 605 
     | 
    
         
            +
                margin-right: auto !important;
         
     | 
| 
      
 606 
     | 
    
         
            +
                margin-left: auto !important; } }
         
     | 
| 
      
 607 
     | 
    
         
            +
            /* -----------------
         
     | 
| 
      
 608 
     | 
    
         
            +
              EDGE Block Grid
         
     | 
| 
      
 609 
     | 
    
         
            +
            ----------------- */
         
     | 
| 
      
 610 
     | 
    
         
            +
            [class*="-tile-"] {
         
     | 
| 
      
 611 
     | 
    
         
            +
              display: block;
         
     | 
| 
      
 612 
     | 
    
         
            +
              margin-right: -5px;
         
     | 
| 
      
 613 
     | 
    
         
            +
              margin-left: -5px;
         
     | 
| 
      
 614 
     | 
    
         
            +
              zoom: 1; }
         
     | 
| 
      
 615 
     | 
    
         
            +
              [class*="-tile-"]:before, [class*="-tile-"]:after {
         
     | 
| 
      
 616 
     | 
    
         
            +
                content: " ";
         
     | 
| 
      
 617 
     | 
    
         
            +
                display: table; }
         
     | 
| 
      
 618 
     | 
    
         
            +
              [class*="-tile-"]:after {
         
     | 
| 
      
 619 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 620 
     | 
    
         
            +
              [class*="-tile-"] > li {
         
     | 
| 
      
 621 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 622 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 623 
     | 
    
         
            +
                float: left;
         
     | 
| 
      
 624 
     | 
    
         
            +
                height: auto;
         
     | 
| 
      
 625 
     | 
    
         
            +
                padding: 0 5px; }
         
     | 
| 
      
 626 
     | 
    
         
            +
              [class*="-tile-"].collapse {
         
     | 
| 
      
 627 
     | 
    
         
            +
                display: block;
         
     | 
| 
      
 628 
     | 
    
         
            +
                margin-right: 0;
         
     | 
| 
      
 629 
     | 
    
         
            +
                margin-left: 0;
         
     | 
| 
      
 630 
     | 
    
         
            +
                zoom: 1; }
         
     | 
| 
      
 631 
     | 
    
         
            +
                [class*="-tile-"].collapse:before, [class*="-tile-"].collapse:after {
         
     | 
| 
      
 632 
     | 
    
         
            +
                  content: " ";
         
     | 
| 
      
 633 
     | 
    
         
            +
                  display: table; }
         
     | 
| 
      
 634 
     | 
    
         
            +
                [class*="-tile-"].collapse:after {
         
     | 
| 
      
 635 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 636 
     | 
    
         
            +
                [class*="-tile-"].collapse > li {
         
     | 
| 
      
 637 
     | 
    
         
            +
                  display: block;
         
     | 
| 
      
 638 
     | 
    
         
            +
                  position: relative;
         
     | 
| 
      
 639 
     | 
    
         
            +
                  float: left;
         
     | 
| 
      
 640 
     | 
    
         
            +
                  height: auto;
         
     | 
| 
      
 641 
     | 
    
         
            +
                  padding: 0; }
         
     | 
| 
      
 642 
     | 
    
         
            +
             
     | 
| 
      
 643 
     | 
    
         
            +
            .large-tile-1 > li {
         
     | 
| 
      
 644 
     | 
    
         
            +
              width: 100%; }
         
     | 
| 
      
 645 
     | 
    
         
            +
              .large-tile-1 > li:nth-of-type(1n+1) {
         
     | 
| 
      
 646 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
            .large-tile-2 > li {
         
     | 
| 
      
 649 
     | 
    
         
            +
              width: 50%; }
         
     | 
| 
      
 650 
     | 
    
         
            +
              .large-tile-2 > li:nth-of-type(2n+1) {
         
     | 
| 
      
 651 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 652 
     | 
    
         
            +
             
     | 
| 
      
 653 
     | 
    
         
            +
            .large-tile-3 > li {
         
     | 
| 
      
 654 
     | 
    
         
            +
              width: 33.33333%; }
         
     | 
| 
      
 655 
     | 
    
         
            +
              .large-tile-3 > li:nth-of-type(3n+1) {
         
     | 
| 
      
 656 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 657 
     | 
    
         
            +
             
     | 
| 
      
 658 
     | 
    
         
            +
            .large-tile-4 > li {
         
     | 
| 
      
 659 
     | 
    
         
            +
              width: 25%; }
         
     | 
| 
      
 660 
     | 
    
         
            +
              .large-tile-4 > li:nth-of-type(4n+1) {
         
     | 
| 
      
 661 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 662 
     | 
    
         
            +
             
     | 
| 
      
 663 
     | 
    
         
            +
            .large-tile-5 > li {
         
     | 
| 
      
 664 
     | 
    
         
            +
              width: 20%; }
         
     | 
| 
      
 665 
     | 
    
         
            +
              .large-tile-5 > li:nth-of-type(5n+1) {
         
     | 
| 
      
 666 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 667 
     | 
    
         
            +
             
     | 
| 
      
 668 
     | 
    
         
            +
            .large-tile-6 > li {
         
     | 
| 
      
 669 
     | 
    
         
            +
              width: 16.66667%; }
         
     | 
| 
      
 670 
     | 
    
         
            +
              .large-tile-6 > li:nth-of-type(6n+1) {
         
     | 
| 
      
 671 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 672 
     | 
    
         
            +
             
     | 
| 
      
 673 
     | 
    
         
            +
            .large-tile-7 > li {
         
     | 
| 
      
 674 
     | 
    
         
            +
              width: 14.28571%; }
         
     | 
| 
      
 675 
     | 
    
         
            +
              .large-tile-7 > li:nth-of-type(7n+1) {
         
     | 
| 
      
 676 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 677 
     | 
    
         
            +
             
     | 
| 
      
 678 
     | 
    
         
            +
            .large-tile-8 > li {
         
     | 
| 
      
 679 
     | 
    
         
            +
              width: 12.5%; }
         
     | 
| 
      
 680 
     | 
    
         
            +
              .large-tile-8 > li:nth-of-type(8n+1) {
         
     | 
| 
      
 681 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 682 
     | 
    
         
            +
             
     | 
| 
      
 683 
     | 
    
         
            +
            .large-tile-9 > li {
         
     | 
| 
      
 684 
     | 
    
         
            +
              width: 11.11111%; }
         
     | 
| 
      
 685 
     | 
    
         
            +
              .large-tile-9 > li:nth-of-type(9n+1) {
         
     | 
| 
      
 686 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 687 
     | 
    
         
            +
             
     | 
| 
      
 688 
     | 
    
         
            +
            .large-tile-10 > li {
         
     | 
| 
      
 689 
     | 
    
         
            +
              width: 10%; }
         
     | 
| 
      
 690 
     | 
    
         
            +
              .large-tile-10 > li:nth-of-type(10n+1) {
         
     | 
| 
      
 691 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 692 
     | 
    
         
            +
             
     | 
| 
      
 693 
     | 
    
         
            +
            .large-tile-11 > li {
         
     | 
| 
      
 694 
     | 
    
         
            +
              width: 9.09091%; }
         
     | 
| 
      
 695 
     | 
    
         
            +
              .large-tile-11 > li:nth-of-type(11n+1) {
         
     | 
| 
      
 696 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 697 
     | 
    
         
            +
             
     | 
| 
      
 698 
     | 
    
         
            +
            .large-tile-12 > li {
         
     | 
| 
      
 699 
     | 
    
         
            +
              width: 8.33333%; }
         
     | 
| 
      
 700 
     | 
    
         
            +
              .large-tile-12 > li:nth-of-type(12n+1) {
         
     | 
| 
      
 701 
     | 
    
         
            +
                clear: both; }
         
     | 
| 
      
 702 
     | 
    
         
            +
             
     | 
| 
      
 703 
     | 
    
         
            +
            @media only screen and (max-width: 460px) {
         
     | 
| 
      
 704 
     | 
    
         
            +
              [class*="large-tile-"] > li {
         
     | 
| 
      
 705 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 706 
     | 
    
         
            +
             
     | 
| 
      
 707 
     | 
    
         
            +
              [class*="small-tile-"] > li:nth-child(n) {
         
     | 
| 
      
 708 
     | 
    
         
            +
                clear: none; }
         
     | 
| 
      
 709 
     | 
    
         
            +
             
     | 
| 
      
 710 
     | 
    
         
            +
              .small-tile-1 > li {
         
     | 
| 
      
 711 
     | 
    
         
            +
                width: 100%; }
         
     | 
| 
      
 712 
     | 
    
         
            +
                .small-tile-1 > li:nth-of-type(1n+1) {
         
     | 
| 
      
 713 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 714 
     | 
    
         
            +
             
     | 
| 
      
 715 
     | 
    
         
            +
              .small-tile-2 > li {
         
     | 
| 
      
 716 
     | 
    
         
            +
                width: 50%; }
         
     | 
| 
      
 717 
     | 
    
         
            +
                .small-tile-2 > li:nth-of-type(2n+1) {
         
     | 
| 
      
 718 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 719 
     | 
    
         
            +
             
     | 
| 
      
 720 
     | 
    
         
            +
              .small-tile-3 > li {
         
     | 
| 
      
 721 
     | 
    
         
            +
                width: 33.33333%; }
         
     | 
| 
      
 722 
     | 
    
         
            +
                .small-tile-3 > li:nth-of-type(3n+1) {
         
     | 
| 
      
 723 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 724 
     | 
    
         
            +
             
     | 
| 
      
 725 
     | 
    
         
            +
              .small-tile-4 > li {
         
     | 
| 
      
 726 
     | 
    
         
            +
                width: 25%; }
         
     | 
| 
      
 727 
     | 
    
         
            +
                .small-tile-4 > li:nth-of-type(4n+1) {
         
     | 
| 
      
 728 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 729 
     | 
    
         
            +
             
     | 
| 
      
 730 
     | 
    
         
            +
              .small-tile-5 > li {
         
     | 
| 
      
 731 
     | 
    
         
            +
                width: 20%; }
         
     | 
| 
      
 732 
     | 
    
         
            +
                .small-tile-5 > li:nth-of-type(5n+1) {
         
     | 
| 
      
 733 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 734 
     | 
    
         
            +
             
     | 
| 
      
 735 
     | 
    
         
            +
              .small-tile-6 > li {
         
     | 
| 
      
 736 
     | 
    
         
            +
                width: 16.66667%; }
         
     | 
| 
      
 737 
     | 
    
         
            +
                .small-tile-6 > li:nth-of-type(6n+1) {
         
     | 
| 
      
 738 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 739 
     | 
    
         
            +
             
     | 
| 
      
 740 
     | 
    
         
            +
              .small-tile-7 > li {
         
     | 
| 
      
 741 
     | 
    
         
            +
                width: 14.28571%; }
         
     | 
| 
      
 742 
     | 
    
         
            +
                .small-tile-7 > li:nth-of-type(7n+1) {
         
     | 
| 
      
 743 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 744 
     | 
    
         
            +
             
     | 
| 
      
 745 
     | 
    
         
            +
              .small-tile-8 > li {
         
     | 
| 
      
 746 
     | 
    
         
            +
                width: 12.5%; }
         
     | 
| 
      
 747 
     | 
    
         
            +
                .small-tile-8 > li:nth-of-type(8n+1) {
         
     | 
| 
      
 748 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 749 
     | 
    
         
            +
             
     | 
| 
      
 750 
     | 
    
         
            +
              .small-tile-9 > li {
         
     | 
| 
      
 751 
     | 
    
         
            +
                width: 11.11111%; }
         
     | 
| 
      
 752 
     | 
    
         
            +
                .small-tile-9 > li:nth-of-type(9n+1) {
         
     | 
| 
      
 753 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 754 
     | 
    
         
            +
             
     | 
| 
      
 755 
     | 
    
         
            +
              .small-tile-10 > li {
         
     | 
| 
      
 756 
     | 
    
         
            +
                width: 10%; }
         
     | 
| 
      
 757 
     | 
    
         
            +
                .small-tile-10 > li:nth-of-type(10n+1) {
         
     | 
| 
      
 758 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 759 
     | 
    
         
            +
             
     | 
| 
      
 760 
     | 
    
         
            +
              .small-tile-11 > li {
         
     | 
| 
      
 761 
     | 
    
         
            +
                width: 9.09091%; }
         
     | 
| 
      
 762 
     | 
    
         
            +
                .small-tile-11 > li:nth-of-type(11n+1) {
         
     | 
| 
      
 763 
     | 
    
         
            +
                  clear: both; }
         
     | 
| 
      
 764 
     | 
    
         
            +
             
     | 
| 
      
 765 
     | 
    
         
            +
              .small-tile-12 > li {
         
     | 
| 
      
 766 
     | 
    
         
            +
                width: 8.33333%; }
         
     | 
| 
      
 767 
     | 
    
         
            +
                .small-tile-12 > li:nth-of-type(12n+1) {
         
     | 
| 
      
 768 
     | 
    
         
            +
                  clear: both; } }
         
     | 
| 
      
 769 
     | 
    
         
            +
            /* -----------------
         
     | 
| 
      
 770 
     | 
    
         
            +
              EDGE Visibility
         
     | 
| 
      
 771 
     | 
    
         
            +
            ----------------- */
         
     | 
| 
      
 772 
     | 
    
         
            +
            .hide-for-large,
         
     | 
| 
      
 773 
     | 
    
         
            +
            .show-for-small,
         
     | 
| 
      
 774 
     | 
    
         
            +
            .show-for-mini {
         
     | 
| 
      
 775 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 776 
     | 
    
         
            +
             
     | 
| 
      
 777 
     | 
    
         
            +
            .hide-for-small,
         
     | 
| 
      
 778 
     | 
    
         
            +
            .hide-for-mini,
         
     | 
| 
      
 779 
     | 
    
         
            +
            .show-for-large {
         
     | 
| 
      
 780 
     | 
    
         
            +
              display: inherit !important; }
         
     | 
| 
      
 781 
     | 
    
         
            +
             
     | 
| 
      
 782 
     | 
    
         
            +
            table.hide-for-large, table.show-for-small, table.show-for-mini {
         
     | 
| 
      
 783 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 784 
     | 
    
         
            +
            table.hide-for-small, table.hide-for-mini, table.show-for-large {
         
     | 
| 
      
 785 
     | 
    
         
            +
              display: table !important; }
         
     | 
| 
      
 786 
     | 
    
         
            +
             
     | 
| 
      
 787 
     | 
    
         
            +
            thead.hide-for-large, thead.show-for-small, thead.show-for-mini {
         
     | 
| 
      
 788 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 789 
     | 
    
         
            +
            thead.hide-for-small, thead.hide-for-mini, thead.show-for-large {
         
     | 
| 
      
 790 
     | 
    
         
            +
              display: table-header-group !important; }
         
     | 
| 
      
 791 
     | 
    
         
            +
             
     | 
| 
      
 792 
     | 
    
         
            +
            tbody.hide-for-large, tbody.show-for-small, tbody.show-for-mini {
         
     | 
| 
      
 793 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 794 
     | 
    
         
            +
            tbody.hide-for-small, tbody.hide-for-mini, tbody.show-for-large {
         
     | 
| 
      
 795 
     | 
    
         
            +
              display: table-row-group !important; }
         
     | 
| 
      
 796 
     | 
    
         
            +
             
     | 
| 
      
 797 
     | 
    
         
            +
            tr.hide-for-large, tr.show-for-small, tr.show-for-mini {
         
     | 
| 
      
 798 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 799 
     | 
    
         
            +
            tr.hide-for-small, tr.hide-for-mini, tr.show-for-large {
         
     | 
| 
      
 800 
     | 
    
         
            +
              display: table-row !important; }
         
     | 
| 
      
 801 
     | 
    
         
            +
             
     | 
| 
      
 802 
     | 
    
         
            +
            td.hide-for-large, td.show-for-small, td.show-for-mini, th.hide-for-large, th.show-for-small, th.show-for-mini {
         
     | 
| 
      
 803 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 804 
     | 
    
         
            +
            td.hide-for-small, td.hide-for-mini, td.show-for-large, th.hide-for-small, th.hide-for-mini, th.show-for-large {
         
     | 
| 
      
 805 
     | 
    
         
            +
              display: table-cell !important; }
         
     | 
| 
      
 806 
     | 
    
         
            +
             
     | 
| 
      
 807 
     | 
    
         
            +
            img.hide-for-large, img.show-for-small, img.show-for-mini, span.hide-for-large, span.show-for-small, span.show-for-mini, em.hide-for-large, em.show-for-small, em.show-for-mini, strong.hide-for-large, strong.show-for-small, strong.show-for-mini, sub.hide-for-large, sub.show-for-small, sub.show-for-mini, sup.hide-for-large, sup.show-for-small, sup.show-for-mini, big.hide-for-large, big.show-for-small, big.show-for-mini, small.hide-for-large, small.show-for-small, small.show-for-mini {
         
     | 
| 
      
 808 
     | 
    
         
            +
              display: none !important; }
         
     | 
| 
      
 809 
     | 
    
         
            +
            img.hide-for-small, img.hide-for-mini, img.show-for-large, span.hide-for-small, span.hide-for-mini, span.show-for-large, em.hide-for-small, em.hide-for-mini, em.show-for-large, strong.hide-for-small, strong.hide-for-mini, strong.show-for-large, sub.hide-for-small, sub.hide-for-mini, sub.show-for-large, sup.hide-for-small, sup.hide-for-mini, sup.show-for-large, big.hide-for-small, big.hide-for-mini, big.show-for-large, small.hide-for-small, small.hide-for-mini, small.show-for-large {
         
     | 
| 
      
 810 
     | 
    
         
            +
              display: inline-block !important; }
         
     | 
| 
      
 811 
     | 
    
         
            +
             
     | 
| 
      
 812 
     | 
    
         
            +
            @media only screen and (max-width: 460px) {
         
     | 
| 
      
 813 
     | 
    
         
            +
              .hide-for-small,
         
     | 
| 
      
 814 
     | 
    
         
            +
              .show-for-large {
         
     | 
| 
      
 815 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 816 
     | 
    
         
            +
             
     | 
| 
      
 817 
     | 
    
         
            +
              .show-for-small,
         
     | 
| 
      
 818 
     | 
    
         
            +
              .hide-for-large {
         
     | 
| 
      
 819 
     | 
    
         
            +
                display: inherit !important; }
         
     | 
| 
      
 820 
     | 
    
         
            +
             
     | 
| 
      
 821 
     | 
    
         
            +
              table.hide-for-small, table.show-for-large {
         
     | 
| 
      
 822 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 823 
     | 
    
         
            +
              table.show-for-small, table.hide-for-large {
         
     | 
| 
      
 824 
     | 
    
         
            +
                display: table !important; }
         
     | 
| 
      
 825 
     | 
    
         
            +
             
     | 
| 
      
 826 
     | 
    
         
            +
              thead.hide-for-small, thead.show-for-large {
         
     | 
| 
      
 827 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 828 
     | 
    
         
            +
              thead.show-for-small, thead.hide-for-large {
         
     | 
| 
      
 829 
     | 
    
         
            +
                display: table-header-group !important; }
         
     | 
| 
      
 830 
     | 
    
         
            +
             
     | 
| 
      
 831 
     | 
    
         
            +
              tbody.hide-for-small, tbody.show-for-large {
         
     | 
| 
      
 832 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 833 
     | 
    
         
            +
              tbody.show-for-small, tbody.hide-for-large {
         
     | 
| 
      
 834 
     | 
    
         
            +
                display: table-row-group !important; }
         
     | 
| 
      
 835 
     | 
    
         
            +
             
     | 
| 
      
 836 
     | 
    
         
            +
              tr.hide-for-small, tr.show-for-large {
         
     | 
| 
      
 837 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 838 
     | 
    
         
            +
              tr.show-for-small, tr.hide-for-large {
         
     | 
| 
      
 839 
     | 
    
         
            +
                display: table-row !important; }
         
     | 
| 
      
 840 
     | 
    
         
            +
             
     | 
| 
      
 841 
     | 
    
         
            +
              td.hide-for-small, td.show-for-large, th.hide-for-small, th.show-for-large {
         
     | 
| 
      
 842 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 843 
     | 
    
         
            +
              td.show-for-small, td.hide-for-large, th.show-for-small, th.hide-for-large {
         
     | 
| 
      
 844 
     | 
    
         
            +
                display: table-cell !important; }
         
     | 
| 
      
 845 
     | 
    
         
            +
             
     | 
| 
      
 846 
     | 
    
         
            +
              img.hide-for-small, img.show-for-large, span.hide-for-small, span.show-for-large, em.hide-for-small, em.show-for-large, strong.hide-for-small, strong.show-for-large, sub.hide-for-small, sub.show-for-large, sup.hide-for-small, sup.show-for-large, big.hide-for-small, big.show-for-large, small.hide-for-small, small.show-for-large {
         
     | 
| 
      
 847 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 848 
     | 
    
         
            +
              img.show-for-small, img.hide-for-large, span.show-for-small, span.hide-for-large, em.show-for-small, em.hide-for-large, strong.show-for-small, strong.hide-for-large, sub.show-for-small, sub.hide-for-large, sup.show-for-small, sup.hide-for-large, big.show-for-small, big.hide-for-large, small.show-for-small, small.hide-for-large {
         
     | 
| 
      
 849 
     | 
    
         
            +
                display: inline-block !important; } }
         
     | 
| 
      
 850 
     | 
    
         
            +
            @media only screen and (max-width: 180px) {
         
     | 
| 
      
 851 
     | 
    
         
            +
              .hide-for-mini {
         
     | 
| 
      
 852 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
              .show-for-mini {
         
     | 
| 
      
 855 
     | 
    
         
            +
                display: inherit !important; }
         
     | 
| 
      
 856 
     | 
    
         
            +
             
     | 
| 
      
 857 
     | 
    
         
            +
              table.hide-for-mini {
         
     | 
| 
      
 858 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 859 
     | 
    
         
            +
              table.show-for-mini {
         
     | 
| 
      
 860 
     | 
    
         
            +
                display: table !important; }
         
     | 
| 
      
 861 
     | 
    
         
            +
             
     | 
| 
      
 862 
     | 
    
         
            +
              thead.hide-for-mini {
         
     | 
| 
      
 863 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 864 
     | 
    
         
            +
              thead.show-for-mini {
         
     | 
| 
      
 865 
     | 
    
         
            +
                display: table-header-group !important; }
         
     | 
| 
      
 866 
     | 
    
         
            +
             
     | 
| 
      
 867 
     | 
    
         
            +
              tbody.hide-for-mini {
         
     | 
| 
      
 868 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 869 
     | 
    
         
            +
              tbody.show-for-mini {
         
     | 
| 
      
 870 
     | 
    
         
            +
                display: table-row-group !important; }
         
     | 
| 
      
 871 
     | 
    
         
            +
             
     | 
| 
      
 872 
     | 
    
         
            +
              tr.hide-for-mini {
         
     | 
| 
      
 873 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 874 
     | 
    
         
            +
              tr.show-for-mini {
         
     | 
| 
      
 875 
     | 
    
         
            +
                display: table-row !important; }
         
     | 
| 
      
 876 
     | 
    
         
            +
             
     | 
| 
      
 877 
     | 
    
         
            +
              td.hide-for-mini, th.hide-for-mini {
         
     | 
| 
      
 878 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 879 
     | 
    
         
            +
              td.show-for-mini, th.show-for-mini {
         
     | 
| 
      
 880 
     | 
    
         
            +
                display: table-cell !important; }
         
     | 
| 
      
 881 
     | 
    
         
            +
             
     | 
| 
      
 882 
     | 
    
         
            +
              img.hide-for-mini, span.hide-for-mini, em.hide-for-mini, strong.hide-for-mini, sub.hide-for-mini, sup.hide-for-mini, big.hide-for-mini, small.hide-for-mini {
         
     | 
| 
      
 883 
     | 
    
         
            +
                display: none !important; }
         
     | 
| 
      
 884 
     | 
    
         
            +
              img.show-for-mini, span.show-for-mini, em.show-for-mini, strong.show-for-mini, sub.show-for-mini, sup.show-for-mini, big.show-for-mini, small.show-for-mini {
         
     | 
| 
      
 885 
     | 
    
         
            +
                display: inline-block !important; } }
         
     | 
| 
      
 886 
     | 
    
         
            +
            /* ---------------
         
     | 
| 
      
 887 
     | 
    
         
            +
            EDGE Button
         
     | 
| 
      
 888 
     | 
    
         
            +
            --------------- */
         
     | 
| 
      
 889 
     | 
    
         
            +
            button,
         
     | 
| 
      
 890 
     | 
    
         
            +
            .button,
         
     | 
| 
      
 891 
     | 
    
         
            +
            input[type="submit"],
         
     | 
| 
      
 892 
     | 
    
         
            +
            input[type="reset"] {
         
     | 
| 
      
 893 
     | 
    
         
            +
              display: inline-block;
         
     | 
| 
      
 894 
     | 
    
         
            +
              cursor: pointer;
         
     | 
| 
      
 895 
     | 
    
         
            +
              position: relative;
         
     | 
| 
      
 896 
     | 
    
         
            +
              border: 1px solid transparent;
         
     | 
| 
      
 897 
     | 
    
         
            +
              padding: 10px 20px;
         
     | 
| 
      
 898 
     | 
    
         
            +
              text-transform: uppercase;
         
     | 
| 
      
 899 
     | 
    
         
            +
              font-weight: 700;
         
     | 
| 
      
 900 
     | 
    
         
            +
              letter-spacing: 1px;
         
     | 
| 
      
 901 
     | 
    
         
            +
              background-color: #3a2c3d;
         
     | 
| 
      
 902 
     | 
    
         
            +
              color: white;
         
     | 
| 
      
 903 
     | 
    
         
            +
              -webkit-border-radius: 3px;
         
     | 
| 
      
 904 
     | 
    
         
            +
              -moz-border-radius: 3px;
         
     | 
| 
      
 905 
     | 
    
         
            +
              border-radius: 3px;
         
     | 
| 
      
 906 
     | 
    
         
            +
              background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1), transparent);
         
     | 
| 
      
 907 
     | 
    
         
            +
              background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.1), transparent);
         
     | 
| 
      
 908 
     | 
    
         
            +
              background-image: linear-gradient(top, rgba(255, 255, 255, 0.1), transparent);
         
     | 
| 
      
 909 
     | 
    
         
            +
              -webkit-transition: all 0.2s ease-out;
         
     | 
| 
      
 910 
     | 
    
         
            +
              -moz-transition: all 0.2s ease-out;
         
     | 
| 
      
 911 
     | 
    
         
            +
              transition: all 0.2s ease-out;
         
     | 
| 
      
 912 
     | 
    
         
            +
              -webkit-box-shadow: inset 1px 1px rgba(255, 255, 255, 0.1);
         
     | 
| 
      
 913 
     | 
    
         
            +
              -moz-box-shadow: inset 1px 1px rgba(255, 255, 255, 0.1);
         
     | 
| 
      
 914 
     | 
    
         
            +
              box-shadow: inset 1px 1px rgba(255, 255, 255, 0.1); }
         
     | 
| 
      
 915 
     | 
    
         
            +
              button:focus,
         
     | 
| 
      
 916 
     | 
    
         
            +
              .button:focus,
         
     | 
| 
      
 917 
     | 
    
         
            +
              input[type="submit"]:focus,
         
     | 
| 
      
 918 
     | 
    
         
            +
              input[type="reset"]:focus {
         
     | 
| 
      
 919 
     | 
    
         
            +
                outline: none; }
         
     | 
| 
      
 920 
     | 
    
         
            +
              button:hover,
         
     | 
| 
      
 921 
     | 
    
         
            +
              .button:hover,
         
     | 
| 
      
 922 
     | 
    
         
            +
              input[type="submit"]:hover,
         
     | 
| 
      
 923 
     | 
    
         
            +
              input[type="reset"]:hover {
         
     | 
| 
      
 924 
     | 
    
         
            +
                background-color: #48374c; }
         
     | 
| 
      
 925 
     | 
    
         
            +
              button:active,
         
     | 
| 
      
 926 
     | 
    
         
            +
              .button:active,
         
     | 
| 
      
 927 
     | 
    
         
            +
              input[type="submit"]:active,
         
     | 
| 
      
 928 
     | 
    
         
            +
              input[type="reset"]:active {
         
     | 
| 
      
 929 
     | 
    
         
            +
                background-color: #2c212e; }
         
     | 
| 
      
 930 
     | 
    
         
            +
             
     | 
| 
      
 931 
     | 
    
         
            +
            /* ---------------
         
     | 
| 
      
 932 
     | 
    
         
            +
            EDGE Form
         
     | 
| 
      
 933 
     | 
    
         
            +
            --------------- */
         
     | 
| 
      
 934 
     | 
    
         
            +
            [type="text"],
         
     | 
| 
      
 935 
     | 
    
         
            +
            [type="password"],
         
     | 
| 
      
 936 
     | 
    
         
            +
            [type="date"],
         
     | 
| 
      
 937 
     | 
    
         
            +
            [type="datetime"],
         
     | 
| 
      
 938 
     | 
    
         
            +
            [type="datetime-local"],
         
     | 
| 
      
 939 
     | 
    
         
            +
            [type="month"],
         
     | 
| 
      
 940 
     | 
    
         
            +
            [type="week"],
         
     | 
| 
      
 941 
     | 
    
         
            +
            [type="email"],
         
     | 
| 
      
 942 
     | 
    
         
            +
            [type="number"],
         
     | 
| 
      
 943 
     | 
    
         
            +
            [type="search"],
         
     | 
| 
      
 944 
     | 
    
         
            +
            [type="tel"],
         
     | 
| 
      
 945 
     | 
    
         
            +
            [type="time"],
         
     | 
| 
      
 946 
     | 
    
         
            +
            [type="url"],
         
     | 
| 
      
 947 
     | 
    
         
            +
            select,
         
     | 
| 
      
 948 
     | 
    
         
            +
            textarea {
         
     | 
| 
      
 949 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 950 
     | 
    
         
            +
              outline: none;
         
     | 
| 
      
 951 
     | 
    
         
            +
              padding: 0.625em;
         
     | 
| 
      
 952 
     | 
    
         
            +
              border: 1px solid #d7d7d7;
         
     | 
| 
      
 953 
     | 
    
         
            +
              border-top: 1px solid #cacaca; }
         
     | 
| 
      
 954 
     | 
    
         
            +
              [type="text"]:hover,
         
     | 
| 
      
 955 
     | 
    
         
            +
              [type="password"]:hover,
         
     | 
| 
      
 956 
     | 
    
         
            +
              [type="date"]:hover,
         
     | 
| 
      
 957 
     | 
    
         
            +
              [type="datetime"]:hover,
         
     | 
| 
      
 958 
     | 
    
         
            +
              [type="datetime-local"]:hover,
         
     | 
| 
      
 959 
     | 
    
         
            +
              [type="month"]:hover,
         
     | 
| 
      
 960 
     | 
    
         
            +
              [type="week"]:hover,
         
     | 
| 
      
 961 
     | 
    
         
            +
              [type="email"]:hover,
         
     | 
| 
      
 962 
     | 
    
         
            +
              [type="number"]:hover,
         
     | 
| 
      
 963 
     | 
    
         
            +
              [type="search"]:hover,
         
     | 
| 
      
 964 
     | 
    
         
            +
              [type="tel"]:hover,
         
     | 
| 
      
 965 
     | 
    
         
            +
              [type="time"]:hover,
         
     | 
| 
      
 966 
     | 
    
         
            +
              [type="url"]:hover,
         
     | 
| 
      
 967 
     | 
    
         
            +
              select:hover,
         
     | 
| 
      
 968 
     | 
    
         
            +
              textarea:hover {
         
     | 
| 
      
 969 
     | 
    
         
            +
                border: 1px solid #bebebe;
         
     | 
| 
      
 970 
     | 
    
         
            +
                -webkit-box-shadow: inset 0 0 3px #d7d7d7;
         
     | 
| 
      
 971 
     | 
    
         
            +
                -moz-box-shadow: inset 0 0 3px #d7d7d7;
         
     | 
| 
      
 972 
     | 
    
         
            +
                box-shadow: inset 0 0 3px #d7d7d7; }
         
     | 
| 
      
 973 
     | 
    
         
            +
              [type="text"]:focus,
         
     | 
| 
      
 974 
     | 
    
         
            +
              [type="password"]:focus,
         
     | 
| 
      
 975 
     | 
    
         
            +
              [type="date"]:focus,
         
     | 
| 
      
 976 
     | 
    
         
            +
              [type="datetime"]:focus,
         
     | 
| 
      
 977 
     | 
    
         
            +
              [type="datetime-local"]:focus,
         
     | 
| 
      
 978 
     | 
    
         
            +
              [type="month"]:focus,
         
     | 
| 
      
 979 
     | 
    
         
            +
              [type="week"]:focus,
         
     | 
| 
      
 980 
     | 
    
         
            +
              [type="email"]:focus,
         
     | 
| 
      
 981 
     | 
    
         
            +
              [type="number"]:focus,
         
     | 
| 
      
 982 
     | 
    
         
            +
              [type="search"]:focus,
         
     | 
| 
      
 983 
     | 
    
         
            +
              [type="tel"]:focus,
         
     | 
| 
      
 984 
     | 
    
         
            +
              [type="time"]:focus,
         
     | 
| 
      
 985 
     | 
    
         
            +
              [type="url"]:focus,
         
     | 
| 
      
 986 
     | 
    
         
            +
              select:focus,
         
     | 
| 
      
 987 
     | 
    
         
            +
              textarea:focus {
         
     | 
| 
      
 988 
     | 
    
         
            +
                border: 1px solid #3a2c3d;
         
     | 
| 
      
 989 
     | 
    
         
            +
                -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
         
     | 
| 
      
 990 
     | 
    
         
            +
                -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
         
     | 
| 
      
 991 
     | 
    
         
            +
                box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2); }
         
     | 
| 
      
 992 
     | 
    
         
            +
             
     | 
| 
      
 993 
     | 
    
         
            +
            label {
         
     | 
| 
      
 994 
     | 
    
         
            +
              display: block;
         
     | 
| 
      
 995 
     | 
    
         
            +
              line-height: normal;
         
     | 
| 
      
 996 
     | 
    
         
            +
              padding-top: 0.625em;
         
     | 
| 
      
 997 
     | 
    
         
            +
              padding-bottom: 0.625em;
         
     | 
| 
      
 998 
     | 
    
         
            +
              border: 1px solid transparent; }
         
     | 
| 
      
 999 
     | 
    
         
            +
              label.prefix, label.postfix {
         
     | 
| 
      
 1000 
     | 
    
         
            +
                border: 1px solid #d7d7d7;
         
     | 
| 
      
 1001 
     | 
    
         
            +
                border-top: 1px solid #cacaca;
         
     | 
| 
      
 1002 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 1003 
     | 
    
         
            +
                color: #333333;
         
     | 
| 
      
 1004 
     | 
    
         
            +
                background: #d7d7d7;
         
     | 
| 
      
 1005 
     | 
    
         
            +
                overflow: hidden; }
         
     | 
| 
      
 1006 
     | 
    
         
            +
              label.prefix {
         
     | 
| 
      
 1007 
     | 
    
         
            +
                border-right: none; }
         
     | 
| 
      
 1008 
     | 
    
         
            +
              label.postfix {
         
     | 
| 
      
 1009 
     | 
    
         
            +
                border-left: none; }
         
     | 
| 
      
 1010 
     | 
    
         
            +
             
     | 
| 
      
 1011 
     | 
    
         
            +
            input::-webkit-calendar-picker-indicator {
         
     | 
| 
      
 1012 
     | 
    
         
            +
              display: none; }
         
     | 
| 
      
 1013 
     | 
    
         
            +
             
     | 
| 
      
 1014 
     | 
    
         
            +
            input[type="date"]::-webkit-input-placeholder {
         
     | 
| 
      
 1015 
     | 
    
         
            +
              visibility: hidden !important; }
         
     |