
    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_cd8c6f86531cd62cf9ab080c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_40dcb21b233675e2357772bb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_b3dd66b02e236cb8812ac50d.woff')format("woff");}.ff3{font-family:ff3;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);}
.v1{vertical-align:-61.200020px;}
.v3{vertical-align:-51.750002px;}
.v2{vertical-align:-43.716286px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001816px;}
.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:-33.240000px;}
.ws4{word-spacing:-32.291744px;}
.ws1{word-spacing:-28.254000px;}
.ws6{word-spacing:-25.484002px;}
.ws5{word-spacing:-21.527830px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:71.546457px;}
._6{margin-left:-16.500000px;}
._9{margin-left:-10.656000px;}
._7{margin-left:-8.976001px;}
._0{margin-left:-6.600000px;}
._8{margin-left:-5.594400px;}
._1{margin-left:-4.440000px;}
._3{margin-left:-2.160000px;}
._5{margin-left:-1.080000px;}
._4{width:1.620000px;}
._2{width:107.972093px;}
.fc6{color:rgb(74,134,232);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(0,39,76);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(183,183,183);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000002px;}
.fs9{font-size:72.000002px;}
.fs10{font-size:77.717799px;}
.fs13{font-size:92.000006px;}
.fs2{font-size:96.000006px;}
.fs4{font-size:102.000000px;}
.fsd{font-size:108.800019px;}
.fsf{font-size:116.576693px;}
.fs1{font-size:120.000001px;}
.fs8{font-size:132.000007px;}
.fs12{font-size:138.000001px;}
.fs11{font-size:144.000005px;}
.fsa{font-size:149.999999px;}
.fsc{font-size:151.200005px;}
.fs0{font-size:154.799996px;}
.fs7{font-size:156.000011px;}
.fsb{font-size:163.200020px;}
.fs6{font-size:175.200009px;}
.fs5{font-size:180.000006px;}
.fse{font-size:307.200025px;}
.y0{bottom:0.000000px;}
.y5{bottom:17.088776px;}
.y1e{bottom:17.400109px;}
.y14{bottom:38.331561px;}
.y63{bottom:45.380890px;}
.y6{bottom:61.455324px;}
.y13{bottom:68.931573px;}
.y4c{bottom:72.223340px;}
.y33{bottom:73.243727px;}
.y62{bottom:97.130892px;}
.y12{bottom:99.531597px;}
.y4b{bottom:108.945029px;}
.y56{bottom:109.175935px;}
.y28{bottom:111.648409px;}
.y32{bottom:114.643717px;}
.y36{bottom:125.443683px;}
.y11{bottom:130.131598px;}
.y4a{bottom:145.666684px;}
.y61{bottom:148.880893px;}
.y1d{bottom:151.270500px;}
.y27{bottom:154.398410px;}
.y55{bottom:154.535948px;}
.y31{bottom:156.043707px;}
.y10{bottom:160.731621px;}
.y35{bottom:166.843685px;}
.y49{bottom:182.388350px;}
.y4{bottom:185.705874px;}
.y3f{bottom:190.756190px;}
.yf{bottom:191.331634px;}
.y1c{bottom:196.810524px;}
.y26{bottom:197.148411px;}
.y30{bottom:197.443731px;}
.y54{bottom:199.895916px;}
.y60{bottom:200.630895px;}
.y1f{bottom:214.809092px;}
.y3{bottom:221.705875px;}
.ye{bottom:221.931635px;}
.y3e{bottom:236.296192px;}
.y48{bottom:237.109994px;}
.y2f{bottom:238.843709px;}
.y25{bottom:239.898413px;}
.y1b{bottom:242.350515px;}
.y53{bottom:245.255917px;}
.y5f{bottom:252.380897px;}
.yd{bottom:252.531636px;}
.y47{bottom:273.831638px;}
.y37{bottom:276.519027px;}
.y2e{bottom:280.243700px;}
.y3d{bottom:281.836182px;}
.yc{bottom:283.131625px;}
.y1a{bottom:287.890505px;}
.y52{bottom:290.615896px;}
.y24{bottom:300.648415px;}
.y5e{bottom:304.130898px;}
.y46{bottom:310.553293px;}
.yb{bottom:313.731626px;}
.y2{bottom:320.212217px;}
.y2d{bottom:321.643712px;}
.y3c{bottom:327.376184px;}
.y51{bottom:335.975898px;}
.ya{bottom:344.331627px;}
.y45{bottom:347.274937px;}
.y19{bottom:353.950518px;}
.y5d{bottom:355.880900px;}
.y23{bottom:361.398417px;}
.y2c{bottom:363.043702px;}
.y59{bottom:363.627521px;}
.y1{bottom:366.652214px;}
.y3b{bottom:372.916179px;}
.y9{bottom:374.931623px;}
.y50{bottom:381.335899px;}
.y44{bottom:383.996592px;}
.y2b{bottom:404.443699px;}
.y5c{bottom:407.630902px;}
.y58{bottom:411.237517px;}
.y3a{bottom:418.456175px;}
.y43{bottom:420.718235px;}
.y22{bottom:422.148425px;}
.y18{bottom:425.770515px;}
.y4f{bottom:426.695900px;}
.y8{bottom:436.131613px;}
.y2a{bottom:445.843694px;}
.y42{bottom:457.439897px;}
.y57{bottom:458.847513px;}
.y5b{bottom:459.380903px;}
.y39{bottom:463.996177px;}
.y21{bottom:464.898427px;}
.y7{bottom:466.731611px;}
.y17{bottom:479.590511px;}
.y20{bottom:507.648424px;}
.y34{bottom:508.524991px;}
.y15{bottom:528.179645px;}
.y38{bottom:534.399993px;}
.y4e{bottom:537.774993px;}
.y16{bottom:542.624242px;}
.y5a{bottom:544.524993px;}
.y41{bottom:545.635230px;}
.y4d{bottom:545.649993px;}
.y40{bottom:552.399994px;}
.y29{bottom:558.206998px;}
.h4{height:46.432619px;}
.hb{height:61.910158px;}
.h3{height:82.546880px;}
.h5{height:87.706055px;}
.h11{height:100.240018px;}
.h2{height:103.183594px;}
.hd{height:109.204101px;}
.ha{height:113.501959px;}
.h9{height:113.572274px;}
.h13{height:118.661134px;}
.h6{height:123.046879px;}
.h12{height:123.820316px;}
.hc{height:128.979491px;}
.hf{height:130.011332px;}
.h1{height:133.106832px;}
.h8{height:134.138681px;}
.he{height:140.329705px;}
.h7{height:150.648054px;}
.h10{height:264.150021px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:10.125000px;}
.xb{left:32.391732px;}
.x7{left:34.700788px;}
.xa{left:39.330710px;}
.xd{left:40.638781px;}
.x11{left:42.670418px;}
.x14{left:43.916525px;}
.x8{left:46.305766px;}
.x15{left:51.293347px;}
.x1{left:83.008938px;}
.x9{left:88.700790px;}
.x12{left:100.939964px;}
.x13{left:155.780854px;}
.x2{left:165.819212px;}
.x4{left:188.147191px;}
.x3{left:397.552819px;}
.xf{left:714.109298px;}
.xc{left:811.706763px;}
.x10{left:823.491139px;}
.x6{left:865.343503px;}
.x5{left:877.792922px;}
@media print{
.v1{vertical-align:-54.400018pt;}
.v3{vertical-align:-46.000001pt;}
.v2{vertical-align:-38.858921pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001615pt;}
.ws3{word-spacing:-29.546667pt;}
.ws4{word-spacing:-28.703772pt;}
.ws1{word-spacing:-25.114667pt;}
.ws6{word-spacing:-22.652446pt;}
.ws5{word-spacing:-19.135849pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:63.596851pt;}
._6{margin-left:-14.666667pt;}
._9{margin-left:-9.472000pt;}
._7{margin-left:-7.978668pt;}
._0{margin-left:-5.866667pt;}
._8{margin-left:-4.972800pt;}
._1{margin-left:-3.946667pt;}
._3{margin-left:-1.920000pt;}
._5{margin-left:-0.960000pt;}
._4{width:1.440000pt;}
._2{width:95.975194pt;}
.fs3{font-size:48.000002pt;}
.fs9{font-size:64.000002pt;}
.fs10{font-size:69.082488pt;}
.fs13{font-size:81.777783pt;}
.fs2{font-size:85.333339pt;}
.fs4{font-size:90.666667pt;}
.fsd{font-size:96.711128pt;}
.fsf{font-size:103.623727pt;}
.fs1{font-size:106.666667pt;}
.fs8{font-size:117.333340pt;}
.fs12{font-size:122.666668pt;}
.fs11{font-size:128.000004pt;}
.fsa{font-size:133.333332pt;}
.fsc{font-size:134.400004pt;}
.fs0{font-size:137.599996pt;}
.fs7{font-size:138.666676pt;}
.fsb{font-size:145.066685pt;}
.fs6{font-size:155.733341pt;}
.fs5{font-size:160.000005pt;}
.fse{font-size:273.066689pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:15.190023pt;}
.y1e{bottom:15.466763pt;}
.y14{bottom:34.072499pt;}
.y63{bottom:40.338569pt;}
.y6{bottom:54.626954pt;}
.y13{bottom:61.272510pt;}
.y4c{bottom:64.198525pt;}
.y33{bottom:65.105535pt;}
.y62{bottom:86.338570pt;}
.y12{bottom:88.472531pt;}
.y4b{bottom:96.840026pt;}
.y56{bottom:97.045276pt;}
.y28{bottom:99.243030pt;}
.y32{bottom:101.905526pt;}
.y36{bottom:111.505496pt;}
.y11{bottom:115.672531pt;}
.y4a{bottom:129.481497pt;}
.y61{bottom:132.338572pt;}
.y1d{bottom:134.462667pt;}
.y27{bottom:137.243031pt;}
.y55{bottom:137.365287pt;}
.y31{bottom:138.705517pt;}
.y10{bottom:142.872552pt;}
.y35{bottom:148.305497pt;}
.y49{bottom:162.122978pt;}
.y4{bottom:165.071888pt;}
.y3f{bottom:169.561058pt;}
.yf{bottom:170.072563pt;}
.y1c{bottom:174.942688pt;}
.y26{bottom:175.243032pt;}
.y30{bottom:175.505538pt;}
.y54{bottom:177.685258pt;}
.y60{bottom:178.338573pt;}
.y1f{bottom:190.941415pt;}
.y3{bottom:197.071889pt;}
.ye{bottom:197.272564pt;}
.y3e{bottom:210.041059pt;}
.y48{bottom:210.764439pt;}
.y2f{bottom:212.305520pt;}
.y25{bottom:213.243034pt;}
.y1b{bottom:215.422680pt;}
.y53{bottom:218.005260pt;}
.y5f{bottom:224.338575pt;}
.yd{bottom:224.472565pt;}
.y47{bottom:243.405901pt;}
.y37{bottom:245.794691pt;}
.y2e{bottom:249.105511pt;}
.y3d{bottom:250.521051pt;}
.yc{bottom:251.672556pt;}
.y1a{bottom:255.902671pt;}
.y52{bottom:258.325241pt;}
.y24{bottom:267.243035pt;}
.y5e{bottom:270.338576pt;}
.y46{bottom:276.047372pt;}
.yb{bottom:278.872557pt;}
.y2{bottom:284.633082pt;}
.y2d{bottom:285.905522pt;}
.y3c{bottom:291.001052pt;}
.y51{bottom:298.645242pt;}
.ya{bottom:306.072558pt;}
.y45{bottom:308.688833pt;}
.y19{bottom:314.622683pt;}
.y5d{bottom:316.338578pt;}
.y23{bottom:321.243037pt;}
.y2c{bottom:322.705513pt;}
.y59{bottom:323.224463pt;}
.y1{bottom:325.913079pt;}
.y3b{bottom:331.481048pt;}
.y9{bottom:333.272553pt;}
.y50{bottom:338.965244pt;}
.y44{bottom:341.330304pt;}
.y2b{bottom:359.505510pt;}
.y5c{bottom:362.338579pt;}
.y58{bottom:365.544459pt;}
.y3a{bottom:371.961045pt;}
.y43{bottom:373.971765pt;}
.y22{bottom:375.243045pt;}
.y18{bottom:378.462680pt;}
.y4f{bottom:379.285245pt;}
.y8{bottom:387.672545pt;}
.y2a{bottom:396.305505pt;}
.y42{bottom:406.613242pt;}
.y57{bottom:407.864456pt;}
.y5b{bottom:408.338581pt;}
.y39{bottom:412.441046pt;}
.y21{bottom:413.243046pt;}
.y7{bottom:414.872543pt;}
.y17{bottom:426.302676pt;}
.y20{bottom:451.243043pt;}
.y34{bottom:452.022214pt;}
.y15{bottom:469.493018pt;}
.y38{bottom:475.022216pt;}
.y4e{bottom:478.022216pt;}
.y16{bottom:482.332659pt;}
.y5a{bottom:484.022216pt;}
.y41{bottom:485.009093pt;}
.y4d{bottom:485.022216pt;}
.y40{bottom:491.022217pt;}
.y29{bottom:496.183999pt;}
.h4{height:41.273439pt;}
.hb{height:55.031252pt;}
.h3{height:73.375005pt;}
.h5{height:77.960938pt;}
.h11{height:89.102238pt;}
.h2{height:91.718751pt;}
.hd{height:97.070312pt;}
.ha{height:100.890631pt;}
.h9{height:100.953132pt;}
.h13{height:105.476564pt;}
.h6{height:109.375004pt;}
.h12{height:110.062504pt;}
.hc{height:114.648437pt;}
.hf{height:115.565629pt;}
.h1{height:118.317184pt;}
.h8{height:119.234383pt;}
.he{height:124.737515pt;}
.h7{height:133.909382pt;}
.h10{height:234.800019pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.000000pt;}
.xb{left:28.792651pt;}
.x7{left:30.845145pt;}
.xa{left:34.960631pt;}
.xd{left:36.123361pt;}
.x11{left:37.929260pt;}
.x14{left:39.036911pt;}
.x8{left:41.160681pt;}
.x15{left:45.594086pt;}
.x1{left:73.785722pt;}
.x9{left:78.845147pt;}
.x12{left:89.724413pt;}
.x13{left:138.471870pt;}
.x2{left:147.394855pt;}
.x4{left:167.241947pt;}
.x3{left:353.380283pt;}
.xf{left:634.763820pt;}
.xc{left:721.517123pt;}
.x10{left:731.992123pt;}
.x6{left:769.194225pt;}
.x5{left:780.260375pt;}
}




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