
    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_9ea00587c6fd51dc9c961533.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_c0ed87f197d8380648c4bce7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974121;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_4c427d631df659f5d3431386.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_8db8003dd70b1f6a6314b244.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_3f0370618e1800a9f4018ece.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974121;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-50.400000px;}
.v8{vertical-align:-48.960000px;}
.v4{vertical-align:-45.360000px;}
.v6{vertical-align:-34.560000px;}
.v3{vertical-align:-2.040000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:34.560000px;}
.v5{vertical-align:45.360000px;}
.v9{vertical-align:48.960000px;}
.v1{vertical-align:90.000000px;}
.ls10{letter-spacing:-0.368400px;}
.ls12{letter-spacing:-0.165000px;}
.ls13{letter-spacing:-0.144000px;}
.lse{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.063360px;}
.ls14{letter-spacing:0.115200px;}
.ls5{letter-spacing:0.172800px;}
.ls8{letter-spacing:0.195840px;}
.ls0{letter-spacing:0.236160px;}
.lsf{letter-spacing:0.236400px;}
.ls6{letter-spacing:1.163520px;}
.ls4{letter-spacing:5.337360px;}
.ls2{letter-spacing:8.820000px;}
.ls3{letter-spacing:9.342000px;}
.lsd{letter-spacing:9.450000px;}
.ls7{letter-spacing:10.134144px;}
.ls9{letter-spacing:20.603520px;}
.lsc{letter-spacing:70.650000px;}
.ls1{letter-spacing:101.700000px;}
.lsa{letter-spacing:160.781760px;}
.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;}
}
.wse{word-spacing:-55.218240px;}
.ws9{word-spacing:-55.032192px;}
.ws7{word-spacing:-54.996480px;}
.wsf{word-spacing:-52.778880px;}
.ws0{word-spacing:-49.639680px;}
.ws3{word-spacing:-48.787200px;}
.ws1{word-spacing:-41.604480px;}
.ws8{word-spacing:-41.439480px;}
.ws2{word-spacing:-41.236080px;}
.wsb{word-spacing:-36.907200px;}
.ws6{word-spacing:-35.640000px;}
.wsa{word-spacing:-35.496000px;}
.wsd{word-spacing:-27.043200px;}
.wsc{word-spacing:-26.928000px;}
.ws11{word-spacing:0.000000px;}
.ws10{word-spacing:12.634560px;}
.ws4{word-spacing:65.430000px;}
.ws5{word-spacing:366.204960px;}
._8{margin-left:-4587.155040px;}
._10{margin-left:-54.000000px;}
._7{margin-left:-9.195840px;}
._f{margin-left:-5.468256px;}
._6{margin-left:-4.328640px;}
._0{margin-left:-2.413680px;}
._1{margin-left:-1.380240px;}
._2{width:1.497600px;}
._4{width:2.707920px;}
._a{width:3.759600px;}
._3{width:5.027280px;}
._c{width:6.224400px;}
._b{width:8.587440px;}
._9{width:9.630000px;}
._11{width:63.031104px;}
._12{width:67.722240px;}
._d{width:106.967808px;}
._e{width:160.967808px;}
._5{width:755.962320px;}
.fc8{color:rgb(22,255,0);}
.fc6{color:rgb(230,94,0);}
.fc5{color:rgb(93,58,155);}
.fc4{color:rgb(15,45,93);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,56,255);}
.fc9{color:rgb(97,212,37);}
.fc7{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:112.320000px;}
.fs7{font-size:122.400000px;}
.fs5{font-size:162.000000px;}
.fs3{font-size:167.760000px;}
.fs9{font-size:175.104000px;}
.fs1{font-size:200.160000px;}
.fs4{font-size:221.760000px;}
.fs6{font-size:221.904000px;}
.fs8{font-size:239.904000px;}
.fs0{font-size:300.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:137.916000px;}
.ye{bottom:163.050000px;}
.y8{bottom:188.310000px;}
.yd{bottom:213.450000px;}
.y7{bottom:238.710000px;}
.yc{bottom:263.850000px;}
.y6{bottom:289.110000px;}
.yb{bottom:314.250000px;}
.y5{bottom:339.510000px;}
.ya{bottom:364.650000px;}
.y4{bottom:389.910000px;}
.y10{bottom:602.790000px;}
.yf{bottom:669.390000px;}
.y3a{bottom:746.460000px;}
.y17{bottom:757.725000px;}
.y14{bottom:783.615000px;}
.y39{bottom:813.060000px;}
.y38{bottom:879.660000px;}
.y19{bottom:948.450000px;}
.y11{bottom:983.370000px;}
.y37{bottom:1012.860000px;}
.y18{bottom:1015.050000px;}
.y36{bottom:1079.460000px;}
.y35{bottom:1212.660000px;}
.y34{bottom:1279.260000px;}
.y33{bottom:1345.860000px;}
.y16{bottom:1386.540000px;}
.y3b{bottom:1453.785000px;}
.y32{bottom:1479.060000px;}
.y15{bottom:1520.925000px;}
.y31{bottom:1545.660000px;}
.y12{bottom:1658.445000px;}
.y30{bottom:1678.890000px;}
.y13{bottom:1718.100000px;}
.y2f{bottom:1749.270000px;}
.y2e{bottom:2080.155000px;}
.y2d{bottom:2135.055000px;}
.y1b{bottom:2522.670000px;}
.y1a{bottom:2573.070000px;}
.y24{bottom:2738.370000px;}
.y27{bottom:2739.855000px;}
.y1e{bottom:2771.610000px;}
.y23{bottom:2805.870000px;}
.y28{bottom:2807.130000px;}
.y22{bottom:2872.470000px;}
.y2c{bottom:3141.390000px;}
.y1d{bottom:3269.055000px;}
.y1c{bottom:3335.685000px;}
.y26{bottom:3538.365000px;}
.y25{bottom:3538.545000px;}
.y29{bottom:3554.355000px;}
.y2b{bottom:3561.150000px;}
.y2a{bottom:3644.925000px;}
.y21{bottom:3781.290000px;}
.y20{bottom:3848.760000px;}
.y1f{bottom:3915.360000px;}
.y3{bottom:4292.430000px;}
.y2{bottom:4342.830000px;}
.y1{bottom:4443.090000px;}
.h3{height:90.108281px;}
.h4{height:127.622109px;}
.h5{height:134.584805px;}
.h9{height:141.383672px;}
.hb{height:168.702187px;}
.ha{height:168.811734px;}
.h7{height:177.906094px;}
.hc{height:178.021617px;}
.h8{height:186.893359px;}
.h6{height:186.893438px;}
.hd{height:202.184719px;}
.h2{height:250.577578px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:188.999947px;}
.xe{left:227.234947px;}
.x12{left:258.839947px;}
.x2c{left:293.579947px;}
.x13{left:344.699947px;}
.x2b{left:434.879947px;}
.x22{left:516.239947px;}
.x1a{left:592.274947px;}
.x1d{left:599.684947px;}
.x23{left:616.529947px;}
.x6{left:617.609947px;}
.xa{left:623.234947px;}
.x1e{left:645.269947px;}
.x19{left:664.994947px;}
.x1b{left:672.119947px;}
.x1c{left:693.104947px;}
.x3{left:700.889947px;}
.x2{left:800.249947px;}
.x7{left:840.989947px;}
.x10{left:1025.534947px;}
.xf{left:1039.574947px;}
.xd{left:1093.604947px;}
.xb{left:1094.864947px;}
.x1{left:1180.619947px;}
.x2a{left:1272.314947px;}
.x27{left:1321.484947px;}
.x11{left:1346.609947px;}
.x14{left:1372.349947px;}
.x4{left:1397.159947px;}
.x9{left:1405.439947px;}
.x15{left:1417.889947px;}
.xc{left:1473.809947px;}
.x18{left:1528.844947px;}
.x29{left:1641.239947px;}
.x28{left:1810.049947px;}
.x16{left:1989.149947px;}
.x17{left:1991.849947px;}
.x26{left:2393.384947px;}
.x2e{left:2447.609947px;}
.x2d{left:2458.229947px;}
.x20{left:2476.259947px;}
.x25{left:2532.524947px;}
.x24{left:2585.189947px;}
.x1f{left:2608.199947px;}
.x5{left:2717.744947px;}
.x21{left:3062.054947px;}
.x2f{left:3156.149947px;}
@media print{
.v2{vertical-align:-44.800000pt;}
.v8{vertical-align:-43.520000pt;}
.v4{vertical-align:-40.320000pt;}
.v6{vertical-align:-30.720000pt;}
.v3{vertical-align:-1.813333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:30.720000pt;}
.v5{vertical-align:40.320000pt;}
.v9{vertical-align:43.520000pt;}
.v1{vertical-align:80.000000pt;}
.ls10{letter-spacing:-0.327467pt;}
.ls12{letter-spacing:-0.146667pt;}
.ls13{letter-spacing:-0.128000pt;}
.lse{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.056320pt;}
.ls14{letter-spacing:0.102400pt;}
.ls5{letter-spacing:0.153600pt;}
.ls8{letter-spacing:0.174080pt;}
.ls0{letter-spacing:0.209920pt;}
.lsf{letter-spacing:0.210133pt;}
.ls6{letter-spacing:1.034240pt;}
.ls4{letter-spacing:4.744320pt;}
.ls2{letter-spacing:7.840000pt;}
.ls3{letter-spacing:8.304000pt;}
.lsd{letter-spacing:8.400000pt;}
.ls7{letter-spacing:9.008128pt;}
.ls9{letter-spacing:18.314240pt;}
.lsc{letter-spacing:62.800000pt;}
.ls1{letter-spacing:90.400000pt;}
.lsa{letter-spacing:142.917120pt;}
.wse{word-spacing:-49.082880pt;}
.ws9{word-spacing:-48.917504pt;}
.ws7{word-spacing:-48.885760pt;}
.wsf{word-spacing:-46.914560pt;}
.ws0{word-spacing:-44.124160pt;}
.ws3{word-spacing:-43.366400pt;}
.ws1{word-spacing:-36.981760pt;}
.ws8{word-spacing:-36.835093pt;}
.ws2{word-spacing:-36.654293pt;}
.wsb{word-spacing:-32.806400pt;}
.ws6{word-spacing:-31.680000pt;}
.wsa{word-spacing:-31.552000pt;}
.wsd{word-spacing:-24.038400pt;}
.wsc{word-spacing:-23.936000pt;}
.ws11{word-spacing:0.000000pt;}
.ws10{word-spacing:11.230720pt;}
.ws4{word-spacing:58.160000pt;}
.ws5{word-spacing:325.515520pt;}
._8{margin-left:-4077.471147pt;}
._10{margin-left:-48.000000pt;}
._7{margin-left:-8.174080pt;}
._f{margin-left:-4.860672pt;}
._6{margin-left:-3.847680pt;}
._0{margin-left:-2.145493pt;}
._1{margin-left:-1.226880pt;}
._2{width:1.331200pt;}
._4{width:2.407040pt;}
._a{width:3.341867pt;}
._3{width:4.468693pt;}
._c{width:5.532800pt;}
._b{width:7.633280pt;}
._9{width:8.560000pt;}
._11{width:56.027648pt;}
._12{width:60.197547pt;}
._d{width:95.082496pt;}
._e{width:143.082496pt;}
._5{width:671.966507pt;}
.fs2{font-size:99.840000pt;}
.fs7{font-size:108.800000pt;}
.fs5{font-size:144.000000pt;}
.fs3{font-size:149.120000pt;}
.fs9{font-size:155.648000pt;}
.fs1{font-size:177.920000pt;}
.fs4{font-size:197.120000pt;}
.fs6{font-size:197.248000pt;}
.fs8{font-size:213.248000pt;}
.fs0{font-size:266.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:122.592000pt;}
.ye{bottom:144.933333pt;}
.y8{bottom:167.386667pt;}
.yd{bottom:189.733333pt;}
.y7{bottom:212.186667pt;}
.yc{bottom:234.533333pt;}
.y6{bottom:256.986667pt;}
.yb{bottom:279.333333pt;}
.y5{bottom:301.786667pt;}
.ya{bottom:324.133333pt;}
.y4{bottom:346.586667pt;}
.y10{bottom:535.813333pt;}
.yf{bottom:595.013333pt;}
.y3a{bottom:663.520000pt;}
.y17{bottom:673.533333pt;}
.y14{bottom:696.546667pt;}
.y39{bottom:722.720000pt;}
.y38{bottom:781.920000pt;}
.y19{bottom:843.066667pt;}
.y11{bottom:874.106667pt;}
.y37{bottom:900.320000pt;}
.y18{bottom:902.266667pt;}
.y36{bottom:959.520000pt;}
.y35{bottom:1077.920000pt;}
.y34{bottom:1137.120000pt;}
.y33{bottom:1196.320000pt;}
.y16{bottom:1232.480000pt;}
.y3b{bottom:1292.253333pt;}
.y32{bottom:1314.720000pt;}
.y15{bottom:1351.933333pt;}
.y31{bottom:1373.920000pt;}
.y12{bottom:1474.173333pt;}
.y30{bottom:1492.346667pt;}
.y13{bottom:1527.200000pt;}
.y2f{bottom:1554.906667pt;}
.y2e{bottom:1849.026667pt;}
.y2d{bottom:1897.826667pt;}
.y1b{bottom:2242.373333pt;}
.y1a{bottom:2287.173333pt;}
.y24{bottom:2434.106667pt;}
.y27{bottom:2435.426667pt;}
.y1e{bottom:2463.653333pt;}
.y23{bottom:2494.106667pt;}
.y28{bottom:2495.226667pt;}
.y22{bottom:2553.306667pt;}
.y2c{bottom:2792.346667pt;}
.y1d{bottom:2905.826667pt;}
.y1c{bottom:2965.053333pt;}
.y26{bottom:3145.213333pt;}
.y25{bottom:3145.373333pt;}
.y29{bottom:3159.426667pt;}
.y2b{bottom:3165.466667pt;}
.y2a{bottom:3239.933333pt;}
.y21{bottom:3361.146667pt;}
.y20{bottom:3421.120000pt;}
.y1f{bottom:3480.320000pt;}
.y3{bottom:3815.493333pt;}
.y2{bottom:3860.293333pt;}
.y1{bottom:3949.413333pt;}
.h3{height:80.096250pt;}
.h4{height:113.441875pt;}
.h5{height:119.630937pt;}
.h9{height:125.674375pt;}
.hb{height:149.957500pt;}
.ha{height:150.054875pt;}
.h7{height:158.138750pt;}
.hc{height:158.241437pt;}
.h8{height:166.127431pt;}
.h6{height:166.127500pt;}
.hd{height:179.719750pt;}
.h2{height:222.735625pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:167.999953pt;}
.xe{left:201.986619pt;}
.x12{left:230.079953pt;}
.x2c{left:260.959953pt;}
.x13{left:306.399953pt;}
.x2b{left:386.559953pt;}
.x22{left:458.879953pt;}
.x1a{left:526.466619pt;}
.x1d{left:533.053286pt;}
.x23{left:548.026619pt;}
.x6{left:548.986619pt;}
.xa{left:553.986619pt;}
.x1e{left:573.573286pt;}
.x19{left:591.106619pt;}
.x1b{left:597.439953pt;}
.x1c{left:616.093286pt;}
.x3{left:623.013286pt;}
.x2{left:711.333286pt;}
.x7{left:747.546619pt;}
.x10{left:911.586619pt;}
.xf{left:924.066619pt;}
.xd{left:972.093286pt;}
.xb{left:973.213286pt;}
.x1{left:1049.439953pt;}
.x2a{left:1130.946619pt;}
.x27{left:1174.653286pt;}
.x11{left:1196.986619pt;}
.x14{left:1219.866619pt;}
.x4{left:1241.919953pt;}
.x9{left:1249.279953pt;}
.x15{left:1260.346619pt;}
.xc{left:1310.053286pt;}
.x18{left:1358.973286pt;}
.x29{left:1458.879953pt;}
.x28{left:1608.933286pt;}
.x16{left:1768.133286pt;}
.x17{left:1770.533286pt;}
.x26{left:2127.453286pt;}
.x2e{left:2175.653286pt;}
.x2d{left:2185.093286pt;}
.x20{left:2201.119953pt;}
.x25{left:2251.133286pt;}
.x24{left:2297.946619pt;}
.x1f{left:2318.399953pt;}
.x5{left:2415.773286pt;}
.x21{left:2721.826619pt;}
.x2f{left:2805.466619pt;}
}




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