
    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_0c2b9e5e8e69c08b1d638aa8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cc6e87ca7327d2814e4ac3c5.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_308644070a93f09013dec39a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_77ee71967b3bb9530678af6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_38a943c35d013451cde7653e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_b12bf7685bfc5ac7fccb19a5.woff2')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_7bd42b737f841152445e3e92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_244d7f01bf6694937c9e9bd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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;}
.m3{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m1{transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.399680px;}
.ls1f{letter-spacing:-0.769824px;}
.ls22{letter-spacing:-0.738720px;}
.ls24{letter-spacing:-0.730944px;}
.ls23{letter-spacing:-0.723168px;}
.ls20{letter-spacing:-0.715392px;}
.ls21{letter-spacing:-0.699840px;}
.ls1d{letter-spacing:-0.692064px;}
.ls1e{letter-spacing:-0.676512px;}
.ls29{letter-spacing:-0.674623px;}
.ls2b{letter-spacing:-0.654480px;}
.ls31{letter-spacing:-0.492480px;}
.ls28{letter-spacing:-0.466560px;}
.ls26{letter-spacing:-0.447120px;}
.ls2a{letter-spacing:-0.343440px;}
.ls2d{letter-spacing:-0.298080px;}
.ls27{letter-spacing:-0.252720px;}
.ls30{letter-spacing:-0.246240px;}
.ls2f{letter-spacing:-0.200880px;}
.ls25{letter-spacing:-0.103680px;}
.ls1a{letter-spacing:-0.085536px;}
.lsc{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.006480px;}
.ls2c{letter-spacing:0.097200px;}
.ls15{letter-spacing:0.125280px;}
.lsa{letter-spacing:0.156240px;}
.lsb{letter-spacing:0.157800px;}
.ls1b{letter-spacing:0.218592px;}
.ls0{letter-spacing:0.242064px;}
.ls1{letter-spacing:0.277080px;}
.ls2{letter-spacing:0.277680px;}
.ls16{letter-spacing:0.300960px;}
.ls6{letter-spacing:0.334080px;}
.ls11{letter-spacing:0.340704px;}
.lsd{letter-spacing:0.402250px;}
.ls5{letter-spacing:0.434160px;}
.ls32{letter-spacing:0.443520px;}
.ls19{letter-spacing:0.484704px;}
.ls3{letter-spacing:0.537264px;}
.lsf{letter-spacing:0.563472px;}
.ls18{letter-spacing:0.608256px;}
.ls4{letter-spacing:0.615888px;}
.ls10{letter-spacing:0.642096px;}
.ls12{letter-spacing:0.668304px;}
.ls1c{letter-spacing:0.674784px;}
.ls14{letter-spacing:0.746928px;}
.ls13{letter-spacing:0.760032px;}
.ls17{letter-spacing:0.861840px;}
.ls9{letter-spacing:11.636400px;}
.ls7{letter-spacing:155.502720px;}
.ls8{letter-spacing:402.615720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-44.167680px;}
.ws5{word-spacing:-39.154752px;}
.ws6{word-spacing:-39.141648px;}
.ws4{word-spacing:-39.063024px;}
.ws2{word-spacing:-39.036816px;}
.ws1{word-spacing:-38.958192px;}
.ws3{word-spacing:-38.931984px;}
.ws7{word-spacing:-24.805440px;}
.wsf{word-spacing:-22.107168px;}
.wse{word-spacing:-22.091616px;}
.ws11{word-spacing:-22.083840px;}
.ws12{word-spacing:-22.044960px;}
.ws10{word-spacing:-22.013856px;}
.ws16{word-spacing:-20.282400px;}
.ws14{word-spacing:-20.029680px;}
.ws18{word-spacing:-19.938960px;}
.ws17{word-spacing:-19.835280px;}
.ws15{word-spacing:-19.815840px;}
.ws19{word-spacing:-19.627920px;}
.ws13{word-spacing:-18.882720px;}
.wsd{word-spacing:-0.769824px;}
.ws8{word-spacing:-0.703296px;}
.ws9{word-spacing:-0.579744px;}
.wsc{word-spacing:-0.313632px;}
.wsb{word-spacing:-0.095040px;}
.wsa{word-spacing:-0.009504px;}
.ws1a{word-spacing:0.000000px;}
._7{margin-left:-22.824600px;}
._3{margin-left:-8.530937px;}
._4{margin-left:-3.801600px;}
._2{margin-left:-2.419433px;}
._0{margin-left:-1.097047px;}
._1{width:1.115352px;}
._12{width:4.090800px;}
._11{width:5.248800px;}
._a{width:8.294400px;}
._b{width:9.321055px;}
._c{width:12.052800px;}
._d{width:13.413600px;}
._10{width:14.765767px;}
._9{width:22.359847px;}
._8{width:23.522400px;}
._5{width:35.231016px;}
._e{width:38.750400px;}
._f{width:39.891449px;}
._6{width:189.615720px;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:50.400000px;}
.fs0{font-size:59.040000px;}
.fsc{font-size:64.800000px;}
.fsd{font-size:66.794311px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs8{font-size:83.520000px;}
.fs4{font-size:89.280000px;}
.fsa{font-size:95.040000px;}
.fs2{font-size:96.697842px;}
.fs3{font-size:121.894056px;}
.fs7{font-size:131.040000px;}
.fs9{font-size:136.800000px;}
.fs6{font-size:155.520000px;}
.fs5{font-size:167.040000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.000000px;}
.y2a{bottom:51.120030px;}
.y4{bottom:59.720217px;}
.y29{bottom:65.880030px;}
.y28{bottom:80.640030px;}
.y27{bottom:100.440030px;}
.y26{bottom:120.600030px;}
.y25{bottom:140.400000px;}
.y24{bottom:160.200000px;}
.y23{bottom:180.360000px;}
.y22{bottom:200.160000px;}
.y21{bottom:219.960000px;}
.y20{bottom:240.120000px;}
.y1f{bottom:259.920000px;}
.y1e{bottom:279.720000px;}
.y1d{bottom:299.880000px;}
.y1c{bottom:321.480000px;}
.y1b{bottom:349.200000px;}
.y1a{bottom:372.960000px;}
.y19{bottom:396.360000px;}
.y18{bottom:420.120000px;}
.y17{bottom:443.520000px;}
.y16{bottom:467.280000px;}
.y15{bottom:492.840000px;}
.y14{bottom:519.120000px;}
.y13{bottom:547.200000px;}
.y12{bottom:575.280000px;}
.y11{bottom:605.520000px;}
.y10{bottom:643.320000px;}
.yf{bottom:666.000000px;}
.ye{bottom:691.560000px;}
.yd{bottom:739.080000px;}
.yc{bottom:779.400000px;}
.yb{bottom:819.360000px;}
.ya{bottom:878.040000px;}
.y9{bottom:902.880000px;}
.y8{bottom:950.760000px;}
.y7{bottom:997.200000px;}
.y6{bottom:1029.303243px;}
.y5{bottom:1060.920000px;}
.y3{bottom:1078.920000px;}
.y2{bottom:1146.960000px;}
.h14{height:36.692578px;}
.h2{height:47.988281px;}
.h12{height:49.549219px;}
.h13{height:51.074166px;}
.h11{height:53.029688px;}
.hc{height:55.054688px;}
.ha{height:55.666406px;}
.hf{height:63.635625px;}
.h4{height:64.449489px;}
.he{height:66.639375px;}
.h6{height:68.267813px;}
.hb{height:68.349375px;}
.h10{height:77.776875px;}
.h3{height:81.720000px;}
.h5{height:92.134765px;}
.h9{height:107.237813px;}
.hd{height:111.951563px;}
.h8{height:127.271250px;}
.h7{height:136.698750px;}
.h1{height:1226.160000px;}
.h0{height:1263.000000px;}
.w2{width:106.200000px;}
.w1{width:856.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x2{left:105.120000px;}
.xa{left:114.083010px;}
.x9{left:131.743170px;}
.xd{left:139.388850px;}
.x8{left:158.015850px;}
.x5{left:167.972850px;}
.xf{left:172.242450px;}
.xc{left:174.922350px;}
.xe{left:198.937800px;}
.x16{left:208.270200px;}
.x7{left:287.452350px;}
.xb{left:356.560050px;}
.x3{left:393.120000px;}
.x6{left:428.332200px;}
.x4{left:481.432500px;}
.x10{left:510.351450px;}
.x11{left:522.679500px;}
.x14{left:601.299900px;}
.x15{left:613.628100px;}
.x12{left:733.447500px;}
.x13{left:745.775550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.244160pt;}
.ls1f{letter-spacing:-0.684288pt;}
.ls22{letter-spacing:-0.656640pt;}
.ls24{letter-spacing:-0.649728pt;}
.ls23{letter-spacing:-0.642816pt;}
.ls20{letter-spacing:-0.635904pt;}
.ls21{letter-spacing:-0.622080pt;}
.ls1d{letter-spacing:-0.615168pt;}
.ls1e{letter-spacing:-0.601344pt;}
.ls29{letter-spacing:-0.599664pt;}
.ls2b{letter-spacing:-0.581760pt;}
.ls31{letter-spacing:-0.437760pt;}
.ls28{letter-spacing:-0.414720pt;}
.ls26{letter-spacing:-0.397440pt;}
.ls2a{letter-spacing:-0.305280pt;}
.ls2d{letter-spacing:-0.264960pt;}
.ls27{letter-spacing:-0.224640pt;}
.ls30{letter-spacing:-0.218880pt;}
.ls2f{letter-spacing:-0.178560pt;}
.ls25{letter-spacing:-0.092160pt;}
.ls1a{letter-spacing:-0.076032pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.005760pt;}
.ls2c{letter-spacing:0.086400pt;}
.ls15{letter-spacing:0.111360pt;}
.lsa{letter-spacing:0.138880pt;}
.lsb{letter-spacing:0.140267pt;}
.ls1b{letter-spacing:0.194304pt;}
.ls0{letter-spacing:0.215168pt;}
.ls1{letter-spacing:0.246293pt;}
.ls2{letter-spacing:0.246827pt;}
.ls16{letter-spacing:0.267520pt;}
.ls6{letter-spacing:0.296960pt;}
.ls11{letter-spacing:0.302848pt;}
.lsd{letter-spacing:0.357556pt;}
.ls5{letter-spacing:0.385920pt;}
.ls32{letter-spacing:0.394240pt;}
.ls19{letter-spacing:0.430848pt;}
.ls3{letter-spacing:0.477568pt;}
.lsf{letter-spacing:0.500864pt;}
.ls18{letter-spacing:0.540672pt;}
.ls4{letter-spacing:0.547456pt;}
.ls10{letter-spacing:0.570752pt;}
.ls12{letter-spacing:0.594048pt;}
.ls1c{letter-spacing:0.599808pt;}
.ls14{letter-spacing:0.663936pt;}
.ls13{letter-spacing:0.675584pt;}
.ls17{letter-spacing:0.766080pt;}
.ls9{letter-spacing:10.343467pt;}
.ls7{letter-spacing:138.224640pt;}
.ls8{letter-spacing:357.880640pt;}
.ws0{word-spacing:-39.260160pt;}
.ws5{word-spacing:-34.804224pt;}
.ws6{word-spacing:-34.792576pt;}
.ws4{word-spacing:-34.722688pt;}
.ws2{word-spacing:-34.699392pt;}
.ws1{word-spacing:-34.629504pt;}
.ws3{word-spacing:-34.606208pt;}
.ws7{word-spacing:-22.049280pt;}
.wsf{word-spacing:-19.650816pt;}
.wse{word-spacing:-19.636992pt;}
.ws11{word-spacing:-19.630080pt;}
.ws12{word-spacing:-19.595520pt;}
.ws10{word-spacing:-19.567872pt;}
.ws16{word-spacing:-18.028800pt;}
.ws14{word-spacing:-17.804160pt;}
.ws18{word-spacing:-17.723520pt;}
.ws17{word-spacing:-17.631360pt;}
.ws15{word-spacing:-17.614080pt;}
.ws19{word-spacing:-17.447040pt;}
.ws13{word-spacing:-16.784640pt;}
.wsd{word-spacing:-0.684288pt;}
.ws8{word-spacing:-0.625152pt;}
.ws9{word-spacing:-0.515328pt;}
.wsc{word-spacing:-0.278784pt;}
.wsb{word-spacing:-0.084480pt;}
.wsa{word-spacing:-0.008448pt;}
.ws1a{word-spacing:0.000000pt;}
._7{margin-left:-20.288533pt;}
._3{margin-left:-7.583056pt;}
._4{margin-left:-3.379200pt;}
._2{margin-left:-2.150608pt;}
._0{margin-left:-0.975152pt;}
._1{width:0.991424pt;}
._12{width:3.636267pt;}
._11{width:4.665600pt;}
._a{width:7.372800pt;}
._b{width:8.285382pt;}
._c{width:10.713600pt;}
._d{width:11.923200pt;}
._10{width:13.125126pt;}
._9{width:19.875419pt;}
._8{width:20.908800pt;}
._5{width:31.316459pt;}
._e{width:34.444800pt;}
._f{width:35.459066pt;}
._6{width:168.547307pt;}
.fse{font-size:44.800000pt;}
.fs0{font-size:52.480000pt;}
.fsc{font-size:57.600000pt;}
.fsd{font-size:59.372721pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs8{font-size:74.240000pt;}
.fs4{font-size:79.360000pt;}
.fsa{font-size:84.480000pt;}
.fs2{font-size:85.953637pt;}
.fs3{font-size:108.350272pt;}
.fs7{font-size:116.480000pt;}
.fs9{font-size:121.600000pt;}
.fs6{font-size:138.240000pt;}
.fs5{font-size:148.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.000000pt;}
.y2a{bottom:45.440027pt;}
.y4{bottom:53.084638pt;}
.y29{bottom:58.560027pt;}
.y28{bottom:71.680027pt;}
.y27{bottom:89.280027pt;}
.y26{bottom:107.200027pt;}
.y25{bottom:124.800000pt;}
.y24{bottom:142.400000pt;}
.y23{bottom:160.320000pt;}
.y22{bottom:177.920000pt;}
.y21{bottom:195.520000pt;}
.y20{bottom:213.440000pt;}
.y1f{bottom:231.040000pt;}
.y1e{bottom:248.640000pt;}
.y1d{bottom:266.560000pt;}
.y1c{bottom:285.760000pt;}
.y1b{bottom:310.400000pt;}
.y1a{bottom:331.520000pt;}
.y19{bottom:352.320000pt;}
.y18{bottom:373.440000pt;}
.y17{bottom:394.240000pt;}
.y16{bottom:415.360000pt;}
.y15{bottom:438.080000pt;}
.y14{bottom:461.440000pt;}
.y13{bottom:486.400000pt;}
.y12{bottom:511.360000pt;}
.y11{bottom:538.240000pt;}
.y10{bottom:571.840000pt;}
.yf{bottom:592.000000pt;}
.ye{bottom:614.720000pt;}
.yd{bottom:656.960000pt;}
.yc{bottom:692.800000pt;}
.yb{bottom:728.320000pt;}
.ya{bottom:780.480000pt;}
.y9{bottom:802.560000pt;}
.y8{bottom:845.120000pt;}
.y7{bottom:886.400000pt;}
.y6{bottom:914.936216pt;}
.y5{bottom:943.040000pt;}
.y3{bottom:959.040000pt;}
.y2{bottom:1019.520000pt;}
.h14{height:32.615625pt;}
.h2{height:42.656250pt;}
.h12{height:44.043750pt;}
.h13{height:45.399258pt;}
.h11{height:47.137500pt;}
.hc{height:48.937500pt;}
.ha{height:49.481250pt;}
.hf{height:56.565000pt;}
.h4{height:57.288435pt;}
.he{height:59.235000pt;}
.h6{height:60.682500pt;}
.hb{height:60.755000pt;}
.h10{height:69.135000pt;}
.h3{height:72.640000pt;}
.h5{height:81.897569pt;}
.h9{height:95.322500pt;}
.hd{height:99.512500pt;}
.h8{height:113.130000pt;}
.h7{height:121.510000pt;}
.h1{height:1089.920000pt;}
.h0{height:1122.666667pt;}
.w2{width:94.400000pt;}
.w1{width:761.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x2{left:93.440000pt;}
.xa{left:101.407120pt;}
.x9{left:117.105040pt;}
.xd{left:123.901200pt;}
.x8{left:140.458533pt;}
.x5{left:149.309200pt;}
.xf{left:153.104400pt;}
.xc{left:155.486533pt;}
.xe{left:176.833600pt;}
.x16{left:185.129067pt;}
.x7{left:255.513200pt;}
.xb{left:316.942267pt;}
.x3{left:349.440000pt;}
.x6{left:380.739733pt;}
.x4{left:427.940000pt;}
.x10{left:453.645733pt;}
.x11{left:464.604000pt;}
.x14{left:534.488800pt;}
.x15{left:545.447200pt;}
.x12{left:651.953333pt;}
.x13{left:662.911600pt;}
}




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