
    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_5d33f986a2eb97d139827a77.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c66736553dcb88ad45a35103.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_d542401eb82ac2db1130b387.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_eb85757dea28ed6e43063152.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_f614451811f1fbf4b87ca6be.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4b46b0ffeb795b99949b5427.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7648e12f5289d18555a72bd0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls9{letter-spacing:-0.513600px;}
.ls5{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.139800px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.193320px;}
.lsa{letter-spacing:18.810000px;}
.lsc{letter-spacing:46.286640px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.210000px;}
.wsc{word-spacing:-15.183600px;}
.ws7{word-spacing:-15.030000px;}
.ws5{word-spacing:-14.890200px;}
.ws8{word-spacing:-14.876400px;}
.wsb{word-spacing:-14.516400px;}
.ws9{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.530000px;}
.ws6{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._12{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._2{width:1.014240px;}
._7{width:2.059680px;}
._a{width:3.168480px;}
._9{width:4.208400px;}
._8{width:5.531040px;}
._b{width:7.274520px;}
._e{width:8.537040px;}
._1c{width:9.979920px;}
._c{width:11.062080px;}
._10{width:12.324600px;}
._11{width:13.587120px;}
._20{width:16.052040px;}
._6{width:17.254440px;}
._1a{width:18.263160px;}
._19{width:19.298520px;}
._1f{width:21.282480px;}
._21{width:23.257920px;}
._f{width:25.190280px;}
._1e{width:27.174240px;}
._14{width:28.436760px;}
._15{width:29.579040px;}
._16{width:30.828240px;}
._d{width:32.224320px;}
._1d{width:33.607080px;}
._18{width:34.869600px;}
._2a{width:35.891640px;}
._24{width:37.000080px;}
._25{width:38.484360px;}
._2c{width:41.362560px;}
._1b{width:43.453440px;}
._17{width:44.609040px;}
._29{width:45.896760px;}
._2f{width:47.013840px;}
._2d{width:49.178160px;}
._22{width:50.260320px;}
._23{width:51.342480px;}
._30{width:58.857480px;}
._2e{width:60.120000px;}
._13{width:61.344000px;}
._27{width:63.486720px;}
._28{width:64.530000px;}
._26{width:66.372480px;}
._31{width:69.252480px;}
._2b{width:102.366720px;}
._4{width:197.730000px;}
._5{width:201.090000px;}
._3{width:1080.082320px;}
._1{width:1336.108920px;}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsc{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsb{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.yc4{bottom:2.700000px;}
.y43{bottom:2.880000px;}
.y41{bottom:2.970000px;}
.y21{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y22{bottom:4.590000px;}
.y5{bottom:8.370000px;}
.y6{bottom:16.470000px;}
.y40{bottom:18.450000px;}
.y38{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.yc3{bottom:30.240000px;}
.ye{bottom:33.210000px;}
.y3f{bottom:34.050000px;}
.y8c{bottom:35.640000px;}
.y37{bottom:37.710000px;}
.yc2{bottom:44.100000px;}
.y8{bottom:49.140000px;}
.y3e{bottom:49.530000px;}
.yd{bottom:51.690000px;}
.y36{bottom:54.990000px;}
.yc1{bottom:57.870000px;}
.y8b{bottom:60.030000px;}
.y3d{bottom:65.100000px;}
.yc{bottom:65.820000px;}
.yc0{bottom:71.640000px;}
.y35{bottom:72.180000px;}
.y4{bottom:73.530000px;}
.y3c{bottom:80.580000px;}
.y34{bottom:89.460000px;}
.y3b{bottom:96.150000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y33{bottom:106.740000px;}
.y3a{bottom:111.630000px;}
.y32{bottom:123.930000px;}
.ybd{bottom:124.020000px;}
.y52{bottom:125.370000px;}
.ya{bottom:136.200000px;}
.y8a{bottom:136.260000px;}
.y31{bottom:141.210000px;}
.y51{bottom:142.650000px;}
.y89{bottom:153.540000px;}
.y30{bottom:158.490000px;}
.ybc{bottom:158.520000px;}
.y50{bottom:159.870000px;}
.y48{bottom:163.530000px;}
.y88{bottom:170.850000px;}
.y2f{bottom:175.680000px;}
.ybb{bottom:175.800000px;}
.y4f{bottom:177.150000px;}
.y47{bottom:179.100000px;}
.y87{bottom:188.040000px;}
.y2e{bottom:192.960000px;}
.yba{bottom:192.990000px;}
.y4e{bottom:194.430000px;}
.y46{bottom:194.580000px;}
.y86{bottom:205.320000px;}
.y45{bottom:210.150000px;}
.y2d{bottom:210.240000px;}
.yb9{bottom:210.270000px;}
.y4d{bottom:211.620000px;}
.y85{bottom:222.600000px;}
.y44{bottom:225.630000px;}
.y2c{bottom:227.430000px;}
.yb8{bottom:227.460000px;}
.y4c{bottom:228.900000px;}
.y84{bottom:239.790000px;}
.y2b{bottom:244.710000px;}
.yb7{bottom:244.740000px;}
.y4b{bottom:246.180000px;}
.y83{bottom:257.070000px;}
.y2a{bottom:261.990000px;}
.yb6{bottom:262.020000px;}
.y4a{bottom:263.370000px;}
.y82{bottom:274.260000px;}
.y29{bottom:279.210000px;}
.y49{bottom:280.650000px;}
.y81{bottom:291.540000px;}
.y23{bottom:295.410000px;}
.y28{bottom:296.490000px;}
.y80{bottom:308.820000px;}
.y27{bottom:313.770000px;}
.y7f{bottom:326.010000px;}
.y26{bottom:330.960000px;}
.y7e{bottom:343.290000px;}
.y25{bottom:348.240000px;}
.y7d{bottom:360.570000px;}
.y24{bottom:365.520000px;}
.y7c{bottom:377.760000px;}
.yb5{bottom:382.710000px;}
.y7b{bottom:395.040000px;}
.yb4{bottom:399.990000px;}
.y7a{bottom:412.320000px;}
.yb3{bottom:417.270000px;}
.y79{bottom:429.510000px;}
.yb2{bottom:434.460000px;}
.y78{bottom:446.790000px;}
.yb1{bottom:451.740000px;}
.y77{bottom:464.070000px;}
.yb0{bottom:469.020000px;}
.y76{bottom:481.260000px;}
.yaf{bottom:486.210000px;}
.y75{bottom:498.540000px;}
.yae{bottom:503.490000px;}
.y74{bottom:515.820000px;}
.yad{bottom:520.770000px;}
.y73{bottom:533.010000px;}
.y42{bottom:534.450000px;}
.yac{bottom:537.960000px;}
.y72{bottom:550.290000px;}
.y39{bottom:550.650000px;}
.yab{bottom:555.240000px;}
.y71{bottom:567.570000px;}
.yaa{bottom:572.430000px;}
.y70{bottom:584.790000px;}
.ya9{bottom:589.740000px;}
.y6f{bottom:602.070000px;}
.ya8{bottom:607.020000px;}
.y6e{bottom:619.350000px;}
.ya7{bottom:624.210000px;}
.ybf{bottom:633.210000px;}
.y6d{bottom:636.540000px;}
.ya6{bottom:641.490000px;}
.y6c{bottom:653.820000px;}
.ya5{bottom:658.770000px;}
.y6b{bottom:671.010000px;}
.y20{bottom:675.690000px;}
.ya4{bottom:675.960000px;}
.y6a{bottom:688.290000px;}
.ya3{bottom:693.240000px;}
.y69{bottom:705.570000px;}
.y1f{bottom:706.470000px;}
.y1d{bottom:709.350000px;}
.ya2{bottom:710.520000px;}
.y1c{bottom:715.110000px;}
.ybe{bottom:716.820000px;}
.y68{bottom:722.760000px;}
.ya1{bottom:727.710000px;}
.y1b{bottom:732.300000px;}
.y67{bottom:740.040000px;}
.ya0{bottom:744.990000px;}
.y1a{bottom:752.190000px;}
.y66{bottom:757.320000px;}
.y9f{bottom:762.270000px;}
.y65{bottom:774.510000px;}
.y9e{bottom:779.460000px;}
.y19{bottom:785.850000px;}
.y64{bottom:791.790000px;}
.y9d{bottom:796.740000px;}
.y18{bottom:803.130000px;}
.y63{bottom:809.070000px;}
.y9c{bottom:814.020000px;}
.y17{bottom:815.460000px;}
.y62{bottom:826.260000px;}
.y9b{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y61{bottom:843.540000px;}
.y9a{bottom:848.490000px;}
.y60{bottom:860.820000px;}
.y99{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y5f{bottom:878.010000px;}
.y98{bottom:882.960000px;}
.y5e{bottom:895.290000px;}
.y14{bottom:898.800000px;}
.y97{bottom:900.240000px;}
.y5d{bottom:912.570000px;}
.y96{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y5c{bottom:929.760000px;}
.y95{bottom:934.710000px;}
.y5b{bottom:947.040000px;}
.y94{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y5a{bottom:964.320000px;}
.y93{bottom:969.180000px;}
.y59{bottom:981.510000px;}
.y92{bottom:986.460000px;}
.y58{bottom:998.820000px;}
.y91{bottom:1003.770000px;}
.y57{bottom:1016.010000px;}
.y90{bottom:1020.960000px;}
.y56{bottom:1033.290000px;}
.y8f{bottom:1038.240000px;}
.y55{bottom:1050.570000px;}
.y8e{bottom:1055.520000px;}
.y54{bottom:1067.760000px;}
.y8d{bottom:1072.710000px;}
.y53{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h14{height:1.710000px;}
.h15{height:4.273242px;}
.hf{height:4.318066px;}
.h16{height:8.382129px;}
.h21{height:13.770000px;}
.h1c{height:15.480000px;}
.h17{height:17.190000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h12{height:27.147656px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h22{height:33.782520px;}
.h1e{height:37.705078px;}
.h18{height:38.100586px;}
.h7{height:39.082324px;}
.h1b{height:41.343750px;}
.h1f{height:41.743477px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h20{height:43.769004px;}
.h2{height:45.295488px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h13{height:75.410156px;}
.h10{height:76.201172px;}
.h23{height:82.800000px;}
.hb{height:93.219434px;}
.he{height:118.619824px;}
.h1a{height:124.230000px;}
.h9{height:143.220000px;}
.h1d{height:238.230000px;}
.h19{height:379.470000px;}
.h0{height:1188.000000px;}
.w2{width:35.280000px;}
.w5{width:165.900000px;}
.w8{width:204.960000px;}
.wa{width:315.660000px;}
.w7{width:616.020000px;}
.w4{width:648.060000px;}
.w9{width:710.160000px;}
.w3{width:710.190000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x13{left:3.150000px;}
.x1b{left:6.749986px;}
.x5{left:8.100000px;}
.x6{left:45.540000px;}
.x14{left:46.710000px;}
.x1c{left:52.110000px;}
.x1{left:53.999986px;}
.x17{left:59.669986px;}
.x18{left:60.749986px;}
.x16{left:65.700000px;}
.xa{left:70.470000px;}
.x1d{left:88.470000px;}
.xe{left:93.239986px;}
.x3{left:99.360000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x4{left:135.720000px;}
.x11{left:184.079986px;}
.x8{left:200.190000px;}
.x12{left:217.469986px;}
.xb{left:231.780000px;}
.x19{left:276.779986px;}
.x10{left:321.599986px;}
.x7{left:324.030000px;}
.xf{left:464.159986px;}
.x1a{left:486.059986px;}
.x20{left:498.390000px;}
.x1e{left:513.059986px;}
.x15{left:663.450000px;}
.xc{left:693.600000px;}
.x1f{left:828.359986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls9{letter-spacing:-0.456533pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.124267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.171840pt;}
.lsa{letter-spacing:16.720000pt;}
.lsc{letter-spacing:41.143680pt;}
.ws2{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.520000pt;}
.wsc{word-spacing:-13.496533pt;}
.ws7{word-spacing:-13.360000pt;}
.ws5{word-spacing:-13.235733pt;}
.ws8{word-spacing:-13.223467pt;}
.wsb{word-spacing:-12.903467pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._12{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._2{width:0.901547pt;}
._7{width:1.830827pt;}
._a{width:2.816427pt;}
._9{width:3.740800pt;}
._8{width:4.916480pt;}
._b{width:6.466240pt;}
._e{width:7.588480pt;}
._1c{width:8.871040pt;}
._c{width:9.832960pt;}
._10{width:10.955200pt;}
._11{width:12.077440pt;}
._20{width:14.268480pt;}
._6{width:15.337280pt;}
._1a{width:16.233920pt;}
._19{width:17.154240pt;}
._1f{width:18.917760pt;}
._21{width:20.673707pt;}
._f{width:22.391360pt;}
._1e{width:24.154880pt;}
._14{width:25.277120pt;}
._15{width:26.292480pt;}
._16{width:27.402880pt;}
._d{width:28.643840pt;}
._1d{width:29.872960pt;}
._18{width:30.995200pt;}
._2a{width:31.903680pt;}
._24{width:32.888960pt;}
._25{width:34.208320pt;}
._2c{width:36.766720pt;}
._1b{width:38.625280pt;}
._17{width:39.652480pt;}
._29{width:40.797120pt;}
._2f{width:41.790080pt;}
._2d{width:43.713920pt;}
._22{width:44.675840pt;}
._23{width:45.637760pt;}
._30{width:52.317760pt;}
._2e{width:53.440000pt;}
._13{width:54.528000pt;}
._27{width:56.432640pt;}
._28{width:57.360000pt;}
._26{width:58.997760pt;}
._31{width:61.557760pt;}
._2b{width:90.992640pt;}
._4{width:175.760000pt;}
._5{width:178.746667pt;}
._3{width:960.073173pt;}
._1{width:1187.652373pt;}
.fs8{font-size:5.440000pt;}
.fsc{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsb{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.yc4{bottom:2.400000pt;}
.y43{bottom:2.560000pt;}
.y41{bottom:2.640000pt;}
.y21{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y22{bottom:4.080000pt;}
.y5{bottom:7.440000pt;}
.y6{bottom:14.640000pt;}
.y40{bottom:16.400000pt;}
.y38{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.yc3{bottom:26.880000pt;}
.ye{bottom:29.520000pt;}
.y3f{bottom:30.266667pt;}
.y8c{bottom:31.680000pt;}
.y37{bottom:33.520000pt;}
.yc2{bottom:39.200000pt;}
.y8{bottom:43.680000pt;}
.y3e{bottom:44.026667pt;}
.yd{bottom:45.946667pt;}
.y36{bottom:48.880000pt;}
.yc1{bottom:51.440000pt;}
.y8b{bottom:53.360000pt;}
.y3d{bottom:57.866667pt;}
.yc{bottom:58.506667pt;}
.yc0{bottom:63.680000pt;}
.y35{bottom:64.160000pt;}
.y4{bottom:65.360000pt;}
.y3c{bottom:71.626667pt;}
.y34{bottom:79.520000pt;}
.y3b{bottom:85.466667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y33{bottom:94.880000pt;}
.y3a{bottom:99.226667pt;}
.y32{bottom:110.160000pt;}
.ybd{bottom:110.240000pt;}
.y52{bottom:111.440000pt;}
.ya{bottom:121.066667pt;}
.y8a{bottom:121.120000pt;}
.y31{bottom:125.520000pt;}
.y51{bottom:126.800000pt;}
.y89{bottom:136.480000pt;}
.y30{bottom:140.880000pt;}
.ybc{bottom:140.906667pt;}
.y50{bottom:142.106667pt;}
.y48{bottom:145.360000pt;}
.y88{bottom:151.866667pt;}
.y2f{bottom:156.160000pt;}
.ybb{bottom:156.266667pt;}
.y4f{bottom:157.466667pt;}
.y47{bottom:159.200000pt;}
.y87{bottom:167.146667pt;}
.y2e{bottom:171.520000pt;}
.yba{bottom:171.546667pt;}
.y4e{bottom:172.826667pt;}
.y46{bottom:172.960000pt;}
.y86{bottom:182.506667pt;}
.y45{bottom:186.800000pt;}
.y2d{bottom:186.880000pt;}
.yb9{bottom:186.906667pt;}
.y4d{bottom:188.106667pt;}
.y85{bottom:197.866667pt;}
.y44{bottom:200.560000pt;}
.y2c{bottom:202.160000pt;}
.yb8{bottom:202.186667pt;}
.y4c{bottom:203.466667pt;}
.y84{bottom:213.146667pt;}
.y2b{bottom:217.520000pt;}
.yb7{bottom:217.546667pt;}
.y4b{bottom:218.826667pt;}
.y83{bottom:228.506667pt;}
.y2a{bottom:232.880000pt;}
.yb6{bottom:232.906667pt;}
.y4a{bottom:234.106667pt;}
.y82{bottom:243.786667pt;}
.y29{bottom:248.186667pt;}
.y49{bottom:249.466667pt;}
.y81{bottom:259.146667pt;}
.y23{bottom:262.586667pt;}
.y28{bottom:263.546667pt;}
.y80{bottom:274.506667pt;}
.y27{bottom:278.906667pt;}
.y7f{bottom:289.786667pt;}
.y26{bottom:294.186667pt;}
.y7e{bottom:305.146667pt;}
.y25{bottom:309.546667pt;}
.y7d{bottom:320.506667pt;}
.y24{bottom:324.906667pt;}
.y7c{bottom:335.786667pt;}
.yb5{bottom:340.186667pt;}
.y7b{bottom:351.146667pt;}
.yb4{bottom:355.546667pt;}
.y7a{bottom:366.506667pt;}
.yb3{bottom:370.906667pt;}
.y79{bottom:381.786667pt;}
.yb2{bottom:386.186667pt;}
.y78{bottom:397.146667pt;}
.yb1{bottom:401.546667pt;}
.y77{bottom:412.506667pt;}
.yb0{bottom:416.906667pt;}
.y76{bottom:427.786667pt;}
.yaf{bottom:432.186667pt;}
.y75{bottom:443.146667pt;}
.yae{bottom:447.546667pt;}
.y74{bottom:458.506667pt;}
.yad{bottom:462.906667pt;}
.y73{bottom:473.786667pt;}
.y42{bottom:475.066667pt;}
.yac{bottom:478.186667pt;}
.y72{bottom:489.146667pt;}
.y39{bottom:489.466667pt;}
.yab{bottom:493.546667pt;}
.y71{bottom:504.506667pt;}
.yaa{bottom:508.826667pt;}
.y70{bottom:519.813333pt;}
.ya9{bottom:524.213333pt;}
.y6f{bottom:535.173333pt;}
.ya8{bottom:539.573333pt;}
.y6e{bottom:550.533333pt;}
.ya7{bottom:554.853333pt;}
.ybf{bottom:562.853333pt;}
.y6d{bottom:565.813333pt;}
.ya6{bottom:570.213333pt;}
.y6c{bottom:581.173333pt;}
.ya5{bottom:585.573333pt;}
.y6b{bottom:596.453333pt;}
.y20{bottom:600.613333pt;}
.ya4{bottom:600.853333pt;}
.y6a{bottom:611.813333pt;}
.ya3{bottom:616.213333pt;}
.y69{bottom:627.173333pt;}
.y1f{bottom:627.973333pt;}
.y1d{bottom:630.533333pt;}
.ya2{bottom:631.573333pt;}
.y1c{bottom:635.653333pt;}
.ybe{bottom:637.173333pt;}
.y68{bottom:642.453333pt;}
.ya1{bottom:646.853333pt;}
.y1b{bottom:650.933333pt;}
.y67{bottom:657.813333pt;}
.ya0{bottom:662.213333pt;}
.y1a{bottom:668.613333pt;}
.y66{bottom:673.173333pt;}
.y9f{bottom:677.573333pt;}
.y65{bottom:688.453333pt;}
.y9e{bottom:692.853333pt;}
.y19{bottom:698.533333pt;}
.y64{bottom:703.813333pt;}
.y9d{bottom:708.213333pt;}
.y18{bottom:713.893333pt;}
.y63{bottom:719.173333pt;}
.y9c{bottom:723.573333pt;}
.y17{bottom:724.853333pt;}
.y62{bottom:734.453333pt;}
.y9b{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y61{bottom:749.813333pt;}
.y9a{bottom:754.213333pt;}
.y60{bottom:765.173333pt;}
.y99{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y5f{bottom:780.453333pt;}
.y98{bottom:784.853333pt;}
.y5e{bottom:795.813333pt;}
.y14{bottom:798.933333pt;}
.y97{bottom:800.213333pt;}
.y5d{bottom:811.173333pt;}
.y96{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y5c{bottom:826.453333pt;}
.y95{bottom:830.853333pt;}
.y5b{bottom:841.813333pt;}
.y94{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y5a{bottom:857.173333pt;}
.y93{bottom:861.493333pt;}
.y59{bottom:872.453333pt;}
.y92{bottom:876.853333pt;}
.y58{bottom:887.840000pt;}
.y91{bottom:892.240000pt;}
.y57{bottom:903.120000pt;}
.y90{bottom:907.520000pt;}
.y56{bottom:918.480000pt;}
.y8f{bottom:922.880000pt;}
.y55{bottom:933.840000pt;}
.y8e{bottom:938.240000pt;}
.y54{bottom:949.120000pt;}
.y8d{bottom:953.520000pt;}
.y53{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h14{height:1.520000pt;}
.h15{height:3.798437pt;}
.hf{height:3.838281pt;}
.h16{height:7.450781pt;}
.h21{height:12.240000pt;}
.h1c{height:13.760000pt;}
.h17{height:15.280000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h12{height:24.131250pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h22{height:30.028906pt;}
.h1e{height:33.515625pt;}
.h18{height:33.867188pt;}
.h7{height:34.739844pt;}
.h1b{height:36.750000pt;}
.h1f{height:37.105312pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h20{height:38.905781pt;}
.h2{height:40.262656pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h13{height:67.031250pt;}
.h10{height:67.734375pt;}
.h23{height:73.600000pt;}
.hb{height:82.861719pt;}
.he{height:105.439844pt;}
.h1a{height:110.426667pt;}
.h9{height:127.306667pt;}
.h1d{height:211.760000pt;}
.h19{height:337.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:31.360000pt;}
.w5{width:147.466667pt;}
.w8{width:182.186667pt;}
.wa{width:280.586667pt;}
.w7{width:547.573333pt;}
.w4{width:576.053333pt;}
.w9{width:631.253333pt;}
.w3{width:631.280000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.800000pt;}
.x1b{left:5.999988pt;}
.x5{left:7.200000pt;}
.x6{left:40.480000pt;}
.x14{left:41.520000pt;}
.x1c{left:46.320000pt;}
.x1{left:47.999988pt;}
.x17{left:53.039988pt;}
.x18{left:53.999988pt;}
.x16{left:58.400000pt;}
.xa{left:62.640000pt;}
.x1d{left:78.640000pt;}
.xe{left:82.879988pt;}
.x3{left:88.320000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x4{left:120.640000pt;}
.x11{left:163.626655pt;}
.x8{left:177.946667pt;}
.x12{left:193.306655pt;}
.xb{left:206.026667pt;}
.x19{left:246.026655pt;}
.x10{left:285.866655pt;}
.x7{left:288.026667pt;}
.xf{left:412.586655pt;}
.x1a{left:432.053321pt;}
.x20{left:443.013333pt;}
.x1e{left:456.053321pt;}
.x15{left:589.733333pt;}
.xc{left:616.533333pt;}
.x1f{left:736.319988pt;}
}




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