
    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_07815bdfc16ecf77c35b4b08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.865000;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965500;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_d0a53b45f6dd5174cf888118.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943848;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_37b5f989321c98f4cf414cb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_c6fdaf7ae184b2762f835261.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108398;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_565b8bb997a7f222bb0800ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_03ff06be7c204703d509f140.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_d0e3f5f24363739910251405.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928223;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_22f3feb2a48e1debd7ec7fb0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.965500;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_c170bc66a43bfc9ee1abed57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.731445;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_a5e610894e96740f7c8d9e8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.108398;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_d9bcdbd59070b3a7f9b28491.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;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_acad119837262d852c6610e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940918;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_03ff06be7c204703d509f140.woff2')format("woff");}.fff{font-family:fff;line-height:0.729000;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.965500;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_2c5009751655040f59e223b1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.731445;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_4dcdb6890c2825d2b7a221d9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.191895;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_2de2deae039a60516835590c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.720000;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_b983b6d1f76998b2eae79563.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.974609;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.965500;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_01ff03c78af2820c43d366fe.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.731445;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_9bb937531c01219f872c6830.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.191895;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_3e8ebc80a73093ed6ef69d77.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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_2de2deae039a60516835590c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.720000;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_b54842d2c9f87d5fe96048c9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.928223;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.965500;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_22bae0a72fc77be5c7dfb777.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.731445;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_96c9c98508ec5fa7bf5e03c1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.191895;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_2de2deae039a60516835590c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.720000;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_de70f4b8b540f053edf4eba7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.113281;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_8091dff3dd7217f8f4cddc06.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.940918;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_c481715a38f9d77f884f0fcb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_57a192b627078bf33d795019.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.727539;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.965500;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_75ef1a18a1b533016589b9c6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.731445;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_5af217fa0a496787ab192e77.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.191895;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_488904687b726a44c6769815.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;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_b5ccfb12e1921a4c5d80e69f.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.913574;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_2de2deae039a60516835590c.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.720000;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_22f3feb2a48e1debd7ec7fb0.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.965500;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_c175f00465b1eddc922a6e34.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.731445;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_699d37c9848233471193d033.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.191895;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_2fa000cba7560cde65a8845d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;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_9c84f2c17e64d1a2bd0789c1.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.728027;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_2de2deae039a60516835590c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.720000;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.965500;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_3fd5e16e48fc983c642df622.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.731445;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_69b5493a8e663173a27d8465.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.108398;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_b5b9676b7e8917f1526a3ebb.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.925293;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.965500;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_4be3c29bb7c26fe0e459f374.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.731445;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_1f30851d08effd09b621b44a.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.163574;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_a5bbfce30faa454419efa444.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.729000;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_3987c0a2b9c7a7c536b0d434.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.799805;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_df90484b915ce9ab442da581.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.013000;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.965500;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_68814c61255f94b6e557f5f9.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.731445;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_3a28fef1b9c5a08e7fda16be.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.108398;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_94e13feece5d3711cf6a8933.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938477;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.965500;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_ead207cbfcb01859cb1581ab.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.731445;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_62eee97bbb3aa692be2b6ffa.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.965500;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;}
.m2{transform:matrix(0.249998,0.001000,-0.001000,0.249998,0,0);-ms-transform:matrix(0.249998,0.001000,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.249998,0.001000,-0.001000,0.249998,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v1{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.499998px;}
.v3{vertical-align:135.000022px;}
.va{vertical-align:148.500022px;}
.v7{vertical-align:175.500001px;}
.v2{vertical-align:189.000031px;}
.v9{vertical-align:202.500630px;}
.v6{vertical-align:216.000033px;}
.v5{vertical-align:297.000049px;}
.v8{vertical-align:324.000053px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.795956px;}
.ls7{letter-spacing:457.396875px;}
.ls8{letter-spacing:468.909072px;}
.lsa{letter-spacing:671.414510px;}
.ls9{letter-spacing:673.523405px;}
.ls4{letter-spacing:676.560711px;}
.ls5{letter-spacing:712.975617px;}
.ls6{letter-spacing:727.312412px;}
.lsc{letter-spacing:957.234743px;}
.ls2{letter-spacing:981.289143px;}
.ls3{letter-spacing:1001.749143px;}
.lsd{letter-spacing:1157.583173px;}
.lsb{letter-spacing:1177.118770px;}
.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;}
}
.ws6{word-spacing:-93.768314px;}
.ws7{word-spacing:-93.768311px;}
.ws5{word-spacing:-86.266859px;}
.ws3{word-spacing:-86.266846px;}
.ws2{word-spacing:-86.266839px;}
.ws4{word-spacing:-86.266835px;}
.ws0{word-spacing:-41.688000px;}
.wsb{word-spacing:-41.687998px;}
.ws9{word-spacing:-0.486000px;}
.ws8{word-spacing:-0.337500px;}
.wsa{word-spacing:-0.310500px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-64.452025px;}
._31{margin-left:-36.174444px;}
._1b{margin-left:-29.055955px;}
._1d{margin-left:-26.989358px;}
._0{margin-left:-22.033297px;}
._2{margin-left:-18.471889px;}
._1c{margin-left:-10.289403px;}
._4f{margin-left:-9.069408px;}
._4{margin-left:-7.776000px;}
._51{margin-left:-6.700638px;}
._6{margin-left:-5.594832px;}
._3{margin-left:-3.677184px;}
._5{margin-left:-2.430000px;}
._1{margin-left:-1.092960px;}
._39{width:3.434264px;}
._32{width:4.492936px;}
._19{width:6.645942px;}
._16{width:8.467366px;}
._1a{width:9.664592px;}
._37{width:11.618324px;}
._e{width:13.493398px;}
._24{width:15.323796px;}
._25{width:16.725393px;}
._36{width:17.802696px;}
._26{width:18.829261px;}
._2a{width:20.176451px;}
._22{width:21.493431px;}
._50{width:25.282785px;}
._10{width:26.943327px;}
._47{width:28.126952px;}
._30{width:29.197868px;}
._23{width:31.655066px;}
._44{width:33.628500px;}
._45{width:35.145900px;}
._46{width:36.242100px;}
._4a{width:37.950151px;}
._11{width:40.368755px;}
._35{width:43.880552px;}
._38{width:45.200295px;}
._3f{width:51.286500px;}
._52{width:52.516133px;}
._b{width:53.644399px;}
._15{width:54.900327px;}
._2d{width:56.501678px;}
._a{width:57.904209px;}
._c{width:59.678292px;}
._7{width:61.395165px;}
._48{width:65.655846px;}
._21{width:67.906457px;}
._12{width:71.945644px;}
._2b{width:73.164651px;}
._1f{width:74.340532px;}
._13{width:77.565300px;}
._20{width:78.931980px;}
._4e{width:82.530913px;}
._2c{width:83.899884px;}
._33{width:93.877221px;}
._18{width:95.103975px;}
._17{width:96.317099px;}
._29{width:107.929731px;}
._28{width:110.513871px;}
._27{width:112.392928px;}
._8{width:113.428082px;}
._9{width:114.681434px;}
._54{width:121.500018px;}
._3d{width:123.637051px;}
._34{width:128.294605px;}
._14{width:130.019700px;}
._4c{width:134.893332px;}
._49{width:141.696054px;}
._4d{width:143.255695px;}
._40{width:148.383901px;}
._3e{width:158.616901px;}
._d{width:161.895966px;}
._41{width:168.461604px;}
._4b{width:188.943317px;}
._3a{width:207.783902px;}
._3b{width:215.921287px;}
._3c{width:229.330593px;}
._53{width:265.388703px;}
._2f{width:266.468308px;}
._43{width:317.224353px;}
._2e{width:319.492443px;}
._42{width:344.403903px;}
._f{width:1757.496348px;}
.fc12{color:rgb(87,157,11);}
.fcf{color:rgb(192,12,66);}
.fce{color:rgb(229,147,11);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc10{color:rgb(200,17,72);}
.fc5{color:rgb(76,140,220);}
.fc14{color:rgb(134,134,134);}
.fcd{color:rgb(215,136,4);}
.fc2{color:rgb(65,117,5);}
.fc3{color:rgb(98,140,49);}
.fc4{color:rgb(245,166,35);}
.fc7{color:transparent;}
.fc6{color:rgb(235,79,98);}
.fc8{color:rgb(30,51,146);}
.fc11{color:rgb(74,144,226);}
.fca{color:rgb(109,16,16);}
.fc13{color:rgb(42,133,240);}
.fc9{color:rgb(117,163,226);}
.fcb{color:rgb(198,218,246);}
.fcc{color:rgb(47,83,6);}
.fsf{font-size:168.000000px;}
.fs48{font-size:215.999990px;}
.fs1{font-size:216.000002px;}
.fs3{font-size:243.000002px;}
.fs19{font-size:269.999995px;}
.fs14{font-size:269.999997px;}
.fs27{font-size:310.499963px;}
.fs37{font-size:310.499966px;}
.fs8{font-size:310.499976px;}
.fs5{font-size:310.499983px;}
.fs16{font-size:310.499994px;}
.fs12{font-size:310.499996px;}
.fs3b{font-size:310.500000px;}
.fsa{font-size:310.500002px;}
.fsd{font-size:310.500047px;}
.fs2c{font-size:310.500048px;}
.fs29{font-size:310.500051px;}
.fs2{font-size:323.999968px;}
.fs42{font-size:327.509936px;}
.fs21{font-size:337.499868px;}
.fs41{font-size:337.499934px;}
.fs38{font-size:337.499963px;}
.fs35{font-size:337.499990px;}
.fs39{font-size:337.500000px;}
.fs2e{font-size:337.500003px;}
.fs32{font-size:337.500010px;}
.fs2d{font-size:337.500015px;}
.fs44{font-size:337.500050px;}
.fs3c{font-size:337.500055px;}
.fs47{font-size:337.500063px;}
.fs2f{font-size:337.502703px;}
.fs18{font-size:350.999993px;}
.fs13{font-size:350.999996px;}
.fs1c{font-size:351.000003px;}
.fs4a{font-size:364.499973px;}
.fs40{font-size:377.999926px;}
.fs43{font-size:378.000057px;}
.fs1f{font-size:378.000062px;}
.fs46{font-size:378.000071px;}
.fs17{font-size:391.499993px;}
.fsb{font-size:391.500003px;}
.fs11{font-size:391.500043px;}
.fse{font-size:391.500059px;}
.fs26{font-size:431.999948px;}
.fs3d{font-size:431.999976px;}
.fs22{font-size:432.000003px;}
.fs20{font-size:432.000071px;}
.fs7{font-size:435.509976px;}
.fs34{font-size:485.999986px;}
.fs30{font-size:486.000015px;}
.fs2b{font-size:486.000075px;}
.fs28{font-size:486.000080px;}
.fs36{font-size:580.500005px;}
.fs0{font-size:634.500031px;}
.fs3e{font-size:648.000005px;}
.fs3f{font-size:674.999868px;}
.fs24{font-size:674.999919px;}
.fs9{font-size:674.999949px;}
.fs6{font-size:674.999962px;}
.fs33{font-size:674.999980px;}
.fs1a{font-size:674.999987px;}
.fs15{font-size:674.999992px;}
.fs3a{font-size:674.999999px;}
.fs1b{font-size:675.000005px;}
.fs31{font-size:675.000021px;}
.fsc{font-size:675.000102px;}
.fs2a{font-size:675.000104px;}
.fs1e{font-size:675.000111px;}
.fs45{font-size:675.000126px;}
.fs25{font-size:701.999915px;}
.fs23{font-size:702.000006px;}
.fs10{font-size:756.000006px;}
.fs1d{font-size:783.000006px;}
.fs49{font-size:810.000006px;}
.fs4{font-size:891.000007px;}
.y0{bottom:0.000000px;}
.y2e{bottom:8.347427px;}
.yd2{bottom:9.847427px;}
.y2f{bottom:15.792000px;}
.y107{bottom:33.749926px;}
.yd6{bottom:60.749958px;}
.y91{bottom:70.874914px;}
.yb4{bottom:77.625060px;}
.y14{bottom:91.124900px;}
.y49{bottom:91.125617px;}
.y11e{bottom:97.379643px;}
.yd1{bottom:97.694860px;}
.y2d{bottom:97.875010px;}
.y6a{bottom:104.129860px;}
.ya8{bottom:107.190010px;}
.y6{bottom:107.819860px;}
.y68{bottom:108.000553px;}
.y8e{bottom:110.430160px;}
.yfd{bottom:110.565010px;}
.y5a{bottom:111.374881px;}
.y20{bottom:111.375029px;}
.y60{bottom:113.940010px;}
.yab{bottom:114.749933px;}
.y100{bottom:114.750034px;}
.y83{bottom:118.124900px;}
.yfb{bottom:118.125404px;}
.y26{bottom:118.125497px;}
.yf0{bottom:121.499843px;}
.y32{bottom:128.249977px;}
.y121{bottom:128.250031px;}
.y19{bottom:128.250172px;}
.y6d{bottom:131.624968px;}
.y3c{bottom:131.626221px;}
.y2a{bottom:141.750388px;}
.y48{bottom:158.625616px;}
.y63{bottom:162.000032px;}
.y11d{bottom:171.629639px;}
.yd0{bottom:171.944860px;}
.y2c{bottom:172.125010px;}
.y69{bottom:178.379860px;}
.ya7{bottom:181.440010px;}
.y5{bottom:182.069860px;}
.y8d{bottom:184.680160px;}
.yfc{bottom:184.815010px;}
.y5f{bottom:188.190011px;}
.y1f{bottom:188.999720px;}
.y59{bottom:188.999882px;}
.y82{bottom:195.749901px;}
.yfa{bottom:195.750417px;}
.yef{bottom:199.124843px;}
.y3b{bottom:199.126220px;}
.y106{bottom:242.999928px;}
.yd5{bottom:249.749959px;}
.y58{bottom:266.624882px;}
.y81{bottom:273.374902px;}
.yf9{bottom:273.375429px;}
.yee{bottom:276.749843px;}
.y25{bottom:297.000674px;}
.y17{bottom:303.750162px;}
.y122{bottom:306.315000px;}
.y118{bottom:306.629850px;}
.y101{bottom:307.125000px;}
.y84{bottom:309.555150px;}
.y5b{bottom:309.690000px;}
.y66{bottom:310.004850px;}
.y1{bottom:310.319850px;}
.y28{bottom:310.500000px;}
.y90{bottom:317.249916px;}
.yaa{bottom:334.124935px;}
.y80{bottom:351.000052px;}
.yf8{bottom:351.000442px;}
.y1d{bottom:364.499706px;}
.yff{bottom:367.875036px;}
.y31{bottom:374.624979px;}
.y24{bottom:374.625686px;}
.y13{bottom:377.999903px;}
.y6c{bottom:377.999970px;}
.y16{bottom:381.375158px;}
.y120{bottom:391.500034px;}
.y62{bottom:415.125034px;}
.y7f{bottom:428.625053px;}
.y57{bottom:435.374884px;}
.yd4{bottom:435.374961px;}
.y1c{bottom:442.124700px;}
.y105{bottom:452.249930px;}
.y56{bottom:512.999884px;}
.y117{bottom:533.251208px;}
.y110{bottom:553.499148px;}
.yb3{bottom:562.161364px;}
.y29{bottom:567.000452px;}
.y55{bottom:590.624885px;}
.y2b{bottom:641.250463px;}
.yde{bottom:701.998682px;}
.y54{bottom:782.999887px;}
.y65{bottom:810.001033px;}
.ya6{bottom:826.875649px;}
.ydc{bottom:897.748960px;}
.y11c{bottom:897.750736px;}
.ya5{bottom:904.500661px;}
.ydb{bottom:975.373952px;}
.ya4{bottom:982.125673px;}
.yb1{bottom:992.250067px;}
.y53{bottom:1009.124888px;}
.y67{bottom:1056.375858px;}
.y22{bottom:1059.750000px;}
.yb0{bottom:1076.625068px;}
.y52{bottom:1086.749889px;}
.yc5{bottom:1110.374894px;}
.ya3{bottom:1117.125694px;}
.y23{bottom:1120.500798px;}
.y18{bottom:1134.000266px;}
.y1a{bottom:1154.250265px;}
.y1e{bottom:1171.124495px;}
.y27{bottom:1177.875027px;}
.yc4{bottom:1194.749895px;}
.ya2{bottom:1194.750706px;}
.y116{bottom:1194.751157px;}
.y21{bottom:1208.250038px;}
.y10f{bottom:1211.624170px;}
.ycf{bottom:1248.750021px;}
.yc3{bottom:1279.124896px;}
.y115{bottom:1279.126169px;}
.y10e{bottom:1292.624154px;}
.yce{bottom:1333.125022px;}
.yc2{bottom:1363.499896px;}
.ycd{bottom:1417.500023px;}
.yc1{bottom:1447.874897px;}
.yb2{bottom:1459.930121px;}
.y10d{bottom:1488.374116px;}
.y8c{bottom:1488.374497px;}
.ycc{bottom:1501.875024px;}
.yc0{bottom:1532.249898px;}
.y11{bottom:1549.718874px;}
.y11b{bottom:1552.501159px;}
.y8b{bottom:1565.999488px;}
.ycb{bottom:1586.250024px;}
.yca{bottom:1593.000024px;}
.ybf{bottom:1616.625035px;}
.y9a{bottom:1620.000049px;}
.y64{bottom:1622.879850px;}
.y11a{bottom:1636.876175px;}
.y8a{bottom:1643.624479px;}
.yc9{bottom:1670.625025px;}
.y10{bottom:1677.968875px;}
.y99{bottom:1697.625050px;}
.ybe{bottom:1701.000038px;}
.yed{bottom:1751.624842px;}
.yc8{bottom:1755.000057px;}
.y98{bottom:1775.250050px;}
.y4d{bottom:1782.000585px;}
.yf{bottom:1802.843876px;}
.yec{bottom:1829.249842px;}
.yc7{bottom:1839.375055px;}
.y3f{bottom:1856.251200px;}
.y4c{bottom:1859.625584px;}
.yaf{bottom:1863.002657px;}
.y72{bottom:1869.738165px;}
.y119{bottom:1876.501220px;}
.ye{bottom:1931.093877px;}
.y3e{bottom:1933.876199px;}
.y97{bottom:1937.250052px;}
.y4b{bottom:1937.250582px;}
.yae{bottom:1947.377660px;}
.y71{bottom:1954.113132px;}
.ydd{bottom:1960.873544px;}
.yeb{bottom:1982.654091px;}
.y3d{bottom:2011.501198px;}
.y70{bottom:2038.488099px;}
.yad{bottom:2055.377815px;}
.y5d{bottom:2058.750028px;}
.yd{bottom:2059.343878px;}
.yea{bottom:2060.279091px;}
.y114{bottom:2068.876587px;}
.y47{bottom:2089.125580px;}
.y124{bottom:2099.249584px;}
.y10c{bottom:2112.749144px;}
.y6f{bottom:2122.863066px;}
.y5e{bottom:2133.000029px;}
.ye9{bottom:2137.904091px;}
.y113{bottom:2153.251600px;}
.y46{bottom:2166.750578px;}
.yc{bottom:2187.593879px;}
.y7e{bottom:2193.750067px;}
.y123{bottom:2200.499576px;}
.y5c{bottom:2207.250029px;}
.y3a{bottom:2214.001196px;}
.ye8{bottom:2215.529091px;}
.yb9{bottom:2227.499927px;}
.y45{bottom:2244.375577px;}
.ye7{bottom:2293.154091px;}
.yb8{bottom:2311.874928px;}
.yb{bottom:2315.843880px;}
.y112{bottom:2349.001479px;}
.y1b{bottom:2359.125000px;}
.y4{bottom:2367.563285px;}
.ya1{bottom:2396.251041px;}
.y39{bottom:2403.001194px;}
.y111{bottom:2405.879850px;}
.ya{bottom:2440.718881px;}
.y44{bottom:2443.500573px;}
.ya0{bottom:2473.876053px;}
.y103{bottom:2477.249336px;}
.y38{bottom:2480.626193px;}
.yb7{bottom:2504.250079px;}
.y79{bottom:2538.000070px;}
.y10b{bottom:2544.749060px;}
.y9f{bottom:2551.501065px;}
.y9{bottom:2568.968882px;}
.y3{bottom:2573.438295px;}
.y102{bottom:2585.249330px;}
.yb6{bottom:2588.625080px;}
.y78{bottom:2615.625070px;}
.y9e{bottom:2629.126077px;}
.ybd{bottom:2642.625067px;}
.y42{bottom:2652.750719px;}
.y4e{bottom:2662.065000px;}
.y11f{bottom:2672.190000px;}
.yb5{bottom:2673.000081px;}
.y37{bottom:2679.751190px;}
.y77{bottom:2693.251123px;}
.y61{bottom:2696.129850px;}
.y8{bottom:2697.218883px;}
.y9d{bottom:2706.751089px;}
.y89{bottom:2753.999645px;}
.yc6{bottom:2764.125478px;}
.y2{bottom:2779.313305px;}
.ybc{bottom:2784.375071px;}
.y9c{bottom:2784.376101px;}
.ybb{bottom:2814.750072px;}
.y50{bottom:2872.125053px;}
.y9b{bottom:2875.501115px;}
.y36{bottom:2875.501188px;}
.yf7{bottom:2882.251155px;}
.y96{bottom:2892.374909px;}
.y51{bottom:2929.500054px;}
.y35{bottom:2953.126187px;}
.yf6{bottom:2959.876168px;}
.y10a{bottom:2966.624127px;}
.y95{bottom:2969.999910px;}
.y7{bottom:2971.687359px;}
.y4f{bottom:3000.375054px;}
.y94{bottom:3047.627142px;}
.yfe{bottom:3057.750000px;}
.y93{bottom:3118.502153px;}
.yda{bottom:3121.872818px;}
.y109{bottom:3175.874087px;}
.yd9{bottom:3199.497809px;}
.ye6{bottom:3270.374690px;}
.yd8{bottom:3277.122801px;}
.yba{bottom:3297.194850px;}
.ye5{bottom:3347.999690px;}
.y92{bottom:3407.940000px;}
.ye4{bottom:3425.624690px;}
.ye3{bottom:3503.249690px;}
.y4a{bottom:3638.250850px;}
.ye1{bottom:3658.499690px;}
.ye2{bottom:3678.749690px;}
.y43{bottom:3709.125849px;}
.y15{bottom:3726.000000px;}
.ye0{bottom:3742.874690px;}
.y88{bottom:3938.624952px;}
.y7c{bottom:3999.374932px;}
.y87{bottom:4016.249942px;}
.y7b{bottom:4076.999932px;}
.yf5{bottom:4147.876512px;}
.y7a{bottom:4154.624933px;}
.yf4{bottom:4225.501525px;}
.y86{bottom:4262.625062px;}
.yf3{bottom:4303.126538px;}
.yf2{bottom:4455.001562px;}
.yf1{bottom:4458.376563px;}
.y85{bottom:4502.250183px;}
.y40{bottom:4660.876017px;}
.y34{bottom:4698.000799px;}
.y108{bottom:4987.754850px;}
.ydf{bottom:4990.815000px;}
.y73{bottom:5068.305150px;}
.y12{bottom:5086.125000px;}
.y7d{bottom:5507.999944px;}
.y74{bottom:5713.875997px;}
.y41{bottom:5810.940000px;}
.y75{bottom:5913.000998px;}
.y76{bottom:5923.125999px;}
.yac{bottom:6284.069850px;}
.y8f{bottom:6755.940000px;}
.y104{bottom:8379.629850px;}
.yd7{bottom:8882.190000px;}
.ya9{bottom:9119.069850px;}
.y33{bottom:9678.690000px;}
.y6e{bottom:11193.930150px;}
.yd3{bottom:12311.190000px;}
.y6b{bottom:13445.055150px;}
.y30{bottom:14569.065000px;}
.h1b{height:60.144000px;}
.h1c{height:120.750000px;}
.h7d{height:169.559992px;}
.h5{height:169.560001px;}
.h7{height:177.633001px;}
.h5f{height:224.945070px;}
.h48{height:226.052463px;}
.h63{height:226.052466px;}
.h68{height:226.052490px;}
.h44{height:226.052492px;}
.h6c{height:226.052527px;}
.h49{height:226.810519px;}
.h2a{height:226.810543px;}
.h30{height:226.810549px;}
.h2b{height:243.764644px;}
.h24{height:243.764646px;}
.h40{height:245.709133px;}
.h64{height:245.709202px;}
.h5e{height:245.709221px;}
.h66{height:245.709228px;}
.h57{height:245.709230px;}
.h5c{height:245.709236px;}
.h56{height:245.709239px;}
.h6b{height:245.709269px;}
.h58{height:245.711196px;}
.h76{height:249.235061px;}
.h75{height:256.837450px;}
.h78{height:256.837538px;}
.h7b{height:256.837548px;}
.h82{height:265.365947px;}
.h10{height:280.329324px;}
.hc{height:280.329330px;}
.h27{height:280.329340px;}
.h22{height:280.329342px;}
.h13{height:280.329348px;}
.h17{height:280.329388px;}
.h4f{height:280.329392px;}
.h12{height:280.330587px;}
.h6{height:302.642548px;}
.h29{height:303.394037px;}
.h2f{height:303.394046px;}
.h83{height:306.315000px;}
.h7c{height:306.629850px;}
.h70{height:307.125000px;}
.h4a{height:309.555150px;}
.h32{height:309.690000px;}
.h3c{height:310.004850px;}
.h4{height:310.319850px;}
.h1a{height:310.500000px;}
.h47{height:314.507775px;}
.h6f{height:314.507795px;}
.h42{height:314.507815px;}
.h23{height:316.894039px;}
.h28{height:353.458734px;}
.h14{height:353.458743px;}
.h21{height:353.458779px;}
.h19{height:353.458794px;}
.h5a{height:353.821300px;}
.h3b{height:390.023501px;}
.he{height:393.192356px;}
.h74{height:485.999905px;}
.h11{height:485.999963px;}
.hd{height:485.999973px;}
.h2c{height:485.999991px;}
.h25{height:485.999994px;}
.h67{height:485.999999px;}
.h2e{height:486.000004px;}
.h5b{height:486.000015px;}
.h16{height:486.000073px;}
.h3a{height:486.000080px;}
.h7a{height:486.000091px;}
.h43{height:511.075199px;}
.h46{height:524.575132px;}
.h5d{height:529.321280px;}
.h38{height:530.270595px;}
.h3{height:541.228526px;}
.h6a{height:569.709322px;}
.h4c{height:607.500000px;}
.h61{height:638.890142px;}
.h53{height:641.250000px;}
.h3e{height:644.625000px;}
.h1e{height:651.375000px;}
.h51{height:654.776468px;}
.h9{height:691.875000px;}
.h72{height:713.179693px;}
.h4e{height:735.776488px;}
.h54{height:742.895514px;}
.h18{height:749.250000px;}
.h35{height:762.750000px;}
.h1f{height:832.042975px;}
.h36{height:861.758796px;}
.h80{height:891.474617px;}
.ha{height:980.622078px;}
.h37{height:1073.250000px;}
.h15{height:1299.375000px;}
.h39{height:1312.875000px;}
.hb{height:1360.125000px;}
.hf{height:1366.875000px;}
.h79{height:2099.250000px;}
.h3f{height:2251.125000px;}
.h31{height:2352.375000px;}
.h81{height:2365.875000px;}
.h77{height:2581.875000px;}
.h6e{height:2750.625000px;}
.h55{height:2835.000000px;}
.h59{height:2986.875000px;}
.h50{height:3098.250000px;}
.h2d{height:3148.875000px;}
.h7e{height:3313.440000px;}
.h7f{height:3313.500000px;}
.h4d{height:3348.000000px;}
.h73{height:3391.875000px;}
.h62{height:3429.000000px;}
.h33{height:3458.879850px;}
.h34{height:3459.000000px;}
.h6d{height:3699.000000px;}
.h2{height:3726.000000px;}
.h26{height:3867.750000px;}
.h65{height:3891.375000px;}
.h0{height:4036.319850px;}
.h1{height:4036.500000px;}
.h69{height:4681.125000px;}
.h45{height:4758.750000px;}
.h20{height:4890.375000px;}
.h8{height:5778.000000px;}
.h41{height:6125.625000px;}
.h4b{height:7363.440000px;}
.h71{height:9020.879850px;}
.h52{height:9760.319850px;}
.h60{height:12952.440000px;}
.h3d{height:14089.680150px;}
.h1d{height:15220.440000px;}
.w1{width:23.352000px;}
.w8{width:46.704000px;}
.w6{width:2699.864160px;}
.w4{width:2699.928000px;}
.w0{width:2700.000000px;}
.w7{width:2700.250035px;}
.w5{width:2700.355159px;}
.w3{width:2700.522029px;}
.w2{width:2700.782520px;}
.x0{left:0.000000px;}
.x1b{left:47.988675px;}
.x5a{left:51.574200px;}
.x35{left:60.171150px;}
.x67{left:67.078051px;}
.x5f{left:70.873283px;}
.x68{left:74.145301px;}
.x49{left:79.152601px;}
.x30{left:83.002651px;}
.x42{left:86.907526px;}
.x6a{left:94.658265px;}
.xb{left:96.345756px;}
.x70{left:99.878868px;}
.x21{left:103.095744px;}
.x14{left:105.363316px;}
.x8{left:106.839901px;}
.x45{left:108.844576px;}
.x12{left:110.003867px;}
.x27{left:111.691351px;}
.x4e{left:115.435501px;}
.x52{left:129.199201px;}
.x7{left:136.100101px;}
.xf{left:137.953213px;}
.x3e{left:142.964101px;}
.x56{left:153.509710px;}
.x3b{left:158.466215px;}
.x5e{left:160.578318px;}
.x6b{left:174.181528px;}
.x53{left:183.199201px;}
.x62{left:193.798811px;}
.x4c{left:197.003552px;}
.x74{left:198.492152px;}
.x61{left:203.923812px;}
.x4b{left:205.980138px;}
.x4a{left:208.880538px;}
.x41{left:234.087902px;}
.x10{left:235.775722px;}
.x4d{left:237.134402px;}
.x6e{left:242.473168px;}
.xe{left:244.107772px;}
.x6f{left:251.279295px;}
.x13{left:252.544988px;}
.x2b{left:260.402402px;}
.x63{left:261.983102px;}
.x6c{left:266.097493px;}
.x6d{left:267.152293px;}
.xc{left:268.312367px;}
.xa{left:269.999867px;}
.x28{left:273.216752px;}
.x40{left:274.693560px;}
.x71{left:277.382899px;}
.x2a{left:279.966752px;}
.x38{left:281.493819px;}
.x29{left:284.923802px;}
.x3f{left:286.347812px;}
.x1d{left:290.671927px;}
.x5c{left:295.735202px;}
.x1e{left:296.841876px;}
.x34{left:298.898402px;}
.x15{left:299.900445px;}
.x23{left:303.486623px;}
.x48{left:306.755852px;}
.x4f{left:326.217753px;}
.x36{left:335.706386px;}
.x6{left:337.499966px;}
.x37{left:340.134381px;}
.x9{left:356.326203px;}
.x16{left:359.543004px;}
.x11{left:360.544953px;}
.x43{left:362.337965px;}
.x50{left:368.405253px;}
.xd{left:372.937374px;}
.x5d{left:376.208891px;}
.x44{left:379.792953px;}
.x54{left:393.240176px;}
.x60{left:399.199223px;}
.x3a{left:407.266353px;}
.x2c{left:409.904253px;}
.x5b{left:446.185954px;}
.x1a{left:456.205054px;}
.x51{left:478.619254px;}
.x25{left:480.250536px;}
.x55{left:526.183535px;}
.x1c{left:528.873405px;}
.x75{left:544.325029px;}
.x22{left:553.975242px;}
.x24{left:575.648294px;}
.x2d{left:585.562880px;}
.x1f{left:597.586299px;}
.x69{left:599.642930px;}
.x1{left:632.053015px;}
.x20{left:637.137920px;}
.x64{left:644.413530px;}
.x31{left:740.812783px;}
.x39{left:773.875415px;}
.x2{left:794.633505px;}
.x3c{left:859.253857px;}
.x26{left:874.388707px;}
.x3d{left:898.066357px;}
.x3{left:924.783623px;}
.x59{left:1104.206334px;}
.x77{left:1110.956334px;}
.x73{left:1114.331364px;}
.x33{left:1121.081334px;}
.x47{left:1127.831334px;}
.x66{left:1131.206334px;}
.x58{left:1133.261709px;}
.x76{left:1140.011709px;}
.x2f{left:1141.331334px;}
.x72{left:1143.386736px;}
.x32{left:1150.136709px;}
.x18{left:1151.456334px;}
.x46{left:1156.886709px;}
.x65{left:1160.261709px;}
.x57{left:1166.273409px;}
.x2e{left:1170.386709px;}
.x17{left:1180.511709px;}
.x5{left:1315.143836px;}
.x19{left:1338.320252px;}
.x4{left:1344.199211px;}
@media print{
.v1{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.999999pt;}
.v3{vertical-align:120.000020pt;}
.va{vertical-align:132.000020pt;}
.v7{vertical-align:156.000001pt;}
.v2{vertical-align:168.000028pt;}
.v9{vertical-align:180.000560pt;}
.v6{vertical-align:192.000030pt;}
.v5{vertical-align:264.000043pt;}
.v8{vertical-align:288.000047pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.818627pt;}
.ls7{letter-spacing:406.575000pt;}
.ls8{letter-spacing:416.808064pt;}
.lsa{letter-spacing:596.812897pt;}
.ls9{letter-spacing:598.687471pt;}
.ls4{letter-spacing:601.387299pt;}
.ls5{letter-spacing:633.756104pt;}
.ls6{letter-spacing:646.499922pt;}
.lsc{letter-spacing:850.875327pt;}
.ls2{letter-spacing:872.257016pt;}
.ls3{letter-spacing:890.443682pt;}
.lsd{letter-spacing:1028.962821pt;}
.lsb{letter-spacing:1046.327796pt;}
.ws6{word-spacing:-83.349613pt;}
.ws7{word-spacing:-83.349610pt;}
.ws5{word-spacing:-76.681652pt;}
.ws3{word-spacing:-76.681641pt;}
.ws2{word-spacing:-76.681634pt;}
.ws4{word-spacing:-76.681631pt;}
.ws0{word-spacing:-37.056000pt;}
.wsb{word-spacing:-37.055998pt;}
.ws9{word-spacing:-0.432000pt;}
.ws8{word-spacing:-0.300000pt;}
.wsa{word-spacing:-0.276000pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-57.290688pt;}
._31{margin-left:-32.155061pt;}
._1b{margin-left:-25.827516pt;}
._1d{margin-left:-23.990540pt;}
._0{margin-left:-19.585153pt;}
._2{margin-left:-16.419457pt;}
._1c{margin-left:-9.146136pt;}
._4f{margin-left:-8.061696pt;}
._4{margin-left:-6.912000pt;}
._51{margin-left:-5.956123pt;}
._6{margin-left:-4.973184pt;}
._3{margin-left:-3.268608pt;}
._5{margin-left:-2.160000pt;}
._1{margin-left:-0.971520pt;}
._39{width:3.052679pt;}
._32{width:3.993721pt;}
._19{width:5.907504pt;}
._16{width:7.526548pt;}
._1a{width:8.590748pt;}
._37{width:10.327399pt;}
._e{width:11.994132pt;}
._24{width:13.621152pt;}
._25{width:14.867016pt;}
._36{width:15.824619pt;}
._26{width:16.737121pt;}
._2a{width:17.934623pt;}
._22{width:19.105272pt;}
._50{width:22.473586pt;}
._10{width:23.949624pt;}
._47{width:25.001736pt;}
._30{width:25.953660pt;}
._23{width:28.137836pt;}
._44{width:29.892000pt;}
._45{width:31.240800pt;}
._46{width:32.215200pt;}
._4a{width:33.733467pt;}
._11{width:35.883338pt;}
._35{width:39.004935pt;}
._38{width:40.178040pt;}
._3f{width:45.588000pt;}
._52{width:46.681007pt;}
._b{width:47.683910pt;}
._15{width:48.800290pt;}
._2d{width:50.223714pt;}
._a{width:51.470408pt;}
._c{width:53.047371pt;}
._7{width:54.573480pt;}
._48{width:58.360752pt;}
._21{width:60.361295pt;}
._12{width:63.951683pt;}
._2b{width:65.035245pt;}
._1f{width:66.080473pt;}
._13{width:68.946934pt;}
._20{width:70.161760pt;}
._4e{width:73.360812pt;}
._2c{width:74.577675pt;}
._33{width:83.446419pt;}
._18{width:84.536867pt;}
._17{width:85.615199pt;}
._29{width:95.937538pt;}
._28{width:98.234552pt;}
._27{width:99.904825pt;}
._8{width:100.824961pt;}
._9{width:101.939053pt;}
._54{width:108.000016pt;}
._3d{width:109.899601pt;}
._34{width:114.039649pt;}
._14{width:115.573067pt;}
._4c{width:119.905184pt;}
._49{width:125.952048pt;}
._4d{width:127.338396pt;}
._40{width:131.896801pt;}
._3e{width:140.992801pt;}
._d{width:143.907526pt;}
._41{width:149.743648pt;}
._4b{width:167.949615pt;}
._3a{width:184.696801pt;}
._3b{width:191.930033pt;}
._3c{width:203.849416pt;}
._53{width:235.901070pt;}
._2f{width:236.860718pt;}
._43{width:281.977202pt;}
._2e{width:283.993283pt;}
._42{width:306.136802pt;}
._f{width:1562.218976pt;}
.fsf{font-size:149.333333pt;}
.fs48{font-size:191.999991pt;}
.fs1{font-size:192.000002pt;}
.fs3{font-size:216.000002pt;}
.fs19{font-size:239.999995pt;}
.fs14{font-size:239.999997pt;}
.fs27{font-size:275.999967pt;}
.fs37{font-size:275.999970pt;}
.fs8{font-size:275.999979pt;}
.fs5{font-size:275.999985pt;}
.fs16{font-size:275.999995pt;}
.fs12{font-size:275.999997pt;}
.fs3b{font-size:276.000000pt;}
.fsa{font-size:276.000002pt;}
.fsd{font-size:276.000042pt;}
.fs2c{font-size:276.000043pt;}
.fs29{font-size:276.000045pt;}
.fs2{font-size:287.999971pt;}
.fs42{font-size:291.119943pt;}
.fs21{font-size:299.999883pt;}
.fs41{font-size:299.999941pt;}
.fs38{font-size:299.999967pt;}
.fs35{font-size:299.999991pt;}
.fs39{font-size:300.000000pt;}
.fs2e{font-size:300.000002pt;}
.fs32{font-size:300.000009pt;}
.fs2d{font-size:300.000013pt;}
.fs44{font-size:300.000045pt;}
.fs3c{font-size:300.000049pt;}
.fs47{font-size:300.000056pt;}
.fs2f{font-size:300.002402pt;}
.fs18{font-size:311.999994pt;}
.fs13{font-size:311.999996pt;}
.fs1c{font-size:312.000002pt;}
.fs4a{font-size:323.999976pt;}
.fs40{font-size:335.999934pt;}
.fs43{font-size:336.000050pt;}
.fs1f{font-size:336.000055pt;}
.fs46{font-size:336.000063pt;}
.fs17{font-size:347.999993pt;}
.fsb{font-size:348.000003pt;}
.fs11{font-size:348.000038pt;}
.fse{font-size:348.000052pt;}
.fs26{font-size:383.999954pt;}
.fs3d{font-size:383.999979pt;}
.fs22{font-size:384.000003pt;}
.fs20{font-size:384.000063pt;}
.fs7{font-size:387.119978pt;}
.fs34{font-size:431.999987pt;}
.fs30{font-size:432.000013pt;}
.fs2b{font-size:432.000067pt;}
.fs28{font-size:432.000071pt;}
.fs36{font-size:516.000004pt;}
.fs0{font-size:564.000027pt;}
.fs3e{font-size:576.000005pt;}
.fs3f{font-size:599.999883pt;}
.fs24{font-size:599.999928pt;}
.fs9{font-size:599.999954pt;}
.fs6{font-size:599.999967pt;}
.fs33{font-size:599.999983pt;}
.fs1a{font-size:599.999989pt;}
.fs15{font-size:599.999993pt;}
.fs3a{font-size:599.999999pt;}
.fs1b{font-size:600.000005pt;}
.fs31{font-size:600.000018pt;}
.fsc{font-size:600.000090pt;}
.fs2a{font-size:600.000093pt;}
.fs1e{font-size:600.000098pt;}
.fs45{font-size:600.000112pt;}
.fs25{font-size:623.999925pt;}
.fs23{font-size:624.000005pt;}
.fs10{font-size:672.000005pt;}
.fs1d{font-size:696.000006pt;}
.fs49{font-size:720.000006pt;}
.fs4{font-size:792.000006pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:7.419935pt;}
.yd2{bottom:8.753268pt;}
.y2f{bottom:14.037333pt;}
.y107{bottom:29.999935pt;}
.yd6{bottom:53.999963pt;}
.y91{bottom:62.999923pt;}
.yb4{bottom:69.000053pt;}
.y14{bottom:80.999911pt;}
.y49{bottom:81.000549pt;}
.y11e{bottom:86.559683pt;}
.yd1{bottom:86.839875pt;}
.y2d{bottom:87.000009pt;}
.y6a{bottom:92.559875pt;}
.ya8{bottom:95.280009pt;}
.y6{bottom:95.839875pt;}
.y68{bottom:96.000491pt;}
.y8e{bottom:98.160142pt;}
.yfd{bottom:98.280009pt;}
.y5a{bottom:98.999894pt;}
.y20{bottom:99.000026pt;}
.y60{bottom:101.280009pt;}
.yab{bottom:101.999940pt;}
.y100{bottom:102.000031pt;}
.y83{bottom:104.999912pt;}
.yfb{bottom:105.000359pt;}
.y26{bottom:105.000442pt;}
.yf0{bottom:107.999861pt;}
.y32{bottom:113.999979pt;}
.y121{bottom:114.000028pt;}
.y19{bottom:114.000153pt;}
.y6d{bottom:116.999971pt;}
.y3c{bottom:117.001085pt;}
.y2a{bottom:126.000345pt;}
.y48{bottom:141.000548pt;}
.y63{bottom:144.000028pt;}
.y11d{bottom:152.559679pt;}
.yd0{bottom:152.839876pt;}
.y2c{bottom:153.000009pt;}
.y69{bottom:158.559876pt;}
.ya7{bottom:161.280009pt;}
.y5{bottom:161.839876pt;}
.y8d{bottom:164.160143pt;}
.yfc{bottom:164.280009pt;}
.y5f{bottom:167.280009pt;}
.y1f{bottom:167.999751pt;}
.y59{bottom:167.999895pt;}
.y82{bottom:173.999912pt;}
.yfa{bottom:174.000370pt;}
.yef{bottom:176.999861pt;}
.y3b{bottom:177.001084pt;}
.y106{bottom:215.999936pt;}
.yd5{bottom:221.999964pt;}
.y58{bottom:236.999895pt;}
.y81{bottom:242.999913pt;}
.yf9{bottom:243.000382pt;}
.yee{bottom:245.999861pt;}
.y25{bottom:264.000599pt;}
.y17{bottom:270.000144pt;}
.y122{bottom:272.280000pt;}
.y118{bottom:272.559867pt;}
.y101{bottom:273.000000pt;}
.y84{bottom:275.160133pt;}
.y5b{bottom:275.280000pt;}
.y66{bottom:275.559867pt;}
.y1{bottom:275.839867pt;}
.y28{bottom:276.000000pt;}
.y90{bottom:281.999925pt;}
.yaa{bottom:296.999942pt;}
.y80{bottom:312.000047pt;}
.yf8{bottom:312.000393pt;}
.y1d{bottom:323.999739pt;}
.yff{bottom:327.000032pt;}
.y31{bottom:332.999981pt;}
.y24{bottom:333.000610pt;}
.y13{bottom:335.999914pt;}
.y6c{bottom:335.999973pt;}
.y16{bottom:339.000141pt;}
.y120{bottom:348.000030pt;}
.y62{bottom:369.000030pt;}
.y7f{bottom:381.000047pt;}
.y57{bottom:386.999897pt;}
.yd4{bottom:386.999965pt;}
.y1c{bottom:392.999734pt;}
.y105{bottom:401.999937pt;}
.y56{bottom:455.999897pt;}
.y117{bottom:474.001074pt;}
.y110{bottom:491.999243pt;}
.yb3{bottom:499.698990pt;}
.y29{bottom:504.000402pt;}
.y55{bottom:524.999898pt;}
.y2b{bottom:570.000412pt;}
.yde{bottom:623.998828pt;}
.y54{bottom:695.999899pt;}
.y65{bottom:720.000918pt;}
.ya6{bottom:735.000577pt;}
.ydc{bottom:797.999076pt;}
.y11c{bottom:798.000655pt;}
.ya5{bottom:804.000587pt;}
.ydb{bottom:866.999068pt;}
.ya4{bottom:873.000598pt;}
.yb1{bottom:882.000060pt;}
.y53{bottom:896.999901pt;}
.y67{bottom:939.000763pt;}
.y22{bottom:942.000000pt;}
.yb0{bottom:957.000060pt;}
.y52{bottom:965.999901pt;}
.yc5{bottom:986.999906pt;}
.ya3{bottom:993.000617pt;}
.y23{bottom:996.000710pt;}
.y18{bottom:1008.000237pt;}
.y1a{bottom:1026.000236pt;}
.y1e{bottom:1040.999551pt;}
.y27{bottom:1047.000024pt;}
.yc4{bottom:1061.999907pt;}
.ya2{bottom:1062.000627pt;}
.y116{bottom:1062.001028pt;}
.y21{bottom:1074.000033pt;}
.y10f{bottom:1076.999262pt;}
.ycf{bottom:1110.000019pt;}
.yc3{bottom:1136.999907pt;}
.y115{bottom:1137.001039pt;}
.y10e{bottom:1148.999248pt;}
.yce{bottom:1185.000020pt;}
.yc2{bottom:1211.999908pt;}
.ycd{bottom:1260.000020pt;}
.yc1{bottom:1286.999908pt;}
.yb2{bottom:1297.715663pt;}
.y10d{bottom:1322.999214pt;}
.y8c{bottom:1322.999553pt;}
.ycc{bottom:1335.000021pt;}
.yc0{bottom:1361.999909pt;}
.y11{bottom:1377.527888pt;}
.y11b{bottom:1380.001030pt;}
.y8b{bottom:1391.999545pt;}
.ycb{bottom:1410.000021pt;}
.yca{bottom:1416.000022pt;}
.ybf{bottom:1437.000031pt;}
.y9a{bottom:1440.000044pt;}
.y64{bottom:1442.559867pt;}
.y11a{bottom:1455.001044pt;}
.y8a{bottom:1460.999537pt;}
.yc9{bottom:1485.000022pt;}
.y10{bottom:1491.527889pt;}
.y99{bottom:1509.000044pt;}
.ybe{bottom:1512.000034pt;}
.yed{bottom:1556.999859pt;}
.yc8{bottom:1560.000051pt;}
.y98{bottom:1578.000045pt;}
.y4d{bottom:1584.000520pt;}
.yf{bottom:1602.527890pt;}
.yec{bottom:1625.999859pt;}
.yc7{bottom:1635.000049pt;}
.y3f{bottom:1650.001067pt;}
.y4c{bottom:1653.000519pt;}
.yaf{bottom:1656.002362pt;}
.y72{bottom:1661.989480pt;}
.y119{bottom:1668.001084pt;}
.ye{bottom:1716.527891pt;}
.y3e{bottom:1719.001066pt;}
.y97{bottom:1722.000046pt;}
.y4b{bottom:1722.000518pt;}
.yae{bottom:1731.002365pt;}
.y71{bottom:1736.989451pt;}
.ydd{bottom:1742.998706pt;}
.yeb{bottom:1762.359192pt;}
.y3d{bottom:1788.001065pt;}
.y70{bottom:1811.989422pt;}
.yad{bottom:1827.002502pt;}
.y5d{bottom:1830.000025pt;}
.yd{bottom:1830.527892pt;}
.yea{bottom:1831.359192pt;}
.y114{bottom:1839.001411pt;}
.y47{bottom:1857.000515pt;}
.y124{bottom:1865.999630pt;}
.y10c{bottom:1877.999239pt;}
.y6f{bottom:1886.989392pt;}
.y5e{bottom:1896.000025pt;}
.ye9{bottom:1900.359192pt;}
.y113{bottom:1914.001422pt;}
.y46{bottom:1926.000514pt;}
.yc{bottom:1944.527892pt;}
.y7e{bottom:1950.000060pt;}
.y123{bottom:1955.999623pt;}
.y5c{bottom:1962.000026pt;}
.y3a{bottom:1968.001063pt;}
.ye8{bottom:1969.359192pt;}
.yb9{bottom:1979.999935pt;}
.y45{bottom:1995.000513pt;}
.ye7{bottom:2038.359192pt;}
.yb8{bottom:2054.999936pt;}
.yb{bottom:2058.527893pt;}
.y112{bottom:2088.001315pt;}
.y1b{bottom:2097.000000pt;}
.y4{bottom:2104.500697pt;}
.ya1{bottom:2130.000925pt;}
.y39{bottom:2136.001061pt;}
.y111{bottom:2138.559867pt;}
.ya{bottom:2169.527894pt;}
.y44{bottom:2172.000509pt;}
.ya0{bottom:2199.000936pt;}
.y103{bottom:2201.999410pt;}
.y38{bottom:2205.001060pt;}
.yb7{bottom:2226.000071pt;}
.y79{bottom:2256.000062pt;}
.y10b{bottom:2261.999164pt;}
.y9f{bottom:2268.000947pt;}
.y9{bottom:2283.527895pt;}
.y3{bottom:2287.500706pt;}
.y102{bottom:2297.999404pt;}
.yb6{bottom:2301.000071pt;}
.y78{bottom:2325.000063pt;}
.y9e{bottom:2337.000957pt;}
.ybd{bottom:2349.000059pt;}
.y42{bottom:2358.000639pt;}
.y4e{bottom:2366.280000pt;}
.y11f{bottom:2375.280000pt;}
.yb5{bottom:2376.000072pt;}
.y37{bottom:2382.001058pt;}
.y77{bottom:2394.000998pt;}
.y61{bottom:2396.559867pt;}
.y8{bottom:2397.527896pt;}
.y9d{bottom:2406.000968pt;}
.y89{bottom:2447.999684pt;}
.yc6{bottom:2457.000425pt;}
.y2{bottom:2470.500715pt;}
.ybc{bottom:2475.000063pt;}
.y9c{bottom:2475.000979pt;}
.ybb{bottom:2502.000064pt;}
.y50{bottom:2553.000047pt;}
.y9b{bottom:2556.000991pt;}
.y36{bottom:2556.001056pt;}
.yf7{bottom:2562.001027pt;}
.y96{bottom:2570.999919pt;}
.y51{bottom:2604.000048pt;}
.y35{bottom:2625.001055pt;}
.yf6{bottom:2631.001038pt;}
.y10a{bottom:2636.999224pt;}
.y95{bottom:2639.999920pt;}
.y7{bottom:2641.499875pt;}
.y4f{bottom:2667.000048pt;}
.y94{bottom:2709.001904pt;}
.yfe{bottom:2718.000000pt;}
.y93{bottom:2772.001914pt;}
.yda{bottom:2774.998060pt;}
.y109{bottom:2822.999188pt;}
.yd9{bottom:2843.998053pt;}
.ye6{bottom:2906.999725pt;}
.yd8{bottom:2912.998045pt;}
.yba{bottom:2930.839867pt;}
.ye5{bottom:2975.999724pt;}
.y92{bottom:3029.280000pt;}
.ye4{bottom:3044.999724pt;}
.ye3{bottom:3113.999724pt;}
.y4a{bottom:3234.000756pt;}
.ye1{bottom:3251.999724pt;}
.ye2{bottom:3269.999724pt;}
.y43{bottom:3297.000755pt;}
.y15{bottom:3312.000000pt;}
.ye0{bottom:3326.999724pt;}
.y88{bottom:3500.999957pt;}
.y7c{bottom:3554.999939pt;}
.y87{bottom:3569.999949pt;}
.y7b{bottom:3623.999940pt;}
.yf5{bottom:3687.001344pt;}
.y7a{bottom:3692.999940pt;}
.yf4{bottom:3756.001355pt;}
.y86{bottom:3789.000055pt;}
.yf3{bottom:3825.001367pt;}
.yf2{bottom:3960.001389pt;}
.yf1{bottom:3963.001389pt;}
.y85{bottom:4002.000163pt;}
.y40{bottom:4143.000904pt;}
.y34{bottom:4176.000710pt;}
.y108{bottom:4433.559867pt;}
.ydf{bottom:4436.280000pt;}
.y73{bottom:4505.160133pt;}
.y12{bottom:4521.000000pt;}
.y7d{bottom:4895.999950pt;}
.y74{bottom:5079.000886pt;}
.y41{bottom:5165.280000pt;}
.y75{bottom:5256.000887pt;}
.y76{bottom:5265.000888pt;}
.yac{bottom:5585.839867pt;}
.y8f{bottom:6005.280000pt;}
.y104{bottom:7448.559867pt;}
.yd7{bottom:7895.280000pt;}
.ya9{bottom:8105.839867pt;}
.y33{bottom:8603.280000pt;}
.y6e{bottom:9950.160133pt;}
.yd3{bottom:10943.280000pt;}
.y6b{bottom:11951.160133pt;}
.y30{bottom:12950.280000pt;}
.h1b{height:53.461333pt;}
.h1c{height:107.333333pt;}
.h7d{height:150.719993pt;}
.h5{height:150.720001pt;}
.h7{height:157.896001pt;}
.h5f{height:199.951173pt;}
.h48{height:200.935523pt;}
.h63{height:200.935525pt;}
.h68{height:200.935547pt;}
.h44{height:200.935548pt;}
.h6c{height:200.935580pt;}
.h49{height:201.609351pt;}
.h2a{height:201.609371pt;}
.h30{height:201.609377pt;}
.h2b{height:216.679683pt;}
.h24{height:216.679685pt;}
.h40{height:218.408118pt;}
.h64{height:218.408179pt;}
.h5e{height:218.408197pt;}
.h66{height:218.408203pt;}
.h57{height:218.408205pt;}
.h5c{height:218.408210pt;}
.h56{height:218.408213pt;}
.h6b{height:218.408239pt;}
.h58{height:218.409952pt;}
.h76{height:221.542277pt;}
.h75{height:228.299955pt;}
.h78{height:228.300034pt;}
.h7b{height:228.300043pt;}
.h82{height:235.880842pt;}
.h10{height:249.181622pt;}
.hc{height:249.181627pt;}
.h27{height:249.181636pt;}
.h22{height:249.181638pt;}
.h13{height:249.181643pt;}
.h17{height:249.181678pt;}
.h4f{height:249.181681pt;}
.h12{height:249.182744pt;}
.h6{height:269.015598pt;}
.h29{height:269.683589pt;}
.h2f{height:269.683596pt;}
.h83{height:272.280000pt;}
.h7c{height:272.559867pt;}
.h70{height:273.000000pt;}
.h4a{height:275.160133pt;}
.h32{height:275.280000pt;}
.h3c{height:275.559867pt;}
.h4{height:275.839867pt;}
.h1a{height:276.000000pt;}
.h47{height:279.562466pt;}
.h6f{height:279.562485pt;}
.h42{height:279.562502pt;}
.h23{height:281.683590pt;}
.h28{height:314.185541pt;}
.h14{height:314.185549pt;}
.h21{height:314.185581pt;}
.h19{height:314.185594pt;}
.h5a{height:314.507822pt;}
.h3b{height:346.687557pt;}
.he{height:349.504316pt;}
.h74{height:431.999916pt;}
.h11{height:431.999967pt;}
.hd{height:431.999976pt;}
.h2c{height:431.999992pt;}
.h25{height:431.999995pt;}
.h67{height:432.000000pt;}
.h2e{height:432.000003pt;}
.h5b{height:432.000013pt;}
.h16{height:432.000065pt;}
.h3a{height:432.000071pt;}
.h7a{height:432.000081pt;}
.h43{height:454.289066pt;}
.h46{height:466.289006pt;}
.h5d{height:470.507805pt;}
.h38{height:471.351640pt;}
.h3{height:481.092023pt;}
.h6a{height:506.408286pt;}
.h4c{height:540.000000pt;}
.h61{height:567.902348pt;}
.h53{height:570.000000pt;}
.h3e{height:573.000000pt;}
.h1e{height:579.000000pt;}
.h51{height:582.023527pt;}
.h9{height:615.000000pt;}
.h72{height:633.937505pt;}
.h4e{height:654.023545pt;}
.h54{height:660.351568pt;}
.h18{height:666.000000pt;}
.h35{height:678.000000pt;}
.h1f{height:739.593756pt;}
.h36{height:766.007819pt;}
.h80{height:792.421881pt;}
.ha{height:871.664069pt;}
.h37{height:954.000000pt;}
.h15{height:1155.000000pt;}
.h39{height:1167.000000pt;}
.hb{height:1209.000000pt;}
.hf{height:1215.000000pt;}
.h79{height:1866.000000pt;}
.h3f{height:2001.000000pt;}
.h31{height:2091.000000pt;}
.h81{height:2103.000000pt;}
.h77{height:2295.000000pt;}
.h6e{height:2445.000000pt;}
.h55{height:2520.000000pt;}
.h59{height:2655.000000pt;}
.h50{height:2754.000000pt;}
.h2d{height:2799.000000pt;}
.h7e{height:2945.280000pt;}
.h7f{height:2945.333333pt;}
.h4d{height:2976.000000pt;}
.h73{height:3015.000000pt;}
.h62{height:3048.000000pt;}
.h33{height:3074.559867pt;}
.h34{height:3074.666667pt;}
.h6d{height:3288.000000pt;}
.h2{height:3312.000000pt;}
.h26{height:3438.000000pt;}
.h65{height:3459.000000pt;}
.h0{height:3587.839867pt;}
.h1{height:3588.000000pt;}
.h69{height:4161.000000pt;}
.h45{height:4230.000000pt;}
.h20{height:4347.000000pt;}
.h8{height:5136.000000pt;}
.h41{height:5445.000000pt;}
.h4b{height:6545.280000pt;}
.h71{height:8018.559867pt;}
.h52{height:8675.839867pt;}
.h60{height:11513.280000pt;}
.h3d{height:12524.160133pt;}
.h1d{height:13529.280000pt;}
.w1{width:20.757333pt;}
.w8{width:41.514667pt;}
.w6{width:2399.879253pt;}
.w4{width:2399.936000pt;}
.w0{width:2400.000000pt;}
.w7{width:2400.222253pt;}
.w5{width:2400.315696pt;}
.w3{width:2400.464026pt;}
.w2{width:2400.695573pt;}
.x0{left:0.000000pt;}
.x1b{left:42.656600pt;}
.x5a{left:45.843734pt;}
.x35{left:53.485467pt;}
.x67{left:59.624934pt;}
.x5f{left:62.998474pt;}
.x68{left:65.906934pt;}
.x49{left:70.357867pt;}
.x30{left:73.780134pt;}
.x42{left:77.251134pt;}
.x6a{left:84.140680pt;}
.xb{left:85.640672pt;}
.x70{left:88.781216pt;}
.x21{left:91.640661pt;}
.x14{left:93.656281pt;}
.x8{left:94.968801pt;}
.x45{left:96.750734pt;}
.x12{left:97.781215pt;}
.x27{left:99.281201pt;}
.x4e{left:102.609334pt;}
.x52{left:114.843734pt;}
.x7{left:120.977868pt;}
.xf{left:122.625078pt;}
.x3e{left:127.079201pt;}
.x56{left:136.453076pt;}
.x3b{left:140.858858pt;}
.x5e{left:142.736283pt;}
.x6b{left:154.828025pt;}
.x53{left:162.843735pt;}
.x62{left:172.265610pt;}
.x4c{left:175.114268pt;}
.x74{left:176.437468pt;}
.x61{left:181.265610pt;}
.x4b{left:183.093456pt;}
.x4a{left:185.671589pt;}
.x41{left:208.078135pt;}
.x10{left:209.578419pt;}
.x4d{left:210.786135pt;}
.x6e{left:215.531705pt;}
.xe{left:216.984687pt;}
.x6f{left:223.359373pt;}
.x13{left:224.484434pt;}
.x2b{left:231.468802pt;}
.x63{left:232.873869pt;}
.x6c{left:236.531105pt;}
.x6d{left:237.468705pt;}
.xc{left:238.499882pt;}
.xa{left:239.999882pt;}
.x28{left:242.859335pt;}
.x40{left:244.172053pt;}
.x71{left:246.562577pt;}
.x2a{left:248.859335pt;}
.x38{left:250.216728pt;}
.x29{left:253.265602pt;}
.x3f{left:254.531389pt;}
.x1d{left:258.375046pt;}
.x5c{left:262.875735pt;}
.x1e{left:263.859445pt;}
.x34{left:265.687469pt;}
.x15{left:266.578174pt;}
.x23{left:269.765887pt;}
.x48{left:272.671869pt;}
.x4f{left:289.971336pt;}
.x36{left:298.405676pt;}
.x6{left:299.999970pt;}
.x37{left:302.341672pt;}
.x9{left:316.734403pt;}
.x16{left:319.593782pt;}
.x11{left:320.484403pt;}
.x43{left:322.078191pt;}
.x50{left:327.471336pt;}
.xd{left:331.499888pt;}
.x5d{left:334.407904pt;}
.x44{left:337.593736pt;}
.x54{left:349.546824pt;}
.x60{left:354.843754pt;}
.x3a{left:362.014536pt;}
.x2c{left:364.359336pt;}
.x5b{left:396.609737pt;}
.x1a{left:405.515603pt;}
.x51{left:425.439337pt;}
.x25{left:426.889366pt;}
.x55{left:467.718698pt;}
.x1c{left:470.109693pt;}
.x75{left:483.844471pt;}
.x22{left:492.422437pt;}
.x24{left:511.687372pt;}
.x2d{left:520.500337pt;}
.x1f{left:531.187821pt;}
.x69{left:533.015938pt;}
.x1{left:561.824902pt;}
.x20{left:566.344818pt;}
.x64{left:572.812026pt;}
.x31{left:658.500251pt;}
.x39{left:687.889257pt;}
.x2{left:706.340894pt;}
.x3c{left:763.781206pt;}
.x26{left:777.234406pt;}
.x3d{left:798.281206pt;}
.x3{left:822.029887pt;}
.x59{left:981.516741pt;}
.x77{left:987.516741pt;}
.x73{left:990.516768pt;}
.x33{left:996.516741pt;}
.x47{left:1002.516741pt;}
.x66{left:1005.516741pt;}
.x58{left:1007.343741pt;}
.x76{left:1013.343741pt;}
.x2f{left:1014.516741pt;}
.x72{left:1016.343765pt;}
.x32{left:1022.343742pt;}
.x18{left:1023.516742pt;}
.x46{left:1028.343742pt;}
.x65{left:1031.343742pt;}
.x57{left:1036.687475pt;}
.x2e{left:1040.343742pt;}
.x17{left:1049.343742pt;}
.x5{left:1169.016743pt;}
.x19{left:1189.618001pt;}
.x4{left:1194.843743pt;}
}




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