
    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_1ad3e35a224f86959f1fc7e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight: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_4a0108138554149fed1fe3f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;font-style:normal;font-weight: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_702842c12ea27231f70baf5d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d7e154b9519384689eb4b25.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight: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_1278ae4f7c012e0ddaa6a537.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight: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_24964e410df35fc66a72556d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;font-style:normal;font-weight: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_20266ef226de7057efb40e5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight: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_7338db3d39626b02932f0aa1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116000;font-style:normal;font-weight: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_51d8a8455b85ad6c1e04b0b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fa0ddb3096e075b6b51e0f3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689941;font-style:normal;font-weight: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_fd6dfe20663af455a198c2bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight: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_68139a57285b3a2c72cd768e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_517893022d8c1824d1208d9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cd2cd0304914f550b10a6beb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.905000;font-style:normal;font-weight: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_2378a523e93e91d30525a8bf.woff2')format("woff");}.fff{font-family:fff;line-height:0.881000;font-style:normal;font-weight: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_ed119c5bd363b7b8c58d7901.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_38da2f21df82e01df4d6e579.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.881000;font-style:normal;font-weight: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_da32a99b440fd2b039c9c366.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d6509b6c97050537192c6269.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c4f500f628b8a1d2326b056b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.712000;font-style:normal;font-weight: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_f9492e869ac714861283d8cb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3fc98333214e0d28b33c9044.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ba174762ce4f93d81ab51d18.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.427000;font-style:normal;font-weight: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_f4959551a2b74dec86b129b0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.931000;font-style:normal;font-weight: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_12aecf619ad8c0c72b841979.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.705000;font-style:normal;font-weight: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_e3b19c011180b3a8fc03abf6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.782000;font-style:normal;font-weight: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_337989c9513d46df353952a8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_5306e872be9d68b11612364f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.931000;font-style:normal;font-weight: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_a240972e79db63ab9400ccd3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.049000;font-style:normal;font-weight: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_48651ddf9ed53db77615c9f3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.782000;font-style:normal;font-weight: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_9f89a8bdfe5f814514f9c50d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a240972e79db63ab9400ccd3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.049000;font-style:normal;font-weight: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_7e020af74d11475ddd3445a9.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.427000;font-style:normal;font-weight: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_5306e872be9d68b11612364f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.931000;font-style:normal;font-weight: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_074b290a160af0e6cb7ef8bc.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.959000;font-style:normal;font-weight: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_85fc13a43a24eda872735e40.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.962000;font-style:normal;font-weight: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_dbefdb57f1095eeb10e1d460.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.959000;font-style:normal;font-weight: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_cdca99d4fffe072b644edda9.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.046000;font-style:normal;font-weight: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_7c72d064aab4822776bdcc46.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.959000;font-style:normal;font-weight: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_5954e971ae24ce430353654a.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.795000;font-style:normal;font-weight: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_b88f1729c2b5df003898050e.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.962000;font-style:normal;font-weight: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_cb795ed6bbe25d2cbae27f23.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.999000;font-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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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(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:-22.854000px;}
.v7{vertical-align:-21.779818px;}
.v6{vertical-align:-13.605583px;}
.v4{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.816000px;}
.v5{vertical-align:22.131259px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000141px;}
.ls38{letter-spacing:0.000493px;}
.ls28{letter-spacing:0.004217px;}
.ls22{letter-spacing:0.004284px;}
.ls1d{letter-spacing:0.006141px;}
.ls8{letter-spacing:2.805967px;}
.ls2{letter-spacing:2.984915px;}
.ls6{letter-spacing:2.988532px;}
.ls3{letter-spacing:2.990915px;}
.ls39{letter-spacing:2.992200px;}
.ls9{letter-spacing:3.069809px;}
.ls2e{letter-spacing:3.169993px;}
.ls26{letter-spacing:3.220254px;}
.lsd{letter-spacing:3.454878px;}
.ls13{letter-spacing:3.460878px;}
.ls10{letter-spacing:3.638154px;}
.ls1f{letter-spacing:3.773414px;}
.ls18{letter-spacing:4.163428px;}
.ls11{letter-spacing:5.443358px;}
.ls3b{letter-spacing:17.637056px;}
.ls2d{letter-spacing:20.003029px;}
.ls7{letter-spacing:20.319967px;}
.lsc{letter-spacing:20.337967px;}
.lsb{letter-spacing:20.793967px;}
.ls36{letter-spacing:21.038154px;}
.lsa{letter-spacing:21.855967px;}
.ls3e{letter-spacing:22.006878px;}
.ls20{letter-spacing:22.221056px;}
.ls1c{letter-spacing:23.554878px;}
.ls31{letter-spacing:24.874878px;}
.ls37{letter-spacing:25.389056px;}
.ls3a{letter-spacing:25.460154px;}
.ls14{letter-spacing:26.494878px;}
.lse{letter-spacing:26.752878px;}
.ls1e{letter-spacing:26.764878px;}
.ls19{letter-spacing:26.872878px;}
.ls35{letter-spacing:27.771056px;}
.ls33{letter-spacing:27.951056px;}
.ls5{letter-spacing:28.076915px;}
.ls3d{letter-spacing:28.792878px;}
.ls1a{letter-spacing:29.770878px;}
.ls2f{letter-spacing:29.877777px;}
.ls1b{letter-spacing:29.954154px;}
.lsf{letter-spacing:30.166878px;}
.ls12{letter-spacing:31.424154px;}
.ls15{letter-spacing:31.912878px;}
.ls32{letter-spacing:32.031056px;}
.ls3c{letter-spacing:32.632878px;}
.ls30{letter-spacing:32.806878px;}
.ls34{letter-spacing:32.920878px;}
.ls27{letter-spacing:34.323612px;}
.ls16{letter-spacing:36.790878px;}
.ls1{letter-spacing:44.455961px;}
.ls2a{letter-spacing:54.831987px;}
.ls2c{letter-spacing:71.340065px;}
.ls23{letter-spacing:92.117556px;}
.ls25{letter-spacing:106.341297px;}
.ls29{letter-spacing:106.350445px;}
.ls21{letter-spacing:108.042760px;}
.ls2b{letter-spacing:166.214017px;}
.ls24{letter-spacing:169.179140px;}
.ls17{letter-spacing:206.857358px;}
.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;}
}
.ws2{word-spacing:-60.000000px;}
.ws25{word-spacing:-42.637126px;}
.wsa8{word-spacing:-27.517114px;}
.wsa7{word-spacing:-27.451659px;}
.ws8{word-spacing:-20.906199px;}
.ws0{word-spacing:-18.984000px;}
.ws1f{word-spacing:-18.183288px;}
.ws81{word-spacing:-14.553204px;}
.ws9a{word-spacing:-3.532656px;}
.ws9b{word-spacing:-3.521457px;}
.ws18{word-spacing:-3.456003px;}
.wsa9{word-spacing:-3.063275px;}
.wsa6{word-spacing:-2.997821px;}
.ws13{word-spacing:-2.447827px;}
.ws23{word-spacing:-1.688729px;}
.ws21{word-spacing:-1.623274px;}
.ws88{word-spacing:-1.557819px;}
.ws91{word-spacing:-0.837819px;}
.ws92{word-spacing:-0.772364px;}
.ws93{word-spacing:-0.751419px;}
.ws3d{word-spacing:-0.576000px;}
.ws38{word-spacing:-0.445091px;}
.ws16{word-spacing:-0.295891px;}
.ws10{word-spacing:-0.280773px;}
.ws11{word-spacing:-0.242093px;}
.ws26{word-spacing:-0.214785px;}
.ws27{word-spacing:-0.183273px;}
.ws4{word-spacing:-0.103292px;}
.ws19{word-spacing:-0.065455px;}
.ws77{word-spacing:-0.060975px;}
.ws7b{word-spacing:-0.060023px;}
.ws4c{word-spacing:-0.052364px;}
.ws6{word-spacing:-0.047821px;}
.ws76{word-spacing:-0.042682px;}
.ws79{word-spacing:-0.042016px;}
.wsb{word-spacing:-0.035866px;}
.ws1{word-spacing:0.000000px;}
.ws54{word-spacing:0.013091px;}
.ws71{word-spacing:0.299768px;}
.ws72{word-spacing:0.340364px;}
.ws6e{word-spacing:0.536728px;}
.ws24{word-spacing:0.733092px;}
.ws4f{word-spacing:0.798546px;}
.wsa0{word-spacing:0.864001px;}
.ws4e{word-spacing:0.955637px;}
.ws70{word-spacing:1.060365px;}
.ws28{word-spacing:1.256728px;}
.ws29{word-spacing:1.322183px;}
.ws6d{word-spacing:1.387638px;}
.ws3c{word-spacing:1.584001px;}
.ws12{word-spacing:1.802246px;}
.ws61{word-spacing:1.911274px;}
.ws8b{word-spacing:2.042184px;}
.wse{word-spacing:2.178835px;}
.ws36{word-spacing:2.238547px;}
.ws6f{word-spacing:2.369457px;}
.ws15{word-spacing:2.609222px;}
.wsa{word-spacing:3.039610px;}
.wsbd{word-spacing:3.043774px;}
.wsb5{word-spacing:3.045187px;}
.wsac{word-spacing:3.064566px;}
.wsba{word-spacing:3.065777px;}
.wsb6{word-spacing:3.066453px;}
.wsb1{word-spacing:3.068317px;}
.wsbc{word-spacing:3.068598px;}
.wsb9{word-spacing:3.068659px;}
.wsb8{word-spacing:3.069203px;}
.wsb2{word-spacing:3.070566px;}
.wsb4{word-spacing:3.071462px;}
.wsaf{word-spacing:3.075151px;}
.wsaa{word-spacing:3.075254px;}
.ws9{word-spacing:3.093408px;}
.ws86{word-spacing:3.220366px;}
.ws99{word-spacing:3.351276px;}
.ws96{word-spacing:3.416730px;}
.ws95{word-spacing:3.482185px;}
.ws46{word-spacing:3.547639px;}
.ws65{word-spacing:3.612683px;}
.ws30{word-spacing:3.613094px;}
.ws1d{word-spacing:3.678549px;}
.ws14{word-spacing:3.685190px;}
.ws98{word-spacing:3.901094px;}
.ws5b{word-spacing:4.157643px;}
.ws87{word-spacing:4.159850px;}
.ws5{word-spacing:4.162913px;}
.ws33{word-spacing:4.202185px;}
.ws2e{word-spacing:4.267640px;}
.ws66{word-spacing:4.333095px;}
.ws3b{word-spacing:4.529458px;}
.ws39{word-spacing:4.594913px;}
.ws37{word-spacing:4.660368px;}
.ws63{word-spacing:4.725822px;}
.ws34{word-spacing:4.856731px;}
.ws53{word-spacing:4.922186px;}
.ws68{word-spacing:5.117641px;}
.ws1b{word-spacing:5.118550px;}
.ws9d{word-spacing:5.184004px;}
.ws5e{word-spacing:5.249459px;}
.ws1a{word-spacing:5.314914px;}
.ws8d{word-spacing:5.380368px;}
.wsf{word-spacing:5.568134px;}
.ws31{word-spacing:5.576732px;}
.ws1c{word-spacing:5.773096px;}
.ws50{word-spacing:5.806800px;}
.ws84{word-spacing:5.818754px;}
.ws51{word-spacing:5.838550px;}
.ws64{word-spacing:5.969460px;}
.ws89{word-spacing:6.034914px;}
.ws48{word-spacing:6.165823px;}
.ws20{word-spacing:6.296733px;}
.ws90{word-spacing:6.558551px;}
.wsa4{word-spacing:6.624006px;}
.ws8c{word-spacing:6.754915px;}
.wsa5{word-spacing:6.820369px;}
.ws32{word-spacing:6.885824px;}
.ws2b{word-spacing:6.951279px;}
.ws4d{word-spacing:7.147642px;}
.ws62{word-spacing:7.213097px;}
.ws3e{word-spacing:7.278552px;}
.ws47{word-spacing:7.540370px;}
.ws5f{word-spacing:8.128800px;}
.ws60{word-spacing:8.129461px;}
.ws9c{word-spacing:8.456734px;}
.ws1e{word-spacing:8.522189px;}
.ws9e{word-spacing:8.784007px;}
.ws45{word-spacing:8.849462px;}
.ws85{word-spacing:8.914917px;}
.ws52{word-spacing:9.045826px;}
.ws6c{word-spacing:9.176735px;}
.wsc{word-spacing:9.208967px;}
.ws75{word-spacing:9.373099px;}
.ws74{word-spacing:9.438553px;}
.ws2c{word-spacing:9.569463px;}
.ws2d{word-spacing:9.634917px;}
.ws9f{word-spacing:9.651075px;}
.ws5d{word-spacing:9.700372px;}
.ws6b{word-spacing:9.962190px;}
.ws3f{word-spacing:10.224009px;}
.ws41{word-spacing:10.250560px;}
.ws40{word-spacing:10.278308px;}
.ws42{word-spacing:10.289463px;}
.ws8f{word-spacing:10.551282px;}
.ws8a{word-spacing:10.878555px;}
.ws44{word-spacing:11.009464px;}
.ws7e{word-spacing:11.140373px;}
.ws7d{word-spacing:11.205828px;}
.ws73{word-spacing:11.271282px;}
.ws7c{word-spacing:11.428373px;}
.ws49{word-spacing:11.467646px;}
.ws8e{word-spacing:11.533101px;}
.ws83{word-spacing:12.056737px;}
.wsa1{word-spacing:12.122192px;}
.wsa3{word-spacing:12.384010px;}
.ws5c{word-spacing:12.449465px;}
.ws17{word-spacing:12.541101px;}
.ws43{word-spacing:12.711283px;}
.ws2f{word-spacing:12.776738px;}
.wsa2{word-spacing:13.431284px;}
.ws35{word-spacing:13.562193px;}
.ws7{word-spacing:13.829387px;}
.ws82{word-spacing:13.915648px;}
.ws4a{word-spacing:15.133104px;}
.wsbb{word-spacing:18.364662px;}
.wsb0{word-spacing:18.367175px;}
.wsb3{word-spacing:18.370662px;}
.wsae{word-spacing:18.373175px;}
.wsab{word-spacing:18.394873px;}
.ws6a{word-spacing:18.733107px;}
.ws69{word-spacing:18.756486px;}
.wsad{word-spacing:19.690214px;}
.wsb7{word-spacing:19.744013px;}
.ws7a{word-spacing:19.927679px;}
.ws78{word-spacing:20.243634px;}
.ws22{word-spacing:21.470930px;}
.ws94{word-spacing:22.358930px;}
.ws2a{word-spacing:24.422930px;}
.ws3a{word-spacing:27.704930px;}
.ws67{word-spacing:28.256930px;}
.ws3{word-spacing:38.631358px;}
.ws4b{word-spacing:45.438583px;}
.ws55{word-spacing:53.489499px;}
.ws57{word-spacing:53.554954px;}
.wsd{word-spacing:55.233450px;}
.ws59{word-spacing:86.282254px;}
.ws5a{word-spacing:119.009554px;}
.ws56{word-spacing:120.842283px;}
.ws7f{word-spacing:124.218204px;}
.ws80{word-spacing:130.768917px;}
.ws97{word-spacing:235.427645px;}
.ws58{word-spacing:254.827849px;}
._33{margin-left:-102.213333px;}
._a{margin-left:-37.636395px;}
._3e{margin-left:-35.562204px;}
._1b{margin-left:-33.595029px;}
._3d{margin-left:-31.974137px;}
._10{margin-left:-28.497712px;}
._11{margin-left:-26.860842px;}
._e{margin-left:-25.851994px;}
._39{margin-left:-24.693473px;}
._f{margin-left:-21.706176px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-6.000000px;}
._3{margin-left:-4.284000px;}
._9{margin-left:-3.202064px;}
._1{margin-left:-1.996800px;}
._14{width:1.317501px;}
._b{width:2.445507px;}
._c{width:3.771555px;}
._0{width:5.587200px;}
._4{width:7.476098px;}
._5{width:8.579958px;}
._6{width:16.259004px;}
._1e{width:19.342269px;}
._38{width:20.442030px;}
._3a{width:22.156501px;}
._13{width:23.247168px;}
._2d{width:24.587748px;}
._d{width:26.096748px;}
._18{width:27.163659px;}
._19{width:29.015599px;}
._35{width:30.820707px;}
._12{width:32.123904px;}
._15{width:33.774574px;}
._16{width:35.673626px;}
._37{width:38.637661px;}
._1d{width:41.588424px;}
._17{width:44.235831px;}
._36{width:45.705482px;}
._1a{width:47.563671px;}
._2f{width:48.756136px;}
._1c{width:51.729566px;}
._34{width:54.376654px;}
._3c{width:55.832774px;}
._3b{width:56.923679px;}
._1f{width:72.230455px;}
._2e{width:75.388649px;}
._20{width:83.376162px;}
._22{width:129.352594px;}
._21{width:132.415525px;}
._2a{width:137.192842px;}
._32{width:146.958572px;}
._30{width:186.652691px;}
._31{width:191.743179px;}
._24{width:253.571120px;}
._25{width:262.080218px;}
._27{width:273.011137px;}
._2b{width:283.625685px;}
._28{width:309.025155px;}
._7{width:316.920000px;}
._23{width:345.417912px;}
._2c{width:573.006811px;}
._29{width:598.406280px;}
._26{width:634.799038px;}
.fc6{color:rgb(192,182,172);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,110,178);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:35.865600px;}
.fs11{font-size:37.626288px;}
.fs1a{font-size:40.898052px;}
.fse{font-size:42.016071px;}
.fs12{font-size:42.534077px;}
.fsc{font-size:42.682239px;}
.fs18{font-size:47.441867px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs16{font-size:52.349656px;}
.fsb{font-size:53.798400px;}
.fs4{font-size:54.000000px;}
.fs10{font-size:55.621419px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:60.023131px;}
.fsd{font-size:60.974802px;}
.fs19{font-size:62.165234px;}
.fs13{font-size:63.801260px;}
.fs9{font-size:65.454600px;}
.fs2{font-size:66.000000px;}
.fs17{font-size:71.980813px;}
.fs3{font-size:72.000000px;}
.fs15{font-size:78.524628px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs8{font-size:103.292400px;}
.fs14{font-size:119.422680px;}
.y1b{bottom:-54.750000px;}
.y1a{bottom:-32.670000px;}
.ye0{bottom:-26.583762px;}
.ycf{bottom:-13.887284px;}
.y19{bottom:-10.590000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:4.289325px;}
.yde{bottom:4.498876px;}
.yf1{bottom:6.134801px;}
.yc{bottom:8.040000px;}
.yc4{bottom:10.447083px;}
.yb9{bottom:10.612722px;}
.y18{bottom:11.475000px;}
.ydf{bottom:16.359321px;}
.y2e{bottom:19.233262px;}
.yf2{bottom:20.857888px;}
.yc5{bottom:28.419199px;}
.yba{bottom:28.869787px;}
.ye1{bottom:29.855670px;}
.y17{bottom:33.555000px;}
.y2d{bottom:34.177200px;}
.yd1{bottom:34.722710px;}
.ydb{bottom:34.781746px;}
.ye2{bottom:44.987972px;}
.y22{bottom:47.445000px;}
.ydc{bottom:52.368087px;}
.y16{bottom:55.635000px;}
.y2b{bottom:58.485000px;}
.ye3{bottom:60.120274px;}
.y2c{bottom:61.708950px;}
.y32{bottom:64.500000px;}
.y21{bottom:69.510000px;}
.yd2{bottom:77.069743px;}
.y15{bottom:77.715000px;}
.yc9{bottom:84.048108px;}
.ybe{bottom:85.380697px;}
.y20{bottom:91.590000px;}
.yd7{bottom:94.901588px;}
.yf4{bottom:96.468210px;}
.y14{bottom:99.795000px;}
.yc2{bottom:100.482381px;}
.yd8{bottom:101.036390px;}
.yb7{bottom:102.075537px;}
.ybd{bottom:104.845005px;}
.y1f{bottom:113.670000px;}
.y10a{bottom:115.335000px;}
.yfa{bottom:118.195812px;}
.yc8{bottom:118.213503px;}
.yc3{bottom:118.454497px;}
.yd4{bottom:119.031658px;}
.yb8{bottom:120.332602px;}
.yb2{bottom:121.135500px;}
.yef{bottom:121.549500px;}
.yf9{bottom:121.876862px;}
.yd3{bottom:125.165617px;}
.y10{bottom:133.935000px;}
.ybc{bottom:134.729243px;}
.y109{bottom:134.763000px;}
.y1e{bottom:135.750000px;}
.yb1{bottom:140.563500px;}
.yee{bottom:140.976000px;}
.yd0{bottom:142.344463px;}
.yb6{bottom:143.198306px;}
.yc7{bottom:147.632826px;}
.y108{bottom:154.189500px;}
.y1c{bottom:154.950000px;}
.yc1{bottom:155.969707px;}
.yf{bottom:156.015000px;}
.y1d{bottom:157.830000px;}
.yb0{bottom:159.990000px;}
.yed{bottom:160.404000px;}
.yd6{bottom:161.156282px;}
.yf5{bottom:164.745863px;}
.yd9{bottom:165.246231px;}
.yd5{bottom:167.700558px;}
.y107{bottom:173.617500px;}
.yda{bottom:179.152018px;}
.yaf{bottom:179.418000px;}
.yec{bottom:179.830500px;}
.y86{bottom:184.162500px;}
.yf3{bottom:186.495703px;}
.yfb{bottom:187.723227px;}
.y106{bottom:193.044000px;}
.yfc{bottom:193.448554px;}
.ybf{bottom:198.020119px;}
.yc6{bottom:198.372573px;}
.yae{bottom:198.844500px;}
.yeb{bottom:199.258500px;}
.yb4{bottom:201.159744px;}
.ybb{bottom:201.517785px;}
.y85{bottom:203.590500px;}
.yf8{bottom:211.443584px;}
.y105{bottom:212.472000px;}
.yc0{bottom:215.992235px;}
.yad{bottom:218.271000px;}
.yb5{bottom:219.416809px;}
.y84{bottom:223.017000px;}
.y57{bottom:231.517500px;}
.y104{bottom:231.898500px;}
.yf7{bottom:232.711199px;}
.yac{bottom:237.699000px;}
.yf6{bottom:240.889743px;}
.yea{bottom:241.582500px;}
.y83{bottom:242.445000px;}
.y56{bottom:247.956000px;}
.y103{bottom:251.325000px;}
.yab{bottom:257.125500px;}
.ye9{bottom:261.010500px;}
.y82{bottom:261.871500px;}
.y55{bottom:264.394500px;}
.y102{bottom:270.753000px;}
.yaa{bottom:276.553500px;}
.ye8{bottom:280.437000px;}
.y54{bottom:280.833000px;}
.y81{bottom:281.299500px;}
.y101{bottom:290.179500px;}
.ya9{bottom:295.980000px;}
.y53{bottom:297.271500px;}
.y80{bottom:300.726000px;}
.y100{bottom:309.607500px;}
.y52{bottom:313.710000px;}
.ya8{bottom:315.408000px;}
.y7f{bottom:320.154000px;}
.y133{bottom:328.156500px;}
.y51{bottom:330.148500px;}
.ya7{bottom:334.834500px;}
.y7e{bottom:339.580500px;}
.y132{bottom:344.595000px;}
.ya{bottom:344.680500px;}
.y50{bottom:346.587000px;}
.ye7{bottom:347.878500px;}
.ya6{bottom:354.261000px;}
.y7d{bottom:359.007000px;}
.y131{bottom:361.033500px;}
.y4f{bottom:363.024000px;}
.ye6{bottom:367.305000px;}
.ya5{bottom:373.689000px;}
.y130{bottom:377.472000px;}
.y7c{bottom:378.435000px;}
.y4e{bottom:379.462500px;}
.yd{bottom:386.490000px;}
.ye5{bottom:386.731500px;}
.yff{bottom:390.201000px;}
.ya4{bottom:393.115500px;}
.y12f{bottom:393.909000px;}
.y9{bottom:395.689500px;}
.y7b{bottom:397.861500px;}
.ye4{bottom:406.159500px;}
.yfe{bottom:409.627500px;}
.y12e{bottom:410.347500px;}
.ya3{bottom:412.543500px;}
.y7a{bottom:417.289500px;}
.y4d{bottom:419.811000px;}
.y12d{bottom:426.786000px;}
.yfd{bottom:429.055500px;}
.ya2{bottom:431.970000px;}
.yb{bottom:434.850000px;}
.y79{bottom:436.716000px;}
.ydd{bottom:440.530500px;}
.y12c{bottom:443.224500px;}
.y8{bottom:446.698500px;}
.y4c{bottom:449.436000px;}
.ya1{bottom:451.398000px;}
.y78{bottom:456.144000px;}
.y12b{bottom:459.663000px;}
.yf0{bottom:463.426500px;}
.y4b{bottom:465.874500px;}
.ya0{bottom:470.824500px;}
.y77{bottom:475.570500px;}
.y12a{bottom:476.101500px;}
.y4a{bottom:476.598000px;}
.y11{bottom:488.055000px;}
.y9f{bottom:490.251000px;}
.y129{bottom:492.540000px;}
.y76{bottom:494.997000px;}
.y7{bottom:497.707500px;}
.y49{bottom:498.750000px;}
.y128{bottom:508.978500px;}
.y9e{bottom:509.679000px;}
.yce{bottom:511.266079px;}
.y75{bottom:514.425000px;}
.y48{bottom:515.188500px;}
.y127{bottom:525.417000px;}
.y9d{bottom:529.105500px;}
.y47{bottom:531.627000px;}
.y74{bottom:533.851500px;}
.y12{bottom:538.230000px;}
.y126{bottom:541.855500px;}
.y46{bottom:548.065500px;}
.y9c{bottom:548.533500px;}
.y6{bottom:548.716500px;}
.y73{bottom:553.279500px;}
.y125{bottom:558.292500px;}
.y45{bottom:558.790500px;}
.y9b{bottom:567.960000px;}
.y72{bottom:572.706000px;}
.y124{bottom:574.731000px;}
.y44{bottom:580.942500px;}
.y9a{bottom:587.388000px;}
.y23{bottom:589.605000px;}
.y123{bottom:591.169500px;}
.y71{bottom:592.134000px;}
.y43{bottom:597.381000px;}
.y5{bottom:599.725500px;}
.y99{bottom:606.814500px;}
.y122{bottom:607.608000px;}
.y42{bottom:608.106000px;}
.y70{bottom:611.560500px;}
.y121{bottom:624.046500px;}
.y98{bottom:626.241000px;}
.y41{bottom:630.258000px;}
.y6f{bottom:630.987000px;}
.ye{bottom:631.920000px;}
.y120{bottom:640.485000px;}
.y40{bottom:646.696500px;}
.y6e{bottom:650.415000px;}
.y11f{bottom:656.923500px;}
.y3f{bottom:663.133500px;}
.y6d{bottom:669.841500px;}
.y11e{bottom:673.362000px;}
.y3e{bottom:678.342000px;}
.y6c{bottom:689.269500px;}
.y11d{bottom:689.800500px;}
.y3d{bottom:697.770000px;}
.y11c{bottom:706.239000px;}
.y6b{bottom:708.696000px;}
.y97{bottom:712.728000px;}
.y3c{bottom:717.196500px;}
.y11b{bottom:722.676000px;}
.y6a{bottom:728.124000px;}
.y96{bottom:732.199500px;}
.y3b{bottom:736.624500px;}
.y11a{bottom:739.114500px;}
.y69{bottom:747.550500px;}
.y119{bottom:755.553000px;}
.y3a{bottom:756.051000px;}
.y95{bottom:761.233500px;}
.ycd{bottom:761.931000px;}
.y68{bottom:766.977000px;}
.y118{bottom:771.991500px;}
.y39{bottom:775.477500px;}
.y4{bottom:778.225500px;}
.y94{bottom:780.705000px;}
.ycc{bottom:781.359000px;}
.y67{bottom:786.405000px;}
.y117{bottom:788.430000px;}
.y38{bottom:794.905500px;}
.ycb{bottom:800.785500px;}
.y116{bottom:804.868500px;}
.y66{bottom:805.831500px;}
.y93{bottom:809.739000px;}
.y37{bottom:814.332000px;}
.y13{bottom:815.670000px;}
.yca{bottom:820.212000px;}
.y115{bottom:821.307000px;}
.y65{bottom:825.259500px;}
.y92{bottom:829.210500px;}
.y36{bottom:833.760000px;}
.y114{bottom:837.745500px;}
.y64{bottom:844.686000px;}
.y35{bottom:853.186500px;}
.yb3{bottom:856.122000px;}
.y91{bottom:858.246000px;}
.y63{bottom:864.114000px;}
.y90{bottom:877.716000px;}
.y113{bottom:880.069500px;}
.y62{bottom:883.540500px;}
.y112{bottom:899.497500px;}
.y34{bottom:899.512500px;}
.y8f{bottom:900.813000px;}
.y61{bottom:902.967000px;}
.y2a{bottom:903.300000px;}
.y3{bottom:905.716500px;}
.y111{bottom:918.924000px;}
.y8e{bottom:920.241000px;}
.y60{bottom:922.395000px;}
.y29{bottom:932.400000px;}
.y33{bottom:935.512500px;}
.y110{bottom:938.352000px;}
.y5f{bottom:941.821500px;}
.y8d{bottom:949.885500px;}
.y10f{bottom:957.778500px;}
.y5e{bottom:961.249500px;}
.y2{bottom:964.228500px;}
.y8c{bottom:969.312000px;}
.y28{bottom:972.750000px;}
.y10e{bottom:977.205000px;}
.y5d{bottom:980.676000px;}
.y8b{bottom:988.740000px;}
.y1{bottom:989.716500px;}
.y10d{bottom:996.633000px;}
.y5c{bottom:1000.104000px;}
.y8a{bottom:1008.166500px;}
.y27{bottom:1011.165000px;}
.y10c{bottom:1016.059500px;}
.y5b{bottom:1019.530500px;}
.y89{bottom:1027.594500px;}
.y10b{bottom:1035.487500px;}
.y5a{bottom:1038.957000px;}
.y26{bottom:1039.965000px;}
.y88{bottom:1047.021000px;}
.y59{bottom:1058.385000px;}
.y87{bottom:1066.449000px;}
.y58{bottom:1077.811500px;}
.y25{bottom:1081.485000px;}
.y31{bottom:1144.500000px;}
.y30{bottom:1165.500000px;}
.y24{bottom:1191.570000px;}
.h17{height:24.245146px;}
.h2b{height:27.881080px;}
.h24{height:27.898671px;}
.h1e{height:28.341007px;}
.h37{height:30.264558px;}
.h36{height:30.305456px;}
.h2c{height:31.475217px;}
.h1c{height:32.326726px;}
.h4{height:33.000000px;}
.h34{height:35.154423px;}
.h31{height:38.791095px;}
.h18{height:40.348800px;}
.h2a{height:41.215472px;}
.hf{height:41.660156px;}
.he{height:42.942899px;}
.h28{height:42.976562px;}
.h21{height:43.657958px;}
.h27{height:45.017348px;}
.h22{height:45.731102px;}
.h35{height:46.064439px;}
.h1a{height:46.080038px;}
.hd{height:46.538700px;}
.h19{height:47.099146px;}
.h2d{height:47.276734px;}
.h1b{height:49.090950px;}
.h10{height:49.336436px;}
.h26{height:49.678489px;}
.h25{height:49.684514px;}
.hc{height:50.062500px;}
.h20{height:50.466146px;}
.h1f{height:50.472266px;}
.h33{height:53.337782px;}
.h15{height:56.074726px;}
.h16{height:56.080726px;}
.ha{height:56.320312px;}
.h38{height:57.461523px;}
.h13{height:57.467523px;}
.h2f{height:58.186749px;}
.h3{height:58.406250px;}
.h14{height:61.896038px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h30{height:70.735579px;}
.hb{height:72.000000px;}
.h11{height:72.304680px;}
.h12{height:72.821142px;}
.h9{height:75.093750px;}
.h2e{height:88.492206px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h29{height:212.206736px;}
.h23{height:232.942158px;}
.h1d{height:236.634673px;}
.h32{height:276.462720px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.wc{width:340.165621px;}
.w6{width:366.465000px;}
.wd{width:408.214485px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:683.273100px;}
.w9{width:892.500000px;}
.wa{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:1.337034px;}
.x3{left:3.000000px;}
.x26{left:13.087414px;}
.x32{left:14.314433px;}
.x37{left:17.177118px;}
.x2a{left:22.493770px;}
.x19{left:25.672403px;}
.x28{left:27.313293px;}
.x35{left:32.712955px;}
.x27{left:35.052809px;}
.x36{left:36.399341px;}
.x29{left:37.626360px;}
.x34{left:40.489333px;}
.x25{left:45.805985px;}
.x18{left:47.551197px;}
.xa{left:58.500000px;}
.xc{left:76.052700px;}
.xb{left:103.466400px;}
.xe{left:105.000000px;}
.x12{left:106.299000px;}
.x3d{left:113.211000px;}
.x17{left:115.866000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x20{left:132.030217px;}
.x1a{left:134.103945px;}
.x1b{left:153.675359px;}
.x21{left:155.463855px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x3a{left:192.220353px;}
.x7{left:200.715000px;}
.x15{left:211.647000px;}
.x13{left:213.895500px;}
.x24{left:215.749970px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x23{left:230.693095px;}
.x14{left:235.123500px;}
.x22{left:238.770907px;}
.x1d{left:242.535487px;}
.x1e{left:250.031410px;}
.x39{left:251.931621px;}
.x30{left:253.567935px;}
.x1c{left:261.259230px;}
.x33{left:271.563426px;}
.x38{left:274.016313px;}
.x2e{left:277.699387px;}
.x2f{left:297.738830px;}
.x31{left:304.281781px;}
.x2d{left:316.143040px;}
.x16{left:334.944000px;}
.x2c{left:348.861179px;}
.x2b{left:360.720494px;}
.x3c{left:374.217994px;}
.x3b{left:386.077309px;}
.x1f{left:436.890000px;}
.x11{left:447.000000px;}
.x10{left:551.325000px;}
.xf{left:695.145000px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v7{vertical-align:-19.359838pt;}
.v6{vertical-align:-12.093852pt;}
.v4{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.058667pt;}
.v5{vertical-align:19.672231pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000125pt;}
.ls38{letter-spacing:0.000438pt;}
.ls28{letter-spacing:0.003749pt;}
.ls22{letter-spacing:0.003808pt;}
.ls1d{letter-spacing:0.005459pt;}
.ls8{letter-spacing:2.494193pt;}
.ls2{letter-spacing:2.653258pt;}
.ls6{letter-spacing:2.656473pt;}
.ls3{letter-spacing:2.658591pt;}
.ls39{letter-spacing:2.659733pt;}
.ls9{letter-spacing:2.728719pt;}
.ls2e{letter-spacing:2.817772pt;}
.ls26{letter-spacing:2.862448pt;}
.lsd{letter-spacing:3.071003pt;}
.ls13{letter-spacing:3.076336pt;}
.ls10{letter-spacing:3.233914pt;}
.ls1f{letter-spacing:3.354146pt;}
.ls18{letter-spacing:3.700825pt;}
.ls11{letter-spacing:4.838541pt;}
.ls3b{letter-spacing:15.677383pt;}
.ls2d{letter-spacing:17.780470pt;}
.ls7{letter-spacing:18.062193pt;}
.lsc{letter-spacing:18.078193pt;}
.lsb{letter-spacing:18.483526pt;}
.ls36{letter-spacing:18.700581pt;}
.lsa{letter-spacing:19.427526pt;}
.ls3e{letter-spacing:19.561670pt;}
.ls20{letter-spacing:19.752050pt;}
.ls1c{letter-spacing:20.937670pt;}
.ls31{letter-spacing:22.111003pt;}
.ls37{letter-spacing:22.568050pt;}
.ls3a{letter-spacing:22.631248pt;}
.ls14{letter-spacing:23.551003pt;}
.lse{letter-spacing:23.780336pt;}
.ls1e{letter-spacing:23.791003pt;}
.ls19{letter-spacing:23.887003pt;}
.ls35{letter-spacing:24.685383pt;}
.ls33{letter-spacing:24.845383pt;}
.ls5{letter-spacing:24.957258pt;}
.ls3d{letter-spacing:25.593670pt;}
.ls1a{letter-spacing:26.463003pt;}
.ls2f{letter-spacing:26.558024pt;}
.ls1b{letter-spacing:26.625914pt;}
.lsf{letter-spacing:26.815003pt;}
.ls12{letter-spacing:27.932581pt;}
.ls15{letter-spacing:28.367003pt;}
.ls32{letter-spacing:28.472050pt;}
.ls3c{letter-spacing:29.007003pt;}
.ls30{letter-spacing:29.161670pt;}
.ls34{letter-spacing:29.263003pt;}
.ls27{letter-spacing:30.509878pt;}
.ls16{letter-spacing:32.703003pt;}
.ls1{letter-spacing:39.516410pt;}
.ls2a{letter-spacing:48.739544pt;}
.ls2c{letter-spacing:63.413391pt;}
.ls23{letter-spacing:81.882272pt;}
.ls25{letter-spacing:94.525598pt;}
.ls29{letter-spacing:94.533729pt;}
.ls21{letter-spacing:96.038009pt;}
.ls2b{letter-spacing:147.745793pt;}
.ls24{letter-spacing:150.381458pt;}
.ls17{letter-spacing:183.873207pt;}
.ws2{word-spacing:-53.333333pt;}
.ws25{word-spacing:-37.899668pt;}
.wsa8{word-spacing:-24.459657pt;}
.wsa7{word-spacing:-24.401475pt;}
.ws8{word-spacing:-18.583288pt;}
.ws0{word-spacing:-16.874667pt;}
.ws1f{word-spacing:-16.162923pt;}
.ws81{word-spacing:-12.936182pt;}
.ws9a{word-spacing:-3.140138pt;}
.ws9b{word-spacing:-3.130184pt;}
.ws18{word-spacing:-3.072003pt;}
.wsa9{word-spacing:-2.722911pt;}
.wsa6{word-spacing:-2.664729pt;}
.ws13{word-spacing:-2.175846pt;}
.ws23{word-spacing:-1.501092pt;}
.ws21{word-spacing:-1.442910pt;}
.ws88{word-spacing:-1.384728pt;}
.ws91{word-spacing:-0.744728pt;}
.ws92{word-spacing:-0.686546pt;}
.ws93{word-spacing:-0.667928pt;}
.ws3d{word-spacing:-0.512000pt;}
.ws38{word-spacing:-0.395637pt;}
.ws16{word-spacing:-0.263014pt;}
.ws10{word-spacing:-0.249576pt;}
.ws11{word-spacing:-0.215194pt;}
.ws26{word-spacing:-0.190920pt;}
.ws27{word-spacing:-0.162909pt;}
.ws4{word-spacing:-0.091815pt;}
.ws19{word-spacing:-0.058182pt;}
.ws77{word-spacing:-0.054200pt;}
.ws7b{word-spacing:-0.053354pt;}
.ws4c{word-spacing:-0.046545pt;}
.ws6{word-spacing:-0.042507pt;}
.ws76{word-spacing:-0.037940pt;}
.ws79{word-spacing:-0.037348pt;}
.wsb{word-spacing:-0.031881pt;}
.ws1{word-spacing:0.000000pt;}
.ws54{word-spacing:0.011636pt;}
.ws71{word-spacing:0.266460pt;}
.ws72{word-spacing:0.302546pt;}
.ws6e{word-spacing:0.477091pt;}
.ws24{word-spacing:0.651637pt;}
.ws4f{word-spacing:0.709819pt;}
.wsa0{word-spacing:0.768001pt;}
.ws4e{word-spacing:0.849455pt;}
.ws70{word-spacing:0.942546pt;}
.ws28{word-spacing:1.117092pt;}
.ws29{word-spacing:1.175274pt;}
.ws6d{word-spacing:1.233456pt;}
.ws3c{word-spacing:1.408001pt;}
.ws12{word-spacing:1.601997pt;}
.ws61{word-spacing:1.698911pt;}
.ws8b{word-spacing:1.815274pt;}
.wse{word-spacing:1.936742pt;}
.ws36{word-spacing:1.989820pt;}
.ws6f{word-spacing:2.106184pt;}
.ws15{word-spacing:2.319309pt;}
.wsa{word-spacing:2.701875pt;}
.wsbd{word-spacing:2.705577pt;}
.wsb5{word-spacing:2.706833pt;}
.wsac{word-spacing:2.724058pt;}
.wsba{word-spacing:2.725135pt;}
.wsb6{word-spacing:2.725736pt;}
.wsb1{word-spacing:2.727393pt;}
.wsbc{word-spacing:2.727642pt;}
.wsb9{word-spacing:2.727697pt;}
.wsb8{word-spacing:2.728180pt;}
.wsb2{word-spacing:2.729392pt;}
.wsb4{word-spacing:2.730189pt;}
.wsaf{word-spacing:2.733467pt;}
.wsaa{word-spacing:2.733559pt;}
.ws9{word-spacing:2.749696pt;}
.ws86{word-spacing:2.862548pt;}
.ws99{word-spacing:2.978912pt;}
.ws96{word-spacing:3.037093pt;}
.ws95{word-spacing:3.095275pt;}
.ws46{word-spacing:3.153457pt;}
.ws65{word-spacing:3.211274pt;}
.ws30{word-spacing:3.211639pt;}
.ws1d{word-spacing:3.269821pt;}
.ws14{word-spacing:3.275725pt;}
.ws98{word-spacing:3.467639pt;}
.ws5b{word-spacing:3.695683pt;}
.ws87{word-spacing:3.697644pt;}
.ws5{word-spacing:3.700367pt;}
.ws33{word-spacing:3.735276pt;}
.ws2e{word-spacing:3.793458pt;}
.ws66{word-spacing:3.851640pt;}
.ws3b{word-spacing:4.026185pt;}
.ws39{word-spacing:4.084367pt;}
.ws37{word-spacing:4.142549pt;}
.ws63{word-spacing:4.200731pt;}
.ws34{word-spacing:4.317095pt;}
.ws53{word-spacing:4.375276pt;}
.ws68{word-spacing:4.549014pt;}
.ws1b{word-spacing:4.549822pt;}
.ws9d{word-spacing:4.608004pt;}
.ws5e{word-spacing:4.666186pt;}
.ws1a{word-spacing:4.724368pt;}
.ws8d{word-spacing:4.782549pt;}
.wsf{word-spacing:4.949453pt;}
.ws31{word-spacing:4.957095pt;}
.ws1c{word-spacing:5.131641pt;}
.ws50{word-spacing:5.161600pt;}
.ws84{word-spacing:5.172226pt;}
.ws51{word-spacing:5.189823pt;}
.ws64{word-spacing:5.306186pt;}
.ws89{word-spacing:5.364368pt;}
.ws48{word-spacing:5.480732pt;}
.ws20{word-spacing:5.597096pt;}
.ws90{word-spacing:5.829823pt;}
.wsa4{word-spacing:5.888005pt;}
.ws8c{word-spacing:6.004369pt;}
.wsa5{word-spacing:6.062551pt;}
.ws32{word-spacing:6.120732pt;}
.ws2b{word-spacing:6.178914pt;}
.ws4d{word-spacing:6.353460pt;}
.ws62{word-spacing:6.411642pt;}
.ws3e{word-spacing:6.469824pt;}
.ws47{word-spacing:6.702551pt;}
.ws5f{word-spacing:7.225600pt;}
.ws60{word-spacing:7.226188pt;}
.ws9c{word-spacing:7.517097pt;}
.ws1e{word-spacing:7.575279pt;}
.ws9e{word-spacing:7.808007pt;}
.ws45{word-spacing:7.866188pt;}
.ws85{word-spacing:7.924370pt;}
.ws52{word-spacing:8.040734pt;}
.ws6c{word-spacing:8.157098pt;}
.wsc{word-spacing:8.185748pt;}
.ws75{word-spacing:8.331643pt;}
.ws74{word-spacing:8.389825pt;}
.ws2c{word-spacing:8.506189pt;}
.ws2d{word-spacing:8.564371pt;}
.ws9f{word-spacing:8.578734pt;}
.ws5d{word-spacing:8.622553pt;}
.ws6b{word-spacing:8.855280pt;}
.ws3f{word-spacing:9.088008pt;}
.ws41{word-spacing:9.111609pt;}
.ws40{word-spacing:9.136274pt;}
.ws42{word-spacing:9.146189pt;}
.ws8f{word-spacing:9.378917pt;}
.ws8a{word-spacing:9.669826pt;}
.ws44{word-spacing:9.786190pt;}
.ws7e{word-spacing:9.902554pt;}
.ws7d{word-spacing:9.960736pt;}
.ws73{word-spacing:10.018917pt;}
.ws7c{word-spacing:10.158554pt;}
.ws49{word-spacing:10.193463pt;}
.ws8e{word-spacing:10.251645pt;}
.ws83{word-spacing:10.717100pt;}
.wsa1{word-spacing:10.775282pt;}
.wsa3{word-spacing:11.008009pt;}
.ws5c{word-spacing:11.066191pt;}
.ws17{word-spacing:11.147646pt;}
.ws43{word-spacing:11.298919pt;}
.ws2f{word-spacing:11.357100pt;}
.wsa2{word-spacing:11.938919pt;}
.ws35{word-spacing:12.055283pt;}
.ws7{word-spacing:12.292789pt;}
.ws82{word-spacing:12.369465pt;}
.ws4a{word-spacing:13.451648pt;}
.wsbb{word-spacing:16.324144pt;}
.wsb0{word-spacing:16.326378pt;}
.wsb3{word-spacing:16.329477pt;}
.wsae{word-spacing:16.331711pt;}
.wsab{word-spacing:16.350998pt;}
.ws6a{word-spacing:16.651650pt;}
.ws69{word-spacing:16.672432pt;}
.wsad{word-spacing:17.502413pt;}
.wsb7{word-spacing:17.550234pt;}
.ws7a{word-spacing:17.713493pt;}
.ws78{word-spacing:17.994342pt;}
.ws22{word-spacing:19.085271pt;}
.ws94{word-spacing:19.874605pt;}
.ws2a{word-spacing:21.709271pt;}
.ws3a{word-spacing:24.626605pt;}
.ws67{word-spacing:25.117271pt;}
.ws3{word-spacing:34.338985pt;}
.ws4b{word-spacing:40.389852pt;}
.ws55{word-spacing:47.546221pt;}
.ws57{word-spacing:47.604403pt;}
.wsd{word-spacing:49.096400pt;}
.ws59{word-spacing:76.695337pt;}
.ws5a{word-spacing:105.786270pt;}
.ws56{word-spacing:107.415362pt;}
.ws7f{word-spacing:110.416181pt;}
.ws80{word-spacing:116.239037pt;}
.ws97{word-spacing:209.269018pt;}
.ws58{word-spacing:226.513643pt;}
._33{margin-left:-90.856296pt;}
._a{margin-left:-33.454573pt;}
._3e{margin-left:-31.610848pt;}
._1b{margin-left:-29.862248pt;}
._3d{margin-left:-28.421455pt;}
._10{margin-left:-25.331299pt;}
._11{margin-left:-23.876304pt;}
._e{margin-left:-22.979550pt;}
._39{margin-left:-21.949753pt;}
._f{margin-left:-19.294379pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.333333pt;}
._3{margin-left:-3.808000pt;}
._9{margin-left:-2.846279pt;}
._1{margin-left:-1.774933pt;}
._14{width:1.171112pt;}
._b{width:2.173784pt;}
._c{width:3.352493pt;}
._0{width:4.966400pt;}
._4{width:6.645421pt;}
._5{width:7.626629pt;}
._6{width:14.452448pt;}
._1e{width:17.193128pt;}
._38{width:18.170694pt;}
._3a{width:19.694668pt;}
._13{width:20.664149pt;}
._2d{width:21.855776pt;}
._d{width:23.197109pt;}
._18{width:24.145475pt;}
._19{width:25.791643pt;}
._35{width:27.396184pt;}
._12{width:28.554581pt;}
._15{width:30.021843pt;}
._16{width:31.709890pt;}
._37{width:34.344588pt;}
._1d{width:36.967488pt;}
._17{width:39.320739pt;}
._36{width:40.627095pt;}
._1a{width:42.278819pt;}
._2f{width:43.338788pt;}
._1c{width:45.981837pt;}
._34{width:48.334803pt;}
._3c{width:49.629132pt;}
._3b{width:50.598826pt;}
._1f{width:64.204849pt;}
._2e{width:67.012133pt;}
._20{width:74.112144pt;}
._22{width:114.980083pt;}
._21{width:117.702689pt;}
._2a{width:121.949193pt;}
._32{width:130.629841pt;}
._30{width:165.913503pt;}
._31{width:170.438381pt;}
._24{width:225.396551pt;}
._25{width:232.960194pt;}
._27{width:242.676566pt;}
._2b{width:252.111720pt;}
._28{width:274.689027pt;}
._7{width:281.706667pt;}
._23{width:307.038144pt;}
._2c{width:509.339387pt;}
._29{width:531.916694pt;}
._26{width:564.265812pt;}
.fsa{font-size:31.880533pt;}
.fs11{font-size:33.445590pt;}
.fs1a{font-size:36.353824pt;}
.fse{font-size:37.347619pt;}
.fs12{font-size:37.808069pt;}
.fsc{font-size:37.939768pt;}
.fs18{font-size:42.170548pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs16{font-size:46.533028pt;}
.fsb{font-size:47.820800pt;}
.fs4{font-size:48.000000pt;}
.fs10{font-size:49.441262pt;}
.fs7{font-size:53.333333pt;}
.fsf{font-size:53.353894pt;}
.fsd{font-size:54.199824pt;}
.fs19{font-size:55.257986pt;}
.fs13{font-size:56.712231pt;}
.fs9{font-size:58.181867pt;}
.fs2{font-size:58.666667pt;}
.fs17{font-size:63.982945pt;}
.fs3{font-size:64.000000pt;}
.fs15{font-size:69.799669pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs8{font-size:91.815467pt;}
.fs14{font-size:106.153493pt;}
.y1b{bottom:-48.666667pt;}
.y1a{bottom:-29.040000pt;}
.ye0{bottom:-23.630011pt;}
.ycf{bottom:-12.344252pt;}
.y19{bottom:-9.413333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.812733pt;}
.yde{bottom:3.999001pt;}
.yf1{bottom:5.453157pt;}
.yc{bottom:7.146667pt;}
.yc4{bottom:9.286296pt;}
.yb9{bottom:9.433531pt;}
.y18{bottom:10.200000pt;}
.ydf{bottom:14.541619pt;}
.y2e{bottom:17.096233pt;}
.yf2{bottom:18.540345pt;}
.yc5{bottom:25.261510pt;}
.yba{bottom:25.662033pt;}
.ye1{bottom:26.538373pt;}
.y17{bottom:29.826667pt;}
.y2d{bottom:30.379733pt;}
.yd1{bottom:30.864631pt;}
.ydb{bottom:30.917108pt;}
.ye2{bottom:39.989309pt;}
.y22{bottom:42.173333pt;}
.ydc{bottom:46.549410pt;}
.y16{bottom:49.453333pt;}
.y2b{bottom:51.986667pt;}
.ye3{bottom:53.440244pt;}
.y2c{bottom:54.852400pt;}
.y32{bottom:57.333333pt;}
.y21{bottom:61.786667pt;}
.yd2{bottom:68.506438pt;}
.y15{bottom:69.080000pt;}
.yc9{bottom:74.709429pt;}
.ybe{bottom:75.893953pt;}
.y20{bottom:81.413333pt;}
.yd7{bottom:84.356967pt;}
.yf4{bottom:85.749520pt;}
.y14{bottom:88.706667pt;}
.yc2{bottom:89.317672pt;}
.yd8{bottom:89.810124pt;}
.yb7{bottom:90.733811pt;}
.ybd{bottom:93.195560pt;}
.y1f{bottom:101.040000pt;}
.y10a{bottom:102.520000pt;}
.yfa{bottom:105.062944pt;}
.yc8{bottom:105.078670pt;}
.yc3{bottom:105.292886pt;}
.yd4{bottom:105.805918pt;}
.yb8{bottom:106.962313pt;}
.yb2{bottom:107.676000pt;}
.yef{bottom:108.044000pt;}
.yf9{bottom:108.334989pt;}
.yd3{bottom:111.258326pt;}
.y10{bottom:119.053333pt;}
.ybc{bottom:119.759328pt;}
.y109{bottom:119.789333pt;}
.y1e{bottom:120.666667pt;}
.yb1{bottom:124.945333pt;}
.yee{bottom:125.312000pt;}
.yd0{bottom:126.528411pt;}
.yb6{bottom:127.287383pt;}
.yc7{bottom:131.229179pt;}
.y108{bottom:137.057333pt;}
.y1c{bottom:137.733333pt;}
.yc1{bottom:138.639739pt;}
.yf{bottom:138.680000pt;}
.y1d{bottom:140.293333pt;}
.yb0{bottom:142.213333pt;}
.yed{bottom:142.581333pt;}
.yd6{bottom:143.250029pt;}
.yf5{bottom:146.440767pt;}
.yd9{bottom:146.885539pt;}
.yd5{bottom:149.067163pt;}
.y107{bottom:154.326667pt;}
.yda{bottom:159.246238pt;}
.yaf{bottom:159.482667pt;}
.yec{bottom:159.849333pt;}
.y86{bottom:163.700000pt;}
.yf3{bottom:165.773958pt;}
.yfb{bottom:166.865090pt;}
.y106{bottom:171.594667pt;}
.yfc{bottom:171.954270pt;}
.ybf{bottom:176.017884pt;}
.yc6{bottom:176.331176pt;}
.yae{bottom:176.750667pt;}
.yeb{bottom:177.118667pt;}
.yb4{bottom:178.808661pt;}
.ybb{bottom:179.126920pt;}
.y85{bottom:180.969333pt;}
.yf8{bottom:187.949852pt;}
.y105{bottom:188.864000pt;}
.yc0{bottom:191.993098pt;}
.yad{bottom:194.018667pt;}
.yb5{bottom:195.037163pt;}
.y84{bottom:198.237333pt;}
.y57{bottom:205.793333pt;}
.y104{bottom:206.132000pt;}
.yf7{bottom:206.854399pt;}
.yac{bottom:211.288000pt;}
.yf6{bottom:214.124216pt;}
.yea{bottom:214.740000pt;}
.y83{bottom:215.506667pt;}
.y56{bottom:220.405333pt;}
.y103{bottom:223.400000pt;}
.yab{bottom:228.556000pt;}
.ye9{bottom:232.009333pt;}
.y82{bottom:232.774667pt;}
.y55{bottom:235.017333pt;}
.y102{bottom:240.669333pt;}
.yaa{bottom:245.825333pt;}
.ye8{bottom:249.277333pt;}
.y54{bottom:249.629333pt;}
.y81{bottom:250.044000pt;}
.y101{bottom:257.937333pt;}
.ya9{bottom:263.093333pt;}
.y53{bottom:264.241333pt;}
.y80{bottom:267.312000pt;}
.y100{bottom:275.206667pt;}
.y52{bottom:278.853333pt;}
.ya8{bottom:280.362667pt;}
.y7f{bottom:284.581333pt;}
.y133{bottom:291.694667pt;}
.y51{bottom:293.465333pt;}
.ya7{bottom:297.630667pt;}
.y7e{bottom:301.849333pt;}
.y132{bottom:306.306667pt;}
.ya{bottom:306.382667pt;}
.y50{bottom:308.077333pt;}
.ye7{bottom:309.225333pt;}
.ya6{bottom:314.898667pt;}
.y7d{bottom:319.117333pt;}
.y131{bottom:320.918667pt;}
.y4f{bottom:322.688000pt;}
.ye6{bottom:326.493333pt;}
.ya5{bottom:332.168000pt;}
.y130{bottom:335.530667pt;}
.y7c{bottom:336.386667pt;}
.y4e{bottom:337.300000pt;}
.yd{bottom:343.546667pt;}
.ye5{bottom:343.761333pt;}
.yff{bottom:346.845333pt;}
.ya4{bottom:349.436000pt;}
.y12f{bottom:350.141333pt;}
.y9{bottom:351.724000pt;}
.y7b{bottom:353.654667pt;}
.ye4{bottom:361.030667pt;}
.yfe{bottom:364.113333pt;}
.y12e{bottom:364.753333pt;}
.ya3{bottom:366.705333pt;}
.y7a{bottom:370.924000pt;}
.y4d{bottom:373.165333pt;}
.y12d{bottom:379.365333pt;}
.yfd{bottom:381.382667pt;}
.ya2{bottom:383.973333pt;}
.yb{bottom:386.533333pt;}
.y79{bottom:388.192000pt;}
.ydd{bottom:391.582667pt;}
.y12c{bottom:393.977333pt;}
.y8{bottom:397.065333pt;}
.y4c{bottom:399.498667pt;}
.ya1{bottom:401.242667pt;}
.y78{bottom:405.461333pt;}
.y12b{bottom:408.589333pt;}
.yf0{bottom:411.934667pt;}
.y4b{bottom:414.110667pt;}
.ya0{bottom:418.510667pt;}
.y77{bottom:422.729333pt;}
.y12a{bottom:423.201333pt;}
.y4a{bottom:423.642667pt;}
.y11{bottom:433.826667pt;}
.y9f{bottom:435.778667pt;}
.y129{bottom:437.813333pt;}
.y76{bottom:439.997333pt;}
.y7{bottom:442.406667pt;}
.y49{bottom:443.333333pt;}
.y128{bottom:452.425333pt;}
.y9e{bottom:453.048000pt;}
.yce{bottom:454.458737pt;}
.y75{bottom:457.266667pt;}
.y48{bottom:457.945333pt;}
.y127{bottom:467.037333pt;}
.y9d{bottom:470.316000pt;}
.y47{bottom:472.557333pt;}
.y74{bottom:474.534667pt;}
.y12{bottom:478.426667pt;}
.y126{bottom:481.649333pt;}
.y46{bottom:487.169333pt;}
.y9c{bottom:487.585333pt;}
.y6{bottom:487.748000pt;}
.y73{bottom:491.804000pt;}
.y125{bottom:496.260000pt;}
.y45{bottom:496.702667pt;}
.y9b{bottom:504.853333pt;}
.y72{bottom:509.072000pt;}
.y124{bottom:510.872000pt;}
.y44{bottom:516.393333pt;}
.y9a{bottom:522.122667pt;}
.y23{bottom:524.093333pt;}
.y123{bottom:525.484000pt;}
.y71{bottom:526.341333pt;}
.y43{bottom:531.005333pt;}
.y5{bottom:533.089333pt;}
.y99{bottom:539.390667pt;}
.y122{bottom:540.096000pt;}
.y42{bottom:540.538667pt;}
.y70{bottom:543.609333pt;}
.y121{bottom:554.708000pt;}
.y98{bottom:556.658667pt;}
.y41{bottom:560.229333pt;}
.y6f{bottom:560.877333pt;}
.ye{bottom:561.706667pt;}
.y120{bottom:569.320000pt;}
.y40{bottom:574.841333pt;}
.y6e{bottom:578.146667pt;}
.y11f{bottom:583.932000pt;}
.y3f{bottom:589.452000pt;}
.y6d{bottom:595.414667pt;}
.y11e{bottom:598.544000pt;}
.y3e{bottom:602.970667pt;}
.y6c{bottom:612.684000pt;}
.y11d{bottom:613.156000pt;}
.y3d{bottom:620.240000pt;}
.y11c{bottom:627.768000pt;}
.y6b{bottom:629.952000pt;}
.y97{bottom:633.536000pt;}
.y3c{bottom:637.508000pt;}
.y11b{bottom:642.378667pt;}
.y6a{bottom:647.221333pt;}
.y96{bottom:650.844000pt;}
.y3b{bottom:654.777333pt;}
.y11a{bottom:656.990667pt;}
.y69{bottom:664.489333pt;}
.y119{bottom:671.602667pt;}
.y3a{bottom:672.045333pt;}
.y95{bottom:676.652000pt;}
.ycd{bottom:677.272000pt;}
.y68{bottom:681.757333pt;}
.y118{bottom:686.214667pt;}
.y39{bottom:689.313333pt;}
.y4{bottom:691.756000pt;}
.y94{bottom:693.960000pt;}
.ycc{bottom:694.541333pt;}
.y67{bottom:699.026667pt;}
.y117{bottom:700.826667pt;}
.y38{bottom:706.582667pt;}
.ycb{bottom:711.809333pt;}
.y116{bottom:715.438667pt;}
.y66{bottom:716.294667pt;}
.y93{bottom:719.768000pt;}
.y37{bottom:723.850667pt;}
.y13{bottom:725.040000pt;}
.yca{bottom:729.077333pt;}
.y115{bottom:730.050667pt;}
.y65{bottom:733.564000pt;}
.y92{bottom:737.076000pt;}
.y36{bottom:741.120000pt;}
.y114{bottom:744.662667pt;}
.y64{bottom:750.832000pt;}
.y35{bottom:758.388000pt;}
.yb3{bottom:760.997333pt;}
.y91{bottom:762.885333pt;}
.y63{bottom:768.101333pt;}
.y90{bottom:780.192000pt;}
.y113{bottom:782.284000pt;}
.y62{bottom:785.369333pt;}
.y112{bottom:799.553333pt;}
.y34{bottom:799.566667pt;}
.y8f{bottom:800.722667pt;}
.y61{bottom:802.637333pt;}
.y2a{bottom:802.933333pt;}
.y3{bottom:805.081333pt;}
.y111{bottom:816.821333pt;}
.y8e{bottom:817.992000pt;}
.y60{bottom:819.906667pt;}
.y29{bottom:828.800000pt;}
.y33{bottom:831.566667pt;}
.y110{bottom:834.090667pt;}
.y5f{bottom:837.174667pt;}
.y8d{bottom:844.342667pt;}
.y10f{bottom:851.358667pt;}
.y5e{bottom:854.444000pt;}
.y2{bottom:857.092000pt;}
.y8c{bottom:861.610667pt;}
.y28{bottom:864.666667pt;}
.y10e{bottom:868.626667pt;}
.y5d{bottom:871.712000pt;}
.y8b{bottom:878.880000pt;}
.y1{bottom:879.748000pt;}
.y10d{bottom:885.896000pt;}
.y5c{bottom:888.981333pt;}
.y8a{bottom:896.148000pt;}
.y27{bottom:898.813333pt;}
.y10c{bottom:903.164000pt;}
.y5b{bottom:906.249333pt;}
.y89{bottom:913.417333pt;}
.y10b{bottom:920.433333pt;}
.y5a{bottom:923.517333pt;}
.y26{bottom:924.413333pt;}
.y88{bottom:930.685333pt;}
.y59{bottom:940.786667pt;}
.y87{bottom:947.954667pt;}
.y58{bottom:958.054667pt;}
.y25{bottom:961.320000pt;}
.y31{bottom:1017.333333pt;}
.y30{bottom:1036.000000pt;}
.y24{bottom:1059.173333pt;}
.h17{height:21.551241pt;}
.h2b{height:24.783182pt;}
.h24{height:24.798819pt;}
.h1e{height:25.192006pt;}
.h37{height:26.901830pt;}
.h36{height:26.938183pt;}
.h2c{height:27.977971pt;}
.h1c{height:28.734867pt;}
.h4{height:29.333333pt;}
.h34{height:31.248376pt;}
.h31{height:34.480973pt;}
.h18{height:35.865600pt;}
.h2a{height:36.635975pt;}
.hf{height:37.031250pt;}
.he{height:38.171466pt;}
.h28{height:38.201388pt;}
.h21{height:38.807074pt;}
.h27{height:40.015420pt;}
.h22{height:40.649868pt;}
.h35{height:40.946168pt;}
.h1a{height:40.960034pt;}
.hd{height:41.367733pt;}
.h19{height:41.865907pt;}
.h2d{height:42.023763pt;}
.h1b{height:43.636400pt;}
.h10{height:43.854610pt;}
.h26{height:44.158657pt;}
.h25{height:44.164013pt;}
.hc{height:44.500000pt;}
.h20{height:44.858796pt;}
.h1f{height:44.864236pt;}
.h33{height:47.411362pt;}
.h15{height:49.844201pt;}
.h16{height:49.849534pt;}
.ha{height:50.062500pt;}
.h38{height:51.076909pt;}
.h13{height:51.082243pt;}
.h2f{height:51.721555pt;}
.h3{height:51.916667pt;}
.h14{height:55.018701pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h30{height:62.876070pt;}
.hb{height:64.000000pt;}
.h11{height:64.270827pt;}
.h12{height:64.729904pt;}
.h9{height:66.750000pt;}
.h2e{height:78.659738pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h29{height:188.628210pt;}
.h23{height:207.059696pt;}
.h1d{height:210.341932pt;}
.h32{height:245.744640pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.wc{width:302.369441pt;}
.w6{width:325.746667pt;}
.wd{width:362.857320pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:607.353867pt;}
.w9{width:793.333333pt;}
.wa{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:1.188474pt;}
.x3{left:2.666667pt;}
.x26{left:11.633257pt;}
.x32{left:12.723941pt;}
.x37{left:15.268550pt;}
.x2a{left:19.994462pt;}
.x19{left:22.819914pt;}
.x28{left:24.278482pt;}
.x35{left:29.078183pt;}
.x27{left:31.158052pt;}
.x36{left:32.354970pt;}
.x29{left:33.445654pt;}
.x34{left:35.990518pt;}
.x25{left:40.716431pt;}
.x18{left:42.267730pt;}
.xa{left:52.000000pt;}
.xc{left:67.602400pt;}
.xb{left:91.970133pt;}
.xe{left:93.333333pt;}
.x12{left:94.488000pt;}
.x3d{left:100.632000pt;}
.x17{left:102.992000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x20{left:117.360193pt;}
.x1a{left:119.203506pt;}
.x1b{left:136.600319pt;}
.x21{left:138.190093pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x3a{left:170.862536pt;}
.x7{left:178.413333pt;}
.x15{left:188.130667pt;}
.x13{left:190.129333pt;}
.x24{left:191.777751pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x23{left:205.060529pt;}
.x14{left:208.998667pt;}
.x22{left:212.240806pt;}
.x1d{left:215.587099pt;}
.x1e{left:222.250143pt;}
.x39{left:223.939219pt;}
.x30{left:225.393720pt;}
.x1c{left:232.230427pt;}
.x33{left:241.389712pt;}
.x38{left:243.570056pt;}
.x2e{left:246.843899pt;}
.x2f{left:264.656738pt;}
.x31{left:270.472694pt;}
.x2d{left:281.016035pt;}
.x16{left:297.728000pt;}
.x2c{left:310.098826pt;}
.x2b{left:320.640439pt;}
.x3c{left:332.638217pt;}
.x3b{left:343.179830pt;}
.x1f{left:388.346667pt;}
.x11{left:397.333333pt;}
.x10{left:490.066667pt;}
.xf{left:617.906667pt;}
}




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