
    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_5e99bfbd96503645606d5c93.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_5214575c2c23136d21e97f65.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_68b7a0634138b11ea6925900.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906738;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_46703c968140d9e194ea96c1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_867682d6a721fadf1e66b6b2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.v1{vertical-align:-31.499999px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.999999px;}
.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;}
}
.ws3{word-spacing:-101.249996px;}
.ws5{word-spacing:-89.999996px;}
.ws0{word-spacing:-44.999998px;}
.ws2{word-spacing:-25.312499px;}
.ws4{word-spacing:-22.499999px;}
.ws6{word-spacing:-16.874999px;}
.ws7{word-spacing:-13.117499px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-19.951169px;}
._19{margin-left:-15.915895px;}
._17{margin-left:-11.601545px;}
._2{margin-left:-9.008772px;}
._4{margin-left:-7.412478px;}
._6{margin-left:-6.080949px;}
._1{margin-left:-4.965821px;}
._3{margin-left:-3.859495px;}
._16{margin-left:-2.793788px;}
._9{margin-left:-1.625993px;}
._d{width:1.999991px;}
._5{width:3.757321px;}
._f{width:5.249986px;}
._7{width:6.750002px;}
._a{width:8.249974px;}
._10{width:9.716379px;}
._1a{width:11.185695px;}
._e{width:12.214292px;}
._b{width:14.192310px;}
._12{width:15.518220px;}
._15{width:16.732764px;}
._18{width:18.449025px;}
._c{width:19.800008px;}
._11{width:21.115382px;}
._1b{width:23.999983px;}
._14{width:25.000006px;}
._13{width:27.409104px;}
._8{width:29.000001px;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(0,0,238);}
.fc1{color:rgb(255,135,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:52.469997px;}
.fs3{font-size:67.499997px;}
.fs1{font-size:89.999996px;}
.fs2{font-size:101.249996px;}
.fs5{font-size:127.484995px;}
.fs0{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y62{bottom:5.625000px;}
.y35{bottom:29.249999px;}
.y61{bottom:32.624999px;}
.y50{bottom:51.749998px;}
.y34{bottom:56.249998px;}
.y70{bottom:66.374997px;}
.y82{bottom:76.499997px;}
.y4f{bottom:78.749997px;}
.y60{bottom:79.874997px;}
.y33{bottom:83.249997px;}
.y4e{bottom:105.749996px;}
.y1{bottom:108.000045px;}
.y6f{bottom:113.624995px;}
.y5f{bottom:127.124995px;}
.y32{bottom:130.499995px;}
.y4d{bottom:132.749994px;}
.y5{bottom:137.249994px;}
.y6e{bottom:140.624994px;}
.y31{bottom:157.499993px;}
.y5e{bottom:174.374993px;}
.y4c{bottom:178.874993px;}
.y30{bottom:184.499992px;}
.y6d{bottom:187.874992px;}
.y1f{bottom:196.874992px;}
.y4b{bottom:205.874991px;}
.y2f{bottom:211.499991px;}
.y81{bottom:212.624991px;}
.y5d{bottom:221.624991px;}
.y93{bottom:228.374990px;}
.y4a{bottom:232.874990px;}
.y6c{bottom:235.124990px;}
.y80{bottom:241.874990px;}
.y1e{bottom:244.124990px;}
.y5c{bottom:248.624990px;}
.y92{bottom:254.249989px;}
.y2e{bottom:256.499989px;}
.y7f{bottom:268.874989px;}
.y5b{bottom:275.624989px;}
.y49{bottom:277.874988px;}
.y91{bottom:280.124988px;}
.y6b{bottom:282.374988px;}
.y2d{bottom:283.499988px;}
.y1d{bottom:291.374988px;}
.y5a{bottom:302.624987px;}
.y48{bottom:304.874987px;}
.y90{bottom:305.999987px;}
.y6a{bottom:309.374987px;}
.y2c{bottom:310.499987px;}
.y47{bottom:331.874986px;}
.y7e{bottom:336.374986px;}
.y1c{bottom:338.624986px;}
.y59{bottom:349.874985px;}
.y69{bottom:356.624985px;}
.y2b{bottom:357.749985px;}
.y7d{bottom:363.374985px;}
.y46{bottom:376.874984px;}
.y68{bottom:383.624984px;}
.y1b{bottom:384.749984px;}
.y11{bottom:392.624984px;}
.y45{bottom:403.874983px;}
.y7c{bottom:404.999983px;}
.y8f{bottom:409.499983px;}
.y67{bottom:410.624983px;}
.y2a{bottom:411.749983px;}
.y44{bottom:430.874982px;}
.y1a{bottom:431.999982px;}
.y7b{bottom:434.249982px;}
.y8e{bottom:435.374982px;}
.y29{bottom:438.749982px;}
.y10{bottom:439.874982px;}
.y43{bottom:457.874981px;}
.y7a{bottom:461.249981px;}
.y19{bottom:479.249980px;}
.y58{bottom:484.874980px;}
.y28{bottom:485.999980px;}
.yf{bottom:487.124980px;}
.y79{bottom:502.874979px;}
.y42{bottom:505.124979px;}
.y27{bottom:512.999979px;}
.y12{bottom:521.999978px;}
.y18{bottom:525.374978px;}
.y41{bottom:532.124978px;}
.y8d{bottom:538.874978px;}
.y26{bottom:539.999977px;}
.y40{bottom:559.124977px;}
.y8c{bottom:564.749976px;}
.y25{bottom:566.999976px;}
.y17{bottom:572.624976px;}
.y3f{bottom:586.124976px;}
.y8b{bottom:590.624975px;}
.ye{bottom:593.999975px;}
.y24{bottom:611.999975px;}
.y3e{bottom:613.124974px;}
.y8a{bottom:616.499974px;}
.y16{bottom:619.874974px;}
.yd{bottom:620.999974px;}
.y78{bottom:627.749974px;}
.y23{bottom:638.999973px;}
.y89{bottom:642.374973px;}
.y56{bottom:646.874973px;}
.yc{bottom:647.999973px;}
.y3d{bottom:660.374972px;}
.y22{bottom:665.999972px;}
.y15{bottom:667.124972px;}
.y77{bottom:668.249972px;}
.y55{bottom:673.874972px;}
.yb{bottom:674.999972px;}
.y4{bottom:683.999972px;}
.y21{bottom:692.999971px;}
.y76{bottom:695.249971px;}
.y54{bottom:700.874971px;}
.y3c{bottom:705.374971px;}
.y73{bottom:707.624971px;}
.y14{bottom:713.249970px;}
.y57{bottom:714.374970px;}
.y88{bottom:715.499970px;}
.y66{bottom:721.124970px;}
.y53{bottom:727.874970px;}
.y3b{bottom:732.374969px;}
.y72{bottom:734.624969px;}
.y75{bottom:735.749969px;}
.y20{bottom:737.999969px;}
.ya{bottom:742.499969px;}
.y52{bottom:754.874969px;}
.y13{bottom:760.499968px;}
.y71{bottom:761.624968px;}
.y74{bottom:762.749968px;}
.y3{bottom:768.374968px;}
.y9{bottom:769.499968px;}
.y3a{bottom:777.374968px;}
.y65{bottom:795.374967px;}
.y8{bottom:796.499967px;}
.y39{bottom:804.374966px;}
.y87{bottom:811.124966px;}
.y2{bottom:822.374966px;}
.y38{bottom:831.374965px;}
.y86{bottom:838.124965px;}
.y64{bottom:849.374965px;}
.y51{bottom:853.874964px;}
.y85{bottom:872.999964px;}
.y37{bottom:876.374963px;}
.y7{bottom:883.124963px;}
.y63{bottom:896.624963px;}
.y84{bottom:921.374962px;}
.y36{bottom:923.624962px;}
.y6{bottom:950.624960px;}
.y83{bottom:956.249960px;}
.ha{height:36.944207px;}
.h9{height:47.526853px;}
.h4{height:62.446286px;}
.h6{height:63.369138px;}
.h5{height:71.290280px;}
.h8{height:73.476559px;}
.h7{height:82.661129px;}
.hb{height:88.455165px;}
.h3{height:126.738276px;}
.h2{height:971.999960px;}
.h1{height:1188.000000px;}
.h0{height:2250.000000px;}
.w2{width:701.999971px;}
.w1{width:918.000000px;}
.w0{width:1414.500000px;}
.x0{left:0.000000px;}
.x13{left:7.488281px;}
.x9{left:8.578125px;}
.x1f{left:13.535156px;}
.xb{left:29.531249px;}
.x8{left:48.287107px;}
.xd{left:51.064451px;}
.xc{left:58.605466px;}
.x20{left:71.894528px;}
.x1b{left:89.718746px;}
.x12{left:106.101558px;}
.x1{left:107.999996px;}
.x1a{left:117.281245px;}
.x18{left:124.136714px;}
.x1d{left:126.035151px;}
.x10{left:163.406243px;}
.x11{left:173.548821px;}
.x2{left:180.984367px;}
.x1c{left:194.150388px;}
.x17{left:196.646482px;}
.x1e{left:209.724606px;}
.x3{left:214.769522px;}
.x14{left:224.736324px;}
.xe{left:226.019522px;}
.x6{left:232.769522px;}
.xf{left:246.304677px;}
.x4{left:249.416011px;}
.x7{left:267.275385px;}
.x19{left:278.472645px;}
.xa{left:303.503894px;}
.x5{left:313.734362px;}
.x15{left:345.374986px;}
.x16{left:349.101548px;}
@media print{
.v1{vertical-align:-27.999999pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.666666pt;}
.ws3{word-spacing:-89.999996pt;}
.ws5{word-spacing:-79.999997pt;}
.ws0{word-spacing:-39.999998pt;}
.ws2{word-spacing:-22.499999pt;}
.ws4{word-spacing:-19.999999pt;}
.ws6{word-spacing:-14.999999pt;}
.ws7{word-spacing:-11.659999pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-17.734372pt;}
._19{margin-left:-14.147462pt;}
._17{margin-left:-10.312484pt;}
._2{margin-left:-8.007797pt;}
._4{margin-left:-6.588869pt;}
._6{margin-left:-5.405288pt;}
._1{margin-left:-4.414063pt;}
._3{margin-left:-3.430662pt;}
._16{margin-left:-2.483367pt;}
._9{margin-left:-1.445327pt;}
._d{width:1.777769pt;}
._5{width:3.339841pt;}
._f{width:4.666655pt;}
._7{width:6.000002pt;}
._a{width:7.333310pt;}
._10{width:8.636781pt;}
._1a{width:9.942840pt;}
._e{width:10.857148pt;}
._b{width:12.615387pt;}
._12{width:13.793974pt;}
._15{width:14.873568pt;}
._18{width:16.399134pt;}
._c{width:17.600007pt;}
._11{width:18.769228pt;}
._1b{width:21.333319pt;}
._14{width:22.222227pt;}
._13{width:24.363648pt;}
._8{width:25.777779pt;}
.fs4{font-size:46.639997pt;}
.fs3{font-size:59.999998pt;}
.fs1{font-size:79.999997pt;}
.fs2{font-size:89.999996pt;}
.fs5{font-size:113.319995pt;}
.fs0{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:5.000000pt;}
.y35{bottom:25.999999pt;}
.y61{bottom:28.999999pt;}
.y50{bottom:45.999998pt;}
.y34{bottom:49.999998pt;}
.y70{bottom:58.999998pt;}
.y82{bottom:67.999997pt;}
.y4f{bottom:69.999997pt;}
.y60{bottom:70.999997pt;}
.y33{bottom:73.999997pt;}
.y4e{bottom:93.999996pt;}
.y1{bottom:96.000040pt;}
.y6f{bottom:100.999996pt;}
.y5f{bottom:112.999995pt;}
.y32{bottom:115.999995pt;}
.y4d{bottom:117.999995pt;}
.y5{bottom:121.999995pt;}
.y6e{bottom:124.999995pt;}
.y31{bottom:139.999994pt;}
.y5e{bottom:154.999994pt;}
.y4c{bottom:158.999993pt;}
.y30{bottom:163.999993pt;}
.y6d{bottom:166.999993pt;}
.y1f{bottom:174.999993pt;}
.y4b{bottom:182.999992pt;}
.y2f{bottom:187.999992pt;}
.y81{bottom:188.999992pt;}
.y5d{bottom:196.999992pt;}
.y93{bottom:202.999992pt;}
.y4a{bottom:206.999991pt;}
.y6c{bottom:208.999991pt;}
.y80{bottom:214.999991pt;}
.y1e{bottom:216.999991pt;}
.y5c{bottom:220.999991pt;}
.y92{bottom:225.999991pt;}
.y2e{bottom:227.999990pt;}
.y7f{bottom:238.999990pt;}
.y5b{bottom:244.999990pt;}
.y49{bottom:246.999990pt;}
.y91{bottom:248.999990pt;}
.y6b{bottom:250.999990pt;}
.y2d{bottom:251.999989pt;}
.y1d{bottom:258.999989pt;}
.y5a{bottom:268.999989pt;}
.y48{bottom:270.999989pt;}
.y90{bottom:271.999989pt;}
.y6a{bottom:274.999989pt;}
.y2c{bottom:275.999988pt;}
.y47{bottom:294.999988pt;}
.y7e{bottom:298.999988pt;}
.y1c{bottom:300.999987pt;}
.y59{bottom:310.999987pt;}
.y69{bottom:316.999987pt;}
.y2b{bottom:317.999987pt;}
.y7d{bottom:322.999987pt;}
.y46{bottom:334.999986pt;}
.y68{bottom:340.999986pt;}
.y1b{bottom:341.999986pt;}
.y11{bottom:348.999985pt;}
.y45{bottom:358.999985pt;}
.y7c{bottom:359.999985pt;}
.y8f{bottom:363.999985pt;}
.y67{bottom:364.999985pt;}
.y2a{bottom:365.999985pt;}
.y44{bottom:382.999984pt;}
.y1a{bottom:383.999984pt;}
.y7b{bottom:385.999984pt;}
.y8e{bottom:386.999984pt;}
.y29{bottom:389.999984pt;}
.y10{bottom:390.999984pt;}
.y43{bottom:406.999983pt;}
.y7a{bottom:409.999983pt;}
.y19{bottom:425.999982pt;}
.y58{bottom:430.999982pt;}
.y28{bottom:431.999982pt;}
.yf{bottom:432.999982pt;}
.y79{bottom:446.999981pt;}
.y42{bottom:448.999981pt;}
.y27{bottom:455.999981pt;}
.y12{bottom:463.999981pt;}
.y18{bottom:466.999981pt;}
.y41{bottom:472.999980pt;}
.y8d{bottom:478.999980pt;}
.y26{bottom:479.999980pt;}
.y40{bottom:496.999979pt;}
.y8c{bottom:501.999979pt;}
.y25{bottom:503.999979pt;}
.y17{bottom:508.999979pt;}
.y3f{bottom:520.999978pt;}
.y8b{bottom:524.999978pt;}
.ye{bottom:527.999978pt;}
.y24{bottom:543.999977pt;}
.y3e{bottom:544.999977pt;}
.y8a{bottom:547.999977pt;}
.y16{bottom:550.999977pt;}
.yd{bottom:551.999977pt;}
.y78{bottom:557.999977pt;}
.y23{bottom:567.999976pt;}
.y89{bottom:570.999976pt;}
.y56{bottom:574.999976pt;}
.yc{bottom:575.999976pt;}
.y3d{bottom:586.999976pt;}
.y22{bottom:591.999975pt;}
.y15{bottom:592.999975pt;}
.y77{bottom:593.999975pt;}
.y55{bottom:598.999975pt;}
.yb{bottom:599.999975pt;}
.y4{bottom:607.999975pt;}
.y21{bottom:615.999974pt;}
.y76{bottom:617.999974pt;}
.y54{bottom:622.999974pt;}
.y3c{bottom:626.999974pt;}
.y73{bottom:628.999974pt;}
.y14{bottom:633.999974pt;}
.y57{bottom:634.999974pt;}
.y88{bottom:635.999974pt;}
.y66{bottom:640.999973pt;}
.y53{bottom:646.999973pt;}
.y3b{bottom:650.999973pt;}
.y72{bottom:652.999973pt;}
.y75{bottom:653.999973pt;}
.y20{bottom:655.999973pt;}
.ya{bottom:659.999973pt;}
.y52{bottom:670.999972pt;}
.y13{bottom:675.999972pt;}
.y71{bottom:676.999972pt;}
.y74{bottom:677.999972pt;}
.y3{bottom:682.999972pt;}
.y9{bottom:683.999972pt;}
.y3a{bottom:690.999971pt;}
.y65{bottom:706.999971pt;}
.y8{bottom:707.999971pt;}
.y39{bottom:714.999970pt;}
.y87{bottom:720.999970pt;}
.y2{bottom:730.999970pt;}
.y38{bottom:738.999969pt;}
.y86{bottom:744.999969pt;}
.y64{bottom:754.999969pt;}
.y51{bottom:758.999968pt;}
.y85{bottom:775.999968pt;}
.y37{bottom:778.999968pt;}
.y7{bottom:784.999967pt;}
.y63{bottom:796.999967pt;}
.y84{bottom:818.999966pt;}
.y36{bottom:820.999966pt;}
.y6{bottom:844.999965pt;}
.y83{bottom:849.999965pt;}
.ha{height:32.839295pt;}
.h9{height:42.246092pt;}
.h4{height:55.507810pt;}
.h6{height:56.328123pt;}
.h5{height:63.369138pt;}
.h8{height:65.312497pt;}
.h7{height:73.476559pt;}
.hb{height:78.626813pt;}
.h3{height:112.656245pt;}
.h2{height:863.999964pt;}
.h1{height:1056.000000pt;}
.h0{height:2000.000000pt;}
.w2{width:623.999974pt;}
.w1{width:816.000000pt;}
.w0{width:1257.333333pt;}
.x0{left:0.000000pt;}
.x13{left:6.656250pt;}
.x9{left:7.625000pt;}
.x1f{left:12.031249pt;}
.xb{left:26.249999pt;}
.x8{left:42.921873pt;}
.xd{left:45.390623pt;}
.xc{left:52.093748pt;}
.x20{left:63.906247pt;}
.x1b{left:79.749997pt;}
.x12{left:94.312496pt;}
.x1{left:95.999996pt;}
.x1a{left:104.249996pt;}
.x18{left:110.343745pt;}
.x1d{left:112.031245pt;}
.x10{left:145.249994pt;}
.x11{left:154.265619pt;}
.x2{left:160.874993pt;}
.x1c{left:172.578123pt;}
.x17{left:174.796873pt;}
.x1e{left:186.421872pt;}
.x3{left:190.906242pt;}
.x14{left:199.765622pt;}
.xe{left:200.906242pt;}
.x6{left:206.906241pt;}
.xf{left:218.937491pt;}
.x4{left:221.703121pt;}
.x7{left:237.578120pt;}
.x19{left:247.531240pt;}
.xa{left:269.781239pt;}
.x5{left:278.874988pt;}
.x15{left:306.999987pt;}
.x16{left:310.312487pt;}
}




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