
    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_beb7a857bbe0ad14327012a2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4dbb28d74dc0d80e7777fb83.woff')format("woff");}.ff2{font-family:ff2;line-height:0.707000;font-style:normal;font-weight: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_cdcadc5bfa442c5ebae5d81e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;font-style:normal;font-weight: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_df5aaeadf91223a23f60f152.woff')format("woff");}.ff4{font-family:ff4;line-height:0.571000;font-style:normal;font-weight: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_cc3d7b2785d6440a35ca6ab0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947000;font-style:normal;font-weight: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_4c73e7871a56e3b58adbe9d1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_75efb5787fb64b485e0cf726.woff')format("woff");}.ff7{font-family:ff7;line-height:0.686000;font-style:normal;font-weight: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_f2df126f302f86377bf0feb4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.282038;font-style:normal;font-weight: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_99b63466a998fe1e18fc9b31.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_75efb5787fb64b485e0cf726.woff')format("woff");}.ffa{font-family:ffa;line-height:0.686000;font-style:normal;font-weight: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_81d3f6518d615a4decf60704.woff')format("woff");}.ffb{font-family:ffb;line-height:0.931641;font-style:normal;font-weight: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_fbf36206ed877a4ed76f887b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.926270;font-style:normal;font-weight: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_438e2fc870b48b17428e01d9.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b98113bd2c8f07b05105e347.woff')format("woff");}.ffe{font-family:ffe;line-height:0.932129;font-style:normal;font-weight: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_3382b75d7a35398b7b74e049.woff')format("woff");}.fff{font-family:fff;line-height:0.719069;font-style:normal;font-weight: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_e38e08726d47635985f921e2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.763000;font-style:normal;font-weight: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_92312400f0c1fb9670c75ee8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.687988;font-style:normal;font-weight: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_970c6197d4f92925cbbf0e9b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.768555;font-style:normal;font-weight: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_edd1bb0c6dc4381fa4927e9f.woff')format("woff");}.ff13{font-family:ff13;line-height:1.196289;font-style:normal;font-weight: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_0d308460ccfca3b8d4402674.woff')format("woff");}.ff14{font-family:ff14;line-height:0.853027;font-style:normal;font-weight: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_b31ca3c19eeb5201de0c715a.woff')format("woff");}.ff15{font-family:ff15;line-height:1.172363;font-style:normal;font-weight: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_f7026736b5e6ef78f69d1887.woff')format("woff");}.ff16{font-family:ff16;line-height:0.911621;font-style:normal;font-weight: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_2377f0e95b31fcd9231ae37f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.708984;font-style:normal;font-weight: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_c4e62bbcaffa68844db6eff4.woff')format("woff");}.ff18{font-family:ff18;line-height:0.699219;font-style:normal;font-weight: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_5c8a115fd7e1e6ae2c604f74.woff')format("woff");}.ff19{font-family:ff19;line-height:0.708008;font-style:normal;font-weight: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_5295d77c7f0c1210a7746ac8.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;font-style:normal;font-weight: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_937b5a0176fc8190b2995c9a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.947000;font-style:normal;font-weight: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_0be0d42b10ec3dca1765b903.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_24a5a4bcb373b5129399d0f8.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.699000;font-style:normal;font-weight: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_5db95e94b9be3692b6f7221c.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_24a5a4bcb373b5129399d0f8.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m2{transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248906,0.000000,0.000000,0.250000,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);}
.vc{vertical-align:-15.470130px;}
.va{vertical-align:-13.757187px;}
.v5{vertical-align:-12.306000px;}
.v4{vertical-align:-11.021184px;}
.v2{vertical-align:-9.816000px;}
.v1{vertical-align:-7.476000px;}
.v9{vertical-align:-5.019067px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.822000px;}
.v8{vertical-align:11.327040px;}
.v3{vertical-align:18.368640px;}
.vf{vertical-align:24.491880px;}
.ve{vertical-align:30.048000px;}
.vb{vertical-align:31.178262px;}
.vd{vertical-align:37.842318px;}
.v7{vertical-align:44.310000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000038px;}
.ls4{letter-spacing:0.000061px;}
.ls2a{letter-spacing:0.000082px;}
.ls1a{letter-spacing:0.003239px;}
.ls15{letter-spacing:0.003242px;}
.ls6{letter-spacing:0.003782px;}
.ls22{letter-spacing:0.004692px;}
.ls21{letter-spacing:0.011805px;}
.ls12{letter-spacing:0.011950px;}
.lsb{letter-spacing:0.012075px;}
.ls18{letter-spacing:0.013603px;}
.ls25{letter-spacing:0.014124px;}
.ls1e{letter-spacing:0.061881px;}
.ls1d{letter-spacing:0.233242px;}
.lsa{letter-spacing:2.678616px;}
.ls23{letter-spacing:3.687955px;}
.ls24{letter-spacing:3.844692px;}
.ls7{letter-spacing:5.068692px;}
.ls26{letter-spacing:5.595000px;}
.lse{letter-spacing:7.972752px;}
.lsc{letter-spacing:10.972455px;}
.ls28{letter-spacing:11.170752px;}
.ls9{letter-spacing:11.176752px;}
.ls27{letter-spacing:11.198706px;}
.lsd{letter-spacing:15.142752px;}
.ls1f{letter-spacing:16.791000px;}
.ls8{letter-spacing:16.868616px;}
.ls19{letter-spacing:18.177777px;}
.ls20{letter-spacing:18.346752px;}
.ls2{letter-spacing:23.864616px;}
.ls10{letter-spacing:32.693424px;}
.lsf{letter-spacing:32.694179px;}
.ls1{letter-spacing:32.718178px;}
.ls17{letter-spacing:32.721777px;}
.ls5{letter-spacing:32.724178px;}
.ls30{letter-spacing:32.726131px;}
.ls2e{letter-spacing:32.727227px;}
.ls2f{letter-spacing:32.728326px;}
.ls31{letter-spacing:32.728858px;}
.ls13{letter-spacing:62.833934px;}
.ls1c{letter-spacing:83.495605px;}
.ls14{letter-spacing:117.512682px;}
.ls16{letter-spacing:117.518682px;}
.ls3{letter-spacing:151.138088px;}
.ls1b{letter-spacing:194.266095px;}
.ls29{letter-spacing:203.357304px;}
.ls2c{letter-spacing:237.441837px;}
.ls2b{letter-spacing:237.644303px;}
.ls2d{letter-spacing:237.645936px;}
.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;}
}
.ws20{word-spacing:-64.325768px;}
.ws21{word-spacing:-56.353872px;}
.ws1f{word-spacing:-36.286201px;}
.ws2{word-spacing:-23.929462px;}
.ws4{word-spacing:-18.196379px;}
.ws23{word-spacing:-13.984998px;}
.ws29{word-spacing:-13.617485px;}
.ws2b{word-spacing:-12.245940px;}
.ws7{word-spacing:-10.212964px;}
.ws9{word-spacing:-9.184320px;}
.wsa{word-spacing:-6.297834px;}
.wsb{word-spacing:-5.663520px;}
.ws1{word-spacing:-0.122200px;}
.ws6{word-spacing:-0.065455px;}
.ws28{word-spacing:-0.060218px;}
.ws25{word-spacing:-0.051054px;}
.ws27{word-spacing:-0.049614px;}
.ws26{word-spacing:-0.045645px;}
.ws3{word-spacing:-0.039198px;}
.wsd{word-spacing:-0.036681px;}
.wse{word-spacing:-0.006931px;}
.ws5{word-spacing:-0.003571px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:4.320004px;}
.wsf{word-spacing:5.681095px;}
.ws2c{word-spacing:23.843384px;}
.ws15{word-spacing:70.417397px;}
.ws17{word-spacing:83.185933px;}
.ws18{word-spacing:85.015391px;}
.ws14{word-spacing:88.615397px;}
.ws1d{word-spacing:92.279715px;}
.ws16{word-spacing:101.380691px;}
.ws10{word-spacing:103.251718px;}
.ws13{word-spacing:106.816154px;}
.ws1e{word-spacing:110.474473px;}
.ws1c{word-spacing:115.909936px;}
.ws11{word-spacing:119.586367px;}
.ws1a{word-spacing:119.592367px;}
.ws8{word-spacing:138.072169px;}
.ws22{word-spacing:184.994195px;}
.ws2a{word-spacing:186.139921px;}
.ws1b{word-spacing:201.573788px;}
.ws12{word-spacing:201.579788px;}
.ws19{word-spacing:237.867454px;}
.ws24{word-spacing:314.895686px;}
._f{margin-left:-954.571245px;}
._1d{margin-left:-10.329264px;}
._4{margin-left:-6.694875px;}
._1e{margin-left:-5.563641px;}
._2{margin-left:-3.586560px;}
._0{margin-left:-2.151936px;}
._7{margin-left:-1.075968px;}
._1{width:1.075968px;}
._1f{width:2.151936px;}
._5{width:3.443088px;}
._3{width:5.150711px;}
._8{width:7.992964px;}
._1c{width:12.337766px;}
._9{width:22.516382px;}
._6{width:29.610557px;}
._c{width:83.187670px;}
._b{width:101.382427px;}
._11{width:110.482806px;}
._1b{width:112.256882px;}
._e{width:119.574427px;}
._1a{width:122.381838px;}
._12{width:128.674806px;}
._d{width:137.772427px;}
._13{width:146.872806px;}
._17{width:171.013957px;}
._15{width:178.158777px;}
._a{width:181.460048px;}
._19{width:193.824069px;}
._10{width:203.288048px;}
._16{width:261.173875px;}
._14{width:268.075933px;}
._18{width:283.784065px;}
.fc0{color:rgb(0,51,255);}
.fc1{color:rgb(0,0,0);}
.fcd{color:rgb(65,105,225);}
.fc6{color:rgb(128,128,128);}
.fcb{color:rgb(255,255,255);}
.fc2{color:rgb(255,128,0);}
.fc7{color:rgb(255,20,147);}
.fc9{color:rgb(89,89,89);}
.fca{color:rgb(31,78,121);}
.fc3{color:transparent;}
.fc5{color:rgb(0,173,239);}
.fc4{color:rgb(236,0,140);}
.fc8{color:rgb(255,0,0);}
.fcc{color:rgb(47,79,79);}
.fs10{font-size:6.931092px;}
.fsf{font-size:11.950159px;}
.fsd{font-size:18.123264px;}
.fsc{font-size:22.654080px;}
.fsa{font-size:29.389824px;}
.fs1a{font-size:32.996400px;}
.fs15{font-size:35.186687px;}
.fs6{font-size:35.865600px;}
.fs18{font-size:35.938302px;}
.fs13{font-size:36.286201px;}
.fse{font-size:36.681120px;}
.fs9{font-size:36.737280px;}
.fs1c{font-size:39.187008px;}
.fs5{font-size:39.197520px;}
.fsb{font-size:45.645000px;}
.fs2{font-size:47.820600px;}
.fs1b{font-size:48.983760px;}
.fs8{font-size:49.614000px;}
.fs19{font-size:51.053760px;}
.fs16{font-size:56.353872px;}
.fs12{font-size:56.932200px;}
.fs7{font-size:60.218400px;}
.fs17{font-size:61.880520px;}
.fs14{font-size:64.325768px;}
.fs1{font-size:65.454600px;}
.fs11{font-size:65.987880px;}
.fs0{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs3{font-size:122.200320px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.642976px;}
.ybb{bottom:3.367584px;}
.y1d{bottom:4.286016px;}
.yd0{bottom:5.714772px;}
.ya0{bottom:6.069051px;}
.y31{bottom:7.173792px;}
.y1b{bottom:11.633472px;}
.y8{bottom:11.774976px;}
.y4e{bottom:12.502854px;}
.yb9{bottom:12.551904px;}
.y29{bottom:12.837312px;}
.y5f{bottom:13.786754px;}
.yce{bottom:15.511524px;}
.y9f{bottom:15.589131px;}
.y4f{bottom:15.724417px;}
.y3c{bottom:17.722098px;}
.y15{bottom:20.817792px;}
.yb2{bottom:21.736224px;}
.y80{bottom:23.247000px;}
.y3b{bottom:23.385618px;}
.y33{bottom:27.157617px;}
.y2a{bottom:27.232092px;}
.yc4{bottom:27.757464px;}
.y32{bottom:27.798444px;}
.y21{bottom:28.739268px;}
.y3a{bottom:29.049138px;}
.yb{bottom:29.336349px;}
.y50{bottom:30.826430px;}
.y39{bottom:34.712658px;}
.yb3{bottom:37.158228px;}
.y20{bottom:37.923588px;}
.y51{bottom:38.728473px;}
.y38{bottom:40.376178px;}
.yd6{bottom:40.557000px;}
.y2b{bottom:41.626872px;}
.y9e{bottom:44.030370px;}
.y1c{bottom:44.040498px;}
.y4a{bottom:44.590486px;}
.ya5{bottom:44.778402px;}
.y37{bottom:46.039698px;}
.y3f{bottom:46.107000px;}
.ycf{bottom:46.749386px;}
.y1f{bottom:47.107908px;}
.y91{bottom:47.422045px;}
.yc5{bottom:47.912240px;}
.yd8{bottom:50.412453px;}
.y36{bottom:51.703218px;}
.y16{bottom:53.498664px;}
.y49{bottom:54.792423px;}
.y46{bottom:55.779000px;}
.y2c{bottom:56.021652px;}
.y1e{bottom:56.292228px;}
.yd{bottom:56.797500px;}
.y48{bottom:56.817526px;}
.yc2{bottom:56.821500px;}
.y73{bottom:57.091500px;}
.y6a{bottom:57.157500px;}
.y35{bottom:57.366738px;}
.yb1{bottom:57.916500px;}
.ya4{bottom:59.066364px;}
.y8c{bottom:61.990126px;}
.y9c{bottom:62.951529px;}
.y3e{bottom:66.430500px;}
.y90{bottom:66.660099px;}
.yc6{bottom:68.015992px;}
.yb4{bottom:69.839100px;}
.yd7{bottom:69.930000px;}
.y2d{bottom:70.440030px;}
.ya3{bottom:71.581626px;}
.yd9{bottom:73.067442px;}
.yc3{bottom:78.813000px;}
.y72{bottom:79.282500px;}
.y7f{bottom:79.764000px;}
.y9d{bottom:81.932189px;}
.y69{bottom:81.964500px;}
.y5d{bottom:82.438500px;}
.y22{bottom:82.482000px;}
.y2e{bottom:84.834810px;}
.yba{bottom:85.578728px;}
.ya2{bottom:85.869588px;}
.y17{bottom:86.179536px;}
.y3d{bottom:86.754000px;}
.yc7{bottom:88.170768px;}
.y94{bottom:89.452500px;}
.yad{bottom:93.282000px;}
.ya{bottom:95.062622px;}
.yda{bottom:95.722431px;}
.yf5{bottom:96.792000px;}
.y2f{bottom:99.229590px;}
.y7e{bottom:100.087500px;}
.y4d{bottom:100.155167px;}
.y9b{bottom:100.853348px;}
.y71{bottom:102.222000px;}
.yb5{bottom:102.558240px;}
.y5c{bottom:103.360500px;}
.y68{bottom:104.902500px;}
.y28{bottom:107.077500px;}
.y4c{bottom:107.254066px;}
.yc8{bottom:108.274520px;}
.y6c{bottom:109.910775px;}
.ye7{bottom:110.476500px;}
.y30{bottom:113.624370px;}
.ya1{bottom:113.911500px;}
.yf4{bottom:117.115500px;}
.y4b{bottom:117.494213px;}
.ydb{bottom:118.377420px;}
.y18{bottom:118.898676px;}
.y99{bottom:119.834007px;}
.y7d{bottom:120.312000px;}
.y5b{bottom:124.282500px;}
.y70{bottom:124.414500px;}
.y47{bottom:127.046587px;}
.y67{bottom:127.095000px;}
.yc9{bottom:128.429296px;}
.ye6{bottom:130.800000px;}
.yc1{bottom:132.254208px;}
.y14{bottom:133.090500px;}
.y7{bottom:134.643000px;}
.yb6{bottom:135.239112px;}
.yf3{bottom:137.439000px;}
.y9a{bottom:138.814667px;}
.y8b{bottom:139.992406px;}
.y8e{bottom:140.196572px;}
.ydc{bottom:140.981384px;}
.y7c{bottom:141.234000px;}
.yc0{bottom:141.438528px;}
.yc{bottom:144.367188px;}
.y5a{bottom:144.606000px;}
.y6f{bottom:147.352500px;}
.yca{bottom:148.533047px;}
.y6{bottom:148.840500px;}
.y66{bottom:150.033000px;}
.ybf{bottom:150.622848px;}
.y19{bottom:151.579548px;}
.ye5{bottom:155.607000px;}
.yec{bottom:156.564000px;}
.y98{bottom:157.735826px;}
.yf2{bottom:157.764000px;}
.y96{bottom:158.866335px;}
.ybe{bottom:159.807168px;}
.y7b{bottom:162.156000px;}
.y5{bottom:163.036500px;}
.ydd{bottom:163.636373px;}
.y13{bottom:164.062500px;}
.yd5{bottom:164.095596px;}
.y59{bottom:165.528000px;}
.y95{bottom:166.601400px;}
.y6e{bottom:167.676000px;}
.yb7{bottom:167.919984px;}
.ycb{bottom:168.687824px;}
.ybd{bottom:168.991488px;}
.y65{bottom:172.225500px;}
.yac{bottom:172.518000px;}
.y97{bottom:175.466975px;}
.ye4{bottom:175.932000px;}
.yd4{bottom:176.341536px;}
.ybc{bottom:178.175808px;}
.yeb{bottom:181.371000px;}
.yf1{bottom:182.571000px;}
.y7a{bottom:183.076500px;}
.y1a{bottom:184.260420px;}
.yb8{bottom:185.178852px;}
.y58{bottom:185.851500px;}
.yde{bottom:186.291362px;}
.yd3{bottom:188.587476px;}
.ycc{bottom:188.791575px;}
.y12{bottom:188.869500px;}
.y6d{bottom:189.868500px;}
.ye3{bottom:196.255500px;}
.y64{bottom:197.032500px;}
.yab{bottom:197.325000px;}
.y4{bottom:197.422500px;}
.yd2{bottom:200.833416px;}
.yf0{bottom:202.894500px;}
.y79{bottom:203.998500px;}
.y57{bottom:206.175000px;}
.yea{bottom:206.178000px;}
.ycd{bottom:208.946351px;}
.y11{bottom:211.809000px;}
.y6b{bottom:212.808000px;}
.y5e{bottom:217.660500px;}
.y3{bottom:217.746000px;}
.y45{bottom:217.945500px;}
.ye2{bottom:221.062500px;}
.yaa{bottom:222.132000px;}
.y78{bottom:224.920500px;}
.y56{bottom:226.498500px;}
.yef{bottom:227.701500px;}
.yd1{bottom:228.539855px;}
.ye9{bottom:230.985000px;}
.y86{bottom:231.598348px;}
.y10{bottom:232.132500px;}
.y8d{bottom:234.345246px;}
.y63{bottom:234.940500px;}
.y88{bottom:237.166193px;}
.y85{bottom:237.923628px;}
.ya8{bottom:238.515000px;}
.y82{bottom:239.434078px;}
.y44{bottom:240.885000px;}
.ye1{bottom:241.386000px;}
.ya7{bottom:241.584000px;}
.y77{bottom:245.841000px;}
.y55{bottom:246.822000px;}
.ya9{bottom:247.492500px;}
.y27{bottom:249.298500px;}
.ya6{bottom:249.360000px;}
.yee{bottom:252.508500px;}
.y81{bottom:252.700334px;}
.yf{bottom:254.325000px;}
.y84{bottom:255.105538px;}
.ye8{bottom:255.792000px;}
.y62{bottom:259.747500px;}
.y87{bottom:259.982380px;}
.y26{bottom:260.524500px;}
.y43{bottom:261.208500px;}
.y8f{bottom:261.905387px;}
.yb0{bottom:265.537500px;}
.y83{bottom:265.550224px;}
.ye0{bottom:266.193000px;}
.y76{bottom:266.763000px;}
.y54{bottom:267.147000px;}
.y2{bottom:275.818500px;}
.y92{bottom:276.615034px;}
.ye{bottom:279.132000px;}
.y42{bottom:283.401000px;}
.y61{bottom:284.554500px;}
.y89{bottom:285.824705px;}
.y8a{bottom:285.958199px;}
.ydf{bottom:286.516500px;}
.y25{bottom:286.623000px;}
.y75{bottom:287.685000px;}
.y53{bottom:288.067500px;}
.yaf{bottom:290.344500px;}
.y93{bottom:294.127500px;}
.y1{bottom:296.740500px;}
.y41{bottom:306.339000px;}
.y74{bottom:308.008500px;}
.y52{bottom:308.391000px;}
.y60{bottom:309.361500px;}
.y24{bottom:311.430000px;}
.yae{bottom:315.151500px;}
.yed{bottom:317.664000px;}
.y40{bottom:328.531500px;}
.y23{bottom:336.237000px;}
.y9{bottom:378.105000px;}
.h1a{height:8.554166px;}
.h16{height:16.786673px;}
.h15{height:24.756379px;}
.h31{height:26.146022px;}
.hb{height:26.576410px;}
.h18{height:26.579483px;}
.h33{height:26.781477px;}
.h10{height:27.222324px;}
.h21{height:27.551290px;}
.ha{height:28.402890px;}
.h24{height:29.654405px;}
.h11{height:33.662086px;}
.h5{height:35.435065px;}
.h2e{height:35.647889px;}
.h30{height:36.168606px;}
.h37{height:36.296966px;}
.h1f{height:39.168686px;}
.h34{height:39.793822px;}
.hf{height:40.146500px;}
.hc{height:41.025859px;}
.hd{height:41.031859px;}
.h32{height:41.620950px;}
.h2b{height:42.784578px;}
.h26{height:42.788218px;}
.h19{height:44.594009px;}
.h2a{height:45.926948px;}
.h13{height:47.716403px;}
.h1d{height:47.815436px;}
.h4{height:48.501859px;}
.h25{height:48.841098px;}
.h1b{height:49.090950px;}
.h39{height:49.479859px;}
.h3{height:49.485859px;}
.h2{height:53.152819px;}
.h36{height:53.529453px;}
.h2f{height:58.746606px;}
.h38{height:59.221114px;}
.h23{height:59.268932px;}
.h8{height:63.783205px;}
.h27{height:63.980268px;}
.h22{height:65.864812px;}
.h29{height:77.105210px;}
.h2c{height:80.626896px;}
.h7{height:85.295823px;}
.h12{height:92.811859px;}
.h14{height:118.933920px;}
.h1c{height:133.507621px;}
.h1e{height:134.186032px;}
.h17{height:140.649169px;}
.h28{height:188.854587px;}
.he{height:192.870720px;}
.h2d{height:211.022208px;}
.h9{height:230.084543px;}
.h35{height:257.164740px;}
.h20{height:340.939770px;}
.h1{height:408.000000px;}
.h6{height:408.162264px;}
.h0{height:408.189000px;}
.w7{width:72.170606px;}
.w5{width:169.905600px;}
.w8{width:275.499399px;}
.w6{width:275.528705px;}
.w4{width:275.529600px;}
.wc{width:298.451772px;}
.w3{width:321.411770px;}
.wd{width:367.378200px;}
.w9{width:413.232885px;}
.wb{width:436.257666px;}
.wa{width:482.167607px;}
.w2{width:544.223700px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x27{left:6.241434px;}
.x1e{left:7.834536px;}
.x1b{left:9.872837px;}
.xa{left:12.756000px;}
.x12{left:14.427036px;}
.x11{left:16.010413px;}
.x4d{left:18.085519px;}
.x28{left:19.264664px;}
.x3b{left:20.753541px;}
.x3c{left:25.221709px;}
.x1c{left:27.165734px;}
.x2f{left:28.347000px;}
.x29{left:29.521635px;}
.x4a{left:33.669870px;}
.xf{left:34.912500px;}
.xe{left:42.519000px;}
.xd{left:48.618807px;}
.x1d{left:50.499720px;}
.x55{left:51.700500px;}
.x10{left:53.419500px;}
.x7{left:55.387500px;}
.x17{left:56.739000px;}
.x3{left:58.870500px;}
.x1{left:61.326000px;}
.x32{left:63.207000px;}
.x6{left:64.497000px;}
.x36{left:66.267000px;}
.x4e{left:68.541159px;}
.x1a{left:70.095000px;}
.x23{left:75.247500px;}
.x4c{left:88.440000px;}
.x13{left:90.100475px;}
.x30{left:100.278010px;}
.x38{left:105.970594px;}
.x20{left:108.924592px;}
.x1f{left:110.181422px;}
.xb{left:111.402000px;}
.x37{left:113.139000px;}
.x9{left:115.529550px;}
.x39{left:120.472675px;}
.x4{left:121.558500px;}
.x24{left:134.361000px;}
.x35{left:136.621500px;}
.x56{left:137.935500px;}
.x2e{left:142.078500px;}
.x2d{left:143.437500px;}
.x25{left:145.845662px;}
.x2c{left:147.985500px;}
.x3e{left:151.464788px;}
.x2{left:155.475000px;}
.x2a{left:157.084500px;}
.x44{left:159.877844px;}
.x33{left:163.363785px;}
.x54{left:165.432444px;}
.x4f{left:167.465270px;}
.x22{left:170.736000px;}
.x8{left:171.877500px;}
.x4b{left:179.696578px;}
.x15{left:186.851929px;}
.x14{left:188.889922px;}
.x16{left:190.414680px;}
.x51{left:191.968376px;}
.x50{left:194.686975px;}
.x3d{left:197.578733px;}
.x18{left:204.685500px;}
.x3f{left:207.613929px;}
.x45{left:215.595774px;}
.x21{left:227.272500px;}
.x2b{left:230.644500px;}
.x40{left:232.765956px;}
.x34{left:236.101500px;}
.x5{left:248.031000px;}
.x41{left:256.268654px;}
.x3a{left:279.226612px;}
.xc{left:282.191385px;}
.x53{left:293.609678px;}
.x52{left:296.328277px;}
.x19{left:319.030500px;}
.x42{left:332.488794px;}
.x26{left:336.565674px;}
.x31{left:344.415000px;}
.x46{left:354.094500px;}
.x43{left:362.536547px;}
.x47{left:427.524000px;}
.x48{left:436.479000px;}
.x49{left:464.844000px;}
@media print{
.vc{vertical-align:-13.751227pt;}
.va{vertical-align:-12.228610pt;}
.v5{vertical-align:-10.938667pt;}
.v4{vertical-align:-9.796608pt;}
.v2{vertical-align:-8.725333pt;}
.v1{vertical-align:-6.645333pt;}
.v9{vertical-align:-4.461393pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.730667pt;}
.v8{vertical-align:10.068480pt;}
.v3{vertical-align:16.327680pt;}
.vf{vertical-align:21.770560pt;}
.ve{vertical-align:26.709333pt;}
.vb{vertical-align:27.714011pt;}
.vd{vertical-align:33.637616pt;}
.v7{vertical-align:39.386667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000034pt;}
.ls4{letter-spacing:0.000054pt;}
.ls2a{letter-spacing:0.000073pt;}
.ls1a{letter-spacing:0.002879pt;}
.ls15{letter-spacing:0.002882pt;}
.ls6{letter-spacing:0.003362pt;}
.ls22{letter-spacing:0.004171pt;}
.ls21{letter-spacing:0.010493pt;}
.ls12{letter-spacing:0.010622pt;}
.lsb{letter-spacing:0.010733pt;}
.ls18{letter-spacing:0.012092pt;}
.ls25{letter-spacing:0.012555pt;}
.ls1e{letter-spacing:0.055005pt;}
.ls1d{letter-spacing:0.207326pt;}
.lsa{letter-spacing:2.380992pt;}
.ls23{letter-spacing:3.278182pt;}
.ls24{letter-spacing:3.417504pt;}
.ls7{letter-spacing:4.505504pt;}
.ls26{letter-spacing:4.973333pt;}
.lse{letter-spacing:7.086891pt;}
.lsc{letter-spacing:9.753293pt;}
.ls28{letter-spacing:9.929557pt;}
.ls9{letter-spacing:9.934891pt;}
.ls27{letter-spacing:9.954405pt;}
.lsd{letter-spacing:13.460224pt;}
.ls1f{letter-spacing:14.925333pt;}
.ls8{letter-spacing:14.994325pt;}
.ls19{letter-spacing:16.158024pt;}
.ls20{letter-spacing:16.308224pt;}
.ls2{letter-spacing:21.212992pt;}
.ls10{letter-spacing:29.060822pt;}
.lsf{letter-spacing:29.061493pt;}
.ls1{letter-spacing:29.082825pt;}
.ls17{letter-spacing:29.086024pt;}
.ls5{letter-spacing:29.088158pt;}
.ls30{letter-spacing:29.089894pt;}
.ls2e{letter-spacing:29.090869pt;}
.ls2f{letter-spacing:29.091845pt;}
.ls31{letter-spacing:29.092318pt;}
.ls13{letter-spacing:55.852386pt;}
.ls1c{letter-spacing:74.218316pt;}
.ls14{letter-spacing:104.455717pt;}
.ls16{letter-spacing:104.461051pt;}
.ls3{letter-spacing:134.344967pt;}
.ls1b{letter-spacing:172.680973pt;}
.ls29{letter-spacing:180.762048pt;}
.ls2c{letter-spacing:211.059411pt;}
.ls2b{letter-spacing:211.239381pt;}
.ls2d{letter-spacing:211.240832pt;}
.ws20{word-spacing:-57.178461pt;}
.ws21{word-spacing:-50.092331pt;}
.ws1f{word-spacing:-32.254401pt;}
.ws2{word-spacing:-21.270633pt;}
.ws4{word-spacing:-16.174559pt;}
.ws23{word-spacing:-12.431109pt;}
.ws29{word-spacing:-12.104431pt;}
.ws2b{word-spacing:-10.885280pt;}
.ws7{word-spacing:-9.078190pt;}
.ws9{word-spacing:-8.163840pt;}
.wsa{word-spacing:-5.598075pt;}
.wsb{word-spacing:-5.034240pt;}
.ws1{word-spacing:-0.108623pt;}
.ws6{word-spacing:-0.058182pt;}
.ws28{word-spacing:-0.053527pt;}
.ws25{word-spacing:-0.045381pt;}
.ws27{word-spacing:-0.044101pt;}
.ws26{word-spacing:-0.040573pt;}
.ws3{word-spacing:-0.034842pt;}
.wsd{word-spacing:-0.032605pt;}
.wse{word-spacing:-0.006161pt;}
.ws5{word-spacing:-0.003174pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:3.840003pt;}
.wsf{word-spacing:5.049862pt;}
.ws2c{word-spacing:21.194119pt;}
.ws15{word-spacing:62.593242pt;}
.ws17{word-spacing:73.943052pt;}
.ws18{word-spacing:75.569236pt;}
.ws14{word-spacing:78.769242pt;}
.ws1d{word-spacing:82.026413pt;}
.ws16{word-spacing:90.116170pt;}
.ws10{word-spacing:91.779305pt;}
.ws13{word-spacing:94.947693pt;}
.ws1e{word-spacing:98.199531pt;}
.ws1c{word-spacing:103.031054pt;}
.ws11{word-spacing:106.298993pt;}
.ws1a{word-spacing:106.304326pt;}
.ws8{word-spacing:122.730817pt;}
.ws22{word-spacing:164.439284pt;}
.ws2a{word-spacing:165.457707pt;}
.ws1b{word-spacing:179.176700pt;}
.ws12{word-spacing:179.182034pt;}
.ws19{word-spacing:211.437737pt;}
.ws24{word-spacing:279.907277pt;}
._f{margin-left:-848.507774pt;}
._1d{margin-left:-9.181568pt;}
._4{margin-left:-5.951000pt;}
._1e{margin-left:-4.945459pt;}
._2{margin-left:-3.188053pt;}
._0{margin-left:-1.912832pt;}
._7{margin-left:-0.956416pt;}
._1{width:0.956416pt;}
._1f{width:1.912832pt;}
._5{width:3.060523pt;}
._3{width:4.578410pt;}
._8{width:7.104857pt;}
._1c{width:10.966903pt;}
._9{width:20.014562pt;}
._6{width:26.320495pt;}
._c{width:73.944595pt;}
._b{width:90.117713pt;}
._11{width:98.206939pt;}
._1b{width:99.783895pt;}
._e{width:106.288380pt;}
._1a{width:108.783856pt;}
._12{width:114.377605pt;}
._d{width:122.464380pt;}
._13{width:130.553605pt;}
._17{width:152.012406pt;}
._15{width:158.363357pt;}
._a{width:161.297821pt;}
._19{width:172.288061pt;}
._10{width:180.700487pt;}
._16{width:232.154555pt;}
._14{width:238.289718pt;}
._18{width:252.252502pt;}
.fs10{font-size:6.160971pt;}
.fsf{font-size:10.622363pt;}
.fsd{font-size:16.109568pt;}
.fsc{font-size:20.136960pt;}
.fsa{font-size:26.124288pt;}
.fs1a{font-size:29.330133pt;}
.fs15{font-size:31.277055pt;}
.fs6{font-size:31.880533pt;}
.fs18{font-size:31.945157pt;}
.fs13{font-size:32.254401pt;}
.fse{font-size:32.605440pt;}
.fs9{font-size:32.655360pt;}
.fs1c{font-size:34.832896pt;}
.fs5{font-size:34.842240pt;}
.fsb{font-size:40.573333pt;}
.fs2{font-size:42.507200pt;}
.fs1b{font-size:43.541120pt;}
.fs8{font-size:44.101333pt;}
.fs19{font-size:45.381120pt;}
.fs16{font-size:50.092331pt;}
.fs12{font-size:50.606400pt;}
.fs7{font-size:53.527467pt;}
.fs17{font-size:55.004907pt;}
.fs14{font-size:57.178461pt;}
.fs1{font-size:58.181867pt;}
.fs11{font-size:58.655893pt;}
.fs0{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs3{font-size:108.622507pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.349312pt;}
.ybb{bottom:2.993408pt;}
.y1d{bottom:3.809792pt;}
.yd0{bottom:5.079797pt;}
.ya0{bottom:5.394712pt;}
.y31{bottom:6.376704pt;}
.y1b{bottom:10.340864pt;}
.y8{bottom:10.466645pt;}
.y4e{bottom:11.113648pt;}
.yb9{bottom:11.157248pt;}
.y29{bottom:11.410944pt;}
.y5f{bottom:12.254892pt;}
.yce{bottom:13.788021pt;}
.y9f{bottom:13.857005pt;}
.y4f{bottom:13.977260pt;}
.y3c{bottom:15.752976pt;}
.y15{bottom:18.504704pt;}
.yb2{bottom:19.321088pt;}
.y80{bottom:20.664000pt;}
.y3b{bottom:20.787216pt;}
.y33{bottom:24.140104pt;}
.y2a{bottom:24.206304pt;}
.yc4{bottom:24.673301pt;}
.y32{bottom:24.709728pt;}
.y21{bottom:25.546016pt;}
.y3a{bottom:25.821456pt;}
.yb{bottom:26.076755pt;}
.y50{bottom:27.401271pt;}
.y39{bottom:30.855696pt;}
.yb3{bottom:33.029536pt;}
.y20{bottom:33.709856pt;}
.y51{bottom:34.425309pt;}
.y38{bottom:35.889936pt;}
.yd6{bottom:36.050667pt;}
.y2b{bottom:37.001664pt;}
.y9e{bottom:39.138107pt;}
.y1c{bottom:39.147110pt;}
.y4a{bottom:39.635988pt;}
.ya5{bottom:39.803024pt;}
.y37{bottom:40.924176pt;}
.y3f{bottom:40.984000pt;}
.ycf{bottom:41.555010pt;}
.y1f{bottom:41.873696pt;}
.y91{bottom:42.152929pt;}
.yc5{bottom:42.588658pt;}
.yd8{bottom:44.811069pt;}
.y36{bottom:45.958416pt;}
.y16{bottom:47.554368pt;}
.y49{bottom:48.704376pt;}
.y46{bottom:49.581333pt;}
.y2c{bottom:49.797024pt;}
.y1e{bottom:50.037536pt;}
.yd{bottom:50.486667pt;}
.y48{bottom:50.504468pt;}
.yc2{bottom:50.508000pt;}
.y73{bottom:50.748000pt;}
.y6a{bottom:50.806667pt;}
.y35{bottom:50.992656pt;}
.yb1{bottom:51.481333pt;}
.ya4{bottom:52.503435pt;}
.y8c{bottom:55.102334pt;}
.y9c{bottom:55.956915pt;}
.y3e{bottom:59.049333pt;}
.y90{bottom:59.253421pt;}
.yc6{bottom:60.458659pt;}
.yb4{bottom:62.079200pt;}
.yd7{bottom:62.160000pt;}
.y2d{bottom:62.613360pt;}
.ya3{bottom:63.628112pt;}
.yd9{bottom:64.948837pt;}
.yc3{bottom:70.056000pt;}
.y72{bottom:70.473333pt;}
.y7f{bottom:70.901333pt;}
.y9d{bottom:72.828612pt;}
.y69{bottom:72.857333pt;}
.y5d{bottom:73.278667pt;}
.y22{bottom:73.317333pt;}
.y2e{bottom:75.408720pt;}
.yba{bottom:76.069981pt;}
.ya2{bottom:76.328523pt;}
.y17{bottom:76.604032pt;}
.y3d{bottom:77.114667pt;}
.yc7{bottom:78.374016pt;}
.y94{bottom:79.513333pt;}
.yad{bottom:82.917333pt;}
.ya{bottom:84.500108pt;}
.yda{bottom:85.086605pt;}
.yf5{bottom:86.037333pt;}
.y2f{bottom:88.204080pt;}
.y7e{bottom:88.966667pt;}
.y4d{bottom:89.026815pt;}
.y9b{bottom:89.647420pt;}
.y71{bottom:90.864000pt;}
.yb5{bottom:91.162880pt;}
.y5c{bottom:91.876000pt;}
.y68{bottom:93.246667pt;}
.y28{bottom:95.180000pt;}
.y4c{bottom:95.336948pt;}
.yc8{bottom:96.244017pt;}
.y6c{bottom:97.698467pt;}
.ye7{bottom:98.201333pt;}
.y30{bottom:100.999440pt;}
.ya1{bottom:101.254667pt;}
.yf4{bottom:104.102667pt;}
.y4b{bottom:104.439300pt;}
.ydb{bottom:105.224373pt;}
.y18{bottom:105.687712pt;}
.y99{bottom:106.519117pt;}
.y7d{bottom:106.944000pt;}
.y5b{bottom:110.473333pt;}
.y70{bottom:110.590667pt;}
.y47{bottom:112.930300pt;}
.y67{bottom:112.973333pt;}
.yc9{bottom:114.159374pt;}
.ye6{bottom:116.266667pt;}
.yc1{bottom:117.559296pt;}
.y14{bottom:118.302667pt;}
.y7{bottom:119.682667pt;}
.yb6{bottom:120.212544pt;}
.yf3{bottom:122.168000pt;}
.y9a{bottom:123.390815pt;}
.y8b{bottom:124.437694pt;}
.y8e{bottom:124.619175pt;}
.ydc{bottom:125.316786pt;}
.y7c{bottom:125.541333pt;}
.yc0{bottom:125.723136pt;}
.yc{bottom:128.326390pt;}
.y5a{bottom:128.538667pt;}
.y6f{bottom:130.980000pt;}
.yca{bottom:132.029375pt;}
.y6{bottom:132.302667pt;}
.y66{bottom:133.362667pt;}
.ybf{bottom:133.886976pt;}
.y19{bottom:134.737376pt;}
.ye5{bottom:138.317333pt;}
.yec{bottom:139.168000pt;}
.y98{bottom:140.209623pt;}
.yf2{bottom:140.234667pt;}
.y96{bottom:141.214520pt;}
.ybe{bottom:142.050816pt;}
.y7b{bottom:144.138667pt;}
.y5{bottom:144.921333pt;}
.ydd{bottom:145.454554pt;}
.y13{bottom:145.833333pt;}
.yd5{bottom:145.862752pt;}
.y59{bottom:147.136000pt;}
.y95{bottom:148.090133pt;}
.y6e{bottom:149.045333pt;}
.yb7{bottom:149.262208pt;}
.ycb{bottom:149.944732pt;}
.ybd{bottom:150.214656pt;}
.y65{bottom:153.089333pt;}
.yac{bottom:153.349333pt;}
.y97{bottom:155.970644pt;}
.ye4{bottom:156.384000pt;}
.yd4{bottom:156.748032pt;}
.ybc{bottom:158.378496pt;}
.yeb{bottom:161.218667pt;}
.yf1{bottom:162.285333pt;}
.y7a{bottom:162.734667pt;}
.y1a{bottom:163.787040pt;}
.yb8{bottom:164.603424pt;}
.y58{bottom:165.201333pt;}
.yde{bottom:165.592322pt;}
.yd3{bottom:167.633312pt;}
.ycc{bottom:167.814733pt;}
.y12{bottom:167.884000pt;}
.y6d{bottom:168.772000pt;}
.ye3{bottom:174.449333pt;}
.y64{bottom:175.140000pt;}
.yab{bottom:175.400000pt;}
.y4{bottom:175.486667pt;}
.yd2{bottom:178.518592pt;}
.yf0{bottom:180.350667pt;}
.y79{bottom:181.332000pt;}
.y57{bottom:183.266667pt;}
.yea{bottom:183.269333pt;}
.ycd{bottom:185.730090pt;}
.y11{bottom:188.274667pt;}
.y6b{bottom:189.162667pt;}
.y5e{bottom:193.476000pt;}
.y3{bottom:193.552000pt;}
.y45{bottom:193.729333pt;}
.ye2{bottom:196.500000pt;}
.yaa{bottom:197.450667pt;}
.y78{bottom:199.929333pt;}
.y56{bottom:201.332000pt;}
.yef{bottom:202.401333pt;}
.yd1{bottom:203.146538pt;}
.ye9{bottom:205.320000pt;}
.y86{bottom:205.865199pt;}
.y10{bottom:206.340000pt;}
.y8d{bottom:208.306886pt;}
.y63{bottom:208.836000pt;}
.y88{bottom:210.814394pt;}
.y85{bottom:211.487669pt;}
.ya8{bottom:212.013333pt;}
.y82{bottom:212.830292pt;}
.y44{bottom:214.120000pt;}
.ye1{bottom:214.565333pt;}
.ya7{bottom:214.741333pt;}
.y77{bottom:218.525333pt;}
.y55{bottom:219.397333pt;}
.ya9{bottom:219.993333pt;}
.y27{bottom:221.598667pt;}
.ya6{bottom:221.653333pt;}
.yee{bottom:224.452000pt;}
.y81{bottom:224.622519pt;}
.yf{bottom:226.066667pt;}
.y84{bottom:226.760478pt;}
.ye8{bottom:227.370667pt;}
.y62{bottom:230.886667pt;}
.y87{bottom:231.095449pt;}
.y26{bottom:231.577333pt;}
.y43{bottom:232.185333pt;}
.y8f{bottom:232.804788pt;}
.yb0{bottom:236.033333pt;}
.y83{bottom:236.044644pt;}
.ye0{bottom:236.616000pt;}
.y76{bottom:237.122667pt;}
.y54{bottom:237.464000pt;}
.y2{bottom:245.172000pt;}
.y92{bottom:245.880030pt;}
.ye{bottom:248.117333pt;}
.y42{bottom:251.912000pt;}
.y61{bottom:252.937333pt;}
.y89{bottom:254.066405pt;}
.y8a{bottom:254.185065pt;}
.ydf{bottom:254.681333pt;}
.y25{bottom:254.776000pt;}
.y75{bottom:255.720000pt;}
.y53{bottom:256.060000pt;}
.yaf{bottom:258.084000pt;}
.y93{bottom:261.446667pt;}
.y1{bottom:263.769333pt;}
.y41{bottom:272.301333pt;}
.y74{bottom:273.785333pt;}
.y52{bottom:274.125333pt;}
.y60{bottom:274.988000pt;}
.y24{bottom:276.826667pt;}
.yae{bottom:280.134667pt;}
.yed{bottom:282.368000pt;}
.y40{bottom:292.028000pt;}
.y23{bottom:298.877333pt;}
.y9{bottom:336.093333pt;}
.h1a{height:7.603703pt;}
.h16{height:14.921487pt;}
.h15{height:22.005670pt;}
.h31{height:23.240909pt;}
.hb{height:23.623475pt;}
.h18{height:23.626207pt;}
.h33{height:23.805757pt;}
.h10{height:24.197622pt;}
.h21{height:24.490036pt;}
.ha{height:25.247014pt;}
.h24{height:26.359471pt;}
.h11{height:29.921854pt;}
.h5{height:31.497835pt;}
.h2e{height:31.687013pt;}
.h30{height:32.149872pt;}
.h37{height:32.263970pt;}
.h1f{height:34.816610pt;}
.h34{height:35.372286pt;}
.hf{height:35.685777pt;}
.hc{height:36.467430pt;}
.hd{height:36.472763pt;}
.h32{height:36.996400pt;}
.h2b{height:38.030736pt;}
.h26{height:38.033972pt;}
.h19{height:39.639119pt;}
.h2a{height:40.823954pt;}
.h13{height:42.414581pt;}
.h1d{height:42.502610pt;}
.h4{height:43.112763pt;}
.h25{height:43.414310pt;}
.h1b{height:43.636400pt;}
.h39{height:43.982097pt;}
.h3{height:43.987430pt;}
.h2{height:47.246950pt;}
.h36{height:47.581736pt;}
.h2f{height:52.219205pt;}
.h38{height:52.640990pt;}
.h23{height:52.683495pt;}
.h8{height:56.696182pt;}
.h27{height:56.871350pt;}
.h22{height:58.546500pt;}
.h29{height:68.537965pt;}
.h2c{height:71.668352pt;}
.h7{height:75.818510pt;}
.h12{height:82.499430pt;}
.h14{height:105.719040pt;}
.h1c{height:118.673441pt;}
.h1e{height:119.276473pt;}
.h17{height:125.021484pt;}
.h28{height:167.870744pt;}
.he{height:171.440640pt;}
.h2d{height:187.575296pt;}
.h9{height:204.519594pt;}
.h35{height:228.590880pt;}
.h20{height:303.057573pt;}
.h1{height:362.666667pt;}
.h6{height:362.810901pt;}
.h0{height:362.834667pt;}
.w7{width:64.151650pt;}
.w5{width:151.027200pt;}
.w8{width:244.888355pt;}
.w6{width:244.914404pt;}
.w4{width:244.915200pt;}
.wc{width:265.290464pt;}
.w3{width:285.699351pt;}
.wd{width:326.558400pt;}
.w9{width:367.318120pt;}
.wb{width:387.784592pt;}
.wa{width:428.593428pt;}
.w2{width:483.754400pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x27{left:5.547941pt;}
.x1e{left:6.964032pt;}
.x1b{left:8.775855pt;}
.xa{left:11.338667pt;}
.x12{left:12.824032pt;}
.x11{left:14.231478pt;}
.x4d{left:16.076016pt;}
.x28{left:17.124146pt;}
.x3b{left:18.447592pt;}
.x3c{left:22.419296pt;}
.x1c{left:24.147319pt;}
.x2f{left:25.197333pt;}
.x29{left:26.241453pt;}
.x4a{left:29.928774pt;}
.xf{left:31.033333pt;}
.xe{left:37.794667pt;}
.xd{left:43.216718pt;}
.x1d{left:44.888640pt;}
.x55{left:45.956000pt;}
.x10{left:47.484000pt;}
.x7{left:49.233333pt;}
.x17{left:50.434667pt;}
.x3{left:52.329333pt;}
.x1{left:54.512000pt;}
.x32{left:56.184000pt;}
.x6{left:57.330667pt;}
.x36{left:58.904000pt;}
.x4e{left:60.925475pt;}
.x1a{left:62.306667pt;}
.x23{left:66.886667pt;}
.x4c{left:78.613333pt;}
.x13{left:80.089311pt;}
.x30{left:89.136009pt;}
.x38{left:94.196084pt;}
.x20{left:96.821860pt;}
.x1f{left:97.939042pt;}
.xb{left:99.024000pt;}
.x37{left:100.568000pt;}
.x9{left:102.692933pt;}
.x39{left:107.086822pt;}
.x4{left:108.052000pt;}
.x24{left:119.432000pt;}
.x35{left:121.441333pt;}
.x56{left:122.609333pt;}
.x2e{left:126.292000pt;}
.x2d{left:127.500000pt;}
.x25{left:129.640588pt;}
.x2c{left:131.542667pt;}
.x3e{left:134.635367pt;}
.x2{left:138.200000pt;}
.x2a{left:139.630667pt;}
.x44{left:142.113639pt;}
.x33{left:145.212253pt;}
.x54{left:147.051062pt;}
.x4f{left:148.858018pt;}
.x22{left:151.765333pt;}
.x8{left:152.780000pt;}
.x4b{left:159.730292pt;}
.x15{left:166.090604pt;}
.x14{left:167.902153pt;}
.x16{left:169.257493pt;}
.x51{left:170.638556pt;}
.x50{left:173.055089pt;}
.x3d{left:175.625541pt;}
.x18{left:181.942667pt;}
.x3f{left:184.545715pt;}
.x45{left:191.640688pt;}
.x21{left:202.020000pt;}
.x2b{left:205.017333pt;}
.x40{left:206.903072pt;}
.x34{left:209.868000pt;}
.x5{left:220.472000pt;}
.x41{left:227.794359pt;}
.x3a{left:248.201433pt;}
.xc{left:250.836787pt;}
.x53{left:260.986380pt;}
.x52{left:263.402913pt;}
.x19{left:283.582667pt;}
.x42{left:295.545595pt;}
.x26{left:299.169488pt;}
.x31{left:306.146667pt;}
.x46{left:314.750667pt;}
.x43{left:322.254708pt;}
.x47{left:380.021333pt;}
.x48{left:387.981333pt;}
.x49{left:413.194667pt;}
}




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