
    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_99da3c4dd978221c334ce071.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e097328b932284c5922e943f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_78bd0384d5df2ec96cf90d4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746094;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_663ed10b3c43ddac15bc5092.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713867;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_903d3f0ca7e8b45aabba273c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:74.953132px;}
.ls3{letter-spacing:74.983594px;}
.ls5{letter-spacing:101.985334px;}
.ls2{letter-spacing:108.000003px;}
.ls4{letter-spacing:108.000847px;}
.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;}
}
.ws3{word-spacing:-66.480000px;}
.ws6{word-spacing:-53.184003px;}
.ws2{word-spacing:-33.240000px;}
.ws4{word-spacing:-23.268000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:41.755314px;}
.ws5{word-spacing:78.190315px;}
.ws1{word-spacing:110.686892px;}
._d{margin-left:-21.120001px;}
._9{margin-left:-17.760000px;}
._0{margin-left:-15.840001px;}
._6{margin-left:-13.200000px;}
._5{margin-left:-11.988000px;}
._4{margin-left:-9.828000px;}
._1{margin-left:-7.920000px;}
._2{margin-left:-5.940000px;}
._8{margin-left:-4.860000px;}
._b{margin-left:-3.036000px;}
._3{margin-left:-1.944000px;}
._7{width:1.218510px;}
._a{width:81.010551px;}
._c{width:92.991796px;}
._e{width:108.010551px;}
.fc1{color:rgb(46,46,45);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:66.000004px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:108.000003px;}
.fs6{font-size:120.000001px;}
.fs1{font-size:144.000005px;}
.fs7{font-size:167.999999px;}
.fs9{font-size:192.000012px;}
.fs3{font-size:240.000002px;}
.fs0{font-size:288.000009px;}
.fs4{font-size:324.000010px;}
.y0{bottom:0.000000px;}
.y69{bottom:53.937555px;}
.y7{bottom:68.430241px;}
.y68{bottom:79.137578px;}
.y67{bottom:104.337624px;}
.y66{bottom:129.537625px;}
.y1e{bottom:136.932515px;}
.y7e{bottom:146.599449px;}
.y65{bottom:154.737660px;}
.y4e{bottom:155.837184px;}
.y64{bottom:179.937694px;}
.y1d{bottom:185.532528px;}
.y3a{bottom:190.712950px;}
.y4d{bottom:193.637230px;}
.y63{bottom:205.137718px;}
.y62{bottom:230.337741px;}
.y4c{bottom:231.437265px;}
.y1c{bottom:234.132540px;}
.y6{bottom:242.181691px;}
.y39{bottom:244.712952px;}
.y30{bottom:247.793011px;}
.y61{bottom:255.537775px;}
.y16{bottom:257.882394px;}
.y4b{bottom:269.237311px;}
.y60{bottom:280.737810px;}
.y2f{bottom:296.393035px;}
.y1b{bottom:297.732539px;}
.y38{bottom:298.712954px;}
.y28{bottom:304.155940px;}
.y5f{bottom:305.937833px;}
.y23{bottom:306.330610px;}
.y4a{bottom:309.437320px;}
.y15{bottom:311.882395px;}
.y7d{bottom:314.899353px;}
.y5{bottom:319.941693px;}
.y5e{bottom:331.137857px;}
.y49{bottom:334.637344px;}
.y77{bottom:338.359350px;}
.y2e{bottom:344.993036px;}
.y6e{bottom:347.672629px;}
.y37{bottom:352.712955px;}
.y22{bottom:354.930612px;}
.y5d{bottom:356.337891px;}
.y4{bottom:358.821684px;}
.yd{bottom:358.920953px;}
.y48{bottom:359.837378px;}
.y1a{bottom:361.332526px;}
.y7c{bottom:370.999381px;}
.y27{bottom:376.155942px;}
.y14{bottom:380.882371px;}
.y5c{bottom:381.537914px;}
.yf{bottom:382.492899px;}
.y47{bottom:385.037401px;}
.y2d{bottom:393.593038px;}
.y76{bottom:403.159363px;}
.y21{bottom:403.530596px;}
.y36{bottom:406.712957px;}
.y5b{bottom:406.737915px;}
.yc{bottom:407.520955px;}
.y46{bottom:410.237402px;}
.y29{bottom:413.157486px;}
.y6d{bottom:416.672616px;}
.y19{bottom:424.932528px;}
.y7b{bottom:427.099386px;}
.y5a{bottom:431.937905px;}
.y45{bottom:435.437392px;}
.y2c{bottom:442.193023px;}
.y26{bottom:448.155945px;}
.y13{bottom:449.882381px;}
.y20{bottom:452.130592px;}
.yb{bottom:456.120939px;}
.y59{bottom:457.137906px;}
.y44{bottom:460.637393px;}
.y35{bottom:460.712959px;}
.y72{bottom:464.638916px;}
.y75{bottom:467.959354px;}
.ye{bottom:469.972902px;}
.y7a{bottom:475.699354px;}
.y3{bottom:480.312259px;}
.y58{bottom:482.337895px;}
.y6c{bottom:485.672603px;}
.y43{bottom:485.837382px;}
.y18{bottom:488.532523px;}
.y2b{bottom:490.793019px;}
.y1f{bottom:500.730595px;}
.y12{bottom:503.882371px;}
.ya{bottom:504.720935px;}
.y57{bottom:507.537885px;}
.y42{bottom:511.037372px;}
.y34{bottom:514.712961px;}
.y25{bottom:520.155947px;}
.y56{bottom:532.737886px;}
.y74{bottom:532.759356px;}
.y79{bottom:534.319360px;}
.y41{bottom:536.237372px;}
.y2a{bottom:539.393021px;}
.y9{bottom:553.320938px;}
.y70{bottom:554.277738px;}
.y6b{bottom:554.672602px;}
.y11{bottom:557.882364px;}
.y55{bottom:557.937875px;}
.y40{bottom:561.437362px;}
.y2{bottom:566.712273px;}
.y33{bottom:568.712951px;}
.y54{bottom:583.137870px;}
.y3f{bottom:586.637357px;}
.y24{bottom:592.155952px;}
.y73{bottom:597.559358px;}
.y78{bottom:603.319361px;}
.y53{bottom:608.337877px;}
.y32{bottom:622.712944px;}
.y6f{bottom:623.277737px;}
.y17{bottom:623.295714px;}
.y6a{bottom:623.672603px;}
.y3e{bottom:624.437356px;}
.y52{bottom:633.537871px;}
.y1{bottom:653.112276px;}
.y51{bottom:658.737869px;}
.y3d{bottom:662.237356px;}
.y71{bottom:675.522866px;}
.y8{bottom:688.095712px;}
.y10{bottom:689.249414px;}
.y31{bottom:699.615710px;}
.y50{bottom:704.260402px;}
.y3c{bottom:714.780008px;}
.y4f{bottom:754.660397px;}
.y3b{bottom:765.180003px;}
.hc{height:61.154297px;}
.hb{height:61.236328px;}
.h9{height:78.626956px;}
.h3{height:78.732424px;}
.h8{height:78.890628px;}
.h7{height:87.480469px;}
.h6{height:87.656251px;}
.h2{height:104.976566px;}
.ha{height:122.308593px;}
.hd{height:139.968759px;}
.h4{height:174.726564px;}
.h1{height:209.671882px;}
.h5{height:235.880867px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x14{left:19.861674px;}
.x11{left:24.105356px;}
.x12{left:27.257408px;}
.xe{left:28.879253px;}
.xf{left:32.031187px;}
.x13{left:57.855357px;}
.x10{left:62.629136px;}
.x15{left:103.886747px;}
.x1{left:110.849415px;}
.x17{left:273.377956px;}
.x7{left:296.518625px;}
.x5{left:305.094779px;}
.xb{left:308.509604px;}
.x6{left:310.090870px;}
.x3{left:311.505501px;}
.x4{left:314.845660px;}
.xc{left:319.006378px;}
.x18{left:324.165243px;}
.x1c{left:336.698939px;}
.x8{left:345.256909px;}
.xd{left:348.709016px;}
.x19{left:359.651577px;}
.x1a{left:377.198940px;}
.x1b{left:406.901578px;}
.x2{left:808.161258px;}
.x9{left:931.698536px;}
.xa{left:985.698538px;}
.x16{left:1186.743413px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:66.625006pt;}
.ls3{letter-spacing:66.652084pt;}
.ls5{letter-spacing:90.653630pt;}
.ls2{letter-spacing:96.000003pt;}
.ls4{letter-spacing:96.000753pt;}
.ws3{word-spacing:-59.093334pt;}
.ws6{word-spacing:-47.274670pt;}
.ws2{word-spacing:-29.546667pt;}
.ws4{word-spacing:-20.682667pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:37.115835pt;}
.ws5{word-spacing:69.502502pt;}
.ws1{word-spacing:98.388348pt;}
._d{margin-left:-18.773335pt;}
._9{margin-left:-15.786667pt;}
._0{margin-left:-14.080000pt;}
._6{margin-left:-11.733333pt;}
._5{margin-left:-10.656000pt;}
._4{margin-left:-8.736000pt;}
._1{margin-left:-7.040000pt;}
._2{margin-left:-5.280000pt;}
._8{margin-left:-4.320000pt;}
._b{margin-left:-2.698667pt;}
._3{margin-left:-1.728000pt;}
._7{width:1.083120pt;}
._a{width:72.009378pt;}
._c{width:82.659374pt;}
._e{width:96.009379pt;}
.fs5{font-size:58.666670pt;}
.fs8{font-size:74.666666pt;}
.fs2{font-size:96.000003pt;}
.fs6{font-size:106.666667pt;}
.fs1{font-size:128.000004pt;}
.fs7{font-size:149.333333pt;}
.fs9{font-size:170.666677pt;}
.fs3{font-size:213.333335pt;}
.fs0{font-size:256.000008pt;}
.fs4{font-size:288.000009pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:47.944493pt;}
.y7{bottom:60.826881pt;}
.y68{bottom:70.344514pt;}
.y67{bottom:92.744555pt;}
.y66{bottom:115.144556pt;}
.y1e{bottom:121.717791pt;}
.y7e{bottom:130.310621pt;}
.y65{bottom:137.544586pt;}
.y4e{bottom:138.521941pt;}
.y64{bottom:159.944617pt;}
.y1d{bottom:164.917802pt;}
.y3a{bottom:169.522622pt;}
.y4d{bottom:172.121982pt;}
.y63{bottom:182.344638pt;}
.y62{bottom:204.744659pt;}
.y4c{bottom:205.722014pt;}
.y1c{bottom:208.117814pt;}
.y6{bottom:215.272614pt;}
.y39{bottom:217.522624pt;}
.y30{bottom:220.260454pt;}
.y61{bottom:227.144689pt;}
.y16{bottom:229.228794pt;}
.y4b{bottom:239.322055pt;}
.y60{bottom:249.544720pt;}
.y2f{bottom:263.460475pt;}
.y1b{bottom:264.651145pt;}
.y38{bottom:265.522625pt;}
.y28{bottom:270.360836pt;}
.y5f{bottom:271.944741pt;}
.y23{bottom:272.293876pt;}
.y4a{bottom:275.055396pt;}
.y15{bottom:277.228796pt;}
.y7d{bottom:279.910536pt;}
.y5{bottom:284.392616pt;}
.y5e{bottom:294.344761pt;}
.y49{bottom:297.455416pt;}
.y77{bottom:300.763867pt;}
.y2e{bottom:306.660477pt;}
.y6e{bottom:309.042337pt;}
.y37{bottom:313.522627pt;}
.y22{bottom:315.493877pt;}
.y5d{bottom:316.744792pt;}
.y4{bottom:318.952608pt;}
.yd{bottom:319.040847pt;}
.y48{bottom:319.855447pt;}
.y1a{bottom:321.184467pt;}
.y7c{bottom:329.777228pt;}
.y27{bottom:334.360838pt;}
.y14{bottom:338.562108pt;}
.y5c{bottom:339.144813pt;}
.yf{bottom:339.993688pt;}
.y47{bottom:342.255468pt;}
.y2d{bottom:349.860478pt;}
.y76{bottom:358.363878pt;}
.y21{bottom:358.693863pt;}
.y36{bottom:361.522629pt;}
.y5b{bottom:361.544814pt;}
.yc{bottom:362.240849pt;}
.y46{bottom:364.655469pt;}
.y29{bottom:367.251099pt;}
.y6d{bottom:370.375659pt;}
.y19{bottom:377.717803pt;}
.y7b{bottom:379.643899pt;}
.y5a{bottom:383.944804pt;}
.y45{bottom:387.055459pt;}
.y2c{bottom:393.060465pt;}
.y26{bottom:398.360840pt;}
.y13{bottom:399.895450pt;}
.y20{bottom:401.893860pt;}
.yb{bottom:405.440835pt;}
.y59{bottom:406.344805pt;}
.y44{bottom:409.455460pt;}
.y35{bottom:409.522630pt;}
.y72{bottom:413.012370pt;}
.y75{bottom:415.963870pt;}
.ye{bottom:417.753690pt;}
.y7a{bottom:422.843870pt;}
.y3{bottom:426.944231pt;}
.y58{bottom:428.744796pt;}
.y6c{bottom:431.708981pt;}
.y43{bottom:431.855451pt;}
.y18{bottom:434.251132pt;}
.y2b{bottom:436.260461pt;}
.y1f{bottom:445.093862pt;}
.y12{bottom:447.895441pt;}
.ya{bottom:448.640831pt;}
.y57{bottom:451.144786pt;}
.y42{bottom:454.255441pt;}
.y34{bottom:457.522632pt;}
.y25{bottom:462.360842pt;}
.y56{bottom:473.544787pt;}
.y74{bottom:473.563872pt;}
.y79{bottom:474.950542pt;}
.y41{bottom:476.655442pt;}
.y2a{bottom:479.460463pt;}
.y9{bottom:491.840834pt;}
.y70{bottom:492.691323pt;}
.y6b{bottom:493.042313pt;}
.y11{bottom:495.895435pt;}
.y55{bottom:495.944778pt;}
.y40{bottom:499.055433pt;}
.y2{bottom:503.744243pt;}
.y33{bottom:505.522623pt;}
.y54{bottom:518.344774pt;}
.y3f{bottom:521.455429pt;}
.y24{bottom:526.360846pt;}
.y73{bottom:531.163874pt;}
.y78{bottom:536.283876pt;}
.y53{bottom:540.744779pt;}
.y32{bottom:553.522617pt;}
.y6f{bottom:554.024655pt;}
.y17{bottom:554.040635pt;}
.y6a{bottom:554.375647pt;}
.y3e{bottom:555.055428pt;}
.y52{bottom:563.144774pt;}
.y1{bottom:580.544246pt;}
.y51{bottom:585.544773pt;}
.y3d{bottom:588.655428pt;}
.y71{bottom:600.464770pt;}
.y8{bottom:611.640633pt;}
.y10{bottom:612.666146pt;}
.y31{bottom:621.880631pt;}
.y50{bottom:626.009246pt;}
.y3c{bottom:635.360007pt;}
.y4f{bottom:670.809241pt;}
.y3b{bottom:680.160003pt;}
.hc{height:54.359375pt;}
.hb{height:54.432291pt;}
.h9{height:69.890627pt;}
.h3{height:69.984377pt;}
.h8{height:70.125002pt;}
.h7{height:77.760417pt;}
.h6{height:77.916667pt;}
.h2{height:93.312503pt;}
.ha{height:108.718750pt;}
.hd{height:124.416675pt;}
.h4{height:155.312501pt;}
.h1{height:186.375006pt;}
.h5{height:209.671882pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x14{left:17.654822pt;}
.x11{left:21.426983pt;}
.x12{left:24.228807pt;}
.xe{left:25.670447pt;}
.xf{left:28.472166pt;}
.x13{left:51.426984pt;}
.x10{left:55.670343pt;}
.x15{left:92.343775pt;}
.x1{left:98.532813pt;}
.x17{left:243.002628pt;}
.x7{left:263.572111pt;}
.x5{left:271.195359pt;}
.xb{left:274.230759pt;}
.x6{left:275.636329pt;}
.x3{left:276.893779pt;}
.x4{left:279.862809pt;}
.xc{left:283.561225pt;}
.x18{left:288.146883pt;}
.x1c{left:299.287946pt;}
.x8{left:306.895030pt;}
.xd{left:309.963570pt;}
.x19{left:319.690290pt;}
.x1a{left:335.287947pt;}
.x1b{left:361.690292pt;}
.x2{left:718.365563pt;}
.x9{left:828.176477pt;}
.xa{left:876.176478pt;}
.x16{left:1054.883034pt;}
}




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