
    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_256237f180c47eeb751daf17.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5335bbc1fe65c1090fe52bf3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_04d2591ed475a0e78675e522.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f5b8ee6bd8a20a78f27f18e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b7e72e8c17b1ee620e03003.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:193.985280px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-1.296000px;}
._5{width:1.704000px;}
._16{width:3.480000px;}
._3{width:4.536000px;}
._0{width:5.616000px;}
._1{width:7.128000px;}
._2{width:8.508000px;}
._22{width:9.576000px;}
._20{width:10.632000px;}
._9{width:11.880000px;}
._a{width:13.176000px;}
._b{width:14.496000px;}
._8{width:15.984000px;}
._1b{width:19.656000px;}
._1c{width:22.140000px;}
._c{width:23.256000px;}
._d{width:24.480000px;}
._12{width:28.152000px;}
._13{width:29.952000px;}
._21{width:31.116000px;}
._15{width:32.148000px;}
._14{width:33.264000px;}
._18{width:35.712000px;}
._17{width:37.080000px;}
._1f{width:38.400000px;}
._25{width:40.116000px;}
._1d{width:41.832000px;}
._1e{width:43.212000px;}
._23{width:46.080000px;}
._24{width:47.232000px;}
._e{width:50.328000px;}
._f{width:51.696000px;}
._19{width:53.304000px;}
._1a{width:55.224000px;}
._10{width:74.808000px;}
._11{width:76.608000px;}
._7{width:175.822560px;}
._6{width:193.961280px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:29.700000px;}
.y4f{bottom:75.810000px;}
.y4e{bottom:106.770000px;}
.y3f{bottom:109.440000px;}
.y63{bottom:110.880000px;}
.y1d{bottom:116.460000px;}
.y9a{bottom:123.480000px;}
.y4d{bottom:137.910000px;}
.y62{bottom:142.020000px;}
.y82{bottom:147.600000px;}
.y1c{bottom:149.220000px;}
.y39{bottom:154.080000px;}
.yad{bottom:156.600000px;}
.yc6{bottom:162.360000px;}
.y1b{bottom:168.480000px;}
.y4c{bottom:168.870000px;}
.y99{bottom:169.560000px;}
.y61{bottom:172.980000px;}
.y81{bottom:178.590000px;}
.y38{bottom:200.550000px;}
.yc5{bottom:201.270000px;}
.yac{bottom:203.070000px;}
.y1a{bottom:205.230000px;}
.y80{bottom:209.730000px;}
.y4b{bottom:214.950000px;}
.y98{bottom:215.670000px;}
.yda{bottom:216.570000px;}
.y60{bottom:218.730000px;}
.yab{bottom:234.030000px;}
.yc4{bottom:239.970000px;}
.y7f{bottom:240.690000px;}
.y19{bottom:242.130000px;}
.y4a{bottom:246.090000px;}
.y37{bottom:246.450000px;}
.y97{bottom:261.750000px;}
.yd9{bottom:262.290000px;}
.y5f{bottom:264.810000px;}
.yaa{bottom:265.170000px;}
.y7e{bottom:271.830000px;}
.yc3{bottom:278.850000px;}
.y18{bottom:279.390000px;}
.y36{bottom:285.330000px;}
.y49{bottom:291.990000px;}
.ya9{bottom:296.130000px;}
.y7d{bottom:302.790000px;}
.y96{bottom:307.650000px;}
.yd8{bottom:308.190000px;}
.y5e{bottom:310.890000px;}
.yc2{bottom:317.550000px;}
.y17{bottom:317.730000px;}
.y35{bottom:324.210000px;}
.ya8{bottom:327.270000px;}
.y7c{bottom:333.930000px;}
.y48{bottom:338.115000px;}
.y34{bottom:347.970000px;}
.y95{bottom:353.730000px;}
.yd7{bottom:354.270000px;}
.yc1{bottom:356.430000px;}
.y5d{bottom:356.970000px;}
.ya7{bottom:358.230000px;}
.y16{bottom:362.370000px;}
.y7b{bottom:364.890000px;}
.y47{bottom:369.255000px;}
.y33{bottom:371.730000px;}
.ya6{bottom:389.190000px;}
.yc0{bottom:395.130000px;}
.y32{bottom:395.490000px;}
.y7a{bottom:396.030000px;}
.y94{bottom:399.810000px;}
.yd6{bottom:400.350000px;}
.y15{bottom:400.530000px;}
.y5c{bottom:402.870000px;}
.y46{bottom:415.335000px;}
.y31{bottom:419.475000px;}
.ya5{bottom:420.375000px;}
.y79{bottom:427.035000px;}
.ybf{bottom:434.415000px;}
.y14{bottom:437.475000px;}
.y30{bottom:443.235000px;}
.y93{bottom:445.935000px;}
.yd5{bottom:446.475000px;}
.y5b{bottom:448.995000px;}
.ya4{bottom:451.335000px;}
.y78{bottom:458.175000px;}
.y45{bottom:461.235000px;}
.ybe{bottom:473.295000px;}
.y13{bottom:474.735000px;}
.y2f{bottom:481.575000px;}
.ya3{bottom:482.475000px;}
.y77{bottom:489.135000px;}
.y92{bottom:492.015000px;}
.y44{bottom:492.375000px;}
.yd4{bottom:492.915000px;}
.y5a{bottom:495.075000px;}
.ybd{bottom:511.995000px;}
.ya2{bottom:513.075000px;}
.y12{bottom:513.975000px;}
.y76{bottom:520.275000px;}
.y2e{bottom:520.455000px;}
.y43{bottom:523.335000px;}
.y91{bottom:537.915000px;}
.yd3{bottom:538.815000px;}
.y59{bottom:541.155000px;}
.ya1{bottom:544.215000px;}
.y11{bottom:544.575000px;}
.ybc{bottom:550.875000px;}
.y75{bottom:551.235000px;}
.y2d{bottom:559.335000px;}
.y42{bottom:569.445000px;}
.y10{bottom:575.715000px;}
.y74{bottom:582.375000px;}
.ya0{bottom:582.915000px;}
.y90{bottom:583.995000px;}
.yd2{bottom:584.895000px;}
.y58{bottom:587.235000px;}
.ybb{bottom:589.575000px;}
.y2c{bottom:598.035000px;}
.yf{bottom:606.675000px;}
.y73{bottom:613.335000px;}
.y41{bottom:615.525000px;}
.yba{bottom:628.455000px;}
.y9f{bottom:628.995000px;}
.y8f{bottom:630.075000px;}
.ye{bottom:630.975000px;}
.y57{bottom:633.315000px;}
.y2b{bottom:636.915000px;}
.y72{bottom:644.475000px;}
.y9e{bottom:660.165000px;}
.y40{bottom:661.605000px;}
.yb9{bottom:667.185000px;}
.yd{bottom:669.705000px;}
.y71{bottom:675.465000px;}
.y2a{bottom:675.645000px;}
.y8e{bottom:676.185000px;}
.yd1{bottom:677.085000px;}
.y56{bottom:679.245000px;}
.yb8{bottom:706.065000px;}
.y70{bottom:706.605000px;}
.yc{bottom:708.585000px;}
.y29{bottom:714.525000px;}
.y8d{bottom:722.265000px;}
.yd0{bottom:723.165000px;}
.y55{bottom:725.325000px;}
.y6f{bottom:737.565000px;}
.yb7{bottom:744.945000px;}
.yb{bottom:746.925000px;}
.y28{bottom:753.225000px;}
.y8c{bottom:768.345000px;}
.y6e{bottom:768.705000px;}
.ycf{bottom:769.245000px;}
.y54{bottom:771.405000px;}
.yb6{bottom:783.645000px;}
.y27{bottom:792.105000px;}
.ya{bottom:793.005000px;}
.y6d{bottom:799.665000px;}
.y8b{bottom:814.245000px;}
.yce{bottom:815.145000px;}
.y53{bottom:817.485000px;}
.y3e{bottom:817.845000px;}
.yb5{bottom:822.525000px;}
.y6c{bottom:830.805000px;}
.y26{bottom:830.985000px;}
.y9{bottom:839.085000px;}
.y8a{bottom:860.685000px;}
.yb4{bottom:861.225000px;}
.y6b{bottom:861.765000px;}
.y52{bottom:863.565000px;}
.y3d{bottom:863.925000px;}
.y25{bottom:869.685000px;}
.y8{bottom:877.785000px;}
.y89{bottom:891.825000px;}
.y6a{bottom:892.905000px;}
.yb3{bottom:900.105000px;}
.ycd{bottom:907.350000px;}
.y24{bottom:908.610000px;}
.y51{bottom:909.510000px;}
.y3c{bottom:909.870000px;}
.y7{bottom:916.170000px;}
.y88{bottom:922.830000px;}
.y69{bottom:923.910000px;}
.yb2{bottom:938.850000px;}
.y23{bottom:939.570000px;}
.ycc{bottom:946.230000px;}
.y6{bottom:953.070000px;}
.y87{bottom:953.970000px;}
.y68{bottom:954.510000px;}
.y9d{bottom:954.870000px;}
.y3b{bottom:955.950000px;}
.y22{bottom:970.710000px;}
.yb1{bottom:977.370000px;}
.ycb{bottom:984.570000px;}
.y86{bottom:984.930000px;}
.y67{bottom:985.650000px;}
.y9c{bottom:986.010000px;}
.y5{bottom:990.690000px;}
.y21{bottom:1001.670000px;}
.y3a{bottom:1002.030000px;}
.yca{bottom:1015.710000px;}
.y4{bottom:1016.070000px;}
.y66{bottom:1016.610000px;}
.yb0{bottom:1023.810000px;}
.yc9{bottom:1046.670000px;}
.y85{bottom:1047.030000px;}
.y65{bottom:1047.750000px;}
.y20{bottom:1048.110000px;}
.y3{bottom:1054.410000px;}
.yaf{bottom:1062.510000px;}
.yc8{bottom:1077.810000px;}
.y84{bottom:1078.170000px;}
.y2{bottom:1093.470000px;}
.y64{bottom:1093.830000px;}
.y1f{bottom:1094.190000px;}
.yae{bottom:1101.390000px;}
.yc7{bottom:1108.770000px;}
.y83{bottom:1109.130000px;}
.y1{bottom:1109.850000px;}
.y9b{bottom:1139.910000px;}
.y1e{bottom:1140.270000px;}
.h6{height:56.320312px;}
.h4{height:69.086250px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h5{height:75.093750px;}
.h7{height:677.985000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:653.310000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.729500px;}
.x11{left:60.823500px;}
.x12{left:82.243500px;}
.xf{left:119.926500px;}
.x2{left:127.656000px;}
.x14{left:180.750000px;}
.x6{left:193.890000px;}
.x5{left:196.950000px;}
.xa{left:242.490000px;}
.x7{left:255.990000px;}
.x8{left:272.190000px;}
.xc{left:310.215000px;}
.x1{left:340.815000px;}
.xb{left:346.935000px;}
.x4{left:349.275000px;}
.xd{left:393.555000px;}
.xe{left:400.215000px;}
.x9{left:428.475000px;}
.x3{left:446.475000px;}
.x13{left:467.895000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:172.431360pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-1.152000pt;}
._5{width:1.514667pt;}
._16{width:3.093333pt;}
._3{width:4.032000pt;}
._0{width:4.992000pt;}
._1{width:6.336000pt;}
._2{width:7.562667pt;}
._22{width:8.512000pt;}
._20{width:9.450667pt;}
._9{width:10.560000pt;}
._a{width:11.712000pt;}
._b{width:12.885333pt;}
._8{width:14.208000pt;}
._1b{width:17.472000pt;}
._1c{width:19.680000pt;}
._c{width:20.672000pt;}
._d{width:21.760000pt;}
._12{width:25.024000pt;}
._13{width:26.624000pt;}
._21{width:27.658667pt;}
._15{width:28.576000pt;}
._14{width:29.568000pt;}
._18{width:31.744000pt;}
._17{width:32.960000pt;}
._1f{width:34.133333pt;}
._25{width:35.658667pt;}
._1d{width:37.184000pt;}
._1e{width:38.410667pt;}
._23{width:40.960000pt;}
._24{width:41.984000pt;}
._e{width:44.736000pt;}
._f{width:45.952000pt;}
._19{width:47.381333pt;}
._1a{width:49.088000pt;}
._10{width:66.496000pt;}
._11{width:68.096000pt;}
._7{width:156.286720pt;}
._6{width:172.410027pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:26.400000pt;}
.y4f{bottom:67.386667pt;}
.y4e{bottom:94.906667pt;}
.y3f{bottom:97.280000pt;}
.y63{bottom:98.560000pt;}
.y1d{bottom:103.520000pt;}
.y9a{bottom:109.760000pt;}
.y4d{bottom:122.586667pt;}
.y62{bottom:126.240000pt;}
.y82{bottom:131.200000pt;}
.y1c{bottom:132.640000pt;}
.y39{bottom:136.960000pt;}
.yad{bottom:139.200000pt;}
.yc6{bottom:144.320000pt;}
.y1b{bottom:149.760000pt;}
.y4c{bottom:150.106667pt;}
.y99{bottom:150.720000pt;}
.y61{bottom:153.760000pt;}
.y81{bottom:158.746667pt;}
.y38{bottom:178.266667pt;}
.yc5{bottom:178.906667pt;}
.yac{bottom:180.506667pt;}
.y1a{bottom:182.426667pt;}
.y80{bottom:186.426667pt;}
.y4b{bottom:191.066667pt;}
.y98{bottom:191.706667pt;}
.yda{bottom:192.506667pt;}
.y60{bottom:194.426667pt;}
.yab{bottom:208.026667pt;}
.yc4{bottom:213.306667pt;}
.y7f{bottom:213.946667pt;}
.y19{bottom:215.226667pt;}
.y4a{bottom:218.746667pt;}
.y37{bottom:219.066667pt;}
.y97{bottom:232.666667pt;}
.yd9{bottom:233.146667pt;}
.y5f{bottom:235.386667pt;}
.yaa{bottom:235.706667pt;}
.y7e{bottom:241.626667pt;}
.yc3{bottom:247.866667pt;}
.y18{bottom:248.346667pt;}
.y36{bottom:253.626667pt;}
.y49{bottom:259.546667pt;}
.ya9{bottom:263.226667pt;}
.y7d{bottom:269.146667pt;}
.y96{bottom:273.466667pt;}
.yd8{bottom:273.946667pt;}
.y5e{bottom:276.346667pt;}
.yc2{bottom:282.266667pt;}
.y17{bottom:282.426667pt;}
.y35{bottom:288.186667pt;}
.ya8{bottom:290.906667pt;}
.y7c{bottom:296.826667pt;}
.y48{bottom:300.546667pt;}
.y34{bottom:309.306667pt;}
.y95{bottom:314.426667pt;}
.yd7{bottom:314.906667pt;}
.yc1{bottom:316.826667pt;}
.y5d{bottom:317.306667pt;}
.ya7{bottom:318.426667pt;}
.y16{bottom:322.106667pt;}
.y7b{bottom:324.346667pt;}
.y47{bottom:328.226667pt;}
.y33{bottom:330.426667pt;}
.ya6{bottom:345.946667pt;}
.yc0{bottom:351.226667pt;}
.y32{bottom:351.546667pt;}
.y7a{bottom:352.026667pt;}
.y94{bottom:355.386667pt;}
.yd6{bottom:355.866667pt;}
.y15{bottom:356.026667pt;}
.y5c{bottom:358.106667pt;}
.y46{bottom:369.186667pt;}
.y31{bottom:372.866667pt;}
.ya5{bottom:373.666667pt;}
.y79{bottom:379.586667pt;}
.ybf{bottom:386.146667pt;}
.y14{bottom:388.866667pt;}
.y30{bottom:393.986667pt;}
.y93{bottom:396.386667pt;}
.yd5{bottom:396.866667pt;}
.y5b{bottom:399.106667pt;}
.ya4{bottom:401.186667pt;}
.y78{bottom:407.266667pt;}
.y45{bottom:409.986667pt;}
.ybe{bottom:420.706667pt;}
.y13{bottom:421.986667pt;}
.y2f{bottom:428.066667pt;}
.ya3{bottom:428.866667pt;}
.y77{bottom:434.786667pt;}
.y92{bottom:437.346667pt;}
.y44{bottom:437.666667pt;}
.yd4{bottom:438.146667pt;}
.y5a{bottom:440.066667pt;}
.ybd{bottom:455.106667pt;}
.ya2{bottom:456.066667pt;}
.y12{bottom:456.866667pt;}
.y76{bottom:462.466667pt;}
.y2e{bottom:462.626667pt;}
.y43{bottom:465.186667pt;}
.y91{bottom:478.146667pt;}
.yd3{bottom:478.946667pt;}
.y59{bottom:481.026667pt;}
.ya1{bottom:483.746667pt;}
.y11{bottom:484.066667pt;}
.ybc{bottom:489.666667pt;}
.y75{bottom:489.986667pt;}
.y2d{bottom:497.186667pt;}
.y42{bottom:506.173333pt;}
.y10{bottom:511.746667pt;}
.y74{bottom:517.666667pt;}
.ya0{bottom:518.146667pt;}
.y90{bottom:519.106667pt;}
.yd2{bottom:519.906667pt;}
.y58{bottom:521.986667pt;}
.ybb{bottom:524.066667pt;}
.y2c{bottom:531.586667pt;}
.yf{bottom:539.266667pt;}
.y73{bottom:545.186667pt;}
.y41{bottom:547.133333pt;}
.yba{bottom:558.626667pt;}
.y9f{bottom:559.106667pt;}
.y8f{bottom:560.066667pt;}
.ye{bottom:560.866667pt;}
.y57{bottom:562.946667pt;}
.y2b{bottom:566.146667pt;}
.y72{bottom:572.866667pt;}
.y9e{bottom:586.813333pt;}
.y40{bottom:588.093333pt;}
.yb9{bottom:593.053333pt;}
.yd{bottom:595.293333pt;}
.y71{bottom:600.413333pt;}
.y2a{bottom:600.573333pt;}
.y8e{bottom:601.053333pt;}
.yd1{bottom:601.853333pt;}
.y56{bottom:603.773333pt;}
.yb8{bottom:627.613333pt;}
.y70{bottom:628.093333pt;}
.yc{bottom:629.853333pt;}
.y29{bottom:635.133333pt;}
.y8d{bottom:642.013333pt;}
.yd0{bottom:642.813333pt;}
.y55{bottom:644.733333pt;}
.y6f{bottom:655.613333pt;}
.yb7{bottom:662.173333pt;}
.yb{bottom:663.933333pt;}
.y28{bottom:669.533333pt;}
.y8c{bottom:682.973333pt;}
.y6e{bottom:683.293333pt;}
.ycf{bottom:683.773333pt;}
.y54{bottom:685.693333pt;}
.yb6{bottom:696.573333pt;}
.y27{bottom:704.093333pt;}
.ya{bottom:704.893333pt;}
.y6d{bottom:710.813333pt;}
.y8b{bottom:723.773333pt;}
.yce{bottom:724.573333pt;}
.y53{bottom:726.653333pt;}
.y3e{bottom:726.973333pt;}
.yb5{bottom:731.133333pt;}
.y6c{bottom:738.493333pt;}
.y26{bottom:738.653333pt;}
.y9{bottom:745.853333pt;}
.y8a{bottom:765.053333pt;}
.yb4{bottom:765.533333pt;}
.y6b{bottom:766.013333pt;}
.y52{bottom:767.613333pt;}
.y3d{bottom:767.933333pt;}
.y25{bottom:773.053333pt;}
.y8{bottom:780.253333pt;}
.y89{bottom:792.733333pt;}
.y6a{bottom:793.693333pt;}
.yb3{bottom:800.093333pt;}
.ycd{bottom:806.533333pt;}
.y24{bottom:807.653333pt;}
.y51{bottom:808.453333pt;}
.y3c{bottom:808.773333pt;}
.y7{bottom:814.373333pt;}
.y88{bottom:820.293333pt;}
.y69{bottom:821.253333pt;}
.yb2{bottom:834.533333pt;}
.y23{bottom:835.173333pt;}
.ycc{bottom:841.093333pt;}
.y6{bottom:847.173333pt;}
.y87{bottom:847.973333pt;}
.y68{bottom:848.453333pt;}
.y9d{bottom:848.773333pt;}
.y3b{bottom:849.733333pt;}
.y22{bottom:862.853333pt;}
.yb1{bottom:868.773333pt;}
.ycb{bottom:875.173333pt;}
.y86{bottom:875.493333pt;}
.y67{bottom:876.133333pt;}
.y9c{bottom:876.453333pt;}
.y5{bottom:880.613333pt;}
.y21{bottom:890.373333pt;}
.y3a{bottom:890.693333pt;}
.yca{bottom:902.853333pt;}
.y4{bottom:903.173333pt;}
.y66{bottom:903.653333pt;}
.yb0{bottom:910.053333pt;}
.yc9{bottom:930.373333pt;}
.y85{bottom:930.693333pt;}
.y65{bottom:931.333333pt;}
.y20{bottom:931.653333pt;}
.y3{bottom:937.253333pt;}
.yaf{bottom:944.453333pt;}
.yc8{bottom:958.053333pt;}
.y84{bottom:958.373333pt;}
.y2{bottom:971.973333pt;}
.y64{bottom:972.293333pt;}
.y1f{bottom:972.613333pt;}
.yae{bottom:979.013333pt;}
.yc7{bottom:985.573333pt;}
.y83{bottom:985.893333pt;}
.y1{bottom:986.533333pt;}
.y9b{bottom:1013.253333pt;}
.y1e{bottom:1013.573333pt;}
.h6{height:50.062500pt;}
.h4{height:61.410000pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h5{height:66.750000pt;}
.h7{height:602.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:580.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.870667pt;}
.x11{left:54.065333pt;}
.x12{left:73.105333pt;}
.xf{left:106.601333pt;}
.x2{left:113.472000pt;}
.x14{left:160.666667pt;}
.x6{left:172.346667pt;}
.x5{left:175.066667pt;}
.xa{left:215.546667pt;}
.x7{left:227.546667pt;}
.x8{left:241.946667pt;}
.xc{left:275.746667pt;}
.x1{left:302.946667pt;}
.xb{left:308.386667pt;}
.x4{left:310.466667pt;}
.xd{left:349.826667pt;}
.xe{left:355.746667pt;}
.x9{left:380.866667pt;}
.x3{left:396.866667pt;}
.x13{left:415.906667pt;}
}




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