
    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_19ffa06037fb9cfe2fa1ebe3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_93615fd5a267f484309ba06b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_2d5b86cbdf9af70a801d54bb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_0065630f7b92053205c16fb8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e9004fa01aeaa440058a63d7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_b7ecc9dda27fa29d1fdd25ab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_1117f3a448a56e861758601c.woff')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_187c8a5041988de126decb3c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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;}
.v1{vertical-align:12.438000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.986074px;}
.ls0{letter-spacing:2.988900px;}
.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;}
}
.ws3c{word-spacing:-17.933400px;}
.ws4b{word-spacing:-15.118034px;}
.ws41{word-spacing:-11.955000px;}
.ws48{word-spacing:-7.471500px;}
.ws14{word-spacing:-0.699348px;}
.ws1b{word-spacing:-0.418506px;}
.ws2d{word-spacing:-0.418446px;}
.ws47{word-spacing:-0.239100px;}
.ws4c{word-spacing:0.000000px;}
.ws3b{word-spacing:0.119556px;}
.wsb{word-spacing:0.161388px;}
.ws32{word-spacing:0.597780px;}
.ws21{word-spacing:0.896670px;}
.ws44{word-spacing:0.956257px;}
.ws12{word-spacing:2.044087px;}
.wse{word-spacing:3.389256px;}
.ws45{word-spacing:4.782000px;}
.ws15{word-spacing:5.379600px;}
.ws1d{word-spacing:5.439798px;}
.ws31{word-spacing:5.858304px;}
.ws6{word-spacing:5.977740px;}
.ws7{word-spacing:5.977800px;}
.ws5{word-spacing:6.575334px;}
.ws28{word-spacing:6.695136px;}
.wsd{word-spacing:6.993480px;}
.ws30{word-spacing:7.232959px;}
.ws46{word-spacing:7.890300px;}
.ws13{word-spacing:8.876609px;}
.ws4a{word-spacing:8.990160px;}
.ws2f{word-spacing:10.759920px;}
.ws3d{word-spacing:10.760040px;}
.ws27{word-spacing:11.477555px;}
.ws25{word-spacing:11.656710px;}
.ws29{word-spacing:11.895822px;}
.ws26{word-spacing:12.075156px;}
.ws11{word-spacing:12.157896px;}
.ws36{word-spacing:12.852210px;}
.ws40{word-spacing:12.852270px;}
.ws3{word-spacing:13.246188px;}
.ws2{word-spacing:13.246236px;}
.ws1e{word-spacing:13.629384px;}
.ws4{word-spacing:14.346000px;}
.ws23{word-spacing:14.526293px;}
.wsa{word-spacing:14.632135px;}
.ws10{word-spacing:14.847535px;}
.ws0{word-spacing:14.901115px;}
.ws1{word-spacing:14.901761px;}
.ws2c{word-spacing:15.362946px;}
.ws33{word-spacing:15.661836px;}
.wsf{word-spacing:17.645088px;}
.ws2a{word-spacing:17.873622px;}
.ws49{word-spacing:17.884441px;}
.ws3a{word-spacing:17.933221px;}
.ws8{word-spacing:18.936192px;}
.wsc{word-spacing:19.043730px;}
.ws39{word-spacing:19.248516px;}
.ws3e{word-spacing:20.085408px;}
.ws18{word-spacing:20.119704px;}
.ws9{word-spacing:20.496276px;}
.ws34{word-spacing:20.623410px;}
.ws20{word-spacing:20.862522px;}
.ws42{word-spacing:21.662603px;}
.ws1c{word-spacing:22.476588px;}
.ws22{word-spacing:22.655862px;}
.ws37{word-spacing:22.894795px;}
.ws3f{word-spacing:22.954752px;}
.ws1a{word-spacing:23.253642px;}
.ws38{word-spacing:24.508860px;}
.ws43{word-spacing:25.392420px;}
.ws35{word-spacing:26.362098px;}
.ws2b{word-spacing:27.378204px;}
.ws2e{word-spacing:27.796770px;}
.ws24{word-spacing:28.574063px;}
.ws1f{word-spacing:30.965004px;}
.ws19{word-spacing:41.844600px;}
.ws17{word-spacing:61.381075px;}
.ws16{word-spacing:61.381236px;}
._1{margin-left:-6.454444px;}
._8{margin-left:-4.782000px;}
._3{margin-left:-3.586213px;}
._2{margin-left:-2.151613px;}
._5{margin-left:-1.147243px;}
._0{width:1.346406px;}
._4{width:3.050689px;}
._6{width:26.720371px;}
._7{width:29.887500px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.886000px;}
.fs1{font-size:47.820000px;}
.fs0{font-size:53.796000px;}
.fs4{font-size:59.778000px;}
.fs8{font-size:60.472138px;}
.fs3{font-size:65.754000px;}
.fs7{font-size:66.231389px;}
.fs6{font-size:71.990640px;}
.fs2{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.659524px;}
.y58{bottom:55.492785px;}
.y57{bottom:57.712496px;}
.y6{bottom:67.420500px;}
.y32{bottom:106.299000px;}
.y31{bottom:124.231500px;}
.y55{bottom:130.957500px;}
.y30{bottom:142.164000px;}
.y54{bottom:144.406500px;}
.y53{bottom:157.855500px;}
.y2f{bottom:163.999500px;}
.y52{bottom:171.306000px;}
.y2e{bottom:181.932000px;}
.y51{bottom:184.755000px;}
.y50{bottom:198.204000px;}
.y2d{bottom:199.864500px;}
.y4f{bottom:211.654500px;}
.y2c{bottom:217.797000px;}
.y4e{bottom:225.103500px;}
.y2b{bottom:235.731000px;}
.y4d{bottom:238.554000px;}
.y2a{bottom:253.663500px;}
.y4c{bottom:260.745000px;}
.y29{bottom:271.596000px;}
.y4b{bottom:288.765000px;}
.y28{bottom:289.528500px;}
.y4a{bottom:306.697500px;}
.y27{bottom:307.461000px;}
.y49{bottom:324.630000px;}
.y26{bottom:325.393500px;}
.y48{bottom:342.564000px;}
.y25{bottom:343.327500px;}
.y47{bottom:360.496500px;}
.y24{bottom:361.260000px;}
.y23{bottom:379.192500px;}
.y46{bottom:383.136000px;}
.y22{bottom:397.125000px;}
.y45{bottom:411.156000px;}
.y21{bottom:415.057500px;}
.y44{bottom:429.088500px;}
.y20{bottom:432.991500px;}
.y43{bottom:447.021000px;}
.y1f{bottom:450.924000px;}
.y42{bottom:464.953500px;}
.y1e{bottom:476.158500px;}
.y41{bottom:482.887500px;}
.y40{bottom:500.820000px;}
.y1d{bottom:512.010000px;}
.y3f{bottom:518.752500px;}
.y1c{bottom:526.954500px;}
.y3e{bottom:536.685000px;}
.y1b{bottom:545.800500px;}
.y3d{bottom:554.617500px;}
.y1a{bottom:560.743500px;}
.y3c{bottom:572.551500px;}
.y19{bottom:575.688000px;}
.y3b{bottom:590.484000px;}
.y18{bottom:590.632500px;}
.y17{bottom:605.575500px;}
.y3a{bottom:608.416500px;}
.y16{bottom:620.520000px;}
.y39{bottom:626.349000px;}
.y15{bottom:635.464500px;}
.y38{bottom:644.281500px;}
.y14{bottom:650.407500px;}
.y37{bottom:662.214000px;}
.y13{bottom:665.352000px;}
.y36{bottom:680.148000px;}
.y12{bottom:680.296500px;}
.y11{bottom:695.239500px;}
.y35{bottom:698.080500px;}
.y10{bottom:710.184000px;}
.y34{bottom:716.013000px;}
.yf{bottom:725.128500px;}
.y33{bottom:733.945500px;}
.ye{bottom:740.071500px;}
.yd{bottom:751.878000px;}
.yc{bottom:805.360500px;}
.yb{bottom:823.854000px;}
.ya{bottom:861.802500px;}
.y9{bottom:908.875500px;}
.y8{bottom:950.718000px;}
.y7{bottom:992.562000px;}
.y5{bottom:1139.469000px;}
.y4{bottom:1154.413500px;}
.y5a{bottom:1161.329008px;}
.y3{bottom:1169.356500px;}
.y2{bottom:1184.301000px;}
.y56{bottom:1192.284983px;}
.y1{bottom:1199.245500px;}
.h10{height:17.997660px;}
.hc{height:32.900160px;}
.hd{height:32.999568px;}
.h3{height:35.434620px;}
.ha{height:37.011648px;}
.h9{height:37.226832px;}
.hb{height:37.603404px;}
.h2{height:39.862836px;}
.h7{height:41.127264px;}
.h6{height:41.427264px;}
.hf{height:44.757931px;}
.h8{height:44.833500px;}
.h5{height:45.238752px;}
.he{height:47.982043px;}
.h4{height:98.700480px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:23.996880px;}
.w2{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:85.039500px;}
.x10{left:99.984000px;}
.x7{left:110.130000px;}
.x12{left:114.927000px;}
.x15{left:117.019500px;}
.x11{left:129.871500px;}
.x9{left:134.232000px;}
.x8{left:136.311000px;}
.xa{left:153.568500px;}
.xb{left:179.074500px;}
.x6{left:195.472500px;}
.x14{left:208.326000px;}
.xf{left:234.142500px;}
.xc{left:308.457000px;}
.x19{left:455.422500px;}
.x1b{left:461.400000px;}
.x18{left:470.367000px;}
.xd{left:474.798000px;}
.x1c{left:482.812500px;}
.x16{left:487.402500px;}
.x17{left:547.708500px;}
.xe{left:586.936500px;}
.x1a{left:589.806000px;}
.x5{left:630.753000px;}
.x1{left:637.921500px;}
.x2{left:645.856500px;}
.x4{left:673.200000px;}
.x3{left:710.776500px;}
.x1d{left:770.299848px;}
.x1e{left:774.164700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.056000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.654288pt;}
.ls0{letter-spacing:2.656800pt;}
.ws3c{word-spacing:-15.940800pt;}
.ws4b{word-spacing:-13.438253pt;}
.ws41{word-spacing:-10.626667pt;}
.ws48{word-spacing:-6.641333pt;}
.ws14{word-spacing:-0.621643pt;}
.ws1b{word-spacing:-0.372005pt;}
.ws2d{word-spacing:-0.371952pt;}
.ws47{word-spacing:-0.212533pt;}
.ws4c{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.106272pt;}
.wsb{word-spacing:0.143456pt;}
.ws32{word-spacing:0.531360pt;}
.ws21{word-spacing:0.797040pt;}
.ws44{word-spacing:0.850006pt;}
.ws12{word-spacing:1.816966pt;}
.wse{word-spacing:3.012672pt;}
.ws45{word-spacing:4.250667pt;}
.ws15{word-spacing:4.781867pt;}
.ws1d{word-spacing:4.835376pt;}
.ws31{word-spacing:5.207381pt;}
.ws6{word-spacing:5.313547pt;}
.ws7{word-spacing:5.313600pt;}
.ws5{word-spacing:5.844742pt;}
.ws28{word-spacing:5.951232pt;}
.wsd{word-spacing:6.216427pt;}
.ws30{word-spacing:6.429297pt;}
.ws46{word-spacing:7.013600pt;}
.ws13{word-spacing:7.890319pt;}
.ws4a{word-spacing:7.991253pt;}
.ws2f{word-spacing:9.564374pt;}
.ws3d{word-spacing:9.564480pt;}
.ws27{word-spacing:10.202271pt;}
.ws25{word-spacing:10.361520pt;}
.ws29{word-spacing:10.574064pt;}
.ws26{word-spacing:10.733472pt;}
.ws11{word-spacing:10.807019pt;}
.ws36{word-spacing:11.424187pt;}
.ws40{word-spacing:11.424240pt;}
.ws3{word-spacing:11.774389pt;}
.ws2{word-spacing:11.774432pt;}
.ws1e{word-spacing:12.115008pt;}
.ws4{word-spacing:12.752000pt;}
.ws23{word-spacing:12.912261pt;}
.wsa{word-spacing:13.006343pt;}
.ws10{word-spacing:13.197809pt;}
.ws0{word-spacing:13.245436pt;}
.ws1{word-spacing:13.246010pt;}
.ws2c{word-spacing:13.655952pt;}
.ws33{word-spacing:13.921632pt;}
.wsf{word-spacing:15.684523pt;}
.ws2a{word-spacing:15.887664pt;}
.ws49{word-spacing:15.897281pt;}
.ws3a{word-spacing:15.940641pt;}
.ws8{word-spacing:16.832171pt;}
.wsc{word-spacing:16.927760pt;}
.ws39{word-spacing:17.109792pt;}
.ws3e{word-spacing:17.853696pt;}
.ws18{word-spacing:17.884181pt;}
.ws9{word-spacing:18.218912pt;}
.ws34{word-spacing:18.331920pt;}
.ws20{word-spacing:18.544464pt;}
.ws42{word-spacing:19.255648pt;}
.ws1c{word-spacing:19.979189pt;}
.ws22{word-spacing:20.138544pt;}
.ws37{word-spacing:20.350929pt;}
.ws3f{word-spacing:20.404224pt;}
.ws1a{word-spacing:20.669904pt;}
.ws38{word-spacing:21.785654pt;}
.ws43{word-spacing:22.571040pt;}
.ws35{word-spacing:23.432976pt;}
.ws2b{word-spacing:24.336182pt;}
.ws2e{word-spacing:24.708240pt;}
.ws24{word-spacing:25.399167pt;}
.ws1f{word-spacing:27.524448pt;}
.ws19{word-spacing:37.195200pt;}
.ws17{word-spacing:54.560955pt;}
.ws16{word-spacing:54.561099pt;}
._1{margin-left:-5.737284pt;}
._8{margin-left:-4.250667pt;}
._3{margin-left:-3.187745pt;}
._2{margin-left:-1.912545pt;}
._5{margin-left:-1.019772pt;}
._0{width:1.196806pt;}
._4{width:2.711723pt;}
._6{width:23.751441pt;}
._7{width:26.566667pt;}
.fs5{font-size:26.565333pt;}
.fs1{font-size:42.506667pt;}
.fs0{font-size:47.818667pt;}
.fs4{font-size:53.136000pt;}
.fs8{font-size:53.753011pt;}
.fs3{font-size:58.448000pt;}
.fs7{font-size:58.872346pt;}
.fs6{font-size:63.991680pt;}
.fs2{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.252910pt;}
.y58{bottom:49.326920pt;}
.y57{bottom:51.299997pt;}
.y6{bottom:59.929333pt;}
.y32{bottom:94.488000pt;}
.y31{bottom:110.428000pt;}
.y55{bottom:116.406667pt;}
.y30{bottom:126.368000pt;}
.y54{bottom:128.361333pt;}
.y53{bottom:140.316000pt;}
.y2f{bottom:145.777333pt;}
.y52{bottom:152.272000pt;}
.y2e{bottom:161.717333pt;}
.y51{bottom:164.226667pt;}
.y50{bottom:176.181333pt;}
.y2d{bottom:177.657333pt;}
.y4f{bottom:188.137333pt;}
.y2c{bottom:193.597333pt;}
.y4e{bottom:200.092000pt;}
.y2b{bottom:209.538667pt;}
.y4d{bottom:212.048000pt;}
.y2a{bottom:225.478667pt;}
.y4c{bottom:231.773333pt;}
.y29{bottom:241.418667pt;}
.y4b{bottom:256.680000pt;}
.y28{bottom:257.358667pt;}
.y4a{bottom:272.620000pt;}
.y27{bottom:273.298667pt;}
.y49{bottom:288.560000pt;}
.y26{bottom:289.238667pt;}
.y48{bottom:304.501333pt;}
.y25{bottom:305.180000pt;}
.y47{bottom:320.441333pt;}
.y24{bottom:321.120000pt;}
.y23{bottom:337.060000pt;}
.y46{bottom:340.565333pt;}
.y22{bottom:353.000000pt;}
.y45{bottom:365.472000pt;}
.y21{bottom:368.940000pt;}
.y44{bottom:381.412000pt;}
.y20{bottom:384.881333pt;}
.y43{bottom:397.352000pt;}
.y1f{bottom:400.821333pt;}
.y42{bottom:413.292000pt;}
.y1e{bottom:423.252000pt;}
.y41{bottom:429.233333pt;}
.y40{bottom:445.173333pt;}
.y1d{bottom:455.120000pt;}
.y3f{bottom:461.113333pt;}
.y1c{bottom:468.404000pt;}
.y3e{bottom:477.053333pt;}
.y1b{bottom:485.156000pt;}
.y3d{bottom:492.993333pt;}
.y1a{bottom:498.438667pt;}
.y3c{bottom:508.934667pt;}
.y19{bottom:511.722667pt;}
.y3b{bottom:524.874667pt;}
.y18{bottom:525.006667pt;}
.y17{bottom:538.289333pt;}
.y3a{bottom:540.814667pt;}
.y16{bottom:551.573333pt;}
.y39{bottom:556.754667pt;}
.y15{bottom:564.857333pt;}
.y38{bottom:572.694667pt;}
.y14{bottom:578.140000pt;}
.y37{bottom:588.634667pt;}
.y13{bottom:591.424000pt;}
.y36{bottom:604.576000pt;}
.y12{bottom:604.708000pt;}
.y11{bottom:617.990667pt;}
.y35{bottom:620.516000pt;}
.y10{bottom:631.274667pt;}
.y34{bottom:636.456000pt;}
.yf{bottom:644.558667pt;}
.y33{bottom:652.396000pt;}
.ye{bottom:657.841333pt;}
.yd{bottom:668.336000pt;}
.yc{bottom:715.876000pt;}
.yb{bottom:732.314667pt;}
.ya{bottom:766.046667pt;}
.y9{bottom:807.889333pt;}
.y8{bottom:845.082667pt;}
.y7{bottom:882.277333pt;}
.y5{bottom:1012.861333pt;}
.y4{bottom:1026.145333pt;}
.y5a{bottom:1032.292451pt;}
.y3{bottom:1039.428000pt;}
.y2{bottom:1052.712000pt;}
.y56{bottom:1059.808874pt;}
.y1{bottom:1065.996000pt;}
.h10{height:15.997920pt;}
.hc{height:29.244587pt;}
.hd{height:29.332949pt;}
.h3{height:31.497440pt;}
.ha{height:32.899243pt;}
.h9{height:33.090517pt;}
.hb{height:33.425248pt;}
.h2{height:35.433632pt;}
.h7{height:36.557568pt;}
.h6{height:36.824235pt;}
.hf{height:39.784827pt;}
.h8{height:39.852000pt;}
.h5{height:40.212224pt;}
.he{height:42.650705pt;}
.h4{height:87.733760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.330560pt;}
.w2{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:75.590667pt;}
.x10{left:88.874667pt;}
.x7{left:97.893333pt;}
.x12{left:102.157333pt;}
.x15{left:104.017333pt;}
.x11{left:115.441333pt;}
.x9{left:119.317333pt;}
.x8{left:121.165333pt;}
.xa{left:136.505333pt;}
.xb{left:159.177333pt;}
.x6{left:173.753333pt;}
.x14{left:185.178667pt;}
.xf{left:208.126667pt;}
.xc{left:274.184000pt;}
.x19{left:404.820000pt;}
.x1b{left:410.133333pt;}
.x18{left:418.104000pt;}
.xd{left:422.042667pt;}
.x1c{left:429.166667pt;}
.x16{left:433.246667pt;}
.x17{left:486.852000pt;}
.xe{left:521.721333pt;}
.x1a{left:524.272000pt;}
.x5{left:560.669333pt;}
.x1{left:567.041333pt;}
.x2{left:574.094667pt;}
.x4{left:598.400000pt;}
.x3{left:631.801333pt;}
.x1d{left:684.710976pt;}
.x1e{left:688.146400pt;}
}




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