
    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_77a13e6dc9ef155986eacb45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_06d05fa0242666591b701468.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_a858a57cbb65550fdee7eb2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_369e9e05c500baf6396ba9fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026855;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_f058d8b0601f3e2fe052e924.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_215dcaba752a3d79439af1f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008199px;}
.ls5{letter-spacing:0.026550px;}
.ls1{letter-spacing:0.088019px;}
.ls3{letter-spacing:107.972165px;}
.ls2{letter-spacing:107.986397px;}
.ls6{letter-spacing:108.000426px;}
.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;}
}
.ws5{word-spacing:-79.200004px;}
.ws6{word-spacing:-33.396002px;}
.ws2{word-spacing:-32.076002px;}
.ws4{word-spacing:-30.366001px;}
.ws1{word-spacing:-30.360000px;}
.ws3{word-spacing:-27.474002px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-2.658876px;}
._2{margin-left:-1.301124px;}
._0{width:1.000165px;}
._1{width:2.546330px;}
._8{width:42.167983px;}
._7{width:60.251984px;}
._6{width:108.144489px;}
._5{width:208.042270px;}
._3{width:265.042271px;}
._4{width:267.202271px;}
.fc2{color:rgb(0,151,167);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs3{font-size:60.000000px;}
.fs1{font-size:108.000003px;}
.fs2{font-size:114.000007px;}
.fs4{font-size:120.000001px;}
.fs6{font-size:126.000004px;}
.fs5{font-size:132.000007px;}
.fs0{font-size:167.999999px;}
.y0{bottom:0.000000px;}
.yb{bottom:11.832281px;}
.y58{bottom:18.456000px;}
.y47{bottom:38.894888px;}
.y2c{bottom:40.094982px;}
.y6b{bottom:41.135922px;}
.y3c{bottom:54.519097px;}
.y57{bottom:59.855967px;}
.ya{bottom:63.078215px;}
.y46{bottom:67.964889px;}
.y6a{bottom:75.155912px;}
.y2b{bottom:76.094983px;}
.y3b{bottom:90.519098px;}
.y23{bottom:94.185096px;}
.y56{bottom:101.255958px;}
.y9{bottom:102.408216px;}
.y60{bottom:102.515958px;}
.y69{bottom:109.175890px;}
.y2a{bottom:112.094984px;}
.y45{bottom:115.718891px;}
.y13{bottom:119.214018px;}
.y78{bottom:120.335947px;}
.y1e{bottom:120.914984px;}
.y71{bottom:121.916696px;}
.y3a{bottom:126.519099px;}
.y22{bottom:136.215075px;}
.y8{bottom:141.738218px;}
.y55{bottom:142.655948px;}
.y68{bottom:143.195891px;}
.y29{bottom:148.094985px;}
.y44{bottom:148.208892px;}
.y12{bottom:160.614008px;}
.y5f{bottom:162.095948px;}
.y39{bottom:162.519100px;}
.y70{bottom:165.386708px;}
.y77{bottom:165.875926px;}
.y1d{bottom:166.455008px;}
.y43{bottom:180.698893px;}
.y54{bottom:184.055938px;}
.y28{bottom:184.094986px;}
.y67{bottom:195.215916px;}
.y11{bottom:202.013987px;}
.y5e{bottom:203.675938px;}
.y7{bottom:206.336293px;}
.y21{bottom:206.594987px;}
.y6f{bottom:208.856698px;}
.y4d{bottom:211.041269px;}
.y1a{bottom:211.995010px;}
.y38{bottom:213.519109px;}
.y27{bottom:220.094999px;}
.y53{bottom:225.455917px;}
.y76{bottom:229.415905px;}
.y42{bottom:231.188894px;}
.y5d{bottom:245.255928px;}
.y6{bottom:245.666295px;}
.y66{bottom:247.235928px;}
.y37{bottom:249.519110px;}
.y20{bottom:250.065000px;}
.y6e{bottom:252.326692px;}
.y26{bottom:256.095000px;}
.y19{bottom:257.535000px;}
.y10{bottom:261.413978px;}
.y4c{bottom:270.171270px;}
.y75{bottom:274.955907px;}
.y52{bottom:281.255896px;}
.y65{bottom:281.255918px;}
.y41{bottom:281.678896px;}
.y5{bottom:284.996296px;}
.y32{bottom:285.819093px;}
.y25{bottom:292.095001px;}
.y36{bottom:300.519086px;}
.yf{bottom:302.813968px;}
.y18{bottom:303.075002px;}
.y5c{bottom:304.835919px;}
.y2e{bottom:306.635908px;}
.y4b{bottom:309.861260px;}
.y40{bottom:314.168908px;}
.y64{bottom:315.275897px;}
.y51{bottom:319.055897px;}
.y1f{bottom:321.075002px;}
.y4{bottom:324.326297px;}
.y31{bottom:331.359083px;}
.y74{bottom:338.495903px;}
.y1c{bottom:348.614992px;}
.y63{bottom:349.295898px;}
.y24{bottom:351.494992px;}
.y35{bottom:351.519084px;}
.y50{bottom:356.855904px;}
.ye{bottom:362.213981px;}
.y5b{bottom:364.415910px;}
.y3f{bottom:364.658898px;}
.y17{bottom:366.614998px;}
.y4a{bottom:367.551274px;}
.y2d{bottom:370.175910px;}
.y6d{bottom:380.713189px;}
.y73{bottom:384.035899px;}
.y1b{bottom:394.154993px;}
.y3{bottom:394.368421px;}
.y30{bottom:394.899085px;}
.y3e{bottom:397.148903px;}
.y62{bottom:401.315900px;}
.yd{bottom:403.613978px;}
.y34{bottom:405.519085px;}
.y5a{bottom:405.995905px;}
.y49{bottom:407.241264px;}
.y16{bottom:412.154994px;}
.y4f{bottom:412.655900px;}
.y6c{bottom:426.253190px;}
.y72{bottom:429.575901px;}
.y3d{bottom:429.638901px;}
.y2{bottom:443.148424px;}
.yc{bottom:445.013972px;}
.y48{bottom:446.931257px;}
.y59{bottom:447.575901px;}
.y4e{bottom:450.455901px;}
.y61{bottom:453.335901px;}
.y15{bottom:457.694995px;}
.y2f{bottom:458.439087px;}
.y33{bottom:461.319087px;}
.y14{bottom:513.132988px;}
.y1{bottom:527.690816px;}
.h4{height:45.380860px;}
.h2{height:81.632815px;}
.hb{height:81.685549px;}
.h3{height:86.223638px;}
.h5{height:90.761719px;}
.ha{height:90.899419px;}
.h9{height:95.299808px;}
.h8{height:95.683594px;}
.h6{height:99.837896px;}
.h7{height:105.251959px;}
.h1{height:127.066406px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:92.250003px;}
.xd{left:99.321404px;}
.x7{left:101.220478px;}
.x9{left:103.189965px;}
.xf{left:104.314965px;}
.xe{left:105.439965px;}
.x8{left:106.564965px;}
.x4{left:112.954729px;}
.x10{left:115.006859px;}
.x12{left:120.375004px;}
.x2{left:123.630744px;}
.xb{left:124.637366px;}
.xa{left:128.890517px;}
.x13{left:130.374510px;}
.x5{left:146.066933px;}
.x11{left:158.314966px;}
.x1{left:178.622376px;}
.x3{left:214.432747px;}
.x6{left:869.190778px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007288pt;}
.ls5{letter-spacing:0.023600pt;}
.ls1{letter-spacing:0.078239pt;}
.ls3{letter-spacing:95.975258pt;}
.ls2{letter-spacing:95.987908pt;}
.ls6{letter-spacing:96.000379pt;}
.ws5{word-spacing:-70.400004pt;}
.ws6{word-spacing:-29.685335pt;}
.ws2{word-spacing:-28.512002pt;}
.ws4{word-spacing:-26.992001pt;}
.ws1{word-spacing:-26.986667pt;}
.ws3{word-spacing:-24.421335pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-2.363446pt;}
._2{margin-left:-1.156554pt;}
._0{width:0.889036pt;}
._1{width:2.263405pt;}
._8{width:37.482651pt;}
._7{width:53.557319pt;}
._6{width:96.128435pt;}
._5{width:184.926463pt;}
._3{width:235.593130pt;}
._4{width:237.513130pt;}
.fs3{font-size:53.333334pt;}
.fs1{font-size:96.000003pt;}
.fs2{font-size:101.333339pt;}
.fs4{font-size:106.666667pt;}
.fs6{font-size:112.000004pt;}
.fs5{font-size:117.333340pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:10.517583pt;}
.y58{bottom:16.405333pt;}
.y47{bottom:34.573234pt;}
.y2c{bottom:35.639984pt;}
.y6b{bottom:36.565264pt;}
.y3c{bottom:48.461419pt;}
.y57{bottom:53.205304pt;}
.ya{bottom:56.069525pt;}
.y46{bottom:60.413235pt;}
.y6a{bottom:66.805255pt;}
.y2b{bottom:67.639985pt;}
.y3b{bottom:80.461420pt;}
.y23{bottom:83.720085pt;}
.y56{bottom:90.005296pt;}
.y9{bottom:91.029526pt;}
.y60{bottom:91.125296pt;}
.y69{bottom:97.045236pt;}
.y2a{bottom:99.639986pt;}
.y45{bottom:102.861236pt;}
.y13{bottom:105.968016pt;}
.y78{bottom:106.965286pt;}
.y1e{bottom:107.479986pt;}
.y71{bottom:108.370396pt;}
.y3a{bottom:112.461421pt;}
.y22{bottom:121.080067pt;}
.y8{bottom:125.989527pt;}
.y55{bottom:126.805287pt;}
.y68{bottom:127.285237pt;}
.y29{bottom:131.639987pt;}
.y44{bottom:131.741237pt;}
.y12{bottom:142.768007pt;}
.y5f{bottom:144.085287pt;}
.y39{bottom:144.461422pt;}
.y70{bottom:147.010407pt;}
.y77{bottom:147.445267pt;}
.y1d{bottom:147.960007pt;}
.y43{bottom:160.621238pt;}
.y54{bottom:163.605278pt;}
.y28{bottom:163.639988pt;}
.y67{bottom:173.525258pt;}
.y11{bottom:179.567988pt;}
.y5e{bottom:181.045279pt;}
.y7{bottom:183.410039pt;}
.y21{bottom:183.639989pt;}
.y6f{bottom:185.650399pt;}
.y4d{bottom:187.592239pt;}
.y1a{bottom:188.440009pt;}
.y38{bottom:189.794764pt;}
.y27{bottom:195.639999pt;}
.y53{bottom:200.405259pt;}
.y76{bottom:203.925249pt;}
.y42{bottom:205.501239pt;}
.y5d{bottom:218.005270pt;}
.y6{bottom:218.370040pt;}
.y66{bottom:219.765270pt;}
.y37{bottom:221.794765pt;}
.y20{bottom:222.280000pt;}
.y6e{bottom:224.290393pt;}
.y26{bottom:227.640000pt;}
.y19{bottom:228.920000pt;}
.y10{bottom:232.367980pt;}
.y4c{bottom:240.152240pt;}
.y75{bottom:244.405251pt;}
.y52{bottom:250.005241pt;}
.y65{bottom:250.005261pt;}
.y41{bottom:250.381241pt;}
.y5{bottom:253.330041pt;}
.y32{bottom:254.061416pt;}
.y25{bottom:259.640001pt;}
.y36{bottom:267.128076pt;}
.yf{bottom:269.167971pt;}
.y18{bottom:269.400001pt;}
.y5c{bottom:270.965261pt;}
.y2e{bottom:272.565251pt;}
.y4b{bottom:275.432232pt;}
.y40{bottom:279.261252pt;}
.y64{bottom:280.245242pt;}
.y51{bottom:283.605242pt;}
.y1f{bottom:285.400002pt;}
.y4{bottom:288.290042pt;}
.y31{bottom:294.541407pt;}
.y74{bottom:300.885247pt;}
.y1c{bottom:309.879993pt;}
.y63{bottom:310.485243pt;}
.y24{bottom:312.439993pt;}
.y35{bottom:312.461408pt;}
.y50{bottom:317.205248pt;}
.ye{bottom:321.967983pt;}
.y5b{bottom:323.925253pt;}
.y3f{bottom:324.141243pt;}
.y17{bottom:325.879998pt;}
.y4a{bottom:326.712243pt;}
.y2d{bottom:329.045253pt;}
.y6d{bottom:338.411724pt;}
.y73{bottom:341.365244pt;}
.y1b{bottom:350.359994pt;}
.y3{bottom:350.549708pt;}
.y30{bottom:351.021409pt;}
.y3e{bottom:353.021247pt;}
.y62{bottom:356.725244pt;}
.yd{bottom:358.767980pt;}
.y34{bottom:360.461409pt;}
.y5a{bottom:360.885249pt;}
.y49{bottom:361.992234pt;}
.y16{bottom:366.359994pt;}
.y4f{bottom:366.805244pt;}
.y6c{bottom:378.891725pt;}
.y72{bottom:381.845245pt;}
.y3d{bottom:381.901245pt;}
.y2{bottom:393.909710pt;}
.yc{bottom:395.567975pt;}
.y48{bottom:397.272228pt;}
.y59{bottom:397.845245pt;}
.y4e{bottom:400.405246pt;}
.y61{bottom:402.965246pt;}
.y15{bottom:406.839996pt;}
.y2f{bottom:407.501411pt;}
.y33{bottom:410.061411pt;}
.y14{bottom:456.118211pt;}
.y1{bottom:469.058503pt;}
.h4{height:40.338542pt;}
.h2{height:72.562502pt;}
.hb{height:72.609377pt;}
.h3{height:76.643234pt;}
.h5{height:80.677084pt;}
.ha{height:80.799484pt;}
.h9{height:84.710940pt;}
.h8{height:85.052084pt;}
.h6{height:88.744797pt;}
.h7{height:93.557297pt;}
.h1{height:112.947916pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:82.000003pt;}
.xd{left:88.285693pt;}
.x7{left:89.973758pt;}
.x9{left:91.724413pt;}
.xf{left:92.724413pt;}
.xe{left:93.724413pt;}
.x8{left:94.724413pt;}
.x4{left:100.404203pt;}
.x10{left:102.228319pt;}
.x12{left:107.000003pt;}
.x2{left:109.893995pt;}
.xb{left:110.788770pt;}
.xa{left:114.569349pt;}
.x13{left:115.888454pt;}
.x5{left:129.837274pt;}
.x11{left:140.724415pt;}
.x1{left:158.775445pt;}
.x3{left:190.606886pt;}
.x6{left:772.614025pt;}
}




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