
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1360bdfa4edae9fa1a446309.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_f47b0a55544f98785bb0ba0d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8c21841b9884fac00129d3db.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8be39c6f0e8f148dd1a6ca55.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_27b145102d3c9b6b96e47231.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9a875cfa425f18ac561b0222.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb03de89745201bdcf2e61bd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_15d2a5d100e3ea92e44eb7c0.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.322800px;}
.ls7{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:21.221280px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws6{word-spacing:-20.737200px;}
.ws7{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._27{margin-left:-19.555200px;}
._7{margin-left:-2.243520px;}
._1{margin-left:-1.126080px;}
._3{width:1.029120px;}
._a{width:2.076720px;}
._b{width:3.087360px;}
._13{width:4.212000px;}
._9{width:5.391360px;}
._11{width:6.654960px;}
._12{width:7.746000px;}
._20{width:8.791920px;}
._4{width:10.207920px;}
._5{width:11.635680px;}
._10{width:12.835440px;}
._21{width:14.964240px;}
._c{width:18.701280px;}
._f{width:19.932480px;}
._24{width:22.224480px;}
._8{width:23.564880px;}
._6{width:25.187760px;}
._2b{width:27.209520px;}
._28{width:30.020880px;}
._19{width:31.084560px;}
._1a{width:32.310480px;}
._d{width:35.496000px;}
._e{width:37.258320px;}
._23{width:38.766240px;}
._22{width:39.948480px;}
._17{width:46.668960px;}
._18{width:48.132000px;}
._15{width:58.209840px;}
._14{width:60.098160px;}
._2c{width:65.401200px;}
._2d{width:66.456720px;}
._2e{width:88.367760px;}
._25{width:89.976720px;}
._26{width:91.108560px;}
._1f{width:94.149360px;}
._1e{width:95.177040px;}
._31{width:98.507520px;}
._16{width:105.499440px;}
._1b{width:112.123440px;}
._1c{width:113.165280px;}
._1d{width:114.987600px;}
._30{width:142.166160px;}
._2f{width:143.185680px;}
._2a{width:168.564240px;}
._29{width:169.965360px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.940000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.800000px;}
.y3e{bottom:82.440000px;}
.y6a{bottom:86.220000px;}
.y87{bottom:91.980000px;}
.y21{bottom:97.560000px;}
.y96{bottom:103.860000px;}
.y3d{bottom:118.620000px;}
.y69{bottom:122.400000px;}
.y86{bottom:128.196000px;}
.y20{bottom:133.776000px;}
.y95{bottom:140.256000px;}
.y55{bottom:142.956000px;}
.y3c{bottom:154.830000px;}
.y9f{bottom:155.010000px;}
.y68{bottom:158.610000px;}
.y79{bottom:164.370000px;}
.y1f{bottom:170.130000px;}
.y94{bottom:176.430000px;}
.y54{bottom:179.130000px;}
.y3b{bottom:191.010000px;}
.y9e{bottom:191.190000px;}
.y78{bottom:200.550000px;}
.y1e{bottom:206.310000px;}
.y93{bottom:212.610000px;}
.y67{bottom:216.030000px;}
.y3a{bottom:227.370000px;}
.y53{bottom:236.550000px;}
.y77{bottom:236.910000px;}
.y1d{bottom:242.490000px;}
.y92{bottom:248.790000px;}
.y66{bottom:252.030000px;}
.y85{bottom:257.970000px;}
.y39{bottom:263.550000px;}
.y52{bottom:272.550000px;}
.y76{bottom:273.090000px;}
.y1c{bottom:278.670000px;}
.y91{bottom:285.150000px;}
.y65{bottom:288.210000px;}
.y84{bottom:294.150000px;}
.y38{bottom:299.730000px;}
.y9d{bottom:299.910000px;}
.y51{bottom:308.730000px;}
.y75{bottom:309.270000px;}
.y1b{bottom:315.030000px;}
.y90{bottom:321.330000px;}
.y64{bottom:324.570000px;}
.y83{bottom:330.330000px;}
.y37{bottom:335.910000px;}
.y9c{bottom:336.090000px;}
.y50{bottom:344.910000px;}
.y74{bottom:345.450000px;}
.y1a{bottom:351.210000px;}
.y8f{bottom:357.510000px;}
.y63{bottom:360.750000px;}
.y82{bottom:366.510000px;}
.y36{bottom:372.270000px;}
.y4f{bottom:381.315000px;}
.y73{bottom:381.855000px;}
.y19{bottom:387.435000px;}
.y62{bottom:396.975000px;}
.y8e{bottom:402.375000px;}
.y35{bottom:408.495000px;}
.y4e{bottom:417.495000px;}
.y72{bottom:418.035000px;}
.y18{bottom:423.615000px;}
.y81{bottom:423.975000px;}
.y34{bottom:444.675000px;}
.y9b{bottom:444.855000px;}
.y4d{bottom:453.675000px;}
.y61{bottom:454.035000px;}
.y71{bottom:454.215000px;}
.y17{bottom:459.975000px;}
.y8d{bottom:460.155000px;}
.y33{bottom:480.855000px;}
.y9a{bottom:481.035000px;}
.y4c{bottom:489.855000px;}
.y16{bottom:496.155000px;}
.y60{bottom:511.635000px;}
.y32{bottom:517.035000px;}
.y99{bottom:517.215000px;}
.y15{bottom:532.335000px;}
.y80{bottom:532.515000px;}
.y4b{bottom:547.275000px;}
.y5f{bottom:547.635000px;}
.y31{bottom:553.395000px;}
.y14{bottom:568.515000px;}
.y7f{bottom:568.695000px;}
.y70{bottom:568.875000px;}
.y4a{bottom:583.275000px;}
.y5e{bottom:583.815000px;}
.y30{bottom:589.575000px;}
.y98{bottom:589.755000px;}
.y13{bottom:604.875000px;}
.y49{bottom:619.635000px;}
.y5d{bottom:620.175000px;}
.y2f{bottom:625.935000px;}
.y12{bottom:641.085000px;}
.y48{bottom:655.845000px;}
.y5c{bottom:656.385000px;}
.y97{bottom:662.145000px;}
.y8c{bottom:662.325000px;}
.y2e{bottom:671.505000px;}
.y11{bottom:677.265000px;}
.y6f{bottom:677.445000px;}
.y47{bottom:692.025000px;}
.y5b{bottom:692.565000px;}
.y8b{bottom:698.325000px;}
.y10{bottom:713.445000px;}
.y6e{bottom:713.625000px;}
.y46{bottom:728.205000px;}
.y5a{bottom:728.745000px;}
.y2d{bottom:728.925000px;}
.y8a{bottom:734.505000px;}
.yf{bottom:749.805000px;}
.y2c{bottom:765.105000px;}
.y89{bottom:770.865000px;}
.y45{bottom:785.625000px;}
.y6d{bottom:785.985000px;}
.y2b{bottom:801.285000px;}
.ye{bottom:806.505000px;}
.y88{bottom:807.045000px;}
.y7e{bottom:807.225000px;}
.y44{bottom:821.625000px;}
.y6c{bottom:822.165000px;}
.y2a{bottom:837.465000px;}
.y7d{bottom:843.225000px;}
.yd{bottom:843.405000px;}
.y43{bottom:857.985000px;}
.y6b{bottom:858.525000px;}
.y59{bottom:858.705000px;}
.y29{bottom:873.645000px;}
.y7c{bottom:879.405000px;}
.yc{bottom:888.630000px;}
.y42{bottom:894.390000px;}
.y58{bottom:894.750000px;}
.ya1{bottom:897.810000px;}
.y28{bottom:910.050000px;}
.y7b{bottom:915.810000px;}
.y57{bottom:930.930000px;}
.yb{bottom:933.810000px;}
.y41{bottom:942.630000px;}
.ya0{bottom:942.990000px;}
.y27{bottom:946.230000px;}
.y7a{bottom:951.990000px;}
.ya{bottom:978.990000px;}
.y40{bottom:988.170000px;}
.y56{bottom:988.350000px;}
.y26{bottom:1003.470000px;}
.y9{bottom:1024.350000px;}
.y3f{bottom:1060.710000px;}
.y25{bottom:1060.890000px;}
.y8{bottom:1069.530000px;}
.y24{bottom:1096.890000px;}
.y7{bottom:1114.710000px;}
.y23{bottom:1133.070000px;}
.y6{bottom:1159.920000px;}
.y22{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.600000px;}
.h7{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h8{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:16.410000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.x6{left:121.176000px;}
.xe{left:122.796000px;}
.xf{left:149.796000px;}
.x5{left:208.110000px;}
.x9{left:246.990000px;}
.xd{left:308.955000px;}
.x7{left:325.515000px;}
.x10{left:413.535000px;}
.x3{left:438.915000px;}
.xb{left:503.205000px;}
.xa{left:531.285000px;}
.xc{left:553.785000px;}
.x8{left:579.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.286933pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:18.863360pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws5{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws6{word-spacing:-18.433067pt;}
.ws7{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._27{margin-left:-17.382400pt;}
._7{margin-left:-1.994240pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.914773pt;}
._a{width:1.845973pt;}
._b{width:2.744320pt;}
._13{width:3.744000pt;}
._9{width:4.792320pt;}
._11{width:5.915520pt;}
._12{width:6.885333pt;}
._20{width:7.815040pt;}
._4{width:9.073707pt;}
._5{width:10.342827pt;}
._10{width:11.409280pt;}
._21{width:13.301547pt;}
._c{width:16.623360pt;}
._f{width:17.717760pt;}
._24{width:19.755093pt;}
._8{width:20.946560pt;}
._6{width:22.389120pt;}
._2b{width:24.186240pt;}
._28{width:26.685227pt;}
._19{width:27.630720pt;}
._1a{width:28.720427pt;}
._d{width:31.552000pt;}
._e{width:33.118507pt;}
._23{width:34.458880pt;}
._22{width:35.509760pt;}
._17{width:41.483520pt;}
._18{width:42.784000pt;}
._15{width:51.742080pt;}
._14{width:53.420587pt;}
._2c{width:58.134400pt;}
._2d{width:59.072640pt;}
._2e{width:78.549120pt;}
._25{width:79.979307pt;}
._26{width:80.985387pt;}
._1f{width:83.688320pt;}
._1e{width:84.601813pt;}
._31{width:87.562240pt;}
._16{width:93.777280pt;}
._1b{width:99.665280pt;}
._1c{width:100.591360pt;}
._1d{width:102.211200pt;}
._30{width:126.369920pt;}
._2f{width:127.276160pt;}
._2a{width:149.834880pt;}
._29{width:151.080320pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.280000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.600000pt;}
.y3e{bottom:73.280000pt;}
.y6a{bottom:76.640000pt;}
.y87{bottom:81.760000pt;}
.y21{bottom:86.720000pt;}
.y96{bottom:92.320000pt;}
.y3d{bottom:105.440000pt;}
.y69{bottom:108.800000pt;}
.y86{bottom:113.952000pt;}
.y20{bottom:118.912000pt;}
.y95{bottom:124.672000pt;}
.y55{bottom:127.072000pt;}
.y3c{bottom:137.626667pt;}
.y9f{bottom:137.786667pt;}
.y68{bottom:140.986667pt;}
.y79{bottom:146.106667pt;}
.y1f{bottom:151.226667pt;}
.y94{bottom:156.826667pt;}
.y54{bottom:159.226667pt;}
.y3b{bottom:169.786667pt;}
.y9e{bottom:169.946667pt;}
.y78{bottom:178.266667pt;}
.y1e{bottom:183.386667pt;}
.y93{bottom:188.986667pt;}
.y67{bottom:192.026667pt;}
.y3a{bottom:202.106667pt;}
.y53{bottom:210.266667pt;}
.y77{bottom:210.586667pt;}
.y1d{bottom:215.546667pt;}
.y92{bottom:221.146667pt;}
.y66{bottom:224.026667pt;}
.y85{bottom:229.306667pt;}
.y39{bottom:234.266667pt;}
.y52{bottom:242.266667pt;}
.y76{bottom:242.746667pt;}
.y1c{bottom:247.706667pt;}
.y91{bottom:253.466667pt;}
.y65{bottom:256.186667pt;}
.y84{bottom:261.466667pt;}
.y38{bottom:266.426667pt;}
.y9d{bottom:266.586667pt;}
.y51{bottom:274.426667pt;}
.y75{bottom:274.906667pt;}
.y1b{bottom:280.026667pt;}
.y90{bottom:285.626667pt;}
.y64{bottom:288.506667pt;}
.y83{bottom:293.626667pt;}
.y37{bottom:298.586667pt;}
.y9c{bottom:298.746667pt;}
.y50{bottom:306.586667pt;}
.y74{bottom:307.066667pt;}
.y1a{bottom:312.186667pt;}
.y8f{bottom:317.786667pt;}
.y63{bottom:320.666667pt;}
.y82{bottom:325.786667pt;}
.y36{bottom:330.906667pt;}
.y4f{bottom:338.946667pt;}
.y73{bottom:339.426667pt;}
.y19{bottom:344.386667pt;}
.y62{bottom:352.866667pt;}
.y8e{bottom:357.666667pt;}
.y35{bottom:363.106667pt;}
.y4e{bottom:371.106667pt;}
.y72{bottom:371.586667pt;}
.y18{bottom:376.546667pt;}
.y81{bottom:376.866667pt;}
.y34{bottom:395.266667pt;}
.y9b{bottom:395.426667pt;}
.y4d{bottom:403.266667pt;}
.y61{bottom:403.586667pt;}
.y71{bottom:403.746667pt;}
.y17{bottom:408.866667pt;}
.y8d{bottom:409.026667pt;}
.y33{bottom:427.426667pt;}
.y9a{bottom:427.586667pt;}
.y4c{bottom:435.426667pt;}
.y16{bottom:441.026667pt;}
.y60{bottom:454.786667pt;}
.y32{bottom:459.586667pt;}
.y99{bottom:459.746667pt;}
.y15{bottom:473.186667pt;}
.y80{bottom:473.346667pt;}
.y4b{bottom:486.466667pt;}
.y5f{bottom:486.786667pt;}
.y31{bottom:491.906667pt;}
.y14{bottom:505.346667pt;}
.y7f{bottom:505.506667pt;}
.y70{bottom:505.666667pt;}
.y4a{bottom:518.466667pt;}
.y5e{bottom:518.946667pt;}
.y30{bottom:524.066667pt;}
.y98{bottom:524.226667pt;}
.y13{bottom:537.666667pt;}
.y49{bottom:550.786667pt;}
.y5d{bottom:551.266667pt;}
.y2f{bottom:556.386667pt;}
.y12{bottom:569.853333pt;}
.y48{bottom:582.973333pt;}
.y5c{bottom:583.453333pt;}
.y97{bottom:588.573333pt;}
.y8c{bottom:588.733333pt;}
.y2e{bottom:596.893333pt;}
.y11{bottom:602.013333pt;}
.y6f{bottom:602.173333pt;}
.y47{bottom:615.133333pt;}
.y5b{bottom:615.613333pt;}
.y8b{bottom:620.733333pt;}
.y10{bottom:634.173333pt;}
.y6e{bottom:634.333333pt;}
.y46{bottom:647.293333pt;}
.y5a{bottom:647.773333pt;}
.y2d{bottom:647.933333pt;}
.y8a{bottom:652.893333pt;}
.yf{bottom:666.493333pt;}
.y2c{bottom:680.093333pt;}
.y89{bottom:685.213333pt;}
.y45{bottom:698.333333pt;}
.y6d{bottom:698.653333pt;}
.y2b{bottom:712.253333pt;}
.ye{bottom:716.893333pt;}
.y88{bottom:717.373333pt;}
.y7e{bottom:717.533333pt;}
.y44{bottom:730.333333pt;}
.y6c{bottom:730.813333pt;}
.y2a{bottom:744.413333pt;}
.y7d{bottom:749.533333pt;}
.yd{bottom:749.693333pt;}
.y43{bottom:762.653333pt;}
.y6b{bottom:763.133333pt;}
.y59{bottom:763.293333pt;}
.y29{bottom:776.573333pt;}
.y7c{bottom:781.693333pt;}
.yc{bottom:789.893333pt;}
.y42{bottom:795.013333pt;}
.y58{bottom:795.333333pt;}
.ya1{bottom:798.053333pt;}
.y28{bottom:808.933333pt;}
.y7b{bottom:814.053333pt;}
.y57{bottom:827.493333pt;}
.yb{bottom:830.053333pt;}
.y41{bottom:837.893333pt;}
.ya0{bottom:838.213333pt;}
.y27{bottom:841.093333pt;}
.y7a{bottom:846.213333pt;}
.ya{bottom:870.213333pt;}
.y40{bottom:878.373333pt;}
.y56{bottom:878.533333pt;}
.y26{bottom:891.973333pt;}
.y9{bottom:910.533333pt;}
.y3f{bottom:942.853333pt;}
.y25{bottom:943.013333pt;}
.y8{bottom:950.693333pt;}
.y24{bottom:975.013333pt;}
.y7{bottom:990.853333pt;}
.y23{bottom:1007.173333pt;}
.y6{bottom:1031.040000pt;}
.y22{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.200000pt;}
.h7{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h8{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:14.586667pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.x6{left:107.712000pt;}
.xe{left:109.152000pt;}
.xf{left:133.152000pt;}
.x5{left:184.986667pt;}
.x9{left:219.546667pt;}
.xd{left:274.626667pt;}
.x7{left:289.346667pt;}
.x10{left:367.586667pt;}
.x3{left:390.146667pt;}
.xb{left:447.293333pt;}
.xa{left:472.253333pt;}
.xc{left:492.253333pt;}
.x8{left:514.813333pt;}
}




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