
    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_b5da3b868e1a8bf4dc7bc2fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_baf406ccf71a9f84a4fe05cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_da27a30089035d4264f230c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4fcdae9b04bb2109b1e3905d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5970f6668f6125060c1aaa10.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.760000px;}
.v1{vertical-align:-62.280000px;}
.v5{vertical-align:-55.080000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.ls17{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.139800px;}
.lsa{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.139800px;}
.ls12{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.468000px;}
.ls18{letter-spacing:0.498000px;}
.ls19{letter-spacing:1.188000px;}
.ls15{letter-spacing:9.828000px;}
.ls13{letter-spacing:16.488000px;}
.ls2{letter-spacing:61.766640px;}
.ls10{letter-spacing:196.166640px;}
.ls4{letter-spacing:798.348000px;}
.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;}
}
.wsb{word-spacing:-16.893360px;}
.ws7{word-spacing:-16.853160px;}
.ws8{word-spacing:-16.766640px;}
.wsa{word-spacing:-16.713360px;}
.ws6{word-spacing:-16.573560px;}
.ws9{word-spacing:-16.533360px;}
.ws2{word-spacing:-15.228000px;}
.wsd{word-spacing:-15.120000px;}
.wse{word-spacing:-15.030000px;}
.ws1{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.994000px;}
.ws5{word-spacing:-14.904000px;}
.ws0{word-spacing:-14.868000px;}
.ws3{word-spacing:-10.821600px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-2.742000px;}
._4{margin-left:-1.022040px;}
._1{width:1.380000px;}
._a{width:2.430000px;}
._6{width:4.212000px;}
._9{width:5.592000px;}
._b{width:6.876000px;}
._11{width:8.316000px;}
._12{width:9.450000px;}
._13{width:10.676160px;}
._10{width:11.880000px;}
._c{width:13.068000px;}
._22{width:14.120280px;}
._17{width:15.271920px;}
._2{width:16.272000px;}
._f{width:18.216000px;}
._e{width:19.272000px;}
._16{width:20.587560px;}
._23{width:21.618720px;}
._20{width:22.666680px;}
._25{width:23.682960px;}
._19{width:24.709320px;}
._7{width:26.082000px;}
._8{width:27.108000px;}
._18{width:28.737360px;}
._1a{width:30.300480px;}
._14{width:31.442760px;}
._15{width:33.066000px;}
._d{width:34.140000px;}
._1d{width:35.290440px;}
._1e{width:36.440880px;}
._1f{width:37.903080px;}
._29{width:38.934000px;}
._28{width:40.194000px;}
._1c{width:41.542920px;}
._1b{width:42.685200px;}
._24{width:44.609040px;}
._2a{width:46.062000px;}
._2b{width:47.250000px;}
._21{width:51.222240px;}
._27{width:75.090000px;}
._26{width:93.216000px;}
._5{width:425.402400px;}
._3{width:755.718000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y6{bottom:60.959908px;}
.y5{bottom:76.439908px;}
.y4{bottom:92.009908px;}
.y3{bottom:109.469908px;}
.y55{bottom:132.689908px;}
.y7c{bottom:137.909908px;}
.y2d{bottom:140.789908px;}
.y54{bottom:149.969908px;}
.ya2{bottom:153.209908px;}
.y7b{bottom:155.099908px;}
.y2c{bottom:156.359908px;}
.yc4{bottom:158.339908px;}
.y53{bottom:167.159908px;}
.ya1{bottom:168.689908px;}
.y2b{bottom:171.839908px;}
.y7a{bottom:172.379908px;}
.yc3{bottom:173.909908px;}
.ya0{bottom:184.259908px;}
.y52{bottom:184.439908px;}
.y2a{bottom:187.409908px;}
.yc2{bottom:189.389908px;}
.y79{bottom:189.659908px;}
.y9f{bottom:199.739908px;}
.y51{bottom:201.719908px;}
.y29{bottom:202.889908px;}
.yc1{bottom:204.959908px;}
.y78{bottom:206.849908px;}
.y9e{bottom:215.309908px;}
.y28{bottom:218.459908px;}
.y50{bottom:218.909908px;}
.yc0{bottom:220.439908px;}
.y77{bottom:224.129908px;}
.y9d{bottom:230.789908px;}
.y27{bottom:233.939908px;}
.ybf{bottom:236.009908px;}
.y4f{bottom:236.189908px;}
.y76{bottom:241.409908px;}
.y9c{bottom:246.359908px;}
.y26{bottom:249.509908px;}
.ybe{bottom:251.489908px;}
.y4e{bottom:253.469908px;}
.y75{bottom:258.599908px;}
.y9b{bottom:261.839908px;}
.y25{bottom:264.989908px;}
.ybd{bottom:266.969908px;}
.y4d{bottom:270.659908px;}
.y74{bottom:275.879908px;}
.y9a{bottom:277.319908px;}
.y24{bottom:280.469908px;}
.ybc{bottom:282.539908px;}
.y4c{bottom:287.939908px;}
.y99{bottom:292.889908px;}
.y73{bottom:293.069908px;}
.y23{bottom:296.039908px;}
.ybb{bottom:298.019908px;}
.y4b{bottom:305.219908px;}
.y98{bottom:308.369908px;}
.y72{bottom:310.349908px;}
.y22{bottom:311.519908px;}
.yba{bottom:313.589908px;}
.y4a{bottom:322.409908px;}
.y97{bottom:323.939908px;}
.y21{bottom:327.089908px;}
.y71{bottom:327.629908px;}
.yb9{bottom:329.069908px;}
.y49{bottom:339.689908px;}
.y20{bottom:342.569908px;}
.yb8{bottom:344.639908px;}
.y70{bottom:344.819908px;}
.y96{bottom:355.019908px;}
.y48{bottom:356.999908px;}
.y1f{bottom:358.169908px;}
.yb7{bottom:360.149908px;}
.y6f{bottom:362.129908px;}
.y95{bottom:370.499908px;}
.y1e{bottom:373.649908px;}
.y47{bottom:374.189908px;}
.yb6{bottom:375.719908px;}
.y6e{bottom:379.409908px;}
.y94{bottom:386.069908px;}
.y1d{bottom:389.219908px;}
.yb5{bottom:391.199908px;}
.y46{bottom:391.469908px;}
.y6d{bottom:396.599908px;}
.y93{bottom:401.549908px;}
.y1c{bottom:404.699908px;}
.yb4{bottom:406.769908px;}
.y45{bottom:408.749908px;}
.y6c{bottom:413.879908px;}
.y92{bottom:417.119908px;}
.y1b{bottom:420.269908px;}
.yb3{bottom:422.249908px;}
.y44{bottom:425.939908px;}
.y6b{bottom:431.159908px;}
.y91{bottom:432.599908px;}
.y1a{bottom:435.749908px;}
.yb2{bottom:437.819908px;}
.y43{bottom:443.219908px;}
.y90{bottom:448.169908px;}
.y6a{bottom:448.349908px;}
.y19{bottom:451.319908px;}
.yb1{bottom:453.299908px;}
.y42{bottom:460.409908px;}
.y8f{bottom:463.649908px;}
.y69{bottom:465.629908px;}
.y18{bottom:466.799908px;}
.yb0{bottom:468.869908px;}
.y41{bottom:477.689908px;}
.y8e{bottom:479.219908px;}
.y17{bottom:482.369908px;}
.y68{bottom:482.909908px;}
.yaf{bottom:484.349908px;}
.y8d{bottom:494.699908px;}
.y40{bottom:494.969908px;}
.y16{bottom:497.849908px;}
.yae{bottom:499.919908px;}
.y67{bottom:500.099908px;}
.y8c{bottom:510.269908px;}
.y3f{bottom:512.159908px;}
.y15{bottom:513.419908px;}
.yad{bottom:515.399908px;}
.y66{bottom:517.379908px;}
.y8b{bottom:525.749908px;}
.y14{bottom:528.899908px;}
.y3e{bottom:529.439908px;}
.yac{bottom:530.969908px;}
.y65{bottom:534.659908px;}
.y8a{bottom:541.319908px;}
.yab{bottom:546.449908px;}
.y3d{bottom:546.719908px;}
.y64{bottom:551.849908px;}
.y89{bottom:556.799908px;}
.y13{bottom:559.949908px;}
.yaa{bottom:562.019908px;}
.y3c{bottom:563.909908px;}
.y63{bottom:569.129908px;}
.y88{bottom:572.369908px;}
.y12{bottom:575.519908px;}
.y3b{bottom:581.189908px;}
.y62{bottom:586.409908px;}
.y87{bottom:587.849908px;}
.y11{bottom:590.999908px;}
.ya9{bottom:593.069908px;}
.y3a{bottom:598.469908px;}
.y86{bottom:603.419908px;}
.y61{bottom:603.599908px;}
.y10{bottom:606.569908px;}
.ya8{bottom:608.549908px;}
.y39{bottom:615.659908px;}
.y85{bottom:618.899908px;}
.y60{bottom:620.879908px;}
.ya7{bottom:624.119908px;}
.y38{bottom:632.939908px;}
.y84{bottom:634.469908px;}
.y5f{bottom:638.069908px;}
.yf{bottom:639.239908px;}
.ya6{bottom:639.599908px;}
.y83{bottom:649.949908px;}
.y37{bottom:650.219908px;}
.ye{bottom:653.639908px;}
.ya5{bottom:655.169908px;}
.y5e{bottom:655.349908px;}
.y82{bottom:665.519908px;}
.y36{bottom:667.409908px;}
.ya4{bottom:670.649908px;}
.y5d{bottom:672.629908px;}
.yd{bottom:676.139908px;}
.y81{bottom:680.999908px;}
.y35{bottom:684.689908px;}
.ya3{bottom:686.219908px;}
.yc{bottom:688.109908px;}
.y5c{bottom:689.819908px;}
.y80{bottom:696.569908px;}
.y34{bottom:701.699908px;}
.yb{bottom:705.389908px;}
.y5b{bottom:707.099908px;}
.y7f{bottom:712.079908px;}
.y33{bottom:717.299908px;}
.y5a{bottom:724.409908px;}
.y7e{bottom:727.649908px;}
.y32{bottom:732.779908px;}
.ya{bottom:739.889908px;}
.y59{bottom:741.599908px;}
.y7d{bottom:743.129908px;}
.y31{bottom:748.349908px;}
.y9{bottom:757.169908px;}
.y58{bottom:758.879908px;}
.y30{bottom:763.829908px;}
.y8{bottom:774.449908px;}
.y57{bottom:776.159908px;}
.y2f{bottom:779.399908px;}
.y7{bottom:791.999908px;}
.y56{bottom:793.349908px;}
.y2e{bottom:794.879908px;}
.y2{bottom:837.359908px;}
.h7{height:41.823281px;}
.ha{height:48.410156px;}
.h8{height:49.937344px;}
.h9{height:53.896641px;}
.h4{height:54.597656px;}
.h3{height:56.320312px;}
.h6{height:62.703281px;}
.h5{height:68.710781px;}
.h1{height:892.500000px;}
.h2{height:892.529908px;}
.h0{height:892.530000px;}
.w1{width:629.999991px;}
.w0{width:630.000000px;}
.x0{left:0.000000px;}
.x1{left:85.049991px;}
.x3{left:91.979991px;}
.x7{left:138.269991px;}
.x6{left:199.829991px;}
.x5{left:233.219991px;}
.x4{left:288.749991px;}
.x2{left:341.609991px;}
@media print{
.v2{vertical-align:-61.120000pt;}
.v1{vertical-align:-55.360000pt;}
.v5{vertical-align:-48.960000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.124267pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.124267pt;}
.ls12{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.416000pt;}
.ls18{letter-spacing:0.442667pt;}
.ls19{letter-spacing:1.056000pt;}
.ls15{letter-spacing:8.736000pt;}
.ls13{letter-spacing:14.656000pt;}
.ls2{letter-spacing:54.903680pt;}
.ls10{letter-spacing:174.370347pt;}
.ls4{letter-spacing:709.642667pt;}
.wsb{word-spacing:-15.016320pt;}
.ws7{word-spacing:-14.980587pt;}
.ws8{word-spacing:-14.903680pt;}
.wsa{word-spacing:-14.856320pt;}
.ws6{word-spacing:-14.732053pt;}
.ws9{word-spacing:-14.696320pt;}
.ws2{word-spacing:-13.536000pt;}
.wsd{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.328000pt;}
.ws5{word-spacing:-13.248000pt;}
.ws0{word-spacing:-13.216000pt;}
.ws3{word-spacing:-9.619200pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-2.437333pt;}
._4{margin-left:-0.908480pt;}
._1{width:1.226667pt;}
._a{width:2.160000pt;}
._6{width:3.744000pt;}
._9{width:4.970667pt;}
._b{width:6.112000pt;}
._11{width:7.392000pt;}
._12{width:8.400000pt;}
._13{width:9.489920pt;}
._10{width:10.560000pt;}
._c{width:11.616000pt;}
._22{width:12.551360pt;}
._17{width:13.575040pt;}
._2{width:14.464000pt;}
._f{width:16.192000pt;}
._e{width:17.130667pt;}
._16{width:18.300053pt;}
._23{width:19.216640pt;}
._20{width:20.148160pt;}
._25{width:21.051520pt;}
._19{width:21.963840pt;}
._7{width:23.184000pt;}
._8{width:24.096000pt;}
._18{width:25.544320pt;}
._1a{width:26.933760pt;}
._14{width:27.949120pt;}
._15{width:29.392000pt;}
._d{width:30.346667pt;}
._1d{width:31.369280pt;}
._1e{width:32.391893pt;}
._1f{width:33.691627pt;}
._29{width:34.608000pt;}
._28{width:35.728000pt;}
._1c{width:36.927040pt;}
._1b{width:37.942400pt;}
._24{width:39.652480pt;}
._2a{width:40.944000pt;}
._2b{width:42.000000pt;}
._21{width:45.530880pt;}
._27{width:66.746667pt;}
._26{width:82.858667pt;}
._5{width:378.135467pt;}
._3{width:671.749333pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y6{bottom:54.186585pt;}
.y5{bottom:67.946585pt;}
.y4{bottom:81.786585pt;}
.y3{bottom:97.306585pt;}
.y55{bottom:117.946585pt;}
.y7c{bottom:122.586585pt;}
.y2d{bottom:125.146585pt;}
.y54{bottom:133.306585pt;}
.ya2{bottom:136.186585pt;}
.y7b{bottom:137.866585pt;}
.y2c{bottom:138.986585pt;}
.yc4{bottom:140.746585pt;}
.y53{bottom:148.586585pt;}
.ya1{bottom:149.946585pt;}
.y2b{bottom:152.746585pt;}
.y7a{bottom:153.226585pt;}
.yc3{bottom:154.586585pt;}
.ya0{bottom:163.786585pt;}
.y52{bottom:163.946585pt;}
.y2a{bottom:166.586585pt;}
.yc2{bottom:168.346585pt;}
.y79{bottom:168.586585pt;}
.y9f{bottom:177.546585pt;}
.y51{bottom:179.306585pt;}
.y29{bottom:180.346585pt;}
.yc1{bottom:182.186585pt;}
.y78{bottom:183.866585pt;}
.y9e{bottom:191.386585pt;}
.y28{bottom:194.186585pt;}
.y50{bottom:194.586585pt;}
.yc0{bottom:195.946585pt;}
.y77{bottom:199.226585pt;}
.y9d{bottom:205.146585pt;}
.y27{bottom:207.946585pt;}
.ybf{bottom:209.786585pt;}
.y4f{bottom:209.946585pt;}
.y76{bottom:214.586585pt;}
.y9c{bottom:218.986585pt;}
.y26{bottom:221.786585pt;}
.ybe{bottom:223.546585pt;}
.y4e{bottom:225.306585pt;}
.y75{bottom:229.866585pt;}
.y9b{bottom:232.746585pt;}
.y25{bottom:235.546585pt;}
.ybd{bottom:237.306585pt;}
.y4d{bottom:240.586585pt;}
.y74{bottom:245.226585pt;}
.y9a{bottom:246.506585pt;}
.y24{bottom:249.306585pt;}
.ybc{bottom:251.146585pt;}
.y4c{bottom:255.946585pt;}
.y99{bottom:260.346585pt;}
.y73{bottom:260.506585pt;}
.y23{bottom:263.146585pt;}
.ybb{bottom:264.906585pt;}
.y4b{bottom:271.306585pt;}
.y98{bottom:274.106585pt;}
.y72{bottom:275.866585pt;}
.y22{bottom:276.906585pt;}
.yba{bottom:278.746585pt;}
.y4a{bottom:286.586585pt;}
.y97{bottom:287.946585pt;}
.y21{bottom:290.746585pt;}
.y71{bottom:291.226585pt;}
.yb9{bottom:292.506585pt;}
.y49{bottom:301.946585pt;}
.y20{bottom:304.506585pt;}
.yb8{bottom:306.346585pt;}
.y70{bottom:306.506585pt;}
.y96{bottom:315.573252pt;}
.y48{bottom:317.333252pt;}
.y1f{bottom:318.373252pt;}
.yb7{bottom:320.133252pt;}
.y6f{bottom:321.893252pt;}
.y95{bottom:329.333252pt;}
.y1e{bottom:332.133252pt;}
.y47{bottom:332.613252pt;}
.yb6{bottom:333.973252pt;}
.y6e{bottom:337.253252pt;}
.y94{bottom:343.173252pt;}
.y1d{bottom:345.973252pt;}
.yb5{bottom:347.733252pt;}
.y46{bottom:347.973252pt;}
.y6d{bottom:352.533252pt;}
.y93{bottom:356.933252pt;}
.y1c{bottom:359.733252pt;}
.yb4{bottom:361.573252pt;}
.y45{bottom:363.333252pt;}
.y6c{bottom:367.893252pt;}
.y92{bottom:370.773252pt;}
.y1b{bottom:373.573252pt;}
.yb3{bottom:375.333252pt;}
.y44{bottom:378.613252pt;}
.y6b{bottom:383.253252pt;}
.y91{bottom:384.533252pt;}
.y1a{bottom:387.333252pt;}
.yb2{bottom:389.173252pt;}
.y43{bottom:393.973252pt;}
.y90{bottom:398.373252pt;}
.y6a{bottom:398.533252pt;}
.y19{bottom:401.173252pt;}
.yb1{bottom:402.933252pt;}
.y42{bottom:409.253252pt;}
.y8f{bottom:412.133252pt;}
.y69{bottom:413.893252pt;}
.y18{bottom:414.933252pt;}
.yb0{bottom:416.773252pt;}
.y41{bottom:424.613252pt;}
.y8e{bottom:425.973252pt;}
.y17{bottom:428.773252pt;}
.y68{bottom:429.253252pt;}
.yaf{bottom:430.533252pt;}
.y8d{bottom:439.733252pt;}
.y40{bottom:439.973252pt;}
.y16{bottom:442.533252pt;}
.yae{bottom:444.373252pt;}
.y67{bottom:444.533252pt;}
.y8c{bottom:453.573252pt;}
.y3f{bottom:455.253252pt;}
.y15{bottom:456.373252pt;}
.yad{bottom:458.133252pt;}
.y66{bottom:459.893252pt;}
.y8b{bottom:467.333252pt;}
.y14{bottom:470.133252pt;}
.y3e{bottom:470.613252pt;}
.yac{bottom:471.973252pt;}
.y65{bottom:475.253252pt;}
.y8a{bottom:481.173252pt;}
.yab{bottom:485.733252pt;}
.y3d{bottom:485.973252pt;}
.y64{bottom:490.533252pt;}
.y89{bottom:494.933252pt;}
.y13{bottom:497.733252pt;}
.yaa{bottom:499.573252pt;}
.y3c{bottom:501.253252pt;}
.y63{bottom:505.893252pt;}
.y88{bottom:508.773252pt;}
.y12{bottom:511.573252pt;}
.y3b{bottom:516.613252pt;}
.y62{bottom:521.253252pt;}
.y87{bottom:522.533252pt;}
.y11{bottom:525.333252pt;}
.ya9{bottom:527.173252pt;}
.y3a{bottom:531.973252pt;}
.y86{bottom:536.373252pt;}
.y61{bottom:536.533252pt;}
.y10{bottom:539.173252pt;}
.ya8{bottom:540.933252pt;}
.y39{bottom:547.253252pt;}
.y85{bottom:550.133252pt;}
.y60{bottom:551.893252pt;}
.ya7{bottom:554.773252pt;}
.y38{bottom:562.613252pt;}
.y84{bottom:563.973252pt;}
.y5f{bottom:567.173252pt;}
.yf{bottom:568.213252pt;}
.ya6{bottom:568.533252pt;}
.y83{bottom:577.733252pt;}
.y37{bottom:577.973252pt;}
.ye{bottom:581.013252pt;}
.ya5{bottom:582.373252pt;}
.y5e{bottom:582.533252pt;}
.y82{bottom:591.573252pt;}
.y36{bottom:593.253252pt;}
.ya4{bottom:596.133252pt;}
.y5d{bottom:597.893252pt;}
.yd{bottom:601.013252pt;}
.y81{bottom:605.333252pt;}
.y35{bottom:608.613252pt;}
.ya3{bottom:609.973252pt;}
.yc{bottom:611.653252pt;}
.y5c{bottom:613.173252pt;}
.y80{bottom:619.173252pt;}
.y34{bottom:623.733252pt;}
.yb{bottom:627.013252pt;}
.y5b{bottom:628.533252pt;}
.y7f{bottom:632.959919pt;}
.y33{bottom:637.599919pt;}
.y5a{bottom:643.919919pt;}
.y7e{bottom:646.799919pt;}
.y32{bottom:651.359919pt;}
.ya{bottom:657.679919pt;}
.y59{bottom:659.199919pt;}
.y7d{bottom:660.559919pt;}
.y31{bottom:665.199919pt;}
.y9{bottom:673.039919pt;}
.y58{bottom:674.559919pt;}
.y30{bottom:678.959919pt;}
.y8{bottom:688.399919pt;}
.y57{bottom:689.919919pt;}
.y2f{bottom:692.799919pt;}
.y7{bottom:703.999919pt;}
.y56{bottom:705.199919pt;}
.y2e{bottom:706.559919pt;}
.y2{bottom:744.319919pt;}
.h7{height:37.176250pt;}
.ha{height:43.031250pt;}
.h8{height:44.388750pt;}
.h9{height:47.908125pt;}
.h4{height:48.531250pt;}
.h3{height:50.062500pt;}
.h6{height:55.736250pt;}
.h5{height:61.076250pt;}
.h1{height:793.333333pt;}
.h2{height:793.359919pt;}
.h0{height:793.360000pt;}
.w1{width:559.999992pt;}
.w0{width:560.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.599992pt;}
.x3{left:81.759992pt;}
.x7{left:122.906658pt;}
.x6{left:177.626658pt;}
.x5{left:207.306658pt;}
.x4{left:256.666658pt;}
.x2{left:303.653325pt;}
}




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