
    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_a5e2930cbfc2ee7c8ed7a5d0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_34cfe2206b19d06c406f02c5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_531346264b906034d94a6438.woff')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_caa3f5b8b56837c9214fad6d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_75d933f32293c1e2b71fc78b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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:10.224000px;}
.ls9{letter-spacing:-1.728000px;}
.ls5{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.684000px;}
.ls3{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.456000px;}
.ls16{letter-spacing:-0.384000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.168000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.655930px;}
.ls14{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.864000px;}
.ls19{letter-spacing:1.152000px;}
.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:-28.956000px;}
.ws5{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.792000px;}
.ws3{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.640000px;}
.ws2{word-spacing:-16.704000px;}
.ws11{word-spacing:-12.720000px;}
.ws15{word-spacing:-12.624000px;}
.ws14{word-spacing:-12.528000px;}
.ws16{word-spacing:-12.480000px;}
.ws12{word-spacing:-12.336000px;}
.ws10{word-spacing:-12.288000px;}
.ws17{word-spacing:-12.096000px;}
.ws0{word-spacing:-10.781843px;}
.ws20{word-spacing:-1.152000px;}
.ws1a{word-spacing:-0.816000px;}
.ws1b{word-spacing:-0.768000px;}
.ws19{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.594000px;}
.ws22{word-spacing:-0.540000px;}
.ws18{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws1f{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.ws24{word-spacing:0.060000px;}
.ws9{word-spacing:0.144000px;}
.wse{word-spacing:0.168000px;}
.wsb{word-spacing:0.216000px;}
.wsa{word-spacing:0.288000px;}
.ws1d{word-spacing:0.384000px;}
.wsf{word-spacing:0.456000px;}
.ws1e{word-spacing:0.480000px;}
.ws8{word-spacing:0.648000px;}
.wsd{word-spacing:1.728000px;}
.ws13{word-spacing:64.382400px;}
._6{margin-left:-6.806400px;}
._4{margin-left:-3.956226px;}
._3{margin-left:-2.880000px;}
._1{margin-left:-1.123200px;}
._0{width:1.623426px;}
._2{width:2.826523px;}
._5{width:896.336574px;}
.fc2{color:rgb(212,212,210);}
.fc1{color:rgb(33,66,116);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:40.995600px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs5{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:37.468050px;}
.y2a{bottom:51.868050px;}
.y29{bottom:66.268050px;}
.y13{bottom:159.572850px;}
.y12{bottom:181.172850px;}
.y24{bottom:204.878850px;}
.y5b{bottom:213.131550px;}
.y11{bottom:214.166850px;}
.y5a{bottom:229.331550px;}
.y59{bottom:245.531550px;}
.y10{bottom:260.372850px;}
.yf{bottom:281.972850px;}
.ye{bottom:303.572850px;}
.y3c{bottom:320.728800px;}
.y23{bottom:321.355950px;}
.yd{bottom:333.578850px;}
.y3b{bottom:335.128800px;}
.y37{bottom:343.984800px;}
.y49{bottom:346.062300px;}
.y3a{bottom:349.528800px;}
.y36{bottom:358.384800px;}
.y48{bottom:362.262300px;}
.y39{bottom:363.928800px;}
.y35{bottom:370.228800px;}
.y2f{bottom:371.152800px;}
.y38{bottom:378.328800px;}
.y47{bottom:378.462300px;}
.yc{bottom:379.784850px;}
.y31{bottom:380.944800px;}
.y34{bottom:384.628800px;}
.y2e{bottom:385.552800px;}
.y46{bottom:394.662300px;}
.y30{bottom:395.344800px;}
.y1d{bottom:398.918850px;}
.yb{bottom:401.384850px;}
.y45{bottom:410.862300px;}
.y33{bottom:417.604800px;}
.y1c{bottom:420.518850px;}
.ya{bottom:422.984850px;}
.y32{bottom:432.004800px;}
.y1b{bottom:442.118850px;}
.y9{bottom:444.584850px;}
.y8{bottom:466.184850px;}
.y1a{bottom:472.124850px;}
.y20{bottom:480.347100px;}
.y19{bottom:493.724850px;}
.y69{bottom:494.253000px;}
.y7{bottom:496.190850px;}
.y22{bottom:502.546800px;}
.y6{bottom:517.790850px;}
.y68{bottom:522.753000px;}
.y58{bottom:533.419050px;}
.y18{bottom:539.930850px;}
.y57{bottom:549.619050px;}
.y67{bottom:551.253000px;}
.y17{bottom:561.530850px;}
.y5{bottom:563.996850px;}
.y56{bottom:565.819050px;}
.y66{bottom:579.753000px;}
.y55{bottom:582.019050px;}
.y16{bottom:583.130850px;}
.y4{bottom:585.596850px;}
.y3{bottom:607.196850px;}
.y65{bottom:608.253000px;}
.y15{bottom:613.136850px;}
.y1f{bottom:622.271550px;}
.y21{bottom:624.143550px;}
.y14{bottom:634.736850px;}
.y2{bottom:635.690850px;}
.y64{bottom:636.753000px;}
.y44{bottom:686.398650px;}
.y28{bottom:695.296800px;}
.y43{bottom:707.998650px;}
.y3e{bottom:761.414400px;}
.y1e{bottom:775.447200px;}
.y63{bottom:825.861300px;}
.y62{bottom:843.861300px;}
.y61{bottom:872.361300px;}
.y54{bottom:876.353100px;}
.y4b{bottom:880.928850px;}
.y60{bottom:900.861300px;}
.y53{bottom:906.649500px;}
.y52{bottom:922.849500px;}
.y4c{bottom:923.828850px;}
.y5f{bottom:929.361300px;}
.y51{bottom:939.049500px;}
.y50{bottom:955.249500px;}
.y5e{bottom:957.861300px;}
.y4d{bottom:964.064850px;}
.y4a{bottom:969.008850px;}
.y5d{bottom:986.361300px;}
.y4e{bottom:996.632850px;}
.y4f{bottom:1013.624850px;}
.y5c{bottom:1014.861300px;}
.y27{bottom:1017.927900px;}
.y26{bottom:1046.727900px;}
.y25{bottom:1075.527900px;}
.y42{bottom:1087.258650px;}
.y41{bottom:1108.858650px;}
.y40{bottom:1130.458650px;}
.y1{bottom:1150.008600px;}
.y3f{bottom:1152.058650px;}
.y2d{bottom:1177.096800px;}
.y2c{bottom:1211.296800px;}
.y3d{bottom:1218.590400px;}
.h2{height:31.197652px;}
.hb{height:36.528000px;}
.h9{height:36.726562px;}
.he{height:37.248000px;}
.hd{height:41.094000px;}
.hf{height:45.660000px;}
.hc{height:46.752000px;}
.h4{height:54.792000px;}
.h5{height:55.224000px;}
.h3{height:55.872000px;}
.h7{height:65.184000px;}
.h8{height:73.056000px;}
.h6{height:74.496000px;}
.ha{height:88.464000px;}
.h0{height:1288.345500px;}
.h1{height:1288.500000px;}
.w0{width:918.432000px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1f{left:61.113300px;}
.xa{left:62.635950px;}
.x5{left:65.635200px;}
.x21{left:70.095300px;}
.x20{left:81.471300px;}
.x29{left:96.805650px;}
.x3{left:105.075000px;}
.x35{left:112.836300px;}
.x7{left:128.151900px;}
.x8{left:133.095900px;}
.x22{left:143.337300px;}
.x31{left:151.701300px;}
.x23{left:165.135300px;}
.x34{left:178.431300px;}
.x30{left:216.111300px;}
.x32{left:242.226300px;}
.x25{left:253.236600px;}
.x26{left:258.828600px;}
.x33{left:263.931300px;}
.x24{left:274.236600px;}
.x27{left:283.908600px;}
.xe{left:287.863800px;}
.xf{left:300.235800px;}
.x28{left:314.652600px;}
.xc{left:317.945850px;}
.x1e{left:320.253600px;}
.x9{left:346.455900px;}
.xd{left:348.440850px;}
.x2a{left:350.028750px;}
.x4{left:353.515200px;}
.x1d{left:372.285600px;}
.x14{left:386.359800px;}
.x15{left:389.899800px;}
.x6{left:453.814500px;}
.x2f{left:487.318350px;}
.x17{left:490.735800px;}
.x2{left:494.685000px;}
.x16{left:498.835800px;}
.xb{left:534.862050px;}
.x1a{left:591.787800px;}
.x19{left:593.731800px;}
.x1b{left:599.167800px;}
.x1c{left:613.219800px;}
.x18{left:627.523800px;}
.x2b{left:677.236800px;}
.x2c{left:685.228800px;}
.x2e{left:693.382800px;}
.x2d{left:710.136300px;}
.x10{left:714.667800px;}
.x11{left:723.835800px;}
.x1{left:791.043450px;}
.x12{left:806.551800px;}
.x13{left:817.543800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.088000pt;}
.ls9{letter-spacing:-1.536000pt;}
.ls5{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.405333pt;}
.ls16{letter-spacing:-0.341333pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.583049pt;}
.ls14{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.768000pt;}
.ls19{letter-spacing:1.024000pt;}
.ws6{word-spacing:-25.738667pt;}
.ws5{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.704000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.680000pt;}
.ws2{word-spacing:-14.848000pt;}
.ws11{word-spacing:-11.306667pt;}
.ws15{word-spacing:-11.221333pt;}
.ws14{word-spacing:-11.136000pt;}
.ws16{word-spacing:-11.093333pt;}
.ws12{word-spacing:-10.965333pt;}
.ws10{word-spacing:-10.922667pt;}
.ws17{word-spacing:-10.752000pt;}
.ws0{word-spacing:-9.583860pt;}
.ws20{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.725333pt;}
.ws1b{word-spacing:-0.682667pt;}
.ws19{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.528000pt;}
.ws22{word-spacing:-0.480000pt;}
.ws18{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws1f{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053333pt;}
.ws9{word-spacing:0.128000pt;}
.wse{word-spacing:0.149333pt;}
.wsb{word-spacing:0.192000pt;}
.wsa{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.341333pt;}
.wsf{word-spacing:0.405333pt;}
.ws1e{word-spacing:0.426667pt;}
.ws8{word-spacing:0.576000pt;}
.wsd{word-spacing:1.536000pt;}
.ws13{word-spacing:57.228800pt;}
._6{margin-left:-6.050133pt;}
._4{margin-left:-3.516645pt;}
._3{margin-left:-2.560000pt;}
._1{margin-left:-0.998400pt;}
._0{width:1.443045pt;}
._2{width:2.512465pt;}
._5{width:796.743622pt;}
.fs0{font-size:36.440533pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs5{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:33.304933pt;}
.y2a{bottom:46.104933pt;}
.y29{bottom:58.904933pt;}
.y13{bottom:141.842533pt;}
.y12{bottom:161.042533pt;}
.y24{bottom:182.114533pt;}
.y5b{bottom:189.450267pt;}
.y11{bottom:190.370533pt;}
.y5a{bottom:203.850267pt;}
.y59{bottom:218.250267pt;}
.y10{bottom:231.442533pt;}
.yf{bottom:250.642533pt;}
.ye{bottom:269.842533pt;}
.y3c{bottom:285.092267pt;}
.y23{bottom:285.649733pt;}
.yd{bottom:296.514533pt;}
.y3b{bottom:297.892267pt;}
.y37{bottom:305.764267pt;}
.y49{bottom:307.610933pt;}
.y3a{bottom:310.692267pt;}
.y36{bottom:318.564267pt;}
.y48{bottom:322.010933pt;}
.y39{bottom:323.492267pt;}
.y35{bottom:329.092267pt;}
.y2f{bottom:329.913600pt;}
.y38{bottom:336.292267pt;}
.y47{bottom:336.410933pt;}
.yc{bottom:337.586533pt;}
.y31{bottom:338.617600pt;}
.y34{bottom:341.892267pt;}
.y2e{bottom:342.713600pt;}
.y46{bottom:350.810933pt;}
.y30{bottom:351.417600pt;}
.y1d{bottom:354.594533pt;}
.yb{bottom:356.786533pt;}
.y45{bottom:365.210933pt;}
.y33{bottom:371.204267pt;}
.y1c{bottom:373.794533pt;}
.ya{bottom:375.986533pt;}
.y32{bottom:384.004267pt;}
.y1b{bottom:392.994533pt;}
.y9{bottom:395.186533pt;}
.y8{bottom:414.386533pt;}
.y1a{bottom:419.666533pt;}
.y20{bottom:426.975200pt;}
.y19{bottom:438.866533pt;}
.y69{bottom:439.336000pt;}
.y7{bottom:441.058533pt;}
.y22{bottom:446.708267pt;}
.y6{bottom:460.258533pt;}
.y68{bottom:464.669333pt;}
.y58{bottom:474.150267pt;}
.y18{bottom:479.938533pt;}
.y57{bottom:488.550267pt;}
.y67{bottom:490.002667pt;}
.y17{bottom:499.138533pt;}
.y5{bottom:501.330533pt;}
.y56{bottom:502.950267pt;}
.y66{bottom:515.336000pt;}
.y55{bottom:517.350267pt;}
.y16{bottom:518.338533pt;}
.y4{bottom:520.530533pt;}
.y3{bottom:539.730533pt;}
.y65{bottom:540.669333pt;}
.y15{bottom:545.010533pt;}
.y1f{bottom:553.130267pt;}
.y21{bottom:554.794267pt;}
.y14{bottom:564.210533pt;}
.y2{bottom:565.058533pt;}
.y64{bottom:566.002667pt;}
.y44{bottom:610.132133pt;}
.y28{bottom:618.041600pt;}
.y43{bottom:629.332133pt;}
.y3e{bottom:676.812800pt;}
.y1e{bottom:689.286400pt;}
.y63{bottom:734.098933pt;}
.y62{bottom:750.098933pt;}
.y61{bottom:775.432267pt;}
.y54{bottom:778.980533pt;}
.y4b{bottom:783.047867pt;}
.y60{bottom:800.765600pt;}
.y53{bottom:805.910667pt;}
.y52{bottom:820.310667pt;}
.y4c{bottom:821.181200pt;}
.y5f{bottom:826.098933pt;}
.y51{bottom:834.710667pt;}
.y50{bottom:849.110667pt;}
.y5e{bottom:851.432267pt;}
.y4d{bottom:856.946533pt;}
.y4a{bottom:861.341200pt;}
.y5d{bottom:876.765600pt;}
.y4e{bottom:885.895867pt;}
.y4f{bottom:900.999867pt;}
.y5c{bottom:902.098933pt;}
.y27{bottom:904.824800pt;}
.y26{bottom:930.424800pt;}
.y25{bottom:956.024800pt;}
.y42{bottom:966.452133pt;}
.y41{bottom:985.652133pt;}
.y40{bottom:1004.852133pt;}
.y1{bottom:1022.229867pt;}
.y3f{bottom:1024.052133pt;}
.y2d{bottom:1046.308267pt;}
.y2c{bottom:1076.708267pt;}
.y3d{bottom:1083.191467pt;}
.h2{height:27.731246pt;}
.hb{height:32.469333pt;}
.h9{height:32.645833pt;}
.he{height:33.109333pt;}
.hd{height:36.528000pt;}
.hf{height:40.586667pt;}
.hc{height:41.557333pt;}
.h4{height:48.704000pt;}
.h5{height:49.088000pt;}
.h3{height:49.664000pt;}
.h7{height:57.941333pt;}
.h8{height:64.938667pt;}
.h6{height:66.218667pt;}
.ha{height:78.634667pt;}
.h0{height:1145.196000pt;}
.h1{height:1145.333333pt;}
.w0{width:816.384000pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:54.322933pt;}
.xa{left:55.676400pt;}
.x5{left:58.342400pt;}
.x21{left:62.306933pt;}
.x20{left:72.418933pt;}
.x29{left:86.049467pt;}
.x3{left:93.400000pt;}
.x35{left:100.298933pt;}
.x7{left:113.912800pt;}
.x8{left:118.307467pt;}
.x22{left:127.410933pt;}
.x31{left:134.845600pt;}
.x23{left:146.786933pt;}
.x34{left:158.605600pt;}
.x30{left:192.098933pt;}
.x32{left:215.312267pt;}
.x25{left:225.099200pt;}
.x26{left:230.069867pt;}
.x33{left:234.605600pt;}
.x24{left:243.765867pt;}
.x27{left:252.363200pt;}
.xe{left:255.878933pt;}
.xf{left:266.876267pt;}
.x28{left:279.691200pt;}
.xc{left:282.618533pt;}
.x1e{left:284.669867pt;}
.x9{left:307.960800pt;}
.xd{left:309.725200pt;}
.x2a{left:311.136667pt;}
.x4{left:314.235733pt;}
.x1d{left:330.920533pt;}
.x14{left:343.430933pt;}
.x15{left:346.577600pt;}
.x6{left:403.390667pt;}
.x2f{left:433.171867pt;}
.x17{left:436.209600pt;}
.x2{left:439.720000pt;}
.x16{left:443.409600pt;}
.xb{left:475.432933pt;}
.x1a{left:526.033600pt;}
.x19{left:527.761600pt;}
.x1b{left:532.593600pt;}
.x1c{left:545.084267pt;}
.x18{left:557.798933pt;}
.x2b{left:601.988267pt;}
.x2c{left:609.092267pt;}
.x2e{left:616.340267pt;}
.x2d{left:631.232267pt;}
.x10{left:635.260267pt;}
.x11{left:643.409600pt;}
.x1{left:703.149733pt;}
.x12{left:716.934933pt;}
.x13{left:726.705600pt;}
}




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