
    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_74f8044dc6ef0aa7f2b8d58f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049000;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_6e97d11bdab7465d6489c8f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_c5cdda6fdc62ed3fce2626c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068000;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_b13b2a38e3138d63b1ae54cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_80fdd4050a10393d06a024a1.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_6a585e7f2b54a0fcc6f5378d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_d194df4b19052a3094ce4794.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928223;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_4f6ddb74d915d9e9f9728582.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_4520a952d7022a9ae7779c98.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.848145;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_3d0015f5bc3093be539a811f.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{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);}
.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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.126000px;}
.ls6{letter-spacing:-0.015985px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001238px;}
.ls2{letter-spacing:0.003206px;}
.ls5{letter-spacing:0.013320px;}
.ls3{letter-spacing:0.015985px;}
.ls0{letter-spacing:35.287018px;}
.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:-73.172306px;}
.ws1d{word-spacing:-51.949872px;}
.wsb{word-spacing:-50.814139px;}
.ws17{word-spacing:-41.559898px;}
.ws0{word-spacing:-35.288035px;}
.wsc{word-spacing:-17.473637px;}
.ws5{word-spacing:-16.871098px;}
.ws4{word-spacing:-11.046552px;}
.ws14{word-spacing:-10.644859px;}
.wse{word-spacing:-4.619467px;}
.ws23{word-spacing:-4.217774px;}
.wsf{word-spacing:-2.209310px;}
.ws8{word-spacing:-0.602539px;}
.ws27{word-spacing:-0.200846px;}
.ws18{word-spacing:-0.159846px;}
.ws19{word-spacing:-0.146525px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:1.405925px;}
.ws1f{word-spacing:4.217774px;}
.ws7{word-spacing:4.619467px;}
.ws26{word-spacing:5.422853px;}
.ws11{word-spacing:7.431317px;}
.ws16{word-spacing:8.234702px;}
.ws3{word-spacing:8.837242px;}
.ws10{word-spacing:12.854170px;}
.ws6{word-spacing:19.682947px;}
.ws20{word-spacing:26.110032px;}
.ws13{word-spacing:28.319342px;}
.ws12{word-spacing:29.725267px;}
.ws15{word-spacing:34.344734px;}
.ws22{word-spacing:35.951506px;}
.ws24{word-spacing:48.203136px;}
.wsd{word-spacing:48.604829px;}
.ws9{word-spacing:52.420910px;}
.ws25{word-spacing:57.827952px;}
.ws21{word-spacing:67.484390px;}
.ws1a{word-spacing:111.616298px;}
.ws1c{word-spacing:125.463337px;}
.ws1b{word-spacing:133.789569px;}
.wsa{word-spacing:314.927155px;}
._22{margin-left:-25.909186px;}
._8{margin-left:-18.678715px;}
._0{margin-left:-17.432698px;}
._b{margin-left:-15.907023px;}
._1d{margin-left:-13.957368px;}
._5{margin-left:-8.977147px;}
._7{margin-left:-7.492258px;}
._6{margin-left:-5.422853px;}
._12{margin-left:-4.282320px;}
._2{margin-left:-3.209938px;}
._1{margin-left:-1.674922px;}
._4{width:1.364986px;}
._a{width:2.917334px;}
._10{width:4.203355px;}
._9{width:5.889091px;}
._c{width:7.826736px;}
._11{width:9.834264px;}
._18{width:33.541349px;}
._e{width:34.997400px;}
._3{width:37.558277px;}
._25{width:42.463829px;}
._d{width:53.338968px;}
._14{width:56.570534px;}
._1e{width:58.282570px;}
._1a{width:59.515080px;}
._21{width:60.917400px;}
._1f{width:64.672541px;}
._20{width:67.129219px;}
._29{width:72.327619px;}
._13{width:73.646083px;}
._f{width:75.739094px;}
._2b{width:80.164234px;}
._28{width:84.538310px;}
._27{width:94.257902px;}
._2a{width:112.297680px;}
._24{width:144.759192px;}
._23{width:149.181893px;}
._1c{width:156.921979px;}
._26{width:162.572424px;}
._2c{width:168.009470px;}
._17{width:185.983766px;}
._19{width:236.797906px;}
._1b{width:1151.269589px;}
._16{width:1931.001835px;}
._15{width:4031.657938px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:97.634400px;}
.fs4{font-size:133.204800px;}
.fs0{font-size:139.478400px;}
.fs6{font-size:146.525280px;}
.fs5{font-size:159.845760px;}
.fs7{font-size:199.807200px;}
.fs2{font-size:200.846400px;}
.fs3{font-size:289.218600px;}
.y0{bottom:0.000000px;}
.y3{bottom:19.405500px;}
.y1{bottom:26.937000px;}
.y2{bottom:34.024500px;}
.y36{bottom:55.779510px;}
.y37{bottom:85.750590px;}
.y35{bottom:119.051790px;}
.y50{bottom:242.986500px;}
.y24{bottom:246.687000px;}
.y3b{bottom:278.481285px;}
.y4f{bottom:302.737500px;}
.y23{bottom:306.439500px;}
.y3a{bottom:335.093325px;}
.y4e{bottom:362.490000px;}
.y22{bottom:366.190500px;}
.y33{bottom:428.752950px;}
.y32{bottom:468.714390px;}
.y4d{bottom:481.993500px;}
.y21{bottom:485.695500px;}
.y34{bottom:503.680650px;}
.y31{bottom:518.666190px;}
.y4c{bottom:541.746000px;}
.y20{bottom:545.446500px;}
.y30{bottom:578.608350px;}
.y4b{bottom:601.497000px;}
.y1f{bottom:605.199000px;}
.y2f{bottom:702.785528px;}
.y1e{bottom:724.702500px;}
.y38{bottom:729.426488px;}
.y4a{bottom:746.826000px;}
.y2e{bottom:759.397568px;}
.y1d{bottom:784.455000px;}
.y1c{bottom:844.206000px;}
.y1b{bottom:903.958500px;}
.y3d{bottom:910.982965px;}
.y3e{bottom:932.628745px;}
.y49{bottom:964.738500px;}
.y3c{bottom:967.595005px;}
.y3f{bottom:980.720340px;}
.y48{bottom:1024.489500px;}
.y1a{bottom:1028.551500px;}
.y47{bottom:1084.242000px;}
.y2d{bottom:1093.840520px;}
.y39{bottom:1123.811600px;}
.y2c{bottom:1157.112800px;}
.y46{bottom:1203.745500px;}
.y45{bottom:1263.498000px;}
.y19{bottom:1293.522000px;}
.y29{bottom:1317.062460px;}
.y44{bottom:1323.249000px;}
.y2b{bottom:1337.043180px;}
.y18{bottom:1353.274500px;}
.y27{bottom:1363.684140px;}
.y43{bottom:1383.001500px;}
.y2a{bottom:1400.315460px;}
.y17{bottom:1413.025500px;}
.y26{bottom:1416.966060px;}
.y42{bottom:1442.754000px;}
.y16{bottom:1472.778000px;}
.y41{bottom:1502.505000px;}
.y15{bottom:1532.529000px;}
.y14{bottom:1592.281500px;}
.y40{bottom:1627.098000px;}
.y13{bottom:1652.034000px;}
.y28{bottom:1681.710600px;}
.y12{bottom:1711.785000px;}
.y11{bottom:1771.537500px;}
.y10{bottom:1815.535500px;}
.y25{bottom:1874.143500px;}
.yf{bottom:2821.732500px;}
.ye{bottom:3039.645000px;}
.yd{bottom:3099.396000px;}
.yc{bottom:3159.148500px;}
.yb{bottom:3218.901000px;}
.ya{bottom:3278.652000px;}
.y9{bottom:3338.404500px;}
.y8{bottom:3398.155500px;}
.y7{bottom:3522.748500px;}
.y6{bottom:3739.983000px;}
.y5{bottom:3799.735500px;}
.y4{bottom:3859.488000px;}
.h3{height:74.299778px;}
.hc{height:93.919791px;}
.ha{height:101.919884px;}
.h2{height:106.143062px;}
.hf{height:112.111872px;}
.h11{height:115.045239px;}
.hd{height:122.303860px;}
.hb{height:133.204800px;}
.h13{height:139.387402px;}
.h4{height:139.477066px;}
.h10{height:146.525280px;}
.h5{height:152.844110px;}
.h12{height:152.879825px;}
.h6{height:153.044957px;}
.h8{height:157.463578px;}
.he{height:159.845760px;}
.h7{height:220.095355px;}
.h9{height:1518.534720px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w2{width:1501.884120px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x15{left:54.688429px;}
.x11{left:75.485428px;}
.x2c{left:93.642541px;}
.x2b{left:101.796307px;}
.x2a{left:111.549263px;}
.x9{left:114.804000px;}
.x1c{left:129.904751px;}
.x12{left:133.084483px;}
.x1d{left:136.042229px;}
.xc{left:162.853500px;}
.x23{left:168.831223px;}
.x25{left:192.613608px;}
.x29{left:201.725915px;}
.x14{left:586.933650px;}
.xa{left:605.664000px;}
.x2f{left:698.285204px;}
.xe{left:715.134000px;}
.xb{left:732.048000px;}
.x22{left:783.360445px;}
.x6{left:808.125000px;}
.x8{left:816.649500px;}
.x1e{left:818.144548px;}
.x1f{left:821.274527px;}
.x27{left:833.727178px;}
.x16{left:870.094753px;}
.x19{left:872.123795px;}
.x28{left:905.130945px;}
.x17{left:911.766542px;}
.x1a{left:924.859575px;}
.x7{left:931.068000px;}
.x2e{left:999.049987px;}
.x24{left:1126.758090px;}
.x26{left:1128.728855px;}
.xd{left:1199.004000px;}
.x13{left:1200.508260px;}
.x2d{left:1283.795227px;}
.x21{left:1353.846633px;}
.x5{left:1629.561000px;}
.x31{left:1870.867500px;}
.x10{left:1915.048500px;}
.xf{left:2341.410000px;}
.x30{left:2400.301500px;}
.x32{left:2409.556500px;}
.x1b{left:2529.388650px;}
.x18{left:2555.574715px;}
.x20{left:2714.353505px;}
.x1{left:3300.781500px;}
.x2{left:3309.637500px;}
.x3{left:3322.323000px;}
.x4{left:3341.023500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.778667pt;}
.ls6{letter-spacing:-0.014209pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001101pt;}
.ls2{letter-spacing:0.002850pt;}
.ls5{letter-spacing:0.011840pt;}
.ls3{letter-spacing:0.014209pt;}
.ls0{letter-spacing:31.366238pt;}
.ws2{word-spacing:-65.042050pt;}
.ws1d{word-spacing:-46.177664pt;}
.wsb{word-spacing:-45.168124pt;}
.ws17{word-spacing:-36.942131pt;}
.ws0{word-spacing:-31.367142pt;}
.wsc{word-spacing:-15.532122pt;}
.ws5{word-spacing:-14.996531pt;}
.ws4{word-spacing:-9.819157pt;}
.ws14{word-spacing:-9.462097pt;}
.wse{word-spacing:-4.106193pt;}
.ws23{word-spacing:-3.749133pt;}
.wsf{word-spacing:-1.963831pt;}
.ws8{word-spacing:-0.535590pt;}
.ws27{word-spacing:-0.178530pt;}
.ws18{word-spacing:-0.142085pt;}
.ws19{word-spacing:-0.130245pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:1.249711pt;}
.ws1f{word-spacing:3.749133pt;}
.ws7{word-spacing:4.106193pt;}
.ws26{word-spacing:4.820314pt;}
.ws11{word-spacing:6.605615pt;}
.ws16{word-spacing:7.319735pt;}
.ws3{word-spacing:7.855326pt;}
.ws10{word-spacing:11.425929pt;}
.ws6{word-spacing:17.495953pt;}
.ws20{word-spacing:23.208917pt;}
.ws13{word-spacing:25.172749pt;}
.ws12{word-spacing:26.422460pt;}
.ws15{word-spacing:30.528653pt;}
.ws22{word-spacing:31.956894pt;}
.ws24{word-spacing:42.847232pt;}
.wsd{word-spacing:43.204292pt;}
.ws9{word-spacing:46.596365pt;}
.ws25{word-spacing:51.402624pt;}
.ws21{word-spacing:59.986125pt;}
.ws1a{word-spacing:99.214487pt;}
.ws1c{word-spacing:111.522966pt;}
.ws1b{word-spacing:118.924061pt;}
.wsa{word-spacing:279.935249pt;}
._22{margin-left:-23.030387pt;}
._8{margin-left:-16.603302pt;}
._0{margin-left:-15.495731pt;}
._b{margin-left:-14.139576pt;}
._1d{margin-left:-12.406549pt;}
._5{margin-left:-7.979686pt;}
._7{margin-left:-6.659785pt;}
._6{margin-left:-4.820314pt;}
._12{margin-left:-3.806507pt;}
._2{margin-left:-2.853278pt;}
._1{margin-left:-1.488819pt;}
._4{width:1.213321pt;}
._a{width:2.593186pt;}
._10{width:3.736316pt;}
._9{width:5.234748pt;}
._c{width:6.957099pt;}
._11{width:8.741568pt;}
._18{width:29.814532pt;}
._e{width:31.108800pt;}
._3{width:33.385135pt;}
._25{width:37.745626pt;}
._d{width:47.412416pt;}
._14{width:50.284919pt;}
._1e{width:51.806729pt;}
._1a{width:52.902293pt;}
._21{width:54.148800pt;}
._1f{width:57.486703pt;}
._20{width:59.670417pt;}
._29{width:64.291217pt;}
._13{width:65.463185pt;}
._f{width:67.323639pt;}
._2b{width:71.257097pt;}
._28{width:75.145165pt;}
._27{width:83.784802pt;}
._2a{width:99.820160pt;}
._24{width:128.674837pt;}
._23{width:132.606127pt;}
._1c{width:139.486204pt;}
._26{width:144.508821pt;}
._2c{width:149.341751pt;}
._17{width:165.318903pt;}
._19{width:210.487027pt;}
._1b{width:1023.350746pt;}
._16{width:1716.446076pt;}
._15{width:3583.695945pt;}
.fs1{font-size:86.786133pt;}
.fs4{font-size:118.404267pt;}
.fs0{font-size:123.980800pt;}
.fs6{font-size:130.244693pt;}
.fs5{font-size:142.085120pt;}
.fs7{font-size:177.606400pt;}
.fs2{font-size:178.530133pt;}
.fs3{font-size:257.083200pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:17.249333pt;}
.y1{bottom:23.944000pt;}
.y2{bottom:30.244000pt;}
.y36{bottom:49.581787pt;}
.y37{bottom:76.222747pt;}
.y35{bottom:105.823813pt;}
.y50{bottom:215.988000pt;}
.y24{bottom:219.277333pt;}
.y3b{bottom:247.538920pt;}
.y4f{bottom:269.100000pt;}
.y23{bottom:272.390667pt;}
.y3a{bottom:297.860733pt;}
.y4e{bottom:322.213333pt;}
.y22{bottom:325.502667pt;}
.y33{bottom:381.113733pt;}
.y32{bottom:416.635013pt;}
.y4d{bottom:428.438667pt;}
.y21{bottom:431.729333pt;}
.y34{bottom:447.716133pt;}
.y31{bottom:461.036613pt;}
.y4c{bottom:481.552000pt;}
.y20{bottom:484.841333pt;}
.y30{bottom:514.318533pt;}
.y4b{bottom:534.664000pt;}
.y1f{bottom:537.954667pt;}
.y2f{bottom:624.698247pt;}
.y1e{bottom:644.180000pt;}
.y38{bottom:648.379100pt;}
.y4a{bottom:663.845333pt;}
.y2e{bottom:675.020060pt;}
.y1d{bottom:697.293333pt;}
.y1c{bottom:750.405333pt;}
.y1b{bottom:803.518667pt;}
.y3d{bottom:809.762636pt;}
.y3e{bottom:829.003329pt;}
.y49{bottom:857.545333pt;}
.y3c{bottom:860.084449pt;}
.y3f{bottom:871.751413pt;}
.y48{bottom:910.657333pt;}
.y1a{bottom:914.268000pt;}
.y47{bottom:963.770667pt;}
.y2d{bottom:972.302685pt;}
.y39{bottom:998.943645pt;}
.y2c{bottom:1028.544711pt;}
.y46{bottom:1069.996000pt;}
.y45{bottom:1123.109333pt;}
.y19{bottom:1149.797333pt;}
.y29{bottom:1170.722187pt;}
.y44{bottom:1176.221333pt;}
.y2b{bottom:1188.482827pt;}
.y18{bottom:1202.910667pt;}
.y27{bottom:1212.163680pt;}
.y43{bottom:1229.334667pt;}
.y2a{bottom:1244.724853pt;}
.y17{bottom:1256.022667pt;}
.y26{bottom:1259.525387pt;}
.y42{bottom:1282.448000pt;}
.y16{bottom:1309.136000pt;}
.y41{bottom:1335.560000pt;}
.y15{bottom:1362.248000pt;}
.y14{bottom:1415.361333pt;}
.y40{bottom:1446.309333pt;}
.y13{bottom:1468.474667pt;}
.y28{bottom:1494.853867pt;}
.y12{bottom:1521.586667pt;}
.y11{bottom:1574.700000pt;}
.y10{bottom:1613.809333pt;}
.y25{bottom:1665.905333pt;}
.yf{bottom:2508.206667pt;}
.ye{bottom:2701.906667pt;}
.yd{bottom:2755.018667pt;}
.yc{bottom:2808.132000pt;}
.yb{bottom:2861.245333pt;}
.ya{bottom:2914.357333pt;}
.y9{bottom:2967.470667pt;}
.y8{bottom:3020.582667pt;}
.y7{bottom:3131.332000pt;}
.y6{bottom:3324.429333pt;}
.y5{bottom:3377.542667pt;}
.y4{bottom:3430.656000pt;}
.h3{height:66.044247pt;}
.hc{height:83.484258pt;}
.ha{height:90.595452pt;}
.h2{height:94.349389pt;}
.hf{height:99.654997pt;}
.h11{height:102.262435pt;}
.hd{height:108.714542pt;}
.hb{height:118.404267pt;}
.h13{height:123.899913pt;}
.h4{height:123.979614pt;}
.h10{height:130.244693pt;}
.h5{height:135.861431pt;}
.h12{height:135.893178pt;}
.h6{height:136.039962pt;}
.h8{height:139.967625pt;}
.he{height:142.085120pt;}
.h7{height:195.640315pt;}
.h9{height:1349.808640pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w2{width:1335.008107pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x15{left:48.611937pt;}
.x11{left:67.098159pt;}
.x2c{left:83.237815pt;}
.x2b{left:90.485606pt;}
.x2a{left:99.154900pt;}
.x9{left:102.048000pt;}
.x1c{left:115.470890pt;}
.x12{left:118.297318pt;}
.x1d{left:120.926426pt;}
.xc{left:144.758667pt;}
.x23{left:150.072198pt;}
.x25{left:171.212096pt;}
.x29{left:179.311925pt;}
.x14{left:521.718800pt;}
.xa{left:538.368000pt;}
.x2f{left:620.697959pt;}
.xe{left:635.674667pt;}
.xb{left:650.709333pt;}
.x22{left:696.320396pt;}
.x6{left:718.333333pt;}
.x8{left:725.910667pt;}
.x1e{left:727.239598pt;}
.x1f{left:730.021802pt;}
.x27{left:741.090825pt;}
.x16{left:773.417558pt;}
.x19{left:775.221151pt;}
.x28{left:804.560840pt;}
.x17{left:810.459149pt;}
.x1a{left:822.097400pt;}
.x7{left:827.616000pt;}
.x2e{left:888.044432pt;}
.x24{left:1001.562747pt;}
.x26{left:1003.314538pt;}
.xd{left:1065.781333pt;}
.x13{left:1067.118453pt;}
.x2d{left:1141.151313pt;}
.x21{left:1203.419229pt;}
.x5{left:1448.498667pt;}
.x31{left:1662.993333pt;}
.x10{left:1702.265333pt;}
.xf{left:2081.253333pt;}
.x30{left:2133.601333pt;}
.x32{left:2141.828000pt;}
.x1b{left:2248.345467pt;}
.x18{left:2271.621969pt;}
.x20{left:2412.758671pt;}
.x1{left:2934.028000pt;}
.x2{left:2941.900000pt;}
.x3{left:2953.176000pt;}
.x4{left:2969.798667pt;}
}




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