
    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_c748bf7110056d400d2b880b.woff2')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_b3d4a7e930d2497e6196add9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e46c06649c999cf39d137fe7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24526af875751eb5e4ba66b3.woff2')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_92867d71491be4aa8762a717.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947754;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_fcce1e9e9e2faafa437b9883.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_94d9f71073cf7605653be66b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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_5272f9255a858f34799edc83.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_843a7285fddfcfbbb24f6bd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947266;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_02b84fcf0b505b676fc506ee.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v1{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.345600px;}
.ls18{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.273600px;}
.ls17{letter-spacing:-0.100800px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.158400px;}
.ls16{letter-spacing:0.172800px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.316800px;}
.ls13{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.374400px;}
.lsd{letter-spacing:0.388800px;}
.ls9{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.876000px;}
.lsb{letter-spacing:1.756800px;}
.lse{letter-spacing:3.916800px;}
.lsc{letter-spacing:9.676800px;}
.lsa{letter-spacing:187.334400px;}
.ls3{letter-spacing:2695.219200px;}
.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:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.318400px;}
.ws9{word-spacing:-20.030400px;}
.wsc{word-spacing:-19.999200px;}
.ws11{word-spacing:-19.497600px;}
.wse{word-spacing:-19.454400px;}
.ws14{word-spacing:-19.296000px;}
.wsa{word-spacing:-19.281600px;}
.wsb{word-spacing:-19.195200px;}
.wsf{word-spacing:-19.123200px;}
.ws15{word-spacing:-19.022400px;}
.ws10{word-spacing:-18.835200px;}
.ws13{word-spacing:-18.820800px;}
.ws16{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.777600px;}
.ws12{word-spacing:-17.928000px;}
.ws18{word-spacing:-17.654400px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws17{word-spacing:-12.441600px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.034160px;}
._3{width:1.015920px;}
._4{width:2.292720px;}
._b{width:3.525840px;}
._16{width:4.552560px;}
._c{width:5.555520px;}
._12{width:6.872400px;}
._13{width:8.069760px;}
._14{width:9.102960px;}
._10{width:10.251360px;}
._11{width:11.334240px;}
._18{width:12.549600px;}
._f{width:14.282640px;}
._e{width:15.387600px;}
._d{width:16.852320px;}
._17{width:21.086400px;}
._19{width:23.246640px;}
._15{width:25.487040px;}
._9{width:31.508160px;}
._8{width:33.047280px;}
._6{width:93.270240px;}
._7{width:94.590000px;}
._5{width:149.880000px;}
._a{width:196.852800px;}
._1{width:394.893120px;}
._2{width:1053.360000px;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:4.500000px;}
.y6b{bottom:52.920000px;}
.y36{bottom:55.980000px;}
.y5{bottom:57.600000px;}
.y4{bottom:77.400000px;}
.y6a{bottom:89.856000px;}
.y35{bottom:106.956000px;}
.y69{bottom:110.916000px;}
.y34{bottom:128.016000px;}
.y68{bottom:131.796000px;}
.y33{bottom:148.896000px;}
.y67{bottom:152.850000px;}
.y32{bottom:169.950000px;}
.y66{bottom:173.910000px;}
.y31{bottom:191.010000px;}
.y65{bottom:194.790000px;}
.y30{bottom:211.890000px;}
.y64{bottom:215.850000px;}
.y2f{bottom:232.950000px;}
.y63{bottom:236.910000px;}
.y2e{bottom:254.010000px;}
.y62{bottom:257.790000px;}
.y2d{bottom:274.890000px;}
.y61{bottom:278.850000px;}
.y2c{bottom:295.950000px;}
.y60{bottom:299.910000px;}
.y2b{bottom:317.010000px;}
.y5f{bottom:320.790000px;}
.y2a{bottom:337.890000px;}
.y5e{bottom:341.850000px;}
.y29{bottom:358.995000px;}
.y5d{bottom:362.955000px;}
.y28{bottom:380.055000px;}
.y5c{bottom:383.835000px;}
.y27{bottom:400.935000px;}
.y5b{bottom:404.895000px;}
.y26{bottom:421.995000px;}
.y5a{bottom:425.955000px;}
.y25{bottom:443.055000px;}
.y59{bottom:446.835000px;}
.y24{bottom:463.935000px;}
.y58{bottom:467.895000px;}
.y23{bottom:484.995000px;}
.y57{bottom:488.955000px;}
.y22{bottom:506.055000px;}
.y56{bottom:509.835000px;}
.y21{bottom:526.935000px;}
.y55{bottom:530.895000px;}
.y20{bottom:547.995000px;}
.y54{bottom:551.955000px;}
.y1f{bottom:569.055000px;}
.y53{bottom:572.835000px;}
.y1e{bottom:589.935000px;}
.y52{bottom:593.895000px;}
.y1d{bottom:610.995000px;}
.y51{bottom:614.985000px;}
.y1c{bottom:632.085000px;}
.y50{bottom:635.865000px;}
.y1b{bottom:652.965000px;}
.y4f{bottom:656.925000px;}
.y1a{bottom:674.025000px;}
.y4e{bottom:677.985000px;}
.y19{bottom:695.085000px;}
.y4d{bottom:698.865000px;}
.y18{bottom:715.965000px;}
.y4c{bottom:719.925000px;}
.y17{bottom:737.025000px;}
.y4b{bottom:740.985000px;}
.y16{bottom:758.085000px;}
.y4a{bottom:761.865000px;}
.y15{bottom:778.965000px;}
.y49{bottom:782.925000px;}
.y14{bottom:800.025000px;}
.y48{bottom:803.985000px;}
.y13{bottom:821.085000px;}
.y47{bottom:824.865000px;}
.y12{bottom:841.965000px;}
.y46{bottom:845.925000px;}
.y11{bottom:863.025000px;}
.y45{bottom:866.985000px;}
.y10{bottom:884.130000px;}
.y44{bottom:887.910000px;}
.yf{bottom:905.010000px;}
.y43{bottom:908.970000px;}
.ye{bottom:926.070000px;}
.y42{bottom:930.030000px;}
.yd{bottom:947.130000px;}
.y41{bottom:950.910000px;}
.yc{bottom:968.010000px;}
.y40{bottom:971.970000px;}
.yb{bottom:989.070000px;}
.y3f{bottom:993.030000px;}
.y3e{bottom:1013.910000px;}
.ya{bottom:1020.570000px;}
.y3d{bottom:1034.970000px;}
.y9{bottom:1042.890000px;}
.y3c{bottom:1056.030000px;}
.y8{bottom:1069.890000px;}
.y3b{bottom:1076.910000px;}
.y7{bottom:1096.890000px;}
.y3a{bottom:1097.970000px;}
.y39{bottom:1119.030000px;}
.y6{bottom:1123.890000px;}
.y38{bottom:1139.940000px;}
.y3{bottom:1151.280000px;}
.y2{bottom:1169.460000px;}
.y1{bottom:1190.880000px;}
.hb{height:20.698500px;}
.h9{height:42.806602px;}
.ha{height:42.835781px;}
.he{height:42.970078px;}
.h7{height:51.609375px;}
.h5{height:58.621992px;}
.h4{height:58.651172px;}
.h8{height:60.341836px;}
.hd{height:60.382969px;}
.h6{height:68.640469px;}
.hc{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:13.500000px;}
.w2{width:13.669500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.329500px;}
.x2{left:104.086500px;}
.x1{left:106.416000px;}
.x8{left:159.330000px;}
.x7{left:160.410000px;}
.x4{left:205.950000px;}
.x5{left:446.685000px;}
.x6{left:775.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.307200pt;}
.ls18{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.243200pt;}
.ls17{letter-spacing:-0.089600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.140800pt;}
.ls16{letter-spacing:0.153600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.281600pt;}
.ls13{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.332800pt;}
.lsd{letter-spacing:0.345600pt;}
.ls9{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.778667pt;}
.lsb{letter-spacing:1.561600pt;}
.lse{letter-spacing:3.481600pt;}
.lsc{letter-spacing:8.601600pt;}
.lsa{letter-spacing:166.519467pt;}
.ls3{letter-spacing:2395.750400pt;}
.ws3{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.060800pt;}
.ws9{word-spacing:-17.804800pt;}
.wsc{word-spacing:-17.777067pt;}
.ws11{word-spacing:-17.331200pt;}
.wse{word-spacing:-17.292800pt;}
.ws14{word-spacing:-17.152000pt;}
.wsa{word-spacing:-17.139200pt;}
.wsb{word-spacing:-17.062400pt;}
.wsf{word-spacing:-16.998400pt;}
.ws15{word-spacing:-16.908800pt;}
.ws10{word-spacing:-16.742400pt;}
.ws13{word-spacing:-16.729600pt;}
.ws16{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.691200pt;}
.ws12{word-spacing:-15.936000pt;}
.ws18{word-spacing:-15.692800pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws17{word-spacing:-11.059200pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.919253pt;}
._3{width:0.903040pt;}
._4{width:2.037973pt;}
._b{width:3.134080pt;}
._16{width:4.046720pt;}
._c{width:4.938240pt;}
._12{width:6.108800pt;}
._13{width:7.173120pt;}
._14{width:8.091520pt;}
._10{width:9.112320pt;}
._11{width:10.074880pt;}
._18{width:11.155200pt;}
._f{width:12.695680pt;}
._e{width:13.677867pt;}
._d{width:14.979840pt;}
._17{width:18.743467pt;}
._19{width:20.663680pt;}
._15{width:22.655147pt;}
._9{width:28.007253pt;}
._8{width:29.375360pt;}
._6{width:82.906880pt;}
._7{width:84.080000pt;}
._5{width:133.226667pt;}
._a{width:174.980267pt;}
._1{width:351.016107pt;}
._2{width:936.320000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:4.000000pt;}
.y6b{bottom:47.040000pt;}
.y36{bottom:49.760000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:68.800000pt;}
.y6a{bottom:79.872000pt;}
.y35{bottom:95.072000pt;}
.y69{bottom:98.592000pt;}
.y34{bottom:113.792000pt;}
.y68{bottom:117.152000pt;}
.y33{bottom:132.352000pt;}
.y67{bottom:135.866667pt;}
.y32{bottom:151.066667pt;}
.y66{bottom:154.586667pt;}
.y31{bottom:169.786667pt;}
.y65{bottom:173.146667pt;}
.y30{bottom:188.346667pt;}
.y64{bottom:191.866667pt;}
.y2f{bottom:207.066667pt;}
.y63{bottom:210.586667pt;}
.y2e{bottom:225.786667pt;}
.y62{bottom:229.146667pt;}
.y2d{bottom:244.346667pt;}
.y61{bottom:247.866667pt;}
.y2c{bottom:263.066667pt;}
.y60{bottom:266.586667pt;}
.y2b{bottom:281.786667pt;}
.y5f{bottom:285.146667pt;}
.y2a{bottom:300.346667pt;}
.y5e{bottom:303.866667pt;}
.y29{bottom:319.106667pt;}
.y5d{bottom:322.626667pt;}
.y28{bottom:337.826667pt;}
.y5c{bottom:341.186667pt;}
.y27{bottom:356.386667pt;}
.y5b{bottom:359.906667pt;}
.y26{bottom:375.106667pt;}
.y5a{bottom:378.626667pt;}
.y25{bottom:393.826667pt;}
.y59{bottom:397.186667pt;}
.y24{bottom:412.386667pt;}
.y58{bottom:415.906667pt;}
.y23{bottom:431.106667pt;}
.y57{bottom:434.626667pt;}
.y22{bottom:449.826667pt;}
.y56{bottom:453.186667pt;}
.y21{bottom:468.386667pt;}
.y55{bottom:471.906667pt;}
.y20{bottom:487.106667pt;}
.y54{bottom:490.626667pt;}
.y1f{bottom:505.826667pt;}
.y53{bottom:509.186667pt;}
.y1e{bottom:524.386667pt;}
.y52{bottom:527.906667pt;}
.y1d{bottom:543.106667pt;}
.y51{bottom:546.653333pt;}
.y1c{bottom:561.853333pt;}
.y50{bottom:565.213333pt;}
.y1b{bottom:580.413333pt;}
.y4f{bottom:583.933333pt;}
.y1a{bottom:599.133333pt;}
.y4e{bottom:602.653333pt;}
.y19{bottom:617.853333pt;}
.y4d{bottom:621.213333pt;}
.y18{bottom:636.413333pt;}
.y4c{bottom:639.933333pt;}
.y17{bottom:655.133333pt;}
.y4b{bottom:658.653333pt;}
.y16{bottom:673.853333pt;}
.y4a{bottom:677.213333pt;}
.y15{bottom:692.413333pt;}
.y49{bottom:695.933333pt;}
.y14{bottom:711.133333pt;}
.y48{bottom:714.653333pt;}
.y13{bottom:729.853333pt;}
.y47{bottom:733.213333pt;}
.y12{bottom:748.413333pt;}
.y46{bottom:751.933333pt;}
.y11{bottom:767.133333pt;}
.y45{bottom:770.653333pt;}
.y10{bottom:785.893333pt;}
.y44{bottom:789.253333pt;}
.yf{bottom:804.453333pt;}
.y43{bottom:807.973333pt;}
.ye{bottom:823.173333pt;}
.y42{bottom:826.693333pt;}
.yd{bottom:841.893333pt;}
.y41{bottom:845.253333pt;}
.yc{bottom:860.453333pt;}
.y40{bottom:863.973333pt;}
.yb{bottom:879.173333pt;}
.y3f{bottom:882.693333pt;}
.y3e{bottom:901.253333pt;}
.ya{bottom:907.173333pt;}
.y3d{bottom:919.973333pt;}
.y9{bottom:927.013333pt;}
.y3c{bottom:938.693333pt;}
.y8{bottom:951.013333pt;}
.y3b{bottom:957.253333pt;}
.y7{bottom:975.013333pt;}
.y3a{bottom:975.973333pt;}
.y39{bottom:994.693333pt;}
.y6{bottom:999.013333pt;}
.y38{bottom:1013.280000pt;}
.y3{bottom:1023.360000pt;}
.y2{bottom:1039.520000pt;}
.y1{bottom:1058.560000pt;}
.hb{height:18.398667pt;}
.h9{height:38.050313pt;}
.ha{height:38.076250pt;}
.he{height:38.195625pt;}
.h7{height:45.875000pt;}
.h5{height:52.108438pt;}
.h4{height:52.134375pt;}
.h8{height:53.637187pt;}
.hd{height:53.673750pt;}
.h6{height:61.013750pt;}
.hc{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:12.000000pt;}
.w2{width:12.150667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.070667pt;}
.x2{left:92.521333pt;}
.x1{left:94.592000pt;}
.x8{left:141.626667pt;}
.x7{left:142.586667pt;}
.x4{left:183.066667pt;}
.x5{left:397.053333pt;}
.x6{left:689.440000pt;}
}




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