
    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_8164c57da9c0ceb187bf73be.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_dc638458eaa177572a249b9c.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_e2cbc3ed6c44ac9a3d3a9a53.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_124452e8d53ec48f0298a264.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eaf49b94261240c581c17e2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.742188;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_d746d39ff972298c448e23a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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;}
.ls28{letter-spacing:-0.342144px;}
.ls2c{letter-spacing:-0.310464px;}
.ls12{letter-spacing:-0.297792px;}
.ls2a{letter-spacing:-0.285120px;}
.ls1a{letter-spacing:-0.266112px;}
.lsf{letter-spacing:-0.234432px;}
.ls2d{letter-spacing:-0.228096px;}
.ls10{letter-spacing:-0.221760px;}
.ls17{letter-spacing:-0.215424px;}
.lse{letter-spacing:-0.209088px;}
.ls26{letter-spacing:-0.202752px;}
.ls8{letter-spacing:-0.196416px;}
.ls7{letter-spacing:-0.190080px;}
.ls21{letter-spacing:-0.183744px;}
.lsd{letter-spacing:-0.177408px;}
.ls16{letter-spacing:-0.171072px;}
.ls9{letter-spacing:-0.164736px;}
.ls11{letter-spacing:-0.158400px;}
.ls18{letter-spacing:-0.152064px;}
.ls14{letter-spacing:-0.145728px;}
.ls2b{letter-spacing:-0.139392px;}
.ls5{letter-spacing:-0.133056px;}
.ls29{letter-spacing:-0.126720px;}
.ls15{letter-spacing:-0.120384px;}
.ls19{letter-spacing:-0.101376px;}
.ls1b{letter-spacing:-0.095040px;}
.ls27{letter-spacing:-0.088704px;}
.ls31{letter-spacing:-0.063360px;}
.ls13{letter-spacing:-0.050688px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.267264px;}
.lsc{letter-spacing:0.325728px;}
.lsa{letter-spacing:0.334080px;}
.ls2e{letter-spacing:1.432800px;}
.ls32{letter-spacing:1.944720px;}
.ls23{letter-spacing:3.137760px;}
.ls22{letter-spacing:5.722560px;}
.ls2f{letter-spacing:6.317280px;}
.ls3{letter-spacing:6.809760px;}
.ls25{letter-spacing:6.865344px;}
.ls1e{letter-spacing:7.414560px;}
.ls4{letter-spacing:7.527312px;}
.ls30{letter-spacing:10.301760px;}
.ls1f{letter-spacing:11.426688px;}
.ls24{letter-spacing:12.916800px;}
.ls20{letter-spacing:13.112640px;}
.ls1d{letter-spacing:15.942240px;}
.ls1c{letter-spacing:15.959520px;}
.ls33{letter-spacing:103.557600px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2068.961040px;}
.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.205728px;}
.ws1{word-spacing:-14.319360px;}
.wse{word-spacing:-14.268672px;}
.wsa{word-spacing:-14.224320px;}
.ws9{word-spacing:-14.217984px;}
.ws5{word-spacing:-14.198976px;}
.wsc{word-spacing:-14.186304px;}
.wsb{word-spacing:-14.173632px;}
.ws2{word-spacing:-14.154624px;}
.ws10{word-spacing:-14.148288px;}
.wsd{word-spacing:-14.141952px;}
.ws11{word-spacing:-14.135616px;}
.ws0{word-spacing:-14.129280px;}
.ws12{word-spacing:-14.122944px;}
.wsf{word-spacing:-14.116608px;}
.ws7{word-spacing:-14.110272px;}
.ws4{word-spacing:-14.097600px;}
.ws6{word-spacing:-0.063360px;}
.ws8{word-spacing:0.000000px;}
._b{margin-left:-4.118400px;}
._7{margin-left:-3.041280px;}
._16{margin-left:-2.027520px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._e{width:2.724480px;}
._f{width:4.055040px;}
._a{width:5.068800px;}
._d{width:6.074352px;}
._c{width:7.194096px;}
._5{width:8.300160px;}
._3{width:9.440640px;}
._4{width:10.454400px;}
._6{width:11.494080px;}
._8{width:12.880800px;}
._15{width:15.333120px;}
._14{width:16.536960px;}
._13{width:17.550720px;}
._9{width:18.944640px;}
._12{width:20.085120px;}
._11{width:21.098880px;}
._1b{width:22.239360px;}
._19{width:24.266880px;}
._1a{width:25.399872px;}
._28{width:26.547840px;}
._10{width:28.828800px;}
._17{width:33.960960px;}
._18{width:35.354880px;}
._29{width:41.627520px;}
._1e{width:43.908480px;}
._1d{width:45.048960px;}
._24{width:61.332480px;}
._1c{width:103.656960px;}
._21{width:112.273920px;}
._22{width:113.414400px;}
._27{width:133.499520px;}
._20{width:161.568000px;}
._1f{width:163.025280px;}
._23{width:167.143680px;}
._26{width:202.308480px;}
._25{width:203.702400px;}
._1{width:2478.560832px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc5{color:rgb(5,99,193);}
.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;}
.y6e{bottom:105.480000px;}
.y36{bottom:108.000000px;}
.y6d{bottom:124.920000px;}
.y35{bottom:127.080000px;}
.y6c{bottom:144.000000px;}
.y34{bottom:146.520000px;}
.y6b{bottom:163.440000px;}
.y33{bottom:165.600000px;}
.y6a{bottom:182.520000px;}
.y32{bottom:185.040000px;}
.y69{bottom:201.600000px;}
.y31{bottom:204.120000px;}
.y68{bottom:221.040000px;}
.y30{bottom:223.560000px;}
.y67{bottom:240.120000px;}
.y2f{bottom:242.640000px;}
.y66{bottom:259.560000px;}
.y2e{bottom:261.720000px;}
.y65{bottom:278.640000px;}
.y2d{bottom:281.160000px;}
.y64{bottom:297.720000px;}
.y2c{bottom:300.240000px;}
.y63{bottom:317.160000px;}
.y2b{bottom:319.680000px;}
.y62{bottom:336.240000px;}
.y2a{bottom:338.760000px;}
.y61{bottom:355.680000px;}
.y29{bottom:357.840000px;}
.y60{bottom:374.760000px;}
.y28{bottom:377.280000px;}
.y5f{bottom:394.200000px;}
.y27{bottom:396.360000px;}
.y5e{bottom:413.280000px;}
.y26{bottom:415.800000px;}
.y5d{bottom:432.360000px;}
.y25{bottom:434.880000px;}
.y5c{bottom:451.800000px;}
.y24{bottom:453.960000px;}
.y5b{bottom:470.880000px;}
.y23{bottom:473.400000px;}
.y5a{bottom:490.320000px;}
.y22{bottom:492.480000px;}
.y59{bottom:509.400000px;}
.y21{bottom:511.920000px;}
.y58{bottom:528.480000px;}
.y20{bottom:531.000000px;}
.y57{bottom:547.920000px;}
.y1f{bottom:550.080000px;}
.y56{bottom:567.000000px;}
.y1e{bottom:569.520000px;}
.y55{bottom:586.440000px;}
.y1d{bottom:588.600000px;}
.y54{bottom:605.520000px;}
.y1c{bottom:608.040000px;}
.y53{bottom:624.600000px;}
.y1b{bottom:627.120000px;}
.y52{bottom:644.040000px;}
.y1a{bottom:646.200000px;}
.y51{bottom:663.120000px;}
.y19{bottom:665.640000px;}
.y50{bottom:682.560000px;}
.y18{bottom:684.720000px;}
.y4f{bottom:701.640000px;}
.y17{bottom:704.160000px;}
.y4e{bottom:720.720000px;}
.y16{bottom:723.240000px;}
.y4d{bottom:740.160000px;}
.y15{bottom:742.320000px;}
.y4c{bottom:759.240000px;}
.y14{bottom:761.760000px;}
.y4b{bottom:778.680000px;}
.y13{bottom:780.840000px;}
.y4a{bottom:797.760000px;}
.y12{bottom:800.280000px;}
.y49{bottom:816.840000px;}
.y11{bottom:819.360000px;}
.y48{bottom:836.280000px;}
.y10{bottom:838.800000px;}
.y47{bottom:855.360000px;}
.yf{bottom:857.880000px;}
.y46{bottom:874.800000px;}
.ye{bottom:876.960000px;}
.y45{bottom:893.880000px;}
.yd{bottom:896.400000px;}
.y44{bottom:912.960000px;}
.yc{bottom:915.480000px;}
.y43{bottom:932.400000px;}
.yb{bottom:934.920000px;}
.y42{bottom:951.480000px;}
.ya{bottom:954.000000px;}
.y41{bottom:970.920000px;}
.y9{bottom:974.160000px;}
.y40{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y3f{bottom:1009.440000px;}
.y7{bottom:1024.920000px;}
.y3e{bottom:1028.520000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.y39{bottom:1124.640000px;}
.y38{bottom:1143.720000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h3{height:43.312500px;}
.h5{height:44.887500px;}
.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;}
.xc{left:84.959856px;}
.x4{left:106.184700px;}
.x5{left:124.145496px;}
.x6{left:143.294688px;}
.x3{left:181.064592px;}
.xa{left:219.112092px;}
.x7{left:257.892336px;}
.x2{left:446.877000px;}
.xb{left:613.092960px;}
.x8{left:644.157360px;}
.x9{left:804.284640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.304128pt;}
.ls2c{letter-spacing:-0.275968pt;}
.ls12{letter-spacing:-0.264704pt;}
.ls2a{letter-spacing:-0.253440pt;}
.ls1a{letter-spacing:-0.236544pt;}
.lsf{letter-spacing:-0.208384pt;}
.ls2d{letter-spacing:-0.202752pt;}
.ls10{letter-spacing:-0.197120pt;}
.ls17{letter-spacing:-0.191488pt;}
.lse{letter-spacing:-0.185856pt;}
.ls26{letter-spacing:-0.180224pt;}
.ls8{letter-spacing:-0.174592pt;}
.ls7{letter-spacing:-0.168960pt;}
.ls21{letter-spacing:-0.163328pt;}
.lsd{letter-spacing:-0.157696pt;}
.ls16{letter-spacing:-0.152064pt;}
.ls9{letter-spacing:-0.146432pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls18{letter-spacing:-0.135168pt;}
.ls14{letter-spacing:-0.129536pt;}
.ls2b{letter-spacing:-0.123904pt;}
.ls5{letter-spacing:-0.118272pt;}
.ls29{letter-spacing:-0.112640pt;}
.ls15{letter-spacing:-0.107008pt;}
.ls19{letter-spacing:-0.090112pt;}
.ls1b{letter-spacing:-0.084480pt;}
.ls27{letter-spacing:-0.078848pt;}
.ls31{letter-spacing:-0.056320pt;}
.ls13{letter-spacing:-0.045056pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.237568pt;}
.lsc{letter-spacing:0.289536pt;}
.lsa{letter-spacing:0.296960pt;}
.ls2e{letter-spacing:1.273600pt;}
.ls32{letter-spacing:1.728640pt;}
.ls23{letter-spacing:2.789120pt;}
.ls22{letter-spacing:5.086720pt;}
.ls2f{letter-spacing:5.615360pt;}
.ls3{letter-spacing:6.053120pt;}
.ls25{letter-spacing:6.102528pt;}
.ls1e{letter-spacing:6.590720pt;}
.ls4{letter-spacing:6.690944pt;}
.ls30{letter-spacing:9.157120pt;}
.ls1f{letter-spacing:10.157056pt;}
.ls24{letter-spacing:11.481600pt;}
.ls20{letter-spacing:11.655680pt;}
.ls1d{letter-spacing:14.170880pt;}
.ls1c{letter-spacing:14.186240pt;}
.ls33{letter-spacing:92.051200pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1839.076480pt;}
.ws3{word-spacing:-18.849536pt;}
.ws1{word-spacing:-12.728320pt;}
.wse{word-spacing:-12.683264pt;}
.wsa{word-spacing:-12.643840pt;}
.ws9{word-spacing:-12.638208pt;}
.ws5{word-spacing:-12.621312pt;}
.wsc{word-spacing:-12.610048pt;}
.wsb{word-spacing:-12.598784pt;}
.ws2{word-spacing:-12.581888pt;}
.ws10{word-spacing:-12.576256pt;}
.wsd{word-spacing:-12.570624pt;}
.ws11{word-spacing:-12.564992pt;}
.ws0{word-spacing:-12.559360pt;}
.ws12{word-spacing:-12.553728pt;}
.wsf{word-spacing:-12.548096pt;}
.ws7{word-spacing:-12.542464pt;}
.ws4{word-spacing:-12.531200pt;}
.ws6{word-spacing:-0.056320pt;}
.ws8{word-spacing:0.000000pt;}
._b{margin-left:-3.660800pt;}
._7{margin-left:-2.703360pt;}
._16{margin-left:-1.802240pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._e{width:2.421760pt;}
._f{width:3.604480pt;}
._a{width:4.505600pt;}
._d{width:5.399424pt;}
._c{width:6.394752pt;}
._5{width:7.377920pt;}
._3{width:8.391680pt;}
._4{width:9.292800pt;}
._6{width:10.216960pt;}
._8{width:11.449600pt;}
._15{width:13.629440pt;}
._14{width:14.699520pt;}
._13{width:15.600640pt;}
._9{width:16.839680pt;}
._12{width:17.853440pt;}
._11{width:18.754560pt;}
._1b{width:19.768320pt;}
._19{width:21.570560pt;}
._1a{width:22.577664pt;}
._28{width:23.598080pt;}
._10{width:25.625600pt;}
._17{width:30.187520pt;}
._18{width:31.426560pt;}
._29{width:37.002240pt;}
._1e{width:39.029760pt;}
._1d{width:40.043520pt;}
._24{width:54.517760pt;}
._1c{width:92.139520pt;}
._21{width:99.799040pt;}
._22{width:100.812800pt;}
._27{width:118.666240pt;}
._20{width:143.616000pt;}
._1f{width:144.911360pt;}
._23{width:148.572160pt;}
._26{width:179.829760pt;}
._25{width:181.068800pt;}
._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;}
.y6e{bottom:93.760000pt;}
.y36{bottom:96.000000pt;}
.y6d{bottom:111.040000pt;}
.y35{bottom:112.960000pt;}
.y6c{bottom:128.000000pt;}
.y34{bottom:130.240000pt;}
.y6b{bottom:145.280000pt;}
.y33{bottom:147.200000pt;}
.y6a{bottom:162.240000pt;}
.y32{bottom:164.480000pt;}
.y69{bottom:179.200000pt;}
.y31{bottom:181.440000pt;}
.y68{bottom:196.480000pt;}
.y30{bottom:198.720000pt;}
.y67{bottom:213.440000pt;}
.y2f{bottom:215.680000pt;}
.y66{bottom:230.720000pt;}
.y2e{bottom:232.640000pt;}
.y65{bottom:247.680000pt;}
.y2d{bottom:249.920000pt;}
.y64{bottom:264.640000pt;}
.y2c{bottom:266.880000pt;}
.y63{bottom:281.920000pt;}
.y2b{bottom:284.160000pt;}
.y62{bottom:298.880000pt;}
.y2a{bottom:301.120000pt;}
.y61{bottom:316.160000pt;}
.y29{bottom:318.080000pt;}
.y60{bottom:333.120000pt;}
.y28{bottom:335.360000pt;}
.y5f{bottom:350.400000pt;}
.y27{bottom:352.320000pt;}
.y5e{bottom:367.360000pt;}
.y26{bottom:369.600000pt;}
.y5d{bottom:384.320000pt;}
.y25{bottom:386.560000pt;}
.y5c{bottom:401.600000pt;}
.y24{bottom:403.520000pt;}
.y5b{bottom:418.560000pt;}
.y23{bottom:420.800000pt;}
.y5a{bottom:435.840000pt;}
.y22{bottom:437.760000pt;}
.y59{bottom:452.800000pt;}
.y21{bottom:455.040000pt;}
.y58{bottom:469.760000pt;}
.y20{bottom:472.000000pt;}
.y57{bottom:487.040000pt;}
.y1f{bottom:488.960000pt;}
.y56{bottom:504.000000pt;}
.y1e{bottom:506.240000pt;}
.y55{bottom:521.280000pt;}
.y1d{bottom:523.200000pt;}
.y54{bottom:538.240000pt;}
.y1c{bottom:540.480000pt;}
.y53{bottom:555.200000pt;}
.y1b{bottom:557.440000pt;}
.y52{bottom:572.480000pt;}
.y1a{bottom:574.400000pt;}
.y51{bottom:589.440000pt;}
.y19{bottom:591.680000pt;}
.y50{bottom:606.720000pt;}
.y18{bottom:608.640000pt;}
.y4f{bottom:623.680000pt;}
.y17{bottom:625.920000pt;}
.y4e{bottom:640.640000pt;}
.y16{bottom:642.880000pt;}
.y4d{bottom:657.920000pt;}
.y15{bottom:659.840000pt;}
.y4c{bottom:674.880000pt;}
.y14{bottom:677.120000pt;}
.y4b{bottom:692.160000pt;}
.y13{bottom:694.080000pt;}
.y4a{bottom:709.120000pt;}
.y12{bottom:711.360000pt;}
.y49{bottom:726.080000pt;}
.y11{bottom:728.320000pt;}
.y48{bottom:743.360000pt;}
.y10{bottom:745.600000pt;}
.y47{bottom:760.320000pt;}
.yf{bottom:762.560000pt;}
.y46{bottom:777.600000pt;}
.ye{bottom:779.520000pt;}
.y45{bottom:794.560000pt;}
.yd{bottom:796.800000pt;}
.y44{bottom:811.520000pt;}
.yc{bottom:813.760000pt;}
.y43{bottom:828.800000pt;}
.yb{bottom:831.040000pt;}
.y42{bottom:845.760000pt;}
.ya{bottom:848.000000pt;}
.y41{bottom:863.040000pt;}
.y9{bottom:865.920000pt;}
.y40{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y3f{bottom:897.280000pt;}
.y7{bottom:911.040000pt;}
.y3e{bottom:914.240000pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.y39{bottom:999.680000pt;}
.y38{bottom:1016.640000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h3{height:38.500000pt;}
.h5{height:39.900000pt;}
.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;}
.xc{left:75.519872pt;}
.x4{left:94.386400pt;}
.x5{left:110.351552pt;}
.x6{left:127.373056pt;}
.x3{left:160.946304pt;}
.xa{left:194.766304pt;}
.x7{left:229.237632pt;}
.x2{left:397.224000pt;}
.xb{left:544.971520pt;}
.x8{left:572.584320pt;}
.x9{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; }
  