
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_420a0a033162f714a858de46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_145f3ac114a849296d792e44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.813000;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_cb3f494016a75ebddc59f926.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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:ff7;src:url('chunks/assets/font_3e1f354a2f7f32ce8e0ae745.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000205px;}
.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:-115.444419px;}
.ws1{word-spacing:-32.003143px;}
.ws2{word-spacing:-0.000205px;}
.ws3{word-spacing:0.000000px;}
._0{width:1.002692px;}
._1{width:2.022046px;}
._13{width:3.742667px;}
._b{width:4.924119px;}
._6{width:6.007556px;}
._3{width:8.328906px;}
._10{width:11.451723px;}
._12{width:12.660725px;}
._a{width:14.367657px;}
._e{width:16.020782px;}
._7{width:18.411571px;}
._15{width:20.445767px;}
._14{width:28.123914px;}
._11{width:29.771769px;}
._5{width:40.393127px;}
._4{width:41.693503px;}
._c{width:45.463570px;}
._16{width:58.273516px;}
._8{width:59.524598px;}
._f{width:61.617835px;}
._2{width:76.723092px;}
._9{width:113.738224px;}
._d{width:150.010353px;}
.fc3{color:transparent;}
.fc2{color:rgb(110,200,226);}
.fc1{color:rgb(20,87,143);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.013569px;}
.fs4{font-size:42.000824px;}
.fs7{font-size:52.129641px;}
.fs5{font-size:54.020354px;}
.fs9{font-size:65.994864px;}
.fs6{font-size:72.027138px;}
.fs8{font-size:78.014394px;}
.fs1{font-size:84.001650px;}
.fs3{font-size:109.976437px;}
.fs2{font-size:205.052254px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000016px;}
.y6{bottom:35.130998px;}
.y5{bottom:47.960819px;}
.y4{bottom:58.089636px;}
.y3{bottom:68.218452px;}
.y2{bottom:78.347268px;}
.y2b{bottom:80.288287px;}
.y4e{bottom:86.248894px;}
.y2a{bottom:97.169647px;}
.yf{bottom:98.542283px;}
.y5c{bottom:107.124477px;}
.y4d{bottom:107.631951px;}
.y4c{bottom:129.015008px;}
.y5b{bottom:129.632958px;}
.y20{bottom:142.857577px;}
.y4b{bottom:150.398064px;}
.y4a{bottom:171.781121px;}
.y5a{bottom:174.649869px;}
.y1f{bottom:189.235115px;}
.y49{bottom:193.164177px;}
.y59{bottom:197.158349px;}
.y48{bottom:214.547234px;}
.y58{bottom:219.666830px;}
.y1e{bottom:235.611609px;}
.y47{bottom:235.930291px;}
.y46{bottom:257.313347px;}
.y57{bottom:264.683759px;}
.y45{bottom:278.696404px;}
.y56{bottom:287.192239px;}
.y1c{bottom:287.911547px;}
.y44{bottom:300.079461px;}
.y55{bottom:309.700720px;}
.y43{bottom:321.462517px;}
.y2e{bottom:330.060337px;}
.y42{bottom:342.845574px;}
.y2d{bottom:346.941698px;}
.y54{bottom:354.717678px;}
.y2c{bottom:363.823058px;}
.y41{bottom:364.228631px;}
.y53{bottom:377.226159px;}
.y40{bottom:385.611687px;}
.y52{bottom:399.734639px;}
.y3f{bottom:406.994744px;}
.y25{bottom:409.512176px;}
.y51{bottom:444.751601px;}
.y69{bottom:446.911291px;}
.y30{bottom:447.442858px;}
.y28{bottom:457.584399px;}
.y1b{bottom:462.962077px;}
.y50{bottom:467.260081px;}
.y68{bottom:473.921468px;}
.y27{bottom:474.465760px;}
.y1a{bottom:489.972254px;}
.y26{bottom:491.347120px;}
.y67{bottom:500.931644px;}
.y3d{bottom:512.574903px;}
.y19{bottom:523.734975px;}
.y66{bottom:527.941821px;}
.y31{bottom:532.378619px;}
.y3c{bottom:535.083384px;}
.y22{bottom:537.035075px;}
.ye{bottom:541.612344px;}
.y18{bottom:545.118032px;}
.y65{bottom:554.951998px;}
.y3b{bottom:557.591864px;}
.y17{bottom:566.501088px;}
.yd{bottom:574.249641px;}
.y3a{bottom:580.100345px;}
.y64{bottom:581.962175px;}
.y24{bottom:583.411530px;}
.y16{bottom:587.884145px;}
.y39{bottom:602.608826px;}
.y3e{bottom:606.348998px;}
.yc{bottom:606.886938px;}
.y63{bottom:608.972352px;}
.y38{bottom:625.117306px;}
.y37{bottom:625.122933px;}
.y29{bottom:629.789147px;}
.y62{bottom:635.982528px;}
.yb{bottom:639.524235px;}
.y36{bottom:647.631414px;}
.y61{bottom:662.992705px;}
.y35{bottom:670.145539px;}
.ya{bottom:672.161532px;}
.y4f{bottom:673.523286px;}
.y34{bottom:674.339989px;}
.y21{bottom:676.165619px;}
.y60{bottom:690.002882px;}
.y33{bottom:692.654020px;}
.y15{bottom:712.378557px;}
.y5f{bottom:717.013059px;}
.y1d{bottom:722.542095px;}
.y14{bottom:729.259918px;}
.y5e{bottom:744.023236px;}
.y13{bottom:746.141278px;}
.y12{bottom:763.022639px;}
.y23{bottom:768.919680px;}
.y5d{bottom:771.033412px;}
.y11{bottom:779.903999px;}
.y2f{bottom:783.027432px;}
.y9{bottom:784.181621px;}
.y10{bottom:796.785360px;}
.y32{bottom:830.938987px;}
.y8{bottom:839.221353px;}
.y7{bottom:839.223602px;}
.h3{height:34.212891px;}
.h7{height:39.900783px;}
.ha{height:49.523159px;}
.h8{height:51.319336px;}
.hc{height:62.695121px;}
.h9{height:68.425781px;}
.hb{height:74.113674px;}
.h4{height:79.801567px;}
.h6{height:88.421055px;}
.h5{height:144.561839px;}
.h2{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w2{width:1263.374947px;}
.w0{width:1263.375000px;}
.w1{width:1263.750000px;}
.x0{left:0.000000px;}
.x1d{left:27.554883px;}
.x22{left:66.024689px;}
.x1e{left:73.943455px;}
.x29{left:81.993895px;}
.x20{left:85.855082px;}
.x1a{left:90.048557px;}
.x5{left:92.200370px;}
.x24{left:106.389708px;}
.x23{left:116.422584px;}
.x19{left:142.854571px;}
.x16{left:159.363627px;}
.x17{left:163.192119px;}
.x26{left:198.305199px;}
.x27{left:200.837403px;}
.x18{left:237.909724px;}
.x21{left:299.544976px;}
.x1f{left:334.098994px;}
.x25{left:347.423889px;}
.x28{left:364.639354px;}
.x2a{left:466.186664px;}
.xa{left:489.209437px;}
.x6{left:493.780937px;}
.x1b{left:499.403564px;}
.x1{left:509.900382px;}
.x3{left:515.087884px;}
.x2{left:516.494664px;}
.x14{left:518.908567px;}
.x13{left:530.532087px;}
.x9{left:531.618814px;}
.x2b{left:533.852784px;}
.x4{left:542.690704px;}
.x12{left:553.022983px;}
.x2c{left:555.341349px;}
.xf{left:559.882550px;}
.x11{left:569.642086px;}
.x15{left:574.159853px;}
.xb{left:576.500139px;}
.xc{left:620.110320px;}
.x10{left:661.645501px;}
.xd{left:700.419881px;}
.xe{left:708.658045px;}
.x8{left:875.944476px;}
.x2d{left:882.278495px;}
.x36{left:922.002447px;}
.x32{left:938.303510px;}
.x37{left:943.192071px;}
.x7{left:977.354239px;}
.x33{left:980.542081px;}
.x1c{left:1028.814221px;}
.x2e{left:1056.033415px;}
.x34{left:1058.055661px;}
.x30{left:1113.025592px;}
.x35{left:1149.848059px;}
.x31{left:1210.269262px;}
.x2f{left:1229.278383px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000182pt;}
.ws0{word-spacing:-102.617262pt;}
.ws1{word-spacing:-28.447238pt;}
.ws2{word-spacing:-0.000182pt;}
.ws3{word-spacing:0.000000pt;}
._0{width:0.891282pt;}
._1{width:1.797374pt;}
._13{width:3.326815pt;}
._b{width:4.376995pt;}
._6{width:5.340050pt;}
._3{width:7.403472pt;}
._10{width:10.179310pt;}
._12{width:11.253977pt;}
._a{width:12.771251pt;}
._e{width:14.240695pt;}
._7{width:16.365841pt;}
._15{width:18.174015pt;}
._14{width:24.999035pt;}
._11{width:26.463794pt;}
._5{width:35.905002pt;}
._4{width:37.060891pt;}
._c{width:40.412062pt;}
._16{width:51.798681pt;}
._8{width:52.910754pt;}
._f{width:54.771409pt;}
._2{width:68.198304pt;}
._9{width:101.100643pt;}
._d{width:133.342536pt;}
.fs0{font-size:32.012061pt;}
.fs4{font-size:37.334066pt;}
.fs7{font-size:46.337458pt;}
.fs5{font-size:48.018092pt;}
.fs9{font-size:58.662102pt;}
.fs6{font-size:64.024123pt;}
.fs8{font-size:69.346128pt;}
.fs1{font-size:74.668133pt;}
.fs3{font-size:97.756832pt;}
.fs2{font-size:182.268671pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000014pt;}
.y6{bottom:31.227554pt;}
.y5{bottom:42.631840pt;}
.y4{bottom:51.635232pt;}
.y3{bottom:60.638624pt;}
.y2{bottom:69.642016pt;}
.y2b{bottom:71.367366pt;}
.y4e{bottom:76.665684pt;}
.y2a{bottom:86.373020pt;}
.yf{bottom:87.593141pt;}
.y5c{bottom:95.221757pt;}
.y4d{bottom:95.672845pt;}
.y4c{bottom:114.680007pt;}
.y5b{bottom:115.229296pt;}
.y20{bottom:126.984513pt;}
.y4b{bottom:133.687168pt;}
.y4a{bottom:152.694330pt;}
.y5a{bottom:155.244328pt;}
.y1f{bottom:168.208991pt;}
.y49{bottom:171.701491pt;}
.y59{bottom:175.251866pt;}
.y48{bottom:190.708653pt;}
.y58{bottom:195.259404pt;}
.y1e{bottom:209.432542pt;}
.y47{bottom:209.715814pt;}
.y46{bottom:228.722975pt;}
.y57{bottom:235.274452pt;}
.y45{bottom:247.730137pt;}
.y56{bottom:255.281991pt;}
.y1c{bottom:255.921375pt;}
.y44{bottom:266.737298pt;}
.y55{bottom:275.289529pt;}
.y43{bottom:285.744460pt;}
.y2e{bottom:293.386966pt;}
.y42{bottom:304.751621pt;}
.y2d{bottom:308.392620pt;}
.y54{bottom:315.304603pt;}
.y2c{bottom:323.398274pt;}
.y41{bottom:323.758783pt;}
.y53{bottom:335.312141pt;}
.y40{bottom:342.765944pt;}
.y52{bottom:355.319679pt;}
.y3f{bottom:361.773106pt;}
.y25{bottom:364.010823pt;}
.y51{bottom:395.334756pt;}
.y69{bottom:397.254481pt;}
.y30{bottom:397.726985pt;}
.y28{bottom:406.741688pt;}
.y1b{bottom:411.521847pt;}
.y50{bottom:415.342294pt;}
.y68{bottom:421.263527pt;}
.y27{bottom:421.747342pt;}
.y1a{bottom:435.530893pt;}
.y26{bottom:436.752996pt;}
.y67{bottom:445.272573pt;}
.y3d{bottom:455.622136pt;}
.y19{bottom:465.542200pt;}
.y66{bottom:469.281619pt;}
.y31{bottom:473.225439pt;}
.y3c{bottom:475.629674pt;}
.y22{bottom:477.364511pt;}
.ye{bottom:481.433195pt;}
.y18{bottom:484.549362pt;}
.y65{bottom:493.290665pt;}
.y3b{bottom:495.637213pt;}
.y17{bottom:503.556523pt;}
.yd{bottom:510.444125pt;}
.y3a{bottom:515.644751pt;}
.y64{bottom:517.299711pt;}
.y24{bottom:518.588026pt;}
.y16{bottom:522.563684pt;}
.y39{bottom:535.652289pt;}
.y3e{bottom:538.976887pt;}
.yc{bottom:539.455056pt;}
.y63{bottom:541.308757pt;}
.y38{bottom:555.659828pt;}
.y37{bottom:555.664829pt;}
.y29{bottom:559.812575pt;}
.y62{bottom:565.317803pt;}
.yb{bottom:568.465987pt;}
.y36{bottom:575.672368pt;}
.y61{bottom:589.326849pt;}
.y35{bottom:595.684924pt;}
.ya{bottom:597.476917pt;}
.y4f{bottom:598.687365pt;}
.y34{bottom:599.413324pt;}
.y21{bottom:601.036106pt;}
.y60{bottom:613.335895pt;}
.y33{bottom:615.692462pt;}
.y15{bottom:633.225384pt;}
.y5f{bottom:637.344941pt;}
.y1d{bottom:642.259640pt;}
.y14{bottom:648.231038pt;}
.y5e{bottom:661.353987pt;}
.y13{bottom:663.236692pt;}
.y12{bottom:678.242345pt;}
.y23{bottom:683.484160pt;}
.y5d{bottom:685.363033pt;}
.y11{bottom:693.247999pt;}
.y2f{bottom:696.024384pt;}
.y9{bottom:697.050330pt;}
.y10{bottom:708.253653pt;}
.y32{bottom:738.612433pt;}
.y8{bottom:745.974536pt;}
.y7{bottom:745.976535pt;}
.h3{height:30.411458pt;}
.h7{height:35.467363pt;}
.ha{height:44.020586pt;}
.h8{height:45.617187pt;}
.hc{height:55.728997pt;}
.h9{height:60.822917pt;}
.hb{height:65.878822pt;}
.h4{height:70.934727pt;}
.h6{height:78.596493pt;}
.h5{height:128.499413pt;}
.h2{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w2{width:1122.999953pt;}
.w0{width:1123.000000pt;}
.w1{width:1123.333333pt;}
.x0{left:0.000000pt;}
.x1d{left:24.493229pt;}
.x22{left:58.688612pt;}
.x1e{left:65.727515pt;}
.x29{left:72.883463pt;}
.x20{left:76.315628pt;}
.x1a{left:80.043161pt;}
.x5{left:81.955885pt;}
.x24{left:94.568630pt;}
.x23{left:103.486741pt;}
.x19{left:126.981841pt;}
.x16{left:141.656557pt;}
.x17{left:145.059661pt;}
.x26{left:176.271288pt;}
.x27{left:178.522136pt;}
.x18{left:211.475310pt;}
.x21{left:266.262201pt;}
.x1f{left:296.976884pt;}
.x25{left:308.821235pt;}
.x28{left:324.123871pt;}
.x2a{left:414.388146pt;}
.xa{left:434.852833pt;}
.x6{left:438.916388pt;}
.x1b{left:443.914279pt;}
.x1{left:453.244784pt;}
.x3{left:457.855897pt;}
.x2{left:459.106368pt;}
.x14{left:461.252060pt;}
.x13{left:471.584078pt;}
.x9{left:472.550057pt;}
.x2b{left:474.535808pt;}
.x4{left:482.391737pt;}
.x12{left:491.575985pt;}
.x2c{left:493.636755pt;}
.xf{left:497.673377pt;}
.x11{left:506.348521pt;}
.x15{left:510.364314pt;}
.xb{left:512.444568pt;}
.xc{left:551.209173pt;}
.x10{left:588.129334pt;}
.xd{left:622.595450pt;}
.xe{left:629.918262pt;}
.x8{left:778.617312pt;}
.x2d{left:784.247551pt;}
.x36{left:819.557730pt;}
.x32{left:834.047565pt;}
.x37{left:838.392952pt;}
.x7{left:868.759324pt;}
.x33{left:871.592961pt;}
.x1c{left:914.501530pt;}
.x2e{left:938.696369pt;}
.x34{left:940.493921pt;}
.x30{left:989.356081pt;}
.x35{left:1022.087164pt;}
.x31{left:1075.794899pt;}
.x2f{left:1092.691896pt;}
}




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