
    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_3dd7adf82bff47f0cda36a18.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_02f9ddf7b71b5ccf4727c313.woff')format("woff");}.ff2{font-family:ff2;line-height:0.768555;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_04fe2da6451ece26d3e16d74.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2abced465287f5e530cee694.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_d1c369ca8371b001bd4e8066.woff')format("woff");}.ff5{font-family:ff5;line-height:0.875488;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_40277e3baf9495feb8b42c3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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;}
.ls2{letter-spacing:78.747528px;}
.ls1{letter-spacing:79.517456px;}
.ls4{letter-spacing:84.793348px;}
.ls3{letter-spacing:84.839728px;}
.ls5{letter-spacing:84.839764px;}
.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;}
}
.ws0{word-spacing:-61.227938px;}
.ws3{word-spacing:-51.614789px;}
.wse{word-spacing:-34.901910px;}
.ws4{word-spacing:-29.118214px;}
.ws2{word-spacing:-26.326028px;}
.ws5{word-spacing:-3.468957px;}
.wsc{word-spacing:-2.185916px;}
.wsa{word-spacing:-2.051969px;}
.ws6{word-spacing:-1.366559px;}
.wsb{word-spacing:-0.855358px;}
.wsd{word-spacing:-0.665279px;}
.ws9{word-spacing:-0.285119px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.769213px;}
.ws7{word-spacing:58.259406px;}
._13{margin-left:-12.318501px;}
._b{margin-left:-10.454380px;}
._5{margin-left:-8.968303px;}
._d{margin-left:-7.504631px;}
._4{margin-left:-5.968066px;}
._9{margin-left:-4.501435px;}
._7{margin-left:-3.090949px;}
._6{margin-left:-1.142638px;}
._3{width:1.989355px;}
._0{width:3.978711px;}
._1{width:5.083908px;}
._2{width:6.189106px;}
._10{width:23.465010px;}
._12{width:24.656521px;}
._11{width:26.359763px;}
._e{width:27.552346px;}
._c{width:31.439466px;}
._8{width:35.704631px;}
._f{width:47.790577px;}
._a{width:84.585434px;}
.fc4{color:rgb(70,120,134);}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(118,118,118);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:62.639307px;}
.fs5{font-size:63.360367px;}
.fs7{font-size:95.039814px;}
.fs6{font-size:105.119906px;}
.fs3{font-size:120.959629px;}
.fs2{font-size:125.999675px;}
.fs4{font-size:136.799352px;}
.fs1{font-size:168.480273px;}
.fs9{font-size:210.239811px;}
.fs0{font-size:221.039488px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.659268px;}
.y24{bottom:99.728175px;}
.yc{bottom:110.155211px;}
.y7{bottom:112.495677px;}
.y1c{bottom:139.503465px;}
.y38{bottom:142.744659px;}
.y42{bottom:148.683226px;}
.y4b{bottom:152.468243px;}
.y6{bottom:166.143984px;}
.y57{bottom:172.988468px;}
.y1b{bottom:182.165253px;}
.y37{bottom:193.140336px;}
.y41{bottom:199.080319px;}
.y2d{bottom:203.759403px;}
.y4c{bottom:210.600639px;}
.y23{bottom:210.786233px;}
.y5{bottom:214.369774px;}
.y1a{bottom:224.638474px;}
.y22{bottom:239.221619px;}
.y36{bottom:243.723022px;}
.y40{bottom:249.663005px;}
.y2c{bottom:259.026883px;}
.y19{bottom:274.316277px;}
.yb{bottom:285.481982px;}
.y52{bottom:291.602600px;}
.y35{bottom:294.120114px;}
.y3f{bottom:300.060097px;}
.y4a{bottom:306.185709px;}
.y18{bottom:314.643241px;}
.y2b{bottom:321.300675px;}
.y51{bottom:334.261450px;}
.y34{bottom:344.702836px;}
.y3e{bottom:350.642819px;}
.y49{bottom:356.756818px;}
.y17{bottom:357.116462px;}
.y4{bottom:361.994166px;}
.y2a{bottom:374.040285px;}
.y50{bottom:380.337299px;}
.y33{bottom:395.099929px;}
.y3d{bottom:401.039911px;}
.y16{bottom:402.304475px;}
.y48{bottom:407.165523px;}
.y21{bottom:410.402363px;}
.y56{bottom:421.388711px;}
.y29{bottom:423.546240px;}
.y53{bottom:427.331662px;}
.y3{bottom:428.208859px;}
.y14{bottom:428.941601px;}
.y32{bottom:445.682650px;}
.y3c{bottom:451.622633px;}
.y47{bottom:457.736632px;}
.y20{bottom:467.284712px;}
.y28{bottom:470.883541px;}
.y13{bottom:471.426470px;}
.y2{bottom:494.450562px;}
.y31{bottom:496.079743px;}
.y3b{bottom:502.019725px;}
.y46{bottom:508.145337px;}
.y12{bottom:514.085320px;}
.y27{bottom:518.220882px;}
.y4f{bottom:523.076513px;}
.y1f{bottom:524.155448px;}
.y30{bottom:546.662429px;}
.ya{bottom:550.625272px;}
.y3a{bottom:552.602411px;}
.y11{bottom:556.744170px;}
.y45{bottom:558.716446px;}
.y1{bottom:560.881119px;}
.y26{bottom:561.605939px;}
.y55{bottom:572.935905px;}
.y4e{bottom:573.659235px;}
.y8{bottom:580.318854px;}
.y1e{bottom:580.863781px;}
.y2f{bottom:597.059521px;}
.y10{bottom:599.217408px;}
.y39{bottom:602.999522px;}
.y44{bottom:609.125133px;}
.y54{bottom:610.741963px;}
.y25{bottom:612.895505px;}
.y4d{bottom:624.056310px;}
.y15{bottom:629.462632px;}
.yd{bottom:666.905492px;}
.y43{bottom:676.263240px;}
.y1d{bottom:676.982547px;}
.y2e{bottom:677.697206px;}
.yf{bottom:690.301110px;}
.ye{bottom:758.886828px;}
.h5{height:34.743408px;}
.h8{height:42.229932px;}
.he{height:46.184255px;}
.hd{height:63.344407px;}
.hb{height:71.465485px;}
.h9{height:79.045242px;}
.hc{height:81.721246px;}
.hf{height:90.388747px;}
.h6{height:90.955971px;}
.h10{height:94.745849px;}
.h7{height:102.866700px;}
.h4{height:108.342494px;}
.h3{height:126.607002px;}
.ha{height:126.689268px;}
.h2{height:166.211334px;}
.h11{height:180.777494px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:389.148735px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:26.631589px;}
.x3{left:36.003345px;}
.x8{left:59.759531px;}
.x12{left:65.879591px;}
.xb{left:75.061960px;}
.x14{left:80.282653px;}
.x9{left:86.222645px;}
.x10{left:91.800272px;}
.xf{left:93.417110px;}
.x17{left:94.494540px;}
.x15{left:127.616940px;}
.x1c{left:138.963245px;}
.x18{left:141.840431px;}
.x1f{left:152.281808px;}
.xd{left:159.474777px;}
.x6{left:183.246977px;}
.x7{left:184.684918px;}
.x1d{left:186.297531px;}
.x11{left:189.005587px;}
.x21{left:197.284191px;}
.x19{left:205.741706px;}
.x5{left:210.060163px;}
.x25{left:283.853038px;}
.x1a{left:295.210666px;}
.xa{left:312.486494px;}
.x1e{left:314.100083px;}
.x13{left:339.305118px;}
.xc{left:362.709737px;}
.x26{left:372.784927px;}
.x20{left:392.407681px;}
.x27{left:412.375143px;}
.x28{left:454.682859px;}
.x1b{left:458.467077px;}
.x24{left:468.361365px;}
.x23{left:505.607238px;}
.x16{left:511.014337px;}
.x2{left:873.723637px;}
.xe{left:1060.006095px;}
.x22{left:1221.666179px;}
.x4{left:1231.387359px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:69.997802pt;}
.ls1{letter-spacing:70.682184pt;}
.ls4{letter-spacing:75.371865pt;}
.ls3{letter-spacing:75.413092pt;}
.ls5{letter-spacing:75.413123pt;}
.ws0{word-spacing:-54.424834pt;}
.ws3{word-spacing:-45.879813pt;}
.wse{word-spacing:-31.023920pt;}
.ws4{word-spacing:-25.882857pt;}
.ws2{word-spacing:-23.400914pt;}
.ws5{word-spacing:-3.083517pt;}
.wsc{word-spacing:-1.943036pt;}
.wsa{word-spacing:-1.823973pt;}
.ws6{word-spacing:-1.214719pt;}
.wsb{word-spacing:-0.760319pt;}
.wsd{word-spacing:-0.591359pt;}
.ws9{word-spacing:-0.253440pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.683745pt;}
.ws7{word-spacing:51.786138pt;}
._13{margin-left:-10.949778pt;}
._b{margin-left:-9.292782pt;}
._5{margin-left:-7.971825pt;}
._d{margin-left:-6.670783pt;}
._4{margin-left:-5.304948pt;}
._9{margin-left:-4.001275pt;}
._7{margin-left:-2.747510pt;}
._6{margin-left:-1.015678pt;}
._3{width:1.768316pt;}
._0{width:3.536632pt;}
._1{width:4.519030pt;}
._2{width:5.501427pt;}
._10{width:20.857787pt;}
._12{width:21.916908pt;}
._11{width:23.430901pt;}
._e{width:24.490974pt;}
._c{width:27.946192pt;}
._8{width:31.737450pt;}
._f{width:42.480513pt;}
._a{width:75.187053pt;}
.fs8{font-size:55.679384pt;}
.fs5{font-size:56.320326pt;}
.fs7{font-size:84.479834pt;}
.fs6{font-size:93.439916pt;}
.fs3{font-size:107.519670pt;}
.fs2{font-size:111.999711pt;}
.fs4{font-size:121.599424pt;}
.fs1{font-size:149.760243pt;}
.fs9{font-size:186.879832pt;}
.fs0{font-size:196.479545pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:5.919350pt;}
.y24{bottom:88.647267pt;}
.yc{bottom:97.915743pt;}
.y7{bottom:99.996157pt;}
.y1c{bottom:124.003080pt;}
.y38{bottom:126.884142pt;}
.y42{bottom:132.162868pt;}
.y4b{bottom:135.527327pt;}
.y6{bottom:147.683542pt;}
.y57{bottom:153.767527pt;}
.y1b{bottom:161.924670pt;}
.y37{bottom:171.680298pt;}
.y41{bottom:176.960283pt;}
.y2d{bottom:181.119469pt;}
.y4c{bottom:187.200568pt;}
.y23{bottom:187.365540pt;}
.y5{bottom:190.550910pt;}
.y1a{bottom:199.678644pt;}
.y22{bottom:212.641439pt;}
.y36{bottom:216.642686pt;}
.y40{bottom:221.922671pt;}
.y2c{bottom:230.246119pt;}
.y19{bottom:243.836691pt;}
.yb{bottom:253.761762pt;}
.y52{bottom:259.202311pt;}
.y35{bottom:261.440102pt;}
.y3f{bottom:266.720086pt;}
.y4a{bottom:272.165075pt;}
.y18{bottom:279.682881pt;}
.y2b{bottom:285.600600pt;}
.y51{bottom:297.121289pt;}
.y34{bottom:306.402521pt;}
.y3e{bottom:311.682505pt;}
.y49{bottom:317.117171pt;}
.y17{bottom:317.436856pt;}
.y4{bottom:321.772592pt;}
.y2a{bottom:332.480253pt;}
.y50{bottom:338.077599pt;}
.y33{bottom:351.199936pt;}
.y3d{bottom:356.479921pt;}
.y16{bottom:357.603978pt;}
.y48{bottom:361.924909pt;}
.y21{bottom:364.802100pt;}
.y56{bottom:374.567743pt;}
.y29{bottom:376.485547pt;}
.y53{bottom:379.850367pt;}
.y3{bottom:380.630097pt;}
.y14{bottom:381.281423pt;}
.y32{bottom:396.162356pt;}
.y3c{bottom:401.442340pt;}
.y47{bottom:406.877006pt;}
.y20{bottom:415.364188pt;}
.y28{bottom:418.563148pt;}
.y13{bottom:419.045751pt;}
.y2{bottom:439.511610pt;}
.y31{bottom:440.959771pt;}
.y3b{bottom:446.239756pt;}
.y46{bottom:451.684744pt;}
.y12{bottom:456.964729pt;}
.y27{bottom:460.640784pt;}
.y4f{bottom:464.956901pt;}
.y1f{bottom:465.915954pt;}
.y30{bottom:485.922159pt;}
.ya{bottom:489.444686pt;}
.y3a{bottom:491.202144pt;}
.y11{bottom:494.883706pt;}
.y45{bottom:496.636841pt;}
.y1{bottom:498.560994pt;}
.y26{bottom:499.205279pt;}
.y55{bottom:509.276360pt;}
.y4e{bottom:509.919320pt;}
.y8{bottom:515.838981pt;}
.y1e{bottom:516.323361pt;}
.y2f{bottom:530.719574pt;}
.y10{bottom:532.637696pt;}
.y39{bottom:535.999575pt;}
.y44{bottom:541.444563pt;}
.y54{bottom:542.881745pt;}
.y25{bottom:544.796004pt;}
.y4d{bottom:554.716720pt;}
.y15{bottom:559.522339pt;}
.yd{bottom:592.804881pt;}
.y43{bottom:601.122880pt;}
.y1d{bottom:601.762264pt;}
.y2e{bottom:602.397516pt;}
.yf{bottom:613.600987pt;}
.ye{bottom:674.566069pt;}
.h5{height:30.883029pt;}
.h8{height:37.537718pt;}
.he{height:41.052671pt;}
.hd{height:56.306140pt;}
.hb{height:63.524875pt;}
.h9{height:70.262437pt;}
.hc{height:72.641108pt;}
.hf{height:80.345553pt;}
.h6{height:80.849752pt;}
.h10{height:84.218533pt;}
.h7{height:91.437067pt;}
.h4{height:96.304439pt;}
.h3{height:112.539557pt;}
.ha{height:112.612682pt;}
.h2{height:147.743408pt;}
.h11{height:160.691106pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:345.909987pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:23.672524pt;}
.x3{left:32.002973pt;}
.x8{left:53.119583pt;}
.x12{left:58.559636pt;}
.xb{left:66.721742pt;}
.x14{left:71.362358pt;}
.x9{left:76.642351pt;}
.x10{left:81.600242pt;}
.xf{left:83.037431pt;}
.x17{left:83.995146pt;}
.x15{left:113.437280pt;}
.x1c{left:123.522884pt;}
.x18{left:126.080383pt;}
.x1f{left:135.361607pt;}
.xd{left:141.755357pt;}
.x6{left:162.886202pt;}
.x7{left:164.164372pt;}
.x1d{left:165.597806pt;}
.x11{left:168.004966pt;}
.x21{left:175.363726pt;}
.x19{left:182.881517pt;}
.x5{left:186.720145pt;}
.x25{left:252.313811pt;}
.x1a{left:262.409481pt;}
.xa{left:277.765773pt;}
.x1e{left:279.200073pt;}
.x13{left:301.604550pt;}
.xc{left:322.408655pt;}
.x26{left:331.364379pt;}
.x20{left:348.806828pt;}
.x27{left:366.555682pt;}
.x28{left:404.162542pt;}
.x1b{left:407.526290pt;}
.x24{left:416.321213pt;}
.x23{left:449.428656pt;}
.x16{left:454.234966pt;}
.x2{left:776.643232pt;}
.xe{left:942.227640pt;}
.x22{left:1085.925492pt;}
.x4{left:1094.566541pt;}
}




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