
    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_88b50d23f2f59ad22dde00f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c59ba26a5c0b28febd1d585d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2168bd582ac620d5ee505955.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_3933e8e5faa7162d870236b1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_e3e91322b89900ecc20b5049.woff')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-0.414600px;}
.ls12{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.017280px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.666000px;}
.ls5{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.732960px;}
.ls0{letter-spacing:0.912960px;}
.lsa{letter-spacing:33.401280px;}
.lsb{letter-spacing:34.841280px;}
.ls4{letter-spacing:71.262720px;}
.ls7{letter-spacing:71.982720px;}
.ls6{letter-spacing:72.702720px;}
.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;}
}
.ws8{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.152520px;}
.ws5{word-spacing:-17.238720px;}
.ws2{word-spacing:-16.919880px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.012000px;}
.ws0{word-spacing:-10.808640px;}
.ws1{word-spacing:-10.791360px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-4.438080px;}
._7{margin-left:-3.047040px;}
._0{margin-left:-1.296000px;}
._1{width:1.794000px;}
._6{width:2.862720px;}
._5{width:3.908160px;}
._8{width:5.107440px;}
._9{width:6.955200px;}
._a{width:8.184960px;}
._e{width:9.955440px;}
._b{width:11.226480px;}
._c{width:12.474480px;}
._d{width:14.676480px;}
._f{width:15.926400px;}
._3{width:71.522160px;}
._2{width:73.294560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:97.956000px;}
.y2d{bottom:116.856000px;}
.y2c{bottom:135.756000px;}
.y5b{bottom:148.356000px;}
.y2b{bottom:163.830000px;}
.y5a{bottom:170.130000px;}
.y2a{bottom:182.730000px;}
.y59{bottom:191.910000px;}
.y29{bottom:201.810000px;}
.y58{bottom:213.690000px;}
.y28{bottom:220.710000px;}
.y57{bottom:235.650000px;}
.y27{bottom:248.610000px;}
.y56{bottom:257.430000px;}
.y26{bottom:267.690000px;}
.y55{bottom:279.210000px;}
.y25{bottom:286.635000px;}
.y54{bottom:301.035000px;}
.y24{bottom:305.715000px;}
.y53{bottom:322.995000px;}
.y23{bottom:333.615000px;}
.y52{bottom:344.775000px;}
.y51{bottom:366.555000px;}
.y22{bottom:370.875000px;}
.y50{bottom:388.335000px;}
.y21{bottom:391.395000px;}
.y4f{bottom:410.115000px;}
.y20{bottom:410.295000px;}
.y1f{bottom:429.195000px;}
.y4e{bottom:448.275000px;}
.y1e{bottom:448.455000px;}
.y74{bottom:465.915000px;}
.y1d{bottom:468.975000px;}
.y73{bottom:484.995000px;}
.y4d{bottom:498.315000px;}
.y72{bottom:503.895000px;}
.y1c{bottom:505.875000px;}
.y4c{bottom:517.215000px;}
.y71{bottom:522.975000px;}
.y1b{bottom:524.955000px;}
.y70{bottom:541.875000px;}
.y1a{bottom:543.855000px;}
.y4b{bottom:554.295000px;}
.y6f{bottom:560.775000px;}
.y19{bottom:562.755000px;}
.y6e{bottom:579.885000px;}
.y18{bottom:581.865000px;}
.y4a{bottom:591.225000px;}
.y6d{bottom:598.785000px;}
.y49{bottom:610.305000px;}
.y6c{bottom:617.865000px;}
.y17{bottom:619.845000px;}
.y48{bottom:629.205000px;}
.y6b{bottom:636.765000px;}
.y47{bottom:648.105000px;}
.y6a{bottom:655.665000px;}
.y46{bottom:667.185000px;}
.y16{bottom:669.345000px;}
.y69{bottom:674.745000px;}
.y68{bottom:693.645000px;}
.y15{bottom:693.825000px;}
.y45{bottom:704.445000px;}
.y67{bottom:712.725000px;}
.y14{bottom:713.985000px;}
.y44{bottom:724.785000px;}
.y13{bottom:729.465000px;}
.y43{bottom:743.865000px;}
.y12{bottom:744.945000px;}
.y66{bottom:750.705000px;}
.y11{bottom:760.425000px;}
.y42{bottom:762.765000px;}
.y10{bottom:776.085000px;}
.y41{bottom:781.665000px;}
.yf{bottom:791.565000px;}
.y40{bottom:800.745000px;}
.y3f{bottom:819.645000px;}
.y65{bottom:819.825000px;}
.ye{bottom:820.725000px;}
.y3e{bottom:838.725000px;}
.yd{bottom:841.965000px;}
.y64{bottom:857.850000px;}
.yc{bottom:863.250000px;}
.y3d{bottom:875.670000px;}
.yb{bottom:884.310000px;}
.y3c{bottom:894.750000px;}
.ya{bottom:905.550000px;}
.y63{bottom:907.890000px;}
.y3b{bottom:913.650000px;}
.y9{bottom:926.790000px;}
.y62{bottom:926.970000px;}
.y3a{bottom:932.550000px;}
.y61{bottom:945.870000px;}
.y8{bottom:947.850000px;}
.y39{bottom:951.810000px;}
.y38{bottom:972.330000px;}
.y60{bottom:982.770000px;}
.y7{bottom:988.350000px;}
.y37{bottom:991.230000px;}
.y5f{bottom:1001.850000px;}
.y36{bottom:1010.310000px;}
.y6{bottom:1012.470000px;}
.y35{bottom:1047.210000px;}
.y5e{bottom:1048.830000px;}
.y5{bottom:1055.850000px;}
.y34{bottom:1066.110000px;}
.y33{bottom:1085.190000px;}
.y5d{bottom:1098.870000px;}
.y4{bottom:1111.650000px;}
.y32{bottom:1122.090000px;}
.y5c{bottom:1137.060000px;}
.y3{bottom:1139.220000px;}
.y31{bottom:1141.200000px;}
.y2{bottom:1163.700000px;}
.y30{bottom:1181.700000px;}
.y1{bottom:1188.180000px;}
.y2f{bottom:1197.180000px;}
.h7{height:38.320312px;}
.h2{height:56.320312px;}
.h6{height:62.327813px;}
.h3{height:69.086250px;}
.h8{height:75.093750px;}
.h5{height:87.859687px;}
.h4{height:112.640625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x8{left:111.815987px;}
.xb{left:119.015987px;}
.x14{left:129.095987px;}
.x15{left:132.695987px;}
.xa{left:139.715987px;}
.x6{left:144.935987px;}
.x17{left:146.015987px;}
.x4{left:154.829987px;}
.x16{left:159.329987px;}
.x9{left:162.569987px;}
.x7{left:171.389987px;}
.x3{left:225.029987px;}
.x5{left:260.669987px;}
.x12{left:273.089987px;}
.x13{left:275.969987px;}
.xc{left:286.949987px;}
.x11{left:318.854987px;}
.xf{left:323.894987px;}
.x10{left:339.734987px;}
.x18{left:357.554987px;}
.xd{left:367.814987px;}
.xe{left:378.614987px;}
.x2{left:786.749987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.368533pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.592000pt;}
.ls5{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.651520pt;}
.ls0{letter-spacing:0.811520pt;}
.lsa{letter-spacing:29.690027pt;}
.lsb{letter-spacing:30.970027pt;}
.ls4{letter-spacing:63.344640pt;}
.ls7{letter-spacing:63.984640pt;}
.ls6{letter-spacing:64.624640pt;}
.ws8{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.135573pt;}
.ws5{word-spacing:-15.323307pt;}
.ws2{word-spacing:-15.039893pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws0{word-spacing:-9.607680pt;}
.ws1{word-spacing:-9.592320pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-3.944960pt;}
._7{margin-left:-2.708480pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.594667pt;}
._6{width:2.544640pt;}
._5{width:3.473920pt;}
._8{width:4.539947pt;}
._9{width:6.182400pt;}
._a{width:7.275520pt;}
._e{width:8.849280pt;}
._b{width:9.979093pt;}
._c{width:11.088427pt;}
._d{width:13.045760pt;}
._f{width:14.156800pt;}
._3{width:63.575253pt;}
._2{width:65.150720pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:87.072000pt;}
.y2d{bottom:103.872000pt;}
.y2c{bottom:120.672000pt;}
.y5b{bottom:131.872000pt;}
.y2b{bottom:145.626667pt;}
.y5a{bottom:151.226667pt;}
.y2a{bottom:162.426667pt;}
.y59{bottom:170.586667pt;}
.y29{bottom:179.386667pt;}
.y58{bottom:189.946667pt;}
.y28{bottom:196.186667pt;}
.y57{bottom:209.466667pt;}
.y27{bottom:220.986667pt;}
.y56{bottom:228.826667pt;}
.y26{bottom:237.946667pt;}
.y55{bottom:248.186667pt;}
.y25{bottom:254.786667pt;}
.y54{bottom:267.586667pt;}
.y24{bottom:271.746667pt;}
.y53{bottom:287.106667pt;}
.y23{bottom:296.546667pt;}
.y52{bottom:306.466667pt;}
.y51{bottom:325.826667pt;}
.y22{bottom:329.666667pt;}
.y50{bottom:345.186667pt;}
.y21{bottom:347.906667pt;}
.y4f{bottom:364.546667pt;}
.y20{bottom:364.706667pt;}
.y1f{bottom:381.506667pt;}
.y4e{bottom:398.466667pt;}
.y1e{bottom:398.626667pt;}
.y74{bottom:414.146667pt;}
.y1d{bottom:416.866667pt;}
.y73{bottom:431.106667pt;}
.y4d{bottom:442.946667pt;}
.y72{bottom:447.906667pt;}
.y1c{bottom:449.666667pt;}
.y4c{bottom:459.746667pt;}
.y71{bottom:464.866667pt;}
.y1b{bottom:466.626667pt;}
.y70{bottom:481.666667pt;}
.y1a{bottom:483.426667pt;}
.y4b{bottom:492.706667pt;}
.y6f{bottom:498.466667pt;}
.y19{bottom:500.226667pt;}
.y6e{bottom:515.453333pt;}
.y18{bottom:517.213333pt;}
.y4a{bottom:525.533333pt;}
.y6d{bottom:532.253333pt;}
.y49{bottom:542.493333pt;}
.y6c{bottom:549.213333pt;}
.y17{bottom:550.973333pt;}
.y48{bottom:559.293333pt;}
.y6b{bottom:566.013333pt;}
.y47{bottom:576.093333pt;}
.y6a{bottom:582.813333pt;}
.y46{bottom:593.053333pt;}
.y16{bottom:594.973333pt;}
.y69{bottom:599.773333pt;}
.y68{bottom:616.573333pt;}
.y15{bottom:616.733333pt;}
.y45{bottom:626.173333pt;}
.y67{bottom:633.533333pt;}
.y14{bottom:634.653333pt;}
.y44{bottom:644.253333pt;}
.y13{bottom:648.413333pt;}
.y43{bottom:661.213333pt;}
.y12{bottom:662.173333pt;}
.y66{bottom:667.293333pt;}
.y11{bottom:675.933333pt;}
.y42{bottom:678.013333pt;}
.y10{bottom:689.853333pt;}
.y41{bottom:694.813333pt;}
.yf{bottom:703.613333pt;}
.y40{bottom:711.773333pt;}
.y3f{bottom:728.573333pt;}
.y65{bottom:728.733333pt;}
.ye{bottom:729.533333pt;}
.y3e{bottom:745.533333pt;}
.yd{bottom:748.413333pt;}
.y64{bottom:762.533333pt;}
.yc{bottom:767.333333pt;}
.y3d{bottom:778.373333pt;}
.yb{bottom:786.053333pt;}
.y3c{bottom:795.333333pt;}
.ya{bottom:804.933333pt;}
.y63{bottom:807.013333pt;}
.y3b{bottom:812.133333pt;}
.y9{bottom:823.813333pt;}
.y62{bottom:823.973333pt;}
.y3a{bottom:828.933333pt;}
.y61{bottom:840.773333pt;}
.y8{bottom:842.533333pt;}
.y39{bottom:846.053333pt;}
.y38{bottom:864.293333pt;}
.y60{bottom:873.573333pt;}
.y7{bottom:878.533333pt;}
.y37{bottom:881.093333pt;}
.y5f{bottom:890.533333pt;}
.y36{bottom:898.053333pt;}
.y6{bottom:899.973333pt;}
.y35{bottom:930.853333pt;}
.y5e{bottom:932.293333pt;}
.y5{bottom:938.533333pt;}
.y34{bottom:947.653333pt;}
.y33{bottom:964.613333pt;}
.y5d{bottom:976.773333pt;}
.y4{bottom:988.133333pt;}
.y32{bottom:997.413333pt;}
.y5c{bottom:1010.720000pt;}
.y3{bottom:1012.640000pt;}
.y31{bottom:1014.400000pt;}
.y2{bottom:1034.400000pt;}
.y30{bottom:1050.400000pt;}
.y1{bottom:1056.160000pt;}
.y2f{bottom:1064.160000pt;}
.h7{height:34.062500pt;}
.h2{height:50.062500pt;}
.h6{height:55.402500pt;}
.h3{height:61.410000pt;}
.h8{height:66.750000pt;}
.h5{height:78.097500pt;}
.h4{height:100.125000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x8{left:99.391988pt;}
.xb{left:105.791988pt;}
.x14{left:114.751988pt;}
.x15{left:117.951988pt;}
.xa{left:124.191988pt;}
.x6{left:128.831988pt;}
.x17{left:129.791988pt;}
.x4{left:137.626655pt;}
.x16{left:141.626655pt;}
.x9{left:144.506655pt;}
.x7{left:152.346655pt;}
.x3{left:200.026655pt;}
.x5{left:231.706655pt;}
.x12{left:242.746655pt;}
.x13{left:245.306655pt;}
.xc{left:255.066655pt;}
.x11{left:283.426655pt;}
.xf{left:287.906655pt;}
.x10{left:301.986655pt;}
.x18{left:317.826655pt;}
.xd{left:326.946655pt;}
.xe{left:336.546655pt;}
.x2{left:699.333322pt;}
}




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