
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_3c71da2c80ab0ab539507ef7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_eea909d3e0a5d587627b2866.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_30720a1405d87215e6f46af0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_1d4d8046c69c75faf126df17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_50d57a941a391038ff341f02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_d4dd25bb73242324710d754b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_72b59422f3cfb0964643fd18.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_dde69305250ad0e0562e21a0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ba94ee5804fd845a54649c01.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.369600px;}
.ls0{letter-spacing:0.378600px;}
.lsd{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.540000px;}
.ls19{letter-spacing:2.700000px;}
.ls6{letter-spacing:3.420000px;}
.ls2{letter-spacing:5.580000px;}
.ls9{letter-spacing:7.740000px;}
.ls17{letter-spacing:8.460000px;}
.ls10{letter-spacing:18.540000px;}
.ls7{letter-spacing:21.420000px;}
.ls8{letter-spacing:22.860000px;}
.lse{letter-spacing:25.020000px;}
.ls16{letter-spacing:39.420000px;}
.ls18{letter-spacing:40.661280px;}
.ls14{letter-spacing:41.357280px;}
.ls15{letter-spacing:72.540000px;}
.ls11{letter-spacing:156.756000px;}
.lsc{letter-spacing:163.956000px;}
.lsa{letter-spacing:168.077280px;}
.lsf{letter-spacing:184.836000px;}
.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:-24.300000px;}
.ws0{word-spacing:-21.438600px;}
.ws8{word-spacing:-21.429600px;}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.329400px;}
.ws6{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.031920px;}
.ws9{word-spacing:-20.700000px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-5.762880px;}
._29{margin-left:-4.648320px;}
._6{margin-left:-2.779920px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._13{width:2.591040px;}
._e{width:3.931680px;}
._d{width:5.644080px;}
._20{width:6.741360px;}
._1b{width:8.171280px;}
._10{width:9.182160px;}
._11{width:10.361520px;}
._a{width:12.383280px;}
._25{width:13.731120px;}
._24{width:15.078960px;}
._f{width:17.100720px;}
._9{width:19.122480px;}
._15{width:22.744800px;}
._23{width:24.176880px;}
._30{width:25.808880px;}
._1e{width:27.209520px;}
._21{width:28.978560px;}
._22{width:29.989440px;}
._27{width:31.253040px;}
._36{width:32.348160px;}
._38{width:33.443280px;}
._2a{width:34.503840px;}
._35{width:35.633520px;}
._1a{width:36.644400px;}
._3c{width:38.503440px;}
._7{width:40.098240px;}
._18{width:41.867280px;}
._1c{width:43.973280px;}
._1d{width:45.366240px;}
._14{width:47.344080px;}
._26{width:48.420000px;}
._34{width:49.440000px;}
._16{width:50.965200px;}
._17{width:51.976080px;}
._3{width:53.576640px;}
._2{width:54.671760px;}
._19{width:56.547600px;}
._4{width:61.410960px;}
._5{width:63.127200px;}
._32{width:64.557360px;}
._39{width:65.791440px;}
._3b{width:72.159120px;}
._2f{width:76.000800px;}
._2c{width:77.585040px;}
._2b{width:78.764400px;}
._3a{width:80.449200px;}
._12{width:81.881280px;}
._3f{width:84.576960px;}
._40{width:85.587840px;}
._42{width:87.609600px;}
._1f{width:93.843360px;}
._3d{width:95.830560px;}
._3e{width:97.034880px;}
._2d{width:113.598720px;}
._2e{width:115.806000px;}
._31{width:123.495840px;}
._c{width:142.281360px;}
._b{width:143.376480px;}
._33{width:144.808560px;}
._8{width:165.868560px;}
._41{width:190.466640px;}
._37{width:330.220800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y2d{bottom:16.554000px;}
.y28{bottom:16.560000px;}
.y2b{bottom:16.740000px;}
.y6{bottom:34.200000px;}
.y2e{bottom:113.616000px;}
.y26{bottom:117.396000px;}
.y2c{bottom:133.956000px;}
.y25{bottom:153.570000px;}
.y2a{bottom:170.850000px;}
.y24{bottom:189.750000px;}
.y29{bottom:207.930000px;}
.y23{bottom:225.930000px;}
.y27{bottom:244.830000px;}
.y22{bottom:262.290000px;}
.y21{bottom:298.470000px;}
.y20{bottom:334.650000px;}
.y1f{bottom:370.875000px;}
.y1e{bottom:407.235000px;}
.y1d{bottom:443.415000px;}
.y1c{bottom:479.595000px;}
.y1b{bottom:515.775000px;}
.y1a{bottom:551.955000px;}
.y19{bottom:588.315000px;}
.y18{bottom:624.525000px;}
.y17{bottom:660.705000px;}
.y16{bottom:696.885000px;}
.y15{bottom:733.245000px;}
.y14{bottom:769.425000px;}
.y13{bottom:805.605000px;}
.y12{bottom:841.785000px;}
.y11{bottom:878.190000px;}
.y10{bottom:914.370000px;}
.yf{bottom:950.550000px;}
.ye{bottom:986.730000px;}
.yd{bottom:1022.910000px;}
.yc{bottom:1059.270000px;}
.yb{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.h10{height:36.180000px;}
.h11{height:36.360000px;}
.h8{height:47.344922px;}
.hc{height:59.066719px;}
.h3{height:62.028281px;}
.he{height:69.432187px;}
.hb{height:72.846211px;}
.hd{height:82.635820px;}
.h9{height:82.676953px;}
.h6{height:83.787539px;}
.ha{height:84.898125px;}
.hf{height:86.585445px;}
.h7{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w9{width:213.870000px;}
.w8{width:214.050000px;}
.w7{width:310.215000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x7{left:17.100000px;}
.x9{left:19.800000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x15{left:97.415987px;}
.x4{left:98.850000px;}
.x11{left:104.975987px;}
.x1b{left:106.235987px;}
.x2{left:110.376000px;}
.x10{left:117.935987px;}
.xb{left:122.435987px;}
.xa{left:127.475987px;}
.x16{left:133.055987px;}
.xc{left:201.989987px;}
.x12{left:207.929987px;}
.x1a{left:210.629987px;}
.xf{left:298.154987px;}
.xd{left:324.074987px;}
.x13{left:352.514987px;}
.x14{left:378.434987px;}
.x17{left:392.654987px;}
.x18{left:396.795000px;}
.xe{left:446.474987px;}
.x3{left:457.095000px;}
.x19{left:611.565000px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.328533pt;}
.ls0{letter-spacing:0.336533pt;}
.lsd{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls19{letter-spacing:2.400000pt;}
.ls6{letter-spacing:3.040000pt;}
.ls2{letter-spacing:4.960000pt;}
.ls9{letter-spacing:6.880000pt;}
.ls17{letter-spacing:7.520000pt;}
.ls10{letter-spacing:16.480000pt;}
.ls7{letter-spacing:19.040000pt;}
.ls8{letter-spacing:20.320000pt;}
.lse{letter-spacing:22.240000pt;}
.ls16{letter-spacing:35.040000pt;}
.ls18{letter-spacing:36.143360pt;}
.ls14{letter-spacing:36.762027pt;}
.ls15{letter-spacing:64.480000pt;}
.ls11{letter-spacing:139.338667pt;}
.lsc{letter-spacing:145.738667pt;}
.lsa{letter-spacing:149.402027pt;}
.lsf{letter-spacing:164.298667pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws8{word-spacing:-19.048533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.959467pt;}
.ws6{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.400000pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-5.122560pt;}
._29{margin-left:-4.131840pt;}
._6{margin-left:-2.471040pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._13{width:2.303147pt;}
._e{width:3.494827pt;}
._d{width:5.016960pt;}
._20{width:5.992320pt;}
._1b{width:7.263360pt;}
._10{width:8.161920pt;}
._11{width:9.210240pt;}
._a{width:11.007360pt;}
._25{width:12.205440pt;}
._24{width:13.403520pt;}
._f{width:15.200640pt;}
._9{width:16.997760pt;}
._15{width:20.217600pt;}
._23{width:21.490560pt;}
._30{width:22.941227pt;}
._1e{width:24.186240pt;}
._21{width:25.758720pt;}
._22{width:26.657280pt;}
._27{width:27.780480pt;}
._36{width:28.753920pt;}
._38{width:29.727360pt;}
._2a{width:30.670080pt;}
._35{width:31.674240pt;}
._1a{width:32.572800pt;}
._3c{width:34.225280pt;}
._7{width:35.642880pt;}
._18{width:37.215360pt;}
._1c{width:39.087360pt;}
._1d{width:40.325547pt;}
._14{width:42.083627pt;}
._26{width:43.040000pt;}
._34{width:43.946667pt;}
._16{width:45.302400pt;}
._17{width:46.200960pt;}
._3{width:47.623680pt;}
._2{width:48.597120pt;}
._19{width:50.264533pt;}
._4{width:54.587520pt;}
._5{width:56.113067pt;}
._32{width:57.384320pt;}
._39{width:58.481280pt;}
._3b{width:64.141440pt;}
._2f{width:67.556267pt;}
._2c{width:68.964480pt;}
._2b{width:70.012800pt;}
._3a{width:71.510400pt;}
._12{width:72.783360pt;}
._3f{width:75.179520pt;}
._40{width:76.078080pt;}
._42{width:77.875200pt;}
._1f{width:83.416320pt;}
._3d{width:85.182720pt;}
._3e{width:86.253227pt;}
._2d{width:100.976640pt;}
._2e{width:102.938667pt;}
._31{width:109.774080pt;}
._c{width:126.472320pt;}
._b{width:127.445760pt;}
._33{width:128.718720pt;}
._8{width:147.438720pt;}
._41{width:169.303680pt;}
._37{width:293.529600pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y2d{bottom:14.714667pt;}
.y28{bottom:14.720000pt;}
.y2b{bottom:14.880000pt;}
.y6{bottom:30.400000pt;}
.y2e{bottom:100.992000pt;}
.y26{bottom:104.352000pt;}
.y2c{bottom:119.072000pt;}
.y25{bottom:136.506667pt;}
.y2a{bottom:151.866667pt;}
.y24{bottom:168.666667pt;}
.y29{bottom:184.826667pt;}
.y23{bottom:200.826667pt;}
.y27{bottom:217.626667pt;}
.y22{bottom:233.146667pt;}
.y21{bottom:265.306667pt;}
.y20{bottom:297.466667pt;}
.y1f{bottom:329.666667pt;}
.y1e{bottom:361.986667pt;}
.y1d{bottom:394.146667pt;}
.y1c{bottom:426.306667pt;}
.y1b{bottom:458.466667pt;}
.y1a{bottom:490.626667pt;}
.y19{bottom:522.946667pt;}
.y18{bottom:555.133333pt;}
.y17{bottom:587.293333pt;}
.y16{bottom:619.453333pt;}
.y15{bottom:651.773333pt;}
.y14{bottom:683.933333pt;}
.y13{bottom:716.093333pt;}
.y12{bottom:748.253333pt;}
.y11{bottom:780.613333pt;}
.y10{bottom:812.773333pt;}
.yf{bottom:844.933333pt;}
.ye{bottom:877.093333pt;}
.yd{bottom:909.253333pt;}
.yc{bottom:941.573333pt;}
.yb{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.h10{height:32.160000pt;}
.h11{height:32.320000pt;}
.h8{height:42.084375pt;}
.hc{height:52.503750pt;}
.h3{height:55.136250pt;}
.he{height:61.717500pt;}
.hb{height:64.752187pt;}
.hd{height:73.454062pt;}
.h9{height:73.490625pt;}
.h6{height:74.477812pt;}
.ha{height:75.465000pt;}
.hf{height:76.964840pt;}
.h7{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w9{width:190.106667pt;}
.w8{width:190.266667pt;}
.w7{width:275.746667pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x7{left:15.200000pt;}
.x9{left:17.600000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x15{left:86.591988pt;}
.x4{left:87.866667pt;}
.x11{left:93.311988pt;}
.x1b{left:94.431988pt;}
.x2{left:98.112000pt;}
.x10{left:104.831988pt;}
.xb{left:108.831988pt;}
.xa{left:113.311988pt;}
.x16{left:118.271988pt;}
.xc{left:179.546655pt;}
.x12{left:184.826655pt;}
.x1a{left:187.226655pt;}
.xf{left:265.026655pt;}
.xd{left:288.066655pt;}
.x13{left:313.346655pt;}
.x14{left:336.386655pt;}
.x17{left:349.026655pt;}
.x18{left:352.706667pt;}
.xe{left:396.866655pt;}
.x3{left:406.306667pt;}
.x19{left:543.613333pt;}
.x8{left:708.933333pt;}
}




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