
    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_109bc6bea3e5f56cec44d3cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_3b56816a5cc0b6484b84cdc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_346fd9150ee8cfa04c6dd412.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_7a5d7ec6fc6bec071ef0bd3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_ecb2dd28282923ce26663a98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_8c1b7d8b45e084c682838a03.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984863;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;}
.m2{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m1{transform:matrix(0.248631,0.000000,-0.026131,0.248631,0,0);-ms-transform:matrix(0.248631,0.000000,-0.026131,0.248631,0,0);-webkit-transform:matrix(0.248631,0.000000,-0.026131,0.248631,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);}
.v1{vertical-align:-20.288234px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.288232px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.400000px;}
.ls2{letter-spacing:9.600000px;}
.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;}
}
.ws57{word-spacing:-57.960000px;}
.ws7{word-spacing:-46.368000px;}
.ws5c{word-spacing:-23.184000px;}
.ws5d{word-spacing:-19.872000px;}
.ws29{word-spacing:-19.728000px;}
.ws58{word-spacing:-16.440000px;}
.ws59{word-spacing:-9.732381px;}
.wsc{word-spacing:-3.888000px;}
.ws3c{word-spacing:-3.816000px;}
.ws1b{word-spacing:-3.744000px;}
.ws4d{word-spacing:-3.672000px;}
.ws50{word-spacing:-3.600000px;}
.ws3f{word-spacing:-3.456000px;}
.ws4e{word-spacing:-3.384000px;}
.ws2a{word-spacing:-3.312000px;}
.ws55{word-spacing:-3.096000px;}
.ws28{word-spacing:-2.952000px;}
.ws56{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.736000px;}
.ws45{word-spacing:-2.664000px;}
.ws3{word-spacing:-2.592000px;}
.ws40{word-spacing:-2.376000px;}
.ws24{word-spacing:-2.304000px;}
.ws1c{word-spacing:-2.016000px;}
.ws9{word-spacing:-1.944000px;}
.ws4f{word-spacing:-1.872000px;}
.wsb{word-spacing:-1.728000px;}
.ws4b{word-spacing:-1.656000px;}
.ws3a{word-spacing:-1.224000px;}
.ws21{word-spacing:-1.008000px;}
.ws46{word-spacing:-0.936000px;}
.ws6{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.216000px;}
.ws51{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws2d{word-spacing:0.072000px;}
.ws3b{word-spacing:0.288000px;}
.ws11{word-spacing:0.648000px;}
.wsa{word-spacing:0.792000px;}
.ws4c{word-spacing:0.864000px;}
.ws14{word-spacing:1.008000px;}
.ws43{word-spacing:1.584000px;}
.ws54{word-spacing:1.656000px;}
.ws53{word-spacing:1.728000px;}
.ws2f{word-spacing:1.872000px;}
.ws35{word-spacing:2.088000px;}
.wsd{word-spacing:2.304000px;}
.ws1e{word-spacing:2.520000px;}
.ws4{word-spacing:2.808000px;}
.ws52{word-spacing:2.880000px;}
.ws25{word-spacing:3.312000px;}
.ws22{word-spacing:3.528000px;}
.ws5{word-spacing:3.600000px;}
.ws18{word-spacing:3.672000px;}
.ws12{word-spacing:3.744000px;}
.ws1d{word-spacing:4.104000px;}
.ws39{word-spacing:4.248000px;}
.ws38{word-spacing:4.320000px;}
.ws42{word-spacing:4.608000px;}
.ws41{word-spacing:4.680000px;}
.ws3e{word-spacing:5.112000px;}
.ws5a{word-spacing:5.160000px;}
.ws5b{word-spacing:5.239604px;}
.ws0{word-spacing:5.256000px;}
.ws34{word-spacing:5.544000px;}
.ws1a{word-spacing:5.616000px;}
.ws33{word-spacing:5.688000px;}
.ws32{word-spacing:5.760000px;}
.ws13{word-spacing:5.976000px;}
.ws10{word-spacing:6.048000px;}
.ws27{word-spacing:6.120000px;}
.ws2{word-spacing:6.192000px;}
.ws31{word-spacing:6.408000px;}
.ws30{word-spacing:6.480000px;}
.ws17{word-spacing:6.552000px;}
.ws2e{word-spacing:6.840000px;}
.ws2b{word-spacing:7.200000px;}
.ws23{word-spacing:7.416000px;}
.ws3d{word-spacing:7.560000px;}
.wse{word-spacing:7.632000px;}
.ws2c{word-spacing:7.920000px;}
.ws19{word-spacing:7.992000px;}
.ws49{word-spacing:8.280000px;}
.wsf{word-spacing:8.424000px;}
.ws48{word-spacing:8.928000px;}
.ws47{word-spacing:9.000000px;}
.ws20{word-spacing:9.792000px;}
.ws16{word-spacing:10.008000px;}
.ws1f{word-spacing:10.872000px;}
.ws37{word-spacing:16.416000px;}
.ws36{word-spacing:16.488000px;}
._e{margin-left:-2101.421400px;}
._4{margin-left:-10.080000px;}
._7{margin-left:-8.625000px;}
._3{margin-left:-7.104000px;}
._6{margin-left:-5.969400px;}
._b{margin-left:-4.924800px;}
._2{margin-left:-3.751200px;}
._0{margin-left:-1.922400px;}
._1{width:1.008000px;}
._9{width:2.880000px;}
._5{width:4.015800px;}
._d{width:5.604000px;}
._8{width:10.080000px;}
._f{width:11.109600px;}
._a{width:57.744000px;}
._c{width:59.040000px;}
.fc5{color:rgb(50,185,212);}
.fc3{color:rgb(2,80,126);}
.fc2{color:rgb(48,187,211);}
.fc1{color:rgb(111,198,41);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:35.519637px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:60.925628px;}
.fs6{font-size:66.363517px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fsb{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:138.000000px;}
.fs4{font-size:168.000000px;}
.fs7{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:48.149700px;}
.ybd{bottom:83.253450px;}
.ybc{bottom:104.853450px;}
.y28{bottom:121.237800px;}
.y9d{bottom:123.497100px;}
.ybb{bottom:126.453450px;}
.y48{bottom:126.544350px;}
.y27{bottom:142.837800px;}
.y9c{bottom:145.097100px;}
.y47{bottom:148.144200px;}
.y26{bottom:164.437500px;}
.yba{bottom:165.061500px;}
.y9b{bottom:166.696500px;}
.y46{bottom:169.744500px;}
.y25{bottom:186.037500px;}
.y9a{bottom:188.296500px;}
.y45{bottom:191.344500px;}
.y6c{bottom:203.320500px;}
.y24{bottom:207.637500px;}
.y9{bottom:212.067000px;}
.y99{bottom:222.652500px;}
.y6b{bottom:224.920500px;}
.y23{bottom:229.237500px;}
.y98{bottom:244.252500px;}
.y22{bottom:250.837500px;}
.y6a{bottom:259.276500px;}
.y97{bottom:265.852500px;}
.yc2{bottom:275.689500px;}
.y69{bottom:280.876500px;}
.y21{bottom:285.193500px;}
.y3f{bottom:286.687500px;}
.y96{bottom:287.452500px;}
.y8{bottom:292.728000px;}
.yc1{bottom:297.289500px;}
.y68{bottom:302.476500px;}
.y20{bottom:306.793500px;}
.y3e{bottom:308.287500px;}
.y95{bottom:309.052500px;}
.y1f{bottom:328.393500px;}
.y3d{bottom:329.887500px;}
.y7{bottom:330.327000px;}
.y67{bottom:336.832500px;}
.y94{bottom:343.408500px;}
.y1e{bottom:349.993500px;}
.y6{bottom:351.927000px;}
.y66{bottom:358.432500px;}
.y31{bottom:362.160000px;}
.y93{bottom:365.008500px;}
.y1d{bottom:371.593500px;}
.y5{bottom:373.527000px;}
.y65{bottom:380.032500px;}
.y92{bottom:386.608500px;}
.y1c{bottom:393.193500px;}
.y4{bottom:395.127000px;}
.y91{bottom:408.208500px;}
.y44{bottom:410.731500px;}
.y64{bottom:414.388500px;}
.y1b{bottom:414.793500px;}
.y3{bottom:416.727000px;}
.y90{bottom:429.808500px;}
.y43{bottom:432.331500px;}
.y2{bottom:438.327000px;}
.yc0{bottom:442.576500px;}
.y42{bottom:453.931500px;}
.y1a{bottom:457.993500px;}
.y1{bottom:459.927000px;}
.ybf{bottom:468.427500px;}
.y8f{bottom:471.154500px;}
.y63{bottom:473.944500px;}
.y41{bottom:475.531500px;}
.yb9{bottom:483.030000px;}
.y62{bottom:495.544500px;}
.y40{bottom:497.131500px;}
.ya{bottom:501.807000px;}
.ybe{bottom:507.036000px;}
.y61{bottom:517.144500px;}
.yb8{bottom:521.638500px;}
.yd{bottom:545.823000px;}
.y8e{bottom:546.652500px;}
.y60{bottom:551.500500px;}
.yb7{bottom:556.647000px;}
.y8d{bottom:568.252500px;}
.y3c{bottom:569.103000px;}
.y5f{bottom:573.100500px;}
.yc{bottom:587.223000px;}
.y8c{bottom:589.852500px;}
.y3b{bottom:590.703000px;}
.yb6{bottom:591.654000px;}
.y5e{bottom:607.456500px;}
.y3a{bottom:612.303000px;}
.y8b{bottom:624.208500px;}
.yb5{bottom:626.662500px;}
.yb{bottom:628.623000px;}
.y5d{bottom:629.056500px;}
.y39{bottom:633.903000px;}
.y8a{bottom:645.808500px;}
.y5c{bottom:650.656500px;}
.yb4{bottom:661.669500px;}
.y89{bottom:667.408500px;}
.y5b{bottom:672.256500px;}
.yb3{bottom:696.678000px;}
.y88{bottom:701.764500px;}
.y5a{bottom:706.612500px;}
.y38{bottom:716.151000px;}
.y87{bottom:723.364500px;}
.yb2{bottom:731.685000px;}
.y37{bottom:737.751000px;}
.y86{bottom:744.964500px;}
.y79{bottom:754.488000px;}
.y36{bottom:759.351000px;}
.y59{bottom:766.167000px;}
.yb1{bottom:766.693500px;}
.y78{bottom:776.088000px;}
.y85{bottom:779.320500px;}
.y35{bottom:780.951000px;}
.y58{bottom:787.768500px;}
.y84{bottom:800.920500px;}
.yb0{bottom:801.702000px;}
.y57{bottom:809.368500px;}
.y77{bottom:810.444000px;}
.y83{bottom:822.520500px;}
.y76{bottom:832.044000px;}
.ya7{bottom:833.887500px;}
.yaf{bottom:836.709000px;}
.y4d{bottom:841.206000px;}
.y56{bottom:843.723000px;}
.ya6{bottom:855.487500px;}
.y82{bottom:856.876500px;}
.y19{bottom:859.017000px;}
.y4c{bottom:862.806000px;}
.y55{bottom:865.323000px;}
.y75{bottom:866.400000px;}
.yae{bottom:871.717500px;}
.y81{bottom:878.476500px;}
.y18{bottom:880.617000px;}
.y4b{bottom:884.406000px;}
.ya5{bottom:889.843500px;}
.y54{bottom:899.679000px;}
.y74{bottom:900.756000px;}
.y17{bottom:902.217000px;}
.y4a{bottom:906.006000px;}
.yad{bottom:906.726000px;}
.ya4{bottom:911.443500px;}
.y80{bottom:912.832500px;}
.y30{bottom:914.973000px;}
.y53{bottom:921.279000px;}
.y73{bottom:922.356000px;}
.y16{bottom:923.817000px;}
.y49{bottom:927.606000px;}
.y7f{bottom:934.432500px;}
.y2f{bottom:936.573000px;}
.yac{bottom:941.733000px;}
.y52{bottom:942.879000px;}
.y15{bottom:945.417000px;}
.ya3{bottom:945.799500px;}
.y72{bottom:956.712000px;}
.y2e{bottom:958.173000px;}
.y14{bottom:967.017000px;}
.ya2{bottom:967.399500px;}
.y7e{bottom:968.788500px;}
.yab{bottom:976.741500px;}
.y51{bottom:977.235000px;}
.y71{bottom:978.312000px;}
.y2d{bottom:979.773000px;}
.y34{bottom:984.765000px;}
.y13{bottom:988.617000px;}
.y7d{bottom:990.388500px;}
.y2c{bottom:1001.373000px;}
.y12{bottom:1010.217000px;}
.yaa{bottom:1011.748500px;}
.y70{bottom:1012.666500px;}
.y2b{bottom:1022.973000px;}
.ya1{bottom:1023.355500px;}
.y50{bottom:1024.035000px;}
.y7c{bottom:1024.744500px;}
.ya9{bottom:1029.748500px;}
.y11{bottom:1031.817000px;}
.y6f{bottom:1034.266500px;}
.y33{bottom:1035.165000px;}
.y2a{bottom:1044.573000px;}
.ya0{bottom:1044.955500px;}
.y4f{bottom:1045.635000px;}
.y7b{bottom:1046.344500px;}
.y9f{bottom:1066.555500px;}
.y6e{bottom:1068.622500px;}
.ya8{bottom:1073.668500px;}
.y32{bottom:1085.565000px;}
.y9e{bottom:1088.155500px;}
.y7a{bottom:1088.986500px;}
.y4e{bottom:1089.816000px;}
.y29{bottom:1090.879500px;}
.y10{bottom:1093.005000px;}
.y6d{bottom:1102.978500px;}
.yf{bottom:1204.465500px;}
.hd{height:44.970703px;}
.he{height:45.664472px;}
.h8{height:49.902254px;}
.h2{height:53.964844px;}
.hb{height:54.070312px;}
.h9{height:54.140625px;}
.h5{height:61.236000px;}
.ha{height:63.164062px;}
.h3{height:69.984000px;}
.hf{height:76.699219px;}
.h7{height:90.234375px;}
.h4{height:103.769531px;}
.h6{height:126.328125px;}
.hc{height:157.910156px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x11{left:79.299150px;}
.xd{left:100.559100px;}
.x12{left:106.299150px;}
.xa{left:115.653600px;}
.x4{left:117.372750px;}
.x23{left:119.055150px;}
.x5{left:121.407600px;}
.xe{left:127.559100px;}
.xf{left:155.835000px;}
.x6{left:158.299500px;}
.x10{left:182.835000px;}
.x24{left:199.134000px;}
.x21{left:210.693000px;}
.x20{left:247.344000px;}
.x19{left:250.288500px;}
.x2{left:257.419500px;}
.x18{left:260.769000px;}
.x1a{left:264.438000px;}
.x1e{left:274.524000px;}
.x15{left:277.029000px;}
.x16{left:279.966000px;}
.xc{left:283.464000px;}
.x7{left:304.579500px;}
.x17{left:306.406500px;}
.x14{left:313.503000px;}
.x1f{left:323.472000px;}
.x1d{left:345.729000px;}
.xb{left:359.556000px;}
.x1b{left:366.867000px;}
.x1c{left:414.087000px;}
.x22{left:531.496500px;}
.x13{left:577.303500px;}
.x9{left:578.364000px;}
.x3{left:710.202000px;}
.x8{left:801.607500px;}
@media print{
.v1{vertical-align:-18.033986pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.033984pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.133333pt;}
.ls2{letter-spacing:8.533333pt;}
.ws57{word-spacing:-51.520000pt;}
.ws7{word-spacing:-41.216000pt;}
.ws5c{word-spacing:-20.608000pt;}
.ws5d{word-spacing:-17.664000pt;}
.ws29{word-spacing:-17.536000pt;}
.ws58{word-spacing:-14.613333pt;}
.ws59{word-spacing:-8.651005pt;}
.wsc{word-spacing:-3.456000pt;}
.ws3c{word-spacing:-3.392000pt;}
.ws1b{word-spacing:-3.328000pt;}
.ws4d{word-spacing:-3.264000pt;}
.ws50{word-spacing:-3.200000pt;}
.ws3f{word-spacing:-3.072000pt;}
.ws4e{word-spacing:-3.008000pt;}
.ws2a{word-spacing:-2.944000pt;}
.ws55{word-spacing:-2.752000pt;}
.ws28{word-spacing:-2.624000pt;}
.ws56{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.432000pt;}
.ws45{word-spacing:-2.368000pt;}
.ws3{word-spacing:-2.304000pt;}
.ws40{word-spacing:-2.112000pt;}
.ws24{word-spacing:-2.048000pt;}
.ws1c{word-spacing:-1.792000pt;}
.ws9{word-spacing:-1.728000pt;}
.ws4f{word-spacing:-1.664000pt;}
.wsb{word-spacing:-1.536000pt;}
.ws4b{word-spacing:-1.472000pt;}
.ws3a{word-spacing:-1.088000pt;}
.ws21{word-spacing:-0.896000pt;}
.ws46{word-spacing:-0.832000pt;}
.ws6{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws51{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.064000pt;}
.ws3b{word-spacing:0.256000pt;}
.ws11{word-spacing:0.576000pt;}
.wsa{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.768000pt;}
.ws14{word-spacing:0.896000pt;}
.ws43{word-spacing:1.408000pt;}
.ws54{word-spacing:1.472000pt;}
.ws53{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.664000pt;}
.ws35{word-spacing:1.856000pt;}
.wsd{word-spacing:2.048000pt;}
.ws1e{word-spacing:2.240000pt;}
.ws4{word-spacing:2.496000pt;}
.ws52{word-spacing:2.560000pt;}
.ws25{word-spacing:2.944000pt;}
.ws22{word-spacing:3.136000pt;}
.ws5{word-spacing:3.200000pt;}
.ws18{word-spacing:3.264000pt;}
.ws12{word-spacing:3.328000pt;}
.ws1d{word-spacing:3.648000pt;}
.ws39{word-spacing:3.776000pt;}
.ws38{word-spacing:3.840000pt;}
.ws42{word-spacing:4.096000pt;}
.ws41{word-spacing:4.160000pt;}
.ws3e{word-spacing:4.544000pt;}
.ws5a{word-spacing:4.586667pt;}
.ws5b{word-spacing:4.657426pt;}
.ws0{word-spacing:4.672000pt;}
.ws34{word-spacing:4.928000pt;}
.ws1a{word-spacing:4.992000pt;}
.ws33{word-spacing:5.056000pt;}
.ws32{word-spacing:5.120000pt;}
.ws13{word-spacing:5.312000pt;}
.ws10{word-spacing:5.376000pt;}
.ws27{word-spacing:5.440000pt;}
.ws2{word-spacing:5.504000pt;}
.ws31{word-spacing:5.696000pt;}
.ws30{word-spacing:5.760000pt;}
.ws17{word-spacing:5.824000pt;}
.ws2e{word-spacing:6.080000pt;}
.ws2b{word-spacing:6.400000pt;}
.ws23{word-spacing:6.592000pt;}
.ws3d{word-spacing:6.720000pt;}
.wse{word-spacing:6.784000pt;}
.ws2c{word-spacing:7.040000pt;}
.ws19{word-spacing:7.104000pt;}
.ws49{word-spacing:7.360000pt;}
.wsf{word-spacing:7.488000pt;}
.ws48{word-spacing:7.936000pt;}
.ws47{word-spacing:8.000000pt;}
.ws20{word-spacing:8.704000pt;}
.ws16{word-spacing:8.896000pt;}
.ws1f{word-spacing:9.664000pt;}
.ws37{word-spacing:14.592000pt;}
.ws36{word-spacing:14.656000pt;}
._e{margin-left:-1867.930133pt;}
._4{margin-left:-8.960000pt;}
._7{margin-left:-7.666667pt;}
._3{margin-left:-6.314667pt;}
._6{margin-left:-5.306133pt;}
._b{margin-left:-4.377600pt;}
._2{margin-left:-3.334400pt;}
._0{margin-left:-1.708800pt;}
._1{width:0.896000pt;}
._9{width:2.560000pt;}
._5{width:3.569600pt;}
._d{width:4.981333pt;}
._8{width:8.960000pt;}
._f{width:9.875200pt;}
._a{width:51.328000pt;}
._c{width:52.480000pt;}
.fsa{font-size:31.573011pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:54.156114pt;}
.fs6{font-size:58.989793pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fsb{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:122.666667pt;}
.fs4{font-size:149.333333pt;}
.fs7{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:42.799733pt;}
.ybd{bottom:74.003067pt;}
.ybc{bottom:93.203067pt;}
.y28{bottom:107.766933pt;}
.y9d{bottom:109.775200pt;}
.ybb{bottom:112.403067pt;}
.y48{bottom:112.483867pt;}
.y27{bottom:126.966933pt;}
.y9c{bottom:128.975200pt;}
.y47{bottom:131.683733pt;}
.y26{bottom:146.166667pt;}
.yba{bottom:146.721333pt;}
.y9b{bottom:148.174667pt;}
.y46{bottom:150.884000pt;}
.y25{bottom:165.366667pt;}
.y9a{bottom:167.374667pt;}
.y45{bottom:170.084000pt;}
.y6c{bottom:180.729333pt;}
.y24{bottom:184.566667pt;}
.y9{bottom:188.504000pt;}
.y99{bottom:197.913333pt;}
.y6b{bottom:199.929333pt;}
.y23{bottom:203.766667pt;}
.y98{bottom:217.113333pt;}
.y22{bottom:222.966667pt;}
.y6a{bottom:230.468000pt;}
.y97{bottom:236.313333pt;}
.yc2{bottom:245.057333pt;}
.y69{bottom:249.668000pt;}
.y21{bottom:253.505333pt;}
.y3f{bottom:254.833333pt;}
.y96{bottom:255.513333pt;}
.y8{bottom:260.202667pt;}
.yc1{bottom:264.257333pt;}
.y68{bottom:268.868000pt;}
.y20{bottom:272.705333pt;}
.y3e{bottom:274.033333pt;}
.y95{bottom:274.713333pt;}
.y1f{bottom:291.905333pt;}
.y3d{bottom:293.233333pt;}
.y7{bottom:293.624000pt;}
.y67{bottom:299.406667pt;}
.y94{bottom:305.252000pt;}
.y1e{bottom:311.105333pt;}
.y6{bottom:312.824000pt;}
.y66{bottom:318.606667pt;}
.y31{bottom:321.920000pt;}
.y93{bottom:324.452000pt;}
.y1d{bottom:330.305333pt;}
.y5{bottom:332.024000pt;}
.y65{bottom:337.806667pt;}
.y92{bottom:343.652000pt;}
.y1c{bottom:349.505333pt;}
.y4{bottom:351.224000pt;}
.y91{bottom:362.852000pt;}
.y44{bottom:365.094667pt;}
.y64{bottom:368.345333pt;}
.y1b{bottom:368.705333pt;}
.y3{bottom:370.424000pt;}
.y90{bottom:382.052000pt;}
.y43{bottom:384.294667pt;}
.y2{bottom:389.624000pt;}
.yc0{bottom:393.401333pt;}
.y42{bottom:403.494667pt;}
.y1a{bottom:407.105333pt;}
.y1{bottom:408.824000pt;}
.ybf{bottom:416.380000pt;}
.y8f{bottom:418.804000pt;}
.y63{bottom:421.284000pt;}
.y41{bottom:422.694667pt;}
.yb9{bottom:429.360000pt;}
.y62{bottom:440.484000pt;}
.y40{bottom:441.894667pt;}
.ya{bottom:446.050667pt;}
.ybe{bottom:450.698667pt;}
.y61{bottom:459.684000pt;}
.yb8{bottom:463.678667pt;}
.yd{bottom:485.176000pt;}
.y8e{bottom:485.913333pt;}
.y60{bottom:490.222667pt;}
.yb7{bottom:494.797333pt;}
.y8d{bottom:505.113333pt;}
.y3c{bottom:505.869333pt;}
.y5f{bottom:509.422667pt;}
.yc{bottom:521.976000pt;}
.y8c{bottom:524.313333pt;}
.y3b{bottom:525.069333pt;}
.yb6{bottom:525.914667pt;}
.y5e{bottom:539.961333pt;}
.y3a{bottom:544.269333pt;}
.y8b{bottom:554.852000pt;}
.yb5{bottom:557.033333pt;}
.yb{bottom:558.776000pt;}
.y5d{bottom:559.161333pt;}
.y39{bottom:563.469333pt;}
.y8a{bottom:574.052000pt;}
.y5c{bottom:578.361333pt;}
.yb4{bottom:588.150667pt;}
.y89{bottom:593.252000pt;}
.y5b{bottom:597.561333pt;}
.yb3{bottom:619.269333pt;}
.y88{bottom:623.790667pt;}
.y5a{bottom:628.100000pt;}
.y38{bottom:636.578667pt;}
.y87{bottom:642.990667pt;}
.yb2{bottom:650.386667pt;}
.y37{bottom:655.778667pt;}
.y86{bottom:662.190667pt;}
.y79{bottom:670.656000pt;}
.y36{bottom:674.978667pt;}
.y59{bottom:681.037333pt;}
.yb1{bottom:681.505333pt;}
.y78{bottom:689.856000pt;}
.y85{bottom:692.729333pt;}
.y35{bottom:694.178667pt;}
.y58{bottom:700.238667pt;}
.y84{bottom:711.929333pt;}
.yb0{bottom:712.624000pt;}
.y57{bottom:719.438667pt;}
.y77{bottom:720.394667pt;}
.y83{bottom:731.129333pt;}
.y76{bottom:739.594667pt;}
.ya7{bottom:741.233333pt;}
.yaf{bottom:743.741333pt;}
.y4d{bottom:747.738667pt;}
.y56{bottom:749.976000pt;}
.ya6{bottom:760.433333pt;}
.y82{bottom:761.668000pt;}
.y19{bottom:763.570667pt;}
.y4c{bottom:766.938667pt;}
.y55{bottom:769.176000pt;}
.y75{bottom:770.133333pt;}
.yae{bottom:774.860000pt;}
.y81{bottom:780.868000pt;}
.y18{bottom:782.770667pt;}
.y4b{bottom:786.138667pt;}
.ya5{bottom:790.972000pt;}
.y54{bottom:799.714667pt;}
.y74{bottom:800.672000pt;}
.y17{bottom:801.970667pt;}
.y4a{bottom:805.338667pt;}
.yad{bottom:805.978667pt;}
.ya4{bottom:810.172000pt;}
.y80{bottom:811.406667pt;}
.y30{bottom:813.309333pt;}
.y53{bottom:818.914667pt;}
.y73{bottom:819.872000pt;}
.y16{bottom:821.170667pt;}
.y49{bottom:824.538667pt;}
.y7f{bottom:830.606667pt;}
.y2f{bottom:832.509333pt;}
.yac{bottom:837.096000pt;}
.y52{bottom:838.114667pt;}
.y15{bottom:840.370667pt;}
.ya3{bottom:840.710667pt;}
.y72{bottom:850.410667pt;}
.y2e{bottom:851.709333pt;}
.y14{bottom:859.570667pt;}
.ya2{bottom:859.910667pt;}
.y7e{bottom:861.145333pt;}
.yab{bottom:868.214667pt;}
.y51{bottom:868.653333pt;}
.y71{bottom:869.610667pt;}
.y2d{bottom:870.909333pt;}
.y34{bottom:875.346667pt;}
.y13{bottom:878.770667pt;}
.y7d{bottom:880.345333pt;}
.y2c{bottom:890.109333pt;}
.y12{bottom:897.970667pt;}
.yaa{bottom:899.332000pt;}
.y70{bottom:900.148000pt;}
.y2b{bottom:909.309333pt;}
.ya1{bottom:909.649333pt;}
.y50{bottom:910.253333pt;}
.y7c{bottom:910.884000pt;}
.ya9{bottom:915.332000pt;}
.y11{bottom:917.170667pt;}
.y6f{bottom:919.348000pt;}
.y33{bottom:920.146667pt;}
.y2a{bottom:928.509333pt;}
.ya0{bottom:928.849333pt;}
.y4f{bottom:929.453333pt;}
.y7b{bottom:930.084000pt;}
.y9f{bottom:948.049333pt;}
.y6e{bottom:949.886667pt;}
.ya8{bottom:954.372000pt;}
.y32{bottom:964.946667pt;}
.y9e{bottom:967.249333pt;}
.y7a{bottom:967.988000pt;}
.y4e{bottom:968.725333pt;}
.y29{bottom:969.670667pt;}
.y10{bottom:971.560000pt;}
.y6d{bottom:980.425333pt;}
.yf{bottom:1070.636000pt;}
.hd{height:39.973958pt;}
.he{height:40.590642pt;}
.h8{height:44.357559pt;}
.h2{height:47.968750pt;}
.hb{height:48.062500pt;}
.h9{height:48.125000pt;}
.h5{height:54.432000pt;}
.ha{height:56.145833pt;}
.h3{height:62.208000pt;}
.hf{height:68.177083pt;}
.h7{height:80.208333pt;}
.h4{height:92.239583pt;}
.h6{height:112.291667pt;}
.hc{height:140.364583pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x11{left:70.488133pt;}
.xd{left:89.385867pt;}
.x12{left:94.488133pt;}
.xa{left:102.803200pt;}
.x4{left:104.331333pt;}
.x23{left:105.826800pt;}
.x5{left:107.917867pt;}
.xe{left:113.385867pt;}
.xf{left:138.520000pt;}
.x6{left:140.710667pt;}
.x10{left:162.520000pt;}
.x24{left:177.008000pt;}
.x21{left:187.282667pt;}
.x20{left:219.861333pt;}
.x19{left:222.478667pt;}
.x2{left:228.817333pt;}
.x18{left:231.794667pt;}
.x1a{left:235.056000pt;}
.x1e{left:244.021333pt;}
.x15{left:246.248000pt;}
.x16{left:248.858667pt;}
.xc{left:251.968000pt;}
.x7{left:270.737333pt;}
.x17{left:272.361333pt;}
.x14{left:278.669333pt;}
.x1f{left:287.530667pt;}
.x1d{left:307.314667pt;}
.xb{left:319.605333pt;}
.x1b{left:326.104000pt;}
.x1c{left:368.077333pt;}
.x22{left:472.441333pt;}
.x13{left:513.158667pt;}
.x9{left:514.101333pt;}
.x3{left:631.290667pt;}
.x8{left:712.540000pt;}
}




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