
    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_0d50a3624ee55009858d130a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4827e8947b392614a542796d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900879;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_bd64ee1f355d1f00c1232014.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_db488ff4f2c9e06ce5b199d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f1b441d6ab81dd90ac71a113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1c8a0e9a0c5a30408900cd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_6a8665f17895f7715c823c03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1fa88060e1805b337cabf0cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v4{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.696000px;}
.ls5{letter-spacing:-0.250800px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.440000px;}
.lsd{letter-spacing:198.156000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws6{word-spacing:-66.240000px;}
.ws7{word-spacing:-41.040000px;}
.wsd{word-spacing:-19.440000px;}
.wsb{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws0{word-spacing:-13.876800px;}
.wsa{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.629200px;}
.ws9{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.080000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._38{margin-left:-230.760000px;}
._8{margin-left:-3.672000px;}
._3{margin-left:-2.315520px;}
._1{margin-left:-1.002240px;}
._0{width:1.419840px;}
._4{width:2.573760px;}
._6{width:3.579840px;}
._2{width:4.653600px;}
._7{width:5.672640px;}
._a{width:6.843840px;}
._b{width:8.467200px;}
._10{width:10.052160px;}
._11{width:11.139840px;}
._c{width:12.672000px;}
._d{width:14.224320px;}
._9{width:15.747840px;}
._15{width:16.833600px;}
._14{width:19.938240px;}
._e{width:21.090240px;}
._f{width:22.554240px;}
._17{width:24.508800px;}
._1b{width:25.574400px;}
._16{width:26.591040px;}
._1a{width:27.596160px;}
._1d{width:29.119680px;}
._19{width:30.312000px;}
._12{width:31.567680px;}
._18{width:32.694720px;}
._13{width:33.741600px;}
._1c{width:35.570400px;}
._1e{width:36.893760px;}
._20{width:38.894400px;}
._1f{width:40.299840px;}
._36{width:44.239680px;}
._37{width:45.328320px;}
._35{width:47.557440px;}
._34{width:49.752000px;}
._2a{width:69.832320px;}
._30{width:70.916640px;}
._2f{width:71.939520px;}
._31{width:73.197120px;}
._2b{width:90.999360px;}
._2c{width:92.689920px;}
._22{width:96.609600px;}
._21{width:97.623360px;}
._23{width:100.092000px;}
._29{width:108.180000px;}
._28{width:119.274240px;}
._27{width:126.792000px;}
._2e{width:155.367360px;}
._2d{width:156.778560px;}
._26{width:159.186720px;}
._25{width:167.047680px;}
._32{width:190.674720px;}
._24{width:198.156000px;}
._33{width:412.306560px;}
._5{width:2046.144480px;}
.fc4{color:rgb(180,180,180);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(31,73,125);}
.fc0{color:rgb(84,141,212);}
.fs7{font-size:24.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.960000px;}
.y51{bottom:4.320000px;}
.y4f{bottom:4.680000px;}
.y64{bottom:5.040000px;}
.y4e{bottom:5.400000px;}
.y5c{bottom:5.430000px;}
.y53{bottom:5.760000px;}
.y5e{bottom:6.480000px;}
.y5f{bottom:6.840000px;}
.ya9{bottom:7.500000px;}
.y60{bottom:8.640000px;}
.y72{bottom:13.320000px;}
.y73{bottom:13.680000px;}
.y74{bottom:23.040000px;}
.y76{bottom:25.200000px;}
.y7b{bottom:25.245000px;}
.y6{bottom:57.996000px;}
.y5{bottom:77.436000px;}
.y79{bottom:111.636000px;}
.ya4{bottom:112.716000px;}
.ya7{bottom:113.436000px;}
.y34{bottom:113.796000px;}
.y78{bottom:133.272000px;}
.ya6{bottom:134.352000px;}
.y33{bottom:134.712000px;}
.ya3{bottom:154.155000px;}
.y77{bottom:154.875000px;}
.y32{bottom:155.235000px;}
.ya2{bottom:174.675000px;}
.ya5{bottom:175.755000px;}
.y31{bottom:176.115000px;}
.y75{bottom:176.475000px;}
.ya1{bottom:195.555000px;}
.y44{bottom:196.275000px;}
.y30{bottom:196.635000px;}
.ya0{bottom:216.075000px;}
.y2f{bottom:217.515000px;}
.y71{bottom:217.875000px;}
.y9f{bottom:236.955000px;}
.y2e{bottom:238.035000px;}
.y70{bottom:257.145000px;}
.y9e{bottom:257.505000px;}
.y2d{bottom:258.945000px;}
.y9d{bottom:278.385000px;}
.y6f{bottom:278.745000px;}
.y2c{bottom:279.465000px;}
.y9c{bottom:298.905000px;}
.y2b{bottom:300.345000px;}
.y9b{bottom:319.785000px;}
.y2a{bottom:320.865000px;}
.y6e{bottom:321.945000px;}
.y9a{bottom:340.305000px;}
.y29{bottom:341.385000px;}
.y42{bottom:341.745000px;}
.y6d{bottom:343.545000px;}
.y99{bottom:361.185000px;}
.y28{bottom:362.265000px;}
.y6c{bottom:365.145000px;}
.y98{bottom:381.750000px;}
.y27{bottom:383.190000px;}
.y6b{bottom:386.790000px;}
.y97{bottom:402.990000px;}
.y26{bottom:403.710000px;}
.y6a{bottom:408.390000px;}
.y96{bottom:423.510000px;}
.y25{bottom:424.590000px;}
.y69{bottom:429.990000px;}
.y95{bottom:444.390000px;}
.y24{bottom:445.110000px;}
.y68{bottom:451.590000px;}
.y94{bottom:464.910000px;}
.y23{bottom:465.990000px;}
.y67{bottom:473.190000px;}
.y93{bottom:485.790000px;}
.y22{bottom:486.510000px;}
.y66{bottom:494.790000px;}
.y92{bottom:506.340000px;}
.y21{bottom:507.420000px;}
.y65{bottom:516.420000px;}
.y91{bottom:527.220000px;}
.y47{bottom:527.580000px;}
.y20{bottom:527.940000px;}
.y63{bottom:538.020000px;}
.y90{bottom:547.740000px;}
.y46{bottom:548.460000px;}
.y1f{bottom:548.820000px;}
.y62{bottom:559.620000px;}
.y8f{bottom:568.620000px;}
.y1e{bottom:569.340000px;}
.y61{bottom:580.500000px;}
.y8e{bottom:589.140000px;}
.y1d{bottom:590.220000px;}
.y5d{bottom:601.020000px;}
.y8d{bottom:610.020000px;}
.y1c{bottom:610.740000px;}
.y5b{bottom:626.580000px;}
.y8c{bottom:630.570000px;}
.y1b{bottom:631.650000px;}
.y5a{bottom:650.010000px;}
.y8b{bottom:651.450000px;}
.y1a{bottom:652.170000px;}
.y59{bottom:670.890000px;}
.y8a{bottom:671.970000px;}
.ya8{bottom:672.690000px;}
.y19{bottom:673.050000px;}
.y58{bottom:691.410000px;}
.y89{bottom:692.850000px;}
.y18{bottom:693.570000px;}
.y57{bottom:712.290000px;}
.y88{bottom:713.370000px;}
.y45{bottom:714.090000px;}
.y17{bottom:714.450000px;}
.y56{bottom:732.810000px;}
.y87{bottom:734.250000px;}
.y16{bottom:734.970000px;}
.y54{bottom:753.735000px;}
.y86{bottom:754.815000px;}
.y15{bottom:755.535000px;}
.y41{bottom:755.895000px;}
.y52{bottom:774.255000px;}
.y14{bottom:775.335000px;}
.y85{bottom:775.695000px;}
.y40{bottom:776.415000px;}
.y13{bottom:792.975000px;}
.y84{bottom:796.215000px;}
.y3f{bottom:797.295000px;}
.y50{bottom:797.655000px;}
.y12{bottom:810.255000px;}
.y83{bottom:817.095000px;}
.y3e{bottom:817.815000px;}
.y4d{bottom:819.255000px;}
.y11{bottom:827.535000px;}
.y82{bottom:837.615000px;}
.y3d{bottom:838.695000px;}
.y10{bottom:844.455000px;}
.y81{bottom:858.495000px;}
.y3c{bottom:859.215000px;}
.y4c{bottom:861.375000px;}
.yf{bottom:861.735000px;}
.y80{bottom:879.045000px;}
.y3b{bottom:880.125000px;}
.y4b{bottom:882.285000px;}
.ye{bottom:884.445000px;}
.y7f{bottom:899.565000px;}
.y3a{bottom:900.645000px;}
.yd{bottom:901.725000px;}
.y4a{bottom:902.805000px;}
.y7e{bottom:914.325000px;}
.yc{bottom:919.005000px;}
.y39{bottom:921.525000px;}
.y49{bottom:923.685000px;}
.y7d{bottom:935.925000px;}
.yb{bottom:936.285000px;}
.y43{bottom:941.685000px;}
.y38{bottom:942.045000px;}
.y48{bottom:944.205000px;}
.ya{bottom:947.805000px;}
.y7c{bottom:957.525000px;}
.y37{bottom:962.925000px;}
.y9{bottom:965.445000px;}
.y7a{bottom:979.125000px;}
.y8{bottom:983.085000px;}
.y36{bottom:983.445000px;}
.y7{bottom:1004.010000px;}
.y35{bottom:1004.370000px;}
.y4{bottom:1024.890000px;}
.y3{bottom:1050.810000px;}
.y2{bottom:1072.770000px;}
.y1{bottom:1114.890000px;}
.h11{height:20.520000px;}
.hf{height:20.880000px;}
.h12{height:20.916000px;}
.h15{height:21.600000px;}
.h16{height:21.636000px;}
.he{height:22.320000px;}
.h13{height:22.716000px;}
.h10{height:23.400000px;}
.h14{height:24.840000px;}
.h1a{height:25.031250px;}
.h8{height:38.158594px;}
.h17{height:39.276000px;}
.h18{height:41.400000px;}
.h19{height:41.436000px;}
.h3{height:50.294531px;}
.h2{height:54.667969px;}
.h4{height:55.825312px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.hd{height:62.184375px;}
.h7{height:63.663750px;}
.hb{height:64.546875px;}
.ha{height:70.664062px;}
.h5{height:72.562500px;}
.hc{height:73.998281px;}
.h1{height:87.108750px;}
.h0{height:1188.000000px;}
.w5{width:52.920000px;}
.w4{width:56.916000px;}
.w6{width:92.916000px;}
.w3{width:104.436000px;}
.w2{width:396.510000px;}
.w7{width:500.940000px;}
.w8{width:703.695000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:8.280000px;}
.x19{left:10.440000px;}
.x1e{left:12.960000px;}
.x18{left:15.120000px;}
.x12{left:18.720000px;}
.x17{left:20.190000px;}
.x10{left:22.005000px;}
.x16{left:26.280000px;}
.x15{left:28.485000px;}
.x14{left:38.550000px;}
.x1d{left:41.430000px;}
.x1a{left:46.470000px;}
.xe{left:52.230000px;}
.x1f{left:75.000000px;}
.x3{left:108.035986px;}
.x2{left:109.475986px;}
.x1{left:131.075986px;}
.x4{left:156.314986px;}
.x7{left:197.714986px;}
.xa{left:225.794986px;}
.x8{left:248.504986px;}
.x9{left:256.784986px;}
.x5{left:327.344986px;}
.x1c{left:332.784000px;}
.xb{left:337.829986px;}
.x1b{left:349.704000px;}
.x6{left:459.179986px;}
.xd{left:503.820000px;}
.xf{left:608.250000px;}
.x11{left:665.175000px;}
.x13{left:718.095000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v4{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.618667pt;}
.ls5{letter-spacing:-0.222933pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.280000pt;}
.lsd{letter-spacing:176.138667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws6{word-spacing:-58.880000pt;}
.ws7{word-spacing:-36.480000pt;}
.wsd{word-spacing:-17.280000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws0{word-spacing:-12.334933pt;}
.wsa{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.337067pt;}
.ws9{word-spacing:-9.920000pt;}
.ws2{word-spacing:-8.960000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._38{margin-left:-205.120000pt;}
._8{margin-left:-3.264000pt;}
._3{margin-left:-2.058240pt;}
._1{margin-left:-0.890880pt;}
._0{width:1.262080pt;}
._4{width:2.287787pt;}
._6{width:3.182080pt;}
._2{width:4.136533pt;}
._7{width:5.042347pt;}
._a{width:6.083413pt;}
._b{width:7.526400pt;}
._10{width:8.935253pt;}
._11{width:9.902080pt;}
._c{width:11.264000pt;}
._d{width:12.643840pt;}
._9{width:13.998080pt;}
._15{width:14.963200pt;}
._14{width:17.722880pt;}
._e{width:18.746880pt;}
._f{width:20.048213pt;}
._17{width:21.785600pt;}
._1b{width:22.732800pt;}
._16{width:23.636480pt;}
._1a{width:24.529920pt;}
._1d{width:25.884160pt;}
._19{width:26.944000pt;}
._12{width:28.060160pt;}
._18{width:29.061973pt;}
._13{width:29.992533pt;}
._1c{width:31.618133pt;}
._1e{width:32.794453pt;}
._20{width:34.572800pt;}
._1f{width:35.822080pt;}
._36{width:39.324160pt;}
._37{width:40.291840pt;}
._35{width:42.273280pt;}
._34{width:44.224000pt;}
._2a{width:62.073173pt;}
._30{width:63.037013pt;}
._2f{width:63.946240pt;}
._31{width:65.064107pt;}
._2b{width:80.888320pt;}
._2c{width:82.391040pt;}
._22{width:85.875200pt;}
._21{width:86.776320pt;}
._23{width:88.970667pt;}
._29{width:96.160000pt;}
._28{width:106.021547pt;}
._27{width:112.704000pt;}
._2e{width:138.104320pt;}
._2d{width:139.358720pt;}
._26{width:141.499307pt;}
._25{width:148.486827pt;}
._32{width:169.488640pt;}
._24{width:176.138667pt;}
._33{width:366.494720pt;}
._5{width:1818.795093pt;}
.fs7{font-size:21.333333pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.520000pt;}
.y51{bottom:3.840000pt;}
.y4f{bottom:4.160000pt;}
.y64{bottom:4.480000pt;}
.y4e{bottom:4.800000pt;}
.y5c{bottom:4.826667pt;}
.y53{bottom:5.120000pt;}
.y5e{bottom:5.760000pt;}
.y5f{bottom:6.080000pt;}
.ya9{bottom:6.666667pt;}
.y60{bottom:7.680000pt;}
.y72{bottom:11.840000pt;}
.y73{bottom:12.160000pt;}
.y74{bottom:20.480000pt;}
.y76{bottom:22.400000pt;}
.y7b{bottom:22.440000pt;}
.y6{bottom:51.552000pt;}
.y5{bottom:68.832000pt;}
.y79{bottom:99.232000pt;}
.ya4{bottom:100.192000pt;}
.ya7{bottom:100.832000pt;}
.y34{bottom:101.152000pt;}
.y78{bottom:118.464000pt;}
.ya6{bottom:119.424000pt;}
.y33{bottom:119.744000pt;}
.ya3{bottom:137.026667pt;}
.y77{bottom:137.666667pt;}
.y32{bottom:137.986667pt;}
.ya2{bottom:155.266667pt;}
.ya5{bottom:156.226667pt;}
.y31{bottom:156.546667pt;}
.y75{bottom:156.866667pt;}
.ya1{bottom:173.826667pt;}
.y44{bottom:174.466667pt;}
.y30{bottom:174.786667pt;}
.ya0{bottom:192.066667pt;}
.y2f{bottom:193.346667pt;}
.y71{bottom:193.666667pt;}
.y9f{bottom:210.626667pt;}
.y2e{bottom:211.586667pt;}
.y70{bottom:228.573333pt;}
.y9e{bottom:228.893333pt;}
.y2d{bottom:230.173333pt;}
.y9d{bottom:247.453333pt;}
.y6f{bottom:247.773333pt;}
.y2c{bottom:248.413333pt;}
.y9c{bottom:265.693333pt;}
.y2b{bottom:266.973333pt;}
.y9b{bottom:284.253333pt;}
.y2a{bottom:285.213333pt;}
.y6e{bottom:286.173333pt;}
.y9a{bottom:302.493333pt;}
.y29{bottom:303.453333pt;}
.y42{bottom:303.773333pt;}
.y6d{bottom:305.373333pt;}
.y99{bottom:321.053333pt;}
.y28{bottom:322.013333pt;}
.y6c{bottom:324.573333pt;}
.y98{bottom:339.333333pt;}
.y27{bottom:340.613333pt;}
.y6b{bottom:343.813333pt;}
.y97{bottom:358.213333pt;}
.y26{bottom:358.853333pt;}
.y6a{bottom:363.013333pt;}
.y96{bottom:376.453333pt;}
.y25{bottom:377.413333pt;}
.y69{bottom:382.213333pt;}
.y95{bottom:395.013333pt;}
.y24{bottom:395.653333pt;}
.y68{bottom:401.413333pt;}
.y94{bottom:413.253333pt;}
.y23{bottom:414.213333pt;}
.y67{bottom:420.613333pt;}
.y93{bottom:431.813333pt;}
.y22{bottom:432.453333pt;}
.y66{bottom:439.813333pt;}
.y92{bottom:450.080000pt;}
.y21{bottom:451.040000pt;}
.y65{bottom:459.040000pt;}
.y91{bottom:468.640000pt;}
.y47{bottom:468.960000pt;}
.y20{bottom:469.280000pt;}
.y63{bottom:478.240000pt;}
.y90{bottom:486.880000pt;}
.y46{bottom:487.520000pt;}
.y1f{bottom:487.840000pt;}
.y62{bottom:497.440000pt;}
.y8f{bottom:505.440000pt;}
.y1e{bottom:506.080000pt;}
.y61{bottom:516.000000pt;}
.y8e{bottom:523.680000pt;}
.y1d{bottom:524.640000pt;}
.y5d{bottom:534.240000pt;}
.y8d{bottom:542.240000pt;}
.y1c{bottom:542.880000pt;}
.y5b{bottom:556.960000pt;}
.y8c{bottom:560.506667pt;}
.y1b{bottom:561.466667pt;}
.y5a{bottom:577.786667pt;}
.y8b{bottom:579.066667pt;}
.y1a{bottom:579.706667pt;}
.y59{bottom:596.346667pt;}
.y8a{bottom:597.306667pt;}
.ya8{bottom:597.946667pt;}
.y19{bottom:598.266667pt;}
.y58{bottom:614.586667pt;}
.y89{bottom:615.866667pt;}
.y18{bottom:616.506667pt;}
.y57{bottom:633.146667pt;}
.y88{bottom:634.106667pt;}
.y45{bottom:634.746667pt;}
.y17{bottom:635.066667pt;}
.y56{bottom:651.386667pt;}
.y87{bottom:652.666667pt;}
.y16{bottom:653.306667pt;}
.y54{bottom:669.986667pt;}
.y86{bottom:670.946667pt;}
.y15{bottom:671.586667pt;}
.y41{bottom:671.906667pt;}
.y52{bottom:688.226667pt;}
.y14{bottom:689.186667pt;}
.y85{bottom:689.506667pt;}
.y40{bottom:690.146667pt;}
.y13{bottom:704.866667pt;}
.y84{bottom:707.746667pt;}
.y3f{bottom:708.706667pt;}
.y50{bottom:709.026667pt;}
.y12{bottom:720.226667pt;}
.y83{bottom:726.306667pt;}
.y3e{bottom:726.946667pt;}
.y4d{bottom:728.226667pt;}
.y11{bottom:735.586667pt;}
.y82{bottom:744.546667pt;}
.y3d{bottom:745.506667pt;}
.y10{bottom:750.626667pt;}
.y81{bottom:763.106667pt;}
.y3c{bottom:763.746667pt;}
.y4c{bottom:765.666667pt;}
.yf{bottom:765.986667pt;}
.y80{bottom:781.373333pt;}
.y3b{bottom:782.333333pt;}
.y4b{bottom:784.253333pt;}
.ye{bottom:786.173333pt;}
.y7f{bottom:799.613333pt;}
.y3a{bottom:800.573333pt;}
.yd{bottom:801.533333pt;}
.y4a{bottom:802.493333pt;}
.y7e{bottom:812.733333pt;}
.yc{bottom:816.893333pt;}
.y39{bottom:819.133333pt;}
.y49{bottom:821.053333pt;}
.y7d{bottom:831.933333pt;}
.yb{bottom:832.253333pt;}
.y43{bottom:837.053333pt;}
.y38{bottom:837.373333pt;}
.y48{bottom:839.293333pt;}
.ya{bottom:842.493333pt;}
.y7c{bottom:851.133333pt;}
.y37{bottom:855.933333pt;}
.y9{bottom:858.173333pt;}
.y7a{bottom:870.333333pt;}
.y8{bottom:873.853333pt;}
.y36{bottom:874.173333pt;}
.y7{bottom:892.453333pt;}
.y35{bottom:892.773333pt;}
.y4{bottom:911.013333pt;}
.y3{bottom:934.053333pt;}
.y2{bottom:953.573333pt;}
.y1{bottom:991.013333pt;}
.h11{height:18.240000pt;}
.hf{height:18.560000pt;}
.h12{height:18.592000pt;}
.h15{height:19.200000pt;}
.h16{height:19.232000pt;}
.he{height:19.840000pt;}
.h13{height:20.192000pt;}
.h10{height:20.800000pt;}
.h14{height:22.080000pt;}
.h1a{height:22.250000pt;}
.h8{height:33.918750pt;}
.h17{height:34.912000pt;}
.h18{height:36.800000pt;}
.h19{height:36.832000pt;}
.h3{height:44.706250pt;}
.h2{height:48.593750pt;}
.h4{height:49.622500pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.hd{height:55.275000pt;}
.h7{height:56.590000pt;}
.hb{height:57.375000pt;}
.ha{height:62.812500pt;}
.h5{height:64.500000pt;}
.hc{height:65.776250pt;}
.h1{height:77.430000pt;}
.h0{height:1056.000000pt;}
.w5{width:47.040000pt;}
.w4{width:50.592000pt;}
.w6{width:82.592000pt;}
.w3{width:92.832000pt;}
.w2{width:352.453333pt;}
.w7{width:445.280000pt;}
.w8{width:625.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.360000pt;}
.x19{left:9.280000pt;}
.x1e{left:11.520000pt;}
.x18{left:13.440000pt;}
.x12{left:16.640000pt;}
.x17{left:17.946667pt;}
.x10{left:19.560000pt;}
.x16{left:23.360000pt;}
.x15{left:25.320000pt;}
.x14{left:34.266667pt;}
.x1d{left:36.826667pt;}
.x1a{left:41.306667pt;}
.xe{left:46.426667pt;}
.x1f{left:66.666667pt;}
.x3{left:96.031988pt;}
.x2{left:97.311988pt;}
.x1{left:116.511988pt;}
.x4{left:138.946655pt;}
.x7{left:175.746655pt;}
.xa{left:200.706655pt;}
.x8{left:220.893321pt;}
.x9{left:228.253321pt;}
.x5{left:290.973321pt;}
.x1c{left:295.808000pt;}
.xb{left:300.293321pt;}
.x1b{left:310.848000pt;}
.x6{left:408.159988pt;}
.xd{left:447.840000pt;}
.xf{left:540.666667pt;}
.x11{left:591.266667pt;}
.x13{left:638.306667pt;}
}




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