
    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_9c68825039828be1445c4628.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a5fd3a3cd27f3596f06f5a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_a1957d6e4212579474ccf122.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_18a9532c9934c947bbedf8f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_4a38b5298388a11ab6ce80e5.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_2550c85086b0dd260155fb6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_8052021530b12702225d0c29.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_7dceafb5605581624372e50d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_821a5b5fec74608190edf989.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_41889ded198f46dd9f1c5e44.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.640000;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:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:1.816810px;}
.ls3{letter-spacing:2.356366px;}
.ls4{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws12{word-spacing:-22.416000px;}
.ws19{word-spacing:-18.183288px;}
.ws35{word-spacing:-15.278643px;}
.ws32{word-spacing:-3.652367px;}
.ws2a{word-spacing:-3.063275px;}
.ws1b{word-spacing:-1.296001px;}
.ws29{word-spacing:-0.706910px;}
.ws9{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.065455px;}
.ws2c{word-spacing:-0.047821px;}
.ws11{word-spacing:0.000000px;}
.ws1a{word-spacing:0.013091px;}
.ws10{word-spacing:0.078546px;}
.wsf{word-spacing:0.274909px;}
.ws1f{word-spacing:1.518547px;}
.ws17{word-spacing:2.369457px;}
.ws33{word-spacing:3.299613px;}
.ws36{word-spacing:3.359389px;}
.ws30{word-spacing:3.482185px;}
.ws31{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.ws14{word-spacing:3.678549px;}
.ws25{word-spacing:4.136731px;}
.ws13{word-spacing:4.162913px;}
.ws20{word-spacing:4.228367px;}
.wsa{word-spacing:4.398549px;}
.ws16{word-spacing:4.483200px;}
.ws1d{word-spacing:4.804368px;}
.ws21{word-spacing:5.053095px;}
.ws1c{word-spacing:5.249459px;}
.ws23{word-spacing:5.314914px;}
.wsd{word-spacing:5.511277px;}
.ws26{word-spacing:5.707641px;}
.ws24{word-spacing:5.904005px;}
.wse{word-spacing:5.969460px;}
.ws34{word-spacing:6.121021px;}
.ws28{word-spacing:6.165823px;}
.ws2b{word-spacing:6.951279px;}
.ws2f{word-spacing:7.605825px;}
.ws8{word-spacing:8.914917px;}
.wsc{word-spacing:9.111280px;}
.ws2e{word-spacing:9.176735px;}
.ws18{word-spacing:10.027645px;}
.ws6{word-spacing:10.878555px;}
.wsb{word-spacing:11.336737px;}
.ws1e{word-spacing:14.360739px;}
.ws27{word-spacing:17.031287px;}
.ws3{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws15{word-spacing:39.639306px;}
.ws1{word-spacing:54.283749px;}
.ws2{word-spacing:54.432472px;}
.ws22{word-spacing:58.281600px;}
.ws7{word-spacing:71.862874px;}
._2a{margin-left:-6.742733px;}
._8{margin-left:-5.432732px;}
._4{margin-left:-3.730912px;}
._0{margin-left:-2.223667px;}
._b{margin-left:-1.116307px;}
._a{width:1.178183px;}
._1{width:2.223667px;}
._28{width:3.267362px;}
._24{width:4.643698px;}
._2d{width:16.427315px;}
._26{width:18.716437px;}
._3{width:23.625532px;}
._2b{width:25.394538px;}
._27{width:26.839964px;}
._2{width:28.341842px;}
._6{width:29.583690px;}
._5{width:31.027270px;}
._2e{width:32.697253px;}
._7{width:33.770995px;}
._9{width:35.479972px;}
._25{width:36.850997px;}
._2c{width:39.729153px;}
._1a{width:41.301853px;}
._23{width:48.894586px;}
._1c{width:50.530951px;}
._c{width:60.545505px;}
._10{width:66.894601px;}
._29{width:75.272790px;}
._22{width:80.697600px;}
._e{width:776.953259px;}
._1b{width:1121.957299px;}
._17{width:1376.379329px;}
._18{width:1378.212058px;}
._f{width:1385.281154px;}
._d{width:1430.055679px;}
._14{width:1580.335862px;}
._16{width:1587.012232px;}
._15{width:1610.183160px;}
._1f{width:1718.970494px;}
._11{width:1768.452383px;}
._21{width:1792.997858px;}
._1d{width:1810.214207px;}
._12{width:1837.636106px;}
._13{width:1854.459727px;}
._20{width:1857.863366px;}
._1e{width:1910.685229px;}
._19{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y33{bottom:93.813000px;}
.y32{bottom:176.005500px;}
.y31{bottom:196.329000px;}
.y52{bottom:202.768500px;}
.y6c{bottom:212.220000px;}
.y30{bottom:223.933500px;}
.y6b{bottom:232.543500px;}
.y51{bottom:236.541000px;}
.y6a{bottom:252.868500px;}
.y2f{bottom:255.240000px;}
.y50{bottom:270.315000px;}
.y69{bottom:273.192000px;}
.y84{bottom:282.483000px;}
.y2e{bottom:286.545000px;}
.y4f{bottom:290.638500px;}
.y68{bottom:293.515500px;}
.y83{bottom:302.806500px;}
.y67{bottom:313.839000px;}
.y2d{bottom:317.851500px;}
.y4e{bottom:319.417500px;}
.y82{bottom:323.130000px;}
.y2c{bottom:349.156500px;}
.y66{bottom:350.367000px;}
.y81{bottom:351.909000px;}
.y4d{bottom:355.945500px;}
.y2b{bottom:376.761000px;}
.y12{bottom:377.091000px;}
.y80{bottom:388.437000px;}
.y4c{bottom:389.718000px;}
.y65{bottom:395.947500px;}
.y2a{bottom:397.084500px;}
.y11{bottom:397.416000px;}
.y7f{bottom:408.760500px;}
.y64{bottom:416.272500px;}
.y29{bottom:417.409500px;}
.y10{bottom:417.739500px;}
.y4b{bottom:423.492000px;}
.y7e{bottom:437.539500px;}
.y28{bottom:437.733000px;}
.yf{bottom:438.063000px;}
.y63{bottom:450.045000px;}
.y4a{bottom:457.266000px;}
.ye{bottom:458.386500px;}
.y27{bottom:471.934500px;}
.y7d{bottom:474.067500px;}
.yd{bottom:478.710000px;}
.y62{bottom:483.819000px;}
.y49{bottom:491.038500px;}
.y7c{bottom:494.391000px;}
.yc{bottom:499.035000px;}
.y26{bottom:513.442500px;}
.y61{bottom:517.591500px;}
.yb{bottom:519.358500px;}
.y48{bottom:519.817500px;}
.y7b{bottom:528.165000px;}
.ya{bottom:539.682000px;}
.y60{bottom:551.365500px;}
.y47{bottom:556.345500px;}
.y25{bottom:556.612500px;}
.y9{bottom:560.005500px;}
.y7a{bottom:561.937500px;}
.y24{bottom:576.937500px;}
.y5f{bottom:585.138000px;}
.y46{bottom:590.118000px;}
.y79{bottom:595.711500px;}
.y23{bottom:597.261000px;}
.y8{bottom:599.757000px;}
.y22{bottom:617.584500px;}
.y5e{bottom:621.667500px;}
.y45{bottom:623.892000px;}
.y78{bottom:629.485500px;}
.y7{bottom:636.480000px;}
.y21{bottom:637.908000px;}
.y44{bottom:657.666000px;}
.y20{bottom:658.231500px;}
.y77{bottom:658.263000px;}
.y6{bottom:665.211000px;}
.y5d{bottom:667.248000px;}
.y43{bottom:691.438500px;}
.y76{bottom:694.791000px;}
.y1f{bottom:694.920000px;}
.y5c{bottom:703.776000px;}
.y75{bottom:715.116000px;}
.y42{bottom:725.212500px;}
.y1e{bottom:731.607000px;}
.y74{bottom:735.439500px;}
.y5b{bottom:749.356500px;}
.y41{bottom:753.990000px;}
.y73{bottom:764.217000px;}
.y1d{bottom:768.294000px;}
.y5{bottom:778.974000px;}
.y5a{bottom:785.884500px;}
.y40{bottom:790.518000px;}
.y72{bottom:800.745000px;}
.y1c{bottom:804.982500px;}
.y3f{bottom:810.843000px;}
.y4{bottom:816.253500px;}
.y59{bottom:831.465000px;}
.y71{bottom:834.519000px;}
.y1b{bottom:841.669500px;}
.y3e{bottom:847.371000px;}
.y3{bottom:861.085500px;}
.y58{bottom:865.239000px;}
.y70{bottom:868.293000px;}
.y1a{bottom:878.356500px;}
.y3d{bottom:892.951500px;}
.y57{bottom:899.011500px;}
.y6f{bottom:902.065500px;}
.y2{bottom:905.917500px;}
.y19{bottom:915.043500px;}
.y3c{bottom:926.724000px;}
.y56{bottom:932.785500px;}
.y18{bottom:935.368500px;}
.y6e{bottom:935.839500px;}
.y3b{bottom:947.049000px;}
.y17{bottom:955.692000px;}
.y6d{bottom:964.617000px;}
.y55{bottom:966.558000px;}
.y3a{bottom:967.372500px;}
.y8a{bottom:972.751500px;}
.y16{bottom:976.015500px;}
.y89{bottom:998.157000px;}
.y54{bottom:1000.332000px;}
.y39{bottom:1001.145000px;}
.y15{bottom:1012.702500px;}
.y88{bottom:1016.089500px;}
.y38{bottom:1021.470000px;}
.y53{bottom:1036.860000px;}
.y87{bottom:1041.495000px;}
.y37{bottom:1041.793500px;}
.y14{bottom:1049.391000px;}
.y36{bottom:1062.117000px;}
.y86{bottom:1066.899000px;}
.y35{bottom:1082.440500px;}
.y85{bottom:1084.831500px;}
.y13{bottom:1086.078000px;}
.y1{bottom:1087.587000px;}
.y34{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.hb{height:44.831700px;}
.h9{height:45.818220px;}
.ha{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:73.377798px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x9{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.xa{left:161.064000px;}
.x6{left:164.010000px;}
.x8{left:168.336000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:1.614942pt;}
.ls3{letter-spacing:2.094547pt;}
.ls4{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.ls2{letter-spacing:29.090933pt;}
.ws12{word-spacing:-19.925333pt;}
.ws19{word-spacing:-16.162923pt;}
.ws35{word-spacing:-13.581016pt;}
.ws32{word-spacing:-3.246548pt;}
.ws2a{word-spacing:-2.722911pt;}
.ws1b{word-spacing:-1.152001pt;}
.ws29{word-spacing:-0.628364pt;}
.ws9{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.058182pt;}
.ws2c{word-spacing:-0.042507pt;}
.ws11{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.011636pt;}
.ws10{word-spacing:0.069818pt;}
.wsf{word-spacing:0.244364pt;}
.ws1f{word-spacing:1.349819pt;}
.ws17{word-spacing:2.106184pt;}
.ws33{word-spacing:2.932989pt;}
.ws36{word-spacing:2.986123pt;}
.ws30{word-spacing:3.095275pt;}
.ws31{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.ws14{word-spacing:3.269821pt;}
.ws25{word-spacing:3.677094pt;}
.ws13{word-spacing:3.700367pt;}
.ws20{word-spacing:3.758549pt;}
.wsa{word-spacing:3.909821pt;}
.ws16{word-spacing:3.985067pt;}
.ws1d{word-spacing:4.270549pt;}
.ws21{word-spacing:4.491640pt;}
.ws1c{word-spacing:4.666186pt;}
.ws23{word-spacing:4.724368pt;}
.wsd{word-spacing:4.898913pt;}
.ws26{word-spacing:5.073459pt;}
.ws24{word-spacing:5.248004pt;}
.wse{word-spacing:5.306186pt;}
.ws34{word-spacing:5.440908pt;}
.ws28{word-spacing:5.480732pt;}
.ws2b{word-spacing:6.178914pt;}
.ws2f{word-spacing:6.760733pt;}
.ws8{word-spacing:7.924370pt;}
.wsc{word-spacing:8.098916pt;}
.ws2e{word-spacing:8.157098pt;}
.ws18{word-spacing:8.913462pt;}
.ws6{word-spacing:9.669826pt;}
.wsb{word-spacing:10.077099pt;}
.ws1e{word-spacing:12.765102pt;}
.ws27{word-spacing:15.138922pt;}
.ws3{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws15{word-spacing:35.234938pt;}
.ws1{word-spacing:48.252221pt;}
.ws2{word-spacing:48.384419pt;}
.ws22{word-spacing:51.805867pt;}
.ws7{word-spacing:63.878110pt;}
._2a{margin-left:-5.993540pt;}
._8{margin-left:-4.829095pt;}
._4{margin-left:-3.316366pt;}
._0{margin-left:-1.976593pt;}
._b{margin-left:-0.992273pt;}
._a{width:1.047274pt;}
._1{width:1.976593pt;}
._28{width:2.904322pt;}
._24{width:4.127732pt;}
._2d{width:14.602058pt;}
._26{width:16.636833pt;}
._3{width:21.000473pt;}
._2b{width:22.572923pt;}
._27{width:23.857746pt;}
._2{width:25.192748pt;}
._6{width:26.296613pt;}
._5{width:27.579795pt;}
._2e{width:29.064225pt;}
._7{width:30.018662pt;}
._9{width:31.537753pt;}
._25{width:32.756442pt;}
._2c{width:35.314803pt;}
._1a{width:36.712758pt;}
._23{width:43.461854pt;}
._1c{width:44.916401pt;}
._c{width:53.818227pt;}
._10{width:59.461868pt;}
._29{width:66.909147pt;}
._22{width:71.731200pt;}
._e{width:690.625119pt;}
._1b{width:997.295377pt;}
._17{width:1223.448292pt;}
._18{width:1225.077385pt;}
._f{width:1231.361026pt;}
._d{width:1271.160604pt;}
._14{width:1404.742989pt;}
._16{width:1410.677539pt;}
._15{width:1431.273920pt;}
._1f{width:1527.973773pt;}
._11{width:1571.957674pt;}
._21{width:1593.775874pt;}
._1d{width:1609.079295pt;}
._12{width:1633.454316pt;}
._13{width:1648.408646pt;}
._20{width:1651.434103pt;}
._1e{width:1698.386870pt;}
._19{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:83.389333pt;}
.y32{bottom:156.449333pt;}
.y31{bottom:174.514667pt;}
.y52{bottom:180.238667pt;}
.y6c{bottom:188.640000pt;}
.y30{bottom:199.052000pt;}
.y6b{bottom:206.705333pt;}
.y51{bottom:210.258667pt;}
.y6a{bottom:224.772000pt;}
.y2f{bottom:226.880000pt;}
.y50{bottom:240.280000pt;}
.y69{bottom:242.837333pt;}
.y84{bottom:251.096000pt;}
.y2e{bottom:254.706667pt;}
.y4f{bottom:258.345333pt;}
.y68{bottom:260.902667pt;}
.y83{bottom:269.161333pt;}
.y67{bottom:278.968000pt;}
.y2d{bottom:282.534667pt;}
.y4e{bottom:283.926667pt;}
.y82{bottom:287.226667pt;}
.y2c{bottom:310.361333pt;}
.y66{bottom:311.437333pt;}
.y81{bottom:312.808000pt;}
.y4d{bottom:316.396000pt;}
.y2b{bottom:334.898667pt;}
.y12{bottom:335.192000pt;}
.y80{bottom:345.277333pt;}
.y4c{bottom:346.416000pt;}
.y65{bottom:351.953333pt;}
.y2a{bottom:352.964000pt;}
.y11{bottom:353.258667pt;}
.y7f{bottom:363.342667pt;}
.y64{bottom:370.020000pt;}
.y29{bottom:371.030667pt;}
.y10{bottom:371.324000pt;}
.y4b{bottom:376.437333pt;}
.y7e{bottom:388.924000pt;}
.y28{bottom:389.096000pt;}
.yf{bottom:389.389333pt;}
.y63{bottom:400.040000pt;}
.y4a{bottom:406.458667pt;}
.ye{bottom:407.454667pt;}
.y27{bottom:419.497333pt;}
.y7d{bottom:421.393333pt;}
.yd{bottom:425.520000pt;}
.y62{bottom:430.061333pt;}
.y49{bottom:436.478667pt;}
.y7c{bottom:439.458667pt;}
.yc{bottom:443.586667pt;}
.y26{bottom:456.393333pt;}
.y61{bottom:460.081333pt;}
.yb{bottom:461.652000pt;}
.y48{bottom:462.060000pt;}
.y7b{bottom:469.480000pt;}
.ya{bottom:479.717333pt;}
.y60{bottom:490.102667pt;}
.y47{bottom:494.529333pt;}
.y25{bottom:494.766667pt;}
.y9{bottom:497.782667pt;}
.y7a{bottom:499.500000pt;}
.y24{bottom:512.833333pt;}
.y5f{bottom:520.122667pt;}
.y46{bottom:524.549333pt;}
.y79{bottom:529.521333pt;}
.y23{bottom:530.898667pt;}
.y8{bottom:533.117333pt;}
.y22{bottom:548.964000pt;}
.y5e{bottom:552.593333pt;}
.y45{bottom:554.570667pt;}
.y78{bottom:559.542667pt;}
.y7{bottom:565.760000pt;}
.y21{bottom:567.029333pt;}
.y44{bottom:584.592000pt;}
.y20{bottom:585.094667pt;}
.y77{bottom:585.122667pt;}
.y6{bottom:591.298667pt;}
.y5d{bottom:593.109333pt;}
.y43{bottom:614.612000pt;}
.y76{bottom:617.592000pt;}
.y1f{bottom:617.706667pt;}
.y5c{bottom:625.578667pt;}
.y75{bottom:635.658667pt;}
.y42{bottom:644.633333pt;}
.y1e{bottom:650.317333pt;}
.y74{bottom:653.724000pt;}
.y5b{bottom:666.094667pt;}
.y41{bottom:670.213333pt;}
.y73{bottom:679.304000pt;}
.y1d{bottom:682.928000pt;}
.y5{bottom:692.421333pt;}
.y5a{bottom:698.564000pt;}
.y40{bottom:702.682667pt;}
.y72{bottom:711.773333pt;}
.y1c{bottom:715.540000pt;}
.y3f{bottom:720.749333pt;}
.y4{bottom:725.558667pt;}
.y59{bottom:739.080000pt;}
.y71{bottom:741.794667pt;}
.y1b{bottom:748.150667pt;}
.y3e{bottom:753.218667pt;}
.y3{bottom:765.409333pt;}
.y58{bottom:769.101333pt;}
.y70{bottom:771.816000pt;}
.y1a{bottom:780.761333pt;}
.y3d{bottom:793.734667pt;}
.y57{bottom:799.121333pt;}
.y6f{bottom:801.836000pt;}
.y2{bottom:805.260000pt;}
.y19{bottom:813.372000pt;}
.y3c{bottom:823.754667pt;}
.y56{bottom:829.142667pt;}
.y18{bottom:831.438667pt;}
.y6e{bottom:831.857333pt;}
.y3b{bottom:841.821333pt;}
.y17{bottom:849.504000pt;}
.y6d{bottom:857.437333pt;}
.y55{bottom:859.162667pt;}
.y3a{bottom:859.886667pt;}
.y8a{bottom:864.668000pt;}
.y16{bottom:867.569333pt;}
.y89{bottom:887.250667pt;}
.y54{bottom:889.184000pt;}
.y39{bottom:889.906667pt;}
.y15{bottom:900.180000pt;}
.y88{bottom:903.190667pt;}
.y38{bottom:907.973333pt;}
.y53{bottom:921.653333pt;}
.y87{bottom:925.773333pt;}
.y37{bottom:926.038667pt;}
.y14{bottom:932.792000pt;}
.y36{bottom:944.104000pt;}
.y86{bottom:948.354667pt;}
.y35{bottom:962.169333pt;}
.y85{bottom:964.294667pt;}
.y13{bottom:965.402667pt;}
.y1{bottom:966.744000pt;}
.y34{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.hb{height:39.850400pt;}
.h9{height:40.727307pt;}
.ha{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:65.224709pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x9{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.xa{left:143.168000pt;}
.x6{left:145.786667pt;}
.x8{left:149.632000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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