
    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_6b23002dc882442b029f3181.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;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_3c171b7ea1dc6fb2a01c5523.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.105000;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_2c4db55b3427fbac9ca3f702.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677000;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_556a43782b15a1d8f9f334cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.578000;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_1185e0638d87f12ed821227b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_0409bb81f5a2ca0d5fdd96ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.687000;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_5c394ecc71a139ecf888c045.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_a040a6755e7fa28ea95b9041.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694000;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_70f4fc4f02b8d4e96d9a3edf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_974970ab0451fc4d64324b1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.442000;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:ffb;src:url('chunks/assets/font_601b781814341bff4d75dc69.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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:-55.410000px;}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002732px;}
.lsb{letter-spacing:2.986945px;}
.lsc{letter-spacing:2.988372px;}
.ls7{letter-spacing:2.988453px;}
.lsa{letter-spacing:2.988641px;}
.lsf{letter-spacing:2.989179px;}
.lsd{letter-spacing:2.990121px;}
.ls10{letter-spacing:2.990793px;}
.lse{letter-spacing:2.991547px;}
.ls9{letter-spacing:2.992085px;}
.ls8{letter-spacing:15.575458px;}
.ls2{letter-spacing:15.581459px;}
.ls4{letter-spacing:17.214539px;}
.ls6{letter-spacing:20.529276px;}
.ls1{letter-spacing:32.729459px;}
.ls3{letter-spacing:32.729462px;}
.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;}
}
.ws0{word-spacing:-68.503113px;}
.ws11{word-spacing:-59.775840px;}
.ws15{word-spacing:-49.821971px;}
.ws1{word-spacing:-40.049813px;}
.wsf{word-spacing:-37.505451px;}
.ws4{word-spacing:-35.913316px;}
.ws5{word-spacing:-35.865495px;}
.ws12{word-spacing:-34.603034px;}
.ws7{word-spacing:-31.090906px;}
.ws2{word-spacing:-24.029892px;}
.ws9{word-spacing:-21.927271px;}
.wsc{word-spacing:-21.571630px;}
.ws14{word-spacing:-20.550920px;}
.wsa{word-spacing:-20.024906px;}
.ws3{word-spacing:-16.067742px;}
.ws10{word-spacing:-15.613989px;}
.ws6{word-spacing:-12.014936px;}
.wsb{word-spacing:-10.842287px;}
.ws13{word-spacing:-9.181563px;}
.wsd{word-spacing:-9.035238px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:337.122575px;}
._9{margin-left:-6.527523px;}
._7{margin-left:-5.164633px;}
._0{margin-left:-3.586550px;}
._1{margin-left:-1.793275px;}
._6{width:1.004234px;}
._2{width:2.271482px;}
._8{width:3.286002px;}
._3{width:14.896137px;}
._4{width:16.378575px;}
._5{width:1522.658291px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,48);}
.fc4{color:rgb(255,0,185);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,143,175);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs7{font-size:37.646824px;}
.fs9{font-size:41.843100px;}
.fs6{font-size:45.176196px;}
.fs2{font-size:47.820660px;}
.fs8{font-size:53.656320px;}
.fs5{font-size:59.775840px;}
.fs4{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fsa{font-size:103.292640px;}
.fs0{font-size:119.551680px;}
.fsb{font-size:148.722300px;}
.y0{bottom:0.000000px;}
.yc{bottom:7.101000px;}
.y3b{bottom:12.504647px;}
.y52{bottom:20.640000px;}
.y8{bottom:23.614500px;}
.y58{bottom:25.167000px;}
.y56{bottom:26.646000px;}
.y5a{bottom:32.995500px;}
.y7{bottom:38.559000px;}
.y1a{bottom:38.782423px;}
.y24{bottom:38.872169px;}
.y22{bottom:39.695003px;}
.y48{bottom:40.666500px;}
.y42{bottom:41.902500px;}
.y4c{bottom:41.997000px;}
.y46{bottom:42.492000px;}
.y44{bottom:42.705000px;}
.y1b{bottom:44.490300px;}
.y4a{bottom:46.603500px;}
.y19{bottom:50.076311px;}
.y23{bottom:50.166058px;}
.y21{bottom:50.989836px;}
.y6{bottom:53.503500px;}
.y36{bottom:72.687000px;}
.yb{bottom:76.914000px;}
.y3c{bottom:77.494500px;}
.y3e{bottom:77.746500px;}
.y40{bottom:77.809500px;}
.y5{bottom:81.202500px;}
.y14{bottom:94.048500px;}
.y38{bottom:95.428500px;}
.y35{bottom:105.675000px;}
.y2a{bottom:111.880500px;}
.y13{bottom:118.855500px;}
.y5c{bottom:119.043000px;}
.y5d{bottom:121.437000px;}
.y5f{bottom:122.098500px;}
.y5b{bottom:124.038000px;}
.y3a{bottom:125.309724px;}
.y39{bottom:132.478712px;}
.y5e{bottom:133.462500px;}
.y29{bottom:136.687500px;}
.y34{bottom:138.664500px;}
.y2e{bottom:139.429500px;}
.y60{bottom:142.572000px;}
.y12{bottom:143.662500px;}
.y18{bottom:150.004788px;}
.y20{bottom:150.061470px;}
.y59{bottom:157.702500px;}
.y15{bottom:159.708746px;}
.y1c{bottom:161.293953px;}
.y17{bottom:161.298676px;}
.y1f{bottom:161.355358px;}
.y28{bottom:161.494500px;}
.y33{bottom:163.471500px;}
.y2d{bottom:164.236500px;}
.y11{bottom:168.469500px;}
.y16{bottom:172.592565px;}
.y1e{bottom:172.649247px;}
.y32{bottom:183.795000px;}
.y27{bottom:186.301500px;}
.y2c{bottom:189.043500px;}
.y10{bottom:193.276500px;}
.y53{bottom:202.224000px;}
.y4{bottom:205.344000px;}
.y31{bottom:208.602000px;}
.y61{bottom:210.169500px;}
.y26{bottom:211.108500px;}
.yf{bottom:211.209000px;}
.y2b{bottom:222.033000px;}
.ye{bottom:229.141500px;}
.y30{bottom:233.409000px;}
.y4f{bottom:233.755500px;}
.y51{bottom:234.247500px;}
.y25{bottom:235.915500px;}
.y3{bottom:241.548000px;}
.y50{bottom:244.827000px;}
.yd{bottom:250.063500px;}
.y2f{bottom:266.397000px;}
.y3f{bottom:268.896000px;}
.y3d{bottom:268.938000px;}
.y37{bottom:269.104500px;}
.y4e{bottom:271.237500px;}
.y49{bottom:276.249000px;}
.y1d{bottom:276.389588px;}
.y43{bottom:279.217500px;}
.y45{bottom:279.429000px;}
.y4b{bottom:279.925500px;}
.y41{bottom:280.018500px;}
.y47{bottom:281.254500px;}
.y2{bottom:283.729500px;}
.y4d{bottom:291.562500px;}
.y57{bottom:298.809000px;}
.y1{bottom:313.617000px;}
.y55{bottom:316.741500px;}
.ya{bottom:330.180000px;}
.y54{bottom:334.674000px;}
.y9{bottom:369.228000px;}
.h6{height:31.848546px;}
.hb{height:33.430380px;}
.hd{height:39.639654px;}
.ha{height:40.116462px;}
.h4{height:42.464746px;}
.h5{height:43.421159px;}
.h7{height:43.592724px;}
.he{height:47.585451px;}
.h9{height:53.080946px;}
.h8{height:58.123632px;}
.h11{height:58.846673px;}
.h10{height:58.852673px;}
.h3{height:63.697146px;}
.hf{height:91.723864px;}
.h2{height:106.161892px;}
.h12{height:132.065402px;}
.hc{height:147.554880px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:595.249800px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2{left:12.756000px;}
.x1{left:42.519000px;}
.x27{left:44.944500px;}
.x1a{left:52.612118px;}
.x29{left:61.552500px;}
.x2a{left:63.114000px;}
.x5{left:75.247500px;}
.x1b{left:77.326500px;}
.x18{left:105.741000px;}
.x6{left:107.974500px;}
.x16{left:114.831000px;}
.x2c{left:129.906000px;}
.x17{left:135.741000px;}
.x26{left:155.947500px;}
.x2e{left:181.693500px;}
.xd{left:183.586901px;}
.x28{left:190.390500px;}
.x25{left:196.804500px;}
.x21{left:228.034500px;}
.x20{left:232.762500px;}
.x1f{left:237.492000px;}
.x1e{left:242.221500px;}
.x1d{left:246.949500px;}
.x15{left:249.480671px;}
.x14{left:251.639310px;}
.xc{left:252.896706px;}
.xe{left:254.285415px;}
.x2b{left:281.803500px;}
.x3{left:301.957500px;}
.x22{left:308.533500px;}
.x7{left:316.391882px;}
.x24{left:342.082500px;}
.x23{left:351.945000px;}
.xa{left:381.745284px;}
.xb{left:389.666593px;}
.x12{left:392.597997px;}
.x13{left:393.868619px;}
.x19{left:421.621302px;}
.x11{left:446.562095px;}
.x10{left:450.322001px;}
.x9{left:456.053496px;}
.x8{left:460.067527px;}
.xf{left:464.839206px;}
.x2d{left:576.615000px;}
.x1c{left:657.946500px;}
.x4{left:662.887500px;}
@media print{
.v2{vertical-align:-49.253333pt;}
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002429pt;}
.lsb{letter-spacing:2.655063pt;}
.lsc{letter-spacing:2.656330pt;}
.ls7{letter-spacing:2.656403pt;}
.lsa{letter-spacing:2.656570pt;}
.lsf{letter-spacing:2.657048pt;}
.lsd{letter-spacing:2.657885pt;}
.ls10{letter-spacing:2.658483pt;}
.lse{letter-spacing:2.659153pt;}
.ls9{letter-spacing:2.659631pt;}
.ls8{letter-spacing:13.844852pt;}
.ls2{letter-spacing:13.850186pt;}
.ls4{letter-spacing:15.301812pt;}
.ls6{letter-spacing:18.248245pt;}
.ls1{letter-spacing:29.092852pt;}
.ls3{letter-spacing:29.092855pt;}
.ws0{word-spacing:-60.891656pt;}
.ws11{word-spacing:-53.134080pt;}
.ws15{word-spacing:-44.286196pt;}
.ws1{word-spacing:-35.599834pt;}
.wsf{word-spacing:-33.338179pt;}
.ws4{word-spacing:-31.922947pt;}
.ws5{word-spacing:-31.880440pt;}
.ws12{word-spacing:-30.758253pt;}
.ws7{word-spacing:-27.636361pt;}
.ws2{word-spacing:-21.359904pt;}
.ws9{word-spacing:-19.490907pt;}
.wsc{word-spacing:-19.174782pt;}
.ws14{word-spacing:-18.267484pt;}
.wsa{word-spacing:-17.799917pt;}
.ws3{word-spacing:-14.282437pt;}
.ws10{word-spacing:-13.879101pt;}
.ws6{word-spacing:-10.679943pt;}
.wsb{word-spacing:-9.637589pt;}
.ws13{word-spacing:-8.161389pt;}
.wsd{word-spacing:-8.031322pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:299.664511pt;}
._9{margin-left:-5.802243pt;}
._7{margin-left:-4.590785pt;}
._0{margin-left:-3.188045pt;}
._1{margin-left:-1.594022pt;}
._6{width:0.892652pt;}
._2{width:2.019095pt;}
._8{width:2.920890pt;}
._3{width:13.241011pt;}
._4{width:14.558733pt;}
._5{width:1353.474036pt;}
.fs3{font-size:31.880427pt;}
.fs7{font-size:33.463844pt;}
.fs9{font-size:37.193867pt;}
.fs6{font-size:40.156619pt;}
.fs2{font-size:42.507253pt;}
.fs8{font-size:47.694507pt;}
.fs5{font-size:53.134080pt;}
.fs4{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fsa{font-size:91.815680pt;}
.fs0{font-size:106.268160pt;}
.fsb{font-size:132.197600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:6.312000pt;}
.y3b{bottom:11.115242pt;}
.y52{bottom:18.346667pt;}
.y8{bottom:20.990667pt;}
.y58{bottom:22.370667pt;}
.y56{bottom:23.685333pt;}
.y5a{bottom:29.329333pt;}
.y7{bottom:34.274667pt;}
.y1a{bottom:34.473265pt;}
.y24{bottom:34.553039pt;}
.y22{bottom:35.284447pt;}
.y48{bottom:36.148000pt;}
.y42{bottom:37.246667pt;}
.y4c{bottom:37.330667pt;}
.y46{bottom:37.770667pt;}
.y44{bottom:37.960000pt;}
.y1b{bottom:39.546933pt;}
.y4a{bottom:41.425333pt;}
.y19{bottom:44.512277pt;}
.y23{bottom:44.592051pt;}
.y21{bottom:45.324299pt;}
.y6{bottom:47.558667pt;}
.y36{bottom:64.610667pt;}
.yb{bottom:68.368000pt;}
.y3c{bottom:68.884000pt;}
.y3e{bottom:69.108000pt;}
.y40{bottom:69.164000pt;}
.y5{bottom:72.180000pt;}
.y14{bottom:83.598667pt;}
.y38{bottom:84.825333pt;}
.y35{bottom:93.933333pt;}
.y2a{bottom:99.449333pt;}
.y13{bottom:105.649333pt;}
.y5c{bottom:105.816000pt;}
.y5d{bottom:107.944000pt;}
.y5f{bottom:108.532000pt;}
.y5b{bottom:110.256000pt;}
.y3a{bottom:111.386422pt;}
.y39{bottom:117.758855pt;}
.y5e{bottom:118.633333pt;}
.y29{bottom:121.500000pt;}
.y34{bottom:123.257333pt;}
.y2e{bottom:123.937333pt;}
.y60{bottom:126.730667pt;}
.y12{bottom:127.700000pt;}
.y18{bottom:133.337589pt;}
.y20{bottom:133.387973pt;}
.y59{bottom:140.180000pt;}
.y15{bottom:141.963330pt;}
.y1c{bottom:143.372402pt;}
.y17{bottom:143.376601pt;}
.y1f{bottom:143.426985pt;}
.y28{bottom:143.550667pt;}
.y33{bottom:145.308000pt;}
.y2d{bottom:145.988000pt;}
.y11{bottom:149.750667pt;}
.y16{bottom:153.415613pt;}
.y1e{bottom:153.465997pt;}
.y32{bottom:163.373333pt;}
.y27{bottom:165.601333pt;}
.y2c{bottom:168.038667pt;}
.y10{bottom:171.801333pt;}
.y53{bottom:179.754667pt;}
.y4{bottom:182.528000pt;}
.y31{bottom:185.424000pt;}
.y61{bottom:186.817333pt;}
.y26{bottom:187.652000pt;}
.yf{bottom:187.741333pt;}
.y2b{bottom:197.362667pt;}
.ye{bottom:203.681333pt;}
.y30{bottom:207.474667pt;}
.y4f{bottom:207.782667pt;}
.y51{bottom:208.220000pt;}
.y25{bottom:209.702667pt;}
.y3{bottom:214.709333pt;}
.y50{bottom:217.624000pt;}
.yd{bottom:222.278667pt;}
.y2f{bottom:236.797333pt;}
.y3f{bottom:239.018667pt;}
.y3d{bottom:239.056000pt;}
.y37{bottom:239.204000pt;}
.y4e{bottom:241.100000pt;}
.y49{bottom:245.554667pt;}
.y1d{bottom:245.679634pt;}
.y43{bottom:248.193333pt;}
.y45{bottom:248.381333pt;}
.y4b{bottom:248.822667pt;}
.y41{bottom:248.905333pt;}
.y47{bottom:250.004000pt;}
.y2{bottom:252.204000pt;}
.y4d{bottom:259.166667pt;}
.y57{bottom:265.608000pt;}
.y1{bottom:278.770667pt;}
.y55{bottom:281.548000pt;}
.ya{bottom:293.493333pt;}
.y54{bottom:297.488000pt;}
.y9{bottom:328.202667pt;}
.h6{height:28.309819pt;}
.hb{height:29.715893pt;}
.hd{height:35.235248pt;}
.ha{height:35.659078pt;}
.h4{height:37.746441pt;}
.h5{height:38.596586pt;}
.h7{height:38.749088pt;}
.he{height:42.298178pt;}
.h9{height:47.183063pt;}
.h8{height:51.665450pt;}
.h11{height:52.308154pt;}
.h10{height:52.313487pt;}
.h3{height:56.619685pt;}
.hf{height:81.532324pt;}
.h2{height:94.366126pt;}
.h12{height:117.391469pt;}
.hc{height:131.159893pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:529.110933pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2{left:11.338667pt;}
.x1{left:37.794667pt;}
.x27{left:39.950667pt;}
.x1a{left:46.766327pt;}
.x29{left:54.713333pt;}
.x2a{left:56.101333pt;}
.x5{left:66.886667pt;}
.x1b{left:68.734667pt;}
.x18{left:93.992000pt;}
.x6{left:95.977333pt;}
.x16{left:102.072000pt;}
.x2c{left:115.472000pt;}
.x17{left:120.658667pt;}
.x26{left:138.620000pt;}
.x2e{left:161.505333pt;}
.xd{left:163.188357pt;}
.x28{left:169.236000pt;}
.x25{left:174.937333pt;}
.x21{left:202.697333pt;}
.x20{left:206.900000pt;}
.x1f{left:211.104000pt;}
.x1e{left:215.308000pt;}
.x1d{left:219.510667pt;}
.x15{left:221.760596pt;}
.x14{left:223.679387pt;}
.xc{left:224.797072pt;}
.xe{left:226.031480pt;}
.x2b{left:250.492000pt;}
.x3{left:268.406667pt;}
.x22{left:274.252000pt;}
.x7{left:281.237229pt;}
.x24{left:304.073333pt;}
.x23{left:312.840000pt;}
.xa{left:339.329141pt;}
.xb{left:346.370305pt;}
.x12{left:348.975998pt;}
.x13{left:350.105439pt;}
.x19{left:374.774491pt;}
.x11{left:396.944085pt;}
.x10{left:400.286223pt;}
.x9{left:405.380886pt;}
.x8{left:408.948913pt;}
.xf{left:413.190406pt;}
.x2d{left:512.546667pt;}
.x1c{left:584.841333pt;}
.x4{left:589.233333pt;}
}




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