
    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_fa4258574a17ea634afceb48.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_dfc36ec3635ac1f6b8e9ca18.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_f724684586331e3b22e981c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_9a6fae7a31c28904c16ad9fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_0f8bdd96406ebabe7383dc75.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.359940px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120600px;}
.ls11{letter-spacing:-0.014400px;}
.ls19{letter-spacing:-0.012960px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.060300px;}
.ls18{letter-spacing:0.119400px;}
.ls14{letter-spacing:0.161568px;}
.ls12{letter-spacing:0.194832px;}
.ls17{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.242352px;}
.ls0{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.302400px;}
.ls10{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.401760px;}
.ls7{letter-spacing:0.403200px;}
.ls1{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.602640px;}
.ls25{letter-spacing:0.667440px;}
.ls5{letter-spacing:0.715680px;}
.lsa{letter-spacing:0.725760px;}
.ls9{letter-spacing:0.796320px;}
.lsb{letter-spacing:0.797040px;}
.lse{letter-spacing:0.874800px;}
.ls15{letter-spacing:0.880800px;}
.ls4{letter-spacing:0.887040px;}
.ls20{letter-spacing:10.426800px;}
.lsc{letter-spacing:10.769760px;}
.ls22{letter-spacing:26.388000px;}
.ls23{letter-spacing:30.466200px;}
.ls2{letter-spacing:33.983760px;}
.ls1e{letter-spacing:42.419400px;}
.ls21{letter-spacing:46.426800px;}
.ls1c{letter-spacing:50.364600px;}
.ls3{letter-spacing:54.866580px;}
.ls1d{letter-spacing:58.380000px;}
.ls1f{letter-spacing:62.423400px;}
.ls1b{letter-spacing:66.430800px;}
.ls24{letter-spacing:102.360600px;}
.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:-25.915680px;}
.wsd{word-spacing:-18.681840px;}
.wsc{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws4{word-spacing:-17.074800px;}
.ws2{word-spacing:-16.997040px;}
.ws1{word-spacing:-16.601760px;}
.ws3{word-spacing:-16.524000px;}
.wsa{word-spacing:-12.122352px;}
.ws9{word-spacing:-12.074832px;}
.wsb{word-spacing:-12.041568px;}
.ws7{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
._3b{margin-left:-17.598000px;}
._50{margin-left:-13.566000px;}
._3{margin-left:-10.244460px;}
._47{margin-left:-5.660400px;}
._57{margin-left:-4.451400px;}
._1c{margin-left:-2.818080px;}
._0{margin-left:-1.411200px;}
._1{width:1.286580px;}
._8{width:2.399820px;}
._7{width:3.427200px;}
._9{width:4.802400px;}
._14{width:5.860800px;}
._4{width:6.940800px;}
._a{width:7.948800px;}
._2{width:9.835200px;}
._11{width:11.109600px;}
._19{width:12.129960px;}
._b{width:13.150020px;}
._6{width:14.263200px;}
._e{width:15.275580px;}
._d{width:16.956000px;}
._16{width:19.638180px;}
._12{width:20.750400px;}
._1a{width:21.931200px;}
._13{width:23.112000px;}
._26{width:26.380200px;}
._c{width:27.498180px;}
._f{width:28.815000px;}
._10{width:30.024000px;}
._17{width:31.154400px;}
._5{width:33.030900px;}
._29{width:34.372200px;}
._18{width:35.467200px;}
._15{width:37.586400px;}
._4f{width:41.326200px;}
._22{width:42.407400px;}
._4d{width:44.782800px;}
._25{width:46.367400px;}
._5c{width:48.958800px;}
._1e{width:50.356200px;}
._1b{width:53.049600px;}
._2c{width:54.316200px;}
._4b{width:56.821200px;}
._2b{width:58.391400px;}
._3a{width:62.308200px;}
._62{width:63.358200px;}
._55{width:64.986000px;}
._52{width:66.426600px;}
._30{width:68.787600px;}
._31{width:70.415400px;}
._4a{width:74.447400px;}
._5d{width:75.828000px;}
._41{width:77.326200px;}
._20{width:78.766800px;}
._4c{width:82.367400px;}
._5f{width:84.452400px;}
._36{width:86.399700px;}
._42{width:87.765600px;}
._54{width:91.006800px;}
._33{width:92.850000px;}
._63{width:94.240800px;}
._2e{width:95.712600px;}
._45{width:97.765200px;}
._5a{width:99.358200px;}
._1f{width:101.733600px;}
._37{width:102.987600px;}
._56{width:106.846800px;}
._32{width:110.950800px;}
._60{width:114.479400px;}
._44{width:117.757800px;}
._3d{width:118.870800px;}
._21{width:122.399700px;}
._5e{width:125.235000px;}
._61{width:126.503400px;}
._2f{width:127.680600px;}
._53{width:130.894800px;}
._48{width:132.144000px;}
._28{width:134.854800px;}
._5b{width:137.877600px;}
._3c{width:138.886800px;}
._64{width:141.175800px;}
._24{width:143.206200px;}
._51{width:146.806800px;}
._58{width:151.026000px;}
._46{width:152.519400px;}
._3e{width:154.870800px;}
._35{width:157.289400px;}
._1d{width:158.399700px;}
._3f{width:159.720600px;}
._49{width:161.321400px;}
._38{width:162.790800px;}
._39{width:166.938000px;}
._4e{width:170.854800px;}
._27{width:174.777600px;}
._34{width:178.846800px;}
._43{width:180.169200px;}
._40{width:182.878800px;}
._2d{width:184.604400px;}
._2a{width:186.838800px;}
._59{width:189.832800px;}
._23{width:190.870800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:59.040000px;}
.fs1{font-size:64.800000px;}
.fs2{font-size:67.680000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:100.800000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.600150px;}
.y6c{bottom:34.019985px;}
.y34{bottom:41.939985px;}
.y6a{bottom:43.740000px;}
.y6b{bottom:44.820000px;}
.y1{bottom:61.499940px;}
.y33{bottom:62.820000px;}
.y69{bottom:64.620000px;}
.y32{bottom:83.339985px;}
.y68{bottom:85.140000px;}
.y31{bottom:104.220060px;}
.y67{bottom:106.020060px;}
.y30{bottom:124.740060px;}
.y66{bottom:126.540060px;}
.y2f{bottom:145.620060px;}
.y65{bottom:147.420060px;}
.y2e{bottom:166.139910px;}
.y64{bottom:167.940060px;}
.y2d{bottom:187.019910px;}
.y63{bottom:188.820060px;}
.y2c{bottom:207.540060px;}
.y62{bottom:209.340060px;}
.y2b{bottom:228.420060px;}
.y61{bottom:229.860060px;}
.y2a{bottom:248.939910px;}
.y60{bottom:250.740060px;}
.y29{bottom:269.820060px;}
.y5f{bottom:271.260060px;}
.y28{bottom:290.340060px;}
.y5e{bottom:292.139910px;}
.y27{bottom:311.219910px;}
.y5d{bottom:312.660060px;}
.y26{bottom:331.739910px;}
.y5c{bottom:333.540060px;}
.y25{bottom:352.620060px;}
.y5b{bottom:354.059910px;}
.y24{bottom:373.139910px;}
.y5a{bottom:374.940060px;}
.y23{bottom:394.020060px;}
.y59{bottom:395.460060px;}
.y22{bottom:414.540060px;}
.y58{bottom:416.339910px;}
.y21{bottom:435.419910px;}
.y57{bottom:436.860060px;}
.y20{bottom:455.940060px;}
.y56{bottom:457.739910px;}
.y1f{bottom:476.819910px;}
.y55{bottom:478.259910px;}
.y1e{bottom:497.339910px;}
.y54{bottom:499.139910px;}
.y1d{bottom:518.219910px;}
.y53{bottom:519.659910px;}
.y1c{bottom:538.739910px;}
.y52{bottom:540.540060px;}
.y1b{bottom:559.620060px;}
.y51{bottom:561.059910px;}
.y1a{bottom:580.139910px;}
.y50{bottom:581.940060px;}
.y19{bottom:601.020060px;}
.y4f{bottom:602.460060px;}
.y18{bottom:621.540060px;}
.y4e{bottom:623.339910px;}
.y17{bottom:642.419910px;}
.y4d{bottom:643.860060px;}
.y16{bottom:662.940060px;}
.y4c{bottom:664.739910px;}
.y15{bottom:683.819910px;}
.y4b{bottom:685.259910px;}
.y14{bottom:704.339910px;}
.y4a{bottom:706.139910px;}
.y13{bottom:724.499910px;}
.y49{bottom:726.659910px;}
.y12{bottom:744.300060px;}
.y48{bottom:747.539910px;}
.y11{bottom:764.460060px;}
.y47{bottom:768.059910px;}
.y10{bottom:783.539910px;}
.y46{bottom:788.940060px;}
.yf{bottom:802.260060px;}
.y45{bottom:809.460060px;}
.ye{bottom:821.339910px;}
.y44{bottom:830.339910px;}
.yd{bottom:840.420060px;}
.y43{bottom:850.859910px;}
.yc{bottom:859.499910px;}
.y42{bottom:871.740060px;}
.yb{bottom:878.219910px;}
.y41{bottom:892.260060px;}
.ya{bottom:897.300060px;}
.y40{bottom:913.139910px;}
.y9{bottom:916.379910px;}
.y3f{bottom:933.659910px;}
.y8{bottom:935.100060px;}
.y7{bottom:954.179910px;}
.y3e{bottom:954.539910px;}
.y6{bottom:973.260060px;}
.y3d{bottom:975.059910px;}
.y5{bottom:991.979910px;}
.y3c{bottom:995.940060px;}
.y4{bottom:1012.859910px;}
.y3b{bottom:1016.460060px;}
.y3a{bottom:1037.339910px;}
.y3{bottom:1042.019910px;}
.y39{bottom:1057.859910px;}
.y2{bottom:1071.539910px;}
.y38{bottom:1078.739910px;}
.y35{bottom:1133.460060px;}
.y36{bottom:1190.999850px;}
.h9{height:18.719970px;}
.hf{height:27.014766px;}
.h4{height:44.992969px;}
.h3{height:45.024609px;}
.h8{height:46.575000px;}
.h5{height:48.645000px;}
.he{height:48.796875px;}
.h7{height:50.027344px;}
.h6{height:51.750000px;}
.hb{height:66.137447px;}
.hd{height:66.138047px;}
.hc{height:66.138287px;}
.ha{height:66.138647px;}
.h2{height:68.315625px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w2{width:9.359985px;}
.w3{width:18.359985px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x2{left:79.200075px;}
.x3{left:106.200060px;}
.x4{left:133.200000px;}
.x7{left:437.400000px;}
.x5{left:441.720000px;}
.x6{left:445.950000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.319947pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440533pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls19{letter-spacing:-0.011520pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.053600pt;}
.ls18{letter-spacing:0.106133pt;}
.ls14{letter-spacing:0.143616pt;}
.ls12{letter-spacing:0.173184pt;}
.ls17{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.215424pt;}
.ls0{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.268800pt;}
.ls10{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.357120pt;}
.ls7{letter-spacing:0.358400pt;}
.ls1{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.535680pt;}
.ls25{letter-spacing:0.593280pt;}
.ls5{letter-spacing:0.636160pt;}
.lsa{letter-spacing:0.645120pt;}
.ls9{letter-spacing:0.707840pt;}
.lsb{letter-spacing:0.708480pt;}
.lse{letter-spacing:0.777600pt;}
.ls15{letter-spacing:0.782933pt;}
.ls4{letter-spacing:0.788480pt;}
.ls20{letter-spacing:9.268267pt;}
.lsc{letter-spacing:9.573120pt;}
.ls22{letter-spacing:23.456000pt;}
.ls23{letter-spacing:27.081067pt;}
.ls2{letter-spacing:30.207787pt;}
.ls1e{letter-spacing:37.706133pt;}
.ls21{letter-spacing:41.268267pt;}
.ls1c{letter-spacing:44.768533pt;}
.ls3{letter-spacing:48.770293pt;}
.ls1d{letter-spacing:51.893333pt;}
.ls1f{letter-spacing:55.487467pt;}
.ls1b{letter-spacing:59.049600pt;}
.ls24{letter-spacing:90.987200pt;}
.ws0{word-spacing:-23.036160pt;}
.wsd{word-spacing:-16.606080pt;}
.wsc{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws4{word-spacing:-15.177600pt;}
.ws2{word-spacing:-15.108480pt;}
.ws1{word-spacing:-14.757120pt;}
.ws3{word-spacing:-14.688000pt;}
.wsa{word-spacing:-10.775424pt;}
.ws9{word-spacing:-10.733184pt;}
.wsb{word-spacing:-10.703616pt;}
.ws7{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
._3b{margin-left:-15.642667pt;}
._50{margin-left:-12.058667pt;}
._3{margin-left:-9.106187pt;}
._47{margin-left:-5.031467pt;}
._57{margin-left:-3.956800pt;}
._1c{margin-left:-2.504960pt;}
._0{margin-left:-1.254400pt;}
._1{width:1.143627pt;}
._8{width:2.133173pt;}
._7{width:3.046400pt;}
._9{width:4.268800pt;}
._14{width:5.209600pt;}
._4{width:6.169600pt;}
._a{width:7.065600pt;}
._2{width:8.742400pt;}
._11{width:9.875200pt;}
._19{width:10.782187pt;}
._b{width:11.688907pt;}
._6{width:12.678400pt;}
._e{width:13.578293pt;}
._d{width:15.072000pt;}
._16{width:17.456160pt;}
._12{width:18.444800pt;}
._1a{width:19.494400pt;}
._13{width:20.544000pt;}
._26{width:23.449067pt;}
._c{width:24.442827pt;}
._f{width:25.613333pt;}
._10{width:26.688000pt;}
._17{width:27.692800pt;}
._5{width:29.360800pt;}
._29{width:30.553067pt;}
._18{width:31.526400pt;}
._15{width:33.410133pt;}
._4f{width:36.734400pt;}
._22{width:37.695467pt;}
._4d{width:39.806933pt;}
._25{width:41.215467pt;}
._5c{width:43.518933pt;}
._1e{width:44.761067pt;}
._1b{width:47.155200pt;}
._2c{width:48.281067pt;}
._4b{width:50.507733pt;}
._2b{width:51.903467pt;}
._3a{width:55.385067pt;}
._62{width:56.318400pt;}
._55{width:57.765333pt;}
._52{width:59.045867pt;}
._30{width:61.144533pt;}
._31{width:62.591467pt;}
._4a{width:66.175467pt;}
._5d{width:67.402667pt;}
._41{width:68.734400pt;}
._20{width:70.014933pt;}
._4c{width:73.215467pt;}
._5f{width:75.068800pt;}
._36{width:76.799733pt;}
._42{width:78.013867pt;}
._54{width:80.894933pt;}
._33{width:82.533333pt;}
._63{width:83.769600pt;}
._2e{width:85.077867pt;}
._45{width:86.902400pt;}
._5a{width:88.318400pt;}
._1f{width:90.429867pt;}
._37{width:91.544533pt;}
._56{width:94.974933pt;}
._32{width:98.622933pt;}
._60{width:101.759467pt;}
._44{width:104.673600pt;}
._3d{width:105.662933pt;}
._21{width:108.799733pt;}
._5e{width:111.320000pt;}
._61{width:112.447467pt;}
._2f{width:113.493867pt;}
._53{width:116.350933pt;}
._48{width:117.461333pt;}
._28{width:119.870933pt;}
._5b{width:122.557867pt;}
._3c{width:123.454933pt;}
._64{width:125.489600pt;}
._24{width:127.294400pt;}
._51{width:130.494933pt;}
._58{width:134.245333pt;}
._46{width:135.572800pt;}
._3e{width:137.662933pt;}
._35{width:139.812800pt;}
._1d{width:140.799733pt;}
._3f{width:141.973867pt;}
._49{width:143.396800pt;}
._38{width:144.702933pt;}
._39{width:148.389333pt;}
._4e{width:151.870933pt;}
._27{width:155.357867pt;}
._34{width:158.974933pt;}
._43{width:160.150400pt;}
._40{width:162.558933pt;}
._2d{width:164.092800pt;}
._2a{width:166.078933pt;}
._59{width:168.740267pt;}
._23{width:169.662933pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:52.480000pt;}
.fs1{font-size:57.600000pt;}
.fs2{font-size:60.160000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:89.600000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.200133pt;}
.y6c{bottom:30.239987pt;}
.y34{bottom:37.279987pt;}
.y6a{bottom:38.880000pt;}
.y6b{bottom:39.840000pt;}
.y1{bottom:54.666613pt;}
.y33{bottom:55.840000pt;}
.y69{bottom:57.440000pt;}
.y32{bottom:74.079987pt;}
.y68{bottom:75.680000pt;}
.y31{bottom:92.640053pt;}
.y67{bottom:94.240053pt;}
.y30{bottom:110.880053pt;}
.y66{bottom:112.480053pt;}
.y2f{bottom:129.440053pt;}
.y65{bottom:131.040053pt;}
.y2e{bottom:147.679920pt;}
.y64{bottom:149.280053pt;}
.y2d{bottom:166.239920pt;}
.y63{bottom:167.840053pt;}
.y2c{bottom:184.480053pt;}
.y62{bottom:186.080053pt;}
.y2b{bottom:203.040053pt;}
.y61{bottom:204.320053pt;}
.y2a{bottom:221.279920pt;}
.y60{bottom:222.880053pt;}
.y29{bottom:239.840053pt;}
.y5f{bottom:241.120053pt;}
.y28{bottom:258.080053pt;}
.y5e{bottom:259.679920pt;}
.y27{bottom:276.639920pt;}
.y5d{bottom:277.920053pt;}
.y26{bottom:294.879920pt;}
.y5c{bottom:296.480053pt;}
.y25{bottom:313.440053pt;}
.y5b{bottom:314.719920pt;}
.y24{bottom:331.679920pt;}
.y5a{bottom:333.280053pt;}
.y23{bottom:350.240053pt;}
.y59{bottom:351.520053pt;}
.y22{bottom:368.480053pt;}
.y58{bottom:370.079920pt;}
.y21{bottom:387.039920pt;}
.y57{bottom:388.320053pt;}
.y20{bottom:405.280053pt;}
.y56{bottom:406.879920pt;}
.y1f{bottom:423.839920pt;}
.y55{bottom:425.119920pt;}
.y1e{bottom:442.079920pt;}
.y54{bottom:443.679920pt;}
.y1d{bottom:460.639920pt;}
.y53{bottom:461.919920pt;}
.y1c{bottom:478.879920pt;}
.y52{bottom:480.480053pt;}
.y1b{bottom:497.440053pt;}
.y51{bottom:498.719920pt;}
.y1a{bottom:515.679920pt;}
.y50{bottom:517.280053pt;}
.y19{bottom:534.240053pt;}
.y4f{bottom:535.520053pt;}
.y18{bottom:552.480053pt;}
.y4e{bottom:554.079920pt;}
.y17{bottom:571.039920pt;}
.y4d{bottom:572.320053pt;}
.y16{bottom:589.280053pt;}
.y4c{bottom:590.879920pt;}
.y15{bottom:607.839920pt;}
.y4b{bottom:609.119920pt;}
.y14{bottom:626.079920pt;}
.y4a{bottom:627.679920pt;}
.y13{bottom:643.999920pt;}
.y49{bottom:645.919920pt;}
.y12{bottom:661.600053pt;}
.y48{bottom:664.479920pt;}
.y11{bottom:679.520053pt;}
.y47{bottom:682.719920pt;}
.y10{bottom:696.479920pt;}
.y46{bottom:701.280053pt;}
.yf{bottom:713.120053pt;}
.y45{bottom:719.520053pt;}
.ye{bottom:730.079920pt;}
.y44{bottom:738.079920pt;}
.yd{bottom:747.040053pt;}
.y43{bottom:756.319920pt;}
.yc{bottom:763.999920pt;}
.y42{bottom:774.880053pt;}
.yb{bottom:780.639920pt;}
.y41{bottom:793.120053pt;}
.ya{bottom:797.600053pt;}
.y40{bottom:811.679920pt;}
.y9{bottom:814.559920pt;}
.y3f{bottom:829.919920pt;}
.y8{bottom:831.200053pt;}
.y7{bottom:848.159920pt;}
.y3e{bottom:848.479920pt;}
.y6{bottom:865.120053pt;}
.y3d{bottom:866.719920pt;}
.y5{bottom:881.759920pt;}
.y3c{bottom:885.280053pt;}
.y4{bottom:900.319920pt;}
.y3b{bottom:903.520053pt;}
.y3a{bottom:922.079920pt;}
.y3{bottom:926.239920pt;}
.y39{bottom:940.319920pt;}
.y2{bottom:952.479920pt;}
.y38{bottom:958.879920pt;}
.y35{bottom:1007.520053pt;}
.y36{bottom:1058.666533pt;}
.h9{height:16.639973pt;}
.hf{height:24.013125pt;}
.h4{height:39.993750pt;}
.h3{height:40.021875pt;}
.h8{height:41.400000pt;}
.h5{height:43.240000pt;}
.he{height:43.375000pt;}
.h7{height:44.468750pt;}
.h6{height:46.000000pt;}
.hb{height:58.788842pt;}
.hd{height:58.789375pt;}
.hc{height:58.789588pt;}
.ha{height:58.789908pt;}
.h2{height:60.725000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.319987pt;}
.w3{width:16.319987pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x2{left:70.400067pt;}
.x3{left:94.400053pt;}
.x4{left:118.400000pt;}
.x7{left:388.800000pt;}
.x5{left:392.640000pt;}
.x6{left:396.400000pt;}
}




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