
    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_5ae0eeff1615b1eb1ce3a95e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c88af65f3771c67ff962c8ef.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d7d7d9e423da0f1014dee10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700684;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_e14766ca825289ff36d1c262.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_fb21c76827c5a9347b43e308.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_eb9dfb33adfcda17acd3bae5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-67.680000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.460200px;}
.lsd{letter-spacing:0.466800px;}
.ls10{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsb{word-spacing:-15.406800px;}
.wsa{word-spacing:-15.400200px;}
.wsc{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.ws6{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._2{margin-left:-1.296000px;}
._0{width:1.195200px;}
._1{width:2.904000px;}
._5{width:4.123440px;}
._8{width:5.994720px;}
._7{width:7.391520px;}
._9{width:8.904240px;}
._4{width:10.277280px;}
._3{width:11.473920px;}
._e{width:13.121520px;}
._f{width:18.346320px;}
._10{width:19.362240px;}
._11{width:21.307920px;}
._c{width:27.540000px;}
._13{width:39.060000px;}
._b{width:70.020000px;}
._a{width:141.550560px;}
._12{width:147.204000px;}
._d{width:158.724000px;}
._6{width:201.204000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.240000px;}
.y39{bottom:3.420000px;}
.y59{bottom:3.600000px;}
.y3d{bottom:3.780000px;}
.y40{bottom:3.810000px;}
.y43{bottom:4.140000px;}
.y5{bottom:4.500000px;}
.y37{bottom:12.060000px;}
.y57{bottom:12.240000px;}
.y3b{bottom:12.780000px;}
.y38{bottom:20.520000px;}
.y42{bottom:21.420000px;}
.y5b{bottom:21.600000px;}
.y80{bottom:22.290000px;}
.y4{bottom:24.120000px;}
.y77{bottom:44.460000px;}
.y91{bottom:69.810000px;}
.y8d{bottom:69.870000px;}
.y8f{bottom:69.945000px;}
.y4a{bottom:74.520000px;}
.y75{bottom:80.460000px;}
.y78{bottom:86.760000px;}
.y49{bottom:91.620000px;}
.y74{bottom:97.740000px;}
.y48{bottom:108.900000px;}
.y73{bottom:115.020000px;}
.y47{bottom:126.180000px;}
.y79{bottom:129.060000px;}
.y72{bottom:132.300000px;}
.y46{bottom:143.460000px;}
.y71{bottom:149.400000px;}
.y45{bottom:160.740000px;}
.y70{bottom:166.680000px;}
.y7a{bottom:171.360000px;}
.y41{bottom:174.960000px;}
.y6f{bottom:183.960000px;}
.y44{bottom:192.960000px;}
.y81{bottom:197.100000px;}
.y6e{bottom:201.240000px;}
.y8b{bottom:201.270000px;}
.y86{bottom:201.315000px;}
.y83{bottom:201.390000px;}
.y3e{bottom:210.960000px;}
.y7b{bottom:213.660000px;}
.y6d{bottom:218.520000px;}
.y3f{bottom:228.960000px;}
.y6c{bottom:235.650000px;}
.y3a{bottom:246.990000px;}
.y6b{bottom:252.570000px;}
.y7c{bottom:255.960000px;}
.y3c{bottom:264.990000px;}
.y6a{bottom:270.210000px;}
.y36{bottom:282.990000px;}
.y69{bottom:287.490000px;}
.y7d{bottom:298.260000px;}
.y68{bottom:305.850000px;}
.y67{bottom:324.210000px;}
.y35{bottom:338.790000px;}
.y7e{bottom:340.560000px;}
.y66{bottom:342.390000px;}
.y34{bottom:356.430000px;}
.y65{bottom:359.310000px;}
.y64{bottom:373.350000px;}
.y33{bottom:373.710000px;}
.y76{bottom:376.740000px;}
.y82{bottom:378.360000px;}
.y7f{bottom:382.860000px;}
.y32{bottom:390.990000px;}
.y84{bottom:397.980000px;}
.y8a{bottom:405.540000px;}
.y88{bottom:406.440000px;}
.y31{bottom:408.270000px;}
.y30{bottom:425.370000px;}
.y2f{bottom:442.650000px;}
.y2e{bottom:459.975000px;}
.y85{bottom:468.540000px;}
.y89{bottom:468.900000px;}
.y2d{bottom:477.255000px;}
.y90{bottom:493.020000px;}
.y2c{bottom:494.175000px;}
.y2b{bottom:511.635000px;}
.y8e{bottom:520.920000px;}
.y2a{bottom:528.915000px;}
.y29{bottom:546.195000px;}
.y8c{bottom:549.000000px;}
.y87{bottom:553.140000px;}
.y28{bottom:563.475000px;}
.y27{bottom:580.755000px;}
.y26{bottom:598.035000px;}
.y25{bottom:615.135000px;}
.y24{bottom:632.415000px;}
.y23{bottom:649.695000px;}
.y22{bottom:666.615000px;}
.y21{bottom:684.255000px;}
.y20{bottom:701.565000px;}
.y1f{bottom:718.665000px;}
.y1e{bottom:735.945000px;}
.y1d{bottom:753.225000px;}
.y1c{bottom:770.505000px;}
.y1b{bottom:787.785000px;}
.y1a{bottom:805.065000px;}
.y63{bottom:815.865000px;}
.y19{bottom:822.165000px;}
.y62{bottom:832.965000px;}
.y18{bottom:839.445000px;}
.y61{bottom:850.245000px;}
.y17{bottom:856.365000px;}
.y60{bottom:867.525000px;}
.y16{bottom:874.365000px;}
.y5f{bottom:884.805000px;}
.y15{bottom:892.005000px;}
.y5e{bottom:902.085000px;}
.y14{bottom:909.285000px;}
.y5d{bottom:919.230000px;}
.y13{bottom:926.430000px;}
.y5a{bottom:933.630000px;}
.y12{bottom:943.710000px;}
.y5c{bottom:951.630000px;}
.y11{bottom:960.990000px;}
.y58{bottom:969.630000px;}
.y10{bottom:978.270000px;}
.y56{bottom:987.630000px;}
.yf{bottom:996.270000px;}
.y54{bottom:1005.630000px;}
.ye{bottom:1013.550000px;}
.y53{bottom:1027.230000px;}
.yd{bottom:1030.830000px;}
.y52{bottom:1044.510000px;}
.yc{bottom:1047.930000px;}
.y51{bottom:1061.790000px;}
.yb{bottom:1065.210000px;}
.y50{bottom:1079.070000px;}
.ya{bottom:1082.490000px;}
.y4f{bottom:1096.350000px;}
.y9{bottom:1100.130000px;}
.y4e{bottom:1113.630000px;}
.y8{bottom:1120.830000px;}
.y4d{bottom:1130.730000px;}
.y7{bottom:1141.530000px;}
.y4c{bottom:1148.040000px;}
.y6{bottom:1162.260000px;}
.y4b{bottom:1165.320000px;}
.y3{bottom:1182.240000px;}
.y2{bottom:1199.520000px;}
.y1{bottom:1216.620000px;}
.hd{height:17.100000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.h8{height:34.380000px;}
.he{height:35.100000px;}
.h9{height:35.280000px;}
.hb{height:35.316000px;}
.h12{height:36.540000px;}
.h5{height:48.796875px;}
.hf{height:53.100000px;}
.h2{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h10{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h16{height:84.060000px;}
.h13{height:213.480000px;}
.h15{height:217.620000px;}
.h14{height:217.800000px;}
.h11{height:435.420000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:37.980000px;}
.w1a{width:43.560000px;}
.w19{width:50.940000px;}
.w1b{width:51.120000px;}
.wd{width:58.716000px;}
.w5{width:59.076000px;}
.w8{width:63.180000px;}
.w7{width:80.496000px;}
.we{width:81.396000px;}
.wa{width:81.756000px;}
.w9{width:84.240000px;}
.w1c{width:84.420000px;}
.w16{width:87.120000px;}
.wb{width:89.676000px;}
.w3{width:90.036000px;}
.w1e{width:93.060000px;}
.w6{width:93.240000px;}
.w1d{width:93.420000px;}
.w14{width:93.996000px;}
.w17{width:98.100000px;}
.wc{width:101.340000px;}
.w4{width:101.700000px;}
.w12{width:111.420000px;}
.w2{width:118.296000px;}
.w11{width:148.536000px;}
.w13{width:150.870000px;}
.w10{width:169.770000px;}
.wf{width:357.915000px;}
.w15{width:768.420000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1e{left:-2.880000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x29{left:8.745000px;}
.x21{left:18.180000px;}
.x25{left:24.876000px;}
.x1a{left:32.760000px;}
.xf{left:54.000000px;}
.x11{left:59.040000px;}
.xd{left:60.840000px;}
.x24{left:81.000000px;}
.x5{left:85.896000px;}
.x10{left:108.036000px;}
.x22{left:119.016000px;}
.x1b{left:121.536000px;}
.x2a{left:149.400000px;}
.x26{left:161.280000px;}
.x13{left:177.870000px;}
.x2d{left:189.720000px;}
.x6{left:209.730000px;}
.x1f{left:219.990000px;}
.xa{left:229.170000px;}
.x7{left:238.350000px;}
.x3{left:254.730000px;}
.x14{left:268.275000px;}
.x1{left:292.035000px;}
.x9{left:294.195000px;}
.xe{left:298.875000px;}
.x2{left:300.855000px;}
.x2b{left:334.440000px;}
.x27{left:337.140000px;}
.x8{left:369.975000px;}
.x20{left:371.775000px;}
.xc{left:398.775000px;}
.x2f{left:411.300000px;}
.xb{left:417.315000px;}
.x15{left:429.765000px;}
.x1c{left:466.485000px;}
.x2c{left:512.100000px;}
.x16{left:523.365000px;}
.x28{left:548.640000px;}
.x2e{left:552.420000px;}
.x30{left:592.740000px;}
.x17{left:604.230000px;}
.x1d{left:636.990000px;}
.x18{left:667.770000px;}
.x31{left:725.580000px;}
.x19{left:752.370000px;}
.x4{left:813.960000px;}
.x23{left:834.840000px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.409067pt;}
.lsd{letter-spacing:0.414933pt;}
.ls10{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ws1{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsb{word-spacing:-13.694933pt;}
.wsa{word-spacing:-13.689067pt;}
.wsc{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.ws6{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.062400pt;}
._1{width:2.581333pt;}
._5{width:3.665280pt;}
._8{width:5.328640pt;}
._7{width:6.570240pt;}
._9{width:7.914880pt;}
._4{width:9.135360pt;}
._3{width:10.199040pt;}
._e{width:11.663573pt;}
._f{width:16.307840pt;}
._10{width:17.210880pt;}
._11{width:18.940373pt;}
._c{width:24.480000pt;}
._13{width:34.720000pt;}
._b{width:62.240000pt;}
._a{width:125.822720pt;}
._12{width:130.848000pt;}
._d{width:141.088000pt;}
._6{width:178.848000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.880000pt;}
.y39{bottom:3.040000pt;}
.y59{bottom:3.200000pt;}
.y3d{bottom:3.360000pt;}
.y40{bottom:3.386667pt;}
.y43{bottom:3.680000pt;}
.y5{bottom:4.000000pt;}
.y37{bottom:10.720000pt;}
.y57{bottom:10.880000pt;}
.y3b{bottom:11.360000pt;}
.y38{bottom:18.240000pt;}
.y42{bottom:19.040000pt;}
.y5b{bottom:19.200000pt;}
.y80{bottom:19.813333pt;}
.y4{bottom:21.440000pt;}
.y77{bottom:39.520000pt;}
.y91{bottom:62.053333pt;}
.y8d{bottom:62.106667pt;}
.y8f{bottom:62.173333pt;}
.y4a{bottom:66.240000pt;}
.y75{bottom:71.520000pt;}
.y78{bottom:77.120000pt;}
.y49{bottom:81.440000pt;}
.y74{bottom:86.880000pt;}
.y48{bottom:96.800000pt;}
.y73{bottom:102.240000pt;}
.y47{bottom:112.160000pt;}
.y79{bottom:114.720000pt;}
.y72{bottom:117.600000pt;}
.y46{bottom:127.520000pt;}
.y71{bottom:132.800000pt;}
.y45{bottom:142.880000pt;}
.y70{bottom:148.160000pt;}
.y7a{bottom:152.320000pt;}
.y41{bottom:155.520000pt;}
.y6f{bottom:163.520000pt;}
.y44{bottom:171.520000pt;}
.y81{bottom:175.200000pt;}
.y6e{bottom:178.880000pt;}
.y8b{bottom:178.906667pt;}
.y86{bottom:178.946667pt;}
.y83{bottom:179.013333pt;}
.y3e{bottom:187.520000pt;}
.y7b{bottom:189.920000pt;}
.y6d{bottom:194.240000pt;}
.y3f{bottom:203.520000pt;}
.y6c{bottom:209.466667pt;}
.y3a{bottom:219.546667pt;}
.y6b{bottom:224.506667pt;}
.y7c{bottom:227.520000pt;}
.y3c{bottom:235.546667pt;}
.y6a{bottom:240.186667pt;}
.y36{bottom:251.546667pt;}
.y69{bottom:255.546667pt;}
.y7d{bottom:265.120000pt;}
.y68{bottom:271.866667pt;}
.y67{bottom:288.186667pt;}
.y35{bottom:301.146667pt;}
.y7e{bottom:302.720000pt;}
.y66{bottom:304.346667pt;}
.y34{bottom:316.826667pt;}
.y65{bottom:319.386667pt;}
.y64{bottom:331.866667pt;}
.y33{bottom:332.186667pt;}
.y76{bottom:334.880000pt;}
.y82{bottom:336.320000pt;}
.y7f{bottom:340.320000pt;}
.y32{bottom:347.546667pt;}
.y84{bottom:353.760000pt;}
.y8a{bottom:360.480000pt;}
.y88{bottom:361.280000pt;}
.y31{bottom:362.906667pt;}
.y30{bottom:378.106667pt;}
.y2f{bottom:393.466667pt;}
.y2e{bottom:408.866667pt;}
.y85{bottom:416.480000pt;}
.y89{bottom:416.800000pt;}
.y2d{bottom:424.226667pt;}
.y90{bottom:438.240000pt;}
.y2c{bottom:439.266667pt;}
.y2b{bottom:454.786667pt;}
.y8e{bottom:463.040000pt;}
.y2a{bottom:470.146667pt;}
.y29{bottom:485.506667pt;}
.y8c{bottom:488.000000pt;}
.y87{bottom:491.680000pt;}
.y28{bottom:500.866667pt;}
.y27{bottom:516.226667pt;}
.y26{bottom:531.586667pt;}
.y25{bottom:546.786667pt;}
.y24{bottom:562.146667pt;}
.y23{bottom:577.506667pt;}
.y22{bottom:592.546667pt;}
.y21{bottom:608.226667pt;}
.y20{bottom:623.613333pt;}
.y1f{bottom:638.813333pt;}
.y1e{bottom:654.173333pt;}
.y1d{bottom:669.533333pt;}
.y1c{bottom:684.893333pt;}
.y1b{bottom:700.253333pt;}
.y1a{bottom:715.613333pt;}
.y63{bottom:725.213333pt;}
.y19{bottom:730.813333pt;}
.y62{bottom:740.413333pt;}
.y18{bottom:746.173333pt;}
.y61{bottom:755.773333pt;}
.y17{bottom:761.213333pt;}
.y60{bottom:771.133333pt;}
.y16{bottom:777.213333pt;}
.y5f{bottom:786.493333pt;}
.y15{bottom:792.893333pt;}
.y5e{bottom:801.853333pt;}
.y14{bottom:808.253333pt;}
.y5d{bottom:817.093333pt;}
.y13{bottom:823.493333pt;}
.y5a{bottom:829.893333pt;}
.y12{bottom:838.853333pt;}
.y5c{bottom:845.893333pt;}
.y11{bottom:854.213333pt;}
.y58{bottom:861.893333pt;}
.y10{bottom:869.573333pt;}
.y56{bottom:877.893333pt;}
.yf{bottom:885.573333pt;}
.y54{bottom:893.893333pt;}
.ye{bottom:900.933333pt;}
.y53{bottom:913.093333pt;}
.yd{bottom:916.293333pt;}
.y52{bottom:928.453333pt;}
.yc{bottom:931.493333pt;}
.y51{bottom:943.813333pt;}
.yb{bottom:946.853333pt;}
.y50{bottom:959.173333pt;}
.ya{bottom:962.213333pt;}
.y4f{bottom:974.533333pt;}
.y9{bottom:977.893333pt;}
.y4e{bottom:989.893333pt;}
.y8{bottom:996.293333pt;}
.y4d{bottom:1005.093333pt;}
.y7{bottom:1014.693333pt;}
.y4c{bottom:1020.480000pt;}
.y6{bottom:1033.120000pt;}
.y4b{bottom:1035.840000pt;}
.y3{bottom:1050.880000pt;}
.y2{bottom:1066.240000pt;}
.y1{bottom:1081.440000pt;}
.hd{height:15.200000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.h8{height:30.560000pt;}
.he{height:31.200000pt;}
.h9{height:31.360000pt;}
.hb{height:31.392000pt;}
.h12{height:32.480000pt;}
.h5{height:43.375000pt;}
.hf{height:47.200000pt;}
.h2{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h10{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h16{height:74.720000pt;}
.h13{height:189.760000pt;}
.h15{height:193.440000pt;}
.h14{height:193.600000pt;}
.h11{height:387.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:33.760000pt;}
.w1a{width:38.720000pt;}
.w19{width:45.280000pt;}
.w1b{width:45.440000pt;}
.wd{width:52.192000pt;}
.w5{width:52.512000pt;}
.w8{width:56.160000pt;}
.w7{width:71.552000pt;}
.we{width:72.352000pt;}
.wa{width:72.672000pt;}
.w9{width:74.880000pt;}
.w1c{width:75.040000pt;}
.w16{width:77.440000pt;}
.wb{width:79.712000pt;}
.w3{width:80.032000pt;}
.w1e{width:82.720000pt;}
.w6{width:82.880000pt;}
.w1d{width:83.040000pt;}
.w14{width:83.552000pt;}
.w17{width:87.200000pt;}
.wc{width:90.080000pt;}
.w4{width:90.400000pt;}
.w12{width:99.040000pt;}
.w2{width:105.152000pt;}
.w11{width:132.032000pt;}
.w13{width:134.106667pt;}
.w10{width:150.906667pt;}
.wf{width:318.146667pt;}
.w15{width:683.040000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1e{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x29{left:7.773333pt;}
.x21{left:16.160000pt;}
.x25{left:22.112000pt;}
.x1a{left:29.120000pt;}
.xf{left:48.000000pt;}
.x11{left:52.480000pt;}
.xd{left:54.080000pt;}
.x24{left:72.000000pt;}
.x5{left:76.352000pt;}
.x10{left:96.032000pt;}
.x22{left:105.792000pt;}
.x1b{left:108.032000pt;}
.x2a{left:132.800000pt;}
.x26{left:143.360000pt;}
.x13{left:158.106667pt;}
.x2d{left:168.640000pt;}
.x6{left:186.426667pt;}
.x1f{left:195.546667pt;}
.xa{left:203.706667pt;}
.x7{left:211.866667pt;}
.x3{left:226.426667pt;}
.x14{left:238.466667pt;}
.x1{left:259.586667pt;}
.x9{left:261.506667pt;}
.xe{left:265.666667pt;}
.x2{left:267.426667pt;}
.x2b{left:297.280000pt;}
.x27{left:299.680000pt;}
.x8{left:328.866667pt;}
.x20{left:330.466667pt;}
.xc{left:354.466667pt;}
.x2f{left:365.600000pt;}
.xb{left:370.946667pt;}
.x15{left:382.013333pt;}
.x1c{left:414.653333pt;}
.x2c{left:455.200000pt;}
.x16{left:465.213333pt;}
.x28{left:487.680000pt;}
.x2e{left:491.040000pt;}
.x30{left:526.880000pt;}
.x17{left:537.093333pt;}
.x1d{left:566.213333pt;}
.x18{left:593.573333pt;}
.x31{left:644.960000pt;}
.x19{left:668.773333pt;}
.x4{left:723.520000pt;}
.x23{left:742.080000pt;}
}




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