
    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_44f7900b49da5dc4de82e02e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_263395892e12168d36983b7a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_fc99382eb55dd1cb8f145fd3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064453;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_a68f72b737cad07813e520a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_d3d35d21a19a14feb1c40178.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:18.000000px;}
.ls1{letter-spacing:109.397700px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws1f{word-spacing:-38.791800px;}
.ws27{word-spacing:-38.660400px;}
.ws56{word-spacing:-38.659200px;}
.ws4b{word-spacing:-38.657400px;}
.ws36{word-spacing:-38.655600px;}
.ws47{word-spacing:-38.653200px;}
.ws37{word-spacing:-38.652000px;}
.ws3e{word-spacing:-38.649600px;}
.ws29{word-spacing:-38.447700px;}
.ws4{word-spacing:-38.438100px;}
.ws12{word-spacing:-38.434500px;}
.ws34{word-spacing:-38.416800px;}
.ws1e{word-spacing:-38.371500px;}
.ws58{word-spacing:-38.370000px;}
.ws30{word-spacing:-38.369400px;}
.ws5{word-spacing:-38.361900px;}
.ws3a{word-spacing:-38.360700px;}
.ws11{word-spacing:-38.342700px;}
.ws39{word-spacing:-38.166000px;}
.ws2f{word-spacing:-38.160000px;}
.ws3{word-spacing:-38.155500px;}
.ws3f{word-spacing:-38.154000px;}
.ws44{word-spacing:-38.150100px;}
.ws28{word-spacing:-38.149200px;}
.ws35{word-spacing:-38.145600px;}
.ws57{word-spacing:-38.136600px;}
.ws2{word-spacing:-38.081700px;}
.ws67{word-spacing:-38.070000px;}
.ws0{word-spacing:-37.944000px;}
.ws61{word-spacing:-37.942800px;}
.ws43{word-spacing:-37.936800px;}
.ws3c{word-spacing:-37.935000px;}
.ws3d{word-spacing:-37.933800px;}
.ws69{word-spacing:-37.930800px;}
.ws60{word-spacing:-37.927800px;}
.ws38{word-spacing:-37.919100px;}
.wse{word-spacing:-37.712400px;}
.ws51{word-spacing:-37.708200px;}
.ws65{word-spacing:-37.224600px;}
.wsc{word-spacing:-36.703800px;}
.ws6b{word-spacing:-36.490500px;}
.ws19{word-spacing:-35.269200px;}
.ws64{word-spacing:-35.056800px;}
.ws9{word-spacing:-35.049600px;}
.ws63{word-spacing:-35.046000px;}
.ws4a{word-spacing:-35.036400px;}
.ws68{word-spacing:-34.473600px;}
.ws5f{word-spacing:-34.048500px;}
.ws1a{word-spacing:-33.624000px;}
.ws23{word-spacing:-33.120000px;}
.ws53{word-spacing:-32.885100px;}
.ws32{word-spacing:-32.684100px;}
.ws40{word-spacing:-31.236000px;}
.ws22{word-spacing:-29.520000px;}
.wsb{word-spacing:-29.505600px;}
.ws5a{word-spacing:-29.310000px;}
.ws41{word-spacing:-29.304000px;}
.ws59{word-spacing:-29.303100px;}
.ws5b{word-spacing:-29.298000px;}
.wsa{word-spacing:-29.282400px;}
.ws42{word-spacing:-29.082600px;}
.ws24{word-spacing:-28.560600px;}
.ws46{word-spacing:-28.080600px;}
.ws66{word-spacing:-27.986400px;}
.ws25{word-spacing:-27.142200px;}
.ws50{word-spacing:-25.920000px;}
.ws6a{word-spacing:-25.854000px;}
.ws6f{word-spacing:-25.702800px;}
.ws4e{word-spacing:-25.689600px;}
.ws6e{word-spacing:-25.121700px;}
.ws3b{word-spacing:-24.249600px;}
.ws1c{word-spacing:-23.034000px;}
.ws1d{word-spacing:-22.824000px;}
.ws2c{word-spacing:-22.815000px;}
.ws5c{word-spacing:-21.511800px;}
.ws10{word-spacing:-20.651100px;}
.wsf{word-spacing:-20.151900px;}
.ws4c{word-spacing:-19.925100px;}
.ws54{word-spacing:-19.213200px;}
.ws45{word-spacing:-18.491400px;}
.ws16{word-spacing:-17.991000px;}
.ws4f{word-spacing:-17.778600px;}
.ws2d{word-spacing:-16.335000px;}
.ws2e{word-spacing:-16.331400px;}
.ws18{word-spacing:-16.255800px;}
.ws52{word-spacing:-15.395400px;}
.ws8{word-spacing:-15.114600px;}
.ws7{word-spacing:-14.406000px;}
.ws26{word-spacing:-14.178600px;}
.ws21{word-spacing:-12.671700px;}
.ws20{word-spacing:-12.004200px;}
.ws4d{word-spacing:-11.298600px;}
.ws17{word-spacing:-10.290000px;}
.ws31{word-spacing:-9.838800px;}
.ws2b{word-spacing:-7.194600px;}
.ws48{word-spacing:-6.250200px;}
.ws55{word-spacing:-4.099200px;}
.ws2a{word-spacing:-3.880800px;}
.ws1b{word-spacing:-1.368000px;}
.wsd{word-spacing:-0.499200px;}
.ws49{word-spacing:0.000000px;}
.ws5e{word-spacing:4.536300px;}
.ws33{word-spacing:7.423200px;}
.ws62{word-spacing:18.074100px;}
.ws14{word-spacing:23.544000px;}
.ws13{word-spacing:23.976000px;}
.ws6d{word-spacing:25.422300px;}
.ws6c{word-spacing:26.856000px;}
.ws15{word-spacing:31.543200px;}
.ws5d{word-spacing:87.926700px;}
.ws1{word-spacing:1037.484900px;}
._3{margin-left:-1.705500px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._7{width:20.575800px;}
._e{width:21.805200px;}
._4{width:22.809600px;}
._11{width:24.025500px;}
._17{width:25.069200px;}
._1a{width:26.295600px;}
._6{width:27.798000px;}
._5{width:29.113500px;}
._19{width:30.512700px;}
._1b{width:31.790700px;}
._15{width:34.257000px;}
._1f{width:35.490000px;}
._9{width:36.662700px;}
._1c{width:37.771200px;}
._b{width:39.312000px;}
._d{width:40.968000px;}
._2{width:42.198000px;}
._12{width:43.338000px;}
._10{width:45.123900px;}
._c{width:46.728000px;}
._16{width:47.736000px;}
._14{width:50.754600px;}
._1d{width:52.981200px;}
._13{width:54.064800px;}
._f{width:55.584000px;}
._8{width:56.589600px;}
._20{width:61.703400px;}
._21{width:62.748900px;}
._18{width:64.641600px;}
._22{width:75.085500px;}
._1e{width:82.800000px;}
._a{width:88.560000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y29{bottom:120.675000px;}
.y4d{bottom:141.375000px;}
.y4c{bottom:162.075000px;}
.y28{bottom:162.436500px;}
.y4b{bottom:182.775000px;}
.y4a{bottom:203.475000px;}
.y27{bottom:204.015000px;}
.y49{bottom:224.175000px;}
.y26{bottom:224.715000px;}
.y48{bottom:244.875000px;}
.y25{bottom:245.415000px;}
.y6b{bottom:246.675000px;}
.y24{bottom:266.115000px;}
.y6a{bottom:267.375000px;}
.y47{bottom:286.636500px;}
.y23{bottom:286.815000px;}
.y69{bottom:288.075000px;}
.y22{bottom:307.515000px;}
.y68{bottom:308.775000px;}
.y21{bottom:328.215000px;}
.y46{bottom:328.396500px;}
.y67{bottom:329.475000px;}
.y45{bottom:349.096500px;}
.y66{bottom:350.175000px;}
.y44{bottom:369.795000px;}
.y20{bottom:369.975000px;}
.y65{bottom:370.875000px;}
.y43{bottom:390.496500px;}
.y1f{bottom:390.675000px;}
.y64{bottom:391.575000px;}
.y63{bottom:412.275000px;}
.y42{bottom:432.075000px;}
.y1e{bottom:432.436500px;}
.y62{bottom:432.975000px;}
.y1d{bottom:453.136500px;}
.y61{bottom:453.675000px;}
.y41{bottom:473.836500px;}
.y60{bottom:474.375000px;}
.y40{bottom:494.536500px;}
.y1c{bottom:494.715000px;}
.y5f{bottom:495.075000px;}
.y3f{bottom:515.236500px;}
.y1b{bottom:515.415000px;}
.y5e{bottom:515.775000px;}
.y3e{bottom:535.936500px;}
.y1a{bottom:536.115000px;}
.y5d{bottom:536.475000px;}
.y19{bottom:556.815000px;}
.y5c{bottom:557.175000px;}
.y18{bottom:577.515000px;}
.y3d{bottom:577.695000px;}
.y5b{bottom:577.875000px;}
.y17{bottom:598.215000px;}
.y3c{bottom:598.396500px;}
.y5a{bottom:598.575000px;}
.y16{bottom:618.915000px;}
.y59{bottom:619.275000px;}
.y15{bottom:639.615000px;}
.y3b{bottom:639.975000px;}
.y14{bottom:660.315000px;}
.y58{bottom:660.675000px;}
.y3a{bottom:681.736500px;}
.y13{bottom:702.075000px;}
.y39{bottom:702.436500px;}
.y12{bottom:722.775000px;}
.y38{bottom:723.136500px;}
.y37{bottom:743.836500px;}
.y11{bottom:764.536500px;}
.y10{bottom:785.236500px;}
.y36{bottom:785.596500px;}
.y57{bottom:785.775000px;}
.y56{bottom:806.475000px;}
.yf{bottom:826.815000px;}
.y35{bottom:827.175000px;}
.ye{bottom:847.515000px;}
.y55{bottom:847.875000px;}
.yd{bottom:868.215000px;}
.y54{bottom:868.575000px;}
.y34{bottom:868.936500px;}
.yc{bottom:888.915000px;}
.y33{bottom:889.636500px;}
.yb{bottom:909.615000px;}
.y32{bottom:910.336500px;}
.ya{bottom:930.315000px;}
.y31{bottom:931.036500px;}
.y9{bottom:951.015000px;}
.y53{bottom:952.095000px;}
.y30{bottom:972.795000px;}
.y8{bottom:992.775000px;}
.y52{bottom:993.495000px;}
.y7{bottom:1013.475000px;}
.y51{bottom:1014.195000px;}
.y2f{bottom:1014.375000px;}
.y50{bottom:1034.895000px;}
.y4f{bottom:1055.595000px;}
.y2e{bottom:1056.136500px;}
.y2d{bottom:1076.836500px;}
.y4e{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:61.101563px;}
.h6{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.x9{left:167.760000px;}
.xb{left:186.838500px;}
.x7{left:189.900000px;}
.x6{left:300.600000px;}
.xa{left:340.200000px;}
.xc{left:342.360000px;}
.x5{left:372.060000px;}
.x8{left:386.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:16.000000pt;}
.ls1{letter-spacing:97.242400pt;}
.ws6{word-spacing:-49.728000pt;}
.ws1f{word-spacing:-34.481600pt;}
.ws27{word-spacing:-34.364800pt;}
.ws56{word-spacing:-34.363733pt;}
.ws4b{word-spacing:-34.362133pt;}
.ws36{word-spacing:-34.360533pt;}
.ws47{word-spacing:-34.358400pt;}
.ws37{word-spacing:-34.357333pt;}
.ws3e{word-spacing:-34.355200pt;}
.ws29{word-spacing:-34.175733pt;}
.ws4{word-spacing:-34.167200pt;}
.ws12{word-spacing:-34.164000pt;}
.ws34{word-spacing:-34.148267pt;}
.ws1e{word-spacing:-34.108000pt;}
.ws58{word-spacing:-34.106667pt;}
.ws30{word-spacing:-34.106133pt;}
.ws5{word-spacing:-34.099467pt;}
.ws3a{word-spacing:-34.098400pt;}
.ws11{word-spacing:-34.082400pt;}
.ws39{word-spacing:-33.925333pt;}
.ws2f{word-spacing:-33.920000pt;}
.ws3{word-spacing:-33.916000pt;}
.ws3f{word-spacing:-33.914667pt;}
.ws44{word-spacing:-33.911200pt;}
.ws28{word-spacing:-33.910400pt;}
.ws35{word-spacing:-33.907200pt;}
.ws57{word-spacing:-33.899200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws67{word-spacing:-33.840000pt;}
.ws0{word-spacing:-33.728000pt;}
.ws61{word-spacing:-33.726933pt;}
.ws43{word-spacing:-33.721600pt;}
.ws3c{word-spacing:-33.720000pt;}
.ws3d{word-spacing:-33.718933pt;}
.ws69{word-spacing:-33.716267pt;}
.ws60{word-spacing:-33.713600pt;}
.ws38{word-spacing:-33.705867pt;}
.wse{word-spacing:-33.522133pt;}
.ws51{word-spacing:-33.518400pt;}
.ws65{word-spacing:-33.088533pt;}
.wsc{word-spacing:-32.625600pt;}
.ws6b{word-spacing:-32.436000pt;}
.ws19{word-spacing:-31.350400pt;}
.ws64{word-spacing:-31.161600pt;}
.ws9{word-spacing:-31.155200pt;}
.ws63{word-spacing:-31.152000pt;}
.ws4a{word-spacing:-31.143467pt;}
.ws68{word-spacing:-30.643200pt;}
.ws5f{word-spacing:-30.265333pt;}
.ws1a{word-spacing:-29.888000pt;}
.ws23{word-spacing:-29.440000pt;}
.ws53{word-spacing:-29.231200pt;}
.ws32{word-spacing:-29.052533pt;}
.ws40{word-spacing:-27.765333pt;}
.ws22{word-spacing:-26.240000pt;}
.wsb{word-spacing:-26.227200pt;}
.ws5a{word-spacing:-26.053333pt;}
.ws41{word-spacing:-26.048000pt;}
.ws59{word-spacing:-26.047200pt;}
.ws5b{word-spacing:-26.042667pt;}
.wsa{word-spacing:-26.028800pt;}
.ws42{word-spacing:-25.851200pt;}
.ws24{word-spacing:-25.387200pt;}
.ws46{word-spacing:-24.960533pt;}
.ws66{word-spacing:-24.876800pt;}
.ws25{word-spacing:-24.126400pt;}
.ws50{word-spacing:-23.040000pt;}
.ws6a{word-spacing:-22.981333pt;}
.ws6f{word-spacing:-22.846933pt;}
.ws4e{word-spacing:-22.835200pt;}
.ws6e{word-spacing:-22.330400pt;}
.ws3b{word-spacing:-21.555200pt;}
.ws1c{word-spacing:-20.474667pt;}
.ws1d{word-spacing:-20.288000pt;}
.ws2c{word-spacing:-20.280000pt;}
.ws5c{word-spacing:-19.121600pt;}
.ws10{word-spacing:-18.356533pt;}
.wsf{word-spacing:-17.912800pt;}
.ws4c{word-spacing:-17.711200pt;}
.ws54{word-spacing:-17.078400pt;}
.ws45{word-spacing:-16.436800pt;}
.ws16{word-spacing:-15.992000pt;}
.ws4f{word-spacing:-15.803200pt;}
.ws2d{word-spacing:-14.520000pt;}
.ws2e{word-spacing:-14.516800pt;}
.ws18{word-spacing:-14.449600pt;}
.ws52{word-spacing:-13.684800pt;}
.ws8{word-spacing:-13.435200pt;}
.ws7{word-spacing:-12.805333pt;}
.ws26{word-spacing:-12.603200pt;}
.ws21{word-spacing:-11.263733pt;}
.ws20{word-spacing:-10.670400pt;}
.ws4d{word-spacing:-10.043200pt;}
.ws17{word-spacing:-9.146667pt;}
.ws31{word-spacing:-8.745600pt;}
.ws2b{word-spacing:-6.395200pt;}
.ws48{word-spacing:-5.555733pt;}
.ws55{word-spacing:-3.643733pt;}
.ws2a{word-spacing:-3.449600pt;}
.ws1b{word-spacing:-1.216000pt;}
.wsd{word-spacing:-0.443733pt;}
.ws49{word-spacing:0.000000pt;}
.ws5e{word-spacing:4.032267pt;}
.ws33{word-spacing:6.598400pt;}
.ws62{word-spacing:16.065867pt;}
.ws14{word-spacing:20.928000pt;}
.ws13{word-spacing:21.312000pt;}
.ws6d{word-spacing:22.597600pt;}
.ws6c{word-spacing:23.872000pt;}
.ws15{word-spacing:28.038400pt;}
.ws5d{word-spacing:78.157067pt;}
.ws1{word-spacing:922.208800pt;}
._3{margin-left:-1.516000pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._7{width:18.289600pt;}
._e{width:19.382400pt;}
._4{width:20.275200pt;}
._11{width:21.356000pt;}
._17{width:22.283733pt;}
._1a{width:23.373867pt;}
._6{width:24.709333pt;}
._5{width:25.878667pt;}
._19{width:27.122400pt;}
._1b{width:28.258400pt;}
._15{width:30.450667pt;}
._1f{width:31.546667pt;}
._9{width:32.589067pt;}
._1c{width:33.574400pt;}
._b{width:34.944000pt;}
._d{width:36.416000pt;}
._2{width:37.509333pt;}
._12{width:38.522667pt;}
._10{width:40.110133pt;}
._c{width:41.536000pt;}
._16{width:42.432000pt;}
._14{width:45.115200pt;}
._1d{width:47.094400pt;}
._13{width:48.057600pt;}
._f{width:49.408000pt;}
._8{width:50.301867pt;}
._20{width:54.847467pt;}
._21{width:55.776800pt;}
._18{width:57.459200pt;}
._22{width:66.742667pt;}
._1e{width:73.600000pt;}
._a{width:78.720000pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y29{bottom:107.266667pt;}
.y4d{bottom:125.666667pt;}
.y4c{bottom:144.066667pt;}
.y28{bottom:144.388000pt;}
.y4b{bottom:162.466667pt;}
.y4a{bottom:180.866667pt;}
.y27{bottom:181.346667pt;}
.y49{bottom:199.266667pt;}
.y26{bottom:199.746667pt;}
.y48{bottom:217.666667pt;}
.y25{bottom:218.146667pt;}
.y6b{bottom:219.266667pt;}
.y24{bottom:236.546667pt;}
.y6a{bottom:237.666667pt;}
.y47{bottom:254.788000pt;}
.y23{bottom:254.946667pt;}
.y69{bottom:256.066667pt;}
.y22{bottom:273.346667pt;}
.y68{bottom:274.466667pt;}
.y21{bottom:291.746667pt;}
.y46{bottom:291.908000pt;}
.y67{bottom:292.866667pt;}
.y45{bottom:310.308000pt;}
.y66{bottom:311.266667pt;}
.y44{bottom:328.706667pt;}
.y20{bottom:328.866667pt;}
.y65{bottom:329.666667pt;}
.y43{bottom:347.108000pt;}
.y1f{bottom:347.266667pt;}
.y64{bottom:348.066667pt;}
.y63{bottom:366.466667pt;}
.y42{bottom:384.066667pt;}
.y1e{bottom:384.388000pt;}
.y62{bottom:384.866667pt;}
.y1d{bottom:402.788000pt;}
.y61{bottom:403.266667pt;}
.y41{bottom:421.188000pt;}
.y60{bottom:421.666667pt;}
.y40{bottom:439.588000pt;}
.y1c{bottom:439.746667pt;}
.y5f{bottom:440.066667pt;}
.y3f{bottom:457.988000pt;}
.y1b{bottom:458.146667pt;}
.y5e{bottom:458.466667pt;}
.y3e{bottom:476.388000pt;}
.y1a{bottom:476.546667pt;}
.y5d{bottom:476.866667pt;}
.y19{bottom:494.946667pt;}
.y5c{bottom:495.266667pt;}
.y18{bottom:513.346667pt;}
.y3d{bottom:513.506667pt;}
.y5b{bottom:513.666667pt;}
.y17{bottom:531.746667pt;}
.y3c{bottom:531.908000pt;}
.y5a{bottom:532.066667pt;}
.y16{bottom:550.146667pt;}
.y59{bottom:550.466667pt;}
.y15{bottom:568.546667pt;}
.y3b{bottom:568.866667pt;}
.y14{bottom:586.946667pt;}
.y58{bottom:587.266667pt;}
.y3a{bottom:605.988000pt;}
.y13{bottom:624.066667pt;}
.y39{bottom:624.388000pt;}
.y12{bottom:642.466667pt;}
.y38{bottom:642.788000pt;}
.y37{bottom:661.188000pt;}
.y11{bottom:679.588000pt;}
.y10{bottom:697.988000pt;}
.y36{bottom:698.308000pt;}
.y57{bottom:698.466667pt;}
.y56{bottom:716.866667pt;}
.yf{bottom:734.946667pt;}
.y35{bottom:735.266667pt;}
.ye{bottom:753.346667pt;}
.y55{bottom:753.666667pt;}
.yd{bottom:771.746667pt;}
.y54{bottom:772.066667pt;}
.y34{bottom:772.388000pt;}
.yc{bottom:790.146667pt;}
.y33{bottom:790.788000pt;}
.yb{bottom:808.546667pt;}
.y32{bottom:809.188000pt;}
.ya{bottom:826.946667pt;}
.y31{bottom:827.588000pt;}
.y9{bottom:845.346667pt;}
.y53{bottom:846.306667pt;}
.y30{bottom:864.706667pt;}
.y8{bottom:882.466667pt;}
.y52{bottom:883.106667pt;}
.y7{bottom:900.866667pt;}
.y51{bottom:901.506667pt;}
.y2f{bottom:901.666667pt;}
.y50{bottom:919.906667pt;}
.y4f{bottom:938.306667pt;}
.y2e{bottom:938.788000pt;}
.y2d{bottom:957.188000pt;}
.y4e{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:54.312500pt;}
.h6{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.x9{left:149.120000pt;}
.xb{left:166.078667pt;}
.x7{left:168.800000pt;}
.x6{left:267.200000pt;}
.xa{left:302.400000pt;}
.xc{left:304.320000pt;}
.x5{left:330.720000pt;}
.x8{left:343.200000pt;}
}




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