
    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_46ddfd7c0e6e7e3e94a9abaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138000;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_e9f8006a7ceb741029145cb5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_5ca8835ef531d42f02e8497d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_bdd9c98684765263830765a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.141000;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_f31c0f9937aca18aea515fff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131000;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_7d266e92d262294cab18e919.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.220881;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_88c2813b342e6c9c9b0d9662.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_7fc9f75c7ded8b9ada6333f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.221591;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:ffa;src:url('chunks/assets/font_e4cb556f74a8465d2c1f1f42.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.221591;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.v2{vertical-align:92.280000px;}
.v1{vertical-align:167.028000px;}
.v3{vertical-align:184.440000px;}
.ls1{letter-spacing:-3.330000px;}
.ls4{letter-spacing:-0.134400px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:100.689600px;}
.ls9{letter-spacing:100.776000px;}
.ls8{letter-spacing:140.361600px;}
.ls7{letter-spacing:140.412000px;}
.ls6{letter-spacing:148.677600px;}
.ls3{letter-spacing:148.689600px;}
.ls5{letter-spacing:148.728000px;}
.ls2{letter-spacing:148.740000px;}
.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;}
}
.wsd{word-spacing:-99.000000px;}
.ws10{word-spacing:-97.664544px;}
.ws6{word-spacing:-54.036000px;}
.wsb{word-spacing:-54.019440px;}
.ws8{word-spacing:-50.145408px;}
.wse{word-spacing:-50.112000px;}
.wsf{word-spacing:-47.140560px;}
.ws11{word-spacing:-44.633088px;}
.ws7{word-spacing:-41.976000px;}
.ws4{word-spacing:-41.940000px;}
.ws3{word-spacing:-40.536000px;}
.ws0{word-spacing:-40.500000px;}
.wsa{word-spacing:-37.913760px;}
.wsc{word-spacing:-1.448640px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:3.167856px;}
.ws12{word-spacing:6.279744px;}
.ws15{word-spacing:6.951360px;}
.ws13{word-spacing:8.814960px;}
.ws14{word-spacing:9.129600px;}
.ws9{word-spacing:843.603840px;}
.ws2{word-spacing:2472.302976px;}
._8{margin-left:-6.912000px;}
._9{margin-left:-4.753584px;}
._1{margin-left:-3.722400px;}
._0{margin-left:-1.782000px;}
._2{width:1.174320px;}
._7{width:52.896480px;}
._3{width:671.841408px;}
._6{width:723.091008px;}
._4{width:736.326480px;}
._5{width:773.890560px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,254,254);}
.fc3{color:rgb(167,0,80);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:108.144000px;}
.fs0{font-size:162.000000px;}
.fs1{font-size:162.144000px;}
.fs6{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fsf{font-size:192.240000px;}
.fs10{font-size:192.384000px;}
.fs9{font-size:216.000000px;}
.fsa{font-size:216.144000px;}
.fs5{font-size:264.384000px;}
.fs8{font-size:288.000000px;}
.fs4{font-size:300.240000px;}
.fs3{font-size:300.384000px;}
.fs7{font-size:396.000000px;}
.fsc{font-size:396.144000px;}
.fs2{font-size:432.000000px;}
.fse{font-size:432.144000px;}
.fs11{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:97.488000px;}
.y8{bottom:98.280000px;}
.y7{bottom:99.036000px;}
.y2{bottom:115.488000px;}
.y4a{bottom:139.248000px;}
.y1{bottom:157.245000px;}
.y6{bottom:158.295000px;}
.y20{bottom:201.315000px;}
.yd{bottom:211.710000px;}
.yf{bottom:226.110000px;}
.y1f{bottom:258.915000px;}
.yc{bottom:266.610000px;}
.ye{bottom:276.510000px;}
.yb{bottom:331.410000px;}
.y49{bottom:333.825000px;}
.y1e{bottom:343.545000px;}
.y28{bottom:360.930000px;}
.y48{bottom:391.425000px;}
.y2f{bottom:423.570000px;}
.y1d{bottom:428.145000px;}
.y27{bottom:445.530000px;}
.y37{bottom:450.390000px;}
.y47{bottom:476.070000px;}
.y1c{bottom:485.745000px;}
.y36{bottom:500.790000px;}
.y2e{bottom:515.415000px;}
.y26{bottom:530.175000px;}
.y1b{bottom:543.345000px;}
.y3f{bottom:559.515000px;}
.y46{bottom:560.670000px;}
.y5{bottom:581.730000px;}
.y14{bottom:586.050000px;}
.y2d{bottom:607.215000px;}
.y13{bottom:609.090000px;}
.y25{bottom:614.775000px;}
.y45{bottom:618.270000px;}
.y1a{bottom:627.990000px;}
.y3e{bottom:644.145000px;}
.y35{bottom:652.755000px;}
.y4{bottom:671.760000px;}
.y2c{bottom:672.015000px;}
.y19{bottom:685.590000px;}
.y24{bottom:699.375000px;}
.y44{bottom:702.900000px;}
.y34{bottom:703.155000px;}
.y3d{bottom:728.745000px;}
.y33{bottom:753.555000px;}
.y4c{bottom:758.235000px;}
.y43{bottom:760.500000px;}
.y2b{bottom:763.845000px;}
.y18{bottom:770.190000px;}
.y3{bottom:773.820000px;}
.y23{bottom:784.005000px;}
.y32{bottom:803.985000px;}
.y16{bottom:810.150000px;}
.y3c{bottom:813.345000px;}
.y11{bottom:827.790000px;}
.y42{bottom:845.100000px;}
.y2a{bottom:855.645000px;}
.y22{bottom:868.605000px;}
.y3b{bottom:897.990000px;}
.y41{bottom:902.730000px;}
.y17{bottom:912.420000px;}
.y15{bottom:926.790000px;}
.y39{bottom:935.070000px;}
.y29{bottom:947.445000px;}
.y21{bottom:953.205000px;}
.y3a{bottom:982.590000px;}
.y40{bottom:987.330000px;}
.y10{bottom:1006.740000px;}
.ya{bottom:1029.240000px;}
.y38{bottom:1051.710000px;}
.y30{bottom:1107.180000px;}
.y12{bottom:1122.120000px;}
.y9{bottom:1125.540000px;}
.y31{bottom:1129.755000px;}
.h2{height:145.314000px;}
.h4{height:145.443168px;}
.h9{height:150.984000px;}
.he{height:151.113600px;}
.h1a{height:160.134545px;}
.h19{height:160.272000px;}
.h13{height:166.858945px;}
.h16{height:183.501818px;}
.h17{height:183.639273px;}
.hc{height:192.240000px;}
.hd{height:192.368160px;}
.h18{height:206.181818px;}
.h10{height:206.319273px;}
.h8{height:237.945600px;}
.hb{height:257.760000px;}
.h11{height:259.282172px;}
.h7{height:268.714800px;}
.h6{height:268.843680px;}
.h3{height:312.342000px;}
.h12{height:351.442172px;}
.ha{height:355.212000px;}
.hf{height:355.341168px;}
.h5{height:387.504000px;}
.h14{height:388.800000px;}
.h15{height:388.929600px;}
.h1b{height:429.679688px;}
.h1c{height:429.822914px;}
.h1d{height:473.400720px;}
.h1{height:1335.750000px;}
.h0{height:1335.780000px;}
.w1{width:2374.500000px;}
.w2{width:2374.559965px;}
.w0{width:2374.560000px;}
.x0{left:0.000000px;}
.x14{left:94.751965px;}
.x7{left:112.103965px;}
.x3{left:115.991965px;}
.x12{left:121.571965px;}
.x9{left:123.011965px;}
.x6{left:128.015965px;}
.x16{left:132.911965px;}
.xd{left:151.304965px;}
.xc{left:154.904965px;}
.x11{left:166.109965px;}
.x13{left:175.574965px;}
.x15{left:177.914965px;}
.x17{left:186.914965px;}
.x10{left:229.289965px;}
.x8{left:681.554965px;}
.x5{left:1212.809965px;}
.xb{left:1240.049965px;}
.x1{left:1243.904965px;}
.x4{left:1458.719965px;}
.xe{left:1673.564965px;}
.xa{left:1796.294965px;}
.xf{left:2024.789965px;}
.x2{left:2066.969965px;}
.x18{left:2084.969965px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:82.026667pt;}
.v1{vertical-align:148.469333pt;}
.v3{vertical-align:163.946667pt;}
.ls1{letter-spacing:-2.960000pt;}
.ls4{letter-spacing:-0.119467pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:89.501867pt;}
.ls9{letter-spacing:89.578667pt;}
.ls8{letter-spacing:124.765867pt;}
.ls7{letter-spacing:124.810667pt;}
.ls6{letter-spacing:132.157867pt;}
.ls3{letter-spacing:132.168533pt;}
.ls5{letter-spacing:132.202667pt;}
.ls2{letter-spacing:132.213333pt;}
.wsd{word-spacing:-88.000000pt;}
.ws10{word-spacing:-86.812928pt;}
.ws6{word-spacing:-48.032000pt;}
.wsb{word-spacing:-48.017280pt;}
.ws8{word-spacing:-44.573696pt;}
.wse{word-spacing:-44.544000pt;}
.wsf{word-spacing:-41.902720pt;}
.ws11{word-spacing:-39.673856pt;}
.ws7{word-spacing:-37.312000pt;}
.ws4{word-spacing:-37.280000pt;}
.ws3{word-spacing:-36.032000pt;}
.ws0{word-spacing:-36.000000pt;}
.wsa{word-spacing:-33.701120pt;}
.wsc{word-spacing:-1.287680pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:2.815872pt;}
.ws12{word-spacing:5.581995pt;}
.ws15{word-spacing:6.178987pt;}
.ws13{word-spacing:7.835520pt;}
.ws14{word-spacing:8.115200pt;}
.ws9{word-spacing:749.870080pt;}
.ws2{word-spacing:2197.602645pt;}
._8{margin-left:-6.144000pt;}
._9{margin-left:-4.225408pt;}
._1{margin-left:-3.308800pt;}
._0{margin-left:-1.584000pt;}
._2{width:1.043840pt;}
._7{width:47.019093pt;}
._3{width:597.192363pt;}
._6{width:642.747563pt;}
._4{width:654.512427pt;}
._5{width:687.902720pt;}
.fsd{font-size:96.128000pt;}
.fs0{font-size:144.000000pt;}
.fs1{font-size:144.128000pt;}
.fs6{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fsf{font-size:170.880000pt;}
.fs10{font-size:171.008000pt;}
.fs9{font-size:192.000000pt;}
.fsa{font-size:192.128000pt;}
.fs5{font-size:235.008000pt;}
.fs8{font-size:256.000000pt;}
.fs4{font-size:266.880000pt;}
.fs3{font-size:267.008000pt;}
.fs7{font-size:352.000000pt;}
.fsc{font-size:352.128000pt;}
.fs2{font-size:384.000000pt;}
.fse{font-size:384.128000pt;}
.fs11{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:86.656000pt;}
.y8{bottom:87.360000pt;}
.y7{bottom:88.032000pt;}
.y2{bottom:102.656000pt;}
.y4a{bottom:123.776000pt;}
.y1{bottom:139.773333pt;}
.y6{bottom:140.706667pt;}
.y20{bottom:178.946667pt;}
.yd{bottom:188.186667pt;}
.yf{bottom:200.986667pt;}
.y1f{bottom:230.146667pt;}
.yc{bottom:236.986667pt;}
.ye{bottom:245.786667pt;}
.yb{bottom:294.586667pt;}
.y49{bottom:296.733333pt;}
.y1e{bottom:305.373333pt;}
.y28{bottom:320.826667pt;}
.y48{bottom:347.933333pt;}
.y2f{bottom:376.506667pt;}
.y1d{bottom:380.573333pt;}
.y27{bottom:396.026667pt;}
.y37{bottom:400.346667pt;}
.y47{bottom:423.173333pt;}
.y1c{bottom:431.773333pt;}
.y36{bottom:445.146667pt;}
.y2e{bottom:458.146667pt;}
.y26{bottom:471.266667pt;}
.y1b{bottom:482.973333pt;}
.y3f{bottom:497.346667pt;}
.y46{bottom:498.373333pt;}
.y5{bottom:517.093333pt;}
.y14{bottom:520.933333pt;}
.y2d{bottom:539.746667pt;}
.y13{bottom:541.413333pt;}
.y25{bottom:546.466667pt;}
.y45{bottom:549.573333pt;}
.y1a{bottom:558.213333pt;}
.y3e{bottom:572.573333pt;}
.y35{bottom:580.226667pt;}
.y4{bottom:597.120000pt;}
.y2c{bottom:597.346667pt;}
.y19{bottom:609.413333pt;}
.y24{bottom:621.666667pt;}
.y44{bottom:624.800000pt;}
.y34{bottom:625.026667pt;}
.y3d{bottom:647.773333pt;}
.y33{bottom:669.826667pt;}
.y4c{bottom:673.986667pt;}
.y43{bottom:676.000000pt;}
.y2b{bottom:678.973333pt;}
.y18{bottom:684.613333pt;}
.y3{bottom:687.840000pt;}
.y23{bottom:696.893333pt;}
.y32{bottom:714.653333pt;}
.y16{bottom:720.133333pt;}
.y3c{bottom:722.973333pt;}
.y11{bottom:735.813333pt;}
.y42{bottom:751.200000pt;}
.y2a{bottom:760.573333pt;}
.y22{bottom:772.093333pt;}
.y3b{bottom:798.213333pt;}
.y41{bottom:802.426667pt;}
.y17{bottom:811.040000pt;}
.y15{bottom:823.813333pt;}
.y39{bottom:831.173333pt;}
.y29{bottom:842.173333pt;}
.y21{bottom:847.293333pt;}
.y3a{bottom:873.413333pt;}
.y40{bottom:877.626667pt;}
.y10{bottom:894.880000pt;}
.ya{bottom:914.880000pt;}
.y38{bottom:934.853333pt;}
.y30{bottom:984.160000pt;}
.y12{bottom:997.440000pt;}
.y9{bottom:1000.480000pt;}
.y31{bottom:1004.226667pt;}
.h2{height:129.168000pt;}
.h4{height:129.282816pt;}
.h9{height:134.208000pt;}
.he{height:134.323200pt;}
.h1a{height:142.341818pt;}
.h19{height:142.464000pt;}
.h13{height:148.319063pt;}
.h16{height:163.112727pt;}
.h17{height:163.234909pt;}
.hc{height:170.880000pt;}
.hd{height:170.993920pt;}
.h18{height:183.272727pt;}
.h10{height:183.394909pt;}
.h8{height:211.507200pt;}
.hb{height:229.120000pt;}
.h11{height:230.473042pt;}
.h7{height:238.857600pt;}
.h6{height:238.972160pt;}
.h3{height:277.637333pt;}
.h12{height:312.393042pt;}
.ha{height:315.744000pt;}
.hf{height:315.858816pt;}
.h5{height:344.448000pt;}
.h14{height:345.600000pt;}
.h15{height:345.715200pt;}
.h1b{height:381.937500pt;}
.h1c{height:382.064812pt;}
.h1d{height:420.800640pt;}
.h1{height:1187.333333pt;}
.h0{height:1187.360000pt;}
.w1{width:2110.666667pt;}
.w2{width:2110.719969pt;}
.w0{width:2110.720000pt;}
.x0{left:0.000000pt;}
.x14{left:84.223969pt;}
.x7{left:99.647969pt;}
.x3{left:103.103969pt;}
.x12{left:108.063969pt;}
.x9{left:109.343969pt;}
.x6{left:113.791969pt;}
.x16{left:118.143969pt;}
.xd{left:134.493302pt;}
.xc{left:137.693302pt;}
.x11{left:147.653302pt;}
.x13{left:156.066635pt;}
.x15{left:158.146635pt;}
.x17{left:166.146635pt;}
.x10{left:203.813302pt;}
.x8{left:605.826635pt;}
.x5{left:1078.053302pt;}
.xb{left:1102.266635pt;}
.x1{left:1105.693302pt;}
.x4{left:1296.639969pt;}
.xe{left:1487.613302pt;}
.xa{left:1596.706635pt;}
.xf{left:1799.813302pt;}
.x2{left:1837.306635pt;}
.x18{left:1853.306635pt;}
}




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