
    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_a59288d1c20d0bbcfef0f307.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6dcb9401e5bd93b7b46fc3f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6f609b539da6e8ecdfa110e0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5954085f8bd7974ae837e7d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_36d7be223c1f1b1cd1ff72ae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-98.400000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.516000px;}
.ls4{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.828000px;}
.lsb{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.260000px;}
.ls1{letter-spacing:3.000000px;}
.ls9{letter-spacing:4.260000px;}
.ls8{letter-spacing:7.980000px;}
.ls18{letter-spacing:11.400000px;}
.ls15{letter-spacing:16.320000px;}
.lsa{letter-spacing:22.200000px;}
.ls7{letter-spacing:23.400000px;}
.ls10{letter-spacing:29.400000px;}
.ls6{letter-spacing:29.580000px;}
.ls5{letter-spacing:33.000000px;}
.ls12{letter-spacing:35.400000px;}
.lsf{letter-spacing:37.740000px;}
.lse{letter-spacing:37.800000px;}
.ls17{letter-spacing:61.920000px;}
.lsd{letter-spacing:71.400000px;}
.ls13{letter-spacing:939.330000px;}
.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;}
}
.ws4{word-spacing:-21.552000px;}
.ws0{word-spacing:-21.000000px;}
.ws1{word-spacing:-20.904000px;}
.ws3{word-spacing:-19.500000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.512000px;}
._0{width:1.176000px;}
._2{width:2.418000px;}
._16{width:3.432000px;}
._b{width:4.446000px;}
._1f{width:5.652000px;}
._11{width:7.656000px;}
._12{width:9.180000px;}
._25{width:10.242000px;}
._19{width:11.256000px;}
._d{width:12.348000px;}
._c{width:13.356000px;}
._1d{width:15.288000px;}
._1e{width:16.800000px;}
._7{width:18.168000px;}
._6{width:19.266000px;}
._21{width:22.932000px;}
._a{width:23.940000px;}
._8{width:25.872000px;}
._9{width:27.552000px;}
._10{width:28.644000px;}
._f{width:29.736000px;}
._e{width:30.912000px;}
._20{width:32.592000px;}
._5{width:34.524000px;}
._3{width:35.700000px;}
._4{width:37.380000px;}
._22{width:38.556000px;}
._26{width:43.848000px;}
._1c{width:45.192000px;}
._1b{width:46.284000px;}
._1a{width:47.628000px;}
._17{width:48.720000px;}
._18{width:49.728000px;}
._13{width:56.430000px;}
._15{width:57.630000px;}
._14{width:58.632000px;}
._27{width:61.152000px;}
._28{width:62.328000px;}
._29{width:64.926000px;}
._23{width:69.606000px;}
._24{width:71.010000px;}
._2a{width:843.330000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs7{font-size:78.150000px;}
.fs0{font-size:84.000000px;}
.y6e{bottom:-17.220000px;}
.y0{bottom:0.000000px;}
.y65{bottom:4.980000px;}
.y70{bottom:5.250000px;}
.y6d{bottom:5.280000px;}
.y6a{bottom:5.295000px;}
.y73{bottom:5.325000px;}
.y5e{bottom:6.225000px;}
.y5b{bottom:6.855000px;}
.y62{bottom:7.125000px;}
.y60{bottom:8.025000px;}
.y59{bottom:19.170000px;}
.y64{bottom:27.480000px;}
.y72{bottom:27.525000px;}
.y6c{bottom:27.780000px;}
.y5d{bottom:30.270000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y43{bottom:89.137500px;}
.y57{bottom:96.037500px;}
.y42{bottom:97.537500px;}
.y41{bottom:109.837500px;}
.y40{bottom:118.237500px;}
.y56{bottom:120.037500px;}
.y68{bottom:130.080000px;}
.y3f{bottom:130.537500px;}
.y3e{bottom:138.937500px;}
.y55{bottom:144.337500px;}
.y3d{bottom:151.245000px;}
.y3c{bottom:159.630000px;}
.y67{bottom:163.080000px;}
.y2c{bottom:168.375000px;}
.y3b{bottom:171.975000px;}
.y3a{bottom:180.375000px;}
.y2b{bottom:192.675000px;}
.y2a{bottom:216.675000px;}
.y29{bottom:240.975000px;}
.y28{bottom:264.975000px;}
.y27{bottom:289.275000px;}
.y26{bottom:313.275000px;}
.y25{bottom:337.620000px;}
.y24{bottom:361.620000px;}
.y23{bottom:385.905000px;}
.y22{bottom:409.905000px;}
.y21{bottom:434.205000px;}
.y20{bottom:458.205000px;}
.y1f{bottom:482.505000px;}
.y1e{bottom:506.550000px;}
.y1d{bottom:530.850000px;}
.y54{bottom:554.250000px;}
.y1c{bottom:554.850000px;}
.y53{bottom:578.550000px;}
.y1b{bottom:579.150000px;}
.y52{bottom:602.550000px;}
.y1a{bottom:603.150000px;}
.y51{bottom:626.850000px;}
.y19{bottom:627.450000px;}
.y66{bottom:643.800000px;}
.y50{bottom:650.850000px;}
.y18{bottom:651.450000px;}
.y6f{bottom:653.100000px;}
.y17{bottom:675.780000px;}
.y16{bottom:699.195000px;}
.y39{bottom:699.780000px;}
.y15{bottom:723.480000px;}
.y38{bottom:724.080000px;}
.y69{bottom:725.400000px;}
.y6b{bottom:725.700000px;}
.y63{bottom:726.000000px;}
.y4f{bottom:747.480000px;}
.y14{bottom:748.080000px;}
.y4e{bottom:771.795000px;}
.y13{bottom:772.380000px;}
.y4d{bottom:795.795000px;}
.y12{bottom:796.380000px;}
.y4c{bottom:820.080000px;}
.y11{bottom:820.695000px;}
.y61{bottom:838.500000px;}
.y4b{bottom:844.125000px;}
.y10{bottom:844.725000px;}
.y4a{bottom:868.425000px;}
.yf{bottom:869.025000px;}
.y71{bottom:880.800000px;}
.y49{bottom:892.425000px;}
.ye{bottom:893.025000px;}
.y37{bottom:902.925000px;}
.y48{bottom:916.725000px;}
.yd{bottom:917.325000px;}
.y5f{bottom:933.000000px;}
.yc{bottom:940.725000px;}
.y36{bottom:941.325000px;}
.y47{bottom:965.025000px;}
.yb{bottom:965.625000px;}
.y35{bottom:975.525000px;}
.y46{bottom:989.025000px;}
.ya{bottom:989.625000px;}
.y5c{bottom:1001.400000px;}
.y45{bottom:1013.355000px;}
.y9{bottom:1013.955000px;}
.y34{bottom:1023.855000px;}
.y44{bottom:1037.355000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1061.670000px;}
.y32{bottom:1062.255000px;}
.y33{bottom:1072.155000px;}
.y5a{bottom:1072.800000px;}
.y6{bottom:1085.655000px;}
.y31{bottom:1086.255000px;}
.y58{bottom:1106.700000px;}
.y5{bottom:1109.955000px;}
.y2f{bottom:1110.570000px;}
.y30{bottom:1120.455000px;}
.y4{bottom:1133.955000px;}
.y2e{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2d{bottom:1158.870000px;}
.he{height:24.300000px;}
.h11{height:24.600000px;}
.h10{height:30.000000px;}
.hc{height:38.100000px;}
.h13{height:45.300000px;}
.ha{height:47.109375px;}
.hf{height:47.700000px;}
.h8{height:52.998047px;}
.h6{height:58.898438px;}
.h5{height:59.267578px;}
.h3{height:61.670545px;}
.h9{height:65.645508px;}
.hb{height:70.664062px;}
.hd{height:76.552734px;}
.h12{height:76.699951px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h14{height:513.300000px;}
.h7{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:53.100000px;}
.w5{width:174.900000px;}
.w3{width:301.800000px;}
.w8{width:457.500000px;}
.w7{width:497.100000px;}
.w4{width:506.100000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:13.620000px;}
.x26{left:19.680000px;}
.x21{left:21.337500px;}
.x20{left:24.975000px;}
.x19{left:26.820000px;}
.x1b{left:43.620000px;}
.x22{left:44.730000px;}
.x24{left:51.150000px;}
.x1f{left:55.575000px;}
.x1d{left:72.720000px;}
.x2{left:84.937500px;}
.x27{left:87.525000px;}
.x3{left:99.037500px;}
.x16{left:102.937500px;}
.x18{left:108.750000px;}
.x4{left:113.137500px;}
.xb{left:127.537500px;}
.x8{left:135.337500px;}
.x13{left:153.626250px;}
.x14{left:174.330000px;}
.x1e{left:200.400000px;}
.x29{left:214.650000px;}
.x1c{left:228.300000px;}
.x28{left:230.100000px;}
.xf{left:244.856250px;}
.x2a{left:248.100000px;}
.x10{left:265.575000px;}
.xa{left:286.575000px;}
.xc{left:293.756250px;}
.x15{left:301.020000px;}
.x9{left:310.620000px;}
.xd{left:314.520000px;}
.x17{left:323.700000px;}
.x5{left:355.620000px;}
.x7{left:359.220000px;}
.x23{left:395.400000px;}
.x1{left:430.650000px;}
.x6{left:446.250000px;}
.xe{left:466.050000px;}
.x25{left:591.600000px;}
.x11{left:711.206250px;}
.x12{left:731.925000px;}
@media print{
.v1{vertical-align:-87.466667pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.458667pt;}
.ls4{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.736000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.120000pt;}
.ls1{letter-spacing:2.666667pt;}
.ls9{letter-spacing:3.786667pt;}
.ls8{letter-spacing:7.093333pt;}
.ls18{letter-spacing:10.133333pt;}
.ls15{letter-spacing:14.506667pt;}
.lsa{letter-spacing:19.733333pt;}
.ls7{letter-spacing:20.800000pt;}
.ls10{letter-spacing:26.133333pt;}
.ls6{letter-spacing:26.293333pt;}
.ls5{letter-spacing:29.333333pt;}
.ls12{letter-spacing:31.466667pt;}
.lsf{letter-spacing:33.546667pt;}
.lse{letter-spacing:33.600000pt;}
.ls17{letter-spacing:55.040000pt;}
.lsd{letter-spacing:63.466667pt;}
.ls13{letter-spacing:834.960000pt;}
.ws4{word-spacing:-19.157333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws1{word-spacing:-18.581333pt;}
.ws3{word-spacing:-17.333333pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.045333pt;}
._2{width:2.149333pt;}
._16{width:3.050667pt;}
._b{width:3.952000pt;}
._1f{width:5.024000pt;}
._11{width:6.805333pt;}
._12{width:8.160000pt;}
._25{width:9.104000pt;}
._19{width:10.005333pt;}
._d{width:10.976000pt;}
._c{width:11.872000pt;}
._1d{width:13.589333pt;}
._1e{width:14.933333pt;}
._7{width:16.149333pt;}
._6{width:17.125333pt;}
._21{width:20.384000pt;}
._a{width:21.280000pt;}
._8{width:22.997333pt;}
._9{width:24.490667pt;}
._10{width:25.461333pt;}
._f{width:26.432000pt;}
._e{width:27.477333pt;}
._20{width:28.970667pt;}
._5{width:30.688000pt;}
._3{width:31.733333pt;}
._4{width:33.226667pt;}
._22{width:34.272000pt;}
._26{width:38.976000pt;}
._1c{width:40.170667pt;}
._1b{width:41.141333pt;}
._1a{width:42.336000pt;}
._17{width:43.306667pt;}
._18{width:44.202667pt;}
._13{width:50.160000pt;}
._15{width:51.226667pt;}
._14{width:52.117333pt;}
._27{width:54.357333pt;}
._28{width:55.402667pt;}
._29{width:57.712000pt;}
._23{width:61.872000pt;}
._24{width:63.120000pt;}
._2a{width:749.626667pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs7{font-size:69.466667pt;}
.fs0{font-size:74.666667pt;}
.y6e{bottom:-15.306667pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:4.426667pt;}
.y70{bottom:4.666667pt;}
.y6d{bottom:4.693333pt;}
.y6a{bottom:4.706667pt;}
.y73{bottom:4.733333pt;}
.y5e{bottom:5.533333pt;}
.y5b{bottom:6.093333pt;}
.y62{bottom:6.333333pt;}
.y60{bottom:7.133333pt;}
.y59{bottom:17.040000pt;}
.y64{bottom:24.426667pt;}
.y72{bottom:24.466667pt;}
.y6c{bottom:24.693333pt;}
.y5d{bottom:26.906667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y43{bottom:79.233333pt;}
.y57{bottom:85.366667pt;}
.y42{bottom:86.700000pt;}
.y41{bottom:97.633333pt;}
.y40{bottom:105.100000pt;}
.y56{bottom:106.700000pt;}
.y68{bottom:115.626667pt;}
.y3f{bottom:116.033333pt;}
.y3e{bottom:123.500000pt;}
.y55{bottom:128.300000pt;}
.y3d{bottom:134.440000pt;}
.y3c{bottom:141.893333pt;}
.y67{bottom:144.960000pt;}
.y2c{bottom:149.666667pt;}
.y3b{bottom:152.866667pt;}
.y3a{bottom:160.333333pt;}
.y2b{bottom:171.266667pt;}
.y2a{bottom:192.600000pt;}
.y29{bottom:214.200000pt;}
.y28{bottom:235.533333pt;}
.y27{bottom:257.133333pt;}
.y26{bottom:278.466667pt;}
.y25{bottom:300.106667pt;}
.y24{bottom:321.440000pt;}
.y23{bottom:343.026667pt;}
.y22{bottom:364.360000pt;}
.y21{bottom:385.960000pt;}
.y20{bottom:407.293333pt;}
.y1f{bottom:428.893333pt;}
.y1e{bottom:450.266667pt;}
.y1d{bottom:471.866667pt;}
.y54{bottom:492.666667pt;}
.y1c{bottom:493.200000pt;}
.y53{bottom:514.266667pt;}
.y1b{bottom:514.800000pt;}
.y52{bottom:535.600000pt;}
.y1a{bottom:536.133333pt;}
.y51{bottom:557.200000pt;}
.y19{bottom:557.733333pt;}
.y66{bottom:572.266667pt;}
.y50{bottom:578.533333pt;}
.y18{bottom:579.066667pt;}
.y6f{bottom:580.533333pt;}
.y17{bottom:600.693333pt;}
.y16{bottom:621.506667pt;}
.y39{bottom:622.026667pt;}
.y15{bottom:643.093333pt;}
.y38{bottom:643.626667pt;}
.y69{bottom:644.800000pt;}
.y6b{bottom:645.066667pt;}
.y63{bottom:645.333333pt;}
.y4f{bottom:664.426667pt;}
.y14{bottom:664.960000pt;}
.y4e{bottom:686.040000pt;}
.y13{bottom:686.560000pt;}
.y4d{bottom:707.373333pt;}
.y12{bottom:707.893333pt;}
.y4c{bottom:728.960000pt;}
.y11{bottom:729.506667pt;}
.y61{bottom:745.333333pt;}
.y4b{bottom:750.333333pt;}
.y10{bottom:750.866667pt;}
.y4a{bottom:771.933333pt;}
.yf{bottom:772.466667pt;}
.y71{bottom:782.933333pt;}
.y49{bottom:793.266667pt;}
.ye{bottom:793.800000pt;}
.y37{bottom:802.600000pt;}
.y48{bottom:814.866667pt;}
.yd{bottom:815.400000pt;}
.y5f{bottom:829.333333pt;}
.yc{bottom:836.200000pt;}
.y36{bottom:836.733333pt;}
.y47{bottom:857.800000pt;}
.yb{bottom:858.333333pt;}
.y35{bottom:867.133333pt;}
.y46{bottom:879.133333pt;}
.ya{bottom:879.666667pt;}
.y5c{bottom:890.133333pt;}
.y45{bottom:900.760000pt;}
.y9{bottom:901.293333pt;}
.y34{bottom:910.093333pt;}
.y44{bottom:922.093333pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:943.706667pt;}
.y32{bottom:944.226667pt;}
.y33{bottom:953.026667pt;}
.y5a{bottom:953.600000pt;}
.y6{bottom:965.026667pt;}
.y31{bottom:965.560000pt;}
.y58{bottom:983.733333pt;}
.y5{bottom:986.626667pt;}
.y2f{bottom:987.173333pt;}
.y30{bottom:995.960000pt;}
.y4{bottom:1007.960000pt;}
.y2e{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2d{bottom:1030.106667pt;}
.he{height:21.600000pt;}
.h11{height:21.866667pt;}
.h10{height:26.666667pt;}
.hc{height:33.866667pt;}
.h13{height:40.266667pt;}
.ha{height:41.875000pt;}
.hf{height:42.400000pt;}
.h8{height:47.109375pt;}
.h6{height:52.354167pt;}
.h5{height:52.682292pt;}
.h3{height:54.818262pt;}
.h9{height:58.351562pt;}
.hb{height:62.812500pt;}
.hd{height:68.046875pt;}
.h12{height:68.177734pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h14{height:456.266667pt;}
.h7{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:47.200000pt;}
.w5{width:155.466667pt;}
.w3{width:268.266667pt;}
.w8{width:406.666667pt;}
.w7{width:441.866667pt;}
.w4{width:449.866667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:12.106667pt;}
.x26{left:17.493333pt;}
.x21{left:18.966667pt;}
.x20{left:22.200000pt;}
.x19{left:23.840000pt;}
.x1b{left:38.773333pt;}
.x22{left:39.760000pt;}
.x24{left:45.466667pt;}
.x1f{left:49.400000pt;}
.x1d{left:64.640000pt;}
.x2{left:75.500000pt;}
.x27{left:77.800000pt;}
.x3{left:88.033333pt;}
.x16{left:91.500000pt;}
.x18{left:96.666667pt;}
.x4{left:100.566667pt;}
.xb{left:113.366667pt;}
.x8{left:120.300000pt;}
.x13{left:136.556667pt;}
.x14{left:154.960000pt;}
.x1e{left:178.133333pt;}
.x29{left:190.800000pt;}
.x1c{left:202.933333pt;}
.x28{left:204.533333pt;}
.xf{left:217.650000pt;}
.x2a{left:220.533333pt;}
.x10{left:236.066667pt;}
.xa{left:254.733333pt;}
.xc{left:261.116667pt;}
.x15{left:267.573333pt;}
.x9{left:276.106667pt;}
.xd{left:279.573333pt;}
.x17{left:287.733333pt;}
.x5{left:316.106667pt;}
.x7{left:319.306667pt;}
.x23{left:351.466667pt;}
.x1{left:382.800000pt;}
.x6{left:396.666667pt;}
.xe{left:414.266667pt;}
.x25{left:525.866667pt;}
.x11{left:632.183333pt;}
.x12{left:650.600000pt;}
}




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