
    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_48fa84fedf7c286283aca397.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_40382411e97b1863531b42e9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_86f8605eb12942feb466e0e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c09e7b2af01276d0399a3ae3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_c2132b01b68b6d7befffdf53.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,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;}
.ls9{letter-spacing:-1.512000px;}
.ls4{letter-spacing:-0.969018px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.741000px;}
.ls5{letter-spacing:1.122000px;}
.ls1{letter-spacing:1.350000px;}
.ls2{letter-spacing:1.358400px;}
.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;}
}
.ws0{word-spacing:-20.026367px;}
.ws3{word-spacing:-15.390000px;}
.ws1{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.040000px;}
.ws13{word-spacing:-12.528000px;}
.ws18{word-spacing:-5.238000px;}
.ws34{word-spacing:-3.618000px;}
.ws1b{word-spacing:-3.240000px;}
.ws30{word-spacing:-2.754000px;}
.ws1c{word-spacing:-1.350000px;}
.ws31{word-spacing:-1.188000px;}
.ws11{word-spacing:-1.134000px;}
.ws5{word-spacing:-1.122000px;}
.ws2e{word-spacing:-0.972000px;}
.ws6{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.270000px;}
.ws4{word-spacing:0.000000px;}
.ws2c{word-spacing:0.054000px;}
.ws7{word-spacing:0.270000px;}
.ws1e{word-spacing:0.540000px;}
.wsc{word-spacing:0.720000px;}
.wse{word-spacing:0.756000px;}
.ws1a{word-spacing:1.080000px;}
.ws22{word-spacing:1.134000px;}
.ws17{word-spacing:1.512000px;}
.ws16{word-spacing:1.620000px;}
.ws2f{word-spacing:1.944000px;}
.ws9{word-spacing:2.052000px;}
.ws2b{word-spacing:2.214000px;}
.ws29{word-spacing:2.646000px;}
.ws19{word-spacing:4.266000px;}
.ws12{word-spacing:4.590000px;}
.ws2a{word-spacing:5.130000px;}
.ws10{word-spacing:5.670000px;}
.ws2d{word-spacing:9.882000px;}
.ws15{word-spacing:11.448000px;}
.ws8{word-spacing:13.338000px;}
.ws24{word-spacing:13.500000px;}
.ws26{word-spacing:14.202000px;}
.wsa{word-spacing:14.850000px;}
.ws25{word-spacing:17.388000px;}
.ws14{word-spacing:27.108000px;}
.ws20{word-spacing:37.854000px;}
.wsb{word-spacing:39.744000px;}
.ws23{word-spacing:47.520000px;}
.ws27{word-spacing:50.382000px;}
.ws28{word-spacing:51.516000px;}
.ws33{word-spacing:64.962000px;}
.ws32{word-spacing:67.608000px;}
.ws1d{word-spacing:74.196000px;}
.ws1f{word-spacing:76.734000px;}
.wsf{word-spacing:583.613400px;}
.wsd{word-spacing:1811.815200px;}
._13{margin-left:-2526.484200px;}
._f{margin-left:-1660.310400px;}
._1e{margin-left:-31.103400px;}
._b{margin-left:-29.710800px;}
._5{margin-left:-14.523600px;}
._1f{margin-left:-13.218600px;}
._16{margin-left:-5.518800px;}
._a{margin-left:-4.361059px;}
._3{margin-left:-3.307314px;}
._2{margin-left:-1.947000px;}
._0{width:1.736157px;}
._1{width:3.092782px;}
._7{width:4.542818px;}
._9{width:5.988600px;}
._c{width:7.333200px;}
._6{width:8.456400px;}
._d{width:9.514800px;}
._12{width:10.578600px;}
._11{width:11.642400px;}
._8{width:12.684600px;}
._4{width:15.514200px;}
._10{width:16.740000px;}
._1c{width:17.841600px;}
._e{width:20.525400px;}
._14{width:25.439400px;}
._15{width:27.621000px;}
._1a{width:34.457400px;}
._1b{width:38.377800px;}
._18{width:45.187200px;}
._1d{width:48.038400px;}
._20{width:50.900400px;}
._21{width:52.056000px;}
._23{width:64.940400px;}
._22{width:68.968800px;}
._17{width:75.524400px;}
._19{width:78.062400px;}
.fc1{color:rgb(48,88,159);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:80.751481px;}
.y0{bottom:0.000000px;}
.y2a{bottom:54.451650px;}
.y2{bottom:54.625950px;}
.y29{bottom:68.701650px;}
.y1{bottom:71.125950px;}
.y60{bottom:105.371550px;}
.y28{bottom:106.824150px;}
.yba{bottom:108.371550px;}
.y80{bottom:109.121550px;}
.y5f{bottom:121.871550px;}
.yb9{bottom:122.621550px;}
.y27{bottom:123.324150px;}
.y7f{bottom:123.371550px;}
.yb8{bottom:136.871550px;}
.y7e{bottom:137.621550px;}
.y5e{bottom:138.371550px;}
.y26{bottom:139.824150px;}
.yb7{bottom:151.121550px;}
.y7d{bottom:151.871550px;}
.y5d{bottom:154.871550px;}
.y25{bottom:156.324150px;}
.yb6{bottom:165.371550px;}
.y7c{bottom:166.121550px;}
.y5c{bottom:171.371550px;}
.y24{bottom:172.824150px;}
.yb5{bottom:179.621550px;}
.y7b{bottom:180.371550px;}
.y5b{bottom:187.871550px;}
.y23{bottom:189.324150px;}
.yb4{bottom:193.871550px;}
.y7a{bottom:194.621550px;}
.y5a{bottom:204.371550px;}
.y22{bottom:205.824150px;}
.yb3{bottom:208.121550px;}
.y79{bottom:208.871550px;}
.y59{bottom:220.871550px;}
.y21{bottom:222.324150px;}
.yb2{bottom:222.371550px;}
.y78{bottom:223.121550px;}
.yb1{bottom:236.621550px;}
.y58{bottom:237.371550px;}
.y20{bottom:238.824150px;}
.yb0{bottom:250.871550px;}
.y77{bottom:251.621550px;}
.y57{bottom:253.871550px;}
.y1f{bottom:255.324150px;}
.yaf{bottom:265.121550px;}
.y76{bottom:265.871550px;}
.y56{bottom:270.371550px;}
.y1e{bottom:271.824150px;}
.yae{bottom:279.371550px;}
.y75{bottom:280.121550px;}
.y55{bottom:286.871550px;}
.y1d{bottom:288.324150px;}
.yad{bottom:293.621550px;}
.y74{bottom:294.371550px;}
.y54{bottom:303.371550px;}
.y1c{bottom:304.824150px;}
.yac{bottom:307.871550px;}
.y73{bottom:308.621550px;}
.y53{bottom:319.871550px;}
.y1b{bottom:321.324150px;}
.yab{bottom:322.121550px;}
.y72{bottom:322.871550px;}
.y52{bottom:336.371550px;}
.y71{bottom:337.121550px;}
.yaa{bottom:350.621550px;}
.y70{bottom:351.371550px;}
.y51{bottom:352.871550px;}
.ya9{bottom:364.871550px;}
.y6f{bottom:365.621550px;}
.y50{bottom:369.371550px;}
.ya8{bottom:379.121550px;}
.y6e{bottom:379.871550px;}
.y4f{bottom:385.871550px;}
.ya7{bottom:393.371550px;}
.y6d{bottom:394.121550px;}
.y4e{bottom:402.371550px;}
.ya6{bottom:407.621550px;}
.y6c{bottom:408.371550px;}
.y4d{bottom:418.871550px;}
.ya5{bottom:421.871550px;}
.y6b{bottom:422.621550px;}
.y1a{bottom:434.125950px;}
.y4c{bottom:435.371550px;}
.ya4{bottom:436.121550px;}
.y6a{bottom:436.871550px;}
.ya3{bottom:450.371550px;}
.y19{bottom:450.625950px;}
.y69{bottom:451.121550px;}
.y4b{bottom:451.871550px;}
.ya2{bottom:464.621550px;}
.y68{bottom:465.371550px;}
.y18{bottom:467.125950px;}
.y4a{bottom:468.371550px;}
.ya1{bottom:478.871550px;}
.y67{bottom:479.621550px;}
.y17{bottom:483.625950px;}
.y49{bottom:484.871550px;}
.ya0{bottom:493.121550px;}
.y66{bottom:493.871550px;}
.y16{bottom:500.125950px;}
.y48{bottom:501.371550px;}
.y9f{bottom:507.371550px;}
.y65{bottom:508.121550px;}
.y47{bottom:517.871550px;}
.y9e{bottom:521.621550px;}
.y64{bottom:522.371550px;}
.y15{bottom:533.125950px;}
.y46{bottom:534.371550px;}
.y9d{bottom:535.871550px;}
.y63{bottom:536.621550px;}
.y14{bottom:549.625950px;}
.y9c{bottom:550.121550px;}
.y45{bottom:550.871550px;}
.y62{bottom:559.871550px;}
.y9b{bottom:564.371550px;}
.y44{bottom:567.371550px;}
.y9a{bottom:578.621550px;}
.y13{bottom:582.625950px;}
.y43{bottom:583.871550px;}
.y99{bottom:592.871550px;}
.y12{bottom:599.125950px;}
.y42{bottom:600.371550px;}
.y98{bottom:607.121550px;}
.y11{bottom:615.625950px;}
.y41{bottom:616.871550px;}
.y97{bottom:621.371550px;}
.y10{bottom:632.125950px;}
.y40{bottom:633.371550px;}
.y96{bottom:635.621550px;}
.y61{bottom:642.371550px;}
.yf{bottom:648.625950px;}
.y3f{bottom:649.871550px;}
.y95{bottom:664.121550px;}
.ye{bottom:665.125950px;}
.y3e{bottom:666.371550px;}
.y94{bottom:678.371550px;}
.yd{bottom:681.625950px;}
.y3d{bottom:682.871550px;}
.y93{bottom:692.621550px;}
.yc{bottom:698.125950px;}
.y3c{bottom:699.371550px;}
.y92{bottom:706.871550px;}
.yb{bottom:714.625950px;}
.y3b{bottom:715.871550px;}
.y91{bottom:721.121550px;}
.ya{bottom:731.125950px;}
.y3a{bottom:732.371550px;}
.y90{bottom:735.371550px;}
.y9{bottom:747.625950px;}
.y39{bottom:748.871550px;}
.y8f{bottom:749.621550px;}
.y8e{bottom:763.871550px;}
.y8{bottom:764.125950px;}
.y38{bottom:765.371550px;}
.y8d{bottom:778.121550px;}
.y37{bottom:781.871550px;}
.y8c{bottom:792.371550px;}
.y7{bottom:797.125950px;}
.y36{bottom:798.371550px;}
.y8b{bottom:806.621550px;}
.y6{bottom:813.625950px;}
.y35{bottom:814.871550px;}
.y8a{bottom:820.871550px;}
.y34{bottom:831.371550px;}
.y89{bottom:835.121550px;}
.y33{bottom:847.871550px;}
.y88{bottom:849.371550px;}
.y87{bottom:863.621550px;}
.y32{bottom:864.371550px;}
.y5{bottom:873.268800px;}
.y86{bottom:877.871550px;}
.y31{bottom:880.871550px;}
.y85{bottom:892.121550px;}
.y30{bottom:897.371550px;}
.y84{bottom:906.371550px;}
.y2f{bottom:913.871550px;}
.y4{bottom:915.280650px;}
.y83{bottom:920.621550px;}
.y2e{bottom:930.371550px;}
.y82{bottom:934.871550px;}
.y2d{bottom:946.871550px;}
.y81{bottom:949.121550px;}
.y3{bottom:958.780650px;}
.y2c{bottom:963.371550px;}
.y2b{bottom:992.561400px;}
.h2{height:36.773438px;}
.h7{height:41.370117px;}
.h8{height:43.668457px;}
.h9{height:45.908203px;}
.h6{height:50.282227px;}
.h4{height:59.680664px;}
.h5{height:61.456055px;}
.h3{height:61.785923px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x2{left:56.125950px;}
.x1{left:57.375000px;}
.x4{left:58.474050px;}
.x6{left:59.550000px;}
.x9{left:74.386500px;}
.x7{left:76.535400px;}
.xa{left:78.683850px;}
.x3{left:228.330750px;}
.x5{left:349.511850px;}
.x8{left:664.064850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.344000pt;}
.ls4{letter-spacing:-0.861349pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.658667pt;}
.ls5{letter-spacing:0.997333pt;}
.ls1{letter-spacing:1.200000pt;}
.ls2{letter-spacing:1.207467pt;}
.ws0{word-spacing:-17.801215pt;}
.ws3{word-spacing:-13.680000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws13{word-spacing:-11.136000pt;}
.ws18{word-spacing:-4.656000pt;}
.ws34{word-spacing:-3.216000pt;}
.ws1b{word-spacing:-2.880000pt;}
.ws30{word-spacing:-2.448000pt;}
.ws1c{word-spacing:-1.200000pt;}
.ws31{word-spacing:-1.056000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws5{word-spacing:-0.997333pt;}
.ws2e{word-spacing:-0.864000pt;}
.ws6{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.240000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.048000pt;}
.ws7{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.480000pt;}
.wsc{word-spacing:0.640000pt;}
.wse{word-spacing:0.672000pt;}
.ws1a{word-spacing:0.960000pt;}
.ws22{word-spacing:1.008000pt;}
.ws17{word-spacing:1.344000pt;}
.ws16{word-spacing:1.440000pt;}
.ws2f{word-spacing:1.728000pt;}
.ws9{word-spacing:1.824000pt;}
.ws2b{word-spacing:1.968000pt;}
.ws29{word-spacing:2.352000pt;}
.ws19{word-spacing:3.792000pt;}
.ws12{word-spacing:4.080000pt;}
.ws2a{word-spacing:4.560000pt;}
.ws10{word-spacing:5.040000pt;}
.ws2d{word-spacing:8.784000pt;}
.ws15{word-spacing:10.176000pt;}
.ws8{word-spacing:11.856000pt;}
.ws24{word-spacing:12.000000pt;}
.ws26{word-spacing:12.624000pt;}
.wsa{word-spacing:13.200000pt;}
.ws25{word-spacing:15.456000pt;}
.ws14{word-spacing:24.096000pt;}
.ws20{word-spacing:33.648000pt;}
.wsb{word-spacing:35.328000pt;}
.ws23{word-spacing:42.240000pt;}
.ws27{word-spacing:44.784000pt;}
.ws28{word-spacing:45.792000pt;}
.ws33{word-spacing:57.744000pt;}
.ws32{word-spacing:60.096000pt;}
.ws1d{word-spacing:65.952000pt;}
.ws1f{word-spacing:68.208000pt;}
.wsf{word-spacing:518.767467pt;}
.wsd{word-spacing:1610.502400pt;}
._13{margin-left:-2245.763733pt;}
._f{margin-left:-1475.831467pt;}
._1e{margin-left:-27.647467pt;}
._b{margin-left:-26.409600pt;}
._5{margin-left:-12.909867pt;}
._1f{margin-left:-11.749867pt;}
._16{margin-left:-4.905600pt;}
._a{margin-left:-3.876497pt;}
._3{margin-left:-2.939834pt;}
._2{margin-left:-1.730667pt;}
._0{width:1.543251pt;}
._1{width:2.749139pt;}
._7{width:4.038061pt;}
._9{width:5.323200pt;}
._c{width:6.518400pt;}
._6{width:7.516800pt;}
._d{width:8.457600pt;}
._12{width:9.403200pt;}
._11{width:10.348800pt;}
._8{width:11.275200pt;}
._4{width:13.790400pt;}
._10{width:14.880000pt;}
._1c{width:15.859200pt;}
._e{width:18.244800pt;}
._14{width:22.612800pt;}
._15{width:24.552000pt;}
._1a{width:30.628800pt;}
._1b{width:34.113600pt;}
._18{width:40.166400pt;}
._1d{width:42.700800pt;}
._20{width:45.244800pt;}
._21{width:46.272000pt;}
._23{width:57.724800pt;}
._22{width:61.305600pt;}
._17{width:67.132800pt;}
._19{width:69.388800pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:71.779094pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:48.401467pt;}
.y2{bottom:48.556400pt;}
.y29{bottom:61.068133pt;}
.y1{bottom:63.223067pt;}
.y60{bottom:93.663600pt;}
.y28{bottom:94.954800pt;}
.yba{bottom:96.330267pt;}
.y80{bottom:96.996933pt;}
.y5f{bottom:108.330267pt;}
.yb9{bottom:108.996933pt;}
.y27{bottom:109.621467pt;}
.y7f{bottom:109.663600pt;}
.yb8{bottom:121.663600pt;}
.y7e{bottom:122.330267pt;}
.y5e{bottom:122.996933pt;}
.y26{bottom:124.288133pt;}
.yb7{bottom:134.330267pt;}
.y7d{bottom:134.996933pt;}
.y5d{bottom:137.663600pt;}
.y25{bottom:138.954800pt;}
.yb6{bottom:146.996933pt;}
.y7c{bottom:147.663600pt;}
.y5c{bottom:152.330267pt;}
.y24{bottom:153.621467pt;}
.yb5{bottom:159.663600pt;}
.y7b{bottom:160.330267pt;}
.y5b{bottom:166.996933pt;}
.y23{bottom:168.288133pt;}
.yb4{bottom:172.330267pt;}
.y7a{bottom:172.996933pt;}
.y5a{bottom:181.663600pt;}
.y22{bottom:182.954800pt;}
.yb3{bottom:184.996933pt;}
.y79{bottom:185.663600pt;}
.y59{bottom:196.330267pt;}
.y21{bottom:197.621467pt;}
.yb2{bottom:197.663600pt;}
.y78{bottom:198.330267pt;}
.yb1{bottom:210.330267pt;}
.y58{bottom:210.996933pt;}
.y20{bottom:212.288133pt;}
.yb0{bottom:222.996933pt;}
.y77{bottom:223.663600pt;}
.y57{bottom:225.663600pt;}
.y1f{bottom:226.954800pt;}
.yaf{bottom:235.663600pt;}
.y76{bottom:236.330267pt;}
.y56{bottom:240.330267pt;}
.y1e{bottom:241.621467pt;}
.yae{bottom:248.330267pt;}
.y75{bottom:248.996933pt;}
.y55{bottom:254.996933pt;}
.y1d{bottom:256.288133pt;}
.yad{bottom:260.996933pt;}
.y74{bottom:261.663600pt;}
.y54{bottom:269.663600pt;}
.y1c{bottom:270.954800pt;}
.yac{bottom:273.663600pt;}
.y73{bottom:274.330267pt;}
.y53{bottom:284.330267pt;}
.y1b{bottom:285.621467pt;}
.yab{bottom:286.330267pt;}
.y72{bottom:286.996933pt;}
.y52{bottom:298.996933pt;}
.y71{bottom:299.663600pt;}
.yaa{bottom:311.663600pt;}
.y70{bottom:312.330267pt;}
.y51{bottom:313.663600pt;}
.ya9{bottom:324.330267pt;}
.y6f{bottom:324.996933pt;}
.y50{bottom:328.330267pt;}
.ya8{bottom:336.996933pt;}
.y6e{bottom:337.663600pt;}
.y4f{bottom:342.996933pt;}
.ya7{bottom:349.663600pt;}
.y6d{bottom:350.330267pt;}
.y4e{bottom:357.663600pt;}
.ya6{bottom:362.330267pt;}
.y6c{bottom:362.996933pt;}
.y4d{bottom:372.330267pt;}
.ya5{bottom:374.996933pt;}
.y6b{bottom:375.663600pt;}
.y1a{bottom:385.889733pt;}
.y4c{bottom:386.996933pt;}
.ya4{bottom:387.663600pt;}
.y6a{bottom:388.330267pt;}
.ya3{bottom:400.330267pt;}
.y19{bottom:400.556400pt;}
.y69{bottom:400.996933pt;}
.y4b{bottom:401.663600pt;}
.ya2{bottom:412.996933pt;}
.y68{bottom:413.663600pt;}
.y18{bottom:415.223067pt;}
.y4a{bottom:416.330267pt;}
.ya1{bottom:425.663600pt;}
.y67{bottom:426.330267pt;}
.y17{bottom:429.889733pt;}
.y49{bottom:430.996933pt;}
.ya0{bottom:438.330267pt;}
.y66{bottom:438.996933pt;}
.y16{bottom:444.556400pt;}
.y48{bottom:445.663600pt;}
.y9f{bottom:450.996933pt;}
.y65{bottom:451.663600pt;}
.y47{bottom:460.330267pt;}
.y9e{bottom:463.663600pt;}
.y64{bottom:464.330267pt;}
.y15{bottom:473.889733pt;}
.y46{bottom:474.996933pt;}
.y9d{bottom:476.330267pt;}
.y63{bottom:476.996933pt;}
.y14{bottom:488.556400pt;}
.y9c{bottom:488.996933pt;}
.y45{bottom:489.663600pt;}
.y62{bottom:497.663600pt;}
.y9b{bottom:501.663600pt;}
.y44{bottom:504.330267pt;}
.y9a{bottom:514.330267pt;}
.y13{bottom:517.889733pt;}
.y43{bottom:518.996933pt;}
.y99{bottom:526.996933pt;}
.y12{bottom:532.556400pt;}
.y42{bottom:533.663600pt;}
.y98{bottom:539.663600pt;}
.y11{bottom:547.223067pt;}
.y41{bottom:548.330267pt;}
.y97{bottom:552.330267pt;}
.y10{bottom:561.889733pt;}
.y40{bottom:562.996933pt;}
.y96{bottom:564.996933pt;}
.y61{bottom:570.996933pt;}
.yf{bottom:576.556400pt;}
.y3f{bottom:577.663600pt;}
.y95{bottom:590.330267pt;}
.ye{bottom:591.223067pt;}
.y3e{bottom:592.330267pt;}
.y94{bottom:602.996933pt;}
.yd{bottom:605.889733pt;}
.y3d{bottom:606.996933pt;}
.y93{bottom:615.663600pt;}
.yc{bottom:620.556400pt;}
.y3c{bottom:621.663600pt;}
.y92{bottom:628.330267pt;}
.yb{bottom:635.223067pt;}
.y3b{bottom:636.330267pt;}
.y91{bottom:640.996933pt;}
.ya{bottom:649.889733pt;}
.y3a{bottom:650.996933pt;}
.y90{bottom:653.663600pt;}
.y9{bottom:664.556400pt;}
.y39{bottom:665.663600pt;}
.y8f{bottom:666.330267pt;}
.y8e{bottom:678.996933pt;}
.y8{bottom:679.223067pt;}
.y38{bottom:680.330267pt;}
.y8d{bottom:691.663600pt;}
.y37{bottom:694.996933pt;}
.y8c{bottom:704.330267pt;}
.y7{bottom:708.556400pt;}
.y36{bottom:709.663600pt;}
.y8b{bottom:716.996933pt;}
.y6{bottom:723.223067pt;}
.y35{bottom:724.330267pt;}
.y8a{bottom:729.663600pt;}
.y34{bottom:738.996933pt;}
.y89{bottom:742.330267pt;}
.y33{bottom:753.663600pt;}
.y88{bottom:754.996933pt;}
.y87{bottom:767.663600pt;}
.y32{bottom:768.330267pt;}
.y5{bottom:776.238933pt;}
.y86{bottom:780.330267pt;}
.y31{bottom:782.996933pt;}
.y85{bottom:792.996933pt;}
.y30{bottom:797.663600pt;}
.y84{bottom:805.663600pt;}
.y2f{bottom:812.330267pt;}
.y4{bottom:813.582800pt;}
.y83{bottom:818.330267pt;}
.y2e{bottom:826.996933pt;}
.y82{bottom:830.996933pt;}
.y2d{bottom:841.663600pt;}
.y81{bottom:843.663600pt;}
.y3{bottom:852.249467pt;}
.y2c{bottom:856.330267pt;}
.y2b{bottom:882.276800pt;}
.h2{height:32.687500pt;}
.h7{height:36.773438pt;}
.h8{height:38.816406pt;}
.h9{height:40.807292pt;}
.h6{height:44.695312pt;}
.h4{height:53.049479pt;}
.h5{height:54.627604pt;}
.h3{height:54.920820pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.889733pt;}
.x1{left:51.000000pt;}
.x4{left:51.976933pt;}
.x6{left:52.933333pt;}
.x9{left:66.121333pt;}
.x7{left:68.031467pt;}
.xa{left:69.941200pt;}
.x3{left:202.960667pt;}
.x5{left:310.677200pt;}
.x8{left:590.279867pt;}
}




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