
    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_5db90279d034835b806d47ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963667;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_e4e95552693fb25ed197a2f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_fcb1d875f8724229bbdb3381.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_586e89270e4baebad30340be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_a2fe7615a582968b7a663a99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_caa4511487c9fc04412c9f51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_0c06d34e1c930ec4f3ec6a5a.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_151556932d81be811f5c536c.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_114ff061acfd47e6b8945d4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.746094;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:-33.750001px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000045px;}
.ls8{letter-spacing:106.500000px;}
.ls4{letter-spacing:107.971879px;}
.ls6{letter-spacing:107.971938px;}
.ls9{letter-spacing:107.971947px;}
.ls3{letter-spacing:107.986116px;}
.ls5{letter-spacing:107.986129px;}
.ls1{letter-spacing:108.000003px;}
.ls2{letter-spacing:110.812504px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(75,172,198),0 0.015em rgb(75,172,198),0.015em 0 rgb(75,172,198),0 -0.015em  rgb(75,172,198);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(75,172,198);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-43.200001px;}
.ws9{word-spacing:-33.120000px;}
.ws2{word-spacing:-22.950001px;}
.ws4{word-spacing:-22.770001px;}
.ws3{word-spacing:-21.600001px;}
.ws6{word-spacing:-21.252000px;}
.ws8{word-spacing:-20.160000px;}
.ws7{word-spacing:-14.168001px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1711.027769px;}
._a{margin-left:-22.890533px;}
._7{margin-left:-19.055410px;}
._8{margin-left:-16.065573px;}
._9{margin-left:-14.280509px;}
._3{margin-left:-10.218000px;}
._4{margin-left:-6.234000px;}
._1{margin-left:-4.356000px;}
._2{margin-left:-3.036000px;}
._0{margin-left:-1.980000px;}
._5{width:714.432992px;}
._6{width:791.142310px;}
.fc1{color:rgb(75,172,198);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000003px;}
.fsd{font-size:56.000003px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:60.000005px;}
.fs0{font-size:66.000004px;}
.fs9{font-size:78.000005px;}
.fsc{font-size:84.000000px;}
.fs3{font-size:90.000003px;}
.fs6{font-size:102.000000px;}
.fs4{font-size:108.000003px;}
.fsf{font-size:114.000007px;}
.fs2{font-size:120.000001px;}
.fs1{font-size:132.000007px;}
.fse{font-size:138.000001px;}
.fsa{font-size:167.999999px;}
.fsb{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y1{bottom:3.887373px;}
.y22{bottom:22.925774px;}
.y17{bottom:27.030100px;}
.y13{bottom:27.910030px;}
.y12{bottom:80.051563px;}
.y40{bottom:90.291718px;}
.y31{bottom:92.946723px;}
.y11{bottom:107.051564px;}
.y43{bottom:110.939384px;}
.yb{bottom:114.533838px;}
.y1c{bottom:128.945066px;}
.y10{bottom:134.051568px;}
.y42{bottom:135.689387px;}
.ya{bottom:141.533839px;}
.y3f{bottom:148.791720px;}
.y34{bottom:150.082073px;}
.y21{bottom:156.108653px;}
.y7{bottom:158.112098px;}
.y1b{bottom:159.995061px;}
.yf{bottom:161.051567px;}
.y30{bottom:170.152416px;}
.y3e{bottom:180.291721px;}
.y33{bottom:181.582077px;}
.y20{bottom:187.608654px;}
.y1a{bottom:191.045052px;}
.y32{bottom:213.082076px;}
.y1f{bottom:219.108655px;}
.y19{bottom:222.095052px;}
.y9{bottom:222.533848px;}
.y6{bottom:239.112101px;}
.y3d{bottom:243.291723px;}
.y2f{bottom:247.358130px;}
.y1e{bottom:250.608659px;}
.y18{bottom:253.145049px;}
.y5{bottom:267.912102px;}
.y1d{bottom:282.108658px;}
.y2c{bottom:292.136221px;}
.y38{bottom:293.527520px;}
.y3c{bottom:306.291725px;}
.y2b{bottom:323.636222px;}
.y2e{bottom:324.563845px;}
.y3b{bottom:337.791726px;}
.y4{bottom:340.407093px;}
.y8{bottom:344.969877px;}
.y2a{bottom:355.136223px;}
.y37{bottom:356.527522px;}
.y29{bottom:386.636228px;}
.y36{bottom:388.027523px;}
.y3a{bottom:400.791732px;}
.y2d{bottom:401.769560px;}
.y3{bottom:403.407095px;}
.y28{bottom:418.136226px;}
.y25{bottom:419.531394px;}
.y39{bottom:432.291731px;}
.y27{bottom:438.328339px;}
.ye{bottom:444.046647px;}
.y2{bottom:448.407096px;}
.y15{bottom:450.768595px;}
.y35{bottom:451.027528px;}
.y24{bottom:451.031398px;}
.y26{bottom:469.378335px;}
.yc{bottom:477.028940px;}
.y14{bottom:477.768599px;}
.y23{bottom:482.531397px;}
.y41{bottom:516.122835px;}
.yd{bottom:546.836395px;}
.y44{bottom:548.939052px;}
.y16{bottom:555.695198px;}
.h8{height:39.990235px;}
.h1{height:48.840003px;}
.hd{height:62.496000px;}
.h6{height:66.600002px;}
.h5{height:66.960002px;}
.hc{height:73.164003px;}
.h9{height:75.480000px;}
.h7{height:80.352003px;}
.h4{height:89.280001px;}
.h2{height:97.680005px;}
.h3{height:99.000005px;}
.he{height:102.120001px;}
.ha{height:124.992000px;}
.hb{height:133.200004px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:7.742126px;}
.x11{left:14.202756px;}
.x14{left:34.571349px;}
.x13{left:37.996065px;}
.x25{left:41.034094px;}
.x22{left:42.496563px;}
.x23{left:44.161558px;}
.x27{left:46.884074px;}
.x2f{left:59.339244px;}
.xe{left:63.364666px;}
.x2b{left:66.067918px;}
.x2d{left:69.442918px;}
.x29{left:70.930682px;}
.x1b{left:72.746241px;}
.xd{left:74.506894px;}
.x2{left:78.759059px;}
.x30{left:96.298231px;}
.x1f{left:106.987211px;}
.x2c{left:115.567919px;}
.x3{left:117.262950px;}
.x1c{left:124.930680px;}
.x28{left:144.882742px;}
.x2a{left:160.987213px;}
.x9{left:163.379509px;}
.x24{left:165.436480px;}
.x1d{left:178.930682px;}
.xc{left:187.923969px;}
.x7{left:244.763740px;}
.x8{left:266.091995px;}
.x1{left:290.534139px;}
.x6{left:298.968928px;}
.x12{left:334.301740px;}
.xf{left:389.759367px;}
.x2e{left:408.465174px;}
.xa{left:415.300558px;}
.xb{left:444.000007px;}
.x5{left:450.245546px;}
.x26{left:467.470920px;}
.x1e{left:653.607302px;}
.x10{left:759.027849px;}
.x15{left:777.552212px;}
.x17{left:820.049158px;}
.x19{left:833.852889px;}
.x18{left:837.441650px;}
.x1a{left:846.902887px;}
.x16{left:857.612867px;}
.x20{left:882.879615px;}
.x21{left:913.355854px;}
@media print{
.v1{vertical-align:-30.000001pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000040pt;}
.ls8{letter-spacing:94.666667pt;}
.ls4{letter-spacing:95.975004pt;}
.ls6{letter-spacing:95.975056pt;}
.ls9{letter-spacing:95.975064pt;}
.ls3{letter-spacing:95.987659pt;}
.ls5{letter-spacing:95.987671pt;}
.ls1{letter-spacing:96.000003pt;}
.ls2{letter-spacing:98.500003pt;}
.ws5{word-spacing:-38.400001pt;}
.ws9{word-spacing:-29.440000pt;}
.ws2{word-spacing:-20.400001pt;}
.ws4{word-spacing:-20.240001pt;}
.ws3{word-spacing:-19.200001pt;}
.ws6{word-spacing:-18.890667pt;}
.ws8{word-spacing:-17.920000pt;}
.ws7{word-spacing:-12.593778pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1520.913573pt;}
._a{margin-left:-20.347140pt;}
._7{margin-left:-16.938142pt;}
._8{margin-left:-14.280509pt;}
._9{margin-left:-12.693786pt;}
._3{margin-left:-9.082667pt;}
._4{margin-left:-5.541333pt;}
._1{margin-left:-3.872000pt;}
._2{margin-left:-2.698667pt;}
._0{margin-left:-1.760000pt;}
._5{width:635.051548pt;}
._6{width:703.237609pt;}
.fs7{font-size:42.666669pt;}
.fsd{font-size:49.777780pt;}
.fs5{font-size:53.333334pt;}
.fs8{font-size:53.333338pt;}
.fs0{font-size:58.666670pt;}
.fs9{font-size:69.333338pt;}
.fsc{font-size:74.666666pt;}
.fs3{font-size:80.000003pt;}
.fs6{font-size:90.666667pt;}
.fs4{font-size:96.000003pt;}
.fsf{font-size:101.333339pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:117.333340pt;}
.fse{font-size:122.666668pt;}
.fsa{font-size:149.333333pt;}
.fsb{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:3.455443pt;}
.y22{bottom:20.378465pt;}
.y17{bottom:24.026755pt;}
.y13{bottom:24.808916pt;}
.y12{bottom:71.156945pt;}
.y40{bottom:80.259305pt;}
.y31{bottom:82.619309pt;}
.y11{bottom:95.156946pt;}
.y43{bottom:98.612786pt;}
.yb{bottom:101.807856pt;}
.y1c{bottom:114.617836pt;}
.y10{bottom:119.156950pt;}
.y42{bottom:120.612789pt;}
.ya{bottom:125.807857pt;}
.y3f{bottom:132.259307pt;}
.y34{bottom:133.406287pt;}
.y21{bottom:138.763247pt;}
.y7{bottom:140.544087pt;}
.y1b{bottom:142.217832pt;}
.yf{bottom:143.156948pt;}
.y30{bottom:151.246592pt;}
.y3e{bottom:160.259308pt;}
.y33{bottom:161.406291pt;}
.y20{bottom:166.763248pt;}
.y1a{bottom:169.817824pt;}
.y32{bottom:189.406290pt;}
.y1f{bottom:194.763249pt;}
.y19{bottom:197.417824pt;}
.y9{bottom:197.807865pt;}
.y6{bottom:212.544090pt;}
.y3d{bottom:216.259310pt;}
.y2f{bottom:219.873894pt;}
.y1e{bottom:222.763253pt;}
.y18{bottom:225.017821pt;}
.y5{bottom:238.144090pt;}
.y1d{bottom:250.763252pt;}
.y2c{bottom:259.676641pt;}
.y38{bottom:260.913351pt;}
.y3c{bottom:272.259311pt;}
.y2b{bottom:287.676642pt;}
.y2e{bottom:288.501196pt;}
.y3b{bottom:300.259312pt;}
.y4{bottom:302.584082pt;}
.y8{bottom:306.639891pt;}
.y2a{bottom:315.676643pt;}
.y37{bottom:316.913353pt;}
.y29{bottom:343.676647pt;}
.y36{bottom:344.913354pt;}
.y3a{bottom:356.259317pt;}
.y2d{bottom:357.128498pt;}
.y3{bottom:358.584084pt;}
.y28{bottom:371.676646pt;}
.y25{bottom:372.916795pt;}
.y39{bottom:384.259316pt;}
.y27{bottom:389.625190pt;}
.ye{bottom:394.708130pt;}
.y2{bottom:398.584085pt;}
.y15{bottom:400.683196pt;}
.y35{bottom:400.913359pt;}
.y24{bottom:400.916799pt;}
.y26{bottom:417.225187pt;}
.yc{bottom:424.025724pt;}
.y14{bottom:424.683199pt;}
.y23{bottom:428.916797pt;}
.y41{bottom:458.775853pt;}
.yd{bottom:486.076795pt;}
.y44{bottom:487.945824pt;}
.y16{bottom:493.951288pt;}
.h8{height:35.546875pt;}
.h1{height:43.413336pt;}
.hd{height:55.552000pt;}
.h6{height:59.200002pt;}
.h5{height:59.520002pt;}
.hc{height:65.034669pt;}
.h9{height:67.093334pt;}
.h7{height:71.424002pt;}
.h4{height:79.360001pt;}
.h2{height:86.826671pt;}
.h3{height:88.000005pt;}
.he{height:90.773334pt;}
.ha{height:111.104000pt;}
.hb{height:118.400004pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.881890pt;}
.x11{left:12.624672pt;}
.x14{left:30.730088pt;}
.x13{left:33.774280pt;}
.x25{left:36.474750pt;}
.x22{left:37.774723pt;}
.x23{left:39.254718pt;}
.x27{left:41.674732pt;}
.x2f{left:52.745995pt;}
.xe{left:56.324148pt;}
.x2b{left:58.727038pt;}
.x2d{left:61.727038pt;}
.x29{left:63.049495pt;}
.x1b{left:64.663325pt;}
.xd{left:66.228350pt;}
.x2{left:70.008052pt;}
.x30{left:85.598428pt;}
.x1f{left:95.099743pt;}
.x2c{left:102.727039pt;}
.x3{left:104.233733pt;}
.x1c{left:111.049494pt;}
.x28{left:128.784659pt;}
.x2a{left:143.099745pt;}
.x9{left:145.226231pt;}
.x24{left:147.054649pt;}
.x1d{left:159.049495pt;}
.xc{left:167.043528pt;}
.x7{left:217.567769pt;}
.x8{left:236.526218pt;}
.x1{left:258.252568pt;}
.x6{left:265.750159pt;}
.x12{left:297.157103pt;}
.xf{left:346.452771pt;}
.x2e{left:363.080155pt;}
.xa{left:369.156052pt;}
.xb{left:394.666673pt;}
.x5{left:400.218263pt;}
.x26{left:415.529706pt;}
.x1e{left:580.984269pt;}
.x10{left:674.691422pt;}
.x15{left:691.157522pt;}
.x17{left:728.932585pt;}
.x19{left:741.202568pt;}
.x18{left:744.392578pt;}
.x1a{left:752.802566pt;}
.x16{left:762.322548pt;}
.x20{left:784.781880pt;}
.x21{left:811.871870pt;}
}




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