
    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_cfc12464846fbdf37b77bedc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_413fde82e9b6c175e18b812c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a7204fab3f6b594bf96d63e6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.096191;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_ca7016b53364ffbbb8c9e72f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.880859;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_754c9c54fd87963fa81bee31.woff')format("woff");}.ff5{font-family:ff5;line-height:0.880859;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_52944b30d464540faf2497d1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_0689dbbebbd0c4cda01794d0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931152;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_c83ceb271311125aaf3da41f.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:30.240000px;}
.ls36{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.297600px;}
.ls9{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.000003px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000001px;}
.ls1a{letter-spacing:0.015840px;}
.ls1{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.063360px;}
.ls6{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.088560px;}
.ls2c{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.160800px;}
.ls12{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.487440px;}
.ls35{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.783360px;}
.lsd{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.368000px;}
.ls23{letter-spacing:2.088000px;}
.ls26{letter-spacing:2.808000px;}
.ls2b{letter-spacing:3.528000px;}
.ls19{letter-spacing:4.087440px;}
.ls16{letter-spacing:4.248000px;}
.ls1b{letter-spacing:4.807440px;}
.ls27{letter-spacing:4.968000px;}
.ls2d{letter-spacing:5.688000px;}
.lse{letter-spacing:7.128000px;}
.ls18{letter-spacing:7.416000px;}
.ls2e{letter-spacing:9.576000px;}
.ls17{letter-spacing:10.728000px;}
.ls22{letter-spacing:11.448000px;}
.ls25{letter-spacing:12.888000px;}
.ls1d{letter-spacing:13.447440px;}
.ls30{letter-spacing:16.056000px;}
.ls5{letter-spacing:17.208000px;}
.ls4{letter-spacing:18.648000px;}
.ls31{letter-spacing:23.256000px;}
.ls24{letter-spacing:23.688000px;}
.ls2f{letter-spacing:23.808000px;}
.ls34{letter-spacing:25.128000px;}
.ls21{letter-spacing:30.168000px;}
.ls0{letter-spacing:178.327440px;}
.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;}
}
.ws6{word-spacing:-20.808000px;}
.wsf{word-spacing:-20.736000px;}
.wsd{word-spacing:-20.664000px;}
.ws1{word-spacing:-20.448000px;}
.ws3{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.wsc{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.944000px;}
.wse{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsb{word-spacing:-16.953360px;}
.ws9{word-spacing:-16.792560px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-5.328000px;}
._6{margin-left:-4.320000px;}
._7{margin-left:-3.314400px;}
._2{margin-left:-1.347840px;}
._0{width:1.195200px;}
._4{width:2.277600px;}
._8{width:4.144800px;}
._a{width:5.534400px;}
._9{width:7.104000px;}
._15{width:8.904000px;}
._13{width:10.512000px;}
._14{width:11.632800px;}
._f{width:13.320000px;}
._e{width:14.544000px;}
._18{width:15.808800px;}
._5{width:17.040000px;}
._3{width:18.720000px;}
._b{width:21.288000px;}
._16{width:23.376000px;}
._17{width:24.916800px;}
._1a{width:25.946400px;}
._1b{width:27.216000px;}
._10{width:28.580160px;}
._d{width:29.715840px;}
._c{width:30.744000px;}
._11{width:32.760000px;}
._12{width:33.952800px;}
._1{width:499.714080px;}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:58.356000px;}
.y4{bottom:78.516000px;}
.y3{bottom:98.136000px;}
.y2{bottom:119.556000px;}
.y1{bottom:143.676000px;}
.y31{bottom:165.270000px;}
.y30{bottom:170.490000px;}
.y50{bottom:171.210000px;}
.y14{bottom:186.870000px;}
.y2f{bottom:187.410000px;}
.y51{bottom:190.470000px;}
.y43{bottom:192.810000px;}
.y38{bottom:208.290000px;}
.y42{bottom:208.830000px;}
.y13{bottom:225.570000px;}
.y2e{bottom:229.350000px;}
.y37{bottom:229.890000px;}
.y36{bottom:251.310000px;}
.y53{bottom:255.990000px;}
.y41{bottom:261.570000px;}
.y12{bottom:264.270000px;}
.y2d{bottom:268.050000px;}
.y35{bottom:272.910000px;}
.y4f{bottom:275.070000px;}
.y34{bottom:278.850000px;}
.y33{bottom:294.915000px;}
.y40{bottom:300.315000px;}
.y11{bottom:303.015000px;}
.y52{bottom:306.615000px;}
.y2c{bottom:306.795000px;}
.y4e{bottom:313.815000px;}
.y3f{bottom:339.195000px;}
.y10{bottom:341.715000px;}
.y2b{bottom:345.495000px;}
.y4d{bottom:352.515000px;}
.y3e{bottom:377.895000px;}
.yf{bottom:380.595000px;}
.y2a{bottom:384.195000px;}
.y4c{bottom:391.215000px;}
.y3d{bottom:410.655000px;}
.ye{bottom:417.675000px;}
.y29{bottom:423.075000px;}
.y4b{bottom:429.915000px;}
.y32{bottom:430.635000px;}
.y3c{bottom:442.335000px;}
.yd{bottom:447.015000px;}
.y28{bottom:461.775000px;}
.y4a{bottom:468.795000px;}
.y3b{bottom:473.475000px;}
.y27{bottom:500.475000px;}
.y48{bottom:507.495000px;}
.y49{bottom:515.055000px;}
.y26{bottom:539.175000px;}
.y47{bottom:546.195000px;}
.y25{bottom:577.905000px;}
.y45{bottom:584.925000px;}
.y46{bottom:592.485000px;}
.y44{bottom:616.065000px;}
.y24{bottom:616.605000px;}
.y23{bottom:655.485000px;}
.y22{bottom:694.185000px;}
.y21{bottom:732.885000px;}
.y1f{bottom:771.585000px;}
.y20{bottom:779.145000px;}
.y1e{bottom:810.330000px;}
.yc{bottom:812.130000px;}
.y1d{bottom:849.210000px;}
.yb{bottom:851.370000px;}
.y1c{bottom:887.910000px;}
.ya{bottom:894.750000px;}
.y3a{bottom:894.930000px;}
.y1b{bottom:926.610000px;}
.y9{bottom:934.710000px;}
.y1a{bottom:965.310000px;}
.y8{bottom:974.490000px;}
.y19{bottom:1004.010000px;}
.y39{bottom:1011.570000px;}
.y7{bottom:1014.450000px;}
.y18{bottom:1029.570000px;}
.y17{bottom:1051.710000px;}
.y6{bottom:1055.310000px;}
.y16{bottom:1084.140000px;}
.y15{bottom:1116.360000px;}
.hc{height:30.568359px;}
.h8{height:35.459297px;}
.h9{height:38.671172px;}
.hd{height:40.961602px;}
.hf{height:49.675781px;}
.h1{height:50.743477px;}
.h2{height:56.245781px;}
.he{height:58.651172px;}
.ha{height:59.439023px;}
.h6{height:61.136719px;}
.h5{height:62.191406px;}
.hb{height:65.699297px;}
.h3{height:65.884219px;}
.h7{height:71.529961px;}
.h4{height:72.763945px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x3{left:162.029986px;}
.x9{left:166.889986px;}
.x16{left:175.529986px;}
.xc{left:184.349973px;}
.xd{left:189.569986px;}
.x14{left:233.129973px;}
.x15{left:238.349986px;}
.x11{left:252.569986px;}
.xf{left:312.194986px;}
.x8{left:324.074986px;}
.x17{left:373.034986px;}
.x4{left:380.594986px;}
.x2{left:398.234986px;}
.x1b{left:550.004986px;}
.x10{left:591.764986px;}
.x5{left:598.244986px;}
.x1c{left:632.264986px;}
.x1a{left:640.184986px;}
.xe{left:641.264986px;}
.xa{left:643.064973px;}
.xb{left:648.284986px;}
.x18{left:693.509986px;}
.x12{left:727.709973px;}
.x13{left:732.929986px;}
.x6{left:773.429973px;}
.x7{left:778.649986px;}
.x19{left:823.649986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls36{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.264533pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.000003pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000001pt;}
.ls1a{letter-spacing:0.014080pt;}
.ls1{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.056320pt;}
.ls6{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.078720pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.142933pt;}
.ls12{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.433280pt;}
.ls35{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.696320pt;}
.lsd{letter-spacing:0.896000pt;}
.ls28{letter-spacing:1.216000pt;}
.ls23{letter-spacing:1.856000pt;}
.ls26{letter-spacing:2.496000pt;}
.ls2b{letter-spacing:3.136000pt;}
.ls19{letter-spacing:3.633280pt;}
.ls16{letter-spacing:3.776000pt;}
.ls1b{letter-spacing:4.273280pt;}
.ls27{letter-spacing:4.416000pt;}
.ls2d{letter-spacing:5.056000pt;}
.lse{letter-spacing:6.336000pt;}
.ls18{letter-spacing:6.592000pt;}
.ls2e{letter-spacing:8.512000pt;}
.ls17{letter-spacing:9.536000pt;}
.ls22{letter-spacing:10.176000pt;}
.ls25{letter-spacing:11.456000pt;}
.ls1d{letter-spacing:11.953280pt;}
.ls30{letter-spacing:14.272000pt;}
.ls5{letter-spacing:15.296000pt;}
.ls4{letter-spacing:16.576000pt;}
.ls31{letter-spacing:20.672000pt;}
.ls24{letter-spacing:21.056000pt;}
.ls2f{letter-spacing:21.162667pt;}
.ls34{letter-spacing:22.336000pt;}
.ls21{letter-spacing:26.816000pt;}
.ls0{letter-spacing:158.513280pt;}
.ws6{word-spacing:-18.496000pt;}
.wsf{word-spacing:-18.432000pt;}
.wsd{word-spacing:-18.368000pt;}
.ws1{word-spacing:-18.176000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.wsc{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.728000pt;}
.wse{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.069653pt;}
.ws9{word-spacing:-14.926720pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-4.736000pt;}
._6{margin-left:-3.840000pt;}
._7{margin-left:-2.946133pt;}
._2{margin-left:-1.198080pt;}
._0{width:1.062400pt;}
._4{width:2.024533pt;}
._8{width:3.684267pt;}
._a{width:4.919467pt;}
._9{width:6.314667pt;}
._15{width:7.914667pt;}
._13{width:9.344000pt;}
._14{width:10.340267pt;}
._f{width:11.840000pt;}
._e{width:12.928000pt;}
._18{width:14.052267pt;}
._5{width:15.146667pt;}
._3{width:16.640000pt;}
._b{width:18.922667pt;}
._16{width:20.778667pt;}
._17{width:22.148267pt;}
._1a{width:23.063467pt;}
._1b{width:24.192000pt;}
._10{width:25.404587pt;}
._d{width:26.414080pt;}
._c{width:27.328000pt;}
._11{width:29.120000pt;}
._12{width:30.180267pt;}
._1{width:444.190293pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.872000pt;}
.y4{bottom:69.792000pt;}
.y3{bottom:87.232000pt;}
.y2{bottom:106.272000pt;}
.y1{bottom:127.712000pt;}
.y31{bottom:146.906667pt;}
.y30{bottom:151.546667pt;}
.y50{bottom:152.186667pt;}
.y14{bottom:166.106667pt;}
.y2f{bottom:166.586667pt;}
.y51{bottom:169.306667pt;}
.y43{bottom:171.386667pt;}
.y38{bottom:185.146667pt;}
.y42{bottom:185.626667pt;}
.y13{bottom:200.506667pt;}
.y2e{bottom:203.866667pt;}
.y37{bottom:204.346667pt;}
.y36{bottom:223.386667pt;}
.y53{bottom:227.546667pt;}
.y41{bottom:232.506667pt;}
.y12{bottom:234.906667pt;}
.y2d{bottom:238.266667pt;}
.y35{bottom:242.586667pt;}
.y4f{bottom:244.506667pt;}
.y34{bottom:247.866667pt;}
.y33{bottom:262.146667pt;}
.y40{bottom:266.946667pt;}
.y11{bottom:269.346667pt;}
.y52{bottom:272.546667pt;}
.y2c{bottom:272.706667pt;}
.y4e{bottom:278.946667pt;}
.y3f{bottom:301.506667pt;}
.y10{bottom:303.746667pt;}
.y2b{bottom:307.106667pt;}
.y4d{bottom:313.346667pt;}
.y3e{bottom:335.906667pt;}
.yf{bottom:338.306667pt;}
.y2a{bottom:341.506667pt;}
.y4c{bottom:347.746667pt;}
.y3d{bottom:365.026667pt;}
.ye{bottom:371.266667pt;}
.y29{bottom:376.066667pt;}
.y4b{bottom:382.146667pt;}
.y32{bottom:382.786667pt;}
.y3c{bottom:393.186667pt;}
.yd{bottom:397.346667pt;}
.y28{bottom:410.466667pt;}
.y4a{bottom:416.706667pt;}
.y3b{bottom:420.866667pt;}
.y27{bottom:444.866667pt;}
.y48{bottom:451.106667pt;}
.y49{bottom:457.826667pt;}
.y26{bottom:479.266667pt;}
.y47{bottom:485.506667pt;}
.y25{bottom:513.693333pt;}
.y45{bottom:519.933333pt;}
.y46{bottom:526.653333pt;}
.y44{bottom:547.613333pt;}
.y24{bottom:548.093333pt;}
.y23{bottom:582.653333pt;}
.y22{bottom:617.053333pt;}
.y21{bottom:651.453333pt;}
.y1f{bottom:685.853333pt;}
.y20{bottom:692.573333pt;}
.y1e{bottom:720.293333pt;}
.yc{bottom:721.893333pt;}
.y1d{bottom:754.853333pt;}
.yb{bottom:756.773333pt;}
.y1c{bottom:789.253333pt;}
.ya{bottom:795.333333pt;}
.y3a{bottom:795.493333pt;}
.y1b{bottom:823.653333pt;}
.y9{bottom:830.853333pt;}
.y1a{bottom:858.053333pt;}
.y8{bottom:866.213333pt;}
.y19{bottom:892.453333pt;}
.y39{bottom:899.173333pt;}
.y7{bottom:901.733333pt;}
.y18{bottom:915.173333pt;}
.y17{bottom:934.853333pt;}
.y6{bottom:938.053333pt;}
.y16{bottom:963.680000pt;}
.y15{bottom:992.320000pt;}
.hc{height:27.171875pt;}
.h8{height:31.519375pt;}
.h9{height:34.374375pt;}
.hd{height:36.410312pt;}
.hf{height:44.156250pt;}
.h1{height:45.105313pt;}
.h2{height:49.996250pt;}
.he{height:52.134375pt;}
.ha{height:52.834688pt;}
.h6{height:54.343750pt;}
.h5{height:55.281250pt;}
.hb{height:58.399375pt;}
.h3{height:58.563750pt;}
.h7{height:63.582187pt;}
.h4{height:64.679063pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x3{left:144.026655pt;}
.x9{left:148.346655pt;}
.x16{left:156.026655pt;}
.xc{left:163.866642pt;}
.xd{left:168.506655pt;}
.x14{left:207.226642pt;}
.x15{left:211.866655pt;}
.x11{left:224.506655pt;}
.xf{left:277.506655pt;}
.x8{left:288.066655pt;}
.x17{left:331.586655pt;}
.x4{left:338.306655pt;}
.x2{left:353.986655pt;}
.x1b{left:488.893321pt;}
.x10{left:526.013321pt;}
.x5{left:531.773321pt;}
.x1c{left:562.013321pt;}
.x1a{left:569.053321pt;}
.xe{left:570.013321pt;}
.xa{left:571.613309pt;}
.xb{left:576.253321pt;}
.x18{left:616.453321pt;}
.x12{left:646.853309pt;}
.x13{left:651.493321pt;}
.x6{left:687.493309pt;}
.x7{left:692.133321pt;}
.x19{left:732.133321pt;}
}




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