
    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_9a3a50c6c1a511bc3297bbd6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_729db48427f30381803820be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_eeebbb62eefc79aedd252faf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_62c14354f4acb5a083aa9218.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_7012ad79a7aeb7aecd35f3fc.woff')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_c2d822a76bd255c157069ae6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9c19b42d98c0eea89edbdff0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_abe92aa727e603876099c67b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f6207dbee0f5cd53f6a5a955.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.ls3{letter-spacing:3.420000px;}
.ls2{letter-spacing:4.320000px;}
.ls8{letter-spacing:33.984000px;}
.ls0{letter-spacing:64.920000px;}
.ls1{letter-spacing:194.544000px;}
.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;}
}
.ws5{word-spacing:-21.438600px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-12.870960px;}
._2b{margin-left:-9.585120px;}
._1{margin-left:-7.908720px;}
._2{margin-left:-6.821280px;}
._4{margin-left:-5.752800px;}
._9{margin-left:-3.884880px;}
._0{margin-left:-2.527200px;}
._3{margin-left:-1.010880px;}
._8{width:1.644000px;}
._5{width:3.144000px;}
._a{width:4.373280px;}
._f{width:5.922720px;}
._c{width:7.224000px;}
._b{width:8.256000px;}
._10{width:9.326880px;}
._11{width:10.361520px;}
._6{width:12.096000px;}
._7{width:13.104000px;}
._18{width:14.602080px;}
._19{width:17.933040px;}
._d{width:19.296000px;}
._e{width:21.476160px;}
._28{width:22.492080px;}
._20{width:24.008400px;}
._21{width:25.010160px;}
._24{width:26.301120px;}
._22{width:27.621120px;}
._17{width:30.410640px;}
._16{width:31.421520px;}
._26{width:32.534400px;}
._15{width:34.706880px;}
._1e{width:35.717760px;}
._1f{width:36.728640px;}
._1b{width:38.329200px;}
._27{width:39.592800px;}
._2a{width:40.948080px;}
._1c{width:42.035760px;}
._1d{width:43.365360px;}
._12{width:45.152640px;}
._13{width:49.617360px;}
._14{width:50.796720px;}
._23{width:59.557680px;}
._1a{width:72.699120px;}
._25{width:1358.220000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y45{bottom:18.900000px;}
.y37{bottom:19.080000px;}
.y41{bottom:19.110000px;}
.y3{bottom:23.976000px;}
.y39{bottom:30.960000px;}
.y3f{bottom:30.990000px;}
.y2{bottom:31.176000px;}
.y3a{bottom:42.840000px;}
.y40{bottom:42.870000px;}
.y3c{bottom:43.020000px;}
.y2d{bottom:70.956000px;}
.y35{bottom:79.380000px;}
.y4d{bottom:91.656000px;}
.y2c{bottom:98.676000px;}
.y4c{bottom:119.556000px;}
.y2b{bottom:126.396000px;}
.y4b{bottom:147.276000px;}
.y2a{bottom:154.110000px;}
.y4a{bottom:174.990000px;}
.y29{bottom:182.010000px;}
.y66{bottom:190.650000px;}
.y49{bottom:202.890000px;}
.y28{bottom:209.730000px;}
.y65{bottom:226.830000px;}
.y48{bottom:230.610000px;}
.y27{bottom:237.450000px;}
.y64{bottom:250.410000px;}
.y47{bottom:258.330000px;}
.y26{bottom:265.350000px;}
.y63{bottom:271.110000px;}
.y46{bottom:286.095000px;}
.y62{bottom:291.855000px;}
.y25{bottom:293.115000px;}
.y44{bottom:306.615000px;}
.y61{bottom:312.555000px;}
.y24{bottom:320.835000px;}
.y60{bottom:333.255000px;}
.y23{bottom:348.555000px;}
.y5f{bottom:353.955000px;}
.y43{bottom:366.915000px;}
.y5e{bottom:374.655000px;}
.y22{bottom:376.455000px;}
.y5d{bottom:395.355000px;}
.y21{bottom:404.175000px;}
.y5c{bottom:416.595000px;}
.y42{bottom:427.215000px;}
.y20{bottom:431.895000px;}
.y5b{bottom:436.215000px;}
.y1f{bottom:459.615000px;}
.y5a{bottom:463.935000px;}
.y1e{bottom:487.515000px;}
.y59{bottom:491.655000px;}
.y1d{bottom:515.235000px;}
.y58{bottom:519.375000px;}
.y1c{bottom:542.955000px;}
.y57{bottom:547.275000px;}
.y3e{bottom:547.995000px;}
.y1b{bottom:570.885000px;}
.y56{bottom:575.025000px;}
.y1a{bottom:598.605000px;}
.y55{bottom:602.745000px;}
.y3d{bottom:608.325000px;}
.y19{bottom:626.325000px;}
.y54{bottom:630.645000px;}
.y18{bottom:648.285000px;}
.y53{bottom:658.365000px;}
.y17{bottom:661.965000px;}
.y3b{bottom:668.625000px;}
.y16{bottom:682.665000px;}
.y52{bottom:686.085000px;}
.y15{bottom:703.365000px;}
.y51{bottom:713.805000px;}
.y14{bottom:724.065000px;}
.y34{bottom:729.105000px;}
.y50{bottom:741.705000px;}
.y13{bottom:744.765000px;}
.y12{bottom:765.465000px;}
.y4f{bottom:769.425000px;}
.y11{bottom:786.165000px;}
.y38{bottom:789.405000px;}
.y4e{bottom:804.705000px;}
.y10{bottom:806.865000px;}
.yf{bottom:827.565000px;}
.ye{bottom:848.310000px;}
.y36{bottom:849.750000px;}
.yd{bottom:869.010000px;}
.yc{bottom:889.710000px;}
.y33{bottom:906.450000px;}
.yb{bottom:910.410000px;}
.y32{bottom:934.350000px;}
.ya{bottom:951.810000px;}
.y31{bottom:962.070000px;}
.y30{bottom:989.790000px;}
.y9{bottom:993.210000px;}
.y8{bottom:1013.910000px;}
.y2f{bottom:1017.510000px;}
.y7{bottom:1033.170000px;}
.y2e{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hb{height:35.820000px;}
.h11{height:47.344922px;}
.h5{height:48.616875px;}
.he{height:50.800781px;}
.h8{height:52.628906px;}
.h9{height:58.819922px;}
.hd{height:59.580000px;}
.hc{height:59.616000px;}
.h10{height:59.760000px;}
.h7{height:70.628906px;}
.hf{height:70.664062px;}
.h6{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.ha{height:156.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:41.760000px;}
.we{width:42.120000px;}
.w16{width:52.416000px;}
.w14{width:52.560000px;}
.w12{width:52.776000px;}
.w10{width:52.920000px;}
.w15{width:63.000000px;}
.wb{width:63.036000px;}
.w13{width:63.180000px;}
.w11{width:63.360000px;}
.wf{width:63.396000px;}
.wd{width:63.540000px;}
.w3{width:75.816000px;}
.w6{width:105.516000px;}
.w7{width:106.020000px;}
.w4{width:115.740000px;}
.w9{width:116.496000px;}
.w8{width:116.676000px;}
.wa{width:127.260000px;}
.w5{width:573.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.460000px;}
.x11{left:10.440000px;}
.xf{left:11.880000px;}
.x1b{left:15.660000px;}
.x3{left:22.140000px;}
.x20{left:23.940000px;}
.x15{left:25.920000px;}
.xc{left:29.880000px;}
.x17{left:31.680000px;}
.x13{left:39.990000px;}
.x18{left:41.220000px;}
.x1{left:84.959987px;}
.x24{left:90.035987px;}
.xb{left:101.556000px;}
.x21{left:105.155987px;}
.x25{left:117.035987px;}
.x4{left:120.815987px;}
.x9{left:138.095987px;}
.xa{left:158.969987px;}
.xe{left:186.705000px;}
.xd{left:218.190000px;}
.x1a{left:281.955000px;}
.x23{left:309.134987px;}
.x10{left:324.075000px;}
.x7{left:333.074987px;}
.x1c{left:387.975000px;}
.x5{left:396.794987px;}
.x22{left:404.354987px;}
.x2{left:409.035000px;}
.x12{left:430.455000px;}
.x6{left:446.474987px;}
.x8{left:451.694987px;}
.x1d{left:494.205000px;}
.x14{left:547.485000px;}
.x1e{left:611.205000px;}
.x16{left:664.350000px;}
.x1f{left:728.250000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.ls3{letter-spacing:3.040000pt;}
.ls2{letter-spacing:3.840000pt;}
.ls8{letter-spacing:30.208000pt;}
.ls0{letter-spacing:57.706667pt;}
.ls1{letter-spacing:172.928000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-11.440853pt;}
._2b{margin-left:-8.520107pt;}
._1{margin-left:-7.029973pt;}
._2{margin-left:-6.063360pt;}
._4{margin-left:-5.113600pt;}
._9{margin-left:-3.453227pt;}
._0{margin-left:-2.246400pt;}
._3{margin-left:-0.898560pt;}
._8{width:1.461333pt;}
._5{width:2.794667pt;}
._a{width:3.887360pt;}
._f{width:5.264640pt;}
._c{width:6.421333pt;}
._b{width:7.338667pt;}
._10{width:8.290560pt;}
._11{width:9.210240pt;}
._6{width:10.752000pt;}
._7{width:11.648000pt;}
._18{width:12.979627pt;}
._19{width:15.940480pt;}
._d{width:17.152000pt;}
._e{width:19.089920pt;}
._28{width:19.992960pt;}
._20{width:21.340800pt;}
._21{width:22.231253pt;}
._24{width:23.378773pt;}
._22{width:24.552107pt;}
._17{width:27.031680pt;}
._16{width:27.930240pt;}
._26{width:28.919467pt;}
._15{width:30.850560pt;}
._1e{width:31.749120pt;}
._1f{width:32.647680pt;}
._1b{width:34.070400pt;}
._27{width:35.193600pt;}
._2a{width:36.398293pt;}
._1c{width:37.365120pt;}
._1d{width:38.546987pt;}
._12{width:40.135680pt;}
._13{width:44.104320pt;}
._14{width:45.152640pt;}
._23{width:52.940160pt;}
._1a{width:64.621440pt;}
._25{width:1207.306667pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y45{bottom:16.800000pt;}
.y37{bottom:16.960000pt;}
.y41{bottom:16.986667pt;}
.y3{bottom:21.312000pt;}
.y39{bottom:27.520000pt;}
.y3f{bottom:27.546667pt;}
.y2{bottom:27.712000pt;}
.y3a{bottom:38.080000pt;}
.y40{bottom:38.106667pt;}
.y3c{bottom:38.240000pt;}
.y2d{bottom:63.072000pt;}
.y35{bottom:70.560000pt;}
.y4d{bottom:81.472000pt;}
.y2c{bottom:87.712000pt;}
.y4c{bottom:106.272000pt;}
.y2b{bottom:112.352000pt;}
.y4b{bottom:130.912000pt;}
.y2a{bottom:136.986667pt;}
.y4a{bottom:155.546667pt;}
.y29{bottom:161.786667pt;}
.y66{bottom:169.466667pt;}
.y49{bottom:180.346667pt;}
.y28{bottom:186.426667pt;}
.y65{bottom:201.626667pt;}
.y48{bottom:204.986667pt;}
.y27{bottom:211.066667pt;}
.y64{bottom:222.586667pt;}
.y47{bottom:229.626667pt;}
.y26{bottom:235.866667pt;}
.y63{bottom:240.986667pt;}
.y46{bottom:254.306667pt;}
.y62{bottom:259.426667pt;}
.y25{bottom:260.546667pt;}
.y44{bottom:272.546667pt;}
.y61{bottom:277.826667pt;}
.y24{bottom:285.186667pt;}
.y60{bottom:296.226667pt;}
.y23{bottom:309.826667pt;}
.y5f{bottom:314.626667pt;}
.y43{bottom:326.146667pt;}
.y5e{bottom:333.026667pt;}
.y22{bottom:334.626667pt;}
.y5d{bottom:351.426667pt;}
.y21{bottom:359.266667pt;}
.y5c{bottom:370.306667pt;}
.y42{bottom:379.746667pt;}
.y20{bottom:383.906667pt;}
.y5b{bottom:387.746667pt;}
.y1f{bottom:408.546667pt;}
.y5a{bottom:412.386667pt;}
.y1e{bottom:433.346667pt;}
.y59{bottom:437.026667pt;}
.y1d{bottom:457.986667pt;}
.y58{bottom:461.666667pt;}
.y1c{bottom:482.626667pt;}
.y57{bottom:486.466667pt;}
.y3e{bottom:487.106667pt;}
.y1b{bottom:507.453333pt;}
.y56{bottom:511.133333pt;}
.y1a{bottom:532.093333pt;}
.y55{bottom:535.773333pt;}
.y3d{bottom:540.733333pt;}
.y19{bottom:556.733333pt;}
.y54{bottom:560.573333pt;}
.y18{bottom:576.253333pt;}
.y53{bottom:585.213333pt;}
.y17{bottom:588.413333pt;}
.y3b{bottom:594.333333pt;}
.y16{bottom:606.813333pt;}
.y52{bottom:609.853333pt;}
.y15{bottom:625.213333pt;}
.y51{bottom:634.493333pt;}
.y14{bottom:643.613333pt;}
.y34{bottom:648.093333pt;}
.y50{bottom:659.293333pt;}
.y13{bottom:662.013333pt;}
.y12{bottom:680.413333pt;}
.y4f{bottom:683.933333pt;}
.y11{bottom:698.813333pt;}
.y38{bottom:701.693333pt;}
.y4e{bottom:715.293333pt;}
.y10{bottom:717.213333pt;}
.yf{bottom:735.613333pt;}
.ye{bottom:754.053333pt;}
.y36{bottom:755.333333pt;}
.yd{bottom:772.453333pt;}
.yc{bottom:790.853333pt;}
.y33{bottom:805.733333pt;}
.yb{bottom:809.253333pt;}
.y32{bottom:830.533333pt;}
.ya{bottom:846.053333pt;}
.y31{bottom:855.173333pt;}
.y30{bottom:879.813333pt;}
.y9{bottom:882.853333pt;}
.y8{bottom:901.253333pt;}
.y2f{bottom:904.453333pt;}
.y7{bottom:918.373333pt;}
.y2e{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hb{height:31.840000pt;}
.h11{height:42.084375pt;}
.h5{height:43.215000pt;}
.he{height:45.156250pt;}
.h8{height:46.781250pt;}
.h9{height:52.284375pt;}
.hd{height:52.960000pt;}
.hc{height:52.992000pt;}
.h10{height:53.120000pt;}
.h7{height:62.781250pt;}
.hf{height:62.812500pt;}
.h6{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.ha{height:139.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:37.120000pt;}
.we{width:37.440000pt;}
.w16{width:46.592000pt;}
.w14{width:46.720000pt;}
.w12{width:46.912000pt;}
.w10{width:47.040000pt;}
.w15{width:56.000000pt;}
.wb{width:56.032000pt;}
.w13{width:56.160000pt;}
.w11{width:56.320000pt;}
.wf{width:56.352000pt;}
.wd{width:56.480000pt;}
.w3{width:67.392000pt;}
.w6{width:93.792000pt;}
.w7{width:94.240000pt;}
.w4{width:102.880000pt;}
.w9{width:103.552000pt;}
.w8{width:103.712000pt;}
.wa{width:113.120000pt;}
.w5{width:509.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.520000pt;}
.x11{left:9.280000pt;}
.xf{left:10.560000pt;}
.x1b{left:13.920000pt;}
.x3{left:19.680000pt;}
.x20{left:21.280000pt;}
.x15{left:23.040000pt;}
.xc{left:26.560000pt;}
.x17{left:28.160000pt;}
.x13{left:35.546667pt;}
.x18{left:36.640000pt;}
.x1{left:75.519988pt;}
.x24{left:80.031988pt;}
.xb{left:90.272000pt;}
.x21{left:93.471988pt;}
.x25{left:104.031988pt;}
.x4{left:107.391988pt;}
.x9{left:122.751988pt;}
.xa{left:141.306655pt;}
.xe{left:165.960000pt;}
.xd{left:193.946667pt;}
.x1a{left:250.626667pt;}
.x23{left:274.786655pt;}
.x10{left:288.066667pt;}
.x7{left:296.066655pt;}
.x1c{left:344.866667pt;}
.x5{left:352.706655pt;}
.x22{left:359.426655pt;}
.x2{left:363.586667pt;}
.x12{left:382.626667pt;}
.x6{left:396.866655pt;}
.x8{left:401.506655pt;}
.x1d{left:439.293333pt;}
.x14{left:486.653333pt;}
.x1e{left:543.293333pt;}
.x16{left:590.533333pt;}
.x1f{left:647.333333pt;}
}




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