
    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_0706c84da0836199964c844c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_552b0f3e09fd1979b3d47d49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_d874881693c8b43e8213ade9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_726ee927b129e76583230b8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_a29bf0a12f692914b1f63129.woff2')format("woff");}.ff5{font-family:ff5;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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.021253px;}
.ls0{letter-spacing:0.021282px;}
.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;}
}
.ws1{word-spacing:-18.021275px;}
.ws4{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-2.222408px;}
._1{margin-left:-1.055586px;}
._4{width:1.048530px;}
._c{width:2.181902px;}
._12{width:3.314681px;}
._13{width:4.388369px;}
._0{width:5.710279px;}
._7{width:7.180268px;}
._5{width:8.361641px;}
._6{width:10.019597px;}
._d{width:11.030786px;}
._8{width:12.204777px;}
._9{width:13.867296px;}
._e{width:14.888013px;}
._17{width:15.896179px;}
._1a{width:16.903333px;}
._11{width:19.051009px;}
._f{width:20.761266px;}
._10{width:21.850142px;}
._a{width:23.242521px;}
._b{width:24.324396px;}
._16{width:25.886615px;}
._14{width:27.901639px;}
._15{width:29.124371px;}
._19{width:31.444927px;}
._18{width:32.713116px;}
._3{width:46.295029px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.239981px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y2a{bottom:119.459952px;}
.y6b{bottom:134.399946px;}
.y29{bottom:143.219943px;}
.y4e{bottom:158.159937px;}
.y28{bottom:166.979933px;}
.y4d{bottom:182.099927px;}
.y27{bottom:190.919924px;}
.y4c{bottom:205.859918px;}
.y26{bottom:214.679914px;}
.y4b{bottom:229.619908px;}
.y25{bottom:238.439905px;}
.y4a{bottom:253.379899px;}
.y24{bottom:262.199895px;}
.y6a{bottom:268.499893px;}
.y49{bottom:277.319889px;}
.y23{bottom:286.139886px;}
.y69{bottom:292.259883px;}
.y48{bottom:301.079880px;}
.y22{bottom:309.899876px;}
.y68{bottom:316.019874px;}
.y47{bottom:324.839870px;}
.y21{bottom:333.659867px;}
.y67{bottom:339.779864px;}
.y46{bottom:348.599861px;}
.y20{bottom:357.419857px;}
.y66{bottom:363.719855px;}
.y45{bottom:372.539851px;}
.y1f{bottom:381.359847px;}
.y65{bottom:387.479845px;}
.y44{bottom:396.299841px;}
.y1e{bottom:405.119838px;}
.y64{bottom:411.239836px;}
.y43{bottom:420.059832px;}
.y1d{bottom:428.879828px;}
.y63{bottom:434.999826px;}
.y42{bottom:443.819822px;}
.y7b{bottom:454.079818px;}
.y62{bottom:458.939816px;}
.y41{bottom:467.579813px;}
.y1c{bottom:467.759813px;}
.y7a{bottom:474.779810px;}
.y61{bottom:482.699807px;}
.y1b{bottom:491.519803px;}
.y79{bottom:504.479798px;}
.y60{bottom:506.459797px;}
.y1a{bottom:515.279794px;}
.y5f{bottom:530.219788px;}
.y78{bottom:534.179786px;}
.y19{bottom:539.039784px;}
.y5e{bottom:554.159778px;}
.y77{bottom:554.879778px;}
.y40{bottom:562.799775px;}
.y18{bottom:562.979775px;}
.y76{bottom:575.579770px;}
.y5d{bottom:577.919769px;}
.y17{bottom:586.739765px;}
.y74{bottom:596.279761px;}
.y5c{bottom:601.679759px;}
.y75{bottom:604.559758px;}
.y16{bottom:610.499756px;}
.y3f{bottom:625.439750px;}
.y73{bottom:631.739747px;}
.y15{bottom:634.259746px;}
.y3e{bottom:649.199740px;}
.y72{bottom:652.619739px;}
.y14{bottom:658.199737px;}
.y3d{bottom:673.139731px;}
.y71{bottom:673.319731px;}
.y13{bottom:681.959727px;}
.y70{bottom:694.019722px;}
.y3c{bottom:696.899721px;}
.y12{bottom:705.719718px;}
.y3b{bottom:720.659712px;}
.y11{bottom:729.479708px;}
.y3a{bottom:744.419702px;}
.y6f{bottom:750.359700px;}
.y10{bottom:753.239699px;}
.y39{bottom:768.359693px;}
.y6e{bottom:771.059692px;}
.yf{bottom:777.179689px;}
.y5b{bottom:783.299687px;}
.y38{bottom:792.119683px;}
.ye{bottom:800.939680px;}
.y5a{bottom:807.059677px;}
.y6d{bottom:809.759676px;}
.y37{bottom:815.879674px;}
.yd{bottom:824.699670px;}
.y59{bottom:830.819668px;}
.y36{bottom:839.639664px;}
.y6c{bottom:848.459661px;}
.y58{bottom:854.759658px;}
.yc{bottom:863.579655px;}
.y57{bottom:878.519649px;}
.y35{bottom:887.339645px;}
.yb{bottom:902.279639px;}
.y34{bottom:911.099636px;}
.y56{bottom:926.039630px;}
.y33{bottom:934.859626px;}
.ya{bottom:941.159624px;}
.y55{bottom:949.979620px;}
.y32{bottom:958.799616px;}
.y54{bottom:973.739611px;}
.y9{bottom:979.859608px;}
.y31{bottom:982.559607px;}
.y53{bottom:997.499601px;}
.y30{bottom:1006.319597px;}
.y8{bottom:1018.379593px;}
.y52{bottom:1021.259591px;}
.y2f{bottom:1030.079588px;}
.y51{bottom:1045.199582px;}
.y2e{bottom:1054.019578px;}
.y7{bottom:1057.619577px;}
.y50{bottom:1068.959572px;}
.y2d{bottom:1077.779569px;}
.y6{bottom:1078.499569px;}
.y4f{bottom:1092.719563px;}
.y5{bottom:1099.199560px;}
.y2c{bottom:1116.479553px;}
.y4{bottom:1119.899552px;}
.y2b{bottom:1140.419544px;}
.y3{bottom:1140.599544px;}
.h4{height:33.189107px;}
.h1{height:44.149201px;}
.h2{height:49.535980px;}
.h3{height:49.823980px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620091px;}
.x8{left:180.719331px;}
.x4{left:280.619565px;}
.x3{left:446.399131px;}
.x9{left:448.379821px;}
.xa{left:456.479817px;}
.x7{left:490.499928px;}
.x6{left:637.919840px;}
.x1{left:757.079697px;}
.x5{left:765.359705px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.018891pt;}
.ls0{letter-spacing:0.018917pt;}
.ws1{word-spacing:-16.018911pt;}
.ws4{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-1.975474pt;}
._1{margin-left:-0.938298pt;}
._4{width:0.932026pt;}
._c{width:1.939469pt;}
._12{width:2.946383pt;}
._13{width:3.900773pt;}
._0{width:5.075803pt;}
._7{width:6.382461pt;}
._5{width:7.432570pt;}
._6{width:8.906309pt;}
._d{width:9.805143pt;}
._8{width:10.848690pt;}
._9{width:12.326485pt;}
._e{width:13.233789pt;}
._17{width:14.129936pt;}
._1a{width:15.025185pt;}
._11{width:16.934230pt;}
._f{width:18.454458pt;}
._10{width:19.422349pt;}
._a{width:20.660018pt;}
._b{width:21.621686pt;}
._16{width:23.010324pt;}
._14{width:24.801457pt;}
._15{width:25.888330pt;}
._19{width:27.951046pt;}
._18{width:29.078326pt;}
._3{width:41.151137pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y2a{bottom:106.186624pt;}
.y6b{bottom:119.466619pt;}
.y29{bottom:127.306616pt;}
.y4e{bottom:140.586610pt;}
.y28{bottom:148.426607pt;}
.y4d{bottom:161.866602pt;}
.y27{bottom:169.706599pt;}
.y4c{bottom:182.986593pt;}
.y26{bottom:190.826590pt;}
.y4b{bottom:204.106585pt;}
.y25{bottom:211.946582pt;}
.y4a{bottom:225.226577pt;}
.y24{bottom:233.066573pt;}
.y6a{bottom:238.666571pt;}
.y49{bottom:246.506568pt;}
.y23{bottom:254.346565pt;}
.y69{bottom:259.786563pt;}
.y48{bottom:267.626560pt;}
.y22{bottom:275.466556pt;}
.y68{bottom:280.906554pt;}
.y47{bottom:288.746551pt;}
.y21{bottom:296.586548pt;}
.y67{bottom:302.026546pt;}
.y46{bottom:309.866543pt;}
.y20{bottom:317.706540pt;}
.y66{bottom:323.306537pt;}
.y45{bottom:331.146534pt;}
.y1f{bottom:338.986531pt;}
.y65{bottom:344.426529pt;}
.y44{bottom:352.266526pt;}
.y1e{bottom:360.106523pt;}
.y64{bottom:365.546520pt;}
.y43{bottom:373.386517pt;}
.y1d{bottom:381.226514pt;}
.y63{bottom:386.666512pt;}
.y42{bottom:394.506509pt;}
.y7b{bottom:403.626505pt;}
.y62{bottom:407.946503pt;}
.y41{bottom:415.626500pt;}
.y1c{bottom:415.786500pt;}
.y7a{bottom:422.026498pt;}
.y61{bottom:429.066495pt;}
.y1b{bottom:436.906492pt;}
.y79{bottom:448.426487pt;}
.y60{bottom:450.186487pt;}
.y1a{bottom:458.026483pt;}
.y5f{bottom:471.306478pt;}
.y78{bottom:474.826477pt;}
.y19{bottom:479.146475pt;}
.y5e{bottom:492.586470pt;}
.y77{bottom:493.226469pt;}
.y40{bottom:500.266467pt;}
.y18{bottom:500.426466pt;}
.y76{bottom:511.626462pt;}
.y5d{bottom:513.706461pt;}
.y17{bottom:521.546458pt;}
.y74{bottom:530.026455pt;}
.y5c{bottom:534.826453pt;}
.y75{bottom:537.386452pt;}
.y16{bottom:542.666450pt;}
.y3f{bottom:555.946444pt;}
.y73{bottom:561.546442pt;}
.y15{bottom:563.786441pt;}
.y3e{bottom:577.066436pt;}
.y72{bottom:580.106435pt;}
.y14{bottom:585.066433pt;}
.y3d{bottom:598.346427pt;}
.y71{bottom:598.506427pt;}
.y13{bottom:606.186424pt;}
.y70{bottom:616.906420pt;}
.y3c{bottom:619.466419pt;}
.y12{bottom:627.306416pt;}
.y3b{bottom:640.586410pt;}
.y11{bottom:648.426407pt;}
.y3a{bottom:661.706402pt;}
.y6f{bottom:666.986400pt;}
.y10{bottom:669.546399pt;}
.y39{bottom:682.986393pt;}
.y6e{bottom:685.386393pt;}
.yf{bottom:690.826390pt;}
.y5b{bottom:696.266388pt;}
.y38{bottom:704.106385pt;}
.ye{bottom:711.946382pt;}
.y5a{bottom:717.386380pt;}
.y6d{bottom:719.786379pt;}
.y37{bottom:725.226377pt;}
.yd{bottom:733.066373pt;}
.y59{bottom:738.506371pt;}
.y36{bottom:746.346368pt;}
.y6c{bottom:754.186365pt;}
.y58{bottom:759.786363pt;}
.yc{bottom:767.626360pt;}
.y57{bottom:780.906354pt;}
.y35{bottom:788.746351pt;}
.yb{bottom:802.026346pt;}
.y34{bottom:809.866343pt;}
.y56{bottom:823.146337pt;}
.y33{bottom:830.986334pt;}
.ya{bottom:836.586332pt;}
.y55{bottom:844.426329pt;}
.y32{bottom:852.266326pt;}
.y54{bottom:865.546320pt;}
.y9{bottom:870.986318pt;}
.y31{bottom:873.386317pt;}
.y53{bottom:886.666312pt;}
.y30{bottom:894.506309pt;}
.y8{bottom:905.226305pt;}
.y52{bottom:907.786304pt;}
.y2f{bottom:915.626300pt;}
.y51{bottom:929.066295pt;}
.y2e{bottom:936.906292pt;}
.y7{bottom:940.106291pt;}
.y50{bottom:950.186287pt;}
.y2d{bottom:958.026283pt;}
.y6{bottom:958.666283pt;}
.y4f{bottom:971.306278pt;}
.y5{bottom:977.066276pt;}
.y2c{bottom:992.426270pt;}
.y4{bottom:995.466268pt;}
.y2b{bottom:1013.706261pt;}
.y3{bottom:1013.866261pt;}
.h4{height:29.501428pt;}
.h1{height:39.243734pt;}
.h2{height:44.031982pt;}
.h3{height:44.287982pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440081pt;}
.x8{left:160.639405pt;}
.x4{left:249.439613pt;}
.x3{left:396.799227pt;}
.x9{left:398.559841pt;}
.xa{left:405.759838pt;}
.x7{left:435.999936pt;}
.x6{left:567.039858pt;}
.x1{left:672.959731pt;}
.x5{left:680.319738pt;}
}




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