
    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_7e1208366b6d212f81b22320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_7e1208366b6d212f81b22320.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_70242b975a10b1ffea67c9ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_5248bf6260a480a00ab29bf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_ffaa45111374d08c09c8ea64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_185ff1245014c593fb11e716.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_227f7fe95f7779130bcf9e1d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_9b8d8d1d8394291e018139e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_82f9cb290d1d8cd8c7922ddf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_1551b4b93495ff5d9cd99168.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_448d90ddb693fec21f8049e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707000;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:ffc;src:url('chunks/assets/font_2d1ef16051a8d38b6157dfae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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:ffd;src:url('chunks/assets/font_70242b975a10b1ffea67c9ca.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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:ffe;src:url('chunks/assets/font_682d3ac0bbbeac231cc6ea64.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945813;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls2{letter-spacing:-0.768000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:49.020000px;}
.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:-15.000000px;}
.wsc{word-spacing:-1.980000px;}
.ws4{word-spacing:-1.620000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws18{word-spacing:0.780000px;}
.ws19{word-spacing:1.860000px;}
.ws11{word-spacing:3.240000px;}
.ws7{word-spacing:3.900000px;}
.wsf{word-spacing:4.740000px;}
.ws8{word-spacing:7.260000px;}
.ws15{word-spacing:9.420000px;}
.ws5{word-spacing:9.660000px;}
.ws6{word-spacing:10.260000px;}
.ws1a{word-spacing:12.780000px;}
.ws12{word-spacing:15.780000px;}
.ws14{word-spacing:16.140000px;}
.ws17{word-spacing:16.860000px;}
.wsd{word-spacing:21.540000px;}
.ws13{word-spacing:22.440000px;}
.wse{word-spacing:27.000000px;}
.ws10{word-spacing:28.260000px;}
.wsb{word-spacing:34.020000px;}
.ws16{word-spacing:43.980000px;}
.ws9{word-spacing:48.021000px;}
.wsa{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._d{margin-left:-51.000000px;}
._4{margin-left:-6.583200px;}
._3{margin-left:-5.421000px;}
._2{margin-left:-4.386000px;}
._5{margin-left:-2.391600px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._7{width:2.496000px;}
._8{width:3.984000px;}
._9{width:5.682000px;}
._b{width:6.780000px;}
._e{width:7.980000px;}
._f{width:9.648000px;}
._1e{width:10.734000px;}
._16{width:12.792000px;}
._14{width:13.842000px;}
._a{width:16.884000px;}
._13{width:18.048000px;}
._1c{width:21.696000px;}
._1b{width:22.998000px;}
._10{width:24.564000px;}
._11{width:26.094000px;}
._15{width:27.858000px;}
._12{width:31.272000px;}
._20{width:33.250800px;}
._1f{width:34.509600px;}
._17{width:43.020000px;}
._1a{width:47.580000px;}
._18{width:52.884000px;}
._19{width:66.780000px;}
._1d{width:68.160000px;}
._c{width:70.020000px;}
._6{width:71.640000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y62{bottom:99.401400px;}
.y8e{bottom:118.661400px;}
.y61{bottom:118.901400px;}
.y8d{bottom:138.161400px;}
.y60{bottom:138.401400px;}
.y8c{bottom:157.661400px;}
.y5f{bottom:157.901400px;}
.y2a{bottom:162.142650px;}
.y8b{bottom:177.161400px;}
.y5e{bottom:177.401400px;}
.y29{bottom:181.642650px;}
.y8a{bottom:196.661400px;}
.y5d{bottom:196.901400px;}
.y28{bottom:201.142650px;}
.y89{bottom:216.161400px;}
.y5c{bottom:216.401400px;}
.y27{bottom:220.642650px;}
.y88{bottom:235.661400px;}
.y5b{bottom:235.901400px;}
.y26{bottom:240.142650px;}
.y87{bottom:255.161400px;}
.y5a{bottom:255.401400px;}
.y25{bottom:259.642650px;}
.y86{bottom:274.661400px;}
.y59{bottom:274.901400px;}
.y24{bottom:279.142650px;}
.y85{bottom:294.161400px;}
.y58{bottom:294.401400px;}
.y23{bottom:298.642650px;}
.y84{bottom:313.661400px;}
.y57{bottom:313.901400px;}
.y22{bottom:318.142650px;}
.y83{bottom:333.161400px;}
.y56{bottom:333.401400px;}
.y21{bottom:337.642650px;}
.y82{bottom:352.661400px;}
.y55{bottom:352.901400px;}
.y81{bottom:372.161400px;}
.y54{bottom:372.401400px;}
.y20{bottom:376.642650px;}
.y80{bottom:391.661400px;}
.y53{bottom:391.901400px;}
.y1f{bottom:396.142650px;}
.y1e{bottom:415.642650px;}
.y7f{bottom:430.661400px;}
.y52{bottom:430.901400px;}
.y1d{bottom:435.142650px;}
.y7e{bottom:450.161400px;}
.y51{bottom:450.401400px;}
.y1c{bottom:454.642650px;}
.y33{bottom:456.139950px;}
.y7d{bottom:469.661400px;}
.y50{bottom:469.901400px;}
.y1b{bottom:474.142650px;}
.y32{bottom:478.639950px;}
.y7c{bottom:489.161400px;}
.y4f{bottom:489.401400px;}
.y1a{bottom:493.642650px;}
.y31{bottom:501.139950px;}
.y7b{bottom:508.661400px;}
.y4e{bottom:508.901400px;}
.y19{bottom:513.142650px;}
.y7a{bottom:528.161400px;}
.y4d{bottom:528.401400px;}
.y18{bottom:532.642650px;}
.y30{bottom:541.639950px;}
.y79{bottom:547.661400px;}
.y4c{bottom:547.901400px;}
.y17{bottom:552.142650px;}
.y78{bottom:567.161400px;}
.y4b{bottom:567.401400px;}
.y16{bottom:571.642650px;}
.y2f{bottom:586.639950px;}
.y77{bottom:586.661400px;}
.y4a{bottom:586.901400px;}
.y76{bottom:606.161400px;}
.y49{bottom:606.401400px;}
.y15{bottom:610.642650px;}
.y75{bottom:625.661400px;}
.y48{bottom:625.901400px;}
.y2e{bottom:627.139950px;}
.y14{bottom:630.142650px;}
.y74{bottom:645.161400px;}
.y47{bottom:645.401400px;}
.y13{bottom:649.642650px;}
.y2d{bottom:663.139950px;}
.y73{bottom:664.661400px;}
.y46{bottom:664.901400px;}
.y12{bottom:669.142650px;}
.y72{bottom:684.161400px;}
.y45{bottom:684.401400px;}
.y11{bottom:688.642650px;}
.y2c{bottom:699.139950px;}
.y44{bottom:703.901400px;}
.y10{bottom:708.142650px;}
.y71{bottom:723.161400px;}
.yf{bottom:727.642650px;}
.y2b{bottom:735.139950px;}
.y70{bottom:742.661400px;}
.y43{bottom:742.901400px;}
.ye{bottom:747.142650px;}
.y6f{bottom:762.161400px;}
.y42{bottom:762.401400px;}
.yd{bottom:766.642650px;}
.y6e{bottom:781.661400px;}
.y41{bottom:781.901400px;}
.yc{bottom:786.142650px;}
.y6d{bottom:801.161400px;}
.y40{bottom:801.401400px;}
.yb{bottom:805.642650px;}
.y6c{bottom:820.661400px;}
.y3f{bottom:820.901400px;}
.ya{bottom:825.142650px;}
.y6b{bottom:840.161400px;}
.y3e{bottom:840.401400px;}
.y6a{bottom:859.661400px;}
.y3d{bottom:859.901400px;}
.y9{bottom:867.147150px;}
.y69{bottom:879.161400px;}
.y3c{bottom:879.401400px;}
.y8{bottom:885.142650px;}
.y68{bottom:898.661400px;}
.y3b{bottom:898.901400px;}
.y7{bottom:903.142650px;}
.y93{bottom:918.159600px;}
.y67{bottom:918.161400px;}
.y3a{bottom:918.401400px;}
.y92{bottom:937.659600px;}
.y66{bottom:937.661400px;}
.y39{bottom:937.901400px;}
.y6{bottom:942.142650px;}
.y91{bottom:957.159600px;}
.y65{bottom:957.161400px;}
.y38{bottom:957.401400px;}
.y5{bottom:969.142650px;}
.y90{bottom:976.659600px;}
.y64{bottom:976.661400px;}
.y37{bottom:976.901400px;}
.y8f{bottom:996.159600px;}
.y63{bottom:996.161400px;}
.y36{bottom:996.401400px;}
.y4{bottom:1024.374150px;}
.y35{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.660156px;}
.ha{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hc{height:46.200000px;}
.hb{height:50.400000px;}
.he{height:52.492611px;}
.hd{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xf{left:65.202600px;}
.xd{left:73.559100px;}
.xe{left:74.853150px;}
.x10{left:90.779550px;}
.xa{left:224.187900px;}
.xb{left:233.187900px;}
.xc{left:251.187900px;}
.x5{left:266.257650px;}
.x9{left:361.781550px;}
.x6{left:381.007650px;}
.x8{left:392.575050px;}
.x11{left:399.929550px;}
.x12{left:408.929550px;}
.x4{left:412.272150px;}
.x13{left:426.929550px;}
.x7{left:608.829150px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:43.573333pt;}
.ws2{word-spacing:-13.333333pt;}
.wsc{word-spacing:-1.760000pt;}
.ws4{word-spacing:-1.440000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws18{word-spacing:0.693333pt;}
.ws19{word-spacing:1.653333pt;}
.ws11{word-spacing:2.880000pt;}
.ws7{word-spacing:3.466667pt;}
.wsf{word-spacing:4.213333pt;}
.ws8{word-spacing:6.453333pt;}
.ws15{word-spacing:8.373333pt;}
.ws5{word-spacing:8.586667pt;}
.ws6{word-spacing:9.120000pt;}
.ws1a{word-spacing:11.360000pt;}
.ws12{word-spacing:14.026667pt;}
.ws14{word-spacing:14.346667pt;}
.ws17{word-spacing:14.986667pt;}
.wsd{word-spacing:19.146667pt;}
.ws13{word-spacing:19.946667pt;}
.wse{word-spacing:24.000000pt;}
.ws10{word-spacing:25.120000pt;}
.wsb{word-spacing:30.240000pt;}
.ws16{word-spacing:39.093333pt;}
.ws9{word-spacing:42.685333pt;}
.wsa{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._d{margin-left:-45.333333pt;}
._4{margin-left:-5.851733pt;}
._3{margin-left:-4.818667pt;}
._2{margin-left:-3.898667pt;}
._5{margin-left:-2.125867pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._7{width:2.218667pt;}
._8{width:3.541333pt;}
._9{width:5.050667pt;}
._b{width:6.026667pt;}
._e{width:7.093333pt;}
._f{width:8.576000pt;}
._1e{width:9.541333pt;}
._16{width:11.370667pt;}
._14{width:12.304000pt;}
._a{width:15.008000pt;}
._13{width:16.042667pt;}
._1c{width:19.285333pt;}
._1b{width:20.442667pt;}
._10{width:21.834667pt;}
._11{width:23.194667pt;}
._15{width:24.762667pt;}
._12{width:27.797333pt;}
._20{width:29.556267pt;}
._1f{width:30.675200pt;}
._17{width:38.240000pt;}
._1a{width:42.293333pt;}
._18{width:47.008000pt;}
._19{width:59.360000pt;}
._1d{width:60.586667pt;}
._c{width:62.240000pt;}
._6{width:63.680000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y62{bottom:88.356800pt;}
.y8e{bottom:105.476800pt;}
.y61{bottom:105.690133pt;}
.y8d{bottom:122.810133pt;}
.y60{bottom:123.023467pt;}
.y8c{bottom:140.143467pt;}
.y5f{bottom:140.356800pt;}
.y2a{bottom:144.126800pt;}
.y8b{bottom:157.476800pt;}
.y5e{bottom:157.690133pt;}
.y29{bottom:161.460133pt;}
.y8a{bottom:174.810133pt;}
.y5d{bottom:175.023467pt;}
.y28{bottom:178.793467pt;}
.y89{bottom:192.143467pt;}
.y5c{bottom:192.356800pt;}
.y27{bottom:196.126800pt;}
.y88{bottom:209.476800pt;}
.y5b{bottom:209.690133pt;}
.y26{bottom:213.460133pt;}
.y87{bottom:226.810133pt;}
.y5a{bottom:227.023467pt;}
.y25{bottom:230.793467pt;}
.y86{bottom:244.143467pt;}
.y59{bottom:244.356800pt;}
.y24{bottom:248.126800pt;}
.y85{bottom:261.476800pt;}
.y58{bottom:261.690133pt;}
.y23{bottom:265.460133pt;}
.y84{bottom:278.810133pt;}
.y57{bottom:279.023467pt;}
.y22{bottom:282.793467pt;}
.y83{bottom:296.143467pt;}
.y56{bottom:296.356800pt;}
.y21{bottom:300.126800pt;}
.y82{bottom:313.476800pt;}
.y55{bottom:313.690133pt;}
.y81{bottom:330.810133pt;}
.y54{bottom:331.023467pt;}
.y20{bottom:334.793467pt;}
.y80{bottom:348.143467pt;}
.y53{bottom:348.356800pt;}
.y1f{bottom:352.126800pt;}
.y1e{bottom:369.460133pt;}
.y7f{bottom:382.810133pt;}
.y52{bottom:383.023467pt;}
.y1d{bottom:386.793467pt;}
.y7e{bottom:400.143467pt;}
.y51{bottom:400.356800pt;}
.y1c{bottom:404.126800pt;}
.y33{bottom:405.457733pt;}
.y7d{bottom:417.476800pt;}
.y50{bottom:417.690133pt;}
.y1b{bottom:421.460133pt;}
.y32{bottom:425.457733pt;}
.y7c{bottom:434.810133pt;}
.y4f{bottom:435.023467pt;}
.y1a{bottom:438.793467pt;}
.y31{bottom:445.457733pt;}
.y7b{bottom:452.143467pt;}
.y4e{bottom:452.356800pt;}
.y19{bottom:456.126800pt;}
.y7a{bottom:469.476800pt;}
.y4d{bottom:469.690133pt;}
.y18{bottom:473.460133pt;}
.y30{bottom:481.457733pt;}
.y79{bottom:486.810133pt;}
.y4c{bottom:487.023467pt;}
.y17{bottom:490.793467pt;}
.y78{bottom:504.143467pt;}
.y4b{bottom:504.356800pt;}
.y16{bottom:508.126800pt;}
.y2f{bottom:521.457733pt;}
.y77{bottom:521.476800pt;}
.y4a{bottom:521.690133pt;}
.y76{bottom:538.810133pt;}
.y49{bottom:539.023467pt;}
.y15{bottom:542.793467pt;}
.y75{bottom:556.143467pt;}
.y48{bottom:556.356800pt;}
.y2e{bottom:557.457733pt;}
.y14{bottom:560.126800pt;}
.y74{bottom:573.476800pt;}
.y47{bottom:573.690133pt;}
.y13{bottom:577.460133pt;}
.y2d{bottom:589.457733pt;}
.y73{bottom:590.810133pt;}
.y46{bottom:591.023467pt;}
.y12{bottom:594.793467pt;}
.y72{bottom:608.143467pt;}
.y45{bottom:608.356800pt;}
.y11{bottom:612.126800pt;}
.y2c{bottom:621.457733pt;}
.y44{bottom:625.690133pt;}
.y10{bottom:629.460133pt;}
.y71{bottom:642.810133pt;}
.yf{bottom:646.793467pt;}
.y2b{bottom:653.457733pt;}
.y70{bottom:660.143467pt;}
.y43{bottom:660.356800pt;}
.ye{bottom:664.126800pt;}
.y6f{bottom:677.476800pt;}
.y42{bottom:677.690133pt;}
.yd{bottom:681.460133pt;}
.y6e{bottom:694.810133pt;}
.y41{bottom:695.023467pt;}
.yc{bottom:698.793467pt;}
.y6d{bottom:712.143467pt;}
.y40{bottom:712.356800pt;}
.yb{bottom:716.126800pt;}
.y6c{bottom:729.476800pt;}
.y3f{bottom:729.690133pt;}
.ya{bottom:733.460133pt;}
.y6b{bottom:746.810133pt;}
.y3e{bottom:747.023467pt;}
.y6a{bottom:764.143467pt;}
.y3d{bottom:764.356800pt;}
.y9{bottom:770.797467pt;}
.y69{bottom:781.476800pt;}
.y3c{bottom:781.690133pt;}
.y8{bottom:786.793467pt;}
.y68{bottom:798.810133pt;}
.y3b{bottom:799.023467pt;}
.y7{bottom:802.793467pt;}
.y93{bottom:816.141867pt;}
.y67{bottom:816.143467pt;}
.y3a{bottom:816.356800pt;}
.y92{bottom:833.475200pt;}
.y66{bottom:833.476800pt;}
.y39{bottom:833.690133pt;}
.y6{bottom:837.460133pt;}
.y91{bottom:850.808533pt;}
.y65{bottom:850.810133pt;}
.y38{bottom:851.023467pt;}
.y5{bottom:861.460133pt;}
.y90{bottom:868.141867pt;}
.y64{bottom:868.143467pt;}
.y37{bottom:868.356800pt;}
.y8f{bottom:885.475200pt;}
.y63{bottom:885.476800pt;}
.y36{bottom:885.690133pt;}
.y4{bottom:910.554800pt;}
.y35{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.031250pt;}
.ha{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hc{height:41.066667pt;}
.hb{height:44.800000pt;}
.he{height:46.660099pt;}
.hd{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xf{left:57.957867pt;}
.xd{left:65.385867pt;}
.xe{left:66.536133pt;}
.x10{left:80.692933pt;}
.xa{left:199.278133pt;}
.xb{left:207.278133pt;}
.xc{left:223.278133pt;}
.x5{left:236.673467pt;}
.x9{left:321.583600pt;}
.x6{left:338.673467pt;}
.x8{left:348.955600pt;}
.x11{left:355.492933pt;}
.x12{left:363.492933pt;}
.x4{left:366.464133pt;}
.x13{left:379.492933pt;}
.x7{left:541.181467pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
}




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