
    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_7a77a927d762120c52962714.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63f613767a1f819fa4e7de3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067871;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_ea9a0b69e3e720214a1564df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_dbe57ff832c3889bb77c5af9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_96499e6e09660b61fa2b3be2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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:57.000000px;}
.lse{letter-spacing:-0.367800px;}
.lsf{letter-spacing:-0.294000px;}
.lsc{letter-spacing:-0.290400px;}
.ls5{letter-spacing:-0.256200px;}
.ls7{letter-spacing:-0.123600px;}
.lsb{letter-spacing:-0.121800px;}
.ls8{letter-spacing:-0.019440px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.172800px;}
.ls3{letter-spacing:0.194400px;}
.ls2{letter-spacing:0.200880px;}
.ls10{letter-spacing:0.201000px;}
.lsa{letter-spacing:0.259200px;}
.ls4{letter-spacing:0.341280px;}
.ls6{letter-spacing:0.363000px;}
.ls0{letter-spacing:31.320000px;}
.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;}
}
.ws12{word-spacing:-62.888640px;}
.ws11{word-spacing:-18.570240px;}
.ws6{word-spacing:-18.532800px;}
.wsc{word-spacing:-13.970880px;}
.ws8{word-spacing:-13.939200px;}
.ws14{word-spacing:-13.645200px;}
.ws13{word-spacing:-13.603080px;}
.ws0{word-spacing:-4.809600px;}
.ws2{word-spacing:-4.617216px;}
.wsd{word-spacing:-0.794880px;}
.wsa{word-spacing:-0.324240px;}
.ws5{word-spacing:-0.223920px;}
.ws7{word-spacing:-0.069840px;}
.ws4{word-spacing:-0.054000px;}
.ws9{word-spacing:-0.023040px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.544800px;}
.ws10{word-spacing:0.694080px;}
.wse{word-spacing:0.787440px;}
.ws1{word-spacing:1.250640px;}
.wsf{word-spacing:2.161200px;}
._c{margin-left:-9.687600px;}
._8{margin-left:-6.149520px;}
._b{margin-left:-3.347520px;}
._6{margin-left:-1.179360px;}
._a{width:1.095120px;}
._7{width:2.128080px;}
._3{width:20.761920px;}
._1{width:29.412720px;}
._0{width:31.142880px;}
._2{width:32.488560px;}
._4{width:101.468400px;}
._5{width:102.859440px;}
._9{width:1720.187040px;}
.fc3{color:rgb(91,88,199);}
.fc4{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(177,59,164);}
.fs4{font-size:63.360000px;}
.fs6{font-size:63.504000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y38{bottom:16.740000px;}
.y35{bottom:37.800000px;}
.y37{bottom:38.340000px;}
.y4b{bottom:38.952000px;}
.y36{bottom:59.976000px;}
.y45{bottom:104.724000px;}
.y42{bottom:110.844000px;}
.y44{bottom:123.624000px;}
.y55{bottom:129.816000px;}
.y41{bottom:132.444000px;}
.y43{bottom:142.524000px;}
.y54{bottom:148.716000px;}
.y50{bottom:153.435000px;}
.y40{bottom:154.050000px;}
.y7{bottom:177.375000px;}
.y3f{bottom:197.715000px;}
.y34{bottom:201.810000px;}
.y3c{bottom:213.150000px;}
.y3e{bottom:219.345000px;}
.y33{bottom:227.010000px;}
.y3b{bottom:238.395000px;}
.y3d{bottom:240.945000px;}
.y3a{bottom:241.455000px;}
.y6{bottom:246.495000px;}
.y39{bottom:266.655000px;}
.y4f{bottom:290.595000px;}
.y23{bottom:291.675000px;}
.y32{bottom:296.385000px;}
.y49{bottom:300.240000px;}
.y4e{bottom:309.495000px;}
.y22{bottom:313.275000px;}
.y5{bottom:315.615000px;}
.y48{bottom:319.140000px;}
.y31{bottom:321.585000px;}
.y4d{bottom:328.395000px;}
.y21{bottom:334.875000px;}
.y47{bottom:338.040000px;}
.y4c{bottom:347.295000px;}
.y4{bottom:384.765000px;}
.y1b{bottom:390.270000px;}
.y4a{bottom:391.110000px;}
.y1a{bottom:415.470000px;}
.y2d{bottom:417.345000px;}
.y2a{bottom:424.260000px;}
.y2c{bottom:438.945000px;}
.y30{bottom:441.150000px;}
.y29{bottom:449.460000px;}
.y3{bottom:453.885000px;}
.y1e{bottom:454.140000px;}
.y14{bottom:459.150000px;}
.y2b{bottom:460.545000px;}
.y1d{bottom:475.740000px;}
.y46{bottom:482.400000px;}
.y13{bottom:484.350000px;}
.y2f{bottom:499.650000px;}
.y12{bottom:509.550000px;}
.y1c{bottom:510.840000px;}
.y2e{bottom:518.550000px;}
.y2{bottom:523.050000px;}
.y20{bottom:532.050000px;}
.y1f{bottom:550.980000px;}
.y9{bottom:564.330000px;}
.y28{bottom:564.810000px;}
.yf{bottom:584.070000px;}
.y8{bottom:589.530000px;}
.y27{bottom:590.040000px;}
.y1{bottom:592.170000px;}
.y10{bottom:623.775000px;}
.y19{bottom:628.455000px;}
.y26{bottom:632.775000px;}
.y53{bottom:651.780000px;}
.ye{bottom:654.300000px;}
.y25{bottom:657.975000px;}
.y52{bottom:670.680000px;}
.y24{bottom:683.175000px;}
.y51{bottom:689.580000px;}
.y11{bottom:693.975000px;}
.yd{bottom:698.430000px;}
.yc{bottom:723.630000px;}
.y16{bottom:750.270000px;}
.yb{bottom:751.830000px;}
.y18{bottom:753.945000px;}
.y15{bottom:775.470000px;}
.ya{bottom:777.030000px;}
.y17{bottom:779.145000px;}
.h6{height:46.251562px;}
.h5{height:52.558594px;}
.hb{height:52.663711px;}
.h7{height:55.996875px;}
.h9{height:56.124141px;}
.ha{height:61.575820px;}
.h3{height:74.450391px;}
.h8{height:74.577656px;}
.h4{height:131.450391px;}
.h1{height:169.711875px;}
.h2{height:169.839000px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x16{left:32.363979px;}
.x18{left:73.727979px;}
.xb{left:76.247979px;}
.x12{left:77.723979px;}
.x17{left:79.523979px;}
.x3a{left:81.431979px;}
.x3b{left:83.951979px;}
.x2d{left:105.155979px;}
.x3c{left:113.651979px;}
.x11{left:115.811979px;}
.x1{left:129.311979px;}
.x36{left:190.049979px;}
.x19{left:209.804979px;}
.x35{left:212.549979px;}
.x1a{left:214.124979px;}
.x1b{left:257.189979px;}
.x2{left:280.439979px;}
.x37{left:295.559979px;}
.x3{left:314.639979px;}
.x40{left:331.049979px;}
.x30{left:377.999979px;}
.x10{left:392.399979px;}
.x2e{left:394.379979px;}
.x3d{left:409.574979px;}
.xf{left:426.599979px;}
.x13{left:436.859979px;}
.x14{left:439.019979px;}
.x44{left:446.039979px;}
.x2f{left:451.979979px;}
.x15{left:462.989979px;}
.x33{left:507.599979px;}
.x41{left:517.964979px;}
.x42{left:524.624979px;}
.x34{left:527.039979px;}
.x43{left:551.444979px;}
.xe{left:574.019979px;}
.xc{left:594.359979px;}
.xd{left:627.659979px;}
.x5{left:661.829979px;}
.x4{left:673.709979px;}
.x48{left:678.389979px;}
.x49{left:687.239979px;}
.x46{left:704.804979px;}
.x45{left:705.884979px;}
.x31{left:732.959979px;}
.x47{left:746.024979px;}
.x32{left:753.479979px;}
.x22{left:796.934979px;}
.x1f{left:810.464979px;}
.x21{left:813.674979px;}
.x27{left:817.994979px;}
.x26{left:829.874979px;}
.x20{left:845.564979px;}
.x39{left:968.039979px;}
.x3e{left:973.694979px;}
.x3f{left:975.134979px;}
.x1d{left:983.129979px;}
.x38{left:989.279979px;}
.x28{left:1035.569979px;}
.x1c{left:1040.369979px;}
.x1e{left:1042.169979px;}
.x2c{left:1106.099979px;}
.x23{left:1133.489979px;}
.x24{left:1135.649979px;}
.x2b{left:1147.349979px;}
.x25{left:1177.229979px;}
.x2a{left:1235.984979px;}
.x29{left:1245.884979px;}
.x9{left:1254.524979px;}
.xa{left:1260.749979px;}
.x6{left:1268.204979px;}
.x8{left:1279.184979px;}
.x7{left:1307.984979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:50.666667pt;}
.lse{letter-spacing:-0.326933pt;}
.lsf{letter-spacing:-0.261333pt;}
.lsc{letter-spacing:-0.258133pt;}
.ls5{letter-spacing:-0.227733pt;}
.ls7{letter-spacing:-0.109867pt;}
.lsb{letter-spacing:-0.108267pt;}
.ls8{letter-spacing:-0.017280pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.153600pt;}
.ls3{letter-spacing:0.172800pt;}
.ls2{letter-spacing:0.178560pt;}
.ls10{letter-spacing:0.178667pt;}
.lsa{letter-spacing:0.230400pt;}
.ls4{letter-spacing:0.303360pt;}
.ls6{letter-spacing:0.322667pt;}
.ls0{letter-spacing:27.840000pt;}
.ws12{word-spacing:-55.901013pt;}
.ws11{word-spacing:-16.506880pt;}
.ws6{word-spacing:-16.473600pt;}
.wsc{word-spacing:-12.418560pt;}
.ws8{word-spacing:-12.390400pt;}
.ws14{word-spacing:-12.129067pt;}
.ws13{word-spacing:-12.091627pt;}
.ws0{word-spacing:-4.275200pt;}
.ws2{word-spacing:-4.104192pt;}
.wsd{word-spacing:-0.706560pt;}
.wsa{word-spacing:-0.288213pt;}
.ws5{word-spacing:-0.199040pt;}
.ws7{word-spacing:-0.062080pt;}
.ws4{word-spacing:-0.048000pt;}
.ws9{word-spacing:-0.020480pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.484267pt;}
.ws10{word-spacing:0.616960pt;}
.wse{word-spacing:0.699947pt;}
.ws1{word-spacing:1.111680pt;}
.wsf{word-spacing:1.921067pt;}
._c{margin-left:-8.611200pt;}
._8{margin-left:-5.466240pt;}
._b{margin-left:-2.975573pt;}
._6{margin-left:-1.048320pt;}
._a{width:0.973440pt;}
._7{width:1.891627pt;}
._3{width:18.455040pt;}
._1{width:26.144640pt;}
._0{width:27.682560pt;}
._2{width:28.878720pt;}
._4{width:90.194133pt;}
._5{width:91.430613pt;}
._9{width:1529.055147pt;}
.fs4{font-size:56.320000pt;}
.fs6{font-size:56.448000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:14.880000pt;}
.y35{bottom:33.600000pt;}
.y37{bottom:34.080000pt;}
.y4b{bottom:34.624000pt;}
.y36{bottom:53.312000pt;}
.y45{bottom:93.088000pt;}
.y42{bottom:98.528000pt;}
.y44{bottom:109.888000pt;}
.y55{bottom:115.392000pt;}
.y41{bottom:117.728000pt;}
.y43{bottom:126.688000pt;}
.y54{bottom:132.192000pt;}
.y50{bottom:136.386667pt;}
.y40{bottom:136.933333pt;}
.y7{bottom:157.666667pt;}
.y3f{bottom:175.746667pt;}
.y34{bottom:179.386667pt;}
.y3c{bottom:189.466667pt;}
.y3e{bottom:194.973333pt;}
.y33{bottom:201.786667pt;}
.y3b{bottom:211.906667pt;}
.y3d{bottom:214.173333pt;}
.y3a{bottom:214.626667pt;}
.y6{bottom:219.106667pt;}
.y39{bottom:237.026667pt;}
.y4f{bottom:258.306667pt;}
.y23{bottom:259.266667pt;}
.y32{bottom:263.453333pt;}
.y49{bottom:266.880000pt;}
.y4e{bottom:275.106667pt;}
.y22{bottom:278.466667pt;}
.y5{bottom:280.546667pt;}
.y48{bottom:283.680000pt;}
.y31{bottom:285.853333pt;}
.y4d{bottom:291.906667pt;}
.y21{bottom:297.666667pt;}
.y47{bottom:300.480000pt;}
.y4c{bottom:308.706667pt;}
.y4{bottom:342.013333pt;}
.y1b{bottom:346.906667pt;}
.y4a{bottom:347.653333pt;}
.y1a{bottom:369.306667pt;}
.y2d{bottom:370.973333pt;}
.y2a{bottom:377.120000pt;}
.y2c{bottom:390.173333pt;}
.y30{bottom:392.133333pt;}
.y29{bottom:399.520000pt;}
.y3{bottom:403.453333pt;}
.y1e{bottom:403.680000pt;}
.y14{bottom:408.133333pt;}
.y2b{bottom:409.373333pt;}
.y1d{bottom:422.880000pt;}
.y46{bottom:428.800000pt;}
.y13{bottom:430.533333pt;}
.y2f{bottom:444.133333pt;}
.y12{bottom:452.933333pt;}
.y1c{bottom:454.080000pt;}
.y2e{bottom:460.933333pt;}
.y2{bottom:464.933333pt;}
.y20{bottom:472.933333pt;}
.y1f{bottom:489.760000pt;}
.y9{bottom:501.626667pt;}
.y28{bottom:502.053333pt;}
.yf{bottom:519.173333pt;}
.y8{bottom:524.026667pt;}
.y27{bottom:524.480000pt;}
.y1{bottom:526.373333pt;}
.y10{bottom:554.466667pt;}
.y19{bottom:558.626667pt;}
.y26{bottom:562.466667pt;}
.y53{bottom:579.360000pt;}
.ye{bottom:581.600000pt;}
.y25{bottom:584.866667pt;}
.y52{bottom:596.160000pt;}
.y24{bottom:607.266667pt;}
.y51{bottom:612.960000pt;}
.y11{bottom:616.866667pt;}
.yd{bottom:620.826667pt;}
.yc{bottom:643.226667pt;}
.y16{bottom:666.906667pt;}
.yb{bottom:668.293333pt;}
.y18{bottom:670.173333pt;}
.y15{bottom:689.306667pt;}
.ya{bottom:690.693333pt;}
.y17{bottom:692.573333pt;}
.h6{height:41.112500pt;}
.h5{height:46.718750pt;}
.hb{height:46.812187pt;}
.h7{height:49.775000pt;}
.h9{height:49.888125pt;}
.ha{height:54.734062pt;}
.h3{height:66.178125pt;}
.h8{height:66.291250pt;}
.h4{height:116.844792pt;}
.h1{height:150.855000pt;}
.h2{height:150.968000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x16{left:28.767981pt;}
.x18{left:65.535981pt;}
.xb{left:67.775981pt;}
.x12{left:69.087981pt;}
.x17{left:70.687981pt;}
.x3a{left:72.383981pt;}
.x3b{left:74.623981pt;}
.x2d{left:93.471981pt;}
.x3c{left:101.023981pt;}
.x11{left:102.943981pt;}
.x1{left:114.943981pt;}
.x36{left:168.933314pt;}
.x19{left:186.493314pt;}
.x35{left:188.933314pt;}
.x1a{left:190.333314pt;}
.x1b{left:228.613314pt;}
.x2{left:249.279981pt;}
.x37{left:262.719981pt;}
.x3{left:279.679981pt;}
.x40{left:294.266648pt;}
.x30{left:335.999981pt;}
.x10{left:348.799981pt;}
.x2e{left:350.559981pt;}
.x3d{left:364.066648pt;}
.xf{left:379.199981pt;}
.x13{left:388.319981pt;}
.x14{left:390.239981pt;}
.x44{left:396.479981pt;}
.x2f{left:401.759981pt;}
.x15{left:411.546648pt;}
.x33{left:451.199981pt;}
.x41{left:460.413314pt;}
.x42{left:466.333314pt;}
.x34{left:468.479981pt;}
.x43{left:490.173314pt;}
.xe{left:510.239981pt;}
.xc{left:528.319981pt;}
.xd{left:557.919981pt;}
.x5{left:588.293314pt;}
.x4{left:598.853314pt;}
.x48{left:603.013314pt;}
.x49{left:610.879981pt;}
.x46{left:626.493314pt;}
.x45{left:627.453314pt;}
.x31{left:651.519981pt;}
.x47{left:663.133314pt;}
.x32{left:669.759981pt;}
.x22{left:708.386648pt;}
.x1f{left:720.413314pt;}
.x21{left:723.266648pt;}
.x27{left:727.106648pt;}
.x26{left:737.666648pt;}
.x20{left:751.613314pt;}
.x39{left:860.479981pt;}
.x3e{left:865.506648pt;}
.x3f{left:866.786648pt;}
.x1d{left:873.893314pt;}
.x38{left:879.359981pt;}
.x28{left:920.506648pt;}
.x1c{left:924.773314pt;}
.x1e{left:926.373314pt;}
.x2c{left:983.199981pt;}
.x23{left:1007.546648pt;}
.x24{left:1009.466648pt;}
.x2b{left:1019.866648pt;}
.x25{left:1046.426648pt;}
.x2a{left:1098.653314pt;}
.x29{left:1107.453314pt;}
.x9{left:1115.133314pt;}
.xa{left:1120.666648pt;}
.x6{left:1127.293314pt;}
.x8{left:1137.053314pt;}
.x7{left:1162.653314pt;}
}




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