
    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_9a59ae154fc5afe7a1b74e46.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_f3be4b58412b68e3950733a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_3c444c9c7ebcbaa48bdc4a9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_26a5bc7581da47bb1fac08bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8840960a80bfc359d10d18d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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:ffa;src:url('chunks/assets/font_ba5c3fe2e38661a8c3d47aba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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:ffb;src:url('chunks/assets/font_0daeafbf85f714fa99c3e51e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084473;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:ffc;src:url('chunks/assets/font_317afbc7d4e8a7ed62caaa58.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.108720px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:44.784000px;}
.ls0{letter-spacing:54.864000px;}
.ls3{letter-spacing:55.044000px;}
.ls6{letter-spacing:64.026720px;}
.ls7{letter-spacing:89.976000px;}
.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:-72.000000px;}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-6.264000px;}
._2{margin-left:-4.380000px;}
._5{margin-left:-3.180000px;}
._0{margin-left:-1.224000px;}
._1{width:1.080000px;}
._f{width:2.232000px;}
._e{width:3.240000px;}
._3{width:4.608000px;}
._4{width:5.616000px;}
._7{width:7.128000px;}
._8{width:8.784000px;}
._16{width:9.864000px;}
._17{width:11.496000px;}
._6{width:13.248000px;}
._b{width:21.456000px;}
._d{width:22.464000px;}
._18{width:23.688000px;}
._a{width:25.584000px;}
._9{width:26.904000px;}
._15{width:32.184000px;}
._13{width:45.216000px;}
._14{width:50.184000px;}
._11{width:52.632000px;}
._12{width:54.000000px;}
._10{width:85.464000px;}
.fc2{color:rgb(14,40,65);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.960000px;}
.y3b{bottom:14.220000px;}
.y41{bottom:14.400000px;}
.y3c{bottom:24.660000px;}
.y3f{bottom:45.360000px;}
.y2a{bottom:110.376000px;}
.y29{bottom:115.596000px;}
.y5d{bottom:121.536000px;}
.y28{bottom:129.096000px;}
.y5c{bottom:155.730000px;}
.y45{bottom:176.610000px;}
.y5b{bottom:190.110000px;}
.y27{bottom:217.470000px;}
.y44{bottom:218.730000px;}
.y5a{bottom:224.490000px;}
.y26{bottom:241.050000px;}
.y59{bottom:258.870000px;}
.y43{bottom:260.850000px;}
.y25{bottom:264.810000px;}
.y24{bottom:288.390000px;}
.y58{bottom:293.070000px;}
.y42{bottom:302.970000px;}
.y23{bottom:311.970000px;}
.y57{bottom:327.450000px;}
.y22{bottom:335.550000px;}
.y40{bottom:345.135000px;}
.y21{bottom:359.355000px;}
.y56{bottom:361.875000px;}
.y20{bottom:383.115000px;}
.y3e{bottom:387.255000px;}
.y55{bottom:396.255000px;}
.y1f{bottom:405.435000px;}
.y1e{bottom:427.755000px;}
.y54{bottom:430.455000px;}
.y1d{bottom:449.895000px;}
.y3d{bottom:450.255000px;}
.y53{bottom:464.835000px;}
.y1c{bottom:473.655000px;}
.y52{bottom:487.155000px;}
.y3a{bottom:492.375000px;}
.y1b{bottom:495.975000px;}
.y51{bottom:509.475000px;}
.y1a{bottom:518.295000px;}
.y50{bottom:531.975000px;}
.y38{bottom:534.495000px;}
.y19{bottom:553.935000px;}
.y4f{bottom:554.295000px;}
.y37{bottom:573.735000px;}
.y17{bottom:576.435000px;}
.y4e{bottom:576.615000px;}
.y18{bottom:583.275000px;}
.y4d{bottom:598.935000px;}
.y36{bottom:604.005000px;}
.y16{bottom:610.665000px;}
.y4c{bottom:633.345000px;}
.y35{bottom:638.385000px;}
.y15{bottom:645.045000px;}
.y4b{bottom:655.665000px;}
.y14{bottom:667.365000px;}
.y34{bottom:672.765000px;}
.y4a{bottom:677.985000px;}
.y13{bottom:689.685000px;}
.y33{bottom:707.145000px;}
.y12{bottom:712.005000px;}
.y49{bottom:712.365000px;}
.y11{bottom:734.325000px;}
.y48{bottom:738.825000px;}
.y32{bottom:741.345000px;}
.y10{bottom:756.645000px;}
.y31{bottom:775.725000px;}
.yf{bottom:779.145000px;}
.ye{bottom:801.465000px;}
.y30{bottom:810.105000px;}
.yd{bottom:835.665000px;}
.y2f{bottom:844.485000px;}
.yc{bottom:858.165000px;}
.y2e{bottom:878.730000px;}
.yb{bottom:880.530000px;}
.ya{bottom:902.850000px;}
.y2d{bottom:913.110000px;}
.y9{bottom:925.170000px;}
.y2c{bottom:947.490000px;}
.y8{bottom:959.550000px;}
.y7{bottom:981.870000px;}
.y6{bottom:1004.190000px;}
.y2b{bottom:1011.030000px;}
.y5{bottom:1026.510000px;}
.y4{bottom:1060.890000px;}
.y47{bottom:1083.210000px;}
.y3{bottom:1095.090000px;}
.y46{bottom:1105.530000px;}
.y2{bottom:1117.410000px;}
.y1{bottom:1139.940000px;}
.hc{height:20.700000px;}
.h9{height:31.201172px;}
.he{height:41.220000px;}
.hd{height:41.400000px;}
.h10{height:41.436000px;}
.h6{height:47.344922px;}
.ha{height:51.793945px;}
.hb{height:53.868164px;}
.h8{height:57.410156px;}
.hf{height:62.100000px;}
.h2{height:63.949219px;}
.h5{height:64.546875px;}
.h4{height:70.664062px;}
.h7{height:74.004654px;}
.h3{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:83.520000px;}
.w6{width:89.496000px;}
.w4{width:168.150000px;}
.w7{width:292.710000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x5{left:127.655987px;}
.x1{left:132.335987px;}
.x2{left:139.175987px;}
.x9{left:154.649987px;}
.x1a{left:175.529987px;}
.xa{left:208.649987px;}
.xb{left:262.649987px;}
.x13{left:279.974973px;}
.x14{left:286.094987px;}
.x17{left:297.435000px;}
.x1c{left:300.854987px;}
.x3{left:303.014987px;}
.x4{left:310.034987px;}
.x6{left:313.814987px;}
.xc{left:316.694987px;}
.x11{left:343.694987px;}
.x12{left:360.974987px;}
.x15{left:369.614987px;}
.xd{left:370.694987px;}
.x18{left:381.675000px;}
.xe{left:424.694987px;}
.xf{left:451.694987px;}
.x19{left:472.065000px;}
.x10{left:478.724987px;}
.x7{left:693.689973px;}
.x8{left:699.809987px;}
.x1b{left:732.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.096640pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:39.808000pt;}
.ls0{letter-spacing:48.768000pt;}
.ls3{letter-spacing:48.928000pt;}
.ls6{letter-spacing:56.912640pt;}
.ls7{letter-spacing:79.978667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-5.568000pt;}
._2{margin-left:-3.893333pt;}
._5{margin-left:-2.826667pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.960000pt;}
._f{width:1.984000pt;}
._e{width:2.880000pt;}
._3{width:4.096000pt;}
._4{width:4.992000pt;}
._7{width:6.336000pt;}
._8{width:7.808000pt;}
._16{width:8.768000pt;}
._17{width:10.218667pt;}
._6{width:11.776000pt;}
._b{width:19.072000pt;}
._d{width:19.968000pt;}
._18{width:21.056000pt;}
._a{width:22.741333pt;}
._9{width:23.914667pt;}
._15{width:28.608000pt;}
._13{width:40.192000pt;}
._14{width:44.608000pt;}
._11{width:46.784000pt;}
._12{width:48.000000pt;}
._10{width:75.968000pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.520000pt;}
.y3b{bottom:12.640000pt;}
.y41{bottom:12.800000pt;}
.y3c{bottom:21.920000pt;}
.y3f{bottom:40.320000pt;}
.y2a{bottom:98.112000pt;}
.y29{bottom:102.752000pt;}
.y5d{bottom:108.032000pt;}
.y28{bottom:114.752000pt;}
.y5c{bottom:138.426667pt;}
.y45{bottom:156.986667pt;}
.y5b{bottom:168.986667pt;}
.y27{bottom:193.306667pt;}
.y44{bottom:194.426667pt;}
.y5a{bottom:199.546667pt;}
.y26{bottom:214.266667pt;}
.y59{bottom:230.106667pt;}
.y43{bottom:231.866667pt;}
.y25{bottom:235.386667pt;}
.y24{bottom:256.346667pt;}
.y58{bottom:260.506667pt;}
.y42{bottom:269.306667pt;}
.y23{bottom:277.306667pt;}
.y57{bottom:291.066667pt;}
.y22{bottom:298.266667pt;}
.y40{bottom:306.786667pt;}
.y21{bottom:319.426667pt;}
.y56{bottom:321.666667pt;}
.y20{bottom:340.546667pt;}
.y3e{bottom:344.226667pt;}
.y55{bottom:352.226667pt;}
.y1f{bottom:360.386667pt;}
.y1e{bottom:380.226667pt;}
.y54{bottom:382.626667pt;}
.y1d{bottom:399.906667pt;}
.y3d{bottom:400.226667pt;}
.y53{bottom:413.186667pt;}
.y1c{bottom:421.026667pt;}
.y52{bottom:433.026667pt;}
.y3a{bottom:437.666667pt;}
.y1b{bottom:440.866667pt;}
.y51{bottom:452.866667pt;}
.y1a{bottom:460.706667pt;}
.y50{bottom:472.866667pt;}
.y38{bottom:475.106667pt;}
.y19{bottom:492.386667pt;}
.y4f{bottom:492.706667pt;}
.y37{bottom:509.986667pt;}
.y17{bottom:512.386667pt;}
.y4e{bottom:512.546667pt;}
.y18{bottom:518.466667pt;}
.y4d{bottom:532.386667pt;}
.y36{bottom:536.893333pt;}
.y16{bottom:542.813333pt;}
.y4c{bottom:562.973333pt;}
.y35{bottom:567.453333pt;}
.y15{bottom:573.373333pt;}
.y4b{bottom:582.813333pt;}
.y14{bottom:593.213333pt;}
.y34{bottom:598.013333pt;}
.y4a{bottom:602.653333pt;}
.y13{bottom:613.053333pt;}
.y33{bottom:628.573333pt;}
.y12{bottom:632.893333pt;}
.y49{bottom:633.213333pt;}
.y11{bottom:652.733333pt;}
.y48{bottom:656.733333pt;}
.y32{bottom:658.973333pt;}
.y10{bottom:672.573333pt;}
.y31{bottom:689.533333pt;}
.yf{bottom:692.573333pt;}
.ye{bottom:712.413333pt;}
.y30{bottom:720.093333pt;}
.yd{bottom:742.813333pt;}
.y2f{bottom:750.653333pt;}
.yc{bottom:762.813333pt;}
.y2e{bottom:781.093333pt;}
.yb{bottom:782.693333pt;}
.ya{bottom:802.533333pt;}
.y2d{bottom:811.653333pt;}
.y9{bottom:822.373333pt;}
.y2c{bottom:842.213333pt;}
.y8{bottom:852.933333pt;}
.y7{bottom:872.773333pt;}
.y6{bottom:892.613333pt;}
.y2b{bottom:898.693333pt;}
.y5{bottom:912.453333pt;}
.y4{bottom:943.013333pt;}
.y47{bottom:962.853333pt;}
.y3{bottom:973.413333pt;}
.y46{bottom:982.693333pt;}
.y2{bottom:993.253333pt;}
.y1{bottom:1013.280000pt;}
.hc{height:18.400000pt;}
.h9{height:27.734375pt;}
.he{height:36.640000pt;}
.hd{height:36.800000pt;}
.h10{height:36.832000pt;}
.h6{height:42.084375pt;}
.ha{height:46.039063pt;}
.hb{height:47.882812pt;}
.h8{height:51.031250pt;}
.hf{height:55.200000pt;}
.h2{height:56.843750pt;}
.h5{height:57.375000pt;}
.h4{height:62.812500pt;}
.h7{height:65.781915pt;}
.h3{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:74.240000pt;}
.w6{width:79.552000pt;}
.w4{width:149.466667pt;}
.w7{width:260.186667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x5{left:113.471988pt;}
.x1{left:117.631988pt;}
.x2{left:123.711988pt;}
.x9{left:137.466655pt;}
.x1a{left:156.026655pt;}
.xa{left:185.466655pt;}
.xb{left:233.466655pt;}
.x13{left:248.866643pt;}
.x14{left:254.306655pt;}
.x17{left:264.386667pt;}
.x1c{left:267.426655pt;}
.x3{left:269.346655pt;}
.x4{left:275.586655pt;}
.x6{left:278.946655pt;}
.xc{left:281.506655pt;}
.x11{left:305.506655pt;}
.x12{left:320.866655pt;}
.x15{left:328.546655pt;}
.xd{left:329.506655pt;}
.x18{left:339.266667pt;}
.xe{left:377.506655pt;}
.xf{left:401.506655pt;}
.x19{left:419.613333pt;}
.x10{left:425.533322pt;}
.x7{left:616.613310pt;}
.x8{left:622.053322pt;}
.x1b{left:651.013322pt;}
}




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