
    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_50324482bedf43fcf13f8b8e.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_061895d6cf2fe40e8f4f3893.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_d27d3b030fa947d914f94daf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2243b15043a4aad858717ef7.woff2')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_9c0101c5230bb28c7ac403ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a4267b0f0d5a48dbf6c99e6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_1ff75cf50b686217fdd1d1d1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a34b70474eb6f7cdf16daf55.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_01005efb1373ce50a93b8a49.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;}
.ls20{letter-spacing:-1.620000px;}
.ls18{letter-spacing:-1.404000px;}
.ls17{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.750000px;}
.ls4{letter-spacing:-0.738000px;}
.ls1d{letter-spacing:-0.684000px;}
.ls1c{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.350400px;}
.lsf{letter-spacing:-0.341400px;}
.ls2{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.028080px;}
.ls5{letter-spacing:-0.018720px;}
.ls23{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.037440px;}
.ls19{letter-spacing:0.148080px;}
.ls1a{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.208080px;}
.ls9{letter-spacing:0.217440px;}
.ls11{letter-spacing:0.252720px;}
.ls10{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.378600px;}
.ls21{letter-spacing:0.378720px;}
.ls8{letter-spacing:0.504000px;}
.ls24{letter-spacing:1.260000px;}
.ls1f{letter-spacing:2.700000px;}
.ls13{letter-spacing:3.420000px;}
.ls12{letter-spacing:17.820000px;}
.ls7{letter-spacing:23.580000px;}
.ls16{letter-spacing:33.660000px;}
.lse{letter-spacing:35.820000px;}
.ls14{letter-spacing:37.980000px;}
.ls15{letter-spacing:44.460000px;}
.ls1b{letter-spacing:72.540000px;}
.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;}
}
.ws3{word-spacing:-84.221280px;}
.ws2{word-spacing:-83.502000px;}
.ws0{word-spacing:-24.300000px;}
.ws13{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.401400px;}
.wsd{word-spacing:-21.312720px;}
.ws9{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws14{word-spacing:-21.050640px;}
.ws8{word-spacing:-21.041280px;}
.ws12{word-spacing:-21.031920px;}
.wsf{word-spacing:-20.880000px;}
.wsb{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.709600px;}
.ws5{word-spacing:-20.700000px;}
.ws10{word-spacing:-20.681400px;}
.ws11{word-spacing:-20.376000px;}
.wse{word-spacing:-20.322000px;}
.wsa{word-spacing:-20.310000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-5.307120px;}
._10{margin-left:-4.043520px;}
._1f{margin-left:-2.833440px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._6{width:2.990400px;}
._15{width:4.068480px;}
._a{width:5.644080px;}
._b{width:6.739200px;}
._17{width:8.400720px;}
._16{width:9.541440px;}
._26{width:12.260160px;}
._20{width:13.723680px;}
._c{width:14.742000px;}
._27{width:15.822720px;}
._7{width:16.828560px;}
._8{width:18.036480px;}
._e{width:19.543680px;}
._25{width:22.227600px;}
._12{width:23.587200px;}
._1a{width:24.860880px;}
._2b{width:26.836320px;}
._24{width:28.218240px;}
._d{width:29.344080px;}
._4{width:30.459360px;}
._18{width:31.599120px;}
._23{width:33.291120px;}
._1c{width:34.921440px;}
._1d{width:35.998320px;}
._19{width:37.398720px;}
._1b{width:38.615520px;}
._36{width:39.915360px;}
._21{width:44.248080px;}
._22{width:45.300000px;}
._2{width:46.753200px;}
._3{width:47.766240px;}
._2a{width:51.554880px;}
._28{width:56.946240px;}
._29{width:58.125600px;}
._32{width:66.003120px;}
._2c{width:72.913440px;}
._31{width:77.500800px;}
._14{width:81.965520px;}
._13{width:82.976400px;}
._9{width:84.036000px;}
._5{width:95.359680px;}
._f{width:100.161360px;}
._2d{width:103.867920px;}
._2e{width:105.552720px;}
._33{width:116.335440px;}
._34{width:117.578160px;}
._35{width:138.318480px;}
._1e{width:141.800160px;}
._30{width:166.822560px;}
._2f{width:167.890320px;}
.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;}
.y6{bottom:34.200000px;}
.y26{bottom:117.396000px;}
.y25{bottom:153.570000px;}
.y30{bottom:189.750000px;}
.y24{bottom:189.930000px;}
.y2f{bottom:225.930000px;}
.y23{bottom:226.110000px;}
.y22{bottom:262.290000px;}
.y21{bottom:298.470000px;}
.y20{bottom:334.650000px;}
.y2e{bottom:370.875000px;}
.y1f{bottom:371.055000px;}
.y1e{bottom:407.235000px;}
.y1d{bottom:443.415000px;}
.y1c{bottom:479.595000px;}
.y2d{bottom:515.775000px;}
.y1b{bottom:515.955000px;}
.y2c{bottom:551.955000px;}
.y1a{bottom:552.135000px;}
.y19{bottom:588.315000px;}
.y18{bottom:624.525000px;}
.y2b{bottom:660.705000px;}
.y17{bottom:660.885000px;}
.y2a{bottom:696.885000px;}
.y16{bottom:697.065000px;}
.y15{bottom:733.245000px;}
.y14{bottom:769.425000px;}
.y13{bottom:805.605000px;}
.y29{bottom:841.785000px;}
.y12{bottom:841.965000px;}
.y11{bottom:878.190000px;}
.y10{bottom:914.370000px;}
.yf{bottom:950.550000px;}
.y28{bottom:986.730000px;}
.ye{bottom:986.910000px;}
.y27{bottom:1022.910000px;}
.yd{bottom:1023.090000px;}
.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;}
.h8{height:47.344922px;}
.h3{height:62.028281px;}
.hc{height:73.463203px;}
.hd{height:74.244727px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h6{height:83.787539px;}
.h9{height:84.898125px;}
.he{height:86.585445px;}
.h7{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.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;}
.x9{left:19.800000px;}
.x7{left:28.620000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x4{left:98.850000px;}
.x14{left:106.235987px;}
.x2{left:110.376000px;}
.x10{left:127.475987px;}
.xc{left:171.929987px;}
.xb{left:261.029987px;}
.xd{left:262.829987px;}
.x13{left:271.109987px;}
.xe{left:302.114987px;}
.xf{left:373.574987px;}
.x12{left:378.434987px;}
.x11{left:392.654987px;}
.xa{left:446.474987px;}
.x3{left:457.095000px;}
.x8{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.440000pt;}
.ls18{letter-spacing:-1.248000pt;}
.ls17{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.666667pt;}
.ls4{letter-spacing:-0.656000pt;}
.ls1d{letter-spacing:-0.608000pt;}
.ls1c{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.311467pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls23{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.033280pt;}
.ls19{letter-spacing:0.131627pt;}
.ls1a{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.184960pt;}
.ls9{letter-spacing:0.193280pt;}
.ls11{letter-spacing:0.224640pt;}
.ls10{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.336533pt;}
.ls21{letter-spacing:0.336640pt;}
.ls8{letter-spacing:0.448000pt;}
.ls24{letter-spacing:1.120000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls13{letter-spacing:3.040000pt;}
.ls12{letter-spacing:15.840000pt;}
.ls7{letter-spacing:20.960000pt;}
.ls16{letter-spacing:29.920000pt;}
.lse{letter-spacing:31.840000pt;}
.ls14{letter-spacing:33.760000pt;}
.ls15{letter-spacing:39.520000pt;}
.ls1b{letter-spacing:64.480000pt;}
.ws3{word-spacing:-74.863360pt;}
.ws2{word-spacing:-74.224000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws13{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.wsc{word-spacing:-19.023467pt;}
.wsd{word-spacing:-18.944640pt;}
.ws9{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws14{word-spacing:-18.711680pt;}
.ws8{word-spacing:-18.703360pt;}
.ws12{word-spacing:-18.695040pt;}
.wsf{word-spacing:-18.560000pt;}
.wsb{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.408533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws10{word-spacing:-18.383467pt;}
.ws11{word-spacing:-18.112000pt;}
.wse{word-spacing:-18.064000pt;}
.wsa{word-spacing:-18.053333pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-4.717440pt;}
._10{margin-left:-3.594240pt;}
._1f{margin-left:-2.518613pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._6{width:2.658133pt;}
._15{width:3.616427pt;}
._a{width:5.016960pt;}
._b{width:5.990400pt;}
._17{width:7.467307pt;}
._16{width:8.481280pt;}
._26{width:10.897920pt;}
._20{width:12.198827pt;}
._c{width:13.104000pt;}
._27{width:14.064640pt;}
._7{width:14.958720pt;}
._8{width:16.032427pt;}
._e{width:17.372160pt;}
._25{width:19.757867pt;}
._12{width:20.966400pt;}
._1a{width:22.098560pt;}
._2b{width:23.854507pt;}
._24{width:25.082880pt;}
._d{width:26.083627pt;}
._4{width:27.074987pt;}
._18{width:28.088107pt;}
._23{width:29.592107pt;}
._1c{width:31.041280pt;}
._1d{width:31.998507pt;}
._19{width:33.243307pt;}
._1b{width:34.324907pt;}
._36{width:35.480320pt;}
._21{width:39.331627pt;}
._22{width:40.266667pt;}
._2{width:41.558400pt;}
._3{width:42.458880pt;}
._2a{width:45.826560pt;}
._28{width:50.618880pt;}
._29{width:51.667200pt;}
._32{width:58.669440pt;}
._2c{width:64.811947pt;}
._31{width:68.889600pt;}
._14{width:72.858240pt;}
._13{width:73.756800pt;}
._9{width:74.698667pt;}
._5{width:84.764160pt;}
._f{width:89.032320pt;}
._2d{width:92.327040pt;}
._2e{width:93.824640pt;}
._33{width:103.409280pt;}
._34{width:104.513920pt;}
._35{width:122.949760pt;}
._1e{width:126.044587pt;}
._30{width:148.286720pt;}
._2f{width:149.235840pt;}
.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;}
.y6{bottom:30.400000pt;}
.y26{bottom:104.352000pt;}
.y25{bottom:136.506667pt;}
.y30{bottom:168.666667pt;}
.y24{bottom:168.826667pt;}
.y2f{bottom:200.826667pt;}
.y23{bottom:200.986667pt;}
.y22{bottom:233.146667pt;}
.y21{bottom:265.306667pt;}
.y20{bottom:297.466667pt;}
.y2e{bottom:329.666667pt;}
.y1f{bottom:329.826667pt;}
.y1e{bottom:361.986667pt;}
.y1d{bottom:394.146667pt;}
.y1c{bottom:426.306667pt;}
.y2d{bottom:458.466667pt;}
.y1b{bottom:458.626667pt;}
.y2c{bottom:490.626667pt;}
.y1a{bottom:490.786667pt;}
.y19{bottom:522.946667pt;}
.y18{bottom:555.133333pt;}
.y2b{bottom:587.293333pt;}
.y17{bottom:587.453333pt;}
.y2a{bottom:619.453333pt;}
.y16{bottom:619.613333pt;}
.y15{bottom:651.773333pt;}
.y14{bottom:683.933333pt;}
.y13{bottom:716.093333pt;}
.y29{bottom:748.253333pt;}
.y12{bottom:748.413333pt;}
.y11{bottom:780.613333pt;}
.y10{bottom:812.773333pt;}
.yf{bottom:844.933333pt;}
.y28{bottom:877.093333pt;}
.ye{bottom:877.253333pt;}
.y27{bottom:909.253333pt;}
.yd{bottom:909.413333pt;}
.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;}
.h8{height:42.084375pt;}
.h3{height:55.136250pt;}
.hc{height:65.300625pt;}
.hd{height:65.995312pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h6{height:74.477812pt;}
.h9{height:75.465000pt;}
.he{height:76.964840pt;}
.h7{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.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;}
.x9{left:17.600000pt;}
.x7{left:25.440000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x4{left:87.866667pt;}
.x14{left:94.431988pt;}
.x2{left:98.112000pt;}
.x10{left:113.311988pt;}
.xc{left:152.826655pt;}
.xb{left:232.026655pt;}
.xd{left:233.626655pt;}
.x13{left:240.986655pt;}
.xe{left:268.546655pt;}
.xf{left:332.066655pt;}
.x12{left:336.386655pt;}
.x11{left:349.026655pt;}
.xa{left:396.866655pt;}
.x3{left:406.306667pt;}
.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; }
  