
    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_3974786ae59004ad0430d479.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_6530b3854890fb375803ba34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_b2d3e35086986c0e6672369c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943000;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_59d2bc0a3887bc9d7f6a1d00.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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_7e303efc95035f4ed1cfaa07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023438;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:55.944000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-43.632000px;}
.ws2{word-spacing:-35.616000px;}
.ws0{word-spacing:-30.576000px;}
.ws1{word-spacing:-20.764128px;}
.ws4a{word-spacing:-13.944000px;}
.ws13{word-spacing:-12.768000px;}
.ws1e{word-spacing:-11.256000px;}
.ws5c{word-spacing:-10.752000px;}
.ws53{word-spacing:-10.584000px;}
.ws35{word-spacing:-10.248000px;}
.wsa{word-spacing:-10.080000px;}
.wse{word-spacing:-7.896000px;}
.ws22{word-spacing:-6.888000px;}
.ws2f{word-spacing:-6.720000px;}
.ws1f{word-spacing:-6.216000px;}
.ws32{word-spacing:-6.048000px;}
.ws3a{word-spacing:-5.544000px;}
.wsf{word-spacing:-5.040000px;}
.ws3b{word-spacing:-4.872000px;}
.wsc{word-spacing:-4.704000px;}
.ws10{word-spacing:-4.368000px;}
.ws3c{word-spacing:-4.200000px;}
.ws45{word-spacing:-4.032000px;}
.ws59{word-spacing:-3.864000px;}
.ws3e{word-spacing:-3.360000px;}
.ws2e{word-spacing:-3.192000px;}
.ws41{word-spacing:-2.688000px;}
.ws6{word-spacing:-2.352000px;}
.ws36{word-spacing:-2.016000px;}
.ws42{word-spacing:-1.680000px;}
.ws25{word-spacing:-1.344000px;}
.ws9{word-spacing:-0.168000px;}
.ws4{word-spacing:0.000000px;}
.ws21{word-spacing:0.168000px;}
.ws5d{word-spacing:0.336000px;}
.ws37{word-spacing:0.504000px;}
.ws50{word-spacing:0.672000px;}
.ws2c{word-spacing:1.080000px;}
.ws57{word-spacing:1.176000px;}
.ws46{word-spacing:1.680000px;}
.ws26{word-spacing:2.184000px;}
.ws3f{word-spacing:2.688000px;}
.ws2b{word-spacing:2.760000px;}
.ws1c{word-spacing:3.192000px;}
.ws4d{word-spacing:3.360000px;}
.ws2d{word-spacing:3.528000px;}
.ws33{word-spacing:3.696000px;}
.ws1b{word-spacing:4.032000px;}
.ws1d{word-spacing:4.368000px;}
.ws5b{word-spacing:4.704000px;}
.ws14{word-spacing:5.040000px;}
.ws43{word-spacing:5.544000px;}
.ws44{word-spacing:6.216000px;}
.ws56{word-spacing:6.600000px;}
.ws4c{word-spacing:7.056000px;}
.ws38{word-spacing:8.232000px;}
.wsb{word-spacing:8.400000px;}
.ws39{word-spacing:8.568000px;}
.ws34{word-spacing:8.904000px;}
.ws7{word-spacing:9.072000px;}
.ws12{word-spacing:9.240000px;}
.ws58{word-spacing:9.408000px;}
.ws5a{word-spacing:9.912000px;}
.ws31{word-spacing:10.248000px;}
.ws29{word-spacing:10.752000px;}
.ws51{word-spacing:11.256000px;}
.ws2a{word-spacing:11.592000px;}
.ws5{word-spacing:11.640000px;}
.ws16{word-spacing:11.760000px;}
.ws23{word-spacing:11.928000px;}
.ws4f{word-spacing:12.096000px;}
.ws54{word-spacing:12.432000px;}
.ws27{word-spacing:12.768000px;}
.ws49{word-spacing:13.272000px;}
.ws4b{word-spacing:13.608000px;}
.ws1a{word-spacing:13.944000px;}
.ws48{word-spacing:15.120000px;}
.ws17{word-spacing:16.464000px;}
.ws15{word-spacing:17.304000px;}
.ws52{word-spacing:17.640000px;}
.ws11{word-spacing:17.808000px;}
.ws3d{word-spacing:18.144000px;}
.ws47{word-spacing:18.984000px;}
.ws24{word-spacing:19.656000px;}
.ws8{word-spacing:19.824000px;}
.ws4e{word-spacing:21.840000px;}
.ws20{word-spacing:22.344000px;}
.ws40{word-spacing:23.184000px;}
.wsd{word-spacing:23.520000px;}
.ws19{word-spacing:24.360000px;}
.ws28{word-spacing:24.864000px;}
.ws18{word-spacing:28.392000px;}
.ws30{word-spacing:31.080000px;}
.ws55{word-spacing:40.320000px;}
._12{margin-left:-49.008000px;}
._8{margin-left:-25.082400px;}
._e{margin-left:-19.773600px;}
._b{margin-left:-12.663072px;}
._11{margin-left:-11.124000px;}
._f{margin-left:-9.746400px;}
._9{margin-left:-8.736000px;}
._7{margin-left:-7.329600px;}
._6{margin-left:-5.659200px;}
._a{margin-left:-4.608000px;}
._4{margin-left:-3.504000px;}
._0{margin-left:-2.304000px;}
._1{margin-left:-1.200000px;}
._10{width:1.008000px;}
._2{width:2.040000px;}
._3{width:3.600000px;}
._5{width:5.539200px;}
._c{width:6.871200px;}
._13{width:8.400000px;}
._d{width:16.881600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(21,81,150);}
.fs6{font-size:96.000000px;}
.fs5{font-size:97.944000px;}
.fs2{font-size:120.000000px;}
.fs3{font-size:168.000000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:288.000000px;}
.fs4{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:175.486200px;}
.y27{bottom:229.498200px;}
.y26{bottom:283.510200px;}
.y46{bottom:283.570200px;}
.y7a{bottom:337.510200px;}
.y25{bottom:337.522200px;}
.y59{bottom:337.546200px;}
.y45{bottom:337.582200px;}
.y79{bottom:391.522200px;}
.y24{bottom:391.534200px;}
.y58{bottom:391.558200px;}
.y44{bottom:391.594200px;}
.y78{bottom:445.534200px;}
.y23{bottom:445.546200px;}
.y57{bottom:445.570200px;}
.y43{bottom:445.606200px;}
.y6c{bottom:499.546200px;}
.y22{bottom:499.558200px;}
.y56{bottom:499.582200px;}
.y6b{bottom:553.558200px;}
.y21{bottom:553.570200px;}
.y55{bottom:553.594200px;}
.y42{bottom:553.606200px;}
.y6a{bottom:607.570200px;}
.y20{bottom:607.582200px;}
.y54{bottom:607.606200px;}
.y69{bottom:661.582200px;}
.y1f{bottom:661.594200px;}
.y68{bottom:715.594200px;}
.y1e{bottom:715.606200px;}
.y67{bottom:769.606200px;}
.y53{bottom:823.546200px;}
.y1d{bottom:823.606200px;}
.y52{bottom:877.558200px;}
.y66{bottom:877.606200px;}
.y1c{bottom:931.462200px;}
.y41{bottom:931.546200px;}
.y51{bottom:931.570200px;}
.y1b{bottom:985.474200px;}
.y40{bottom:985.558200px;}
.y50{bottom:985.582200px;}
.y1a{bottom:1039.486200px;}
.y3f{bottom:1039.570200px;}
.y4f{bottom:1039.594200px;}
.y19{bottom:1093.498200px;}
.y3e{bottom:1093.582200px;}
.y4e{bottom:1093.606200px;}
.y18{bottom:1147.510200px;}
.y3d{bottom:1147.594200px;}
.y77{bottom:1165.606200px;}
.y17{bottom:1201.522200px;}
.y3c{bottom:1201.606200px;}
.y16{bottom:1255.534200px;}
.y15{bottom:1309.546200px;}
.y4d{bottom:1309.594200px;}
.y3b{bottom:1309.606200px;}
.y14{bottom:1363.558200px;}
.y4c{bottom:1363.606200px;}
.y3a{bottom:1399.606200px;}
.y13{bottom:1417.570200px;}
.y65{bottom:1417.582200px;}
.y39{bottom:1435.606200px;}
.y12{bottom:1471.582200px;}
.y64{bottom:1471.594200px;}
.y38{bottom:1471.606200px;}
.y11{bottom:1525.594200px;}
.y63{bottom:1525.606200px;}
.y4b{bottom:1579.534200px;}
.y10{bottom:1579.606200px;}
.y4a{bottom:1633.546200px;}
.y62{bottom:1633.606200px;}
.y49{bottom:1687.558200px;}
.yf{bottom:1687.606200px;}
.y61{bottom:1741.534200px;}
.y48{bottom:1741.570200px;}
.y60{bottom:1795.546200px;}
.ye{bottom:1795.582200px;}
.y76{bottom:1842.746250px;}
.y5f{bottom:1849.558200px;}
.yd{bottom:1849.594200px;}
.y75{bottom:1871.546250px;}
.y74{bottom:1900.346250px;}
.y5e{bottom:1903.570200px;}
.yc{bottom:1903.606200px;}
.y73{bottom:1929.146250px;}
.y5d{bottom:1957.582200px;}
.yb{bottom:1957.618200px;}
.y72{bottom:1986.746250px;}
.y5c{bottom:2011.594200px;}
.y47{bottom:2011.606200px;}
.y71{bottom:2015.546250px;}
.ya{bottom:2029.606200px;}
.y5b{bottom:2065.606200px;}
.y9{bottom:2080.006200px;}
.y37{bottom:2119.558200px;}
.y8{bottom:2130.406200px;}
.y36{bottom:2173.570200px;}
.y5a{bottom:2173.606200px;}
.y7{bottom:2180.806200px;}
.y70{bottom:2191.606200px;}
.y35{bottom:2227.582200px;}
.y6f{bottom:2227.606200px;}
.y6{bottom:2231.206200px;}
.y34{bottom:2281.594200px;}
.y5{bottom:2281.606200px;}
.y6e{bottom:2317.606200px;}
.y33{bottom:2335.606200px;}
.y4{bottom:2353.606200px;}
.y3{bottom:2389.606200px;}
.y32{bottom:2443.606200px;}
.y31{bottom:2551.534200px;}
.y30{bottom:2605.546200px;}
.y2f{bottom:2659.558200px;}
.y2e{bottom:2713.570200px;}
.y2d{bottom:2767.582200px;}
.y2c{bottom:2821.594200px;}
.y2b{bottom:2875.606200px;}
.y6d{bottom:2929.606200px;}
.y2{bottom:2983.606200px;}
.y1{bottom:3091.606200px;}
.y2a{bottom:3264.694350px;}
.y29{bottom:3340.606200px;}
.h8{height:77.625000px;}
.h4{height:86.520000px;}
.h5{height:121.128000px;}
.h7{height:126.561624px;}
.h3{height:155.736000px;}
.h2{height:207.648000px;}
.h6{height:311.472000px;}
.h0{height:3575.910000px;}
.h1{height:3576.000000px;}
.w0{width:5740.155000px;}
.w1{width:5740.500000px;}
.x0{left:0.000000px;}
.x1{left:42.519600px;}
.x2{left:1190.551200px;}
.x3{left:2338.582800px;}
.x4{left:3486.614100px;}
.x5{left:4634.645550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:49.728000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-38.784000pt;}
.ws2{word-spacing:-31.658667pt;}
.ws0{word-spacing:-27.178667pt;}
.ws1{word-spacing:-18.457003pt;}
.ws4a{word-spacing:-12.394667pt;}
.ws13{word-spacing:-11.349333pt;}
.ws1e{word-spacing:-10.005333pt;}
.ws5c{word-spacing:-9.557333pt;}
.ws53{word-spacing:-9.408000pt;}
.ws35{word-spacing:-9.109333pt;}
.wsa{word-spacing:-8.960000pt;}
.wse{word-spacing:-7.018667pt;}
.ws22{word-spacing:-6.122667pt;}
.ws2f{word-spacing:-5.973333pt;}
.ws1f{word-spacing:-5.525333pt;}
.ws32{word-spacing:-5.376000pt;}
.ws3a{word-spacing:-4.928000pt;}
.wsf{word-spacing:-4.480000pt;}
.ws3b{word-spacing:-4.330667pt;}
.wsc{word-spacing:-4.181333pt;}
.ws10{word-spacing:-3.882667pt;}
.ws3c{word-spacing:-3.733333pt;}
.ws45{word-spacing:-3.584000pt;}
.ws59{word-spacing:-3.434667pt;}
.ws3e{word-spacing:-2.986667pt;}
.ws2e{word-spacing:-2.837333pt;}
.ws41{word-spacing:-2.389333pt;}
.ws6{word-spacing:-2.090667pt;}
.ws36{word-spacing:-1.792000pt;}
.ws42{word-spacing:-1.493333pt;}
.ws25{word-spacing:-1.194667pt;}
.ws9{word-spacing:-0.149333pt;}
.ws4{word-spacing:0.000000pt;}
.ws21{word-spacing:0.149333pt;}
.ws5d{word-spacing:0.298667pt;}
.ws37{word-spacing:0.448000pt;}
.ws50{word-spacing:0.597333pt;}
.ws2c{word-spacing:0.960000pt;}
.ws57{word-spacing:1.045333pt;}
.ws46{word-spacing:1.493333pt;}
.ws26{word-spacing:1.941333pt;}
.ws3f{word-spacing:2.389333pt;}
.ws2b{word-spacing:2.453333pt;}
.ws1c{word-spacing:2.837333pt;}
.ws4d{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.136000pt;}
.ws33{word-spacing:3.285333pt;}
.ws1b{word-spacing:3.584000pt;}
.ws1d{word-spacing:3.882667pt;}
.ws5b{word-spacing:4.181333pt;}
.ws14{word-spacing:4.480000pt;}
.ws43{word-spacing:4.928000pt;}
.ws44{word-spacing:5.525333pt;}
.ws56{word-spacing:5.866667pt;}
.ws4c{word-spacing:6.272000pt;}
.ws38{word-spacing:7.317333pt;}
.wsb{word-spacing:7.466667pt;}
.ws39{word-spacing:7.616000pt;}
.ws34{word-spacing:7.914667pt;}
.ws7{word-spacing:8.064000pt;}
.ws12{word-spacing:8.213333pt;}
.ws58{word-spacing:8.362667pt;}
.ws5a{word-spacing:8.810667pt;}
.ws31{word-spacing:9.109333pt;}
.ws29{word-spacing:9.557333pt;}
.ws51{word-spacing:10.005333pt;}
.ws2a{word-spacing:10.304000pt;}
.ws5{word-spacing:10.346667pt;}
.ws16{word-spacing:10.453333pt;}
.ws23{word-spacing:10.602667pt;}
.ws4f{word-spacing:10.752000pt;}
.ws54{word-spacing:11.050667pt;}
.ws27{word-spacing:11.349333pt;}
.ws49{word-spacing:11.797333pt;}
.ws4b{word-spacing:12.096000pt;}
.ws1a{word-spacing:12.394667pt;}
.ws48{word-spacing:13.440000pt;}
.ws17{word-spacing:14.634667pt;}
.ws15{word-spacing:15.381333pt;}
.ws52{word-spacing:15.680000pt;}
.ws11{word-spacing:15.829333pt;}
.ws3d{word-spacing:16.128000pt;}
.ws47{word-spacing:16.874667pt;}
.ws24{word-spacing:17.472000pt;}
.ws8{word-spacing:17.621333pt;}
.ws4e{word-spacing:19.413333pt;}
.ws20{word-spacing:19.861333pt;}
.ws40{word-spacing:20.608000pt;}
.wsd{word-spacing:20.906667pt;}
.ws19{word-spacing:21.653333pt;}
.ws28{word-spacing:22.101333pt;}
.ws18{word-spacing:25.237333pt;}
.ws30{word-spacing:27.626667pt;}
.ws55{word-spacing:35.840000pt;}
._12{margin-left:-43.562667pt;}
._8{margin-left:-22.295467pt;}
._e{margin-left:-17.576533pt;}
._b{margin-left:-11.256064pt;}
._11{margin-left:-9.888000pt;}
._f{margin-left:-8.663467pt;}
._9{margin-left:-7.765333pt;}
._7{margin-left:-6.515200pt;}
._6{margin-left:-5.030400pt;}
._a{margin-left:-4.096000pt;}
._4{margin-left:-3.114667pt;}
._0{margin-left:-2.048000pt;}
._1{margin-left:-1.066667pt;}
._10{width:0.896000pt;}
._2{width:1.813333pt;}
._3{width:3.200000pt;}
._5{width:4.923733pt;}
._c{width:6.107733pt;}
._13{width:7.466667pt;}
._d{width:15.005867pt;}
.fs6{font-size:85.333333pt;}
.fs5{font-size:87.061333pt;}
.fs2{font-size:106.666667pt;}
.fs3{font-size:149.333333pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:256.000000pt;}
.fs4{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:155.987733pt;}
.y27{bottom:203.998400pt;}
.y26{bottom:252.009067pt;}
.y46{bottom:252.062400pt;}
.y7a{bottom:300.009067pt;}
.y25{bottom:300.019733pt;}
.y59{bottom:300.041067pt;}
.y45{bottom:300.073067pt;}
.y79{bottom:348.019733pt;}
.y24{bottom:348.030400pt;}
.y58{bottom:348.051733pt;}
.y44{bottom:348.083733pt;}
.y78{bottom:396.030400pt;}
.y23{bottom:396.041067pt;}
.y57{bottom:396.062400pt;}
.y43{bottom:396.094400pt;}
.y6c{bottom:444.041067pt;}
.y22{bottom:444.051733pt;}
.y56{bottom:444.073067pt;}
.y6b{bottom:492.051733pt;}
.y21{bottom:492.062400pt;}
.y55{bottom:492.083733pt;}
.y42{bottom:492.094400pt;}
.y6a{bottom:540.062400pt;}
.y20{bottom:540.073067pt;}
.y54{bottom:540.094400pt;}
.y69{bottom:588.073067pt;}
.y1f{bottom:588.083733pt;}
.y68{bottom:636.083733pt;}
.y1e{bottom:636.094400pt;}
.y67{bottom:684.094400pt;}
.y53{bottom:732.041067pt;}
.y1d{bottom:732.094400pt;}
.y52{bottom:780.051733pt;}
.y66{bottom:780.094400pt;}
.y1c{bottom:827.966400pt;}
.y41{bottom:828.041067pt;}
.y51{bottom:828.062400pt;}
.y1b{bottom:875.977067pt;}
.y40{bottom:876.051733pt;}
.y50{bottom:876.073067pt;}
.y1a{bottom:923.987733pt;}
.y3f{bottom:924.062400pt;}
.y4f{bottom:924.083733pt;}
.y19{bottom:971.998400pt;}
.y3e{bottom:972.073067pt;}
.y4e{bottom:972.094400pt;}
.y18{bottom:1020.009067pt;}
.y3d{bottom:1020.083733pt;}
.y77{bottom:1036.094400pt;}
.y17{bottom:1068.019733pt;}
.y3c{bottom:1068.094400pt;}
.y16{bottom:1116.030400pt;}
.y15{bottom:1164.041067pt;}
.y4d{bottom:1164.083733pt;}
.y3b{bottom:1164.094400pt;}
.y14{bottom:1212.051733pt;}
.y4c{bottom:1212.094400pt;}
.y3a{bottom:1244.094400pt;}
.y13{bottom:1260.062400pt;}
.y65{bottom:1260.073067pt;}
.y39{bottom:1276.094400pt;}
.y12{bottom:1308.073067pt;}
.y64{bottom:1308.083733pt;}
.y38{bottom:1308.094400pt;}
.y11{bottom:1356.083733pt;}
.y63{bottom:1356.094400pt;}
.y4b{bottom:1404.030400pt;}
.y10{bottom:1404.094400pt;}
.y4a{bottom:1452.041067pt;}
.y62{bottom:1452.094400pt;}
.y49{bottom:1500.051733pt;}
.yf{bottom:1500.094400pt;}
.y61{bottom:1548.030400pt;}
.y48{bottom:1548.062400pt;}
.y60{bottom:1596.041067pt;}
.ye{bottom:1596.073067pt;}
.y76{bottom:1637.996667pt;}
.y5f{bottom:1644.051733pt;}
.yd{bottom:1644.083733pt;}
.y75{bottom:1663.596667pt;}
.y74{bottom:1689.196667pt;}
.y5e{bottom:1692.062400pt;}
.yc{bottom:1692.094400pt;}
.y73{bottom:1714.796667pt;}
.y5d{bottom:1740.073067pt;}
.yb{bottom:1740.105067pt;}
.y72{bottom:1765.996667pt;}
.y5c{bottom:1788.083733pt;}
.y47{bottom:1788.094400pt;}
.y71{bottom:1791.596667pt;}
.ya{bottom:1804.094400pt;}
.y5b{bottom:1836.094400pt;}
.y9{bottom:1848.894400pt;}
.y37{bottom:1884.051733pt;}
.y8{bottom:1893.694400pt;}
.y36{bottom:1932.062400pt;}
.y5a{bottom:1932.094400pt;}
.y7{bottom:1938.494400pt;}
.y70{bottom:1948.094400pt;}
.y35{bottom:1980.073067pt;}
.y6f{bottom:1980.094400pt;}
.y6{bottom:1983.294400pt;}
.y34{bottom:2028.083733pt;}
.y5{bottom:2028.094400pt;}
.y6e{bottom:2060.094400pt;}
.y33{bottom:2076.094400pt;}
.y4{bottom:2092.094400pt;}
.y3{bottom:2124.094400pt;}
.y32{bottom:2172.094400pt;}
.y31{bottom:2268.030400pt;}
.y30{bottom:2316.041067pt;}
.y2f{bottom:2364.051733pt;}
.y2e{bottom:2412.062400pt;}
.y2d{bottom:2460.073067pt;}
.y2c{bottom:2508.083733pt;}
.y2b{bottom:2556.094400pt;}
.y6d{bottom:2604.094400pt;}
.y2{bottom:2652.094400pt;}
.y1{bottom:2748.094400pt;}
.y2a{bottom:2901.950533pt;}
.y29{bottom:2969.427733pt;}
.h8{height:69.000000pt;}
.h4{height:76.906667pt;}
.h5{height:107.669333pt;}
.h7{height:112.499221pt;}
.h3{height:138.432000pt;}
.h2{height:184.576000pt;}
.h6{height:276.864000pt;}
.h0{height:3178.586667pt;}
.h1{height:3178.666667pt;}
.w0{width:5102.360000pt;}
.w1{width:5102.666667pt;}
.x0{left:0.000000pt;}
.x1{left:37.795200pt;}
.x2{left:1058.267733pt;}
.x3{left:2078.740267pt;}
.x4{left:3099.212533pt;}
.x5{left:4119.684933pt;}
}




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