
    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_e2fca2b5f18c0d9cd895d313.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_baadf47753110d82f1f7dd1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_6f9da3fe08a4cd8a92c6436f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_53c2fea6b5a91920ad2c2de4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_13ade81c3842939253d1a12f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912500;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_e063281e8c9cda5b161989ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_537f8a1f54cfc0e335f51df7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_7a2e66021d3ac05a25fcf8b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.820801;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_ff69a56f5f02541a866f09ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_0a891e7ba10e1d1d31d6d310.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:-7.920000px;}
.ls7{letter-spacing:-5.616000px;}
.ls6{letter-spacing:-1.166400px;}
.ls5{letter-spacing:-1.152000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls1{letter-spacing:1.296000px;}
.ls3{letter-spacing:2.705400px;}
.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;}
}
.ws1{word-spacing:-121.296000px;}
.ws0{word-spacing:-120.000000px;}
.ws4{word-spacing:-72.000000px;}
.ws9{word-spacing:-70.848000px;}
.wsf{word-spacing:-60.048000px;}
.ws6{word-spacing:-59.688000px;}
.wsc{word-spacing:-59.184000px;}
.wsa{word-spacing:-57.744000px;}
.wsd{word-spacing:-54.576000px;}
.ws8{word-spacing:-54.000000px;}
.wse{word-spacing:-46.368000px;}
.wsb{word-spacing:-42.048000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-10.494000px;}
.ws7{word-spacing:-7.870500px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-12.919200px;}
._16{margin-left:-9.136800px;}
._1{margin-left:-8.052000px;}
._6{margin-left:-7.008000px;}
._3{margin-left:-5.112000px;}
._7{margin-left:-3.888000px;}
._5{margin-left:-2.836800px;}
._0{margin-left:-1.728000px;}
._9{width:1.152000px;}
._4{width:2.376000px;}
._8{width:3.621600px;}
._c{width:4.759200px;}
._2{width:5.832000px;}
._a{width:6.840000px;}
._b{width:8.496000px;}
._d{width:9.864000px;}
._11{width:11.556000px;}
._f{width:13.464000px;}
._e{width:14.544000px;}
._1a{width:15.832800px;}
._10{width:16.862400px;}
._17{width:19.281600px;}
._13{width:21.240000px;}
._18{width:22.248000px;}
._19{width:23.508000px;}
._15{width:28.728000px;}
._1b{width:31.204800px;}
._12{width:40.500000px;}
.fc2{color:rgb(128,130,133);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs4{font-size:41.976000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:127.558950px;}
.y66{bottom:127.559100px;}
.y7a{bottom:132.054600px;}
.yc{bottom:133.090950px;}
.y88{bottom:134.035200px;}
.y3c{bottom:143.758950px;}
.y65{bottom:148.254600px;}
.yb4{bottom:149.281350px;}
.yb{bottom:155.590950px;}
.y87{bottom:156.535200px;}
.y3b{bottom:164.454450px;}
.yb3{bottom:171.781350px;}
.y3a{bottom:176.158950px;}
.ya{bottom:178.090950px;}
.y86{bottom:179.035200px;}
.yb2{bottom:194.281350px;}
.y39{bottom:196.854450px;}
.y9{bottom:200.590950px;}
.y85{bottom:201.535200px;}
.y79{bottom:201.535350px;}
.y64{bottom:216.771450px;}
.yb1{bottom:216.781350px;}
.y8{bottom:223.090950px;}
.y84{bottom:224.035200px;}
.y78{bottom:224.035350px;}
.y63{bottom:239.271450px;}
.yb0{bottom:239.281350px;}
.y7{bottom:245.590950px;}
.y83{bottom:246.535200px;}
.y77{bottom:246.535350px;}
.y62{bottom:261.771450px;}
.y38{bottom:261.781200px;}
.yaf{bottom:261.781350px;}
.y6{bottom:268.090950px;}
.y82{bottom:269.035200px;}
.y76{bottom:269.035350px;}
.y61{bottom:284.271450px;}
.y37{bottom:284.281200px;}
.yae{bottom:284.281350px;}
.y5{bottom:290.590950px;}
.y81{bottom:291.535200px;}
.y75{bottom:291.535350px;}
.y6f{bottom:306.771450px;}
.y36{bottom:306.781200px;}
.y60{bottom:306.781350px;}
.y80{bottom:314.035200px;}
.y74{bottom:314.035350px;}
.y4{bottom:321.586950px;}
.y6e{bottom:329.271450px;}
.y35{bottom:329.281200px;}
.y5f{bottom:329.281350px;}
.y7f{bottom:336.535200px;}
.y73{bottom:336.535350px;}
.y6d{bottom:351.771450px;}
.y34{bottom:351.781200px;}
.y5e{bottom:351.781350px;}
.y7e{bottom:359.035200px;}
.y72{bottom:359.035350px;}
.y6c{bottom:374.271450px;}
.y33{bottom:374.281200px;}
.yad{bottom:374.281350px;}
.y7d{bottom:381.535200px;}
.y71{bottom:381.535350px;}
.y5d{bottom:382.777350px;}
.y6b{bottom:396.771450px;}
.yac{bottom:396.781350px;}
.y7c{bottom:404.035200px;}
.y70{bottom:404.035350px;}
.y32{bottom:405.277200px;}
.ya5{bottom:419.271450px;}
.y6a{bottom:419.281200px;}
.yab{bottom:419.281350px;}
.y7b{bottom:426.535200px;}
.y5c{bottom:426.535350px;}
.ya4{bottom:441.771450px;}
.y69{bottom:441.781200px;}
.yaa{bottom:441.781350px;}
.y31{bottom:449.035200px;}
.y5b{bottom:449.035350px;}
.ya3{bottom:464.271450px;}
.y68{bottom:464.281200px;}
.ya9{bottom:464.281350px;}
.y30{bottom:471.535200px;}
.y5a{bottom:471.535350px;}
.ya2{bottom:486.771450px;}
.ya8{bottom:486.781350px;}
.y2f{bottom:494.035200px;}
.y59{bottom:494.035350px;}
.y67{bottom:495.277200px;}
.ya1{bottom:509.271450px;}
.ya7{bottom:509.281350px;}
.y2e{bottom:516.535200px;}
.y58{bottom:516.535350px;}
.ya0{bottom:531.781350px;}
.y2d{bottom:539.035200px;}
.y57{bottom:539.035350px;}
.y9f{bottom:554.281350px;}
.y2c{bottom:561.535200px;}
.y56{bottom:561.535350px;}
.y9e{bottom:576.781350px;}
.y2b{bottom:584.035200px;}
.y55{bottom:584.035350px;}
.y9d{bottom:599.281350px;}
.y2a{bottom:606.535200px;}
.y54{bottom:606.535350px;}
.y9c{bottom:621.781350px;}
.y29{bottom:629.035200px;}
.y53{bottom:629.035350px;}
.y9b{bottom:644.281350px;}
.y28{bottom:651.535200px;}
.y52{bottom:651.535350px;}
.y9a{bottom:666.781350px;}
.y27{bottom:674.035200px;}
.y51{bottom:674.035350px;}
.y99{bottom:689.281350px;}
.y26{bottom:696.535200px;}
.y50{bottom:696.535350px;}
.y98{bottom:711.781350px;}
.y25{bottom:719.035200px;}
.y4f{bottom:719.035350px;}
.y97{bottom:734.281350px;}
.y24{bottom:741.535200px;}
.y4e{bottom:741.535350px;}
.y96{bottom:756.781350px;}
.y23{bottom:764.035200px;}
.y4d{bottom:764.035350px;}
.y95{bottom:779.281350px;}
.y22{bottom:786.535200px;}
.y4c{bottom:786.535350px;}
.y94{bottom:801.781350px;}
.y21{bottom:809.035200px;}
.y4b{bottom:809.035350px;}
.y93{bottom:824.281350px;}
.y20{bottom:831.535200px;}
.y4a{bottom:831.535350px;}
.y92{bottom:846.781350px;}
.y1f{bottom:854.035200px;}
.y49{bottom:854.035350px;}
.y91{bottom:869.281350px;}
.y1e{bottom:876.535200px;}
.y48{bottom:876.535350px;}
.y90{bottom:891.781350px;}
.y1d{bottom:899.035200px;}
.y47{bottom:899.035350px;}
.ya6{bottom:900.277350px;}
.y8f{bottom:914.281350px;}
.y3{bottom:915.858600px;}
.y1c{bottom:921.535200px;}
.y46{bottom:921.535350px;}
.y8e{bottom:936.781350px;}
.y1b{bottom:944.035200px;}
.y45{bottom:944.035350px;}
.y2{bottom:945.858600px;}
.y8d{bottom:959.281350px;}
.y1a{bottom:966.535200px;}
.y44{bottom:966.535350px;}
.y8c{bottom:981.781350px;}
.yba{bottom:989.017800px;}
.y19{bottom:989.035200px;}
.y43{bottom:989.035350px;}
.y8b{bottom:1004.281350px;}
.yb9{bottom:1011.517800px;}
.y18{bottom:1011.535200px;}
.y42{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.y8a{bottom:1026.781350px;}
.yb8{bottom:1034.017800px;}
.y17{bottom:1034.035200px;}
.y41{bottom:1034.035350px;}
.yb7{bottom:1056.517800px;}
.y16{bottom:1056.535200px;}
.y40{bottom:1056.535350px;}
.y89{bottom:1057.777350px;}
.yb6{bottom:1079.017800px;}
.y15{bottom:1079.035200px;}
.y3f{bottom:1079.035350px;}
.y12{bottom:1096.552350px;}
.yb5{bottom:1101.517800px;}
.y14{bottom:1101.535200px;}
.y3e{bottom:1101.535350px;}
.y11{bottom:1116.352350px;}
.y10{bottom:1136.152350px;}
.yf{bottom:1155.952350px;}
.y13{bottom:1166.275950px;}
.ye{bottom:1175.752350px;}
.yd{bottom:1195.552350px;}
.ha{height:29.399836px;}
.h8{height:29.531672px;}
.h9{height:47.381836px;}
.h6{height:48.015000px;}
.h4{height:49.289062px;}
.h5{height:63.175781px;}
.hb{height:63.351562px;}
.h2{height:69.984000px;}
.h7{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.559100px;}
.x3{left:169.366350px;}
.x2{left:197.626350px;}
.xb{left:217.098450px;}
.x1{left:376.698300px;}
.x5{left:485.675850px;}
.x8{left:539.597850px;}
.x6{left:611.455350px;}
.x9{left:628.417350px;}
.xa{left:641.551350px;}
.x7{left:698.047350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:-7.040000pt;}
.ls7{letter-spacing:-4.992000pt;}
.ls6{letter-spacing:-1.036800pt;}
.ls5{letter-spacing:-1.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls1{letter-spacing:1.152000pt;}
.ls3{letter-spacing:2.404800pt;}
.ws1{word-spacing:-107.818667pt;}
.ws0{word-spacing:-106.666667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws9{word-spacing:-62.976000pt;}
.wsf{word-spacing:-53.376000pt;}
.ws6{word-spacing:-53.056000pt;}
.wsc{word-spacing:-52.608000pt;}
.wsa{word-spacing:-51.328000pt;}
.wsd{word-spacing:-48.512000pt;}
.ws8{word-spacing:-48.000000pt;}
.wse{word-spacing:-41.216000pt;}
.wsb{word-spacing:-37.376000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-9.328000pt;}
.ws7{word-spacing:-6.996000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-11.483733pt;}
._16{margin-left:-8.121600pt;}
._1{margin-left:-7.157333pt;}
._6{margin-left:-6.229333pt;}
._3{margin-left:-4.544000pt;}
._7{margin-left:-3.456000pt;}
._5{margin-left:-2.521600pt;}
._0{margin-left:-1.536000pt;}
._9{width:1.024000pt;}
._4{width:2.112000pt;}
._8{width:3.219200pt;}
._c{width:4.230400pt;}
._2{width:5.184000pt;}
._a{width:6.080000pt;}
._b{width:7.552000pt;}
._d{width:8.768000pt;}
._11{width:10.272000pt;}
._f{width:11.968000pt;}
._e{width:12.928000pt;}
._1a{width:14.073600pt;}
._10{width:14.988800pt;}
._17{width:17.139200pt;}
._13{width:18.880000pt;}
._18{width:19.776000pt;}
._19{width:20.896000pt;}
._15{width:25.536000pt;}
._1b{width:27.737600pt;}
._12{width:36.000000pt;}
.fs5{font-size:27.984000pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:113.385733pt;}
.y66{bottom:113.385867pt;}
.y7a{bottom:117.381867pt;}
.yc{bottom:118.303067pt;}
.y88{bottom:119.142400pt;}
.y3c{bottom:127.785733pt;}
.y65{bottom:131.781867pt;}
.yb4{bottom:132.694533pt;}
.yb{bottom:138.303067pt;}
.y87{bottom:139.142400pt;}
.y3b{bottom:146.181733pt;}
.yb3{bottom:152.694533pt;}
.y3a{bottom:156.585733pt;}
.ya{bottom:158.303067pt;}
.y86{bottom:159.142400pt;}
.yb2{bottom:172.694533pt;}
.y39{bottom:174.981733pt;}
.y9{bottom:178.303067pt;}
.y85{bottom:179.142400pt;}
.y79{bottom:179.142533pt;}
.y64{bottom:192.685733pt;}
.yb1{bottom:192.694533pt;}
.y8{bottom:198.303067pt;}
.y84{bottom:199.142400pt;}
.y78{bottom:199.142533pt;}
.y63{bottom:212.685733pt;}
.yb0{bottom:212.694533pt;}
.y7{bottom:218.303067pt;}
.y83{bottom:219.142400pt;}
.y77{bottom:219.142533pt;}
.y62{bottom:232.685733pt;}
.y38{bottom:232.694400pt;}
.yaf{bottom:232.694533pt;}
.y6{bottom:238.303067pt;}
.y82{bottom:239.142400pt;}
.y76{bottom:239.142533pt;}
.y61{bottom:252.685733pt;}
.y37{bottom:252.694400pt;}
.yae{bottom:252.694533pt;}
.y5{bottom:258.303067pt;}
.y81{bottom:259.142400pt;}
.y75{bottom:259.142533pt;}
.y6f{bottom:272.685733pt;}
.y36{bottom:272.694400pt;}
.y60{bottom:272.694533pt;}
.y80{bottom:279.142400pt;}
.y74{bottom:279.142533pt;}
.y4{bottom:285.855067pt;}
.y6e{bottom:292.685733pt;}
.y35{bottom:292.694400pt;}
.y5f{bottom:292.694533pt;}
.y7f{bottom:299.142400pt;}
.y73{bottom:299.142533pt;}
.y6d{bottom:312.685733pt;}
.y34{bottom:312.694400pt;}
.y5e{bottom:312.694533pt;}
.y7e{bottom:319.142400pt;}
.y72{bottom:319.142533pt;}
.y6c{bottom:332.685733pt;}
.y33{bottom:332.694400pt;}
.yad{bottom:332.694533pt;}
.y7d{bottom:339.142400pt;}
.y71{bottom:339.142533pt;}
.y5d{bottom:340.246533pt;}
.y6b{bottom:352.685733pt;}
.yac{bottom:352.694533pt;}
.y7c{bottom:359.142400pt;}
.y70{bottom:359.142533pt;}
.y32{bottom:360.246400pt;}
.ya5{bottom:372.685733pt;}
.y6a{bottom:372.694400pt;}
.yab{bottom:372.694533pt;}
.y7b{bottom:379.142400pt;}
.y5c{bottom:379.142533pt;}
.ya4{bottom:392.685733pt;}
.y69{bottom:392.694400pt;}
.yaa{bottom:392.694533pt;}
.y31{bottom:399.142400pt;}
.y5b{bottom:399.142533pt;}
.ya3{bottom:412.685733pt;}
.y68{bottom:412.694400pt;}
.ya9{bottom:412.694533pt;}
.y30{bottom:419.142400pt;}
.y5a{bottom:419.142533pt;}
.ya2{bottom:432.685733pt;}
.ya8{bottom:432.694533pt;}
.y2f{bottom:439.142400pt;}
.y59{bottom:439.142533pt;}
.y67{bottom:440.246400pt;}
.ya1{bottom:452.685733pt;}
.ya7{bottom:452.694533pt;}
.y2e{bottom:459.142400pt;}
.y58{bottom:459.142533pt;}
.ya0{bottom:472.694533pt;}
.y2d{bottom:479.142400pt;}
.y57{bottom:479.142533pt;}
.y9f{bottom:492.694533pt;}
.y2c{bottom:499.142400pt;}
.y56{bottom:499.142533pt;}
.y9e{bottom:512.694533pt;}
.y2b{bottom:519.142400pt;}
.y55{bottom:519.142533pt;}
.y9d{bottom:532.694533pt;}
.y2a{bottom:539.142400pt;}
.y54{bottom:539.142533pt;}
.y9c{bottom:552.694533pt;}
.y29{bottom:559.142400pt;}
.y53{bottom:559.142533pt;}
.y9b{bottom:572.694533pt;}
.y28{bottom:579.142400pt;}
.y52{bottom:579.142533pt;}
.y9a{bottom:592.694533pt;}
.y27{bottom:599.142400pt;}
.y51{bottom:599.142533pt;}
.y99{bottom:612.694533pt;}
.y26{bottom:619.142400pt;}
.y50{bottom:619.142533pt;}
.y98{bottom:632.694533pt;}
.y25{bottom:639.142400pt;}
.y4f{bottom:639.142533pt;}
.y97{bottom:652.694533pt;}
.y24{bottom:659.142400pt;}
.y4e{bottom:659.142533pt;}
.y96{bottom:672.694533pt;}
.y23{bottom:679.142400pt;}
.y4d{bottom:679.142533pt;}
.y95{bottom:692.694533pt;}
.y22{bottom:699.142400pt;}
.y4c{bottom:699.142533pt;}
.y94{bottom:712.694533pt;}
.y21{bottom:719.142400pt;}
.y4b{bottom:719.142533pt;}
.y93{bottom:732.694533pt;}
.y20{bottom:739.142400pt;}
.y4a{bottom:739.142533pt;}
.y92{bottom:752.694533pt;}
.y1f{bottom:759.142400pt;}
.y49{bottom:759.142533pt;}
.y91{bottom:772.694533pt;}
.y1e{bottom:779.142400pt;}
.y48{bottom:779.142533pt;}
.y90{bottom:792.694533pt;}
.y1d{bottom:799.142400pt;}
.y47{bottom:799.142533pt;}
.ya6{bottom:800.246533pt;}
.y8f{bottom:812.694533pt;}
.y3{bottom:814.096533pt;}
.y1c{bottom:819.142400pt;}
.y46{bottom:819.142533pt;}
.y8e{bottom:832.694533pt;}
.y1b{bottom:839.142400pt;}
.y45{bottom:839.142533pt;}
.y2{bottom:840.763200pt;}
.y8d{bottom:852.694533pt;}
.y1a{bottom:859.142400pt;}
.y44{bottom:859.142533pt;}
.y8c{bottom:872.694533pt;}
.yba{bottom:879.126933pt;}
.y19{bottom:879.142400pt;}
.y43{bottom:879.142533pt;}
.y8b{bottom:892.694533pt;}
.yb9{bottom:899.126933pt;}
.y18{bottom:899.142400pt;}
.y42{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.y8a{bottom:912.694533pt;}
.yb8{bottom:919.126933pt;}
.y17{bottom:919.142400pt;}
.y41{bottom:919.142533pt;}
.yb7{bottom:939.126933pt;}
.y16{bottom:939.142400pt;}
.y40{bottom:939.142533pt;}
.y89{bottom:940.246533pt;}
.yb6{bottom:959.126933pt;}
.y15{bottom:959.142400pt;}
.y3f{bottom:959.142533pt;}
.y12{bottom:974.713200pt;}
.yb5{bottom:979.126933pt;}
.y14{bottom:979.142400pt;}
.y3e{bottom:979.142533pt;}
.y11{bottom:992.313200pt;}
.y10{bottom:1009.913200pt;}
.yf{bottom:1027.513200pt;}
.y13{bottom:1036.689733pt;}
.ye{bottom:1045.113200pt;}
.yd{bottom:1062.713200pt;}
.ha{height:26.133188pt;}
.h8{height:26.250375pt;}
.h9{height:42.117188pt;}
.h6{height:42.680000pt;}
.h4{height:43.812500pt;}
.h5{height:56.156250pt;}
.hb{height:56.312500pt;}
.h2{height:62.208000pt;}
.h7{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.385867pt;}
.x3{left:150.547867pt;}
.x2{left:175.667867pt;}
.xb{left:192.976400pt;}
.x1{left:334.842933pt;}
.x5{left:431.711867pt;}
.x8{left:479.642533pt;}
.x6{left:543.515867pt;}
.x9{left:558.593200pt;}
.xa{left:570.267867pt;}
.x7{left:620.486533pt;}
}




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