
    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_0fcb4c3c04a824f38f64d2c8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9dc42c0f1b7671a7ea73d819.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_cefe11a5dd9b7f59f5b28f68.woff')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_0ce8862b5e1228b666144eb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6a41dc5d73fec5700f91ae99.woff')format("woff");}.ff5{font-family:ff5;line-height:0.869629;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_254eb64fd3475e5869fdf5a2.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;}
.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;}
.ls1c{letter-spacing:-1.584000px;}
.ls24{letter-spacing:-1.322640px;}
.ls1a{letter-spacing:-1.296000px;}
.ls1b{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.601200px;}
.ls18{letter-spacing:-0.336960px;}
.ls1{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.263520px;}
.ls19{letter-spacing:-0.252720px;}
.lsc{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.190080px;}
.ls25{letter-spacing:-0.168480px;}
.ls6{letter-spacing:-0.120240px;}
.lsa{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.120240px;}
.ls23{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.168480px;}
.ls8{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.240480px;}
.ls21{letter-spacing:0.264240px;}
.lsd{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.324000px;}
.ls22{letter-spacing:22.248000px;}
.ls13{letter-spacing:26.332560px;}
.lsb{letter-spacing:26.573040px;}
.ls14{letter-spacing:28.015920px;}
.ls1d{letter-spacing:30.304800px;}
.ls17{letter-spacing:30.816000px;}
.lsf{letter-spacing:32.688000px;}
.ls5{letter-spacing:58.536000px;}
.ls10{letter-spacing:65.916000px;}
.ls15{letter-spacing:66.492720px;}
.ls20{letter-spacing:112.320000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,48,87),0 0.015em rgb(0,48,87),0.015em 0 rgb(0,48,87),0 -0.015em  rgb(0,48,87);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,48,87);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.900000px;}
.ws3b{word-spacing:-32.832000px;}
.ws41{word-spacing:-32.544000px;}
.ws40{word-spacing:-32.256000px;}
.ws27{word-spacing:-31.680000px;}
.ws28{word-spacing:-30.960000px;}
.ws2f{word-spacing:-29.514240px;}
.ws11{word-spacing:-27.414720px;}
.ws1b{word-spacing:-27.294480px;}
.ws13{word-spacing:-27.174240px;}
.ws8{word-spacing:-27.054000px;}
.ws1a{word-spacing:-26.933760px;}
.ws19{word-spacing:-26.573040px;}
.ws3f{word-spacing:-25.851600px;}
.ws9{word-spacing:-24.516000px;}
.ws2a{word-spacing:-24.192000px;}
.ws29{word-spacing:-24.084000px;}
.ws14{word-spacing:-20.016000px;}
.ws26{word-spacing:-18.701280px;}
.ws20{word-spacing:-2.885760px;}
.wsc{word-spacing:-2.376000px;}
.ws21{word-spacing:-2.164320px;}
.wsa{word-spacing:-2.052000px;}
.ws1c{word-spacing:-1.872000px;}
.ws17{word-spacing:-1.584000px;}
.ws4{word-spacing:-1.442880px;}
.ws42{word-spacing:-1.440000px;}
.wsd{word-spacing:-1.368000px;}
.ws3a{word-spacing:-1.295400px;}
.ws33{word-spacing:-1.260216px;}
.ws7{word-spacing:-1.226448px;}
.ws1f{word-spacing:-1.202400px;}
.ws36{word-spacing:-1.056960px;}
.ws2d{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.864000px;}
.ws46{word-spacing:-0.758160px;}
.ws3e{word-spacing:-0.756000px;}
.ws15{word-spacing:-0.721440px;}
.ws3c{word-spacing:-0.648000px;}
.ws44{word-spacing:-0.601200px;}
.ws12{word-spacing:-0.240480px;}
.ws30{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.168480px;}
.ws5{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.084240px;}
.ws2{word-spacing:0.000000px;}
.ws3d{word-spacing:0.108000px;}
.ws35{word-spacing:0.120240px;}
.ws32{word-spacing:0.190080px;}
.ws24{word-spacing:0.240480px;}
.ws31{word-spacing:0.263520px;}
.ws34{word-spacing:0.288576px;}
.ws10{word-spacing:0.324000px;}
.ws25{word-spacing:0.360720px;}
.ws6{word-spacing:0.432000px;}
.ws16{word-spacing:0.480960px;}
.ws37{word-spacing:0.540000px;}
.ws3{word-spacing:0.574560px;}
.ws23{word-spacing:0.576000px;}
.ws1{word-spacing:0.648000px;}
.ws43{word-spacing:0.665496px;}
.ws47{word-spacing:0.758160px;}
.ws1d{word-spacing:0.864000px;}
.ws39{word-spacing:0.972000px;}
.wsf{word-spacing:1.006560px;}
.wsb{word-spacing:1.080000px;}
.wse{word-spacing:1.177200px;}
.ws22{word-spacing:1.584000px;}
.ws38{word-spacing:1.836000px;}
.ws2b{word-spacing:2.106000px;}
.ws1e{word-spacing:2.525040px;}
._1{margin-left:-1.587600px;}
._0{width:1.069200px;}
._2{width:2.916000px;}
._5{width:4.581360px;}
._6{width:25.889040px;}
._4{width:2140.692000px;}
._3{width:2177.424000px;}
.fc7{color:rgb(43,56,70);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(31,78,121);}
.fc3{color:rgb(137,142,154);}
.fc2{color:rgb(24,23,23);}
.fc6{color:rgb(34,42,53);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,48,87);}
.fs9{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs8{font-size:131.760000px;}
.fs3{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.fsa{font-size:264.240000px;}
.fs0{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:31.567500px;}
.y7{bottom:39.519600px;}
.yf{bottom:88.091850px;}
.y15{bottom:99.682050px;}
.y28{bottom:117.572550px;}
.ye{bottom:126.251850px;}
.y27{bottom:152.826180px;}
.y49{bottom:160.057590px;}
.y5{bottom:167.747850px;}
.y26{bottom:188.838060px;}
.y48{bottom:197.670750px;}
.y4{bottom:213.467850px;}
.y25{bottom:224.849940px;}
.y1e{bottom:242.297550px;}
.y41{bottom:251.343600px;}
.y1d{bottom:289.637550px;}
.y47{bottom:293.250750px;}
.y40{bottom:296.163600px;}
.y24{bottom:296.843640px;}
.y6{bottom:331.132950px;}
.y46{bottom:332.130750px;}
.y3a{bottom:332.655000px;}
.y23{bottom:332.855520px;}
.y1c{bottom:336.977550px;}
.y3f{bottom:340.794600px;}
.y10{bottom:360.822750px;}
.y22{bottom:368.867400px;}
.y16{bottom:375.078750px;}
.y2f{bottom:381.600600px;}
.y39{bottom:382.335000px;}
.y1b{bottom:384.497550px;}
.y3e{bottom:385.425600px;}
.y45{bottom:385.950750px;}
.y3{bottom:398.746200px;}
.yb{bottom:403.695450px;}
.y2e{bottom:414.000600px;}
.y38{bottom:416.895000px;}
.y1a{bottom:431.837550px;}
.y44{bottom:439.950750px;}
.y21{bottom:440.861100px;}
.y31{bottom:442.930950px;}
.y2d{bottom:446.400600px;}
.y37{bottom:466.566000px;}
.y3d{bottom:474.714600px;}
.y2c{bottom:478.800600px;}
.y2{bottom:486.226200px;}
.ya{bottom:491.895450px;}
.y34{bottom:498.588930px;}
.y36{bottom:501.315000px;}
.y2b{bottom:511.200600px;}
.y43{bottom:518.655300px;}
.y3c{bottom:519.345600px;}
.y14{bottom:525.622590px;}
.y19{bottom:533.177550px;}
.y9{bottom:536.175450px;}
.y33{bottom:546.474510px;}
.y11{bottom:557.220750px;}
.y20{bottom:559.723500px;}
.y1{bottom:573.706200px;}
.y2a{bottom:574.808850px;}
.y18{bottom:582.137550px;}
.y42{bottom:583.455300px;}
.y32{bottom:594.540450px;}
.y3b{bottom:605.860050px;}
.y1f{bottom:608.683650px;}
.yd{bottom:617.142450px;}
.y13{bottom:620.491950px;}
.y29{bottom:620.798700px;}
.y8{bottom:624.670500px;}
.y17{bottom:631.555350px;}
.y30{bottom:631.839000px;}
.y35{bottom:670.413750px;}
.y12{bottom:680.235000px;}
.h12{height:43.900312px;}
.h7{height:49.886719px;}
.h9{height:52.453125px;}
.hf{height:58.367461px;}
.h2{height:66.349336px;}
.hb{height:73.828125px;}
.h5{height:74.830078px;}
.h6{height:78.046875px;}
.ha{height:83.134687px;}
.h3{height:83.310820px;}
.he{height:86.892187px;}
.hd{height:87.596719px;}
.h11{height:90.070312px;}
.hc{height:98.437500px;}
.h10{height:99.562500px;}
.h4{height:99.773438px;}
.h8{height:116.236055px;}
.h13{height:183.084258px;}
.h1{height:221.484375px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xf{left:26.528250px;}
.x7{left:62.382000px;}
.x18{left:80.440500px;}
.x14{left:82.188900px;}
.x1a{left:92.068650px;}
.x1{left:96.307500px;}
.x8{left:109.800000px;}
.x16{left:115.107450px;}
.x13{left:119.236950px;}
.xc{left:122.896650px;}
.x17{left:150.300000px;}
.xe{left:188.618100px;}
.x9{left:254.518050px;}
.xb{left:266.644650px;}
.xd{left:313.168050px;}
.x6{left:341.345400px;}
.x2{left:347.083500px;}
.x19{left:425.301600px;}
.x4{left:430.753650px;}
.x3{left:450.763500px;}
.x12{left:454.333950px;}
.x5{left:571.873650px;}
.xa{left:663.735000px;}
.x10{left:703.698600px;}
.x15{left:854.073000px;}
.x11{left:1320.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.408000pt;}
.ls24{letter-spacing:-1.175680pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.534400pt;}
.ls18{letter-spacing:-0.299520pt;}
.ls1{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.234240pt;}
.ls19{letter-spacing:-0.224640pt;}
.lsc{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.168960pt;}
.ls25{letter-spacing:-0.149760pt;}
.ls6{letter-spacing:-0.106880pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.106880pt;}
.ls23{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.149760pt;}
.ls8{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.213760pt;}
.ls21{letter-spacing:0.234880pt;}
.lsd{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls22{letter-spacing:19.776000pt;}
.ls13{letter-spacing:23.406720pt;}
.lsb{letter-spacing:23.620480pt;}
.ls14{letter-spacing:24.903040pt;}
.ls1d{letter-spacing:26.937600pt;}
.ls17{letter-spacing:27.392000pt;}
.lsf{letter-spacing:29.056000pt;}
.ls5{letter-spacing:52.032000pt;}
.ls10{letter-spacing:58.592000pt;}
.ls15{letter-spacing:59.104640pt;}
.ls20{letter-spacing:99.840000pt;}
.ws0{word-spacing:-64.800000pt;}
.ws3b{word-spacing:-29.184000pt;}
.ws41{word-spacing:-28.928000pt;}
.ws40{word-spacing:-28.672000pt;}
.ws27{word-spacing:-28.160000pt;}
.ws28{word-spacing:-27.520000pt;}
.ws2f{word-spacing:-26.234880pt;}
.ws11{word-spacing:-24.368640pt;}
.ws1b{word-spacing:-24.261760pt;}
.ws13{word-spacing:-24.154880pt;}
.ws8{word-spacing:-24.048000pt;}
.ws1a{word-spacing:-23.941120pt;}
.ws19{word-spacing:-23.620480pt;}
.ws3f{word-spacing:-22.979200pt;}
.ws9{word-spacing:-21.792000pt;}
.ws2a{word-spacing:-21.504000pt;}
.ws29{word-spacing:-21.408000pt;}
.ws14{word-spacing:-17.792000pt;}
.ws26{word-spacing:-16.623360pt;}
.ws20{word-spacing:-2.565120pt;}
.wsc{word-spacing:-2.112000pt;}
.ws21{word-spacing:-1.923840pt;}
.wsa{word-spacing:-1.824000pt;}
.ws1c{word-spacing:-1.664000pt;}
.ws17{word-spacing:-1.408000pt;}
.ws4{word-spacing:-1.282560pt;}
.ws42{word-spacing:-1.280000pt;}
.wsd{word-spacing:-1.216000pt;}
.ws3a{word-spacing:-1.151467pt;}
.ws33{word-spacing:-1.120192pt;}
.ws7{word-spacing:-1.090176pt;}
.ws1f{word-spacing:-1.068800pt;}
.ws36{word-spacing:-0.939520pt;}
.ws2d{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.768000pt;}
.ws46{word-spacing:-0.673920pt;}
.ws3e{word-spacing:-0.672000pt;}
.ws15{word-spacing:-0.641280pt;}
.ws3c{word-spacing:-0.576000pt;}
.ws44{word-spacing:-0.534400pt;}
.ws12{word-spacing:-0.213760pt;}
.ws30{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.149760pt;}
.ws5{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.096000pt;}
.ws35{word-spacing:0.106880pt;}
.ws32{word-spacing:0.168960pt;}
.ws24{word-spacing:0.213760pt;}
.ws31{word-spacing:0.234240pt;}
.ws34{word-spacing:0.256512pt;}
.ws10{word-spacing:0.288000pt;}
.ws25{word-spacing:0.320640pt;}
.ws6{word-spacing:0.384000pt;}
.ws16{word-spacing:0.427520pt;}
.ws37{word-spacing:0.480000pt;}
.ws3{word-spacing:0.510720pt;}
.ws23{word-spacing:0.512000pt;}
.ws1{word-spacing:0.576000pt;}
.ws43{word-spacing:0.591552pt;}
.ws47{word-spacing:0.673920pt;}
.ws1d{word-spacing:0.768000pt;}
.ws39{word-spacing:0.864000pt;}
.wsf{word-spacing:0.894720pt;}
.wsb{word-spacing:0.960000pt;}
.wse{word-spacing:1.046400pt;}
.ws22{word-spacing:1.408000pt;}
.ws38{word-spacing:1.632000pt;}
.ws2b{word-spacing:1.872000pt;}
.ws1e{word-spacing:2.244480pt;}
._1{margin-left:-1.411200pt;}
._0{width:0.950400pt;}
._2{width:2.592000pt;}
._5{width:4.072320pt;}
._6{width:23.012480pt;}
._4{width:1902.837333pt;}
._3{width:1935.488000pt;}
.fs9{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs8{font-size:117.120000pt;}
.fs3{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.fsa{font-size:234.880000pt;}
.fs0{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:28.060000pt;}
.y7{bottom:35.128533pt;}
.yf{bottom:78.303867pt;}
.y15{bottom:88.606267pt;}
.y28{bottom:104.508933pt;}
.ye{bottom:112.223867pt;}
.y27{bottom:135.845493pt;}
.y49{bottom:142.273413pt;}
.y5{bottom:149.109200pt;}
.y26{bottom:167.856053pt;}
.y48{bottom:175.707333pt;}
.y4{bottom:189.749200pt;}
.y25{bottom:199.866613pt;}
.y1e{bottom:215.375600pt;}
.y41{bottom:223.416533pt;}
.y1d{bottom:257.455600pt;}
.y47{bottom:260.667333pt;}
.y40{bottom:263.256533pt;}
.y24{bottom:263.861013pt;}
.y6{bottom:294.340400pt;}
.y46{bottom:295.227333pt;}
.y3a{bottom:295.693333pt;}
.y23{bottom:295.871573pt;}
.y1c{bottom:299.535600pt;}
.y3f{bottom:302.928533pt;}
.y10{bottom:320.731333pt;}
.y22{bottom:327.882133pt;}
.y16{bottom:333.403333pt;}
.y2f{bottom:339.200533pt;}
.y39{bottom:339.853333pt;}
.y1b{bottom:341.775600pt;}
.y3e{bottom:342.600533pt;}
.y45{bottom:343.067333pt;}
.y3{bottom:354.441067pt;}
.yb{bottom:358.840400pt;}
.y2e{bottom:368.000533pt;}
.y38{bottom:370.573333pt;}
.y1a{bottom:383.855600pt;}
.y44{bottom:391.067333pt;}
.y21{bottom:391.876533pt;}
.y31{bottom:393.716400pt;}
.y2d{bottom:396.800533pt;}
.y37{bottom:414.725333pt;}
.y3d{bottom:421.968533pt;}
.y2c{bottom:425.600533pt;}
.y2{bottom:432.201067pt;}
.ya{bottom:437.240400pt;}
.y34{bottom:443.190160pt;}
.y36{bottom:445.613333pt;}
.y2b{bottom:454.400533pt;}
.y43{bottom:461.026933pt;}
.y3c{bottom:461.640533pt;}
.y14{bottom:467.220080pt;}
.y19{bottom:473.935600pt;}
.y9{bottom:476.600400pt;}
.y33{bottom:485.755120pt;}
.y11{bottom:495.307333pt;}
.y20{bottom:497.532000pt;}
.y1{bottom:509.961067pt;}
.y2a{bottom:510.941200pt;}
.y18{bottom:517.455600pt;}
.y42{bottom:518.626933pt;}
.y32{bottom:528.480400pt;}
.y3b{bottom:538.542267pt;}
.y1f{bottom:541.052133pt;}
.yd{bottom:548.571067pt;}
.y13{bottom:551.548400pt;}
.y29{bottom:551.821067pt;}
.y8{bottom:555.262667pt;}
.y17{bottom:561.382533pt;}
.y30{bottom:561.634667pt;}
.y35{bottom:595.923333pt;}
.y12{bottom:604.653333pt;}
.h12{height:39.022500pt;}
.h7{height:44.343750pt;}
.h9{height:46.625000pt;}
.hf{height:51.882187pt;}
.h2{height:58.977187pt;}
.hb{height:65.625000pt;}
.h5{height:66.515625pt;}
.h6{height:69.375000pt;}
.ha{height:73.897500pt;}
.h3{height:74.054063pt;}
.he{height:77.237500pt;}
.hd{height:77.863750pt;}
.h11{height:80.062500pt;}
.hc{height:87.500000pt;}
.h10{height:88.500000pt;}
.h4{height:88.687500pt;}
.h8{height:103.320937pt;}
.h13{height:162.741562pt;}
.h1{height:196.875000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xf{left:23.580667pt;}
.x7{left:55.450667pt;}
.x18{left:71.502667pt;}
.x14{left:73.056800pt;}
.x1a{left:81.838800pt;}
.x1{left:85.606667pt;}
.x8{left:97.600000pt;}
.x16{left:102.317733pt;}
.x13{left:105.988400pt;}
.xc{left:109.241467pt;}
.x17{left:133.600000pt;}
.xe{left:167.660533pt;}
.x9{left:226.238267pt;}
.xb{left:237.017467pt;}
.xd{left:278.371600pt;}
.x6{left:303.418133pt;}
.x2{left:308.518667pt;}
.x19{left:378.045867pt;}
.x4{left:382.892133pt;}
.x3{left:400.678667pt;}
.x12{left:403.852400pt;}
.x5{left:508.332133pt;}
.xa{left:589.986667pt;}
.x10{left:625.509867pt;}
.x15{left:759.176000pt;}
.x11{left:1174.080000pt;}
}




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