
    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_7a7056a1bc979e876533daaf.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_12201d26e06d843bc77f7433.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_c77486002f1bc676d1bf2072.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_dc1e6734226067eeee1f2943.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_0dee8594fbdc56b10a4e993d.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_43f17c290a4a431ff6c88d5c.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_7cb788a6cf6442105ffa3757.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_19fd6e3ecd0cd96b7117e96c.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_9e23690c6fef754c7dec3b44.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.072266;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_fbfa9b34231bbc2e07ce6f88.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_ce42b70d91f146461395cd2a.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_d928653ec45394dce1dd0ee3.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_b5738c50e78885b9feaf5587.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_a77d7253752cb648ec352b06.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_9fe7cf9fbd8f81dbb336bcb1.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_f345e57d6b41b51855dc3106.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_68bb91fd7a2afc67f9bba837.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_25fbd2e20cc8b99746a3dbed.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_f7fb5610adbc775520421b6b.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.786621;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_4059a29c8e9d289ff129a0d4.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.911133;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_bc0f74dcce19a978c9cf7276.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_e64c4da7c4c56ee20e72e471.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_327852f71831f0a669c09f59.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_121ac6d903f8ee39a8591474.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_12929f2ea4c793f766b3c7ce.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_057fa0ae60bffb62c801c643.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_d1fcf9c75bb4512d21f11070.woff2')format("woff");}.ff42{font-family:ff42;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;}
.ls55{letter-spacing:-11.340000px;}
.ls43{letter-spacing:-9.408000px;}
.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;}
.ls49{letter-spacing:-1.008000px;}
.ls56{letter-spacing:-0.924000px;}
.ls54{letter-spacing:-0.756000px;}
.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;}
.ls53{letter-spacing:-0.084000px;}
.ls3e{letter-spacing:-0.066402px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.012000px;}
.ls37{letter-spacing:0.019950px;}
.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.324600px;}
.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;}
.ls4b{letter-spacing:0.504000px;}
.ls44{letter-spacing:0.588000px;}
.ls2a{letter-spacing:0.672000px;}
.ls31{letter-spacing:0.828000px;}
.ls46{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.344000px;}
.ls4d{letter-spacing:3.024000px;}
.ls4a{letter-spacing:3.780000px;}
.ls23{letter-spacing:4.819950px;}
.ls48{letter-spacing:5.376000px;}
.ls1f{letter-spacing:6.972000px;}
.ls51{letter-spacing:7.812000px;}
.ls24{letter-spacing:7.996829px;}
.ls52{letter-spacing:8.568000px;}
.ls4c{letter-spacing:11.088000px;}
.ls25{letter-spacing:12.784047px;}
.ls4f{letter-spacing:16.548000px;}
.ls36{letter-spacing:19.964873px;}
.ls47{letter-spacing:21.420000px;}
.ls3c{letter-spacing:24.600000px;}
.ls1c{letter-spacing:25.380000px;}
.ls45{letter-spacing:31.836000px;}
.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;}
.ls50{letter-spacing:51.744000px;}
.ls2b{letter-spacing:55.020000px;}
.ls4e{letter-spacing:60.564000px;}
.ls10{letter-spacing:2824.878600px;}
.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;}
}
.ws61{word-spacing:-84.000000px;}
.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;}
.ws62{word-spacing:-20.916000px;}
.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;}
.ws5e{word-spacing:-20.412000px;}
.ws4b{word-spacing:-20.328000px;}
.ws63{word-spacing:-20.244000px;}
.ws67{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;}
.ws58{word-spacing:-14.940450px;}
.ws40{word-spacing:-14.028000px;}
.ws59{word-spacing:-13.600050px;}
.ws46{word-spacing:-12.784047px;}
.ws54{word-spacing:-11.592000px;}
.ws45{word-spacing:-7.996829px;}
.ws1c{word-spacing:-1.008000px;}
.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;}
.ws5a{word-spacing:-0.168000px;}
.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;}
.ws66{word-spacing:0.588000px;}
.ws5c{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;}
.ws5d{word-spacing:3.528000px;}
.ws26{word-spacing:3.696000px;}
.ws20{word-spacing:3.864000px;}
.ws1b{word-spacing:4.032000px;}
.ws5f{word-spacing:4.200000px;}
.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;}
.ws12{word-spacing:7.476000px;}
.ws13{word-spacing:7.728000px;}
.ws24{word-spacing:8.484000px;}
.ws9{word-spacing:8.820000px;}
.ws3e{word-spacing:10.920000px;}
.ws65{word-spacing:11.340000px;}
.ws27{word-spacing:13.356000px;}
.ws29{word-spacing:14.952000px;}
.ws5b{word-spacing:16.464000px;}
.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;}
.ws60{word-spacing:28.812000px;}
.ws64{word-spacing:28.980000px;}
.ws18{word-spacing:37.296000px;}
.ws3c{word-spacing:37.800000px;}
.ws17{word-spacing:38.136000px;}
.ws23{word-spacing:49.308000px;}
.ws57{word-spacing:2691.468600px;}
.ws4f{word-spacing:2757.750600px;}
._5a{margin-left:-20.748000px;}
._32{margin-left:-14.054490px;}
._33{margin-left:-13.044000px;}
._56{margin-left:-11.925510px;}
._3b{margin-left:-10.670490px;}
._e{margin-left:-9.576000px;}
._3a{margin-left:-7.980000px;}
._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.843084px;}
._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;}
._54{width:51.492000px;}
._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;}
._53{width:96.684000px;}
._52{width:97.692000px;}
._38{width:101.724000px;}
._39{width:103.992000px;}
._55{width:115.416000px;}
._41{width:118.776000px;}
._50{width:151.872000px;}
._4c{width:156.072000px;}
._59{width:298.544400px;}
._58{width:299.628000px;}
._57{width:492.324000px;}
._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;}
.y1ba{bottom:-563.390308px;}
.y1b9{bottom:-543.187500px;}
.y1de{bottom:-301.926000px;}
.y1ee{bottom:-284.178508px;}
.y1ed{bottom:-263.975700px;}
.y1dd{bottom:-261.942000px;}
.y1dc{bottom:-237.939000px;}
.y1db{bottom:-213.726000px;}
.y1da{bottom:-189.534000px;}
.y1d9{bottom:-165.342000px;}
.y1d8{bottom:-141.339000px;}
.y1d7{bottom:-117.126000px;}
.y1d6{bottom:-92.892000px;}
.y1d5{bottom:-68.679000px;}
.y1d4{bottom:-44.676000px;}
.y212{bottom:-22.705200px;}
.y1d3{bottom:-20.484000px;}
.y0{bottom:0.000000px;}
.y1d2{bottom:3.708000px;}
.y5b{bottom:3.799200px;}
.yaa{bottom:4.994700px;}
.yfa{bottom:4.996200px;}
.yba{bottom:5.000700px;}
.y123{bottom:5.009550px;}
.y97{bottom:5.009700px;}
.y126{bottom:5.011200px;}
.y154{bottom:5.039700px;}
.yca{bottom:5.189550px;}
.ya1{bottom:5.189700px;}
.ycd{bottom:5.191200px;}
.y142{bottom:5.195700px;}
.ye4{bottom:5.200200px;}
.y15f{bottom:5.201700px;}
.y9e{bottom:5.204700px;}
.y9a{bottom:5.206200px;}
.yaf{bottom:5.234700px;}
.y59{bottom:21.995700px;}
.y5a{bottom:24.605700px;}
.yc9{bottom:29.189550px;}
.ya9{bottom:29.189700px;}
.y10b{bottom:29.191200px;}
.y141{bottom:29.195700px;}
.y11c{bottom:29.201700px;}
.ya7{bottom:29.204700px;}
.ybc{bottom:29.234700px;}
.yac{bottom:29.384700px;}
.ya0{bottom:29.399700px;}
.y99{bottom:29.401200px;}
.y15d{bottom:29.405700px;}
.y12c{bottom:31.994700px;}
.y121{bottom:32.009550px;}
.y133{bottom:32.039700px;}
.y11f{bottom:32.189700px;}
.y144{bottom:32.200200px;}
.y138{bottom:32.204700px;}
.yc3{bottom:35.399700px;}
.y30{bottom:49.027200px;}
.yd2{bottom:53.384700px;}
.y14b{bottom:53.399550px;}
.y95{bottom:53.399700px;}
.yc6{bottom:53.401200px;}
.ycf{bottom:53.429700px;}
.y14e{bottom:53.431200px;}
.ya3{bottom:53.594700px;}
.y16e{bottom:53.596200px;}
.y105{bottom:53.606700px;}
.y102{bottom:53.609700px;}
.y163{bottom:53.611200px;}
.y16b{bottom:53.624700px;}
.y9c{bottom:53.639700px;}
.y168{bottom:53.999700px;}
.y35{bottom:57.426392px;}
.y2b{bottom:66.833700px;}
.y2d{bottom:70.028700px;}
.ye6{bottom:77.594700px;}
.y156{bottom:77.596200px;}
.ybf{bottom:77.609700px;}
.y128{bottom:77.624700px;}
.y34{bottom:77.629200px;}
.y164{bottom:77.639700px;}
.yf7{bottom:77.641200px;}
.y1{bottom:77.766750px;}
.y2a{bottom:89.436000px;}
.ye2{bottom:94.863000px;}
.yb8{bottom:95.463000px;}
.y143{bottom:97.063500px;}
.y11d{bottom:98.662500px;}
.y15e{bottom:99.462000px;}
.y104{bottom:100.863000px;}
.yd5{bottom:101.624700px;}
.y10c{bottom:101.804700px;}
.y5d{bottom:103.659329px;}
.y91{bottom:104.742649px;}
.y145{bottom:105.062700px;}
.y2f{bottom:106.070700px;}
.y2c{bottom:116.663700px;}
.y1b6{bottom:117.266700px;}
.y19f{bottom:117.305700px;}
.y11b{bottom:123.663000px;}
.ye3{bottom:124.063200px;}
.yb9{bottom:124.663200px;}
.y5c{bottom:126.062700px;}
.y2e{bottom:126.662700px;}
.y90{bottom:127.146021px;}
.y106{bottom:130.262700px;}
.y20c{bottom:137.863800px;}
.y1b5{bottom:141.458700px;}
.y19e{bottom:141.497700px;}
.y58{bottom:144.264000px;}
.y15c{bottom:148.464000px;}
.y140{bottom:149.064000px;}
.y8f{bottom:149.745397px;}
.y31{bottom:156.793800px;}
.y1eb{bottom:161.762700px;}
.y20b{bottom:162.076800px;}
.y1b4{bottom:165.650700px;}
.y19d{bottom:165.689700px;}
.y5f{bottom:166.032600px;}
.ydf{bottom:168.060000px;}
.yb6{bottom:168.660000px;}
.y8e{bottom:172.148769px;}
.y11a{bottom:172.665000px;}
.y101{bottom:174.060000px;}
.y29{bottom:184.418700px;}
.y1ea{bottom:185.765700px;}
.y20a{bottom:186.310800px;}
.y1b3{bottom:189.863700px;}
.y19c{bottom:189.902700px;}
.y57{bottom:190.886700px;}
.y8d{bottom:194.552140px;}
.ye1{bottom:197.264700px;}
.y15b{bottom:197.458500px;}
.yb7{bottom:197.864700px;}
.y13e{bottom:198.060000px;}
.y103{bottom:203.459700px;}
.y13f{bottom:206.069700px;}
.y28{bottom:208.610700px;}
.y1e9{bottom:209.768700px;}
.y209{bottom:210.523800px;}
.y1b2{bottom:213.866700px;}
.y19b{bottom:213.905700px;}
.y56{bottom:214.889700px;}
.y8c{bottom:216.955512px;}
.ye0{bottom:221.459700px;}
.y119{bottom:221.670000px;}
.y27{bottom:232.802700px;}
.y1e8{bottom:233.771700px;}
.y208{bottom:234.526800px;}
.y1b1{bottom:238.058700px;}
.y19a{bottom:238.097700px;}
.y55{bottom:239.102700px;}
.y8b{bottom:239.358883px;}
.yb4{bottom:241.860000px;}
.y159{bottom:246.660000px;}
.y100{bottom:247.258500px;}
.y13c{bottom:250.065000px;}
.y26{bottom:257.015700px;}
.y1e7{bottom:257.774700px;}
.y207{bottom:258.718800px;}
.y8a{bottom:261.762255px;}
.y1b0{bottom:262.250700px;}
.y199{bottom:262.289700px;}
.y54{bottom:263.294700px;}
.ydd{bottom:265.470000px;}
.y118{bottom:270.660000px;}
.yb5{bottom:271.064700px;}
.y15a{bottom:275.864700px;}
.y13d{bottom:279.269700px;}
.y25{bottom:281.018700px;}
.y1e6{bottom:281.777700px;}
.y206{bottom:282.910800px;}
.y89{bottom:284.165626px;}
.y1af{bottom:286.463700px;}
.y198{bottom:286.502700px;}
.y53{bottom:287.486700px;}
.yde{bottom:294.659700px;}
.yfe{bottom:296.460000px;}
.y24{bottom:305.252700px;}
.y1e5{bottom:305.780700px;}
.y88{bottom:306.588598px;}
.y205{bottom:307.123800px;}
.y1ae{bottom:310.487700px;}
.y197{bottom:310.526700px;}
.y52{bottom:311.510700px;}
.yb3{bottom:314.895000px;}
.y117{bottom:319.695000px;}
.y13a{bottom:323.295000px;}
.yff{bottom:325.694700px;}
.y87{bottom:328.991970px;}
.y23{bottom:329.444700px;}
.y204{bottom:331.126800px;}
.y13b{bottom:331.289700px;}
.y1ad{bottom:334.679700px;}
.y196{bottom:334.718700px;}
.y51{bottom:335.723700px;}
.ydb{bottom:338.700000px;}
.y86{bottom:351.591346px;}
.y22{bottom:353.657700px;}
.y1e4{bottom:353.786700px;}
.y203{bottom:355.318800px;}
.y1ac{bottom:358.871700px;}
.y195{bottom:358.910700px;}
.y50{bottom:359.915700px;}
.yb2{bottom:364.095000px;}
.ydc{bottom:367.889700px;}
.y115{bottom:368.895000px;}
.yfd{bottom:369.495000px;}
.y85{bottom:373.994718px;}
.y137{bottom:375.090000px;}
.y21{bottom:377.660700px;}
.y1e3{bottom:377.789700px;}
.y202{bottom:379.510800px;}
.y194{bottom:382.514700px;}
.y1ab{bottom:382.874700px;}
.y139{bottom:383.099700px;}
.y4f{bottom:384.107700px;}
.y84{bottom:395.790474px;}
.y116{bottom:398.099700px;}
.y1e2{bottom:401.792700px;}
.y20{bottom:401.852700px;}
.y201{bottom:403.744800px;}
.y193{bottom:406.706700px;}
.y1aa{bottom:407.087700px;}
.y4e{bottom:408.110700px;}
.yd9{bottom:411.900000px;}
.yb1{bottom:413.100000px;}
.y155{bottom:417.898500px;}
.y83{bottom:418.193845px;}
.yfb{bottom:418.695000px;}
.y1e1{bottom:425.795700px;}
.y1f{bottom:426.044700px;}
.y135{bottom:427.093500px;}
.y200{bottom:427.747800px;}
.y1a9{bottom:431.279700px;}
.y192{bottom:431.297700px;}
.y4d{bottom:432.323700px;}
.yda{bottom:441.089700px;}
.y82{bottom:441.204832px;}
.y114{bottom:442.095000px;}
.y158{bottom:447.086700px;}
.yfc{bottom:447.899700px;}
.y1e0{bottom:449.798700px;}
.y1e{bottom:450.257700px;}
.y1ff{bottom:451.939800px;}
.y1a8{bottom:455.471700px;}
.y136{bottom:456.299700px;}
.y4c{bottom:456.515700px;}
.yb0{bottom:462.090000px;}
.y81{bottom:463.608204px;}
.y191{bottom:465.299700px;}
.y157{bottom:471.299700px;}
.y1df{bottom:473.801700px;}
.y1d{bottom:474.260700px;}
.y1fe{bottom:475.753800px;}
.y1a7{bottom:479.474700px;}
.y190{bottom:479.486700px;}
.y4b{bottom:480.707700px;}
.yd4{bottom:485.100000px;}
.y80{bottom:486.011575px;}
.y112{bottom:491.100000px;}
.yf6{bottom:491.893500px;}
.y1c{bottom:498.452700px;}
.y1fd{bottom:499.945800px;}
.y132{bottom:500.295000px;}
.y1a6{bottom:503.687700px;}
.y4a{bottom:504.710700px;}
.y134{bottom:508.289700px;}
.y7f{bottom:508.414947px;}
.y1bd{bottom:510.387000px;}
.yad{bottom:511.095000px;}
.y18f{bottom:513.499411px;}
.yd8{bottom:514.292700px;}
.y153{bottom:515.295000px;}
.y113{bottom:520.334700px;}
.yf9{bottom:521.132700px;}
.y1b{bottom:522.686700px;}
.y1fc{bottom:523.948800px;}
.y18e{bottom:527.921700px;}
.y49{bottom:528.944700px;}
.y7e{bottom:531.053524px;}
.y1bc{bottom:534.579000px;}
.yd7{bottom:538.526700px;}
.yae{bottom:540.524700px;}
.yf8{bottom:545.324700px;}
.y1a{bottom:546.689700px;}
.y1fb{bottom:548.161800px;}
.y18d{bottom:551.735700px;}
.y1a5{bottom:552.134700px;}
.y130{bottom:552.135000px;}
.y48{bottom:553.136700px;}
.y7d{bottom:553.456896px;}
.y1bb{bottom:558.813000px;}
.y131{bottom:560.129700px;}
.yd6{bottom:562.529700px;}
.y111{bottom:564.330000px;}
.y19{bottom:570.881700px;}
.y1fa{bottom:572.353800px;}
.y1ec{bottom:573.307500px;}
.y18c{bottom:575.738700px;}
.y7c{bottom:575.860267px;}
.y1a4{bottom:576.137700px;}
.y172{bottom:577.130700px;}
.y47{bottom:577.349700px;}
.yab{bottom:584.340000px;}
.yf3{bottom:589.140000px;}
.y211{bottom:590.592300px;}
.y152{bottom:593.534700px;}
.y18{bottom:595.073700px;}
.y1f9{bottom:596.356800px;}
.y171{bottom:597.740700px;}
.y7b{bottom:598.263639px;}
.y18b{bottom:599.930700px;}
.y1a3{bottom:600.329700px;}
.y46{bottom:601.352700px;}
.y12e{bottom:604.140000px;}
.yd1{bottom:606.540000px;}
.y110{bottom:613.335000px;}
.y210{bottom:614.595300px;}
.yf5{bottom:618.521700px;}
.y170{bottom:619.124700px;}
.y17{bottom:619.286700px;}
.y1f8{bottom:620.590800px;}
.y7a{bottom:620.667010px;}
.y18a{bottom:624.143700px;}
.y1a2{bottom:624.521700px;}
.y12f{bottom:633.329700px;}
.ya8{bottom:633.540000px;}
.yd3{bottom:635.729700px;}
.y16d{bottom:635.938500px;}
.y150{bottom:637.530000px;}
.y20f{bottom:638.808300px;}
.yf4{bottom:642.734700px;}
.y79{bottom:643.070382px;}
.y16{bottom:643.289700px;}
.y1f7{bottom:644.803800px;}
.y45{bottom:646.544700px;}
.y189{bottom:648.335700px;}
.y1a1{bottom:648.734700px;}
.y20e{bottom:663.000300px;}
.y16f{bottom:665.324700px;}
.y78{bottom:665.473753px;}
.y151{bottom:666.734700px;}
.y15{bottom:667.481700px;}
.y33{bottom:667.625250px;}
.y1f6{bottom:668.995800px;}
.y188{bottom:672.737700px;}
.y12b{bottom:677.340000px;}
.yce{bottom:679.740000px;}
.ya6{bottom:682.530000px;}
.y12d{bottom:685.334700px;}
.yf1{bottom:686.535000px;}
.y20d{bottom:687.192300px;}
.y77{bottom:687.877125px;}
.y14{bottom:691.673700px;}
.y44{bottom:691.736700px;}
.y60{bottom:691.761150px;}
.y1f5{bottom:692.998800px;}
.y187{bottom:696.929700px;}
.yd0{bottom:708.929700px;}
.y16a{bottom:709.140000px;}
.y76{bottom:710.280496px;}
.y14d{bottom:710.728500px;}
.y13{bottom:715.886700px;}
.yf2{bottom:715.934700px;}
.y43{bottom:715.949700px;}
.y1f4{bottom:717.190800px;}
.y186{bottom:721.121700px;}
.y127{bottom:729.135000px;}
.ya5{bottom:731.565000px;}
.y75{bottom:732.919074px;}
.y16c{bottom:738.569700px;}
.y12{bottom:739.910700px;}
.y14f{bottom:739.964700px;}
.y42{bottom:739.973700px;}
.y1f3{bottom:741.403800px;}
.y185{bottom:745.355700px;}
.y1b8{bottom:752.598000px;}
.ycb{bottom:752.968500px;}
.y74{bottom:755.322445px;}
.y12a{bottom:758.561700px;}
.yef{bottom:759.765000px;}
.y11{bottom:763.724700px;}
.y41{bottom:764.165700px;}
.y1f2{bottom:765.595800px;}
.y184{bottom:769.358700px;}
.y73{bottom:777.725817px;}
.y1d1{bottom:780.504000px;}
.ya2{bottom:780.570000px;}
.ycc{bottom:782.159700px;}
.y167{bottom:782.370000px;}
.y129{bottom:782.564700px;}
.y14a{bottom:783.960000px;}
.y10{bottom:787.916700px;}
.y10f{bottom:789.164550px;}
.yf0{bottom:789.164700px;}
.y1f1{bottom:789.598800px;}
.y183{bottom:793.550700px;}
.y72{bottom:800.129188px;}
.y1d0{bottom:804.507000px;}
.y40{bottom:809.378700px;}
.ya4{bottom:809.969700px;}
.y169{bottom:811.769550px;}
.y14c{bottom:813.164700px;}
.y10e{bottom:813.167550px;}
.y1f0{bottom:813.790800px;}
.yf{bottom:816.308700px;}
.y182{bottom:817.763700px;}
.y71{bottom:822.532560px;}
.yc8{bottom:826.170000px;}
.y124{bottom:826.558500px;}
.y1cf{bottom:828.699000px;}
.yed{bottom:832.965000px;}
.y10d{bottom:837.359550px;}
.y1ef{bottom:838.024800px;}
.y181{bottom:841.955700px;}
.ye{bottom:844.322700px;}
.y70{bottom:844.935931px;}
.y1ce{bottom:852.891000px;}
.y9f{bottom:853.770000px;}
.y3f{bottom:854.381700px;}
.y125{bottom:855.764700px;}
.y148{bottom:857.160000px;}
.yee{bottom:862.364700px;}
.y180{bottom:865.958700px;}
.y6f{bottom:867.339303px;}
.yd{bottom:872.126700px;}
.yc5{bottom:875.158500px;}
.y1cd{bottom:877.125000px;}
.y3e{bottom:878.573700px;}
.y10a{bottom:881.368500px;}
.y149{bottom:886.364700px;}
.y6e{bottom:889.742675px;}
.y17f{bottom:890.150700px;}
.y120{bottom:899.760000px;}
.yc{bottom:900.140700px;}
.y1cc{bottom:901.128000px;}
.y9b{bottom:902.760000px;}
.y3d{bottom:902.765700px;}
.yc7{bottom:904.559700px;}
.yeb{bottom:906.165000px;}
.y122{bottom:907.769550px;}
.y6d{bottom:912.146046px;}
.y17e{bottom:914.363700px;}
.y1cb{bottom:925.320000px;}
.y3c{bottom:926.978700px;}
.yb{bottom:928.154700px;}
.y109{bottom:930.360000px;}
.y9d{bottom:932.159700px;}
.y6c{bottom:934.745423px;}
.yec{bottom:935.369700px;}
.y17d{bottom:938.366700px;}
.yc2{bottom:948.390000px;}
.y1ca{bottom:949.134000px;}
.y3b{bottom:951.002700px;}
.y11e{bottom:951.600000px;}
.ya{bottom:956.168700px;}
.y6b{bottom:957.168395px;}
.yc4{bottom:959.594700px;}
.y166{bottom:959.597700px;}
.y17c{bottom:962.600700px;}
.y1c9{bottom:973.326000px;}
.y3a{bottom:975.194700px;}
.y98{bottom:975.988500px;}
.ye9{bottom:979.393500px;}
.y6a{bottom:979.571766px;}
.y165{bottom:983.789700px;}
.y9{bottom:984.182700px;}
.y17b{bottom:986.792700px;}
.y1c8{bottom:997.329000px;}
.y39{bottom:999.386700px;}
.y69{bottom:1001.975138px;}
.ybe{bottom:1003.590000px;}
.yea{bottom:1008.599700px;}
.y1b7{bottom:1010.606700px;}
.y17a{bottom:1011.005700px;}
.y8{bottom:1012.196700px;}
.y1c7{bottom:1021.542000px;}
.y68{bottom:1024.378509px;}
.y94{bottom:1025.190000px;}
.y162{bottom:1027.588500px;}
.y108{bottom:1032.794700px;}
.yc1{bottom:1032.797700px;}
.y179{bottom:1035.008700px;}
.y7{bottom:1040.189700px;}
.y38{bottom:1044.599700px;}
.y1c6{bottom:1045.734000px;}
.y67{bottom:1046.781881px;}
.ye5{bottom:1052.595000px;}
.y96{bottom:1054.394550px;}
.yc0{bottom:1056.989700px;}
.y178{bottom:1059.200700px;}
.y6{bottom:1067.993700px;}
.y66{bottom:1069.185252px;}
.y1c5{bottom:1069.737000px;}
.y107{bottom:1076.790000px;}
.ye8{bottom:1081.802700px;}
.y1a0{bottom:1083.014700px;}
.y177{bottom:1083.392700px;}
.y37{bottom:1089.203700px;}
.y5e{bottom:1089.801600px;}
.y65{bottom:1091.588624px;}
.y1c4{bottom:1093.971000px;}
.y5{bottom:1095.587700px;}
.ybd{bottom:1100.790000px;}
.y93{bottom:1102.799700px;}
.ye7{bottom:1105.994700px;}
.y176{bottom:1107.605700px;}
.y64{bottom:1114.188000px;}
.y1c3{bottom:1118.184000px;}
.y4{bottom:1123.580700px;}
.y32{bottom:1124.452800px;}
.y146{bottom:1125.795000px;}
.y161{bottom:1130.189700px;}
.y175{bottom:1131.608700px;}
.y36{bottom:1134.395700px;}
.y63{bottom:1136.591372px;}
.y92{bottom:1139.603700px;}
.y1c2{bottom:1142.376000px;}
.ybb{bottom:1149.990000px;}
.y3{bottom:1151.594700px;}
.y147{bottom:1154.999700px;}
.y174{bottom:1155.800700px;}
.y62{bottom:1159.033944px;}
.y1c1{bottom:1166.379000px;}
.y160{bottom:1174.035000px;}
.y2{bottom:1179.629700px;}
.y173{bottom:1180.034700px;}
.y61{bottom:1180.829700px;}
.y1c0{bottom:1190.571000px;}
.y1bf{bottom:1214.784000px;}
.y1be{bottom:1238.976000px;}
.h31{height:24.199500px;}
.h48{height:37.772014px;}
.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;}
.h46{height:71.941406px;}
.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;}
.h42{height:73.984500px;}
.h29{height:74.033203px;}
.h41{height:76.040323px;}
.h1f{height:76.952014px;}
.h1d{height:77.012014px;}
.h37{height:77.038576px;}
.h47{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;}
.h4a{height:158.031000px;}
.h49{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.789400px;}
.x1c{left:25.394550px;}
.x17{left:34.395000px;}
.x2{left:63.779400px;}
.x5{left:71.832900px;}
.x30{left:82.868400px;}
.x18{left:85.444500px;}
.x1a{left:93.233400px;}
.x25{left:96.833550px;}
.x9{left:106.429678px;}
.xd{left:107.574750px;}
.x20{left:112.040550px;}
.xe{left:113.265750px;}
.x3{left:116.837400px;}
.x14{left:128.044500px;}
.x28{left:133.440000px;}
.x15{left:135.834000px;}
.x31{left:143.684400px;}
.x2f{left:147.674400px;}
.xa{left:149.106000px;}
.x1f{left:157.232550px;}
.x3d{left:168.474750px;}
.x8{left:173.480250px;}
.x35{left:179.237400px;}
.x2d{left:191.081400px;}
.x33{left:195.260400px;}
.x2b{left:198.494400px;}
.x3e{left:205.371750px;}
.x12{left:211.682495px;}
.x23{left:224.264550px;}
.x37{left:234.981750px;}
.x32{left:250.469400px;}
.x2a{left:257.084400px;}
.x10{left:262.859400px;}
.x34{left:268.466400px;}
.x2e{left:272.708400px;}
.x2c{left:276.089400px;}
.x38{left:281.307750px;}
.x39{left:286.158750px;}
.x1e{left:291.296550px;}
.x36{left:296.448750px;}
.x24{left:315.872550px;}
.x21{left:317.273550px;}
.x3a{left:332.799750px;}
.x3b{left:334.647750px;}
.x3c{left:351.510750px;}
.x27{left:355.284000px;}
.x6{left:372.105000px;}
.x7{left:380.294400px;}
.x11{left:425.308344px;}
.x13{left:433.686000px;}
.xb{left:440.295000px;}
.x22{left:446.507550px;}
.xc{left:467.895000px;}
.xf{left:587.622000px;}
.x19{left:723.375000px;}
.x29{left:761.759400px;}
.x16{left:765.975000px;}
.x26{left:804.045450px;}
.x1d{left:812.408250px;}
.x1{left:820.771050px;}
@media print{
.v2{vertical-align:-34.986667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.880000pt;}
.ls55{letter-spacing:-10.080000pt;}
.ls43{letter-spacing:-8.362667pt;}
.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;}
.ls49{letter-spacing:-0.896000pt;}
.ls56{letter-spacing:-0.821333pt;}
.ls54{letter-spacing:-0.672000pt;}
.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;}
.ls53{letter-spacing:-0.074667pt;}
.ls3e{letter-spacing:-0.059024pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.010667pt;}
.ls37{letter-spacing:0.017733pt;}
.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.288533pt;}
.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;}
.ls4b{letter-spacing:0.448000pt;}
.ls44{letter-spacing:0.522667pt;}
.ls2a{letter-spacing:0.597333pt;}
.ls31{letter-spacing:0.736000pt;}
.ls46{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.194667pt;}
.ls4d{letter-spacing:2.688000pt;}
.ls4a{letter-spacing:3.360000pt;}
.ls23{letter-spacing:4.284400pt;}
.ls48{letter-spacing:4.778667pt;}
.ls1f{letter-spacing:6.197333pt;}
.ls51{letter-spacing:6.944000pt;}
.ls24{letter-spacing:7.108293pt;}
.ls52{letter-spacing:7.616000pt;}
.ls4c{letter-spacing:9.856000pt;}
.ls25{letter-spacing:11.363597pt;}
.ls4f{letter-spacing:14.709333pt;}
.ls36{letter-spacing:17.746554pt;}
.ls47{letter-spacing:19.040000pt;}
.ls3c{letter-spacing:21.866667pt;}
.ls1c{letter-spacing:22.560000pt;}
.ls45{letter-spacing:28.298667pt;}
.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;}
.ls50{letter-spacing:45.994667pt;}
.ls2b{letter-spacing:48.906667pt;}
.ls4e{letter-spacing:53.834667pt;}
.ls10{letter-spacing:2511.003200pt;}
.ws61{word-spacing:-74.666667pt;}
.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;}
.ws62{word-spacing:-18.592000pt;}
.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;}
.ws5e{word-spacing:-18.144000pt;}
.ws4b{word-spacing:-18.069333pt;}
.ws63{word-spacing:-17.994667pt;}
.ws67{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;}
.ws58{word-spacing:-13.280400pt;}
.ws40{word-spacing:-12.469333pt;}
.ws59{word-spacing:-12.088933pt;}
.ws46{word-spacing:-11.363597pt;}
.ws54{word-spacing:-10.304000pt;}
.ws45{word-spacing:-7.108293pt;}
.ws1c{word-spacing:-0.896000pt;}
.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;}
.ws5a{word-spacing:-0.149333pt;}
.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;}
.ws66{word-spacing:0.522667pt;}
.ws5c{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;}
.ws5d{word-spacing:3.136000pt;}
.ws26{word-spacing:3.285333pt;}
.ws20{word-spacing:3.434667pt;}
.ws1b{word-spacing:3.584000pt;}
.ws5f{word-spacing:3.733333pt;}
.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;}
.ws12{word-spacing:6.645333pt;}
.ws13{word-spacing:6.869333pt;}
.ws24{word-spacing:7.541333pt;}
.ws9{word-spacing:7.840000pt;}
.ws3e{word-spacing:9.706667pt;}
.ws65{word-spacing:10.080000pt;}
.ws27{word-spacing:11.872000pt;}
.ws29{word-spacing:13.290667pt;}
.ws5b{word-spacing:14.634667pt;}
.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;}
.ws60{word-spacing:25.610667pt;}
.ws64{word-spacing:25.760000pt;}
.ws18{word-spacing:33.152000pt;}
.ws3c{word-spacing:33.600000pt;}
.ws17{word-spacing:33.898667pt;}
.ws23{word-spacing:43.829333pt;}
.ws57{word-spacing:2392.416533pt;}
.ws4f{word-spacing:2451.333867pt;}
._5a{margin-left:-18.442667pt;}
._32{margin-left:-12.492880pt;}
._33{margin-left:-11.594667pt;}
._56{margin-left:-10.600453pt;}
._3b{margin-left:-9.484880pt;}
._e{margin-left:-8.512000pt;}
._3a{margin-left:-7.093333pt;}
._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.082741pt;}
._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;}
._54{width:45.770667pt;}
._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;}
._53{width:85.941333pt;}
._52{width:86.837333pt;}
._38{width:90.421333pt;}
._39{width:92.437333pt;}
._55{width:102.592000pt;}
._41{width:105.578667pt;}
._50{width:134.997333pt;}
._4c{width:138.730667pt;}
._59{width:265.372800pt;}
._58{width:266.336000pt;}
._57{width:437.621333pt;}
._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;}
.y1ba{bottom:-500.791385pt;}
.y1b9{bottom:-482.833333pt;}
.y1de{bottom:-268.378667pt;}
.y1ee{bottom:-252.603119pt;}
.y1ed{bottom:-234.645067pt;}
.y1dd{bottom:-232.837333pt;}
.y1dc{bottom:-211.501333pt;}
.y1db{bottom:-189.978667pt;}
.y1da{bottom:-168.474667pt;}
.y1d9{bottom:-146.970667pt;}
.y1d8{bottom:-125.634667pt;}
.y1d7{bottom:-104.112000pt;}
.y1d6{bottom:-82.570667pt;}
.y1d5{bottom:-61.048000pt;}
.y1d4{bottom:-39.712000pt;}
.y212{bottom:-20.182400pt;}
.y1d3{bottom:-18.208000pt;}
.y0{bottom:0.000000pt;}
.y1d2{bottom:3.296000pt;}
.y5b{bottom:3.377067pt;}
.yaa{bottom:4.439733pt;}
.yfa{bottom:4.441067pt;}
.yba{bottom:4.445067pt;}
.y123{bottom:4.452933pt;}
.y97{bottom:4.453067pt;}
.y126{bottom:4.454400pt;}
.y154{bottom:4.479733pt;}
.yca{bottom:4.612933pt;}
.ya1{bottom:4.613067pt;}
.ycd{bottom:4.614400pt;}
.y142{bottom:4.618400pt;}
.ye4{bottom:4.622400pt;}
.y15f{bottom:4.623733pt;}
.y9e{bottom:4.626400pt;}
.y9a{bottom:4.627733pt;}
.yaf{bottom:4.653067pt;}
.y59{bottom:19.551733pt;}
.y5a{bottom:21.871733pt;}
.yc9{bottom:25.946267pt;}
.ya9{bottom:25.946400pt;}
.y10b{bottom:25.947733pt;}
.y141{bottom:25.951733pt;}
.y11c{bottom:25.957067pt;}
.ya7{bottom:25.959733pt;}
.ybc{bottom:25.986400pt;}
.yac{bottom:26.119733pt;}
.ya0{bottom:26.133067pt;}
.y99{bottom:26.134400pt;}
.y15d{bottom:26.138400pt;}
.y12c{bottom:28.439733pt;}
.y121{bottom:28.452933pt;}
.y133{bottom:28.479733pt;}
.y11f{bottom:28.613067pt;}
.y144{bottom:28.622400pt;}
.y138{bottom:28.626400pt;}
.yc3{bottom:31.466400pt;}
.y30{bottom:43.579733pt;}
.yd2{bottom:47.453067pt;}
.y14b{bottom:47.466267pt;}
.y95{bottom:47.466400pt;}
.yc6{bottom:47.467733pt;}
.ycf{bottom:47.493067pt;}
.y14e{bottom:47.494400pt;}
.ya3{bottom:47.639733pt;}
.y16e{bottom:47.641067pt;}
.y105{bottom:47.650400pt;}
.y102{bottom:47.653067pt;}
.y163{bottom:47.654400pt;}
.y16b{bottom:47.666400pt;}
.y9c{bottom:47.679733pt;}
.y168{bottom:47.999733pt;}
.y35{bottom:51.045681pt;}
.y2b{bottom:59.407733pt;}
.y2d{bottom:62.247733pt;}
.ye6{bottom:68.973067pt;}
.y156{bottom:68.974400pt;}
.ybf{bottom:68.986400pt;}
.y128{bottom:68.999733pt;}
.y34{bottom:69.003733pt;}
.y164{bottom:69.013067pt;}
.yf7{bottom:69.014400pt;}
.y1{bottom:69.126000pt;}
.y2a{bottom:79.498667pt;}
.ye2{bottom:84.322667pt;}
.yb8{bottom:84.856000pt;}
.y143{bottom:86.278667pt;}
.y11d{bottom:87.700000pt;}
.y15e{bottom:88.410667pt;}
.y104{bottom:89.656000pt;}
.yd5{bottom:90.333067pt;}
.y10c{bottom:90.493067pt;}
.y5d{bottom:92.141625pt;}
.y91{bottom:93.104577pt;}
.y145{bottom:93.389067pt;}
.y2f{bottom:94.285067pt;}
.y2c{bottom:103.701067pt;}
.y1b6{bottom:104.237067pt;}
.y19f{bottom:104.271733pt;}
.y11b{bottom:109.922667pt;}
.ye3{bottom:110.278400pt;}
.yb9{bottom:110.811733pt;}
.y5c{bottom:112.055733pt;}
.y2e{bottom:112.589067pt;}
.y90{bottom:113.018685pt;}
.y106{bottom:115.789067pt;}
.y20c{bottom:122.545600pt;}
.y1b5{bottom:125.741067pt;}
.y19e{bottom:125.775733pt;}
.y58{bottom:128.234667pt;}
.y15c{bottom:131.968000pt;}
.y140{bottom:132.501333pt;}
.y8f{bottom:133.107020pt;}
.y31{bottom:139.372267pt;}
.y1eb{bottom:143.789067pt;}
.y20b{bottom:144.068267pt;}
.y1b4{bottom:147.245067pt;}
.y19d{bottom:147.279733pt;}
.y5f{bottom:147.584533pt;}
.ydf{bottom:149.386667pt;}
.yb6{bottom:149.920000pt;}
.y8e{bottom:153.021128pt;}
.y11a{bottom:153.480000pt;}
.y101{bottom:154.720000pt;}
.y29{bottom:163.927733pt;}
.y1ea{bottom:165.125067pt;}
.y20a{bottom:165.609600pt;}
.y1b3{bottom:168.767733pt;}
.y19c{bottom:168.802400pt;}
.y57{bottom:169.677067pt;}
.y8d{bottom:172.935236pt;}
.ye1{bottom:175.346400pt;}
.y15b{bottom:175.518667pt;}
.yb7{bottom:175.879733pt;}
.y13e{bottom:176.053333pt;}
.y103{bottom:180.853067pt;}
.y13f{bottom:183.173067pt;}
.y28{bottom:185.431733pt;}
.y1e9{bottom:186.461067pt;}
.y209{bottom:187.132267pt;}
.y1b2{bottom:190.103733pt;}
.y19b{bottom:190.138400pt;}
.y56{bottom:191.013067pt;}
.y8c{bottom:192.849344pt;}
.ye0{bottom:196.853067pt;}
.y119{bottom:197.040000pt;}
.y27{bottom:206.935733pt;}
.y1e8{bottom:207.797067pt;}
.y208{bottom:208.468267pt;}
.y1b1{bottom:211.607733pt;}
.y19a{bottom:211.642400pt;}
.y55{bottom:212.535733pt;}
.y8b{bottom:212.763452pt;}
.yb4{bottom:214.986667pt;}
.y159{bottom:219.253333pt;}
.y100{bottom:219.785333pt;}
.y13c{bottom:222.280000pt;}
.y26{bottom:228.458400pt;}
.y1e7{bottom:229.133067pt;}
.y207{bottom:229.972267pt;}
.y8a{bottom:232.677560pt;}
.y1b0{bottom:233.111733pt;}
.y199{bottom:233.146400pt;}
.y54{bottom:234.039733pt;}
.ydd{bottom:235.973333pt;}
.y118{bottom:240.586667pt;}
.yb5{bottom:240.946400pt;}
.y15a{bottom:245.213067pt;}
.y13d{bottom:248.239733pt;}
.y25{bottom:249.794400pt;}
.y1e6{bottom:250.469067pt;}
.y206{bottom:251.476267pt;}
.y89{bottom:252.591668pt;}
.y1af{bottom:254.634400pt;}
.y198{bottom:254.669067pt;}
.y53{bottom:255.543733pt;}
.yde{bottom:261.919733pt;}
.yfe{bottom:263.520000pt;}
.y24{bottom:271.335733pt;}
.y1e5{bottom:271.805067pt;}
.y88{bottom:272.523199pt;}
.y205{bottom:272.998933pt;}
.y1ae{bottom:275.989067pt;}
.y197{bottom:276.023733pt;}
.y52{bottom:276.898400pt;}
.yb3{bottom:279.906667pt;}
.y117{bottom:284.173333pt;}
.y13a{bottom:287.373333pt;}
.yff{bottom:289.506400pt;}
.y87{bottom:292.437307pt;}
.y23{bottom:292.839733pt;}
.y204{bottom:294.334933pt;}
.y13b{bottom:294.479733pt;}
.y1ad{bottom:297.493067pt;}
.y196{bottom:297.527733pt;}
.y51{bottom:298.421067pt;}
.ydb{bottom:301.066667pt;}
.y86{bottom:312.525641pt;}
.y22{bottom:314.362400pt;}
.y1e4{bottom:314.477067pt;}
.y203{bottom:315.838933pt;}
.y1ac{bottom:318.997067pt;}
.y195{bottom:319.031733pt;}
.y50{bottom:319.925067pt;}
.yb2{bottom:323.640000pt;}
.ydc{bottom:327.013067pt;}
.y115{bottom:327.906667pt;}
.yfd{bottom:328.440000pt;}
.y85{bottom:332.439749pt;}
.y137{bottom:333.413333pt;}
.y21{bottom:335.698400pt;}
.y1e3{bottom:335.813067pt;}
.y202{bottom:337.342933pt;}
.y194{bottom:340.013067pt;}
.y1ab{bottom:340.333067pt;}
.y139{bottom:340.533067pt;}
.y4f{bottom:341.429067pt;}
.y84{bottom:351.813755pt;}
.y116{bottom:353.866400pt;}
.y1e2{bottom:357.149067pt;}
.y20{bottom:357.202400pt;}
.y201{bottom:358.884267pt;}
.y193{bottom:361.517067pt;}
.y1aa{bottom:361.855733pt;}
.y4e{bottom:362.765067pt;}
.yd9{bottom:366.133333pt;}
.yb1{bottom:367.200000pt;}
.y155{bottom:371.465333pt;}
.y83{bottom:371.727863pt;}
.yfb{bottom:372.173333pt;}
.y1e1{bottom:378.485067pt;}
.y1f{bottom:378.706400pt;}
.y135{bottom:379.638667pt;}
.y200{bottom:380.220267pt;}
.y1a9{bottom:383.359733pt;}
.y192{bottom:383.375733pt;}
.y4d{bottom:384.287733pt;}
.yda{bottom:392.079733pt;}
.y82{bottom:392.182073pt;}
.y114{bottom:392.973333pt;}
.y158{bottom:397.410400pt;}
.yfc{bottom:398.133067pt;}
.y1e0{bottom:399.821067pt;}
.y1e{bottom:400.229067pt;}
.y1ff{bottom:401.724267pt;}
.y1a8{bottom:404.863733pt;}
.y136{bottom:405.599733pt;}
.y4c{bottom:405.791733pt;}
.yb0{bottom:410.746667pt;}
.y81{bottom:412.096181pt;}
.y191{bottom:413.599733pt;}
.y157{bottom:418.933067pt;}
.y1df{bottom:421.157067pt;}
.y1d{bottom:421.565067pt;}
.y1fe{bottom:422.892267pt;}
.y1a7{bottom:426.199733pt;}
.y190{bottom:426.210400pt;}
.y4b{bottom:427.295733pt;}
.yd4{bottom:431.200000pt;}
.y80{bottom:432.010289pt;}
.y112{bottom:436.533333pt;}
.yf6{bottom:437.238667pt;}
.y1c{bottom:443.069067pt;}
.y1fd{bottom:444.396267pt;}
.y132{bottom:444.706667pt;}
.y1a6{bottom:447.722400pt;}
.y4a{bottom:448.631733pt;}
.y134{bottom:451.813067pt;}
.y7f{bottom:451.924397pt;}
.y1bd{bottom:453.677333pt;}
.yad{bottom:454.306667pt;}
.y18f{bottom:456.443921pt;}
.yd8{bottom:457.149067pt;}
.y153{bottom:458.040000pt;}
.y113{bottom:462.519733pt;}
.yf9{bottom:463.229067pt;}
.y1b{bottom:464.610400pt;}
.y1fc{bottom:465.732267pt;}
.y18e{bottom:469.263733pt;}
.y49{bottom:470.173067pt;}
.y7e{bottom:472.047577pt;}
.y1bc{bottom:475.181333pt;}
.yd7{bottom:478.690400pt;}
.yae{bottom:480.466400pt;}
.yf8{bottom:484.733067pt;}
.y1a{bottom:485.946400pt;}
.y1fb{bottom:487.254933pt;}
.y18d{bottom:490.431733pt;}
.y1a5{bottom:490.786400pt;}
.y130{bottom:490.786667pt;}
.y48{bottom:491.677067pt;}
.y7d{bottom:491.961685pt;}
.y1bb{bottom:496.722667pt;}
.y131{bottom:497.893067pt;}
.yd6{bottom:500.026400pt;}
.y111{bottom:501.626667pt;}
.y19{bottom:507.450400pt;}
.y1fa{bottom:508.758933pt;}
.y1ec{bottom:509.606667pt;}
.y18c{bottom:511.767733pt;}
.y7c{bottom:511.875793pt;}
.y1a4{bottom:512.122400pt;}
.y172{bottom:513.005067pt;}
.y47{bottom:513.199733pt;}
.yab{bottom:519.413333pt;}
.yf3{bottom:523.680000pt;}
.y211{bottom:524.970933pt;}
.y152{bottom:527.586400pt;}
.y18{bottom:528.954400pt;}
.y1f9{bottom:530.094933pt;}
.y171{bottom:531.325067pt;}
.y7b{bottom:531.789901pt;}
.y18b{bottom:533.271733pt;}
.y1a3{bottom:533.626400pt;}
.y46{bottom:534.535733pt;}
.y12e{bottom:537.013333pt;}
.yd1{bottom:539.146667pt;}
.y110{bottom:545.186667pt;}
.y210{bottom:546.306933pt;}
.yf5{bottom:549.797067pt;}
.y170{bottom:550.333067pt;}
.y17{bottom:550.477067pt;}
.y1f8{bottom:551.636267pt;}
.y7a{bottom:551.704009pt;}
.y18a{bottom:554.794400pt;}
.y1a2{bottom:555.130400pt;}
.y12f{bottom:562.959733pt;}
.ya8{bottom:563.146667pt;}
.yd3{bottom:565.093067pt;}
.y16d{bottom:565.278667pt;}
.y150{bottom:566.693333pt;}
.y20f{bottom:567.829600pt;}
.yf4{bottom:571.319733pt;}
.y79{bottom:571.618117pt;}
.y16{bottom:571.813067pt;}
.y1f7{bottom:573.158933pt;}
.y45{bottom:574.706400pt;}
.y189{bottom:576.298400pt;}
.y1a1{bottom:576.653067pt;}
.y20e{bottom:589.333600pt;}
.y16f{bottom:591.399733pt;}
.y78{bottom:591.532225pt;}
.y151{bottom:592.653067pt;}
.y15{bottom:593.317067pt;}
.y33{bottom:593.444667pt;}
.y1f6{bottom:594.662933pt;}
.y188{bottom:597.989067pt;}
.y12b{bottom:602.080000pt;}
.yce{bottom:604.213333pt;}
.ya6{bottom:606.693333pt;}
.y12d{bottom:609.186400pt;}
.yf1{bottom:610.253333pt;}
.y20d{bottom:610.837600pt;}
.y77{bottom:611.446333pt;}
.y14{bottom:614.821067pt;}
.y44{bottom:614.877067pt;}
.y60{bottom:614.898800pt;}
.y1f5{bottom:615.998933pt;}
.y187{bottom:619.493067pt;}
.yd0{bottom:630.159733pt;}
.y16a{bottom:630.346667pt;}
.y76{bottom:631.360441pt;}
.y14d{bottom:631.758667pt;}
.y13{bottom:636.343733pt;}
.yf2{bottom:636.386400pt;}
.y43{bottom:636.399733pt;}
.y1f4{bottom:637.502933pt;}
.y186{bottom:640.997067pt;}
.y127{bottom:648.120000pt;}
.ya5{bottom:650.280000pt;}
.y75{bottom:651.483621pt;}
.y16c{bottom:656.506400pt;}
.y12{bottom:657.698400pt;}
.y14f{bottom:657.746400pt;}
.y42{bottom:657.754400pt;}
.y1f3{bottom:659.025600pt;}
.y185{bottom:662.538400pt;}
.y1b8{bottom:668.976000pt;}
.ycb{bottom:669.305333pt;}
.y74{bottom:671.397729pt;}
.y12a{bottom:674.277067pt;}
.yef{bottom:675.346667pt;}
.y11{bottom:678.866400pt;}
.y41{bottom:679.258400pt;}
.y1f2{bottom:680.529600pt;}
.y184{bottom:683.874400pt;}
.y73{bottom:691.311837pt;}
.y1d1{bottom:693.781333pt;}
.ya2{bottom:693.840000pt;}
.ycc{bottom:695.253067pt;}
.y167{bottom:695.440000pt;}
.y129{bottom:695.613067pt;}
.y14a{bottom:696.853333pt;}
.y10{bottom:700.370400pt;}
.y10f{bottom:701.479600pt;}
.yf0{bottom:701.479733pt;}
.y1f1{bottom:701.865600pt;}
.y183{bottom:705.378400pt;}
.y72{bottom:711.225945pt;}
.y1d0{bottom:715.117333pt;}
.y40{bottom:719.447733pt;}
.ya4{bottom:719.973067pt;}
.y169{bottom:721.572933pt;}
.y14c{bottom:722.813067pt;}
.y10e{bottom:722.815600pt;}
.y1f0{bottom:723.369600pt;}
.yf{bottom:725.607733pt;}
.y182{bottom:726.901067pt;}
.y71{bottom:731.140053pt;}
.yc8{bottom:734.373333pt;}
.y124{bottom:734.718667pt;}
.y1cf{bottom:736.621333pt;}
.yed{bottom:740.413333pt;}
.y10d{bottom:744.319600pt;}
.y1ef{bottom:744.910933pt;}
.y181{bottom:748.405067pt;}
.ye{bottom:750.509067pt;}
.y70{bottom:751.054161pt;}
.y1ce{bottom:758.125333pt;}
.y9f{bottom:758.906667pt;}
.y3f{bottom:759.450400pt;}
.y125{bottom:760.679733pt;}
.y148{bottom:761.920000pt;}
.yee{bottom:766.546400pt;}
.y180{bottom:769.741067pt;}
.y6f{bottom:770.968269pt;}
.yd{bottom:775.223733pt;}
.yc5{bottom:777.918667pt;}
.y1cd{bottom:779.666667pt;}
.y3e{bottom:780.954400pt;}
.y10a{bottom:783.438667pt;}
.y149{bottom:787.879733pt;}
.y6e{bottom:790.882377pt;}
.y17f{bottom:791.245067pt;}
.y120{bottom:799.786667pt;}
.yc{bottom:800.125067pt;}
.y1cc{bottom:801.002667pt;}
.y9b{bottom:802.453333pt;}
.y3d{bottom:802.458400pt;}
.yc7{bottom:804.053067pt;}
.yeb{bottom:805.480000pt;}
.y122{bottom:806.906267pt;}
.y6d{bottom:810.796485pt;}
.y17e{bottom:812.767733pt;}
.y1cb{bottom:822.506667pt;}
.y3c{bottom:823.981067pt;}
.yb{bottom:825.026400pt;}
.y109{bottom:826.986667pt;}
.y9d{bottom:828.586400pt;}
.y6c{bottom:830.884820pt;}
.yec{bottom:831.439733pt;}
.y17d{bottom:834.103733pt;}
.yc2{bottom:843.013333pt;}
.y1ca{bottom:843.674667pt;}
.y3b{bottom:845.335733pt;}
.y11e{bottom:845.866667pt;}
.ya{bottom:849.927733pt;}
.y6b{bottom:850.816351pt;}
.yc4{bottom:852.973067pt;}
.y166{bottom:852.975733pt;}
.y17c{bottom:855.645067pt;}
.y1c9{bottom:865.178667pt;}
.y3a{bottom:866.839733pt;}
.y98{bottom:867.545333pt;}
.ye9{bottom:870.572000pt;}
.y6a{bottom:870.730459pt;}
.y165{bottom:874.479733pt;}
.y9{bottom:874.829067pt;}
.y17b{bottom:877.149067pt;}
.y1c8{bottom:886.514667pt;}
.y39{bottom:888.343733pt;}
.y69{bottom:890.644567pt;}
.ybe{bottom:892.080000pt;}
.yea{bottom:896.533067pt;}
.y1b7{bottom:898.317067pt;}
.y17a{bottom:898.671733pt;}
.y8{bottom:899.730400pt;}
.y1c7{bottom:908.037333pt;}
.y68{bottom:910.558675pt;}
.y94{bottom:911.280000pt;}
.y162{bottom:913.412000pt;}
.y108{bottom:918.039733pt;}
.yc1{bottom:918.042400pt;}
.y179{bottom:920.007733pt;}
.y7{bottom:924.613067pt;}
.y38{bottom:928.533067pt;}
.y1c6{bottom:929.541333pt;}
.y67{bottom:930.472783pt;}
.ye5{bottom:935.640000pt;}
.y96{bottom:937.239600pt;}
.yc0{bottom:939.546400pt;}
.y178{bottom:941.511733pt;}
.y6{bottom:949.327733pt;}
.y66{bottom:950.386891pt;}
.y1c5{bottom:950.877333pt;}
.y107{bottom:957.146667pt;}
.ye8{bottom:961.602400pt;}
.y1a0{bottom:962.679733pt;}
.y177{bottom:963.015733pt;}
.y37{bottom:968.181067pt;}
.y5e{bottom:968.712533pt;}
.y65{bottom:970.300999pt;}
.y1c4{bottom:972.418667pt;}
.y5{bottom:973.855733pt;}
.ybd{bottom:978.480000pt;}
.y93{bottom:980.266400pt;}
.ye7{bottom:983.106400pt;}
.y176{bottom:984.538400pt;}
.y64{bottom:990.389333pt;}
.y1c3{bottom:993.941333pt;}
.y4{bottom:998.738400pt;}
.y32{bottom:999.513600pt;}
.y146{bottom:1000.706667pt;}
.y161{bottom:1004.613067pt;}
.y175{bottom:1005.874400pt;}
.y36{bottom:1008.351733pt;}
.y63{bottom:1010.303441pt;}
.y92{bottom:1012.981067pt;}
.y1c2{bottom:1015.445333pt;}
.ybb{bottom:1022.213333pt;}
.y3{bottom:1023.639733pt;}
.y147{bottom:1026.666400pt;}
.y174{bottom:1027.378400pt;}
.y62{bottom:1030.252395pt;}
.y1c1{bottom:1036.781333pt;}
.y160{bottom:1043.586667pt;}
.y2{bottom:1048.559733pt;}
.y173{bottom:1048.919733pt;}
.y61{bottom:1049.626400pt;}
.y1c0{bottom:1058.285333pt;}
.y1bf{bottom:1079.808000pt;}
.y1be{bottom:1101.312000pt;}
.h31{height:21.510667pt;}
.h48{height:33.575123pt;}
.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;}
.h46{height:63.947917pt;}
.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;}
.h42{height:65.764000pt;}
.h29{height:65.807292pt;}
.h41{height:67.591398pt;}
.h1f{height:68.401790pt;}
.h1d{height:68.455123pt;}
.h37{height:68.478735pt;}
.h47{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;}
.h4a{height:140.472000pt;}
.h49{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.146133pt;}
.x1c{left:22.572933pt;}
.x17{left:30.573333pt;}
.x2{left:56.692800pt;}
.x5{left:63.851467pt;}
.x30{left:73.660800pt;}
.x18{left:75.950667pt;}
.x1a{left:82.874133pt;}
.x25{left:86.074267pt;}
.x9{left:94.604159pt;}
.xd{left:95.622000pt;}
.x20{left:99.591600pt;}
.xe{left:100.680667pt;}
.x3{left:103.855467pt;}
.x14{left:113.817333pt;}
.x28{left:118.613333pt;}
.x15{left:120.741333pt;}
.x31{left:127.719467pt;}
.x2f{left:131.266133pt;}
.xa{left:132.538667pt;}
.x1f{left:139.762267pt;}
.x3d{left:149.755333pt;}
.x8{left:154.204667pt;}
.x35{left:159.322133pt;}
.x2d{left:169.850133pt;}
.x33{left:173.564800pt;}
.x2b{left:176.439467pt;}
.x3e{left:182.552667pt;}
.x12{left:188.162217pt;}
.x23{left:199.346267pt;}
.x37{left:208.872667pt;}
.x32{left:222.639467pt;}
.x2a{left:228.519467pt;}
.x10{left:233.652800pt;}
.x34{left:238.636800pt;}
.x2e{left:242.407467pt;}
.x2c{left:245.412800pt;}
.x38{left:250.051333pt;}
.x39{left:254.363333pt;}
.x1e{left:258.930267pt;}
.x36{left:263.510000pt;}
.x24{left:280.775600pt;}
.x21{left:282.020933pt;}
.x3a{left:295.822000pt;}
.x3b{left:297.464667pt;}
.x3c{left:312.454000pt;}
.x27{left:315.808000pt;}
.x6{left:330.760000pt;}
.x7{left:338.039467pt;}
.x11{left:378.051861pt;}
.x13{left:385.498667pt;}
.xb{left:391.373333pt;}
.x22{left:396.895600pt;}
.xc{left:415.906667pt;}
.xf{left:522.330667pt;}
.x19{left:643.000000pt;}
.x29{left:677.119467pt;}
.x16{left:680.866667pt;}
.x26{left:714.707067pt;}
.x1d{left:722.140667pt;}
.x1{left:729.574267pt;}
}




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