
    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_06842f49a97844a8727a8716.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886737;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_8be59aa1280ac185e357eb4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917969;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_0db8fdff1fe0bc6dcb3eca8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_9a33400918c1f831028a1871.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_d5c2bb25c08c79db0b7d8a9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_02d0d2b812836ea7da60ccac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_e8bcf999aeae1038437b332b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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_9a3b5300809db0f33ae13c95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_18317f913cd8beeafa77183c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_ab3babfcc8f5f70a177d40da.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d26da8224e4bb138923a8565.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_76dfd4a57ff77a5b3027ddcd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.lsb{letter-spacing:13.109760px;}
.ls8{letter-spacing:19.589760px;}
.lsa{letter-spacing:23.189760px;}
.lse{letter-spacing:33.960000px;}
.lsf{letter-spacing:34.560000px;}
.ls9{letter-spacing:36.149760px;}
.ls6{letter-spacing:49.829760px;}
.ls5{letter-spacing:70.709760px;}
.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:-18.504000px;}
.wsa{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.424000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-9.720000px;}
.ws0{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-62.640000px;}
._57{margin-left:-2.272320px;}
._4{margin-left:-1.192320px;}
._6{width:1.192320px;}
._7{width:2.216640px;}
._11{width:4.176000px;}
._32{width:5.184000px;}
._a{width:6.192000px;}
._b{width:7.416000px;}
._14{width:8.568000px;}
._15{width:9.711360px;}
._8{width:11.088000px;}
._9{width:12.103680px;}
._e{width:13.392000px;}
._c{width:14.512320px;}
._d{width:16.272000px;}
._12{width:19.152000px;}
._13{width:20.223360px;}
._22{width:22.104000px;}
._29{width:23.112000px;}
._0{width:24.708000px;}
._24{width:25.896000px;}
._16{width:27.288000px;}
._17{width:29.088000px;}
._44{width:30.096000px;}
._1d{width:31.104000px;}
._1e{width:32.112000px;}
._20{width:33.808320px;}
._1f{width:34.992000px;}
._23{width:36.792000px;}
._46{width:37.840320px;}
._37{width:38.880000px;}
._21{width:40.063680px;}
._10{width:41.872320px;}
._f{width:43.416000px;}
._2b{width:44.424000px;}
._2c{width:45.720000px;}
._31{width:46.800000px;}
._2a{width:48.672000px;}
._18{width:50.184000px;}
._2d{width:52.128000px;}
._26{width:53.352000px;}
._30{width:54.360000px;}
._56{width:55.408320px;}
._40{width:56.704320px;}
._3f{width:58.104000px;}
._35{width:59.112000px;}
._36{width:60.120000px;}
._2f{width:61.344000px;}
._4c{width:62.455680px;}
._34{width:63.720000px;}
._48{width:64.728000px;}
._49{width:65.920320px;}
._39{width:67.248000px;}
._3a{width:68.400000px;}
._38{width:69.840000px;}
._4a{width:71.392320px;}
._43{width:73.152000px;}
._3b{width:74.520000px;}
._47{width:75.536640px;}
._42{width:77.040000px;}
._2e{width:78.048000px;}
._25{width:79.560000px;}
._53{width:81.144000px;}
._59{width:82.152000px;}
._1c{width:83.304000px;}
._1b{width:84.528000px;}
._52{width:86.832000px;}
._5a{width:89.239680px;}
._41{width:92.160000px;}
._4b{width:93.240000px;}
._51{width:97.632000px;}
._45{width:102.312000px;}
._4d{width:104.184000px;}
._27{width:105.408000px;}
._28{width:106.632000px;}
._33{width:107.784000px;}
._5b{width:109.912320px;}
._3d{width:116.184000px;}
._3e{width:117.312000px;}
._55{width:119.119680px;}
._54{width:120.280320px;}
._5d{width:127.320000px;}
._3c{width:128.568000px;}
._19{width:130.320000px;}
._1a{width:131.400000px;}
._5c{width:178.848000px;}
._58{width:207.400320px;}
._50{width:212.184000px;}
._4e{width:257.088000px;}
._4f{width:258.264000px;}
._2{width:365.916000px;}
._5{width:648.396960px;}
._3{width:1386.300000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc7{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,63,119);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.140000px;}
.y1d{bottom:4.320000px;}
.y39{bottom:4.489500px;}
.y40{bottom:5.940000px;}
.y3e{bottom:10.080000px;}
.y1c{bottom:24.300000px;}
.y38{bottom:25.189500px;}
.y3d{bottom:29.880000px;}
.y1b{bottom:45.000000px;}
.y37{bottom:45.889500px;}
.y3c{bottom:49.680000px;}
.y6{bottom:51.840000px;}
.y5{bottom:58.176000px;}
.y1a{bottom:65.700000px;}
.y36{bottom:66.589500px;}
.y3b{bottom:70.560000px;}
.y19{bottom:86.400000px;}
.y35{bottom:87.289500px;}
.y4a{bottom:97.009500px;}
.y18{bottom:106.740000px;}
.y34{bottom:107.989500px;}
.y49{bottom:127.249500px;}
.y17{bottom:127.620000px;}
.y33{bottom:128.689500px;}
.y8d{bottom:129.816000px;}
.y75{bottom:130.176000px;}
.y1e{bottom:146.920500px;}
.y48{bottom:148.129500px;}
.y32{bottom:149.389500px;}
.y8c{bottom:150.510000px;}
.y74{bottom:150.870000px;}
.y47{bottom:168.874500px;}
.y31{bottom:170.134500px;}
.y8b{bottom:171.210000px;}
.y73{bottom:171.570000px;}
.y9d{bottom:176.970000px;}
.y46{bottom:189.574500px;}
.y30{bottom:190.834500px;}
.y7a{bottom:191.910000px;}
.y72{bottom:192.270000px;}
.y45{bottom:210.274500px;}
.y2f{bottom:211.534500px;}
.y81{bottom:212.610000px;}
.y71{bottom:212.970000px;}
.y9c{bottom:216.750000px;}
.y44{bottom:230.974500px;}
.y2e{bottom:232.234500px;}
.y70{bottom:233.670000px;}
.y43{bottom:251.314500px;}
.y2d{bottom:252.934500px;}
.y86{bottom:254.010000px;}
.y6f{bottom:254.370000px;}
.y9b{bottom:254.910000px;}
.y42{bottom:272.194500px;}
.y2c{bottom:273.634500px;}
.y95{bottom:274.710000px;}
.y6e{bottom:275.070000px;}
.y41{bottom:291.994500px;}
.y2b{bottom:294.334500px;}
.y98{bottom:295.410000px;}
.y6d{bottom:295.770000px;}
.y2a{bottom:315.034500px;}
.y6c{bottom:316.515000px;}
.y29{bottom:335.734500px;}
.y79{bottom:336.855000px;}
.y6b{bottom:337.215000px;}
.y28{bottom:356.434500px;}
.y80{bottom:357.555000px;}
.y6a{bottom:357.915000px;}
.y27{bottom:377.134500px;}
.y8a{bottom:378.255000px;}
.y69{bottom:378.615000px;}
.y26{bottom:397.834500px;}
.y96{bottom:398.955000px;}
.y68{bottom:399.315000px;}
.y25{bottom:418.564500px;}
.y67{bottom:420.015000px;}
.y24{bottom:439.264500px;}
.y78{bottom:440.355000px;}
.y66{bottom:440.715000px;}
.y3f{bottom:454.395000px;}
.y23{bottom:459.964500px;}
.y94{bottom:461.055000px;}
.y65{bottom:461.415000px;}
.y3a{bottom:475.815000px;}
.y22{bottom:480.664500px;}
.y64{bottom:482.115000px;}
.y21{bottom:501.364500px;}
.y7f{bottom:502.455000px;}
.y63{bottom:502.815000px;}
.y20{bottom:522.064500px;}
.y7e{bottom:522.975000px;}
.y62{bottom:523.335000px;}
.y1f{bottom:542.584500px;}
.y61{bottom:544.035000px;}
.y16{bottom:561.885000px;}
.y97{bottom:564.405000px;}
.y60{bottom:564.765000px;}
.y85{bottom:585.105000px;}
.y5f{bottom:585.465000px;}
.y91{bottom:605.805000px;}
.y5e{bottom:606.165000px;}
.y93{bottom:626.505000px;}
.y5d{bottom:626.865000px;}
.y7d{bottom:647.205000px;}
.y5c{bottom:647.565000px;}
.y87{bottom:667.905000px;}
.y5b{bottom:668.265000px;}
.y77{bottom:688.605000px;}
.y5a{bottom:688.965000px;}
.y15{bottom:709.305000px;}
.y59{bottom:709.665000px;}
.y14{bottom:729.465000px;}
.y9a{bottom:730.005000px;}
.y58{bottom:730.365000px;}
.y13{bottom:749.985000px;}
.y84{bottom:750.705000px;}
.y57{bottom:751.065000px;}
.y83{bottom:771.405000px;}
.y56{bottom:771.765000px;}
.y12{bottom:782.745000px;}
.y7c{bottom:792.105000px;}
.y55{bottom:792.465000px;}
.y99{bottom:812.850000px;}
.y54{bottom:813.210000px;}
.y11{bottom:813.750000px;}
.y88{bottom:833.550000px;}
.y53{bottom:833.910000px;}
.y10{bottom:842.550000px;}
.y8f{bottom:854.250000px;}
.y52{bottom:854.610000px;}
.yf{bottom:868.830000px;}
.y89{bottom:874.950000px;}
.y51{bottom:875.310000px;}
.ye{bottom:889.530000px;}
.y8e{bottom:895.650000px;}
.y50{bottom:896.010000px;}
.yd{bottom:910.230000px;}
.y90{bottom:916.350000px;}
.y4f{bottom:916.710000px;}
.yc{bottom:930.930000px;}
.y82{bottom:937.050000px;}
.y4e{bottom:937.410000px;}
.yb{bottom:953.430000px;}
.y7b{bottom:957.750000px;}
.y4d{bottom:958.110000px;}
.ya{bottom:974.850000px;}
.y92{bottom:978.450000px;}
.y4c{bottom:978.810000px;}
.y9{bottom:999.150000px;}
.y4b{bottom:999.510000px;}
.y8{bottom:1019.850000px;}
.y76{bottom:1020.210000px;}
.y4{bottom:1058.910000px;}
.y3{bottom:1077.660000px;}
.y2{bottom:1094.400000px;}
.y1{bottom:1116.720000px;}
.h16{height:21.405000px;}
.h6{height:21.600000px;}
.h3{height:34.414263px;}
.h14{height:45.928125px;}
.hf{height:47.255406px;}
.ha{height:47.344922px;}
.h5{height:48.030469px;}
.h15{height:49.811073px;}
.hd{height:49.921875px;}
.h18{height:50.800781px;}
.h1b{height:51.364571px;}
.h12{height:52.066406px;}
.he{height:52.207031px;}
.h2{height:57.656250px;}
.h8{height:60.096549px;}
.hb{height:65.518594px;}
.h4{height:65.884219px;}
.h1{height:68.314880px;}
.h1a{height:70.628906px;}
.hc{height:70.664062px;}
.h7{height:72.562500px;}
.h19{height:74.004654px;}
.h9{height:80.464922px;}
.h13{height:86.070000px;}
.h10{height:143.100000px;}
.h17{height:307.465500px;}
.h11{height:558.070500px;}
.h0{height:1188.000000px;}
.w2{width:257.250000px;}
.w3{width:507.855000px;}
.w1{width:777.780000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x9{left:99.936000px;}
.x1{left:108.036000px;}
.x8{left:134.856000px;}
.x3{left:138.096000px;}
.xe{left:162.030000px;}
.x6{left:169.050000px;}
.xc{left:171.174000px;}
.x7{left:181.830000px;}
.x4{left:301.755000px;}
.xb{left:357.195000px;}
.x5{left:459.075000px;}
.xd{left:474.915000px;}
.xf{left:501.945000px;}
.x10{left:528.945000px;}
.x2{left:785.130000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.lsb{letter-spacing:11.653120pt;}
.ls8{letter-spacing:17.413120pt;}
.lsa{letter-spacing:20.613120pt;}
.lse{letter-spacing:30.186667pt;}
.lsf{letter-spacing:30.720000pt;}
.ls9{letter-spacing:32.133120pt;}
.ls6{letter-spacing:44.293120pt;}
.ls5{letter-spacing:62.853120pt;}
.ws6{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-55.680000pt;}
._57{margin-left:-2.019840pt;}
._4{margin-left:-1.059840pt;}
._6{width:1.059840pt;}
._7{width:1.970347pt;}
._11{width:3.712000pt;}
._32{width:4.608000pt;}
._a{width:5.504000pt;}
._b{width:6.592000pt;}
._14{width:7.616000pt;}
._15{width:8.632320pt;}
._8{width:9.856000pt;}
._9{width:10.758827pt;}
._e{width:11.904000pt;}
._c{width:12.899840pt;}
._d{width:14.464000pt;}
._12{width:17.024000pt;}
._13{width:17.976320pt;}
._22{width:19.648000pt;}
._29{width:20.544000pt;}
._0{width:21.962667pt;}
._24{width:23.018667pt;}
._16{width:24.256000pt;}
._17{width:25.856000pt;}
._44{width:26.752000pt;}
._1d{width:27.648000pt;}
._1e{width:28.544000pt;}
._20{width:30.051840pt;}
._1f{width:31.104000pt;}
._23{width:32.704000pt;}
._46{width:33.635840pt;}
._37{width:34.560000pt;}
._21{width:35.612160pt;}
._10{width:37.219840pt;}
._f{width:38.592000pt;}
._2b{width:39.488000pt;}
._2c{width:40.640000pt;}
._31{width:41.600000pt;}
._2a{width:43.264000pt;}
._18{width:44.608000pt;}
._2d{width:46.336000pt;}
._26{width:47.424000pt;}
._30{width:48.320000pt;}
._56{width:49.251840pt;}
._40{width:50.403840pt;}
._3f{width:51.648000pt;}
._35{width:52.544000pt;}
._36{width:53.440000pt;}
._2f{width:54.528000pt;}
._4c{width:55.516160pt;}
._34{width:56.640000pt;}
._48{width:57.536000pt;}
._49{width:58.595840pt;}
._39{width:59.776000pt;}
._3a{width:60.800000pt;}
._38{width:62.080000pt;}
._4a{width:63.459840pt;}
._43{width:65.024000pt;}
._3b{width:66.240000pt;}
._47{width:67.143680pt;}
._42{width:68.480000pt;}
._2e{width:69.376000pt;}
._25{width:70.720000pt;}
._53{width:72.128000pt;}
._59{width:73.024000pt;}
._1c{width:74.048000pt;}
._1b{width:75.136000pt;}
._52{width:77.184000pt;}
._5a{width:79.324160pt;}
._41{width:81.920000pt;}
._4b{width:82.880000pt;}
._51{width:86.784000pt;}
._45{width:90.944000pt;}
._4d{width:92.608000pt;}
._27{width:93.696000pt;}
._28{width:94.784000pt;}
._33{width:95.808000pt;}
._5b{width:97.699840pt;}
._3d{width:103.274667pt;}
._3e{width:104.277333pt;}
._55{width:105.884160pt;}
._54{width:106.915840pt;}
._5d{width:113.173333pt;}
._3c{width:114.282667pt;}
._19{width:115.840000pt;}
._1a{width:116.800000pt;}
._5c{width:158.976000pt;}
._58{width:184.355840pt;}
._50{width:188.608000pt;}
._4e{width:228.522667pt;}
._4f{width:229.568000pt;}
._2{width:325.258667pt;}
._5{width:576.352853pt;}
._3{width:1232.266667pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.680000pt;}
.y1d{bottom:3.840000pt;}
.y39{bottom:3.990667pt;}
.y40{bottom:5.280000pt;}
.y3e{bottom:8.960000pt;}
.y1c{bottom:21.600000pt;}
.y38{bottom:22.390667pt;}
.y3d{bottom:26.560000pt;}
.y1b{bottom:40.000000pt;}
.y37{bottom:40.790667pt;}
.y3c{bottom:44.160000pt;}
.y6{bottom:46.080000pt;}
.y5{bottom:51.712000pt;}
.y1a{bottom:58.400000pt;}
.y36{bottom:59.190667pt;}
.y3b{bottom:62.720000pt;}
.y19{bottom:76.800000pt;}
.y35{bottom:77.590667pt;}
.y4a{bottom:86.230667pt;}
.y18{bottom:94.880000pt;}
.y34{bottom:95.990667pt;}
.y49{bottom:113.110667pt;}
.y17{bottom:113.440000pt;}
.y33{bottom:114.390667pt;}
.y8d{bottom:115.392000pt;}
.y75{bottom:115.712000pt;}
.y1e{bottom:130.596000pt;}
.y48{bottom:131.670667pt;}
.y32{bottom:132.790667pt;}
.y8c{bottom:133.786667pt;}
.y74{bottom:134.106667pt;}
.y47{bottom:150.110667pt;}
.y31{bottom:151.230667pt;}
.y8b{bottom:152.186667pt;}
.y73{bottom:152.506667pt;}
.y9d{bottom:157.306667pt;}
.y46{bottom:168.510667pt;}
.y30{bottom:169.630667pt;}
.y7a{bottom:170.586667pt;}
.y72{bottom:170.906667pt;}
.y45{bottom:186.910667pt;}
.y2f{bottom:188.030667pt;}
.y81{bottom:188.986667pt;}
.y71{bottom:189.306667pt;}
.y9c{bottom:192.666667pt;}
.y44{bottom:205.310667pt;}
.y2e{bottom:206.430667pt;}
.y70{bottom:207.706667pt;}
.y43{bottom:223.390667pt;}
.y2d{bottom:224.830667pt;}
.y86{bottom:225.786667pt;}
.y6f{bottom:226.106667pt;}
.y9b{bottom:226.586667pt;}
.y42{bottom:241.950667pt;}
.y2c{bottom:243.230667pt;}
.y95{bottom:244.186667pt;}
.y6e{bottom:244.506667pt;}
.y41{bottom:259.550667pt;}
.y2b{bottom:261.630667pt;}
.y98{bottom:262.586667pt;}
.y6d{bottom:262.906667pt;}
.y2a{bottom:280.030667pt;}
.y6c{bottom:281.346667pt;}
.y29{bottom:298.430667pt;}
.y79{bottom:299.426667pt;}
.y6b{bottom:299.746667pt;}
.y28{bottom:316.830667pt;}
.y80{bottom:317.826667pt;}
.y6a{bottom:318.146667pt;}
.y27{bottom:335.230667pt;}
.y8a{bottom:336.226667pt;}
.y69{bottom:336.546667pt;}
.y26{bottom:353.630667pt;}
.y96{bottom:354.626667pt;}
.y68{bottom:354.946667pt;}
.y25{bottom:372.057333pt;}
.y67{bottom:373.346667pt;}
.y24{bottom:390.457333pt;}
.y78{bottom:391.426667pt;}
.y66{bottom:391.746667pt;}
.y3f{bottom:403.906667pt;}
.y23{bottom:408.857333pt;}
.y94{bottom:409.826667pt;}
.y65{bottom:410.146667pt;}
.y3a{bottom:422.946667pt;}
.y22{bottom:427.257333pt;}
.y64{bottom:428.546667pt;}
.y21{bottom:445.657333pt;}
.y7f{bottom:446.626667pt;}
.y63{bottom:446.946667pt;}
.y20{bottom:464.057333pt;}
.y7e{bottom:464.866667pt;}
.y62{bottom:465.186667pt;}
.y1f{bottom:482.297333pt;}
.y61{bottom:483.586667pt;}
.y16{bottom:499.453333pt;}
.y97{bottom:501.693333pt;}
.y60{bottom:502.013333pt;}
.y85{bottom:520.093333pt;}
.y5f{bottom:520.413333pt;}
.y91{bottom:538.493333pt;}
.y5e{bottom:538.813333pt;}
.y93{bottom:556.893333pt;}
.y5d{bottom:557.213333pt;}
.y7d{bottom:575.293333pt;}
.y5c{bottom:575.613333pt;}
.y87{bottom:593.693333pt;}
.y5b{bottom:594.013333pt;}
.y77{bottom:612.093333pt;}
.y5a{bottom:612.413333pt;}
.y15{bottom:630.493333pt;}
.y59{bottom:630.813333pt;}
.y14{bottom:648.413333pt;}
.y9a{bottom:648.893333pt;}
.y58{bottom:649.213333pt;}
.y13{bottom:666.653333pt;}
.y84{bottom:667.293333pt;}
.y57{bottom:667.613333pt;}
.y83{bottom:685.693333pt;}
.y56{bottom:686.013333pt;}
.y12{bottom:695.773333pt;}
.y7c{bottom:704.093333pt;}
.y55{bottom:704.413333pt;}
.y99{bottom:722.533333pt;}
.y54{bottom:722.853333pt;}
.y11{bottom:723.333333pt;}
.y88{bottom:740.933333pt;}
.y53{bottom:741.253333pt;}
.y10{bottom:748.933333pt;}
.y8f{bottom:759.333333pt;}
.y52{bottom:759.653333pt;}
.yf{bottom:772.293333pt;}
.y89{bottom:777.733333pt;}
.y51{bottom:778.053333pt;}
.ye{bottom:790.693333pt;}
.y8e{bottom:796.133333pt;}
.y50{bottom:796.453333pt;}
.yd{bottom:809.093333pt;}
.y90{bottom:814.533333pt;}
.y4f{bottom:814.853333pt;}
.yc{bottom:827.493333pt;}
.y82{bottom:832.933333pt;}
.y4e{bottom:833.253333pt;}
.yb{bottom:847.493333pt;}
.y7b{bottom:851.333333pt;}
.y4d{bottom:851.653333pt;}
.ya{bottom:866.533333pt;}
.y92{bottom:869.733333pt;}
.y4c{bottom:870.053333pt;}
.y9{bottom:888.133333pt;}
.y4b{bottom:888.453333pt;}
.y8{bottom:906.533333pt;}
.y76{bottom:906.853333pt;}
.y4{bottom:941.253333pt;}
.y3{bottom:957.920000pt;}
.y2{bottom:972.800000pt;}
.y1{bottom:992.640000pt;}
.h16{height:19.026667pt;}
.h6{height:19.200000pt;}
.h3{height:30.590456pt;}
.h14{height:40.825000pt;}
.hf{height:42.004805pt;}
.ha{height:42.084375pt;}
.h5{height:42.693750pt;}
.h15{height:44.276509pt;}
.hd{height:44.375000pt;}
.h18{height:45.156250pt;}
.h1b{height:45.657397pt;}
.h12{height:46.281250pt;}
.he{height:46.406250pt;}
.h2{height:51.250000pt;}
.h8{height:53.419154pt;}
.hb{height:58.238750pt;}
.h4{height:58.563750pt;}
.h1{height:60.724338pt;}
.h1a{height:62.781250pt;}
.hc{height:62.812500pt;}
.h7{height:64.500000pt;}
.h19{height:65.781915pt;}
.h9{height:71.524375pt;}
.h13{height:76.506667pt;}
.h10{height:127.200000pt;}
.h17{height:273.302667pt;}
.h11{height:496.062667pt;}
.h0{height:1056.000000pt;}
.w2{width:228.666667pt;}
.w3{width:451.426667pt;}
.w1{width:691.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x9{left:88.832000pt;}
.x1{left:96.032000pt;}
.x8{left:119.872000pt;}
.x3{left:122.752000pt;}
.xe{left:144.026667pt;}
.x6{left:150.266667pt;}
.xc{left:152.154667pt;}
.x7{left:161.626667pt;}
.x4{left:268.226667pt;}
.xb{left:317.506667pt;}
.x5{left:408.066667pt;}
.xd{left:422.146667pt;}
.xf{left:446.173333pt;}
.x10{left:470.173333pt;}
.x2{left:697.893333pt;}
}




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