
    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_b444e438fa04c4b862e73302.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_446ce24bbe00c3182f0bb9f6.woff2')format("woff");}.ff2{font-family:ff2;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
.ws2{word-spacing:78.084407px;}
.ws1{word-spacing:78.084425px;}
.ws3{word-spacing:81.394251px;}
.ws4{word-spacing:81.394260px;}
.wsc{word-spacing:151.805488px;}
.wsb{word-spacing:153.855386px;}
.ws9{word-spacing:192.110436px;}
.ws8{word-spacing:194.457354px;}
.ws7{word-spacing:217.505692px;}
.wsa{word-spacing:233.361649px;}
.ws6{word-spacing:252.637130px;}
.ws5{word-spacing:256.895030px;}
._0{margin-left:-3385.741668px;}
._1{width:108.000426px;}
._a{width:165.757971px;}
._5{width:187.016451px;}
._b{width:219.251499px;}
._3{width:222.051378px;}
._9{width:230.857065px;}
._8{width:292.132545px;}
._6{width:301.003807px;}
._7{width:338.836545px;}
._4{width:347.707812px;}
._2{width:1729.568612px;}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000002px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fs0{font-size:144.000005px;}
.y0{bottom:0.000000px;}
.y9{bottom:12.305548px;}
.y16{bottom:45.670853px;}
.yc{bottom:62.544763px;}
.y17{bottom:92.545859px;}
.y40{bottom:95.310436px;}
.y1d{bottom:101.751244px;}
.yb{bottom:108.772690px;}
.y6{bottom:112.327207px;}
.y8{bottom:126.772691px;}
.y28{bottom:130.026832px;}
.y5{bottom:137.077210px;}
.y46{bottom:137.204985px;}
.y45{bottom:150.143140px;}
.y2e{bottom:154.232706px;}
.y27{bottom:162.651833px;}
.y1c{bottom:167.001247px;}
.y36{bottom:189.156834px;}
.y26{bottom:195.276834px;}
.y2d{bottom:200.579164px;}
.y15{bottom:202.454987px;}
.y4{bottom:204.187433px;}
.y35{bottom:218.406835px;}
.y44{bottom:221.501206px;}
.y25{bottom:227.901835px;}
.y1b{bottom:232.251249px;}
.y12{bottom:240.899872px;}
.y2c{bottom:246.925622px;}
.y34{bottom:247.656836px;}
.y3{bottom:258.616001px;}
.y24{bottom:260.526836px;}
.yf{bottom:267.704989px;}
.y3c{bottom:271.733504px;}
.y43{bottom:273.212823px;}
.y3f{bottom:274.598843px;}
.y33{bottom:276.906837px;}
.y39{bottom:286.334990px;}
.y23{bottom:293.151837px;}
.y2b{bottom:293.272080px;}
.y1a{bottom:297.501251px;}
.y3e{bottom:299.348844px;}
.y11{bottom:306.149874px;}
.y32{bottom:306.156842px;}
.y13{bottom:312.394122px;}
.y3b{bottom:320.637042px;}
.y3d{bottom:324.098847px;}
.y42{bottom:324.924439px;}
.y22{bottom:325.776838px;}
.ye{bottom:332.954991px;}
.y31{bottom:335.406843px;}
.y2a{bottom:339.618537px;}
.y38{bottom:343.709996px;}
.y21{bottom:358.401840px;}
.y19{bottom:362.751253px;}
.y30{bottom:364.656840px;}
.y3a{bottom:370.013035px;}
.y10{bottom:371.399876px;}
.y1f{bottom:375.706466px;}
.y41{bottom:377.138031px;}
.y1e{bottom:385.711060px;}
.y29{bottom:385.964995px;}
.y20{bottom:391.026841px;}
.y2f{bottom:393.906841px;}
.yd{bottom:398.204993px;}
.y37{bottom:401.084993px;}
.y2{bottom:409.242102px;}
.y14{bottom:415.507316px;}
.y18{bottom:428.001255px;}
.y1{bottom:458.742092px;}
.y7{bottom:500.219110px;}
.ya{bottom:580.094999px;}
.h4{height:43.710938px;}
.h5{height:52.453127px;}
.h8{height:61.154297px;}
.h2{height:61.195312px;}
.h9{height:69.937504px;}
.h7{height:78.626956px;}
.h6{height:78.679690px;}
.h3{height:104.835941px;}
.h1{height:104.906253px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x45{left:67.730604px;}
.x44{left:70.646212px;}
.x4a{left:71.859996px;}
.xb{left:103.438682px;}
.x4b{left:112.051267px;}
.x14{left:129.750007px;}
.x2{left:143.771489px;}
.x1{left:149.835942px;}
.xf{left:152.808042px;}
.x4e{left:156.885800px;}
.x21{left:171.225433px;}
.x2c{left:176.096458px;}
.x49{left:203.249740px;}
.x16{left:206.808048px;}
.x50{left:210.885806px;}
.x10{left:248.950200px;}
.x43{left:252.134088px;}
.x42{left:255.790853px;}
.x1d{left:269.058053px;}
.x1e{left:272.961920px;}
.x23{left:277.989264px;}
.x2f{left:307.968760px;}
.x28{left:323.058059px;}
.x38{left:326.944349px;}
.x29{left:350.991236px;}
.x1a{left:366.020517px;}
.x15{left:367.962897px;}
.x47{left:373.957043px;}
.x11{left:377.415575px;}
.x6{left:381.955085px;}
.x4{left:383.412432px;}
.x3a{left:385.971695px;}
.x3{left:390.911143px;}
.x27{left:393.934625px;}
.x48{left:396.975613px;}
.x26{left:397.986335px;}
.x3c{left:404.947318px;}
.x17{left:408.990253px;}
.x22{left:411.438051px;}
.x40{left:412.853922px;}
.x34{left:414.791338px;}
.x31{left:418.092489px;}
.x13{left:419.658966px;}
.x1c{left:422.450732px;}
.x30{left:425.935589px;}
.x3b{left:428.453676px;}
.x4f{left:431.991239px;}
.x25{left:433.450251px;}
.x37{left:435.440961px;}
.x18{left:437.489942px;}
.xd{left:443.757029px;}
.x39{left:444.972704px;}
.x2a{left:446.950252px;}
.xe{left:448.954102px;}
.xc{left:450.008789px;}
.x1f{left:452.465384px;}
.x9{left:453.955132px;}
.x3f{left:455.471227px;}
.x7{left:456.671922px;}
.x41{left:460.472212px;}
.x19{left:464.000977px;}
.x2d{left:468.966818px;}
.x32{left:472.092495px;}
.x51{left:483.742669px;}
.x5{left:491.760837px;}
.x33{left:510.006110px;}
.x4d{left:585.555397px;}
.x46{left:591.536597px;}
.x3d{left:594.398181px;}
.x20{left:621.938952px;}
.x3e{left:648.398181px;}
.x2e{left:670.078473px;}
.x2b{left:682.508841px;}
.x12{left:710.066954px;}
.x4c{left:712.126225px;}
.x36{left:719.158467px;}
.x35{left:805.052519px;}
.xa{left:822.395437px;}
.x1b{left:1036.125033px;}
.x24{left:1043.040408px;}
.x52{left:1046.583708px;}
.x8{left:1053.097459px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:69.408362pt;}
.ws1{word-spacing:69.408378pt;}
.ws3{word-spacing:72.350445pt;}
.ws4{word-spacing:72.350453pt;}
.wsc{word-spacing:134.938211pt;}
.wsb{word-spacing:136.760343pt;}
.ws9{word-spacing:170.764832pt;}
.ws8{word-spacing:172.850982pt;}
.ws7{word-spacing:193.338393pt;}
.wsa{word-spacing:207.432577pt;}
.ws6{word-spacing:224.566338pt;}
.ws5{word-spacing:228.351138pt;}
._0{margin-left:-3009.548150pt;}
._1{width:96.000379pt;}
._a{width:147.340419pt;}
._5{width:166.236845pt;}
._b{width:194.890222pt;}
._3{width:197.379003pt;}
._9{width:205.206280pt;}
._8{width:259.673374pt;}
._6{width:267.558940pt;}
._7{width:301.188040pt;}
._4{width:309.073610pt;}
._2{width:1537.394322pt;}
.fs2{font-size:53.333334pt;}
.fs3{font-size:64.000002pt;}
.fs1{font-size:74.666666pt;}
.fs5{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fs0{font-size:128.000004pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:10.938265pt;}
.y16{bottom:40.596314pt;}
.yc{bottom:55.595344pt;}
.y17{bottom:82.262985pt;}
.y40{bottom:84.720387pt;}
.y1d{bottom:90.445551pt;}
.yb{bottom:96.686836pt;}
.y6{bottom:99.846406pt;}
.y8{bottom:112.686836pt;}
.y28{bottom:115.579406pt;}
.y5{bottom:121.846409pt;}
.y46{bottom:121.959987pt;}
.y45{bottom:133.460569pt;}
.y2e{bottom:137.095739pt;}
.y27{bottom:144.579407pt;}
.y1c{bottom:148.445552pt;}
.y36{bottom:168.139408pt;}
.y26{bottom:173.579408pt;}
.y2d{bottom:178.292590pt;}
.y15{bottom:179.959988pt;}
.y4{bottom:181.499941pt;}
.y35{bottom:194.139409pt;}
.y44{bottom:196.889961pt;}
.y25{bottom:202.579409pt;}
.y1b{bottom:206.445554pt;}
.y12{bottom:214.133220pt;}
.y2c{bottom:219.489442pt;}
.y34{bottom:220.139410pt;}
.y3{bottom:229.880890pt;}
.y24{bottom:231.579410pt;}
.yf{bottom:237.959990pt;}
.y3c{bottom:241.540892pt;}
.y43{bottom:242.855842pt;}
.y3f{bottom:244.087861pt;}
.y33{bottom:246.139411pt;}
.y39{bottom:254.519991pt;}
.y23{bottom:260.579411pt;}
.y2b{bottom:260.686293pt;}
.y1a{bottom:264.445556pt;}
.y3e{bottom:266.087861pt;}
.y11{bottom:272.133221pt;}
.y32{bottom:272.139415pt;}
.y13{bottom:277.683664pt;}
.y3b{bottom:285.010704pt;}
.y3d{bottom:288.087864pt;}
.y42{bottom:288.821724pt;}
.y22{bottom:289.579412pt;}
.ye{bottom:295.959992pt;}
.y31{bottom:298.139416pt;}
.y2a{bottom:301.883144pt;}
.y38{bottom:305.519996pt;}
.y21{bottom:318.579413pt;}
.y19{bottom:322.445558pt;}
.y30{bottom:324.139413pt;}
.y3a{bottom:328.900475pt;}
.y10{bottom:330.133223pt;}
.y1f{bottom:333.961303pt;}
.y41{bottom:335.233805pt;}
.y1e{bottom:342.854276pt;}
.y29{bottom:343.079996pt;}
.y20{bottom:347.579414pt;}
.y2f{bottom:350.139414pt;}
.yd{bottom:353.959994pt;}
.y37{bottom:356.519994pt;}
.y2{bottom:363.770757pt;}
.y14{bottom:369.339837pt;}
.y18{bottom:380.445560pt;}
.y1{bottom:407.770749pt;}
.y7{bottom:444.639209pt;}
.ya{bottom:515.639999pt;}
.h4{height:38.854167pt;}
.h5{height:46.625001pt;}
.h8{height:54.359375pt;}
.h2{height:54.395833pt;}
.h9{height:62.166671pt;}
.h7{height:69.890627pt;}
.h6{height:69.937502pt;}
.h3{height:93.187503pt;}
.h1{height:93.250003pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x45{left:60.204981pt;}
.x44{left:62.796633pt;}
.x4a{left:63.875552pt;}
.xb{left:91.945495pt;}
.x4b{left:99.601126pt;}
.x14{left:115.333340pt;}
.x2{left:127.796879pt;}
.x1{left:133.187504pt;}
.xf{left:135.829370pt;}
.x4e{left:139.454044pt;}
.x21{left:152.200385pt;}
.x2c{left:156.530185pt;}
.x49{left:180.666436pt;}
.x16{left:183.829376pt;}
.x50{left:187.454050pt;}
.x10{left:221.289067pt;}
.x43{left:224.119189pt;}
.x42{left:227.369647pt;}
.x1d{left:239.162714pt;}
.x1e{left:242.632818pt;}
.x23{left:247.101568pt;}
.x2f{left:273.750009pt;}
.x28{left:287.162719pt;}
.x38{left:290.617199pt;}
.x29{left:311.992210pt;}
.x1a{left:325.351570pt;}
.x15{left:327.078130pt;}
.x47{left:332.406261pt;}
.x11{left:335.480511pt;}
.x6{left:339.515631pt;}
.x4{left:340.811051pt;}
.x3a{left:343.085951pt;}
.x3{left:347.476571pt;}
.x27{left:350.164111pt;}
.x48{left:352.867211pt;}
.x26{left:353.765631pt;}
.x3c{left:359.953172pt;}
.x17{left:363.546892pt;}
.x22{left:365.722712pt;}
.x40{left:366.981264pt;}
.x34{left:368.703412pt;}
.x31{left:371.637768pt;}
.x13{left:373.030192pt;}
.x1c{left:375.511762pt;}
.x30{left:378.609412pt;}
.x3b{left:380.847712pt;}
.x4f{left:383.992212pt;}
.x25{left:385.289112pt;}
.x37{left:387.058632pt;}
.x18{left:388.879948pt;}
.xd{left:394.450693pt;}
.x39{left:395.531293pt;}
.x2a{left:397.289113pt;}
.xe{left:399.070313pt;}
.xc{left:400.007813pt;}
.x1f{left:402.191453pt;}
.x9{left:403.515673pt;}
.x3f{left:404.863313pt;}
.x7{left:405.930597pt;}
.x41{left:409.308633pt;}
.x19{left:412.445313pt;}
.x2d{left:416.859393pt;}
.x32{left:419.637773pt;}
.x51{left:429.993484pt;}
.x5{left:437.120744pt;}
.x33{left:453.338765pt;}
.x4d{left:520.493687pt;}
.x46{left:525.810309pt;}
.x3d{left:528.353939pt;}
.x20{left:552.834624pt;}
.x3e{left:576.353938pt;}
.x2e{left:595.625309pt;}
.x2b{left:606.674525pt;}
.x12{left:631.170626pt;}
.x4c{left:633.001089pt;}
.x36{left:639.251970pt;}
.x35{left:715.602239pt;}
.xa{left:731.018166pt;}
.x1b{left:921.000029pt;}
.x24{left:927.147030pt;}
.x52{left:930.296630pt;}
.x8{left:936.086630pt;}
}




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