
    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_af93bb4e0d26a4132c4795df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_7212fdf6590f93905c88e799.woff')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_14ca1edc441ac0d77fb794cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006836;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_a6d6fd5477021f3a34166391.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_18f2b03df9401277bee3437d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.985840;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_1609c27628f178a41dcbfbf4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.117676;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_97f575156b5086f5178f404d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.879395;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_06aebe15713d438ba657783e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.004320px;}
.ls2{letter-spacing:0.020880px;}
.lsc{letter-spacing:0.083400px;}
.lsa{letter-spacing:0.123600px;}
.ls9{letter-spacing:0.135600px;}
.ls12{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.223800px;}
.lsd{letter-spacing:0.258000px;}
.lse{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.408000px;}
.ls11{letter-spacing:2.820000px;}
.ls13{letter-spacing:3.150000px;}
.ls14{letter-spacing:3.330000px;}
.ls1{letter-spacing:4.066560px;}
.ls3{letter-spacing:107.202720px;}
.ls8{letter-spacing:849.335520px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws3{word-spacing:-54.000000px;}
.ws11{word-spacing:-36.720000px;}
.wse{word-spacing:-36.432000px;}
.wsf{word-spacing:-36.000000px;}
.ws14{word-spacing:-18.150480px;}
.wsd{word-spacing:-15.138240px;}
.wsb{word-spacing:-15.104040px;}
.ws9{word-spacing:-15.015840px;}
.wsa{word-spacing:-15.003840px;}
.wsc{word-spacing:-14.903880px;}
.ws8{word-spacing:-14.884560px;}
.ws7{word-spacing:-14.880240px;}
.ws13{word-spacing:-14.820480px;}
.ws6{word-spacing:-14.163120px;}
.ws2{word-spacing:-13.590000px;}
.ws1{word-spacing:-13.392000px;}
.ws0{word-spacing:-13.284000px;}
.ws4{word-spacing:-12.011760px;}
.ws10{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.098000px;}
._0{width:1.152000px;}
._7{width:2.378400px;}
._3{width:3.444480px;}
._2{width:4.636800px;}
._4{width:6.077280px;}
._5{width:8.683200px;}
._b{width:10.614000px;}
._8{width:11.641200px;}
._6{width:12.963360px;}
._d{width:16.589520px;}
._c{width:17.590800px;}
._a{width:19.123200px;}
._e{width:179.544000px;}
._9{width:849.335520px;}
.fc9{color:rgb(144,32,0);}
.fc4{color:rgb(62,118,42);}
.fc8{color:rgb(64,112,160);}
.fc3{color:rgb(41,78,28);}
.fc6{color:rgb(64,160,112);}
.fc2{color:rgb(84,158,57);}
.fc7{color:rgb(0,112,32);}
.fc5{color:rgb(102,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.180000px;}
.y2{bottom:9.360000px;}
.y20{bottom:9.720000px;}
.y23{bottom:9.900000px;}
.y2e{bottom:9.930000px;}
.y29{bottom:11.160000px;}
.y21{bottom:12.780000px;}
.y24{bottom:12.960000px;}
.y2f{bottom:12.990000px;}
.y92{bottom:29.880000px;}
.y94{bottom:29.925000px;}
.yab{bottom:99.180000px;}
.y65{bottom:110.160000px;}
.y44{bottom:110.340000px;}
.yaa{bottom:121.320000px;}
.y64{bottom:132.300000px;}
.ya9{bottom:143.640000px;}
.y43{bottom:145.260000px;}
.y63{bottom:154.620000px;}
.ya8{bottom:165.780000px;}
.y42{bottom:175.320000px;}
.y62{bottom:176.760000px;}
.ya7{bottom:188.100000px;}
.y61{bottom:198.900000px;}
.ya6{bottom:210.240000px;}
.y60{bottom:220.530000px;}
.ya5{bottom:232.590000px;}
.y5f{bottom:241.950000px;}
.ya4{bottom:254.730000px;}
.y5e{bottom:264.090000px;}
.ya3{bottom:276.870000px;}
.y5d{bottom:286.410000px;}
.ya2{bottom:299.190000px;}
.y5c{bottom:308.550000px;}
.y53{bottom:317.010000px;}
.ya1{bottom:320.790000px;}
.y5b{bottom:330.870000px;}
.y97{bottom:333.390000px;}
.ya0{bottom:342.030000px;}
.y52{bottom:351.210000px;}
.y9f{bottom:364.350000px;}
.y1a{bottom:364.710000px;}
.y5a{bottom:365.970000px;}
.y96{bottom:369.030000px;}
.y3e{bottom:369.390000px;}
.y4a{bottom:370.110000px;}
.y51{bottom:371.910000px;}
.y9e{bottom:386.490000px;}
.y95{bottom:389.730000px;}
.y19{bottom:400.350000px;}
.y59{bottom:400.710000px;}
.y3d{bottom:403.590000px;}
.y49{bottom:404.850000px;}
.y50{bottom:406.110000px;}
.y9d{bottom:408.810000px;}
.y93{bottom:417.450000px;}
.y3c{bottom:424.290000px;}
.y4f{bottom:426.810000px;}
.y9c{bottom:430.995000px;}
.y48{bottom:435.135000px;}
.y18{bottom:436.215000px;}
.y58{bottom:436.935000px;}
.y79{bottom:440.535000px;}
.y3b{bottom:445.575000px;}
.y4e{bottom:447.555000px;}
.y91{bottom:464.295000px;}
.y9b{bottom:466.095000px;}
.y57{bottom:467.355000px;}
.y3a{bottom:467.715000px;}
.y17{bottom:471.855000px;}
.y35{bottom:473.115000px;}
.y78{bottom:476.895000px;}
.y4d{bottom:482.295000px;}
.y34{bottom:493.815000px;}
.y9a{bottom:500.835000px;}
.y39{bottom:502.635000px;}
.y4c{bottom:504.435000px;}
.y16{bottom:506.055000px;}
.y77{bottom:507.135000px;}
.y90{bottom:511.095000px;}
.y15{bottom:526.755000px;}
.y38{bottom:532.875000px;}
.y33{bottom:534.675000px;}
.y4b{bottom:536.475000px;}
.y99{bottom:537.195000px;}
.y14{bottom:547.455000px;}
.y41{bottom:548.355000px;}
.y8f{bottom:559.875000px;}
.y32{bottom:562.755000px;}
.y98{bottom:567.435000px;}
.y13{bottom:568.155000px;}
.y40{bottom:576.615000px;}
.y12{bottom:588.855000px;}
.y31{bottom:591.015000px;}
.y8e{bottom:597.495000px;}
.y47{bottom:600.735000px;}
.y30{bottom:619.095000px;}
.y8d{bottom:619.815000px;}
.y11{bottom:623.055000px;}
.y8c{bottom:642.135000px;}
.y10{bottom:643.755000px;}
.y2d{bottom:647.175000px;}
.y46{bottom:648.105000px;}
.y3f{bottom:653.505000px;}
.y8b{bottom:664.305000px;}
.yf{bottom:664.485000px;}
.y2c{bottom:675.465000px;}
.y45{bottom:680.145000px;}
.ye{bottom:685.185000px;}
.y8a{bottom:686.625000px;}
.y2b{bottom:703.545000px;}
.y89{bottom:708.765000px;}
.y73{bottom:708.945000px;}
.yd{bottom:719.385000px;}
.y88{bottom:730.905000px;}
.y2a{bottom:731.625000px;}
.yc{bottom:740.085000px;}
.y72{bottom:744.585000px;}
.yb3{bottom:746.745000px;}
.y87{bottom:753.225000px;}
.y28{bottom:759.885000px;}
.yb2{bottom:767.445000px;}
.y71{bottom:772.305000px;}
.y86{bottom:775.365000px;}
.yb{bottom:779.505000px;}
.y27{bottom:787.965000px;}
.yb1{bottom:795.165000px;}
.y85{bottom:797.685000px;}
.y70{bottom:798.405000px;}
.y26{bottom:816.225000px;}
.y84{bottom:819.825000px;}
.ya{bottom:821.085000px;}
.y6f{bottom:824.505000px;}
.yb0{bottom:841.965000px;}
.y83{bottom:842.145000px;}
.y25{bottom:844.305000px;}
.y9{bottom:846.465000px;}
.y82{bottom:864.330000px;}
.y22{bottom:872.430000px;}
.y6e{bottom:873.330000px;}
.y8{bottom:880.350000px;}
.y81{bottom:885.930000px;}
.yaf{bottom:888.810000px;}
.y1f{bottom:900.690000px;}
.y80{bottom:907.170000px;}
.y6d{bottom:910.950000px;}
.y7{bottom:914.370000px;}
.y1e{bottom:928.770000px;}
.y7f{bottom:929.490000px;}
.y6c{bottom:933.270000px;}
.yae{bottom:935.610000px;}
.y6{bottom:948.210000px;}
.y7e{bottom:951.630000px;}
.y6b{bottom:955.410000px;}
.y56{bottom:965.130000px;}
.y7d{bottom:973.950000px;}
.y1d{bottom:975.570000px;}
.y6a{bottom:977.730000px;}
.y5{bottom:982.050000px;}
.yad{bottom:984.390000px;}
.y55{bottom:987.810000px;}
.y7c{bottom:996.090000px;}
.y69{bottom:999.870000px;}
.y76{bottom:1004.910000px;}
.y1c{bottom:1011.210000px;}
.y3{bottom:1016.070000px;}
.yac{bottom:1022.010000px;}
.y68{bottom:1022.190000px;}
.y54{bottom:1023.630000px;}
.y75{bottom:1027.770000px;}
.y7b{bottom:1031.190000px;}
.y37{bottom:1035.150000px;}
.y67{bottom:1044.330000px;}
.y1{bottom:1049.910000px;}
.y1b{bottom:1063.050000px;}
.y36{bottom:1063.230000px;}
.y74{bottom:1063.410000px;}
.y7a{bottom:1066.110000px;}
.y66{bottom:1066.650000px;}
.h8{height:26.100000px;}
.h3{height:28.080000px;}
.h9{height:28.116000px;}
.h1{height:28.260000px;}
.h4{height:28.296000px;}
.ha{height:37.970156px;}
.hd{height:46.133086px;}
.he{height:46.800000px;}
.hf{height:46.836000px;}
.hc{height:47.037656px;}
.h5{height:47.942227px;}
.h6{height:53.140781px;}
.h2{height:57.761719px;}
.hb{height:58.154062px;}
.h7{height:61.423863px;}
.h0{height:1188.000000px;}
.wf{width:61.560000px;}
.wa{width:61.596000px;}
.w4{width:83.196000px;}
.w12{width:94.680000px;}
.w13{width:104.436000px;}
.wd{width:125.136000px;}
.w6{width:125.676000px;}
.wb{width:137.916000px;}
.w9{width:138.060000px;}
.w11{width:138.096000px;}
.we{width:138.276000px;}
.w8{width:152.310000px;}
.w7{width:168.150000px;}
.w1{width:170.640000px;}
.w10{width:246.810000px;}
.wc{width:259.050000px;}
.w5{width:273.090000px;}
.w2{width:540.825000px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.260000px;}
.x7{left:8.136000px;}
.x6{left:98.100000px;}
.x1{left:104.976000px;}
.x4{left:106.235986px;}
.x5{left:124.235986px;}
.x8{left:181.290000px;}
.xc{left:223.770000px;}
.x10{left:236.010000px;}
.x3{left:277.230000px;}
.xd{left:391.935000px;}
.x9{left:458.894986px;}
.x14{left:482.835000px;}
.x11{left:495.075000px;}
.xe{left:544.245000px;}
.x12{left:620.205000px;}
.xf{left:682.305000px;}
.x15{left:715.605000px;}
.xb{left:736.349986px;}
.x13{left:758.490000px;}
.xa{left:773.969986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003840pt;}
.ls2{letter-spacing:0.018560pt;}
.lsc{letter-spacing:0.074133pt;}
.lsa{letter-spacing:0.109867pt;}
.ls9{letter-spacing:0.120533pt;}
.ls12{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.198933pt;}
.lsd{letter-spacing:0.229333pt;}
.lse{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.362667pt;}
.ls11{letter-spacing:2.506667pt;}
.ls13{letter-spacing:2.800000pt;}
.ls14{letter-spacing:2.960000pt;}
.ls1{letter-spacing:3.614720pt;}
.ls3{letter-spacing:95.291307pt;}
.ls8{letter-spacing:754.964907pt;}
.ws12{word-spacing:-53.120000pt;}
.ws3{word-spacing:-48.000000pt;}
.ws11{word-spacing:-32.640000pt;}
.wse{word-spacing:-32.384000pt;}
.wsf{word-spacing:-32.000000pt;}
.ws14{word-spacing:-16.133760pt;}
.wsd{word-spacing:-13.456213pt;}
.wsb{word-spacing:-13.425813pt;}
.ws9{word-spacing:-13.347413pt;}
.wsa{word-spacing:-13.336747pt;}
.wsc{word-spacing:-13.247893pt;}
.ws8{word-spacing:-13.230720pt;}
.ws7{word-spacing:-13.226880pt;}
.ws13{word-spacing:-13.173760pt;}
.ws6{word-spacing:-12.589440pt;}
.ws2{word-spacing:-12.080000pt;}
.ws1{word-spacing:-11.904000pt;}
.ws0{word-spacing:-11.808000pt;}
.ws4{word-spacing:-10.677120pt;}
.ws10{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.976000pt;}
._0{width:1.024000pt;}
._7{width:2.114133pt;}
._3{width:3.061760pt;}
._2{width:4.121600pt;}
._4{width:5.402027pt;}
._5{width:7.718400pt;}
._b{width:9.434667pt;}
._8{width:10.347733pt;}
._6{width:11.522987pt;}
._d{width:14.746240pt;}
._c{width:15.636267pt;}
._a{width:16.998400pt;}
._e{width:159.594667pt;}
._9{width:754.964907pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.160000pt;}
.y2{bottom:8.320000pt;}
.y20{bottom:8.640000pt;}
.y23{bottom:8.800000pt;}
.y2e{bottom:8.826667pt;}
.y29{bottom:9.920000pt;}
.y21{bottom:11.360000pt;}
.y24{bottom:11.520000pt;}
.y2f{bottom:11.546667pt;}
.y92{bottom:26.560000pt;}
.y94{bottom:26.600000pt;}
.yab{bottom:88.160000pt;}
.y65{bottom:97.920000pt;}
.y44{bottom:98.080000pt;}
.yaa{bottom:107.840000pt;}
.y64{bottom:117.600000pt;}
.ya9{bottom:127.680000pt;}
.y43{bottom:129.120000pt;}
.y63{bottom:137.440000pt;}
.ya8{bottom:147.360000pt;}
.y42{bottom:155.840000pt;}
.y62{bottom:157.120000pt;}
.ya7{bottom:167.200000pt;}
.y61{bottom:176.800000pt;}
.ya6{bottom:186.880000pt;}
.y60{bottom:196.026667pt;}
.ya5{bottom:206.746667pt;}
.y5f{bottom:215.066667pt;}
.ya4{bottom:226.426667pt;}
.y5e{bottom:234.746667pt;}
.ya3{bottom:246.106667pt;}
.y5d{bottom:254.586667pt;}
.ya2{bottom:265.946667pt;}
.y5c{bottom:274.266667pt;}
.y53{bottom:281.786667pt;}
.ya1{bottom:285.146667pt;}
.y5b{bottom:294.106667pt;}
.y97{bottom:296.346667pt;}
.ya0{bottom:304.026667pt;}
.y52{bottom:312.186667pt;}
.y9f{bottom:323.866667pt;}
.y1a{bottom:324.186667pt;}
.y5a{bottom:325.306667pt;}
.y96{bottom:328.026667pt;}
.y3e{bottom:328.346667pt;}
.y4a{bottom:328.986667pt;}
.y51{bottom:330.586667pt;}
.y9e{bottom:343.546667pt;}
.y95{bottom:346.426667pt;}
.y19{bottom:355.866667pt;}
.y59{bottom:356.186667pt;}
.y3d{bottom:358.746667pt;}
.y49{bottom:359.866667pt;}
.y50{bottom:360.986667pt;}
.y9d{bottom:363.386667pt;}
.y93{bottom:371.066667pt;}
.y3c{bottom:377.146667pt;}
.y4f{bottom:379.386667pt;}
.y9c{bottom:383.106667pt;}
.y48{bottom:386.786667pt;}
.y18{bottom:387.746667pt;}
.y58{bottom:388.386667pt;}
.y79{bottom:391.586667pt;}
.y3b{bottom:396.066667pt;}
.y4e{bottom:397.826667pt;}
.y91{bottom:412.706667pt;}
.y9b{bottom:414.306667pt;}
.y57{bottom:415.426667pt;}
.y3a{bottom:415.746667pt;}
.y17{bottom:419.426667pt;}
.y35{bottom:420.546667pt;}
.y78{bottom:423.906667pt;}
.y4d{bottom:428.706667pt;}
.y34{bottom:438.946667pt;}
.y9a{bottom:445.186667pt;}
.y39{bottom:446.786667pt;}
.y4c{bottom:448.386667pt;}
.y16{bottom:449.826667pt;}
.y77{bottom:450.786667pt;}
.y90{bottom:454.306667pt;}
.y15{bottom:468.226667pt;}
.y38{bottom:473.666667pt;}
.y33{bottom:475.266667pt;}
.y4b{bottom:476.866667pt;}
.y99{bottom:477.506667pt;}
.y14{bottom:486.626667pt;}
.y41{bottom:487.426667pt;}
.y8f{bottom:497.666667pt;}
.y32{bottom:500.226667pt;}
.y98{bottom:504.386667pt;}
.y13{bottom:505.026667pt;}
.y40{bottom:512.546667pt;}
.y12{bottom:523.426667pt;}
.y31{bottom:525.346667pt;}
.y8e{bottom:531.106667pt;}
.y47{bottom:533.986667pt;}
.y30{bottom:550.306667pt;}
.y8d{bottom:550.946667pt;}
.y11{bottom:553.826667pt;}
.y8c{bottom:570.786667pt;}
.y10{bottom:572.226667pt;}
.y2d{bottom:575.266667pt;}
.y46{bottom:576.093333pt;}
.y3f{bottom:580.893333pt;}
.y8b{bottom:590.493333pt;}
.yf{bottom:590.653333pt;}
.y2c{bottom:600.413333pt;}
.y45{bottom:604.573333pt;}
.ye{bottom:609.053333pt;}
.y8a{bottom:610.333333pt;}
.y2b{bottom:625.373333pt;}
.y89{bottom:630.013333pt;}
.y73{bottom:630.173333pt;}
.yd{bottom:639.453333pt;}
.y88{bottom:649.693333pt;}
.y2a{bottom:650.333333pt;}
.yc{bottom:657.853333pt;}
.y72{bottom:661.853333pt;}
.yb3{bottom:663.773333pt;}
.y87{bottom:669.533333pt;}
.y28{bottom:675.453333pt;}
.yb2{bottom:682.173333pt;}
.y71{bottom:686.493333pt;}
.y86{bottom:689.213333pt;}
.yb{bottom:692.893333pt;}
.y27{bottom:700.413333pt;}
.yb1{bottom:706.813333pt;}
.y85{bottom:709.053333pt;}
.y70{bottom:709.693333pt;}
.y26{bottom:725.533333pt;}
.y84{bottom:728.733333pt;}
.ya{bottom:729.853333pt;}
.y6f{bottom:732.893333pt;}
.yb0{bottom:748.413333pt;}
.y83{bottom:748.573333pt;}
.y25{bottom:750.493333pt;}
.y9{bottom:752.413333pt;}
.y82{bottom:768.293333pt;}
.y22{bottom:775.493333pt;}
.y6e{bottom:776.293333pt;}
.y8{bottom:782.533333pt;}
.y81{bottom:787.493333pt;}
.yaf{bottom:790.053333pt;}
.y1f{bottom:800.613333pt;}
.y80{bottom:806.373333pt;}
.y6d{bottom:809.733333pt;}
.y7{bottom:812.773333pt;}
.y1e{bottom:825.573333pt;}
.y7f{bottom:826.213333pt;}
.y6c{bottom:829.573333pt;}
.yae{bottom:831.653333pt;}
.y6{bottom:842.853333pt;}
.y7e{bottom:845.893333pt;}
.y6b{bottom:849.253333pt;}
.y56{bottom:857.893333pt;}
.y7d{bottom:865.733333pt;}
.y1d{bottom:867.173333pt;}
.y6a{bottom:869.093333pt;}
.y5{bottom:872.933333pt;}
.yad{bottom:875.013333pt;}
.y55{bottom:878.053333pt;}
.y7c{bottom:885.413333pt;}
.y69{bottom:888.773333pt;}
.y76{bottom:893.253333pt;}
.y1c{bottom:898.853333pt;}
.y3{bottom:903.173333pt;}
.yac{bottom:908.453333pt;}
.y68{bottom:908.613333pt;}
.y54{bottom:909.893333pt;}
.y75{bottom:913.573333pt;}
.y7b{bottom:916.613333pt;}
.y37{bottom:920.133333pt;}
.y67{bottom:928.293333pt;}
.y1{bottom:933.253333pt;}
.y1b{bottom:944.933333pt;}
.y36{bottom:945.093333pt;}
.y74{bottom:945.253333pt;}
.y7a{bottom:947.653333pt;}
.y66{bottom:948.133333pt;}
.h8{height:23.200000pt;}
.h3{height:24.960000pt;}
.h9{height:24.992000pt;}
.h1{height:25.120000pt;}
.h4{height:25.152000pt;}
.ha{height:33.751250pt;}
.hd{height:41.007188pt;}
.he{height:41.600000pt;}
.hf{height:41.632000pt;}
.hc{height:41.811250pt;}
.h5{height:42.615313pt;}
.h6{height:47.236250pt;}
.h2{height:51.343750pt;}
.hb{height:51.692500pt;}
.h7{height:54.598989pt;}
.h0{height:1056.000000pt;}
.wf{width:54.720000pt;}
.wa{width:54.752000pt;}
.w4{width:73.952000pt;}
.w12{width:84.160000pt;}
.w13{width:92.832000pt;}
.wd{width:111.232000pt;}
.w6{width:111.712000pt;}
.wb{width:122.592000pt;}
.w9{width:122.720000pt;}
.w11{width:122.752000pt;}
.we{width:122.912000pt;}
.w8{width:135.386667pt;}
.w7{width:149.466667pt;}
.w1{width:151.680000pt;}
.w10{width:219.386667pt;}
.wc{width:230.266667pt;}
.w5{width:242.746667pt;}
.w2{width:480.733333pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.120000pt;}
.x7{left:7.232000pt;}
.x6{left:87.200000pt;}
.x1{left:93.312000pt;}
.x4{left:94.431988pt;}
.x5{left:110.431988pt;}
.x8{left:161.146667pt;}
.xc{left:198.906667pt;}
.x10{left:209.786667pt;}
.x3{left:246.426667pt;}
.xd{left:348.386667pt;}
.x9{left:407.906655pt;}
.x14{left:429.186667pt;}
.x11{left:440.066667pt;}
.xe{left:483.773333pt;}
.x12{left:551.293333pt;}
.xf{left:606.493333pt;}
.x15{left:636.093333pt;}
.xb{left:654.533321pt;}
.x13{left:674.213333pt;}
.xa{left:687.973321pt;}
}




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