
    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_3ceabeaa3a3cc506bedc6fda.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_255e4be848941a43bbe71881.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_81b6df83d8666d96ad3d093b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_64d30ea0f73cc7d9a0df830f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_aaf6af7b09697477aac26f18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_e2b56e7a8a1b47aa60450651.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.027360px;}
.ls0{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.147360px;}
.ls2{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259920px;}
.lse{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.979920px;}
.ls8{letter-spacing:1.025280px;}
.ls4{letter-spacing:1.745280px;}
.ls15{letter-spacing:2.106720px;}
.lsf{letter-spacing:3.185280px;}
.ls17{letter-spacing:10.026720px;}
.lsc{letter-spacing:10.385280px;}
.ls13{letter-spacing:19.386720px;}
.lsd{letter-spacing:22.625280px;}
.ls9{letter-spacing:34.865280px;}
.ls11{letter-spacing:35.946720px;}
.ls16{letter-spacing:153.306720px;}
.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;}
}
.ws1{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.774720px;}
.ws8{word-spacing:-18.720120px;}
.ws4{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.000120px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.wsa{word-spacing:-13.410720px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-5.363280px;}
._8{margin-left:-3.764880px;}
._2{margin-left:-2.491200px;}
._0{margin-left:-1.248000px;}
._1{width:1.020240px;}
._5{width:2.577120px;}
._7{width:3.696960px;}
._6{width:5.147520px;}
._a{width:7.064400px;}
._3{width:8.545680px;}
._4{width:9.856080px;}
._10{width:11.790720px;}
._9{width:13.685040px;}
._f{width:15.357120px;}
._11{width:16.560000px;}
._18{width:19.673280px;}
._26{width:20.733120px;}
._1b{width:21.991680px;}
._15{width:23.274240px;}
._14{width:24.906240px;}
._21{width:26.006400px;}
._1c{width:27.810240px;}
._24{width:29.811840px;}
._1e{width:31.397760px;}
._19{width:33.517440px;}
._1d{width:34.600320px;}
._13{width:35.759040px;}
._16{width:37.303680px;}
._2b{width:39.202560px;}
._29{width:40.338000px;}
._22{width:42.062400px;}
._c{width:43.723200px;}
._b{width:45.083520px;}
._12{width:54.051840px;}
._23{width:55.218240px;}
._28{width:56.225520px;}
._e{width:62.498880px;}
._d{width:64.186560px;}
._1a{width:66.030720px;}
._25{width:72.864000px;}
._27{width:92.139840px;}
._20{width:102.086400px;}
._1f{width:103.191360px;}
._2a{width:251.165280px;}
._2c{width:844.140000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y6c{bottom:8.280000px;}
.y72{bottom:8.460000px;}
.y6a{bottom:11.880000px;}
.y68{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y66{bottom:114.156000px;}
.y26{bottom:120.096000px;}
.y55{bottom:122.256000px;}
.y47{bottom:122.436000px;}
.ya9{bottom:130.896000px;}
.y65{bottom:133.056000px;}
.y25{bottom:139.176000px;}
.y54{bottom:141.156000px;}
.y46{bottom:141.516000px;}
.ya8{bottom:151.050000px;}
.y64{bottom:152.130000px;}
.y82{bottom:156.450000px;}
.y24{bottom:158.070000px;}
.y53{bottom:160.230000px;}
.y45{bottom:160.410000px;}
.ya7{bottom:168.330000px;}
.y63{bottom:171.030000px;}
.y81{bottom:173.550000px;}
.y23{bottom:176.970000px;}
.y52{bottom:179.130000px;}
.y44{bottom:179.310000px;}
.ya6{bottom:185.610000px;}
.y62{bottom:189.930000px;}
.y80{bottom:190.830000px;}
.y22{bottom:196.050000px;}
.y51{bottom:198.210000px;}
.y43{bottom:198.390000px;}
.ya5{bottom:202.890000px;}
.y7f{bottom:208.110000px;}
.y61{bottom:209.010000px;}
.y21{bottom:214.950000px;}
.y50{bottom:217.110000px;}
.ya4{bottom:219.990000px;}
.y60{bottom:227.910000px;}
.y20{bottom:234.075000px;}
.y42{bottom:235.695000px;}
.y4f{bottom:236.055000px;}
.ya3{bottom:237.315000px;}
.y7e{bottom:243.615000px;}
.y5f{bottom:247.035000px;}
.y1f{bottom:252.975000px;}
.y4e{bottom:255.135000px;}
.y7d{bottom:262.695000px;}
.y5e{bottom:265.935000px;}
.ya2{bottom:271.875000px;}
.y41{bottom:274.035000px;}
.y7c{bottom:281.595000px;}
.y5d{bottom:284.835000px;}
.ya1{bottom:289.155000px;}
.y1e{bottom:290.235000px;}
.y40{bottom:293.115000px;}
.y7b{bottom:300.495000px;}
.y5c{bottom:303.915000px;}
.ya0{bottom:306.435000px;}
.y3f{bottom:312.015000px;}
.y7a{bottom:319.575000px;}
.y5b{bottom:322.815000px;}
.y9f{bottom:323.535000px;}
.y3e{bottom:330.915000px;}
.y1d{bottom:337.395000px;}
.y79{bottom:338.475000px;}
.y9e{bottom:340.815000px;}
.y5a{bottom:341.895000px;}
.y3d{bottom:349.995000px;}
.y1c{bottom:354.675000px;}
.y78{bottom:357.555000px;}
.y9d{bottom:358.095000px;}
.y59{bottom:360.795000px;}
.y3c{bottom:368.895000px;}
.y1b{bottom:371.955000px;}
.y9c{bottom:375.375000px;}
.y77{bottom:376.455000px;}
.y58{bottom:379.875000px;}
.y3b{bottom:387.975000px;}
.y1a{bottom:389.235000px;}
.y9b{bottom:392.655000px;}
.y76{bottom:395.535000px;}
.y57{bottom:398.775000px;}
.y19{bottom:406.335000px;}
.y3a{bottom:406.875000px;}
.y9a{bottom:409.935000px;}
.y18{bottom:423.645000px;}
.y39{bottom:425.805000px;}
.y99{bottom:427.065000px;}
.y75{bottom:432.825000px;}
.y56{bottom:436.065000px;}
.y17{bottom:440.925000px;}
.y98{bottom:444.345000px;}
.y38{bottom:444.885000px;}
.y16{bottom:458.205000px;}
.y97{bottom:461.625000px;}
.y4d{bottom:463.065000px;}
.y37{bottom:463.785000px;}
.y74{bottom:471.165000px;}
.y71{bottom:473.145000px;}
.y15{bottom:475.485000px;}
.y96{bottom:478.905000px;}
.y36{bottom:482.865000px;}
.y14{bottom:492.585000px;}
.y73{bottom:495.645000px;}
.y95{bottom:496.185000px;}
.y4c{bottom:501.585000px;}
.y35{bottom:501.765000px;}
.y70{bottom:502.845000px;}
.y13{bottom:509.865000px;}
.y94{bottom:513.285000px;}
.y4b{bottom:520.485000px;}
.y34{bottom:520.665000px;}
.y12{bottom:527.145000px;}
.y93{bottom:530.565000px;}
.y6f{bottom:532.545000px;}
.y4a{bottom:539.565000px;}
.y11{bottom:544.425000px;}
.y92{bottom:547.845000px;}
.y33{bottom:557.925000px;}
.y49{bottom:558.465000px;}
.y10{bottom:561.705000px;}
.y6e{bottom:562.065000px;}
.y91{bottom:565.125000px;}
.y48{bottom:577.365000px;}
.yf{bottom:578.985000px;}
.y90{bottom:582.405000px;}
.y6d{bottom:591.765000px;}
.y32{bottom:596.445000px;}
.ye{bottom:596.625000px;}
.y8f{bottom:599.685000px;}
.y31{bottom:615.390000px;}
.y8e{bottom:616.830000px;}
.yd{bottom:617.370000px;}
.y6b{bottom:621.330000px;}
.y8d{bottom:634.110000px;}
.y30{bottom:634.470000px;}
.yc{bottom:638.070000px;}
.y67{bottom:651.030000px;}
.y8c{bottom:651.390000px;}
.y2f{bottom:653.370000px;}
.yb{bottom:658.770000px;}
.y8b{bottom:668.670000px;}
.y2e{bottom:672.270000px;}
.ya{bottom:679.470000px;}
.y8a{bottom:685.950000px;}
.y2d{bottom:691.350000px;}
.y9{bottom:700.170000px;}
.y89{bottom:703.230000px;}
.y2c{bottom:710.250000px;}
.y88{bottom:720.330000px;}
.y8{bottom:720.870000px;}
.y2b{bottom:729.330000px;}
.y87{bottom:737.610000px;}
.y7{bottom:741.570000px;}
.y2a{bottom:748.230000px;}
.y86{bottom:754.890000px;}
.y6{bottom:762.270000px;}
.y29{bottom:767.310000px;}
.y85{bottom:772.170000px;}
.y5{bottom:782.970000px;}
.y28{bottom:786.210000px;}
.y84{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y27{bottom:805.140000px;}
.y83{bottom:806.760000px;}
.hb{height:27.360000px;}
.hc{height:27.396000px;}
.ha{height:34.560000px;}
.h7{height:44.090508px;}
.h6{height:45.549492px;}
.h3{height:46.251562px;}
.h2{height:53.603086px;}
.hd{height:54.390938px;}
.h8{height:59.415469px;}
.h9{height:60.288750px;}
.h5{height:64.582031px;}
.h4{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w9{width:45.936000px;}
.wa{width:50.940000px;}
.w8{width:57.240000px;}
.w6{width:57.420000px;}
.w3{width:58.680000px;}
.w5{width:60.300000px;}
.w7{width:62.496000px;}
.w4{width:70.056000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xf{left:4.140000px;}
.xc{left:5.580000px;}
.x18{left:7.020000px;}
.xd{left:9.540000px;}
.x1a{left:11.340000px;}
.x16{left:12.780000px;}
.x1d{left:14.040000px;}
.x15{left:15.660000px;}
.x1c{left:20.334000px;}
.x13{left:22.710000px;}
.x1b{left:25.200000px;}
.xb{left:75.276000px;}
.x2{left:80.855991px;}
.x3{left:93.995991px;}
.x7{left:106.235991px;}
.x8{left:124.235991px;}
.xe{left:136.116000px;}
.x9{left:163.469991px;}
.xa{left:165.989991px;}
.x6{left:169.589991px;}
.x10{left:208.515000px;}
.x1f{left:213.374991px;}
.x4{left:262.334991px;}
.x11{left:271.155000px;}
.x1{left:302.294991px;}
.x5{left:314.714991px;}
.x12{left:330.915000px;}
.x14{left:395.565000px;}
.x17{left:455.145000px;}
.x19{left:503.250000px;}
.x1e{left:548.969991px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024320pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.130987pt;}
.ls2{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.871040pt;}
.ls8{letter-spacing:0.911360pt;}
.ls4{letter-spacing:1.551360pt;}
.ls15{letter-spacing:1.872640pt;}
.lsf{letter-spacing:2.831360pt;}
.ls17{letter-spacing:8.912640pt;}
.lsc{letter-spacing:9.231360pt;}
.ls13{letter-spacing:17.232640pt;}
.lsd{letter-spacing:20.111360pt;}
.ls9{letter-spacing:30.991360pt;}
.ls11{letter-spacing:31.952640pt;}
.ls16{letter-spacing:136.272640pt;}
.ws1{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.688640pt;}
.ws8{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.000107pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.wsa{word-spacing:-11.920640pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-4.767360pt;}
._8{margin-left:-3.346560pt;}
._2{margin-left:-2.214400pt;}
._0{margin-left:-1.109333pt;}
._1{width:0.906880pt;}
._5{width:2.290773pt;}
._7{width:3.286187pt;}
._6{width:4.575573pt;}
._a{width:6.279467pt;}
._3{width:7.596160pt;}
._4{width:8.760960pt;}
._10{width:10.480640pt;}
._9{width:12.164480pt;}
._f{width:13.650773pt;}
._11{width:14.720000pt;}
._18{width:17.487360pt;}
._26{width:18.429440pt;}
._1b{width:19.548160pt;}
._15{width:20.688213pt;}
._14{width:22.138880pt;}
._21{width:23.116800pt;}
._1c{width:24.720213pt;}
._24{width:26.499413pt;}
._1e{width:27.909120pt;}
._19{width:29.793280pt;}
._1d{width:30.755840pt;}
._13{width:31.785813pt;}
._16{width:33.158827pt;}
._2b{width:34.846720pt;}
._29{width:35.856000pt;}
._22{width:37.388800pt;}
._c{width:38.865067pt;}
._b{width:40.074240pt;}
._12{width:48.046080pt;}
._23{width:49.082880pt;}
._28{width:49.978240pt;}
._e{width:55.554560pt;}
._d{width:57.054720pt;}
._1a{width:58.693973pt;}
._25{width:64.768000pt;}
._27{width:81.902080pt;}
._20{width:90.743467pt;}
._1f{width:91.725653pt;}
._2a{width:223.258027pt;}
._2c{width:750.346667pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y6c{bottom:7.360000pt;}
.y72{bottom:7.520000pt;}
.y6a{bottom:10.560000pt;}
.y68{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y66{bottom:101.472000pt;}
.y26{bottom:106.752000pt;}
.y55{bottom:108.672000pt;}
.y47{bottom:108.832000pt;}
.ya9{bottom:116.352000pt;}
.y65{bottom:118.272000pt;}
.y25{bottom:123.712000pt;}
.y54{bottom:125.472000pt;}
.y46{bottom:125.792000pt;}
.ya8{bottom:134.266667pt;}
.y64{bottom:135.226667pt;}
.y82{bottom:139.066667pt;}
.y24{bottom:140.506667pt;}
.y53{bottom:142.426667pt;}
.y45{bottom:142.586667pt;}
.ya7{bottom:149.626667pt;}
.y63{bottom:152.026667pt;}
.y81{bottom:154.266667pt;}
.y23{bottom:157.306667pt;}
.y52{bottom:159.226667pt;}
.y44{bottom:159.386667pt;}
.ya6{bottom:164.986667pt;}
.y62{bottom:168.826667pt;}
.y80{bottom:169.626667pt;}
.y22{bottom:174.266667pt;}
.y51{bottom:176.186667pt;}
.y43{bottom:176.346667pt;}
.ya5{bottom:180.346667pt;}
.y7f{bottom:184.986667pt;}
.y61{bottom:185.786667pt;}
.y21{bottom:191.066667pt;}
.y50{bottom:192.986667pt;}
.ya4{bottom:195.546667pt;}
.y60{bottom:202.586667pt;}
.y20{bottom:208.066667pt;}
.y42{bottom:209.506667pt;}
.y4f{bottom:209.826667pt;}
.ya3{bottom:210.946667pt;}
.y7e{bottom:216.546667pt;}
.y5f{bottom:219.586667pt;}
.y1f{bottom:224.866667pt;}
.y4e{bottom:226.786667pt;}
.y7d{bottom:233.506667pt;}
.y5e{bottom:236.386667pt;}
.ya2{bottom:241.666667pt;}
.y41{bottom:243.586667pt;}
.y7c{bottom:250.306667pt;}
.y5d{bottom:253.186667pt;}
.ya1{bottom:257.026667pt;}
.y1e{bottom:257.986667pt;}
.y40{bottom:260.546667pt;}
.y7b{bottom:267.106667pt;}
.y5c{bottom:270.146667pt;}
.ya0{bottom:272.386667pt;}
.y3f{bottom:277.346667pt;}
.y7a{bottom:284.066667pt;}
.y5b{bottom:286.946667pt;}
.y9f{bottom:287.586667pt;}
.y3e{bottom:294.146667pt;}
.y1d{bottom:299.906667pt;}
.y79{bottom:300.866667pt;}
.y9e{bottom:302.946667pt;}
.y5a{bottom:303.906667pt;}
.y3d{bottom:311.106667pt;}
.y1c{bottom:315.266667pt;}
.y78{bottom:317.826667pt;}
.y9d{bottom:318.306667pt;}
.y59{bottom:320.706667pt;}
.y3c{bottom:327.906667pt;}
.y1b{bottom:330.626667pt;}
.y9c{bottom:333.666667pt;}
.y77{bottom:334.626667pt;}
.y58{bottom:337.666667pt;}
.y3b{bottom:344.866667pt;}
.y1a{bottom:345.986667pt;}
.y9b{bottom:349.026667pt;}
.y76{bottom:351.586667pt;}
.y57{bottom:354.466667pt;}
.y19{bottom:361.186667pt;}
.y3a{bottom:361.666667pt;}
.y9a{bottom:364.386667pt;}
.y18{bottom:376.573333pt;}
.y39{bottom:378.493333pt;}
.y99{bottom:379.613333pt;}
.y75{bottom:384.733333pt;}
.y56{bottom:387.613333pt;}
.y17{bottom:391.933333pt;}
.y98{bottom:394.973333pt;}
.y38{bottom:395.453333pt;}
.y16{bottom:407.293333pt;}
.y97{bottom:410.333333pt;}
.y4d{bottom:411.613333pt;}
.y37{bottom:412.253333pt;}
.y74{bottom:418.813333pt;}
.y71{bottom:420.573333pt;}
.y15{bottom:422.653333pt;}
.y96{bottom:425.693333pt;}
.y36{bottom:429.213333pt;}
.y14{bottom:437.853333pt;}
.y73{bottom:440.573333pt;}
.y95{bottom:441.053333pt;}
.y4c{bottom:445.853333pt;}
.y35{bottom:446.013333pt;}
.y70{bottom:446.973333pt;}
.y13{bottom:453.213333pt;}
.y94{bottom:456.253333pt;}
.y4b{bottom:462.653333pt;}
.y34{bottom:462.813333pt;}
.y12{bottom:468.573333pt;}
.y93{bottom:471.613333pt;}
.y6f{bottom:473.373333pt;}
.y4a{bottom:479.613333pt;}
.y11{bottom:483.933333pt;}
.y92{bottom:486.973333pt;}
.y33{bottom:495.933333pt;}
.y49{bottom:496.413333pt;}
.y10{bottom:499.293333pt;}
.y6e{bottom:499.613333pt;}
.y91{bottom:502.333333pt;}
.y48{bottom:513.213333pt;}
.yf{bottom:514.653333pt;}
.y90{bottom:517.693333pt;}
.y6d{bottom:526.013333pt;}
.y32{bottom:530.173333pt;}
.ye{bottom:530.333333pt;}
.y8f{bottom:533.053333pt;}
.y31{bottom:547.013333pt;}
.y8e{bottom:548.293333pt;}
.yd{bottom:548.773333pt;}
.y6b{bottom:552.293333pt;}
.y8d{bottom:563.653333pt;}
.y30{bottom:563.973333pt;}
.yc{bottom:567.173333pt;}
.y67{bottom:578.693333pt;}
.y8c{bottom:579.013333pt;}
.y2f{bottom:580.773333pt;}
.yb{bottom:585.573333pt;}
.y8b{bottom:594.373333pt;}
.y2e{bottom:597.573333pt;}
.ya{bottom:603.973333pt;}
.y8a{bottom:609.733333pt;}
.y2d{bottom:614.533333pt;}
.y9{bottom:622.373333pt;}
.y89{bottom:625.093333pt;}
.y2c{bottom:631.333333pt;}
.y88{bottom:640.293333pt;}
.y8{bottom:640.773333pt;}
.y2b{bottom:648.293333pt;}
.y87{bottom:655.653333pt;}
.y7{bottom:659.173333pt;}
.y2a{bottom:665.093333pt;}
.y86{bottom:671.013333pt;}
.y6{bottom:677.573333pt;}
.y29{bottom:682.053333pt;}
.y85{bottom:686.373333pt;}
.y5{bottom:695.973333pt;}
.y28{bottom:698.853333pt;}
.y84{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y27{bottom:715.680000pt;}
.y83{bottom:717.120000pt;}
.hb{height:24.320000pt;}
.hc{height:24.352000pt;}
.ha{height:30.720000pt;}
.h7{height:39.191562pt;}
.h6{height:40.488438pt;}
.h3{height:41.112500pt;}
.h2{height:47.647188pt;}
.hd{height:48.347500pt;}
.h8{height:52.813750pt;}
.h9{height:53.590000pt;}
.h5{height:57.406250pt;}
.h4{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w9{width:40.832000pt;}
.wa{width:45.280000pt;}
.w8{width:50.880000pt;}
.w6{width:51.040000pt;}
.w3{width:52.160000pt;}
.w5{width:53.600000pt;}
.w7{width:55.552000pt;}
.w4{width:62.272000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xf{left:3.680000pt;}
.xc{left:4.960000pt;}
.x18{left:6.240000pt;}
.xd{left:8.480000pt;}
.x1a{left:10.080000pt;}
.x16{left:11.360000pt;}
.x1d{left:12.480000pt;}
.x15{left:13.920000pt;}
.x1c{left:18.074667pt;}
.x13{left:20.186667pt;}
.x1b{left:22.400000pt;}
.xb{left:66.912000pt;}
.x2{left:71.871992pt;}
.x3{left:83.551992pt;}
.x7{left:94.431992pt;}
.x8{left:110.431992pt;}
.xe{left:120.992000pt;}
.x9{left:145.306658pt;}
.xa{left:147.546658pt;}
.x6{left:150.746658pt;}
.x10{left:185.346667pt;}
.x1f{left:189.666658pt;}
.x4{left:233.186658pt;}
.x11{left:241.026667pt;}
.x1{left:268.706658pt;}
.x5{left:279.746658pt;}
.x12{left:294.146667pt;}
.x14{left:351.613333pt;}
.x17{left:404.573333pt;}
.x19{left:447.333333pt;}
.x1e{left:487.973325pt;}
}




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