
    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_2c87d70034de48282d0a8740.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_06a9f1f652fa591439ea6cb6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_82d3d246b764b74972623063.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_1cabec2faca5dc7fba4125d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_64eb754eea5e8eef6257e6e6.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_cb30d0bbea03562e4047aa30.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b9558befa5016b7c8ef6976.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_9b668da8259aeeca92951f88.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3737743726a6fc2d9198ab39.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dd70fc15e98f0f1c248a8a03.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.lse{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.720000px;}
.ls2{letter-spacing:15.840000px;}
.lsd{letter-spacing:21.600000px;}
.lsb{letter-spacing:23.760000px;}
.lsc{letter-spacing:31.860000px;}
.lsa{letter-spacing:34.128000px;}
.ls3{letter-spacing:38.880000px;}
.ls8{letter-spacing:64.026720px;}
.ls0{letter-spacing:122.520000px;}
.ls1{letter-spacing:194.544000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.031920px;}
.ws2{word-spacing:-19.980000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.120240px;}
.ws3{word-spacing:0.000000px;}
._18{margin-left:-2.327760px;}
._0{margin-left:-1.126080px;}
._1{width:1.462080px;}
._4{width:2.929920px;}
._3{width:4.078080px;}
._2{width:5.376000px;}
._a{width:6.648000px;}
._17{width:8.656560px;}
._16{width:9.947520px;}
._9{width:11.064000px;}
._7{width:12.816000px;}
._6{width:13.896000px;}
._10{width:15.154080px;}
._f{width:16.284000px;}
._1c{width:18.280080px;}
._b{width:20.160000px;}
._c{width:21.360000px;}
._e{width:22.752000px;}
._1d{width:23.779440px;}
._19{width:25.808400px;}
._5{width:27.216000px;}
._1a{width:28.608000px;}
._1b{width:29.702880px;}
._1f{width:31.464480px;}
._11{width:32.688000px;}
._12{width:34.102080px;}
._d{width:35.136000px;}
._13{width:38.304000px;}
._14{width:39.589920px;}
._20{width:41.280480px;}
._1e{width:45.714720px;}
._8{width:176.544000px;}
._15{width:191.484000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.380000px;}
.y4{bottom:8.100000px;}
.y7{bottom:8.820000px;}
.y5{bottom:15.660000px;}
.y2{bottom:57.600000px;}
.y59{bottom:88.596000px;}
.y72{bottom:96.156000px;}
.y58{bottom:116.316000px;}
.y71{bottom:116.856000px;}
.y34{bottom:121.716000px;}
.y70{bottom:137.556000px;}
.y57{bottom:143.676000px;}
.y5b{bottom:144.036000px;}
.y33{bottom:149.436000px;}
.y6f{bottom:158.250000px;}
.y56{bottom:171.570000px;}
.y5a{bottom:171.930000px;}
.y32{bottom:177.150000px;}
.y6e{bottom:178.950000px;}
.y55{bottom:199.650000px;}
.y31{bottom:205.050000px;}
.y6d{bottom:220.350000px;}
.y54{bottom:227.370000px;}
.y30{bottom:232.770000px;}
.y6c{bottom:241.050000px;}
.y53{bottom:255.270000px;}
.y2f{bottom:260.490000px;}
.y6b{bottom:261.750000px;}
.y6a{bottom:282.450000px;}
.y52{bottom:282.990000px;}
.y2e{bottom:284.070000px;}
.y69{bottom:303.150000px;}
.y2d{bottom:304.770000px;}
.y51{bottom:310.710000px;}
.y68{bottom:323.850000px;}
.y2c{bottom:325.470000px;}
.y50{bottom:338.475000px;}
.y67{bottom:344.595000px;}
.y2b{bottom:346.215000px;}
.y66{bottom:365.295000px;}
.y4f{bottom:366.375000px;}
.y2a{bottom:366.915000px;}
.y65{bottom:385.995000px;}
.y29{bottom:387.615000px;}
.y4e{bottom:394.095000px;}
.y64{bottom:406.695000px;}
.y28{bottom:408.315000px;}
.y4d{bottom:421.815000px;}
.y63{bottom:427.395000px;}
.y27{bottom:429.015000px;}
.y62{bottom:448.095000px;}
.y26{bottom:449.715000px;}
.y61{bottom:468.795000px;}
.y25{bottom:470.415000px;}
.y4c{bottom:477.435000px;}
.y60{bottom:489.495000px;}
.y24{bottom:491.115000px;}
.y4b{bottom:505.155000px;}
.y5f{bottom:510.195000px;}
.y23{bottom:511.815000px;}
.y5e{bottom:530.895000px;}
.y22{bottom:532.515000px;}
.y4a{bottom:532.875000px;}
.y5d{bottom:551.235000px;}
.y21{bottom:553.215000px;}
.y49{bottom:560.775000px;}
.y5c{bottom:570.135000px;}
.y20{bottom:573.915000px;}
.y48{bottom:588.495000px;}
.y1f{bottom:594.615000px;}
.y1e{bottom:615.345000px;}
.y47{bottom:616.245000px;}
.y1d{bottom:636.045000px;}
.y46{bottom:644.145000px;}
.y45{bottom:671.865000px;}
.y1c{bottom:677.445000px;}
.y1b{bottom:698.145000px;}
.y44{bottom:699.585000px;}
.y1a{bottom:718.845000px;}
.y43{bottom:727.305000px;}
.y19{bottom:739.545000px;}
.y42{bottom:755.205000px;}
.y18{bottom:760.245000px;}
.y17{bottom:780.945000px;}
.y41{bottom:782.925000px;}
.y16{bottom:801.645000px;}
.y40{bottom:810.645000px;}
.y15{bottom:822.345000px;}
.y3f{bottom:838.365000px;}
.y14{bottom:843.045000px;}
.y13{bottom:863.790000px;}
.y3e{bottom:866.310000px;}
.y12{bottom:884.490000px;}
.y3d{bottom:894.030000px;}
.y11{bottom:905.190000px;}
.y3c{bottom:921.750000px;}
.y10{bottom:925.890000px;}
.y3b{bottom:949.650000px;}
.yf{bottom:967.290000px;}
.y3a{bottom:977.370000px;}
.ye{bottom:987.990000px;}
.y79{bottom:996.810000px;}
.y39{bottom:1005.090000px;}
.yd{bottom:1008.690000px;}
.y78{bottom:1015.530000px;}
.yc{bottom:1029.390000px;}
.y38{bottom:1032.810000px;}
.y77{bottom:1036.230000px;}
.yb{bottom:1049.730000px;}
.y76{bottom:1056.930000px;}
.y37{bottom:1060.710000px;}
.ya{bottom:1070.430000px;}
.y75{bottom:1077.630000px;}
.y36{bottom:1088.430000px;}
.y9{bottom:1091.670000px;}
.y74{bottom:1098.330000px;}
.y8{bottom:1115.790000px;}
.y35{bottom:1116.150000px;}
.y73{bottom:1119.030000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h3{height:33.120000px;}
.h7{height:38.517900px;}
.he{height:42.086250px;}
.h5{height:44.098500px;}
.hc{height:54.878906px;}
.h11{height:59.439023px;}
.h2{height:65.884219px;}
.hb{height:70.628906px;}
.h10{height:70.664062px;}
.ha{height:72.562500px;}
.hf{height:74.004654px;}
.h8{height:78.626953px;}
.hd{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:66.225000px;}
.w4{width:66.270000px;}
.w3{width:77.436000px;}
.w5{width:95.565000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x8{left:25.185000px;}
.x3{left:26.460000px;}
.x1{left:63.900000px;}
.x13{left:68.940000px;}
.x11{left:90.900000px;}
.x14{left:95.976000px;}
.x10{left:117.036000px;}
.x9{left:121.356000px;}
.xa{left:161.670000px;}
.x7{left:175.185000px;}
.xe{left:258.870000px;}
.xf{left:297.795000px;}
.xc{left:315.255000px;}
.xd{left:364.035000px;}
.x12{left:407.055000px;}
.x4{left:427.755000px;}
.xb{left:452.055000px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls2{letter-spacing:14.080000pt;}
.lsd{letter-spacing:19.200000pt;}
.lsb{letter-spacing:21.120000pt;}
.lsc{letter-spacing:28.320000pt;}
.lsa{letter-spacing:30.336000pt;}
.ls3{letter-spacing:34.560000pt;}
.ls8{letter-spacing:56.912640pt;}
.ls0{letter-spacing:108.906667pt;}
.ls1{letter-spacing:172.928000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.695040pt;}
.ws2{word-spacing:-17.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws3{word-spacing:0.000000pt;}
._18{margin-left:-2.069120pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.299627pt;}
._4{width:2.604373pt;}
._3{width:3.624960pt;}
._2{width:4.778667pt;}
._a{width:5.909333pt;}
._17{width:7.694720pt;}
._16{width:8.842240pt;}
._9{width:9.834667pt;}
._7{width:11.392000pt;}
._6{width:12.352000pt;}
._10{width:13.470293pt;}
._f{width:14.474667pt;}
._1c{width:16.248960pt;}
._b{width:17.920000pt;}
._c{width:18.986667pt;}
._e{width:20.224000pt;}
._1d{width:21.137280pt;}
._19{width:22.940800pt;}
._5{width:24.192000pt;}
._1a{width:25.429333pt;}
._1b{width:26.402560pt;}
._1f{width:27.968427pt;}
._11{width:29.056000pt;}
._12{width:30.312960pt;}
._d{width:31.232000pt;}
._13{width:34.048000pt;}
._14{width:35.191040pt;}
._20{width:36.693760pt;}
._1e{width:40.635307pt;}
._8{width:156.928000pt;}
._15{width:170.208000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.560000pt;}
.y4{bottom:7.200000pt;}
.y7{bottom:7.840000pt;}
.y5{bottom:13.920000pt;}
.y2{bottom:51.200000pt;}
.y59{bottom:78.752000pt;}
.y72{bottom:85.472000pt;}
.y58{bottom:103.392000pt;}
.y71{bottom:103.872000pt;}
.y34{bottom:108.192000pt;}
.y70{bottom:122.272000pt;}
.y57{bottom:127.712000pt;}
.y5b{bottom:128.032000pt;}
.y33{bottom:132.832000pt;}
.y6f{bottom:140.666667pt;}
.y56{bottom:152.506667pt;}
.y5a{bottom:152.826667pt;}
.y32{bottom:157.466667pt;}
.y6e{bottom:159.066667pt;}
.y55{bottom:177.466667pt;}
.y31{bottom:182.266667pt;}
.y6d{bottom:195.866667pt;}
.y54{bottom:202.106667pt;}
.y30{bottom:206.906667pt;}
.y6c{bottom:214.266667pt;}
.y53{bottom:226.906667pt;}
.y2f{bottom:231.546667pt;}
.y6b{bottom:232.666667pt;}
.y6a{bottom:251.066667pt;}
.y52{bottom:251.546667pt;}
.y2e{bottom:252.506667pt;}
.y69{bottom:269.466667pt;}
.y2d{bottom:270.906667pt;}
.y51{bottom:276.186667pt;}
.y68{bottom:287.866667pt;}
.y2c{bottom:289.306667pt;}
.y50{bottom:300.866667pt;}
.y67{bottom:306.306667pt;}
.y2b{bottom:307.746667pt;}
.y66{bottom:324.706667pt;}
.y4f{bottom:325.666667pt;}
.y2a{bottom:326.146667pt;}
.y65{bottom:343.106667pt;}
.y29{bottom:344.546667pt;}
.y4e{bottom:350.306667pt;}
.y64{bottom:361.506667pt;}
.y28{bottom:362.946667pt;}
.y4d{bottom:374.946667pt;}
.y63{bottom:379.906667pt;}
.y27{bottom:381.346667pt;}
.y62{bottom:398.306667pt;}
.y26{bottom:399.746667pt;}
.y61{bottom:416.706667pt;}
.y25{bottom:418.146667pt;}
.y4c{bottom:424.386667pt;}
.y60{bottom:435.106667pt;}
.y24{bottom:436.546667pt;}
.y4b{bottom:449.026667pt;}
.y5f{bottom:453.506667pt;}
.y23{bottom:454.946667pt;}
.y5e{bottom:471.906667pt;}
.y22{bottom:473.346667pt;}
.y4a{bottom:473.666667pt;}
.y5d{bottom:489.986667pt;}
.y21{bottom:491.746667pt;}
.y49{bottom:498.466667pt;}
.y5c{bottom:506.786667pt;}
.y20{bottom:510.146667pt;}
.y48{bottom:523.106667pt;}
.y1f{bottom:528.546667pt;}
.y1e{bottom:546.973333pt;}
.y47{bottom:547.773333pt;}
.y1d{bottom:565.373333pt;}
.y46{bottom:572.573333pt;}
.y45{bottom:597.213333pt;}
.y1c{bottom:602.173333pt;}
.y1b{bottom:620.573333pt;}
.y44{bottom:621.853333pt;}
.y1a{bottom:638.973333pt;}
.y43{bottom:646.493333pt;}
.y19{bottom:657.373333pt;}
.y42{bottom:671.293333pt;}
.y18{bottom:675.773333pt;}
.y17{bottom:694.173333pt;}
.y41{bottom:695.933333pt;}
.y16{bottom:712.573333pt;}
.y40{bottom:720.573333pt;}
.y15{bottom:730.973333pt;}
.y3f{bottom:745.213333pt;}
.y14{bottom:749.373333pt;}
.y13{bottom:767.813333pt;}
.y3e{bottom:770.053333pt;}
.y12{bottom:786.213333pt;}
.y3d{bottom:794.693333pt;}
.y11{bottom:804.613333pt;}
.y3c{bottom:819.333333pt;}
.y10{bottom:823.013333pt;}
.y3b{bottom:844.133333pt;}
.yf{bottom:859.813333pt;}
.y3a{bottom:868.773333pt;}
.ye{bottom:878.213333pt;}
.y79{bottom:886.053333pt;}
.y39{bottom:893.413333pt;}
.yd{bottom:896.613333pt;}
.y78{bottom:902.693333pt;}
.yc{bottom:915.013333pt;}
.y38{bottom:918.053333pt;}
.y77{bottom:921.093333pt;}
.yb{bottom:933.093333pt;}
.y76{bottom:939.493333pt;}
.y37{bottom:942.853333pt;}
.ya{bottom:951.493333pt;}
.y75{bottom:957.893333pt;}
.y36{bottom:967.493333pt;}
.y9{bottom:970.373333pt;}
.y74{bottom:976.293333pt;}
.y8{bottom:991.813333pt;}
.y35{bottom:992.133333pt;}
.y73{bottom:994.693333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h3{height:29.440000pt;}
.h7{height:34.238133pt;}
.he{height:37.410000pt;}
.h5{height:39.198667pt;}
.hc{height:48.781250pt;}
.h11{height:52.834688pt;}
.h2{height:58.563750pt;}
.hb{height:62.781250pt;}
.h10{height:62.812500pt;}
.ha{height:64.500000pt;}
.hf{height:65.781915pt;}
.h8{height:69.890625pt;}
.hd{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:58.866667pt;}
.w4{width:58.906667pt;}
.w3{width:68.832000pt;}
.w5{width:84.946667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x8{left:22.386667pt;}
.x3{left:23.520000pt;}
.x1{left:56.800000pt;}
.x13{left:61.280000pt;}
.x11{left:80.800000pt;}
.x14{left:85.312000pt;}
.x10{left:104.032000pt;}
.x9{left:107.872000pt;}
.xa{left:143.706667pt;}
.x7{left:155.720000pt;}
.xe{left:230.106667pt;}
.xf{left:264.706667pt;}
.xc{left:280.226667pt;}
.xd{left:323.586667pt;}
.x12{left:361.826667pt;}
.x4{left:380.226667pt;}
.xb{left:401.826667pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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