
    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_89d29539efd9bad10fa02ccf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_25caf38a02858eef869e1015.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_00a429c114f2239bba79b50b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_bebec79842b539fa44d3ff0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_8baf5cb34b1b3b80a0e64e16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_4af8f47f41035883a5c958d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_8e17d9e1e32ad8c1315d8252.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_37af8a01ea4eaea4e7453961.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_42f1ed223d9d862fec88324c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_8fe86f1992405aace53d5be0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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_72024ff2e068c1ad330d2f4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.669434;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_de47633ad23e30976c453d0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.080566;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_6c5c4c35fc0f0c1a8091a552.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_fd5ba94cad6b7ba3a8c95cd1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681152;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_71d064b4133ba2ada2f0e6c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_e8478764b56f0ed5ebc6d8dc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.692383;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_62135a930af7beeea54d3f8c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_cba96f84e25a4ff43633f4a6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_927c4f0e56de42c81baa2291.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908203;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_a8511079917079765b40873a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_f304ff43b43d63bec7f14d3d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_9701398a9f16dd37ff729a55.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.675781;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_9bfd5db3205838579164e038.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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_2d2e43a2039269ddb610a9f5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;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_41045db406d30d4d46d50c39.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.669434;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_289adea835d05997524e90ec.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;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_bac27a4710c0a7073a5c7966.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.709473;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_eb88d81cb9c935433bbcc40f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.675781;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_9efed968deaa192436836c53.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.097168;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_522a785c062eb59c772b39f8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;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_64ca00c096969fb4dec85af6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.675781;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_ef9ed1a552cdad977fd926d7.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.097168;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_2ff0e5818c4311ae05c01f85.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.690918;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_5c24b368f768b833fd1054eb.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.675781;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_55da0897bad9fd84b9bb4947.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.097168;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_8f7cec524fab3bbdabd770e2.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.690918;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_c94a00aaf31306405c12ecf6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893066;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_fe8e08e72f3db33ff4f236f7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;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_6a90d129941b7f396eb79c16.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;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_a61e1a666e38669e29191b83.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910156;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_8c078ca22271c4b4e170e38f.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.908203;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:ff2a;src:url('chunks/assets/font_e766ba47887dea6ced35e444.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.675781;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:ff2b;src:url('chunks/assets/font_4125e3ca0b526fc10aab688b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.910156;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:ff2c;src:url('chunks/assets/font_15b30b8d920a8ce41ad7032a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.910645;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:ff2d;src:url('chunks/assets/font_b6eb59fe89377ec9154488f7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.080566;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:ff2e;src:url('chunks/assets/font_72c92c3a53c1731be9cb475f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.893066;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:ff2f;src:url('chunks/assets/font_6979a119bb2b0280fd6bd913.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.687500;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:ff30;src:url('chunks/assets/font_4ae2f02cd8f71bab0b16ef88.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.910156;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:ff31;src:url('chunks/assets/font_dfee0097ac96203df749ac10.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.675781;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:ff32;src:url('chunks/assets/font_a97cc788350ef769dcf96c83.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.910156;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:ff33;src:url('chunks/assets/font_49bd875467b6b98353c37c95.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.670410;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:ff34;src:url('chunks/assets/font_e96d92dac2b74ef6b71ac86d.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;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:ff35;src:url('chunks/assets/font_19fd6e3ecd0cd96b7117e96c.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.666504;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:ff36;src:url('chunks/assets/font_ee80c34216677d7f6ac0d541.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.681641;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:ff37;src:url('chunks/assets/font_7361ddf1dc006c42895b2178.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.058105;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:ff38;src:url('chunks/assets/font_eb4ec4bcf5fb2f8a0e5a15aa.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.666504;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:ff39;src:url('chunks/assets/font_e64c4da7c4c56ee20e72e471.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.675781;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:ff3a;src:url('chunks/assets/font_327852f71831f0a669c09f59.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.893555;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:ff3b;src:url('chunks/assets/font_121ac6d903f8ee39a8591474.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.666504;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:ff3c;src:url('chunks/assets/font_12929f2ea4c793f766b3c7ce.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.910156;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:ff3d;src:url('chunks/assets/font_057fa0ae60bffb62c801c643.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.910156;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:ff3e;src:url('chunks/assets/font_d1fcf9c75bb4512d21f11070.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.910156;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);}
.v2{vertical-align:-39.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.240000px;}
.ls4d{letter-spacing:-11.340000px;}
.ls43{letter-spacing:-9.408000px;}
.ls49{letter-spacing:-9.072000px;}
.ls4{letter-spacing:-8.820000px;}
.ls26{letter-spacing:-6.972000px;}
.ls27{letter-spacing:-4.956000px;}
.ls32{letter-spacing:-4.788000px;}
.ls2d{letter-spacing:-4.704000px;}
.ls42{letter-spacing:-4.032000px;}
.ls20{letter-spacing:-3.864000px;}
.ls2c{letter-spacing:-3.360000px;}
.ls33{letter-spacing:-2.856000px;}
.ls28{letter-spacing:-2.772000px;}
.ls22{letter-spacing:-2.688000px;}
.ls6{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-2.430462px;}
.ls35{letter-spacing:-2.268000px;}
.ls21{letter-spacing:-1.176000px;}
.ls4a{letter-spacing:-0.924000px;}
.ls34{letter-spacing:-0.672000px;}
.ls18{letter-spacing:-0.627216px;}
.ls2e{letter-spacing:-0.588000px;}
.lsf{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.392010px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.336000px;}
.ls19{letter-spacing:-0.313608px;}
.lsa{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.168000px;}
.ls3e{letter-spacing:-0.066402px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.012000px;}
.ls37{letter-spacing:0.019950px;}
.ls45{letter-spacing:0.039900px;}
.ls1d{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.084000px;}
.lse{letter-spacing:0.168000px;}
.ls9{letter-spacing:0.252000px;}
.ls30{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.313608px;}
.ls3d{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.336000px;}
.ls1e{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.392010px;}
.lsc{letter-spacing:0.420000px;}
.ls1b{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.470412px;}
.ls44{letter-spacing:0.588000px;}
.ls2a{letter-spacing:0.672000px;}
.ls31{letter-spacing:0.828000px;}
.ls29{letter-spacing:1.344000px;}
.ls23{letter-spacing:4.819950px;}
.ls48{letter-spacing:5.376000px;}
.ls47{letter-spacing:6.216000px;}
.ls1f{letter-spacing:6.972000px;}
.ls24{letter-spacing:7.996829px;}
.ls25{letter-spacing:12.784047px;}
.ls46{letter-spacing:18.144000px;}
.ls36{letter-spacing:19.964873px;}
.ls4b{letter-spacing:21.420000px;}
.ls3c{letter-spacing:24.600000px;}
.ls1c{letter-spacing:25.380000px;}
.ls4c{letter-spacing:28.644000px;}
.ls3f{letter-spacing:34.188000px;}
.ls15{letter-spacing:34.810488px;}
.ls41{letter-spacing:36.799950px;}
.ls11{letter-spacing:38.024970px;}
.lsd{letter-spacing:38.220000px;}
.ls13{letter-spacing:38.808990px;}
.ls38{letter-spacing:39.199950px;}
.ls40{letter-spacing:39.648000px;}
.ls3{letter-spacing:44.688000px;}
.ls3a{letter-spacing:45.420000px;}
.ls39{letter-spacing:50.148000px;}
.ls2b{letter-spacing:55.020000px;}
.ls10{letter-spacing:2824.880400px;}
.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;}
}
.ws34{word-spacing:-83.664000px;}
.ws11{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.336000px;}
.ws35{word-spacing:-21.252000px;}
.ws4{word-spacing:-21.000000px;}
.ws10{word-spacing:-20.832000px;}
.ws4e{word-spacing:-20.748000px;}
.ws39{word-spacing:-20.664000px;}
.ws5{word-spacing:-20.580000px;}
.ws55{word-spacing:-20.496000px;}
.ws4b{word-spacing:-20.328000px;}
.ws5a{word-spacing:-20.076000px;}
.ws4d{word-spacing:-19.964873px;}
.ws43{word-spacing:-19.824000px;}
.ws2d{word-spacing:-19.600500px;}
.ws30{word-spacing:-19.286892px;}
.ws2c{word-spacing:-19.208490px;}
.ws2e{word-spacing:-18.973284px;}
.ws4c{word-spacing:-18.732000px;}
.ws3{word-spacing:-18.480000px;}
.ws38{word-spacing:-18.312000px;}
.ws8{word-spacing:-18.000000px;}
.ws4a{word-spacing:-17.640000px;}
.ws31{word-spacing:-17.170038px;}
.ws37{word-spacing:-17.136000px;}
.ws53{word-spacing:-16.968000px;}
.ws49{word-spacing:-16.212000px;}
.ws57{word-spacing:-14.940450px;}
.ws40{word-spacing:-14.028000px;}
.ws59{word-spacing:-13.600050px;}
.ws46{word-spacing:-12.784047px;}
.ws58{word-spacing:-11.928000px;}
.ws54{word-spacing:-11.592000px;}
.ws45{word-spacing:-7.996829px;}
.ws1c{word-spacing:-1.008000px;}
.ws5b{word-spacing:-0.672000px;}
.ws56{word-spacing:-0.588000px;}
.ws36{word-spacing:-0.504000px;}
.ws1{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.392010px;}
.wsb{word-spacing:-0.336000px;}
.wsd{word-spacing:-0.252000px;}
.ws2{word-spacing:-0.084000px;}
.ws2f{word-spacing:-0.078402px;}
.ws7{word-spacing:-0.072000px;}
.ws50{word-spacing:-0.054400px;}
.ws0{word-spacing:0.000000px;}
.ws51{word-spacing:0.066402px;}
.wsc{word-spacing:0.168000px;}
.ws3a{word-spacing:0.252000px;}
.wse{word-spacing:0.288000px;}
.wsa{word-spacing:0.336000px;}
.wsf{word-spacing:0.360000px;}
.ws32{word-spacing:0.392010px;}
.ws3f{word-spacing:0.420000px;}
.ws25{word-spacing:0.504000px;}
.ws5e{word-spacing:1.008000px;}
.ws42{word-spacing:1.092000px;}
.ws1e{word-spacing:1.176000px;}
.ws1d{word-spacing:1.344000px;}
.ws52{word-spacing:2.100000px;}
.ws44{word-spacing:2.688000px;}
.ws47{word-spacing:2.772000px;}
.ws1f{word-spacing:2.856000px;}
.ws21{word-spacing:3.360000px;}
.ws26{word-spacing:3.696000px;}
.ws20{word-spacing:3.864000px;}
.ws1b{word-spacing:4.032000px;}
.ws19{word-spacing:4.284000px;}
.ws22{word-spacing:4.536000px;}
.ws48{word-spacing:4.704000px;}
.ws41{word-spacing:4.872000px;}
.ws1a{word-spacing:5.040000px;}
.ws5d{word-spacing:5.292000px;}
.ws60{word-spacing:5.796000px;}
.ws5f{word-spacing:6.132000px;}
.ws5c{word-spacing:6.888000px;}
.ws12{word-spacing:7.476000px;}
.ws13{word-spacing:7.728000px;}
.ws24{word-spacing:8.484000px;}
.ws9{word-spacing:8.820000px;}
.ws66{word-spacing:9.072000px;}
.ws3e{word-spacing:10.920000px;}
.ws65{word-spacing:11.340000px;}
.ws27{word-spacing:13.356000px;}
.ws61{word-spacing:14.112000px;}
.ws29{word-spacing:14.952000px;}
.ws63{word-spacing:15.708000px;}
.ws62{word-spacing:17.808000px;}
.ws16{word-spacing:17.892000px;}
.ws14{word-spacing:18.144000px;}
.ws15{word-spacing:18.648000px;}
.ws28{word-spacing:19.740000px;}
.ws3b{word-spacing:24.528000px;}
.ws3d{word-spacing:25.284000px;}
.ws2b{word-spacing:27.552000px;}
.ws2a{word-spacing:28.476000px;}
.ws18{word-spacing:37.296000px;}
.ws3c{word-spacing:37.800000px;}
.ws17{word-spacing:38.136000px;}
.ws23{word-spacing:49.308000px;}
.ws64{word-spacing:2691.470400px;}
.ws4f{word-spacing:2757.752400px;}
._53{margin-left:-20.748000px;}
._32{margin-left:-14.054490px;}
._33{margin-left:-13.044000px;}
._3b{margin-left:-10.670490px;}
._e{margin-left:-9.576000px;}
._3a{margin-left:-7.977600px;}
._2{margin-left:-6.972000px;}
._35{margin-left:-5.628000px;}
._4{margin-left:-4.536000px;}
._3c{margin-left:-3.528000px;}
._7{margin-left:-2.520000px;}
._1{margin-left:-1.344000px;}
._6{width:1.008000px;}
._8{width:2.268000px;}
._c{width:3.360000px;}
._15{width:4.452000px;}
._36{width:5.796000px;}
._20{width:7.644000px;}
._0{width:8.820000px;}
._f{width:10.416000px;}
._10{width:11.424000px;}
._30{width:13.406742px;}
._a{width:15.120000px;}
._b{width:16.464000px;}
._31{width:17.825634px;}
._21{width:18.900000px;}
._3d{width:19.908000px;}
._24{width:20.952400px;}
._2a{width:22.580916px;}
._1e{width:23.688000px;}
._37{width:24.845484px;}
._d{width:26.460000px;}
._1d{width:27.720000px;}
._11{width:28.812000px;}
._12{width:30.156000px;}
._13{width:31.500000px;}
._1a{width:32.760000px;}
._28{width:34.022490px;}
._18{width:35.028000px;}
._17{width:36.204000px;}
._23{width:37.716000px;}
._22{width:38.808000px;}
._1f{width:40.104000px;}
._5{width:41.160000px;}
._3{width:42.588000px;}
._34{width:43.680000px;}
._14{width:44.688000px;}
._2b{width:45.786768px;}
._2c{width:47.701914px;}
._43{width:48.804000px;}
._4d{width:50.484000px;}
._3e{width:52.920000px;}
._47{width:54.852000px;}
._2f{width:56.030820px;}
._16{width:57.204000px;}
._19{width:58.212000px;}
._3f{width:59.808000px;}
._9{width:61.068000px;}
._26{width:62.956806px;}
._45{width:63.969552px;}
._27{width:65.028816px;}
._2d{width:66.092886px;}
._2e{width:67.761630px;}
._42{width:68.964000px;}
._4e{width:69.972000px;}
._49{width:71.652000px;}
._4a{width:72.660000px;}
._4b{width:74.424000px;}
._25{width:75.993870px;}
._4f{width:77.138130px;}
._40{width:78.540000px;}
._1b{width:79.884000px;}
._1c{width:81.144000px;}
._46{width:84.336000px;}
._29{width:89.568612px;}
._44{width:92.148000px;}
._48{width:94.500000px;}
._38{width:101.724000px;}
._39{width:103.992000px;}
._41{width:118.776000px;}
._52{width:126.420000px;}
._50{width:151.872000px;}
._4c{width:156.072000px;}
._51{width:846.144000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:54.400200px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:66.402000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.402000px;}
.fs1{font-size:84.000000px;}
.y1c8{bottom:-563.390308px;}
.y1c7{bottom:-543.187500px;}
.y1ec{bottom:-301.926000px;}
.y1fc{bottom:-284.178809px;}
.y1fb{bottom:-263.976000px;}
.y1eb{bottom:-261.942000px;}
.y1ea{bottom:-237.939000px;}
.y1e9{bottom:-213.726000px;}
.y1e8{bottom:-189.534000px;}
.y1e7{bottom:-165.342000px;}
.y1e6{bottom:-141.339000px;}
.y1e5{bottom:-117.126000px;}
.y1e4{bottom:-92.892000px;}
.y1e3{bottom:-68.679000px;}
.y1e2{bottom:-44.676000px;}
.y220{bottom:-22.705500px;}
.y1e1{bottom:-20.484000px;}
.y0{bottom:0.000000px;}
.y1e0{bottom:3.708000px;}
.y5b{bottom:3.799200px;}
.yaa{bottom:4.995000px;}
.yf9{bottom:4.996500px;}
.ybb{bottom:5.000700px;}
.y97{bottom:5.010000px;}
.y123{bottom:5.011500px;}
.y150{bottom:5.040000px;}
.ya1{bottom:5.190000px;}
.ycc{bottom:5.191500px;}
.y13f{bottom:5.196000px;}
.ye3{bottom:5.200200px;}
.y15c{bottom:5.201700px;}
.y9e{bottom:5.205000px;}
.y9a{bottom:5.206500px;}
.yaf{bottom:5.235000px;}
.y59{bottom:21.996000px;}
.y5a{bottom:24.606000px;}
.ya9{bottom:29.190000px;}
.y10a{bottom:29.191500px;}
.y13e{bottom:29.196000px;}
.y15b{bottom:29.201700px;}
.y11a{bottom:29.202000px;}
.ya7{bottom:29.205000px;}
.ybd{bottom:29.235000px;}
.yac{bottom:29.385000px;}
.ya0{bottom:29.400000px;}
.y99{bottom:29.401500px;}
.y159{bottom:29.406000px;}
.y129{bottom:31.995000px;}
.y11f{bottom:32.010000px;}
.y130{bottom:32.040000px;}
.y11d{bottom:32.190000px;}
.y141{bottom:32.200200px;}
.y135{bottom:32.205000px;}
.yc4{bottom:35.400000px;}
.y30{bottom:49.027200px;}
.yd1{bottom:53.385000px;}
.yb9{bottom:53.399700px;}
.y95{bottom:53.400000px;}
.yc7{bottom:53.401500px;}
.yce{bottom:53.430000px;}
.y14a{bottom:53.431500px;}
.ya3{bottom:53.595000px;}
.y16b{bottom:53.596500px;}
.y104{bottom:53.607000px;}
.y101{bottom:53.610000px;}
.y160{bottom:53.611500px;}
.y168{bottom:53.625000px;}
.y9c{bottom:53.640000px;}
.y165{bottom:54.000000px;}
.y35{bottom:57.426392px;}
.y2b{bottom:66.834000px;}
.y2d{bottom:70.029000px;}
.ye5{bottom:77.595000px;}
.y152{bottom:77.596500px;}
.yc0{bottom:77.610000px;}
.y125{bottom:77.625000px;}
.y34{bottom:77.629200px;}
.y161{bottom:77.640000px;}
.yf6{bottom:77.641500px;}
.y1{bottom:77.766750px;}
.y2a{bottom:89.436000px;}
.ye1{bottom:94.863000px;}
.yb8{bottom:95.463000px;}
.y140{bottom:97.063500px;}
.y11b{bottom:98.662500px;}
.y15a{bottom:99.462000px;}
.y103{bottom:100.863000px;}
.yd4{bottom:101.625000px;}
.y10b{bottom:101.805000px;}
.y5d{bottom:103.659329px;}
.y91{bottom:104.742949px;}
.y142{bottom:105.062700px;}
.y2f{bottom:106.070700px;}
.y2c{bottom:116.663700px;}
.y119{bottom:123.663000px;}
.ye2{bottom:124.063200px;}
.yba{bottom:124.663200px;}
.y5c{bottom:126.062700px;}
.y2e{bottom:126.662700px;}
.y90{bottom:127.146321px;}
.y105{bottom:130.262700px;}
.y21a{bottom:137.863500px;}
.y1c5{bottom:141.078000px;}
.y19b{bottom:141.468000px;}
.y58{bottom:144.264000px;}
.y158{bottom:148.464000px;}
.y13d{bottom:149.064000px;}
.y8f{bottom:149.745697px;}
.y31{bottom:156.793500px;}
.y1f9{bottom:161.763000px;}
.y219{bottom:162.076500px;}
.y19a{bottom:165.660000px;}
.y1c4{bottom:165.669000px;}
.y5f{bottom:166.032000px;}
.yde{bottom:168.060000px;}
.yb6{bottom:168.660000px;}
.y8e{bottom:172.149069px;}
.y118{bottom:172.665000px;}
.y100{bottom:174.060000px;}
.y29{bottom:184.419000px;}
.y1f8{bottom:185.766000px;}
.y218{bottom:186.310500px;}
.y199{bottom:189.873000px;}
.y1c3{bottom:189.882000px;}
.y57{bottom:190.887000px;}
.y8d{bottom:194.552440px;}
.ye0{bottom:197.265000px;}
.y157{bottom:197.458500px;}
.yb7{bottom:197.865000px;}
.y13b{bottom:198.060000px;}
.y102{bottom:203.460000px;}
.y13c{bottom:206.070000px;}
.y28{bottom:208.611000px;}
.y1f7{bottom:209.769000px;}
.y217{bottom:210.523500px;}
.y198{bottom:213.876000px;}
.y1c2{bottom:213.885000px;}
.y56{bottom:214.890000px;}
.y8c{bottom:216.955812px;}
.ydf{bottom:221.460000px;}
.y117{bottom:221.670000px;}
.y27{bottom:232.803000px;}
.y1f6{bottom:233.772000px;}
.y216{bottom:234.526500px;}
.y1c1{bottom:237.678000px;}
.y197{bottom:238.068000px;}
.y55{bottom:239.103000px;}
.y8b{bottom:239.359183px;}
.yb4{bottom:241.860000px;}
.y155{bottom:246.660000px;}
.yff{bottom:247.258500px;}
.y139{bottom:250.065000px;}
.y26{bottom:257.016000px;}
.y1f5{bottom:257.775000px;}
.y215{bottom:258.718500px;}
.y8a{bottom:261.762555px;}
.y1c0{bottom:261.891000px;}
.y196{bottom:262.257000px;}
.y54{bottom:263.295000px;}
.ydc{bottom:265.470000px;}
.y116{bottom:270.660000px;}
.yb5{bottom:271.065000px;}
.y156{bottom:275.865000px;}
.y13a{bottom:279.270000px;}
.y25{bottom:281.019000px;}
.y1f4{bottom:281.778000px;}
.y214{bottom:282.910500px;}
.y89{bottom:284.165926px;}
.y1bf{bottom:286.083000px;}
.y195{bottom:286.470000px;}
.y53{bottom:287.487000px;}
.ydd{bottom:294.660000px;}
.yfd{bottom:296.460000px;}
.y24{bottom:305.253000px;}
.y1f3{bottom:305.781000px;}
.y88{bottom:306.588898px;}
.y213{bottom:307.123500px;}
.y1be{bottom:310.107000px;}
.y194{bottom:310.494000px;}
.y52{bottom:311.511000px;}
.yb3{bottom:314.895000px;}
.y115{bottom:319.695000px;}
.y137{bottom:323.295000px;}
.yfe{bottom:325.695000px;}
.y87{bottom:328.992270px;}
.y23{bottom:329.445000px;}
.y212{bottom:331.126500px;}
.y138{bottom:331.290000px;}
.y193{bottom:334.686000px;}
.y1bd{bottom:334.698000px;}
.y51{bottom:335.724000px;}
.yda{bottom:338.700000px;}
.y86{bottom:351.591646px;}
.y22{bottom:353.658000px;}
.y1f2{bottom:353.787000px;}
.y211{bottom:355.318500px;}
.y192{bottom:358.878000px;}
.y1bc{bottom:358.890000px;}
.y50{bottom:359.916000px;}
.yb2{bottom:364.095000px;}
.ydb{bottom:367.890000px;}
.y113{bottom:368.895000px;}
.yfc{bottom:369.495000px;}
.y85{bottom:373.995018px;}
.y134{bottom:375.090000px;}
.y21{bottom:377.661000px;}
.y1f1{bottom:377.790000px;}
.y210{bottom:379.510500px;}
.y191{bottom:382.881000px;}
.y1bb{bottom:382.890000px;}
.y136{bottom:383.100000px;}
.y4f{bottom:384.108000px;}
.y84{bottom:395.790774px;}
.y114{bottom:398.100000px;}
.y1f0{bottom:401.793000px;}
.y20{bottom:401.853000px;}
.y20f{bottom:403.744500px;}
.y1ba{bottom:407.088000px;}
.y190{bottom:407.094000px;}
.y4e{bottom:408.111000px;}
.yd8{bottom:411.900000px;}
.yb1{bottom:413.100000px;}
.y151{bottom:417.898500px;}
.y83{bottom:418.194145px;}
.yfa{bottom:418.695000px;}
.y1ef{bottom:425.796000px;}
.y1f{bottom:426.045000px;}
.y132{bottom:427.093500px;}
.y20e{bottom:427.747500px;}
.y1b9{bottom:431.280000px;}
.y18f{bottom:431.286000px;}
.y4d{bottom:432.324000px;}
.yd9{bottom:441.090000px;}
.y82{bottom:441.205132px;}
.y112{bottom:442.095000px;}
.y154{bottom:447.087000px;}
.yfb{bottom:447.900000px;}
.y1ee{bottom:449.799000px;}
.y1e{bottom:450.258000px;}
.y20d{bottom:451.939500px;}
.y1b8{bottom:455.472000px;}
.y18e{bottom:455.478000px;}
.y133{bottom:456.300000px;}
.y4c{bottom:456.516000px;}
.yb0{bottom:462.090000px;}
.y81{bottom:463.608504px;}
.y153{bottom:471.300000px;}
.y1ed{bottom:473.802000px;}
.y1d{bottom:474.261000px;}
.y20c{bottom:475.753500px;}
.y1b7{bottom:479.475000px;}
.y18d{bottom:479.481000px;}
.y4b{bottom:480.708000px;}
.yd3{bottom:485.100000px;}
.y80{bottom:486.011875px;}
.y110{bottom:491.100000px;}
.yf5{bottom:491.893500px;}
.y1c{bottom:498.453000px;}
.y20b{bottom:499.945500px;}
.y12f{bottom:500.295000px;}
.y1b6{bottom:503.688000px;}
.y18c{bottom:503.694000px;}
.y4a{bottom:504.711000px;}
.y131{bottom:508.290000px;}
.y7f{bottom:508.415247px;}
.y1cb{bottom:510.387000px;}
.yad{bottom:511.095000px;}
.yd7{bottom:514.293000px;}
.y14f{bottom:515.295000px;}
.y111{bottom:520.335000px;}
.yf8{bottom:521.133000px;}
.y1b{bottom:522.687000px;}
.y20a{bottom:523.948500px;}
.y1b5{bottom:527.922000px;}
.y18b{bottom:527.928000px;}
.y49{bottom:528.945000px;}
.y7e{bottom:531.053824px;}
.y1ca{bottom:534.579000px;}
.yd6{bottom:538.527000px;}
.yae{bottom:540.525000px;}
.yf7{bottom:545.325000px;}
.y1a{bottom:546.690000px;}
.y209{bottom:548.161500px;}
.y12d{bottom:552.135000px;}
.y18a{bottom:552.141000px;}
.y48{bottom:553.137000px;}
.y7d{bottom:553.457196px;}
.y1c9{bottom:558.813000px;}
.y12e{bottom:560.130000px;}
.yd5{bottom:562.530000px;}
.y10f{bottom:564.330000px;}
.y19{bottom:570.882000px;}
.y208{bottom:572.353500px;}
.y1fa{bottom:573.307500px;}
.y7c{bottom:575.860567px;}
.y1b4{bottom:576.138000px;}
.y189{bottom:576.144000px;}
.y16f{bottom:577.131000px;}
.y47{bottom:577.350000px;}
.yab{bottom:584.340000px;}
.yf2{bottom:589.140000px;}
.y21f{bottom:590.592000px;}
.y14e{bottom:593.535000px;}
.y18{bottom:595.074000px;}
.y207{bottom:596.356500px;}
.y16e{bottom:597.741000px;}
.y7b{bottom:598.263939px;}
.y1b3{bottom:600.330000px;}
.y188{bottom:600.336000px;}
.y46{bottom:601.353000px;}
.y12b{bottom:604.140000px;}
.yd0{bottom:606.540000px;}
.y10e{bottom:613.335000px;}
.y21e{bottom:614.595000px;}
.yf4{bottom:618.522000px;}
.y16d{bottom:619.125000px;}
.y17{bottom:619.287000px;}
.y206{bottom:620.590500px;}
.y7a{bottom:620.667310px;}
.y1b2{bottom:624.522000px;}
.y187{bottom:624.528000px;}
.y12c{bottom:633.330000px;}
.ya8{bottom:633.540000px;}
.yd2{bottom:635.730000px;}
.y16a{bottom:635.938500px;}
.y14c{bottom:637.530000px;}
.y21d{bottom:638.808000px;}
.yf3{bottom:642.735000px;}
.y79{bottom:643.070682px;}
.y16{bottom:643.290000px;}
.y205{bottom:644.803500px;}
.y45{bottom:646.545000px;}
.y1b1{bottom:648.735000px;}
.y186{bottom:648.741000px;}
.y21c{bottom:663.000000px;}
.y16c{bottom:665.325000px;}
.y78{bottom:665.474053px;}
.y14d{bottom:666.735000px;}
.y15{bottom:667.482000px;}
.y33{bottom:667.624500px;}
.y204{bottom:668.995500px;}
.y1b0{bottom:672.738000px;}
.y185{bottom:672.744000px;}
.y128{bottom:677.340000px;}
.ycd{bottom:679.740000px;}
.ya6{bottom:682.530000px;}
.y12a{bottom:685.335000px;}
.yf0{bottom:686.535000px;}
.y21b{bottom:687.192000px;}
.y77{bottom:687.877425px;}
.y14{bottom:691.674000px;}
.y44{bottom:691.737000px;}
.y60{bottom:691.761000px;}
.y203{bottom:692.998500px;}
.y1af{bottom:696.930000px;}
.y184{bottom:696.936000px;}
.ycf{bottom:708.930000px;}
.y167{bottom:709.140000px;}
.y76{bottom:710.280796px;}
.y149{bottom:710.728500px;}
.y13{bottom:715.887000px;}
.yf1{bottom:715.935000px;}
.y43{bottom:715.950000px;}
.y202{bottom:717.190500px;}
.y1ae{bottom:721.122000px;}
.y183{bottom:721.128000px;}
.y124{bottom:729.135000px;}
.ya5{bottom:731.565000px;}
.y75{bottom:732.919374px;}
.y169{bottom:738.570000px;}
.y12{bottom:739.911000px;}
.y14b{bottom:739.965000px;}
.y42{bottom:739.974000px;}
.y201{bottom:741.403500px;}
.y1ad{bottom:745.356000px;}
.y182{bottom:745.362000px;}
.y1c6{bottom:752.598000px;}
.yca{bottom:752.968500px;}
.y74{bottom:755.322745px;}
.y127{bottom:758.562000px;}
.yee{bottom:759.765000px;}
.y11{bottom:763.725000px;}
.y41{bottom:764.166000px;}
.y200{bottom:765.595500px;}
.y1ac{bottom:769.359000px;}
.y181{bottom:769.365000px;}
.y73{bottom:777.726117px;}
.y1df{bottom:780.504000px;}
.ya2{bottom:780.570000px;}
.ycb{bottom:782.160000px;}
.y164{bottom:782.370000px;}
.y126{bottom:782.565000px;}
.y147{bottom:783.960000px;}
.y10{bottom:787.917000px;}
.yef{bottom:789.165000px;}
.y1ff{bottom:789.598500px;}
.y1ab{bottom:793.551000px;}
.y180{bottom:793.557000px;}
.y72{bottom:800.129488px;}
.y1de{bottom:804.507000px;}
.y40{bottom:809.379000px;}
.ya4{bottom:809.970000px;}
.y166{bottom:811.770000px;}
.y148{bottom:813.165000px;}
.y10d{bottom:813.168000px;}
.y1fe{bottom:813.790500px;}
.yf{bottom:816.309000px;}
.y17f{bottom:817.758000px;}
.y1aa{bottom:817.764000px;}
.y71{bottom:822.532860px;}
.yc9{bottom:826.170000px;}
.y121{bottom:826.558500px;}
.y1dd{bottom:828.699000px;}
.yec{bottom:832.965000px;}
.y10c{bottom:837.360000px;}
.y1fd{bottom:838.024500px;}
.y17e{bottom:841.950000px;}
.y1a9{bottom:841.956000px;}
.ye{bottom:844.323000px;}
.y70{bottom:844.936231px;}
.y1dc{bottom:852.891000px;}
.y9f{bottom:853.770000px;}
.y3f{bottom:854.382000px;}
.y122{bottom:855.765000px;}
.y145{bottom:857.160000px;}
.yed{bottom:862.365000px;}
.y17d{bottom:865.953000px;}
.y1a8{bottom:865.959000px;}
.y6f{bottom:867.339603px;}
.yd{bottom:872.127000px;}
.yc6{bottom:875.158500px;}
.y1db{bottom:877.125000px;}
.y3e{bottom:878.574000px;}
.y109{bottom:881.368500px;}
.y146{bottom:886.365000px;}
.y6e{bottom:889.742974px;}
.y17c{bottom:889.767000px;}
.y1a7{bottom:890.151000px;}
.y11e{bottom:899.760000px;}
.yc{bottom:900.141000px;}
.y1da{bottom:901.128000px;}
.y9b{bottom:902.760000px;}
.y3d{bottom:902.766000px;}
.yc8{bottom:904.560000px;}
.yea{bottom:906.165000px;}
.y120{bottom:907.770000px;}
.y6d{bottom:912.146346px;}
.y17b{bottom:913.959000px;}
.y1a6{bottom:914.364000px;}
.y1d9{bottom:925.320000px;}
.y3c{bottom:926.979000px;}
.yb{bottom:928.155000px;}
.y108{bottom:930.360000px;}
.y9d{bottom:932.160000px;}
.y6c{bottom:934.745723px;}
.yeb{bottom:935.370000px;}
.y17a{bottom:938.361000px;}
.y1a5{bottom:938.367000px;}
.yc3{bottom:948.390000px;}
.y1d8{bottom:949.134000px;}
.y3b{bottom:951.003000px;}
.y11c{bottom:951.600000px;}
.ya{bottom:956.169000px;}
.y6b{bottom:957.168695px;}
.yc5{bottom:959.595000px;}
.y163{bottom:959.598000px;}
.y1a4{bottom:962.601000px;}
.y179{bottom:972.390000px;}
.y1d7{bottom:973.326000px;}
.y3a{bottom:975.195000px;}
.y98{bottom:975.988500px;}
.ye8{bottom:979.393500px;}
.y6a{bottom:979.572066px;}
.y162{bottom:983.790000px;}
.y9{bottom:984.183000px;}
.y178{bottom:986.787000px;}
.y1a3{bottom:986.793000px;}
.y1d6{bottom:997.329000px;}
.y39{bottom:999.387000px;}
.y69{bottom:1001.975438px;}
.ybf{bottom:1003.590000px;}
.ye9{bottom:1008.600000px;}
.y1a2{bottom:1011.006000px;}
.y8{bottom:1012.197000px;}
.y177{bottom:1020.795000px;}
.y1d5{bottom:1021.542000px;}
.y68{bottom:1024.378809px;}
.y94{bottom:1025.190000px;}
.y15f{bottom:1027.588500px;}
.y107{bottom:1032.795000px;}
.yc2{bottom:1032.798000px;}
.y1a1{bottom:1035.009000px;}
.y7{bottom:1040.190000px;}
.y38{bottom:1044.600000px;}
.y176{bottom:1044.795000px;}
.y1d4{bottom:1045.734000px;}
.y67{bottom:1046.782180px;}
.ye4{bottom:1052.595000px;}
.y96{bottom:1054.395000px;}
.yc1{bottom:1056.990000px;}
.y175{bottom:1059.180000px;}
.y1a0{bottom:1059.201000px;}
.y6{bottom:1067.994000px;}
.y66{bottom:1069.185552px;}
.y1d3{bottom:1069.737000px;}
.y106{bottom:1076.790000px;}
.ye7{bottom:1081.803000px;}
.y174{bottom:1083.372000px;}
.y19f{bottom:1083.393000px;}
.y37{bottom:1089.204000px;}
.y5e{bottom:1089.801000px;}
.y65{bottom:1091.588923px;}
.y1d2{bottom:1093.971000px;}
.y5{bottom:1095.588000px;}
.ybe{bottom:1100.790000px;}
.y93{bottom:1102.800000px;}
.ye6{bottom:1105.995000px;}
.y173{bottom:1107.186000px;}
.y19e{bottom:1107.606000px;}
.y64{bottom:1114.188300px;}
.y1d1{bottom:1118.184000px;}
.y4{bottom:1123.581000px;}
.y32{bottom:1124.452500px;}
.y143{bottom:1125.795000px;}
.y15e{bottom:1130.190000px;}
.y172{bottom:1131.189000px;}
.y19d{bottom:1131.609000px;}
.y36{bottom:1134.396000px;}
.y63{bottom:1136.591672px;}
.y92{bottom:1139.604000px;}
.y1d0{bottom:1142.376000px;}
.ybc{bottom:1149.990000px;}
.y3{bottom:1151.595000px;}
.y144{bottom:1155.000000px;}
.y171{bottom:1155.381000px;}
.y19c{bottom:1155.801000px;}
.y62{bottom:1159.034244px;}
.y1cf{bottom:1166.379000px;}
.y15d{bottom:1174.035000px;}
.y2{bottom:1179.630000px;}
.y170{bottom:1180.035000px;}
.y61{bottom:1180.830000px;}
.y1ce{bottom:1190.571000px;}
.y1cd{bottom:1214.784000px;}
.y1cc{bottom:1238.976000px;}
.h31{height:24.199500px;}
.h47{height:36.762635px;}
.hb{height:41.397000px;}
.h2{height:43.989258px;}
.ha{height:44.257192px;}
.h16{height:48.184500px;}
.h2a{height:48.186000px;}
.h3c{height:48.196500px;}
.h30{height:48.198000px;}
.h2c{height:48.199500px;}
.h15{height:48.225000px;}
.h1a{height:48.234000px;}
.h13{height:48.385500px;}
.h40{height:48.397500px;}
.h11{height:48.400500px;}
.h26{height:48.402000px;}
.h2f{height:48.424500px;}
.h45{height:48.796875px;}
.h8{height:49.992188px;}
.h7{height:50.027344px;}
.h3a{height:50.983500px;}
.h36{height:50.985000px;}
.h34{height:51.024000px;}
.h39{height:51.033000px;}
.h33{height:51.184500px;}
.h3d{height:51.196500px;}
.h3b{height:51.198000px;}
.h38{height:51.199500px;}
.hc{height:53.135730px;}
.h1c{height:54.399000px;}
.hf{height:54.437326px;}
.he{height:54.475608px;}
.h3{height:56.929688px;}
.h4{height:58.324219px;}
.h9{height:58.335234px;}
.h5{height:58.365234px;}
.hd{height:67.797823px;}
.h21{height:72.384000px;}
.h1e{height:72.385500px;}
.h19{height:72.399000px;}
.h10{height:72.400500px;}
.h23{height:72.409500px;}
.h20{height:72.418500px;}
.h18{height:72.424500px;}
.h2d{height:72.433500px;}
.h14{height:72.583500px;}
.h44{height:72.585000px;}
.h28{height:72.598500px;}
.h27{height:72.600000px;}
.h43{height:72.618000px;}
.h12{height:72.625500px;}
.h17{height:72.633000px;}
.h46{height:72.638672px;}
.h42{height:73.984500px;}
.h29{height:74.033203px;}
.h41{height:76.040323px;}
.h1f{height:76.952014px;}
.h1d{height:77.012014px;}
.h48{height:77.026576px;}
.h37{height:77.038576px;}
.h49{height:77.050576px;}
.h6{height:86.224500px;}
.h2e{height:87.125489px;}
.h32{height:87.185489px;}
.h3f{height:87.305489px;}
.h24{height:96.585000px;}
.h3e{height:96.586500px;}
.h1b{height:96.598500px;}
.h35{height:96.625500px;}
.h25{height:96.633000px;}
.h22{height:120.633000px;}
.h2b{height:120.799500px;}
.h4b{height:158.031000px;}
.h4a{height:510.237000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:62.985000px;}
.w2{width:308.250000px;}
.w4{width:333.855000px;}
.w5{width:389.070000px;}
.w3{width:414.658500px;}
.w6{width:637.320000px;}
.w8{width:850.395000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.988400px;}
.x1b{left:23.790000px;}
.x1c{left:25.395000px;}
.x17{left:34.395000px;}
.x2{left:63.779400px;}
.x2b{left:69.440550px;}
.x5{left:71.832900px;}
.x37{left:82.869000px;}
.x18{left:85.444500px;}
.x29{left:90.692550px;}
.x1a{left:93.233400px;}
.x9{left:106.429678px;}
.xd{left:107.574750px;}
.xe{left:113.265750px;}
.x3{left:116.837400px;}
.x14{left:128.044500px;}
.x20{left:129.639000px;}
.x15{left:135.834000px;}
.x38{left:143.685000px;}
.x36{left:147.675000px;}
.xa{left:149.106000px;}
.x27{left:152.235000px;}
.x24{left:169.035000px;}
.x2a{left:171.836550px;}
.x8{left:173.479500px;}
.x2c{left:176.057550px;}
.x3c{left:179.238000px;}
.x25{left:182.040000px;}
.x34{left:191.082000px;}
.x3a{left:195.261000px;}
.x32{left:198.495000px;}
.x44{left:205.371000px;}
.x12{left:211.683095px;}
.x23{left:224.853000px;}
.x1f{left:229.830000px;}
.x3e{left:234.981000px;}
.x39{left:250.470000px;}
.x31{left:257.085000px;}
.x10{left:262.860000px;}
.x3b{left:268.467000px;}
.x35{left:272.709000px;}
.x33{left:276.090000px;}
.x3f{left:281.307000px;}
.x40{left:286.158000px;}
.x3d{left:296.448000px;}
.x28{left:312.536550px;}
.x2d{left:321.062550px;}
.x41{left:332.799000px;}
.x42{left:334.647000px;}
.x2f{left:346.850550px;}
.x43{left:351.510000px;}
.x26{left:358.473000px;}
.x21{left:362.277000px;}
.x6{left:372.105000px;}
.x7{left:380.295000px;}
.x11{left:425.308944px;}
.x13{left:433.686000px;}
.xb{left:440.295000px;}
.x2e{left:446.495550px;}
.xc{left:467.895000px;}
.x22{left:489.117000px;}
.xf{left:587.622000px;}
.x19{left:723.375000px;}
.x30{left:761.760000px;}
.x16{left:765.975000px;}
.x1e{left:804.045000px;}
.x1d{left:812.407500px;}
.x1{left:820.771500px;}
@media print{
.v2{vertical-align:-34.986667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.880000pt;}
.ls4d{letter-spacing:-10.080000pt;}
.ls43{letter-spacing:-8.362667pt;}
.ls49{letter-spacing:-8.064000pt;}
.ls4{letter-spacing:-7.840000pt;}
.ls26{letter-spacing:-6.197333pt;}
.ls27{letter-spacing:-4.405333pt;}
.ls32{letter-spacing:-4.256000pt;}
.ls2d{letter-spacing:-4.181333pt;}
.ls42{letter-spacing:-3.584000pt;}
.ls20{letter-spacing:-3.434667pt;}
.ls2c{letter-spacing:-2.986667pt;}
.ls33{letter-spacing:-2.538667pt;}
.ls28{letter-spacing:-2.464000pt;}
.ls22{letter-spacing:-2.389333pt;}
.ls6{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-2.160411pt;}
.ls35{letter-spacing:-2.016000pt;}
.ls21{letter-spacing:-1.045333pt;}
.ls4a{letter-spacing:-0.821333pt;}
.ls34{letter-spacing:-0.597333pt;}
.ls18{letter-spacing:-0.557525pt;}
.ls2e{letter-spacing:-0.522667pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.348453pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.298667pt;}
.ls19{letter-spacing:-0.278763pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.149333pt;}
.ls3e{letter-spacing:-0.059024pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.010667pt;}
.ls37{letter-spacing:0.017733pt;}
.ls45{letter-spacing:0.035467pt;}
.ls1d{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.149333pt;}
.ls9{letter-spacing:0.224000pt;}
.ls30{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.278763pt;}
.ls3d{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.348453pt;}
.lsc{letter-spacing:0.373333pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.418144pt;}
.ls44{letter-spacing:0.522667pt;}
.ls2a{letter-spacing:0.597333pt;}
.ls31{letter-spacing:0.736000pt;}
.ls29{letter-spacing:1.194667pt;}
.ls23{letter-spacing:4.284400pt;}
.ls48{letter-spacing:4.778667pt;}
.ls47{letter-spacing:5.525333pt;}
.ls1f{letter-spacing:6.197333pt;}
.ls24{letter-spacing:7.108293pt;}
.ls25{letter-spacing:11.363597pt;}
.ls46{letter-spacing:16.128000pt;}
.ls36{letter-spacing:17.746554pt;}
.ls4b{letter-spacing:19.040000pt;}
.ls3c{letter-spacing:21.866667pt;}
.ls1c{letter-spacing:22.560000pt;}
.ls4c{letter-spacing:25.461333pt;}
.ls3f{letter-spacing:30.389333pt;}
.ls15{letter-spacing:30.942656pt;}
.ls41{letter-spacing:32.711067pt;}
.ls11{letter-spacing:33.799973pt;}
.lsd{letter-spacing:33.973333pt;}
.ls13{letter-spacing:34.496880pt;}
.ls38{letter-spacing:34.844400pt;}
.ls40{letter-spacing:35.242667pt;}
.ls3{letter-spacing:39.722667pt;}
.ls3a{letter-spacing:40.373333pt;}
.ls39{letter-spacing:44.576000pt;}
.ls2b{letter-spacing:48.906667pt;}
.ls10{letter-spacing:2511.004800pt;}
.ws34{word-spacing:-74.368000pt;}
.ws11{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.965333pt;}
.ws35{word-spacing:-18.890667pt;}
.ws4{word-spacing:-18.666667pt;}
.ws10{word-spacing:-18.517333pt;}
.ws4e{word-spacing:-18.442667pt;}
.ws39{word-spacing:-18.368000pt;}
.ws5{word-spacing:-18.293333pt;}
.ws55{word-spacing:-18.218667pt;}
.ws4b{word-spacing:-18.069333pt;}
.ws5a{word-spacing:-17.845333pt;}
.ws4d{word-spacing:-17.746554pt;}
.ws43{word-spacing:-17.621333pt;}
.ws2d{word-spacing:-17.422667pt;}
.ws30{word-spacing:-17.143904pt;}
.ws2c{word-spacing:-17.074213pt;}
.ws2e{word-spacing:-16.865141pt;}
.ws4c{word-spacing:-16.650667pt;}
.ws3{word-spacing:-16.426667pt;}
.ws38{word-spacing:-16.277333pt;}
.ws8{word-spacing:-16.000000pt;}
.ws4a{word-spacing:-15.680000pt;}
.ws31{word-spacing:-15.262256pt;}
.ws37{word-spacing:-15.232000pt;}
.ws53{word-spacing:-15.082667pt;}
.ws49{word-spacing:-14.410667pt;}
.ws57{word-spacing:-13.280400pt;}
.ws40{word-spacing:-12.469333pt;}
.ws59{word-spacing:-12.088933pt;}
.ws46{word-spacing:-11.363597pt;}
.ws58{word-spacing:-10.602667pt;}
.ws54{word-spacing:-10.304000pt;}
.ws45{word-spacing:-7.108293pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws5b{word-spacing:-0.597333pt;}
.ws56{word-spacing:-0.522667pt;}
.ws36{word-spacing:-0.448000pt;}
.ws1{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.348453pt;}
.wsb{word-spacing:-0.298667pt;}
.wsd{word-spacing:-0.224000pt;}
.ws2{word-spacing:-0.074667pt;}
.ws2f{word-spacing:-0.069691pt;}
.ws7{word-spacing:-0.064000pt;}
.ws50{word-spacing:-0.048356pt;}
.ws0{word-spacing:0.000000pt;}
.ws51{word-spacing:0.059024pt;}
.wsc{word-spacing:0.149333pt;}
.ws3a{word-spacing:0.224000pt;}
.wse{word-spacing:0.256000pt;}
.wsa{word-spacing:0.298667pt;}
.wsf{word-spacing:0.320000pt;}
.ws32{word-spacing:0.348453pt;}
.ws3f{word-spacing:0.373333pt;}
.ws25{word-spacing:0.448000pt;}
.ws5e{word-spacing:0.896000pt;}
.ws42{word-spacing:0.970667pt;}
.ws1e{word-spacing:1.045333pt;}
.ws1d{word-spacing:1.194667pt;}
.ws52{word-spacing:1.866667pt;}
.ws44{word-spacing:2.389333pt;}
.ws47{word-spacing:2.464000pt;}
.ws1f{word-spacing:2.538667pt;}
.ws21{word-spacing:2.986667pt;}
.ws26{word-spacing:3.285333pt;}
.ws20{word-spacing:3.434667pt;}
.ws1b{word-spacing:3.584000pt;}
.ws19{word-spacing:3.808000pt;}
.ws22{word-spacing:4.032000pt;}
.ws48{word-spacing:4.181333pt;}
.ws41{word-spacing:4.330667pt;}
.ws1a{word-spacing:4.480000pt;}
.ws5d{word-spacing:4.704000pt;}
.ws60{word-spacing:5.152000pt;}
.ws5f{word-spacing:5.450667pt;}
.ws5c{word-spacing:6.122667pt;}
.ws12{word-spacing:6.645333pt;}
.ws13{word-spacing:6.869333pt;}
.ws24{word-spacing:7.541333pt;}
.ws9{word-spacing:7.840000pt;}
.ws66{word-spacing:8.064000pt;}
.ws3e{word-spacing:9.706667pt;}
.ws65{word-spacing:10.080000pt;}
.ws27{word-spacing:11.872000pt;}
.ws61{word-spacing:12.544000pt;}
.ws29{word-spacing:13.290667pt;}
.ws63{word-spacing:13.962667pt;}
.ws62{word-spacing:15.829333pt;}
.ws16{word-spacing:15.904000pt;}
.ws14{word-spacing:16.128000pt;}
.ws15{word-spacing:16.576000pt;}
.ws28{word-spacing:17.546667pt;}
.ws3b{word-spacing:21.802667pt;}
.ws3d{word-spacing:22.474667pt;}
.ws2b{word-spacing:24.490667pt;}
.ws2a{word-spacing:25.312000pt;}
.ws18{word-spacing:33.152000pt;}
.ws3c{word-spacing:33.600000pt;}
.ws17{word-spacing:33.898667pt;}
.ws23{word-spacing:43.829333pt;}
.ws64{word-spacing:2392.418133pt;}
.ws4f{word-spacing:2451.335467pt;}
._53{margin-left:-18.442667pt;}
._32{margin-left:-12.492880pt;}
._33{margin-left:-11.594667pt;}
._3b{margin-left:-9.484880pt;}
._e{margin-left:-8.512000pt;}
._3a{margin-left:-7.091200pt;}
._2{margin-left:-6.197333pt;}
._35{margin-left:-5.002667pt;}
._4{margin-left:-4.032000pt;}
._3c{margin-left:-3.136000pt;}
._7{margin-left:-2.240000pt;}
._1{margin-left:-1.194667pt;}
._6{width:0.896000pt;}
._8{width:2.016000pt;}
._c{width:2.986667pt;}
._15{width:3.957333pt;}
._36{width:5.152000pt;}
._20{width:6.794667pt;}
._0{width:7.840000pt;}
._f{width:9.258667pt;}
._10{width:10.154667pt;}
._30{width:11.917104pt;}
._a{width:13.440000pt;}
._b{width:14.634667pt;}
._31{width:15.845008pt;}
._21{width:16.800000pt;}
._3d{width:17.696000pt;}
._24{width:18.624356pt;}
._2a{width:20.071925pt;}
._1e{width:21.056000pt;}
._37{width:22.084875pt;}
._d{width:23.520000pt;}
._1d{width:24.640000pt;}
._11{width:25.610667pt;}
._12{width:26.805333pt;}
._13{width:28.000000pt;}
._1a{width:29.120000pt;}
._28{width:30.242213pt;}
._18{width:31.136000pt;}
._17{width:32.181333pt;}
._23{width:33.525333pt;}
._22{width:34.496000pt;}
._1f{width:35.648000pt;}
._5{width:36.586667pt;}
._3{width:37.856000pt;}
._34{width:38.826667pt;}
._14{width:39.722667pt;}
._2b{width:40.699349pt;}
._2c{width:42.401701pt;}
._43{width:43.381333pt;}
._4d{width:44.874667pt;}
._3e{width:47.040000pt;}
._47{width:48.757333pt;}
._2f{width:49.805173pt;}
._16{width:50.848000pt;}
._19{width:51.744000pt;}
._3f{width:53.162667pt;}
._9{width:54.282667pt;}
._26{width:55.961605pt;}
._45{width:56.861824pt;}
._27{width:57.803392pt;}
._2d{width:58.749232pt;}
._2e{width:60.232560pt;}
._42{width:61.301333pt;}
._4e{width:62.197333pt;}
._49{width:63.690667pt;}
._4a{width:64.586667pt;}
._4b{width:66.154667pt;}
._25{width:67.550107pt;}
._4f{width:68.567227pt;}
._40{width:69.813333pt;}
._1b{width:71.008000pt;}
._1c{width:72.128000pt;}
._46{width:74.965333pt;}
._29{width:79.616544pt;}
._44{width:81.909333pt;}
._48{width:84.000000pt;}
._38{width:90.421333pt;}
._39{width:92.437333pt;}
._41{width:105.578667pt;}
._52{width:112.373333pt;}
._50{width:134.997333pt;}
._4c{width:138.730667pt;}
._51{width:752.128000pt;}
.fs5{font-size:48.355733pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:59.024000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.690667pt;}
.fs1{font-size:74.666667pt;}
.y1c8{bottom:-500.791385pt;}
.y1c7{bottom:-482.833333pt;}
.y1ec{bottom:-268.378667pt;}
.y1fc{bottom:-252.603385pt;}
.y1fb{bottom:-234.645333pt;}
.y1eb{bottom:-232.837333pt;}
.y1ea{bottom:-211.501333pt;}
.y1e9{bottom:-189.978667pt;}
.y1e8{bottom:-168.474667pt;}
.y1e7{bottom:-146.970667pt;}
.y1e6{bottom:-125.634667pt;}
.y1e5{bottom:-104.112000pt;}
.y1e4{bottom:-82.570667pt;}
.y1e3{bottom:-61.048000pt;}
.y1e2{bottom:-39.712000pt;}
.y220{bottom:-20.182667pt;}
.y1e1{bottom:-18.208000pt;}
.y0{bottom:0.000000pt;}
.y1e0{bottom:3.296000pt;}
.y5b{bottom:3.377067pt;}
.yaa{bottom:4.440000pt;}
.yf9{bottom:4.441333pt;}
.ybb{bottom:4.445067pt;}
.y97{bottom:4.453333pt;}
.y123{bottom:4.454667pt;}
.y150{bottom:4.480000pt;}
.ya1{bottom:4.613333pt;}
.ycc{bottom:4.614667pt;}
.y13f{bottom:4.618667pt;}
.ye3{bottom:4.622400pt;}
.y15c{bottom:4.623733pt;}
.y9e{bottom:4.626667pt;}
.y9a{bottom:4.628000pt;}
.yaf{bottom:4.653333pt;}
.y59{bottom:19.552000pt;}
.y5a{bottom:21.872000pt;}
.ya9{bottom:25.946667pt;}
.y10a{bottom:25.948000pt;}
.y13e{bottom:25.952000pt;}
.y15b{bottom:25.957067pt;}
.y11a{bottom:25.957333pt;}
.ya7{bottom:25.960000pt;}
.ybd{bottom:25.986667pt;}
.yac{bottom:26.120000pt;}
.ya0{bottom:26.133333pt;}
.y99{bottom:26.134667pt;}
.y159{bottom:26.138667pt;}
.y129{bottom:28.440000pt;}
.y11f{bottom:28.453333pt;}
.y130{bottom:28.480000pt;}
.y11d{bottom:28.613333pt;}
.y141{bottom:28.622400pt;}
.y135{bottom:28.626667pt;}
.yc4{bottom:31.466667pt;}
.y30{bottom:43.579733pt;}
.yd1{bottom:47.453333pt;}
.yb9{bottom:47.466400pt;}
.y95{bottom:47.466667pt;}
.yc7{bottom:47.468000pt;}
.yce{bottom:47.493333pt;}
.y14a{bottom:47.494667pt;}
.ya3{bottom:47.640000pt;}
.y16b{bottom:47.641333pt;}
.y104{bottom:47.650667pt;}
.y101{bottom:47.653333pt;}
.y160{bottom:47.654667pt;}
.y168{bottom:47.666667pt;}
.y9c{bottom:47.680000pt;}
.y165{bottom:48.000000pt;}
.y35{bottom:51.045681pt;}
.y2b{bottom:59.408000pt;}
.y2d{bottom:62.248000pt;}
.ye5{bottom:68.973333pt;}
.y152{bottom:68.974667pt;}
.yc0{bottom:68.986667pt;}
.y125{bottom:69.000000pt;}
.y34{bottom:69.003733pt;}
.y161{bottom:69.013333pt;}
.yf6{bottom:69.014667pt;}
.y1{bottom:69.126000pt;}
.y2a{bottom:79.498667pt;}
.ye1{bottom:84.322667pt;}
.yb8{bottom:84.856000pt;}
.y140{bottom:86.278667pt;}
.y11b{bottom:87.700000pt;}
.y15a{bottom:88.410667pt;}
.y103{bottom:89.656000pt;}
.yd4{bottom:90.333333pt;}
.y10b{bottom:90.493333pt;}
.y5d{bottom:92.141625pt;}
.y91{bottom:93.104844pt;}
.y142{bottom:93.389067pt;}
.y2f{bottom:94.285067pt;}
.y2c{bottom:103.701067pt;}
.y119{bottom:109.922667pt;}
.ye2{bottom:110.278400pt;}
.yba{bottom:110.811733pt;}
.y5c{bottom:112.055733pt;}
.y2e{bottom:112.589067pt;}
.y90{bottom:113.018952pt;}
.y105{bottom:115.789067pt;}
.y21a{bottom:122.545333pt;}
.y1c5{bottom:125.402667pt;}
.y19b{bottom:125.749333pt;}
.y58{bottom:128.234667pt;}
.y158{bottom:131.968000pt;}
.y13d{bottom:132.501333pt;}
.y8f{bottom:133.107287pt;}
.y31{bottom:139.372000pt;}
.y1f9{bottom:143.789333pt;}
.y219{bottom:144.068000pt;}
.y19a{bottom:147.253333pt;}
.y1c4{bottom:147.261333pt;}
.y5f{bottom:147.584000pt;}
.yde{bottom:149.386667pt;}
.yb6{bottom:149.920000pt;}
.y8e{bottom:153.021395pt;}
.y118{bottom:153.480000pt;}
.y100{bottom:154.720000pt;}
.y29{bottom:163.928000pt;}
.y1f8{bottom:165.125333pt;}
.y218{bottom:165.609333pt;}
.y199{bottom:168.776000pt;}
.y1c3{bottom:168.784000pt;}
.y57{bottom:169.677333pt;}
.y8d{bottom:172.935503pt;}
.ye0{bottom:175.346667pt;}
.y157{bottom:175.518667pt;}
.yb7{bottom:175.880000pt;}
.y13b{bottom:176.053333pt;}
.y102{bottom:180.853333pt;}
.y13c{bottom:183.173333pt;}
.y28{bottom:185.432000pt;}
.y1f7{bottom:186.461333pt;}
.y217{bottom:187.132000pt;}
.y198{bottom:190.112000pt;}
.y1c2{bottom:190.120000pt;}
.y56{bottom:191.013333pt;}
.y8c{bottom:192.849611pt;}
.ydf{bottom:196.853333pt;}
.y117{bottom:197.040000pt;}
.y27{bottom:206.936000pt;}
.y1f6{bottom:207.797333pt;}
.y216{bottom:208.468000pt;}
.y1c1{bottom:211.269333pt;}
.y197{bottom:211.616000pt;}
.y55{bottom:212.536000pt;}
.y8b{bottom:212.763719pt;}
.yb4{bottom:214.986667pt;}
.y155{bottom:219.253333pt;}
.yff{bottom:219.785333pt;}
.y139{bottom:222.280000pt;}
.y26{bottom:228.458667pt;}
.y1f5{bottom:229.133333pt;}
.y215{bottom:229.972000pt;}
.y8a{bottom:232.677827pt;}
.y1c0{bottom:232.792000pt;}
.y196{bottom:233.117333pt;}
.y54{bottom:234.040000pt;}
.ydc{bottom:235.973333pt;}
.y116{bottom:240.586667pt;}
.yb5{bottom:240.946667pt;}
.y156{bottom:245.213333pt;}
.y13a{bottom:248.240000pt;}
.y25{bottom:249.794667pt;}
.y1f4{bottom:250.469333pt;}
.y214{bottom:251.476000pt;}
.y89{bottom:252.591935pt;}
.y1bf{bottom:254.296000pt;}
.y195{bottom:254.640000pt;}
.y53{bottom:255.544000pt;}
.ydd{bottom:261.920000pt;}
.yfd{bottom:263.520000pt;}
.y24{bottom:271.336000pt;}
.y1f3{bottom:271.805333pt;}
.y88{bottom:272.523465pt;}
.y213{bottom:272.998667pt;}
.y1be{bottom:275.650667pt;}
.y194{bottom:275.994667pt;}
.y52{bottom:276.898667pt;}
.yb3{bottom:279.906667pt;}
.y115{bottom:284.173333pt;}
.y137{bottom:287.373333pt;}
.yfe{bottom:289.506667pt;}
.y87{bottom:292.437573pt;}
.y23{bottom:292.840000pt;}
.y212{bottom:294.334667pt;}
.y138{bottom:294.480000pt;}
.y193{bottom:297.498667pt;}
.y1bd{bottom:297.509333pt;}
.y51{bottom:298.421333pt;}
.yda{bottom:301.066667pt;}
.y86{bottom:312.525908pt;}
.y22{bottom:314.362667pt;}
.y1f2{bottom:314.477333pt;}
.y211{bottom:315.838667pt;}
.y192{bottom:319.002667pt;}
.y1bc{bottom:319.013333pt;}
.y50{bottom:319.925333pt;}
.yb2{bottom:323.640000pt;}
.ydb{bottom:327.013333pt;}
.y113{bottom:327.906667pt;}
.yfc{bottom:328.440000pt;}
.y85{bottom:332.440016pt;}
.y134{bottom:333.413333pt;}
.y21{bottom:335.698667pt;}
.y1f1{bottom:335.813333pt;}
.y210{bottom:337.342667pt;}
.y191{bottom:340.338667pt;}
.y1bb{bottom:340.346667pt;}
.y136{bottom:340.533333pt;}
.y4f{bottom:341.429333pt;}
.y84{bottom:351.814021pt;}
.y114{bottom:353.866667pt;}
.y1f0{bottom:357.149333pt;}
.y20{bottom:357.202667pt;}
.y20f{bottom:358.884000pt;}
.y1ba{bottom:361.856000pt;}
.y190{bottom:361.861333pt;}
.y4e{bottom:362.765333pt;}
.yd8{bottom:366.133333pt;}
.yb1{bottom:367.200000pt;}
.y151{bottom:371.465333pt;}
.y83{bottom:371.728129pt;}
.yfa{bottom:372.173333pt;}
.y1ef{bottom:378.485333pt;}
.y1f{bottom:378.706667pt;}
.y132{bottom:379.638667pt;}
.y20e{bottom:380.220000pt;}
.y1b9{bottom:383.360000pt;}
.y18f{bottom:383.365333pt;}
.y4d{bottom:384.288000pt;}
.yd9{bottom:392.080000pt;}
.y82{bottom:392.182340pt;}
.y112{bottom:392.973333pt;}
.y154{bottom:397.410667pt;}
.yfb{bottom:398.133333pt;}
.y1ee{bottom:399.821333pt;}
.y1e{bottom:400.229333pt;}
.y20d{bottom:401.724000pt;}
.y1b8{bottom:404.864000pt;}
.y18e{bottom:404.869333pt;}
.y133{bottom:405.600000pt;}
.y4c{bottom:405.792000pt;}
.yb0{bottom:410.746667pt;}
.y81{bottom:412.096448pt;}
.y153{bottom:418.933333pt;}
.y1ed{bottom:421.157333pt;}
.y1d{bottom:421.565333pt;}
.y20c{bottom:422.892000pt;}
.y1b7{bottom:426.200000pt;}
.y18d{bottom:426.205333pt;}
.y4b{bottom:427.296000pt;}
.yd3{bottom:431.200000pt;}
.y80{bottom:432.010556pt;}
.y110{bottom:436.533333pt;}
.yf5{bottom:437.238667pt;}
.y1c{bottom:443.069333pt;}
.y20b{bottom:444.396000pt;}
.y12f{bottom:444.706667pt;}
.y1b6{bottom:447.722667pt;}
.y18c{bottom:447.728000pt;}
.y4a{bottom:448.632000pt;}
.y131{bottom:451.813333pt;}
.y7f{bottom:451.924664pt;}
.y1cb{bottom:453.677333pt;}
.yad{bottom:454.306667pt;}
.yd7{bottom:457.149333pt;}
.y14f{bottom:458.040000pt;}
.y111{bottom:462.520000pt;}
.yf8{bottom:463.229333pt;}
.y1b{bottom:464.610667pt;}
.y20a{bottom:465.732000pt;}
.y1b5{bottom:469.264000pt;}
.y18b{bottom:469.269333pt;}
.y49{bottom:470.173333pt;}
.y7e{bottom:472.047844pt;}
.y1ca{bottom:475.181333pt;}
.yd6{bottom:478.690667pt;}
.yae{bottom:480.466667pt;}
.yf7{bottom:484.733333pt;}
.y1a{bottom:485.946667pt;}
.y209{bottom:487.254667pt;}
.y12d{bottom:490.786667pt;}
.y18a{bottom:490.792000pt;}
.y48{bottom:491.677333pt;}
.y7d{bottom:491.961952pt;}
.y1c9{bottom:496.722667pt;}
.y12e{bottom:497.893333pt;}
.yd5{bottom:500.026667pt;}
.y10f{bottom:501.626667pt;}
.y19{bottom:507.450667pt;}
.y208{bottom:508.758667pt;}
.y1fa{bottom:509.606667pt;}
.y7c{bottom:511.876060pt;}
.y1b4{bottom:512.122667pt;}
.y189{bottom:512.128000pt;}
.y16f{bottom:513.005333pt;}
.y47{bottom:513.200000pt;}
.yab{bottom:519.413333pt;}
.yf2{bottom:523.680000pt;}
.y21f{bottom:524.970667pt;}
.y14e{bottom:527.586667pt;}
.y18{bottom:528.954667pt;}
.y207{bottom:530.094667pt;}
.y16e{bottom:531.325333pt;}
.y7b{bottom:531.790168pt;}
.y1b3{bottom:533.626667pt;}
.y188{bottom:533.632000pt;}
.y46{bottom:534.536000pt;}
.y12b{bottom:537.013333pt;}
.yd0{bottom:539.146667pt;}
.y10e{bottom:545.186667pt;}
.y21e{bottom:546.306667pt;}
.yf4{bottom:549.797333pt;}
.y16d{bottom:550.333333pt;}
.y17{bottom:550.477333pt;}
.y206{bottom:551.636000pt;}
.y7a{bottom:551.704276pt;}
.y1b2{bottom:555.130667pt;}
.y187{bottom:555.136000pt;}
.y12c{bottom:562.960000pt;}
.ya8{bottom:563.146667pt;}
.yd2{bottom:565.093333pt;}
.y16a{bottom:565.278667pt;}
.y14c{bottom:566.693333pt;}
.y21d{bottom:567.829333pt;}
.yf3{bottom:571.320000pt;}
.y79{bottom:571.618384pt;}
.y16{bottom:571.813333pt;}
.y205{bottom:573.158667pt;}
.y45{bottom:574.706667pt;}
.y1b1{bottom:576.653333pt;}
.y186{bottom:576.658667pt;}
.y21c{bottom:589.333333pt;}
.y16c{bottom:591.400000pt;}
.y78{bottom:591.532492pt;}
.y14d{bottom:592.653333pt;}
.y15{bottom:593.317333pt;}
.y33{bottom:593.444000pt;}
.y204{bottom:594.662667pt;}
.y1b0{bottom:597.989333pt;}
.y185{bottom:597.994667pt;}
.y128{bottom:602.080000pt;}
.ycd{bottom:604.213333pt;}
.ya6{bottom:606.693333pt;}
.y12a{bottom:609.186667pt;}
.yf0{bottom:610.253333pt;}
.y21b{bottom:610.837333pt;}
.y77{bottom:611.446600pt;}
.y14{bottom:614.821333pt;}
.y44{bottom:614.877333pt;}
.y60{bottom:614.898667pt;}
.y203{bottom:615.998667pt;}
.y1af{bottom:619.493333pt;}
.y184{bottom:619.498667pt;}
.ycf{bottom:630.160000pt;}
.y167{bottom:630.346667pt;}
.y76{bottom:631.360708pt;}
.y149{bottom:631.758667pt;}
.y13{bottom:636.344000pt;}
.yf1{bottom:636.386667pt;}
.y43{bottom:636.400000pt;}
.y202{bottom:637.502667pt;}
.y1ae{bottom:640.997333pt;}
.y183{bottom:641.002667pt;}
.y124{bottom:648.120000pt;}
.ya5{bottom:650.280000pt;}
.y75{bottom:651.483888pt;}
.y169{bottom:656.506667pt;}
.y12{bottom:657.698667pt;}
.y14b{bottom:657.746667pt;}
.y42{bottom:657.754667pt;}
.y201{bottom:659.025333pt;}
.y1ad{bottom:662.538667pt;}
.y182{bottom:662.544000pt;}
.y1c6{bottom:668.976000pt;}
.yca{bottom:669.305333pt;}
.y74{bottom:671.397996pt;}
.y127{bottom:674.277333pt;}
.yee{bottom:675.346667pt;}
.y11{bottom:678.866667pt;}
.y41{bottom:679.258667pt;}
.y200{bottom:680.529333pt;}
.y1ac{bottom:683.874667pt;}
.y181{bottom:683.880000pt;}
.y73{bottom:691.312104pt;}
.y1df{bottom:693.781333pt;}
.ya2{bottom:693.840000pt;}
.ycb{bottom:695.253333pt;}
.y164{bottom:695.440000pt;}
.y126{bottom:695.613333pt;}
.y147{bottom:696.853333pt;}
.y10{bottom:700.370667pt;}
.yef{bottom:701.480000pt;}
.y1ff{bottom:701.865333pt;}
.y1ab{bottom:705.378667pt;}
.y180{bottom:705.384000pt;}
.y72{bottom:711.226212pt;}
.y1de{bottom:715.117333pt;}
.y40{bottom:719.448000pt;}
.ya4{bottom:719.973333pt;}
.y166{bottom:721.573333pt;}
.y148{bottom:722.813333pt;}
.y10d{bottom:722.816000pt;}
.y1fe{bottom:723.369333pt;}
.yf{bottom:725.608000pt;}
.y17f{bottom:726.896000pt;}
.y1aa{bottom:726.901333pt;}
.y71{bottom:731.140320pt;}
.yc9{bottom:734.373333pt;}
.y121{bottom:734.718667pt;}
.y1dd{bottom:736.621333pt;}
.yec{bottom:740.413333pt;}
.y10c{bottom:744.320000pt;}
.y1fd{bottom:744.910667pt;}
.y17e{bottom:748.400000pt;}
.y1a9{bottom:748.405333pt;}
.ye{bottom:750.509333pt;}
.y70{bottom:751.054428pt;}
.y1dc{bottom:758.125333pt;}
.y9f{bottom:758.906667pt;}
.y3f{bottom:759.450667pt;}
.y122{bottom:760.680000pt;}
.y145{bottom:761.920000pt;}
.yed{bottom:766.546667pt;}
.y17d{bottom:769.736000pt;}
.y1a8{bottom:769.741333pt;}
.y6f{bottom:770.968536pt;}
.yd{bottom:775.224000pt;}
.yc6{bottom:777.918667pt;}
.y1db{bottom:779.666667pt;}
.y3e{bottom:780.954667pt;}
.y109{bottom:783.438667pt;}
.y146{bottom:787.880000pt;}
.y6e{bottom:790.882644pt;}
.y17c{bottom:790.904000pt;}
.y1a7{bottom:791.245333pt;}
.y11e{bottom:799.786667pt;}
.yc{bottom:800.125333pt;}
.y1da{bottom:801.002667pt;}
.y9b{bottom:802.453333pt;}
.y3d{bottom:802.458667pt;}
.yc8{bottom:804.053333pt;}
.yea{bottom:805.480000pt;}
.y120{bottom:806.906667pt;}
.y6d{bottom:810.796752pt;}
.y17b{bottom:812.408000pt;}
.y1a6{bottom:812.768000pt;}
.y1d9{bottom:822.506667pt;}
.y3c{bottom:823.981333pt;}
.yb{bottom:825.026667pt;}
.y108{bottom:826.986667pt;}
.y9d{bottom:828.586667pt;}
.y6c{bottom:830.885087pt;}
.yeb{bottom:831.440000pt;}
.y17a{bottom:834.098667pt;}
.y1a5{bottom:834.104000pt;}
.yc3{bottom:843.013333pt;}
.y1d8{bottom:843.674667pt;}
.y3b{bottom:845.336000pt;}
.y11c{bottom:845.866667pt;}
.ya{bottom:849.928000pt;}
.y6b{bottom:850.816617pt;}
.yc5{bottom:852.973333pt;}
.y163{bottom:852.976000pt;}
.y1a4{bottom:855.645333pt;}
.y179{bottom:864.346667pt;}
.y1d7{bottom:865.178667pt;}
.y3a{bottom:866.840000pt;}
.y98{bottom:867.545333pt;}
.ye8{bottom:870.572000pt;}
.y6a{bottom:870.730725pt;}
.y162{bottom:874.480000pt;}
.y9{bottom:874.829333pt;}
.y178{bottom:877.144000pt;}
.y1a3{bottom:877.149333pt;}
.y1d6{bottom:886.514667pt;}
.y39{bottom:888.344000pt;}
.y69{bottom:890.644833pt;}
.ybf{bottom:892.080000pt;}
.ye9{bottom:896.533333pt;}
.y1a2{bottom:898.672000pt;}
.y8{bottom:899.730667pt;}
.y177{bottom:907.373333pt;}
.y1d5{bottom:908.037333pt;}
.y68{bottom:910.558941pt;}
.y94{bottom:911.280000pt;}
.y15f{bottom:913.412000pt;}
.y107{bottom:918.040000pt;}
.yc2{bottom:918.042667pt;}
.y1a1{bottom:920.008000pt;}
.y7{bottom:924.613333pt;}
.y38{bottom:928.533333pt;}
.y176{bottom:928.706667pt;}
.y1d4{bottom:929.541333pt;}
.y67{bottom:930.473049pt;}
.ye4{bottom:935.640000pt;}
.y96{bottom:937.240000pt;}
.yc1{bottom:939.546667pt;}
.y175{bottom:941.493333pt;}
.y1a0{bottom:941.512000pt;}
.y6{bottom:949.328000pt;}
.y66{bottom:950.387157pt;}
.y1d3{bottom:950.877333pt;}
.y106{bottom:957.146667pt;}
.ye7{bottom:961.602667pt;}
.y174{bottom:962.997333pt;}
.y19f{bottom:963.016000pt;}
.y37{bottom:968.181333pt;}
.y5e{bottom:968.712000pt;}
.y65{bottom:970.301265pt;}
.y1d2{bottom:972.418667pt;}
.y5{bottom:973.856000pt;}
.ybe{bottom:978.480000pt;}
.y93{bottom:980.266667pt;}
.ye6{bottom:983.106667pt;}
.y173{bottom:984.165333pt;}
.y19e{bottom:984.538667pt;}
.y64{bottom:990.389600pt;}
.y1d1{bottom:993.941333pt;}
.y4{bottom:998.738667pt;}
.y32{bottom:999.513333pt;}
.y143{bottom:1000.706667pt;}
.y15e{bottom:1004.613333pt;}
.y172{bottom:1005.501333pt;}
.y19d{bottom:1005.874667pt;}
.y36{bottom:1008.352000pt;}
.y63{bottom:1010.303708pt;}
.y92{bottom:1012.981333pt;}
.y1d0{bottom:1015.445333pt;}
.ybc{bottom:1022.213333pt;}
.y3{bottom:1023.640000pt;}
.y144{bottom:1026.666667pt;}
.y171{bottom:1027.005333pt;}
.y19c{bottom:1027.378667pt;}
.y62{bottom:1030.252661pt;}
.y1cf{bottom:1036.781333pt;}
.y15d{bottom:1043.586667pt;}
.y2{bottom:1048.560000pt;}
.y170{bottom:1048.920000pt;}
.y61{bottom:1049.626667pt;}
.y1ce{bottom:1058.285333pt;}
.y1cd{bottom:1079.808000pt;}
.y1cc{bottom:1101.312000pt;}
.h31{height:21.510667pt;}
.h47{height:32.677898pt;}
.hb{height:36.797333pt;}
.h2{height:39.101562pt;}
.ha{height:39.339727pt;}
.h16{height:42.830667pt;}
.h2a{height:42.832000pt;}
.h3c{height:42.841333pt;}
.h30{height:42.842667pt;}
.h2c{height:42.844000pt;}
.h15{height:42.866667pt;}
.h1a{height:42.874667pt;}
.h13{height:43.009333pt;}
.h40{height:43.020000pt;}
.h11{height:43.022667pt;}
.h26{height:43.024000pt;}
.h2f{height:43.044000pt;}
.h45{height:43.375000pt;}
.h8{height:44.437500pt;}
.h7{height:44.468750pt;}
.h3a{height:45.318667pt;}
.h36{height:45.320000pt;}
.h34{height:45.354667pt;}
.h39{height:45.362667pt;}
.h33{height:45.497333pt;}
.h3d{height:45.508000pt;}
.h3b{height:45.509333pt;}
.h38{height:45.510667pt;}
.hc{height:47.231760pt;}
.h1c{height:48.354667pt;}
.hf{height:48.388734pt;}
.he{height:48.422763pt;}
.h3{height:50.604167pt;}
.h4{height:51.843750pt;}
.h9{height:51.853542pt;}
.h5{height:51.880208pt;}
.hd{height:60.264732pt;}
.h21{height:64.341333pt;}
.h1e{height:64.342667pt;}
.h19{height:64.354667pt;}
.h10{height:64.356000pt;}
.h23{height:64.364000pt;}
.h20{height:64.372000pt;}
.h18{height:64.377333pt;}
.h2d{height:64.385333pt;}
.h14{height:64.518667pt;}
.h44{height:64.520000pt;}
.h28{height:64.532000pt;}
.h27{height:64.533333pt;}
.h43{height:64.549333pt;}
.h12{height:64.556000pt;}
.h17{height:64.562667pt;}
.h46{height:64.567708pt;}
.h42{height:65.764000pt;}
.h29{height:65.807292pt;}
.h41{height:67.591398pt;}
.h1f{height:68.401790pt;}
.h1d{height:68.455123pt;}
.h48{height:68.468068pt;}
.h37{height:68.478735pt;}
.h49{height:68.489401pt;}
.h6{height:76.644000pt;}
.h2e{height:77.444879pt;}
.h32{height:77.498212pt;}
.h3f{height:77.604879pt;}
.h24{height:85.853333pt;}
.h3e{height:85.854667pt;}
.h1b{height:85.865333pt;}
.h35{height:85.889333pt;}
.h25{height:85.896000pt;}
.h22{height:107.229333pt;}
.h2b{height:107.377333pt;}
.h4b{height:140.472000pt;}
.h4a{height:453.544000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:55.986667pt;}
.w2{width:274.000000pt;}
.w4{width:296.760000pt;}
.w5{width:345.840000pt;}
.w3{width:368.585333pt;}
.w6{width:566.506667pt;}
.w8{width:755.906667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.100800pt;}
.x1b{left:21.146667pt;}
.x1c{left:22.573333pt;}
.x17{left:30.573333pt;}
.x2{left:56.692800pt;}
.x2b{left:61.724933pt;}
.x5{left:63.851467pt;}
.x37{left:73.661333pt;}
.x18{left:75.950667pt;}
.x29{left:80.615600pt;}
.x1a{left:82.874133pt;}
.x9{left:94.604159pt;}
.xd{left:95.622000pt;}
.xe{left:100.680667pt;}
.x3{left:103.855467pt;}
.x14{left:113.817333pt;}
.x20{left:115.234667pt;}
.x15{left:120.741333pt;}
.x38{left:127.720000pt;}
.x36{left:131.266667pt;}
.xa{left:132.538667pt;}
.x27{left:135.320000pt;}
.x24{left:150.253333pt;}
.x2a{left:152.743600pt;}
.x8{left:154.204000pt;}
.x2c{left:156.495600pt;}
.x3c{left:159.322667pt;}
.x25{left:161.813333pt;}
.x34{left:169.850667pt;}
.x3a{left:173.565333pt;}
.x32{left:176.440000pt;}
.x44{left:182.552000pt;}
.x12{left:188.162751pt;}
.x23{left:199.869333pt;}
.x1f{left:204.293333pt;}
.x3e{left:208.872000pt;}
.x39{left:222.640000pt;}
.x31{left:228.520000pt;}
.x10{left:233.653333pt;}
.x3b{left:238.637333pt;}
.x35{left:242.408000pt;}
.x33{left:245.413333pt;}
.x3f{left:250.050667pt;}
.x40{left:254.362667pt;}
.x3d{left:263.509333pt;}
.x28{left:277.810267pt;}
.x2d{left:285.388933pt;}
.x41{left:295.821333pt;}
.x42{left:297.464000pt;}
.x2f{left:308.311600pt;}
.x43{left:312.453333pt;}
.x26{left:318.642667pt;}
.x21{left:322.024000pt;}
.x6{left:330.760000pt;}
.x7{left:338.040000pt;}
.x11{left:378.052395pt;}
.x13{left:385.498667pt;}
.xb{left:391.373333pt;}
.x2e{left:396.884933pt;}
.xc{left:415.906667pt;}
.x22{left:434.770667pt;}
.xf{left:522.330667pt;}
.x19{left:643.000000pt;}
.x30{left:677.120000pt;}
.x16{left:680.866667pt;}
.x1e{left:714.706667pt;}
.x1d{left:722.140000pt;}
.x1{left:729.574667pt;}
}




    .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; }
  