
    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_c65e82e3a9559dd9923f5413.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_2b8bfbbcb68a21ffbf7b4dcb.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_060035d24a990ec8d5cc6505.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_d2e28b538ee5c0c8cbdad795.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_042f35455ccec04f5614d952.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1117f3a448a56e861758601c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_233dd6102ef5290a20c81ff3.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
}
.ws3d{word-spacing:-17.933400px;}
.ws42{word-spacing:-15.118034px;}
.ws3f{word-spacing:-11.955000px;}
.ws23{word-spacing:-2.988900px;}
.ws10{word-spacing:-0.053796px;}
.ws43{word-spacing:0.000000px;}
.ws3e{word-spacing:1.076004px;}
.ws27{word-spacing:1.733562px;}
.wsb{word-spacing:2.044087px;}
.ws14{word-spacing:2.391120px;}
.ws30{word-spacing:2.809566px;}
.ws1c{word-spacing:3.048439px;}
.ws3c{word-spacing:3.287790px;}
.ws2d{word-spacing:4.543128px;}
.ws15{word-spacing:4.722462px;}
.ws2e{word-spacing:4.782000px;}
.ws38{word-spacing:5.320122px;}
.wsf{word-spacing:5.379600px;}
.ws1d{word-spacing:5.678910px;}
.ws25{word-spacing:5.738688px;}
.ws7{word-spacing:5.977740px;}
.ws6{word-spacing:5.977800px;}
.ws2c{word-spacing:6.336528px;}
.ws13{word-spacing:6.396246px;}
.ws5{word-spacing:6.575334px;}
.ws3a{word-spacing:7.113582px;}
.ws2a{word-spacing:7.292976px;}
.ws19{word-spacing:7.412412px;}
.ws24{word-spacing:7.711183px;}
.ws8{word-spacing:8.768587px;}
.ws18{word-spacing:8.787366px;}
.ws2b{word-spacing:8.966700px;}
.ws1e{word-spacing:10.819340px;}
.ws21{word-spacing:11.238264px;}
.ws1b{word-spacing:11.417598px;}
.ws28{word-spacing:11.716488px;}
.ws12{word-spacing:11.955600px;}
.ws22{word-spacing:12.673414px;}
.ws33{word-spacing:13.091382px;}
.ws1f{word-spacing:13.211058px;}
.ws3{word-spacing:13.246188px;}
.ws2{word-spacing:13.246236px;}
.ws2f{word-spacing:13.390272px;}
.ws31{word-spacing:13.868496px;}
.ws29{word-spacing:13.928274px;}
.ws4{word-spacing:14.346000px;}
.ws16{word-spacing:14.346720px;}
.ws1a{word-spacing:14.406498px;}
.wsc{word-spacing:14.578662px;}
.ws40{word-spacing:14.872020px;}
.ws26{word-spacing:14.884483px;}
.ws0{word-spacing:14.901115px;}
.ws1{word-spacing:14.901761px;}
.wse{word-spacing:15.062880px;}
.ws17{word-spacing:15.303288px;}
.ws37{word-spacing:15.900948px;}
.ws3b{word-spacing:16.140060px;}
.wsd{word-spacing:16.892267px;}
.ws34{word-spacing:17.156286px;}
.ws20{word-spacing:17.754066px;}
.ws9{word-spacing:18.613362px;}
.ws32{word-spacing:18.650736px;}
.ws39{word-spacing:18.770292px;}
.wsa{word-spacing:19.796982px;}
.ws11{word-spacing:20.119704px;}
.ws36{word-spacing:21.520080px;}
.ws35{word-spacing:21.818970px;}
.ws41{word-spacing:24.388200px;}
._2{margin-left:-11.476800px;}
._5{margin-left:-10.042200px;}
._6{margin-left:-7.657139px;}
._1{margin-left:-6.454444px;}
._7{margin-left:-4.602918px;}
._3{margin-left:-3.586500px;}
._9{margin-left:-2.510676px;}
._4{margin-left:-1.434600px;}
._0{width:1.346406px;}
._d{width:2.964888px;}
._a{width:24.749156px;}
._8{width:28.275173px;}
._b{width:29.889000px;}
._c{width:50.211000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.820000px;}
.fs0{font-size:53.796000px;}
.fs4{font-size:59.778000px;}
.fs7{font-size:60.472138px;}
.fs3{font-size:65.754000px;}
.fs6{font-size:66.231389px;}
.fs5{font-size:71.990640px;}
.fs2{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.659524px;}
.y52{bottom:55.492785px;}
.y51{bottom:57.712496px;}
.y6{bottom:67.420500px;}
.y37{bottom:106.299000px;}
.y4f{bottom:112.852500px;}
.y36{bottom:124.231500px;}
.y4e{bottom:126.301500px;}
.y4d{bottom:139.752000px;}
.y35{bottom:142.164000px;}
.y34{bottom:160.098000px;}
.y4c{bottom:161.943000px;}
.y33{bottom:178.030500px;}
.y4b{bottom:189.963000px;}
.y32{bottom:195.963000px;}
.y4a{bottom:207.895500px;}
.y31{bottom:213.895500px;}
.y49{bottom:230.536500px;}
.y30{bottom:231.828000px;}
.y2f{bottom:249.760500px;}
.y48{bottom:258.556500px;}
.y2e{bottom:267.694500px;}
.y47{bottom:276.489000px;}
.y2d{bottom:285.627000px;}
.y46{bottom:294.421500px;}
.y2c{bottom:303.559500px;}
.y45{bottom:312.354000px;}
.y2b{bottom:328.342500px;}
.y44{bottom:330.286500px;}
.y43{bottom:348.220500px;}
.y2a{bottom:359.400000px;}
.y42{bottom:366.153000px;}
.y29{bottom:377.332500px;}
.y41{bottom:384.085500px;}
.y28{bottom:395.265000px;}
.y40{bottom:402.018000px;}
.y27{bottom:413.197500px;}
.y3f{bottom:419.950500px;}
.y26{bottom:431.130000px;}
.y3e{bottom:437.883000px;}
.y25{bottom:449.064000px;}
.y3d{bottom:455.817000px;}
.y24{bottom:467.353500px;}
.y3c{bottom:473.749500px;}
.y23{bottom:485.286000px;}
.y3b{bottom:491.682000px;}
.y22{bottom:503.218500px;}
.y3a{bottom:509.614500px;}
.y21{bottom:521.151000px;}
.y39{bottom:527.547000px;}
.y20{bottom:539.085000px;}
.y1f{bottom:557.017500px;}
.y1e{bottom:574.950000px;}
.y38{bottom:578.554500px;}
.y1d{bottom:592.882500px;}
.y1c{bottom:610.815000px;}
.y1b{bottom:628.747500px;}
.y1a{bottom:646.681500px;}
.y19{bottom:664.614000px;}
.y18{bottom:689.397000px;}
.y17{bottom:724.608000px;}
.y16{bottom:743.295000px;}
.y15{bottom:758.239500px;}
.y14{bottom:773.182500px;}
.y13{bottom:788.127000px;}
.y12{bottom:803.070000px;}
.y11{bottom:818.014500px;}
.y10{bottom:832.959000px;}
.yf{bottom:847.902000px;}
.ye{bottom:859.474500px;}
.yd{bottom:914.490000px;}
.yc{bottom:932.983500px;}
.yb{bottom:951.475500px;}
.ya{bottom:969.969000px;}
.y9{bottom:988.684500px;}
.y8{bottom:1035.757500px;}
.y7{bottom:1077.601500px;}
.y5{bottom:1139.469000px;}
.y4{bottom:1154.413500px;}
.y54{bottom:1161.329008px;}
.y3{bottom:1169.356500px;}
.y2{bottom:1184.301000px;}
.y50{bottom:1192.284983px;}
.y1{bottom:1199.245500px;}
.hd{height:17.997660px;}
.ha{height:32.900160px;}
.h3{height:35.434620px;}
.h8{height:37.011648px;}
.h7{height:37.226832px;}
.h9{height:37.603404px;}
.h2{height:39.862836px;}
.h6{height:41.127264px;}
.hc{height:44.757931px;}
.h5{height:45.238752px;}
.hb{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;}
.x12{left:85.039500px;}
.xe{left:99.982500px;}
.x10{left:114.927000px;}
.x7{left:116.566500px;}
.xf{left:129.871500px;}
.x13{left:145.830000px;}
.xd{left:167.581500px;}
.x11{left:192.171000px;}
.x6{left:195.472500px;}
.x8{left:236.124000px;}
.x9{left:254.778000px;}
.xb{left:302.935500px;}
.xa{left:307.659000px;}
.xc{left:381.861000px;}
.x16{left:455.422500px;}
.x19{left:461.400000px;}
.x15{left:470.367000px;}
.x1a{left:482.812500px;}
.x14{left:517.956000px;}
.x17{left:543.180000px;}
.x18{left:589.806000px;}
.x5{left:630.753000px;}
.x1{left:637.921500px;}
.x2{left:645.856500px;}
.x4{left:673.200000px;}
.x3{left:710.776500px;}
.x1b{left:770.299848px;}
.x1c{left:774.164700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.654288pt;}
.ls0{letter-spacing:2.656800pt;}
.ws3d{word-spacing:-15.940800pt;}
.ws42{word-spacing:-13.438253pt;}
.ws3f{word-spacing:-10.626667pt;}
.ws23{word-spacing:-2.656800pt;}
.ws10{word-spacing:-0.047819pt;}
.ws43{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.956448pt;}
.ws27{word-spacing:1.540944pt;}
.wsb{word-spacing:1.816966pt;}
.ws14{word-spacing:2.125440pt;}
.ws30{word-spacing:2.497392pt;}
.ws1c{word-spacing:2.709723pt;}
.ws3c{word-spacing:2.922480pt;}
.ws2d{word-spacing:4.038336pt;}
.ws15{word-spacing:4.197744pt;}
.ws2e{word-spacing:4.250667pt;}
.ws38{word-spacing:4.728998pt;}
.wsf{word-spacing:4.781867pt;}
.ws1d{word-spacing:5.047920pt;}
.ws25{word-spacing:5.101056pt;}
.ws7{word-spacing:5.313547pt;}
.ws6{word-spacing:5.313600pt;}
.ws2c{word-spacing:5.632469pt;}
.ws13{word-spacing:5.685552pt;}
.ws5{word-spacing:5.844742pt;}
.ws3a{word-spacing:6.323184pt;}
.ws2a{word-spacing:6.482645pt;}
.ws19{word-spacing:6.588811pt;}
.ws24{word-spacing:6.854385pt;}
.ws8{word-spacing:7.794299pt;}
.ws18{word-spacing:7.810992pt;}
.ws2b{word-spacing:7.970400pt;}
.ws1e{word-spacing:9.617191pt;}
.ws21{word-spacing:9.989568pt;}
.ws1b{word-spacing:10.148976pt;}
.ws28{word-spacing:10.414656pt;}
.ws12{word-spacing:10.627200pt;}
.ws22{word-spacing:11.265257pt;}
.ws33{word-spacing:11.636784pt;}
.ws1f{word-spacing:11.743162pt;}
.ws3{word-spacing:11.774389pt;}
.ws2{word-spacing:11.774432pt;}
.ws2f{word-spacing:11.902464pt;}
.ws31{word-spacing:12.327552pt;}
.ws29{word-spacing:12.380688pt;}
.ws4{word-spacing:12.752000pt;}
.ws16{word-spacing:12.752640pt;}
.ws1a{word-spacing:12.805776pt;}
.wsc{word-spacing:12.958811pt;}
.ws40{word-spacing:13.219573pt;}
.ws26{word-spacing:13.230651pt;}
.ws0{word-spacing:13.245436pt;}
.ws1{word-spacing:13.246010pt;}
.wse{word-spacing:13.389227pt;}
.ws17{word-spacing:13.602922pt;}
.ws37{word-spacing:14.134176pt;}
.ws3b{word-spacing:14.346720pt;}
.wsd{word-spacing:15.015348pt;}
.ws34{word-spacing:15.250032pt;}
.ws20{word-spacing:15.781392pt;}
.ws9{word-spacing:16.545211pt;}
.ws32{word-spacing:16.578432pt;}
.ws39{word-spacing:16.684704pt;}
.wsa{word-spacing:17.597317pt;}
.ws11{word-spacing:17.884181pt;}
.ws36{word-spacing:19.128960pt;}
.ws35{word-spacing:19.394640pt;}
.ws41{word-spacing:21.678400pt;}
._2{margin-left:-10.201600pt;}
._5{margin-left:-8.926400pt;}
._6{margin-left:-6.806346pt;}
._1{margin-left:-5.737284pt;}
._7{margin-left:-4.091483pt;}
._3{margin-left:-3.188000pt;}
._9{margin-left:-2.231712pt;}
._4{margin-left:-1.275200pt;}
._0{width:1.196806pt;}
._d{width:2.635456pt;}
._a{width:21.999250pt;}
._8{width:25.133487pt;}
._b{width:26.568000pt;}
._c{width:44.632000pt;}
.fs1{font-size:42.506667pt;}
.fs0{font-size:47.818667pt;}
.fs4{font-size:53.136000pt;}
.fs7{font-size:53.753011pt;}
.fs3{font-size:58.448000pt;}
.fs6{font-size:58.872346pt;}
.fs5{font-size:63.991680pt;}
.fs2{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.252910pt;}
.y52{bottom:49.326920pt;}
.y51{bottom:51.299997pt;}
.y6{bottom:59.929333pt;}
.y37{bottom:94.488000pt;}
.y4f{bottom:100.313333pt;}
.y36{bottom:110.428000pt;}
.y4e{bottom:112.268000pt;}
.y4d{bottom:124.224000pt;}
.y35{bottom:126.368000pt;}
.y34{bottom:142.309333pt;}
.y4c{bottom:143.949333pt;}
.y33{bottom:158.249333pt;}
.y4b{bottom:168.856000pt;}
.y32{bottom:174.189333pt;}
.y4a{bottom:184.796000pt;}
.y31{bottom:190.129333pt;}
.y49{bottom:204.921333pt;}
.y30{bottom:206.069333pt;}
.y2f{bottom:222.009333pt;}
.y48{bottom:229.828000pt;}
.y2e{bottom:237.950667pt;}
.y47{bottom:245.768000pt;}
.y2d{bottom:253.890667pt;}
.y46{bottom:261.708000pt;}
.y2c{bottom:269.830667pt;}
.y45{bottom:277.648000pt;}
.y2b{bottom:291.860000pt;}
.y44{bottom:293.588000pt;}
.y43{bottom:309.529333pt;}
.y2a{bottom:319.466667pt;}
.y42{bottom:325.469333pt;}
.y29{bottom:335.406667pt;}
.y41{bottom:341.409333pt;}
.y28{bottom:351.346667pt;}
.y40{bottom:357.349333pt;}
.y27{bottom:367.286667pt;}
.y3f{bottom:373.289333pt;}
.y26{bottom:383.226667pt;}
.y3e{bottom:389.229333pt;}
.y25{bottom:399.168000pt;}
.y3d{bottom:405.170667pt;}
.y24{bottom:415.425333pt;}
.y3c{bottom:421.110667pt;}
.y23{bottom:431.365333pt;}
.y3b{bottom:437.050667pt;}
.y22{bottom:447.305333pt;}
.y3a{bottom:452.990667pt;}
.y21{bottom:463.245333pt;}
.y39{bottom:468.930667pt;}
.y20{bottom:479.186667pt;}
.y1f{bottom:495.126667pt;}
.y1e{bottom:511.066667pt;}
.y38{bottom:514.270667pt;}
.y1d{bottom:527.006667pt;}
.y1c{bottom:542.946667pt;}
.y1b{bottom:558.886667pt;}
.y1a{bottom:574.828000pt;}
.y19{bottom:590.768000pt;}
.y18{bottom:612.797333pt;}
.y17{bottom:644.096000pt;}
.y16{bottom:660.706667pt;}
.y15{bottom:673.990667pt;}
.y14{bottom:687.273333pt;}
.y13{bottom:700.557333pt;}
.y12{bottom:713.840000pt;}
.y11{bottom:727.124000pt;}
.y10{bottom:740.408000pt;}
.yf{bottom:753.690667pt;}
.ye{bottom:763.977333pt;}
.yd{bottom:812.880000pt;}
.yc{bottom:829.318667pt;}
.yb{bottom:845.756000pt;}
.ya{bottom:862.194667pt;}
.y9{bottom:878.830667pt;}
.y8{bottom:920.673333pt;}
.y7{bottom:957.868000pt;}
.y5{bottom:1012.861333pt;}
.y4{bottom:1026.145333pt;}
.y54{bottom:1032.292451pt;}
.y3{bottom:1039.428000pt;}
.y2{bottom:1052.712000pt;}
.y50{bottom:1059.808874pt;}
.y1{bottom:1065.996000pt;}
.hd{height:15.997920pt;}
.ha{height:29.244587pt;}
.h3{height:31.497440pt;}
.h8{height:32.899243pt;}
.h7{height:33.090517pt;}
.h9{height:33.425248pt;}
.h2{height:35.433632pt;}
.h6{height:36.557568pt;}
.hc{height:39.784827pt;}
.h5{height:40.212224pt;}
.hb{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;}
.x12{left:75.590667pt;}
.xe{left:88.873333pt;}
.x10{left:102.157333pt;}
.x7{left:103.614667pt;}
.xf{left:115.441333pt;}
.x13{left:129.626667pt;}
.xd{left:148.961333pt;}
.x11{left:170.818667pt;}
.x6{left:173.753333pt;}
.x8{left:209.888000pt;}
.x9{left:226.469333pt;}
.xb{left:269.276000pt;}
.xa{left:273.474667pt;}
.xc{left:339.432000pt;}
.x16{left:404.820000pt;}
.x19{left:410.133333pt;}
.x15{left:418.104000pt;}
.x1a{left:429.166667pt;}
.x14{left:460.405333pt;}
.x17{left:482.826667pt;}
.x18{left:524.272000pt;}
.x5{left:560.669333pt;}
.x1{left:567.041333pt;}
.x2{left:574.094667pt;}
.x4{left:598.400000pt;}
.x3{left:631.801333pt;}
.x1b{left:684.710976pt;}
.x1c{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; }
  