
    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_03bf7826b3c3a8c730940c4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_ee4bfb4cb1171bdecb48549e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_d0eb6142a252a1203b59c875.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_3b0808f21ae837a2f4839f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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);}
.v2{vertical-align:-155.460600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:69.240000px;}
.ls1b{letter-spacing:-6.624000px;}
.ls12{letter-spacing:-2.640000px;}
.ls22{letter-spacing:-2.400000px;}
.ls17{letter-spacing:-2.073600px;}
.ls20{letter-spacing:-1.948800px;}
.lsc{letter-spacing:-1.869600px;}
.lsd{letter-spacing:-1.550400px;}
.ls1d{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.293600px;}
.lse{letter-spacing:-0.775200px;}
.ls1f{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.655200px;}
.ls14{letter-spacing:-0.633600px;}
.ls10{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.633600px;}
.ls21{letter-spacing:0.655200px;}
.ls11{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.775200px;}
.ls6{letter-spacing:1.248000px;}
.ls7{letter-spacing:1.286400px;}
.ls3{letter-spacing:1.293600px;}
.ls13{letter-spacing:1.920000px;}
.ls18{letter-spacing:1.948800px;}
.ls8{letter-spacing:2.040000px;}
.ls0{letter-spacing:2.064000px;}
.ls16{letter-spacing:2.073600px;}
.ls5{letter-spacing:2.587200px;}
.lsf{letter-spacing:2.599200px;}
.ls2{letter-spacing:2.620800px;}
.ls1e{letter-spacing:2.640000px;}
.ls15{letter-spacing:2.688000px;}
.ls1{letter-spacing:40.056000px;}
.ls4{letter-spacing:46.056000px;}
.lsa{letter-spacing:4688.776560px;}
.ls9{letter-spacing:5936.081100px;}
.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:-129.367200px;}
.ws4{word-spacing:-126.768000px;}
.ws9{word-spacing:-68.640000px;}
.ws8{word-spacing:-66.720000px;}
.ws7{word-spacing:-64.080000px;}
.ws1c{word-spacing:-54.624000px;}
.ws22{word-spacing:-54.009600px;}
.ws1d{word-spacing:-53.376000px;}
.ws1f{word-spacing:-52.742400px;}
.wsc{word-spacing:-51.302400px;}
.ws1b{word-spacing:-49.291200px;}
.ws18{word-spacing:-48.652800px;}
.ws16{word-spacing:-47.997600px;}
.ws30{word-spacing:-47.359200px;}
.ws12{word-spacing:-46.704000px;}
.ws11{word-spacing:-46.048800px;}
.wse{word-spacing:-45.410400px;}
.ws2f{word-spacing:-44.755200px;}
.ws28{word-spacing:-33.360000px;}
.ws29{word-spacing:-32.640000px;}
.ws26{word-spacing:-32.040000px;}
.wsd{word-spacing:-18.120000px;}
.ws15{word-spacing:-16.104000px;}
.ws31{word-spacing:-15.405600px;}
.ws1a{word-spacing:-12.048000px;}
.ws2d{word-spacing:-11.784000px;}
.ws13{word-spacing:-11.035200px;}
.ws14{word-spacing:-10.675200px;}
.ws21{word-spacing:-10.399800px;}
.ws2e{word-spacing:-9.849600px;}
.ws25{word-spacing:-9.360000px;}
.wsa{word-spacing:-9.014640px;}
.wsb{word-spacing:-8.275200px;}
.ws2a{word-spacing:-7.296000px;}
.ws24{word-spacing:-6.720000px;}
.wsf{word-spacing:-6.648000px;}
.ws23{word-spacing:-6.009600px;}
.ws2c{word-spacing:-4.603200px;}
.ws20{word-spacing:-4.128000px;}
.ws27{word-spacing:-2.160000px;}
.ws10{word-spacing:-0.739200px;}
.ws32{word-spacing:0.000000px;}
.ws2b{word-spacing:1.908000px;}
.ws17{word-spacing:1.999200px;}
.ws0{word-spacing:2.706960px;}
.ws2{word-spacing:5.769000px;}
.ws1{word-spacing:7.483200px;}
.ws5{word-spacing:12.062160px;}
.ws6{word-spacing:18.529800px;}
.ws1e{word-spacing:28.752240px;}
.ws19{word-spacing:31.380000px;}
._14{margin-left:-23.160000px;}
._10{margin-left:-19.627200px;}
._c{margin-left:-17.500800px;}
._e{margin-left:-15.988800px;}
._16{margin-left:-13.824000px;}
._b{margin-left:-12.739200px;}
._d{margin-left:-11.424000px;}
._f{margin-left:-10.094400px;}
._9{margin-left:-8.256000px;}
._15{margin-left:-7.248000px;}
._6{margin-left:-5.928000px;}
._7{margin-left:-4.560000px;}
._0{margin-left:-3.192000px;}
._3{margin-left:-1.824000px;}
._2{width:1.368000px;}
._5{width:3.192000px;}
._1{width:4.560000px;}
._4{width:6.657600px;}
._11{width:8.172660px;}
._18{width:13.238400px;}
._19{width:38.553600px;}
._1a{width:39.696000px;}
._a{width:41.500800px;}
._17{width:42.782400px;}
._13{width:48.720000px;}
._12{width:50.544060px;}
._8{width:132.698400px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,148,20);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(19,43,94);}
.fc2{color:rgb(12,89,134);}
.fc1{color:rgb(27,56,97);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:120.000000px;}
.fs3{font-size:168.000000px;}
.fs2{font-size:192.000000px;}
.fs1{font-size:240.000000px;}
.fs6{font-size:300.000000px;}
.fs5{font-size:324.000000px;}
.fs0{font-size:456.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:366.444900px;}
.yc{bottom:417.444900px;}
.yb{bottom:466.944900px;}
.y39{bottom:473.930400px;}
.ya{bottom:517.944900px;}
.y9{bottom:567.444900px;}
.y8{bottom:618.444900px;}
.y36{bottom:653.635950px;}
.y7{bottom:669.444900px;}
.y6{bottom:718.944900px;}
.y5{bottom:769.944900px;}
.y38{bottom:978.106200px;}
.y3a{bottom:986.586600px;}
.y37{bottom:997.464450px;}
.y35{bottom:1151.697900px;}
.y33{bottom:1515.237000px;}
.y32{bottom:1566.237000px;}
.y31{bottom:1666.737000px;}
.y30{bottom:1717.737000px;}
.y2f{bottom:1818.237000px;}
.y2e{bottom:1918.737000px;}
.y2d{bottom:1969.737000px;}
.y34{bottom:2016.915000px;}
.y2c{bottom:2020.737000px;}
.y2b{bottom:2127.237000px;}
.y2a{bottom:2178.237000px;}
.y29{bottom:2229.237000px;}
.y28{bottom:2335.737000px;}
.y27{bottom:2386.737000px;}
.y26{bottom:2437.737000px;}
.y25{bottom:2487.237000px;}
.y24{bottom:2522.427000px;}
.y12{bottom:2704.102500px;}
.y11{bottom:2762.602500px;}
.y10{bottom:2819.602500px;}
.yf{bottom:2876.602500px;}
.ye{bottom:2935.102500px;}
.y21{bottom:3079.594500px;}
.y20{bottom:3136.594500px;}
.y1f{bottom:3195.094500px;}
.y1e{bottom:3252.094500px;}
.y1d{bottom:3310.594500px;}
.y23{bottom:3363.364500px;}
.y22{bottom:3399.364500px;}
.y1c{bottom:3496.594500px;}
.y1b{bottom:3555.094500px;}
.y1a{bottom:3612.094500px;}
.y19{bottom:3670.594500px;}
.y18{bottom:3727.594500px;}
.y17{bottom:3784.594500px;}
.y16{bottom:3843.094500px;}
.y15{bottom:3900.094500px;}
.y14{bottom:3958.594500px;}
.y13{bottom:4015.594500px;}
.y4{bottom:4244.646000px;}
.y3{bottom:4306.146000px;}
.y2{bottom:4427.646000px;}
.y1{bottom:4562.646000px;}
.h7{height:87.363281px;}
.h4{height:122.308594px;}
.h5{height:122.390625px;}
.h3{height:139.781250px;}
.h6{height:139.875000px;}
.h2{height:174.726562px;}
.h9{height:199.951172px;}
.h8{height:235.880859px;}
.h1{height:331.980469px;}
.h0{height:4677.000000px;}
.w0{width:3613.500000px;}
.x0{left:0.000000px;}
.x1{left:48.429210px;}
.x2{left:54.429210px;}
.xb{left:75.409545px;}
.xc{left:91.387260px;}
.x9{left:92.682225px;}
.x4{left:102.103935px;}
.x5{left:139.490190px;}
.x6{left:200.990250px;}
.xa{left:1621.738500px;}
.xe{left:1896.906000px;}
.xf{left:2108.215500px;}
.x3{left:2389.947000px;}
.xd{left:2404.435500px;}
.x7{left:2728.630500px;}
.x8{left:2814.130500px;}
.x10{left:3097.462500px;}
@media print{
.v2{vertical-align:-138.187200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:61.546667pt;}
.ls1b{letter-spacing:-5.888000pt;}
.ls12{letter-spacing:-2.346667pt;}
.ls22{letter-spacing:-2.133333pt;}
.ls17{letter-spacing:-1.843200pt;}
.ls20{letter-spacing:-1.732267pt;}
.lsc{letter-spacing:-1.661867pt;}
.lsd{letter-spacing:-1.378133pt;}
.ls1d{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-1.149867pt;}
.lse{letter-spacing:-0.689067pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.582400pt;}
.ls14{letter-spacing:-0.563200pt;}
.ls10{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.563200pt;}
.ls21{letter-spacing:0.582400pt;}
.ls11{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.689067pt;}
.ls6{letter-spacing:1.109333pt;}
.ls7{letter-spacing:1.143467pt;}
.ls3{letter-spacing:1.149867pt;}
.ls13{letter-spacing:1.706667pt;}
.ls18{letter-spacing:1.732267pt;}
.ls8{letter-spacing:1.813333pt;}
.ls0{letter-spacing:1.834667pt;}
.ls16{letter-spacing:1.843200pt;}
.ls5{letter-spacing:2.299733pt;}
.lsf{letter-spacing:2.310400pt;}
.ls2{letter-spacing:2.329600pt;}
.ls1e{letter-spacing:2.346667pt;}
.ls15{letter-spacing:2.389333pt;}
.ls1{letter-spacing:35.605333pt;}
.ls4{letter-spacing:40.938667pt;}
.lsa{letter-spacing:4167.801387pt;}
.ls9{letter-spacing:5276.516533pt;}
.ws3{word-spacing:-114.993067pt;}
.ws4{word-spacing:-112.682667pt;}
.ws9{word-spacing:-61.013333pt;}
.ws8{word-spacing:-59.306667pt;}
.ws7{word-spacing:-56.960000pt;}
.ws1c{word-spacing:-48.554667pt;}
.ws22{word-spacing:-48.008533pt;}
.ws1d{word-spacing:-47.445333pt;}
.ws1f{word-spacing:-46.882133pt;}
.wsc{word-spacing:-45.602133pt;}
.ws1b{word-spacing:-43.814400pt;}
.ws18{word-spacing:-43.246933pt;}
.ws16{word-spacing:-42.664533pt;}
.ws30{word-spacing:-42.097067pt;}
.ws12{word-spacing:-41.514667pt;}
.ws11{word-spacing:-40.932267pt;}
.wse{word-spacing:-40.364800pt;}
.ws2f{word-spacing:-39.782400pt;}
.ws28{word-spacing:-29.653333pt;}
.ws29{word-spacing:-29.013333pt;}
.ws26{word-spacing:-28.480000pt;}
.wsd{word-spacing:-16.106667pt;}
.ws15{word-spacing:-14.314667pt;}
.ws31{word-spacing:-13.693867pt;}
.ws1a{word-spacing:-10.709333pt;}
.ws2d{word-spacing:-10.474667pt;}
.ws13{word-spacing:-9.809067pt;}
.ws14{word-spacing:-9.489067pt;}
.ws21{word-spacing:-9.244267pt;}
.ws2e{word-spacing:-8.755200pt;}
.ws25{word-spacing:-8.320000pt;}
.wsa{word-spacing:-8.013013pt;}
.wsb{word-spacing:-7.355733pt;}
.ws2a{word-spacing:-6.485333pt;}
.ws24{word-spacing:-5.973333pt;}
.wsf{word-spacing:-5.909333pt;}
.ws23{word-spacing:-5.341867pt;}
.ws2c{word-spacing:-4.091733pt;}
.ws20{word-spacing:-3.669333pt;}
.ws27{word-spacing:-1.920000pt;}
.ws10{word-spacing:-0.657067pt;}
.ws32{word-spacing:0.000000pt;}
.ws2b{word-spacing:1.696000pt;}
.ws17{word-spacing:1.777067pt;}
.ws0{word-spacing:2.406187pt;}
.ws2{word-spacing:5.128000pt;}
.ws1{word-spacing:6.651733pt;}
.ws5{word-spacing:10.721920pt;}
.ws6{word-spacing:16.470933pt;}
.ws1e{word-spacing:25.557547pt;}
.ws19{word-spacing:27.893333pt;}
._14{margin-left:-20.586667pt;}
._10{margin-left:-17.446400pt;}
._c{margin-left:-15.556267pt;}
._e{margin-left:-14.212267pt;}
._16{margin-left:-12.288000pt;}
._b{margin-left:-11.323733pt;}
._d{margin-left:-10.154667pt;}
._f{margin-left:-8.972800pt;}
._9{margin-left:-7.338667pt;}
._15{margin-left:-6.442667pt;}
._6{margin-left:-5.269333pt;}
._7{margin-left:-4.053333pt;}
._0{margin-left:-2.837333pt;}
._3{margin-left:-1.621333pt;}
._2{width:1.216000pt;}
._5{width:2.837333pt;}
._1{width:4.053333pt;}
._4{width:5.917867pt;}
._11{width:7.264587pt;}
._18{width:11.767467pt;}
._19{width:34.269867pt;}
._1a{width:35.285333pt;}
._a{width:36.889600pt;}
._17{width:38.028800pt;}
._13{width:43.306667pt;}
._12{width:44.928053pt;}
._8{width:117.954133pt;}
.fs4{font-size:106.666667pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:170.666667pt;}
.fs1{font-size:213.333333pt;}
.fs6{font-size:266.666667pt;}
.fs5{font-size:288.000000pt;}
.fs0{font-size:405.333333pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:325.728800pt;}
.yc{bottom:371.062133pt;}
.yb{bottom:415.062133pt;}
.y39{bottom:421.271467pt;}
.ya{bottom:460.395467pt;}
.y9{bottom:504.395467pt;}
.y8{bottom:549.728800pt;}
.y36{bottom:581.009733pt;}
.y7{bottom:595.062133pt;}
.y6{bottom:639.062133pt;}
.y5{bottom:684.395467pt;}
.y38{bottom:869.427733pt;}
.y3a{bottom:876.965867pt;}
.y37{bottom:886.635067pt;}
.y35{bottom:1023.731467pt;}
.y33{bottom:1346.877333pt;}
.y32{bottom:1392.210667pt;}
.y31{bottom:1481.544000pt;}
.y30{bottom:1526.877333pt;}
.y2f{bottom:1616.210667pt;}
.y2e{bottom:1705.544000pt;}
.y2d{bottom:1750.877333pt;}
.y34{bottom:1792.813333pt;}
.y2c{bottom:1796.210667pt;}
.y2b{bottom:1890.877333pt;}
.y2a{bottom:1936.210667pt;}
.y29{bottom:1981.544000pt;}
.y28{bottom:2076.210667pt;}
.y27{bottom:2121.544000pt;}
.y26{bottom:2166.877333pt;}
.y25{bottom:2210.877333pt;}
.y24{bottom:2242.157333pt;}
.y12{bottom:2403.646667pt;}
.y11{bottom:2455.646667pt;}
.y10{bottom:2506.313333pt;}
.yf{bottom:2556.980000pt;}
.ye{bottom:2608.980000pt;}
.y21{bottom:2737.417333pt;}
.y20{bottom:2788.084000pt;}
.y1f{bottom:2840.084000pt;}
.y1e{bottom:2890.750667pt;}
.y1d{bottom:2942.750667pt;}
.y23{bottom:2989.657333pt;}
.y22{bottom:3021.657333pt;}
.y1c{bottom:3108.084000pt;}
.y1b{bottom:3160.084000pt;}
.y1a{bottom:3210.750667pt;}
.y19{bottom:3262.750667pt;}
.y18{bottom:3313.417333pt;}
.y17{bottom:3364.084000pt;}
.y16{bottom:3416.084000pt;}
.y15{bottom:3466.750667pt;}
.y14{bottom:3518.750667pt;}
.y13{bottom:3569.417333pt;}
.y4{bottom:3773.018667pt;}
.y3{bottom:3827.685333pt;}
.y2{bottom:3935.685333pt;}
.y1{bottom:4055.685333pt;}
.h7{height:77.656250pt;}
.h4{height:108.718750pt;}
.h5{height:108.791667pt;}
.h3{height:124.250000pt;}
.h6{height:124.333333pt;}
.h2{height:155.312500pt;}
.h9{height:177.734375pt;}
.h8{height:209.671875pt;}
.h1{height:295.093750pt;}
.h0{height:4157.333333pt;}
.w0{width:3212.000000pt;}
.x0{left:0.000000pt;}
.x1{left:43.048187pt;}
.x2{left:48.381520pt;}
.xb{left:67.030707pt;}
.xc{left:81.233120pt;}
.x9{left:82.384200pt;}
.x4{left:90.759053pt;}
.x5{left:123.991280pt;}
.x6{left:178.658000pt;}
.xa{left:1441.545333pt;}
.xe{left:1686.138667pt;}
.xf{left:1873.969333pt;}
.x3{left:2124.397333pt;}
.xd{left:2137.276000pt;}
.x7{left:2425.449333pt;}
.x8{left:2501.449333pt;}
.x10{left:2753.300000pt;}
}




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