
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_1958ed66cea03ad23c76cfbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ab641d9da36a54a1985ee543.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f3d7968235326e31b4b5c2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c27fdd2212415bd9c9fc48f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aecc1909675b673d28012f07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_91f9c4eaa330693a9d31d4a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_460d2de6d4b3e7382d147747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.572000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0521e94fb96af6d0899e7d6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.703235;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1b72cc9d8fc344493482ae9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_adfe7ad7889c8f9efb40621a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_df91abcab9af7a481051c9a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d645c8e6038f8ee1c3b86872.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_44db83c1de64aa5dee72d523.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7758daf110fde32ea2874e64.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a22dc25585be00481f73f54.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_41e44de558c0ce04fc0a58d8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ac4fe861084744b2dfd2c71a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9d2bf477a8986805ed4a6833.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_af773e17de418d44c64f5b02.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_27fa44400871d58966cf4dd9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_26c5397913212bb62bdb41c3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_941cfc3698d96420d5387899.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_efda43e87ddfb0dad96754e4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e6b6aed74388588d056aef61.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_eb9e3167a15f046a06c6fa6d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_31ec11a121348cfeb60423bd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_b667470cde5978f1fda7a9d9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ce260b7a0a822e3d2412361b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.839000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_eb9e3167a15f046a06c6fa6d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_31ec11a121348cfeb60423bd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_b667470cde5978f1fda7a9d9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_e67bf23f5c9d40e181ed482d.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_748ea08619e2a516650c4814.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e67bf23f5c9d40e181ed482d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_748ea08619e2a516650c4814.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_e67bf23f5c9d40e181ed482d.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_748ea08619e2a516650c4814.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_e67bf23f5c9d40e181ed482d.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_748ea08619e2a516650c4814.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_373a7d42482bc1b5d166db1a.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_c6e6b78f0c05b1772d4d2b83.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-24.014902px;}
.v2{vertical-align:-16.418649px;}
.v3{vertical-align:-8.723137px;}
.v13{vertical-align:-6.457691px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:6.463529px;}
.vc{vertical-align:11.636689px;}
.v8{vertical-align:14.380915px;}
.v4{vertical-align:16.477037px;}
.v11{vertical-align:18.870937px;}
.v1{vertical-align:21.107190px;}
.v7{vertical-align:24.014902px;}
.vf{vertical-align:35.937691px;}
.vb{vertical-align:37.584227px;}
.v5{vertical-align:39.353377px;}
.vd{vertical-align:40.719652px;}
.v12{vertical-align:52.414728px;}
.v10{vertical-align:57.044881px;}
.v6{vertical-align:60.460567px;}
.ve{vertical-align:61.832680px;}
.va{vertical-align:64.565229px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000060px;}
.lsad{letter-spacing:0.000137px;}
.ls21{letter-spacing:0.000486px;}
.ls45{letter-spacing:0.000524px;}
.ls1e{letter-spacing:0.000538px;}
.ls7a{letter-spacing:0.000630px;}
.ls7b{letter-spacing:0.000966px;}
.ls4b{letter-spacing:0.001958px;}
.ls75{letter-spacing:0.001969px;}
.ls5c{letter-spacing:0.002174px;}
.ls9{letter-spacing:0.002184px;}
.lsa{letter-spacing:0.002275px;}
.lsa0{letter-spacing:0.002936px;}
.ls64{letter-spacing:0.002949px;}
.ls3f{letter-spacing:0.003134px;}
.ls57{letter-spacing:0.003148px;}
.ls8{letter-spacing:0.003181px;}
.ls7c{letter-spacing:0.003211px;}
.ls7e{letter-spacing:0.004087px;}
.ls20{letter-spacing:0.004406px;}
.ls35{letter-spacing:0.005899px;}
.lsbd{letter-spacing:0.005976px;}
.ls36{letter-spacing:1.617129px;}
.lsaa{letter-spacing:1.664656px;}
.lsa6{letter-spacing:1.670495px;}
.ls6a{letter-spacing:2.080575px;}
.ls2b{letter-spacing:2.082666px;}
.ls39{letter-spacing:2.086413px;}
.ls41{letter-spacing:2.092457px;}
.ls1{letter-spacing:2.904331px;}
.ls2{letter-spacing:2.904981px;}
.ls2a{letter-spacing:2.905136px;}
.ls18{letter-spacing:2.907195px;}
.ls3{letter-spacing:2.907753px;}
.lsa8{letter-spacing:2.908230px;}
.ls4{letter-spacing:2.909532px;}
.ls42{letter-spacing:2.910170px;}
.lsf{letter-spacing:2.910975px;}
.ls5{letter-spacing:2.912352px;}
.ls47{letter-spacing:3.072094px;}
.ls82{letter-spacing:3.464200px;}
.ls81{letter-spacing:3.464207px;}
.ls83{letter-spacing:3.464312px;}
.ls4f{letter-spacing:4.560005px;}
.ls49{letter-spacing:4.565844px;}
.ls1f{letter-spacing:4.698088px;}
.ls23{letter-spacing:4.703927px;}
.ls38{letter-spacing:4.724102px;}
.ls22{letter-spacing:4.957662px;}
.lsb{letter-spacing:5.000170px;}
.ls7{letter-spacing:6.338210px;}
.lse{letter-spacing:6.344049px;}
.lsa1{letter-spacing:8.244495px;}
.ls8e{letter-spacing:9.688812px;}
.ls5d{letter-spacing:9.688994px;}
.ls53{letter-spacing:9.694549px;}
.ls90{letter-spacing:9.694559px;}
.ls74{letter-spacing:9.694650px;}
.ls93{letter-spacing:11.778788px;}
.ls92{letter-spacing:11.784627px;}
.ls58{letter-spacing:12.601371px;}
.ls73{letter-spacing:12.602545px;}
.ls3b{letter-spacing:12.927583px;}
.lsbb{letter-spacing:13.728020px;}
.lsbe{letter-spacing:13.729946px;}
.lsbc{letter-spacing:13.731378px;}
.lsb8{letter-spacing:13.732067px;}
.ls24{letter-spacing:13.733296px;}
.ls85{letter-spacing:13.735785px;}
.lsba{letter-spacing:13.737217px;}
.lsb9{letter-spacing:13.737354px;}
.ls84{letter-spacing:13.738111px;}
.ls61{letter-spacing:13.739135px;}
.lsb5{letter-spacing:13.951819px;}
.lsb3{letter-spacing:13.953252px;}
.lsb4{letter-spacing:13.957658px;}
.lsb6{letter-spacing:13.960698px;}
.ls4e{letter-spacing:15.948889px;}
.ls46{letter-spacing:16.038689px;}
.ls5b{letter-spacing:16.153247px;}
.ls7d{letter-spacing:16.153276px;}
.ls54{letter-spacing:16.154153px;}
.ls80{letter-spacing:16.155522px;}
.ls1c{letter-spacing:16.156428px;}
.ls28{letter-spacing:16.158089px;}
.ls7f{letter-spacing:16.158854px;}
.ls56{letter-spacing:16.159086px;}
.ls77{letter-spacing:16.159115px;}
.ls1a{letter-spacing:16.159991px;}
.ls3e{letter-spacing:16.161361px;}
.ls6c{letter-spacing:16.162267px;}
.ls5a{letter-spacing:16.163927px;}
.ls4a{letter-spacing:16.171101px;}
.lsb1{letter-spacing:16.178516px;}
.lsaf{letter-spacing:16.182233px;}
.lsae{letter-spacing:16.183666px;}
.lsb2{letter-spacing:16.183803px;}
.ls29{letter-spacing:16.371500px;}
.ls16{letter-spacing:16.377339px;}
.ls9d{letter-spacing:16.442528px;}
.lsb7{letter-spacing:16.646499px;}
.ls17{letter-spacing:16.867796px;}
.ls3c{letter-spacing:17.098223px;}
.lsa2{letter-spacing:17.159431px;}
.lsa3{letter-spacing:17.164718px;}
.ls34{letter-spacing:17.597701px;}
.ls15{letter-spacing:17.646977px;}
.ls2f{letter-spacing:17.773770px;}
.ls2d{letter-spacing:17.778703px;}
.ls3d{letter-spacing:18.242318px;}
.ls40{letter-spacing:18.248156px;}
.lsb0{letter-spacing:18.316390px;}
.ls98{letter-spacing:18.742102px;}
.lsa5{letter-spacing:18.809684px;}
.lsa7{letter-spacing:18.811117px;}
.lsac{letter-spacing:18.811254px;}
.lsab{letter-spacing:18.811805px;}
.lsa4{letter-spacing:18.816956px;}
.ls44{letter-spacing:18.895188px;}
.ls11{letter-spacing:19.039880px;}
.ls10{letter-spacing:19.042446px;}
.ls66{letter-spacing:19.060235px;}
.ls78{letter-spacing:19.066074px;}
.ls5e{letter-spacing:19.227998px;}
.ls1b{letter-spacing:19.233837px;}
.ls65{letter-spacing:19.387960px;}
.lsc{letter-spacing:19.392773px;}
.ls2e{letter-spacing:19.396214px;}
.ls86{letter-spacing:19.433644px;}
.ls6d{letter-spacing:19.435547px;}
.ls6b{letter-spacing:19.440480px;}
.ls69{letter-spacing:19.441386px;}
.ls68{letter-spacing:19.662354px;}
.ls67{letter-spacing:19.663259px;}
.ls2c{letter-spacing:19.861751px;}
.ls88{letter-spacing:20.150154px;}
.ls89{letter-spacing:20.151814px;}
.ls6e{letter-spacing:20.208913px;}
.lsa9{letter-spacing:20.289898px;}
.ls32{letter-spacing:20.470323px;}
.ls33{letter-spacing:20.514092px;}
.ls27{letter-spacing:20.716515px;}
.ls26{letter-spacing:20.722354px;}
.ls37{letter-spacing:20.794508px;}
.ls91{letter-spacing:20.806321px;}
.ls62{letter-spacing:20.806754px;}
.ls4d{letter-spacing:20.807660px;}
.ls4c{letter-spacing:20.811370px;}
.ls51{letter-spacing:20.812160px;}
.ls50{letter-spacing:20.812593px;}
.ls79{letter-spacing:20.813499px;}
.ls31{letter-spacing:20.879095px;}
.ls25{letter-spacing:20.937426px;}
.ls99{letter-spacing:20.943764px;}
.ls30{letter-spacing:21.095073px;}
.ls14{letter-spacing:21.147622px;}
.ls6{letter-spacing:21.270736px;}
.ls97{letter-spacing:21.814578px;}
.ls9c{letter-spacing:21.942659px;}
.ls8d{letter-spacing:22.138026px;}
.ls8b{letter-spacing:22.141178px;}
.lsd{letter-spacing:22.462683px;}
.ls9e{letter-spacing:22.632007px;}
.ls70{letter-spacing:22.695862px;}
.ls76{letter-spacing:22.698519px;}
.ls72{letter-spacing:22.698548px;}
.ls87{letter-spacing:23.059800px;}
.ls48{letter-spacing:23.404004px;}
.ls9a{letter-spacing:23.881506px;}
.ls13{letter-spacing:24.023198px;}
.ls8f{letter-spacing:24.111504px;}
.ls8c{letter-spacing:24.112410px;}
.ls71{letter-spacing:24.427704px;}
.ls95{letter-spacing:24.937953px;}
.ls8a{letter-spacing:25.044985px;}
.ls6f{letter-spacing:25.605508px;}
.ls96{letter-spacing:25.943874px;}
.ls63{letter-spacing:26.756038px;}
.ls94{letter-spacing:27.847599px;}
.ls9b{letter-spacing:29.232143px;}
.ls3a{letter-spacing:33.717203px;}
.ls59{letter-spacing:93.230136px;}
.ls55{letter-spacing:93.231887px;}
.ls5f{letter-spacing:179.073631px;}
.ls60{letter-spacing:270.491409px;}
.ls1d{letter-spacing:281.155669px;}
.ls9f{letter-spacing:329.023427px;}
.ls43{letter-spacing:440.538226px;}
.ls19{letter-spacing:559.930506px;}
.ls52{letter-spacing:611.428545px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-58.169430px;}
.ws22{word-spacing:-46.374281px;}
.wsda{word-spacing:-46.279714px;}
.wse3{word-spacing:-46.047036px;}
.ws85{word-spacing:-38.434177px;}
.ws41{word-spacing:-37.891566px;}
.ws56{word-spacing:-32.330569px;}
.ws8b{word-spacing:-32.319016px;}
.ws65{word-spacing:-30.783174px;}
.ws4a{word-spacing:-28.177272px;}
.wsde{word-spacing:-27.693372px;}
.wsce{word-spacing:-24.082204px;}
.ws4c{word-spacing:-21.761221px;}
.ws59{word-spacing:-21.755382px;}
.ws96{word-spacing:-21.752964px;}
.ws97{word-spacing:-21.752183px;}
.ws62{word-spacing:-21.748151px;}
.ws87{word-spacing:-21.747125px;}
.ws68{word-spacing:-21.742312px;}
.ws32{word-spacing:-21.720465px;}
.ws3e{word-spacing:-21.709248px;}
.wsb1{word-spacing:-18.601148px;}
.ws8a{word-spacing:-18.590996px;}
.wsc4{word-spacing:-18.579316px;}
.ws9e{word-spacing:-17.764944px;}
.ws8f{word-spacing:-17.556675px;}
.wsc2{word-spacing:-17.125080px;}
.ws92{word-spacing:-16.419021px;}
.wsd2{word-spacing:-16.171142px;}
.ws20{word-spacing:-16.159468px;}
.wsc1{word-spacing:-15.961691px;}
.ws4{word-spacing:-15.691200px;}
.ws5a{word-spacing:-14.868106px;}
.ws34{word-spacing:-13.732673px;}
.wscc{word-spacing:-13.518609px;}
.ws8d{word-spacing:-13.265747px;}
.ws1d{word-spacing:-1.617110px;}
.ws38{word-spacing:-1.268094px;}
.wsb7{word-spacing:-1.209924px;}
.ws71{word-spacing:-0.977246px;}
.ws70{word-spacing:-0.969645px;}
.ws3c{word-spacing:-0.570060px;}
.ws51{word-spacing:-0.352462px;}
.ws50{word-spacing:-0.337383px;}
.ws5c{word-spacing:-0.224346px;}
.wseb{word-spacing:-0.058169px;}
.wsa9{word-spacing:-0.046536px;}
.wsc6{word-spacing:-0.045402px;}
.wsd{word-spacing:-0.040718px;}
.ws88{word-spacing:-0.035313px;}
.ws17{word-spacing:-0.020894px;}
.ws57{word-spacing:-0.017713px;}
.ws4e{word-spacing:-0.015055px;}
.ws35{word-spacing:-0.004654px;}
.ws1{word-spacing:0.000000px;}
.ws27{word-spacing:0.011634px;}
.ws16{word-spacing:0.127973px;}
.wsdd{word-spacing:0.228025px;}
.ws4d{word-spacing:0.360650px;}
.ws4b{word-spacing:0.374091px;}
.ws29{word-spacing:0.476989px;}
.ws53{word-spacing:0.732935px;}
.ws28{word-spacing:0.767836px;}
.ws6{word-spacing:0.815942px;}
.ws99{word-spacing:0.884175px;}
.ws7b{word-spacing:1.000514px;}
.ws98{word-spacing:1.058684px;}
.ws5d{word-spacing:1.070318px;}
.ws5b{word-spacing:1.078640px;}
.wse2{word-spacing:1.081479px;}
.wse6{word-spacing:1.087318px;}
.wse0{word-spacing:1.096544px;}
.wsdf{word-spacing:1.098855px;}
.wse4{word-spacing:1.112202px;}
.ws52{word-spacing:1.175022px;}
.wsaf{word-spacing:1.197616px;}
.wsb0{word-spacing:1.233192px;}
.ws39{word-spacing:1.329108px;}
.ws3a{word-spacing:1.349531px;}
.ws3f{word-spacing:1.407700px;}
.wse1{word-spacing:1.427774px;}
.wse5{word-spacing:1.433612px;}
.ws3d{word-spacing:1.465870px;}
.ws13{word-spacing:1.698547px;}
.wsb4{word-spacing:1.931225px;}
.ws36{word-spacing:1.989394px;}
.ws95{word-spacing:2.105733px;}
.wsc5{word-spacing:2.222072px;}
.wsaa{word-spacing:2.280242px;}
.wsd6{word-spacing:2.415201px;}
.wsad{word-spacing:2.454750px;}
.wsec{word-spacing:2.512919px;}
.wsbc{word-spacing:2.571089px;}
.wsb6{word-spacing:2.687428px;}
.ws2e{word-spacing:2.736053px;}
.ws2c{word-spacing:2.740950px;}
.wse7{word-spacing:2.747338px;}
.ws7{word-spacing:2.761651px;}
.ws2a{word-spacing:2.787486px;}
.ws21{word-spacing:2.861936px;}
.wsd9{word-spacing:2.874780px;}
.wsdb{word-spacing:2.880557px;}
.wsd8{word-spacing:2.910824px;}
.wsdc{word-spacing:2.916662px;}
.wsbb{word-spacing:3.036444px;}
.wsc{word-spacing:3.210953px;}
.ws74{word-spacing:3.226794px;}
.ws73{word-spacing:3.230739px;}
.wsa2{word-spacing:3.233196px;}
.ws19{word-spacing:3.235094px;}
.ws72{word-spacing:3.269122px;}
.ws3b{word-spacing:3.327291px;}
.wsc3{word-spacing:3.385461px;}
.wsc9{word-spacing:3.392450px;}
.ws54{word-spacing:3.513434px;}
.ws9a{word-spacing:3.559969px;}
.ws49{word-spacing:3.699576px;}
.ws93{word-spacing:3.850816px;}
.wsae{word-spacing:3.908986px;}
.wsa1{word-spacing:3.967155px;}
.wsf{word-spacing:4.025325px;}
.ws44{word-spacing:4.083494px;}
.ws25{word-spacing:4.141663px;}
.wsd3{word-spacing:4.183556px;}
.wsd5{word-spacing:4.193568px;}
.ws40{word-spacing:4.199833px;}
.ws45{word-spacing:4.316172px;}
.ws15{word-spacing:4.432511px;}
.ws7a{word-spacing:4.560483px;}
.ws79{word-spacing:4.564391px;}
.wsd4{word-spacing:4.580715px;}
.wsd7{word-spacing:4.602377px;}
.wsbe{word-spacing:4.665188px;}
.ws12{word-spacing:4.781527px;}
.ws76{word-spacing:4.786265px;}
.wsbd{word-spacing:4.788209px;}
.wsc8{word-spacing:4.788519px;}
.ws77{word-spacing:4.793161px;}
.ws8{word-spacing:4.832890px;}
.ws1f{word-spacing:4.956035px;}
.ws23{word-spacing:4.988057px;}
.ws46{word-spacing:5.014205px;}
.wscd{word-spacing:5.067733px;}
.ws14{word-spacing:5.072374px;}
.wsb2{word-spacing:5.095642px;}
.wse{word-spacing:5.104962px;}
.ws9c{word-spacing:5.188713px;}
.wsa0{word-spacing:5.595733px;}
.ws9d{word-spacing:5.626128px;}
.ws9f{word-spacing:5.654069px;}
.ws8e{word-spacing:5.723894px;}
.wsb5{word-spacing:5.743226px;}
.wscb{word-spacing:5.770136px;}
.ws90{word-spacing:5.770407px;}
.wscf{word-spacing:5.798450px;}
.wsd1{word-spacing:5.812304px;}
.ws26{word-spacing:5.828577px;}
.ws55{word-spacing:5.921469px;}
.ws75{word-spacing:5.926989px;}
.ws78{word-spacing:5.935474px;}
.ws6e{word-spacing:5.936691px;}
.ws58{word-spacing:5.936844px;}
.ws86{word-spacing:5.940675px;}
.wsa7{word-spacing:5.942630px;}
.ws60{word-spacing:5.942804px;}
.ws6f{word-spacing:5.944455px;}
.ws37{word-spacing:5.944916px;}
.wsa8{word-spacing:5.945800px;}
.ws82{word-spacing:5.948642px;}
.ws6d{word-spacing:5.950294px;}
.ws5e{word-spacing:5.956550px;}
.ws48{word-spacing:6.003085px;}
.ws43{word-spacing:6.061255px;}
.ws42{word-spacing:6.064441px;}
.ws91{word-spacing:6.410271px;}
.ws94{word-spacing:6.468441px;}
.ws1e{word-spacing:6.526610px;}
.wsca{word-spacing:6.554222px;}
.wsd0{word-spacing:6.560061px;}
.ws11{word-spacing:6.701118px;}
.wsb8{word-spacing:6.991965px;}
.wsb3{word-spacing:7.061769px;}
.wsbf{word-spacing:7.340982px;}
.wsb9{word-spacing:7.573660px;}
.ws47{word-spacing:7.689999px;}
.wsa3{word-spacing:7.829605px;}
.wsba{word-spacing:7.980846px;}
.wse9{word-spacing:8.097185px;}
.ws9{word-spacing:8.159424px;}
.ws7d{word-spacing:8.236791px;}
.ws8c{word-spacing:8.329862px;}
.wsac{word-spacing:8.490790px;}
.wsab{word-spacing:8.504371px;}
.ws24{word-spacing:8.620709px;}
.ws10{word-spacing:8.678879px;}
.wsa6{word-spacing:9.214038px;}
.wsa4{word-spacing:9.239586px;}
.wsa5{word-spacing:9.253392px;}
.wse8{word-spacing:9.260573px;}
.ws7e{word-spacing:9.549041px;}
.ws7f{word-spacing:9.557009px;}
.ws80{word-spacing:9.563054px;}
.ws69{word-spacing:9.689335px;}
.ws63{word-spacing:9.695174px;}
.wsc0{word-spacing:11.063826px;}
.ws1c{word-spacing:12.634400px;}
.wsea{word-spacing:14.146805px;}
.ws81{word-spacing:14.212438px;}
.ws5f{word-spacing:14.218277px;}
.ws1b{word-spacing:14.868106px;}
.ws5{word-spacing:15.628435px;}
.ws2d{word-spacing:16.431019px;}
.ws2f{word-spacing:16.446358px;}
.ws30{word-spacing:16.449360px;}
.ws2b{word-spacing:16.452362px;}
.ws67{word-spacing:20.178180px;}
.ws0{word-spacing:21.433223px;}
.ws83{word-spacing:23.520528px;}
.ws64{word-spacing:27.176758px;}
.wsa{word-spacing:27.223399px;}
.wsb{word-spacing:27.307164px;}
.ws66{word-spacing:27.991130px;}
.ws89{word-spacing:30.085785px;}
.ws7c{word-spacing:35.667536px;}
.ws9b{word-spacing:35.673374px;}
.ws1a{word-spacing:41.118955px;}
.ws84{word-spacing:44.861269px;}
.ws6b{word-spacing:169.844795px;}
.ws6c{word-spacing:197.575649px;}
.ws4f{word-spacing:214.928036px;}
.ws6a{word-spacing:274.348584px;}
.ws3{word-spacing:287.337254px;}
.ws2{word-spacing:322.171718px;}
.ws33{word-spacing:363.571614px;}
.ws31{word-spacing:386.687895px;}
.ws61{word-spacing:538.980793px;}
.wsc7{word-spacing:966.031352px;}
._60{margin-left:-2111.693979px;}
._5a{margin-left:-2110.412162px;}
._26{margin-left:-2096.451303px;}
._16{margin-left:-2095.112602px;}
._11{margin-left:-2080.122138px;}
._14{margin-left:-2027.871957px;}
._48{margin-left:-2010.186623px;}
._34{margin-left:-1995.092029px;}
._61{margin-left:-1949.349744px;}
._4c{margin-left:-1891.223335px;}
._35{margin-left:-1870.435680px;}
._30{margin-left:-1845.651837px;}
._32{margin-left:-1788.619357px;}
._36{margin-left:-1701.216925px;}
._51{margin-left:-1653.904684px;}
._43{margin-left:-1560.986993px;}
._37{margin-left:-1552.470885px;}
._25{margin-left:-1506.474030px;}
._4a{margin-left:-1481.063141px;}
._3f{margin-left:-1472.224259px;}
._42{margin-left:-1444.401477px;}
._38{margin-left:-1411.196022px;}
._41{margin-left:-1356.474705px;}
._4f{margin-left:-1230.387033px;}
._58{margin-left:-1226.334710px;}
._50{margin-left:-1213.617245px;}
._3a{margin-left:-1193.591472px;}
._3d{margin-left:-1163.553047px;}
._4e{margin-left:-1139.738966px;}
._40{margin-left:-1134.973252px;}
._3b{margin-left:-981.581527px;}
._3c{margin-left:-978.942398px;}
._31{margin-left:-885.950666px;}
._65{margin-left:-847.920542px;}
._53{margin-left:-835.000453px;}
._63{margin-left:-793.670578px;}
._29{margin-left:-768.553513px;}
._64{margin-left:-730.331040px;}
._23{margin-left:-724.081830px;}
._52{margin-left:-686.131503px;}
._5c{margin-left:-629.225126px;}
._4b{margin-left:-623.281413px;}
._59{margin-left:-536.358212px;}
._10{margin-left:-527.145186px;}
._62{margin-left:-504.079996px;}
._3e{margin-left:-483.995845px;}
._2c{margin-left:-457.882972px;}
._54{margin-left:-425.444756px;}
._5b{margin-left:-420.100790px;}
._55{margin-left:-374.299935px;}
._28{margin-left:-348.877017px;}
._4d{margin-left:-187.179149px;}
._44{margin-left:-180.570239px;}
._15{margin-left:-28.230207px;}
._2b{margin-left:-26.318945px;}
._a{margin-left:-24.908220px;}
._9{margin-left:-22.627908px;}
._17{margin-left:-19.559664px;}
._18{margin-left:-18.300165px;}
._2e{margin-left:-16.128030px;}
._5e{margin-left:-13.975653px;}
._8{margin-left:-6.456807px;}
._2{margin-left:-5.021184px;}
._7{margin-left:-3.199319px;}
._0{margin-left:-1.882944px;}
._f{width:1.126975px;}
._6{width:2.261636px;}
._2f{width:7.282227px;}
._4{width:9.854074px;}
._47{width:12.834928px;}
._22{width:16.033270px;}
._12{width:17.548605px;}
._1a{width:19.195912px;}
._27{width:20.766486px;}
._b{width:22.915296px;}
._2a{width:24.061075px;}
._e{width:25.092546px;}
._13{width:26.387165px;}
._2d{width:27.447231px;}
._24{width:28.735698px;}
._39{width:29.846429px;}
._d{width:31.185212px;}
._21{width:34.087286px;}
._49{width:35.281242px;}
._56{width:37.969620px;}
._57{width:40.078737px;}
._c{width:42.564898px;}
._5f{width:43.595032px;}
._20{width:44.855709px;}
._5{width:47.073600px;}
._5d{width:52.166475px;}
._1b{width:69.809442px;}
._3{width:102.359270px;}
._46{width:119.051556px;}
._1{width:160.175770px;}
._1d{width:174.814165px;}
._1c{width:202.885131px;}
._1f{width:224.764824px;}
._1e{width:252.870460px;}
._33{width:376.187848px;}
._45{width:516.079133px;}
._19{width:1052.553444px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.084715px;}
.fsb{font-size:32.237072px;}
.fs5{font-size:34.901891px;}
.fs8{font-size:35.312941px;}
.fs4{font-size:40.718484px;}
.fsa{font-size:45.402353px;}
.fs6{font-size:46.535660px;}
.fs3{font-size:58.169430px;}
.fs9{font-size:60.536471px;}
.fs1{font-size:62.764800px;}
.fs2{font-size:83.764306px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ydb{bottom:2.732549px;}
.ydc{bottom:9.879216px;}
.y96{bottom:18.372889px;}
.ybd{bottom:27.179229px;}
.y13{bottom:35.302500px;}
.y95{bottom:40.777164px;}
.ybc{bottom:45.180772px;}
.ye5{bottom:55.237778px;}
.ye3{bottom:55.770275px;}
.y92{bottom:56.297517px;}
.ye6{bottom:62.384445px;}
.ye4{bottom:62.916942px;}
.yba{bottom:81.182981px;}
.y93{bottom:85.585713px;}
.ybb{bottom:99.183648px;}
.y94{bottom:107.989988px;}
.yde{bottom:119.640981px;}
.ydf{bottom:126.787648px;}
.y37{bottom:130.445644px;}
.y97{bottom:139.543047px;}
.ye0{bottom:141.876223px;}
.ydd{bottom:153.944982px;}
.y61{bottom:174.073008px;}
.y36{bottom:181.174424px;}
.yb9{bottom:191.523662px;}
.y60{bottom:192.835927px;}
.y35{bottom:194.988977px;}
.y34{bottom:208.804991px;}
.yb8{bottom:208.974315px;}
.y5f{bottom:210.288041px;}
.y90{bottom:217.948520px;}
.yd9{bottom:222.048803px;}
.yb7{bottom:226.424969px;}
.y33{bottom:226.725666px;}
.y5e{bottom:235.518869px;}
.y5d{bottom:239.638128px;}
.y8f{bottom:239.680459px;}
.y8e{bottom:242.837780px;}
.yb6{bottom:243.875623px;}
.y8d{bottom:254.827714px;}
.yb5{bottom:261.327736px;}
.y5c{bottom:261.977300px;}
.yd8{bottom:265.661571px;}
.y32{bottom:270.020220px;}
.y8c{bottom:273.748281px;}
.y8b{bottom:276.905601px;}
.yb4{bottom:278.778390px;}
.yd7{bottom:283.112224px;}
.y31{bottom:287.470874px;}
.y8a{bottom:288.894076px;}
.y5b{bottom:289.980089px;}
.yb3{bottom:296.229044px;}
.yd6{bottom:300.562878px;}
.y5a{bottom:303.312943px;}
.y30{bottom:304.921527px;}
.y59{bottom:307.432203px;}
.yb2{bottom:313.679697px;}
.y89{bottom:315.070787px;}
.yd5{bottom:318.013532px;}
.y2f{bottom:322.373641px;}
.y58{bottom:324.882856px;}
.yed{bottom:327.086996px;}
.y88{bottom:332.521440px;}
.yd4{bottom:335.465645px;}
.y2e{bottom:339.824294px;}
.yb1{bottom:340.381898px;}
.yec{bottom:340.903009px;}
.y57{bottom:347.464338px;}
.y56{bottom:351.059567px;}
.yd3{bottom:352.916299px;}
.yeb{bottom:354.717563px;}
.y2d{bottom:357.274948px;}
.yb0{bottom:358.625166px;}
.y87{bottom:361.605863px;}
.y55{bottom:368.510221px;}
.yea{bottom:368.533576px;}
.yd2{bottom:370.366953px;}
.y2c{bottom:374.725602px;}
.yaf{bottom:376.868434px;}
.ye9{bottom:382.348129px;}
.y86{bottom:383.419545px;}
.y54{bottom:385.960874px;}
.yd1{bottom:387.817606px;}
.y2b{bottom:392.176256px;}
.ye8{bottom:396.164142px;}
.yae{bottom:400.423532px;}
.yd0{bottom:405.268260px;}
.y2a{bottom:409.626909px;}
.y53{bottom:414.303772px;}
.yad{bottom:417.875646px;}
.y85{bottom:418.322312px;}
.ycf{bottom:422.718914px;}
.y52{bottom:424.279328px;}
.y29{bottom:427.079023px;}
.ye7{bottom:439.064578px;}
.yce{bottom:440.171027px;}
.y28{bottom:444.529677px;}
.yac{bottom:444.577846px;}
.y84{bottom:448.860592px;}
.ycd{bottom:457.621681px;}
.y51{bottom:461.951136px;}
.yab{bottom:462.028500px;}
.y27{bottom:475.067956px;}
.yaa{bottom:479.479154px;}
.ycc{bottom:488.146823px;}
.y50{bottom:491.679285px;}
.ye2{bottom:491.817732px;}
.y83{bottom:492.487956px;}
.ya9{bottom:496.929808px;}
.y82{bottom:509.938609px;}
.ya8{bottom:516.956823px;}
.y81{bottom:529.135058px;}
.y26{bottom:529.295625px;}
.ycb{bottom:531.759590px;}
.y4f{bottom:534.496518px;}
.y80{bottom:546.585712px;}
.yca{bottom:549.210244px;}
.ya7{bottom:550.071464px;}
.y4e{bottom:551.947172px;}
.y12{bottom:555.313500px;}
.y25{bottom:556.764165px;}
.yc9{bottom:566.660897px;}
.ya6{bottom:567.523577px;}
.y4d{bottom:569.397826px;}
.y7f{bottom:572.762423px;}
.y24{bottom:574.214819px;}
.y11{bottom:574.741500px;}
.yc8{bottom:584.111551px;}
.ya5{bottom:584.974231px;}
.y4c{bottom:586.849939px;}
.y23{bottom:591.666933px;}
.y10{bottom:594.168000px;}
.yc7{bottom:601.562205px;}
.y7e{bottom:601.846845px;}
.ya4{bottom:602.424885px;}
.y4b{bottom:604.300593px;}
.y22{bottom:609.117586px;}
.yf{bottom:613.596000px;}
.y7d{bottom:619.298959px;}
.ya3{bottom:619.875538px;}
.y4a{bottom:621.751246px;}
.yc6{bottom:623.362750px;}
.y21{bottom:626.568240px;}
.ye{bottom:633.022500px;}
.y7c{bottom:636.749613px;}
.ya2{bottom:637.326192px;}
.ye1{bottom:638.190332px;}
.y49{bottom:639.201900px;}
.y20{bottom:644.018894px;}
.ya1{bottom:654.776846px;}
.y48{bottom:656.652554px;}
.yc5{bottom:658.249460px;}
.y1f{bottom:661.469547px;}
.y7b{bottom:665.834035px;}
.ya0{bottom:672.228959px;}
.y47{bottom:674.104667px;}
.yc4{bottom:675.701574px;}
.y1e{bottom:678.920201px;}
.y7a{bottom:680.911225px;}
.yd{bottom:682.338000px;}
.y79{bottom:685.030484px;}
.yf9{bottom:687.420005px;}
.y9f{bottom:689.679613px;}
.yda{bottom:690.943485px;}
.y46{bottom:691.555321px;}
.yc3{bottom:693.152227px;}
.y1d{bottom:696.372315px;}
.y78{bottom:700.107674px;}
.yc{bottom:701.764500px;}
.y77{bottom:704.226933px;}
.yf8{bottom:704.870659px;}
.y9e{bottom:707.130267px;}
.y45{bottom:709.005975px;}
.yb{bottom:721.192500px;}
.yc2{bottom:722.217674px;}
.y1c{bottom:722.547565px;}
.y9d{bottom:724.580920px;}
.y44{bottom:726.456629px;}
.yf7{bottom:733.955082px;}
.yc1{bottom:739.668328px;}
.y9c{bottom:742.031574px;}
.y43{bottom:743.907282px;}
.y76{bottom:749.550463px;}
.yf6{bottom:751.407195px;}
.y75{bottom:753.598197px;}
.y42{bottom:761.357936px;}
.yf5{bottom:768.857849px;}
.ya{bottom:772.728000px;}
.y41{bottom:778.810049px;}
.y9b{bottom:786.185888px;}
.y9{bottom:792.156000px;}
.y74{bottom:792.742838px;}
.y40{bottom:796.260703px;}
.y73{bottom:796.860638px;}
.yf4{bottom:797.942272px;}
.y1b{bottom:805.941400px;}
.y72{bottom:811.056172px;}
.y71{bottom:815.175431px;}
.yf3{bottom:815.392925px;}
.y1a{bottom:823.862076px;}
.y70{bottom:829.426433px;}
.y8{bottom:829.515000px;}
.yf2{bottom:832.843579px;}
.y19{bottom:833.571967px;}
.y6f{bottom:834.291597px;}
.y6e{bottom:838.410856px;}
.y3f{bottom:840.504059px;}
.y3e{bottom:844.551793px;}
.y18{bottom:851.492643px;}
.y6d{bottom:852.604930px;}
.y6c{bottom:856.724189px;}
.yf1{bottom:863.383318px;}
.y91{bottom:864.387365px;}
.y17{bottom:865.307196px;}
.y7{bottom:866.875500px;}
.y6b{bottom:871.500682px;}
.y6a{bottom:875.618481px;}
.y6{bottom:886.302000px;}
.y16{bottom:889.560028px;}
.y69{bottom:889.814015px;}
.y3d{bottom:889.860726px;}
.y68{bottom:893.931815px;}
.y5{bottom:905.730000px;}
.yf0{bottom:907.010682px;}
.y3c{bottom:907.311379px;}
.y66{bottom:908.184277px;}
.y67{bottom:909.379767px;}
.y65{bottom:914.244931px;}
.y64{bottom:918.364190px;}
.yef{bottom:924.461336px;}
.y3b{bottom:924.762033px;}
.y63{bottom:932.032774px;}
.y98{bottom:932.529070px;}
.y15{bottom:933.187393px;}
.y62{bottom:938.094887px;}
.ybe{bottom:938.734234px;}
.yee{bottom:941.911990px;}
.y3a{bottom:942.212687px;}
.y99{bottom:944.942316px;}
.ybf{bottom:951.147480px;}
.y39{bottom:956.989179px;}
.y9a{bottom:957.355563px;}
.y14{bottom:959.362643px;}
.y38{bottom:961.108439px;}
.y4{bottom:962.925000px;}
.yc0{bottom:963.560726px;}
.y3{bottom:1014.234000px;}
.y2{bottom:1033.660500px;}
.y1{bottom:1079.986500px;}
.h21{height:19.399505px;}
.hd{height:19.510157px;}
.h12{height:19.690352px;}
.h26{height:23.898309px;}
.h8{height:24.195223px;}
.h1e{height:28.706531px;}
.h29{height:30.260846px;}
.h9{height:34.901745px;}
.h10{height:35.928807px;}
.h20{height:35.934645px;}
.h23{height:38.276281px;}
.h27{height:40.347794px;}
.ha{height:40.718601px;}
.h3{height:43.182182px;}
.h4{height:43.494182px;}
.hb{height:43.627072px;}
.he{height:43.868822px;}
.h1b{height:43.874661px;}
.h16{height:46.776535px;}
.h7{height:49.365818px;}
.h15{height:49.813721px;}
.hc{height:49.819560px;}
.h11{height:51.092682px;}
.h2{height:59.479345px;}
.h25{height:59.685834px;}
.h6{height:59.807714px;}
.h1c{height:60.098271px;}
.hf{height:60.104109px;}
.h1a{height:60.345859px;}
.h18{height:66.892006px;}
.h17{height:67.102348px;}
.h1f{height:79.806513px;}
.h19{height:83.369044px;}
.h14{height:83.529295px;}
.h1d{height:84.594313px;}
.h13{height:88.719195px;}
.h22{height:96.041800px;}
.h24{height:153.267975px;}
.h2a{height:155.895426px;}
.h28{height:168.156864px;}
.h5{height:1156.078440px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:227.712420px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:60.252706px;}
.x3b{left:68.354889px;}
.x44{left:90.696105px;}
.x3d{left:95.158393px;}
.x3c{left:101.709504px;}
.x3e{left:105.282837px;}
.x1{left:135.000000px;}
.x15{left:172.784334px;}
.xd{left:195.051981px;}
.x8{left:200.952068px;}
.x47{left:203.652504px;}
.x9{left:204.920979px;}
.xb{left:207.390783px;}
.x5{left:210.679475px;}
.x1c{left:212.244268px;}
.xe{left:216.865663px;}
.x43{left:222.492551px;}
.x21{left:223.913070px;}
.x1d{left:231.408604px;}
.x40{left:232.630369px;}
.x41{left:235.068059px;}
.x11{left:237.374378px;}
.x7{left:238.447253px;}
.x2{left:240.930000px;}
.x12{left:250.704312px;}
.x13{left:260.647755px;}
.xf{left:264.035707px;}
.x46{left:293.610587px;}
.x26{left:303.678104px;}
.xa{left:305.785903px;}
.x3a{left:316.281110px;}
.x6{left:322.767995px;}
.x32{left:324.128431px;}
.x18{left:326.310675px;}
.x2f{left:340.925141px;}
.x35{left:355.059368px;}
.x27{left:359.082287px;}
.x2d{left:361.292265px;}
.x22{left:364.940043px;}
.x16{left:374.273333px;}
.x36{left:377.745947px;}
.xc{left:392.611481px;}
.x37{left:398.126209px;}
.x4{left:402.609000px;}
.x38{left:409.154205px;}
.x1f{left:412.945032px;}
.x2e{left:416.696449px;}
.x39{left:419.824575px;}
.x28{left:422.097320px;}
.x34{left:425.901285px;}
.x23{left:427.955076px;}
.x1e{left:442.273224px;}
.x17{left:445.866994px;}
.x29{left:457.109564px;}
.x30{left:458.303595px;}
.x19{left:460.726689px;}
.x45{left:462.875360px;}
.x2a{left:467.039870px;}
.x24{left:472.493290px;}
.x33{left:479.197669px;}
.x1b{left:487.077103px;}
.x3{left:500.208000px;}
.x3f{left:539.007212px;}
.x14{left:555.049260px;}
.x2b{left:557.441700px;}
.x10{left:565.712332px;}
.x1a{left:580.239217px;}
.x31{left:590.387016px;}
.x2c{left:593.780807px;}
.x20{left:603.197300px;}
.x25{left:612.605034px;}
@media print{
.v9{vertical-align:-21.346580pt;}
.v2{vertical-align:-14.594355pt;}
.v3{vertical-align:-7.753900pt;}
.v13{vertical-align:-5.740169pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:5.745360pt;}
.vc{vertical-align:10.343723pt;}
.v8{vertical-align:12.783036pt;}
.v4{vertical-align:14.646255pt;}
.v11{vertical-align:16.774166pt;}
.v1{vertical-align:18.761946pt;}
.v7{vertical-align:21.346580pt;}
.vf{vertical-align:31.944614pt;}
.vb{vertical-align:33.408202pt;}
.v5{vertical-align:34.980780pt;}
.vd{vertical-align:36.195246pt;}
.v12{vertical-align:46.590869pt;}
.v10{vertical-align:50.706561pt;}
.v6{vertical-align:53.742726pt;}
.ve{vertical-align:54.962382pt;}
.va{vertical-align:57.391315pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000053pt;}
.lsad{letter-spacing:0.000122pt;}
.ls21{letter-spacing:0.000432pt;}
.ls45{letter-spacing:0.000466pt;}
.ls1e{letter-spacing:0.000478pt;}
.ls7a{letter-spacing:0.000560pt;}
.ls7b{letter-spacing:0.000859pt;}
.ls4b{letter-spacing:0.001740pt;}
.ls75{letter-spacing:0.001750pt;}
.ls5c{letter-spacing:0.001933pt;}
.ls9{letter-spacing:0.001942pt;}
.lsa{letter-spacing:0.002023pt;}
.lsa0{letter-spacing:0.002609pt;}
.ls64{letter-spacing:0.002622pt;}
.ls3f{letter-spacing:0.002786pt;}
.ls57{letter-spacing:0.002798pt;}
.ls8{letter-spacing:0.002828pt;}
.ls7c{letter-spacing:0.002854pt;}
.ls7e{letter-spacing:0.003633pt;}
.ls20{letter-spacing:0.003917pt;}
.ls35{letter-spacing:0.005243pt;}
.lsbd{letter-spacing:0.005312pt;}
.ls36{letter-spacing:1.437448pt;}
.lsaa{letter-spacing:1.479695pt;}
.lsa6{letter-spacing:1.484885pt;}
.ls6a{letter-spacing:1.849400pt;}
.ls2b{letter-spacing:1.851258pt;}
.ls39{letter-spacing:1.854590pt;}
.ls41{letter-spacing:1.859962pt;}
.ls1{letter-spacing:2.581628pt;}
.ls2{letter-spacing:2.582205pt;}
.ls2a{letter-spacing:2.582343pt;}
.ls18{letter-spacing:2.584173pt;}
.ls3{letter-spacing:2.584670pt;}
.lsa8{letter-spacing:2.585093pt;}
.ls4{letter-spacing:2.586251pt;}
.ls42{letter-spacing:2.586818pt;}
.lsf{letter-spacing:2.587533pt;}
.ls5{letter-spacing:2.588757pt;}
.ls47{letter-spacing:2.730750pt;}
.ls82{letter-spacing:3.079288pt;}
.ls81{letter-spacing:3.079295pt;}
.ls83{letter-spacing:3.079388pt;}
.ls4f{letter-spacing:4.053338pt;}
.ls49{letter-spacing:4.058528pt;}
.ls1f{letter-spacing:4.176078pt;}
.ls23{letter-spacing:4.181268pt;}
.ls38{letter-spacing:4.199202pt;}
.ls22{letter-spacing:4.406811pt;}
.lsb{letter-spacing:4.444595pt;}
.ls7{letter-spacing:5.633965pt;}
.lse{letter-spacing:5.639155pt;}
.lsa1{letter-spacing:7.328440pt;}
.ls8e{letter-spacing:8.612277pt;}
.ls5d{letter-spacing:8.612439pt;}
.ls53{letter-spacing:8.617377pt;}
.ls90{letter-spacing:8.617386pt;}
.ls74{letter-spacing:8.617467pt;}
.ls93{letter-spacing:10.470034pt;}
.ls92{letter-spacing:10.475224pt;}
.ls58{letter-spacing:11.201219pt;}
.ls73{letter-spacing:11.202262pt;}
.ls3b{letter-spacing:11.491185pt;}
.lsbb{letter-spacing:12.202684pt;}
.lsbe{letter-spacing:12.204396pt;}
.lsbc{letter-spacing:12.205670pt;}
.lsb8{letter-spacing:12.206282pt;}
.ls24{letter-spacing:12.207374pt;}
.ls85{letter-spacing:12.209586pt;}
.lsba{letter-spacing:12.210860pt;}
.lsb9{letter-spacing:12.210981pt;}
.ls84{letter-spacing:12.211654pt;}
.ls61{letter-spacing:12.212565pt;}
.lsb5{letter-spacing:12.401617pt;}
.lsb3{letter-spacing:12.402891pt;}
.lsb4{letter-spacing:12.406807pt;}
.lsb6{letter-spacing:12.409509pt;}
.ls4e{letter-spacing:14.176791pt;}
.ls46{letter-spacing:14.256613pt;}
.ls5b{letter-spacing:14.358442pt;}
.ls7d{letter-spacing:14.358468pt;}
.ls54{letter-spacing:14.359247pt;}
.ls80{letter-spacing:14.360464pt;}
.ls1c{letter-spacing:14.361269pt;}
.ls28{letter-spacing:14.362745pt;}
.ls7f{letter-spacing:14.363425pt;}
.ls56{letter-spacing:14.363632pt;}
.ls77{letter-spacing:14.363658pt;}
.ls1a{letter-spacing:14.364437pt;}
.ls3e{letter-spacing:14.365654pt;}
.ls6c{letter-spacing:14.366459pt;}
.ls5a{letter-spacing:14.367935pt;}
.ls4a{letter-spacing:14.374312pt;}
.lsb1{letter-spacing:14.380903pt;}
.lsaf{letter-spacing:14.384207pt;}
.lsae{letter-spacing:14.385481pt;}
.lsb2{letter-spacing:14.385603pt;}
.ls29{letter-spacing:14.552444pt;}
.ls16{letter-spacing:14.557634pt;}
.ls9d{letter-spacing:14.615581pt;}
.lsb7{letter-spacing:14.796888pt;}
.ls17{letter-spacing:14.993597pt;}
.ls3c{letter-spacing:15.198421pt;}
.lsa2{letter-spacing:15.252827pt;}
.lsa3{letter-spacing:15.257527pt;}
.ls34{letter-spacing:15.642401pt;}
.ls15{letter-spacing:15.686202pt;}
.ls2f{letter-spacing:15.798907pt;}
.ls2d{letter-spacing:15.803292pt;}
.ls3d{letter-spacing:16.215393pt;}
.ls40{letter-spacing:16.220584pt;}
.lsb0{letter-spacing:16.281236pt;}
.ls98{letter-spacing:16.659646pt;}
.lsa5{letter-spacing:16.719719pt;}
.lsa7{letter-spacing:16.720993pt;}
.lsac{letter-spacing:16.721115pt;}
.lsab{letter-spacing:16.721605pt;}
.lsa4{letter-spacing:16.726183pt;}
.ls44{letter-spacing:16.795723pt;}
.ls11{letter-spacing:16.924337pt;}
.ls10{letter-spacing:16.926619pt;}
.ls66{letter-spacing:16.942432pt;}
.ls78{letter-spacing:16.947622pt;}
.ls5e{letter-spacing:17.091554pt;}
.ls1b{letter-spacing:17.096744pt;}
.ls65{letter-spacing:17.233742pt;}
.lsc{letter-spacing:17.238020pt;}
.ls2e{letter-spacing:17.241079pt;}
.ls86{letter-spacing:17.274350pt;}
.ls6d{letter-spacing:17.276042pt;}
.ls6b{letter-spacing:17.280427pt;}
.ls69{letter-spacing:17.281232pt;}
.ls68{letter-spacing:17.477648pt;}
.ls67{letter-spacing:17.478453pt;}
.ls2c{letter-spacing:17.654890pt;}
.ls88{letter-spacing:17.911248pt;}
.ls89{letter-spacing:17.912724pt;}
.ls6e{letter-spacing:17.963479pt;}
.lsa9{letter-spacing:18.035465pt;}
.ls32{letter-spacing:18.195843pt;}
.ls33{letter-spacing:18.234748pt;}
.ls27{letter-spacing:18.414680pt;}
.ls26{letter-spacing:18.419870pt;}
.ls37{letter-spacing:18.484007pt;}
.ls91{letter-spacing:18.494507pt;}
.ls62{letter-spacing:18.494893pt;}
.ls4d{letter-spacing:18.495698pt;}
.ls4c{letter-spacing:18.498995pt;}
.ls51{letter-spacing:18.499697pt;}
.ls50{letter-spacing:18.500083pt;}
.ls79{letter-spacing:18.500888pt;}
.ls31{letter-spacing:18.559196pt;}
.ls25{letter-spacing:18.611045pt;}
.ls99{letter-spacing:18.616679pt;}
.ls30{letter-spacing:18.751176pt;}
.ls14{letter-spacing:18.797886pt;}
.ls6{letter-spacing:18.907321pt;}
.ls97{letter-spacing:19.390736pt;}
.ls9c{letter-spacing:19.504586pt;}
.ls8d{letter-spacing:19.678245pt;}
.ls8b{letter-spacing:19.681047pt;}
.lsd{letter-spacing:19.966829pt;}
.ls9e{letter-spacing:20.117340pt;}
.ls70{letter-spacing:20.174099pt;}
.ls76{letter-spacing:20.176461pt;}
.ls72{letter-spacing:20.176488pt;}
.ls87{letter-spacing:20.497600pt;}
.ls48{letter-spacing:20.803559pt;}
.ls9a{letter-spacing:21.228005pt;}
.ls13{letter-spacing:21.353954pt;}
.ls8f{letter-spacing:21.432448pt;}
.ls8c{letter-spacing:21.433253pt;}
.ls71{letter-spacing:21.713515pt;}
.ls95{letter-spacing:22.167070pt;}
.ls8a{letter-spacing:22.262209pt;}
.ls6f{letter-spacing:22.760451pt;}
.ls96{letter-spacing:23.061221pt;}
.ls63{letter-spacing:23.783145pt;}
.ls94{letter-spacing:24.753422pt;}
.ls9b{letter-spacing:25.984127pt;}
.ls3a{letter-spacing:29.970847pt;}
.ls59{letter-spacing:82.871232pt;}
.ls55{letter-spacing:82.872789pt;}
.ls5f{letter-spacing:159.176561pt;}
.ls60{letter-spacing:240.436808pt;}
.ls1d{letter-spacing:249.916150pt;}
.ls9f{letter-spacing:292.465269pt;}
.ls43{letter-spacing:391.589535pt;}
.ls19{letter-spacing:497.716005pt;}
.ls52{letter-spacing:543.492040pt;}
.ws18{word-spacing:-51.706160pt;}
.ws22{word-spacing:-41.221583pt;}
.wsda{word-spacing:-41.137524pt;}
.wse3{word-spacing:-40.930699pt;}
.ws85{word-spacing:-34.163713pt;}
.ws41{word-spacing:-33.681392pt;}
.ws56{word-spacing:-28.738284pt;}
.ws8b{word-spacing:-28.728014pt;}
.ws65{word-spacing:-27.362821pt;}
.ws4a{word-spacing:-25.046464pt;}
.wsde{word-spacing:-24.616330pt;}
.wsce{word-spacing:-21.406404pt;}
.ws4c{word-spacing:-19.343308pt;}
.ws59{word-spacing:-19.338118pt;}
.ws96{word-spacing:-19.335968pt;}
.ws97{word-spacing:-19.335274pt;}
.ws62{word-spacing:-19.331690pt;}
.ws87{word-spacing:-19.330778pt;}
.ws68{word-spacing:-19.326500pt;}
.ws32{word-spacing:-19.307080pt;}
.ws3e{word-spacing:-19.297109pt;}
.wsb1{word-spacing:-16.534353pt;}
.ws8a{word-spacing:-16.525330pt;}
.wsc4{word-spacing:-16.514947pt;}
.ws9e{word-spacing:-15.791061pt;}
.ws8f{word-spacing:-15.605933pt;}
.wsc2{word-spacing:-15.222293pt;}
.ws92{word-spacing:-14.594686pt;}
.wsd2{word-spacing:-14.374348pt;}
.ws20{word-spacing:-14.363971pt;}
.wsc1{word-spacing:-14.188170pt;}
.ws4{word-spacing:-13.947733pt;}
.ws5a{word-spacing:-13.216094pt;}
.ws34{word-spacing:-12.206821pt;}
.wscc{word-spacing:-12.016542pt;}
.ws8d{word-spacing:-11.791775pt;}
.ws1d{word-spacing:-1.437431pt;}
.ws38{word-spacing:-1.127194pt;}
.wsb7{word-spacing:-1.075488pt;}
.ws71{word-spacing:-0.868663pt;}
.ws70{word-spacing:-0.861907pt;}
.ws3c{word-spacing:-0.506720pt;}
.ws51{word-spacing:-0.313300pt;}
.ws50{word-spacing:-0.299896pt;}
.ws5c{word-spacing:-0.199418pt;}
.wseb{word-spacing:-0.051706pt;}
.wsa9{word-spacing:-0.041365pt;}
.wsc6{word-spacing:-0.040358pt;}
.wsd{word-spacing:-0.036194pt;}
.ws88{word-spacing:-0.031389pt;}
.ws17{word-spacing:-0.018573pt;}
.ws57{word-spacing:-0.015745pt;}
.ws4e{word-spacing:-0.013382pt;}
.ws35{word-spacing:-0.004137pt;}
.ws1{word-spacing:0.000000pt;}
.ws27{word-spacing:0.010341pt;}
.ws16{word-spacing:0.113754pt;}
.wsdd{word-spacing:0.202689pt;}
.ws4d{word-spacing:0.320578pt;}
.ws4b{word-spacing:0.332526pt;}
.ws29{word-spacing:0.423991pt;}
.ws53{word-spacing:0.651498pt;}
.ws28{word-spacing:0.682521pt;}
.ws6{word-spacing:0.725282pt;}
.ws99{word-spacing:0.785934pt;}
.ws7b{word-spacing:0.889346pt;}
.ws98{word-spacing:0.941052pt;}
.ws5d{word-spacing:0.951393pt;}
.ws5b{word-spacing:0.958791pt;}
.wse2{word-spacing:0.961315pt;}
.wse6{word-spacing:0.966505pt;}
.wse0{word-spacing:0.974706pt;}
.wsdf{word-spacing:0.976760pt;}
.wse4{word-spacing:0.988624pt;}
.ws52{word-spacing:1.044464pt;}
.wsaf{word-spacing:1.064547pt;}
.wsb0{word-spacing:1.096171pt;}
.ws39{word-spacing:1.181430pt;}
.ws3a{word-spacing:1.199583pt;}
.ws3f{word-spacing:1.251289pt;}
.wse1{word-spacing:1.269132pt;}
.wse5{word-spacing:1.274322pt;}
.ws3d{word-spacing:1.302995pt;}
.ws13{word-spacing:1.509820pt;}
.wsb4{word-spacing:1.716645pt;}
.ws36{word-spacing:1.768351pt;}
.ws95{word-spacing:1.871763pt;}
.wsc5{word-spacing:1.975175pt;}
.wsaa{word-spacing:2.026881pt;}
.wsd6{word-spacing:2.146845pt;}
.wsad{word-spacing:2.182000pt;}
.wsec{word-spacing:2.233706pt;}
.wsbc{word-spacing:2.285412pt;}
.wsb6{word-spacing:2.388825pt;}
.ws2e{word-spacing:2.432047pt;}
.ws2c{word-spacing:2.436400pt;}
.wse7{word-spacing:2.442078pt;}
.ws7{word-spacing:2.454801pt;}
.ws2a{word-spacing:2.477765pt;}
.ws21{word-spacing:2.543943pt;}
.wsd9{word-spacing:2.555360pt;}
.wsdb{word-spacing:2.560495pt;}
.wsd8{word-spacing:2.587399pt;}
.wsdc{word-spacing:2.592589pt;}
.wsbb{word-spacing:2.699062pt;}
.wsc{word-spacing:2.854180pt;}
.ws74{word-spacing:2.868261pt;}
.ws73{word-spacing:2.871768pt;}
.wsa2{word-spacing:2.873952pt;}
.ws19{word-spacing:2.875639pt;}
.ws72{word-spacing:2.905886pt;}
.ws3b{word-spacing:2.957592pt;}
.wsc3{word-spacing:3.009298pt;}
.wsc9{word-spacing:3.015511pt;}
.ws54{word-spacing:3.123052pt;}
.ws9a{word-spacing:3.164417pt;}
.ws49{word-spacing:3.288512pt;}
.ws93{word-spacing:3.422948pt;}
.wsae{word-spacing:3.474654pt;}
.wsa1{word-spacing:3.526360pt;}
.wsf{word-spacing:3.578066pt;}
.ws44{word-spacing:3.629772pt;}
.ws25{word-spacing:3.681479pt;}
.wsd3{word-spacing:3.718716pt;}
.wsd5{word-spacing:3.727616pt;}
.ws40{word-spacing:3.733185pt;}
.ws45{word-spacing:3.836597pt;}
.ws15{word-spacing:3.940009pt;}
.ws7a{word-spacing:4.053763pt;}
.ws79{word-spacing:4.057237pt;}
.wsd4{word-spacing:4.071746pt;}
.wsd7{word-spacing:4.091002pt;}
.wsbe{word-spacing:4.146834pt;}
.ws12{word-spacing:4.250246pt;}
.ws76{word-spacing:4.254458pt;}
.wsbd{word-spacing:4.256186pt;}
.wsc8{word-spacing:4.256462pt;}
.ws77{word-spacing:4.260588pt;}
.ws8{word-spacing:4.295902pt;}
.ws1f{word-spacing:4.405365pt;}
.ws23{word-spacing:4.433829pt;}
.ws46{word-spacing:4.457071pt;}
.wscd{word-spacing:4.504652pt;}
.ws14{word-spacing:4.508777pt;}
.wsb2{word-spacing:4.529460pt;}
.wse{word-spacing:4.537744pt;}
.ws9c{word-spacing:4.612189pt;}
.wsa0{word-spacing:4.973985pt;}
.ws9d{word-spacing:5.001003pt;}
.ws9f{word-spacing:5.025839pt;}
.ws8e{word-spacing:5.087906pt;}
.wsb5{word-spacing:5.105090pt;}
.wscb{word-spacing:5.129009pt;}
.ws90{word-spacing:5.129251pt;}
.wscf{word-spacing:5.154177pt;}
.wsd1{word-spacing:5.166492pt;}
.ws26{word-spacing:5.180957pt;}
.ws55{word-spacing:5.263528pt;}
.ws75{word-spacing:5.268435pt;}
.ws78{word-spacing:5.275977pt;}
.ws6e{word-spacing:5.277058pt;}
.ws58{word-spacing:5.277195pt;}
.ws86{word-spacing:5.280600pt;}
.wsa7{word-spacing:5.282338pt;}
.ws60{word-spacing:5.282492pt;}
.ws6f{word-spacing:5.283960pt;}
.ws37{word-spacing:5.284370pt;}
.wsa8{word-spacing:5.285155pt;}
.ws82{word-spacing:5.287682pt;}
.ws6d{word-spacing:5.289150pt;}
.ws5e{word-spacing:5.294711pt;}
.ws48{word-spacing:5.336076pt;}
.ws43{word-spacing:5.387782pt;}
.ws42{word-spacing:5.390614pt;}
.ws91{word-spacing:5.698019pt;}
.ws94{word-spacing:5.749725pt;}
.ws1e{word-spacing:5.801431pt;}
.wsca{word-spacing:5.825975pt;}
.wsd0{word-spacing:5.831165pt;}
.ws11{word-spacing:5.956550pt;}
.wsb8{word-spacing:6.215080pt;}
.wsb3{word-spacing:6.277128pt;}
.wsbf{word-spacing:6.525317pt;}
.wsb9{word-spacing:6.732142pt;}
.ws47{word-spacing:6.835554pt;}
.wsa3{word-spacing:6.959649pt;}
.wsba{word-spacing:7.094085pt;}
.wse9{word-spacing:7.197497pt;}
.ws9{word-spacing:7.252821pt;}
.ws7d{word-spacing:7.321592pt;}
.ws8c{word-spacing:7.404322pt;}
.wsac{word-spacing:7.547369pt;}
.wsab{word-spacing:7.559441pt;}
.ws24{word-spacing:7.662853pt;}
.ws10{word-spacing:7.714559pt;}
.wsa6{word-spacing:8.190256pt;}
.wsa4{word-spacing:8.212965pt;}
.wsa5{word-spacing:8.225237pt;}
.wse8{word-spacing:8.231621pt;}
.ws7e{word-spacing:8.488037pt;}
.ws7f{word-spacing:8.495119pt;}
.ws80{word-spacing:8.500493pt;}
.ws69{word-spacing:8.612743pt;}
.ws63{word-spacing:8.617933pt;}
.wsc0{word-spacing:9.834512pt;}
.ws1c{word-spacing:11.230578pt;}
.wsea{word-spacing:12.574938pt;}
.ws81{word-spacing:12.633278pt;}
.ws5f{word-spacing:12.638468pt;}
.ws1b{word-spacing:13.216094pt;}
.ws5{word-spacing:13.891942pt;}
.ws2d{word-spacing:14.605350pt;}
.ws2f{word-spacing:14.618985pt;}
.ws30{word-spacing:14.621653pt;}
.ws2b{word-spacing:14.624322pt;}
.ws67{word-spacing:17.936160pt;}
.ws0{word-spacing:19.051754pt;}
.ws83{word-spacing:20.907136pt;}
.ws64{word-spacing:24.157118pt;}
.wsa{word-spacing:24.198577pt;}
.wsb{word-spacing:24.273034pt;}
.ws66{word-spacing:24.881004pt;}
.ws89{word-spacing:26.742920pt;}
.ws7c{word-spacing:31.704476pt;}
.ws9b{word-spacing:31.709666pt;}
.ws1a{word-spacing:36.550183pt;}
.ws84{word-spacing:39.876683pt;}
.ws6b{word-spacing:150.973151pt;}
.ws6c{word-spacing:175.622799pt;}
.ws4f{word-spacing:191.047143pt;}
.ws6a{word-spacing:243.865408pt;}
.ws3{word-spacing:255.410893pt;}
.ws2{word-spacing:286.374861pt;}
.ws33{word-spacing:323.174768pt;}
.ws31{word-spacing:343.722573pt;}
.ws61{word-spacing:479.094039pt;}
.wsc7{word-spacing:858.694535pt;}
._60{margin-left:-1877.061315pt;}
._5a{margin-left:-1875.921922pt;}
._26{margin-left:-1863.512270pt;}
._16{margin-left:-1862.322313pt;}
._11{margin-left:-1848.997456pt;}
._14{margin-left:-1802.552850pt;}
._48{margin-left:-1786.832554pt;}
._34{margin-left:-1773.415137pt;}
._61{margin-left:-1732.755328pt;}
._4c{margin-left:-1681.087409pt;}
._35{margin-left:-1662.609493pt;}
._30{margin-left:-1640.579411pt;}
._32{margin-left:-1589.883873pt;}
._36{margin-left:-1512.192822pt;}
._51{margin-left:-1470.137497pt;}
._43{margin-left:-1387.543993pt;}
._37{margin-left:-1379.974120pt;}
._25{margin-left:-1339.088027pt;}
._4a{margin-left:-1316.500570pt;}
._3f{margin-left:-1308.643786pt;}
._42{margin-left:-1283.912424pt;}
._38{margin-left:-1254.396464pt;}
._41{margin-left:-1205.755293pt;}
._4f{margin-left:-1093.677363pt;}
._58{margin-left:-1090.075298pt;}
._50{margin-left:-1078.770884pt;}
._3a{margin-left:-1060.970197pt;}
._3d{margin-left:-1034.269375pt;}
._4e{margin-left:-1013.101303pt;}
._40{margin-left:-1008.865113pt;}
._3b{margin-left:-872.516912pt;}
._3c{margin-left:-870.171020pt;}
._31{margin-left:-787.511704pt;}
._65{margin-left:-753.707149pt;}
._53{margin-left:-742.222625pt;}
._63{margin-left:-705.484958pt;}
._29{margin-left:-683.158679pt;}
._64{margin-left:-649.183147pt;}
._23{margin-left:-643.628293pt;}
._52{margin-left:-609.894669pt;}
._5c{margin-left:-559.311224pt;}
._4b{margin-left:-554.027923pt;}
._59{margin-left:-476.762856pt;}
._10{margin-left:-468.573498pt;}
._62{margin-left:-448.071108pt;}
._3e{margin-left:-430.218529pt;}
._2c{margin-left:-407.007086pt;}
._54{margin-left:-378.173116pt;}
._5b{margin-left:-373.422925pt;}
._55{margin-left:-332.711053pt;}
._28{margin-left:-310.112904pt;}
._4d{margin-left:-166.381466pt;}
._44{margin-left:-160.506879pt;}
._15{margin-left:-25.093518pt;}
._2b{margin-left:-23.394618pt;}
._a{margin-left:-22.140640pt;}
._9{margin-left:-20.113696pt;}
._17{margin-left:-17.386368pt;}
._18{margin-left:-16.266813pt;}
._2e{margin-left:-14.336026pt;}
._5e{margin-left:-12.422802pt;}
._8{margin-left:-5.739384pt;}
._2{margin-left:-4.463275pt;}
._7{margin-left:-2.843839pt;}
._0{margin-left:-1.673728pt;}
._f{width:1.001756pt;}
._6{width:2.010343pt;}
._2f{width:6.473090pt;}
._4{width:8.759177pt;}
._47{width:11.408825pt;}
._22{width:14.251796pt;}
._12{width:15.598760pt;}
._1a{width:17.063033pt;}
._27{width:18.459099pt;}
._b{width:20.369152pt;}
._2a{width:21.387622pt;}
._e{width:22.304486pt;}
._13{width:23.455258pt;}
._2d{width:24.397539pt;}
._24{width:25.542843pt;}
._39{width:26.530159pt;}
._d{width:27.720188pt;}
._21{width:30.299810pt;}
._49{width:31.361104pt;}
._56{width:33.750773pt;}
._57{width:35.625544pt;}
._c{width:37.835464pt;}
._5f{width:38.751139pt;}
._20{width:39.871742pt;}
._5{width:41.843200pt;}
._5d{width:46.370200pt;}
._1b{width:62.052837pt;}
._3{width:90.986018pt;}
._46{width:105.823606pt;}
._1{width:142.378462pt;}
._1d{width:155.390369pt;}
._1c{width:180.342339pt;}
._1f{width:199.790955pt;}
._1e{width:224.773742pt;}
._33{width:334.389198pt;}
._45{width:458.737007pt;}
._19{width:935.603062pt;}
.fs7{font-size:25.853080pt;}
.fsb{font-size:28.655175pt;}
.fs5{font-size:31.023903pt;}
.fs8{font-size:31.389281pt;}
.fs4{font-size:36.194208pt;}
.fsa{font-size:40.357647pt;}
.fs6{font-size:41.365032pt;}
.fs3{font-size:51.706160pt;}
.fs9{font-size:53.810196pt;}
.fs1{font-size:55.790933pt;}
.fs2{font-size:74.457161pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:2.428932pt;}
.ydc{bottom:8.781525pt;}
.y96{bottom:16.331457pt;}
.ybd{bottom:24.159315pt;}
.y13{bottom:31.380000pt;}
.y95{bottom:36.246368pt;}
.ybc{bottom:40.160686pt;}
.ye5{bottom:49.100247pt;}
.ye3{bottom:49.573578pt;}
.y92{bottom:50.042237pt;}
.ye6{bottom:55.452840pt;}
.ye4{bottom:55.926170pt;}
.yba{bottom:72.162650pt;}
.y93{bottom:76.076189pt;}
.ybb{bottom:88.163242pt;}
.y94{bottom:95.991100pt;}
.yde{bottom:106.347539pt;}
.ydf{bottom:112.700132pt;}
.y37{bottom:115.951683pt;}
.y97{bottom:124.038264pt;}
.ye0{bottom:126.112198pt;}
.ydd{bottom:136.839984pt;}
.y61{bottom:154.731563pt;}
.y36{bottom:161.043932pt;}
.yb9{bottom:170.243255pt;}
.y60{bottom:171.409713pt;}
.y35{bottom:173.323536pt;}
.y34{bottom:185.604436pt;}
.yb8{bottom:185.754947pt;}
.y5f{bottom:186.922703pt;}
.y90{bottom:193.732018pt;}
.yd9{bottom:197.376714pt;}
.yb7{bottom:201.266639pt;}
.y33{bottom:201.533925pt;}
.y5e{bottom:209.350106pt;}
.y5d{bottom:213.011669pt;}
.y8f{bottom:213.049297pt;}
.y8e{bottom:215.855804pt;}
.yb6{bottom:216.778331pt;}
.y8d{bottom:226.513524pt;}
.yb5{bottom:232.291321pt;}
.y5c{bottom:232.868711pt;}
.yd8{bottom:236.143618pt;}
.y32{bottom:240.017973pt;}
.y8c{bottom:243.331805pt;}
.y8b{bottom:246.138312pt;}
.yb4{bottom:247.803013pt;}
.yd7{bottom:251.655311pt;}
.y31{bottom:255.529665pt;}
.y8a{bottom:256.794734pt;}
.y5b{bottom:257.760079pt;}
.yb3{bottom:263.314705pt;}
.yd6{bottom:267.167003pt;}
.y5a{bottom:269.611505pt;}
.y30{bottom:271.041358pt;}
.y59{bottom:273.273069pt;}
.yb2{bottom:278.826398pt;}
.y89{bottom:280.062921pt;}
.yd5{bottom:282.678695pt;}
.y2f{bottom:286.554347pt;}
.y58{bottom:288.784761pt;}
.yed{bottom:290.743996pt;}
.y88{bottom:295.574614pt;}
.yd4{bottom:298.191685pt;}
.y2e{bottom:302.066040pt;}
.yb1{bottom:302.561687pt;}
.yec{bottom:303.024897pt;}
.y57{bottom:308.857189pt;}
.y56{bottom:312.052948pt;}
.yd3{bottom:313.703377pt;}
.yeb{bottom:315.304500pt;}
.y2d{bottom:317.577732pt;}
.yb0{bottom:318.777925pt;}
.y87{bottom:321.427434pt;}
.y55{bottom:327.564641pt;}
.yea{bottom:327.585401pt;}
.yd2{bottom:329.215069pt;}
.y2c{bottom:333.089424pt;}
.yaf{bottom:334.994164pt;}
.ye9{bottom:339.865004pt;}
.y86{bottom:340.817374pt;}
.y54{bottom:343.076333pt;}
.yd1{bottom:344.726761pt;}
.y2b{bottom:348.601116pt;}
.ye8{bottom:352.145904pt;}
.yae{bottom:355.932029pt;}
.yd0{bottom:360.238453pt;}
.y2a{bottom:364.112808pt;}
.y53{bottom:368.270020pt;}
.yad{bottom:371.445019pt;}
.y85{bottom:371.842056pt;}
.ycf{bottom:375.750146pt;}
.y52{bottom:377.137180pt;}
.y29{bottom:379.625798pt;}
.ye7{bottom:390.279625pt;}
.yce{bottom:391.263135pt;}
.y28{bottom:395.137490pt;}
.yac{bottom:395.180308pt;}
.y84{bottom:398.987193pt;}
.ycd{bottom:406.774828pt;}
.y51{bottom:410.623232pt;}
.yab{bottom:410.692000pt;}
.y27{bottom:422.282627pt;}
.yaa{bottom:426.203692pt;}
.ycc{bottom:433.908287pt;}
.y50{bottom:437.048253pt;}
.ye2{bottom:437.171317pt;}
.y83{bottom:437.767072pt;}
.ya9{bottom:441.715385pt;}
.y82{bottom:453.278764pt;}
.ya8{bottom:459.517176pt;}
.y81{bottom:470.342274pt;}
.y26{bottom:470.485000pt;}
.ycb{bottom:472.675191pt;}
.y4f{bottom:475.108016pt;}
.y80{bottom:485.853966pt;}
.yca{bottom:488.186883pt;}
.ya7{bottom:488.952412pt;}
.y4e{bottom:490.619708pt;}
.y12{bottom:493.612000pt;}
.y25{bottom:494.901480pt;}
.yc9{bottom:503.698576pt;}
.ya6{bottom:504.465402pt;}
.y4d{bottom:506.131401pt;}
.y7f{bottom:509.122153pt;}
.y24{bottom:510.413173pt;}
.y11{bottom:510.881333pt;}
.yc8{bottom:519.210268pt;}
.ya5{bottom:519.977094pt;}
.y4c{bottom:521.644390pt;}
.y23{bottom:525.926162pt;}
.y10{bottom:528.149333pt;}
.yc7{bottom:534.721960pt;}
.y7e{bottom:534.974974pt;}
.ya4{bottom:535.488786pt;}
.y4b{bottom:537.156082pt;}
.y22{bottom:541.437854pt;}
.yf{bottom:545.418667pt;}
.y7d{bottom:550.487963pt;}
.ya3{bottom:551.000479pt;}
.y4a{bottom:552.667775pt;}
.yc6{bottom:554.100222pt;}
.y21{bottom:556.949547pt;}
.ye{bottom:562.686667pt;}
.y7c{bottom:565.999656pt;}
.ya2{bottom:566.512171pt;}
.ye1{bottom:567.280295pt;}
.y49{bottom:568.179467pt;}
.y20{bottom:572.461239pt;}
.ya1{bottom:582.023863pt;}
.y48{bottom:583.691159pt;}
.yc5{bottom:585.110631pt;}
.y1f{bottom:587.972931pt;}
.y7b{bottom:591.852476pt;}
.ya0{bottom:597.536853pt;}
.y47{bottom:599.204149pt;}
.yc4{bottom:600.623621pt;}
.y1e{bottom:603.484623pt;}
.y7a{bottom:605.254422pt;}
.yd{bottom:606.522667pt;}
.y79{bottom:608.915986pt;}
.yf9{bottom:611.040005pt;}
.y9f{bottom:613.048545pt;}
.yda{bottom:614.171987pt;}
.y46{bottom:614.715841pt;}
.yc3{bottom:616.135313pt;}
.y1d{bottom:618.997613pt;}
.y78{bottom:622.317933pt;}
.yc{bottom:623.790667pt;}
.y77{bottom:625.979496pt;}
.yf8{bottom:626.551697pt;}
.y9e{bottom:628.560237pt;}
.y45{bottom:630.227533pt;}
.yb{bottom:641.060000pt;}
.yc2{bottom:641.971266pt;}
.y1c{bottom:642.264502pt;}
.y9d{bottom:644.071929pt;}
.y44{bottom:645.739225pt;}
.yf7{bottom:652.404517pt;}
.yc1{bottom:657.482958pt;}
.y9c{bottom:659.583621pt;}
.y43{bottom:661.250918pt;}
.y76{bottom:666.267078pt;}
.yf6{bottom:667.917507pt;}
.y75{bottom:669.865064pt;}
.y42{bottom:676.762610pt;}
.yf5{bottom:683.429199pt;}
.ya{bottom:686.869333pt;}
.y41{bottom:692.275599pt;}
.y9b{bottom:698.831901pt;}
.y9{bottom:704.138667pt;}
.y74{bottom:704.660301pt;}
.y40{bottom:707.787292pt;}
.y73{bottom:708.320567pt;}
.yf4{bottom:709.282019pt;}
.y1b{bottom:716.392356pt;}
.y72{bottom:720.938819pt;}
.y71{bottom:724.600383pt;}
.yf3{bottom:724.793712pt;}
.y1a{bottom:732.321845pt;}
.y70{bottom:737.267941pt;}
.y8{bottom:737.346667pt;}
.yf2{bottom:740.305404pt;}
.y19{bottom:740.952860pt;}
.y6f{bottom:741.592530pt;}
.y6e{bottom:745.254094pt;}
.y3f{bottom:747.114719pt;}
.y3e{bottom:750.712705pt;}
.y18{bottom:756.882349pt;}
.y6d{bottom:757.871049pt;}
.y6c{bottom:761.532613pt;}
.yf1{bottom:767.451838pt;}
.y91{bottom:768.344324pt;}
.y17{bottom:769.161952pt;}
.y7{bottom:770.556000pt;}
.y6b{bottom:774.667273pt;}
.y6a{bottom:778.327539pt;}
.y6{bottom:787.824000pt;}
.y16{bottom:790.720025pt;}
.y69{bottom:790.945791pt;}
.y3d{bottom:790.987312pt;}
.y68{bottom:794.606058pt;}
.y5{bottom:805.093333pt;}
.yf0{bottom:806.231717pt;}
.y3c{bottom:806.499004pt;}
.y66{bottom:807.274913pt;}
.y67{bottom:808.337571pt;}
.y65{bottom:812.662161pt;}
.y64{bottom:816.323724pt;}
.yef{bottom:821.743410pt;}
.y3b{bottom:822.010696pt;}
.y63{bottom:828.473577pt;}
.y98{bottom:828.914729pt;}
.y15{bottom:829.499905pt;}
.y62{bottom:833.862122pt;}
.ybe{bottom:834.430430pt;}
.yee{bottom:837.255102pt;}
.y3a{bottom:837.522388pt;}
.y99{bottom:839.948726pt;}
.ybf{bottom:845.464427pt;}
.y39{bottom:850.657048pt;}
.y9a{bottom:850.982722pt;}
.y14{bottom:852.766794pt;}
.y38{bottom:854.318612pt;}
.y4{bottom:855.933333pt;}
.yc0{bottom:856.498423pt;}
.y3{bottom:901.541333pt;}
.y2{bottom:918.809333pt;}
.y1{bottom:959.988000pt;}
.h21{height:17.244004pt;}
.hd{height:17.342362pt;}
.h12{height:17.502535pt;}
.h26{height:21.242941pt;}
.h8{height:21.506865pt;}
.h1e{height:25.516917pt;}
.h29{height:26.898530pt;}
.h9{height:31.023774pt;}
.h10{height:31.936717pt;}
.h20{height:31.941907pt;}
.h23{height:34.023360pt;}
.h27{height:35.864706pt;}
.ha{height:36.194312pt;}
.h3{height:38.384162pt;}
.h4{height:38.661495pt;}
.hb{height:38.779620pt;}
.he{height:38.994509pt;}
.h1b{height:38.999699pt;}
.h16{height:41.579142pt;}
.h7{height:43.880727pt;}
.h15{height:44.278863pt;}
.hc{height:44.284053pt;}
.h11{height:45.415718pt;}
.h2{height:52.870529pt;}
.h25{height:53.054074pt;}
.h6{height:53.162413pt;}
.h1c{height:53.420685pt;}
.hf{height:53.425875pt;}
.h1a{height:53.640764pt;}
.h18{height:59.459561pt;}
.h17{height:59.646532pt;}
.h1f{height:70.939123pt;}
.h19{height:74.105817pt;}
.h14{height:74.248262pt;}
.h1d{height:75.194945pt;}
.h13{height:78.861506pt;}
.h22{height:85.370489pt;}
.h24{height:136.238200pt;}
.h2a{height:138.573712pt;}
.h28{height:149.472768pt;}
.h5{height:1027.625280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:202.411040pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:53.557961pt;}
.x3b{left:60.759902pt;}
.x44{left:80.618760pt;}
.x3d{left:84.585238pt;}
.x3c{left:90.408448pt;}
.x3e{left:93.584744pt;}
.x1{left:120.000000pt;}
.x15{left:153.586074pt;}
.xd{left:173.379538pt;}
.x8{left:178.624060pt;}
.x47{left:181.024448pt;}
.x9{left:182.151981pt;}
.xb{left:184.347362pt;}
.x5{left:187.270645pt;}
.x1c{left:188.661572pt;}
.xe{left:192.769478pt;}
.x43{left:197.771156pt;}
.x21{left:199.033840pt;}
.x1d{left:205.696537pt;}
.x40{left:206.782550pt;}
.x41{left:208.949386pt;}
.x11{left:210.999447pt;}
.x7{left:211.953114pt;}
.x2{left:214.160000pt;}
.x12{left:222.848278pt;}
.x13{left:231.686893pt;}
.xf{left:234.698406pt;}
.x46{left:260.987189pt;}
.x26{left:269.936092pt;}
.xa{left:271.809692pt;}
.x3a{left:281.138765pt;}
.x6{left:286.904884pt;}
.x32{left:288.114160pt;}
.x18{left:290.053933pt;}
.x2f{left:303.044570pt;}
.x35{left:315.608327pt;}
.x27{left:319.184255pt;}
.x2d{left:321.148680pt;}
.x22{left:324.391149pt;}
.x16{left:332.687407pt;}
.x36{left:335.774175pt;}
.xc{left:348.987983pt;}
.x37{left:353.889963pt;}
.x4{left:357.874667pt;}
.x38{left:363.692626pt;}
.x1f{left:367.062251pt;}
.x2e{left:370.396843pt;}
.x39{left:373.177400pt;}
.x28{left:375.197618pt;}
.x34{left:378.578920pt;}
.x23{left:380.404512pt;}
.x1e{left:393.131755pt;}
.x17{left:396.326216pt;}
.x29{left:406.319613pt;}
.x30{left:407.380973pt;}
.x19{left:409.534834pt;}
.x45{left:411.444764pt;}
.x2a{left:415.146551pt;}
.x24{left:419.994036pt;}
.x33{left:425.953484pt;}
.x1b{left:432.957425pt;}
.x3{left:444.629333pt;}
.x3f{left:479.117522pt;}
.x14{left:493.377120pt;}
.x2b{left:495.503734pt;}
.x10{left:502.855406pt;}
.x1a{left:515.768193pt;}
.x31{left:524.788459pt;}
.x2c{left:527.805162pt;}
.x20{left:536.175378pt;}
.x25{left:544.537808pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  