
    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_c911989a7c4ddc87160b2a31.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0579230fd54f94d11f5a1944.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_56a025dcccc6661c6c7e143c.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
.v1{vertical-align:28.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.112800px;}
.ls0{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.168000px;}
.ls4{letter-spacing:0.204000px;}
.ls5{letter-spacing:72.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-30.000000px;}
.ws3{word-spacing:-28.800000px;}
.ws2{word-spacing:-27.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.400000px;}
.ws7{word-spacing:-10.500000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-1474.608000px;}
._1d{margin-left:-1355.040000px;}
._19{margin-left:-1158.588000px;}
._1b{margin-left:-993.468000px;}
._1{margin-left:-11.040000px;}
._5{margin-left:-9.324000px;}
._3{margin-left:-8.190000px;}
._6{margin-left:-6.204000px;}
._0{margin-left:-4.200000px;}
._4{margin-left:-3.024000px;}
._2{margin-left:-1.572000px;}
._8{width:1.044000px;}
._7{width:2.232000px;}
._b{width:72.000000px;}
._15{width:86.412000px;}
._10{width:118.344000px;}
._c{width:126.120000px;}
._e{width:174.816000px;}
._13{width:178.680000px;}
._14{width:194.988000px;}
._d{width:216.036000px;}
._f{width:222.024000px;}
._a{width:230.592000px;}
._12{width:253.908000px;}
._9{width:263.251200px;}
._11{width:922.494000px;}
._1c{width:964.140000px;}
._1a{width:1129.140000px;}
._1e{width:1325.940000px;}
._17{width:1445.340000px;}
._18{width:1733.844000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:57.600000px;}
.fsb{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:115.200000px;}
.fs0{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y25{bottom:67.591500px;}
.y50{bottom:108.916500px;}
.y24{bottom:125.641500px;}
.y82{bottom:125.941500px;}
.y4f{bottom:126.241500px;}
.y4e{bottom:143.566500px;}
.y23{bottom:144.616500px;}
.y81{bottom:146.641500px;}
.y98{bottom:160.891500px;}
.y22{bottom:163.591500px;}
.y80{bottom:167.341500px;}
.y97{bottom:178.216500px;}
.y21{bottom:182.566500px;}
.y4d{bottom:184.591500px;}
.y7f{bottom:188.041500px;}
.y96{bottom:195.541500px;}
.y20{bottom:201.541500px;}
.y4c{bottom:205.291500px;}
.y7e{bottom:208.741500px;}
.y1f{bottom:220.516500px;}
.y4b{bottom:225.991500px;}
.y7d{bottom:229.441500px;}
.y95{bottom:230.191500px;}
.y1e{bottom:239.491500px;}
.y4a{bottom:246.691500px;}
.y94{bottom:247.516500px;}
.y7c{bottom:250.141500px;}
.y49{bottom:267.391500px;}
.y7b{bottom:270.841500px;}
.y1d{bottom:279.466500px;}
.y93{bottom:282.166500px;}
.y48{bottom:288.091500px;}
.y7a{bottom:291.541500px;}
.y1c{bottom:300.166500px;}
.y47{bottom:308.791500px;}
.y79{bottom:312.241500px;}
.y92{bottom:316.816500px;}
.y1b{bottom:320.866500px;}
.y46{bottom:329.491500px;}
.y78{bottom:332.941500px;}
.y91{bottom:334.141500px;}
.y1a{bottom:341.566500px;}
.y45{bottom:350.191500px;}
.y90{bottom:351.466500px;}
.y77{bottom:353.641500px;}
.y19{bottom:362.266500px;}
.y8f{bottom:368.791500px;}
.y44{bottom:370.891500px;}
.y76{bottom:374.341500px;}
.y18{bottom:382.966500px;}
.y8e{bottom:386.116500px;}
.y43{bottom:391.591500px;}
.y83{bottom:395.041500px;}
.y8d{bottom:403.441500px;}
.y17{bottom:403.666500px;}
.y42{bottom:412.291500px;}
.y75{bottom:415.741500px;}
.y8c{bottom:420.766500px;}
.y16{bottom:424.366500px;}
.y41{bottom:432.991500px;}
.y74{bottom:436.441500px;}
.y8b{bottom:438.091500px;}
.y40{bottom:453.691500px;}
.y8a{bottom:455.416500px;}
.y73{bottom:457.141500px;}
.y15{bottom:465.766500px;}
.y89{bottom:472.741500px;}
.y3f{bottom:474.391500px;}
.y72{bottom:477.841500px;}
.y14{bottom:486.466500px;}
.y88{bottom:490.066500px;}
.y3e{bottom:495.091500px;}
.y71{bottom:498.541500px;}
.y13{bottom:507.166500px;}
.y87{bottom:507.391500px;}
.y3d{bottom:515.791500px;}
.y70{bottom:519.241500px;}
.y12{bottom:527.866500px;}
.y3c{bottom:536.491500px;}
.y6f{bottom:539.941500px;}
.y86{bottom:542.041500px;}
.y11{bottom:548.566500px;}
.y3b{bottom:557.191500px;}
.y6e{bottom:560.641500px;}
.y10{bottom:569.266500px;}
.y85{bottom:576.691500px;}
.y3a{bottom:577.891500px;}
.y6d{bottom:581.341500px;}
.yf{bottom:589.966500px;}
.y39{bottom:598.591500px;}
.y6c{bottom:602.041500px;}
.y84{bottom:611.341500px;}
.y38{bottom:619.291500px;}
.y6b{bottom:622.741500px;}
.y37{bottom:639.991500px;}
.y6a{bottom:643.441500px;}
.y36{bottom:660.691500px;}
.y69{bottom:664.141500px;}
.y68{bottom:684.841500px;}
.y35{bottom:702.091500px;}
.y67{bottom:705.541500px;}
.y66{bottom:726.241500px;}
.ye{bottom:734.866500px;}
.y34{bottom:743.491500px;}
.y65{bottom:746.941500px;}
.yd{bottom:755.566500px;}
.y33{bottom:764.191500px;}
.y64{bottom:767.641500px;}
.yc{bottom:776.266500px;}
.y32{bottom:784.891500px;}
.y63{bottom:788.341500px;}
.y31{bottom:805.591500px;}
.y62{bottom:809.041500px;}
.yb{bottom:817.666500px;}
.y30{bottom:826.291500px;}
.y61{bottom:829.741500px;}
.y2f{bottom:846.991500px;}
.y60{bottom:850.441500px;}
.ya{bottom:859.666500px;}
.y2e{bottom:867.691500px;}
.y5f{bottom:871.141500px;}
.y2d{bottom:888.391500px;}
.y5e{bottom:891.841500px;}
.y9{bottom:902.566500px;}
.y2c{bottom:909.091500px;}
.y5d{bottom:912.541500px;}
.y2b{bottom:929.791500px;}
.y5c{bottom:933.241500px;}
.y8{bottom:939.016500px;}
.y2a{bottom:950.491500px;}
.y5b{bottom:953.941500px;}
.y5a{bottom:974.641500px;}
.y7{bottom:987.166500px;}
.y59{bottom:995.341500px;}
.y58{bottom:1016.041500px;}
.y6{bottom:1023.316500px;}
.y57{bottom:1036.741500px;}
.y5{bottom:1040.416500px;}
.y29{bottom:1053.991500px;}
.y56{bottom:1057.441500px;}
.y4{bottom:1069.516500px;}
.y28{bottom:1074.691500px;}
.y55{bottom:1078.141500px;}
.y54{bottom:1098.841500px;}
.y27{bottom:1116.091500px;}
.y53{bottom:1119.541500px;}
.y3{bottom:1122.241500px;}
.y52{bottom:1140.241500px;}
.y2{bottom:1149.691500px;}
.y26{bottom:1158.091500px;}
.y51{bottom:1160.941500px;}
.h7{height:33.796875px;}
.hd{height:42.246094px;}
.hb{height:46.470703px;}
.ha{height:49.957031px;}
.h5{height:50.695312px;}
.hc{height:57.772266px;}
.h9{height:59.144531px;}
.h4{height:63.369141px;}
.h6{height:76.042969px;}
.h3{height:83.261719px;}
.h8{height:101.390625px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.725000px;}
.xd{left:153.225000px;}
.xc{left:170.250000px;}
.x2{left:263.850000px;}
.x6{left:274.200000px;}
.x7{left:316.650000px;}
.x9{left:329.700000px;}
.x4{left:339.375000px;}
.x1{left:382.275000px;}
.x8{left:415.125000px;}
.x5{left:425.925000px;}
.x3{left:436.650000px;}
.xe{left:438.000000px;}
.xb{left:442.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.100267pt;}
.ls0{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.149333pt;}
.ls4{letter-spacing:0.181333pt;}
.ls5{letter-spacing:64.000000pt;}
.ws0{word-spacing:-26.666667pt;}
.ws3{word-spacing:-25.600000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.800000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-1310.762667pt;}
._1d{margin-left:-1204.480000pt;}
._19{margin-left:-1029.856000pt;}
._1b{margin-left:-883.082667pt;}
._1{margin-left:-9.813333pt;}
._5{margin-left:-8.288000pt;}
._3{margin-left:-7.280000pt;}
._6{margin-left:-5.514667pt;}
._0{margin-left:-3.733333pt;}
._4{margin-left:-2.688000pt;}
._2{margin-left:-1.397333pt;}
._8{width:0.928000pt;}
._7{width:1.984000pt;}
._b{width:64.000000pt;}
._15{width:76.810667pt;}
._10{width:105.194667pt;}
._c{width:112.106667pt;}
._e{width:155.392000pt;}
._13{width:158.826667pt;}
._14{width:173.322667pt;}
._d{width:192.032000pt;}
._f{width:197.354667pt;}
._a{width:204.970667pt;}
._12{width:225.696000pt;}
._9{width:234.001067pt;}
._11{width:819.994667pt;}
._1c{width:857.013333pt;}
._1a{width:1003.680000pt;}
._1e{width:1178.613333pt;}
._17{width:1284.746667pt;}
._18{width:1541.194667pt;}
.fsa{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:51.200000pt;}
.fsb{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:102.400000pt;}
.fs0{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y25{bottom:60.081333pt;}
.y50{bottom:96.814667pt;}
.y24{bottom:111.681333pt;}
.y82{bottom:111.948000pt;}
.y4f{bottom:112.214667pt;}
.y4e{bottom:127.614667pt;}
.y23{bottom:128.548000pt;}
.y81{bottom:130.348000pt;}
.y98{bottom:143.014667pt;}
.y22{bottom:145.414667pt;}
.y80{bottom:148.748000pt;}
.y97{bottom:158.414667pt;}
.y21{bottom:162.281333pt;}
.y4d{bottom:164.081333pt;}
.y7f{bottom:167.148000pt;}
.y96{bottom:173.814667pt;}
.y20{bottom:179.148000pt;}
.y4c{bottom:182.481333pt;}
.y7e{bottom:185.548000pt;}
.y1f{bottom:196.014667pt;}
.y4b{bottom:200.881333pt;}
.y7d{bottom:203.948000pt;}
.y95{bottom:204.614667pt;}
.y1e{bottom:212.881333pt;}
.y4a{bottom:219.281333pt;}
.y94{bottom:220.014667pt;}
.y7c{bottom:222.348000pt;}
.y49{bottom:237.681333pt;}
.y7b{bottom:240.748000pt;}
.y1d{bottom:248.414667pt;}
.y93{bottom:250.814667pt;}
.y48{bottom:256.081333pt;}
.y7a{bottom:259.148000pt;}
.y1c{bottom:266.814667pt;}
.y47{bottom:274.481333pt;}
.y79{bottom:277.548000pt;}
.y92{bottom:281.614667pt;}
.y1b{bottom:285.214667pt;}
.y46{bottom:292.881333pt;}
.y78{bottom:295.948000pt;}
.y91{bottom:297.014667pt;}
.y1a{bottom:303.614667pt;}
.y45{bottom:311.281333pt;}
.y90{bottom:312.414667pt;}
.y77{bottom:314.348000pt;}
.y19{bottom:322.014667pt;}
.y8f{bottom:327.814667pt;}
.y44{bottom:329.681333pt;}
.y76{bottom:332.748000pt;}
.y18{bottom:340.414667pt;}
.y8e{bottom:343.214667pt;}
.y43{bottom:348.081333pt;}
.y83{bottom:351.148000pt;}
.y8d{bottom:358.614667pt;}
.y17{bottom:358.814667pt;}
.y42{bottom:366.481333pt;}
.y75{bottom:369.548000pt;}
.y8c{bottom:374.014667pt;}
.y16{bottom:377.214667pt;}
.y41{bottom:384.881333pt;}
.y74{bottom:387.948000pt;}
.y8b{bottom:389.414667pt;}
.y40{bottom:403.281333pt;}
.y8a{bottom:404.814667pt;}
.y73{bottom:406.348000pt;}
.y15{bottom:414.014667pt;}
.y89{bottom:420.214667pt;}
.y3f{bottom:421.681333pt;}
.y72{bottom:424.748000pt;}
.y14{bottom:432.414667pt;}
.y88{bottom:435.614667pt;}
.y3e{bottom:440.081333pt;}
.y71{bottom:443.148000pt;}
.y13{bottom:450.814667pt;}
.y87{bottom:451.014667pt;}
.y3d{bottom:458.481333pt;}
.y70{bottom:461.548000pt;}
.y12{bottom:469.214667pt;}
.y3c{bottom:476.881333pt;}
.y6f{bottom:479.948000pt;}
.y86{bottom:481.814667pt;}
.y11{bottom:487.614667pt;}
.y3b{bottom:495.281333pt;}
.y6e{bottom:498.348000pt;}
.y10{bottom:506.014667pt;}
.y85{bottom:512.614667pt;}
.y3a{bottom:513.681333pt;}
.y6d{bottom:516.748000pt;}
.yf{bottom:524.414667pt;}
.y39{bottom:532.081333pt;}
.y6c{bottom:535.148000pt;}
.y84{bottom:543.414667pt;}
.y38{bottom:550.481333pt;}
.y6b{bottom:553.548000pt;}
.y37{bottom:568.881333pt;}
.y6a{bottom:571.948000pt;}
.y36{bottom:587.281333pt;}
.y69{bottom:590.348000pt;}
.y68{bottom:608.748000pt;}
.y35{bottom:624.081333pt;}
.y67{bottom:627.148000pt;}
.y66{bottom:645.548000pt;}
.ye{bottom:653.214667pt;}
.y34{bottom:660.881333pt;}
.y65{bottom:663.948000pt;}
.yd{bottom:671.614667pt;}
.y33{bottom:679.281333pt;}
.y64{bottom:682.348000pt;}
.yc{bottom:690.014667pt;}
.y32{bottom:697.681333pt;}
.y63{bottom:700.748000pt;}
.y31{bottom:716.081333pt;}
.y62{bottom:719.148000pt;}
.yb{bottom:726.814667pt;}
.y30{bottom:734.481333pt;}
.y61{bottom:737.548000pt;}
.y2f{bottom:752.881333pt;}
.y60{bottom:755.948000pt;}
.ya{bottom:764.148000pt;}
.y2e{bottom:771.281333pt;}
.y5f{bottom:774.348000pt;}
.y2d{bottom:789.681333pt;}
.y5e{bottom:792.748000pt;}
.y9{bottom:802.281333pt;}
.y2c{bottom:808.081333pt;}
.y5d{bottom:811.148000pt;}
.y2b{bottom:826.481333pt;}
.y5c{bottom:829.548000pt;}
.y8{bottom:834.681333pt;}
.y2a{bottom:844.881333pt;}
.y5b{bottom:847.948000pt;}
.y5a{bottom:866.348000pt;}
.y7{bottom:877.481333pt;}
.y59{bottom:884.748000pt;}
.y58{bottom:903.148000pt;}
.y6{bottom:909.614667pt;}
.y57{bottom:921.548000pt;}
.y5{bottom:924.814667pt;}
.y29{bottom:936.881333pt;}
.y56{bottom:939.948000pt;}
.y4{bottom:950.681333pt;}
.y28{bottom:955.281333pt;}
.y55{bottom:958.348000pt;}
.y54{bottom:976.748000pt;}
.y27{bottom:992.081333pt;}
.y53{bottom:995.148000pt;}
.y3{bottom:997.548000pt;}
.y52{bottom:1013.548000pt;}
.y2{bottom:1021.948000pt;}
.y26{bottom:1029.414667pt;}
.y51{bottom:1031.948000pt;}
.h7{height:30.041667pt;}
.hd{height:37.552083pt;}
.hb{height:41.307292pt;}
.ha{height:44.406250pt;}
.h5{height:45.062500pt;}
.hc{height:51.353125pt;}
.h9{height:52.572917pt;}
.h4{height:56.328125pt;}
.h6{height:67.593750pt;}
.h3{height:74.010417pt;}
.h8{height:90.125000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.533333pt;}
.xd{left:136.200000pt;}
.xc{left:151.333333pt;}
.x2{left:234.533333pt;}
.x6{left:243.733333pt;}
.x7{left:281.466667pt;}
.x9{left:293.066667pt;}
.x4{left:301.666667pt;}
.x1{left:339.800000pt;}
.x8{left:369.000000pt;}
.x5{left:378.600000pt;}
.x3{left:388.133333pt;}
.xe{left:389.333333pt;}
.xb{left:393.000000pt;}
}




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