
    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_6770e16443f5ca19bc0a6ce4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_baefa5e9b32f99f81a2b8e55.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_160ef37d539f49d09363f276.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d246cecb320b852cad886fa6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_7e3a625b9f1d119895799c52.woff')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_d31c4b0ee52c69a07d5b279e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2826246c7fb9ae40141673f9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_376b927b9b3b6eefc40828ec.woff')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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_f4d5e38ebdafa2ddad0d2203.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-90.720000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls16{letter-spacing:-5.040000px;}
.ls17{letter-spacing:-1.512000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.lse{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.792000px;}
.lsc{letter-spacing:1.512000px;}
.ls4{letter-spacing:10.080000px;}
.ls15{letter-spacing:27.360000px;}
.ls18{letter-spacing:34.560000px;}
.ls14{letter-spacing:52.560000px;}
.ls3{letter-spacing:62.640000px;}
.lsb{letter-spacing:1016.796000px;}
.lsa{letter-spacing:1024.716000px;}
.ls12{letter-spacing:1174.476000px;}
.ls11{letter-spacing:1178.796000px;}
.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;}
}
.wsa{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws9{word-spacing:-16.488000px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.818800px;}
.ws2{word-spacing:-14.580000px;}
.ws7{word-spacing:-12.960000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-9.311280px;}
._2d{margin-left:-7.848000px;}
._1d{margin-left:-6.619920px;}
._5{margin-left:-4.956000px;}
._4{margin-left:-3.906000px;}
._3{margin-left:-2.862000px;}
._1{margin-left:-1.062000px;}
._0{width:1.451040px;}
._8{width:2.520000px;}
._9{width:3.660960px;}
._a{width:4.752000px;}
._b{width:6.048000px;}
._7{width:7.662960px;}
._6{width:8.688000px;}
._1a{width:9.703920px;}
._13{width:10.764000px;}
._f{width:12.240000px;}
._10{width:13.320000px;}
._11{width:14.514960px;}
._1e{width:16.200000px;}
._c{width:19.872000px;}
._d{width:21.487920px;}
._e{width:23.296080px;}
._24{width:24.885840px;}
._1c{width:26.136000px;}
._17{width:27.144000px;}
._2e{width:28.225920px;}
._16{width:32.054880px;}
._15{width:33.084000px;}
._1f{width:34.554720px;}
._28{width:36.221280px;}
._29{width:38.185680px;}
._1b{width:39.294000px;}
._2b{width:46.656000px;}
._2a{width:47.664000px;}
._2c{width:49.020000px;}
._2f{width:50.472000px;}
._22{width:51.696000px;}
._23{width:53.424000px;}
._20{width:58.176000px;}
._21{width:59.958000px;}
._14{width:60.972000px;}
._12{width:62.400000px;}
._19{width:81.024000px;}
._18{width:82.146000px;}
._26{width:95.616000px;}
._27{width:96.840000px;}
._2{width:1083.004560px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.500000px;}
.y3{bottom:7.740000px;}
.y8f{bottom:10.080000px;}
.y8{bottom:25.200000px;}
.y2{bottom:26.820000px;}
.y5{bottom:29.016000px;}
.y8e{bottom:30.780000px;}
.y89{bottom:98.496000px;}
.y8c{bottom:101.556000px;}
.y37{bottom:119.736000px;}
.y88{bottom:121.356000px;}
.y62{bottom:124.236000px;}
.y36{bottom:142.596000px;}
.y87{bottom:144.036000px;}
.y61{bottom:147.096000px;}
.y35{bottom:165.270000px;}
.y86{bottom:166.890000px;}
.y60{bottom:169.770000px;}
.y34{bottom:188.130000px;}
.y85{bottom:189.570000px;}
.y5f{bottom:192.630000px;}
.y33{bottom:210.810000px;}
.y84{bottom:212.250000px;}
.y5e{bottom:215.310000px;}
.y32{bottom:233.670000px;}
.y83{bottom:235.110000px;}
.y5d{bottom:238.170000px;}
.y31{bottom:256.350000px;}
.y82{bottom:257.790000px;}
.y5c{bottom:260.850000px;}
.y30{bottom:279.255000px;}
.y81{bottom:280.695000px;}
.y5b{bottom:283.755000px;}
.y2f{bottom:301.935000px;}
.y80{bottom:303.375000px;}
.y5a{bottom:306.435000px;}
.y2e{bottom:324.795000px;}
.y7f{bottom:326.235000px;}
.y59{bottom:329.115000px;}
.y2d{bottom:347.475000px;}
.y7e{bottom:348.915000px;}
.y58{bottom:351.975000px;}
.y2c{bottom:370.335000px;}
.y7d{bottom:371.775000px;}
.y57{bottom:374.655000px;}
.y2b{bottom:393.015000px;}
.y7c{bottom:394.455000px;}
.y8b{bottom:397.515000px;}
.y2a{bottom:415.875000px;}
.y7b{bottom:417.315000px;}
.y56{bottom:420.195000px;}
.y29{bottom:438.555000px;}
.y7a{bottom:439.995000px;}
.y55{bottom:443.055000px;}
.y28{bottom:461.415000px;}
.y79{bottom:462.855000px;}
.y54{bottom:465.735000px;}
.y9b{bottom:476.895000px;}
.y27{bottom:484.095000px;}
.y78{bottom:485.535000px;}
.y53{bottom:488.595000px;}
.y9a{bottom:499.575000px;}
.y26{bottom:506.775000px;}
.y77{bottom:508.395000px;}
.y52{bottom:511.275000px;}
.y99{bottom:522.435000px;}
.y25{bottom:529.635000px;}
.y76{bottom:531.075000px;}
.y51{bottom:534.135000px;}
.y98{bottom:543.315000px;}
.y24{bottom:552.315000px;}
.y75{bottom:553.935000px;}
.y50{bottom:556.845000px;}
.y97{bottom:565.845000px;}
.y23{bottom:575.205000px;}
.y74{bottom:576.645000px;}
.y4f{bottom:579.705000px;}
.y96{bottom:586.725000px;}
.y22{bottom:597.885000px;}
.y73{bottom:599.505000px;}
.y8a{bottom:602.385000px;}
.y95{bottom:607.425000px;}
.y21{bottom:620.745000px;}
.y72{bottom:622.185000px;}
.y4e{bottom:625.245000px;}
.y94{bottom:628.125000px;}
.y20{bottom:643.425000px;}
.y71{bottom:645.045000px;}
.y4d{bottom:647.925000px;}
.y93{bottom:648.825000px;}
.y1f{bottom:666.285000px;}
.y70{bottom:667.725000px;}
.y4c{bottom:670.785000px;}
.y92{bottom:671.505000px;}
.y1e{bottom:688.965000px;}
.y6f{bottom:690.585000px;}
.y4b{bottom:693.465000px;}
.y91{bottom:694.185000px;}
.y1d{bottom:711.825000px;}
.y6e{bottom:713.265000px;}
.y90{bottom:715.065000px;}
.y4a{bottom:716.325000px;}
.y8d{bottom:731.265000px;}
.y1c{bottom:734.505000px;}
.y6d{bottom:736.125000px;}
.y49{bottom:739.005000px;}
.y1b{bottom:757.365000px;}
.y6c{bottom:758.805000px;}
.y48{bottom:761.865000px;}
.y1a{bottom:778.245000px;}
.y6b{bottom:781.665000px;}
.y47{bottom:784.545000px;}
.y19{bottom:798.945000px;}
.y6a{bottom:804.345000px;}
.y46{bottom:807.405000px;}
.y18{bottom:819.645000px;}
.y69{bottom:827.205000px;}
.y45{bottom:830.085000px;}
.y17{bottom:840.390000px;}
.y68{bottom:849.930000px;}
.y44{bottom:852.990000px;}
.y16{bottom:861.090000px;}
.y67{bottom:872.790000px;}
.y43{bottom:875.670000px;}
.y15{bottom:881.790000px;}
.y66{bottom:895.470000px;}
.y42{bottom:898.530000px;}
.y14{bottom:902.130000px;}
.y65{bottom:918.510000px;}
.y41{bottom:921.210000px;}
.y13{bottom:922.830000px;}
.y64{bottom:942.810000px;}
.y12{bottom:943.530000px;}
.y40{bottom:944.070000px;}
.y11{bottom:964.590000px;}
.y3f{bottom:966.750000px;}
.y10{bottom:985.290000px;}
.y3e{bottom:989.610000px;}
.yf{bottom:1005.990000px;}
.y3d{bottom:1012.290000px;}
.ye{bottom:1026.690000px;}
.y63{bottom:1035.150000px;}
.yd{bottom:1047.030000px;}
.y3c{bottom:1057.830000px;}
.yc{bottom:1067.730000px;}
.y3b{bottom:1080.690000px;}
.yb{bottom:1088.430000px;}
.y3a{bottom:1103.370000px;}
.ya{bottom:1108.770000px;}
.y7{bottom:1122.300000px;}
.y39{bottom:1126.260000px;}
.y38{bottom:1148.940000px;}
.y6{bottom:1164.060000px;}
.y4{bottom:1171.800000px;}
.y1{bottom:1191.420000px;}
.h6{height:5.650313px;}
.h7{height:41.400000px;}
.h2{height:42.660000px;}
.hc{height:46.980000px;}
.ha{height:50.027344px;}
.h3{height:58.621992px;}
.h4{height:58.651172px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h8{height:72.562500px;}
.hb{height:80.464922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:244.290000px;}
.w6{width:246.493500px;}
.w8{width:248.235000px;}
.w3{width:260.655000px;}
.w5{width:369.435000px;}
.w4{width:369.613500px;}
.w2{width:453.883500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.918500px;}
.x6{left:9.885000px;}
.x2{left:27.934500px;}
.xc{left:50.250000px;}
.x1d{left:65.865000px;}
.xa{left:77.041500px;}
.x5{left:79.185000px;}
.x19{left:84.960000px;}
.x1{left:87.661500px;}
.x1e{left:104.436000px;}
.x7{left:127.476000px;}
.x3{left:138.988500px;}
.x15{left:143.136000px;}
.x17{left:152.130000px;}
.x8{left:153.570000px;}
.xf{left:164.910000px;}
.x11{left:171.210000px;}
.x18{left:183.090000px;}
.x16{left:186.150000px;}
.xd{left:189.390000px;}
.x14{left:224.670000px;}
.x13{left:246.270000px;}
.x12{left:255.090000px;}
.x10{left:258.150000px;}
.xe{left:305.355000px;}
.x1b{left:323.535000px;}
.x1a{left:386.355000px;}
.x9{left:446.475000px;}
.x4{left:544.800000px;}
.x1c{left:567.840000px;}
@media print{
.v1{vertical-align:-80.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls16{letter-spacing:-4.480000pt;}
.ls17{letter-spacing:-1.344000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.704000pt;}
.lsc{letter-spacing:1.344000pt;}
.ls4{letter-spacing:8.960000pt;}
.ls15{letter-spacing:24.320000pt;}
.ls18{letter-spacing:30.720000pt;}
.ls14{letter-spacing:46.720000pt;}
.ls3{letter-spacing:55.680000pt;}
.lsb{letter-spacing:903.818667pt;}
.lsa{letter-spacing:910.858667pt;}
.ls12{letter-spacing:1043.978667pt;}
.ls11{letter-spacing:1047.818667pt;}
.wsa{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.172267pt;}
.ws2{word-spacing:-12.960000pt;}
.ws7{word-spacing:-11.520000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-8.276693pt;}
._2d{margin-left:-6.976000pt;}
._1d{margin-left:-5.884373pt;}
._5{margin-left:-4.405333pt;}
._4{margin-left:-3.472000pt;}
._3{margin-left:-2.544000pt;}
._1{margin-left:-0.944000pt;}
._0{width:1.289813pt;}
._8{width:2.240000pt;}
._9{width:3.254187pt;}
._a{width:4.224000pt;}
._b{width:5.376000pt;}
._7{width:6.811520pt;}
._6{width:7.722667pt;}
._1a{width:8.625707pt;}
._13{width:9.568000pt;}
._f{width:10.880000pt;}
._10{width:11.840000pt;}
._11{width:12.902187pt;}
._1e{width:14.400000pt;}
._c{width:17.664000pt;}
._d{width:19.100373pt;}
._e{width:20.707627pt;}
._24{width:22.120747pt;}
._1c{width:23.232000pt;}
._17{width:24.128000pt;}
._2e{width:25.089707pt;}
._16{width:28.493227pt;}
._15{width:29.408000pt;}
._1f{width:30.715307pt;}
._28{width:32.196693pt;}
._29{width:33.942827pt;}
._1b{width:34.928000pt;}
._2b{width:41.472000pt;}
._2a{width:42.368000pt;}
._2c{width:43.573333pt;}
._2f{width:44.864000pt;}
._22{width:45.952000pt;}
._23{width:47.488000pt;}
._20{width:51.712000pt;}
._21{width:53.296000pt;}
._14{width:54.197333pt;}
._12{width:55.466667pt;}
._19{width:72.021333pt;}
._18{width:73.018667pt;}
._26{width:84.992000pt;}
._27{width:86.080000pt;}
._2{width:962.670720pt;}
.fs2{font-size:5.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.000000pt;}
.y3{bottom:6.880000pt;}
.y8f{bottom:8.960000pt;}
.y8{bottom:22.400000pt;}
.y2{bottom:23.840000pt;}
.y5{bottom:25.792000pt;}
.y8e{bottom:27.360000pt;}
.y89{bottom:87.552000pt;}
.y8c{bottom:90.272000pt;}
.y37{bottom:106.432000pt;}
.y88{bottom:107.872000pt;}
.y62{bottom:110.432000pt;}
.y36{bottom:126.752000pt;}
.y87{bottom:128.032000pt;}
.y61{bottom:130.752000pt;}
.y35{bottom:146.906667pt;}
.y86{bottom:148.346667pt;}
.y60{bottom:150.906667pt;}
.y34{bottom:167.226667pt;}
.y85{bottom:168.506667pt;}
.y5f{bottom:171.226667pt;}
.y33{bottom:187.386667pt;}
.y84{bottom:188.666667pt;}
.y5e{bottom:191.386667pt;}
.y32{bottom:207.706667pt;}
.y83{bottom:208.986667pt;}
.y5d{bottom:211.706667pt;}
.y31{bottom:227.866667pt;}
.y82{bottom:229.146667pt;}
.y5c{bottom:231.866667pt;}
.y30{bottom:248.226667pt;}
.y81{bottom:249.506667pt;}
.y5b{bottom:252.226667pt;}
.y2f{bottom:268.386667pt;}
.y80{bottom:269.666667pt;}
.y5a{bottom:272.386667pt;}
.y2e{bottom:288.706667pt;}
.y7f{bottom:289.986667pt;}
.y59{bottom:292.546667pt;}
.y2d{bottom:308.866667pt;}
.y7e{bottom:310.146667pt;}
.y58{bottom:312.866667pt;}
.y2c{bottom:329.186667pt;}
.y7d{bottom:330.466667pt;}
.y57{bottom:333.026667pt;}
.y2b{bottom:349.346667pt;}
.y7c{bottom:350.626667pt;}
.y8b{bottom:353.346667pt;}
.y2a{bottom:369.666667pt;}
.y7b{bottom:370.946667pt;}
.y56{bottom:373.506667pt;}
.y29{bottom:389.826667pt;}
.y7a{bottom:391.106667pt;}
.y55{bottom:393.826667pt;}
.y28{bottom:410.146667pt;}
.y79{bottom:411.426667pt;}
.y54{bottom:413.986667pt;}
.y9b{bottom:423.906667pt;}
.y27{bottom:430.306667pt;}
.y78{bottom:431.586667pt;}
.y53{bottom:434.306667pt;}
.y9a{bottom:444.066667pt;}
.y26{bottom:450.466667pt;}
.y77{bottom:451.906667pt;}
.y52{bottom:454.466667pt;}
.y99{bottom:464.386667pt;}
.y25{bottom:470.786667pt;}
.y76{bottom:472.066667pt;}
.y51{bottom:474.786667pt;}
.y98{bottom:482.946667pt;}
.y24{bottom:490.946667pt;}
.y75{bottom:492.386667pt;}
.y50{bottom:494.973333pt;}
.y97{bottom:502.973333pt;}
.y23{bottom:511.293333pt;}
.y74{bottom:512.573333pt;}
.y4f{bottom:515.293333pt;}
.y96{bottom:521.533333pt;}
.y22{bottom:531.453333pt;}
.y73{bottom:532.893333pt;}
.y8a{bottom:535.453333pt;}
.y95{bottom:539.933333pt;}
.y21{bottom:551.773333pt;}
.y72{bottom:553.053333pt;}
.y4e{bottom:555.773333pt;}
.y94{bottom:558.333333pt;}
.y20{bottom:571.933333pt;}
.y71{bottom:573.373333pt;}
.y4d{bottom:575.933333pt;}
.y93{bottom:576.733333pt;}
.y1f{bottom:592.253333pt;}
.y70{bottom:593.533333pt;}
.y4c{bottom:596.253333pt;}
.y92{bottom:596.893333pt;}
.y1e{bottom:612.413333pt;}
.y6f{bottom:613.853333pt;}
.y4b{bottom:616.413333pt;}
.y91{bottom:617.053333pt;}
.y1d{bottom:632.733333pt;}
.y6e{bottom:634.013333pt;}
.y90{bottom:635.613333pt;}
.y4a{bottom:636.733333pt;}
.y8d{bottom:650.013333pt;}
.y1c{bottom:652.893333pt;}
.y6d{bottom:654.333333pt;}
.y49{bottom:656.893333pt;}
.y1b{bottom:673.213333pt;}
.y6c{bottom:674.493333pt;}
.y48{bottom:677.213333pt;}
.y1a{bottom:691.773333pt;}
.y6b{bottom:694.813333pt;}
.y47{bottom:697.373333pt;}
.y19{bottom:710.173333pt;}
.y6a{bottom:714.973333pt;}
.y46{bottom:717.693333pt;}
.y18{bottom:728.573333pt;}
.y69{bottom:735.293333pt;}
.y45{bottom:737.853333pt;}
.y17{bottom:747.013333pt;}
.y68{bottom:755.493333pt;}
.y44{bottom:758.213333pt;}
.y16{bottom:765.413333pt;}
.y67{bottom:775.813333pt;}
.y43{bottom:778.373333pt;}
.y15{bottom:783.813333pt;}
.y66{bottom:795.973333pt;}
.y42{bottom:798.693333pt;}
.y14{bottom:801.893333pt;}
.y65{bottom:816.453333pt;}
.y41{bottom:818.853333pt;}
.y13{bottom:820.293333pt;}
.y64{bottom:838.053333pt;}
.y12{bottom:838.693333pt;}
.y40{bottom:839.173333pt;}
.y11{bottom:857.413333pt;}
.y3f{bottom:859.333333pt;}
.y10{bottom:875.813333pt;}
.y3e{bottom:879.653333pt;}
.yf{bottom:894.213333pt;}
.y3d{bottom:899.813333pt;}
.ye{bottom:912.613333pt;}
.y63{bottom:920.133333pt;}
.yd{bottom:930.693333pt;}
.y3c{bottom:940.293333pt;}
.yc{bottom:949.093333pt;}
.y3b{bottom:960.613333pt;}
.yb{bottom:967.493333pt;}
.y3a{bottom:980.773333pt;}
.ya{bottom:985.573333pt;}
.y7{bottom:997.600000pt;}
.y39{bottom:1001.120000pt;}
.y38{bottom:1021.280000pt;}
.y6{bottom:1034.720000pt;}
.y4{bottom:1041.600000pt;}
.y1{bottom:1059.040000pt;}
.h6{height:5.022500pt;}
.h7{height:36.800000pt;}
.h2{height:37.920000pt;}
.hc{height:41.760000pt;}
.ha{height:44.468750pt;}
.h3{height:52.108438pt;}
.h4{height:52.134375pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h8{height:64.500000pt;}
.hb{height:71.524375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:217.146667pt;}
.w6{width:219.105333pt;}
.w8{width:220.653333pt;}
.w3{width:231.693333pt;}
.w5{width:328.386667pt;}
.w4{width:328.545333pt;}
.w2{width:403.452000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.038667pt;}
.x6{left:8.786667pt;}
.x2{left:24.830667pt;}
.xc{left:44.666667pt;}
.x1d{left:58.546667pt;}
.xa{left:68.481333pt;}
.x5{left:70.386667pt;}
.x19{left:75.520000pt;}
.x1{left:77.921333pt;}
.x1e{left:92.832000pt;}
.x7{left:113.312000pt;}
.x3{left:123.545333pt;}
.x15{left:127.232000pt;}
.x17{left:135.226667pt;}
.x8{left:136.506667pt;}
.xf{left:146.586667pt;}
.x11{left:152.186667pt;}
.x18{left:162.746667pt;}
.x16{left:165.466667pt;}
.xd{left:168.346667pt;}
.x14{left:199.706667pt;}
.x13{left:218.906667pt;}
.x12{left:226.746667pt;}
.x10{left:229.466667pt;}
.xe{left:271.426667pt;}
.x1b{left:287.586667pt;}
.x1a{left:343.426667pt;}
.x9{left:396.866667pt;}
.x4{left:484.266667pt;}
.x1c{left:504.746667pt;}
}




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