
    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_4885ca4ca33af873ad601081.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666000;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_5d2a33f7d83ad382d8877fd6.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_049bc45e2c13ad179c9196cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_99bac7dd9405ff401a1466ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.870000;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_9031e9d3398ae720ecd96255.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_7b250a4aa4400c37dd561bd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925293;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_145cca78357271f463e22bf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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_a7226ef13cd4c1740e4aa0e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717285;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:ff9;src:url('chunks/assets/font_09a35102f1a7c42b8c6f737d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls17{letter-spacing:-0.399168px;}
.ls1b{letter-spacing:-0.356832px;}
.ls14{letter-spacing:-0.344736px;}
.ls13{letter-spacing:-0.296352px;}
.ls19{letter-spacing:-0.278208px;}
.ls1c{letter-spacing:-0.260064px;}
.ls1a{letter-spacing:-0.247968px;}
.ls15{letter-spacing:-0.223776px;}
.ls18{letter-spacing:-0.217728px;}
.ls23{letter-spacing:-0.207936px;}
.ls16{letter-spacing:-0.163296px;}
.lsd{letter-spacing:-0.092736px;}
.ls2b{letter-spacing:-0.046368px;}
.ls11{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.028800px;}
.ls1e{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.014400px;}
.ls30{letter-spacing:-0.007200px;}
.lse{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005328px;}
.ls28{letter-spacing:0.005472px;}
.ls8{letter-spacing:0.007200px;}
.ls22{letter-spacing:0.008496px;}
.ls5{letter-spacing:0.010944px;}
.ls0{letter-spacing:0.014400px;}
.ls2f{letter-spacing:0.015840px;}
.ls24{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.028800px;}
.ls25{letter-spacing:0.033984px;}
.ls9{letter-spacing:0.036000px;}
.ls26{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.095904px;}
.lsf{letter-spacing:0.155376px;}
.ls1{letter-spacing:0.258048px;}
.ls2{letter-spacing:0.262944px;}
.ls4{letter-spacing:0.310752px;}
.ls10{letter-spacing:0.370512px;}
.ls6{letter-spacing:4.588848px;}
.ls1f{letter-spacing:10.244448px;}
.lsc{letter-spacing:43.767504px;}
.ls2e{letter-spacing:59.877648px;}
.ls21{letter-spacing:77.067792px;}
.ls2c{letter-spacing:93.345120px;}
.ls2a{letter-spacing:128.937888px;}
.ls29{letter-spacing:129.600000px;}
.lsa{letter-spacing:132.430032px;}
.ls27{letter-spacing:181.244448px;}
.lsb{letter-spacing:196.427664px;}
.ls31{letter-spacing:328.793904px;}
.ls2d{letter-spacing:408.528288px;}
.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;}
}
.ws2{word-spacing:-24.166944px;}
.ws14{word-spacing:-16.308000px;}
.ws15{word-spacing:-16.300800px;}
.ws17{word-spacing:-16.293600px;}
.ws18{word-spacing:-16.286400px;}
.ws3{word-spacing:-16.272000px;}
.ws19{word-spacing:-16.264800px;}
.ws4{word-spacing:-16.257600px;}
.ws12{word-spacing:-16.250400px;}
.ws10{word-spacing:-16.243200px;}
.ws1{word-spacing:-0.086400px;}
.ws7{word-spacing:-0.060480px;}
.ws13{word-spacing:0.000000px;}
.ws9{word-spacing:0.102816px;}
.wsb{word-spacing:0.157248px;}
.ws8{word-spacing:0.163296px;}
.wsd{word-spacing:0.187488px;}
.wsf{word-spacing:0.199584px;}
.wsc{word-spacing:0.217728px;}
.ws5{word-spacing:0.235872px;}
.ws6{word-spacing:0.284256px;}
.wsa{word-spacing:0.338688px;}
.wse{word-spacing:32.592672px;}
.ws16{word-spacing:79.650000px;}
.ws11{word-spacing:168.489792px;}
.ws0{word-spacing:1061.210880px;}
._f{margin-left:-14.471712px;}
._1{margin-left:-1.065600px;}
._0{width:1.023552px;}
._3{width:2.627712px;}
._2{width:3.722400px;}
._4{width:5.428800px;}
._b{width:10.189728px;}
._d{width:24.228000px;}
._5{width:33.379200px;}
._a{width:55.914192px;}
._10{width:76.832064px;}
._8{width:93.290400px;}
._6{width:95.923728px;}
._e{width:245.010528px;}
._c{width:451.728000px;}
._7{width:458.927712px;}
._9{width:492.228000px;}
.fc4{color:rgb(0,0,255);}
.fc7{color:rgb(84,141,212);}
.fc3{color:rgb(31,73,125);}
.fc5{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc6{color:transparent;}
.fc1{color:rgb(13,64,128);}
.fc0{color:rgb(102,0,0);}
.fs5{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs3{font-size:119.520000px;}
.fs0{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.720000px;}
.y5{bottom:30.600000px;}
.y3{bottom:36.360000px;}
.y56{bottom:66.600000px;}
.y6{bottom:73.080000px;}
.y34{bottom:75.240000px;}
.y55{bottom:88.560000px;}
.y33{bottom:97.200000px;}
.y54{bottom:110.520000px;}
.y32{bottom:119.160000px;}
.y53{bottom:132.480000px;}
.y31{bottom:141.120000px;}
.y52{bottom:154.440000px;}
.y30{bottom:163.080000px;}
.y51{bottom:176.400000px;}
.y2f{bottom:185.040000px;}
.y50{bottom:198.360000px;}
.y2e{bottom:207.000000px;}
.y4f{bottom:220.320000px;}
.y2d{bottom:228.960000px;}
.y4e{bottom:242.280000px;}
.y2c{bottom:250.920000px;}
.y4d{bottom:264.240000px;}
.y2b{bottom:272.880000px;}
.y4c{bottom:286.200000px;}
.y2a{bottom:294.840000px;}
.y4b{bottom:308.160000px;}
.y29{bottom:316.800000px;}
.y4a{bottom:330.120000px;}
.y28{bottom:338.760000px;}
.y49{bottom:352.080000px;}
.y27{bottom:360.720000px;}
.y48{bottom:374.040000px;}
.y26{bottom:382.680000px;}
.y47{bottom:396.000000px;}
.y25{bottom:404.640000px;}
.y46{bottom:417.960000px;}
.y24{bottom:426.600000px;}
.y45{bottom:439.920000px;}
.y23{bottom:448.560000px;}
.y44{bottom:461.880000px;}
.y22{bottom:470.520000px;}
.y43{bottom:483.840000px;}
.y21{bottom:492.480000px;}
.y42{bottom:505.800000px;}
.y20{bottom:514.800000px;}
.y41{bottom:527.760000px;}
.y1f{bottom:536.760000px;}
.y40{bottom:549.720000px;}
.y1e{bottom:558.720000px;}
.y3f{bottom:571.680000px;}
.y1d{bottom:580.680000px;}
.y3e{bottom:593.640000px;}
.y1c{bottom:602.640000px;}
.y3d{bottom:615.600000px;}
.y1b{bottom:624.600000px;}
.y3c{bottom:637.560000px;}
.y1a{bottom:646.560000px;}
.y3b{bottom:659.520000px;}
.y19{bottom:668.520000px;}
.y3a{bottom:681.840000px;}
.y18{bottom:689.040000px;}
.y39{bottom:703.800000px;}
.y17{bottom:706.680000px;}
.y16{bottom:723.960000px;}
.y38{bottom:725.760000px;}
.y15{bottom:741.600000px;}
.y37{bottom:747.720000px;}
.y14{bottom:759.240000px;}
.y36{bottom:769.680000px;}
.y13{bottom:776.880000px;}
.y35{bottom:791.640000px;}
.y12{bottom:794.520000px;}
.y11{bottom:813.600000px;}
.y10{bottom:835.560000px;}
.yf{bottom:857.520000px;}
.ye{bottom:879.480000px;}
.yd{bottom:901.440000px;}
.yc{bottom:923.400000px;}
.yb{bottom:944.640000px;}
.ya{bottom:970.200000px;}
.y9{bottom:1007.640000px;}
.y8{bottom:1041.120000px;}
.y7{bottom:1058.400000px;}
.y2{bottom:1116.000000px;}
.y1{bottom:1230.480000px;}
.h8{height:42.761250px;}
.h9{height:50.062500px;}
.h6{height:50.449219px;}
.h7{height:51.679688px;}
.h4{height:55.666406px;}
.h5{height:84.859200px;}
.h2{height:88.231680px;}
.h3{height:106.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:21.000000px;}
.w2{width:168.000000px;}
.w4{width:190.500000px;}
.w3{width:370.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:8.580000px;}
.xc{left:96.075072px;}
.x2{left:105.000000px;}
.x1{left:106.200072px;}
.x3{left:186.240252px;}
.x7{left:212.700000px;}
.x10{left:223.200072px;}
.xf{left:224.850204px;}
.xe{left:229.200084px;}
.xb{left:233.775144px;}
.x4{left:271.500000px;}
.xd{left:392.846400px;}
.x5{left:426.539640px;}
.xa{left:484.200000px;}
.x6{left:640.500000px;}
.x8{left:829.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.354816pt;}
.ls1b{letter-spacing:-0.317184pt;}
.ls14{letter-spacing:-0.306432pt;}
.ls13{letter-spacing:-0.263424pt;}
.ls19{letter-spacing:-0.247296pt;}
.ls1c{letter-spacing:-0.231168pt;}
.ls1a{letter-spacing:-0.220416pt;}
.ls15{letter-spacing:-0.198912pt;}
.ls18{letter-spacing:-0.193536pt;}
.ls23{letter-spacing:-0.184832pt;}
.ls16{letter-spacing:-0.145152pt;}
.lsd{letter-spacing:-0.082432pt;}
.ls2b{letter-spacing:-0.041216pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.025600pt;}
.ls1e{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls30{letter-spacing:-0.006400pt;}
.lse{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004736pt;}
.ls28{letter-spacing:0.004864pt;}
.ls8{letter-spacing:0.006400pt;}
.ls22{letter-spacing:0.007552pt;}
.ls5{letter-spacing:0.009728pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2f{letter-spacing:0.014080pt;}
.ls24{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.025600pt;}
.ls25{letter-spacing:0.030208pt;}
.ls9{letter-spacing:0.032000pt;}
.ls26{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.085248pt;}
.lsf{letter-spacing:0.138112pt;}
.ls1{letter-spacing:0.229376pt;}
.ls2{letter-spacing:0.233728pt;}
.ls4{letter-spacing:0.276224pt;}
.ls10{letter-spacing:0.329344pt;}
.ls6{letter-spacing:4.078976pt;}
.ls1f{letter-spacing:9.106176pt;}
.lsc{letter-spacing:38.904448pt;}
.ls2e{letter-spacing:53.224576pt;}
.ls21{letter-spacing:68.504704pt;}
.ls2c{letter-spacing:82.973440pt;}
.ls2a{letter-spacing:114.611456pt;}
.ls29{letter-spacing:115.200000pt;}
.lsa{letter-spacing:117.715584pt;}
.ls27{letter-spacing:161.106176pt;}
.lsb{letter-spacing:174.602368pt;}
.ls31{letter-spacing:292.261248pt;}
.ls2d{letter-spacing:363.136256pt;}
.ws2{word-spacing:-21.481728pt;}
.ws14{word-spacing:-14.496000pt;}
.ws15{word-spacing:-14.489600pt;}
.ws17{word-spacing:-14.483200pt;}
.ws18{word-spacing:-14.476800pt;}
.ws3{word-spacing:-14.464000pt;}
.ws19{word-spacing:-14.457600pt;}
.ws4{word-spacing:-14.451200pt;}
.ws12{word-spacing:-14.444800pt;}
.ws10{word-spacing:-14.438400pt;}
.ws1{word-spacing:-0.076800pt;}
.ws7{word-spacing:-0.053760pt;}
.ws13{word-spacing:0.000000pt;}
.ws9{word-spacing:0.091392pt;}
.wsb{word-spacing:0.139776pt;}
.ws8{word-spacing:0.145152pt;}
.wsd{word-spacing:0.166656pt;}
.wsf{word-spacing:0.177408pt;}
.wsc{word-spacing:0.193536pt;}
.ws5{word-spacing:0.209664pt;}
.ws6{word-spacing:0.252672pt;}
.wsa{word-spacing:0.301056pt;}
.wse{word-spacing:28.971264pt;}
.ws16{word-spacing:70.800000pt;}
.ws11{word-spacing:149.768704pt;}
.ws0{word-spacing:943.298560pt;}
._f{margin-left:-12.863744pt;}
._1{margin-left:-0.947200pt;}
._0{width:0.909824pt;}
._3{width:2.335744pt;}
._2{width:3.308800pt;}
._4{width:4.825600pt;}
._b{width:9.057536pt;}
._d{width:21.536000pt;}
._5{width:29.670400pt;}
._a{width:49.701504pt;}
._10{width:68.295168pt;}
._8{width:82.924800pt;}
._6{width:85.265536pt;}
._e{width:217.787136pt;}
._c{width:401.536000pt;}
._7{width:407.935744pt;}
._9{width:437.536000pt;}
.fs5{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs3{font-size:106.240000pt;}
.fs0{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.640000pt;}
.y5{bottom:27.200000pt;}
.y3{bottom:32.320000pt;}
.y56{bottom:59.200000pt;}
.y6{bottom:64.960000pt;}
.y34{bottom:66.880000pt;}
.y55{bottom:78.720000pt;}
.y33{bottom:86.400000pt;}
.y54{bottom:98.240000pt;}
.y32{bottom:105.920000pt;}
.y53{bottom:117.760000pt;}
.y31{bottom:125.440000pt;}
.y52{bottom:137.280000pt;}
.y30{bottom:144.960000pt;}
.y51{bottom:156.800000pt;}
.y2f{bottom:164.480000pt;}
.y50{bottom:176.320000pt;}
.y2e{bottom:184.000000pt;}
.y4f{bottom:195.840000pt;}
.y2d{bottom:203.520000pt;}
.y4e{bottom:215.360000pt;}
.y2c{bottom:223.040000pt;}
.y4d{bottom:234.880000pt;}
.y2b{bottom:242.560000pt;}
.y4c{bottom:254.400000pt;}
.y2a{bottom:262.080000pt;}
.y4b{bottom:273.920000pt;}
.y29{bottom:281.600000pt;}
.y4a{bottom:293.440000pt;}
.y28{bottom:301.120000pt;}
.y49{bottom:312.960000pt;}
.y27{bottom:320.640000pt;}
.y48{bottom:332.480000pt;}
.y26{bottom:340.160000pt;}
.y47{bottom:352.000000pt;}
.y25{bottom:359.680000pt;}
.y46{bottom:371.520000pt;}
.y24{bottom:379.200000pt;}
.y45{bottom:391.040000pt;}
.y23{bottom:398.720000pt;}
.y44{bottom:410.560000pt;}
.y22{bottom:418.240000pt;}
.y43{bottom:430.080000pt;}
.y21{bottom:437.760000pt;}
.y42{bottom:449.600000pt;}
.y20{bottom:457.600000pt;}
.y41{bottom:469.120000pt;}
.y1f{bottom:477.120000pt;}
.y40{bottom:488.640000pt;}
.y1e{bottom:496.640000pt;}
.y3f{bottom:508.160000pt;}
.y1d{bottom:516.160000pt;}
.y3e{bottom:527.680000pt;}
.y1c{bottom:535.680000pt;}
.y3d{bottom:547.200000pt;}
.y1b{bottom:555.200000pt;}
.y3c{bottom:566.720000pt;}
.y1a{bottom:574.720000pt;}
.y3b{bottom:586.240000pt;}
.y19{bottom:594.240000pt;}
.y3a{bottom:606.080000pt;}
.y18{bottom:612.480000pt;}
.y39{bottom:625.600000pt;}
.y17{bottom:628.160000pt;}
.y16{bottom:643.520000pt;}
.y38{bottom:645.120000pt;}
.y15{bottom:659.200000pt;}
.y37{bottom:664.640000pt;}
.y14{bottom:674.880000pt;}
.y36{bottom:684.160000pt;}
.y13{bottom:690.560000pt;}
.y35{bottom:703.680000pt;}
.y12{bottom:706.240000pt;}
.y11{bottom:723.200000pt;}
.y10{bottom:742.720000pt;}
.yf{bottom:762.240000pt;}
.ye{bottom:781.760000pt;}
.yd{bottom:801.280000pt;}
.yc{bottom:820.800000pt;}
.yb{bottom:839.680000pt;}
.ya{bottom:862.400000pt;}
.y9{bottom:895.680000pt;}
.y8{bottom:925.440000pt;}
.y7{bottom:940.800000pt;}
.y2{bottom:992.000000pt;}
.y1{bottom:1093.760000pt;}
.h8{height:38.010000pt;}
.h9{height:44.500000pt;}
.h6{height:44.843750pt;}
.h7{height:45.937500pt;}
.h4{height:49.481250pt;}
.h5{height:75.430400pt;}
.h2{height:78.428160pt;}
.h3{height:94.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.666667pt;}
.w2{width:149.333333pt;}
.w4{width:169.333333pt;}
.w3{width:329.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:7.626667pt;}
.xc{left:85.400064pt;}
.x2{left:93.333333pt;}
.x1{left:94.400064pt;}
.x3{left:165.546891pt;}
.x7{left:189.066667pt;}
.x10{left:198.400064pt;}
.xf{left:199.866848pt;}
.xe{left:203.733408pt;}
.xb{left:207.800128pt;}
.x4{left:241.333333pt;}
.xd{left:349.196800pt;}
.x5{left:379.146347pt;}
.xa{left:430.400000pt;}
.x6{left:569.333333pt;}
.x8{left:737.333333pt;}
}




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