
    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_e99c897751107fcc600c61b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_60820ccf9e876c9d76621731.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_12017d78cb7d5b96e46fa1c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_9cfa1caecb7a2e2bf78e4010.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_f8440c4217b9f8647c73a086.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_cce4e3f4fd8b14362690ab18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_56b3d3a06999a4838c4b30f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_1e63cfe78ee4c573af37338d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.342144px;}
.ls2e{letter-spacing:-0.310464px;}
.ls1c{letter-spacing:-0.297792px;}
.ls23{letter-spacing:-0.285120px;}
.ls14{letter-spacing:-0.266112px;}
.ls38{letter-spacing:-0.253440px;}
.lsd{letter-spacing:-0.234432px;}
.lsf{letter-spacing:-0.221760px;}
.ls18{letter-spacing:-0.215424px;}
.ls12{letter-spacing:-0.209088px;}
.ls22{letter-spacing:-0.202752px;}
.ls9{letter-spacing:-0.196416px;}
.ls8{letter-spacing:-0.190080px;}
.ls17{letter-spacing:-0.183744px;}
.ls2c{letter-spacing:-0.177408px;}
.ls16{letter-spacing:-0.171072px;}
.lsa{letter-spacing:-0.164736px;}
.ls10{letter-spacing:-0.158400px;}
.ls19{letter-spacing:-0.152064px;}
.ls11{letter-spacing:-0.145728px;}
.ls6{letter-spacing:-0.133056px;}
.ls1a{letter-spacing:-0.126720px;}
.ls13{letter-spacing:-0.120384px;}
.ls15{letter-spacing:-0.101376px;}
.lse{letter-spacing:-0.095040px;}
.ls28{letter-spacing:-0.069696px;}
.ls24{letter-spacing:-0.063360px;}
.ls1b{letter-spacing:-0.050688px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.283968px;}
.lsc{letter-spacing:0.317376px;}
.ls2{letter-spacing:0.891360px;}
.ls26{letter-spacing:0.973440px;}
.ls35{letter-spacing:1.038240px;}
.ls34{letter-spacing:1.293120px;}
.ls2b{letter-spacing:1.804320px;}
.ls30{letter-spacing:2.211840px;}
.ls20{letter-spacing:2.249424px;}
.ls25{letter-spacing:2.308320px;}
.ls33{letter-spacing:2.361600px;}
.ls2a{letter-spacing:2.466288px;}
.ls31{letter-spacing:2.576016px;}
.ls1e{letter-spacing:3.238560px;}
.ls1f{letter-spacing:3.424320px;}
.ls27{letter-spacing:3.523824px;}
.ls5{letter-spacing:4.259232px;}
.ls2f{letter-spacing:5.047488px;}
.ls21{letter-spacing:5.374080px;}
.ls29{letter-spacing:6.813936px;}
.ls2d{letter-spacing:11.354976px;}
.ls37{letter-spacing:12.039840px;}
.ls36{letter-spacing:33.721488px;}
.ls32{letter-spacing:65.652048px;}
.ls3{letter-spacing:78.910416px;}
.ls4{letter-spacing:81.357552px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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:-14.319360px;}
.ws12{word-spacing:-14.268672px;}
.ws11{word-spacing:-14.224320px;}
.wsf{word-spacing:-14.217984px;}
.ws10{word-spacing:-14.198976px;}
.wse{word-spacing:-14.186304px;}
.ws5{word-spacing:-14.173632px;}
.ws13{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws4{word-spacing:-14.148288px;}
.wsd{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.wsb{word-spacing:-14.122944px;}
.ws9{word-spacing:-14.116608px;}
.wsc{word-spacing:-14.103936px;}
.ws3{word-spacing:-14.097600px;}
.ws14{word-spacing:-14.084928px;}
.wsa{word-spacing:-14.034240px;}
.ws6{word-spacing:-0.063360px;}
.ws7{word-spacing:-0.060480px;}
.ws8{word-spacing:0.000000px;}
._15{margin-left:-4.498560px;}
._f{margin-left:-3.421440px;}
._9{margin-left:-2.280960px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._6{width:2.597760px;}
._5{width:3.611520px;}
._d{width:4.663728px;}
._a{width:5.917392px;}
._7{width:6.969600px;}
._8{width:8.300160px;}
._e{width:9.313920px;}
._3{width:10.454400px;}
._4{width:11.480688px;}
._b{width:12.672000px;}
._12{width:15.840000px;}
._c{width:16.853760px;}
._11{width:18.184320px;}
._13{width:20.211840px;}
._10{width:21.795840px;}
._14{width:23.696640px;}
._16{width:26.611200px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y37{bottom:93.240000px;}
.y6f{bottom:105.480000px;}
.y36{bottom:112.320000px;}
.y6e{bottom:124.920000px;}
.y35{bottom:131.400000px;}
.y6d{bottom:144.000000px;}
.y34{bottom:150.840000px;}
.y6c{bottom:163.440000px;}
.y33{bottom:169.920000px;}
.y6b{bottom:182.520000px;}
.y32{bottom:189.360000px;}
.y6a{bottom:201.600000px;}
.y31{bottom:208.440000px;}
.y69{bottom:221.040000px;}
.y30{bottom:227.520000px;}
.y68{bottom:240.120000px;}
.y2f{bottom:246.960000px;}
.y67{bottom:259.560000px;}
.y2e{bottom:266.040000px;}
.y66{bottom:278.640000px;}
.y2d{bottom:285.480000px;}
.y65{bottom:297.720000px;}
.y2c{bottom:304.560000px;}
.y64{bottom:317.160000px;}
.y2b{bottom:324.720000px;}
.y63{bottom:336.240000px;}
.y2a{bottom:344.880000px;}
.y62{bottom:355.680000px;}
.y29{bottom:364.320000px;}
.y61{bottom:374.760000px;}
.y28{bottom:383.400000px;}
.y60{bottom:394.200000px;}
.y27{bottom:402.840000px;}
.y5f{bottom:413.280000px;}
.y26{bottom:421.920000px;}
.y5e{bottom:432.360000px;}
.y25{bottom:441.000000px;}
.y5d{bottom:451.800000px;}
.y24{bottom:460.440000px;}
.y5c{bottom:470.880000px;}
.y23{bottom:479.520000px;}
.y5b{bottom:490.320000px;}
.y22{bottom:498.960000px;}
.y5a{bottom:509.400000px;}
.y21{bottom:518.040000px;}
.y59{bottom:528.480000px;}
.y20{bottom:537.120000px;}
.y58{bottom:547.920000px;}
.y1f{bottom:556.560000px;}
.y57{bottom:567.000000px;}
.y1e{bottom:575.640000px;}
.y56{bottom:586.440000px;}
.y1d{bottom:595.080000px;}
.y55{bottom:605.520000px;}
.y1c{bottom:614.160000px;}
.y54{bottom:624.600000px;}
.y1b{bottom:633.240000px;}
.y53{bottom:644.040000px;}
.y1a{bottom:652.680000px;}
.y52{bottom:663.120000px;}
.y19{bottom:671.760000px;}
.y51{bottom:682.560000px;}
.y18{bottom:691.200000px;}
.y50{bottom:701.640000px;}
.y17{bottom:710.280000px;}
.y4f{bottom:720.720000px;}
.y16{bottom:729.360000px;}
.y4e{bottom:740.160000px;}
.y15{bottom:748.800000px;}
.y4d{bottom:759.240000px;}
.y14{bottom:767.880000px;}
.y4c{bottom:778.680000px;}
.y13{bottom:787.320000px;}
.y4b{bottom:797.760000px;}
.y12{bottom:806.400000px;}
.y4a{bottom:816.840000px;}
.y11{bottom:825.480000px;}
.y49{bottom:836.280000px;}
.y10{bottom:844.920000px;}
.y48{bottom:855.360000px;}
.yf{bottom:864.000000px;}
.y47{bottom:874.800000px;}
.ye{bottom:883.440000px;}
.y46{bottom:893.880000px;}
.yd{bottom:902.520000px;}
.y45{bottom:912.960000px;}
.yc{bottom:921.600000px;}
.y44{bottom:932.400000px;}
.yb{bottom:941.040000px;}
.y43{bottom:951.480000px;}
.ya{bottom:960.120000px;}
.y42{bottom:970.920000px;}
.y9{bottom:979.560000px;}
.y41{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y40{bottom:1009.440000px;}
.y7{bottom:1024.920000px;}
.y3f{bottom:1028.520000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3b{bottom:1105.560000px;}
.y3a{bottom:1124.640000px;}
.y39{bottom:1143.720000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h3{height:43.312500px;}
.h5{height:43.900313px;}
.h2{height:45.478125px;}
.h4{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:62.009748px;}
.xa{left:84.959856px;}
.x4{left:106.184700px;}
.x5{left:107.226576px;}
.x9{left:131.710320px;}
.x3{left:181.064592px;}
.x6{left:227.874024px;}
.x2{left:442.885680px;}
.x7{left:683.870760px;}
.x8{left:804.284640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.304128pt;}
.ls2e{letter-spacing:-0.275968pt;}
.ls1c{letter-spacing:-0.264704pt;}
.ls23{letter-spacing:-0.253440pt;}
.ls14{letter-spacing:-0.236544pt;}
.ls38{letter-spacing:-0.225280pt;}
.lsd{letter-spacing:-0.208384pt;}
.lsf{letter-spacing:-0.197120pt;}
.ls18{letter-spacing:-0.191488pt;}
.ls12{letter-spacing:-0.185856pt;}
.ls22{letter-spacing:-0.180224pt;}
.ls9{letter-spacing:-0.174592pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls17{letter-spacing:-0.163328pt;}
.ls2c{letter-spacing:-0.157696pt;}
.ls16{letter-spacing:-0.152064pt;}
.lsa{letter-spacing:-0.146432pt;}
.ls10{letter-spacing:-0.140800pt;}
.ls19{letter-spacing:-0.135168pt;}
.ls11{letter-spacing:-0.129536pt;}
.ls6{letter-spacing:-0.118272pt;}
.ls1a{letter-spacing:-0.112640pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls15{letter-spacing:-0.090112pt;}
.lse{letter-spacing:-0.084480pt;}
.ls28{letter-spacing:-0.061952pt;}
.ls24{letter-spacing:-0.056320pt;}
.ls1b{letter-spacing:-0.045056pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.252416pt;}
.lsc{letter-spacing:0.282112pt;}
.ls2{letter-spacing:0.792320pt;}
.ls26{letter-spacing:0.865280pt;}
.ls35{letter-spacing:0.922880pt;}
.ls34{letter-spacing:1.149440pt;}
.ls2b{letter-spacing:1.603840pt;}
.ls30{letter-spacing:1.966080pt;}
.ls20{letter-spacing:1.999488pt;}
.ls25{letter-spacing:2.051840pt;}
.ls33{letter-spacing:2.099200pt;}
.ls2a{letter-spacing:2.192256pt;}
.ls31{letter-spacing:2.289792pt;}
.ls1e{letter-spacing:2.878720pt;}
.ls1f{letter-spacing:3.043840pt;}
.ls27{letter-spacing:3.132288pt;}
.ls5{letter-spacing:3.785984pt;}
.ls2f{letter-spacing:4.486656pt;}
.ls21{letter-spacing:4.776960pt;}
.ls29{letter-spacing:6.056832pt;}
.ls2d{letter-spacing:10.093312pt;}
.ls37{letter-spacing:10.702080pt;}
.ls36{letter-spacing:29.974656pt;}
.ls32{letter-spacing:58.357376pt;}
.ls3{letter-spacing:70.142592pt;}
.ls4{letter-spacing:72.317824pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws12{word-spacing:-12.683264pt;}
.ws11{word-spacing:-12.643840pt;}
.wsf{word-spacing:-12.638208pt;}
.ws10{word-spacing:-12.621312pt;}
.wse{word-spacing:-12.610048pt;}
.ws5{word-spacing:-12.598784pt;}
.ws13{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws4{word-spacing:-12.576256pt;}
.wsd{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.wsb{word-spacing:-12.553728pt;}
.ws9{word-spacing:-12.548096pt;}
.wsc{word-spacing:-12.536832pt;}
.ws3{word-spacing:-12.531200pt;}
.ws14{word-spacing:-12.519936pt;}
.wsa{word-spacing:-12.474880pt;}
.ws6{word-spacing:-0.056320pt;}
.ws7{word-spacing:-0.053760pt;}
.ws8{word-spacing:0.000000pt;}
._15{margin-left:-3.998720pt;}
._f{margin-left:-3.041280pt;}
._9{margin-left:-2.027520pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._6{width:2.309120pt;}
._5{width:3.210240pt;}
._d{width:4.145536pt;}
._a{width:5.259904pt;}
._7{width:6.195200pt;}
._8{width:7.377920pt;}
._e{width:8.279040pt;}
._3{width:9.292800pt;}
._4{width:10.205056pt;}
._b{width:11.264000pt;}
._12{width:14.080000pt;}
._c{width:14.981120pt;}
._11{width:16.163840pt;}
._13{width:17.966080pt;}
._10{width:19.374080pt;}
._14{width:21.063680pt;}
._16{width:23.654400pt;}
._1{width:2203.165184pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y37{bottom:82.880000pt;}
.y6f{bottom:93.760000pt;}
.y36{bottom:99.840000pt;}
.y6e{bottom:111.040000pt;}
.y35{bottom:116.800000pt;}
.y6d{bottom:128.000000pt;}
.y34{bottom:134.080000pt;}
.y6c{bottom:145.280000pt;}
.y33{bottom:151.040000pt;}
.y6b{bottom:162.240000pt;}
.y32{bottom:168.320000pt;}
.y6a{bottom:179.200000pt;}
.y31{bottom:185.280000pt;}
.y69{bottom:196.480000pt;}
.y30{bottom:202.240000pt;}
.y68{bottom:213.440000pt;}
.y2f{bottom:219.520000pt;}
.y67{bottom:230.720000pt;}
.y2e{bottom:236.480000pt;}
.y66{bottom:247.680000pt;}
.y2d{bottom:253.760000pt;}
.y65{bottom:264.640000pt;}
.y2c{bottom:270.720000pt;}
.y64{bottom:281.920000pt;}
.y2b{bottom:288.640000pt;}
.y63{bottom:298.880000pt;}
.y2a{bottom:306.560000pt;}
.y62{bottom:316.160000pt;}
.y29{bottom:323.840000pt;}
.y61{bottom:333.120000pt;}
.y28{bottom:340.800000pt;}
.y60{bottom:350.400000pt;}
.y27{bottom:358.080000pt;}
.y5f{bottom:367.360000pt;}
.y26{bottom:375.040000pt;}
.y5e{bottom:384.320000pt;}
.y25{bottom:392.000000pt;}
.y5d{bottom:401.600000pt;}
.y24{bottom:409.280000pt;}
.y5c{bottom:418.560000pt;}
.y23{bottom:426.240000pt;}
.y5b{bottom:435.840000pt;}
.y22{bottom:443.520000pt;}
.y5a{bottom:452.800000pt;}
.y21{bottom:460.480000pt;}
.y59{bottom:469.760000pt;}
.y20{bottom:477.440000pt;}
.y58{bottom:487.040000pt;}
.y1f{bottom:494.720000pt;}
.y57{bottom:504.000000pt;}
.y1e{bottom:511.680000pt;}
.y56{bottom:521.280000pt;}
.y1d{bottom:528.960000pt;}
.y55{bottom:538.240000pt;}
.y1c{bottom:545.920000pt;}
.y54{bottom:555.200000pt;}
.y1b{bottom:562.880000pt;}
.y53{bottom:572.480000pt;}
.y1a{bottom:580.160000pt;}
.y52{bottom:589.440000pt;}
.y19{bottom:597.120000pt;}
.y51{bottom:606.720000pt;}
.y18{bottom:614.400000pt;}
.y50{bottom:623.680000pt;}
.y17{bottom:631.360000pt;}
.y4f{bottom:640.640000pt;}
.y16{bottom:648.320000pt;}
.y4e{bottom:657.920000pt;}
.y15{bottom:665.600000pt;}
.y4d{bottom:674.880000pt;}
.y14{bottom:682.560000pt;}
.y4c{bottom:692.160000pt;}
.y13{bottom:699.840000pt;}
.y4b{bottom:709.120000pt;}
.y12{bottom:716.800000pt;}
.y4a{bottom:726.080000pt;}
.y11{bottom:733.760000pt;}
.y49{bottom:743.360000pt;}
.y10{bottom:751.040000pt;}
.y48{bottom:760.320000pt;}
.yf{bottom:768.000000pt;}
.y47{bottom:777.600000pt;}
.ye{bottom:785.280000pt;}
.y46{bottom:794.560000pt;}
.yd{bottom:802.240000pt;}
.y45{bottom:811.520000pt;}
.yc{bottom:819.200000pt;}
.y44{bottom:828.800000pt;}
.yb{bottom:836.480000pt;}
.y43{bottom:845.760000pt;}
.ya{bottom:853.440000pt;}
.y42{bottom:863.040000pt;}
.y9{bottom:870.720000pt;}
.y41{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y40{bottom:897.280000pt;}
.y7{bottom:911.040000pt;}
.y3f{bottom:914.240000pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3b{bottom:982.720000pt;}
.y3a{bottom:999.680000pt;}
.y39{bottom:1016.640000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h3{height:38.500000pt;}
.h5{height:39.022500pt;}
.h2{height:40.425000pt;}
.h4{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:55.119776pt;}
.xa{left:75.519872pt;}
.x4{left:94.386400pt;}
.x5{left:95.312512pt;}
.x9{left:117.075840pt;}
.x3{left:160.946304pt;}
.x6{left:202.554688pt;}
.x2{left:393.676160pt;}
.x7{left:607.885120pt;}
.x8{left:714.919680pt;}
}




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