
    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_f7ae2b8eec51020cd9da0c03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_363cd1d640976326d2871756.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_f409ee2a5f0daa0f1fa6ab8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_b939351d892ba37b6bc5da60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_9cb4d591726db9d0e104d4aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.579000;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_3183b3094adc783305fbc9c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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:ff7;src:url('chunks/assets/font_7603c4ecf09ed70f0bef1830.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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:ff8;src:url('chunks/assets/font_55fdee35082db96b1881d0d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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:ff9;src:url('chunks/assets/font_72c9519bea15d0bca0474f18.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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:ffa;src:url('chunks/assets/font_89368d0f4540e2e797fab665.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:25.074785px;}
.ls2{letter-spacing:29.885698px;}
.ls1{letter-spacing:29.886352px;}
.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;}
}
.ws2{word-spacing:-0.059776px;}
.ws31{word-spacing:-0.053798px;}
.wsa{word-spacing:0.000000px;}
.ws18{word-spacing:9.159350px;}
.ws17{word-spacing:9.166336px;}
.ws15{word-spacing:9.172019px;}
.ws3{word-spacing:10.550436px;}
.wse{word-spacing:17.454545px;}
.ws32{word-spacing:18.291415px;}
.ws10{word-spacing:18.345213px;}
.ws34{word-spacing:18.377523px;}
.ws19{word-spacing:18.396221px;}
.ws11{word-spacing:18.399012px;}
.ws1a{word-spacing:19.008717px;}
.ws33{word-spacing:19.636372px;}
.ws16{word-spacing:19.690170px;}
.wsb{word-spacing:19.785803px;}
.ws2b{word-spacing:19.811082px;}
.ws9{word-spacing:19.811480px;}
.ws21{word-spacing:19.825525px;}
.ws13{word-spacing:19.828022px;}
.ws14{word-spacing:19.835822px;}
.ws27{word-spacing:19.845329px;}
.ws1{word-spacing:19.845579px;}
.ws28{word-spacing:19.848724px;}
.ws1d{word-spacing:19.862014px;}
.ws8{word-spacing:19.865037px;}
.ws24{word-spacing:19.866109px;}
.ws29{word-spacing:19.866225px;}
.wsd{word-spacing:19.867304px;}
.ws20{word-spacing:19.867385px;}
.ws1f{word-spacing:19.868213px;}
.ws22{word-spacing:19.868551px;}
.ws2c{word-spacing:19.869634px;}
.ws2a{word-spacing:19.871294px;}
.ws2f{word-spacing:19.878700px;}
.ws1c{word-spacing:19.879157px;}
.ws12{word-spacing:19.882647px;}
.ws1e{word-spacing:19.884409px;}
.ws2e{word-spacing:19.884799px;}
.ws25{word-spacing:19.887316px;}
.ws30{word-spacing:19.890644px;}
.ws2d{word-spacing:19.898574px;}
.ws5{word-spacing:19.900869px;}
.ws26{word-spacing:19.905355px;}
.wsc{word-spacing:19.906741px;}
.wsf{word-spacing:19.907728px;}
.ws1b{word-spacing:20.921544px;}
.ws7{word-spacing:21.818182px;}
.ws6{word-spacing:21.877957px;}
.ws4{word-spacing:23.312582px;}
.ws23{word-spacing:27.889013px;}
.ws0{word-spacing:27.975090px;}
._e{margin-left:-9.922789px;}
._10{margin-left:-4.961395px;}
._0{margin-left:-2.151930px;}
._7{margin-left:-1.016190px;}
._d{width:1.083138px;}
._1{width:2.324084px;}
._5{width:4.602740px;}
._2{width:5.977584px;}
._c{width:9.433827px;}
._b{width:10.819427px;}
._9{width:16.318804px;}
._a{width:18.112079px;}
._8{width:20.103523px;}
._6{width:21.877957px;}
._3{width:544.204196px;}
._f{width:912.889971px;}
._4{width:928.771971px;}
.fc6{color:rgb(251,232,85);}
.fc4{color:rgb(68,21,151);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(86,188,182);}
.fc0{color:rgb(90,28,202);}
.fs2{font-size:29.887920px;}
.fs4{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.321000px;}
.y6{bottom:26.017500px;}
.y44{bottom:44.119500px;}
.y4e{bottom:52.486500px;}
.y14{bottom:55.231500px;}
.y5{bottom:56.706000px;}
.y43{bottom:63.921000px;}
.y2d{bottom:66.619500px;}
.y64{bottom:66.774000px;}
.y13{bottom:77.647500px;}
.y6f{bottom:82.120500px;}
.y42{bottom:84.468000px;}
.y63{bottom:84.706500px;}
.y2c{bottom:89.409000px;}
.y12{bottom:98.196000px;}
.y6e{bottom:101.920500px;}
.y62{bottom:102.639000px;}
.y79{bottom:103.381500px;}
.y58{bottom:103.830000px;}
.y41{bottom:104.269500px;}
.y2b{bottom:105.847500px;}
.y37{bottom:110.215500px;}
.y4d{bottom:112.939500px;}
.y4{bottom:112.966500px;}
.y11{bottom:117.996000px;}
.y57{bottom:121.762500px;}
.y2a{bottom:122.286000px;}
.y61{bottom:122.440500px;}
.y6d{bottom:122.469000px;}
.y78{bottom:125.797500px;}
.y36{bottom:126.652500px;}
.y40{bottom:126.685500px;}
.y3{bottom:130.899000px;}
.y10{bottom:138.544500px;}
.y56{bottom:139.695000px;}
.y29{bottom:141.340500px;}
.y6c{bottom:142.269000px;}
.y35{bottom:143.091000px;}
.y60{bottom:144.855000px;}
.y77{bottom:148.213500px;}
.y3f{bottom:148.395000px;}
.yf{bottom:158.344500px;}
.y4c{bottom:158.482500px;}
.y34{bottom:159.529500px;}
.y28{bottom:160.393500px;}
.y55{bottom:162.028500px;}
.y6b{bottom:162.817500px;}
.y5f{bottom:167.271000px;}
.y76{bottom:170.629500px;}
.y33{bottom:175.968000px;}
.y27{bottom:178.326000px;}
.ye{bottom:180.055500px;}
.y4b{bottom:180.898500px;}
.y6a{bottom:182.619000px;}
.y1c{bottom:187.425000px;}
.y5e{bottom:188.982000px;}
.y2{bottom:189.475500px;}
.y3e{bottom:192.276000px;}
.y32{bottom:193.153500px;}
.y75{bottom:193.419000px;}
.y26{bottom:200.742000px;}
.y69{bottom:203.166000px;}
.y4a{bottom:203.314500px;}
.y20{bottom:204.112500px;}
.y54{bottom:205.078500px;}
.y19{bottom:205.357500px;}
.y1b{bottom:209.841000px;}
.y74{bottom:209.857500px;}
.y3d{bottom:210.208500px;}
.y31{bottom:211.459500px;}
.y1{bottom:216.373500px;}
.y25{bottom:220.543500px;}
.y5d{bottom:222.378000px;}
.y68{bottom:222.967500px;}
.yd{bottom:223.105500px;}
.y49{bottom:223.863000px;}
.y73{bottom:224.055000px;}
.y53{bottom:224.878500px;}
.y1f{bottom:226.528500px;}
.y18{bottom:227.773500px;}
.y3c{bottom:230.008500px;}
.y1a{bottom:230.389500px;}
.y30{bottom:230.514000px;}
.y24{bottom:241.090500px;}
.y5c{bottom:242.179500px;}
.y72{bottom:242.734500px;}
.yc{bottom:242.905500px;}
.y48{bottom:243.663000px;}
.y67{bottom:245.383500px;}
.y52{bottom:245.427000px;}
.y1e{bottom:248.944500px;}
.y17{bottom:250.189500px;}
.y2f{bottom:250.314000px;}
.y3b{bottom:250.557000px;}
.y71{bottom:259.920000px;}
.y23{bottom:260.892000px;}
.yb{bottom:263.454000px;}
.y47{bottom:264.211500px;}
.y5b{bottom:264.595500px;}
.y51{bottom:265.227000px;}
.y66{bottom:267.799500px;}
.y3a{bottom:268.489500px;}
.y1d{bottom:271.360500px;}
.y16{bottom:272.605500px;}
.y2e{bottom:272.730000px;}
.y70{bottom:278.226000px;}
.ya{bottom:283.254000px;}
.y22{bottom:283.308000px;}
.y46{bottom:284.011500px;}
.y5a{bottom:285.144000px;}
.y50{bottom:285.775500px;}
.y39{bottom:288.291000px;}
.y65{bottom:290.215500px;}
.y15{bottom:293.071500px;}
.y21{bottom:303.855000px;}
.y59{bottom:304.944000px;}
.y9{bottom:304.965000px;}
.y45{bottom:306.427500px;}
.y4f{bottom:309.354000px;}
.y38{bottom:310.705500px;}
.y8{bottom:351.091500px;}
.h5{height:22.415940px;}
.hb{height:31.384710px;}
.h9{height:37.361880px;}
.hd{height:38.641478px;}
.hc{height:38.647478px;}
.h4{height:41.843088px;}
.h3{height:44.831880px;}
.ha{height:45.425618px;}
.h7{height:45.431618px;}
.he{height:47.611478px;}
.h6{height:51.287679px;}
.h8{height:52.901618px;}
.h2{height:61.545198px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:9.963000px;}
.x4{left:12.756000px;}
.xf{left:16.174500px;}
.x8{left:27.210000px;}
.x9{left:38.002500px;}
.x5{left:42.519000px;}
.x6{left:53.313000px;}
.x7{left:72.408000px;}
.x1{left:85.039500px;}
.x11{left:102.295500px;}
.x10{left:205.830000px;}
.xa{left:244.911000px;}
.xb{left:255.703500px;}
.xc{left:274.798500px;}
.x2{left:283.441500px;}
.xd{left:462.613500px;}
.xe{left:473.406000px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:22.288698pt;}
.ls2{letter-spacing:26.565065pt;}
.ls1{letter-spacing:26.565646pt;}
.ws2{word-spacing:-0.053134pt;}
.ws31{word-spacing:-0.047821pt;}
.wsa{word-spacing:0.000000pt;}
.ws18{word-spacing:8.141644pt;}
.ws17{word-spacing:8.147854pt;}
.ws15{word-spacing:8.152906pt;}
.ws3{word-spacing:9.378165pt;}
.wse{word-spacing:15.515151pt;}
.ws32{word-spacing:16.259036pt;}
.ws10{word-spacing:16.306856pt;}
.ws34{word-spacing:16.335576pt;}
.ws19{word-spacing:16.352196pt;}
.ws11{word-spacing:16.354677pt;}
.ws1a{word-spacing:16.896637pt;}
.ws33{word-spacing:17.454553pt;}
.ws16{word-spacing:17.502374pt;}
.wsb{word-spacing:17.587380pt;}
.ws2b{word-spacing:17.609851pt;}
.ws9{word-spacing:17.610204pt;}
.ws21{word-spacing:17.622689pt;}
.ws13{word-spacing:17.624909pt;}
.ws14{word-spacing:17.631842pt;}
.ws27{word-spacing:17.640293pt;}
.ws1{word-spacing:17.640515pt;}
.ws28{word-spacing:17.643310pt;}
.ws1d{word-spacing:17.655123pt;}
.ws8{word-spacing:17.657810pt;}
.ws24{word-spacing:17.658763pt;}
.ws29{word-spacing:17.658867pt;}
.wsd{word-spacing:17.659826pt;}
.ws20{word-spacing:17.659898pt;}
.ws1f{word-spacing:17.660634pt;}
.ws22{word-spacing:17.660934pt;}
.ws2c{word-spacing:17.661897pt;}
.ws2a{word-spacing:17.663372pt;}
.ws2f{word-spacing:17.669956pt;}
.ws1c{word-spacing:17.670361pt;}
.ws12{word-spacing:17.673464pt;}
.ws1e{word-spacing:17.675030pt;}
.ws2e{word-spacing:17.675377pt;}
.ws25{word-spacing:17.677614pt;}
.ws30{word-spacing:17.680573pt;}
.ws2d{word-spacing:17.687622pt;}
.ws5{word-spacing:17.689661pt;}
.ws26{word-spacing:17.693649pt;}
.wsc{word-spacing:17.694881pt;}
.wsf{word-spacing:17.695758pt;}
.ws1b{word-spacing:18.596928pt;}
.ws7{word-spacing:19.393939pt;}
.ws6{word-spacing:19.447073pt;}
.ws4{word-spacing:20.722295pt;}
.ws23{word-spacing:24.790234pt;}
.ws0{word-spacing:24.866747pt;}
._e{margin-left:-8.820257pt;}
._10{margin-left:-4.410129pt;}
._0{margin-left:-1.912827pt;}
._7{margin-left:-0.903280pt;}
._d{width:0.962790pt;}
._1{width:2.065853pt;}
._5{width:4.091324pt;}
._2{width:5.313408pt;}
._c{width:8.385624pt;}
._b{width:9.617268pt;}
._9{width:14.505604pt;}
._a{width:16.099626pt;}
._8{width:17.869798pt;}
._6{width:19.447073pt;}
._3{width:483.737063pt;}
._f{width:811.457752pt;}
._4{width:825.575086pt;}
.fs2{font-size:26.567040pt;}
.fs4{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.952000pt;}
.y6{bottom:23.126667pt;}
.y44{bottom:39.217333pt;}
.y4e{bottom:46.654667pt;}
.y14{bottom:49.094667pt;}
.y5{bottom:50.405333pt;}
.y43{bottom:56.818667pt;}
.y2d{bottom:59.217333pt;}
.y64{bottom:59.354667pt;}
.y13{bottom:69.020000pt;}
.y6f{bottom:72.996000pt;}
.y42{bottom:75.082667pt;}
.y63{bottom:75.294667pt;}
.y2c{bottom:79.474667pt;}
.y12{bottom:87.285333pt;}
.y6e{bottom:90.596000pt;}
.y62{bottom:91.234667pt;}
.y79{bottom:91.894667pt;}
.y58{bottom:92.293333pt;}
.y41{bottom:92.684000pt;}
.y2b{bottom:94.086667pt;}
.y37{bottom:97.969333pt;}
.y4d{bottom:100.390667pt;}
.y4{bottom:100.414667pt;}
.y11{bottom:104.885333pt;}
.y57{bottom:108.233333pt;}
.y2a{bottom:108.698667pt;}
.y61{bottom:108.836000pt;}
.y6d{bottom:108.861333pt;}
.y78{bottom:111.820000pt;}
.y36{bottom:112.580000pt;}
.y40{bottom:112.609333pt;}
.y3{bottom:116.354667pt;}
.y10{bottom:123.150667pt;}
.y56{bottom:124.173333pt;}
.y29{bottom:125.636000pt;}
.y6c{bottom:126.461333pt;}
.y35{bottom:127.192000pt;}
.y60{bottom:128.760000pt;}
.y77{bottom:131.745333pt;}
.y3f{bottom:131.906667pt;}
.yf{bottom:140.750667pt;}
.y4c{bottom:140.873333pt;}
.y34{bottom:141.804000pt;}
.y28{bottom:142.572000pt;}
.y55{bottom:144.025333pt;}
.y6b{bottom:144.726667pt;}
.y5f{bottom:148.685333pt;}
.y76{bottom:151.670667pt;}
.y33{bottom:156.416000pt;}
.y27{bottom:158.512000pt;}
.ye{bottom:160.049333pt;}
.y4b{bottom:160.798667pt;}
.y6a{bottom:162.328000pt;}
.y1c{bottom:166.600000pt;}
.y5e{bottom:167.984000pt;}
.y2{bottom:168.422667pt;}
.y3e{bottom:170.912000pt;}
.y32{bottom:171.692000pt;}
.y75{bottom:171.928000pt;}
.y26{bottom:178.437333pt;}
.y69{bottom:180.592000pt;}
.y4a{bottom:180.724000pt;}
.y20{bottom:181.433333pt;}
.y54{bottom:182.292000pt;}
.y19{bottom:182.540000pt;}
.y1b{bottom:186.525333pt;}
.y74{bottom:186.540000pt;}
.y3d{bottom:186.852000pt;}
.y31{bottom:187.964000pt;}
.y1{bottom:192.332000pt;}
.y25{bottom:196.038667pt;}
.y5d{bottom:197.669333pt;}
.y68{bottom:198.193333pt;}
.yd{bottom:198.316000pt;}
.y49{bottom:198.989333pt;}
.y73{bottom:199.160000pt;}
.y53{bottom:199.892000pt;}
.y1f{bottom:201.358667pt;}
.y18{bottom:202.465333pt;}
.y3c{bottom:204.452000pt;}
.y1a{bottom:204.790667pt;}
.y30{bottom:204.901333pt;}
.y24{bottom:214.302667pt;}
.y5c{bottom:215.270667pt;}
.y72{bottom:215.764000pt;}
.yc{bottom:215.916000pt;}
.y48{bottom:216.589333pt;}
.y67{bottom:218.118667pt;}
.y52{bottom:218.157333pt;}
.y1e{bottom:221.284000pt;}
.y17{bottom:222.390667pt;}
.y2f{bottom:222.501333pt;}
.y3b{bottom:222.717333pt;}
.y71{bottom:231.040000pt;}
.y23{bottom:231.904000pt;}
.yb{bottom:234.181333pt;}
.y47{bottom:234.854667pt;}
.y5b{bottom:235.196000pt;}
.y51{bottom:235.757333pt;}
.y66{bottom:238.044000pt;}
.y3a{bottom:238.657333pt;}
.y1d{bottom:241.209333pt;}
.y16{bottom:242.316000pt;}
.y2e{bottom:242.426667pt;}
.y70{bottom:247.312000pt;}
.ya{bottom:251.781333pt;}
.y22{bottom:251.829333pt;}
.y46{bottom:252.454667pt;}
.y5a{bottom:253.461333pt;}
.y50{bottom:254.022667pt;}
.y39{bottom:256.258667pt;}
.y65{bottom:257.969333pt;}
.y15{bottom:260.508000pt;}
.y21{bottom:270.093333pt;}
.y59{bottom:271.061333pt;}
.y9{bottom:271.080000pt;}
.y45{bottom:272.380000pt;}
.y4f{bottom:274.981333pt;}
.y38{bottom:276.182667pt;}
.y8{bottom:312.081333pt;}
.h5{height:19.925280pt;}
.hb{height:27.897520pt;}
.h9{height:33.210560pt;}
.hd{height:34.347980pt;}
.hc{height:34.353314pt;}
.h4{height:37.193856pt;}
.h3{height:39.850560pt;}
.ha{height:40.378327pt;}
.h7{height:40.383661pt;}
.he{height:42.321314pt;}
.h6{height:45.589048pt;}
.h8{height:47.023661pt;}
.h2{height:54.706843pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:8.856000pt;}
.x4{left:11.338667pt;}
.xf{left:14.377333pt;}
.x8{left:24.186667pt;}
.x9{left:33.780000pt;}
.x5{left:37.794667pt;}
.x6{left:47.389333pt;}
.x7{left:64.362667pt;}
.x1{left:75.590667pt;}
.x11{left:90.929333pt;}
.x10{left:182.960000pt;}
.xa{left:217.698667pt;}
.xb{left:227.292000pt;}
.xc{left:244.265333pt;}
.x2{left:251.948000pt;}
.xd{left:411.212000pt;}
.xe{left:420.805333pt;}
}




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