
    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_0ea6d6f8bd22534063964541.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ff883f19dd626a98c5f50695.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_81c8aef9c58242e13c0c0f60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_cd26bdfc140c4256e9df9fbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_ec7793a2941413ad87b89c8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m2{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:-90.000000px;}
.v4{vertical-align:-72.000000px;}
.v3{vertical-align:-19.140000px;}
.v5{vertical-align:-3.396002px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:90.000000px;}
.lse{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.261600px;}
.lsb{letter-spacing:-0.181200px;}
.lsc{letter-spacing:-0.090600px;}
.lsd{letter-spacing:-0.037440px;}
.lsa{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.181200px;}
.ls5{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.311040px;}
.ls6{letter-spacing:0.316080px;}
.ls12{letter-spacing:0.679200px;}
.ls9{letter-spacing:0.681917px;}
.ls3{letter-spacing:29.952000px;}
.ls0{letter-spacing:54.711936px;}
.ls8{letter-spacing:62.972064px;}
.ls7{letter-spacing:63.113040px;}
.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;}
}
.wsb{word-spacing:-89.964000px;}
.ws16{word-spacing:-73.458720px;}
.ws11{word-spacing:-63.450720px;}
.ws10{word-spacing:-63.269520px;}
.ws0{word-spacing:-55.644480px;}
.wsf{word-spacing:-44.435520px;}
.ws1{word-spacing:-41.633280px;}
.ws9{word-spacing:-30.024000px;}
.wsa{word-spacing:-29.736000px;}
.wsc{word-spacing:-3.312000px;}
.ws3{word-spacing:-2.391120px;}
.ws17{word-spacing:-2.309040px;}
.ws15{word-spacing:-1.849680px;}
.ws6{word-spacing:-1.719360px;}
.ws12{word-spacing:-1.608768px;}
.ws18{word-spacing:-1.580400px;}
.ws19{word-spacing:-1.311120px;}
.ws14{word-spacing:-1.309680px;}
.ws7{word-spacing:-1.176480px;}
.ws1e{word-spacing:-0.986400px;}
.ws1d{word-spacing:-0.766800px;}
.ws5{word-spacing:-0.691080px;}
.ws1a{word-spacing:-0.678960px;}
.ws1c{word-spacing:-0.630480px;}
.ws2{word-spacing:-0.539280px;}
.ws13{word-spacing:-0.443760px;}
.ws1b{word-spacing:-0.089040px;}
.ws20{word-spacing:0.000000px;}
.ws4{word-spacing:0.089760px;}
.wsd{word-spacing:0.252000px;}
.wse{word-spacing:0.900000px;}
.ws8{word-spacing:85.296240px;}
.ws1f{word-spacing:746.819609px;}
._4{margin-left:-26.413200px;}
._18{margin-left:-24.878160px;}
._17{margin-left:-22.158000px;}
._7{margin-left:-19.689840px;}
._8{margin-left:-17.426304px;}
._6{margin-left:-16.201104px;}
._11{margin-left:-14.360640px;}
._f{margin-left:-12.324960px;}
._9{margin-left:-10.826784px;}
._13{margin-left:-9.810144px;}
._5{margin-left:-8.781984px;}
._a{margin-left:-7.720608px;}
._b{margin-left:-5.703840px;}
._0{margin-left:-4.557312px;}
._3{margin-left:-3.338928px;}
._2{margin-left:-1.783296px;}
._1{width:1.306368px;}
._d{width:2.558592px;}
._e{width:3.943296px;}
._15{width:26.083296px;}
._16{width:28.178112px;}
._14{width:31.330704px;}
._1a{width:38.253600px;}
._1b{width:43.814017px;}
._19{width:59.859360px;}
._10{width:61.194672px;}
._12{width:62.319600px;}
._1c{width:707.505948px;}
._c{width:5582.620560px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:108.000000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:131.760000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:149.760000px;}
.fsb{font-size:159.840000px;}
.fsf{font-size:163.687308px;}
.fs4{font-size:167.760000px;}
.fs0{font-size:198.144000px;}
.fs3{font-size:200.160000px;}
.fs8{font-size:228.240000px;}
.fs9{font-size:228.384000px;}
.fsc{font-size:239.760000px;}
.fs7{font-size:264.240000px;}
.fs1{font-size:300.240000px;}
.fs2{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:35.240823px;}
.y1{bottom:82.188000px;}
.yb{bottom:251.610000px;}
.ya{bottom:294.810000px;}
.y9{bottom:338.010000px;}
.yc{bottom:368.130000px;}
.y8{bottom:381.210000px;}
.y7{bottom:429.195000px;}
.y29{bottom:533.805000px;}
.y28{bottom:566.205000px;}
.y27{bottom:598.605000px;}
.y38{bottom:602.535000px;}
.y26{bottom:631.005000px;}
.y25{bottom:663.405000px;}
.y37{bottom:670.935000px;}
.y24{bottom:695.805000px;}
.y23{bottom:728.205000px;}
.y22{bottom:760.605000px;}
.y21{bottom:793.005000px;}
.y36{bottom:805.245000px;}
.y20{bottom:825.405000px;}
.y35{bottom:847.365000px;}
.y1f{bottom:857.805000px;}
.y1e{bottom:890.205000px;}
.y34{bottom:915.765000px;}
.y1d{bottom:922.605000px;}
.y1c{bottom:955.005000px;}
.y1b{bottom:987.405000px;}
.y1a{bottom:1019.850000px;}
.y19{bottom:1052.250000px;}
.y33{bottom:1056.165000px;}
.y18{bottom:1084.650000px;}
.y17{bottom:1117.050000px;}
.y32{bottom:1124.565000px;}
.y16{bottom:1149.450000px;}
.y15{bottom:1181.850000px;}
.yd{bottom:1275.690000px;}
.y13{bottom:1331.385000px;}
.y12{bottom:1468.230000px;}
.y11{bottom:1536.630000px;}
.y31{bottom:1617.300000px;}
.y10{bottom:1673.430000px;}
.y30{bottom:1685.700000px;}
.yf{bottom:1741.830000px;}
.ye{bottom:1810.230000px;}
.y2f{bottom:1890.900000px;}
.y14{bottom:1952.025000px;}
.y2e{bottom:1959.300000px;}
.y2d{bottom:2164.530000px;}
.y49{bottom:2171.310000px;}
.y2c{bottom:2232.930000px;}
.y48{bottom:2239.710000px;}
.y47{bottom:2376.510000px;}
.y4a{bottom:2423.570824px;}
.y46{bottom:2444.910000px;}
.y45{bottom:2581.710000px;}
.y44{bottom:2650.140000px;}
.y43{bottom:2718.540000px;}
.y42{bottom:2849.940000px;}
.y41{bottom:2894.940000px;}
.y40{bottom:2963.340000px;}
.y3f{bottom:3100.140000px;}
.y3e{bottom:3168.540000px;}
.y3d{bottom:3236.940000px;}
.y3c{bottom:3368.340000px;}
.y3b{bottom:3413.340000px;}
.y3a{bottom:3481.740000px;}
.y39{bottom:3615.015000px;}
.y2a{bottom:3617.670000px;}
.y2b{bottom:3816.510000px;}
.y6{bottom:3902.835000px;}
.y5{bottom:4044.210000px;}
.y4{bottom:4188.210000px;}
.y3{bottom:4332.210000px;}
.y2{bottom:4819.140000px;}
.hb{height:112.640625px;}
.hd{height:125.406562px;}
.he{height:137.421562px;}
.h10{height:146.823040px;}
.h6{height:150.187500px;}
.h7{height:156.195000px;}
.h5{height:174.968437px;}
.hc{height:178.062187px;}
.h2{height:206.658000px;}
.h9{height:238.047188px;}
.ha{height:238.197375px;}
.h8{height:275.594063px;}
.h3{height:313.140938px;}
.h4{height:500.875313px;}
.hf{height:1102.002892px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w3{width:1359.582977px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x13{left:70.563475px;}
.x1{left:86.219947px;}
.x4{left:189.389947px;}
.x3{left:198.179947px;}
.xb{left:220.889947px;}
.x8{left:221.969947px;}
.x6{left:256.889947px;}
.x9{left:309.854947px;}
.x11{left:380.009947px;}
.x10{left:397.649947px;}
.xa{left:409.934947px;}
.xf{left:773.279947px;}
.x2{left:1824.374947px;}
.x5{left:1919.264947px;}
.x12{left:1945.320192px;}
.xe{left:2047.679947px;}
.xd{left:2137.964947px;}
.x7{left:2448.974947px;}
.xc{left:2489.294947px;}
@media print{
.v2{vertical-align:-80.000000pt;}
.v4{vertical-align:-64.000000pt;}
.v3{vertical-align:-17.013333pt;}
.v5{vertical-align:-3.018669pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:80.000000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.232533pt;}
.lsb{letter-spacing:-0.161067pt;}
.lsc{letter-spacing:-0.080533pt;}
.lsd{letter-spacing:-0.033280pt;}
.lsa{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.161067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.276480pt;}
.ls6{letter-spacing:0.280960pt;}
.ls12{letter-spacing:0.603734pt;}
.ls9{letter-spacing:0.606149pt;}
.ls3{letter-spacing:26.624000pt;}
.ls0{letter-spacing:48.632832pt;}
.ls8{letter-spacing:55.975168pt;}
.ls7{letter-spacing:56.100480pt;}
.wsb{word-spacing:-79.968000pt;}
.ws16{word-spacing:-65.296640pt;}
.ws11{word-spacing:-56.400640pt;}
.ws10{word-spacing:-56.239573pt;}
.ws0{word-spacing:-49.461760pt;}
.wsf{word-spacing:-39.498240pt;}
.ws1{word-spacing:-37.007360pt;}
.ws9{word-spacing:-26.688000pt;}
.wsa{word-spacing:-26.432000pt;}
.wsc{word-spacing:-2.944000pt;}
.ws3{word-spacing:-2.125440pt;}
.ws17{word-spacing:-2.052480pt;}
.ws15{word-spacing:-1.644160pt;}
.ws6{word-spacing:-1.528320pt;}
.ws12{word-spacing:-1.430016pt;}
.ws18{word-spacing:-1.404800pt;}
.ws19{word-spacing:-1.165440pt;}
.ws14{word-spacing:-1.164160pt;}
.ws7{word-spacing:-1.045760pt;}
.ws1e{word-spacing:-0.876800pt;}
.ws1d{word-spacing:-0.681600pt;}
.ws5{word-spacing:-0.614293pt;}
.ws1a{word-spacing:-0.603520pt;}
.ws1c{word-spacing:-0.560427pt;}
.ws2{word-spacing:-0.479360pt;}
.ws13{word-spacing:-0.394453pt;}
.ws1b{word-spacing:-0.079147pt;}
.ws20{word-spacing:0.000000pt;}
.ws4{word-spacing:0.079787pt;}
.wsd{word-spacing:0.224000pt;}
.wse{word-spacing:0.800000pt;}
.ws8{word-spacing:75.818880pt;}
.ws1f{word-spacing:663.839652pt;}
._4{margin-left:-23.478400pt;}
._18{margin-left:-22.113920pt;}
._17{margin-left:-19.696000pt;}
._7{margin-left:-17.502080pt;}
._8{margin-left:-15.490048pt;}
._6{margin-left:-14.400981pt;}
._11{margin-left:-12.765013pt;}
._f{margin-left:-10.955520pt;}
._9{margin-left:-9.623808pt;}
._13{margin-left:-8.720128pt;}
._5{margin-left:-7.806208pt;}
._a{margin-left:-6.862763pt;}
._b{margin-left:-5.070080pt;}
._0{margin-left:-4.050944pt;}
._3{margin-left:-2.967936pt;}
._2{margin-left:-1.585152pt;}
._1{width:1.161216pt;}
._d{width:2.274304pt;}
._e{width:3.505152pt;}
._15{width:23.185152pt;}
._16{width:25.047211pt;}
._14{width:27.849515pt;}
._1a{width:34.003200pt;}
._1b{width:38.945793pt;}
._19{width:53.208320pt;}
._10{width:54.395264pt;}
._12{width:55.395200pt;}
._1c{width:628.894176pt;}
._c{width:4962.329387pt;}
.fsa{font-size:96.000000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:117.120000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:133.120000pt;}
.fsb{font-size:142.080000pt;}
.fsf{font-size:145.499830pt;}
.fs4{font-size:149.120000pt;}
.fs0{font-size:176.128000pt;}
.fs3{font-size:177.920000pt;}
.fs8{font-size:202.880000pt;}
.fs9{font-size:203.008000pt;}
.fsc{font-size:213.120000pt;}
.fs7{font-size:234.880000pt;}
.fs1{font-size:266.880000pt;}
.fs2{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:31.325176pt;}
.y1{bottom:73.056000pt;}
.yb{bottom:223.653333pt;}
.ya{bottom:262.053333pt;}
.y9{bottom:300.453333pt;}
.yc{bottom:327.226667pt;}
.y8{bottom:338.853333pt;}
.y7{bottom:381.506667pt;}
.y29{bottom:474.493333pt;}
.y28{bottom:503.293333pt;}
.y27{bottom:532.093333pt;}
.y38{bottom:535.586667pt;}
.y26{bottom:560.893333pt;}
.y25{bottom:589.693333pt;}
.y37{bottom:596.386667pt;}
.y24{bottom:618.493333pt;}
.y23{bottom:647.293333pt;}
.y22{bottom:676.093333pt;}
.y21{bottom:704.893333pt;}
.y36{bottom:715.773333pt;}
.y20{bottom:733.693333pt;}
.y35{bottom:753.213333pt;}
.y1f{bottom:762.493333pt;}
.y1e{bottom:791.293333pt;}
.y34{bottom:814.013333pt;}
.y1d{bottom:820.093333pt;}
.y1c{bottom:848.893333pt;}
.y1b{bottom:877.693333pt;}
.y1a{bottom:906.533333pt;}
.y19{bottom:935.333333pt;}
.y33{bottom:938.813333pt;}
.y18{bottom:964.133333pt;}
.y17{bottom:992.933333pt;}
.y32{bottom:999.613333pt;}
.y16{bottom:1021.733333pt;}
.y15{bottom:1050.533333pt;}
.yd{bottom:1133.946667pt;}
.y13{bottom:1183.453333pt;}
.y12{bottom:1305.093333pt;}
.y11{bottom:1365.893333pt;}
.y31{bottom:1437.600000pt;}
.y10{bottom:1487.493333pt;}
.y30{bottom:1498.400000pt;}
.yf{bottom:1548.293333pt;}
.ye{bottom:1609.093333pt;}
.y2f{bottom:1680.800000pt;}
.y14{bottom:1735.133333pt;}
.y2e{bottom:1741.600000pt;}
.y2d{bottom:1924.026667pt;}
.y49{bottom:1930.053333pt;}
.y2c{bottom:1984.826667pt;}
.y48{bottom:1990.853333pt;}
.y47{bottom:2112.453333pt;}
.y4a{bottom:2154.285177pt;}
.y46{bottom:2173.253333pt;}
.y45{bottom:2294.853333pt;}
.y44{bottom:2355.680000pt;}
.y43{bottom:2416.480000pt;}
.y42{bottom:2533.280000pt;}
.y41{bottom:2573.280000pt;}
.y40{bottom:2634.080000pt;}
.y3f{bottom:2755.680000pt;}
.y3e{bottom:2816.480000pt;}
.y3d{bottom:2877.280000pt;}
.y3c{bottom:2994.080000pt;}
.y3b{bottom:3034.080000pt;}
.y3a{bottom:3094.880000pt;}
.y39{bottom:3213.346667pt;}
.y2a{bottom:3215.706667pt;}
.y2b{bottom:3392.453333pt;}
.y6{bottom:3469.186667pt;}
.y5{bottom:3594.853333pt;}
.y4{bottom:3722.853333pt;}
.y3{bottom:3850.853333pt;}
.y2{bottom:4283.680000pt;}
.hb{height:100.125000pt;}
.hd{height:111.472500pt;}
.he{height:122.152500pt;}
.h10{height:130.509369pt;}
.h6{height:133.500000pt;}
.h7{height:138.840000pt;}
.h5{height:155.527500pt;}
.hc{height:158.277500pt;}
.h2{height:183.696000pt;}
.h9{height:211.597500pt;}
.ha{height:211.731000pt;}
.h8{height:244.972500pt;}
.h3{height:278.347500pt;}
.h4{height:445.222500pt;}
.hf{height:979.558127pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w3{width:1208.518202pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x13{left:62.723089pt;}
.x1{left:76.639953pt;}
.x4{left:168.346619pt;}
.x3{left:176.159953pt;}
.xb{left:196.346619pt;}
.x8{left:197.306619pt;}
.x6{left:228.346619pt;}
.x9{left:275.426619pt;}
.x11{left:337.786619pt;}
.x10{left:353.466619pt;}
.xa{left:364.386619pt;}
.xf{left:687.359953pt;}
.x2{left:1621.666619pt;}
.x5{left:1706.013286pt;}
.x12{left:1729.173504pt;}
.xe{left:1820.159953pt;}
.xd{left:1900.413286pt;}
.x7{left:2176.866619pt;}
.xc{left:2212.706619pt;}
}




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