
    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_6f91a8d1958d625176e21948.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;font-style:normal;font-weight: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_4c0ec5c5b55f5b3cba2795a2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight: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_1acb711ba5ddfa6584d65fb4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.041504;font-style:normal;font-weight: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_200b4a982d7536de93f1d417.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925781;font-style:normal;font-weight: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_53e1cbb3193cbf7096722f00.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight: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_71686b83ebfdfbd4cf9cdffa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v5{vertical-align:-26.640000px;}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.lsd{letter-spacing:-20.232000px;}
.ls10{letter-spacing:-7.200000px;}
.ls15{letter-spacing:-6.138000px;}
.lse{letter-spacing:-1.368000px;}
.ls11{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000600px;}
.ls8{letter-spacing:0.001800px;}
.lsc{letter-spacing:0.002400px;}
.lsb{letter-spacing:0.018600px;}
.ls12{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.462000px;}
.ls3{letter-spacing:0.513000px;}
.ls4{letter-spacing:0.570000px;}
.ls7{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.056000px;}
.ls0{letter-spacing:4.200000px;}
.lsf{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.lsa{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls16{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-27.432000px;}
.ws9{word-spacing:-22.860000px;}
.ws5{word-spacing:-20.952000px;}
.ws8{word-spacing:-20.232000px;}
.ws7{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.wsa{word-spacing:-16.302000px;}
.ws3{word-spacing:-16.017000px;}
.ws2{word-spacing:-14.079000px;}
.ws1{word-spacing:-12.139200px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-17.478000px;}
._13{margin-left:-14.832000px;}
._21{margin-left:-12.144000px;}
._3{margin-left:-9.630000px;}
._25{margin-left:-8.340000px;}
._9{margin-left:-7.170000px;}
._8{margin-left:-5.736000px;}
._0{margin-left:-3.906000px;}
._5{margin-left:-2.520000px;}
._2{margin-left:-1.320000px;}
._6{width:1.080000px;}
._7{width:2.232000px;}
._1{width:3.780000px;}
._4{width:5.688000px;}
._c{width:6.984000px;}
._10{width:8.226000px;}
._a{width:9.600000px;}
._e{width:11.304000px;}
._d{width:12.672000px;}
._12{width:14.256000px;}
._f{width:15.840000px;}
._24{width:20.460000px;}
._20{width:29.832000px;}
._19{width:32.208000px;}
._17{width:33.396000px;}
._1c{width:35.244000px;}
._1b{width:37.488000px;}
._1a{width:40.500000px;}
._1d{width:43.956000px;}
._15{width:48.048000px;}
._1e{width:49.830000px;}
._14{width:52.734000px;}
._1f{width:54.516000px;}
._b{width:56.923200px;}
._16{width:61.050000px;}
._23{width:63.624000px;}
._18{width:65.142000px;}
._22{width:66.528000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y20{bottom:140.308650px;}
.y42{bottom:140.313000px;}
.y64{bottom:145.863000px;}
.y87{bottom:146.774550px;}
.y96{bottom:147.808950px;}
.y1f{bottom:156.810150px;}
.y41{bottom:162.963000px;}
.y86{bottom:166.880550px;}
.y1e{bottom:173.311650px;}
.ydd{bottom:175.599600px;}
.y40{bottom:180.063000px;}
.y63{bottom:180.418350px;}
.y85{bottom:186.986550px;}
.yaa{bottom:188.735850px;}
.ydc{bottom:193.599600px;}
.y1d{bottom:195.363150px;}
.y62{bottom:201.718350px;}
.y84{bottom:207.992550px;}
.ya9{bottom:209.129850px;}
.ybd{bottom:209.245350px;}
.ydb{bottom:211.599600px;}
.y3f{bottom:214.814550px;}
.y61{bottom:223.018350px;}
.y83{bottom:228.998550px;}
.ya8{bottom:229.523850px;}
.ybc{bottom:229.639350px;}
.y1c{bottom:231.298650px;}
.y3e{bottom:237.038550px;}
.y60{bottom:244.318350px;}
.ya7{bottom:249.917850px;}
.y82{bottom:250.004550px;}
.ybb{bottom:250.033350px;}
.y1b{bottom:253.348650px;}
.y3d{bottom:259.232550px;}
.y5f{bottom:265.618350px;}
.yda{bottom:268.299600px;}
.ya6{bottom:270.311850px;}
.yba{bottom:270.427350px;}
.y81{bottom:271.010550px;}
.y1a{bottom:275.398650px;}
.y3c{bottom:281.426550px;}
.y5e{bottom:286.930350px;}
.yd9{bottom:288.099600px;}
.ya5{bottom:290.705850px;}
.yb9{bottom:290.821350px;}
.y80{bottom:292.016550px;}
.y19{bottom:297.448650px;}
.y3b{bottom:303.620550px;}
.yd8{bottom:307.899600px;}
.y5d{bottom:308.224350px;}
.ya4{bottom:311.099850px;}
.yb8{bottom:311.215350px;}
.y7f{bottom:313.022550px;}
.y18{bottom:319.498650px;}
.y3a{bottom:325.814550px;}
.yd7{bottom:327.699600px;}
.y5c{bottom:329.518350px;}
.ya3{bottom:331.493850px;}
.yb7{bottom:331.609350px;}
.y7e{bottom:334.028550px;}
.y17{bottom:341.548650px;}
.yd6{bottom:347.499600px;}
.y39{bottom:348.014550px;}
.y5b{bottom:350.818500px;}
.ya2{bottom:351.887850px;}
.yb6{bottom:352.003350px;}
.y7d{bottom:355.034550px;}
.y16{bottom:363.598650px;}
.yd5{bottom:367.299600px;}
.y38{bottom:370.238550px;}
.y5a{bottom:372.208350px;}
.ya1{bottom:372.281850px;}
.yb5{bottom:372.397350px;}
.y7c{bottom:376.040550px;}
.y15{bottom:385.648650px;}
.yd4{bottom:387.099600px;}
.y37{bottom:392.432550px;}
.ya0{bottom:392.675850px;}
.yb4{bottom:392.791350px;}
.y59{bottom:393.502350px;}
.y7b{bottom:397.046550px;}
.yd3{bottom:406.899600px;}
.y14{bottom:407.698650px;}
.y9f{bottom:413.069850px;}
.yb3{bottom:413.185350px;}
.y36{bottom:414.626550px;}
.y58{bottom:414.796350px;}
.y7a{bottom:418.052550px;}
.yd2{bottom:426.699600px;}
.y13{bottom:429.748650px;}
.y9e{bottom:433.463850px;}
.yb2{bottom:433.579350px;}
.y57{bottom:436.090350px;}
.y35{bottom:436.820550px;}
.y79{bottom:439.058550px;}
.yd1{bottom:446.499600px;}
.y12{bottom:451.798650px;}
.y9d{bottom:453.857850px;}
.yb1{bottom:453.973350px;}
.y56{bottom:457.384350px;}
.y34{bottom:459.014550px;}
.yd0{bottom:466.299600px;}
.y78{bottom:468.562350px;}
.y11{bottom:473.848650px;}
.y9c{bottom:474.251850px;}
.yb0{bottom:474.367350px;}
.y55{bottom:478.678350px;}
.y33{bottom:481.256550px;}
.y9b{bottom:494.645850px;}
.yaf{bottom:494.761350px;}
.y10{bottom:495.898650px;}
.y54{bottom:499.972350px;}
.y32{bottom:503.450550px;}
.ycf{bottom:505.899600px;}
.y9a{bottom:515.039850px;}
.yae{bottom:515.155350px;}
.yf{bottom:517.948650px;}
.y53{bottom:521.266350px;}
.y31{bottom:525.644550px;}
.y77{bottom:531.580500px;}
.yce{bottom:534.203550px;}
.y99{bottom:535.433850px;}
.yad{bottom:535.549350px;}
.ye{bottom:539.998650px;}
.y52{bottom:542.560350px;}
.y30{bottom:547.838550px;}
.y76{bottom:552.424500px;}
.y98{bottom:555.827850px;}
.yac{bottom:555.943350px;}
.yd{bottom:562.048650px;}
.y51{bottom:563.854350px;}
.y2f{bottom:570.032550px;}
.y75{bottom:573.268500px;}
.y97{bottom:576.221850px;}
.yab{bottom:576.337350px;}
.yc{bottom:584.098650px;}
.y50{bottom:585.148350px;}
.y2e{bottom:592.226550px;}
.y74{bottom:594.136350px;}
.y95{bottom:599.408550px;}
.yb{bottom:606.148650px;}
.y4f{bottom:606.442350px;}
.ycd{bottom:607.103550px;}
.y2d{bottom:614.420550px;}
.y73{bottom:614.980350px;}
.y4e{bottom:627.736350px;}
.ya{bottom:628.198650px;}
.y72{bottom:635.824350px;}
.y2c{bottom:636.614550px;}
.ycc{bottom:644.003700px;}
.y94{bottom:647.518500px;}
.y4d{bottom:649.030350px;}
.y9{bottom:650.248650px;}
.y71{bottom:656.668350px;}
.y2b{bottom:658.808550px;}
.ycb{bottom:663.803700px;}
.y93{bottom:669.118500px;}
.y4c{bottom:670.324350px;}
.y8{bottom:672.298650px;}
.y70{bottom:677.518500px;}
.yca{bottom:683.603700px;}
.y2a{bottom:689.512500px;}
.y92{bottom:690.718500px;}
.y4b{bottom:691.618350px;}
.y7{bottom:694.348650px;}
.y6f{bottom:698.416350px;}
.yc9{bottom:703.403700px;}
.y91{bottom:712.318500px;}
.y4a{bottom:712.972500px;}
.y6{bottom:716.398650px;}
.y6e{bottom:719.260350px;}
.yc8{bottom:723.203700px;}
.y90{bottom:733.918500px;}
.y49{bottom:734.266500px;}
.y6d{bottom:740.104350px;}
.yc7{bottom:743.003700px;}
.y29{bottom:750.160500px;}
.y8f{bottom:755.518500px;}
.y48{bottom:755.560500px;}
.y6c{bottom:760.948350px;}
.yc6{bottom:762.803700px;}
.y28{bottom:772.354500px;}
.y47{bottom:776.854500px;}
.y8e{bottom:777.118500px;}
.y6b{bottom:781.792350px;}
.yc5{bottom:782.603700px;}
.y27{bottom:794.548500px;}
.y46{bottom:798.148500px;}
.y8d{bottom:798.718500px;}
.yc4{bottom:802.403700px;}
.y6a{bottom:802.636350px;}
.y26{bottom:816.742500px;}
.y45{bottom:819.442500px;}
.y8c{bottom:820.318500px;}
.yc3{bottom:822.203700px;}
.y69{bottom:823.480350px;}
.y5{bottom:824.848650px;}
.y25{bottom:838.936500px;}
.y44{bottom:840.736500px;}
.y8b{bottom:841.918500px;}
.yc2{bottom:842.003700px;}
.y68{bottom:844.324350px;}
.y4{bottom:855.448650px;}
.y24{bottom:861.130500px;}
.yc1{bottom:861.803700px;}
.y43{bottom:862.030500px;}
.y8a{bottom:863.518500px;}
.y67{bottom:865.168350px;}
.yc0{bottom:881.603700px;}
.y23{bottom:883.324500px;}
.y89{bottom:885.118500px;}
.y66{bottom:886.018500px;}
.ybf{bottom:901.403700px;}
.y22{bottom:905.518500px;}
.y88{bottom:906.418500px;}
.y65{bottom:906.868500px;}
.y3{bottom:910.710000px;}
.y21{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.ybe{bottom:929.707650px;}
.h9{height:26.199902px;}
.h4{height:28.977539px;}
.hf{height:30.568359px;}
.h3{height:35.663086px;}
.hb{height:40.757812px;}
.h2{height:41.396484px;}
.h17{height:45.536133px;}
.ha{height:48.399902px;}
.h6{height:50.947266px;}
.h5{height:53.367188px;}
.h16{height:56.041992px;}
.h8{height:61.136719px;}
.h11{height:62.938631px;}
.h10{height:63.081431px;}
.h14{height:63.106631px;}
.hc{height:63.130031px;}
.hd{height:63.202031px;}
.h15{height:63.226631px;}
.h13{height:63.250631px;}
.h12{height:63.297431px;}
.he{height:63.298031px;}
.h7{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x1{left:97.795350px;}
.x4{left:119.069850px;}
.x2{left:150.670350px;}
.x3{left:270.577950px;}
.x5{left:290.471100px;}
.x8{left:381.042150px;}
.x9{left:521.949450px;}
.x6{left:572.164350px;}
@media print{
.v5{vertical-align:-23.680000pt;}
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.lsd{letter-spacing:-17.984000pt;}
.ls10{letter-spacing:-6.400000pt;}
.ls15{letter-spacing:-5.456000pt;}
.lse{letter-spacing:-1.216000pt;}
.ls11{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000533pt;}
.ls8{letter-spacing:0.001600pt;}
.lsc{letter-spacing:0.002133pt;}
.lsb{letter-spacing:0.016533pt;}
.ls12{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.410667pt;}
.ls3{letter-spacing:0.456000pt;}
.ls4{letter-spacing:0.506667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.938667pt;}
.ls0{letter-spacing:3.733333pt;}
.lsf{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.lsa{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls16{letter-spacing:17.600000pt;}
.ws6{word-spacing:-24.384000pt;}
.ws9{word-spacing:-20.320000pt;}
.ws5{word-spacing:-18.624000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.wsa{word-spacing:-14.490667pt;}
.ws3{word-spacing:-14.237333pt;}
.ws2{word-spacing:-12.514667pt;}
.ws1{word-spacing:-10.790400pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-15.536000pt;}
._13{margin-left:-13.184000pt;}
._21{margin-left:-10.794667pt;}
._3{margin-left:-8.560000pt;}
._25{margin-left:-7.413333pt;}
._9{margin-left:-6.373333pt;}
._8{margin-left:-5.098667pt;}
._0{margin-left:-3.472000pt;}
._5{margin-left:-2.240000pt;}
._2{margin-left:-1.173333pt;}
._6{width:0.960000pt;}
._7{width:1.984000pt;}
._1{width:3.360000pt;}
._4{width:5.056000pt;}
._c{width:6.208000pt;}
._10{width:7.312000pt;}
._a{width:8.533333pt;}
._e{width:10.048000pt;}
._d{width:11.264000pt;}
._12{width:12.672000pt;}
._f{width:14.080000pt;}
._24{width:18.186667pt;}
._20{width:26.517333pt;}
._19{width:28.629333pt;}
._17{width:29.685333pt;}
._1c{width:31.328000pt;}
._1b{width:33.322667pt;}
._1a{width:36.000000pt;}
._1d{width:39.072000pt;}
._15{width:42.709333pt;}
._1e{width:44.293333pt;}
._14{width:46.874667pt;}
._1f{width:48.458667pt;}
._b{width:50.598400pt;}
._16{width:54.266667pt;}
._23{width:56.554667pt;}
._18{width:57.904000pt;}
._22{width:59.136000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y20{bottom:124.718800pt;}
.y42{bottom:124.722667pt;}
.y64{bottom:129.656000pt;}
.y87{bottom:130.466267pt;}
.y96{bottom:131.385733pt;}
.y1f{bottom:139.386800pt;}
.y41{bottom:144.856000pt;}
.y86{bottom:148.338267pt;}
.y1e{bottom:154.054800pt;}
.ydd{bottom:156.088533pt;}
.y40{bottom:160.056000pt;}
.y63{bottom:160.371867pt;}
.y85{bottom:166.210267pt;}
.yaa{bottom:167.765200pt;}
.ydc{bottom:172.088533pt;}
.y1d{bottom:173.656133pt;}
.y62{bottom:179.305200pt;}
.y84{bottom:184.882267pt;}
.ya9{bottom:185.893200pt;}
.ybd{bottom:185.995867pt;}
.ydb{bottom:188.088533pt;}
.y3f{bottom:190.946267pt;}
.y61{bottom:198.238533pt;}
.y83{bottom:203.554267pt;}
.ya8{bottom:204.021200pt;}
.ybc{bottom:204.123867pt;}
.y1c{bottom:205.598800pt;}
.y3e{bottom:210.700933pt;}
.y60{bottom:217.171867pt;}
.ya7{bottom:222.149200pt;}
.y82{bottom:222.226267pt;}
.ybb{bottom:222.251867pt;}
.y1b{bottom:225.198800pt;}
.y3d{bottom:230.428933pt;}
.y5f{bottom:236.105200pt;}
.yda{bottom:238.488533pt;}
.ya6{bottom:240.277200pt;}
.yba{bottom:240.379867pt;}
.y81{bottom:240.898267pt;}
.y1a{bottom:244.798800pt;}
.y3c{bottom:250.156933pt;}
.y5e{bottom:255.049200pt;}
.yd9{bottom:256.088533pt;}
.ya5{bottom:258.405200pt;}
.yb9{bottom:258.507867pt;}
.y80{bottom:259.570267pt;}
.y19{bottom:264.398800pt;}
.y3b{bottom:269.884933pt;}
.yd8{bottom:273.688533pt;}
.y5d{bottom:273.977200pt;}
.ya4{bottom:276.533200pt;}
.yb8{bottom:276.635867pt;}
.y7f{bottom:278.242267pt;}
.y18{bottom:283.998800pt;}
.y3a{bottom:289.612933pt;}
.yd7{bottom:291.288533pt;}
.y5c{bottom:292.905200pt;}
.ya3{bottom:294.661200pt;}
.yb7{bottom:294.763867pt;}
.y7e{bottom:296.914267pt;}
.y17{bottom:303.598800pt;}
.yd6{bottom:308.888533pt;}
.y39{bottom:309.346267pt;}
.y5b{bottom:311.838667pt;}
.ya2{bottom:312.789200pt;}
.yb6{bottom:312.891867pt;}
.y7d{bottom:315.586267pt;}
.y16{bottom:323.198800pt;}
.yd5{bottom:326.488533pt;}
.y38{bottom:329.100933pt;}
.y5a{bottom:330.851867pt;}
.ya1{bottom:330.917200pt;}
.yb5{bottom:331.019867pt;}
.y7c{bottom:334.258267pt;}
.y15{bottom:342.798800pt;}
.yd4{bottom:344.088533pt;}
.y37{bottom:348.828933pt;}
.ya0{bottom:349.045200pt;}
.yb4{bottom:349.147867pt;}
.y59{bottom:349.779867pt;}
.y7b{bottom:352.930267pt;}
.yd3{bottom:361.688533pt;}
.y14{bottom:362.398800pt;}
.y9f{bottom:367.173200pt;}
.yb3{bottom:367.275867pt;}
.y36{bottom:368.556933pt;}
.y58{bottom:368.707867pt;}
.y7a{bottom:371.602267pt;}
.yd2{bottom:379.288533pt;}
.y13{bottom:381.998800pt;}
.y9e{bottom:385.301200pt;}
.yb2{bottom:385.403867pt;}
.y57{bottom:387.635867pt;}
.y35{bottom:388.284933pt;}
.y79{bottom:390.274267pt;}
.yd1{bottom:396.888533pt;}
.y12{bottom:401.598800pt;}
.y9d{bottom:403.429200pt;}
.yb1{bottom:403.531867pt;}
.y56{bottom:406.563867pt;}
.y34{bottom:408.012933pt;}
.yd0{bottom:414.488533pt;}
.y78{bottom:416.499867pt;}
.y11{bottom:421.198800pt;}
.y9c{bottom:421.557200pt;}
.yb0{bottom:421.659867pt;}
.y55{bottom:425.491867pt;}
.y33{bottom:427.783600pt;}
.y9b{bottom:439.685200pt;}
.yaf{bottom:439.787867pt;}
.y10{bottom:440.798800pt;}
.y54{bottom:444.419867pt;}
.y32{bottom:447.511600pt;}
.ycf{bottom:449.688533pt;}
.y9a{bottom:457.813200pt;}
.yae{bottom:457.915867pt;}
.yf{bottom:460.398800pt;}
.y53{bottom:463.347867pt;}
.y31{bottom:467.239600pt;}
.y77{bottom:472.516000pt;}
.yce{bottom:474.847600pt;}
.y99{bottom:475.941200pt;}
.yad{bottom:476.043867pt;}
.ye{bottom:479.998800pt;}
.y52{bottom:482.275867pt;}
.y30{bottom:486.967600pt;}
.y76{bottom:491.044000pt;}
.y98{bottom:494.069200pt;}
.yac{bottom:494.171867pt;}
.yd{bottom:499.598800pt;}
.y51{bottom:501.203867pt;}
.y2f{bottom:506.695600pt;}
.y75{bottom:509.572000pt;}
.y97{bottom:512.197200pt;}
.yab{bottom:512.299867pt;}
.yc{bottom:519.198800pt;}
.y50{bottom:520.131867pt;}
.y2e{bottom:526.423600pt;}
.y74{bottom:528.121200pt;}
.y95{bottom:532.807600pt;}
.yb{bottom:538.798800pt;}
.y4f{bottom:539.059867pt;}
.ycd{bottom:539.647600pt;}
.y2d{bottom:546.151600pt;}
.y73{bottom:546.649200pt;}
.y4e{bottom:557.987867pt;}
.ya{bottom:558.398800pt;}
.y72{bottom:565.177200pt;}
.y2c{bottom:565.879600pt;}
.ycc{bottom:572.447733pt;}
.y94{bottom:575.572000pt;}
.y4d{bottom:576.915867pt;}
.y9{bottom:577.998800pt;}
.y71{bottom:583.705200pt;}
.y2b{bottom:585.607600pt;}
.ycb{bottom:590.047733pt;}
.y93{bottom:594.772000pt;}
.y4c{bottom:595.843867pt;}
.y8{bottom:597.598800pt;}
.y70{bottom:602.238667pt;}
.yca{bottom:607.647733pt;}
.y2a{bottom:612.900000pt;}
.y92{bottom:613.972000pt;}
.y4b{bottom:614.771867pt;}
.y7{bottom:617.198800pt;}
.y6f{bottom:620.814533pt;}
.yc9{bottom:625.247733pt;}
.y91{bottom:633.172000pt;}
.y4a{bottom:633.753333pt;}
.y6{bottom:636.798800pt;}
.y6e{bottom:639.342533pt;}
.yc8{bottom:642.847733pt;}
.y90{bottom:652.372000pt;}
.y49{bottom:652.681333pt;}
.y6d{bottom:657.870533pt;}
.yc7{bottom:660.447733pt;}
.y29{bottom:666.809333pt;}
.y8f{bottom:671.572000pt;}
.y48{bottom:671.609333pt;}
.y6c{bottom:676.398533pt;}
.yc6{bottom:678.047733pt;}
.y28{bottom:686.537333pt;}
.y47{bottom:690.537333pt;}
.y8e{bottom:690.772000pt;}
.y6b{bottom:694.926533pt;}
.yc5{bottom:695.647733pt;}
.y27{bottom:706.265333pt;}
.y46{bottom:709.465333pt;}
.y8d{bottom:709.972000pt;}
.yc4{bottom:713.247733pt;}
.y6a{bottom:713.454533pt;}
.y26{bottom:725.993333pt;}
.y45{bottom:728.393333pt;}
.y8c{bottom:729.172000pt;}
.yc3{bottom:730.847733pt;}
.y69{bottom:731.982533pt;}
.y5{bottom:733.198800pt;}
.y25{bottom:745.721333pt;}
.y44{bottom:747.321333pt;}
.y8b{bottom:748.372000pt;}
.yc2{bottom:748.447733pt;}
.y68{bottom:750.510533pt;}
.y4{bottom:760.398800pt;}
.y24{bottom:765.449333pt;}
.yc1{bottom:766.047733pt;}
.y43{bottom:766.249333pt;}
.y8a{bottom:767.572000pt;}
.y67{bottom:769.038533pt;}
.yc0{bottom:783.647733pt;}
.y23{bottom:785.177333pt;}
.y89{bottom:786.772000pt;}
.y66{bottom:787.572000pt;}
.ybf{bottom:801.247733pt;}
.y22{bottom:804.905333pt;}
.y88{bottom:805.705333pt;}
.y65{bottom:806.105333pt;}
.y3{bottom:809.520000pt;}
.y21{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.ybe{bottom:826.406800pt;}
.h9{height:23.288802pt;}
.h4{height:25.757812pt;}
.hf{height:27.171875pt;}
.h3{height:31.700521pt;}
.hb{height:36.229167pt;}
.h2{height:36.796875pt;}
.h17{height:40.476562pt;}
.ha{height:43.022135pt;}
.h6{height:45.286458pt;}
.h5{height:47.437500pt;}
.h16{height:49.815104pt;}
.h8{height:54.343750pt;}
.h11{height:55.945450pt;}
.h10{height:56.072383pt;}
.h14{height:56.094783pt;}
.hc{height:56.115583pt;}
.hd{height:56.179583pt;}
.h15{height:56.201450pt;}
.h13{height:56.222783pt;}
.h12{height:56.264383pt;}
.he{height:56.264917pt;}
.h7{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x1{left:86.929200pt;}
.x4{left:105.839867pt;}
.x2{left:133.929200pt;}
.x3{left:240.513733pt;}
.x5{left:258.196533pt;}
.x8{left:338.704133pt;}
.x9{left:463.955067pt;}
.x6{left:508.590533pt;}
}




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