
    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_dfcdbd3831262e99f72d72b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896973;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_4c69bfb85227dff557840851.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_1b24ff444c9c040a4e50473f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01509e70592884348ee0d8f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws5{word-spacing:-40.968000px;}
.ws22{word-spacing:-38.664600px;}
.ws54{word-spacing:-38.662200px;}
.ws50{word-spacing:-38.661300px;}
.ws4a{word-spacing:-38.440800px;}
.ws12{word-spacing:-38.439000px;}
.ws7{word-spacing:-38.433600px;}
.ws44{word-spacing:-38.431800px;}
.ws1e{word-spacing:-38.162400px;}
.ws13{word-spacing:-38.151900px;}
.ws53{word-spacing:-38.147400px;}
.ws52{word-spacing:-38.145600px;}
.ws34{word-spacing:-37.944600px;}
.ws14{word-spacing:-37.944000px;}
.ws9{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.935000px;}
.ws33{word-spacing:-37.931400px;}
.ws21{word-spacing:-37.713600px;}
.ws39{word-spacing:-37.699200px;}
.ws3e{word-spacing:-37.446000px;}
.ws20{word-spacing:-37.213200px;}
.ws32{word-spacing:-36.491400px;}
.wsf{word-spacing:-36.487800px;}
.ws31{word-spacing:-35.994000px;}
.ws43{word-spacing:-35.258400px;}
.ws5a{word-spacing:-35.064000px;}
.ws57{word-spacing:-34.560000px;}
.ws30{word-spacing:-34.556400px;}
.ws1c{word-spacing:-34.344000px;}
.ws40{word-spacing:-34.119000px;}
.ws58{word-spacing:-33.624000px;}
.ws55{word-spacing:-33.620400px;}
.ws36{word-spacing:-33.615000px;}
.ws3d{word-spacing:-33.613200px;}
.ws6{word-spacing:-33.547800px;}
.ws59{word-spacing:-32.904000px;}
.ws42{word-spacing:-31.460400px;}
.ws35{word-spacing:-31.452000px;}
.ws23{word-spacing:-30.729600px;}
.ws3f{word-spacing:-30.522600px;}
.ws45{word-spacing:-30.519000px;}
.ws19{word-spacing:-30.229200px;}
.ws27{word-spacing:-30.024000px;}
.ws17{word-spacing:-30.021000px;}
.ws2d{word-spacing:-30.016800px;}
.ws46{word-spacing:-29.512800px;}
.ws49{word-spacing:-28.802400px;}
.ws24{word-spacing:-28.788300px;}
.ws56{word-spacing:-27.864000px;}
.ws10{word-spacing:-27.135000px;}
.ws4d{word-spacing:-26.919000px;}
.ws1d{word-spacing:-26.415000px;}
.ws2a{word-spacing:-25.704600px;}
.ws4c{word-spacing:-25.682400px;}
.ws1b{word-spacing:-25.194300px;}
.ws26{word-spacing:-24.757200px;}
.ws38{word-spacing:-23.758200px;}
.ws4{word-spacing:-23.687700px;}
.ws1a{word-spacing:-23.536800px;}
.ws1f{word-spacing:-23.533200px;}
.ws0{word-spacing:-23.390100px;}
.ws1{word-spacing:-23.178600px;}
.ws2{word-spacing:-23.174100px;}
.ws2c{word-spacing:-23.040000px;}
.ws51{word-spacing:-22.815000px;}
.wsd{word-spacing:-22.813200px;}
.ws2e{word-spacing:-22.811400px;}
.ws47{word-spacing:-22.306800px;}
.ws4b{word-spacing:-22.101300px;}
.ws11{word-spacing:-20.874600px;}
.ws25{word-spacing:-20.868600px;}
.ws4f{word-spacing:-19.721400px;}
.ws18{word-spacing:-19.209600px;}
.ws2f{word-spacing:-18.504000px;}
.ws15{word-spacing:-17.263800px;}
.wse{word-spacing:-15.613200px;}
.ws4e{word-spacing:-14.907300px;}
.ws37{word-spacing:-14.889000px;}
.ws48{word-spacing:-13.462200px;}
.wsc{word-spacing:-12.005400px;}
.wsb{word-spacing:-10.800000px;}
.ws3c{word-spacing:-6.969600px;}
.ws2b{word-spacing:-6.037200px;}
.ws29{word-spacing:-5.334000px;}
.ws3{word-spacing:-5.177700px;}
.ws41{word-spacing:-3.596400px;}
.ws16{word-spacing:-0.486600px;}
.ws3a{word-spacing:0.225000px;}
.ws3b{word-spacing:0.439200px;}
.ws28{word-spacing:33.333600px;}
._1e{margin-left:-2.295000px;}
._4{margin-left:-1.134900px;}
._3{width:1.067400px;}
._11{width:17.631000px;}
._0{width:19.142100px;}
._9{width:20.934900px;}
._10{width:23.040000px;}
._1a{width:24.464700px;}
._17{width:26.253900px;}
._d{width:27.357000px;}
._13{width:28.487400px;}
._a{width:30.078000px;}
._f{width:31.825200px;}
._7{width:34.333200px;}
._6{width:35.531100px;}
._b{width:36.711000px;}
._e{width:38.129400px;}
._8{width:41.677200px;}
._1c{width:43.628400px;}
._19{width:50.241600px;}
._12{width:51.408000px;}
._14{width:52.542900px;}
._1b{width:54.060300px;}
._c{width:56.845200px;}
._15{width:62.766000px;}
._16{width:75.312000px;}
._18{width:82.683300px;}
._5{width:89.981400px;}
._1f{width:122.400000px;}
._1d{width:158.400000px;}
._1{width:954.360000px;}
._2{width:1025.700300px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(227,108,9);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.575000px;}
.y7{bottom:72.900000px;}
.y34{bottom:158.836500px;}
.y33{bottom:179.536500px;}
.y32{bottom:200.236500px;}
.y31{bottom:220.936500px;}
.y30{bottom:241.636500px;}
.y2f{bottom:262.336500px;}
.y2e{bottom:283.036500px;}
.y2d{bottom:303.736500px;}
.y2c{bottom:324.436500px;}
.y2b{bottom:345.136500px;}
.y2a{bottom:365.836500px;}
.y29{bottom:386.536500px;}
.y28{bottom:407.236500px;}
.y27{bottom:427.936500px;}
.y26{bottom:448.636500px;}
.y25{bottom:469.336500px;}
.y24{bottom:490.036500px;}
.y23{bottom:510.736500px;}
.y22{bottom:531.436500px;}
.y21{bottom:552.136500px;}
.y20{bottom:572.836500px;}
.y1f{bottom:593.536500px;}
.y1e{bottom:614.236500px;}
.y1d{bottom:634.936500px;}
.y1c{bottom:655.636500px;}
.y1b{bottom:676.336500px;}
.y1a{bottom:697.036500px;}
.y19{bottom:717.736500px;}
.y18{bottom:738.436500px;}
.y17{bottom:759.136500px;}
.y16{bottom:779.836500px;}
.y15{bottom:800.536500px;}
.y14{bottom:821.236500px;}
.y13{bottom:841.936500px;}
.y12{bottom:862.636500px;}
.y11{bottom:883.336500px;}
.y10{bottom:904.036500px;}
.yf{bottom:924.736500px;}
.ye{bottom:945.436500px;}
.y36{bottom:966.136500px;}
.yd{bottom:986.836500px;}
.yc{bottom:1007.536500px;}
.yb{bottom:1028.236500px;}
.ya{bottom:1048.936500px;}
.y35{bottom:1069.636500px;}
.y9{bottom:1090.155000px;}
.y6{bottom:1131.915000px;}
.y5{bottom:1152.615000px;}
.y4{bottom:1173.315000px;}
.y3{bottom:1194.015000px;}
.y2{bottom:1214.715000px;}
.y1{bottom:1235.415000px;}
.h3{height:20.175000px;}
.h4{height:45.225146px;}
.h5{height:48.796875px;}
.h2{height:49.042969px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x9{left:132.120000px;}
.x3{left:164.338500px;}
.x8{left:233.820000px;}
.x2{left:470.025000px;}
.x7{left:602.460000px;}
.x6{left:606.600000px;}
.x4{left:711.180000px;}
.x5{left:753.660000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-49.728000pt;}
.ws5{word-spacing:-36.416000pt;}
.ws22{word-spacing:-34.368533pt;}
.ws54{word-spacing:-34.366400pt;}
.ws50{word-spacing:-34.365600pt;}
.ws4a{word-spacing:-34.169600pt;}
.ws12{word-spacing:-34.168000pt;}
.ws7{word-spacing:-34.163200pt;}
.ws44{word-spacing:-34.161600pt;}
.ws1e{word-spacing:-33.922133pt;}
.ws13{word-spacing:-33.912800pt;}
.ws53{word-spacing:-33.908800pt;}
.ws52{word-spacing:-33.907200pt;}
.ws34{word-spacing:-33.728533pt;}
.ws14{word-spacing:-33.728000pt;}
.ws9{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.720000pt;}
.ws33{word-spacing:-33.716800pt;}
.ws21{word-spacing:-33.523200pt;}
.ws39{word-spacing:-33.510400pt;}
.ws3e{word-spacing:-33.285333pt;}
.ws20{word-spacing:-33.078400pt;}
.ws32{word-spacing:-32.436800pt;}
.wsf{word-spacing:-32.433600pt;}
.ws31{word-spacing:-31.994667pt;}
.ws43{word-spacing:-31.340800pt;}
.ws5a{word-spacing:-31.168000pt;}
.ws57{word-spacing:-30.720000pt;}
.ws30{word-spacing:-30.716800pt;}
.ws1c{word-spacing:-30.528000pt;}
.ws40{word-spacing:-30.328000pt;}
.ws58{word-spacing:-29.888000pt;}
.ws55{word-spacing:-29.884800pt;}
.ws36{word-spacing:-29.880000pt;}
.ws3d{word-spacing:-29.878400pt;}
.ws6{word-spacing:-29.820267pt;}
.ws59{word-spacing:-29.248000pt;}
.ws42{word-spacing:-27.964800pt;}
.ws35{word-spacing:-27.957333pt;}
.ws23{word-spacing:-27.315200pt;}
.ws3f{word-spacing:-27.131200pt;}
.ws45{word-spacing:-27.128000pt;}
.ws19{word-spacing:-26.870400pt;}
.ws27{word-spacing:-26.688000pt;}
.ws17{word-spacing:-26.685333pt;}
.ws2d{word-spacing:-26.681600pt;}
.ws46{word-spacing:-26.233600pt;}
.ws49{word-spacing:-25.602133pt;}
.ws24{word-spacing:-25.589600pt;}
.ws56{word-spacing:-24.768000pt;}
.ws10{word-spacing:-24.120000pt;}
.ws4d{word-spacing:-23.928000pt;}
.ws1d{word-spacing:-23.480000pt;}
.ws2a{word-spacing:-22.848533pt;}
.ws4c{word-spacing:-22.828800pt;}
.ws1b{word-spacing:-22.394933pt;}
.ws26{word-spacing:-22.006400pt;}
.ws38{word-spacing:-21.118400pt;}
.ws4{word-spacing:-21.055733pt;}
.ws1a{word-spacing:-20.921600pt;}
.ws1f{word-spacing:-20.918400pt;}
.ws0{word-spacing:-20.791200pt;}
.ws1{word-spacing:-20.603200pt;}
.ws2{word-spacing:-20.599200pt;}
.ws2c{word-spacing:-20.480000pt;}
.ws51{word-spacing:-20.280000pt;}
.wsd{word-spacing:-20.278400pt;}
.ws2e{word-spacing:-20.276800pt;}
.ws47{word-spacing:-19.828267pt;}
.ws4b{word-spacing:-19.645600pt;}
.ws11{word-spacing:-18.555200pt;}
.ws25{word-spacing:-18.549867pt;}
.ws4f{word-spacing:-17.530133pt;}
.ws18{word-spacing:-17.075200pt;}
.ws2f{word-spacing:-16.448000pt;}
.ws15{word-spacing:-15.345600pt;}
.wse{word-spacing:-13.878400pt;}
.ws4e{word-spacing:-13.250933pt;}
.ws37{word-spacing:-13.234667pt;}
.ws48{word-spacing:-11.966400pt;}
.wsc{word-spacing:-10.671467pt;}
.wsb{word-spacing:-9.600000pt;}
.ws3c{word-spacing:-6.195200pt;}
.ws2b{word-spacing:-5.366400pt;}
.ws29{word-spacing:-4.741333pt;}
.ws3{word-spacing:-4.602400pt;}
.ws41{word-spacing:-3.196800pt;}
.ws16{word-spacing:-0.432533pt;}
.ws3a{word-spacing:0.200000pt;}
.ws3b{word-spacing:0.390400pt;}
.ws28{word-spacing:29.629867pt;}
._1e{margin-left:-2.040000pt;}
._4{margin-left:-1.008800pt;}
._3{width:0.948800pt;}
._11{width:15.672000pt;}
._0{width:17.015200pt;}
._9{width:18.608800pt;}
._10{width:20.480000pt;}
._1a{width:21.746400pt;}
._17{width:23.336800pt;}
._d{width:24.317333pt;}
._13{width:25.322133pt;}
._a{width:26.736000pt;}
._f{width:28.289067pt;}
._7{width:30.518400pt;}
._6{width:31.583200pt;}
._b{width:32.632000pt;}
._e{width:33.892800pt;}
._8{width:37.046400pt;}
._1c{width:38.780800pt;}
._19{width:44.659200pt;}
._12{width:45.696000pt;}
._14{width:46.704800pt;}
._1b{width:48.053600pt;}
._c{width:50.529067pt;}
._15{width:55.792000pt;}
._16{width:66.944000pt;}
._18{width:73.496267pt;}
._5{width:79.983467pt;}
._1f{width:108.800000pt;}
._1d{width:140.800000pt;}
._1{width:848.320000pt;}
._2{width:911.733600pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.066667pt;}
.y7{bottom:64.800000pt;}
.y34{bottom:141.188000pt;}
.y33{bottom:159.588000pt;}
.y32{bottom:177.988000pt;}
.y31{bottom:196.388000pt;}
.y30{bottom:214.788000pt;}
.y2f{bottom:233.188000pt;}
.y2e{bottom:251.588000pt;}
.y2d{bottom:269.988000pt;}
.y2c{bottom:288.388000pt;}
.y2b{bottom:306.788000pt;}
.y2a{bottom:325.188000pt;}
.y29{bottom:343.588000pt;}
.y28{bottom:361.988000pt;}
.y27{bottom:380.388000pt;}
.y26{bottom:398.788000pt;}
.y25{bottom:417.188000pt;}
.y24{bottom:435.588000pt;}
.y23{bottom:453.988000pt;}
.y22{bottom:472.388000pt;}
.y21{bottom:490.788000pt;}
.y20{bottom:509.188000pt;}
.y1f{bottom:527.588000pt;}
.y1e{bottom:545.988000pt;}
.y1d{bottom:564.388000pt;}
.y1c{bottom:582.788000pt;}
.y1b{bottom:601.188000pt;}
.y1a{bottom:619.588000pt;}
.y19{bottom:637.988000pt;}
.y18{bottom:656.388000pt;}
.y17{bottom:674.788000pt;}
.y16{bottom:693.188000pt;}
.y15{bottom:711.588000pt;}
.y14{bottom:729.988000pt;}
.y13{bottom:748.388000pt;}
.y12{bottom:766.788000pt;}
.y11{bottom:785.188000pt;}
.y10{bottom:803.588000pt;}
.yf{bottom:821.988000pt;}
.ye{bottom:840.388000pt;}
.y36{bottom:858.788000pt;}
.yd{bottom:877.188000pt;}
.yc{bottom:895.588000pt;}
.yb{bottom:913.988000pt;}
.ya{bottom:932.388000pt;}
.y35{bottom:950.788000pt;}
.y9{bottom:969.026667pt;}
.y6{bottom:1006.146667pt;}
.y5{bottom:1024.546667pt;}
.y4{bottom:1042.946667pt;}
.y3{bottom:1061.346667pt;}
.y2{bottom:1079.746667pt;}
.y1{bottom:1098.146667pt;}
.h3{height:17.933333pt;}
.h4{height:40.200130pt;}
.h5{height:43.375000pt;}
.h2{height:43.593750pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x9{left:117.440000pt;}
.x3{left:146.078667pt;}
.x8{left:207.840000pt;}
.x2{left:417.800000pt;}
.x7{left:535.520000pt;}
.x6{left:539.200000pt;}
.x4{left:632.160000pt;}
.x5{left:669.920000pt;}
}




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