
    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_8f0d18c40e5c55e960418a8d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a8449852aace654aa9c3f899.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_ef03d45fb55635580baa4256.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_6acdfbe4a7e3b0118a36c6af.woff2')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_faa05f6a398fb3e24891e23f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_30acfc5c48575e694c5ee506.woff2')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_fe0418f4f40be8d8253b9e53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_22c7e5187c0110b4e3f82892.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_aaeb8e85611a480cdb987d3a.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.684000px;}
.ls18{letter-spacing:-0.369600px;}
.lsf{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.018720px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.172080px;}
.lsb{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.341280px;}
.ls14{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378720px;}
.ls11{letter-spacing:0.461280px;}
.lsd{letter-spacing:0.522720px;}
.ls13{letter-spacing:0.540000px;}
.ls2{letter-spacing:2.700000px;}
.lsa{letter-spacing:6.300000px;}
.ls6{letter-spacing:8.460000px;}
.ls7{letter-spacing:8.789760px;}
.ls10{letter-spacing:25.740000px;}
.lse{letter-spacing:26.460000px;}
.lsc{letter-spacing:37.260000px;}
.ls12{letter-spacing:37.980000px;}
.ls0{letter-spacing:43.200000px;}
.ls19{letter-spacing:54.144000px;}
.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;}
}
.ws2{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.401400px;}
.ws3{word-spacing:-21.097440px;}
.ws0{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.041280px;}
.ws5{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.690400px;}
.ws7{word-spacing:-20.376000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.179360px;}
._4{width:1.080000px;}
._8{width:2.316000px;}
._6{width:3.408000px;}
._3{width:5.112000px;}
._5{width:6.480000px;}
._12{width:7.705920px;}
._9{width:8.845200px;}
._1b{width:10.081200px;}
._19{width:11.474640px;}
._1a{width:13.190640px;}
._14{width:15.163200px;}
._15{width:16.530240px;}
._1c{width:17.858880px;}
._7{width:19.800000px;}
._22{width:20.851920px;}
._c{width:22.492080px;}
._b{width:23.924160px;}
._10{width:25.019280px;}
._11{width:26.030160px;}
._16{width:27.081120px;}
._18{width:28.115280px;}
._21{width:29.736720px;}
._1d{width:30.831840px;}
._24{width:32.040000px;}
._e{width:33.864480px;}
._20{width:35.549280px;}
._1e{width:36.560160px;}
._13{width:38.076480px;}
._1f{width:46.079280px;}
._17{width:48.185280px;}
._a{width:49.196160px;}
._23{width:52.764000px;}
._2{width:54.084000px;}
._1{width:55.200000px;}
._f{width:58.209840px;}
._d{width:84.661200px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:7.020000px;}
.y55{bottom:7.200000px;}
.y5f{bottom:7.245000px;}
.y4{bottom:12.240000px;}
.y3{bottom:29.376000px;}
.y58{bottom:30.960000px;}
.y2{bottom:31.176000px;}
.y57{bottom:54.720000px;}
.y53{bottom:55.440000px;}
.y56{bottom:78.480000px;}
.y52{bottom:79.200000px;}
.y2c{bottom:100.296000px;}
.y51{bottom:103.140000px;}
.y4f{bottom:111.636000px;}
.y2b{bottom:128.016000px;}
.y65{bottom:131.976000px;}
.y4e{bottom:139.356000px;}
.y2a{bottom:155.730000px;}
.y64{bottom:159.690000px;}
.y4d{bottom:167.250000px;}
.y29{bottom:183.630000px;}
.y63{bottom:187.410000px;}
.y4c{bottom:194.970000px;}
.y28{bottom:211.350000px;}
.y62{bottom:212.790000px;}
.y4b{bottom:222.690000px;}
.y61{bottom:227.730000px;}
.y7a{bottom:235.290000px;}
.y27{bottom:239.070000px;}
.y4a{bottom:250.410000px;}
.y60{bottom:252.210000px;}
.y79{bottom:255.990000px;}
.y26{bottom:266.790000px;}
.y5e{bottom:276.690000px;}
.y49{bottom:278.310000px;}
.y25{bottom:294.735000px;}
.y78{bottom:297.435000px;}
.y5d{bottom:301.395000px;}
.y48{bottom:306.075000px;}
.y77{bottom:318.135000px;}
.y24{bottom:322.455000px;}
.y5c{bottom:325.875000px;}
.y47{bottom:333.795000px;}
.y76{bottom:338.835000px;}
.y23{bottom:350.175000px;}
.y5b{bottom:350.535000px;}
.y75{bottom:359.535000px;}
.y46{bottom:361.695000px;}
.y59{bottom:375.015000px;}
.y22{bottom:378.075000px;}
.y74{bottom:380.235000px;}
.y45{bottom:389.415000px;}
.y50{bottom:399.495000px;}
.y73{bottom:400.935000px;}
.y21{bottom:405.795000px;}
.y44{bottom:417.135000px;}
.y72{bottom:421.635000px;}
.y20{bottom:433.515000px;}
.y71{bottom:442.335000px;}
.y43{bottom:444.855000px;}
.y1f{bottom:461.235000px;}
.y70{bottom:463.035000px;}
.y42{bottom:472.755000px;}
.y6f{bottom:483.735000px;}
.y1e{bottom:489.135000px;}
.y54{bottom:495.435000px;}
.y41{bottom:500.475000px;}
.y6e{bottom:504.435000px;}
.y1d{bottom:516.855000px;}
.y6d{bottom:525.135000px;}
.y40{bottom:528.195000px;}
.y1c{bottom:544.575000px;}
.y6c{bottom:545.835000px;}
.y3f{bottom:555.915000px;}
.y6b{bottom:566.565000px;}
.y1b{bottom:572.325000px;}
.y3e{bottom:583.845000px;}
.y6a{bottom:587.265000px;}
.y1a{bottom:600.225000px;}
.y69{bottom:607.965000px;}
.y3d{bottom:611.565000px;}
.y19{bottom:627.945000px;}
.y68{bottom:628.665000px;}
.y3c{bottom:639.285000px;}
.y67{bottom:649.365000px;}
.y18{bottom:655.665000px;}
.y3b{bottom:667.185000px;}
.y66{bottom:670.065000px;}
.y17{bottom:683.565000px;}
.y3a{bottom:694.905000px;}
.y16{bottom:707.145000px;}
.y39{bottom:722.625000px;}
.y15{bottom:727.845000px;}
.y14{bottom:748.545000px;}
.y38{bottom:750.345000px;}
.y13{bottom:769.245000px;}
.y37{bottom:778.245000px;}
.y12{bottom:789.945000px;}
.y36{bottom:805.965000px;}
.y11{bottom:810.645000px;}
.y10{bottom:831.345000px;}
.y35{bottom:833.685000px;}
.yf{bottom:852.090000px;}
.y34{bottom:861.630000px;}
.ye{bottom:872.790000px;}
.y33{bottom:889.350000px;}
.yd{bottom:914.190000px;}
.y32{bottom:917.070000px;}
.yc{bottom:934.710000px;}
.y31{bottom:944.790000px;}
.yb{bottom:955.410000px;}
.y30{bottom:972.690000px;}
.ya{bottom:976.110000px;}
.y9{bottom:996.810000px;}
.y2f{bottom:1000.410000px;}
.y8{bottom:1017.510000px;}
.y2e{bottom:1028.130000px;}
.y7{bottom:1038.210000px;}
.y2d{bottom:1055.850000px;}
.y6{bottom:1059.630000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.hf{height:23.760000px;}
.hd{height:23.940000px;}
.h10{height:23.976000px;}
.h3{height:31.860000px;}
.h9{height:52.628906px;}
.h11{height:58.651172px;}
.hc{height:63.175781px;}
.h8{height:70.628906px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.ha{height:73.915664px;}
.h12{height:74.004654px;}
.h5{height:74.820586px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.he{height:95.220000px;}
.hb{height:119.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w7{width:118.800000px;}
.w4{width:118.836000px;}
.w5{width:119.016000px;}
.w6{width:477.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:9.540000px;}
.x1a{left:13.320000px;}
.x1e{left:14.580000px;}
.x18{left:16.740000px;}
.x14{left:18.540000px;}
.x1d{left:19.620000px;}
.x13{left:21.060000px;}
.x3{left:22.140000px;}
.x25{left:27.396000px;}
.x26{left:29.736000px;}
.x1f{left:38.376000px;}
.x21{left:41.220000px;}
.x23{left:42.876000px;}
.x15{left:45.000000px;}
.x24{left:48.240000px;}
.x20{left:52.740000px;}
.x22{left:56.520000px;}
.x10{left:77.400000px;}
.x1{left:84.959987px;}
.xe{left:90.755987px;}
.x4{left:104.615987px;}
.x28{left:117.035987px;}
.xc{left:127.475987px;}
.xb{left:138.095987px;}
.x17{left:142.920000px;}
.x5{left:182.369987px;}
.x12{left:196.950000px;}
.xa{left:245.009987px;}
.x8{left:313.994987px;}
.x16{left:316.695000px;}
.x27{left:368.714987px;}
.x9{left:379.154987px;}
.xf{left:382.034987px;}
.x7{left:386.354987px;}
.x2{left:409.755000px;}
.x19{left:436.215000px;}
.x6{left:446.474987px;}
.x1b{left:555.945000px;}
.x1c{left:675.690000px;}
.xd{left:739.769987px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls18{letter-spacing:-0.328533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.152960pt;}
.lsb{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.303360pt;}
.ls14{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336640pt;}
.ls11{letter-spacing:0.410027pt;}
.lsd{letter-spacing:0.464640pt;}
.ls13{letter-spacing:0.480000pt;}
.ls2{letter-spacing:2.400000pt;}
.lsa{letter-spacing:5.600000pt;}
.ls6{letter-spacing:7.520000pt;}
.ls7{letter-spacing:7.813120pt;}
.ls10{letter-spacing:22.880000pt;}
.lse{letter-spacing:23.520000pt;}
.lsc{letter-spacing:33.120000pt;}
.ls12{letter-spacing:33.760000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls19{letter-spacing:48.128000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.753280pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.703360pt;}
.ws5{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.391467pt;}
.ws7{word-spacing:-18.112000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.048320pt;}
._4{width:0.960000pt;}
._8{width:2.058667pt;}
._6{width:3.029333pt;}
._3{width:4.544000pt;}
._5{width:5.760000pt;}
._12{width:6.849707pt;}
._9{width:7.862400pt;}
._1b{width:8.961067pt;}
._19{width:10.199680pt;}
._1a{width:11.725013pt;}
._14{width:13.478400pt;}
._15{width:14.693547pt;}
._1c{width:15.874560pt;}
._7{width:17.600000pt;}
._22{width:18.535040pt;}
._c{width:19.992960pt;}
._b{width:21.265920pt;}
._10{width:22.239360pt;}
._11{width:23.137920pt;}
._16{width:24.072107pt;}
._18{width:24.991360pt;}
._21{width:26.432640pt;}
._1d{width:27.406080pt;}
._24{width:28.480000pt;}
._e{width:30.101760pt;}
._20{width:31.599360pt;}
._1e{width:32.497920pt;}
._13{width:33.845760pt;}
._1f{width:40.959360pt;}
._17{width:42.831360pt;}
._a{width:43.729920pt;}
._23{width:46.901333pt;}
._2{width:48.074667pt;}
._1{width:49.066667pt;}
._f{width:51.742080pt;}
._d{width:75.254400pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:6.240000pt;}
.y55{bottom:6.400000pt;}
.y5f{bottom:6.440000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:26.112000pt;}
.y58{bottom:27.520000pt;}
.y2{bottom:27.712000pt;}
.y57{bottom:48.640000pt;}
.y53{bottom:49.280000pt;}
.y56{bottom:69.760000pt;}
.y52{bottom:70.400000pt;}
.y2c{bottom:89.152000pt;}
.y51{bottom:91.680000pt;}
.y4f{bottom:99.232000pt;}
.y2b{bottom:113.792000pt;}
.y65{bottom:117.312000pt;}
.y4e{bottom:123.872000pt;}
.y2a{bottom:138.426667pt;}
.y64{bottom:141.946667pt;}
.y4d{bottom:148.666667pt;}
.y29{bottom:163.226667pt;}
.y63{bottom:166.586667pt;}
.y4c{bottom:173.306667pt;}
.y28{bottom:187.866667pt;}
.y62{bottom:189.146667pt;}
.y4b{bottom:197.946667pt;}
.y61{bottom:202.426667pt;}
.y7a{bottom:209.146667pt;}
.y27{bottom:212.506667pt;}
.y4a{bottom:222.586667pt;}
.y60{bottom:224.186667pt;}
.y79{bottom:227.546667pt;}
.y26{bottom:237.146667pt;}
.y5e{bottom:245.946667pt;}
.y49{bottom:247.386667pt;}
.y25{bottom:261.986667pt;}
.y78{bottom:264.386667pt;}
.y5d{bottom:267.906667pt;}
.y48{bottom:272.066667pt;}
.y77{bottom:282.786667pt;}
.y24{bottom:286.626667pt;}
.y5c{bottom:289.666667pt;}
.y47{bottom:296.706667pt;}
.y76{bottom:301.186667pt;}
.y23{bottom:311.266667pt;}
.y5b{bottom:311.586667pt;}
.y75{bottom:319.586667pt;}
.y46{bottom:321.506667pt;}
.y59{bottom:333.346667pt;}
.y22{bottom:336.066667pt;}
.y74{bottom:337.986667pt;}
.y45{bottom:346.146667pt;}
.y50{bottom:355.106667pt;}
.y73{bottom:356.386667pt;}
.y21{bottom:360.706667pt;}
.y44{bottom:370.786667pt;}
.y72{bottom:374.786667pt;}
.y20{bottom:385.346667pt;}
.y71{bottom:393.186667pt;}
.y43{bottom:395.426667pt;}
.y1f{bottom:409.986667pt;}
.y70{bottom:411.586667pt;}
.y42{bottom:420.226667pt;}
.y6f{bottom:429.986667pt;}
.y1e{bottom:434.786667pt;}
.y54{bottom:440.386667pt;}
.y41{bottom:444.866667pt;}
.y6e{bottom:448.386667pt;}
.y1d{bottom:459.426667pt;}
.y6d{bottom:466.786667pt;}
.y40{bottom:469.506667pt;}
.y1c{bottom:484.066667pt;}
.y6c{bottom:485.186667pt;}
.y3f{bottom:494.146667pt;}
.y6b{bottom:503.613333pt;}
.y1b{bottom:508.733333pt;}
.y3e{bottom:518.973333pt;}
.y6a{bottom:522.013333pt;}
.y1a{bottom:533.533333pt;}
.y69{bottom:540.413333pt;}
.y3d{bottom:543.613333pt;}
.y19{bottom:558.173333pt;}
.y68{bottom:558.813333pt;}
.y3c{bottom:568.253333pt;}
.y67{bottom:577.213333pt;}
.y18{bottom:582.813333pt;}
.y3b{bottom:593.053333pt;}
.y66{bottom:595.613333pt;}
.y17{bottom:607.613333pt;}
.y3a{bottom:617.693333pt;}
.y16{bottom:628.573333pt;}
.y39{bottom:642.333333pt;}
.y15{bottom:646.973333pt;}
.y14{bottom:665.373333pt;}
.y38{bottom:666.973333pt;}
.y13{bottom:683.773333pt;}
.y37{bottom:691.773333pt;}
.y12{bottom:702.173333pt;}
.y36{bottom:716.413333pt;}
.y11{bottom:720.573333pt;}
.y10{bottom:738.973333pt;}
.y35{bottom:741.053333pt;}
.yf{bottom:757.413333pt;}
.y34{bottom:765.893333pt;}
.ye{bottom:775.813333pt;}
.y33{bottom:790.533333pt;}
.yd{bottom:812.613333pt;}
.y32{bottom:815.173333pt;}
.yc{bottom:830.853333pt;}
.y31{bottom:839.813333pt;}
.yb{bottom:849.253333pt;}
.y30{bottom:864.613333pt;}
.ya{bottom:867.653333pt;}
.y9{bottom:886.053333pt;}
.y2f{bottom:889.253333pt;}
.y8{bottom:904.453333pt;}
.y2e{bottom:913.893333pt;}
.y7{bottom:922.853333pt;}
.y2d{bottom:938.533333pt;}
.y6{bottom:941.893333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.hf{height:21.120000pt;}
.hd{height:21.280000pt;}
.h10{height:21.312000pt;}
.h3{height:28.320000pt;}
.h9{height:46.781250pt;}
.h11{height:52.134375pt;}
.hc{height:56.156250pt;}
.h8{height:62.781250pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.ha{height:65.702812pt;}
.h12{height:65.781915pt;}
.h5{height:66.507188pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.he{height:84.640000pt;}
.hb{height:106.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w7{width:105.600000pt;}
.w4{width:105.632000pt;}
.w5{width:105.792000pt;}
.w6{width:424.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:8.480000pt;}
.x1a{left:11.840000pt;}
.x1e{left:12.960000pt;}
.x18{left:14.880000pt;}
.x14{left:16.480000pt;}
.x1d{left:17.440000pt;}
.x13{left:18.720000pt;}
.x3{left:19.680000pt;}
.x25{left:24.352000pt;}
.x26{left:26.432000pt;}
.x1f{left:34.112000pt;}
.x21{left:36.640000pt;}
.x23{left:38.112000pt;}
.x15{left:40.000000pt;}
.x24{left:42.880000pt;}
.x20{left:46.880000pt;}
.x22{left:50.240000pt;}
.x10{left:68.800000pt;}
.x1{left:75.519988pt;}
.xe{left:80.671988pt;}
.x4{left:92.991988pt;}
.x28{left:104.031988pt;}
.xc{left:113.311988pt;}
.xb{left:122.751988pt;}
.x17{left:127.040000pt;}
.x5{left:162.106655pt;}
.x12{left:175.066667pt;}
.xa{left:217.786655pt;}
.x8{left:279.106655pt;}
.x16{left:281.506667pt;}
.x27{left:327.746655pt;}
.x9{left:337.026655pt;}
.xf{left:339.586655pt;}
.x7{left:343.426655pt;}
.x2{left:364.226667pt;}
.x19{left:387.746667pt;}
.x6{left:396.866655pt;}
.x1b{left:494.173333pt;}
.x1c{left:600.613333pt;}
.xd{left:657.573322pt;}
}




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