
    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_cc98fbd827d2a3ea6ee61e9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.032715;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_94b4bd1c018ff74d87468245.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_bf5341ccec77ef0845486bc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.781000;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_7682efdb98dd9b190dab10e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7f6b2fd3122743f70f1213b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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_ab68e8fa6502a258731eaea7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-9.129643px;}
.v2{vertical-align:-3.712334px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:32.480003px;}
.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;}
}
.ws1{word-spacing:-20.910497px;}
.ws2{word-spacing:-20.582490px;}
.ws6{word-spacing:-20.170898px;}
.ws4{word-spacing:-17.929687px;}
.ws0{word-spacing:-0.206550px;}
.ws3{word-spacing:-0.169556px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-12.924958px;}
._2{margin-left:-10.461118px;}
._1{margin-left:-2.694222px;}
._0{margin-left:-1.145873px;}
._4{width:3.624782px;}
.fcc{color:rgb(59,147,162);}
.fca{color:rgb(154,200,134);}
.fcb{color:transparent;}
.fc7{color:rgb(255,145,77);}
.fc6{color:rgb(56,182,255);}
.fc5{color:rgb(255,189,89);}
.fc3{color:rgb(255,49,49);}
.fc2{color:rgb(30,35,43);}
.fc9{color:rgb(128,128,128);}
.fc8{color:rgb(126,217,87);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(32,85,137);}
.fs0{font-size:59.984997px;}
.fs6{font-size:71.999997px;}
.fs9{font-size:72.000003px;}
.fsc{font-size:80.999997px;}
.fs5{font-size:83.969997px;}
.fs8{font-size:84.000003px;}
.fs1{font-size:99.944991px;}
.fs2{font-size:100.169996px;}
.fs3{font-size:107.999996px;}
.fs7{font-size:169.556162px;}
.fs4{font-size:206.550000px;}
.fsa{font-size:269.549998px;}
.fsb{font-size:269.562933px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y42{bottom:15.374992px;}
.y33{bottom:15.374994px;}
.y2a{bottom:16.499994px;}
.y26{bottom:17.249997px;}
.y2c{bottom:17.624997px;}
.y2f{bottom:21.749995px;}
.y43{bottom:26.629101px;}
.y2{bottom:26.629811px;}
.y36{bottom:28.124994px;}
.y39{bottom:28.874994px;}
.y3c{bottom:30.749994px;}
.y24{bottom:32.624996px;}
.y41{bottom:40.124993px;}
.y32{bottom:40.124995px;}
.y29{bottom:41.249995px;}
.y2e{bottom:46.499996px;}
.y3e{bottom:51.374993px;}
.y35{bottom:52.874995px;}
.y38{bottom:53.624995px;}
.y3b{bottom:55.499995px;}
.y40{bottom:64.874994px;}
.y31{bottom:64.874996px;}
.y28{bottom:65.999996px;}
.y22{bottom:87.209636px;}
.y3f{bottom:89.624995px;}
.y3d{bottom:120.420365px;}
.y21{bottom:129.959635px;}
.y20{bottom:151.334634px;}
.y1f{bottom:194.084632px;}
.y1e{bottom:215.459631px;}
.y1d{bottom:236.834630px;}
.y3a{bottom:271.374947px;}
.y1c{bottom:279.584628px;}
.y51{bottom:290.761162px;}
.y52{bottom:293.739622px;}
.y1b{bottom:300.959627px;}
.y57{bottom:312.781641px;}
.y1a{bottom:322.334627px;}
.y19{bottom:365.084625px;}
.y37{bottom:372.001639px;}
.y18{bottom:386.459624px;}
.y4f{bottom:399.387701px;}
.y50{bottom:402.366089px;}
.y56{bottom:419.349017px;}
.y4{bottom:422.678649px;}
.y17{bottom:441.558630px;}
.y45{bottom:451.177371px;}
.y34{bottom:469.127439px;}
.y16{bottom:470.808628px;}
.y4d{bottom:494.264221px;}
.y4e{bottom:497.242609px;}
.y55{bottom:516.929389px;}
.y10{bottom:548.223709px;}
.y30{bottom:563.777915px;}
.y14{bottom:566.407081px;}
.y15{bottom:568.280686px;}
.y11{bottom:572.655915px;}
.y4b{bottom:586.584524px;}
.y4c{bottom:589.562919px;}
.y12{bottom:597.088098px;}
.y54{bottom:608.871783px;}
.y13{bottom:620.961652px;}
.ye{bottom:651.563368px;}
.yf{bottom:653.845754px;}
.y2d{bottom:658.295489px;}
.y49{bottom:667.967721px;}
.y4a{bottom:670.946116px;}
.y53{bottom:690.633615px;}
.yc{bottom:723.115208px;}
.yd{bottom:724.043292px;}
.y2b{bottom:740.382168px;}
.yb{bottom:787.881412px;}
.y27{bottom:792.132165px;}
.y47{bottom:819.609521px;}
.y48{bottom:821.891928px;}
.ya{bottom:848.913715px;}
.y9{bottom:878.163713px;}
.y25{bottom:887.757161px;}
.y8{bottom:907.413712px;}
.y23{bottom:938.142392px;}
.y6{bottom:971.399775px;}
.y7{bottom:973.682185px;}
.y5{bottom:1053.928079px;}
.y46{bottom:1053.928089px;}
.y3{bottom:1126.063781px;}
.y44{bottom:1126.063791px;}
.h3{height:48.152019px;}
.hf{height:48.374998px;}
.h12{height:49.499998px;}
.ha{height:52.136717px;}
.hc{height:57.761716px;}
.h11{height:57.761721px;}
.h9{height:60.804446px;}
.h1b{height:61.580564px;}
.he{height:63.861331px;}
.h8{height:67.364602px;}
.h4{height:75.983570px;}
.h5{height:76.154631px;}
.hd{height:78.749997px;}
.h13{height:79.874997px;}
.h6{height:82.107418px;}
.h14{height:92.249996px;}
.h10{height:93.374996px;}
.h15{height:94.499996px;}
.h16{height:97.874996px;}
.h17{height:116.999995px;}
.hb{height:128.354014px;}
.h7{height:156.358350px;}
.h19{height:195.186839px;}
.h1a{height:195.196206px;}
.h18{height:1187.999609px;}
.h2{height:1187.999951px;}
.h0{height:1187.999991px;}
.h1{height:1188.000000px;}
.w5{width:238.499990px;}
.w2{width:238.500012px;}
.w3{width:298.125031px;}
.w4{width:779.624968px;}
.w1{width:917.999962px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:7.875000px;}
.x26{left:15.199219px;}
.x2b{left:17.882813px;}
.x2{left:19.170683px;}
.x1d{left:20.507813px;}
.x28{left:22.921875px;}
.x22{left:24.632813px;}
.x21{left:27.105469px;}
.x3{left:33.749854px;}
.x29{left:39.093751px;}
.x24{left:43.898439px;}
.x25{left:45.246095px;}
.x2a{left:50.718751px;}
.x23{left:55.312501px;}
.x2c{left:59.718752px;}
.xe{left:87.425343px;}
.x1f{left:89.015628px;}
.x27{left:93.128909px;}
.xd{left:99.023940px;}
.x1b{left:106.764841px;}
.x33{left:117.215941px;}
.x32{left:120.194336px;}
.x36{left:123.220651px;}
.x34{left:124.814407px;}
.x35{left:126.199046px;}
.x16{left:127.203032px;}
.x38{left:128.318308px;}
.x31{left:129.855296px;}
.x37{left:131.296700px;}
.x2e{left:139.075241px;}
.x2d{left:141.357652px;}
.x17{left:152.755921px;}
.x2f{left:171.098375px;}
.xc{left:181.226156px;}
.xf{left:189.223822px;}
.x39{left:197.424046px;}
.xb{left:199.982015px;}
.x6{left:203.048780px;}
.x5{left:205.331190px;}
.x11{left:207.798040px;}
.x18{left:208.956548px;}
.x10{left:210.080447px;}
.x4{left:233.702393px;}
.x7{left:235.071906px;}
.x12{left:239.821184px;}
.x30{left:256.450727px;}
.x8{left:267.980044px;}
.x13{left:272.729344px;}
.x9{left:299.344581px;}
.x14{left:304.093838px;}
.xa{left:320.424243px;}
.x15{left:325.173525px;}
.x1c{left:340.006867px;}
.x1a{left:391.152872px;}
.x19{left:393.026481px;}
.x1e{left:580.243116px;}
.x1{left:643.653576px;}
@media print{
.v1{vertical-align:-8.115238pt;}
.v2{vertical-align:-3.299853pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:28.871113pt;}
.ws1{word-spacing:-18.587109pt;}
.ws2{word-spacing:-18.295546pt;}
.ws6{word-spacing:-17.929687pt;}
.ws4{word-spacing:-15.937499pt;}
.ws0{word-spacing:-0.183600pt;}
.ws3{word-spacing:-0.150717pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-11.488852pt;}
._2{margin-left:-9.298772pt;}
._1{margin-left:-2.394864pt;}
._0{margin-left:-1.018554pt;}
._4{width:3.222028pt;}
.fs0{font-size:53.319997pt;}
.fs6{font-size:63.999997pt;}
.fs9{font-size:64.000002pt;}
.fsc{font-size:71.999997pt;}
.fs5{font-size:74.639997pt;}
.fs8{font-size:74.666670pt;}
.fs1{font-size:88.839992pt;}
.fs2{font-size:89.039996pt;}
.fs3{font-size:95.999996pt;}
.fs7{font-size:150.716588pt;}
.fs4{font-size:183.600000pt;}
.fsa{font-size:239.599998pt;}
.fsb{font-size:239.611496pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y42{bottom:13.666659pt;}
.y33{bottom:13.666661pt;}
.y2a{bottom:14.666661pt;}
.y26{bottom:15.333331pt;}
.y2c{bottom:15.666664pt;}
.y2f{bottom:19.333329pt;}
.y43{bottom:23.670312pt;}
.y2{bottom:23.670943pt;}
.y36{bottom:24.999995pt;}
.y39{bottom:25.666661pt;}
.y3c{bottom:27.333328pt;}
.y24{bottom:28.999996pt;}
.y41{bottom:35.666660pt;}
.y32{bottom:35.666662pt;}
.y29{bottom:36.666662pt;}
.y2e{bottom:41.333330pt;}
.y3e{bottom:45.666661pt;}
.y35{bottom:46.999996pt;}
.y38{bottom:47.666662pt;}
.y3b{bottom:49.333329pt;}
.y40{bottom:57.666661pt;}
.y31{bottom:57.666663pt;}
.y28{bottom:58.666663pt;}
.y22{bottom:77.519677pt;}
.y3f{bottom:79.666662pt;}
.y3d{bottom:107.040324pt;}
.y21{bottom:115.519675pt;}
.y20{bottom:134.519674pt;}
.y1f{bottom:172.519673pt;}
.y1e{bottom:191.519672pt;}
.y1d{bottom:210.519671pt;}
.y3a{bottom:241.222175pt;}
.y1c{bottom:248.519670pt;}
.y51{bottom:258.454366pt;}
.y52{bottom:261.101886pt;}
.y1b{bottom:267.519669pt;}
.y57{bottom:278.028125pt;}
.y1a{bottom:286.519668pt;}
.y19{bottom:324.519666pt;}
.y37{bottom:330.668123pt;}
.y18{bottom:343.519666pt;}
.y4f{bottom:355.011290pt;}
.y50{bottom:357.658746pt;}
.y56{bottom:372.754681pt;}
.y4{bottom:375.714354pt;}
.y17{bottom:392.496560pt;}
.y45{bottom:401.046552pt;}
.y34{bottom:417.002168pt;}
.y16{bottom:418.496559pt;}
.y4d{bottom:439.345975pt;}
.y4e{bottom:441.993431pt;}
.y55{bottom:459.492790pt;}
.y10{bottom:487.309964pt;}
.y30{bottom:501.135924pt;}
.y14{bottom:503.472960pt;}
.y15{bottom:505.138388pt;}
.y11{bottom:509.027480pt;}
.y4b{bottom:521.408466pt;}
.y4c{bottom:524.055928pt;}
.y12{bottom:530.744976pt;}
.y54{bottom:541.219362pt;}
.y13{bottom:551.965913pt;}
.ye{bottom:579.167438pt;}
.yf{bottom:581.196225pt;}
.y2d{bottom:585.151546pt;}
.y49{bottom:593.749085pt;}
.y4a{bottom:596.396547pt;}
.y53{bottom:613.896547pt;}
.yc{bottom:642.769074pt;}
.yd{bottom:643.594037pt;}
.y2b{bottom:658.117482pt;}
.yb{bottom:700.339033pt;}
.y27{bottom:704.117480pt;}
.y47{bottom:728.541796pt;}
.y48{bottom:730.570602pt;}
.ya{bottom:754.589969pt;}
.y9{bottom:780.589967pt;}
.y25{bottom:789.117477pt;}
.y8{bottom:806.589966pt;}
.y23{bottom:833.904349pt;}
.y6{bottom:863.466466pt;}
.y7{bottom:865.495276pt;}
.y5{bottom:936.824959pt;}
.y46{bottom:936.824968pt;}
.y3{bottom:1000.945583pt;}
.y44{bottom:1000.945592pt;}
.h3{height:42.801795pt;}
.hf{height:42.999998pt;}
.h12{height:43.999998pt;}
.ha{height:46.343748pt;}
.hc{height:51.343748pt;}
.h11{height:51.343752pt;}
.h9{height:54.048396pt;}
.h1b{height:54.738279pt;}
.he{height:56.765627pt;}
.h8{height:59.879646pt;}
.h4{height:67.540951pt;}
.h5{height:67.693005pt;}
.hd{height:69.999997pt;}
.h13{height:70.999997pt;}
.h6{height:72.984372pt;}
.h14{height:81.999997pt;}
.h10{height:82.999997pt;}
.h15{height:83.999996pt;}
.h16{height:86.999996pt;}
.h17{height:103.999996pt;}
.hb{height:114.092457pt;}
.h7{height:138.985200pt;}
.h19{height:173.499413pt;}
.h1a{height:173.507739pt;}
.h18{height:1055.999652pt;}
.h2{height:1055.999956pt;}
.h0{height:1055.999992pt;}
.h1{height:1056.000000pt;}
.w5{width:211.999991pt;}
.w2{width:212.000010pt;}
.w3{width:265.000027pt;}
.w4{width:692.999971pt;}
.w1{width:815.999966pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.000000pt;}
.x26{left:13.510417pt;}
.x2b{left:15.895833pt;}
.x2{left:17.040607pt;}
.x1d{left:18.229167pt;}
.x28{left:20.375000pt;}
.x22{left:21.895834pt;}
.x21{left:24.093750pt;}
.x3{left:29.999870pt;}
.x29{left:34.750001pt;}
.x24{left:39.020834pt;}
.x25{left:40.218751pt;}
.x2a{left:45.083335pt;}
.x23{left:49.166668pt;}
.x2c{left:53.083335pt;}
.xe{left:77.711416pt;}
.x1f{left:79.125002pt;}
.x27{left:82.781253pt;}
.xd{left:88.021280pt;}
.x1b{left:94.902081pt;}
.x33{left:104.191948pt;}
.x32{left:106.839410pt;}
.x36{left:109.529467pt;}
.x34{left:110.946139pt;}
.x35{left:112.176930pt;}
.x16{left:113.069362pt;}
.x38{left:114.060718pt;}
.x31{left:115.426930pt;}
.x37{left:116.708178pt;}
.x2e{left:123.622437pt;}
.x2d{left:125.651246pt;}
.x17{left:135.783041pt;}
.x2f{left:152.087444pt;}
.xc{left:161.089917pt;}
.xf{left:168.198953pt;}
.x39{left:175.488041pt;}
.xb{left:177.761791pt;}
.x6{left:180.487804pt;}
.x5{left:182.516614pt;}
.x11{left:184.709369pt;}
.x18{left:185.739154pt;}
.x10{left:186.738175pt;}
.x4{left:207.735460pt;}
.x7{left:208.952805pt;}
.x12{left:213.174386pt;}
.x30{left:227.956202pt;}
.x8{left:238.204483pt;}
.x13{left:242.426083pt;}
.x9{left:266.084072pt;}
.x14{left:270.305634pt;}
.xa{left:284.821550pt;}
.x15{left:289.043134pt;}
.x1c{left:302.228327pt;}
.x1a{left:347.691442pt;}
.x19{left:349.356872pt;}
.x1e{left:515.771659pt;}
.x1{left:572.136512pt;}
}




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