
    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_d813a280c0dd3d523c77fc88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_2631f3ed69b01eb9184de4f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.430000;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_983a3569c37b68df3148584c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f7fee3c92ce4d24d6135df90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_22ff8148965907ad4ed2b370.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_cbd35e24d9c0b442a182ccb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.696000;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_cd66647955c63911e5d51e96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_a266b3cde7c0d8fe374ddc9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_5b9b300602ca59185fe0a227.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_0a45235239a10752a37fc672.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913000;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_d4f5752a492a9b2d08225d87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.390000;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_ee1467eaf1dc7e0c345aab5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.777000;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:ffd;src:url('chunks/assets/font_6bcbec2180f8b25fd321d3ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.430000;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);}
.v3{vertical-align:-22.854000px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.028000px;}
.v1{vertical-align:37.482000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984915px;}
.ls5{letter-spacing:2.986118px;}
.ls3{letter-spacing:2.988532px;}
.ls2{letter-spacing:2.990915px;}
.ls0{letter-spacing:27.251578px;}
.ls4{letter-spacing:29.887800px;}
.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;}
}
.ws1b{word-spacing:-16.605662px;}
.ws18{word-spacing:-1.841088px;}
.ws0{word-spacing:-0.103292px;}
.ws21{word-spacing:-0.086077px;}
.ws5{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.wsf{word-spacing:1.028140px;}
.ws12{word-spacing:1.207467px;}
.wsb{word-spacing:3.299613px;}
.ws10{word-spacing:3.538716px;}
.ws14{word-spacing:4.913554px;}
.ws22{word-spacing:5.511310px;}
.ws19{word-spacing:6.168842px;}
.ws8{word-spacing:6.587271px;}
.wsc{word-spacing:8.201212px;}
.wse{word-spacing:8.380539px;}
.wsd{word-spacing:8.739193px;}
.ws16{word-spacing:11.249768px;}
.ws17{word-spacing:14.704798px;}
.ws1c{word-spacing:16.880672px;}
.ws13{word-spacing:17.753353px;}
.ws2{word-spacing:18.345254px;}
.ws3{word-spacing:18.399053px;}
.ws1e{word-spacing:19.845499px;}
.ws1a{word-spacing:19.905275px;}
.ws9{word-spacing:22.834279px;}
.ws4{word-spacing:23.312640px;}
.ws6{word-spacing:23.384371px;}
.ws1f{word-spacing:24.684628px;}
.wsa{word-spacing:24.687323px;}
.ws20{word-spacing:24.690873px;}
.ws11{word-spacing:26.827469px;}
.ws15{word-spacing:27.795654px;}
.ws1{word-spacing:31.091012px;}
.ws7{word-spacing:32.192873px;}
._5{margin-left:-37.109995px;}
._8{margin-left:-28.894058px;}
._11{margin-left:-8.091257px;}
._e{margin-left:-6.742733px;}
._6{margin-left:-5.682642px;}
._7{margin-left:-3.873485px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.452557px;}
._4{width:1.613952px;}
._2{width:2.685602px;}
._d{width:18.663619px;}
._10{width:20.935092px;}
._9{width:24.478272px;}
._c{width:25.661675px;}
._a{width:27.694045px;}
._f{width:30.558974px;}
._0{width:41.946676px;}
._b{width:43.189568px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y26{bottom:61.467000px;}
.y25{bottom:147.330000px;}
.y24{bottom:166.497000px;}
.y23{bottom:184.429500px;}
.y22{bottom:202.363500px;}
.y21{bottom:226.273500px;}
.y20{bottom:244.206000px;}
.y1f{bottom:277.083000px;}
.y1e{bottom:295.015500px;}
.y1d{bottom:312.948000px;}
.y1c{bottom:342.835500px;}
.y1b{bottom:360.769500px;}
.y1a{bottom:378.702000px;}
.y19{bottom:406.285500px;}
.y18{bottom:448.119000px;}
.y17{bottom:466.051500px;}
.y16{bottom:483.984000px;}
.y15{bottom:501.916500px;}
.y14{bottom:519.849000px;}
.y13{bottom:537.781500px;}
.y12{bottom:555.715500px;}
.y11{bottom:573.648000px;}
.y10{bottom:591.580500px;}
.yf{bottom:609.513000px;}
.ye{bottom:642.244500px;}
.y37{bottom:646.198500px;}
.y36{bottom:664.131000px;}
.y35{bottom:696.862500px;}
.y34{bottom:746.281500px;}
.yd{bottom:749.680500px;}
.y33{bottom:764.214000px;}
.yc{bottom:766.119000px;}
.y32{bottom:782.146500px;}
.yb{bottom:782.557500px;}
.ya{bottom:798.996000px;}
.y31{bottom:809.731500px;}
.y9{bottom:815.434500px;}
.y8{bottom:831.873000px;}
.y7{bottom:848.311500px;}
.y30{bottom:851.563500px;}
.y2f{bottom:869.496000px;}
.y6{bottom:873.979500px;}
.y5{bottom:894.901500px;}
.y2e{bottom:899.385000px;}
.y2d{bottom:917.317500px;}
.y4{bottom:938.239500px;}
.y2c{bottom:947.205000px;}
.y3{bottom:962.896500px;}
.y2b{bottom:971.115000px;}
.y2{bottom:987.553500px;}
.y2a{bottom:1001.004000px;}
.y1{bottom:1012.212000px;}
.y29{bottom:1018.936500px;}
.y28{bottom:1048.824000px;}
.y27{bottom:1066.756500px;}
.h9{height:18.987450px;}
.h5{height:24.209280px;}
.h2{height:40.348800px;}
.h7{height:44.831700px;}
.h8{height:50.211840px;}
.h6{height:60.254040px;}
.h3{height:61.893450px;}
.h4{height:61.899450px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:106.299000px;}
.x1{left:115.434000px;}
.x5{left:119.806500px;}
.x11{left:122.938500px;}
.x6{left:124.575000px;}
.xe{left:128.715000px;}
.xf{left:143.659500px;}
.x2{left:160.629000px;}
.x10{left:176.536500px;}
.x9{left:207.880500px;}
.x7{left:246.198000px;}
.xa{left:265.857000px;}
.x8{left:267.832500px;}
.xb{left:279.720000px;}
.xc{left:295.366500px;}
.x4{left:297.390000px;}
.x3{left:316.510500px;}
.x12{left:455.263500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.136000pt;}
.v1{vertical-align:33.317333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.653258pt;}
.ls5{letter-spacing:2.654327pt;}
.ls3{letter-spacing:2.656473pt;}
.ls2{letter-spacing:2.658591pt;}
.ls0{letter-spacing:24.223625pt;}
.ls4{letter-spacing:26.566933pt;}
.ws1b{word-spacing:-14.760588pt;}
.ws18{word-spacing:-1.636523pt;}
.ws0{word-spacing:-0.091815pt;}
.ws21{word-spacing:-0.076513pt;}
.ws5{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.wsf{word-spacing:0.913903pt;}
.ws12{word-spacing:1.073304pt;}
.wsb{word-spacing:2.932989pt;}
.ws10{word-spacing:3.145525pt;}
.ws14{word-spacing:4.367604pt;}
.ws22{word-spacing:4.898943pt;}
.ws19{word-spacing:5.483415pt;}
.ws8{word-spacing:5.855352pt;}
.wsc{word-spacing:7.289967pt;}
.wse{word-spacing:7.449368pt;}
.wsd{word-spacing:7.768171pt;}
.ws16{word-spacing:9.999794pt;}
.ws17{word-spacing:13.070931pt;}
.ws1c{word-spacing:15.005042pt;}
.ws13{word-spacing:15.780758pt;}
.ws2{word-spacing:16.306893pt;}
.ws3{word-spacing:16.354714pt;}
.ws1e{word-spacing:17.640444pt;}
.ws1a{word-spacing:17.693578pt;}
.ws9{word-spacing:20.297137pt;}
.ws4{word-spacing:20.722347pt;}
.ws6{word-spacing:20.786108pt;}
.ws1f{word-spacing:21.941892pt;}
.wsa{word-spacing:21.944287pt;}
.ws20{word-spacing:21.947442pt;}
.ws11{word-spacing:23.846639pt;}
.ws15{word-spacing:24.707248pt;}
.ws1{word-spacing:27.636455pt;}
.ws7{word-spacing:28.615887pt;}
._5{margin-left:-32.986662pt;}
._8{margin-left:-25.683607pt;}
._11{margin-left:-7.192228pt;}
._e{margin-left:-5.993540pt;}
._6{margin-left:-5.051237pt;}
._7{margin-left:-3.443098pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.291162pt;}
._4{width:1.434624pt;}
._2{width:2.387202pt;}
._d{width:16.589884pt;}
._10{width:18.608971pt;}
._9{width:21.758464pt;}
._c{width:22.810378pt;}
._a{width:24.616929pt;}
._f{width:27.163533pt;}
._0{width:37.285935pt;}
._b{width:38.390727pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:54.637333pt;}
.y25{bottom:130.960000pt;}
.y24{bottom:147.997333pt;}
.y23{bottom:163.937333pt;}
.y22{bottom:179.878667pt;}
.y21{bottom:201.132000pt;}
.y20{bottom:217.072000pt;}
.y1f{bottom:246.296000pt;}
.y1e{bottom:262.236000pt;}
.y1d{bottom:278.176000pt;}
.y1c{bottom:304.742667pt;}
.y1b{bottom:320.684000pt;}
.y1a{bottom:336.624000pt;}
.y19{bottom:361.142667pt;}
.y18{bottom:398.328000pt;}
.y17{bottom:414.268000pt;}
.y16{bottom:430.208000pt;}
.y15{bottom:446.148000pt;}
.y14{bottom:462.088000pt;}
.y13{bottom:478.028000pt;}
.y12{bottom:493.969333pt;}
.y11{bottom:509.909333pt;}
.y10{bottom:525.849333pt;}
.yf{bottom:541.789333pt;}
.ye{bottom:570.884000pt;}
.y37{bottom:574.398667pt;}
.y36{bottom:590.338667pt;}
.y35{bottom:619.433333pt;}
.y34{bottom:663.361333pt;}
.yd{bottom:666.382667pt;}
.y33{bottom:679.301333pt;}
.yc{bottom:680.994667pt;}
.y32{bottom:695.241333pt;}
.yb{bottom:695.606667pt;}
.ya{bottom:710.218667pt;}
.y31{bottom:719.761333pt;}
.y9{bottom:724.830667pt;}
.y8{bottom:739.442667pt;}
.y7{bottom:754.054667pt;}
.y30{bottom:756.945333pt;}
.y2f{bottom:772.885333pt;}
.y6{bottom:776.870667pt;}
.y5{bottom:795.468000pt;}
.y2e{bottom:799.453333pt;}
.y2d{bottom:815.393333pt;}
.y4{bottom:833.990667pt;}
.y2c{bottom:841.960000pt;}
.y3{bottom:855.908000pt;}
.y2b{bottom:863.213333pt;}
.y2{bottom:877.825333pt;}
.y2a{bottom:889.781333pt;}
.y1{bottom:899.744000pt;}
.y29{bottom:905.721333pt;}
.y28{bottom:932.288000pt;}
.y27{bottom:948.228000pt;}
.h9{height:16.877733pt;}
.h5{height:21.519360pt;}
.h2{height:35.865600pt;}
.h7{height:39.850400pt;}
.h8{height:44.632747pt;}
.h6{height:53.559147pt;}
.h3{height:55.016400pt;}
.h4{height:55.021733pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.488000pt;}
.x1{left:102.608000pt;}
.x5{left:106.494667pt;}
.x11{left:109.278667pt;}
.x6{left:110.733333pt;}
.xe{left:114.413333pt;}
.xf{left:127.697333pt;}
.x2{left:142.781333pt;}
.x10{left:156.921333pt;}
.x9{left:184.782667pt;}
.x7{left:218.842667pt;}
.xa{left:236.317333pt;}
.x8{left:238.073333pt;}
.xb{left:248.640000pt;}
.xc{left:262.548000pt;}
.x4{left:264.346667pt;}
.x3{left:281.342667pt;}
.x12{left:404.678667pt;}
}




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