
    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_18b3c31f5a6710d5bb0f3397.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_f2e6b37eed1093993789c221.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_ebbc940d1fa47ea7fc132a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_004708c571a8ca5a6d6dc975.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_b1dd950d6bb816484fbc8498.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_191321bbb8b0828d6ffe6436.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_7541d4fc4a40d28a1c0933ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_62b0c7b41d1deae44d97d72c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693848;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_a871860a398095071c0cf1d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_aab3620102425db001b6b81d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871094;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_82221bb3addfef1e9a8e4e4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_ff6e2261e287740bef29e9e0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_3f8159c282e5cd808033b922.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_96b36d0affd02f279c30c0fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.862793;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_e342496134baabaae8e90d21.woff2')format("woff");}.fff{font-family:fff;line-height:1.002930;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_9237166e4892747ef5362895.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;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_4fa15c3ee4abfb926b73de74.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_dec739be39f23a1add2dca6f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002930;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_06c3db0e185d6bc33f5c5a9f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871094;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_507df1a64932d8235bec7965.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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_b32add5e74e31df1e0f8b116.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.871094;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_0b1980df39d97000c011db61.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.871094;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_4f9f9735f5fc354a59abf385.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.871094;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_076dd0ad335d652774899a40.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.002930;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_747c1507dddd77bec5d966ba.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.871094;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_9fe181cc2c120602742c5ec2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.002930;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_3d3e080b10d2d8792cc3de0f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.002930;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_469a203f189e76e1a12efc22.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.871094;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_d7ba6ccbc4ffc52372374097.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.002930;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_6750198a899afb4657082082.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.871094;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_f17dcde637e245ada9f8167f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.871094;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_f8ccccd9df3dc7ed8a1115c0.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.871094;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_9c24ef4273f05b952e43b8c2.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.871094;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_4c32a1a03f7569f44ffe388c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.002930;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_060b1bec1fc23a1083da7fc8.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.002930;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_ed1a73ffc76f437b243b4e8f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.871094;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_b5bb8ca461929437d03f384d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.861816;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_858bc9f0a62c95b76b6c4a9f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.871094;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_56604427aab6adad93b49810.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.871094;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_8e244831c8966745e071fba2.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.002930;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_acdbc8d0a0077d4f0a5190bb.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.871094;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_6b992e64bc6d9080202f95a2.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.002930;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_40af276a9b2b845ce445a3d8.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.871094;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_a942596c296750899e2b53ad.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.002930;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_647215e04ed9ba6b0e82c3bd.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.002930;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_fd1578c7cf5f6b0fdbc4b8c5.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.871094;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_125bdffaf67802db8e36b30d.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.002930;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_f3b5fae98d0a9899ea2e97b9.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.002930;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_0b6057f8bb957c0571135729.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.871094;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_6dae72645f074a8ef9504b4f.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.002930;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_7078ca5294f43471f6eb9ab0.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.871094;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_aa4eef8e8d69af68d879166b.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.002930;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_6866138b2ddf16667b5caf76.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.744000px;}
.v2{vertical-align:23.850960px;}
.ls5{letter-spacing:-0.792033px;}
.ls8{letter-spacing:-0.648027px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.021407px;}
.ls1{letter-spacing:0.184675px;}
.ls0{letter-spacing:0.261540px;}
.ls4{letter-spacing:0.288012px;}
.ls7{letter-spacing:2.181407px;}
.ls9{letter-spacing:3.888162px;}
.ls2{letter-spacing:849.029082px;}
.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;}
}
.ws0{word-spacing:-16.272678px;}
.ws1{word-spacing:-11.526000px;}
.ws3f{word-spacing:-8.787151px;}
.ws42{word-spacing:-1.152048px;}
.ws5{word-spacing:-0.864032px;}
.ws7{word-spacing:-0.432018px;}
.ws6{word-spacing:-0.397458px;}
.ws2{word-spacing:0.000000px;}
.ws43{word-spacing:0.648027px;}
.ws19{word-spacing:0.792033px;}
.ws3{word-spacing:0.836674px;}
.wsb{word-spacing:1.008042px;}
.ws13{word-spacing:1.728072px;}
.ws37{word-spacing:2.031922px;}
.ws12{word-spacing:2.448102px;}
.ws36{word-spacing:2.629546px;}
.ws17{word-spacing:3.168132px;}
.ws1b{word-spacing:3.888162px;}
.wsd{word-spacing:4.608192px;}
.ws8{word-spacing:5.328222px;}
.ws20{word-spacing:6.048252px;}
.ws9{word-spacing:6.768282px;}
.ws21{word-spacing:7.488312px;}
.ws35{word-spacing:8.008162px;}
.wsf{word-spacing:8.208342px;}
.ws14{word-spacing:8.928372px;}
.ws1f{word-spacing:9.648402px;}
.ws10{word-spacing:10.368432px;}
.ws15{word-spacing:11.088462px;}
.wse{word-spacing:11.808492px;}
.ws1c{word-spacing:12.528522px;}
.ws1d{word-spacing:13.248552px;}
.ws22{word-spacing:13.968582px;}
.ws1a{word-spacing:14.688612px;}
.ws11{word-spacing:15.408642px;}
.ws23{word-spacing:16.128672px;}
.ws25{word-spacing:16.848702px;}
.ws26{word-spacing:17.568732px;}
.ws2c{word-spacing:18.288762px;}
.ws18{word-spacing:19.008792px;}
.ws2a{word-spacing:19.728822px;}
.wsc{word-spacing:20.448852px;}
.ws28{word-spacing:21.168882px;}
.ws3a{word-spacing:21.888912px;}
.ws27{word-spacing:22.608942px;}
.ws2b{word-spacing:23.328972px;}
.ws38{word-spacing:23.546386px;}
.ws1e{word-spacing:24.049002px;}
.ws29{word-spacing:24.769032px;}
.ws16{word-spacing:25.489062px;}
.wsa{word-spacing:26.209092px;}
.ws2f{word-spacing:26.929122px;}
.ws2d{word-spacing:27.649152px;}
.ws24{word-spacing:28.369182px;}
.ws34{word-spacing:29.089212px;}
.ws33{word-spacing:29.809242px;}
.ws3e{word-spacing:30.529272px;}
.ws3c{word-spacing:31.249302px;}
.ws30{word-spacing:31.969332px;}
.ws31{word-spacing:32.689362px;}
.ws32{word-spacing:33.409392px;}
.ws3d{word-spacing:34.129422px;}
.ws40{word-spacing:34.849452px;}
.ws3b{word-spacing:35.569482px;}
.ws44{word-spacing:37.009542px;}
.ws45{word-spacing:37.657569px;}
.ws39{word-spacing:38.449602px;}
.ws2e{word-spacing:43.489812px;}
.ws46{word-spacing:65.090712px;}
.ws41{word-spacing:81.651402px;}
.ws47{word-spacing:438.066252px;}
.ws4{word-spacing:668.382682px;}
._10{margin-left:-82.076220px;}
._12{margin-left:-28.367528px;}
._e{margin-left:-20.785441px;}
._a{margin-left:-11.877691px;}
._9{margin-left:-10.852440px;}
._c{margin-left:-8.002185px;}
._5{margin-left:-5.614601px;}
._8{margin-left:-3.607502px;}
._4{margin-left:-2.182800px;}
._1{margin-left:-1.081699px;}
._0{width:1.081699px;}
._f{width:2.109143px;}
._11{width:6.910069px;}
._d{width:13.797993px;}
._b{width:60.640907px;}
._3{width:71.930997px;}
._6{width:91.113755px;}
._2{width:142.565940px;}
._7{width:1238.445000px;}
.fc9{color:rgb(238,38,41);}
.fc8{color:rgb(35,31,32);}
.fc7{color:transparent;}
.fc6{color:rgb(101,98,99);}
.fc4{color:rgb(58,185,91);}
.fc5{color:rgb(59,76,167);}
.fc3{color:rgb(83,125,200);}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(117,120,127);}
.fc0{color:rgb(78,81,86);}
.fsb{font-size:38.881200px;}
.fs8{font-size:48.241800px;}
.fs7{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:54.002400px;}
.fs0{font-size:59.762400px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:66.243000px;}
.fs6{font-size:72.003000px;}
.fs5{font-size:84.243000px;}
.fs2{font-size:120.244800px;}
.fs4{font-size:144.005400px;}
.y0{bottom:0.000000px;}
.y22{bottom:46.587503px;}
.y6{bottom:46.597350px;}
.y1c{bottom:47.092800px;}
.y4b{bottom:47.910000px;}
.y5{bottom:65.489793px;}
.y4a{bottom:65.910000px;}
.y4{bottom:85.106801px;}
.y3{bottom:103.289511px;}
.y20{bottom:107.175300px;}
.y18a{bottom:110.308648px;}
.y1a3{bottom:115.537350px;}
.yd5{bottom:119.274840px;}
.y127{bottom:119.310645px;}
.y14d{bottom:119.314406px;}
.y10b{bottom:119.315353px;}
.yc7{bottom:119.317350px;}
.y1ca{bottom:119.996520px;}
.y2{bottom:121.651508px;}
.y1f{bottom:122.475300px;}
.y75{bottom:123.955035px;}
.ya8{bottom:124.168927px;}
.y177{bottom:126.476520px;}
.y189{bottom:128.670645px;}
.yed{bottom:129.031027px;}
.y49{bottom:129.212092px;}
.y1a2{bottom:129.217350px;}
.ye1{bottom:129.535268px;}
.y94{bottom:132.250635px;}
.y1e3{bottom:132.786885px;}
.y126{bottom:137.672642px;}
.y14c{bottom:137.676404px;}
.y10a{bottom:137.677350px;}
.y1e{bottom:137.775300px;}
.yc6{bottom:138.217350px;}
.yd4{bottom:144.475890px;}
.y1c9{bottom:145.197570px;}
.y188{bottom:147.032642px;}
.y74{bottom:149.156085px;}
.ya7{bottom:149.549985px;}
.y176{bottom:151.857578px;}
.y1d{bottom:153.075300px;}
.yec{bottom:154.412085px;}
.y48{bottom:154.413142px;}
.ye0{bottom:154.736318px;}
.y125{bottom:156.034640px;}
.y109{bottom:156.577350px;}
.y93{bottom:157.631693px;}
.y1e2{bottom:157.987935px;}
.yc5{bottom:159.439253px;}
.y14b{bottom:165.032642px;}
.y187{bottom:165.215353px;}
.yd3{bottom:169.856948px;}
.y1c8{bottom:170.578628px;}
.y21d{bottom:173.277098px;}
.y124{bottom:174.217350px;}
.y73{bottom:174.537143px;}
.y1a1{bottom:174.560310px;}
.ya6{bottom:174.751035px;}
.y175{bottom:177.058628px;}
.yeb{bottom:179.613135px;}
.y47{bottom:179.614192px;}
.y92{bottom:182.832743px;}
.y14a{bottom:183.215353px;}
.yc4{bottom:184.820310px;}
.y186{bottom:188.797350px;}
.y108{bottom:190.411462px;}
.y1fc{bottom:191.997870px;}
.y123{bottom:193.117350px;}
.yd2{bottom:195.057998px;}
.y1c7{bottom:195.779678px;}
.y1e1{bottom:198.309615px;}
.y21c{bottom:198.658155px;}
.y72{bottom:199.738193px;}
.y1a0{bottom:199.761360px;}
.ya5{bottom:199.952085px;}
.y149{bottom:201.577350px;}
.y174{bottom:202.439685px;}
.y185{bottom:202.477350px;}
.yea{bottom:204.994193px;}
.y46{bottom:204.995250px;}
.y91{bottom:208.033793px;}
.y150{bottom:209.998620px;}
.yc3{bottom:210.021360px;}
.y107{bottom:215.612512px;}
.y1fb{bottom:217.198920px;}
.yd1{bottom:220.259048px;}
.y148{bottom:220.477350px;}
.y1c6{bottom:220.980728px;}
.y1e0{bottom:223.510665px;}
.y21b{bottom:223.859205px;}
.y71{bottom:225.119250px;}
.y19f{bottom:225.142418px;}
.ya4{bottom:225.333142px;}
.y1b{bottom:225.517350px;}
.y173{bottom:227.640735px;}
.ye9{bottom:230.195243px;}
.y45{bottom:230.196300px;}
.y14f{bottom:235.379678px;}
.y122{bottom:235.391887px;}
.yc2{bottom:235.402418px;}
.y184{bottom:235.411035px;}
.y1fa{bottom:242.399970px;}
.ydf{bottom:245.640105px;}
.y147{bottom:245.667255px;}
.y1c5{bottom:246.361785px;}
.y90{bottom:248.355473px;}
.y21a{bottom:249.240263px;}
.y70{bottom:250.320300px;}
.y19e{bottom:250.343468px;}
.ya3{bottom:250.534192px;}
.y1a{bottom:250.895250px;}
.y172{bottom:252.841785px;}
.y44{bottom:255.384090px;}
.ye8{bottom:255.396293px;}
.y106{bottom:255.934192px;}
.yd0{bottom:260.580728px;}
.y121{bottom:260.592937px;}
.yc1{bottom:260.603468px;}
.y183{bottom:260.612085px;}
.y1df{bottom:263.832345px;}
.yde{bottom:270.841155px;}
.y146{bottom:270.868305px;}
.y1c4{bottom:271.562835px;}
.y8f{bottom:273.736530px;}
.y219{bottom:274.441313px;}
.y6f{bottom:275.521350px;}
.y19d{bottom:275.544517px;}
.ya2{bottom:275.915250px;}
.y19{bottom:276.096300px;}
.y171{bottom:278.222843px;}
.y43{bottom:280.765147px;}
.ye7{bottom:280.777350px;}
.y105{bottom:281.135242px;}
.y1f9{bottom:282.901658px;}
.ycf{bottom:285.781778px;}
.y120{bottom:285.793987px;}
.y182{bottom:285.813135px;}
.y1de{bottom:289.033395px;}
.ydd{bottom:296.042205px;}
.y145{bottom:296.069355px;}
.y1c3{bottom:296.763885px;}
.y8e{bottom:298.937580px;}
.y218{bottom:299.642363px;}
.y6e{bottom:300.902408px;}
.yc0{bottom:300.925148px;}
.y19c{bottom:300.925575px;}
.ya1{bottom:301.116300px;}
.y18{bottom:301.297350px;}
.y170{bottom:303.423893px;}
.ye6{bottom:305.437350px;}
.y104{bottom:306.336292px;}
.yce{bottom:311.162835px;}
.y11f{bottom:311.175045px;}
.y181{bottom:311.194192px;}
.y42{bottom:321.086827px;}
.ydc{bottom:321.423263px;}
.y144{bottom:321.450413px;}
.y1c2{bottom:322.144943px;}
.y1f8{bottom:323.043330px;}
.y8d{bottom:324.138630px;}
.y6d{bottom:326.103458px;}
.ybf{bottom:326.126198px;}
.y19b{bottom:326.126625px;}
.ya0{bottom:326.317350px;}
.y17{bottom:327.575250px;}
.y16f{bottom:328.624943px;}
.y1dd{bottom:329.355075px;}
.y103{bottom:331.683690px;}
.y217{bottom:332.403728px;}
.ycd{bottom:336.363885px;}
.y180{bottom:336.395242px;}
.y41{bottom:346.287877px;}
.ydb{bottom:346.624313px;}
.y143{bottom:346.651463px;}
.y1c1{bottom:347.345993px;}
.y1f7{bottom:348.244380px;}
.y9f{bottom:350.789908px;}
.y6c{bottom:351.304508px;}
.y11e{bottom:351.316717px;}
.ybe{bottom:351.327248px;}
.y16{bottom:352.776300px;}
.y16e{bottom:354.006000px;}
.y1dc{bottom:354.736133px;}
.y102{bottom:356.884740px;}
.y216{bottom:357.784785px;}
.ycc{bottom:361.744943px;}
.y17f{bottom:361.776300px;}
.y8c{bottom:364.460310px;}
.y19a{bottom:366.448305px;}
.y40{bottom:371.488927px;}
.yda{bottom:372.005370px;}
.y142{bottom:372.032520px;}
.y1c0{bottom:372.727050px;}
.y6b{bottom:376.685565px;}
.y11d{bottom:376.697775px;}
.ybd{bottom:376.708305px;}
.y15{bottom:377.977350px;}
.y1db{bottom:379.937183px;}
.y101{bottom:382.265798px;}
.y215{bottom:382.985835px;}
.y9e{bottom:383.917350px;}
.ycb{bottom:386.945993px;}
.y1f6{bottom:388.566060px;}
.y8b{bottom:389.661360px;}
.y199{bottom:391.649355px;}
.y16d{bottom:394.327680px;}
.y3f{bottom:396.869985px;}
.y141{bottom:397.233570px;}
.y1bf{bottom:397.928100px;}
.y6a{bottom:401.886615px;}
.y11c{bottom:401.898825px;}
.ybc{bottom:401.909355px;}
.y14{bottom:402.826153px;}
.y1da{bottom:405.138232px;}
.yca{bottom:412.147043px;}
.y8a{bottom:415.042418px;}
.y214{bottom:415.747200px;}
.y17a{bottom:417.007245px;}
.y198{bottom:417.030412px;}
.y16c{bottom:419.528730px;}
.y1f5{bottom:421.507433px;}
.y3e{bottom:422.071035px;}
.y100{bottom:422.407470px;}
.y1be{bottom:423.129150px;}
.y13{bottom:426.044324px;}
.y69{bottom:427.267673px;}
.y11b{bottom:427.279882px;}
.ybb{bottom:427.290413px;}
.yc9{bottom:437.528100px;}
.y140{bottom:437.555250px;}
.y89{bottom:440.243467px;}
.y213{bottom:441.128258px;}
.y179{bottom:442.208295px;}
.y197{bottom:442.231462px;}
.y16b{bottom:444.729780px;}
.y1d9{bottom:445.459912px;}
.y3d{bottom:447.272085px;}
.yff{bottom:447.788528px;}
.y1bd{bottom:448.510207px;}
.y12{bottom:449.080328px;}
.y68{bottom:452.468723px;}
.y11a{bottom:452.480932px;}
.yba{bottom:452.491463px;}
.y1f4{bottom:461.649105px;}
.yd9{bottom:462.729150px;}
.y13f{bottom:462.756300px;}
.y88{bottom:465.624525px;}
.y212{bottom:466.329308px;}
.y178{bottom:467.409345px;}
.y196{bottom:467.432512px;}
.y16a{bottom:470.110838px;}
.y1d8{bottom:470.660962px;}
.y11{bottom:472.298499px;}
.y3c{bottom:472.653142px;}
.yfe{bottom:472.989578px;}
.y1bc{bottom:473.711257px;}
.y67{bottom:477.669773px;}
.y119{bottom:477.681982px;}
.yb9{bottom:477.692513px;}
.y9d{bottom:480.571035px;}
.yd8{bottom:487.930200px;}
.y13e{bottom:487.931258px;}
.y87{bottom:490.825575px;}
.ye5{bottom:492.790403px;}
.y195{bottom:492.813570px;}
.y169{bottom:495.311888px;}
.y10{bottom:495.516671px;}
.y3b{bottom:497.854192px;}
.yfd{bottom:498.190628px;}
.y211{bottom:499.090673px;}
.y1f3{bottom:501.790778px;}
.y66{bottom:503.050830px;}
.y118{bottom:503.063040px;}
.yb8{bottom:503.073570px;}
.y9c{bottom:505.772085px;}
.y1d7{bottom:510.982643px;}
.yd7{bottom:513.311258px;}
.y13d{bottom:513.312315px;}
.y1bb{bottom:514.032938px;}
.y86{bottom:516.026625px;}
.ye4{bottom:517.991453px;}
.y194{bottom:518.014620px;}
.yf{bottom:518.552674px;}
.y168{bottom:520.512938px;}
.y3a{bottom:523.235250px;}
.yfc{bottom:523.571685px;}
.y210{bottom:524.291723px;}
.y1f2{bottom:526.991827px;}
.y65{bottom:528.251880px;}
.y117{bottom:528.264090px;}
.y9b{bottom:531.153142px;}
.y1d6{bottom:536.183693px;}
.y17e{bottom:538.512308px;}
.y13c{bottom:538.513365px;}
.y1ba{bottom:539.233988px;}
.ye{bottom:542.317350px;}
.ye3{bottom:543.192503px;}
.yb7{bottom:543.215243px;}
.y193{bottom:543.215670px;}
.y167{bottom:545.893995px;}
.y39{bottom:548.436300px;}
.yfb{bottom:548.772735px;}
.y20f{bottom:549.492773px;}
.y64{bottom:553.632938px;}
.y116{bottom:553.645147px;}
.y85{bottom:556.348305px;}
.y9a{bottom:556.354192px;}
.y17d{bottom:563.893365px;}
.y13b{bottom:563.894423px;}
.y1b9{bottom:564.615045px;}
.y1f1{bottom:567.313508px;}
.yd{bottom:567.516300px;}
.ye2{bottom:568.573560px;}
.yb6{bottom:568.596300px;}
.y166{bottom:571.095045px;}
.y38{bottom:573.637350px;}
.yfa{bottom:574.153793px;}
.y1d5{bottom:576.505373px;}
.y63{bottom:578.833988px;}
.y84{bottom:581.549355px;}
.y99{bottom:581.555242px;}
.y192{bottom:583.514183px;}
.y17c{bottom:589.094415px;}
.y13a{bottom:589.095473px;}
.y20e{bottom:589.814453px;}
.y1b8{bottom:589.816095px;}
.y1f0{bottom:592.514558px;}
.yc{bottom:592.717350px;}
.yb5{bottom:593.774610px;}
.y115{bottom:593.786820px;}
.y165{bottom:596.476103px;}
.yf9{bottom:599.354843px;}
.y1d4{bottom:601.886430px;}
.y62{bottom:604.035038px;}
.y83{bottom:606.930412px;}
.y98{bottom:606.936300px;}
.y37{bottom:607.657350px;}
.y191{bottom:608.895240px;}
.yb{bottom:614.136600px;}
.y17b{bottom:614.295465px;}
.y139{bottom:614.296523px;}
.y20d{bottom:615.015503px;}
.y1b7{bottom:615.017145px;}
.yb4{bottom:619.155668px;}
.y114{bottom:619.167877px;}
.y164{bottom:621.677153px;}
.y1d3{bottom:627.087480px;}
.y61{bottom:629.416095px;}
.y82{bottom:632.131462px;}
.y97{bottom:632.137350px;}
.y1ef{bottom:633.016245px;}
.y190{bottom:634.096290px;}
.ya{bottom:635.197350px;}
.yf8{bottom:639.676523px;}
.y138{bottom:639.677580px;}
.y1b6{bottom:640.398203px;}
.yb3{bottom:644.356718px;}
.y113{bottom:644.368927px;}
.y163{bottom:646.878203px;}
.y60{bottom:654.617145px;}
.y20c{bottom:655.517190px;}
.y81{bottom:657.512520px;}
.y1ee{bottom:658.217295px;}
.y96{bottom:658.237350px;}
.y18f{bottom:659.297340px;}
.y1d2{bottom:659.848845px;}
.yf7{bottom:664.877573px;}
.y137{bottom:664.878630px;}
.y1b5{bottom:665.599252px;}
.yb2{bottom:669.557768px;}
.y112{bottom:669.569977px;}
.y162{bottom:672.259260px;}
.y9{bottom:676.414873px;}
.y5f{bottom:679.818195px;}
.y20b{bottom:680.718240px;}
.y18e{bottom:684.678398px;}
.y1d1{bottom:685.049895px;}
.yf6{bottom:690.078623px;}
.y136{bottom:690.079680px;}
.y1b4{bottom:690.800302px;}
.yb1{bottom:694.938825px;}
.y111{bottom:694.951035px;}
.y161{bottom:697.460310px;}
.y80{bottom:697.654193px;}
.y1ed{bottom:698.538975px;}
.y5e{bottom:705.199253px;}
.y8{bottom:709.356108px;}
.y18d{bottom:709.879448px;}
.yf5{bottom:715.459680px;}
.y135{bottom:715.460738px;}
.y1b3{bottom:716.181360px;}
.yb0{bottom:720.139875px;}
.y110{bottom:720.152085px;}
.y20a{bottom:721.039920px;}
.y7f{bottom:723.035250px;}
.y1ec{bottom:723.740025px;}
.y1d0{bottom:725.371575px;}
.y5d{bottom:730.400303px;}
.y18c{bottom:735.080498px;}
.y228{bottom:736.160550px;}
.y160{bottom:737.781990px;}
.y36{bottom:738.149475px;}
.yf4{bottom:740.660730px;}
.y134{bottom:740.661788px;}
.y1b2{bottom:741.382410px;}
.y7{bottom:742.477350px;}
.yaf{bottom:745.520933px;}
.y10f{bottom:745.533142px;}
.y7e{bottom:748.236300px;}
.y1cf{bottom:750.572625px;}
.y5c{bottom:755.781360px;}
.y35{bottom:759.210352px;}
.y18b{bottom:760.461555px;}
.y209{bottom:761.181593px;}
.y15f{bottom:762.983040px;}
.y1eb{bottom:764.061705px;}
.yf3{bottom:766.041788px;}
.y1b1{bottom:766.763467px;}
.y1{bottom:769.117350px;}
.yd6{bottom:770.721982px;}
.y10e{bottom:770.734192px;}
.y7d{bottom:773.437350px;}
.y227{bottom:776.302223px;}
.y34{bottom:780.271230px;}
.y5b{bottom:780.982410px;}
.y133{bottom:780.983468px;}
.yae{bottom:785.662605px;}
.y15e{bottom:788.364097px;}
.y1ce{bottom:791.074313px;}
.yf2{bottom:791.242837px;}
.y208{bottom:793.942958px;}
.y95{bottom:795.923033px;}
.y10d{bottom:795.935242px;}
.y1ea{bottom:796.823070px;}
.y7c{bottom:799.537350px;}
.y33{bottom:801.152100px;}
.y226{bottom:801.503272px;}
.y14e{bottom:806.183460px;}
.y132{bottom:806.184518px;}
.y1b0{bottom:806.905140px;}
.yad{bottom:811.043662px;}
.y15d{bottom:813.565147px;}
.y207{bottom:819.144008px;}
.y5a{bottom:821.304090px;}
.y10c{bottom:821.316300px;}
.y32{bottom:822.212977px;}
.y225{bottom:826.704322px;}
.y1cd{bottom:831.215985px;}
.yf1{bottom:831.564517px;}
.y1af{bottom:832.286197px;}
.yac{bottom:836.244713px;}
.y1e9{bottom:836.964743px;}
.y15c{bottom:838.766197px;}
.y31{bottom:843.273855px;}
.y59{bottom:846.505140px;}
.y131{bottom:846.506198px;}
.yf0{bottom:856.765568px;}
.y1ae{bottom:857.487247px;}
.y206{bottom:859.465688px;}
.yab{bottom:861.445763px;}
.y1e8{bottom:862.345800px;}
.y1cc{bottom:863.977350px;}
.y15b{bottom:864.147255px;}
.y30{bottom:864.154725px;}
.y224{bottom:867.206010px;}
.y58{bottom:871.706190px;}
.y130{bottom:871.707248px;}
.yef{bottom:881.966617px;}
.y205{bottom:884.846745px;}
.y2f{bottom:885.215602px;}
.yaa{bottom:886.826820px;}
.y15a{bottom:889.348305px;}
.y57{bottom:897.087248px;}
.y12f{bottom:897.088305px;}
.y1ad{bottom:897.808927px;}
.y1e7{bottom:902.667480px;}
.y1cb{bottom:903.937350px;}
.y2e{bottom:906.276480px;}
.yee{bottom:907.347675px;}
.y223{bottom:907.347683px;}
.ya9{bottom:912.027870px;}
.y56{bottom:922.288297px;}
.y12e{bottom:922.289355px;}
.y1ac{bottom:923.009977px;}
.y204{bottom:925.168425px;}
.y2d{bottom:927.157350px;}
.y1e6{bottom:927.868530px;}
.y159{bottom:929.669985px;}
.y222{bottom:932.548733px;}
.y7b{bottom:937.408928px;}
.y55{bottom:947.669355px;}
.y12d{bottom:947.670413px;}
.y1ab{bottom:948.391035px;}
.y203{bottom:950.369475px;}
.y2c{bottom:950.729467px;}
.y158{bottom:954.871035px;}
.y7a{bottom:962.609978px;}
.y1e5{bottom:968.190210px;}
.y2b{bottom:971.790345px;}
.y54{bottom:972.870405px;}
.y221{bottom:972.870413px;}
.y12c{bottom:972.871463px;}
.y1aa{bottom:973.592085px;}
.y157{bottom:980.252093px;}
.y202{bottom:983.130840px;}
.y79{bottom:987.811028px;}
.y2a{bottom:992.851222px;}
.y53{bottom:998.071455px;}
.y220{bottom:998.071463px;}
.y12b{bottom:998.072513px;}
.y1a9{bottom:998.793135px;}
.y156{bottom:1005.453143px;}
.y201{bottom:1008.331890px;}
.y1e4{bottom:1008.511890px;}
.y78{bottom:1013.192085px;}
.y29{bottom:1013.912100px;}
.y52{bottom:1023.452513px;}
.y21f{bottom:1023.452520px;}
.y12a{bottom:1023.453570px;}
.y1a8{bottom:1024.174192px;}
.y155{bottom:1030.654193px;}
.y28{bottom:1034.792970px;}
.y77{bottom:1038.393135px;}
.y51{bottom:1048.653563px;}
.y21e{bottom:1048.653570px;}
.y129{bottom:1048.654620px;}
.y200{bottom:1048.833578px;}
.y1a7{bottom:1049.375243px;}
.y27{bottom:1055.853848px;}
.y154{bottom:1056.035250px;}
.y76{bottom:1063.594185px;}
.yc8{bottom:1073.854613px;}
.y128{bottom:1073.855670px;}
.y1a6{bottom:1074.576292px;}
.y26{bottom:1076.914725px;}
.y153{bottom:1081.236300px;}
.y50{bottom:1088.975243px;}
.y1ff{bottom:1088.975250px;}
.y25{bottom:1097.795595px;}
.y1a5{bottom:1099.957350px;}
.y152{bottom:1106.437350px;}
.y4f{bottom:1114.176293px;}
.y1fe{bottom:1114.176300px;}
.y24{bottom:1118.856473px;}
.y1a4{bottom:1125.877350px;}
.y151{bottom:1131.097350px;}
.y1fd{bottom:1139.377350px;}
.y4e{bottom:1139.557350px;}
.y23{bottom:1139.917350px;}
.y4d{bottom:1201.181100px;}
.y21{bottom:1206.157350px;}
.y4c{bottom:1220.681100px;}
.h19{height:32.065599px;}
.hb{height:34.913086px;}
.hc{height:36.606445px;}
.h10{height:36.966797px;}
.h17{height:49.220801px;}
.h2{height:49.286471px;}
.h9{height:49.888797px;}
.ha{height:54.631068px;}
.h3{height:54.661296px;}
.hd{height:54.670457px;}
.h6{height:57.587988px;}
.h8{height:59.381380px;}
.he{height:59.434420px;}
.h15{height:63.549582px;}
.h14{height:63.594192px;}
.h12{height:63.636312px;}
.h1a{height:63.638022px;}
.h16{height:63.649722px;}
.h18{height:63.670782px;}
.h13{height:63.679992px;}
.hf{height:63.925641px;}
.h11{height:66.117047px;}
.h7{height:69.475794px;}
.h4{height:99.166732px;}
.h5{height:118.762266px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:122.244000px;}
.x2{left:127.580169px;}
.x9{left:170.065741px;}
.x7{left:436.763400px;}
.x1{left:491.906700px;}
.x6{left:622.767578px;}
.x5{left:624.390532px;}
.x4{left:630.683617px;}
.x3{left:765.304739px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.661333pt;}
.v2{vertical-align:21.200853pt;}
.ls5{letter-spacing:-0.704029pt;}
.ls8{letter-spacing:-0.576024pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019029pt;}
.ls1{letter-spacing:0.164156pt;}
.ls0{letter-spacing:0.232480pt;}
.ls4{letter-spacing:0.256011pt;}
.ls7{letter-spacing:1.939029pt;}
.ls9{letter-spacing:3.456144pt;}
.ls2{letter-spacing:754.692517pt;}
.ws0{word-spacing:-14.464603pt;}
.ws1{word-spacing:-10.245333pt;}
.ws3f{word-spacing:-7.810801pt;}
.ws42{word-spacing:-1.024043pt;}
.ws5{word-spacing:-0.768029pt;}
.ws7{word-spacing:-0.384016pt;}
.ws6{word-spacing:-0.353296pt;}
.ws2{word-spacing:0.000000pt;}
.ws43{word-spacing:0.576024pt;}
.ws19{word-spacing:0.704029pt;}
.ws3{word-spacing:0.743710pt;}
.wsb{word-spacing:0.896037pt;}
.ws13{word-spacing:1.536064pt;}
.ws37{word-spacing:1.806153pt;}
.ws12{word-spacing:2.176091pt;}
.ws36{word-spacing:2.337374pt;}
.ws17{word-spacing:2.816117pt;}
.ws1b{word-spacing:3.456144pt;}
.wsd{word-spacing:4.096171pt;}
.ws8{word-spacing:4.736197pt;}
.ws20{word-spacing:5.376224pt;}
.ws9{word-spacing:6.016251pt;}
.ws21{word-spacing:6.656277pt;}
.ws35{word-spacing:7.118366pt;}
.wsf{word-spacing:7.296304pt;}
.ws14{word-spacing:7.936331pt;}
.ws1f{word-spacing:8.576357pt;}
.ws10{word-spacing:9.216384pt;}
.ws15{word-spacing:9.856411pt;}
.wse{word-spacing:10.496437pt;}
.ws1c{word-spacing:11.136464pt;}
.ws1d{word-spacing:11.776491pt;}
.ws22{word-spacing:12.416517pt;}
.ws1a{word-spacing:13.056544pt;}
.ws11{word-spacing:13.696571pt;}
.ws23{word-spacing:14.336597pt;}
.ws25{word-spacing:14.976624pt;}
.ws26{word-spacing:15.616651pt;}
.ws2c{word-spacing:16.256677pt;}
.ws18{word-spacing:16.896704pt;}
.ws2a{word-spacing:17.536731pt;}
.wsc{word-spacing:18.176757pt;}
.ws28{word-spacing:18.816784pt;}
.ws3a{word-spacing:19.456811pt;}
.ws27{word-spacing:20.096837pt;}
.ws2b{word-spacing:20.736864pt;}
.ws38{word-spacing:20.930121pt;}
.ws1e{word-spacing:21.376891pt;}
.ws29{word-spacing:22.016917pt;}
.ws16{word-spacing:22.656944pt;}
.wsa{word-spacing:23.296971pt;}
.ws2f{word-spacing:23.936997pt;}
.ws2d{word-spacing:24.577024pt;}
.ws24{word-spacing:25.217051pt;}
.ws34{word-spacing:25.857077pt;}
.ws33{word-spacing:26.497104pt;}
.ws3e{word-spacing:27.137131pt;}
.ws3c{word-spacing:27.777157pt;}
.ws30{word-spacing:28.417184pt;}
.ws31{word-spacing:29.057211pt;}
.ws32{word-spacing:29.697237pt;}
.ws3d{word-spacing:30.337264pt;}
.ws40{word-spacing:30.977291pt;}
.ws3b{word-spacing:31.617317pt;}
.ws44{word-spacing:32.897371pt;}
.ws45{word-spacing:33.473395pt;}
.ws39{word-spacing:34.177424pt;}
.ws2e{word-spacing:38.657611pt;}
.ws46{word-spacing:57.858411pt;}
.ws41{word-spacing:72.579024pt;}
.ws47{word-spacing:389.392224pt;}
.ws4{word-spacing:594.117939pt;}
._10{margin-left:-72.956640pt;}
._12{margin-left:-25.215580pt;}
._e{margin-left:-18.475948pt;}
._a{margin-left:-10.557948pt;}
._9{margin-left:-9.646613pt;}
._c{margin-left:-7.113054pt;}
._5{margin-left:-4.990756pt;}
._8{margin-left:-3.206668pt;}
._4{margin-left:-1.940267pt;}
._1{margin-left:-0.961511pt;}
._0{width:0.961511pt;}
._f{width:1.874793pt;}
._11{width:6.142284pt;}
._d{width:12.264883pt;}
._b{width:53.903029pt;}
._3{width:63.938664pt;}
._6{width:80.990004pt;}
._2{width:126.725280pt;}
._7{width:1100.840000pt;}
.fsb{font-size:34.561067pt;}
.fs8{font-size:42.881600pt;}
.fs7{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:48.002133pt;}
.fs0{font-size:53.122133pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:58.882667pt;}
.fs6{font-size:64.002667pt;}
.fs5{font-size:74.882667pt;}
.fs2{font-size:106.884267pt;}
.fs4{font-size:128.004800pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:41.411114pt;}
.y6{bottom:41.419867pt;}
.y1c{bottom:41.860267pt;}
.y4b{bottom:42.586667pt;}
.y5{bottom:58.213149pt;}
.y4a{bottom:58.586667pt;}
.y4{bottom:75.650490pt;}
.y3{bottom:91.812899pt;}
.y20{bottom:95.266933pt;}
.y18a{bottom:98.052131pt;}
.y1a3{bottom:102.699867pt;}
.yd5{bottom:106.022080pt;}
.y127{bottom:106.053907pt;}
.y14d{bottom:106.057250pt;}
.y10b{bottom:106.058091pt;}
.yc7{bottom:106.059867pt;}
.y1ca{bottom:106.663573pt;}
.y2{bottom:108.134674pt;}
.y1f{bottom:108.866933pt;}
.y75{bottom:110.182253pt;}
.ya8{bottom:110.372380pt;}
.y177{bottom:112.423573pt;}
.y189{bottom:114.373907pt;}
.yed{bottom:114.694247pt;}
.y49{bottom:114.855193pt;}
.y1a2{bottom:114.859867pt;}
.ye1{bottom:115.142460pt;}
.y94{bottom:117.556120pt;}
.y1e3{bottom:118.032787pt;}
.y126{bottom:122.375682pt;}
.y14c{bottom:122.379026pt;}
.y10a{bottom:122.379867pt;}
.y1e{bottom:122.466933pt;}
.yc6{bottom:122.859867pt;}
.yd4{bottom:128.423013pt;}
.y1c9{bottom:129.064507pt;}
.y188{bottom:130.695682pt;}
.y74{bottom:132.583187pt;}
.ya7{bottom:132.933320pt;}
.y176{bottom:134.984513pt;}
.y1d{bottom:136.066933pt;}
.yec{bottom:137.255187pt;}
.y48{bottom:137.256127pt;}
.ye0{bottom:137.543393pt;}
.y125{bottom:138.697458pt;}
.y109{bottom:139.179867pt;}
.y93{bottom:140.117060pt;}
.y1e2{bottom:140.433720pt;}
.yc5{bottom:141.723780pt;}
.y14b{bottom:146.695682pt;}
.y187{bottom:146.858091pt;}
.yd3{bottom:150.983953pt;}
.y1c8{bottom:151.625447pt;}
.y21d{bottom:154.024087pt;}
.y124{bottom:154.859867pt;}
.y73{bottom:155.144127pt;}
.y1a1{bottom:155.164720pt;}
.ya6{bottom:155.334253pt;}
.y175{bottom:157.385447pt;}
.yeb{bottom:159.656120pt;}
.y47{bottom:159.657060pt;}
.y92{bottom:162.517993pt;}
.y14a{bottom:162.858091pt;}
.yc4{bottom:164.284720pt;}
.y186{bottom:167.819867pt;}
.y108{bottom:169.254633pt;}
.y1fc{bottom:170.664773pt;}
.y123{bottom:171.659867pt;}
.yd2{bottom:173.384887pt;}
.y1c7{bottom:174.026380pt;}
.y1e1{bottom:176.275213pt;}
.y21c{bottom:176.585027pt;}
.y72{bottom:177.545060pt;}
.y1a0{bottom:177.565653pt;}
.ya5{bottom:177.735187pt;}
.y149{bottom:179.179867pt;}
.y174{bottom:179.946387pt;}
.y185{bottom:179.979867pt;}
.yea{bottom:182.217060pt;}
.y46{bottom:182.218000pt;}
.y91{bottom:184.918927pt;}
.y150{bottom:186.665440pt;}
.yc3{bottom:186.685653pt;}
.y107{bottom:191.655567pt;}
.y1fb{bottom:193.065707pt;}
.yd1{bottom:195.785820pt;}
.y148{bottom:195.979867pt;}
.y1c6{bottom:196.427313pt;}
.y1e0{bottom:198.676147pt;}
.y21b{bottom:198.985960pt;}
.y71{bottom:200.106000pt;}
.y19f{bottom:200.126593pt;}
.ya4{bottom:200.296127pt;}
.y1b{bottom:200.459867pt;}
.y173{bottom:202.347320pt;}
.ye9{bottom:204.617993pt;}
.y45{bottom:204.618933pt;}
.y14f{bottom:209.226380pt;}
.y122{bottom:209.237233pt;}
.yc2{bottom:209.246593pt;}
.y184{bottom:209.254253pt;}
.y1fa{bottom:215.466640pt;}
.ydf{bottom:218.346760pt;}
.y147{bottom:218.370893pt;}
.y1c5{bottom:218.988253pt;}
.y90{bottom:220.760420pt;}
.y21a{bottom:221.546900pt;}
.y70{bottom:222.506933pt;}
.y19e{bottom:222.527527pt;}
.ya3{bottom:222.697060pt;}
.y1a{bottom:223.018000pt;}
.y172{bottom:224.748253pt;}
.y44{bottom:227.008080pt;}
.ye8{bottom:227.018927pt;}
.y106{bottom:227.497060pt;}
.yd0{bottom:231.627313pt;}
.y121{bottom:231.638167pt;}
.yc1{bottom:231.647527pt;}
.y183{bottom:231.655187pt;}
.y1df{bottom:234.517640pt;}
.yde{bottom:240.747693pt;}
.y146{bottom:240.771827pt;}
.y1c4{bottom:241.389187pt;}
.y8f{bottom:243.321360pt;}
.y219{bottom:243.947833pt;}
.y6f{bottom:244.907867pt;}
.y19d{bottom:244.928460pt;}
.ya2{bottom:245.258000pt;}
.y19{bottom:245.418933pt;}
.y171{bottom:247.309193pt;}
.y43{bottom:249.569020pt;}
.ye7{bottom:249.579867pt;}
.y105{bottom:249.897993pt;}
.y1f9{bottom:251.468140pt;}
.ycf{bottom:254.028247pt;}
.y120{bottom:254.039100pt;}
.y182{bottom:254.056120pt;}
.y1de{bottom:256.918573pt;}
.ydd{bottom:263.148627pt;}
.y145{bottom:263.172760pt;}
.y1c3{bottom:263.790120pt;}
.y8e{bottom:265.722293pt;}
.y218{bottom:266.348767pt;}
.y6e{bottom:267.468807pt;}
.yc0{bottom:267.489020pt;}
.y19c{bottom:267.489400pt;}
.ya1{bottom:267.658933pt;}
.y18{bottom:267.819867pt;}
.y170{bottom:269.710127pt;}
.ye6{bottom:271.499867pt;}
.y104{bottom:272.298927pt;}
.yce{bottom:276.589187pt;}
.y11f{bottom:276.600040pt;}
.y181{bottom:276.617060pt;}
.y42{bottom:285.410513pt;}
.ydc{bottom:285.709567pt;}
.y144{bottom:285.733700pt;}
.y1c2{bottom:286.351060pt;}
.y1f8{bottom:287.149627pt;}
.y8d{bottom:288.123227pt;}
.y6d{bottom:289.869740pt;}
.ybf{bottom:289.889953pt;}
.y19b{bottom:289.890333pt;}
.ya0{bottom:290.059867pt;}
.y17{bottom:291.178000pt;}
.y16f{bottom:292.111060pt;}
.y1dd{bottom:292.760067pt;}
.y103{bottom:294.829947pt;}
.y217{bottom:295.469980pt;}
.ycd{bottom:298.990120pt;}
.y180{bottom:299.017993pt;}
.y41{bottom:307.811447pt;}
.ydb{bottom:308.110500pt;}
.y143{bottom:308.134633pt;}
.y1c1{bottom:308.751993pt;}
.y1f7{bottom:309.550560pt;}
.y9f{bottom:311.813251pt;}
.y6c{bottom:312.270673pt;}
.y11e{bottom:312.281527pt;}
.ybe{bottom:312.290887pt;}
.y16{bottom:313.578933pt;}
.y16e{bottom:314.672000pt;}
.y1dc{bottom:315.321007pt;}
.y102{bottom:317.230880pt;}
.y216{bottom:318.030920pt;}
.ycc{bottom:321.551060pt;}
.y17f{bottom:321.578933pt;}
.y8c{bottom:323.964720pt;}
.y19a{bottom:325.731827pt;}
.y40{bottom:330.212380pt;}
.yda{bottom:330.671440pt;}
.y142{bottom:330.695573pt;}
.y1c0{bottom:331.312933pt;}
.y6b{bottom:334.831613pt;}
.y11d{bottom:334.842467pt;}
.ybd{bottom:334.851827pt;}
.y15{bottom:335.979867pt;}
.y1db{bottom:337.721940pt;}
.y101{bottom:339.791820pt;}
.y215{bottom:340.431853pt;}
.y9e{bottom:341.259867pt;}
.ycb{bottom:343.951993pt;}
.y1f6{bottom:345.392053pt;}
.y8b{bottom:346.365653pt;}
.y199{bottom:348.132760pt;}
.y16d{bottom:350.513493pt;}
.y3f{bottom:352.773320pt;}
.y141{bottom:353.096507pt;}
.y1bf{bottom:353.713867pt;}
.y6a{bottom:357.232547pt;}
.y11c{bottom:357.243400pt;}
.ybc{bottom:357.252760pt;}
.y14{bottom:358.067691pt;}
.y1da{bottom:360.122873pt;}
.yca{bottom:366.352927pt;}
.y8a{bottom:368.926593pt;}
.y214{bottom:369.553067pt;}
.y17a{bottom:370.673107pt;}
.y198{bottom:370.693700pt;}
.y16c{bottom:372.914427pt;}
.y1f5{bottom:374.673273pt;}
.y3e{bottom:375.174253pt;}
.y100{bottom:375.473307pt;}
.y1be{bottom:376.114800pt;}
.y13{bottom:378.706066pt;}
.y69{bottom:379.793487pt;}
.y11b{bottom:379.804340pt;}
.ybb{bottom:379.813700pt;}
.yc9{bottom:388.913867pt;}
.y140{bottom:388.938000pt;}
.y89{bottom:391.327527pt;}
.y213{bottom:392.114007pt;}
.y179{bottom:393.074040pt;}
.y197{bottom:393.094633pt;}
.y16b{bottom:395.315360pt;}
.y1d9{bottom:395.964367pt;}
.y3d{bottom:397.575187pt;}
.yff{bottom:398.034247pt;}
.y1bd{bottom:398.675740pt;}
.y12{bottom:399.182513pt;}
.y68{bottom:402.194420pt;}
.y11a{bottom:402.205273pt;}
.yba{bottom:402.214633pt;}
.y1f4{bottom:410.354760pt;}
.yd9{bottom:411.314800pt;}
.y13f{bottom:411.338933pt;}
.y88{bottom:413.888467pt;}
.y212{bottom:414.514940pt;}
.y178{bottom:415.474973pt;}
.y196{bottom:415.495567pt;}
.y16a{bottom:417.876300pt;}
.y1d8{bottom:418.365300pt;}
.y11{bottom:419.820888pt;}
.y3c{bottom:420.136127pt;}
.yfe{bottom:420.435180pt;}
.y1bc{bottom:421.076673pt;}
.y67{bottom:424.595353pt;}
.y119{bottom:424.606207pt;}
.yb9{bottom:424.615567pt;}
.y9d{bottom:427.174253pt;}
.yd8{bottom:433.715733pt;}
.y13e{bottom:433.716673pt;}
.y87{bottom:436.289400pt;}
.ye5{bottom:438.035913pt;}
.y195{bottom:438.056507pt;}
.y169{bottom:440.277233pt;}
.y10{bottom:440.459263pt;}
.y3b{bottom:442.537060pt;}
.yfd{bottom:442.836113pt;}
.y211{bottom:443.636153pt;}
.y1f3{bottom:446.036247pt;}
.y66{bottom:447.156293pt;}
.y118{bottom:447.167147pt;}
.yb8{bottom:447.176507pt;}
.y9c{bottom:449.575187pt;}
.y1d7{bottom:454.206793pt;}
.yd7{bottom:456.276673pt;}
.y13d{bottom:456.277613pt;}
.y1bb{bottom:456.918167pt;}
.y86{bottom:458.690333pt;}
.ye4{bottom:460.436847pt;}
.y194{bottom:460.457440pt;}
.yf{bottom:460.935710pt;}
.y168{bottom:462.678167pt;}
.y3a{bottom:465.098000pt;}
.yfc{bottom:465.397053pt;}
.y210{bottom:466.037087pt;}
.y1f2{bottom:468.437180pt;}
.y65{bottom:469.557227pt;}
.y117{bottom:469.568080pt;}
.y9b{bottom:472.136127pt;}
.y1d6{bottom:476.607727pt;}
.y17e{bottom:478.677607pt;}
.y13c{bottom:478.678547pt;}
.y1ba{bottom:479.319100pt;}
.ye{bottom:482.059867pt;}
.ye3{bottom:482.837780pt;}
.yb7{bottom:482.857993pt;}
.y193{bottom:482.858373pt;}
.y167{bottom:485.239107pt;}
.y39{bottom:487.498933pt;}
.yfb{bottom:487.797987pt;}
.y20f{bottom:488.438020pt;}
.y64{bottom:492.118167pt;}
.y116{bottom:492.129020pt;}
.y85{bottom:494.531827pt;}
.y9a{bottom:494.537060pt;}
.y17d{bottom:501.238547pt;}
.y13b{bottom:501.239487pt;}
.y1b9{bottom:501.880040pt;}
.y1f1{bottom:504.278673pt;}
.yd{bottom:504.458933pt;}
.ye2{bottom:505.398720pt;}
.yb6{bottom:505.418933pt;}
.y166{bottom:507.640040pt;}
.y38{bottom:509.899867pt;}
.yfa{bottom:510.358927pt;}
.y1d5{bottom:512.449220pt;}
.y63{bottom:514.519100pt;}
.y84{bottom:516.932760pt;}
.y99{bottom:516.937993pt;}
.y192{bottom:518.679273pt;}
.y17c{bottom:523.639480pt;}
.y13a{bottom:523.640420pt;}
.y20e{bottom:524.279513pt;}
.y1b8{bottom:524.280973pt;}
.y1f0{bottom:526.679607pt;}
.yc{bottom:526.859867pt;}
.yb5{bottom:527.799653pt;}
.y115{bottom:527.810507pt;}
.y165{bottom:530.200980pt;}
.yf9{bottom:532.759860pt;}
.y1d4{bottom:535.010160pt;}
.y62{bottom:536.920033pt;}
.y83{bottom:539.493700pt;}
.y98{bottom:539.498933pt;}
.y37{bottom:540.139867pt;}
.y191{bottom:541.240213pt;}
.yb{bottom:545.899200pt;}
.y17b{bottom:546.040413pt;}
.y139{bottom:546.041353pt;}
.y20d{bottom:546.680447pt;}
.y1b7{bottom:546.681907pt;}
.yb4{bottom:550.360593pt;}
.y114{bottom:550.371447pt;}
.y164{bottom:552.601913pt;}
.y1d3{bottom:557.411093pt;}
.y61{bottom:559.480973pt;}
.y82{bottom:561.894633pt;}
.y97{bottom:561.899867pt;}
.y1ef{bottom:562.681107pt;}
.y190{bottom:563.641147pt;}
.ya{bottom:564.619867pt;}
.yf8{bottom:568.601353pt;}
.y138{bottom:568.602293pt;}
.y1b6{bottom:569.242847pt;}
.yb3{bottom:572.761527pt;}
.y113{bottom:572.772380pt;}
.y163{bottom:575.002847pt;}
.y60{bottom:581.881907pt;}
.y20c{bottom:582.681947pt;}
.y81{bottom:584.455573pt;}
.y1ee{bottom:585.082040pt;}
.y96{bottom:585.099867pt;}
.y18f{bottom:586.042080pt;}
.y1d2{bottom:586.532307pt;}
.yf7{bottom:591.002287pt;}
.y137{bottom:591.003227pt;}
.y1b5{bottom:591.643780pt;}
.yb2{bottom:595.162460pt;}
.y112{bottom:595.173313pt;}
.y162{bottom:597.563787pt;}
.y9{bottom:601.257665pt;}
.y5f{bottom:604.282840pt;}
.y20b{bottom:605.082880pt;}
.y18e{bottom:608.603020pt;}
.y1d1{bottom:608.933240pt;}
.yf6{bottom:613.403220pt;}
.y136{bottom:613.404160pt;}
.y1b4{bottom:614.044713pt;}
.yb1{bottom:617.723400pt;}
.y111{bottom:617.734253pt;}
.y161{bottom:619.964720pt;}
.y80{bottom:620.137060pt;}
.y1ed{bottom:620.923533pt;}
.y5e{bottom:626.843780pt;}
.y8{bottom:630.538763pt;}
.y18d{bottom:631.003953pt;}
.yf5{bottom:635.964160pt;}
.y135{bottom:635.965100pt;}
.y1b3{bottom:636.605653pt;}
.yb0{bottom:640.124333pt;}
.y110{bottom:640.135187pt;}
.y20a{bottom:640.924373pt;}
.y7f{bottom:642.698000pt;}
.y1ec{bottom:643.324467pt;}
.y1d0{bottom:644.774733pt;}
.y5d{bottom:649.244713pt;}
.y18c{bottom:653.404887pt;}
.y228{bottom:654.364933pt;}
.y160{bottom:655.806213pt;}
.y36{bottom:656.132867pt;}
.yf4{bottom:658.365093pt;}
.y134{bottom:658.366033pt;}
.y1b2{bottom:659.006587pt;}
.y7{bottom:659.979867pt;}
.yaf{bottom:662.685273pt;}
.y10f{bottom:662.696127pt;}
.y7e{bottom:665.098933pt;}
.y1cf{bottom:667.175667pt;}
.y5c{bottom:671.805653pt;}
.y35{bottom:674.853647pt;}
.y18b{bottom:675.965827pt;}
.y209{bottom:676.605860pt;}
.y15f{bottom:678.207147pt;}
.y1eb{bottom:679.165960pt;}
.yf3{bottom:680.926033pt;}
.y1b1{bottom:681.567527pt;}
.y1{bottom:683.659867pt;}
.yd6{bottom:685.086207pt;}
.y10e{bottom:685.097060pt;}
.y7d{bottom:687.499867pt;}
.y227{bottom:690.046420pt;}
.y34{bottom:693.574427pt;}
.y5b{bottom:694.206587pt;}
.y133{bottom:694.207527pt;}
.yae{bottom:698.366760pt;}
.y15e{bottom:700.768087pt;}
.y1ce{bottom:703.177167pt;}
.yf2{bottom:703.326967pt;}
.y208{bottom:705.727073pt;}
.y95{bottom:707.487140pt;}
.y10d{bottom:707.497993pt;}
.y1ea{bottom:708.287173pt;}
.y7c{bottom:710.699867pt;}
.y33{bottom:712.135200pt;}
.y226{bottom:712.447353pt;}
.y14e{bottom:716.607520pt;}
.y132{bottom:716.608460pt;}
.y1b0{bottom:717.249013pt;}
.yad{bottom:720.927700pt;}
.y15d{bottom:723.169020pt;}
.y207{bottom:728.128007pt;}
.y5a{bottom:730.048080pt;}
.y10c{bottom:730.058933pt;}
.y32{bottom:730.855980pt;}
.y225{bottom:734.848287pt;}
.y1cd{bottom:738.858653pt;}
.yf1{bottom:739.168460pt;}
.y1af{bottom:739.809953pt;}
.yac{bottom:743.328633pt;}
.y1e9{bottom:743.968660pt;}
.y15c{bottom:745.569953pt;}
.y31{bottom:749.576760pt;}
.y59{bottom:752.449013pt;}
.y131{bottom:752.449953pt;}
.yf0{bottom:761.569393pt;}
.y1ae{bottom:762.210887pt;}
.y206{bottom:763.969500pt;}
.yab{bottom:765.729567pt;}
.y1e8{bottom:766.529600pt;}
.y1cc{bottom:767.979867pt;}
.y15b{bottom:768.130893pt;}
.y30{bottom:768.137533pt;}
.y224{bottom:770.849787pt;}
.y58{bottom:774.849947pt;}
.y130{bottom:774.850887pt;}
.yef{bottom:783.970327pt;}
.y205{bottom:786.530440pt;}
.y2f{bottom:786.858313pt;}
.yaa{bottom:788.290507pt;}
.y15a{bottom:790.531827pt;}
.y57{bottom:797.410887pt;}
.y12f{bottom:797.411827pt;}
.y1ad{bottom:798.052380pt;}
.y1e7{bottom:802.371093pt;}
.y1cb{bottom:803.499867pt;}
.y2e{bottom:805.579093pt;}
.yee{bottom:806.531267pt;}
.y223{bottom:806.531273pt;}
.ya9{bottom:810.691440pt;}
.y56{bottom:819.811820pt;}
.y12e{bottom:819.812760pt;}
.y1ac{bottom:820.453313pt;}
.y204{bottom:822.371933pt;}
.y2d{bottom:824.139867pt;}
.y1e6{bottom:824.772027pt;}
.y159{bottom:826.373320pt;}
.y222{bottom:828.932207pt;}
.y7b{bottom:833.252380pt;}
.y55{bottom:842.372760pt;}
.y12d{bottom:842.373700pt;}
.y1ab{bottom:843.014253pt;}
.y203{bottom:844.772867pt;}
.y2c{bottom:845.092860pt;}
.y158{bottom:848.774253pt;}
.y7a{bottom:855.653313pt;}
.y1e5{bottom:860.613520pt;}
.y2b{bottom:863.813640pt;}
.y54{bottom:864.773693pt;}
.y221{bottom:864.773700pt;}
.y12c{bottom:864.774633pt;}
.y1aa{bottom:865.415187pt;}
.y157{bottom:871.335193pt;}
.y202{bottom:873.894080pt;}
.y79{bottom:878.054247pt;}
.y2a{bottom:882.534420pt;}
.y53{bottom:887.174627pt;}
.y220{bottom:887.174633pt;}
.y12b{bottom:887.175567pt;}
.y1a9{bottom:887.816120pt;}
.y156{bottom:893.736127pt;}
.y201{bottom:896.295013pt;}
.y1e4{bottom:896.455013pt;}
.y78{bottom:900.615187pt;}
.y29{bottom:901.255200pt;}
.y52{bottom:909.735567pt;}
.y21f{bottom:909.735573pt;}
.y12a{bottom:909.736507pt;}
.y1a8{bottom:910.377060pt;}
.y155{bottom:916.137060pt;}
.y28{bottom:919.815973pt;}
.y77{bottom:923.016120pt;}
.y51{bottom:932.136500pt;}
.y21e{bottom:932.136507pt;}
.y129{bottom:932.137440pt;}
.y200{bottom:932.296513pt;}
.y1a7{bottom:932.777993pt;}
.y27{bottom:938.536753pt;}
.y154{bottom:938.698000pt;}
.y76{bottom:945.417053pt;}
.yc8{bottom:954.537433pt;}
.y128{bottom:954.538373pt;}
.y1a6{bottom:955.178927pt;}
.y26{bottom:957.257533pt;}
.y153{bottom:961.098933pt;}
.y50{bottom:967.977993pt;}
.y1ff{bottom:967.978000pt;}
.y25{bottom:975.818307pt;}
.y1a5{bottom:977.739867pt;}
.y152{bottom:983.499867pt;}
.y4f{bottom:990.378927pt;}
.y1fe{bottom:990.378933pt;}
.y24{bottom:994.539087pt;}
.y1a4{bottom:1000.779867pt;}
.y151{bottom:1005.419867pt;}
.y1fd{bottom:1012.779867pt;}
.y4e{bottom:1012.939867pt;}
.y23{bottom:1013.259867pt;}
.y4d{bottom:1067.716533pt;}
.y21{bottom:1072.139867pt;}
.y4c{bottom:1085.049867pt;}
.h19{height:28.502755pt;}
.hb{height:31.033854pt;}
.hc{height:32.539062pt;}
.h10{height:32.859375pt;}
.h17{height:43.751823pt;}
.h2{height:43.810197pt;}
.h9{height:44.345598pt;}
.ha{height:48.560949pt;}
.h3{height:48.587819pt;}
.hd{height:48.595961pt;}
.h6{height:51.189323pt;}
.h8{height:52.783449pt;}
.he{height:52.830596pt;}
.h15{height:56.488517pt;}
.h14{height:56.528170pt;}
.h12{height:56.565610pt;}
.h1a{height:56.567130pt;}
.h16{height:56.577530pt;}
.h18{height:56.596250pt;}
.h13{height:56.604437pt;}
.hf{height:56.822792pt;}
.h11{height:58.770708pt;}
.h7{height:61.756262pt;}
.h4{height:88.148206pt;}
.h5{height:105.566459pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:108.661333pt;}
.x2{left:113.404595pt;}
.x9{left:151.169547pt;}
.x7{left:388.234133pt;}
.x1{left:437.250400pt;}
.x6{left:553.571181pt;}
.x5{left:555.013806pt;}
.x4{left:560.607659pt;}
.x3{left:680.270879pt;}
}




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