
    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_697e848bf140aafd167ea034.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_31657fd94f4734e8bfa28d54.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_4b018e242e3f76862308050b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.831000;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_4a0a64f07fd751ccc1858565.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c84eeef2b7ea3910f8533a90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:32.994000px;}
.ls2{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.648000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:3.717000px;}
.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:-15.264000px;}
.ws1{word-spacing:-13.797000px;}
.ws3{word-spacing:-13.041000px;}
.ws7{word-spacing:-11.178000px;}
.ws0{word-spacing:-10.512000px;}
.ws2{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.648000px;}
.ws5{word-spacing:0.756000px;}
.ws8{word-spacing:63.925200px;}
._11{margin-left:-13.347600px;}
._16{margin-left:-11.826000px;}
._c{margin-left:-5.087100px;}
._12{margin-left:-4.067400px;}
._0{margin-left:-2.976000px;}
._1{margin-left:-1.344000px;}
._9{width:1.136100px;}
._3{width:2.459400px;}
._5{width:3.761100px;}
._4{width:4.936800px;}
._b{width:6.123900px;}
._8{width:7.156800px;}
._13{width:8.485800px;}
._2{width:9.809100px;}
._f{width:10.817100px;}
._a{width:11.936400px;}
._7{width:15.756300px;}
._10{width:16.825200px;}
._6{width:17.892000px;}
._e{width:19.095300px;}
._d{width:24.020700px;}
._14{width:25.552800px;}
._15{width:26.812800px;}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.647600px;}
.ya3{bottom:62.818200px;}
.y59{bottom:63.053700px;}
.y37{bottom:63.213150px;}
.yc9{bottom:65.431800px;}
.yc6{bottom:73.678650px;}
.ya2{bottom:78.572700px;}
.yc8{bottom:81.928800px;}
.y36{bottom:83.908650px;}
.y58{bottom:84.048450px;}
.yc5{bottom:90.175650px;}
.ya1{bottom:94.327200px;}
.yc7{bottom:98.425800px;}
.y35{bottom:104.903400px;}
.y57{bottom:105.043200px;}
.yc4{bottom:119.611800px;}
.ya0{bottom:120.707100px;}
.y34{bottom:125.898150px;}
.y56{bottom:126.037950px;}
.yc1{bottom:127.858800px;}
.yc3{bottom:136.108800px;}
.yc0{bottom:144.355800px;}
.y33{bottom:146.892900px;}
.y55{bottom:147.032700px;}
.yc2{bottom:152.605800px;}
.y32{bottom:167.887650px;}
.y54{bottom:168.027450px;}
.y9f{bottom:171.801600px;}
.ybf{bottom:173.791950px;}
.ybc{bottom:182.035950px;}
.y31{bottom:188.882400px;}
.y53{bottom:189.022200px;}
.ybe{bottom:190.288950px;}
.y9e{bottom:192.796350px;}
.ybb{bottom:198.535950px;}
.ybd{bottom:206.785950px;}
.y30{bottom:209.877150px;}
.y52{bottom:210.016950px;}
.y9d{bottom:213.791100px;}
.yba{bottom:227.972100px;}
.y2f{bottom:230.871900px;}
.y51{bottom:231.011700px;}
.y9c{bottom:234.785850px;}
.yb7{bottom:244.466100px;}
.yb9{bottom:244.469100px;}
.y2e{bottom:251.866650px;}
.y50{bottom:252.006450px;}
.y9b{bottom:255.780600px;}
.yb8{bottom:260.966100px;}
.y2d{bottom:272.861400px;}
.y4f{bottom:273.001200px;}
.y9a{bottom:276.775350px;}
.yb6{bottom:282.152250px;}
.y2c{bottom:293.856150px;}
.y4e{bottom:293.995950px;}
.y99{bottom:297.770100px;}
.yb3{bottom:298.646250px;}
.yb5{bottom:298.649250px;}
.y2b{bottom:314.850900px;}
.y4d{bottom:314.990700px;}
.yb4{bottom:315.146250px;}
.y98{bottom:318.764850px;}
.y2a{bottom:335.845650px;}
.y4c{bottom:335.985450px;}
.yb2{bottom:336.332250px;}
.y97{bottom:339.759600px;}
.yaf{bottom:352.826250px;}
.yb1{bottom:352.829250px;}
.y29{bottom:356.840400px;}
.y4b{bottom:356.980200px;}
.y96{bottom:360.754350px;}
.yb0{bottom:369.326250px;}
.y28{bottom:377.835150px;}
.y4a{bottom:377.974950px;}
.y95{bottom:381.749100px;}
.yae{bottom:390.512400px;}
.y27{bottom:398.829900px;}
.y49{bottom:398.969700px;}
.y94{bottom:402.743850px;}
.yab{bottom:407.006400px;}
.yad{bottom:407.009400px;}
.y26{bottom:419.824650px;}
.y48{bottom:419.964450px;}
.yac{bottom:423.506400px;}
.y93{bottom:423.738600px;}
.y25{bottom:440.819400px;}
.y47{bottom:440.959200px;}
.yaa{bottom:443.785950px;}
.y92{bottom:444.733350px;}
.ya5{bottom:452.035950px;}
.ya7{bottom:452.038950px;}
.ya9{bottom:460.285950px;}
.y24{bottom:461.514900px;}
.y46{bottom:461.953950px;}
.y91{bottom:465.728100px;}
.ya6{bottom:468.532950px;}
.ya4{bottom:468.535950px;}
.ya8{bottom:476.784450px;}
.y23{bottom:480.710400px;}
.y45{bottom:482.948700px;}
.y90{bottom:486.722850px;}
.ycf{bottom:502.008450px;}
.y22{bottom:502.919400px;}
.y44{bottom:503.943450px;}
.y8f{bottom:507.717600px;}
.yce{bottom:517.006950px;}
.y21{bottom:523.614900px;}
.y43{bottom:524.938200px;}
.y8e{bottom:528.712350px;}
.ycd{bottom:532.005450px;}
.y20{bottom:542.810400px;}
.y42{bottom:545.932950px;}
.ycc{bottom:547.003950px;}
.y8d{bottom:549.707100px;}
.ycb{bottom:562.002450px;}
.y1f{bottom:565.019400px;}
.y41{bottom:566.927700px;}
.yca{bottom:577.000950px;}
.y8c{bottom:581.337000px;}
.y1e{bottom:585.714900px;}
.y40{bottom:598.557600px;}
.y1d{bottom:604.910400px;}
.y75{bottom:610.040550px;}
.y8b{bottom:621.863250px;}
.y1c{bottom:627.531150px;}
.y74{bottom:631.035300px;}
.y3f{bottom:631.686000px;}
.y8a{bottom:642.858000px;}
.y1b{bottom:648.525900px;}
.y73{bottom:652.030050px;}
.y3e{bottom:652.687500px;}
.y89{bottom:663.852750px;}
.y1a{bottom:669.520650px;}
.y72{bottom:673.024800px;}
.y88{bottom:684.847500px;}
.y19{bottom:690.515400px;}
.y71{bottom:694.019550px;}
.y3d{bottom:703.324650px;}
.y87{bottom:705.842250px;}
.y18{bottom:711.510150px;}
.y70{bottom:715.014300px;}
.y3c{bottom:724.020150px;}
.y86{bottom:726.837000px;}
.y17{bottom:732.504900px;}
.y6f{bottom:736.009050px;}
.y3b{bottom:744.715650px;}
.y16{bottom:753.499650px;}
.y6e{bottom:757.003800px;}
.y85{bottom:758.467050px;}
.y3a{bottom:765.411150px;}
.y15{bottom:774.494400px;}
.y6d{bottom:777.998550px;}
.y39{bottom:786.106650px;}
.y14{bottom:795.489150px;}
.y84{bottom:798.982800px;}
.y6c{bottom:798.993300px;}
.y38{bottom:806.802150px;}
.y13{bottom:816.483900px;}
.y83{bottom:819.977550px;}
.y6b{bottom:819.988050px;}
.y5a{bottom:835.378950px;}
.y12{bottom:837.478650px;}
.y82{bottom:840.972300px;}
.y6a{bottom:840.982800px;}
.y5b{bottom:850.818900px;}
.y11{bottom:858.473400px;}
.y81{bottom:861.967050px;}
.y69{bottom:861.977550px;}
.y10{bottom:879.468150px;}
.y68{bottom:882.972300px;}
.y80{bottom:893.596950px;}
.yf{bottom:900.462900px;}
.y67{bottom:903.967050px;}
.ye{bottom:921.457650px;}
.y7f{bottom:934.107450px;}
.y66{bottom:935.596950px;}
.yd{bottom:942.452400px;}
.y7e{bottom:955.102200px;}
.yc{bottom:963.447150px;}
.y7d{bottom:976.096950px;}
.yb{bottom:984.441900px;}
.y65{bottom:985.268850px;}
.ya{bottom:1005.436650px;}
.y64{bottom:1006.263600px;}
.y7c{bottom:1007.726850px;}
.y9{bottom:1026.431400px;}
.y63{bottom:1027.258350px;}
.y8{bottom:1047.426150px;}
.y62{bottom:1048.253100px;}
.y7b{bottom:1048.331550px;}
.y7{bottom:1068.420900px;}
.y61{bottom:1069.247850px;}
.y7a{bottom:1069.326300px;}
.y6{bottom:1089.415650px;}
.y60{bottom:1090.242600px;}
.y79{bottom:1090.321050px;}
.y5{bottom:1110.410400px;}
.y5f{bottom:1111.237350px;}
.y78{bottom:1111.315800px;}
.y5e{bottom:1132.232100px;}
.y77{bottom:1132.310550px;}
.y4{bottom:1139.914350px;}
.y5d{bottom:1153.226850px;}
.y76{bottom:1153.305300px;}
.y3{bottom:1154.914350px;}
.y2{bottom:1193.811000px;}
.y5c{bottom:1200.561000px;}
.hb{height:34.608000px;}
.h4{height:38.340000px;}
.h5{height:38.640000px;}
.ha{height:38.934000px;}
.hc{height:43.260000px;}
.hd{height:43.470000px;}
.hf{height:43.476000px;}
.h2{height:48.300000px;}
.h6{height:50.715000px;}
.h9{height:51.912000px;}
.h8{height:56.238000px;}
.h7{height:67.200000px;}
.h3{height:69.216000px;}
.he{height:76.464000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x7{left:59.527500px;}
.x23{left:64.388280px;}
.x2{left:66.756450px;}
.x25{left:68.269350px;}
.xa{left:76.923600px;}
.x22{left:78.276000px;}
.x15{left:79.561500px;}
.x21{left:81.766500px;}
.x24{left:86.421450px;}
.x18{left:134.186670px;}
.x17{left:138.403125px;}
.x16{left:145.273950px;}
.xc{left:147.405750px;}
.xb{left:149.908650px;}
.xd{left:206.600550px;}
.x19{left:210.512100px;}
.x1a{left:213.564450px;}
.xe{left:248.700300px;}
.xf{left:253.523850px;}
.x1b{left:255.656100px;}
.x1c{left:258.708450px;}
.x1d{left:290.230200px;}
.x10{left:334.139850px;}
.x11{left:343.262475px;}
.x1e{left:348.665850px;}
.x13{left:387.069300px;}
.x14{left:393.627150px;}
.x1f{left:395.938800px;}
.x12{left:400.017825px;}
.x20{left:402.043500px;}
.x3{left:452.694450px;}
.x8{left:458.223000px;}
.x9{left:492.240450px;}
.x6{left:649.510200px;}
.x5{left:831.593550px;}
.x4{left:845.574750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:29.328000pt;}
.ls2{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.304000pt;}
.ws6{word-spacing:-13.568000pt;}
.ws1{word-spacing:-12.264000pt;}
.ws3{word-spacing:-11.592000pt;}
.ws7{word-spacing:-9.936000pt;}
.ws0{word-spacing:-9.344000pt;}
.ws2{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.576000pt;}
.ws5{word-spacing:0.672000pt;}
.ws8{word-spacing:56.822400pt;}
._11{margin-left:-11.864533pt;}
._16{margin-left:-10.512000pt;}
._c{margin-left:-4.521867pt;}
._12{margin-left:-3.615467pt;}
._0{margin-left:-2.645333pt;}
._1{margin-left:-1.194667pt;}
._9{width:1.009867pt;}
._3{width:2.186133pt;}
._5{width:3.343200pt;}
._4{width:4.388267pt;}
._b{width:5.443467pt;}
._8{width:6.361600pt;}
._13{width:7.542933pt;}
._2{width:8.719200pt;}
._f{width:9.615200pt;}
._a{width:10.610133pt;}
._7{width:14.005600pt;}
._10{width:14.955733pt;}
._6{width:15.904000pt;}
._e{width:16.973600pt;}
._d{width:21.351733pt;}
._14{width:22.713600pt;}
._15{width:23.833600pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.464533pt;}
.ya3{bottom:55.838400pt;}
.y59{bottom:56.047733pt;}
.y37{bottom:56.189467pt;}
.yc9{bottom:58.161600pt;}
.yc6{bottom:65.492133pt;}
.ya2{bottom:69.842400pt;}
.yc8{bottom:72.825600pt;}
.y36{bottom:74.585467pt;}
.y58{bottom:74.709733pt;}
.yc5{bottom:80.156133pt;}
.ya1{bottom:83.846400pt;}
.yc7{bottom:87.489600pt;}
.y35{bottom:93.247467pt;}
.y57{bottom:93.371733pt;}
.yc4{bottom:106.321600pt;}
.ya0{bottom:107.295200pt;}
.y34{bottom:111.909467pt;}
.y56{bottom:112.033733pt;}
.yc1{bottom:113.652267pt;}
.yc3{bottom:120.985600pt;}
.yc0{bottom:128.316267pt;}
.y33{bottom:130.571467pt;}
.y55{bottom:130.695733pt;}
.yc2{bottom:135.649600pt;}
.y32{bottom:149.233467pt;}
.y54{bottom:149.357733pt;}
.y9f{bottom:152.712533pt;}
.ybf{bottom:154.481733pt;}
.ybc{bottom:161.809733pt;}
.y31{bottom:167.895467pt;}
.y53{bottom:168.019733pt;}
.ybe{bottom:169.145733pt;}
.y9e{bottom:171.374533pt;}
.ybb{bottom:176.476400pt;}
.ybd{bottom:183.809733pt;}
.y30{bottom:186.557467pt;}
.y52{bottom:186.681733pt;}
.y9d{bottom:190.036533pt;}
.yba{bottom:202.641867pt;}
.y2f{bottom:205.219467pt;}
.y51{bottom:205.343733pt;}
.y9c{bottom:208.698533pt;}
.yb7{bottom:217.303200pt;}
.yb9{bottom:217.305867pt;}
.y2e{bottom:223.881467pt;}
.y50{bottom:224.005733pt;}
.y9b{bottom:227.360533pt;}
.yb8{bottom:231.969867pt;}
.y2d{bottom:242.543467pt;}
.y4f{bottom:242.667733pt;}
.y9a{bottom:246.022533pt;}
.yb6{bottom:250.802000pt;}
.y2c{bottom:261.205467pt;}
.y4e{bottom:261.329733pt;}
.y99{bottom:264.684533pt;}
.yb3{bottom:265.463333pt;}
.yb5{bottom:265.466000pt;}
.y2b{bottom:279.867467pt;}
.y4d{bottom:279.991733pt;}
.yb4{bottom:280.130000pt;}
.y98{bottom:283.346533pt;}
.y2a{bottom:298.529467pt;}
.y4c{bottom:298.653733pt;}
.yb2{bottom:298.962000pt;}
.y97{bottom:302.008533pt;}
.yaf{bottom:313.623333pt;}
.yb1{bottom:313.626000pt;}
.y29{bottom:317.191467pt;}
.y4b{bottom:317.315733pt;}
.y96{bottom:320.670533pt;}
.yb0{bottom:328.290000pt;}
.y28{bottom:335.853467pt;}
.y4a{bottom:335.977733pt;}
.y95{bottom:339.332533pt;}
.yae{bottom:347.122133pt;}
.y27{bottom:354.515467pt;}
.y49{bottom:354.639733pt;}
.y94{bottom:357.994533pt;}
.yab{bottom:361.783467pt;}
.yad{bottom:361.786133pt;}
.y26{bottom:373.177467pt;}
.y48{bottom:373.301733pt;}
.yac{bottom:376.450133pt;}
.y93{bottom:376.656533pt;}
.y25{bottom:391.839467pt;}
.y47{bottom:391.963733pt;}
.yaa{bottom:394.476400pt;}
.y92{bottom:395.318533pt;}
.ya5{bottom:401.809733pt;}
.ya7{bottom:401.812400pt;}
.ya9{bottom:409.143067pt;}
.y24{bottom:410.235467pt;}
.y46{bottom:410.625733pt;}
.y91{bottom:413.980533pt;}
.ya6{bottom:416.473733pt;}
.ya4{bottom:416.476400pt;}
.ya8{bottom:423.808400pt;}
.y23{bottom:427.298133pt;}
.y45{bottom:429.287733pt;}
.y90{bottom:432.642533pt;}
.ycf{bottom:446.229733pt;}
.y22{bottom:447.039467pt;}
.y44{bottom:447.949733pt;}
.y8f{bottom:451.304533pt;}
.yce{bottom:459.561733pt;}
.y21{bottom:465.435467pt;}
.y43{bottom:466.611733pt;}
.y8e{bottom:469.966533pt;}
.ycd{bottom:472.893733pt;}
.y20{bottom:482.498133pt;}
.y42{bottom:485.273733pt;}
.ycc{bottom:486.225733pt;}
.y8d{bottom:488.628533pt;}
.ycb{bottom:499.557733pt;}
.y1f{bottom:502.239467pt;}
.y41{bottom:503.935733pt;}
.yca{bottom:512.889733pt;}
.y8c{bottom:516.744000pt;}
.y1e{bottom:520.635467pt;}
.y40{bottom:532.051200pt;}
.y1d{bottom:537.698133pt;}
.y75{bottom:542.258267pt;}
.y8b{bottom:552.767333pt;}
.y1c{bottom:557.805467pt;}
.y74{bottom:560.920267pt;}
.y3f{bottom:561.498667pt;}
.y8a{bottom:571.429333pt;}
.y1b{bottom:576.467467pt;}
.y73{bottom:579.582267pt;}
.y3e{bottom:580.166667pt;}
.y89{bottom:590.091333pt;}
.y1a{bottom:595.129467pt;}
.y72{bottom:598.244267pt;}
.y88{bottom:608.753333pt;}
.y19{bottom:613.791467pt;}
.y71{bottom:616.906267pt;}
.y3d{bottom:625.177467pt;}
.y87{bottom:627.415333pt;}
.y18{bottom:632.453467pt;}
.y70{bottom:635.568267pt;}
.y3c{bottom:643.573467pt;}
.y86{bottom:646.077333pt;}
.y17{bottom:651.115467pt;}
.y6f{bottom:654.230267pt;}
.y3b{bottom:661.969467pt;}
.y16{bottom:669.777467pt;}
.y6e{bottom:672.892267pt;}
.y85{bottom:674.192933pt;}
.y3a{bottom:680.365467pt;}
.y15{bottom:688.439467pt;}
.y6d{bottom:691.554267pt;}
.y39{bottom:698.761467pt;}
.y14{bottom:707.101467pt;}
.y84{bottom:710.206933pt;}
.y6c{bottom:710.216267pt;}
.y38{bottom:717.157467pt;}
.y13{bottom:725.763467pt;}
.y83{bottom:728.868933pt;}
.y6b{bottom:728.878267pt;}
.y5a{bottom:742.559067pt;}
.y12{bottom:744.425467pt;}
.y82{bottom:747.530933pt;}
.y6a{bottom:747.540267pt;}
.y5b{bottom:756.283467pt;}
.y11{bottom:763.087467pt;}
.y81{bottom:766.192933pt;}
.y69{bottom:766.202267pt;}
.y10{bottom:781.749467pt;}
.y68{bottom:784.864267pt;}
.y80{bottom:794.308400pt;}
.yf{bottom:800.411467pt;}
.y67{bottom:803.526267pt;}
.ye{bottom:819.073467pt;}
.y7f{bottom:830.317733pt;}
.y66{bottom:831.641733pt;}
.yd{bottom:837.735467pt;}
.y7e{bottom:848.979733pt;}
.yc{bottom:856.397467pt;}
.y7d{bottom:867.641733pt;}
.yb{bottom:875.059467pt;}
.y65{bottom:875.794533pt;}
.ya{bottom:893.721467pt;}
.y64{bottom:894.456533pt;}
.y7c{bottom:895.757200pt;}
.y9{bottom:912.383467pt;}
.y63{bottom:913.118533pt;}
.y8{bottom:931.045467pt;}
.y62{bottom:931.780533pt;}
.y7b{bottom:931.850267pt;}
.y7{bottom:949.707467pt;}
.y61{bottom:950.442533pt;}
.y7a{bottom:950.512267pt;}
.y6{bottom:968.369467pt;}
.y60{bottom:969.104533pt;}
.y79{bottom:969.174267pt;}
.y5{bottom:987.031467pt;}
.y5f{bottom:987.766533pt;}
.y78{bottom:987.836267pt;}
.y5e{bottom:1006.428533pt;}
.y77{bottom:1006.498267pt;}
.y4{bottom:1013.257200pt;}
.y5d{bottom:1025.090533pt;}
.y76{bottom:1025.160267pt;}
.y3{bottom:1026.590533pt;}
.y2{bottom:1061.165333pt;}
.y5c{bottom:1067.165333pt;}
.hb{height:30.762667pt;}
.h4{height:34.080000pt;}
.h5{height:34.346667pt;}
.ha{height:34.608000pt;}
.hc{height:38.453333pt;}
.hd{height:38.640000pt;}
.hf{height:38.645333pt;}
.h2{height:42.933333pt;}
.h6{height:45.080000pt;}
.h9{height:46.144000pt;}
.h8{height:49.989333pt;}
.h7{height:59.733333pt;}
.h3{height:61.525333pt;}
.he{height:67.968000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x7{left:52.913333pt;}
.x23{left:57.234027pt;}
.x2{left:59.339067pt;}
.x25{left:60.683867pt;}
.xa{left:68.376533pt;}
.x22{left:69.578667pt;}
.x15{left:70.721333pt;}
.x21{left:72.681333pt;}
.x24{left:76.819067pt;}
.x18{left:119.277040pt;}
.x17{left:123.025000pt;}
.x16{left:129.132400pt;}
.xc{left:131.027333pt;}
.xb{left:133.252133pt;}
.xd{left:183.644933pt;}
.x19{left:187.121867pt;}
.x1a{left:189.835067pt;}
.xe{left:221.066933pt;}
.xf{left:225.354533pt;}
.x1b{left:227.249867pt;}
.x1c{left:229.963067pt;}
.x1d{left:257.982400pt;}
.x10{left:297.013200pt;}
.x11{left:305.122200pt;}
.x1e{left:309.925200pt;}
.x13{left:344.061600pt;}
.x14{left:349.890800pt;}
.x1f{left:351.945600pt;}
.x12{left:355.571400pt;}
.x20{left:357.372000pt;}
.x3{left:402.395067pt;}
.x8{left:407.309333pt;}
.x9{left:437.547067pt;}
.x6{left:577.342400pt;}
.x5{left:739.194267pt;}
.x4{left:751.622000pt;}
}




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