/* Minification failed. Returning unminified contents. (1636,13636): run-time error CSS1030: Expected identifier, found '-' (1636,13636): run-time error CSS1031: Expected selector, found '-' (1636,13636): run-time error CSS1025: Expected comma or open brace, found '-' (1636,57488): run-time error CSS1030: Expected identifier, found '-' (1636,57488): run-time error CSS1031: Expected selector, found '-' (1636,57488): run-time error CSS1025: Expected comma or open brace, found '-' (1636,57588): run-time error CSS1030: Expected identifier, found '-' (1636,57588): run-time error CSS1031: Expected selector, found '-' (1636,57588): run-time error CSS1025: Expected comma or open brace, found '-' (1636,57868): run-time error CSS1030: Expected identifier, found '-' (1636,57868): run-time error CSS1031: Expected selector, found '-' (1636,57868): run-time error CSS1025: Expected comma or open brace, found '-' (1636,57972): run-time error CSS1030: Expected identifier, found '-' (1636,57972): run-time error CSS1031: Expected selector, found '-' (1636,57972): run-time error CSS1025: Expected comma or open brace, found '-' (1636,58122): run-time error CSS1030: Expected identifier, found '-' (1636,58122): run-time error CSS1031: Expected selector, found '-' (1636,58122): run-time error CSS1025: Expected comma or open brace, found '-' (1636,58205): run-time error CSS1030: Expected identifier, found '-' (1636,58205): run-time error CSS1031: Expected selector, found '-' (1636,58205): run-time error CSS1025: Expected comma or open brace, found '-' (1636,58302): run-time error CSS1030: Expected identifier, found '-' (1636,58302): run-time error CSS1031: Expected selector, found '-' (1636,58302): run-time error CSS1025: Expected comma or open brace, found '-' (1636,58385): run-time error CSS1030: Expected identifier, found '-' (1636,58385): run-time error CSS1031: Expected selector, found '-' (1636,58385): run-time error CSS1025: Expected comma or open brace, found '-' */ .grid, .grid--rev, .grid--full, .grid--thin-gutter, .grid--thick-gutter { list-style: none; /* [1] */ margin: 0; /* [2] */ padding: 0; /* [2] */ margin-left: -20px; /* [3] */ letter-spacing: -0.32em; } /** * 1. Cause columns to stack side-by-side. * 2. Space columns apart. * 3. Align columns to the tops of each other. * 4. Full-width unless told to behave otherwise. * 5. Required to combine fluid widths and fixed gutters. */ .grid__item { position: relative; display: inline-block; padding-left: 20px; vertical-align: top; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; letter-spacing: normal; } /** * Reversed grids allow you to structure your source in the opposite order to * how your rendered layout will appear. */ .grid--rev { direction: rtl; text-align: right; } .grid--rev > .grid__item { direction: ltr; text-align: left; } /** * Gutterless grids have all the properties of regular grids, minus any spacing. */ .grid--full { margin-left: 0; } .grid--full > .grid__item { padding-left: 0; } /** * Grid with very thin gutter */ .grid--thin-gutter { margin-left: -10px; } .grid--thin-gutter > .grid__item { padding-left: 10px; } /** * Grid with very thick gutter */ .grid--thick-gutter { margin-left: -40px; } .grid--thick-gutter > .grid__item { padding-left: 40px; } /** * Gutterless grids have all the properties of regular grids, minus any spacing. */ .grid--right { text-align: right; } .grid--right > .grid__item { text-align: left; } /* Centered grids align grid items centrally without needing to use push or pull * classes. */ .grid--center { text-align: center; } .grid--center > .grid__item { text-align: left; } .grid--middle > .grid__item { vertical-align: middle; } /*------------------------------------*\ $WIDTHS \*------------------------------------*/ /** * These next bits get worked out for you. */ /** * Create our width classes, prefixed by the specified namespace. */ /** * Our regular, non-responsive width classes. */ /** * Whole */ .one-whole { width: 100%; } /** * Halves */ .one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths { width: 50%; } /** * Thirds */ .one-third, .two-sixths, .four-twelfths { width: 33.333%; } .two-thirds, .four-sixths, .eight-twelfths { width: 66.666%; } /** * Quarters */ .one-quarter, .two-eighths, .three-twelfths { width: 25%; } .three-quarters, .six-eighths, .nine-twelfths { width: 75%; } /** * Fifths */ .one-fifth, .two-tenths { width: 20%; } .two-fifths, .four-tenths { width: 40%; } .three-fifths, .six-tenths { width: 60%; } .four-fifths, .eight-tenths { width: 80%; } /** * Sixths */ .one-sixth, .two-twelfths { width: 16.666%; } .five-sixths, .ten-twelfths { width: 83.333%; } /** * Eighths */ .one-eighth { width: 12.5%; } .three-eighths { width: 37.5%; } .five-eighths { width: 62.5%; } .seven-eighths { width: 87.5%; } /** * Tenths */ .one-tenth { width: 10%; } .three-tenths { width: 30%; } .seven-tenths { width: 70%; } .nine-tenths { width: 90%; } /** * Twelfths */ .one-twelfth { width: 8.333%; } .five-twelfths { width: 41.666%; } .seven-twelfths { width: 58.333%; } .eleven-twelfths { width: 91.666%; } /*------------------------------------*\ $PUSH \*------------------------------------*/ /** * Push classes, to move grid items over to the right by certain amounts. */ /** * Not a particularly great selector, but the DRYest way to do things. */ [class*="push--"] { position: relative; } /** * Whole */ .push--one-whole { left: 100%; } /** * Halves */ .push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths { left: 50%; } /** * Thirds */ .push--one-third, .push--two-sixths, .push--four-twelfths { left: 33.333%; } .push--two-thirds, .push--four-sixths, .push--eight-twelfths { left: 66.666%; } /** * Quarters */ .push--one-quarter, .push--two-eighths, .push--three-twelfths { left: 25%; } .push--three-quarters, .push--six-eighths, .push--nine-twelfths { left: 75%; } /** * Fifths */ .push--one-fifth, .push--two-tenths { left: 20%; } .push--two-fifths, .push--four-tenths { left: 40%; } .push--three-fifths, .push--six-tenths { left: 60%; } .push--four-fifths, .push--eight-tenths { left: 80%; } /** * Sixths */ .push--one-sixth, .push--two-twelfths { left: 16.666%; } .push--five-sixths, .push--ten-twelfths { left: 83.333%; } /** * Eighths */ .push--one-eighth { left: 12.5%; } .push--three-eighths { left: 37.5%; } .push--five-eighths { left: 62.5%; } .push--seven-eighths { left: 87.5%; } /** * Tenths */ .push--one-tenth { left: 10%; } .push--three-tenths { left: 30%; } .push--seven-tenths { left: 70%; } .push--nine-tenths { left: 90%; } /** * Twelfths */ .push--one-twelfth { left: 8.333%; } .push--five-twelfths { left: 41.666%; } .push--seven-twelfths { left: 58.333%; } .push--eleven-twelfths { left: 91.666%; } /*------------------------------------*\ $PULL \*------------------------------------*/ /** * Pull classes, to move grid items back to the left by certain amounts. */ /** * Not a particularly great selector, but the DRYest way to do things. */ [class*="pull--"] { position: relative; } /** * Whole */ .pull--one-whole { right: 100%; } /** * Halves */ .pull--one-half, .pull--two-quarters, .pull--three-sixths, .pull--four-eighths, .pull--five-tenths, .pull--six-twelfths { right: 50%; } /** * Thirds */ .pull--one-third, .pull--two-sixths, .pull--four-twelfths { right: 33.333%; } .pull--two-thirds, .pull--four-sixths, .pull--eight-twelfths { right: 66.666%; } /** * Quarters */ .pull--one-quarter, .pull--two-eighths, .pull--three-twelfths { right: 25%; } .pull--three-quarters, .pull--six-eighths, .pull--nine-twelfths { right: 75%; } /** * Fifths */ .pull--one-fifth, .pull--two-tenths { right: 20%; } .pull--two-fifths, .pull--four-tenths { right: 40%; } .pull--three-fifths, .pull--six-tenths { right: 60%; } .pull--four-fifths, .pull--eight-tenths { right: 80%; } /** * Sixths */ .pull--one-sixth, .pull--two-twelfths { right: 16.666%; } .pull--five-sixths, .pull--ten-twelfths { right: 83.333%; } /** * Eighths */ .pull--one-eighth { right: 12.5%; } .pull--three-eighths { right: 37.5%; } .pull--five-eighths { right: 62.5%; } .pull--seven-eighths { right: 87.5%; } /** * Tenths */ .pull--one-tenth { right: 10%; } .pull--three-tenths { right: 30%; } .pull--seven-tenths { right: 70%; } .pull--nine-tenths { right: 90%; } /** * Twelfths */ .pull--one-twelfth { right: 8.333%; } .pull--five-twelfths { right: 41.666%; } .pull--seven-twelfths { right: 58.333%; } .pull--eleven-twelfths { right: 91.666%; } @media screen and (min-width: 861px) and (max-width: 1023px) { /** * Whole */ .lap-one-whole { width: 100%; } /** * Halves */ .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths { width: 50%; } /** * Thirds */ .lap-one-third, .lap-two-sixths, .lap-four-twelfths { width: 33.333%; } .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths { width: 66.666%; } /** * Quarters */ .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths { width: 25%; } .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths { width: 75%; } /** * Fifths */ .lap-one-fifth, .lap-two-tenths { width: 20%; } .lap-two-fifths, .lap-four-tenths { width: 40%; } .lap-three-fifths, .lap-six-tenths { width: 60%; } .lap-four-fifths, .lap-eight-tenths { width: 80%; } /** * Sixths */ .lap-one-sixth, .lap-two-twelfths { width: 16.666%; } .lap-five-sixths, .lap-ten-twelfths { width: 83.333%; } /** * Eighths */ .lap-one-eighth { width: 12.5%; } .lap-three-eighths { width: 37.5%; } .lap-five-eighths { width: 62.5%; } .lap-seven-eighths { width: 87.5%; } /** * Tenths */ .lap-one-tenth { width: 10%; } .lap-three-tenths { width: 30%; } .lap-seven-tenths { width: 70%; } .lap-nine-tenths { width: 90%; } /** * Twelfths */ .lap-one-twelfth { width: 8.333%; } .lap-five-twelfths { width: 41.666%; } .lap-seven-twelfths { width: 58.333%; } .lap-eleven-twelfths { width: 91.666%; } /** * Whole */ .push--lap-one-whole { left: 100%; } /** * Halves */ .push--lap-one-half, .push--lap-two-quarters, .push--lap-three-sixths, .push--lap-four-eighths, .push--lap-five-tenths, .push--lap-six-twelfths { left: 50%; } /** * Thirds */ .push--lap-one-third, .push--lap-two-sixths, .push--lap-four-twelfths { left: 33.333%; } .push--lap-two-thirds, .push--lap-four-sixths, .push--lap-eight-twelfths { left: 66.666%; } /** * Quarters */ .push--lap-one-quarter, .push--lap-two-eighths, .push--lap-three-twelfths { left: 25%; } .push--lap-three-quarters, .push--lap-six-eighths, .push--lap-nine-twelfths { left: 75%; } /** * Fifths */ .push--lap-one-fifth, .push--lap-two-tenths { left: 20%; } .push--lap-two-fifths, .push--lap-four-tenths { left: 40%; } .push--lap-three-fifths, .push--lap-six-tenths { left: 60%; } .push--lap-four-fifths, .push--lap-eight-tenths { left: 80%; } /** * Sixths */ .push--lap-one-sixth, .push--lap-two-twelfths { left: 16.666%; } .push--lap-five-sixths, .push--lap-ten-twelfths { left: 83.333%; } /** * Eighths */ .push--lap-one-eighth { left: 12.5%; } .push--lap-three-eighths { left: 37.5%; } .push--lap-five-eighths { left: 62.5%; } .push--lap-seven-eighths { left: 87.5%; } /** * Tenths */ .push--lap-one-tenth { left: 10%; } .push--lap-three-tenths { left: 30%; } .push--lap-seven-tenths { left: 70%; } .push--lap-nine-tenths { left: 90%; } /** * Twelfths */ .push--lap-one-twelfth { left: 8.333%; } .push--lap-five-twelfths { left: 41.666%; } .push--lap-seven-twelfths { left: 58.333%; } .push--lap-eleven-twelfths { left: 91.666%; } /** * Whole */ .pull--lap-one-whole { right: 100%; } /** * Halves */ .pull--lap-one-half, .pull--lap-two-quarters, .pull--lap-three-sixths, .pull--lap-four-eighths, .pull--lap-five-tenths, .pull--lap-six-twelfths { right: 50%; } /** * Thirds */ .pull--lap-one-third, .pull--lap-two-sixths, .pull--lap-four-twelfths { right: 33.333%; } .pull--lap-two-thirds, .pull--lap-four-sixths, .pull--lap-eight-twelfths { right: 66.666%; } /** * Quarters */ .pull--lap-one-quarter, .pull--lap-two-eighths, .pull--lap-three-twelfths { right: 25%; } .pull--lap-three-quarters, .pull--lap-six-eighths, .pull--lap-nine-twelfths { right: 75%; } /** * Fifths */ .pull--lap-one-fifth, .pull--lap-two-tenths { right: 20%; } .pull--lap-two-fifths, .pull--lap-four-tenths { right: 40%; } .pull--lap-three-fifths, .pull--lap-six-tenths { right: 60%; } .pull--lap-four-fifths, .pull--lap-eight-tenths { right: 80%; } /** * Sixths */ .pull--lap-one-sixth, .pull--lap-two-twelfths { right: 16.666%; } .pull--lap-five-sixths, .pull--lap-ten-twelfths { right: 83.333%; } /** * Eighths */ .pull--lap-one-eighth { right: 12.5%; } .pull--lap-three-eighths { right: 37.5%; } .pull--lap-five-eighths { right: 62.5%; } .pull--lap-seven-eighths { right: 87.5%; } /** * Tenths */ .pull--lap-one-tenth { right: 10%; } .pull--lap-three-tenths { right: 30%; } .pull--lap-seven-tenths { right: 70%; } .pull--lap-nine-tenths { right: 90%; } /** * Twelfths */ .pull--lap-one-twelfth { right: 8.333%; } .pull--lap-five-twelfths { right: 41.666%; } .pull--lap-seven-twelfths { right: 58.333%; } .pull--lap-eleven-twelfths { right: 91.666%; } } @media screen and (max-width: 860px) { /** * Whole */ .portable-one-whole { width: 100%; } /** * Halves */ .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths { width: 50%; } /** * Thirds */ .portable-one-third, .portable-two-sixths, .portable-four-twelfths { width: 33.333%; } .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths { width: 66.666%; } /** * Quarters */ .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths { width: 25%; } .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths { width: 75%; } /** * Fifths */ .portable-one-fifth, .portable-two-tenths { width: 20%; } .portable-two-fifths, .portable-four-tenths { width: 40%; } .portable-three-fifths, .portable-six-tenths { width: 60%; } .portable-four-fifths, .portable-eight-tenths { width: 80%; } /** * Sixths */ .portable-one-sixth, .portable-two-twelfths { width: 16.666%; } .portable-five-sixths, .portable-ten-twelfths { width: 83.333%; } /** * Eighths */ .portable-one-eighth { width: 12.5%; } .portable-three-eighths { width: 37.5%; } .portable-five-eighths { width: 62.5%; } .portable-seven-eighths { width: 87.5%; } /** * Tenths */ .portable-one-tenth { width: 10%; } .portable-three-tenths { width: 30%; } .portable-seven-tenths { width: 70%; } .portable-nine-tenths { width: 90%; } /** * Twelfths */ .portable-one-twelfth { width: 8.333%; } .portable-five-twelfths { width: 41.666%; } .portable-seven-twelfths { width: 58.333%; } .portable-eleven-twelfths { width: 91.666%; } /** * Whole */ .push--portable-one-whole { left: 100%; } /** * Halves */ .push--portable-one-half, .push--portable-two-quarters, .push--portable-three-sixths, .push--portable-four-eighths, .push--portable-five-tenths, .push--portable-six-twelfths { left: 50%; } /** * Thirds */ .push--portable-one-third, .push--portable-two-sixths, .push--portable-four-twelfths { left: 33.333%; } .push--portable-two-thirds, .push--portable-four-sixths, .push--portable-eight-twelfths { left: 66.666%; } /** * Quarters */ .push--portable-one-quarter, .push--portable-two-eighths, .push--portable-three-twelfths { left: 25%; } .push--portable-three-quarters, .push--portable-six-eighths, .push--portable-nine-twelfths { left: 75%; } /** * Fifths */ .push--portable-one-fifth, .push--portable-two-tenths { left: 20%; } .push--portable-two-fifths, .push--portable-four-tenths { left: 40%; } .push--portable-three-fifths, .push--portable-six-tenths { left: 60%; } .push--portable-four-fifths, .push--portable-eight-tenths { left: 80%; } /** * Sixths */ .push--portable-one-sixth, .push--portable-two-twelfths { left: 16.666%; } .push--portable-five-sixths, .push--portable-ten-twelfths { left: 83.333%; } /** * Eighths */ .push--portable-one-eighth { left: 12.5%; } .push--portable-three-eighths { left: 37.5%; } .push--portable-five-eighths { left: 62.5%; } .push--portable-seven-eighths { left: 87.5%; } /** * Tenths */ .push--portable-one-tenth { left: 10%; } .push--portable-three-tenths { left: 30%; } .push--portable-seven-tenths { left: 70%; } .push--portable-nine-tenths { left: 90%; } /** * Twelfths */ .push--portable-one-twelfth { left: 8.333%; } .push--portable-five-twelfths { left: 41.666%; } .push--portable-seven-twelfths { left: 58.333%; } .push--portable-eleven-twelfths { left: 91.666%; } /** * Whole */ .pull--portable-one-whole { right: 100%; } /** * Halves */ .pull--portable-one-half, .pull--portable-two-quarters, .pull--portable-three-sixths, .pull--portable-four-eighths, .pull--portable-five-tenths, .pull--portable-six-twelfths { right: 50%; } /** * Thirds */ .pull--portable-one-third, .pull--portable-two-sixths, .pull--portable-four-twelfths { right: 33.333%; } .pull--portable-two-thirds, .pull--portable-four-sixths, .pull--portable-eight-twelfths { right: 66.666%; } /** * Quarters */ .pull--portable-one-quarter, .pull--portable-two-eighths, .pull--portable-three-twelfths { right: 25%; } .pull--portable-three-quarters, .pull--portable-six-eighths, .pull--portable-nine-twelfths { right: 75%; } /** * Fifths */ .pull--portable-one-fifth, .pull--portable-two-tenths { right: 20%; } .pull--portable-two-fifths, .pull--portable-four-tenths { right: 40%; } .pull--portable-three-fifths, .pull--portable-six-tenths { right: 60%; } .pull--portable-four-fifths, .pull--portable-eight-tenths { right: 80%; } /** * Sixths */ .pull--portable-one-sixth, .pull--portable-two-twelfths { right: 16.666%; } .pull--portable-five-sixths, .pull--portable-ten-twelfths { right: 83.333%; } /** * Eighths */ .pull--portable-one-eighth { right: 12.5%; } .pull--portable-three-eighths { right: 37.5%; } .pull--portable-five-eighths { right: 62.5%; } .pull--portable-seven-eighths { right: 87.5%; } /** * Tenths */ .pull--portable-one-tenth { right: 10%; } .pull--portable-three-tenths { right: 30%; } .pull--portable-seven-tenths { right: 70%; } .pull--portable-nine-tenths { right: 90%; } /** * Twelfths */ .pull--portable-one-twelfth { right: 8.333%; } .pull--portable-five-twelfths { right: 41.666%; } .pull--portable-seven-twelfths { right: 58.333%; } .pull--portable-eleven-twelfths { right: 91.666%; } } @media screen and (max-width: 640px) { /** * Whole */ .palm-one-whole { width: 100%; } /** * Halves */ .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths { width: 50%; } /** * Thirds */ .palm-one-third, .palm-two-sixths, .palm-four-twelfths { width: 33.333%; } .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths { width: 66.666%; } /** * Quarters */ .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths { width: 25%; } .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths { width: 75%; } /** * Fifths */ .palm-one-fifth, .palm-two-tenths { width: 20%; } .palm-two-fifths, .palm-four-tenths { width: 40%; } .palm-three-fifths, .palm-six-tenths { width: 60%; } .palm-four-fifths, .palm-eight-tenths { width: 80%; } /** * Sixths */ .palm-one-sixth, .palm-two-twelfths { width: 16.666%; } .palm-five-sixths, .palm-ten-twelfths { width: 83.333%; } /** * Eighths */ .palm-one-eighth { width: 12.5%; } .palm-three-eighths { width: 37.5%; } .palm-five-eighths { width: 62.5%; } .palm-seven-eighths { width: 87.5%; } /** * Tenths */ .palm-one-tenth { width: 10%; } .palm-three-tenths { width: 30%; } .palm-seven-tenths { width: 70%; } .palm-nine-tenths { width: 90%; } /** * Twelfths */ .palm-one-twelfth { width: 8.333%; } .palm-five-twelfths { width: 41.666%; } .palm-seven-twelfths { width: 58.333%; } .palm-eleven-twelfths { width: 91.666%; } /** * Push none */ .push--palm-none { left: 0; } /** * Whole */ .push--palm-one-whole { left: 100%; } /** * Halves */ .push--palm-one-half, .push--palm-two-quarters, .push--palm-three-sixths, .push--palm-four-eighths, .push--palm-five-tenths, .push--palm-six-twelfths { left: 50%; } /** * Thirds */ .push--palm-one-third, .push--palm-two-sixths, .push--palm-four-twelfths { left: 33.333%; } .push--palm-two-thirds, .push--palm-four-sixths, .push--palm-eight-twelfths { left: 66.666%; } /** * Quarters */ .push--palm-one-quarter, .push--palm-two-eighths, .push--palm-three-twelfths { left: 25%; } .push--palm-three-quarters, .push--palm-six-eighths, .push--palm-nine-twelfths { left: 75%; } /** * Fifths */ .push--palm-one-fifth, .push--palm-two-tenths { left: 20%; } .push--palm-two-fifths, .push--palm-four-tenths { left: 40%; } .push--palm-three-fifths, .push--palm-six-tenths { left: 60%; } .push--palm-four-fifths, .push--palm-eight-tenths { left: 80%; } /** * Sixths */ .push--palm-one-sixth, .push--palm-two-twelfths { left: 16.666%; } .push--palm-five-sixths, .push--palm-ten-twelfths { left: 83.333%; } /** * Eighths */ .push--palm-one-eighth { left: 12.5%; } .push--palm-three-eighths { left: 37.5%; } .push--palm-five-eighths { left: 62.5%; } .push--palm-seven-eighths { left: 87.5%; } /** * Tenths */ .push--palm-one-tenth { left: 10%; } .push--palm-three-tenths { left: 30%; } .push--palm-seven-tenths { left: 70%; } .push--palm-nine-tenths { left: 90%; } /** * Twelfths */ .push--palm-one-twelfth { left: 8.333%; } .push--palm-five-twelfths { left: 41.666%; } .push--palm-seven-twelfths { left: 58.333%; } .push--palm-eleven-twelfths { left: 91.666%; } /** * Whole */ .pull--palm-one-whole { right: 100%; } /** * Halves */ .pull--palm-one-half, .pull--palm-two-quarters, .pull--palm-three-sixths, .pull--palm-four-eighths, .pull--palm-five-tenths, .pull--palm-six-twelfths { right: 50%; } /** * Thirds */ .pull--palm-one-third, .pull--palm-two-sixths, .pull--palm-four-twelfths { right: 33.333%; } .pull--palm-two-thirds, .pull--palm-four-sixths, .pull--palm-eight-twelfths { right: 66.666%; } /** * Quarters */ .pull--palm-one-quarter, .pull--palm-two-eighths, .pull--palm-three-twelfths { right: 25%; } .pull--palm-three-quarters, .pull--palm-six-eighths, .pull--palm-nine-twelfths { right: 75%; } /** * Fifths */ .pull--palm-one-fifth, .pull--palm-two-tenths { right: 20%; } .pull--palm-two-fifths, .pull--palm-four-tenths { right: 40%; } .pull--palm-three-fifths, .pull--palm-six-tenths { right: 60%; } .pull--palm-four-fifths, .pull--palm-eight-tenths { right: 80%; } /** * Sixths */ .pull--palm-one-sixth, .pull--palm-two-twelfths { right: 16.666%; } .pull--palm-five-sixths, .pull--palm-ten-twelfths { right: 83.333%; } /** * Eighths */ .pull--palm-one-eighth { right: 12.5%; } .pull--palm-three-eighths { right: 37.5%; } .pull--palm-five-eighths { right: 62.5%; } .pull--palm-seven-eighths { right: 87.5%; } /** * Tenths */ .pull--palm-one-tenth { right: 10%; } .pull--palm-three-tenths { right: 30%; } .pull--palm-seven-tenths { right: 70%; } .pull--palm-nine-tenths { right: 90%; } /** * Twelfths */ .pull--palm-one-twelfth { right: 8.333%; } .pull--palm-five-twelfths { right: 41.666%; } .pull--palm-seven-twelfths { right: 58.333%; } .pull--palm-eleven-twelfths { right: 91.666%; } } @charset "UTF-8";@font-face{font-family:"FuturaBT-Book";src:url("/Sites/SHOF/Static/Sites/SHOF/Static/Fonts/2B5439_0_0.eot");src:url("/Sites/SHOF/Static/Fonts/2B5439_0_0.eot") format("embedded-opentype"),url("/Sites/SHOF/Static/Fonts/2B5439_0_0.woff") format("woff"),url("/Sites/SHOF/Static/Fonts/2B5439_0_0.ttf") format("truetype"),url("/Sites/SHOF/Static/Fonts/2B5439_0_0.svg") format("svg");font-weight:normal;font-style:normal;}@font-face{font-family:"FuturaBT-Medium";src:url("/Sites/SHOF/Static/Fonts/2B5439_1_0.eot");src:url("/Sites/SHOF/Static/Fonts/2B5439_1_0.eot#iefix") format("embedded-opentype"),url("/Sites/SHOF/Static/Fonts/2B5439_1_0.woff") format("woff"),url("/Sites/SHOF/Static/Fonts/2B5439_1_0.ttf") format("truetype"),url("/Sites/SHOF/Static/Fonts/2B5439_1_0.svg") format("svg");font-weight:normal;font-style:normal;}@font-face{font-family:"FuturaBT-Bold";src:url("/Sites/SHOF/Static/Fonts/312D54_0_0.eot");src:url("/Sites/SHOF/Static/Fonts/312D54_0_0.eot#iefix") format("embedded-opentype"),url("/Sites/SHOF/Static/Fonts/312D54_0_0.woff") format("woff"),url("/Sites/SHOF/Static/Fonts/312D54_0_0.ttf") format("truetype");font-weight:normal;font-style:normal;}@font-face{font-family:"FuturaBT-Light";src:url("/Sites/SHOF/Static/Fonts/FuturaBT-Light.eot");src:url("/Sites/SHOF/Static/Fonts/FuturaBT-Light.eot#iefix") format("embedded-opentype"),url("/Sites/SHOF/Static/Fonts/FuturaBT-Light.woff") format("woff"),url("/Sites/SHOF/Static/Fonts/FuturaBT-Light.ttf") format("truetype"),url("/Sites/SHOF/Static/Fonts/FuturaBT-Light.svg") format("svg");font-weight:normal;font-style:normal;}@font-face{font-family:"Lora";font-style:normal;font-weight:400;src:local("Lora Regular"),local("Lora-Regular"),url(https://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuMwf7I-NP.woff2) format("woff2");unicode-range:U+460-52F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:"Lora";font-style:normal;font-weight:400;src:local("Lora Regular"),local("Lora-Regular"),url(https://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuMw77I-NP.woff2) format("woff2");unicode-range:U+400-45F,U+490-491,U+4B0-4B1,U+2116;}@font-face{font-family:"Lora";font-style:normal;font-weight:400;src:local("Lora Regular"),local("Lora-Regular"),url(https://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuMwX7I-NP.woff2) format("woff2");unicode-range:U+102-103,U+110-111,U+1EA0-1EF9,U+20AB;}@font-face{font-family:"Lora";font-style:normal;font-weight:400;src:local("Lora Regular"),local("Lora-Regular"),url(https://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuMwT7I-NP.woff2) format("woff2");unicode-range:U+100-24F,U+259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:"Lora";font-style:normal;font-weight:400;src:local("Lora Regular"),local("Lora-Regular"),url(https://fonts.gstatic.com/s/lora/v12/0QIvMX1D_JOuMwr7Iw.woff2) format("woff2");unicode-range:U+0-FF,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:"icomoon";src:url("/Sites/SHOF/Static/Fonts/icomoon.eot?itmfoa");src:url("/Sites/SHOF/Static/Fonts/icomoon.eot?itmfoa") format("embedded-opentype"),url("/Sites/SHOF/Static/Fonts/icomoon.ttf?itmfoa") format("truetype"),url("/Sites/SHOF/Static/Fonts/icomoon.woff?itmfoa") format("woff"),url("/Sites/SHOF/Static/Fonts/icomoon.svg?itmfoa") format("svg");font-weight:normal;font-style:normal;}[class^=icon-],[class*=" icon-"]{position:relative;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;padding:0 0 0 20px;}[class^=icon-]:before,[class*=" icon-"]:before{font-family:"icomoon";position:absolute;top:0;right:0;bottom:0;left:0;display:block;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;margin:auto auto auto 0;font-size:14px;height:1em;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.icon-rotate:before{transform:rotate(45deg);-webkit-transform:rotate(45deg);}.icon-right{padding:0 20px 0 0;}.icon-left{padding:0 0 0 25px;margin-top:0;}.icon-right:before{left:auto;}.icon-pause:before{content:"";}.icon-microphone:before{content:"";}.icon-microphone-slash:before{content:"";}.icon-youtube-play:before{content:"";}.icon-menu:before{content:"";font-size:20px;}.icon-external-link:before{content:"";font-size:20px;}.icon-search:before{content:"";}.icon-close:before{content:"";}.icon-logo:before{content:"";}.icon-right:before{content:"";}.icon-right-arrow:before{content:"";}.icon-down-arrow:before{content:"";}.icon-right-filled:before{content:"";}.icon-uniE615:before{content:"";}.icon-document-inverted:before{content:"";}.icon-document:before{content:"";}.icon-word:before{content:"";}.icon-pdf:before{content:"";}.icon-share:before{content:"";}.icon-mail-circle:before{content:"";}.icon-print:before{content:"";}.icon-uniE622:before{content:"";}.icon-circle-arrow-right:before{content:"";}.icon-minus:before{content:"";}.icon-plus:before{content:"";}.icon-circle-arrow-right-inverted:before{content:"";}.c-article{font-family:"FuturaBT-Book";color:#000;}.c-article-content h1{margin-bottom:20px;}.c-article-content h2{text-transform:none;}.c-article-content a{font-weight:bold;color:#cf856c;}.c-article-content a:hover{color:#e1a693;}.c-article-content__author{font-family:"FuturaBT-Book";font-size:16px;margin-bottom:4px;font-weight:600;}.c-article-content__author+.c-article-content__date{margin-top:0;}.c-article-content__date{font-family:"FuturaBT-Book";font-size:16px;margin-bottom:10px;font-weight:500;}.c-article-content__ingress{font-family:"FuturaBT-Light";font-size:22px;margin-top:0;}.c-article-content .c-module-content{padding:20px;}.c-article-collection__module,.c-article-collection .c-module{font-family:"FuturaBT-Book";margin-bottom:20px;}.c-article-collection__module a.icon-right-arrow,.c-article-collection .c-module a.icon-right-arrow{padding:0 20px 0 0;}.c-article-collection__module a.icon-right-arrow:before,.c-article-collection .c-module a.icon-right-arrow:before{left:auto;}.c-article-collection__module .c-module-content__mainbody p,.c-article-collection .c-module .c-module-content__mainbody p{text-decoration:none;margin-top:0;margin-bottom:0;color:#696969;font-size:16px;font-weight:300;letter-spacing:-.5px;line-height:17px;}.c-article-collection__module h2,.c-article-collection .c-module h2{font-size:20px;font-family:"FuturaBT-Bold";margin:10px 0;}.c-article-collection__module__link,.c-article-collection .c-module__link{font-family:"FuturaBT-Bold";}.c-conference__heading{font-weight:bold;font-size:24px;margin-bottom:10px;}.c-conference__ingress{font-family:"FuturaBT-Book";font-size:22px;margin-top:0;}.c-conference-list{margin-bottom:40px;}.c-conference-list__icon{margin:0;position:absolute;right:20px;bottom:20px;}.c-conference-list__icon i:before{font-size:25px;text-align:right;color:#fff;}.c-conference-list__video{position:relative;padding-bottom:56.25%;padding-top:0;height:0;margin-bottom:10px;}.c-conference-list__video iframe{position:absolute;top:0;left:0;width:100%;height:100%;}.c-conference-list__video__play{position:absolute;right:20px;bottom:15px;z-index:10000;}.c-conference-list__video__play i:before{font-size:25px;color:#fff;}.c-conference-list__image{position:relative;}.c-conference-list__image--video{position:relative;margin-bottom:10px;}.c-conference-list__image--video img{position:absolute;z-index:100;}.c-conference-list__heading{font-weight:bold;font-size:16px;font-family:"FuturaBT-Bold";color:#000;text-decoration:none;margin-bottom:0;margin-top:10px;min-height:42px;}.c-conference-list__date{text-decoration:none;margin-top:0;margin-bottom:0;color:#696969;font-size:16px;font-weight:300;line-height:18px;letter-spacing:-.5px;}.c-conference-list__location{text-decoration:none;margin-top:0;margin-bottom:0;color:#696969;font-size:16px;font-weight:300;line-height:18px;margin-bottom:10px;letter-spacing:-.5px;}.c-conference-list__link{font-style:italic;font-weight:bold;font-size:16px;margin-bottom:20px;}.c-conference-list__link a{font-family:"Lora, serif";}.c-event-list a:hover .c-event-list-text__heading{color:#777;}.c-event-list ul{list-style:none;margin:0;padding:0;}.c-event-list ul>li{margin-bottom:15px;}.c-event-list ul>li.is-startpage{margin-bottom:0;}.c-event-list ul>li>a{display:inline-block;}.c-event-list ul a{display:block;}.c-event-list__image{float:left;width:100px;margin-right:20px;max-width:95px;max-height:95px;overflow:hidden;}.c-event-list-text{overflow:hidden;vertical-align:middle;color:#000;font-size:16px;}.c-event-list-text__published{font-weight:300;font-size:13px;margin-top:0;margin-bottom:5px;}.c-event-list-text__heading{font-weight:bold;margin-top:0;margin-bottom:5px;overflow:hidden;font-size:20px;}.c-event-list-text__heading:hover{color:#777;}.c-event-list-text__preamble{height:60px;margin:0;}.c-event-list-text__info{margin:0;}.c-event-list-text h2{margin:0;margin-bottom:5px;}.c-event-list-text h2:hover{color:#777;}.c-event-list--calendar__date{background:#1f2123;color:#fff;width:100px;height:80px;text-align:center;padding-top:20px;margin:0 20px 0 0;float:left;vertical-align:middle;font-size:40px;font-family:"FuturaBT-Book";}.c-event-list--calendar__date__month{font-size:16px;font-family:"FuturaBT-Book";color:#fff;line-height:15px;text-transform:uppercase;text-align:center;}@media screen and (max-width:860px){.c-event-list--calendar__date{width:70px;height:50px;padding-bottom:10px;padding-top:10px;font-size:30px;}}.c-event-list__link{font-size:20px;font-weight:bold;font-style:italic;}.c-event-list-teaser{padding:10px;margin-top:20px;}@media screen and (max-width:860px){.c-event-list-teaser{margin-top:0;}}.c-event-list-teaser ul{margin-bottom:10px;}.c-event-list-teaser ul li{padding:10px;display:inline-block;}.c-event-list-teaser h3{padding:10px;margin-bottom:0;}.c-event-list-teaser .link{padding:10px;}.c-event-list-teaser .link:hover{background-color:transparent;}.c-event-list-teaser .c-event-list-text__heading{font-weight:300;font-size:20px;white-space:normal;}.c-event-list-teaser .c-event-list-text__published{color:#676767;font-size:18px;}.c-event-list-teaser a:hover{background-color:#fdd9cd;}.c-event-list--rose{background-color:#fdd9cd;}.c-event-list--white{background-color:#fff;}.c-event-list--black{background-color:#000;}.c-event-list--black .c-module-content{color:#fff;}.c-event-list--black .c-module-content__heading{color:#fff;}.c-event-list--grey{background-color:#f2f2f2;}.c-event-list--transparent{background-color:transparent;}.c-event-list--lightrose{background-color:rgba(253,217,205,.6);}.c-footer{margin:40px 20px;text-align:left;}.c-footer .c-navigation{margin-bottom:40px;border-bottom:1px solid #000;padding-bottom:40px;}@media screen and (max-width:860px){.c-footer{margin:0;border:0;padding:40px;}.c-footer .c-navigation{display:none;}}.c-footer-info{color:#777;font-size:21px;}.c-footer-info p{display:inline-block;padding:0 20px;margin-top:0;margin-bottom:10px;margin-right:-6px;border-right:1px solid #777;}.c-footer-info a:hover{text-decoration:none;}.c-footer-info__email{display:inline-block;padding:0 20px;margin-top:0;margin-bottom:10px;margin-right:-6px;border-right:1px solid #777;}.c-footer-info__tel{padding:0 20px;}@media screen and (max-width:860px){.c-footer-info p{display:block;border-right:0;}}.c-footer-social{padding:10px;margin-top:20px;}.c-footer-social__icon{margin-right:10px;font-size:30px;}.c-footer-social__icon:hover{text-decoration:none;}.c-form input[type=text]{display:block;width:100%;padding:5px;border:1px solid #ccc;}.c-form .Form__Element .FormTextbox{width:75%;margin:10px 0;}.c-form .Form__Element__Caption{display:block;margin-bottom:5px;}.c-form .Form__Element .FormChoice{margin:20px 0;}.c-form .Form__Element .FormChoice .Form__Element__Caption{margin:10px 0;}.c-form .Form__Element .FormChoice input[type=radio],.c-form .Form__Element .FormChoice input[type=checkbox]{opacity:0;width:0;height:0;margin:0;padding:0;}.c-form .Form__Element .FormChoice input[type=checkbox]:checked+label:before{position:absolute;font:18px/1 "Open Sans",sans-serif;left:5px;top:0;content:"⅃";transform:rotate(40deg);}.c-form .Form__Element .FormChoice label{margin-bottom:5px;-webkit-appearance:none;-moz-appearance:none;appearance:none;display:inline-block;position:relative;background-color:#ccc;color:#fff;top:10px;height:20px;width:20px;cursor:pointer;margin-right:7px;outline:0;border:1px solid #ccc;}.c-form .Form__Element .FormChoice input[type=checkbox]:focus+label{border:1px solid #4d90fe;box-shadow:0 0 2px #4d90fe;}.c-form .Form__Element .FormChoice input[type=checkbox]:checked+label{background-color:#000;border-color:#000;}.c-form .Form__Element .FormSelection{margin:10px 0;}.c-form .Form__Element .FormSelection select{font-family:"FuturaBT-Book";}.c-form .Form__Element__ValidationError{color:#f00;}.c-form td{padding-bottom:10px;}.c-form button,.c-form input.button{background-color:#000;color:#fff;border-style:none;padding:10px 20px;border-radius:1px;margin:10px 0;cursor:pointer;font-family:"FuturaBT-Book";font-size:16px;}.c-form button:hover,.c-form input.button:hover{background-color:rgba(0,0,0,.6);}.c-header{padding:40px 0;position:relative;text-align:center;border-bottom:1px solid #000;}@media screen and (max-width:1024px){.c-header{border:0;background:#f2f2f2 url(/Sites/SHOF/Static/Images/shof-background.png);background-size:100vw;text-align:left;position:fixed;right:0;left:0;top:0;z-index:1000000;border-bottom:1px solid #000;display:flex;padding:20px;}}.c-header.--startpage{border-bottom:0!important;}.c-header-logo{margin:auto;display:inline-block;}@media screen and (max-width:1024px){.c-header-logo{width:130px;margin:0 auto;display:inline-flex;}}.c-header-logo img{vertical-align:middle;}.c-header-menu{position:absolute;top:20px;right:0;}.c-header-menu--portable{display:inline-flex;}.c-header-menu--portable .menu,.c-header-menu--portable .menu::before,.c-header-menu--portable .menu::after,.c-header-menu--portable .menu.active .menu,.c-header-menu--portable .menu.active .menu::before,.c-header-menu--portable .menu.active .menu::after{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}.c-header-menu--portable .menu{width:30px;margin:10px 0;position:relative;border-top:4px solid #303030;display:block;}.c-header-menu--portable .menu::before,.c-header-menu--portable .menu::after{content:"";display:block;background:#303030;height:4px;width:30px;position:absolute;top:-12px;-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);-ms-transform-origin:13%;-webkit-transform-origin:13%;transform-origin:13%;}.c-header-menu--portable .menu::after{top:4px;}.c-header-menu--portable.active .menu{border-top:4px solid transparent;}.c-header-menu--portable.active .menu::before{-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);}.c-header-menu--portable.active .menu::after{-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);}.c-header-menu a{display:none;}.c-header-menu a.visible{display:inline;}.c-header-menu .icon-menu{padding:0 0 0 33px;}.c-header-menu .icon-menu:before{font-size:20px;}.c-header-menu .icon-close{padding:0 0 0 28px;}.c-header-menu .icon-close:before{font-size:28px;}.c-header-fill{display:none;}@media screen and (max-width:1024px){.c-header-fill{display:block;margin-top:70px;}}.c-header-search{position:absolute;top:20px;right:50px;}@media screen and (max-width:1024px){.c-header-search{display:inline-flex;position:unset;}}.c-header-search a{padding:0 0 0 30px;}.c-header-search a:before{font-size:30px;}.c-video{position:absolute;top:0;left:0;width:100%;height:100%;}.c-video__wrapper{position:relative;padding-bottom:56.25%;height:0;background:#eee;margin-bottom:16px;}.c-hero{margin:20px 0;font-size:0;}@media screen and (max-width:860px){.c-hero{margin:0;height:300px;}}.c-hero-wrapper{position:relative;height:100%;}.c-hero--white{color:#fff;background-color:#000;}.c-hero--white .c-hero__image{opacity:.4;}.c-hero--white a{color:#fff;text-decoration:none;}.c-hero--black{color:#000;}.c-hero--black .c-hero__image--filter{display:none;}.c-hero__image{width:100%;}@media screen and (max-width:860px){.c-hero__image{height:100%;width:100%;object-fit:cover;}}.c-hero-content{position:absolute;top:0;bottom:0;left:0;right:0;text-align:center;color:inherit;padding-top:100px;font-weight:300;font-size:16px;}.c-hero-content__heading{font-size:52px;}@media screen and (max-width:860px){.c-hero-content{padding:20px;}.c-hero-content__heading{font-size:28px;}}.c-map{min-height:365px;padding:10px 1.4em;color:#231f20;background:#fdd9cd;}.c-map__text{margin:0;padding:20px;}.c-module{margin-bottom:20px;}@media screen and (max-width:860px){.c-module{margin-left:20px;margin-right:20px;}.c-module img{width:100%;}}.c-module--rose{background-color:#fdd9cd;}.c-module--white{background-color:#fff;}.c-module--black{background-color:#000;}.c-module--black .c-module-content{color:#fff;}.c-module--black .c-module-content__heading{color:#fff;}.c-module--grey{background-color:#f2f2f2;}.c-module--transparent{background-color:transparent;}.c-module--lightrose{background-color:rgba(253,217,205,.6);}.c-module-image{padding:0;}.c-module--quote{background-image:url("/Sites/SHOF/Static/Images/quote_black.svg");background-repeat:no-repeat;background-position:48px 57px;padding:64px 24px 24px;background-size:40px 30px;background-position:30px 35px;}.c-module--quote.is-startpage{background-size:62px 46px;background-position:36px 25px;padding:110px 24px;}@media screen and (max-width:860px){.c-module--quote{background-position:24px 24px!important;background-size:46px 34px!important;padding:55px 35px!important;}}.one-half .c-module--quote{background-position:24px 24px!important;background-size:46px 34px!important;padding:55px 35px!important;}@media screen and (max-width:640px){.c-module--quote{background-position:10px 10px!important;background-size:26px 20px!important;padding:24px 24px 10px!important;}}.one-third .c-module--quote{background-position:13px 13px!important;background-size:26px 20px!important;padding:24px 24px 10px!important;}.c-module--right .c-module--quote{background-position:13px 13px!important;background-size:26px 20px!important;padding:18px 0 0!important;}.c-module--quote.c-module--black{background-image:url("/Sites/SHOF/Static/Images/quote_white.svg");}.c-module--quote .c-module-content{max-width:1064px;margin:auto;}.c-module-content{padding:10px 0;}.c-module-content a{display:block;}.c-module-content a.link:hover{color:#777;}.c-module-content__heading{font-weight:bold;font-size:16px;font-family:"FuturaBT-Bold";color:#000;text-decoration:none;margin-bottom:0;}.c-module-content__heading__date{font-family:"FuturaBT-Book";font-size:12px;font-weight:normal;text-align:right;}.c-module-content__mainbody{word-break:break-word;}.c-module-content__mainbody p{margin:10px 0;}.c-module-content__mainbody a{color:inherit;font-weight:bold;}.c-module-content__mainbody a:hover{color:#777;}.c-module-content__mainbody ul{margin:0;padding:0 20px;font-family:"FuturaBT-Book";}.c-module-content__mainbody a[href$=".pdf"]{position:relative;padding:0 0 0 20px;}.c-module-content__mainbody a[href$=".pdf"]:before{content:"";font-family:"icomoon";position:absolute;top:0;right:0;bottom:0;left:0;display:block;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;margin:auto auto auto 0;font-size:14px;height:1em;width:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.c-module-content__ingress{text-decoration:none;margin-top:0;margin-bottom:0;color:#696969;font-size:16px;font-weight:300;letter-spacing:-.5px;line-height:17px;}.c-module-content__link{margin-top:15px;}.c-module-content__quote{font-family:"FuturaBT-Book";font-style:italic;font-weight:600;letter-spacing:-.025em;font-size:24px;line-height:30px;}.is-startpage .c-module-content__quote{font-size:52px;line-height:59px;}.c-module-content__author{font-family:"FuturaBT-Book";font-style:normal;font-weight:600;font-size:16px;line-height:21px;}.c-module-content__quote+.c-module-content__author{margin-top:32px;}@media screen and (max-width:860px){.c-module-content__quote+.c-module-content__author{margin-top:24px;}}.one-half .c-module-content__quote+.c-module-content__author{margin-top:24px;}@media screen and (max-width:640px){.c-module-content__quote+.c-module-content__author{margin-top:16px!important;}}.one-third .c-module-content__quote+.c-module-content__author,.c-module--right .c-module-content__quote+.c-module-content__author{margin-top:16px;}.c-module--embed{position:relative;width:100%;height:0;padding-bottom:56.27198%;}.c-module--embed iframe{position:absolute;top:0;left:0;width:100%;height:100%;}.c-module--embed img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}.c-module--embed__play-icon{display:none;}.c-module--embed__play-icon>svg{position:absolute;width:64px;height:48px;top:50%;left:50%;transform:translate(-50%,-50%);}.c-module--embed .cookieconsent-overlay{position:absolute;bottom:0;left:0;width:100%;padding:10px 0;background:#fdd9cd;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:10px;}.c-module--embed .cookieconsent-overlay span{text-align:center;}.c-module--embed .cookieconsent-overlay a{color:#000;font-weight:600;}.c-module--link-list ul{padding:0;list-style:none;}.c-module--link-list ul li{padding-bottom:5px;}.c-module--link-list ul li a.selected{color:#ffc0cb;}.c-module [data-form-id] main form table{width:100%!important;}.c-module [data-form-id] main form table th{padding:0!important;}.c-module [data-form-id] main form table th [data-editorblocktype]{padding:0 0 20px 0;}.c-module [data-form-id] main form table th [data-editorblocktype=About]{display:none;}@media screen and (max-width:860px){.c-module--right .c-module{margin-top:20px;}}.c-module--right .c-module-content{padding:20px;}.c-navigation__items{margin:0;padding:0;}.c-navigation__item{display:block;font-family:"FuturaBT-Book";font-weight:300;font-size:21px;}.c-navigation__link{text-decoration:none;font-size:20px;font-weight:300;letter-spacing:-.58px;line-height:26px;display:inline-block;margin:5px 0;text-underline-offset:3px;}.c-navigation__link:hover{text-decoration:underline;color:#000;}.c-navigation__link.is-selected{text-decoration:underline;}.c-navigation>.c-navigation__items::after{content:"";display:table;clear:both;}.c-navigation>.c-navigation__items>.c-navigation__item{width:16.666%;float:left;padding:0 0 0 20px;box-sizing:border-box;}.c-navigation>.c-navigation__items>.c-navigation__item>.c-navigation__link{padding:10px 0;line-height:32px;padding:0;font-family:"FuturaBT-Bold";font-weight:bold;font-size:24px;}.c-navigation-main{position:absolute;width:100%;height:100vh;overflow:auto;z-index:100000;margin-top:41px;background-color:rgba(242,242,242,.98);visibility:hidden;opacity:0;transform:translateY(-1em);transition:all .3s ease-in-out 0s,visibility 0s linear .3s,z-index 0s linear .01s;}.c-navigation-main.visible{visibility:visible;opacity:1;z-index:100000;transform:translateY(0%);transition-delay:0s,0s,.3s;}.c-navigation-main__content{max-width:1367px;margin:0 auto;padding:20px;text-align:left;height:75vh;overflow-y:auto;}.c-navigation-main-quicklinks{text-align:right;padding:0 20px;}.c-navigation-main-quicklinks ul{list-style:none;margin:0;padding:0;}.c-navigation-main-quicklinks ul li{display:inline-block;padding:0 10px;font-family:"FuturaBT-Book";font-weight:300;font-size:24px;letter-spacing:-.58px;line-height:31px;}.c-navigation-main-quicklinks ul li:not(:first-child){border-left:1px solid #7a7a7a;}.c-navigation-main-quicklinks ul li a{color:#000;text-decoration:none;padding:0;margin:0;text-underline-offset:3px;}.c-navigation-main-quicklinks ul li a:hover{text-decoration:underline;}.c-navigation-main-quicklinks ul li.is-selected a{text-decoration:underline;}.c-navigation-sub{padding-top:1px;}.c-navigation-sub a{display:block;text-decoration:none;}.c-navigation-sub a.icon-right-arrow:before,.c-navigation-sub a.icon-down-arrow:before{left:auto;}.c-navigation-sub a.is-selected{font-weight:bold;}.c-navigation-sub .is-expanded>a{font-weight:bold;}.c-navigation-sub__parentlink{margin-bottom:20px;font-size:18px;text-transform:uppercase;font-weight:bold;font-family:"FuturaBT-Bold";}.c-navigation-sub__parentlink:hover{color:#000;}.c-navigation-sub ul{list-style:none;padding:0;margin:0;}.c-navigation-sub ul li{font-family:"FuturaBT-Book";font-weight:400;font-size:20px;}.c-navigation-sub ul li a{padding:10px 0;color:#000;}.c-navigation-sub ul li a:hover{font-weight:bold;}.c-navigation-sub ul li ul>li a{padding-left:20px;font-size:17px;}.c-navigation-sub ul li ul>li a.icon-right-arrow:before,.c-navigation-sub ul li ul>li a.icon-down-arrow:before{color:#777;}.c-navigation-sub ul li ul>li ul>li>a{padding-left:30px;}.c-navigation-sub ul li ul>li ul>li ul>li>a{padding-left:40px;}.c-navigation-portable{position:fixed;width:100%;height:100%;background:rgba(242,242,242,.98);left:0;top:66px;display:none;z-index:1000000;overflow:scroll;}.c-navigation-portable__item{position:relative;}.c-navigation-portable__item.is-expanded>.c-navigation-portable__level{display:block;}.c-navigation-portable__item.is-selected>a{font-weight:bold;}.c-navigation-portable ul{list-style:none;margin:0;padding:0;}.c-navigation-portable ul a{padding:10px 20px;display:inline-block;text-decoration:none;}.c-navigation-portable>ul{background-color:rgba(242,242,242,.98);}.c-navigation-portable>ul>li{font-size:18px;}.c-navigation-portable>ul>li ul{background-color:#fef6f3;}.c-navigation-portable>ul>li ul a{color:#3a3a3a;}.c-navigation-portable>ul>li ul a:before{color:#7b7b7b;}.c-navigation-portable>ul>li ul>li{text-transform:none;font-size:15px;}.c-navigation-portable>ul>li ul>li>ul{background-color:#fff;}.c-navigation-portable>ul>li ul>li>ul>li{padding-left:20px;}.c-navigation-portable>ul>li ul>li>ul>li.is-selected{border-left:5px solid #000;}.c-navigation-portable__level{display:none;}.c-navigation-portable__level--1{display:block;}.c-navigation-portable__level>li{text-transform:uppercase;}.c-navigation-portable__level--2 li{border-bottom:1px solid #fff;}.c-navigation-portable__expander{position:absolute;right:0;}.c-navigation-portable__expander:before{content:"";font-family:"icomoon";position:absolute;top:5px;right:10px;display:block;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:10px;font-size:10px;height:10px;width:10px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;padding:10px;}.c-navigation-portable .is-expanded>.c-navigation-portable__expander:before{content:"";font-size:1px;}.c-navigation-portable__quicklinks a{color:#7a7a7a;font-size:16px;}.c-news-list h2{margin-bottom:15px;}.c-news-list a:hover .c-news-list-text__heading{color:#777;}.c-news-list ul{list-style:none;margin:0;padding:0;}.c-news-list ul li{padding:10px 0;}.c-news-list ul a{display:block;}.c-news-list__image{width:120px;font-size:0;margin:0 20px 0 0;display:inline-block;vertical-align:top;}.c-news-list-text{display:inline-block;width:calc(100% - 145px);vertical-align:top;color:#000;font-size:16px;}.c-news-list-text__published{font-weight:300;font-size:13px;margin-top:0;margin-bottom:5px;}.c-news-list-text__heading{font-weight:bold;margin-top:0;margin-bottom:5px;overflow:hidden;font-size:20px;}.c-news-list-text__preamble{margin:0;}.c-news-list-text h2{margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:5px;}@media screen and (max-width:480px){.c-news-list-text h2{white-space:normal;font-size:16px;}}@media screen and (max-width:480px){.c-news-list .c-news-list__image{width:auto!important;height:auto!important;display:block!important;float:none!important;margin:0 20px 15px 0!important;}.c-news-list .c-news-list-text{width:auto!important;display:block!important;}}.c-news-list-teaser{padding:10px;margin-top:20px;}@media screen and (max-width:860px){.c-news-list-teaser{margin-top:0;min-height:unset;}}.c-news-list-teaser ul{margin-bottom:10px;}.c-news-list-teaser ul li{padding:10px;display:inline-block;width:100%;}.c-news-list-teaser ul li:hover{background-color:#fdd9cd;}.c-news-list-teaser ul li:hover a{color:#777!important;}.c-news-list-teaser ul a{text-decoration:none;}.c-news-list-teaser h3{padding:10px;margin-bottom:0;}.c-news-list-teaser .link{padding:10px;}.c-news-list-teaser .c-news-list__image{width:100px;height:100px;font-size:0;margin:0 20px 0 0;display:inline-block;vertical-align:top;float:left;}.c-news-list-teaser .c-news-list-text__heading{font-weight:300;font-size:20px;white-space:normal;}.c-news-list-teaser .c-news-list-text__published{color:#676767;font-size:18px;}.c-news-list--rose{background-color:#fdd9cd;}.c-news-list--white{background-color:#fff;}.c-news-list--black{background-color:#000;}.c-news-list--black .c-module-content{color:#fff;}.c-news-list--black .c-module-content__heading{color:#fff;}.c-news-list--grey{background-color:#f2f2f2;}.c-news-list--transparent{background-color:transparent;}.c-news-list--lightrose{background-color:rgba(253,217,205,.6);}.c-page{margin-bottom:20px;}@media screen and (max-width:860px){.c-page{margin:0;}}.c-page-content{padding:20px;background-color:#f2f2f2;}.c-page-content--fullwidth{background-color:#f2f2f2;padding:40px 20px;}.c-page-section{padding-bottom:20px;border-bottom:1px solid #000;}@media screen and (max-width:860px){.c-page-section{margin:0;padding:0;border-bottom:2px solid #fff;}}.c-page-section:last-child{padding-bottom:40px;}.c-page-section--pad{padding-top:20px;}@media screen and (max-width:860px){.c-page-section--pad{padding:0;}}.c-page-breadcrumb{display:inline-block;margin-bottom:20px;font-family:"FuturaBT-Book";}.c-page-breadcrumb ul{list-style:none;margin:0;padding:0;}.c-page-breadcrumb ul>li{float:left;margin-right:8px;line-height:20px;color:#7a7a7a;}.c-page-breadcrumb ul>li.icon-right-arrow:before{font-size:7px;}.c-page-breadcrumb ul>li:not(:first-child){padding-left:15px;}.c-page-breadcrumb ul>li>a{color:inherit;color:#777;}.c-page-datapager{position:relative;padding:25px 0;border-top:1px solid #afb0b0;text-align:center;font-family:"FuturaBT-Book";font-size:14px;margin-top:20px;}.c-page-datapager__nextprev.icon-left-arrow{padding:0 0 0 14px;}.c-page-datapager__nextprev.aspNetDisabled{display:none;}.c-page-datapager__numeric-field a,.c-page-datapager__numeric-field span{display:inline-block;margin:0 10px;}.c-page-datapager__numeric-field a.current,.c-page-datapager__numeric-field span.current{font-weight:bold;}.c-page-datapager__nextprev{position:absolute;left:0;text-transform:uppercase;}.c-page-datapager__nextprev.icon-right-arrow{right:0;left:auto;padding:0 16px 0 0;font-family:"FuturaBT-Book";}.c-page-datapager__nextprev.icon-right-arrow:before{left:auto;font-size:11px;}.c-page-toolbar{padding:20px 20px 20px 0;text-align:center;margin-top:20px;}.c-page-toolbar a{margin-right:17px;}.c-page-toolbar a:before{font-size:30px;width:34px;}.c-page-toolbar a:hover{text-decoration:none;}.c-page-toolbar__addthis img{display:none;}.c-person-list{padding:20px 0;font-size:0;}.c-person-list__content{font-family:"FuturaBT-Book";font-size:16px;margin-bottom:20px;}@media screen and (max-width:480px){.c-person-list__content{padding-right:0;margin:20px 0;}}.c-person-list__content a:hover{text-decoration:none;display:block;}.c-person-list__content__heading{font-weight:bold;font-size:16px;font-family:"FuturaBT-Bold";color:#000;text-decoration:none;margin-bottom:0;}.c-person-list__content__heading:hover{color:#777;}.c-person-list__content__titel{text-decoration:none;margin-top:0;margin-bottom:0;color:#696969;font-size:16px;font-weight:300;letter-spacing:-.5px;line-height:17px;}.c-person-list__content__link{font-weight:bold;display:block;}.c-person-list__content__link:hover{color:#777;}.c-person__title{margin:10px 0;}.c-person__title p{margin:0;}.c-search-textbox-wrapper{display:table;padding:10px 0;border-bottom:1px solid #777;}.c-search-textbox-wrapper .search__clear{display:block;width:21px;}.c-search-textbox-wrapper .search__clear img{width:21px;height:21px;vertical-align:middle;}.c-search-textbox-wrapper .icon-search{padding:0 0 0 30px;}.c-search-textbox-wrapper .icon-search:before{font-size:30px;color:#777;}.c-search-textbox-wrapper .icon-search:hover{text-decoration:none;}.c-search-textbox-wrapper span{display:table-cell;width:100%;padding-left:10px;vertical-align:middle;}.c-search-textbox-wrapper input{line-height:22px;border:0;outline:0;background-color:transparent;font-family:"FuturaBT-Book";font-size:18px;color:#677178;width:100%;vertical-align:middle;}.c-search-textbox-wrapper__submit{margin:0;padding:0;-webkit-appearance:none;border:0;background-color:transparent;}.c-search-list{padding:0;margin:0;border-top:1px solid #afb0b0;}.c-search-list h2{margin:0;}.c-search-list li{list-style:none;}.c-search-list>li{padding:20px 0;}.c-search-list>li:not(:last-child){border-bottom:1px solid #afb0b0;}.c-search-list>li a:hover{text-decoration:none;}.c-search-list__image{display:inline-block;width:100px;vertical-align:top;}.c-search-list__image:hover{text-decoration:none;}.c-search-list__content{display:inline-block;vertical-align:top;padding:0 20px;max-width:calc(100% - 145px);}.c-search-list__content p{font-size:18px;}.c-search-list__date{margin-bottom:10px;margin-top:0;font-size:16px;font-family:"FuturaBT-Book";color:#888;}.c-search-list__filter{margin:20px 0 0;}.c-search-list__filter ul{list-style:none;margin:0;padding:0;}.c-search-list__filter li{display:inline-block;font-size:20px;padding-right:30px;margin-bottom:15px;}.c-search-list__filter li a{padding:5px 0;}.c-search-list__filter li a.selected{border-bottom:3px solid;font-weight:bold;}.c-search-list__filter li a:hover{border-bottom:3px solid;text-decoration:none;}.c-search-list__sort{margin-bottom:20px;}.c-search-list__sort__heading{display:inline-block;padding-right:10px;}.c-search-list__sort ul{list-style:none;padding:0;margin:0;display:inline-block;}.c-search-list__sort ul li{display:inline-block;padding:0 20px;font-size:16px;}.c-search-list__sort ul li:not(:last-child){border-right:1px solid;}.c-search-list__sort ul li a.selected{font-weight:bold;border-bottom:2px solid;}.c-search-list__sort ul li a:hover{border-bottom:2px solid;text-decoration:none;}.c-search-list__icon{background-color:#fdd9cd;color:#fff;width:100px;height:80px;padding-top:20px;margin:0 20px 0 0;float:left;vertical-align:middle;text-align:center;}.c-search-list__icon__type i:before{font-size:20px;}.c-search-quick{display:none;position:fixed;top:0;bottom:0;right:0;left:0;background-color:rgba(0,0,0,.9);z-index:1000000;}.c-search-quick__close{color:#fff;position:absolute;right:30px;top:9px;padding:0 0 0 40px;}.c-search-quick__close:before{font-size:30px;margin-top:5px;}.c-search-quick__close:hover{text-decoration:none;}@media screen and (max-width:1024px){.c-search-quick__close{right:12px;top:12px;}}.c-search-quick__wrapper{max-width:1367px;margin:0 auto;position:relative;padding:20px 40px;}@media screen and (max-width:1024px){.c-search-quick__wrapper{padding:20px;}}.c-search-quick__textbox{background-color:transparent;display:table;padding:200px 0 20px;border-bottom:1px solid #fff;}.c-search-quick__textbox .search__clear{display:block;width:21px;}.c-search-quick__textbox .search__clear img{width:21px;height:21px;vertical-align:middle;}.c-search-quick__textbox .icon-search{padding:0 0 0 30px;font-size:30px;height:1em;border:0;box-sizing:border-box;vertical-align:middle;display:inline-block;background-color:transparent;}.c-search-quick__textbox .icon-search:before{color:#fff;font-size:inherit;}.c-search-quick__textbox .icon-search:hover{text-decoration:none;}.c-search-quick__textbox span{display:table-cell;width:100%;padding-left:20px;}.c-search-quick__textbox span input{line-height:22px;border:0;outline:0;background-color:transparent;font-family:"FuturaBT-Book";font-size:22px;color:#fff;width:90%;vertical-align:middle;}@media screen and (max-width:480px){.c-search-quick__textbox span input{font-size:16px;}}.c-wif{padding-top:30px;}.c-wif .mapplic-pin{background-image:url("/Sites/SHOF/Static/Images/WIFUnivesityPin.png");background-color:transparent!important;width:32px;height:32px;margin-top:-16px;margin-left:-16px;background-size:contain;border-radius:0;}.c-wif .mapplic-level-switcher{display:none;}.c-wif .mapplic-tooltip:after{border-color:#141414 transparent transparent transparent!important;}.c-wif .mapplic-tooltip-wrap{background:#141414;}.c-wif .mapplic-tooltip-body{padding:10px 12px!important;}.c-wif .mapplic-tooltip-title{margin:0 0 8px 0!important;font-family:"FuturaBT-medium";font-weight:700;font-size:16px;line-height:20px;color:#fff;}.c-wif .mapplic-tooltip-content{margin-right:0;margin-bottom:0;max-height:none;margin-top:0!important;}.c-wif .mapplic-tooltip-description{max-height:400px;}.c-wif .mapplic-tooltip-description ul{margin:0;padding:0;}.c-wif .mapplic-tooltip-description ul+ul{margin-top:16px;}.c-wif .mapplic-tooltip-description li{margin-top:4px;display:flex;font-family:"FuturaBT-medium";font-weight:normal;font-size:12px;line-height:14px;color:#fff;}.c-wif .mapplic-tooltip-description li>strong{color:#fff;}.c-wif .mapplic-tooltip-description li>.icon{background-image:url("/Sites/SHOF/Static/Images/WIFUnivesityHat.png");background-size:contain;background-position:center;display:block;width:17px;height:13px;margin-right:5px;}.c-wif .mapplic-tooltip-description li>.text{flex:1;}.c-wif .mapplic-tooltip-close{right:29px;top:-11px;}.c-wif .mapplic-tooltip-close .mapplic-icon-cross{background-color:transparent!important;fill:white!important;width:12px!important;height:12px!important;}.c-wif .mapplic-hovertip .mapplic-tooltip-wrap{padding:3px 8px;}.c-wif .mapplic-hovertip .mapplic-tooltip-title{font-family:"FuturaBT-Book";font-size:10px;font-weight:normal;line-height:16px;}.c-wif__teasers{margin-bottom:12px;}.c-wif__teasers .c-teaser{margin-top:0;margin-bottom:20px;}.c-wif__btn{display:block;width:100%;border:0;margin-top:8px;max-width:394px;background:#000;color:#fff;max-width:394px;padding:19px 0 20px;text-align:center;font-family:"FuturaBT-medium";font-weight:700;font-size:20px;line-height:19.89px;}@media screen and (max-width:860px){.c-wif__btn{max-width:none;}}.c-wif--white{padding:24px;background:#fff;}.c-wif--pink{padding:24px;background:#f7dbcf;}.c-wif__block{border-top:1px solid #000;margin-top:30px;}.c-wif__chart{display:flex;align-items:center;margin-top:34px;margin-left:0;}@media screen and (max-width:860px){.c-wif__chart{display:block;width:100%;}}.c-wif__chart__pie{position:relative;height:312px!important;width:312px!important;padding-left:0;}@media screen and (max-width:860px){.c-wif__chart__pie{margin:auto;height:auto!important;width:auto!important;}}.c-wif__chart__legends{padding-left:56px;}@media screen and (max-width:860px){.c-wif__chart__legends{margin:auto;margin-top:25px;padding-left:0;}}.c-wif__chart__legends ul{list-style:none;margin:0;padding:0;}@media screen and (max-width:860px){.c-wif__chart__legends ul{display:flex;justify-content:center;flex-wrap:wrap;}}.c-wif__chart__legends ul li{display:flex;margin:0;padding:0;font-family:"FuturaBT-Book";font-weight:700;font-size:16px;line-height:21.25px;}.c-wif__chart__legends ul li:not(:last-child){margin-bottom:19px;}@media screen and (max-width:860px){.c-wif__chart__legends ul li:not(:last-child){margin-bottom:19px;}}.c-wif__chart__legends ul li span{display:inline-block;width:21px;height:21px;margin-right:14px;}.c-wif__content{margin-left:16px;}@media screen and (max-width:860px){.c-wif__content{margin-left:0;}}.c-wif__content__download__row{display:flex;align-items:center;padding:13px 0;font-family:"FuturaBT-medium";font-style:normal;font-weight:500;font-size:16px;line-height:21px;}.c-wif__content__download__row:first-child{padding-top:0;}.c-wif__content__download__row:not(:last-child){border-bottom:1px dashed #000;}.c-wif__content__download__row:hover{color:#000;}.c-wif__content__download__row:hover span{text-decoration:underline;}.c-wif__content__download__row>span{flex:1;}.c-wif__content__download__row>img{width:29px;height:29px;}.c-wif__heading{font-family:"FuturaBT-medium";font-weight:500;font-size:52px;line-height:60.94px;}.c-wif__preamble{margin-top:24px;font-family:"FuturaBT-medium";font-weight:500;font-size:24px;line-height:23.87px;}.c-wif__selectfile{margin-top:24px;font-family:"FuturaBT-medium";font-weight:700;font-size:16px;line-height:15.91px;}.c-wif__dropdown{margin-top:16px;display:block;width:100%;max-width:394px;padding:10px 15px 11px;height:38px;border:0;background:#fff;color:#000;-webkit-appearance:none;-moz-appearance:none;text-indent:1px;text-overflow:"";position:relative;background-image:url(/Sites/SHOF/Static/Images/arrow-down.png);background-size:12px 9px;background-position:right 10px center;background-repeat:no-repeat;}@media screen and (max-width:860px){.c-wif__dropdown{max-width:none;}}.c-wif__dropdown::before{content:"";width:12px;height:9px;position:absolute;right:0;top:0;background-position:center;}.c-wif__dropdown::-ms-expand{display:none;}.c-wif__info{font-family:"FuturaBT-medium";margin-top:30px;max-width:640px;}.c-wif__info--right{text-align:right;}.c-wif__barchart__legends{display:flex;margin-top:50px;}.c-wif__barchart__legends__spacer{width:230px;}@media screen and (max-width:860px){.c-wif__barchart__legends__spacer{display:none;}}.c-wif__barchart__legends i{display:block;width:103px;height:20px;margin-bottom:8px;}.c-wif__barchart__legends span{font-family:"FuturaBT-medium";font-size:20px;line-height:23.44px;}.c-wif__barchart__legends span:first-of-type>i{background:#f7dbcf;}.c-wif__barchart__legends span:last-of-type>i{background:#fff;}.c-wif__statistics-row{display:flex;}.c-wif__statistics-row:not(:last-child){margin-bottom:25px;}.c-wif__statistics-row__text{flex:1;font-family:"FuturaBT-Book";font-weight:700;font-size:20px;line-height:26.56px;}.c-wif__statistics-row__value{color:#ababab;font-family:"FuturaBT-Book";font-weight:700;font-size:23px;line-height:31.9px;}.c-wif__map{margin-top:32px;position:relative;}@media screen and (max-width:1024px){.c-wif__map .c-wif__info{font-family:"FuturaBT-medium";font-size:16px;line-height:19px;}}.c-wif__map__number{width:auto;text-align:right;flex:none!important;padding-right:5px;color:#aaa!important;}.c-wif__map__switch{background:#fff;margin-bottom:25px;display:flex;}@media screen and (max-width:1024px){.c-wif__map__switch{margin-left:-20px;margin-right:-20px;margin-bottom:16px;}}.c-wif__map__switch__link{font-family:"FuturaBT-medium";font-size:20px;line-height:27px;color:#aaa;padding:13px 20px 15px;display:block;border-right:1px solid #dfdfdf;}@media screen and (max-width:860px){.c-wif__map__switch__link{flex:1;text-align:center;}.c-wif__map__switch__link:last-child{border-right:0;}}.c-wif__map__switch__link:hover{text-decoration:underline;}.c-wif__map__switch__link.active{pointer-events:none;text-decoration:underline;color:#000;position:relative;background:#f7dbcf;}.c-wif__map__switch__link.active::after{content:"";position:absolute;left:calc(50% - 4px);top:100%;width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #f7dbcf;clear:both;}.c-wif__map__heading{font-family:"FuturaBT-medium";font-size:24px;line-height:23.44px;}.c-wif__map__container{display:flex;height:604px;}@media screen and (max-width:1024px){.c-wif__map__container{height:auto;height:1208px;}.c-wif__map__container--half{height:604px;}}.c-wif__map__mapplic{width:calc(100% + 24px);height:100%!important;position:relative;display:flex;margin-left:-24px;}@media screen and (max-width:1024px){.c-wif__map__mapplic{height:auto!important;margin-left:0;flex-direction:column;width:auto;flex:1;margin:0 calc((100% - 100vw)/2);}}.c-wif__map__mapplic.mapplic-fullscreen{margin-left:0;}.c-wif__map__mapplic.mapplic-fullscreen>.mapplic-container{margin-left:0;}.c-wif__map__mapplic.mapplic-fullscreen>.mapplic-sidebar{margin-left:0;display:none;}.c-wif__map__mapplic__colors{display:flex;height:10px;}.c-wif__map__mapplic__colors__container{width:180px;position:absolute;top:20px;left:34px;z-index:10;background:rgba(255,255,255,.4784313725);padding:0 10px 10px;border-radius:5px;}@media screen and (max-width:1024px){.c-wif__map__mapplic__colors__container{left:14px;}}.c-wif__map__mapplic__colors__heading{font-family:"FuturaBT-bold";font-weight:700;font-size:16px;line-height:21.26px;margin-top:8px;margin-left:7px;}.c-wif__map__mapplic__color{flex:1;}.c-wif__map__mapplic__color--c0{background:#f7dbcf;}.c-wif__map__mapplic__color--c10{background:#edb198;}.c-wif__map__mapplic__color--c20{background:#e48860;}.c-wif__map__mapplic__color--c30{background:#db5e29;}.c-wif__map__mapplic__color--c40{background:#a6461c;}.c-wif__map__mapplic__color--c50{background:#6f2e13;}.c-wif__map__mapplic__percentages{display:flex;}.c-wif__map__mapplic__percentage{flex:1;text-align:center;font-family:"FuturaBT-medium";font-size:12px;line-height:14px;margin-top:4px;}.c-wif__map__mapplic>.mapplic-container{background:#fff;flex:1;margin-left:24px;width:50%;overflow:hidden;}@media screen and (max-width:1024px){.c-wif__map__mapplic>.mapplic-container{margin-left:0;width:100%;}}.c-wif__map__mapplic>.mapplic-container>.mapplic-fullscreen-button,.c-wif__map__mapplic>.mapplic-container>.mapplic-zoom-buttons{right:12px;left:auto;}.c-wif__map__mapplic>.mapplic-container>.mapplic-fullscreen-button{top:12px;}.c-wif__map__mapplic>.mapplic-sidebar{flex:1;margin-left:24px;padding:0;background:#fff;width:auto;}@media screen and (max-width:1024px){.c-wif__map__mapplic>.mapplic-sidebar{margin-left:0;max-height:604px;}}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-search-toggle,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-dim{display:none!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header{background:#fff;padding:0 12px;border-bottom:0;margin-top:14px;display:flex;flex-direction:row;box-shadow:none;max-width:640px;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header>div{flex:1;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header .mapplic-icon-magnifier{display:none;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header .mapplic-not-found{font-family:"FuturaBT-medium";font-weight:500;font-size:19px;line-height:27px;margin:0;}@media screen and (max-width:860px){.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header .mapplic-not-found{font-size:16px;line-height:19px;}}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header::before{content:"Ranking";font-family:"FuturaBT-medium";font-weight:700;font-size:24px;line-height:39px;margin-right:16px;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header input{background-image:url("/Sites/SHOF/Static/Images/search.png")!important;background-position:20px center!important;background-repeat:no-repeat!important;background-size:33px!important;font-family:"FuturaBT-Book";font-size:20px!important;line-height:23.44px;border:0!important;padding:5px 0 5px 59px!important;outline:0;border-left:1px solid #dfdfdf!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header .mapplic-filter{display:none;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-sidebar-header .mapplic-search-clear{right:10px;left:auto!important;top:12px;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container{list-style:none;margin:0;padding:0 12px;top:66px!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container.no-search{top:24px!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container.world1>[data-location^=world2]{display:none!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container.world2>[data-location^=world1]{display:none!important;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>a,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>div{background:#f2f2f2;padding:9px 12px 8px 12px;margin-bottom:7px;display:flex;}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>a>h4,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>div>h4{font-family:"FuturaBT-medium";font-weight:500!important;font-size:19px!important;line-height:27px!important;flex:1;}@media screen and (max-width:860px){.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>a>h4,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>div>h4{font-size:16px!important;line-height:19px!important;}}.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>a>span,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>div>span{font-family:"FuturaBT-medium";font-weight:700;font-size:24px;line-height:32px;color:#aaa;}@media screen and (max-width:860px){.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>a>span,.c-wif__map__mapplic>.mapplic-sidebar .mapplic-list-container>.mapplic-dir-item>div>span{font-size:20px;line-height:27px;}}.c-wif__contact{display:flex;margin-left:-32px;}.c-wif__contact__form{margin-top:24px;}.c-wif__contact__form__group{margin-top:50px;}.c-wif__contact__form__group--checkbox{margin-top:26px!important;margin-bottom:20px;}.c-wif__contact__form__group~.c-wif__contact__form__group{margin-top:14px;}.c-wif__contact__form__checkbox__label{display:flex;max-width:562px;font-family:"FuturaBT-Book";position:relative;}.c-wif__contact__form__checkbox__label .checkmark{width:15px;height:15px;background:#fff;position:absolute;top:3px;left:0;border:1px solid #000;}.c-wif__contact__form__checkbox__label .checkmark:after{content:"";position:absolute;display:none;left:4px;top:1px;width:5px;height:8px;border:solid #008000;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}.c-wif__contact__form__checkbox__label input{opacity:0;cursor:pointer;height:0;width:15px;}.c-wif__contact__form__checkbox__label input:checked~.checkmark:after{display:block;}.c-wif__contact__form__checkbox__label>span:last-child{flex:1;padding-left:8px;}.c-wif__contact__form__label{font-family:"FuturaBT-medium";font-weight:700;font-size:16px;line-height:16px;display:block;}.c-wif__contact__form__input{margin-top:14px;font-family:"FuturaBT-medium";font-weight:500;font-size:16px;line-height:16px;padding:0 12px;height:38px;width:calc(100% - 24px);border:0;}.c-wif__contact__form__validation{color:#f00;font-family:"FuturaBT-Book";letter-spacing:normal;margin-top:10px;display:block;}@media screen and (max-width:1024px){.c-wif__contact{display:block;margin-left:0;}}.c-wif__contact__part{margin-left:32px;flex:1;}@media screen and (max-width:1024px){.c-wif__contact__part{margin-left:0;}.c-wif__contact__part:first-child{margin-bottom:32px;}}.c-wif__contact__feedback{height:100%;display:flex;}@media screen and (max-width:1024px){.c-wif__contact__feedback{flex-direction:column;}}.c-wif__contact__feedback a{text-decoration:underline;}.c-wif__contact__feedback__top{flex:1;}@media screen and (max-width:1024px){.c-wif__contact__feedback__bottom{flex:1;}.c-wif__contact__feedback__bottom img{width:100%;}}.c-teaser{margin-top:20px;font-family:"FuturaBT-Book";position:relative;overflow:hidden;}@media screen and (max-width:860px){.c-teaser{margin-top:0;}}.c-teaser a:hover .link{color:#777;}.c-teaser--small{height:335px;}@media screen and (max-width:1024px){.c-teaser--small{height:271px;}}@media screen and (max-width:860px){.c-teaser--small{height:335px;}}@media screen and (max-width:480px){.c-teaser--small{min-height:230px;height:auto;}}.c-teaser--smaller{height:210px;}@media screen and (max-width:1024px){.c-teaser--smaller{height:271px;}}.c-teaser--rose{background-color:#fdd9cd;}.c-teaser--white{background-color:#fff;}.c-teaser--black{background-color:#000;color:#fff;}.c-teaser--transparent{background-color:#f2f2f2;}.c-teaser--lightrose{background-color:rgba(253,217,205,.6);}.c-teaser--media{background-color:#000;}.c-teaser.align-bottom .c-teaser-content__iframe--filter{position:absolute;background-image:linear-gradient(to bottom,rgba(255,255,255,0) 0,#000 100%);height:100%;}.c-teaser.align-bottom .c-teaser-content__image::after{position:absolute;background-image:linear-gradient(to bottom,rgba(255,255,255,0) 0,#000 100%);height:100%;}.c-teaser-content{padding:20px;color:#fff;height:calc(100% - 40px);display:flex;flex-direction:column;position:relative;}@media screen and (max-width:860px){.c-teaser-content{justify-content:space-between;}}.c-teaser-content h3{margin-bottom:0;text-transform:uppercase;letter-spacing:.1em;}.c-teaser-content--black{color:#000;}.c-teaser-content__category{text-transform:uppercase;font-weight:bold;font-size:20px;font-family:"FuturaBT-Bold";margin-bottom:5px;}.c-teaser-content__text{font-size:38px;line-height:42px;margin-bottom:10px;margin-top:10px;}@media screen and (max-width:480px){.c-teaser-content__text{font-size:30px;line-height:36px;}}.c-teaser-content__link{text-decoration:none;display:block;font-style:italic;font-weight:bold;padding-top:10px;}.c-teaser-content__image{position:absolute;inset:0;overflow:hidden;}.c-teaser-content__image img{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%;object-fit:cover;}.c-teaser-content__image::after{display:block;position:relative;background-image:linear-gradient(to top,rgba(255,255,255,0) 0,#000 100%);margin-top:0;height:190px;width:100%;content:"";}.c-teaser-content__image--nofilter::after{background-image:none;}.c-teaser-content--media{position:absolute;top:0;z-index:10;}@media screen and (max-width:480px){.c-teaser-content--media{position:relative;}}.c-teaser-content--media-bottom{justify-content:space-between;}.c-teaser-content__iframe{position:absolute;left:0;right:0;top:50%;padding-bottom:56.2%;margin-top:-28.1%;height:0;overflow:hidden;}.c-teaser-content__iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%;}.c-teaser-content__iframe--filter{position:absolute;top:0;display:block;background-image:linear-gradient(to top,rgba(255,255,255,0) 0,#000 100%);margin-top:0;height:190px;width:100%;content:"";}#CybotCookiebotDialog{background-color:#f1f1f1!important;color:#000!important;font-family:"FuturaBT-Book"!important;box-shadow:0 0 2rem rgba(0,0,0,.26)!important;padding:12px 24px!important;}#CybotCookiebotDialogTabContent input[type=checkbox][disabled]:checked+.CybotCookiebotDialogBodyLevelButtonSlider{background-color:#476a89!important;opacity:.4;}.CybotCookiebotDialogBodyButton{font-family:"FuturaBT-Bold"!important;width:200px!important;padding:.5rem!important;border-width:1px!important;}.CybotCookiebotScrollContainer{padding:0 .375em!important;}#CybotCookiebotDialog h2{font-family:"FuturaBT-Bold"!important;font-size:20px!important;}#CybotCookiebotDialogBodyButtonsWrapper{justify-content:center!important;}.CybotCookiebotDialogBodyBottomWrapper{align-items:center!important;justify-content:flex-end!important;margin-top:0!important;}#CybotCookiebotDialogBodyEdgeMoreDetails{position:relative!important;height:0!important;}#CybotCookiebotDialogBodyEdgeMoreDetailsLink{margin-right:25px!important;position:absolute!important;top:-24px!important;min-width:150px!important;justify-content:flex-end!important;}#CybotCookiebotDialogBodyEdgeMoreDetailsLink::after{height:.3em!important;margin-left:.4em!important;width:.3em!important;}#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails{margin:0!important;}#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonsWrapper{align-items:center;}@media screen and (min-width:1280px){#CybotCookiebotDialogBodyEdgeMoreDetails{align-self:end!important;}}@media screen and (max-width:1280px){.CybotCookiebotDialogBodyButton{width:100%!important;padding:.75rem!important;}}.c-subscribe{margin:0 20px;}.c-subscribe__header{padding:24px 30px 24px;display:flex;justify-content:space-between;align-items:center;}@media screen and (max-width:860px){.c-subscribe__header{padding:24px 0 24px;}}.c-subscribe__heading{font-family:"FuturaBT-Book";font-style:normal;font-weight:600;font-size:20px;line-height:30px;text-transform:uppercase;text-decoration:underline;}@media screen and (max-width:860px){.c-subscribe__heading{font-size:20px;line-height:28px;white-space:nowrap;}}.c-subscribe__toggler{background:#000;color:#fff;min-width:196px;font-family:"FuturaBT-Book";font-style:normal;font-weight:700;font-size:20px;line-height:27px;text-align:center;padding:14px;cursor:pointer;}.c-subscribe__toggler>.open{display:none;}.c-subscribe__toggler[aria-expanded=true]>.open{display:initial;}.c-subscribe__toggler[aria-expanded=true]>.closed{display:none;}@media screen and (max-width:860px){.c-subscribe__toggler{min-width:80px;padding:10px 14px;font-size:16px;line-height:20px;}}.c-subscribe__body{max-width:846px;margin:auto;margin-bottom:24px;display:none;}.c-subscribe__form{font-family:"FuturaBT-Book";}.c-subscribe__form__heading{font-family:"FuturaBT-Book";font-style:normal;font-weight:600;font-size:52px;line-height:69px;margin-bottom:40px;}.c-subscribe__form__label{display:block;font-family:"FuturaBT-Book";font-weight:700;font-size:16px;line-height:21px;}.c-subscribe__form__label.--big{font-size:24px;line-height:32px;margin-bottom:18px;margin-top:10px;}.c-subscribe__form__label.--checkbox{font-weight:600;font-size:14px;line-height:18px;display:inline-block;position:relative;padding-left:35px;margin-bottom:24px;margin-right:40px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.c-subscribe__form__label.--checkbox input{position:absolute;opacity:0;cursor:pointer;height:0;width:0;}.c-subscribe__form__label.--checkbox .checkmark{position:absolute;top:-3px;left:0;height:23px;width:23px;background-color:#fff;border:1px solid #000;}.c-subscribe__form__label.--checkbox:hover input~.checkmark{background-color:#eee;}.c-subscribe__form__label.--checkbox .checkmark:after{content:"";position:absolute;display:none;}.c-subscribe__form__label.--checkbox input:checked~.checkmark:after{display:block;}.c-subscribe__form__label.--checkbox .checkmark:after{left:8px;top:3px;width:6px;height:11px;border:solid #000;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}.c-subscribe__form__input{background:#fff;width:calc(100% - 40px);border:0;font-family:"FuturaBT-Book";font-size:17px;line-height:16px;margin-top:8px;margin-bottom:38px;padding:6px 18px;min-height:38px;}.c-subscribe__form__button{all:unset;padding:14px 60px;background:#000;color:#fff;font-weight:700;font-size:20px;line-height:27px;margin-top:24px;}@media screen and (max-width:860px){.c-subscribe__form__button{width:auto;padding:10px 14px;font-size:16px;line-height:20px;min-width:80px;}}body{max-width:1367px;margin:0 auto;background:#f2f2f2 url(/Sites/SHOF/Static/Images/shof-background.png);background-size:100vw auto;padding:0 20px;}@media screen and (max-width:860px){body{padding:0;}}@media screen and (max-width:1024px){body{margin-top:66px;}}body.noscroll{overflow:hidden;}body .scrollTop{width:60px;height:60px;padding:10px;text-align:center;background-color:rgba(253,217,205,.5);font-weight:bold;color:#444;text-decoration:none;position:fixed;bottom:90px;right:55px;display:none;border-radius:50%;}body .scrollTop i::before{margin-top:14px;margin-left:-2px;font-size:25px;}body .scrollTop:hover{text-decoration:none;}iframe{max-width:100%;}h1{font-size:52px;line-height:54px;font-weight:bold;margin-top:0;margin-bottom:20px;font-family:"FuturaBT-Book";}h2{font-size:24px;font-weight:bold;margin-top:0;margin-bottom:10px;font-family:"FuturaBT-Bold";}h3{font-size:20px;font-family:"FuturaBT-Bold";margin-top:0;margin-bottom:15px;}p{font-family:"FuturaBT-Book";letter-spacing:normal;margin-top:10px;}p.link{font-family:"Lora, serif";font-style:italic;font-weight:bold;font-size:18px;display:inline;}a{font-family:"FuturaBT-Book";color:inherit;text-decoration:none;}a:hover{color:#777;}a.link{font-family:"Lora, serif";font-style:italic;font-weight:bold;font-size:18px;display:inline-block;}hr{border:0;height:0;border-top:1px solid rgba(0,0,0,.8);margin-bottom:20px;}img{max-width:100%;}.u-hide{display:none!important;}.u-hide.is-active{display:block!important;}@media screen and (max-width:1024px){.u-hide\@lap{display:none!important;}.u-hide\@lap.is-active{display:block!important;}}@media screen and (min-width:1025px){.u-hide\@lap-and-up{display:none!important;}.u-hide\@lap-and-up.is-active{display:block!important;}}@media screen and (min-width:861px){.u-hide\@portable-and-up{display:none!important;}.u-hide\@portable-and-up.is-active{display:block!important;}}@media screen and (max-width:860px){.u-hide\@portable{display:none!important;}.u-hide\@portable.is-active{display:block!important;}}@media screen and (max-width:640px){.u-hide\@phablet{display:none!important;}.u-hide\@phablet.is-active{display:block!important;}}@media screen and (max-width:480px){.u-hide\@palm{display:none!important;}.u-hide\@palm.is-active{display:block!important;}}@media screen and (min-width:1280px){.u-hide\@desk{display:none!important;}.u-hide\@desk.is-active{display:block!important;}}@media print{.u-hide\@print{display:none!important;}.u-hide\@print.is-active{display:block!important;}}.u-pad{padding:20px!important;}@media screen and (max-width:1024px){.u-pad\@lap{padding:20px!important;}}@media screen and (min-width:1025px){.u-pad\@lap-and-up{padding:20px!important;}}@media screen and (min-width:861px){.u-pad\@portable-and-up{padding:20px!important;}}@media screen and (max-width:860px){.u-pad\@portable{padding:20px!important;}}@media screen and (max-width:640px){.u-pad\@phablet{padding:20px!important;}}@media screen and (max-width:480px){.u-pad\@palm{padding:20px!important;}}@media screen and (min-width:1280px){.u-pad\@desk{padding:20px!important;}}@media print{.u-pad\@print{padding:20px!important;}}.u-pad--top{padding-top:20px!important;}@media screen and (max-width:1024px){.u-pad--top\@lap{padding-top:20px!important;}}@media screen and (min-width:1025px){.u-pad--top\@lap-and-up{padding-top:20px!important;}}@media screen and (min-width:861px){.u-pad--top\@portable-and-up{padding-top:20px!important;}}@media screen and (max-width:860px){.u-pad--top\@portable{padding-top:20px!important;}}@media screen and (max-width:640px){.u-pad--top\@phablet{padding-top:20px!important;}}@media screen and (max-width:480px){.u-pad--top\@palm{padding-top:20px!important;}}@media screen and (min-width:1280px){.u-pad--top\@desk{padding-top:20px!important;}}@media print{.u-pad--top\@print{padding-top:20px!important;}}.u-pad--right{padding-right:20px!important;}@media screen and (max-width:1024px){.u-pad--right\@lap{padding-right:20px!important;}}@media screen and (min-width:1025px){.u-pad--right\@lap-and-up{padding-right:20px!important;}}@media screen and (min-width:861px){.u-pad--right\@portable-and-up{padding-right:20px!important;}}@media screen and (max-width:860px){.u-pad--right\@portable{padding-right:20px!important;}}@media screen and (max-width:640px){.u-pad--right\@phablet{padding-right:20px!important;}}@media screen and (max-width:480px){.u-pad--right\@palm{padding-right:20px!important;}}@media screen and (min-width:1280px){.u-pad--right\@desk{padding-right:20px!important;}}@media print{.u-pad--right\@print{padding-right:20px!important;}}.u-pad--bottom{padding-bottom:20px!important;}@media screen and (max-width:1024px){.u-pad--bottom\@lap{padding-bottom:20px!important;}}@media screen and (min-width:1025px){.u-pad--bottom\@lap-and-up{padding-bottom:20px!important;}}@media screen and (min-width:861px){.u-pad--bottom\@portable-and-up{padding-bottom:20px!important;}}@media screen and (max-width:860px){.u-pad--bottom\@portable{padding-bottom:20px!important;}}@media screen and (max-width:640px){.u-pad--bottom\@phablet{padding-bottom:20px!important;}}@media screen and (max-width:480px){.u-pad--bottom\@palm{padding-bottom:20px!important;}}@media screen and (min-width:1280px){.u-pad--bottom\@desk{padding-bottom:20px!important;}}@media print{.u-pad--bottom\@print{padding-bottom:20px!important;}}.u-pad--left{padding-left:20px!important;}@media screen and (max-width:1024px){.u-pad--left\@lap{padding-left:20px!important;}}@media screen and (min-width:1025px){.u-pad--left\@lap-and-up{padding-left:20px!important;}}@media screen and (min-width:861px){.u-pad--left\@portable-and-up{padding-left:20px!important;}}@media screen and (max-width:860px){.u-pad--left\@portable{padding-left:20px!important;}}@media screen and (max-width:640px){.u-pad--left\@phablet{padding-left:20px!important;}}@media screen and (max-width:480px){.u-pad--left\@palm{padding-left:20px!important;}}@media screen and (min-width:1280px){.u-pad--left\@desk{padding-left:20px!important;}}@media print{.u-pad--left\@print{padding-left:20px!important;}}.u-pad--sides{padding-left:20px!important;padding-right:20px!important;}@media screen and (max-width:1024px){.u-pad--sides\@lap{padding-left:20px!important;padding-right:20px!important;}}@media screen and (min-width:1025px){.u-pad--sides\@lap-and-up{padding-left:20px!important;padding-right:20px!important;}}@media screen and (min-width:861px){.u-pad--sides\@portable-and-up{padding-left:20px!important;padding-right:20px!important;}}@media screen and (max-width:860px){.u-pad--sides\@portable{padding-left:20px!important;padding-right:20px!important;}}@media screen and (max-width:640px){.u-pad--sides\@phablet{padding-left:20px!important;padding-right:20px!important;}}@media screen and (max-width:480px){.u-pad--sides\@palm{padding-left:20px!important;padding-right:20px!important;}}@media screen and (min-width:1280px){.u-pad--sides\@desk{padding-left:20px!important;padding-right:20px!important;}}@media print{.u-pad--sides\@print{padding-left:20px!important;padding-right:20px!important;}}.u-pad--ends{padding-top:20px!important;padding-bottom:20px!important;}@media screen and (max-width:1024px){.u-pad--ends\@lap{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (min-width:1025px){.u-pad--ends\@lap-and-up{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (min-width:861px){.u-pad--ends\@portable-and-up{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (max-width:860px){.u-pad--ends\@portable{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (max-width:640px){.u-pad--ends\@phablet{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (max-width:480px){.u-pad--ends\@palm{padding-top:20px!important;padding-bottom:20px!important;}}@media screen and (min-width:1280px){.u-pad--ends\@desk{padding-top:20px!important;padding-bottom:20px!important;}}@media print{.u-pad--ends\@print{padding-top:20px!important;padding-bottom:20px!important;}}.u-pad-half{padding:10px!important;}@media screen and (max-width:1024px){.u-pad-half\@lap{padding:10px!important;}}@media screen and (min-width:1025px){.u-pad-half\@lap-and-up{padding:10px!important;}}@media screen and (min-width:861px){.u-pad-half\@portable-and-up{padding:10px!important;}}@media screen and (max-width:860px){.u-pad-half\@portable{padding:10px!important;}}@media screen and (max-width:640px){.u-pad-half\@phablet{padding:10px!important;}}@media screen and (max-width:480px){.u-pad-half\@palm{padding:10px!important;}}@media screen and (min-width:1280px){.u-pad-half\@desk{padding:10px!important;}}@media print{.u-pad-half\@print{padding:10px!important;}}.u-pad-half--top{padding-top:10px!important;}@media screen and (max-width:1024px){.u-pad-half--top\@lap{padding-top:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--top\@lap-and-up{padding-top:10px!important;}}@media screen and (min-width:861px){.u-pad-half--top\@portable-and-up{padding-top:10px!important;}}@media screen and (max-width:860px){.u-pad-half--top\@portable{padding-top:10px!important;}}@media screen and (max-width:640px){.u-pad-half--top\@phablet{padding-top:10px!important;}}@media screen and (max-width:480px){.u-pad-half--top\@palm{padding-top:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--top\@desk{padding-top:10px!important;}}@media print{.u-pad-half--top\@print{padding-top:10px!important;}}.u-pad-half--right{padding-right:10px!important;}@media screen and (max-width:1024px){.u-pad-half--right\@lap{padding-right:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--right\@lap-and-up{padding-right:10px!important;}}@media screen and (min-width:861px){.u-pad-half--right\@portable-and-up{padding-right:10px!important;}}@media screen and (max-width:860px){.u-pad-half--right\@portable{padding-right:10px!important;}}@media screen and (max-width:640px){.u-pad-half--right\@phablet{padding-right:10px!important;}}@media screen and (max-width:480px){.u-pad-half--right\@palm{padding-right:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--right\@desk{padding-right:10px!important;}}@media print{.u-pad-half--right\@print{padding-right:10px!important;}}.u-pad-half--bottom{padding-bottom:10px!important;}@media screen and (max-width:1024px){.u-pad-half--bottom\@lap{padding-bottom:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--bottom\@lap-and-up{padding-bottom:10px!important;}}@media screen and (min-width:861px){.u-pad-half--bottom\@portable-and-up{padding-bottom:10px!important;}}@media screen and (max-width:860px){.u-pad-half--bottom\@portable{padding-bottom:10px!important;}}@media screen and (max-width:640px){.u-pad-half--bottom\@phablet{padding-bottom:10px!important;}}@media screen and (max-width:480px){.u-pad-half--bottom\@palm{padding-bottom:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--bottom\@desk{padding-bottom:10px!important;}}@media print{.u-pad-half--bottom\@print{padding-bottom:10px!important;}}.u-pad-half--left{padding-left:10px!important;}@media screen and (max-width:1024px){.u-pad-half--left\@lap{padding-left:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--left\@lap-and-up{padding-left:10px!important;}}@media screen and (min-width:861px){.u-pad-half--left\@portable-and-up{padding-left:10px!important;}}@media screen and (max-width:860px){.u-pad-half--left\@portable{padding-left:10px!important;}}@media screen and (max-width:640px){.u-pad-half--left\@phablet{padding-left:10px!important;}}@media screen and (max-width:480px){.u-pad-half--left\@palm{padding-left:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--left\@desk{padding-left:10px!important;}}@media print{.u-pad-half--left\@print{padding-left:10px!important;}}.u-pad-half--sides{padding-left:10px!important;padding-right:10px!important;}@media screen and (max-width:1024px){.u-pad-half--sides\@lap{padding-left:10px!important;padding-right:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--sides\@lap-and-up{padding-left:10px!important;padding-right:10px!important;}}@media screen and (min-width:861px){.u-pad-half--sides\@portable-and-up{padding-left:10px!important;padding-right:10px!important;}}@media screen and (max-width:860px){.u-pad-half--sides\@portable{padding-left:10px!important;padding-right:10px!important;}}@media screen and (max-width:640px){.u-pad-half--sides\@phablet{padding-left:10px!important;padding-right:10px!important;}}@media screen and (max-width:480px){.u-pad-half--sides\@palm{padding-left:10px!important;padding-right:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--sides\@desk{padding-left:10px!important;padding-right:10px!important;}}@media print{.u-pad-half--sides\@print{padding-left:10px!important;padding-right:10px!important;}}.u-pad-half--ends{padding-top:10px!important;padding-bottom:10px!important;}@media screen and (max-width:1024px){.u-pad-half--ends\@lap{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (min-width:1025px){.u-pad-half--ends\@lap-and-up{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (min-width:861px){.u-pad-half--ends\@portable-and-up{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (max-width:860px){.u-pad-half--ends\@portable{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (max-width:640px){.u-pad-half--ends\@phablet{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (max-width:480px){.u-pad-half--ends\@palm{padding-top:10px!important;padding-bottom:10px!important;}}@media screen and (min-width:1280px){.u-pad-half--ends\@desk{padding-top:10px!important;padding-bottom:10px!important;}}@media print{.u-pad-half--ends\@print{padding-top:10px!important;padding-bottom:10px!important;}}.u-pad-large{padding:40px!important;}@media screen and (max-width:1024px){.u-pad-large\@lap{padding:40px!important;}}@media screen and (min-width:1025px){.u-pad-large\@lap-and-up{padding:40px!important;}}@media screen and (min-width:861px){.u-pad-large\@portable-and-up{padding:40px!important;}}@media screen and (max-width:860px){.u-pad-large\@portable{padding:40px!important;}}@media screen and (max-width:640px){.u-pad-large\@phablet{padding:40px!important;}}@media screen and (max-width:480px){.u-pad-large\@palm{padding:40px!important;}}@media screen and (min-width:1280px){.u-pad-large\@desk{padding:40px!important;}}@media print{.u-pad-large\@print{padding:40px!important;}}.u-pad-large--top{padding-top:40px!important;}@media screen and (max-width:1024px){.u-pad-large--top\@lap{padding-top:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--top\@lap-and-up{padding-top:40px!important;}}@media screen and (min-width:861px){.u-pad-large--top\@portable-and-up{padding-top:40px!important;}}@media screen and (max-width:860px){.u-pad-large--top\@portable{padding-top:40px!important;}}@media screen and (max-width:640px){.u-pad-large--top\@phablet{padding-top:40px!important;}}@media screen and (max-width:480px){.u-pad-large--top\@palm{padding-top:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--top\@desk{padding-top:40px!important;}}@media print{.u-pad-large--top\@print{padding-top:40px!important;}}.u-pad-large--right{padding-right:40px!important;}@media screen and (max-width:1024px){.u-pad-large--right\@lap{padding-right:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--right\@lap-and-up{padding-right:40px!important;}}@media screen and (min-width:861px){.u-pad-large--right\@portable-and-up{padding-right:40px!important;}}@media screen and (max-width:860px){.u-pad-large--right\@portable{padding-right:40px!important;}}@media screen and (max-width:640px){.u-pad-large--right\@phablet{padding-right:40px!important;}}@media screen and (max-width:480px){.u-pad-large--right\@palm{padding-right:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--right\@desk{padding-right:40px!important;}}@media print{.u-pad-large--right\@print{padding-right:40px!important;}}.u-pad-large--bottom{padding-bottom:40px!important;}@media screen and (max-width:1024px){.u-pad-large--bottom\@lap{padding-bottom:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--bottom\@lap-and-up{padding-bottom:40px!important;}}@media screen and (min-width:861px){.u-pad-large--bottom\@portable-and-up{padding-bottom:40px!important;}}@media screen and (max-width:860px){.u-pad-large--bottom\@portable{padding-bottom:40px!important;}}@media screen and (max-width:640px){.u-pad-large--bottom\@phablet{padding-bottom:40px!important;}}@media screen and (max-width:480px){.u-pad-large--bottom\@palm{padding-bottom:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--bottom\@desk{padding-bottom:40px!important;}}@media print{.u-pad-large--bottom\@print{padding-bottom:40px!important;}}.u-pad-large--left{padding-left:40px!important;}@media screen and (max-width:1024px){.u-pad-large--left\@lap{padding-left:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--left\@lap-and-up{padding-left:40px!important;}}@media screen and (min-width:861px){.u-pad-large--left\@portable-and-up{padding-left:40px!important;}}@media screen and (max-width:860px){.u-pad-large--left\@portable{padding-left:40px!important;}}@media screen and (max-width:640px){.u-pad-large--left\@phablet{padding-left:40px!important;}}@media screen and (max-width:480px){.u-pad-large--left\@palm{padding-left:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--left\@desk{padding-left:40px!important;}}@media print{.u-pad-large--left\@print{padding-left:40px!important;}}.u-pad-large--sides{padding-left:40px!important;padding-right:40px!important;}@media screen and (max-width:1024px){.u-pad-large--sides\@lap{padding-left:40px!important;padding-right:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--sides\@lap-and-up{padding-left:40px!important;padding-right:40px!important;}}@media screen and (min-width:861px){.u-pad-large--sides\@portable-and-up{padding-left:40px!important;padding-right:40px!important;}}@media screen and (max-width:860px){.u-pad-large--sides\@portable{padding-left:40px!important;padding-right:40px!important;}}@media screen and (max-width:640px){.u-pad-large--sides\@phablet{padding-left:40px!important;padding-right:40px!important;}}@media screen and (max-width:480px){.u-pad-large--sides\@palm{padding-left:40px!important;padding-right:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--sides\@desk{padding-left:40px!important;padding-right:40px!important;}}@media print{.u-pad-large--sides\@print{padding-left:40px!important;padding-right:40px!important;}}.u-pad-large--ends{padding-top:40px!important;padding-bottom:40px!important;}@media screen and (max-width:1024px){.u-pad-large--ends\@lap{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (min-width:1025px){.u-pad-large--ends\@lap-and-up{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (min-width:861px){.u-pad-large--ends\@portable-and-up{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (max-width:860px){.u-pad-large--ends\@portable{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (max-width:640px){.u-pad-large--ends\@phablet{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (max-width:480px){.u-pad-large--ends\@palm{padding-top:40px!important;padding-bottom:40px!important;}}@media screen and (min-width:1280px){.u-pad-large--ends\@desk{padding-top:40px!important;padding-bottom:40px!important;}}@media print{.u-pad-large--ends\@print{padding-top:40px!important;padding-bottom:40px!important;}}.u-pad-xlarge--top{padding-top:60px!important;}@media screen and (max-width:1024px){.u-pad-xlarge--top\@lap{padding-top:60px!important;}}@media screen and (min-width:1025px){.u-pad-xlarge--top\@lap-and-up{padding-top:60px!important;}}@media screen and (min-width:861px){.u-pad-xlarge--top\@portable-and-up{padding-top:60px!important;}}@media screen and (max-width:860px){.u-pad-xlarge--top\@portable{padding-top:60px!important;}}@media screen and (max-width:640px){.u-pad-xlarge--top\@phablet{padding-top:60px!important;}}@media screen and (max-width:480px){.u-pad-xlarge--top\@palm{padding-top:60px!important;}}@media screen and (min-width:1280px){.u-pad-xlarge--top\@desk{padding-top:60px!important;}}@media print{.u-pad-xlarge--top\@print{padding-top:60px!important;}}.u-push{margin:20px!important;}@media screen and (max-width:1024px){.u-push\@lap{margin:20px!important;}}@media screen and (min-width:1025px){.u-push\@lap-and-up{margin:20px!important;}}@media screen and (min-width:861px){.u-push\@portable-and-up{margin:20px!important;}}@media screen and (max-width:860px){.u-push\@portable{margin:20px!important;}}@media screen and (max-width:640px){.u-push\@phablet{margin:20px!important;}}@media screen and (max-width:480px){.u-push\@palm{margin:20px!important;}}@media screen and (min-width:1280px){.u-push\@desk{margin:20px!important;}}@media print{.u-push\@print{margin:20px!important;}}.u-push--top{margin-top:20px!important;}@media screen and (max-width:1024px){.u-push--top\@lap{margin-top:20px!important;}}@media screen and (min-width:1025px){.u-push--top\@lap-and-up{margin-top:20px!important;}}@media screen and (min-width:861px){.u-push--top\@portable-and-up{margin-top:20px!important;}}@media screen and (max-width:860px){.u-push--top\@portable{margin-top:20px!important;}}@media screen and (max-width:640px){.u-push--top\@phablet{margin-top:20px!important;}}@media screen and (max-width:480px){.u-push--top\@palm{margin-top:20px!important;}}@media screen and (min-width:1280px){.u-push--top\@desk{margin-top:20px!important;}}@media print{.u-push--top\@print{margin-top:20px!important;}}.u-push--right{margin-right:20px!important;}@media screen and (max-width:1024px){.u-push--right\@lap{margin-right:20px!important;}}@media screen and (min-width:1025px){.u-push--right\@lap-and-up{margin-right:20px!important;}}@media screen and (min-width:861px){.u-push--right\@portable-and-up{margin-right:20px!important;}}@media screen and (max-width:860px){.u-push--right\@portable{margin-right:20px!important;}}@media screen and (max-width:640px){.u-push--right\@phablet{margin-right:20px!important;}}@media screen and (max-width:480px){.u-push--right\@palm{margin-right:20px!important;}}@media screen and (min-width:1280px){.u-push--right\@desk{margin-right:20px!important;}}@media print{.u-push--right\@print{margin-right:20px!important;}}.u-push--bottom{margin-bottom:20px!important;}@media screen and (max-width:1024px){.u-push--bottom\@lap{margin-bottom:20px!important;}}@media screen and (min-width:1025px){.u-push--bottom\@lap-and-up{margin-bottom:20px!important;}}@media screen and (min-width:861px){.u-push--bottom\@portable-and-up{margin-bottom:20px!important;}}@media screen and (max-width:860px){.u-push--bottom\@portable{margin-bottom:20px!important;}}@media screen and (max-width:640px){.u-push--bottom\@phablet{margin-bottom:20px!important;}}@media screen and (max-width:480px){.u-push--bottom\@palm{margin-bottom:20px!important;}}@media screen and (min-width:1280px){.u-push--bottom\@desk{margin-bottom:20px!important;}}@media print{.u-push--bottom\@print{margin-bottom:20px!important;}}.u-push--left{margin-left:20px!important;}@media screen and (max-width:1024px){.u-push--left\@lap{margin-left:20px!important;}}@media screen and (min-width:1025px){.u-push--left\@lap-and-up{margin-left:20px!important;}}@media screen and (min-width:861px){.u-push--left\@portable-and-up{margin-left:20px!important;}}@media screen and (max-width:860px){.u-push--left\@portable{margin-left:20px!important;}}@media screen and (max-width:640px){.u-push--left\@phablet{margin-left:20px!important;}}@media screen and (max-width:480px){.u-push--left\@palm{margin-left:20px!important;}}@media screen and (min-width:1280px){.u-push--left\@desk{margin-left:20px!important;}}@media print{.u-push--left\@print{margin-left:20px!important;}}.u-push--sides{margin-left:20px!important;margin-right:20px!important;}@media screen and (max-width:1024px){.u-push--sides\@lap{margin-left:20px!important;margin-right:20px!important;}}@media screen and (min-width:1025px){.u-push--sides\@lap-and-up{margin-left:20px!important;margin-right:20px!important;}}@media screen and (min-width:861px){.u-push--sides\@portable-and-up{margin-left:20px!important;margin-right:20px!important;}}@media screen and (max-width:860px){.u-push--sides\@portable{margin-left:20px!important;margin-right:20px!important;}}@media screen and (max-width:640px){.u-push--sides\@phablet{margin-left:20px!important;margin-right:20px!important;}}@media screen and (max-width:480px){.u-push--sides\@palm{margin-left:20px!important;margin-right:20px!important;}}@media screen and (min-width:1280px){.u-push--sides\@desk{margin-left:20px!important;margin-right:20px!important;}}@media print{.u-push--sides\@print{margin-left:20px!important;margin-right:20px!important;}}.u-push--ends{margin-top:20px!important;margin-bottom:20px!important;}@media screen and (max-width:1024px){.u-push--ends\@lap{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (min-width:1025px){.u-push--ends\@lap-and-up{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (min-width:861px){.u-push--ends\@portable-and-up{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (max-width:860px){.u-push--ends\@portable{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (max-width:640px){.u-push--ends\@phablet{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (max-width:480px){.u-push--ends\@palm{margin-top:20px!important;margin-bottom:20px!important;}}@media screen and (min-width:1280px){.u-push--ends\@desk{margin-top:20px!important;margin-bottom:20px!important;}}@media print{.u-push--ends\@print{margin-top:20px!important;margin-bottom:20px!important;}}