
    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_c065ea2bc75cf7de3dc459e8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e530f44d9f59d50aa525dc99.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_c57749564ac179c0ab220d09.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4594e51591ce596efa5f2e9c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_eb9c543cb67078fd4a242a3b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d80db609a1da937d6ea8114.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_4638587fac5b416e381617c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:33.120000px;}
.ls4{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.220800px;}
.lse{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.089400px;}
.lsc{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.220800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:3.024000px;}
.ls10{letter-spacing:3.600000px;}
.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;}
}
.wse{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.440800px;}
.ws1{word-spacing:-14.220000px;}
.ws3{word-spacing:-13.999200px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:-10.529400px;}
.wsc{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-1.150320px;}
._0{width:1.207920px;}
._9{width:2.378880px;}
._c{width:4.261200px;}
._3{width:5.556000px;}
._4{width:6.632160px;}
._14{width:7.704000px;}
._15{width:8.928000px;}
._1a{width:10.063680px;}
._f{width:11.102640px;}
._16{width:12.168000px;}
._1{width:13.895760px;}
._1b{width:14.988720px;}
._11{width:16.084320px;}
._12{width:17.496960px;}
._17{width:19.152000px;}
._a{width:20.676000px;}
._b{width:22.330800px;}
._10{width:23.656800px;}
._e{width:24.727920px;}
._d{width:25.995600px;}
._1c{width:27.277200px;}
._1d{width:29.088000px;}
._1e{width:30.096000px;}
._7{width:32.196000px;}
._8{width:33.473520px;}
._13{width:35.286480px;}
._18{width:46.008000px;}
._19{width:47.416080px;}
._6{width:110.745360px;}
._5{width:111.826080px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.600000px;}
.y72{bottom:3.780000px;}
.y83{bottom:5.400000px;}
.y76{bottom:7.380000px;}
.y7a{bottom:7.560000px;}
.y78{bottom:9.000000px;}
.y77{bottom:11.160000px;}
.y7b{bottom:11.340000px;}
.y70{bottom:13.140000px;}
.y81{bottom:13.320000px;}
.y73{bottom:14.760000px;}
.y9c{bottom:17.310000px;}
.y8b{bottom:17.460000px;}
.y85{bottom:22.500000px;}
.y71{bottom:22.680000px;}
.y2{bottom:58.320000px;}
.y1{bottom:74.700000px;}
.y3c{bottom:109.260000px;}
.y6e{bottom:124.920000px;}
.y3b{bottom:129.960000px;}
.y6d{bottom:145.620000px;}
.y3a{bottom:150.660000px;}
.y6c{bottom:166.350000px;}
.y39{bottom:171.390000px;}
.y6b{bottom:187.050000px;}
.y38{bottom:192.090000px;}
.y6a{bottom:207.750000px;}
.y37{bottom:212.790000px;}
.y69{bottom:228.450000px;}
.y36{bottom:233.490000px;}
.y68{bottom:249.150000px;}
.y35{bottom:254.190000px;}
.y67{bottom:269.850000px;}
.y34{bottom:274.890000px;}
.y66{bottom:290.550000px;}
.y33{bottom:295.590000px;}
.y9a{bottom:311.070000px;}
.y65{bottom:311.250000px;}
.y32{bottom:316.290000px;}
.y99{bottom:331.770000px;}
.y64{bottom:331.950000px;}
.y31{bottom:336.990000px;}
.y98{bottom:352.470000px;}
.y63{bottom:352.650000px;}
.y30{bottom:357.690000px;}
.y97{bottom:373.170000px;}
.y62{bottom:373.350000px;}
.y2f{bottom:378.390000px;}
.y96{bottom:393.870000px;}
.y61{bottom:394.050000px;}
.y2e{bottom:399.090000px;}
.y8a{bottom:401.295000px;}
.y95{bottom:414.615000px;}
.y60{bottom:414.795000px;}
.y2d{bottom:419.835000px;}
.y89{bottom:421.995000px;}
.y94{bottom:435.315000px;}
.y5f{bottom:435.495000px;}
.y88{bottom:439.095000px;}
.y2c{bottom:440.535000px;}
.y5e{bottom:456.015000px;}
.y87{bottom:456.555000px;}
.y2b{bottom:461.235000px;}
.y5d{bottom:476.715000px;}
.y2a{bottom:481.935000px;}
.y84{bottom:487.695000px;}
.y5c{bottom:497.415000px;}
.y29{bottom:501.915000px;}
.y5b{bottom:518.115000px;}
.y28{bottom:519.195000px;}
.y82{bottom:534.135000px;}
.y27{bottom:536.475000px;}
.y5a{bottom:538.815000px;}
.y26{bottom:553.755000px;}
.y93{bottom:559.335000px;}
.y59{bottom:559.515000px;}
.y80{bottom:565.275000px;}
.y25{bottom:571.035000px;}
.y92{bottom:580.035000px;}
.y58{bottom:580.215000px;}
.y24{bottom:588.135000px;}
.y57{bottom:600.915000px;}
.y91{bottom:601.455000px;}
.y23{bottom:605.415000px;}
.y7f{bottom:612.435000px;}
.y90{bottom:617.835000px;}
.y56{bottom:621.615000px;}
.y22{bottom:622.695000px;}
.y7e{bottom:633.135000px;}
.y8f{bottom:634.575000px;}
.y21{bottom:639.975000px;}
.y55{bottom:642.315000px;}
.y7d{bottom:654.585000px;}
.y20{bottom:657.285000px;}
.y54{bottom:663.045000px;}
.y7c{bottom:667.005000px;}
.y1f{bottom:674.385000px;}
.y53{bottom:683.745000px;}
.y1e{bottom:691.665000px;}
.y79{bottom:693.465000px;}
.y52{bottom:704.445000px;}
.y1d{bottom:708.945000px;}
.y75{bottom:720.105000px;}
.y51{bottom:725.145000px;}
.y1c{bottom:726.225000px;}
.y1b{bottom:743.505000px;}
.y50{bottom:745.845000px;}
.y74{bottom:746.565000px;}
.y1a{bottom:760.785000px;}
.y4f{bottom:766.545000px;}
.y19{bottom:777.885000px;}
.y6f{bottom:785.625000px;}
.y4e{bottom:787.245000px;}
.y18{bottom:795.165000px;}
.y4d{bottom:807.945000px;}
.y17{bottom:812.445000px;}
.y9d{bottom:827.565000px;}
.y4c{bottom:828.645000px;}
.y16{bottom:829.725000px;}
.y15{bottom:847.005000px;}
.y4b{bottom:849.345000px;}
.y8e{bottom:863.565000px;}
.y14{bottom:864.105000px;}
.y4a{bottom:870.045000px;}
.y13{bottom:880.485000px;}
.y8d{bottom:884.265000px;}
.y49{bottom:890.745000px;}
.y12{bottom:896.865000px;}
.y8c{bottom:901.050000px;}
.y48{bottom:911.490000px;}
.y11{bottom:913.290000px;}
.y10{bottom:929.670000px;}
.y47{bottom:932.190000px;}
.yf{bottom:946.050000px;}
.y46{bottom:952.890000px;}
.ye{bottom:962.430000px;}
.y45{bottom:973.590000px;}
.yd{bottom:978.990000px;}
.y44{bottom:994.290000px;}
.yc{bottom:996.270000px;}
.yb{bottom:1013.370000px;}
.y43{bottom:1014.990000px;}
.ya{bottom:1030.650000px;}
.y42{bottom:1035.690000px;}
.y9{bottom:1047.930000px;}
.y41{bottom:1056.390000px;}
.y8{bottom:1065.210000px;}
.y40{bottom:1077.090000px;}
.y7{bottom:1084.470000px;}
.y3f{bottom:1097.790000px;}
.y6{bottom:1112.010000px;}
.y3e{bottom:1118.490000px;}
.y9b{bottom:1135.410000px;}
.y3d{bottom:1139.190000px;}
.y5{bottom:1139.730000px;}
.y4{bottom:1165.320000px;}
.y3{bottom:1182.600000px;}
.h12{height:22.500000px;}
.hf{height:26.460000px;}
.h10{height:26.640000px;}
.h16{height:34.056000px;}
.h14{height:34.200000px;}
.h13{height:37.800000px;}
.hb{height:37.980000px;}
.h11{height:38.160000px;}
.h3{height:39.830273px;}
.h6{height:41.132461px;}
.h7{height:41.576836px;}
.h8{height:42.164648px;}
.h4{height:43.215117px;}
.hd{height:44.149219px;}
.hc{height:46.736719px;}
.he{height:47.901094px;}
.h9{height:50.800781px;}
.h2{height:52.066406px;}
.h15{height:52.628906px;}
.ha{height:62.244492px;}
.h5{height:67.565039px;}
.h1{height:1262.250000px;}
.h0{height:1262.340000px;}
.w7{width:28.440000px;}
.w10{width:48.600000px;}
.wf{width:48.636000px;}
.wc{width:97.740000px;}
.wb{width:97.956000px;}
.wd{width:98.136000px;}
.w9{width:100.080000px;}
.w3{width:111.780000px;}
.w4{width:115.416000px;}
.w5{width:115.596000px;}
.we{width:134.496000px;}
.w8{width:138.456000px;}
.w6{width:158.430000px;}
.wa{width:194.430000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x9{left:9.360000px;}
.x7{left:10.800000px;}
.x12{left:14.220000px;}
.x23{left:15.480000px;}
.x26{left:16.920000px;}
.x27{left:19.620000px;}
.x20{left:22.860000px;}
.xf{left:27.180000px;}
.xc{left:30.240000px;}
.x1a{left:31.320000px;}
.x1e{left:32.940000px;}
.x19{left:34.020000px;}
.x14{left:35.100000px;}
.xa{left:36.225000px;}
.x28{left:37.980000px;}
.x15{left:40.314000px;}
.x24{left:42.840000px;}
.x16{left:45.405000px;}
.xd{left:46.800000px;}
.x17{left:49.140000px;}
.x18{left:53.640000px;}
.x2{left:55.259987px;}
.x25{left:56.340000px;}
.x10{left:57.600000px;}
.x3{left:84.995987px;}
.x2d{left:90.036000px;}
.x1c{left:97.245000px;}
.x6{left:112.716000px;}
.x4{left:148.895987px;}
.x1b{left:185.430000px;}
.x2a{left:201.990000px;}
.x8{left:224.490000px;}
.xb{left:339.915000px;}
.x1d{left:379.875000px;}
.x2e{left:396.075000px;}
.x1{left:411.374987px;}
.x5{left:442.184987px;}
.x29{left:446.684987px;}
.xe{left:455.505000px;}
.x1f{left:477.825000px;}
.x21{left:575.565000px;}
.x11{left:613.950000px;}
.x13{left:642.390000px;}
.x22{left:673.710000px;}
.x2b{left:701.789987px;}
.x2c{left:807.299987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.196267pt;}
.lse{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.079467pt;}
.lsc{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.196267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:2.688000pt;}
.ls10{letter-spacing:3.200000pt;}
.wse{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.836267pt;}
.ws1{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.443733pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:-9.359467pt;}
.wsc{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-1.022507pt;}
._0{width:1.073707pt;}
._9{width:2.114560pt;}
._c{width:3.787733pt;}
._3{width:4.938667pt;}
._4{width:5.895253pt;}
._14{width:6.848000pt;}
._15{width:7.936000pt;}
._1a{width:8.945493pt;}
._f{width:9.869013pt;}
._16{width:10.816000pt;}
._1{width:12.351787pt;}
._1b{width:13.323307pt;}
._11{width:14.297173pt;}
._12{width:15.552853pt;}
._17{width:17.024000pt;}
._a{width:18.378667pt;}
._b{width:19.849600pt;}
._10{width:21.028267pt;}
._e{width:21.980373pt;}
._d{width:23.107200pt;}
._1c{width:24.246400pt;}
._1d{width:25.856000pt;}
._1e{width:26.752000pt;}
._7{width:28.618667pt;}
._8{width:29.754240pt;}
._13{width:31.365760pt;}
._18{width:40.896000pt;}
._19{width:42.147627pt;}
._6{width:98.440320pt;}
._5{width:99.400960pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.200000pt;}
.y72{bottom:3.360000pt;}
.y83{bottom:4.800000pt;}
.y76{bottom:6.560000pt;}
.y7a{bottom:6.720000pt;}
.y78{bottom:8.000000pt;}
.y77{bottom:9.920000pt;}
.y7b{bottom:10.080000pt;}
.y70{bottom:11.680000pt;}
.y81{bottom:11.840000pt;}
.y73{bottom:13.120000pt;}
.y9c{bottom:15.386667pt;}
.y8b{bottom:15.520000pt;}
.y85{bottom:20.000000pt;}
.y71{bottom:20.160000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:66.400000pt;}
.y3c{bottom:97.120000pt;}
.y6e{bottom:111.040000pt;}
.y3b{bottom:115.520000pt;}
.y6d{bottom:129.440000pt;}
.y3a{bottom:133.920000pt;}
.y6c{bottom:147.866667pt;}
.y39{bottom:152.346667pt;}
.y6b{bottom:166.266667pt;}
.y38{bottom:170.746667pt;}
.y6a{bottom:184.666667pt;}
.y37{bottom:189.146667pt;}
.y69{bottom:203.066667pt;}
.y36{bottom:207.546667pt;}
.y68{bottom:221.466667pt;}
.y35{bottom:225.946667pt;}
.y67{bottom:239.866667pt;}
.y34{bottom:244.346667pt;}
.y66{bottom:258.266667pt;}
.y33{bottom:262.746667pt;}
.y9a{bottom:276.506667pt;}
.y65{bottom:276.666667pt;}
.y32{bottom:281.146667pt;}
.y99{bottom:294.906667pt;}
.y64{bottom:295.066667pt;}
.y31{bottom:299.546667pt;}
.y98{bottom:313.306667pt;}
.y63{bottom:313.466667pt;}
.y30{bottom:317.946667pt;}
.y97{bottom:331.706667pt;}
.y62{bottom:331.866667pt;}
.y2f{bottom:336.346667pt;}
.y96{bottom:350.106667pt;}
.y61{bottom:350.266667pt;}
.y2e{bottom:354.746667pt;}
.y8a{bottom:356.706667pt;}
.y95{bottom:368.546667pt;}
.y60{bottom:368.706667pt;}
.y2d{bottom:373.186667pt;}
.y89{bottom:375.106667pt;}
.y94{bottom:386.946667pt;}
.y5f{bottom:387.106667pt;}
.y88{bottom:390.306667pt;}
.y2c{bottom:391.586667pt;}
.y5e{bottom:405.346667pt;}
.y87{bottom:405.826667pt;}
.y2b{bottom:409.986667pt;}
.y5d{bottom:423.746667pt;}
.y2a{bottom:428.386667pt;}
.y84{bottom:433.506667pt;}
.y5c{bottom:442.146667pt;}
.y29{bottom:446.146667pt;}
.y5b{bottom:460.546667pt;}
.y28{bottom:461.506667pt;}
.y82{bottom:474.786667pt;}
.y27{bottom:476.866667pt;}
.y5a{bottom:478.946667pt;}
.y26{bottom:492.226667pt;}
.y93{bottom:497.186667pt;}
.y59{bottom:497.346667pt;}
.y80{bottom:502.466667pt;}
.y25{bottom:507.586667pt;}
.y92{bottom:515.586667pt;}
.y58{bottom:515.746667pt;}
.y24{bottom:522.786667pt;}
.y57{bottom:534.146667pt;}
.y91{bottom:534.626667pt;}
.y23{bottom:538.146667pt;}
.y7f{bottom:544.386667pt;}
.y90{bottom:549.186667pt;}
.y56{bottom:552.546667pt;}
.y22{bottom:553.506667pt;}
.y7e{bottom:562.786667pt;}
.y8f{bottom:564.066667pt;}
.y21{bottom:568.866667pt;}
.y55{bottom:570.946667pt;}
.y7d{bottom:581.853333pt;}
.y20{bottom:584.253333pt;}
.y54{bottom:589.373333pt;}
.y7c{bottom:592.893333pt;}
.y1f{bottom:599.453333pt;}
.y53{bottom:607.773333pt;}
.y1e{bottom:614.813333pt;}
.y79{bottom:616.413333pt;}
.y52{bottom:626.173333pt;}
.y1d{bottom:630.173333pt;}
.y75{bottom:640.093333pt;}
.y51{bottom:644.573333pt;}
.y1c{bottom:645.533333pt;}
.y1b{bottom:660.893333pt;}
.y50{bottom:662.973333pt;}
.y74{bottom:663.613333pt;}
.y1a{bottom:676.253333pt;}
.y4f{bottom:681.373333pt;}
.y19{bottom:691.453333pt;}
.y6f{bottom:698.333333pt;}
.y4e{bottom:699.773333pt;}
.y18{bottom:706.813333pt;}
.y4d{bottom:718.173333pt;}
.y17{bottom:722.173333pt;}
.y9d{bottom:735.613333pt;}
.y4c{bottom:736.573333pt;}
.y16{bottom:737.533333pt;}
.y15{bottom:752.893333pt;}
.y4b{bottom:754.973333pt;}
.y8e{bottom:767.613333pt;}
.y14{bottom:768.093333pt;}
.y4a{bottom:773.373333pt;}
.y13{bottom:782.653333pt;}
.y8d{bottom:786.013333pt;}
.y49{bottom:791.773333pt;}
.y12{bottom:797.213333pt;}
.y8c{bottom:800.933333pt;}
.y48{bottom:810.213333pt;}
.y11{bottom:811.813333pt;}
.y10{bottom:826.373333pt;}
.y47{bottom:828.613333pt;}
.yf{bottom:840.933333pt;}
.y46{bottom:847.013333pt;}
.ye{bottom:855.493333pt;}
.y45{bottom:865.413333pt;}
.yd{bottom:870.213333pt;}
.y44{bottom:883.813333pt;}
.yc{bottom:885.573333pt;}
.yb{bottom:900.773333pt;}
.y43{bottom:902.213333pt;}
.ya{bottom:916.133333pt;}
.y42{bottom:920.613333pt;}
.y9{bottom:931.493333pt;}
.y41{bottom:939.013333pt;}
.y8{bottom:946.853333pt;}
.y40{bottom:957.413333pt;}
.y7{bottom:963.973333pt;}
.y3f{bottom:975.813333pt;}
.y6{bottom:988.453333pt;}
.y3e{bottom:994.213333pt;}
.y9b{bottom:1009.253333pt;}
.y3d{bottom:1012.613333pt;}
.y5{bottom:1013.093333pt;}
.y4{bottom:1035.840000pt;}
.y3{bottom:1051.200000pt;}
.h12{height:20.000000pt;}
.hf{height:23.520000pt;}
.h10{height:23.680000pt;}
.h16{height:30.272000pt;}
.h14{height:30.400000pt;}
.h13{height:33.600000pt;}
.hb{height:33.760000pt;}
.h11{height:33.920000pt;}
.h3{height:35.404688pt;}
.h6{height:36.562188pt;}
.h7{height:36.957187pt;}
.h8{height:37.479688pt;}
.h4{height:38.413438pt;}
.hd{height:39.243750pt;}
.hc{height:41.543750pt;}
.he{height:42.578750pt;}
.h9{height:45.156250pt;}
.h2{height:46.281250pt;}
.h15{height:46.781250pt;}
.ha{height:55.328438pt;}
.h5{height:60.057813pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.080000pt;}
.w7{width:25.280000pt;}
.w10{width:43.200000pt;}
.wf{width:43.232000pt;}
.wc{width:86.880000pt;}
.wb{width:87.072000pt;}
.wd{width:87.232000pt;}
.w9{width:88.960000pt;}
.w3{width:99.360000pt;}
.w4{width:102.592000pt;}
.w5{width:102.752000pt;}
.we{width:119.552000pt;}
.w8{width:123.072000pt;}
.w6{width:140.826667pt;}
.wa{width:172.826667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x9{left:8.320000pt;}
.x7{left:9.600000pt;}
.x12{left:12.640000pt;}
.x23{left:13.760000pt;}
.x26{left:15.040000pt;}
.x27{left:17.440000pt;}
.x20{left:20.320000pt;}
.xf{left:24.160000pt;}
.xc{left:26.880000pt;}
.x1a{left:27.840000pt;}
.x1e{left:29.280000pt;}
.x19{left:30.240000pt;}
.x14{left:31.200000pt;}
.xa{left:32.200000pt;}
.x28{left:33.760000pt;}
.x15{left:35.834667pt;}
.x24{left:38.080000pt;}
.x16{left:40.360000pt;}
.xd{left:41.600000pt;}
.x17{left:43.680000pt;}
.x18{left:47.680000pt;}
.x2{left:49.119988pt;}
.x25{left:50.080000pt;}
.x10{left:51.200000pt;}
.x3{left:75.551988pt;}
.x2d{left:80.032000pt;}
.x1c{left:86.440000pt;}
.x6{left:100.192000pt;}
.x4{left:132.351988pt;}
.x1b{left:164.826667pt;}
.x2a{left:179.546667pt;}
.x8{left:199.546667pt;}
.xb{left:302.146667pt;}
.x1d{left:337.666667pt;}
.x2e{left:352.066667pt;}
.x1{left:365.666655pt;}
.x5{left:393.053321pt;}
.x29{left:397.053321pt;}
.xe{left:404.893333pt;}
.x1f{left:424.733333pt;}
.x21{left:511.613333pt;}
.x11{left:545.733333pt;}
.x13{left:571.013333pt;}
.x22{left:598.853333pt;}
.x2b{left:623.813321pt;}
.x2c{left:717.599988pt;}
}




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