
    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_64f7581425468ae96a3e8862.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_33d4567ba9bf4a65ac1efbbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d1a94681ac1c9624945b93e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_57f2a43be119a2c9db0c3066.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_721d29c72be25a9ec8401bf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_c8e2a6220e45852f6069f58d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_0e6a453ab78723feecdc1ddb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_509f196469b2d7b730261a0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.810000px;}
.ls24{letter-spacing:-0.756000px;}
.ls22{letter-spacing:-0.684000px;}
.ls25{letter-spacing:-0.428400px;}
.ls7{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.154800px;}
.ls21{letter-spacing:-0.028080px;}
.lsf{letter-spacing:-0.009360px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.187200px;}
.ls20{letter-spacing:0.291600px;}
.ls1a{letter-spacing:0.336000px;}
.ls18{letter-spacing:0.350640px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.378600px;}
.ls16{letter-spacing:0.378720px;}
.ls27{letter-spacing:0.540000px;}
.ls28{letter-spacing:4.140000px;}
.ls17{letter-spacing:5.580000px;}
.ls15{letter-spacing:6.276000px;}
.lse{letter-spacing:6.300000px;}
.lsa{letter-spacing:7.020000px;}
.ls13{letter-spacing:7.740000px;}
.ls26{letter-spacing:11.460000px;}
.ls23{letter-spacing:12.780000px;}
.lsc{letter-spacing:14.940000px;}
.ls14{letter-spacing:17.820000px;}
.lsb{letter-spacing:20.700000px;}
.ls1f{letter-spacing:23.580000px;}
.ls2{letter-spacing:29.340000px;}
.ls1c{letter-spacing:30.060000px;}
.ls1d{letter-spacing:30.180000px;}
.ls12{letter-spacing:32.220000px;}
.lsd{letter-spacing:35.820000px;}
.ls3{letter-spacing:36.540000px;}
.ls29{letter-spacing:43.020000px;}
.ls1e{letter-spacing:43.740000px;}
.ls11{letter-spacing:48.240000px;}
.ls5{letter-spacing:68.940000px;}
.ls10{letter-spacing:100.800000px;}
.ls2a{letter-spacing:129.221280px;}
.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;}
}
.ws9{word-spacing:-84.240000px;}
.ws7{word-spacing:-54.000000px;}
.ws1{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.351600px;}
.ws4{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.050640px;}
.wsb{word-spacing:-21.031920px;}
.wsc{word-spacing:-20.905200px;}
.ws6{word-spacing:-0.084240px;}
.ws8{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
._38{margin-left:-5.981040px;}
._34{margin-left:-4.875840px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.189440px;}
._2{width:1.525440px;}
._15{width:2.655360px;}
._2b{width:4.329360px;}
._17{width:5.617200px;}
._16{width:6.975120px;}
._21{width:8.009280px;}
._20{width:9.266400px;}
._19{width:11.119680px;}
._1e{width:12.638640px;}
._1a{width:13.815360px;}
._1b{width:15.257520px;}
._3c{width:16.268400px;}
._22{width:17.269200px;}
._31{width:18.627120px;}
._18{width:19.740480px;}
._a{width:22.482000px;}
._9{width:23.850000px;}
._23{width:25.177680px;}
._27{width:26.388240px;}
._14{width:27.462240px;}
._5{width:28.651680px;}
._6{width:29.800080px;}
._f{width:31.053120px;}
._2c{width:32.754720px;}
._2d{width:33.790320px;}
._c{width:35.155200px;}
._b{width:36.738720px;}
._28{width:38.413440px;}
._29{width:39.434400px;}
._8{width:40.698000px;}
._7{width:41.793120px;}
._33{width:42.872400px;}
._37{width:43.961040px;}
._12{width:45.045360px;}
._13{width:46.219680px;}
._32{width:47.511360px;}
._26{width:48.869280px;}
._3e{width:49.954320px;}
._2e{width:51.034320px;}
._11{width:52.070400px;}
._25{width:53.344080px;}
._35{width:54.597600px;}
._3b{width:56.787840px;}
._1c{width:58.219920px;}
._1f{width:59.894640px;}
._41{width:61.916400px;}
._4{width:63.631680px;}
._3{width:64.750080px;}
._1d{width:66.970800px;}
._10{width:68.655600px;}
._2f{width:70.593120px;}
._39{width:72.530640px;}
._36{width:74.636640px;}
._3d{width:82.818000px;}
._40{width:87.619680px;}
._d{width:91.073520px;}
._3f{width:107.742960px;}
._30{width:108.942480px;}
._2a{width:116.451840px;}
._3a{width:130.076640px;}
._24{width:132.266880px;}
._e{width:136.657440px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.960000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y4c{bottom:102.420000px;}
.y59{bottom:103.680000px;}
.y51{bottom:117.360000px;}
.y2a{bottom:120.960000px;}
.y58{bottom:127.800000px;}
.y4b{bottom:130.320000px;}
.y29{bottom:148.860000px;}
.y57{bottom:151.920000px;}
.y4a{bottom:158.040000px;}
.y50{bottom:162.540000px;}
.y56{bottom:176.220000px;}
.y28{bottom:176.580000px;}
.y49{bottom:185.760000px;}
.y4f{bottom:190.260000px;}
.y55{bottom:200.340000px;}
.y27{bottom:204.300000px;}
.y48{bottom:213.510000px;}
.y4e{bottom:218.010000px;}
.y54{bottom:224.490000px;}
.y26{bottom:232.230000px;}
.y4d{bottom:241.230000px;}
.y47{bottom:241.410000px;}
.y53{bottom:248.610000px;}
.y25{bottom:259.950000px;}
.y46{bottom:269.130000px;}
.y52{bottom:272.730000px;}
.y24{bottom:287.670000px;}
.y45{bottom:296.850000px;}
.y23{bottom:315.390000px;}
.y44{bottom:324.750000px;}
.y22{bottom:343.290000px;}
.y43{bottom:352.470000px;}
.y21{bottom:371.010000px;}
.y42{bottom:380.190000px;}
.y20{bottom:398.730000px;}
.y41{bottom:407.910000px;}
.y1f{bottom:426.630000px;}
.y40{bottom:435.810000px;}
.y1e{bottom:454.395000px;}
.y3f{bottom:463.575000px;}
.y1d{bottom:482.115000px;}
.y3e{bottom:491.295000px;}
.y1c{bottom:509.835000px;}
.y3d{bottom:519.195000px;}
.y1b{bottom:537.735000px;}
.y3c{bottom:546.915000px;}
.y1a{bottom:565.455000px;}
.y3b{bottom:574.635000px;}
.y19{bottom:593.175000px;}
.y3a{bottom:602.355000px;}
.y18{bottom:621.075000px;}
.y39{bottom:630.255000px;}
.y17{bottom:648.795000px;}
.y38{bottom:657.975000px;}
.y16{bottom:676.515000px;}
.y37{bottom:685.725000px;}
.y15{bottom:713.265000px;}
.y36{bottom:713.445000px;}
.y35{bottom:741.345000px;}
.y14{bottom:750.165000px;}
.y34{bottom:769.065000px;}
.y13{bottom:785.445000px;}
.y33{bottom:796.785000px;}
.y12{bottom:813.165000px;}
.y32{bottom:824.685000px;}
.y11{bottom:833.325000px;}
.y31{bottom:852.405000px;}
.y10{bottom:868.785000px;}
.y30{bottom:880.125000px;}
.yf{bottom:888.945000px;}
.y2f{bottom:907.845000px;}
.ye{bottom:916.665000px;}
.y2e{bottom:935.790000px;}
.yd{bottom:944.610000px;}
.y2d{bottom:963.510000px;}
.yc{bottom:972.330000px;}
.y2c{bottom:991.230000px;}
.yb{bottom:1000.050000px;}
.y2b{bottom:1019.130000px;}
.ya{bottom:1023.450000px;}
.y9{bottom:1046.850000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.h5{height:36.360000px;}
.h2{height:48.224531px;}
.hb{height:52.998047px;}
.ha{height:54.421875px;}
.hc{height:59.066719px;}
.h4{height:65.010937px;}
.h7{height:72.846211px;}
.hd{height:82.635820px;}
.h6{height:82.676953px;}
.h9{height:84.661875px;}
.h8{height:84.898125px;}
.he{height:86.585445px;}
.h3{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x9{left:93.635987px;}
.x12{left:106.415987px;}
.x8{left:113.975987px;}
.xf{left:131.255987px;}
.x11{left:189.929987px;}
.x3{left:213.689987px;}
.x2{left:267.734987px;}
.x14{left:307.694987px;}
.x13{left:317.954987px;}
.x19{left:351.074987px;}
.xb{left:355.754987px;}
.xe{left:366.914987px;}
.xc{left:368.354987px;}
.xa{left:375.734987px;}
.xd{left:382.214987px;}
.x10{left:394.814987px;}
.x16{left:402.584987px;}
.x4{left:445.244987px;}
.x15{left:446.684987px;}
.x18{left:525.524987px;}
.x17{left:532.544987px;}
.x1{left:581.729987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.720000pt;}
.ls24{letter-spacing:-0.672000pt;}
.ls22{letter-spacing:-0.608000pt;}
.ls25{letter-spacing:-0.380800pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.137600pt;}
.ls21{letter-spacing:-0.024960pt;}
.lsf{letter-spacing:-0.008320pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.166400pt;}
.ls20{letter-spacing:0.259200pt;}
.ls1a{letter-spacing:0.298667pt;}
.ls18{letter-spacing:0.311680pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.336533pt;}
.ls16{letter-spacing:0.336640pt;}
.ls27{letter-spacing:0.480000pt;}
.ls28{letter-spacing:3.680000pt;}
.ls17{letter-spacing:4.960000pt;}
.ls15{letter-spacing:5.578667pt;}
.lse{letter-spacing:5.600000pt;}
.lsa{letter-spacing:6.240000pt;}
.ls13{letter-spacing:6.880000pt;}
.ls26{letter-spacing:10.186667pt;}
.ls23{letter-spacing:11.360000pt;}
.lsc{letter-spacing:13.280000pt;}
.ls14{letter-spacing:15.840000pt;}
.lsb{letter-spacing:18.400000pt;}
.ls1f{letter-spacing:20.960000pt;}
.ls2{letter-spacing:26.080000pt;}
.ls1c{letter-spacing:26.720000pt;}
.ls1d{letter-spacing:26.826667pt;}
.ls12{letter-spacing:28.640000pt;}
.lsd{letter-spacing:31.840000pt;}
.ls3{letter-spacing:32.480000pt;}
.ls29{letter-spacing:38.240000pt;}
.ls1e{letter-spacing:38.880000pt;}
.ls11{letter-spacing:42.880000pt;}
.ls5{letter-spacing:61.280000pt;}
.ls10{letter-spacing:89.600000pt;}
.ls2a{letter-spacing:114.863360pt;}
.ws9{word-spacing:-74.880000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws1{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.979200pt;}
.ws4{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.711680pt;}
.wsb{word-spacing:-18.695040pt;}
.wsc{word-spacing:-18.582400pt;}
.ws6{word-spacing:-0.074880pt;}
.ws8{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
._38{margin-left:-5.316480pt;}
._34{margin-left:-4.334080pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.057280pt;}
._2{width:1.355947pt;}
._15{width:2.360320pt;}
._2b{width:3.848320pt;}
._17{width:4.993067pt;}
._16{width:6.200107pt;}
._21{width:7.119360pt;}
._20{width:8.236800pt;}
._19{width:9.884160pt;}
._1e{width:11.234347pt;}
._1a{width:12.280320pt;}
._1b{width:13.562240pt;}
._3c{width:14.460800pt;}
._22{width:15.350400pt;}
._31{width:16.557440pt;}
._18{width:17.547093pt;}
._a{width:19.984000pt;}
._9{width:21.200000pt;}
._23{width:22.380160pt;}
._27{width:23.456213pt;}
._14{width:24.410880pt;}
._5{width:25.468160pt;}
._6{width:26.488960pt;}
._f{width:27.602773pt;}
._2c{width:29.115307pt;}
._2d{width:30.035840pt;}
._c{width:31.249067pt;}
._b{width:32.656640pt;}
._28{width:34.145280pt;}
._29{width:35.052800pt;}
._8{width:36.176000pt;}
._7{width:37.149440pt;}
._33{width:38.108800pt;}
._37{width:39.076480pt;}
._12{width:40.040320pt;}
._13{width:41.084160pt;}
._32{width:42.232320pt;}
._26{width:43.439360pt;}
._3e{width:44.403840pt;}
._2e{width:45.363840pt;}
._11{width:46.284800pt;}
._25{width:47.416960pt;}
._35{width:48.531200pt;}
._3b{width:50.478080pt;}
._1c{width:51.751040pt;}
._1f{width:53.239680pt;}
._41{width:55.036800pt;}
._4{width:56.561493pt;}
._3{width:57.555627pt;}
._1d{width:59.529600pt;}
._10{width:61.027200pt;}
._2f{width:62.749440pt;}
._39{width:64.471680pt;}
._36{width:66.343680pt;}
._3d{width:73.616000pt;}
._40{width:77.884160pt;}
._d{width:80.954240pt;}
._3f{width:95.771520pt;}
._30{width:96.837760pt;}
._2a{width:103.512747pt;}
._3a{width:115.623680pt;}
._24{width:117.570560pt;}
._e{width:121.473280pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.520000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y4c{bottom:91.040000pt;}
.y59{bottom:92.160000pt;}
.y51{bottom:104.320000pt;}
.y2a{bottom:107.520000pt;}
.y58{bottom:113.600000pt;}
.y4b{bottom:115.840000pt;}
.y29{bottom:132.320000pt;}
.y57{bottom:135.040000pt;}
.y4a{bottom:140.480000pt;}
.y50{bottom:144.480000pt;}
.y56{bottom:156.640000pt;}
.y28{bottom:156.960000pt;}
.y49{bottom:165.120000pt;}
.y4f{bottom:169.120000pt;}
.y55{bottom:178.080000pt;}
.y27{bottom:181.600000pt;}
.y48{bottom:189.786667pt;}
.y4e{bottom:193.786667pt;}
.y54{bottom:199.546667pt;}
.y26{bottom:206.426667pt;}
.y4d{bottom:214.426667pt;}
.y47{bottom:214.586667pt;}
.y53{bottom:220.986667pt;}
.y25{bottom:231.066667pt;}
.y46{bottom:239.226667pt;}
.y52{bottom:242.426667pt;}
.y24{bottom:255.706667pt;}
.y45{bottom:263.866667pt;}
.y23{bottom:280.346667pt;}
.y44{bottom:288.666667pt;}
.y22{bottom:305.146667pt;}
.y43{bottom:313.306667pt;}
.y21{bottom:329.786667pt;}
.y42{bottom:337.946667pt;}
.y20{bottom:354.426667pt;}
.y41{bottom:362.586667pt;}
.y1f{bottom:379.226667pt;}
.y40{bottom:387.386667pt;}
.y1e{bottom:403.906667pt;}
.y3f{bottom:412.066667pt;}
.y1d{bottom:428.546667pt;}
.y3e{bottom:436.706667pt;}
.y1c{bottom:453.186667pt;}
.y3d{bottom:461.506667pt;}
.y1b{bottom:477.986667pt;}
.y3c{bottom:486.146667pt;}
.y1a{bottom:502.626667pt;}
.y3b{bottom:510.786667pt;}
.y19{bottom:527.266667pt;}
.y3a{bottom:535.426667pt;}
.y18{bottom:552.066667pt;}
.y39{bottom:560.226667pt;}
.y17{bottom:576.706667pt;}
.y38{bottom:584.866667pt;}
.y16{bottom:601.346667pt;}
.y37{bottom:609.533333pt;}
.y15{bottom:634.013333pt;}
.y36{bottom:634.173333pt;}
.y35{bottom:658.973333pt;}
.y14{bottom:666.813333pt;}
.y34{bottom:683.613333pt;}
.y13{bottom:698.173333pt;}
.y33{bottom:708.253333pt;}
.y12{bottom:722.813333pt;}
.y32{bottom:733.053333pt;}
.y11{bottom:740.733333pt;}
.y31{bottom:757.693333pt;}
.y10{bottom:772.253333pt;}
.y30{bottom:782.333333pt;}
.yf{bottom:790.173333pt;}
.y2f{bottom:806.973333pt;}
.ye{bottom:814.813333pt;}
.y2e{bottom:831.813333pt;}
.yd{bottom:839.653333pt;}
.y2d{bottom:856.453333pt;}
.yc{bottom:864.293333pt;}
.y2c{bottom:881.093333pt;}
.yb{bottom:888.933333pt;}
.y2b{bottom:905.893333pt;}
.ya{bottom:909.733333pt;}
.y9{bottom:930.533333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.h5{height:32.320000pt;}
.h2{height:42.866250pt;}
.hb{height:47.109375pt;}
.ha{height:48.375000pt;}
.hc{height:52.503750pt;}
.h4{height:57.787500pt;}
.h7{height:64.752187pt;}
.hd{height:73.454062pt;}
.h6{height:73.490625pt;}
.h9{height:75.255000pt;}
.h8{height:75.465000pt;}
.he{height:76.964840pt;}
.h3{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x9{left:83.231988pt;}
.x12{left:94.591988pt;}
.x8{left:101.311988pt;}
.xf{left:116.671988pt;}
.x11{left:168.826655pt;}
.x3{left:189.946655pt;}
.x2{left:237.986655pt;}
.x14{left:273.506655pt;}
.x13{left:282.626655pt;}
.x19{left:312.066655pt;}
.xb{left:316.226655pt;}
.xe{left:326.146655pt;}
.xc{left:327.426655pt;}
.xa{left:333.986655pt;}
.xd{left:339.746655pt;}
.x10{left:350.946655pt;}
.x16{left:357.853321pt;}
.x4{left:395.773321pt;}
.x15{left:397.053321pt;}
.x18{left:467.133322pt;}
.x17{left:473.373321pt;}
.x1{left:517.093322pt;}
}




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