
    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_f49b7349339cc5815176d0a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_6cb9998852dc6b31557d947b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_90114148bd5b9e090b7c9598.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_f170c1f64c62d0a14e846e2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.676270;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_d870af6d25a8a144d67e9425.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988770;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_dd151628eab2dbecb746046a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.676270;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_7b5f1d09868b37b374d8a007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.822266;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(0.258665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258665,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.350442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350442,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.vd{vertical-align:-139.128000px;}
.v3{vertical-align:-133.170000px;}
.v2{vertical-align:-99.666000px;}
.v9{vertical-align:-45.072000px;}
.v6{vertical-align:-40.134000px;}
.v5{vertical-align:-37.926000px;}
.v7{vertical-align:-34.866000px;}
.v1{vertical-align:-28.746000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.194000px;}
.vb{vertical-align:27.558000px;}
.vc{vertical-align:64.800000px;}
.v8{vertical-align:77.382000px;}
.v4{vertical-align:86.910000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.155964px;}
.ls3{letter-spacing:0.256476px;}
.lsc{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.384036px;}
.ls4{letter-spacing:0.624948px;}
.lsb{letter-spacing:0.696000px;}
.ls5{letter-spacing:3.312000px;}
.ls6{letter-spacing:9.482040px;}
.ls8{letter-spacing:14.622000px;}
.ls9{letter-spacing:14.858820px;}
.ls7{letter-spacing:14.864820px;}
.ls2{letter-spacing:314.639580px;}
.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;}
}
.ws6{word-spacing:-53.188986px;}
.ws9{word-spacing:-43.202028px;}
.ws2{word-spacing:-36.559014px;}
.ws0{word-spacing:-29.916000px;}
.wsa{word-spacing:-26.570394px;}
.wsb{word-spacing:-23.272986px;}
.ws15{word-spacing:-17.289786px;}
.ws14{word-spacing:-16.629972px;}
.wsc{word-spacing:-13.473834px;}
.wsd{word-spacing:-0.191340px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:305.034906px;}
.ws12{word-spacing:305.677014px;}
.ws5{word-spacing:306.187014px;}
.ws10{word-spacing:364.469994px;}
.ws7{word-spacing:364.854030px;}
.ws3{word-spacing:447.774000px;}
.wse{word-spacing:448.284000px;}
.ws4{word-spacing:669.381870px;}
.ws13{word-spacing:774.489960px;}
.ws11{word-spacing:774.988068px;}
.ws8{word-spacing:1385.634168px;}
._d{margin-left:-7.954164px;}
._f{margin-left:-6.760590px;}
._3{margin-left:-4.883334px;}
._5{margin-left:-3.105480px;}
._1{margin-left:-1.284000px;}
._0{width:1.187838px;}
._2{width:2.459346px;}
._6{width:10.145340px;}
._c{width:453.255462px;}
._4{width:552.028488px;}
._7{width:822.080910px;}
._9{width:829.430352px;}
._e{width:831.287076px;}
._8{width:844.644990px;}
._a{width:2080.740000px;}
._b{width:2140.788000px;}
.fc3{color:rgb(85,48,141);}
.fc5{color:rgb(52,101,164);}
.fc4{color:rgb(201,33,30);}
.fc2{color:rgb(141,40,30);}
.fc1{color:rgb(42,96,153);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.642000px;}
.fs7{font-size:55.788000px;}
.fsb{font-size:60.036000px;}
.fsc{font-size:62.418000px;}
.fs3{font-size:84.018000px;}
.fs2{font-size:95.922000px;}
.fs1{font-size:108.000000px;}
.fsa{font-size:114.636000px;}
.fs0{font-size:131.982000px;}
.fs6{font-size:155.964000px;}
.fs9{font-size:191.340000px;}
.fs4{font-size:192.018000px;}
.fs5{font-size:576.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3d{bottom:10.290000px;}
.y2e{bottom:10.330500px;}
.y39{bottom:10.332000px;}
.y37{bottom:10.374000px;}
.y35{bottom:10.458000px;}
.y2f{bottom:11.521500px;}
.y3c{bottom:11.523000px;}
.y31{bottom:16.837500px;}
.y5b{bottom:18.070500px;}
.y32{bottom:19.090500px;}
.y33{bottom:23.598000px;}
.y1f{bottom:23.767500px;}
.y30{bottom:29.763000px;}
.y2d{bottom:34.015500px;}
.y5a{bottom:48.343500px;}
.y3e{bottom:56.167500px;}
.y4a{bottom:88.992000px;}
.y1c{bottom:89.163000px;}
.ya{bottom:97.539000px;}
.y3a{bottom:100.855500px;}
.y43{bottom:112.846500px;}
.y9{bottom:127.686000px;}
.y14{bottom:153.664500px;}
.y16{bottom:163.530000px;}
.y42{bottom:170.290500px;}
.y13{bottom:177.348000px;}
.y2b{bottom:180.367500px;}
.y15{bottom:187.255500px;}
.y5e{bottom:193.081500px;}
.y41{bottom:199.119000px;}
.y12{bottom:200.904000px;}
.y36{bottom:212.598000px;}
.y40{bottom:227.904000px;}
.y23{bottom:241.681500px;}
.y3b{bottom:253.033500px;}
.y34{bottom:269.404500px;}
.y1b{bottom:277.567500px;}
.y3f{bottom:285.348000px;}
.y38{bottom:287.049000px;}
.yc{bottom:297.042000px;}
.y51{bottom:310.264500px;}
.y53{bottom:323.020500px;}
.y6{bottom:325.699500px;}
.yb{bottom:327.358500px;}
.y22{bottom:328.846500px;}
.y59{bottom:329.910000px;}
.y5f{bottom:343.387500px;}
.y44{bottom:354.655500px;}
.y2c{bottom:356.314500px;}
.y58{bottom:367.242000px;}
.y57{bottom:401.130000px;}
.y7{bottom:411.631500px;}
.y5{bottom:420.348000px;}
.y50{bottom:426.811500px;}
.y2a{bottom:427.237500px;}
.y29{bottom:431.446500px;}
.y56{bottom:439.567500px;}
.y5d{bottom:443.607000px;}
.ye{bottom:454.704000px;}
.y28{bottom:455.130000px;}
.y4f{bottom:456.787500px;}
.y1a{bottom:466.099500px;}
.y55{bottom:473.754000px;}
.yd{bottom:484.851000px;}
.y10{bottom:498.670500px;}
.y24{bottom:518.910000px;}
.yf{bottom:525.330000px;}
.y26{bottom:537.192000px;}
.y4{bottom:547.270500px;}
.y21{bottom:547.567500px;}
.y8{bottom:568.104000px;}
.y3{bottom:577.543500px;}
.y4b{bottom:579.031500px;}
.y4e{bottom:582.051000px;}
.y20{bottom:591.064500px;}
.y19{bottom:600.037500px;}
.y5c{bottom:607.264500px;}
.y25{bottom:631.119000px;}
.y52{bottom:640.387500px;}
.y48{bottom:646.255500px;}
.y1e{bottom:647.616000px;}
.y46{bottom:647.914500px;}
.y54{bottom:648.807000px;}
.y4c{bottom:653.143500px;}
.y11{bottom:666.367500px;}
.y18{bottom:668.748000px;}
.y49{bottom:678.655500px;}
.y47{bottom:680.314500px;}
.y2{bottom:684.481500px;}
.y4d{bottom:685.543500px;}
.y27{bottom:687.967500px;}
.y1d{bottom:689.881500px;}
.y60{bottom:698.299500px;}
.y17{bottom:705.655500px;}
.y45{bottom:714.202500px;}
.h1a{height:43.502648px;}
.hf{height:53.106000px;}
.h13{height:58.336717px;}
.h11{height:60.717000px;}
.h6{height:60.880230px;}
.h19{height:62.068230px;}
.h16{height:62.074230px;}
.h14{height:68.662916px;}
.h5{height:69.505980px;}
.he{height:77.308594px;}
.h4{height:78.257812px;}
.h3{height:95.635395px;}
.h1b{height:105.815812px;}
.h17{height:109.714043px;}
.h7{height:110.392043px;}
.hb{height:113.012977px;}
.h12{height:127.528857px;}
.hd{height:138.262230px;}
.h9{height:139.138043px;}
.h1c{height:143.057813px;}
.h1d{height:143.567812px;}
.h10{height:151.539785px;}
.hc{height:199.922977px;}
.h1e{height:278.286129px;}
.ha{height:284.244129px;}
.h15{height:284.928129px;}
.h18{height:317.238129px;}
.h8{height:317.748129px;}
.h1{height:744.000000px;}
.h2{height:744.051000px;}
.h0{height:744.094488px;}
.w6{width:25.681500px;}
.w7{width:33.589500px;}
.w8{width:40.095000px;}
.w5{width:48.132000px;}
.w3{width:154.431000px;}
.w4{width:179.262000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x1e{left:4.549500px;}
.x22{left:5.613000px;}
.x8{left:7.356000px;}
.xb{left:8.547000px;}
.xa{left:10.035000px;}
.x11{left:34.059000px;}
.xf{left:36.141000px;}
.x39{left:42.604500px;}
.x13{left:47.707500px;}
.xe{left:53.107500px;}
.x2{left:55.659000px;}
.x1{left:59.400000px;}
.x20{left:60.804000px;}
.x9{left:62.844000px;}
.x1f{left:64.120500px;}
.x12{left:65.863500px;}
.x14{left:70.200000px;}
.x1d{left:92.182500px;}
.x27{left:93.543000px;}
.x19{left:95.712000px;}
.x24{left:97.839000px;}
.x23{left:101.283000px;}
.x1c{left:107.235000px;}
.x26{left:127.092000px;}
.x25{left:130.536000px;}
.x2a{left:207.240000px;}
.x3{left:218.380500px;}
.x38{left:227.097000px;}
.x17{left:229.947000px;}
.x29{left:238.110000px;}
.xd{left:250.780500px;}
.xc{left:253.332000px;}
.x28{left:272.125500px;}
.x21{left:284.200500px;}
.x4{left:285.435000px;}
.x18{left:297.765000px;}
.x1b{left:325.360500px;}
.x15{left:343.347000px;}
.x31{left:346.492500px;}
.x16{left:347.853000px;}
.x6{left:349.936500px;}
.x5{left:373.663500px;}
.x3a{left:502.369500px;}
.x2e{left:554.712000px;}
.x34{left:557.688000px;}
.x32{left:559.219500px;}
.x2f{left:568.488000px;}
.x30{left:573.760500px;}
.x35{left:580.819500px;}
.x36{left:584.986500px;}
.x33{left:586.516500px;}
.x37{left:605.991000px;}
.x10{left:614.409000px;}
.x1a{left:635.712000px;}
.x2b{left:668.112000px;}
.x7{left:736.186500px;}
.x2c{left:933.307500px;}
.x2d{left:986.413500px;}
@media print{
.vd{vertical-align:-123.669333pt;}
.v3{vertical-align:-118.373333pt;}
.v2{vertical-align:-88.592000pt;}
.v9{vertical-align:-40.064000pt;}
.v6{vertical-align:-35.674667pt;}
.v5{vertical-align:-33.712000pt;}
.v7{vertical-align:-30.992000pt;}
.v1{vertical-align:-25.552000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.061333pt;}
.vb{vertical-align:24.496000pt;}
.vc{vertical-align:57.600000pt;}
.v8{vertical-align:68.784000pt;}
.v4{vertical-align:77.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.138635pt;}
.ls3{letter-spacing:0.227979pt;}
.lsc{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.341365pt;}
.ls4{letter-spacing:0.555509pt;}
.lsb{letter-spacing:0.618667pt;}
.ls5{letter-spacing:2.944000pt;}
.ls6{letter-spacing:8.428480pt;}
.ls8{letter-spacing:12.997333pt;}
.ls9{letter-spacing:13.207840pt;}
.ls7{letter-spacing:13.213173pt;}
.ls2{letter-spacing:279.679627pt;}
.ws6{word-spacing:-47.279099pt;}
.ws9{word-spacing:-38.401803pt;}
.ws2{word-spacing:-32.496901pt;}
.ws0{word-spacing:-26.592000pt;}
.wsa{word-spacing:-23.618128pt;}
.wsb{word-spacing:-20.687099pt;}
.ws15{word-spacing:-15.368699pt;}
.ws14{word-spacing:-14.782197pt;}
.wsc{word-spacing:-11.976741pt;}
.wsd{word-spacing:-0.170080pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:271.142139pt;}
.ws12{word-spacing:271.712901pt;}
.ws5{word-spacing:272.166235pt;}
.ws10{word-spacing:323.973328pt;}
.ws7{word-spacing:324.314693pt;}
.ws3{word-spacing:398.021333pt;}
.wse{word-spacing:398.474667pt;}
.ws4{word-spacing:595.006107pt;}
.ws13{word-spacing:688.435520pt;}
.ws11{word-spacing:688.878283pt;}
.ws8{word-spacing:1231.674816pt;}
._d{margin-left:-7.070368pt;}
._f{margin-left:-6.009413pt;}
._3{margin-left:-4.340741pt;}
._5{margin-left:-2.760427pt;}
._1{margin-left:-1.141333pt;}
._0{width:1.055856pt;}
._2{width:2.186085pt;}
._6{width:9.018080pt;}
._c{width:402.893744pt;}
._4{width:490.691989pt;}
._7{width:730.738587pt;}
._9{width:737.271424pt;}
._e{width:738.921845pt;}
._8{width:750.795547pt;}
._a{width:1849.546667pt;}
._b{width:1902.922667pt;}
.fs8{font-size:43.237333pt;}
.fs7{font-size:49.589333pt;}
.fsb{font-size:53.365333pt;}
.fsc{font-size:55.482667pt;}
.fs3{font-size:74.682667pt;}
.fs2{font-size:85.264000pt;}
.fs1{font-size:96.000000pt;}
.fsa{font-size:101.898667pt;}
.fs0{font-size:117.317333pt;}
.fs6{font-size:138.634667pt;}
.fs9{font-size:170.080000pt;}
.fs4{font-size:170.682667pt;}
.fs5{font-size:512.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3d{bottom:9.146667pt;}
.y2e{bottom:9.182667pt;}
.y39{bottom:9.184000pt;}
.y37{bottom:9.221333pt;}
.y35{bottom:9.296000pt;}
.y2f{bottom:10.241333pt;}
.y3c{bottom:10.242667pt;}
.y31{bottom:14.966667pt;}
.y5b{bottom:16.062667pt;}
.y32{bottom:16.969333pt;}
.y33{bottom:20.976000pt;}
.y1f{bottom:21.126667pt;}
.y30{bottom:26.456000pt;}
.y2d{bottom:30.236000pt;}
.y5a{bottom:42.972000pt;}
.y3e{bottom:49.926667pt;}
.y4a{bottom:79.104000pt;}
.y1c{bottom:79.256000pt;}
.ya{bottom:86.701333pt;}
.y3a{bottom:89.649333pt;}
.y43{bottom:100.308000pt;}
.y9{bottom:113.498667pt;}
.y14{bottom:136.590667pt;}
.y16{bottom:145.360000pt;}
.y42{bottom:151.369333pt;}
.y13{bottom:157.642667pt;}
.y2b{bottom:160.326667pt;}
.y15{bottom:166.449333pt;}
.y5e{bottom:171.628000pt;}
.y41{bottom:176.994667pt;}
.y12{bottom:178.581333pt;}
.y36{bottom:188.976000pt;}
.y40{bottom:202.581333pt;}
.y23{bottom:214.828000pt;}
.y3b{bottom:224.918667pt;}
.y34{bottom:239.470667pt;}
.y1b{bottom:246.726667pt;}
.y3f{bottom:253.642667pt;}
.y38{bottom:255.154667pt;}
.yc{bottom:264.037333pt;}
.y51{bottom:275.790667pt;}
.y53{bottom:287.129333pt;}
.y6{bottom:289.510667pt;}
.yb{bottom:290.985333pt;}
.y22{bottom:292.308000pt;}
.y59{bottom:293.253333pt;}
.y5f{bottom:305.233333pt;}
.y44{bottom:315.249333pt;}
.y2c{bottom:316.724000pt;}
.y58{bottom:326.437333pt;}
.y57{bottom:356.560000pt;}
.y7{bottom:365.894667pt;}
.y5{bottom:373.642667pt;}
.y50{bottom:379.388000pt;}
.y2a{bottom:379.766667pt;}
.y29{bottom:383.508000pt;}
.y56{bottom:390.726667pt;}
.y5d{bottom:394.317333pt;}
.ye{bottom:404.181333pt;}
.y28{bottom:404.560000pt;}
.y4f{bottom:406.033333pt;}
.y1a{bottom:414.310667pt;}
.y55{bottom:421.114667pt;}
.yd{bottom:430.978667pt;}
.y10{bottom:443.262667pt;}
.y24{bottom:461.253333pt;}
.yf{bottom:466.960000pt;}
.y26{bottom:477.504000pt;}
.y4{bottom:486.462667pt;}
.y21{bottom:486.726667pt;}
.y8{bottom:504.981333pt;}
.y3{bottom:513.372000pt;}
.y4b{bottom:514.694667pt;}
.y4e{bottom:517.378667pt;}
.y20{bottom:525.390667pt;}
.y19{bottom:533.366667pt;}
.y5c{bottom:539.790667pt;}
.y25{bottom:560.994667pt;}
.y52{bottom:569.233333pt;}
.y48{bottom:574.449333pt;}
.y1e{bottom:575.658667pt;}
.y46{bottom:575.924000pt;}
.y54{bottom:576.717333pt;}
.y4c{bottom:580.572000pt;}
.y11{bottom:592.326667pt;}
.y18{bottom:594.442667pt;}
.y49{bottom:603.249333pt;}
.y47{bottom:604.724000pt;}
.y2{bottom:608.428000pt;}
.y4d{bottom:609.372000pt;}
.y27{bottom:611.526667pt;}
.y1d{bottom:613.228000pt;}
.y60{bottom:620.710667pt;}
.y17{bottom:627.249333pt;}
.y45{bottom:634.846667pt;}
.h1a{height:38.669021pt;}
.hf{height:47.205333pt;}
.h13{height:51.854859pt;}
.h11{height:53.970667pt;}
.h6{height:54.115760pt;}
.h19{height:55.171760pt;}
.h16{height:55.177094pt;}
.h14{height:61.033703pt;}
.h5{height:61.783094pt;}
.he{height:68.718750pt;}
.h4{height:69.562500pt;}
.h3{height:85.009240pt;}
.h1b{height:94.058500pt;}
.h17{height:97.523594pt;}
.h7{height:98.126260pt;}
.hb{height:100.455979pt;}
.h12{height:113.358984pt;}
.hd{height:122.899760pt;}
.h9{height:123.678260pt;}
.h1c{height:127.162500pt;}
.h1d{height:127.615833pt;}
.h10{height:134.702031pt;}
.hc{height:177.709312pt;}
.h1e{height:247.365448pt;}
.ha{height:252.661448pt;}
.h15{height:253.269448pt;}
.h18{height:281.989448pt;}
.h8{height:282.442781pt;}
.h1{height:661.333333pt;}
.h2{height:661.378667pt;}
.h0{height:661.417323pt;}
.w6{width:22.828000pt;}
.w7{width:29.857333pt;}
.w8{width:35.640000pt;}
.w5{width:42.784000pt;}
.w3{width:137.272000pt;}
.w4{width:159.344000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x1e{left:4.044000pt;}
.x22{left:4.989333pt;}
.x8{left:6.538667pt;}
.xb{left:7.597333pt;}
.xa{left:8.920000pt;}
.x11{left:30.274667pt;}
.xf{left:32.125333pt;}
.x39{left:37.870667pt;}
.x13{left:42.406667pt;}
.xe{left:47.206667pt;}
.x2{left:49.474667pt;}
.x1{left:52.800000pt;}
.x20{left:54.048000pt;}
.x9{left:55.861333pt;}
.x1f{left:56.996000pt;}
.x12{left:58.545333pt;}
.x14{left:62.400000pt;}
.x1d{left:81.940000pt;}
.x27{left:83.149333pt;}
.x19{left:85.077333pt;}
.x24{left:86.968000pt;}
.x23{left:90.029333pt;}
.x1c{left:95.320000pt;}
.x26{left:112.970667pt;}
.x25{left:116.032000pt;}
.x2a{left:184.213333pt;}
.x3{left:194.116000pt;}
.x38{left:201.864000pt;}
.x17{left:204.397333pt;}
.x29{left:211.653333pt;}
.xd{left:222.916000pt;}
.xc{left:225.184000pt;}
.x28{left:241.889333pt;}
.x21{left:252.622667pt;}
.x4{left:253.720000pt;}
.x18{left:264.680000pt;}
.x1b{left:289.209333pt;}
.x15{left:305.197333pt;}
.x31{left:307.993333pt;}
.x16{left:309.202667pt;}
.x6{left:311.054667pt;}
.x5{left:332.145333pt;}
.x3a{left:446.550667pt;}
.x2e{left:493.077333pt;}
.x34{left:495.722667pt;}
.x32{left:497.084000pt;}
.x2f{left:505.322667pt;}
.x30{left:510.009333pt;}
.x35{left:516.284000pt;}
.x36{left:519.988000pt;}
.x33{left:521.348000pt;}
.x37{left:538.658667pt;}
.x10{left:546.141333pt;}
.x1a{left:565.077333pt;}
.x2b{left:593.877333pt;}
.x7{left:654.388000pt;}
.x2c{left:829.606667pt;}
.x2d{left:876.812000pt;}
}




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