
    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_c516d100fb14be1936cf2906.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_46ccea6cee46d2f05c1cb470.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_62ecef8ed96c84ca825ce8ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.878418;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:121.126800px;}
.ls17{letter-spacing:-2.903040px;}
.ls15{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.299520px;}
.ls1a{letter-spacing:-0.246240px;}
.ls1e{letter-spacing:-0.227520px;}
.lsc{letter-spacing:-0.210240px;}
.ls6{letter-spacing:-0.204480px;}
.lsf{letter-spacing:-0.192240px;}
.ls9{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.149760px;}
.ls4{letter-spacing:-0.102240px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.102240px;}
.ls16{letter-spacing:0.138240px;}
.lsd{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192240px;}
.lsa{letter-spacing:0.210240px;}
.ls2{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.246240px;}
.ls18{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.299520px;}
.ls10{letter-spacing:0.384480px;}
.ls0{letter-spacing:35.856000px;}
.ls1{letter-spacing:36.072000px;}
.ls1b{letter-spacing:54.172800px;}
.ls1d{letter-spacing:68.142240px;}
.ls1c{letter-spacing:68.184000px;}
.ls7{letter-spacing:99.000000px;}
.lsb{letter-spacing:111.600000px;}
.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;}
}
.ws0{word-spacing:-84.888000px;}
.ws31{word-spacing:-55.404000px;}
.ws1{word-spacing:-48.816000px;}
.wse{word-spacing:-47.724480px;}
.ws9{word-spacing:-47.514240px;}
.ws17{word-spacing:-43.830720px;}
.ws18{word-spacing:-43.254000px;}
.wsa{word-spacing:-40.500000px;}
.ws1e{word-spacing:-33.546240px;}
.ws19{word-spacing:-32.688000px;}
.wsf{word-spacing:-32.544000px;}
.ws27{word-spacing:-31.380480px;}
.ws24{word-spacing:-31.104000px;}
.ws26{word-spacing:-28.339200px;}
.ws35{word-spacing:-25.709760px;}
.ws2{word-spacing:-23.208480px;}
.ws3{word-spacing:-23.106240px;}
.ws2a{word-spacing:-2.626560px;}
.ws7{word-spacing:-2.147040px;}
.ws15{word-spacing:-1.728000px;}
.ws1f{word-spacing:-1.681920px;}
.ws2d{word-spacing:-1.658880px;}
.ws2f{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.600560px;}
.ws25{word-spacing:-1.584000px;}
.ws33{word-spacing:-1.477440px;}
.ws8{word-spacing:-1.329120px;}
.wsb{word-spacing:-1.260000px;}
.ws1d{word-spacing:-1.152000px;}
.ws2c{word-spacing:-1.105920px;}
.ws22{word-spacing:-1.048320px;}
.ws16{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.967680px;}
.ws12{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.810000px;}
.ws10{word-spacing:-0.420480px;}
.ws1a{word-spacing:-0.384480px;}
.ws23{word-spacing:-0.299520px;}
.ws1c{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.276480px;}
.ws36{word-spacing:-0.227520px;}
.ws5{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.210240px;}
.ws28{word-spacing:-0.192240px;}
.ws14{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:0.149760px;}
.ws1b{word-spacing:0.192240px;}
.ws32{word-spacing:0.246240px;}
.ws13{word-spacing:0.432000px;}
.wsd{word-spacing:0.540000px;}
.ws4{word-spacing:1.080000px;}
.wsc{word-spacing:1.260000px;}
.ws21{word-spacing:1.647360px;}
.ws34{word-spacing:335.810400px;}
._6{margin-left:-11.368944px;}
._7{margin-left:-6.801120px;}
._0{margin-left:-5.335200px;}
._3{margin-left:-3.801600px;}
._1{margin-left:-2.527200px;}
._2{margin-left:-1.144800px;}
._4{width:1.993680px;}
._5{width:3.334896px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,40,85);}
.fc2{color:rgb(187,0,0);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:102.240000px;}
.fsb{font-size:113.760000px;}
.fs7{font-size:138.240000px;}
.fs4{font-size:144.000000px;}
.fs6{font-size:149.760000px;}
.fs3{font-size:180.000000px;}
.fs5{font-size:192.240000px;}
.fs2{font-size:210.240000px;}
.fs0{font-size:216.000000px;}
.fs9{font-size:246.240000px;}
.fsa{font-size:252.000000px;}
.fs8{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:85.639350px;}
.y47{bottom:102.849600px;}
.y48{bottom:112.990350px;}
.ya{bottom:113.324940px;}
.y49{bottom:114.610350px;}
.y32{bottom:120.155820px;}
.y46{bottom:124.378620px;}
.y3b{bottom:128.839350px;}
.y12{bottom:133.231050px;}
.y25{bottom:135.211050px;}
.y4b{bottom:135.341340px;}
.y1c{bottom:143.851050px;}
.y4a{bottom:144.847200px;}
.y9{bottom:146.987460px;}
.y31{bottom:161.377260px;}
.y45{bottom:162.187260px;}
.y24{bottom:174.091050px;}
.y8{bottom:180.649980px;}
.y3a{bottom:180.679350px;}
.y11{bottom:181.831050px;}
.y1b{bottom:182.731050px;}
.y44{bottom:200.168700px;}
.y30{bottom:202.598700px;}
.y7{bottom:208.178100px;}
.y23{bottom:221.611050px;}
.y39{bottom:223.879350px;}
.y10{bottom:241.231050px;}
.y22{bottom:260.491050px;}
.y38{bottom:267.079350px;}
.y1a{bottom:277.771050px;}
.y29{bottom:293.341680px;}
.yf{bottom:300.631050px;}
.y21{bottom:308.011050px;}
.y19{bottom:316.651050px;}
.y6{bottom:318.616350px;}
.y37{bottom:318.919350px;}
.y20{bottom:346.891050px;}
.ye{bottom:349.231050px;}
.y2f{bottom:352.684620px;}
.y18{bottom:355.531050px;}
.y28{bottom:356.361120px;}
.y3e{bottom:360.564120px;}
.y36{bottom:362.119350px;}
.y43{bottom:375.763560px;}
.y5{bottom:376.936350px;}
.y2e{bottom:393.906060px;}
.y17{bottom:394.411050px;}
.yd{bottom:408.631050px;}
.y42{bottom:413.745000px;}
.y35{bottom:413.959350px;}
.y3d{bottom:418.140000px;}
.y27{bottom:419.380560px;}
.y16{bottom:433.291050px;}
.y2d{bottom:435.127500px;}
.y4{bottom:435.256350px;}
.y34{bottom:457.159350px;}
.yc{bottom:457.231050px;}
.y26{bottom:482.400000px;}
.y3{bottom:493.576350px;}
.y33{bottom:500.359350px;}
.y15{bottom:540.278370px;}
.y1f{bottom:546.299370px;}
.y2{bottom:551.896350px;}
.y2c{bottom:585.213570px;}
.y41{bottom:589.436370px;}
.yb{bottom:593.852850px;}
.y14{bottom:596.990610px;}
.y1e{bottom:598.156110px;}
.y1{bottom:610.216350px;}
.y2b{bottom:626.435010px;}
.y40{bottom:627.245010px;}
.y1d{bottom:650.012850px;}
.y13{bottom:653.702850px;}
.y3f{bottom:665.226450px;}
.y2a{bottom:667.656450px;}
.h2{height:72.187031px;}
.hc{height:79.654219px;}
.h8{height:96.795000px;}
.h5{height:100.828125px;}
.h7{height:104.861250px;}
.h4{height:126.035156px;}
.h6{height:135.731953px;}
.h3{height:148.440938px;}
.h1{height:152.507812px;}
.ha{height:172.416094px;}
.h9{height:189.052734px;}
.hb{height:200.781019px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:53.140800px;}
.x12{left:67.943940px;}
.x11{left:76.402500px;}
.xb{left:103.446900px;}
.xc{left:108.650340px;}
.xe{left:111.330900px;}
.x15{left:117.885000px;}
.xd{left:127.887300px;}
.x14{left:222.108750px;}
.x13{left:225.528750px;}
.x16{left:423.100140px;}
.x3{left:621.322350px;}
.x5{left:626.372100px;}
.x9{left:632.500230px;}
.x8{left:642.208350px;}
.x4{left:661.822350px;}
.x7{left:701.112420px;}
.xf{left:704.344050px;}
.x2{left:709.352100px;}
.xa{left:710.405490px;}
.x10{left:720.692100px;}
.x6{left:733.857300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:107.668267pt;}
.ls17{letter-spacing:-2.580480pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.266240pt;}
.ls1a{letter-spacing:-0.218880pt;}
.ls1e{letter-spacing:-0.202240pt;}
.lsc{letter-spacing:-0.186880pt;}
.ls6{letter-spacing:-0.181760pt;}
.lsf{letter-spacing:-0.170880pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.133120pt;}
.ls4{letter-spacing:-0.090880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.090880pt;}
.ls16{letter-spacing:0.122880pt;}
.lsd{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170880pt;}
.lsa{letter-spacing:0.186880pt;}
.ls2{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.218880pt;}
.ls18{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266240pt;}
.ls10{letter-spacing:0.341760pt;}
.ls0{letter-spacing:31.872000pt;}
.ls1{letter-spacing:32.064000pt;}
.ls1b{letter-spacing:48.153600pt;}
.ls1d{letter-spacing:60.570880pt;}
.ls1c{letter-spacing:60.608000pt;}
.ls7{letter-spacing:88.000000pt;}
.lsb{letter-spacing:99.200000pt;}
.ws0{word-spacing:-75.456000pt;}
.ws31{word-spacing:-49.248000pt;}
.ws1{word-spacing:-43.392000pt;}
.wse{word-spacing:-42.421760pt;}
.ws9{word-spacing:-42.234880pt;}
.ws17{word-spacing:-38.960640pt;}
.ws18{word-spacing:-38.448000pt;}
.wsa{word-spacing:-36.000000pt;}
.ws1e{word-spacing:-29.818880pt;}
.ws19{word-spacing:-29.056000pt;}
.wsf{word-spacing:-28.928000pt;}
.ws27{word-spacing:-27.893760pt;}
.ws24{word-spacing:-27.648000pt;}
.ws26{word-spacing:-25.190400pt;}
.ws35{word-spacing:-22.853120pt;}
.ws2{word-spacing:-20.629760pt;}
.ws3{word-spacing:-20.538880pt;}
.ws2a{word-spacing:-2.334720pt;}
.ws7{word-spacing:-1.908480pt;}
.ws15{word-spacing:-1.536000pt;}
.ws1f{word-spacing:-1.495040pt;}
.ws2d{word-spacing:-1.474560pt;}
.ws2f{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.422720pt;}
.ws25{word-spacing:-1.408000pt;}
.ws33{word-spacing:-1.313280pt;}
.ws8{word-spacing:-1.181440pt;}
.wsb{word-spacing:-1.120000pt;}
.ws1d{word-spacing:-1.024000pt;}
.ws2c{word-spacing:-0.983040pt;}
.ws22{word-spacing:-0.931840pt;}
.ws16{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.860160pt;}
.ws12{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.720000pt;}
.ws10{word-spacing:-0.373760pt;}
.ws1a{word-spacing:-0.341760pt;}
.ws23{word-spacing:-0.266240pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.245760pt;}
.ws36{word-spacing:-0.202240pt;}
.ws5{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.186880pt;}
.ws28{word-spacing:-0.170880pt;}
.ws14{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:0.133120pt;}
.ws1b{word-spacing:0.170880pt;}
.ws32{word-spacing:0.218880pt;}
.ws13{word-spacing:0.384000pt;}
.wsd{word-spacing:0.480000pt;}
.ws4{word-spacing:0.960000pt;}
.wsc{word-spacing:1.120000pt;}
.ws21{word-spacing:1.464320pt;}
.ws34{word-spacing:298.498133pt;}
._6{margin-left:-10.105728pt;}
._7{margin-left:-6.045440pt;}
._0{margin-left:-4.742400pt;}
._3{margin-left:-3.379200pt;}
._1{margin-left:-2.246400pt;}
._2{margin-left:-1.017600pt;}
._4{width:1.772160pt;}
._5{width:2.964352pt;}
.fs1{font-size:90.880000pt;}
.fsb{font-size:101.120000pt;}
.fs7{font-size:122.880000pt;}
.fs4{font-size:128.000000pt;}
.fs6{font-size:133.120000pt;}
.fs3{font-size:160.000000pt;}
.fs5{font-size:170.880000pt;}
.fs2{font-size:186.880000pt;}
.fs0{font-size:192.000000pt;}
.fs9{font-size:218.880000pt;}
.fsa{font-size:224.000000pt;}
.fs8{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:76.123867pt;}
.y47{bottom:91.421867pt;}
.y48{bottom:100.435867pt;}
.ya{bottom:100.733280pt;}
.y49{bottom:101.875867pt;}
.y32{bottom:106.805173pt;}
.y46{bottom:110.558773pt;}
.y3b{bottom:114.523867pt;}
.y12{bottom:118.427600pt;}
.y25{bottom:120.187600pt;}
.y4b{bottom:120.303413pt;}
.y1c{bottom:127.867600pt;}
.y4a{bottom:128.753067pt;}
.y9{bottom:130.655520pt;}
.y31{bottom:143.446453pt;}
.y45{bottom:144.166453pt;}
.y24{bottom:154.747600pt;}
.y8{bottom:160.577760pt;}
.y3a{bottom:160.603867pt;}
.y11{bottom:161.627600pt;}
.y1b{bottom:162.427600pt;}
.y44{bottom:177.927733pt;}
.y30{bottom:180.087733pt;}
.y7{bottom:185.047200pt;}
.y23{bottom:196.987600pt;}
.y39{bottom:199.003867pt;}
.y10{bottom:214.427600pt;}
.y22{bottom:231.547600pt;}
.y38{bottom:237.403867pt;}
.y1a{bottom:246.907600pt;}
.y29{bottom:260.748160pt;}
.yf{bottom:267.227600pt;}
.y21{bottom:273.787600pt;}
.y19{bottom:281.467600pt;}
.y6{bottom:283.214533pt;}
.y37{bottom:283.483867pt;}
.y20{bottom:308.347600pt;}
.ye{bottom:310.427600pt;}
.y2f{bottom:313.497440pt;}
.y18{bottom:316.027600pt;}
.y28{bottom:316.765440pt;}
.y3e{bottom:320.501440pt;}
.y36{bottom:321.883867pt;}
.y43{bottom:334.012053pt;}
.y5{bottom:335.054533pt;}
.y2e{bottom:350.138720pt;}
.y17{bottom:350.587600pt;}
.yd{bottom:363.227600pt;}
.y42{bottom:367.773333pt;}
.y35{bottom:367.963867pt;}
.y3d{bottom:371.680000pt;}
.y27{bottom:372.782720pt;}
.y16{bottom:385.147600pt;}
.y2d{bottom:386.780000pt;}
.y4{bottom:386.894533pt;}
.y34{bottom:406.363867pt;}
.yc{bottom:406.427600pt;}
.y26{bottom:428.800000pt;}
.y3{bottom:438.734533pt;}
.y33{bottom:444.763867pt;}
.y15{bottom:480.247440pt;}
.y1f{bottom:485.599440pt;}
.y2{bottom:490.574533pt;}
.y2c{bottom:520.189840pt;}
.y41{bottom:523.943440pt;}
.yb{bottom:527.869200pt;}
.y14{bottom:530.658320pt;}
.y1e{bottom:531.694320pt;}
.y1{bottom:542.414533pt;}
.y2b{bottom:556.831120pt;}
.y40{bottom:557.551120pt;}
.y1d{bottom:577.789200pt;}
.y13{bottom:581.069200pt;}
.y3f{bottom:591.312400pt;}
.y2a{bottom:593.472400pt;}
.h2{height:64.166250pt;}
.hc{height:70.803750pt;}
.h8{height:86.040000pt;}
.h5{height:89.625000pt;}
.h7{height:93.210000pt;}
.h4{height:112.031250pt;}
.h6{height:120.650625pt;}
.h3{height:131.947500pt;}
.h1{height:135.562500pt;}
.ha{height:153.258750pt;}
.h9{height:168.046875pt;}
.hb{height:178.472017pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.236267pt;}
.x12{left:60.394613pt;}
.x11{left:67.913333pt;}
.xb{left:91.952800pt;}
.xc{left:96.578080pt;}
.xe{left:98.960800pt;}
.x15{left:104.786667pt;}
.xd{left:113.677600pt;}
.x14{left:197.430000pt;}
.x13{left:200.470000pt;}
.x16{left:376.089013pt;}
.x3{left:552.286533pt;}
.x5{left:556.775200pt;}
.x9{left:562.222427pt;}
.x8{left:570.851867pt;}
.x4{left:588.286533pt;}
.x7{left:623.211040pt;}
.xf{left:626.083600pt;}
.x2{left:630.535200pt;}
.xa{left:631.471547pt;}
.x10{left:640.615200pt;}
.x6{left:652.317600pt;}
}




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