
    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_f4dbe939cfb619a386cc7c54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b1dd5cf8903ca52a3b2afb4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ada24200f064cdcc4b80c448.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869629;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_15868ea165d49f7ba3204b07.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_1aeefe1993ad33e1f344ff27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_40b0ee76cf8bde617b02f803.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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.249654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.423986px;}
.ls2{letter-spacing:39.756944px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-65.087974px;}
.ws4{word-spacing:-37.913745px;}
.ws5{word-spacing:-35.310226px;}
.wsa{word-spacing:-30.023988px;}
.ws9{word-spacing:-21.641751px;}
.ws8{word-spacing:-16.537769px;}
.ws6{word-spacing:-9.164387px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.600396px;}
.ws2{word-spacing:1.464646px;}
.ws7{word-spacing:221.911570px;}
._c{margin-left:-20.190080px;}
._7{margin-left:-17.541577px;}
._8{margin-left:-14.441070px;}
._a{margin-left:-11.607103px;}
._4{margin-left:-8.460172px;}
._5{margin-left:-5.827326px;}
._6{margin-left:-3.770467px;}
._1{margin-left:-2.524671px;}
._0{margin-left:-1.010916px;}
._2{width:1.881344px;}
._3{width:3.170915px;}
._9{width:6.177866px;}
._b{width:97.559925px;}
.fc3{color:rgb(110,172,28);}
.fc2{color:rgb(28,173,228);}
.fc4{color:rgb(0,176,80);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.550384px;}
.fs9{font-size:73.175971px;}
.fsa{font-size:75.614370px;}
.fsd{font-size:84.239966px;}
.fsb{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.fsc{font-size:120.239952px;}
.fs6{font-size:131.759947px;}
.fs1{font-size:143.999942px;}
.fs5{font-size:156.239938px;}
.fs4{font-size:167.759933px;}
.fs0{font-size:192.239923px;}
.fs7{font-size:239.759904px;}
.fse{font-size:264.239894px;}
.fs3{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.y37{bottom:117.240310px;}
.y44{bottom:137.040302px;}
.y36{bottom:149.640297px;}
.y43{bottom:162.960292px;}
.y42{bottom:209.940273px;}
.y19{bottom:220.380269px;}
.y13{bottom:233.160264px;}
.y18{bottom:254.940255px;}
.y41{bottom:256.920254px;}
.y29{bottom:271.500248px;}
.y12{bottom:273.480248px;}
.y40{bottom:282.840244px;}
.yf{bottom:294.360239px;}
.y17{bottom:298.500238px;}
.y28{bottom:299.220237px;}
.y11{bottom:313.800231px;}
.y27{bottom:326.940226px;}
.y3f{bottom:329.640225px;}
.y16{bottom:333.060224px;}
.ye{bottom:334.680223px;}
.y49{bottom:346.920218px;}
.y10{bottom:354.120215px;}
.y3e{bottom:355.560215px;}
.y26{bottom:361.860212px;}
.y48{bottom:372.120208px;}
.y6{bottom:373.920207px;}
.yd{bottom:375.000207px;}
.y1f{bottom:375.180207px;}
.y3d{bottom:381.480204px;}
.y47{bottom:398.580198px;}
.y5{bottom:406.320194px;}
.yc{bottom:415.320191px;}
.y1e{bottom:415.500191px;}
.y25{bottom:415.680191px;}
.y31{bottom:425.400187px;}
.y3c{bottom:428.460186px;}
.y15{bottom:436.380182px;}
.y2a{bottom:438.000182px;}
.y4{bottom:440.700181px;}
.y24{bottom:448.440178px;}
.yb{bottom:455.640175px;}
.y1d{bottom:455.820175px;}
.y46{bottom:463.380172px;}
.y2b{bottom:464.280171px;}
.y3b{bottom:475.440167px;}
.y14{bottom:476.700166px;}
.y2c{bottom:490.380161px;}
.y45{bottom:496.500158px;}
.y35{bottom:500.100157px;}
.y23{bottom:503.880155px;}
.y2d{bottom:516.480150px;}
.ya{bottom:517.020150px;}
.y1c{bottom:517.200150px;}
.y34{bottom:520.440149px;}
.y3a{bottom:522.240148px;}
.y3{bottom:527.100146px;}
.y22{bottom:531.600144px;}
.y2e{bottom:542.760140px;}
.y39{bottom:548.160138px;}
.y9{bottom:557.340134px;}
.y1b{bottom:557.520134px;}
.y4e{bottom:562.380132px;}
.y21{bottom:568.320130px;}
.y2f{bottom:568.860129px;}
.y2{bottom:573.180128px;}
.y4d{bottom:594.780119px;}
.y30{bottom:595.140119px;}
.y8{bottom:597.660118px;}
.y1a{bottom:597.840118px;}
.y20{bottom:603.240116px;}
.y33{bottom:618.720110px;}
.y32{bottom:618.900109px;}
.y38{bottom:621.060109px;}
.y4c{bottom:627.180106px;}
.y1{bottom:630.780105px;}
.y7{bottom:669.840089px;}
.y4b{bottom:688.740082px;}
.y4a{bottom:767.940050px;}
.h9{height:29.105988px;}
.ha{height:50.165558px;}
.hb{height:56.710777px;}
.hc{height:68.733957px;}
.he{height:87.859652px;}
.h8{height:94.573790px;}
.h6{height:103.359334px;}
.h7{height:112.144877px;}
.h3{height:112.640580px;}
.h5{height:120.413624px;}
.hd{height:125.406512px;}
.h2{height:150.187440px;}
.h4{height:199.124920px;}
.h1{height:200.500232px;}
.hf{height:275.593952px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x12{left:113.745855px;}
.x1{left:122.565851px;}
.x4{left:141.645843px;}
.x3{left:169.545832px;}
.x7{left:199.426420px;}
.x11{left:202.306419px;}
.x8{left:212.206415px;}
.x9{left:233.806406px;}
.x17{left:249.826400px;}
.x14{left:264.585794px;}
.x5{left:269.985792px;}
.x13{left:284.925786px;}
.x18{left:301.666379px;}
.x2{left:319.665772px;}
.x15{left:350.625760px;}
.x6{left:417.945733px;}
.x19{left:448.006321px;}
.x16{left:465.285714px;}
.x1a{left:528.826288px;}
.xb{left:605.146257px;}
.xa{left:610.726256px;}
.xc{left:661.126295px;}
.xd{left:722.326211px;}
.xe{left:794.686182px;}
.xf{left:798.466181px;}
.x10{left:944.266122px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.487987pt;}
.ls2{letter-spacing:35.339506pt;}
.ws1{word-spacing:-57.855977pt;}
.ws4{word-spacing:-33.701107pt;}
.ws5{word-spacing:-31.386867pt;}
.wsa{word-spacing:-26.687989pt;}
.ws9{word-spacing:-19.237112pt;}
.ws8{word-spacing:-14.700239pt;}
.ws6{word-spacing:-8.146122pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.533685pt;}
.ws2{word-spacing:1.301908pt;}
.ws7{word-spacing:197.254729pt;}
._c{margin-left:-17.946738pt;}
._7{margin-left:-15.592513pt;}
._8{margin-left:-12.836506pt;}
._a{margin-left:-10.317425pt;}
._4{margin-left:-7.520153pt;}
._5{margin-left:-5.179845pt;}
._6{margin-left:-3.351526pt;}
._1{margin-left:-2.244152pt;}
._0{margin-left:-0.898592pt;}
._2{width:1.672305pt;}
._3{width:2.818591pt;}
._9{width:5.491436pt;}
._b{width:86.719933pt;}
.fs8{font-size:36.044786pt;}
.fs9{font-size:65.045307pt;}
.fsa{font-size:67.212773pt;}
.fsd{font-size:74.879970pt;}
.fsb{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.fsc{font-size:106.879957pt;}
.fs6{font-size:117.119953pt;}
.fs1{font-size:127.999949pt;}
.fs5{font-size:138.879944pt;}
.fs4{font-size:149.119940pt;}
.fs0{font-size:170.879932pt;}
.fs7{font-size:213.119915pt;}
.fse{font-size:234.879906pt;}
.fs3{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:104.213609pt;}
.y44{bottom:121.813602pt;}
.y36{bottom:133.013597pt;}
.y43{bottom:144.853593pt;}
.y42{bottom:186.613576pt;}
.y19{bottom:195.893572pt;}
.y13{bottom:207.253568pt;}
.y18{bottom:226.613560pt;}
.y41{bottom:228.373559pt;}
.y29{bottom:241.333554pt;}
.y12{bottom:243.093553pt;}
.y40{bottom:251.413550pt;}
.yf{bottom:261.653546pt;}
.y17{bottom:265.333545pt;}
.y28{bottom:265.973544pt;}
.y11{bottom:278.933539pt;}
.y27{bottom:290.613534pt;}
.y3f{bottom:293.013533pt;}
.y16{bottom:296.053532pt;}
.ye{bottom:297.493532pt;}
.y49{bottom:308.373527pt;}
.y10{bottom:314.773525pt;}
.y3e{bottom:316.053524pt;}
.y26{bottom:321.653522pt;}
.y48{bottom:330.773518pt;}
.y6{bottom:332.373518pt;}
.yd{bottom:333.333517pt;}
.y1f{bottom:333.493517pt;}
.y3d{bottom:339.093515pt;}
.y47{bottom:354.293509pt;}
.y5{bottom:361.173506pt;}
.yc{bottom:369.173503pt;}
.y1e{bottom:369.333503pt;}
.y25{bottom:369.493503pt;}
.y31{bottom:378.133499pt;}
.y3c{bottom:380.853498pt;}
.y15{bottom:387.893496pt;}
.y2a{bottom:389.333495pt;}
.y4{bottom:391.733494pt;}
.y24{bottom:398.613491pt;}
.yb{bottom:405.013489pt;}
.y1d{bottom:405.173489pt;}
.y46{bottom:411.893486pt;}
.y2b{bottom:412.693486pt;}
.y3b{bottom:422.613482pt;}
.y14{bottom:423.733481pt;}
.y2c{bottom:435.893476pt;}
.y45{bottom:441.333474pt;}
.y35{bottom:444.533473pt;}
.y23{bottom:447.893472pt;}
.y2d{bottom:459.093467pt;}
.ya{bottom:459.573467pt;}
.y1c{bottom:459.733467pt;}
.y34{bottom:462.613466pt;}
.y3a{bottom:464.213465pt;}
.y3{bottom:468.533463pt;}
.y22{bottom:472.533462pt;}
.y2e{bottom:482.453458pt;}
.y39{bottom:487.253456pt;}
.y9{bottom:495.413453pt;}
.y1b{bottom:495.573452pt;}
.y4e{bottom:499.893451pt;}
.y21{bottom:505.173449pt;}
.y2f{bottom:505.653448pt;}
.y2{bottom:509.493447pt;}
.y4d{bottom:528.693439pt;}
.y30{bottom:529.013439pt;}
.y8{bottom:531.253438pt;}
.y1a{bottom:531.413438pt;}
.y20{bottom:536.213436pt;}
.y33{bottom:549.973431pt;}
.y32{bottom:550.133431pt;}
.y38{bottom:552.053430pt;}
.y4c{bottom:557.493428pt;}
.y1{bottom:560.693426pt;}
.y7{bottom:595.413413pt;}
.y4b{bottom:612.213406pt;}
.y4a{bottom:682.613378pt;}
.h9{height:25.871990pt;}
.ha{height:44.591607pt;}
.hb{height:50.409580pt;}
.hc{height:61.096851pt;}
.he{height:78.097469pt;}
.h8{height:84.065591pt;}
.h6{height:91.874963pt;}
.h7{height:99.684335pt;}
.h3{height:100.124960pt;}
.h5{height:107.034332pt;}
.hd{height:111.472455pt;}
.h2{height:133.499947pt;}
.h4{height:176.999929pt;}
.h1{height:178.222429pt;}
.hf{height:244.972402pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x12{left:101.107426pt;}
.x1{left:108.947423pt;}
.x4{left:125.907416pt;}
.x3{left:150.707406pt;}
.x7{left:177.267929pt;}
.x11{left:179.827928pt;}
.x8{left:188.627925pt;}
.x9{left:207.827917pt;}
.x17{left:222.067911pt;}
.x14{left:235.187373pt;}
.x5{left:239.987371pt;}
.x13{left:253.267365pt;}
.x18{left:268.147893pt;}
.x2{left:284.147353pt;}
.x15{left:311.667342pt;}
.x6{left:371.507318pt;}
.x19{left:398.227841pt;}
.x16{left:413.587301pt;}
.x1a{left:470.067812pt;}
.xb{left:537.907784pt;}
.xa{left:542.867783pt;}
.xc{left:587.667817pt;}
.xd{left:642.067743pt;}
.xe{left:706.387717pt;}
.xf{left:709.747716pt;}
.x10{left:839.347664pt;}
}




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