
    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_b81b4c7f4084fb4fb34ab31d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9bb1a7c28a9ed1dfc5d38635.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.034000;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_c36584691da8a74807b3be8f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_3a7fce343a47a495329dec2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_085af76e1249c08c0df7dd00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b9a5760f4284d2634176532b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_9ed883b3e6eada18f30fb0d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_11a289708bb95ee633c8dc54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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:-10.218000px;}
.v3{vertical-align:-8.574000px;}
.v1{vertical-align:-4.722000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:48.762893px;}
.ls4{letter-spacing:51.294893px;}
.ls1{letter-spacing:52.758479px;}
.ls3{letter-spacing:86.458343px;}
.ls2{letter-spacing:93.682343px;}
.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;}
}
.wsd{word-spacing:-32.517845px;}
.ws1b{word-spacing:-29.881822px;}
.ws1a{word-spacing:-21.717836px;}
.wsf{word-spacing:-21.652382px;}
.ws10{word-spacing:-19.899297px;}
.wsa{word-spacing:-11.768737px;}
.wsc{word-spacing:-11.703282px;}
.ws3{word-spacing:-10.852373px;}
.ws18{word-spacing:-10.841739px;}
.ws9{word-spacing:-10.786918px;}
.ws8{word-spacing:-9.976548px;}
.ws15{word-spacing:-0.065455px;}
.ws14{word-spacing:-0.059776px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:0.209455px;}
.ws11{word-spacing:9.883803px;}
.ws13{word-spacing:9.896935px;}
.ws12{word-spacing:9.908777px;}
.ws16{word-spacing:10.797019px;}
.ws17{word-spacing:10.804627px;}
.ws1c{word-spacing:13.600198px;}
.ws1{word-spacing:13.987584px;}
.ws0{word-spacing:14.023450px;}
.ws4{word-spacing:16.880672px;}
.ws19{word-spacing:21.585997px;}
.ws7{word-spacing:27.200395px;}
.ws2{word-spacing:27.286472px;}
.ws5{word-spacing:777.693706px;}
.wse{word-spacing:777.694598px;}
._3{margin-left:-5.387900px;}
._2{margin-left:-2.324084px;}
._0{margin-left:-1.183565px;}
._1{width:1.111834px;}
._5{width:2.389539px;}
._6{width:10.752444px;}
._7{width:11.841941px;}
._9{width:19.905275px;}
._8{width:21.573119px;}
._a{width:27.372550px;}
._4{width:102.056565px;}
.fca{color:rgb(255,0,0);}
.fc9{color:rgb(51,51,178);}
.fc8{color:rgb(204,204,255);}
.fc6{color:rgb(153,153,217);}
.fc5{color:rgb(235,235,247);}
.fc7{color:rgb(251,251,253);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.486500px;}
.y6d{bottom:19.948500px;}
.y6f{bottom:25.005000px;}
.y4c{bottom:32.760000px;}
.y71{bottom:35.191500px;}
.y6c{bottom:40.272000px;}
.y3f{bottom:42.256500px;}
.y37{bottom:43.536000px;}
.y6e{bottom:45.330000px;}
.y4d{bottom:52.411500px;}
.y70{bottom:55.515000px;}
.y17{bottom:59.763000px;}
.y6b{bottom:60.595500px;}
.y3e{bottom:62.580000px;}
.y36{bottom:63.861000px;}
.y49{bottom:70.702500px;}
.y57{bottom:71.017500px;}
.yb{bottom:73.572000px;}
.y2a{bottom:77.950500px;}
.y35{bottom:84.184500px;}
.y3d{bottom:87.387000px;}
.y48{bottom:91.026000px;}
.ya{bottom:93.897000px;}
.y16{bottom:94.168500px;}
.y56{bottom:95.824500px;}
.y6a{bottom:97.210500px;}
.y29{bottom:98.274000px;}
.y3c{bottom:107.710500px;}
.y93{bottom:107.736000px;}
.y34{bottom:108.991500px;}
.y15{bottom:114.492000px;}
.y69{bottom:115.144500px;}
.y47{bottom:115.833000px;}
.y8c{bottom:117.043500px;}
.y55{bottom:118.077000px;}
.y28{bottom:123.081000px;}
.y77{bottom:125.673000px;}
.y33{bottom:129.315000px;}
.y99{bottom:131.118000px;}
.y3b{bottom:132.517500px;}
.y92{bottom:132.543000px;}
.y68{bottom:133.077000px;}
.y9{bottom:133.567500px;}
.y60{bottom:135.273000px;}
.y14{bottom:135.994500px;}
.y46{bottom:136.156500px;}
.y8b{bottom:137.367000px;}
.y81{bottom:140.083500px;}
.y54{bottom:140.955000px;}
.y27{bottom:143.404500px;}
.y76{bottom:145.998000px;}
.y8{bottom:147.763500px;}
.y32{bottom:149.638500px;}
.y98{bottom:152.038500px;}
.y67{bottom:153.153000px;}
.y7b{bottom:155.442000px;}
.y91{bottom:157.350000px;}
.y20{bottom:158.287500px;}
.y5f{bottom:160.080000px;}
.y80{bottom:160.159500px;}
.y45{bottom:160.963500px;}
.y8a{bottom:162.174000px;}
.y26{bottom:163.728000px;}
.y3a{bottom:164.583000px;}
.y53{bottom:165.762000px;}
.y66{bottom:168.942000px;}
.y31{bottom:169.962000px;}
.y13{bottom:170.400000px;}
.y75{bottom:170.805000px;}
.y97{bottom:174.454500px;}
.y5e{bottom:178.012500px;}
.y7f{bottom:178.092000px;}
.y1f{bottom:178.612500px;}
.y7a{bottom:180.249000px;}
.y44{bottom:181.287000px;}
.y90{bottom:182.157000px;}
.y89{bottom:182.499000px;}
.y7{bottom:184.857000px;}
.y52{bottom:188.014500px;}
.y25{bottom:188.535000px;}
.y65{bottom:189.018000px;}
.y39{bottom:189.390000px;}
.y30{bottom:190.287000px;}
.y12{bottom:190.723500px;}
.y7e{bottom:193.882500px;}
.y96{bottom:195.376500px;}
.y74{bottom:195.612000px;}
.y5d{bottom:195.946500px;}
.y1e{bottom:198.936000px;}
.y79{bottom:200.572500px;}
.y43{bottom:206.094000px;}
.y64{bottom:206.950500px;}
.y8f{bottom:206.964000px;}
.y88{bottom:207.306000px;}
.y24{bottom:208.860000px;}
.y2f{bottom:210.610500px;}
.y51{bottom:210.892500px;}
.y11{bottom:212.226000px;}
.y5c{bottom:213.879000px;}
.y7d{bottom:213.958500px;}
.y38{bottom:214.197000px;}
.y95{bottom:217.792500px;}
.y1d{bottom:219.259500px;}
.y73{bottom:220.419000px;}
.y63{bottom:222.741000px;}
.y87{bottom:225.238500px;}
.y78{bottom:225.379500px;}
.y23{bottom:229.183500px;}
.y42{bottom:230.901000px;}
.y2e{bottom:230.934000px;}
.y8e{bottom:231.771000px;}
.y5b{bottom:231.811500px;}
.y7c{bottom:232.737000px;}
.y50{bottom:235.699500px;}
.y1c{bottom:237.192000px;}
.y94{bottom:238.714500px;}
.y83{bottom:240.556500px;}
.y62{bottom:242.817000px;}
.y72{bottom:245.226000px;}
.y86{bottom:246.159000px;}
.y10{bottom:246.631500px;}
.y6{bottom:249.394500px;}
.y22{bottom:249.507000px;}
.y5a{bottom:249.744000px;}
.y41{bottom:251.224500px;}
.y2d{bottom:251.257500px;}
.y1b{bottom:255.124500px;}
.y8d{bottom:256.578000px;}
.y4f{bottom:260.506500px;}
.y82{bottom:260.881500px;}
.y61{bottom:261.594000px;}
.yf{bottom:266.955000px;}
.y59{bottom:270.666000px;}
.y1a{bottom:273.058500px;}
.y21{bottom:274.314000px;}
.y2c{bottom:274.570500px;}
.y40{bottom:276.031500px;}
.y5{bottom:276.294000px;}
.y85{bottom:278.020500px;}
.y4b{bottom:279.372000px;}
.y4e{bottom:282.759000px;}
.ye{bottom:288.459000px;}
.y19{bottom:290.991000px;}
.y58{bottom:293.082000px;}
.y2b{bottom:294.894000px;}
.y84{bottom:298.344000px;}
.y4a{bottom:299.695500px;}
.y18{bottom:309.670500px;}
.yd{bottom:339.139500px;}
.y4{bottom:367.551000px;}
.y3{bottom:378.012000px;}
.y2{bottom:388.473000px;}
.y1{bottom:398.934000px;}
.h2{height:26.935066px;}
.h5{height:34.574294px;}
.ha{height:36.317476px;}
.hd{height:36.323476px;}
.h9{height:38.938405px;}
.hb{height:41.544042px;}
.h6{height:44.434405px;}
.h7{height:44.440405px;}
.h8{height:44.891476px;}
.hc{height:45.490947px;}
.h4{height:49.156405px;}
.h3{height:71.530153px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xc{left:19.591500px;}
.xd{left:42.981000px;}
.x18{left:44.013000px;}
.x19{left:57.160500px;}
.x14{left:61.227000px;}
.x12{left:73.476000px;}
.xf{left:75.247500px;}
.xe{left:78.883500px;}
.xb{left:82.531500px;}
.x1a{left:90.520500px;}
.x16{left:93.955500px;}
.xa{left:103.812000px;}
.x15{left:106.203000px;}
.x10{left:107.974500px;}
.x5{left:116.146500px;}
.x8{left:125.272500px;}
.x13{left:135.741000px;}
.x3{left:144.588000px;}
.x1{left:147.894000px;}
.x17{left:168.468000px;}
.x6{left:173.673000px;}
.x9{left:187.711500px;}
.x2{left:194.568000px;}
.x4{left:212.170500px;}
.x7{left:222.091500px;}
.x11{left:284.881500px;}
@media print{
.v2{vertical-align:-9.082667pt;}
.v3{vertical-align:-7.621333pt;}
.v1{vertical-align:-4.197333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:43.344794pt;}
.ls4{letter-spacing:45.595460pt;}
.ls1{letter-spacing:46.896426pt;}
.ls3{letter-spacing:76.851860pt;}
.ls2{letter-spacing:83.273193pt;}
.wsd{word-spacing:-28.904751pt;}
.ws1b{word-spacing:-26.561620pt;}
.ws1a{word-spacing:-19.304743pt;}
.wsf{word-spacing:-19.246561pt;}
.ws10{word-spacing:-17.688264pt;}
.wsa{word-spacing:-10.461100pt;}
.wsc{word-spacing:-10.402918pt;}
.ws3{word-spacing:-9.646553pt;}
.ws18{word-spacing:-9.637101pt;}
.ws9{word-spacing:-9.588372pt;}
.ws8{word-spacing:-8.868042pt;}
.ws15{word-spacing:-0.058182pt;}
.ws14{word-spacing:-0.053134pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:0.186182pt;}
.ws11{word-spacing:8.785603pt;}
.ws13{word-spacing:8.797275pt;}
.ws12{word-spacing:8.807802pt;}
.ws16{word-spacing:9.597350pt;}
.ws17{word-spacing:9.604113pt;}
.ws1c{word-spacing:12.089065pt;}
.ws1{word-spacing:12.433408pt;}
.ws0{word-spacing:12.465289pt;}
.ws4{word-spacing:15.005042pt;}
.ws19{word-spacing:19.187553pt;}
.ws7{word-spacing:24.178129pt;}
.ws2{word-spacing:24.254642pt;}
.ws5{word-spacing:691.283294pt;}
.wse{word-spacing:691.284087pt;}
._3{margin-left:-4.789244pt;}
._2{margin-left:-2.065853pt;}
._0{margin-left:-1.052058pt;}
._1{width:0.988297pt;}
._5{width:2.124035pt;}
._6{width:9.557728pt;}
._7{width:10.526170pt;}
._9{width:17.693578pt;}
._8{width:19.176106pt;}
._a{width:24.331155pt;}
._4{width:90.716947pt;}
.fs0{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.988000pt;}
.y6d{bottom:17.732000pt;}
.y6f{bottom:22.226667pt;}
.y4c{bottom:29.120000pt;}
.y71{bottom:31.281333pt;}
.y6c{bottom:35.797333pt;}
.y3f{bottom:37.561333pt;}
.y37{bottom:38.698667pt;}
.y6e{bottom:40.293333pt;}
.y4d{bottom:46.588000pt;}
.y70{bottom:49.346667pt;}
.y17{bottom:53.122667pt;}
.y6b{bottom:53.862667pt;}
.y3e{bottom:55.626667pt;}
.y36{bottom:56.765333pt;}
.y49{bottom:62.846667pt;}
.y57{bottom:63.126667pt;}
.yb{bottom:65.397333pt;}
.y2a{bottom:69.289333pt;}
.y35{bottom:74.830667pt;}
.y3d{bottom:77.677333pt;}
.y48{bottom:80.912000pt;}
.ya{bottom:83.464000pt;}
.y16{bottom:83.705333pt;}
.y56{bottom:85.177333pt;}
.y6a{bottom:86.409333pt;}
.y29{bottom:87.354667pt;}
.y3c{bottom:95.742667pt;}
.y93{bottom:95.765333pt;}
.y34{bottom:96.881333pt;}
.y15{bottom:101.770667pt;}
.y69{bottom:102.350667pt;}
.y47{bottom:102.962667pt;}
.y8c{bottom:104.038667pt;}
.y55{bottom:104.957333pt;}
.y28{bottom:109.405333pt;}
.y77{bottom:111.709333pt;}
.y33{bottom:114.946667pt;}
.y99{bottom:116.549333pt;}
.y3b{bottom:117.793333pt;}
.y92{bottom:117.816000pt;}
.y68{bottom:118.290667pt;}
.y9{bottom:118.726667pt;}
.y60{bottom:120.242667pt;}
.y14{bottom:120.884000pt;}
.y46{bottom:121.028000pt;}
.y8b{bottom:122.104000pt;}
.y81{bottom:124.518667pt;}
.y54{bottom:125.293333pt;}
.y27{bottom:127.470667pt;}
.y76{bottom:129.776000pt;}
.y8{bottom:131.345333pt;}
.y32{bottom:133.012000pt;}
.y98{bottom:135.145333pt;}
.y67{bottom:136.136000pt;}
.y7b{bottom:138.170667pt;}
.y91{bottom:139.866667pt;}
.y20{bottom:140.700000pt;}
.y5f{bottom:142.293333pt;}
.y80{bottom:142.364000pt;}
.y45{bottom:143.078667pt;}
.y8a{bottom:144.154667pt;}
.y26{bottom:145.536000pt;}
.y3a{bottom:146.296000pt;}
.y53{bottom:147.344000pt;}
.y66{bottom:150.170667pt;}
.y31{bottom:151.077333pt;}
.y13{bottom:151.466667pt;}
.y75{bottom:151.826667pt;}
.y97{bottom:155.070667pt;}
.y5e{bottom:158.233333pt;}
.y7f{bottom:158.304000pt;}
.y1f{bottom:158.766667pt;}
.y7a{bottom:160.221333pt;}
.y44{bottom:161.144000pt;}
.y90{bottom:161.917333pt;}
.y89{bottom:162.221333pt;}
.y7{bottom:164.317333pt;}
.y52{bottom:167.124000pt;}
.y25{bottom:167.586667pt;}
.y65{bottom:168.016000pt;}
.y39{bottom:168.346667pt;}
.y30{bottom:169.144000pt;}
.y12{bottom:169.532000pt;}
.y7e{bottom:172.340000pt;}
.y96{bottom:173.668000pt;}
.y74{bottom:173.877333pt;}
.y5d{bottom:174.174667pt;}
.y1e{bottom:176.832000pt;}
.y79{bottom:178.286667pt;}
.y43{bottom:183.194667pt;}
.y64{bottom:183.956000pt;}
.y8f{bottom:183.968000pt;}
.y88{bottom:184.272000pt;}
.y24{bottom:185.653333pt;}
.y2f{bottom:187.209333pt;}
.y51{bottom:187.460000pt;}
.y11{bottom:188.645333pt;}
.y5c{bottom:190.114667pt;}
.y7d{bottom:190.185333pt;}
.y38{bottom:190.397333pt;}
.y95{bottom:193.593333pt;}
.y1d{bottom:194.897333pt;}
.y73{bottom:195.928000pt;}
.y63{bottom:197.992000pt;}
.y87{bottom:200.212000pt;}
.y78{bottom:200.337333pt;}
.y23{bottom:203.718667pt;}
.y42{bottom:205.245333pt;}
.y2e{bottom:205.274667pt;}
.y8e{bottom:206.018667pt;}
.y5b{bottom:206.054667pt;}
.y7c{bottom:206.877333pt;}
.y50{bottom:209.510667pt;}
.y1c{bottom:210.837333pt;}
.y94{bottom:212.190667pt;}
.y83{bottom:213.828000pt;}
.y62{bottom:215.837333pt;}
.y72{bottom:217.978667pt;}
.y86{bottom:218.808000pt;}
.y10{bottom:219.228000pt;}
.y6{bottom:221.684000pt;}
.y22{bottom:221.784000pt;}
.y5a{bottom:221.994667pt;}
.y41{bottom:223.310667pt;}
.y2d{bottom:223.340000pt;}
.y1b{bottom:226.777333pt;}
.y8d{bottom:228.069333pt;}
.y4f{bottom:231.561333pt;}
.y82{bottom:231.894667pt;}
.y61{bottom:232.528000pt;}
.yf{bottom:237.293333pt;}
.y59{bottom:240.592000pt;}
.y1a{bottom:242.718667pt;}
.y21{bottom:243.834667pt;}
.y2c{bottom:244.062667pt;}
.y40{bottom:245.361333pt;}
.y5{bottom:245.594667pt;}
.y85{bottom:247.129333pt;}
.y4b{bottom:248.330667pt;}
.y4e{bottom:251.341333pt;}
.ye{bottom:256.408000pt;}
.y19{bottom:258.658667pt;}
.y58{bottom:260.517333pt;}
.y2b{bottom:262.128000pt;}
.y84{bottom:265.194667pt;}
.y4a{bottom:266.396000pt;}
.y18{bottom:275.262667pt;}
.yd{bottom:301.457333pt;}
.y4{bottom:326.712000pt;}
.y3{bottom:336.010667pt;}
.y2{bottom:345.309333pt;}
.y1{bottom:354.608000pt;}
.h2{height:23.942281pt;}
.h5{height:30.732706pt;}
.ha{height:32.282201pt;}
.hd{height:32.287534pt;}
.h9{height:34.611915pt;}
.hb{height:36.928037pt;}
.h6{height:39.497249pt;}
.h7{height:39.502582pt;}
.h8{height:39.903534pt;}
.hc{height:40.436397pt;}
.h4{height:43.694582pt;}
.h3{height:63.582358pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xc{left:17.414667pt;}
.xd{left:38.205333pt;}
.x18{left:39.122667pt;}
.x19{left:50.809333pt;}
.x14{left:54.424000pt;}
.x12{left:65.312000pt;}
.xf{left:66.886667pt;}
.xe{left:70.118667pt;}
.xb{left:73.361333pt;}
.x1a{left:80.462667pt;}
.x16{left:83.516000pt;}
.xa{left:92.277333pt;}
.x15{left:94.402667pt;}
.x10{left:95.977333pt;}
.x5{left:103.241333pt;}
.x8{left:111.353333pt;}
.x13{left:120.658667pt;}
.x3{left:128.522667pt;}
.x1{left:131.461333pt;}
.x17{left:149.749333pt;}
.x6{left:154.376000pt;}
.x9{left:166.854667pt;}
.x2{left:172.949333pt;}
.x4{left:188.596000pt;}
.x7{left:197.414667pt;}
.x11{left:253.228000pt;}
}




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