
    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_fc01429e1abcffffbeee8336.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_54732f59f5130617c7fbcf66.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f7ae0ae96fb8d27c5a639ba8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b26968c8a4fe1d78f31375f1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_855f0a74bdebe8b03ea5ac0b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.738000px;}
.ls13{letter-spacing:0.900000px;}
.ls14{letter-spacing:2.340000px;}
.ls16{letter-spacing:3.780000px;}
.lsf{letter-spacing:5.220000px;}
.ls15{letter-spacing:10.260000px;}
.ls3{letter-spacing:14.580000px;}
.ls4{letter-spacing:18.180000px;}
.ls12{letter-spacing:23.220000px;}
.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:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wse{word-spacing:-11.836200px;}
.ws0{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-2.151360px;}
._0{margin-left:-1.042560px;}
._1{width:1.135440px;}
._a{width:2.748960px;}
._7{width:4.415760px;}
._6{width:5.677200px;}
._d{width:6.827520px;}
._b{width:7.977600px;}
._3{width:9.083520px;}
._4{width:10.571040px;}
._5{width:11.679600px;}
._9{width:13.386240px;}
._12{width:15.099120px;}
._2{width:16.607280px;}
._c{width:18.053760px;}
._10{width:19.780560px;}
._11{width:21.334800px;}
._14{width:23.195520px;}
._13{width:24.621120px;}
._e{width:26.998320px;}
._f{width:29.124000px;}
._16{width:31.860000px;}
._15{width:33.048000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(46,116,181);}
.fc1{color:rgb(132,150,176);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.880000px;}
.y40{bottom:10.440000px;}
.y48{bottom:17.100000px;}
.y47{bottom:31.320000px;}
.y82{bottom:45.534000px;}
.y46{bottom:45.540000px;}
.y81{bottom:59.754000px;}
.y45{bottom:59.760000px;}
.y80{bottom:73.974000px;}
.y44{bottom:73.980000px;}
.y7f{bottom:88.194000px;}
.y43{bottom:88.200000px;}
.y7e{bottom:102.414000px;}
.y42{bottom:102.420000px;}
.y7c{bottom:107.856000px;}
.y3b{bottom:115.596000px;}
.y7d{bottom:116.634000px;}
.y3e{bottom:118.836000px;}
.y3a{bottom:133.236000px;}
.y3d{bottom:136.476000px;}
.y39{bottom:150.870000px;}
.y3c{bottom:154.110000px;}
.y41{bottom:168.330000px;}
.y38{bottom:168.510000px;}
.y37{bottom:186.150000px;}
.y36{bottom:203.790000px;}
.y35{bottom:221.430000px;}
.y7b{bottom:236.010000px;}
.y34{bottom:239.070000px;}
.y33{bottom:256.710000px;}
.y32{bottom:274.395000px;}
.y3f{bottom:282.315000px;}
.y31{bottom:292.035000px;}
.y30{bottom:309.675000px;}
.y7a{bottom:318.495000px;}
.y2f{bottom:327.315000px;}
.y79{bottom:336.495000px;}
.y2e{bottom:344.955000px;}
.y78{bottom:354.495000px;}
.y2d{bottom:362.595000px;}
.y77{bottom:372.495000px;}
.y2c{bottom:380.235000px;}
.y76{bottom:390.495000px;}
.y2b{bottom:397.875000px;}
.y75{bottom:408.495000px;}
.y2a{bottom:415.695000px;}
.y74{bottom:426.495000px;}
.y29{bottom:433.335000px;}
.y73{bottom:444.135000px;}
.y28{bottom:450.975000px;}
.y72{bottom:459.975000px;}
.y27{bottom:468.615000px;}
.y71{bottom:475.815000px;}
.y26{bottom:486.255000px;}
.y70{bottom:491.655000px;}
.y25{bottom:503.895000px;}
.y6f{bottom:507.495000px;}
.y24{bottom:521.535000px;}
.y6e{bottom:523.335000px;}
.y23{bottom:539.175000px;}
.y6d{bottom:555.015000px;}
.y22{bottom:556.845000px;}
.y6c{bottom:570.885000px;}
.y21{bottom:574.485000px;}
.y6b{bottom:586.725000px;}
.y20{bottom:592.125000px;}
.y6a{bottom:602.565000px;}
.y1f{bottom:609.765000px;}
.y69{bottom:618.405000px;}
.y1e{bottom:627.405000px;}
.y68{bottom:634.245000px;}
.y1d{bottom:645.045000px;}
.y67{bottom:650.085000px;}
.y1c{bottom:662.685000px;}
.y66{bottom:665.925000px;}
.y1b{bottom:680.325000px;}
.y65{bottom:681.765000px;}
.y64{bottom:697.605000px;}
.y1a{bottom:697.965000px;}
.y63{bottom:713.445000px;}
.y19{bottom:715.605000px;}
.y62{bottom:729.285000px;}
.y18{bottom:733.245000px;}
.y61{bottom:745.125000px;}
.y17{bottom:750.885000px;}
.y60{bottom:761.325000px;}
.y16{bottom:768.525000px;}
.y5f{bottom:777.165000px;}
.y15{bottom:786.165000px;}
.y5e{bottom:793.005000px;}
.y14{bottom:803.985000px;}
.y5d{bottom:808.845000px;}
.y13{bottom:821.625000px;}
.y5c{bottom:824.685000px;}
.y12{bottom:839.310000px;}
.y5b{bottom:840.930000px;}
.y11{bottom:856.950000px;}
.y5a{bottom:858.570000px;}
.y10{bottom:874.590000px;}
.y59{bottom:876.210000px;}
.yf{bottom:892.230000px;}
.y58{bottom:893.850000px;}
.ye{bottom:909.870000px;}
.y57{bottom:911.490000px;}
.yd{bottom:927.510000px;}
.y56{bottom:929.130000px;}
.yc{bottom:945.150000px;}
.y55{bottom:946.770000px;}
.yb{bottom:962.790000px;}
.y54{bottom:964.410000px;}
.ya{bottom:980.430000px;}
.y53{bottom:982.050000px;}
.y9{bottom:998.070000px;}
.y52{bottom:999.690000px;}
.y8{bottom:1015.710000px;}
.y51{bottom:1017.330000px;}
.y7{bottom:1033.350000px;}
.y50{bottom:1034.970000px;}
.y6{bottom:1050.990000px;}
.y4f{bottom:1052.610000px;}
.y5{bottom:1068.630000px;}
.y4e{bottom:1070.250000px;}
.y4{bottom:1086.450000px;}
.y4d{bottom:1087.890000px;}
.y3{bottom:1104.450000px;}
.y4c{bottom:1105.530000px;}
.y2{bottom:1122.480000px;}
.y4b{bottom:1123.200000px;}
.y1{bottom:1140.480000px;}
.y4a{bottom:1140.840000px;}
.h7{height:47.321367px;}
.h8{height:48.616875px;}
.h9{height:52.971680px;}
.ha{height:52.998047px;}
.hb{height:54.421875px;}
.h4{height:58.651172px;}
.h3{height:59.038594px;}
.h2{height:60.226875px;}
.h6{height:113.976000px;}
.hd{height:128.160000px;}
.h5{height:796.935000px;}
.hc{height:800.745000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:336.630000px;}
.w3{width:337.215000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x8{left:99.936000px;}
.x1{left:108.035987px;}
.x2{left:129.635987px;}
.x6{left:326.775000px;}
.x9{left:328.539000px;}
.x5{left:456.015000px;}
.x4{left:464.474987px;}
.x3{left:486.104987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.656000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls16{letter-spacing:3.360000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls15{letter-spacing:9.120000pt;}
.ls3{letter-spacing:12.960000pt;}
.ls4{letter-spacing:16.160000pt;}
.ls12{letter-spacing:20.640000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.521067pt;}
.ws0{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-1.912320pt;}
._0{margin-left:-0.926720pt;}
._1{width:1.009280pt;}
._a{width:2.443520pt;}
._7{width:3.925120pt;}
._6{width:5.046400pt;}
._d{width:6.068907pt;}
._b{width:7.091200pt;}
._3{width:8.074240pt;}
._4{width:9.396480pt;}
._5{width:10.381867pt;}
._9{width:11.898880pt;}
._12{width:13.421440pt;}
._2{width:14.762027pt;}
._c{width:16.047787pt;}
._10{width:17.582720pt;}
._11{width:18.964267pt;}
._14{width:20.618240pt;}
._13{width:21.885440pt;}
._e{width:23.998507pt;}
._f{width:25.888000pt;}
._16{width:28.320000pt;}
._15{width:29.376000pt;}
.fs1{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.560000pt;}
.y40{bottom:9.280000pt;}
.y48{bottom:15.200000pt;}
.y47{bottom:27.840000pt;}
.y82{bottom:40.474667pt;}
.y46{bottom:40.480000pt;}
.y81{bottom:53.114667pt;}
.y45{bottom:53.120000pt;}
.y80{bottom:65.754667pt;}
.y44{bottom:65.760000pt;}
.y7f{bottom:78.394667pt;}
.y43{bottom:78.400000pt;}
.y7e{bottom:91.034667pt;}
.y42{bottom:91.040000pt;}
.y7c{bottom:95.872000pt;}
.y3b{bottom:102.752000pt;}
.y7d{bottom:103.674667pt;}
.y3e{bottom:105.632000pt;}
.y3a{bottom:118.432000pt;}
.y3d{bottom:121.312000pt;}
.y39{bottom:134.106667pt;}
.y3c{bottom:136.986667pt;}
.y41{bottom:149.626667pt;}
.y38{bottom:149.786667pt;}
.y37{bottom:165.466667pt;}
.y36{bottom:181.146667pt;}
.y35{bottom:196.826667pt;}
.y7b{bottom:209.786667pt;}
.y34{bottom:212.506667pt;}
.y33{bottom:228.186667pt;}
.y32{bottom:243.906667pt;}
.y3f{bottom:250.946667pt;}
.y31{bottom:259.586667pt;}
.y30{bottom:275.266667pt;}
.y7a{bottom:283.106667pt;}
.y2f{bottom:290.946667pt;}
.y79{bottom:299.106667pt;}
.y2e{bottom:306.626667pt;}
.y78{bottom:315.106667pt;}
.y2d{bottom:322.306667pt;}
.y77{bottom:331.106667pt;}
.y2c{bottom:337.986667pt;}
.y76{bottom:347.106667pt;}
.y2b{bottom:353.666667pt;}
.y75{bottom:363.106667pt;}
.y2a{bottom:369.506667pt;}
.y74{bottom:379.106667pt;}
.y29{bottom:385.186667pt;}
.y73{bottom:394.786667pt;}
.y28{bottom:400.866667pt;}
.y72{bottom:408.866667pt;}
.y27{bottom:416.546667pt;}
.y71{bottom:422.946667pt;}
.y26{bottom:432.226667pt;}
.y70{bottom:437.026667pt;}
.y25{bottom:447.906667pt;}
.y6f{bottom:451.106667pt;}
.y24{bottom:463.586667pt;}
.y6e{bottom:465.186667pt;}
.y23{bottom:479.266667pt;}
.y6d{bottom:493.346667pt;}
.y22{bottom:494.973333pt;}
.y6c{bottom:507.453333pt;}
.y21{bottom:510.653333pt;}
.y6b{bottom:521.533333pt;}
.y20{bottom:526.333333pt;}
.y6a{bottom:535.613333pt;}
.y1f{bottom:542.013333pt;}
.y69{bottom:549.693333pt;}
.y1e{bottom:557.693333pt;}
.y68{bottom:563.773333pt;}
.y1d{bottom:573.373333pt;}
.y67{bottom:577.853333pt;}
.y1c{bottom:589.053333pt;}
.y66{bottom:591.933333pt;}
.y1b{bottom:604.733333pt;}
.y65{bottom:606.013333pt;}
.y64{bottom:620.093333pt;}
.y1a{bottom:620.413333pt;}
.y63{bottom:634.173333pt;}
.y19{bottom:636.093333pt;}
.y62{bottom:648.253333pt;}
.y18{bottom:651.773333pt;}
.y61{bottom:662.333333pt;}
.y17{bottom:667.453333pt;}
.y60{bottom:676.733333pt;}
.y16{bottom:683.133333pt;}
.y5f{bottom:690.813333pt;}
.y15{bottom:698.813333pt;}
.y5e{bottom:704.893333pt;}
.y14{bottom:714.653333pt;}
.y5d{bottom:718.973333pt;}
.y13{bottom:730.333333pt;}
.y5c{bottom:733.053333pt;}
.y12{bottom:746.053333pt;}
.y5b{bottom:747.493333pt;}
.y11{bottom:761.733333pt;}
.y5a{bottom:763.173333pt;}
.y10{bottom:777.413333pt;}
.y59{bottom:778.853333pt;}
.yf{bottom:793.093333pt;}
.y58{bottom:794.533333pt;}
.ye{bottom:808.773333pt;}
.y57{bottom:810.213333pt;}
.yd{bottom:824.453333pt;}
.y56{bottom:825.893333pt;}
.yc{bottom:840.133333pt;}
.y55{bottom:841.573333pt;}
.yb{bottom:855.813333pt;}
.y54{bottom:857.253333pt;}
.ya{bottom:871.493333pt;}
.y53{bottom:872.933333pt;}
.y9{bottom:887.173333pt;}
.y52{bottom:888.613333pt;}
.y8{bottom:902.853333pt;}
.y51{bottom:904.293333pt;}
.y7{bottom:918.533333pt;}
.y50{bottom:919.973333pt;}
.y6{bottom:934.213333pt;}
.y4f{bottom:935.653333pt;}
.y5{bottom:949.893333pt;}
.y4e{bottom:951.333333pt;}
.y4{bottom:965.733333pt;}
.y4d{bottom:967.013333pt;}
.y3{bottom:981.733333pt;}
.y4c{bottom:982.693333pt;}
.y2{bottom:997.760000pt;}
.y4b{bottom:998.400000pt;}
.y1{bottom:1013.760000pt;}
.y4a{bottom:1014.080000pt;}
.h7{height:42.063437pt;}
.h8{height:43.215000pt;}
.h9{height:47.085938pt;}
.ha{height:47.109375pt;}
.hb{height:48.375000pt;}
.h4{height:52.134375pt;}
.h3{height:52.478750pt;}
.h2{height:53.535000pt;}
.h6{height:101.312000pt;}
.hd{height:113.920000pt;}
.h5{height:708.386667pt;}
.hc{height:711.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:299.226667pt;}
.w3{width:299.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x8{left:88.832000pt;}
.x1{left:96.031988pt;}
.x2{left:115.231988pt;}
.x6{left:290.466667pt;}
.x9{left:292.034667pt;}
.x5{left:405.346667pt;}
.x4{left:412.866655pt;}
.x3{left:432.093322pt;}
}




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