
    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_a5105e59a085d276b61c9657.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_0743f39e04930a0ec367b526.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e946bb2fbe0d33f850d2ca47.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_a22553d4c97acd5d90cc8f81.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1f918f0f0cd1f9b85245803f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_637cd7a59f0102e070d4c2d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_0703db1fd724f5aad9abfb7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_d9f0e73d0f4f8e3e65d09ab6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.666000px;}
.lse{letter-spacing:5.940000px;}
.lsf{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.ls1{letter-spacing:201.204000px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-463.308480px;}
._1c{margin-left:-8.178000px;}
._14{margin-left:-6.476160px;}
._5{margin-left:-5.075280px;}
._4{margin-left:-3.529920px;}
._6{margin-left:-2.377920px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._a{width:4.123440px;}
._9{width:5.139360px;}
._c{width:6.670800px;}
._13{width:7.768800px;}
._8{width:9.031680px;}
._7{width:10.697040px;}
._b{width:12.310560px;}
._12{width:13.633200px;}
._15{width:16.814880px;}
._e{width:17.966880px;}
._f{width:19.399680px;}
._d{width:20.916000px;}
._17{width:40.625280px;}
._16{width:42.811920px;}
._11{width:58.173840px;}
._10{width:59.341680px;}
._1a{width:86.233680px;}
._1b{width:89.735760px;}
._18{width:90.776880px;}
._19{width:92.385840px;}
._1d{width:107.364720px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs9{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.040000px;}
.y2b{bottom:5.760000px;}
.y47{bottom:10.800000px;}
.y1f{bottom:12.600000px;}
.y6{bottom:14.040000px;}
.y2a{bottom:25.560000px;}
.y1e{bottom:32.400000px;}
.y29{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y1d{bottom:52.200000px;}
.y28{bottom:65.340000px;}
.y9{bottom:67.140000px;}
.y1c{bottom:72.030000px;}
.y4{bottom:77.220000px;}
.y46{bottom:79.380000px;}
.y27{bottom:89.130000px;}
.y44{bottom:90.720000px;}
.y1b{bottom:92.010000px;}
.y9a{bottom:92.160000px;}
.yca{bottom:93.960000px;}
.ye8{bottom:101.160000px;}
.y72{bottom:101.700000px;}
.y3{bottom:108.900000px;}
.y43{bottom:110.520000px;}
.y26{bottom:111.450000px;}
.y1a{bottom:111.810000px;}
.y99{bottom:111.960000px;}
.yc9{bottom:113.760000px;}
.y71{bottom:118.080000px;}
.ye7{bottom:120.960000px;}
.y42{bottom:130.320000px;}
.y19{bottom:131.610000px;}
.y98{bottom:131.760000px;}
.yc8{bottom:133.560000px;}
.y25{bottom:133.770000px;}
.ye6{bottom:140.760000px;}
.y2{bottom:142.050000px;}
.y41{bottom:150.300000px;}
.y18{bottom:151.410000px;}
.y97{bottom:151.560000px;}
.yc7{bottom:153.390000px;}
.y24{bottom:156.090000px;}
.ye5{bottom:160.590000px;}
.y40{bottom:170.130000px;}
.y17{bottom:171.210000px;}
.y96{bottom:171.390000px;}
.yc6{bottom:173.370000px;}
.y23{bottom:178.590000px;}
.ye4{bottom:180.390000px;}
.y3f{bottom:189.930000px;}
.y16{bottom:191.190000px;}
.y95{bottom:191.370000px;}
.yc5{bottom:193.170000px;}
.ye3{bottom:200.370000px;}
.y22{bottom:200.910000px;}
.y3e{bottom:209.730000px;}
.y15{bottom:210.990000px;}
.y94{bottom:211.170000px;}
.yc4{bottom:212.970000px;}
.ye2{bottom:220.170000px;}
.y21{bottom:223.230000px;}
.y3d{bottom:229.530000px;}
.y14{bottom:230.790000px;}
.y93{bottom:230.970000px;}
.yc3{bottom:232.770000px;}
.ye1{bottom:239.970000px;}
.y20{bottom:246.090000px;}
.y3c{bottom:249.510000px;}
.y13{bottom:250.590000px;}
.y92{bottom:250.770000px;}
.yc2{bottom:252.570000px;}
.ye0{bottom:259.770000px;}
.y3b{bottom:269.310000px;}
.y12{bottom:270.390000px;}
.y91{bottom:270.570000px;}
.yc1{bottom:272.550000px;}
.ydf{bottom:279.570000px;}
.y3a{bottom:289.110000px;}
.y11{bottom:290.370000px;}
.y90{bottom:290.550000px;}
.yc0{bottom:292.350000px;}
.yde{bottom:299.550000px;}
.y39{bottom:308.910000px;}
.y10{bottom:310.170000px;}
.y8f{bottom:310.350000px;}
.ydd{bottom:319.350000px;}
.ybf{bottom:321.150000px;}
.y38{bottom:328.710000px;}
.y8e{bottom:330.150000px;}
.ydc{bottom:339.150000px;}
.ybe{bottom:340.950000px;}
.y37{bottom:348.690000px;}
.y8d{bottom:349.950000px;}
.ydb{bottom:358.950000px;}
.ybd{bottom:360.750000px;}
.y36{bottom:368.490000px;}
.y70{bottom:369.390000px;}
.y8c{bottom:369.750000px;}
.yda{bottom:378.750000px;}
.ybc{bottom:380.730000px;}
.y35{bottom:388.290000px;}
.y6f{bottom:389.190000px;}
.y8b{bottom:389.730000px;}
.yd9{bottom:398.730000px;}
.ybb{bottom:400.575000px;}
.y34{bottom:408.135000px;}
.y6e{bottom:409.035000px;}
.y8a{bottom:409.575000px;}
.yd8{bottom:418.575000px;}
.yba{bottom:420.375000px;}
.y33{bottom:427.935000px;}
.y6d{bottom:428.835000px;}
.y89{bottom:429.375000px;}
.yd7{bottom:438.375000px;}
.yb9{bottom:440.175000px;}
.y32{bottom:447.915000px;}
.y6c{bottom:448.635000px;}
.y88{bottom:449.175000px;}
.yd6{bottom:458.175000px;}
.yb8{bottom:459.975000px;}
.y31{bottom:467.715000px;}
.y6b{bottom:468.615000px;}
.y87{bottom:468.975000px;}
.yd5{bottom:477.975000px;}
.yb7{bottom:479.955000px;}
.y30{bottom:487.515000px;}
.y6a{bottom:488.415000px;}
.y86{bottom:488.955000px;}
.yd4{bottom:497.955000px;}
.yb6{bottom:499.755000px;}
.y2f{bottom:507.315000px;}
.y69{bottom:508.215000px;}
.y85{bottom:508.755000px;}
.yd3{bottom:517.755000px;}
.yb5{bottom:519.555000px;}
.y2e{bottom:527.115000px;}
.y68{bottom:528.015000px;}
.y84{bottom:528.555000px;}
.yd2{bottom:537.555000px;}
.yb4{bottom:539.355000px;}
.y2d{bottom:547.095000px;}
.y67{bottom:547.815000px;}
.y83{bottom:548.355000px;}
.yd1{bottom:557.355000px;}
.yb3{bottom:559.155000px;}
.y2c{bottom:566.895000px;}
.y66{bottom:567.795000px;}
.y82{bottom:568.155000px;}
.yd0{bottom:577.155000px;}
.yb2{bottom:579.135000px;}
.yf{bottom:581.655000px;}
.y65{bottom:587.595000px;}
.y81{bottom:588.135000px;}
.ycf{bottom:597.135000px;}
.yb1{bottom:598.935000px;}
.y64{bottom:607.395000px;}
.y80{bottom:607.935000px;}
.yce{bottom:616.935000px;}
.yb0{bottom:618.735000px;}
.y63{bottom:627.195000px;}
.y7f{bottom:627.735000px;}
.ycd{bottom:636.735000px;}
.yaf{bottom:638.535000px;}
.y62{bottom:646.995000px;}
.y7e{bottom:647.535000px;}
.ycc{bottom:656.565000px;}
.yae{bottom:658.365000px;}
.y61{bottom:667.005000px;}
.y7d{bottom:667.365000px;}
.ycb{bottom:676.365000px;}
.yad{bottom:678.345000px;}
.y60{bottom:684.285000px;}
.y7c{bottom:696.345000px;}
.yac{bottom:698.145000px;}
.y5f{bottom:701.385000px;}
.y7b{bottom:716.145000px;}
.yab{bottom:717.945000px;}
.y5e{bottom:718.665000px;}
.y7a{bottom:735.945000px;}
.yaa{bottom:737.745000px;}
.y5d{bottom:738.465000px;}
.y79{bottom:755.745000px;}
.ya9{bottom:757.545000px;}
.y5c{bottom:758.445000px;}
.y78{bottom:775.545000px;}
.ya8{bottom:777.525000px;}
.y5b{bottom:778.245000px;}
.y77{bottom:795.525000px;}
.ya7{bottom:797.325000px;}
.y5a{bottom:798.045000px;}
.y76{bottom:815.325000px;}
.ya6{bottom:817.125000px;}
.y59{bottom:817.845000px;}
.y75{bottom:835.125000px;}
.ya5{bottom:836.925000px;}
.y58{bottom:837.645000px;}
.y74{bottom:854.925000px;}
.ya4{bottom:856.725000px;}
.y57{bottom:857.625000px;}
.y73{bottom:874.725000px;}
.y56{bottom:877.425000px;}
.ya3{bottom:885.705000px;}
.y55{bottom:894.705000px;}
.ya2{bottom:905.550000px;}
.y54{bottom:914.550000px;}
.ye{bottom:915.450000px;}
.ya1{bottom:925.350000px;}
.y53{bottom:934.350000px;}
.yd{bottom:940.470000px;}
.ya0{bottom:945.150000px;}
.y52{bottom:954.150000px;}
.yc{bottom:955.590000px;}
.y9f{bottom:964.950000px;}
.y51{bottom:973.950000px;}
.yb{bottom:974.310000px;}
.y9e{bottom:984.930000px;}
.y50{bottom:993.930000px;}
.ya{bottom:997.710000px;}
.y9d{bottom:1004.730000px;}
.y4f{bottom:1013.730000px;}
.y8{bottom:1023.090000px;}
.y9c{bottom:1024.530000px;}
.y4e{bottom:1033.530000px;}
.y1{bottom:1036.410000px;}
.y9b{bottom:1044.330000px;}
.y4d{bottom:1053.330000px;}
.y4c{bottom:1073.130000px;}
.y4b{bottom:1093.110000px;}
.y4a{bottom:1112.910000px;}
.y49{bottom:1132.710000px;}
.y48{bottom:1152.540000px;}
.y45{bottom:1182.420000px;}
.h5{height:2.010938px;}
.hb{height:27.147656px;}
.h6{height:37.705078px;}
.hf{height:38.100586px;}
.h9{height:41.726953px;}
.hd{height:42.164648px;}
.h13{height:43.506914px;}
.h7{height:46.251562px;}
.h10{height:48.127500px;}
.h4{height:48.774375px;}
.he{height:49.255313px;}
.h14{height:52.925625px;}
.ha{height:53.224453px;}
.h3{height:57.256875px;}
.h8{height:67.565039px;}
.h12{height:111.043828px;}
.h2{height:162.570000px;}
.h11{height:268.770000px;}
.hc{height:324.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:39.780000px;}
.w3{width:147.456000px;}
.w6{width:204.690000px;}
.w5{width:576.870000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2{left:8.100000px;}
.x8{left:12.780000px;}
.xb{left:31.860000px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.xd{left:80.999987px;}
.x10{left:86.075987px;}
.xf{left:101.375987px;}
.xc{left:108.035987px;}
.x4{left:139.350000px;}
.x9{left:331.814987px;}
.x5{left:393.014987px;}
.x7{left:632.670000px;}
.xe{left:651.209987px;}
.x3{left:687.930000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.592000pt;}
.lse{letter-spacing:5.280000pt;}
.lsf{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls1{letter-spacing:178.848000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-411.829760pt;}
._1c{margin-left:-7.269333pt;}
._14{margin-left:-5.756587pt;}
._5{margin-left:-4.511360pt;}
._4{margin-left:-3.137707pt;}
._6{margin-left:-2.113707pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._a{width:3.665280pt;}
._9{width:4.568320pt;}
._c{width:5.929600pt;}
._13{width:6.905600pt;}
._8{width:8.028160pt;}
._7{width:9.508480pt;}
._b{width:10.942720pt;}
._12{width:12.118400pt;}
._15{width:14.946560pt;}
._e{width:15.970560pt;}
._f{width:17.244160pt;}
._d{width:18.592000pt;}
._17{width:36.111360pt;}
._16{width:38.055040pt;}
._11{width:51.710080pt;}
._10{width:52.748160pt;}
._1a{width:76.652160pt;}
._1b{width:79.765120pt;}
._18{width:80.690560pt;}
._19{width:82.120747pt;}
._1d{width:95.435307pt;}
.fs2{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs9{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.480000pt;}
.y2b{bottom:5.120000pt;}
.y47{bottom:9.600000pt;}
.y1f{bottom:11.200000pt;}
.y6{bottom:12.480000pt;}
.y2a{bottom:22.720000pt;}
.y1e{bottom:28.800000pt;}
.y29{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y1d{bottom:46.400000pt;}
.y28{bottom:58.080000pt;}
.y9{bottom:59.680000pt;}
.y1c{bottom:64.026667pt;}
.y4{bottom:68.640000pt;}
.y46{bottom:70.560000pt;}
.y27{bottom:79.226667pt;}
.y44{bottom:80.640000pt;}
.y1b{bottom:81.786667pt;}
.y9a{bottom:81.920000pt;}
.yca{bottom:83.520000pt;}
.ye8{bottom:89.920000pt;}
.y72{bottom:90.400000pt;}
.y3{bottom:96.800000pt;}
.y43{bottom:98.240000pt;}
.y26{bottom:99.066667pt;}
.y1a{bottom:99.386667pt;}
.y99{bottom:99.520000pt;}
.yc9{bottom:101.120000pt;}
.y71{bottom:104.960000pt;}
.ye7{bottom:107.520000pt;}
.y42{bottom:115.840000pt;}
.y19{bottom:116.986667pt;}
.y98{bottom:117.120000pt;}
.yc8{bottom:118.720000pt;}
.y25{bottom:118.906667pt;}
.ye6{bottom:125.120000pt;}
.y2{bottom:126.266667pt;}
.y41{bottom:133.600000pt;}
.y18{bottom:134.586667pt;}
.y97{bottom:134.720000pt;}
.yc7{bottom:136.346667pt;}
.y24{bottom:138.746667pt;}
.ye5{bottom:142.746667pt;}
.y40{bottom:151.226667pt;}
.y17{bottom:152.186667pt;}
.y96{bottom:152.346667pt;}
.yc6{bottom:154.106667pt;}
.y23{bottom:158.746667pt;}
.ye4{bottom:160.346667pt;}
.y3f{bottom:168.826667pt;}
.y16{bottom:169.946667pt;}
.y95{bottom:170.106667pt;}
.yc5{bottom:171.706667pt;}
.ye3{bottom:178.106667pt;}
.y22{bottom:178.586667pt;}
.y3e{bottom:186.426667pt;}
.y15{bottom:187.546667pt;}
.y94{bottom:187.706667pt;}
.yc4{bottom:189.306667pt;}
.ye2{bottom:195.706667pt;}
.y21{bottom:198.426667pt;}
.y3d{bottom:204.026667pt;}
.y14{bottom:205.146667pt;}
.y93{bottom:205.306667pt;}
.yc3{bottom:206.906667pt;}
.ye1{bottom:213.306667pt;}
.y20{bottom:218.746667pt;}
.y3c{bottom:221.786667pt;}
.y13{bottom:222.746667pt;}
.y92{bottom:222.906667pt;}
.yc2{bottom:224.506667pt;}
.ye0{bottom:230.906667pt;}
.y3b{bottom:239.386667pt;}
.y12{bottom:240.346667pt;}
.y91{bottom:240.506667pt;}
.yc1{bottom:242.266667pt;}
.ydf{bottom:248.506667pt;}
.y3a{bottom:256.986667pt;}
.y11{bottom:258.106667pt;}
.y90{bottom:258.266667pt;}
.yc0{bottom:259.866667pt;}
.yde{bottom:266.266667pt;}
.y39{bottom:274.586667pt;}
.y10{bottom:275.706667pt;}
.y8f{bottom:275.866667pt;}
.ydd{bottom:283.866667pt;}
.ybf{bottom:285.466667pt;}
.y38{bottom:292.186667pt;}
.y8e{bottom:293.466667pt;}
.ydc{bottom:301.466667pt;}
.ybe{bottom:303.066667pt;}
.y37{bottom:309.946667pt;}
.y8d{bottom:311.066667pt;}
.ydb{bottom:319.066667pt;}
.ybd{bottom:320.666667pt;}
.y36{bottom:327.546667pt;}
.y70{bottom:328.346667pt;}
.y8c{bottom:328.666667pt;}
.yda{bottom:336.666667pt;}
.ybc{bottom:338.426667pt;}
.y35{bottom:345.146667pt;}
.y6f{bottom:345.946667pt;}
.y8b{bottom:346.426667pt;}
.yd9{bottom:354.426667pt;}
.ybb{bottom:356.066667pt;}
.y34{bottom:362.786667pt;}
.y6e{bottom:363.586667pt;}
.y8a{bottom:364.066667pt;}
.yd8{bottom:372.066667pt;}
.yba{bottom:373.666667pt;}
.y33{bottom:380.386667pt;}
.y6d{bottom:381.186667pt;}
.y89{bottom:381.666667pt;}
.yd7{bottom:389.666667pt;}
.yb9{bottom:391.266667pt;}
.y32{bottom:398.146667pt;}
.y6c{bottom:398.786667pt;}
.y88{bottom:399.266667pt;}
.yd6{bottom:407.266667pt;}
.yb8{bottom:408.866667pt;}
.y31{bottom:415.746667pt;}
.y6b{bottom:416.546667pt;}
.y87{bottom:416.866667pt;}
.yd5{bottom:424.866667pt;}
.yb7{bottom:426.626667pt;}
.y30{bottom:433.346667pt;}
.y6a{bottom:434.146667pt;}
.y86{bottom:434.626667pt;}
.yd4{bottom:442.626667pt;}
.yb6{bottom:444.226667pt;}
.y2f{bottom:450.946667pt;}
.y69{bottom:451.746667pt;}
.y85{bottom:452.226667pt;}
.yd3{bottom:460.226667pt;}
.yb5{bottom:461.826667pt;}
.y2e{bottom:468.546667pt;}
.y68{bottom:469.346667pt;}
.y84{bottom:469.826667pt;}
.yd2{bottom:477.826667pt;}
.yb4{bottom:479.426667pt;}
.y2d{bottom:486.306667pt;}
.y67{bottom:486.946667pt;}
.y83{bottom:487.426667pt;}
.yd1{bottom:495.426667pt;}
.yb3{bottom:497.026667pt;}
.y2c{bottom:503.906667pt;}
.y66{bottom:504.706667pt;}
.y82{bottom:505.026667pt;}
.yd0{bottom:513.026667pt;}
.yb2{bottom:514.786667pt;}
.yf{bottom:517.026667pt;}
.y65{bottom:522.306667pt;}
.y81{bottom:522.786667pt;}
.ycf{bottom:530.786667pt;}
.yb1{bottom:532.386667pt;}
.y64{bottom:539.906667pt;}
.y80{bottom:540.386667pt;}
.yce{bottom:548.386667pt;}
.yb0{bottom:549.986667pt;}
.y63{bottom:557.506667pt;}
.y7f{bottom:557.986667pt;}
.ycd{bottom:565.986667pt;}
.yaf{bottom:567.586667pt;}
.y62{bottom:575.106667pt;}
.y7e{bottom:575.586667pt;}
.ycc{bottom:583.613333pt;}
.yae{bottom:585.213333pt;}
.y61{bottom:592.893333pt;}
.y7d{bottom:593.213333pt;}
.ycb{bottom:601.213333pt;}
.yad{bottom:602.973333pt;}
.y60{bottom:608.253333pt;}
.y7c{bottom:618.973333pt;}
.yac{bottom:620.573333pt;}
.y5f{bottom:623.453333pt;}
.y7b{bottom:636.573333pt;}
.yab{bottom:638.173333pt;}
.y5e{bottom:638.813333pt;}
.y7a{bottom:654.173333pt;}
.yaa{bottom:655.773333pt;}
.y5d{bottom:656.413333pt;}
.y79{bottom:671.773333pt;}
.ya9{bottom:673.373333pt;}
.y5c{bottom:674.173333pt;}
.y78{bottom:689.373333pt;}
.ya8{bottom:691.133333pt;}
.y5b{bottom:691.773333pt;}
.y77{bottom:707.133333pt;}
.ya7{bottom:708.733333pt;}
.y5a{bottom:709.373333pt;}
.y76{bottom:724.733333pt;}
.ya6{bottom:726.333333pt;}
.y59{bottom:726.973333pt;}
.y75{bottom:742.333333pt;}
.ya5{bottom:743.933333pt;}
.y58{bottom:744.573333pt;}
.y74{bottom:759.933333pt;}
.ya4{bottom:761.533333pt;}
.y57{bottom:762.333333pt;}
.y73{bottom:777.533333pt;}
.y56{bottom:779.933333pt;}
.ya3{bottom:787.293333pt;}
.y55{bottom:795.293333pt;}
.ya2{bottom:804.933333pt;}
.y54{bottom:812.933333pt;}
.ye{bottom:813.733333pt;}
.ya1{bottom:822.533333pt;}
.y53{bottom:830.533333pt;}
.yd{bottom:835.973333pt;}
.ya0{bottom:840.133333pt;}
.y52{bottom:848.133333pt;}
.yc{bottom:849.413333pt;}
.y9f{bottom:857.733333pt;}
.y51{bottom:865.733333pt;}
.yb{bottom:866.053333pt;}
.y9e{bottom:875.493333pt;}
.y50{bottom:883.493333pt;}
.ya{bottom:886.853333pt;}
.y9d{bottom:893.093333pt;}
.y4f{bottom:901.093333pt;}
.y8{bottom:909.413333pt;}
.y9c{bottom:910.693333pt;}
.y4e{bottom:918.693333pt;}
.y1{bottom:921.253333pt;}
.y9b{bottom:928.293333pt;}
.y4d{bottom:936.293333pt;}
.y4c{bottom:953.893333pt;}
.y4b{bottom:971.653333pt;}
.y4a{bottom:989.253333pt;}
.y49{bottom:1006.853333pt;}
.y48{bottom:1024.480000pt;}
.y45{bottom:1051.040000pt;}
.h5{height:1.787500pt;}
.hb{height:24.131250pt;}
.h6{height:33.515625pt;}
.hf{height:33.867188pt;}
.h9{height:37.090625pt;}
.hd{height:37.479688pt;}
.h13{height:38.672812pt;}
.h7{height:41.112500pt;}
.h10{height:42.780000pt;}
.h4{height:43.355000pt;}
.he{height:43.782500pt;}
.h14{height:47.045000pt;}
.ha{height:47.310625pt;}
.h3{height:50.895000pt;}
.h8{height:60.057813pt;}
.h12{height:98.705625pt;}
.h2{height:144.506667pt;}
.h11{height:238.906667pt;}
.hc{height:288.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.360000pt;}
.w3{width:131.072000pt;}
.w6{width:181.946667pt;}
.w5{width:512.773333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2{left:7.200000pt;}
.x8{left:11.360000pt;}
.xb{left:28.320000pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.xd{left:71.999988pt;}
.x10{left:76.511988pt;}
.xf{left:90.111988pt;}
.xc{left:96.031988pt;}
.x4{left:123.866667pt;}
.x9{left:294.946655pt;}
.x5{left:349.346655pt;}
.x7{left:562.373333pt;}
.xe{left:578.853322pt;}
.x3{left:611.493333pt;}
}




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