
    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_ed76df752db0e9fe64f1af80.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_132f52d91ae4de4cf68c492d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_886765f8becfa9e042bd3efa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.775879;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_532d124dc96de5f3a1286418.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_693a855caca0a8d46ee637ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_262b9b95e9f01045ec7a581c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090820;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_2079e0f3b189def22e49a176.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.056152;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_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_28ea0fea356438d1ff1c269e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116699;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_992107bff53100a9012dfb61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;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:ffc;src:url('chunks/assets/font_7ca9394327cc9b8f5af1c981.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.291600px;}
.ls16{letter-spacing:-0.177600px;}
.ls20{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.058320px;}
.lsf{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.101520px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.241200px;}
.ls1d{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.666000px;}
.lse{letter-spacing:0.774000px;}
.ls18{letter-spacing:0.979920px;}
.ls1b{letter-spacing:1.620000px;}
.ls9{letter-spacing:2.340000px;}
.ls7{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.180000px;}
.lsa{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.500000px;}
.ls17{letter-spacing:5.940000px;}
.ls22{letter-spacing:6.660000px;}
.ls19{letter-spacing:8.820000px;}
.ls25{letter-spacing:9.540000px;}
.ls23{letter-spacing:12.420000px;}
.ls1a{letter-spacing:14.580000px;}
.lsb{letter-spacing:17.460000px;}
.ls26{letter-spacing:22.500000px;}
.ls1c{letter-spacing:26.100000px;}
.ls24{letter-spacing:34.020000px;}
.ls21{letter-spacing:45.540000px;}
.ls1f{letter-spacing:49.140000px;}
.ls4{letter-spacing:50.556000px;}
.ls5{letter-spacing:50.580000px;}
.ls27{letter-spacing:316.236000px;}
.ls2{letter-spacing:1149.480000px;}
.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:-59.760000px;}
.ws3{word-spacing:-15.714000px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.181200px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.648400px;}
.ws7{word-spacing:-14.274000px;}
.ws1{word-spacing:-13.447440px;}
.ws9{word-spacing:0.000000px;}
._3b{margin-left:-11.033280px;}
._8{margin-left:-3.525840px;}
._9{margin-left:-2.293200px;}
._4{margin-left:-1.039920px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._6{width:3.884400px;}
._23{width:4.900320px;}
._d{width:5.907840px;}
._a{width:7.203600px;}
._5{width:8.306640px;}
._c{width:9.681120px;}
._16{width:11.175120px;}
._1b{width:12.179280px;}
._12{width:13.206960px;}
._e{width:16.075440px;}
._f{width:17.819040px;}
._15{width:18.943920px;}
._14{width:20.019600px;}
._26{width:21.095280px;}
._2b{width:22.230720px;}
._17{width:23.246640px;}
._10{width:24.702240px;}
._2e{width:25.720800px;}
._21{width:26.810880px;}
._33{width:27.907920px;}
._1a{width:28.923840px;}
._1c{width:30.059280px;}
._1f{width:31.493520px;}
._20{width:32.748480px;}
._2a{width:34.242480px;}
._13{width:35.796240px;}
._25{width:36.812160px;}
._1e{width:38.067120px;}
._19{width:39.322080px;}
._30{width:40.696560px;}
._11{width:41.891760px;}
._2d{width:43.744320px;}
._29{width:45.537120px;}
._34{width:46.732320px;}
._b{width:47.867760px;}
._2f{width:49.361760px;}
._7{width:50.788560px;}
._27{width:52.732320px;}
._22{width:54.321840px;}
._1d{width:55.337760px;}
._18{width:56.353680px;}
._32{width:57.728160px;}
._39{width:61.672320px;}
._28{width:66.811680px;}
._35{width:73.564560px;}
._3a{width:75.656160px;}
._36{width:76.672080px;}
._37{width:86.353200px;}
._38{width:87.608160px;}
._3d{width:103.421520px;}
._3c{width:111.153600px;}
._24{width:118.085760px;}
._31{width:203.303520px;}
._3e{width:849.216000px;}
._3{width:1196.044320px;}
._2c{width:1308.763920px;}
._2{width:1338.283920px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:88.380000px;}
.y3e{bottom:92.160000px;}
.y7d{bottom:105.660000px;}
.y3d{bottom:109.440000px;}
.y7c{bottom:122.940000px;}
.y3c{bottom:126.720000px;}
.y7b{bottom:140.076000px;}
.y3b{bottom:144.036000px;}
.y7a{bottom:157.350000px;}
.y3a{bottom:161.310000px;}
.y79{bottom:174.630000px;}
.y39{bottom:178.590000px;}
.y78{bottom:191.910000px;}
.y38{bottom:195.690000px;}
.y77{bottom:209.190000px;}
.y37{bottom:212.970000px;}
.y76{bottom:226.470000px;}
.y36{bottom:230.250000px;}
.y75{bottom:243.570000px;}
.y35{bottom:247.530000px;}
.y74{bottom:260.850000px;}
.y34{bottom:264.810000px;}
.y73{bottom:278.130000px;}
.y33{bottom:282.090000px;}
.y72{bottom:295.410000px;}
.y32{bottom:299.190000px;}
.y71{bottom:312.690000px;}
.y31{bottom:316.470000px;}
.y70{bottom:329.970000px;}
.y30{bottom:333.750000px;}
.y6f{bottom:347.070000px;}
.y2f{bottom:351.030000px;}
.y6e{bottom:364.350000px;}
.y2e{bottom:368.310000px;}
.y6d{bottom:381.630000px;}
.y2d{bottom:385.590000px;}
.y6c{bottom:398.955000px;}
.y2c{bottom:402.735000px;}
.y6b{bottom:416.235000px;}
.y2b{bottom:420.015000px;}
.y6a{bottom:433.335000px;}
.y2a{bottom:437.295000px;}
.y69{bottom:450.615000px;}
.y29{bottom:454.575000px;}
.y68{bottom:467.895000px;}
.y28{bottom:471.855000px;}
.y67{bottom:485.175000px;}
.y27{bottom:488.955000px;}
.y66{bottom:502.455000px;}
.y26{bottom:506.235000px;}
.y65{bottom:519.735000px;}
.y25{bottom:523.515000px;}
.y64{bottom:536.835000px;}
.y24{bottom:540.795000px;}
.y63{bottom:554.115000px;}
.y23{bottom:558.075000px;}
.y62{bottom:571.395000px;}
.y22{bottom:575.355000px;}
.y61{bottom:588.675000px;}
.y21{bottom:592.455000px;}
.y60{bottom:605.955000px;}
.y20{bottom:609.735000px;}
.y5f{bottom:623.235000px;}
.y1f{bottom:627.015000px;}
.y5e{bottom:640.365000px;}
.y1e{bottom:644.325000px;}
.y5d{bottom:657.645000px;}
.y1d{bottom:661.605000px;}
.y5c{bottom:674.925000px;}
.y1c{bottom:678.885000px;}
.y5b{bottom:692.205000px;}
.y1b{bottom:695.985000px;}
.y5a{bottom:709.485000px;}
.y1a{bottom:713.265000px;}
.y59{bottom:726.585000px;}
.y19{bottom:730.545000px;}
.y58{bottom:743.865000px;}
.y18{bottom:747.825000px;}
.y57{bottom:761.145000px;}
.y17{bottom:765.105000px;}
.y56{bottom:778.425000px;}
.y16{bottom:782.205000px;}
.y55{bottom:795.705000px;}
.y15{bottom:799.485000px;}
.y54{bottom:812.985000px;}
.y14{bottom:816.765000px;}
.y53{bottom:830.085000px;}
.y13{bottom:834.045000px;}
.y52{bottom:847.365000px;}
.y12{bottom:851.325000px;}
.y51{bottom:864.645000px;}
.y11{bottom:868.605000px;}
.y50{bottom:881.925000px;}
.y10{bottom:885.705000px;}
.y4f{bottom:899.250000px;}
.yf{bottom:903.030000px;}
.y4e{bottom:916.530000px;}
.ye{bottom:920.310000px;}
.y4d{bottom:933.630000px;}
.yd{bottom:937.590000px;}
.y4c{bottom:950.910000px;}
.yc{bottom:954.870000px;}
.y4b{bottom:968.190000px;}
.y4a{bottom:985.470000px;}
.yb{bottom:989.250000px;}
.y49{bottom:1002.750000px;}
.ya{bottom:1006.530000px;}
.y48{bottom:1020.030000px;}
.y9{bottom:1023.810000px;}
.y47{bottom:1037.130000px;}
.y8{bottom:1041.090000px;}
.y46{bottom:1054.410000px;}
.y7{bottom:1058.370000px;}
.y45{bottom:1071.690000px;}
.y6{bottom:1075.650000px;}
.y44{bottom:1088.970000px;}
.y43{bottom:1106.250000px;}
.y5{bottom:1110.030000px;}
.y42{bottom:1123.350000px;}
.y4{bottom:1127.310000px;}
.y41{bottom:1140.630000px;}
.y3{bottom:1144.620000px;}
.y40{bottom:1157.940000px;}
.y2{bottom:1164.780000px;}
.y3f{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.h8{height:49.868086px;}
.h7{height:50.218242px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h9{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x4{left:124.055987px;}
.x10{left:136.115987px;}
.xa{left:169.949987px;}
.x2{left:277.994987px;}
.xd{left:286.634987px;}
.xb{left:397.514987px;}
.x5{left:409.034987px;}
.x7{left:414.074987px;}
.x11{left:457.304987px;}
.x3{left:461.444987px;}
.x12{left:487.004987px;}
.xf{left:537.944987px;}
.xe{left:673.889987px;}
.x8{left:697.649987px;}
.xc{left:702.689987px;}
.x6{left:719.249987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.259200pt;}
.ls16{letter-spacing:-0.157867pt;}
.ls20{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.051840pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.090240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.214400pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.688000pt;}
.ls18{letter-spacing:0.871040pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls9{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls8{letter-spacing:2.826667pt;}
.lsa{letter-spacing:3.360000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls22{letter-spacing:5.920000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls25{letter-spacing:8.480000pt;}
.ls23{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:12.960000pt;}
.lsb{letter-spacing:15.520000pt;}
.ls26{letter-spacing:20.000000pt;}
.ls1c{letter-spacing:23.200000pt;}
.ls24{letter-spacing:30.240000pt;}
.ls21{letter-spacing:40.480000pt;}
.ls1f{letter-spacing:43.680000pt;}
.ls4{letter-spacing:44.938667pt;}
.ls5{letter-spacing:44.960000pt;}
.ls27{letter-spacing:281.098667pt;}
.ls2{letter-spacing:1021.760000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws3{word-spacing:-13.968000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.494400pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.020800pt;}
.ws7{word-spacing:-12.688000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws9{word-spacing:0.000000pt;}
._3b{margin-left:-9.807360pt;}
._8{margin-left:-3.134080pt;}
._9{margin-left:-2.038400pt;}
._4{margin-left:-0.924373pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._6{width:3.452800pt;}
._23{width:4.355840pt;}
._d{width:5.251413pt;}
._a{width:6.403200pt;}
._5{width:7.383680pt;}
._c{width:8.605440pt;}
._16{width:9.933440pt;}
._1b{width:10.826027pt;}
._12{width:11.739520pt;}
._e{width:14.289280pt;}
._f{width:15.839147pt;}
._15{width:16.839040pt;}
._14{width:17.795200pt;}
._26{width:18.751360pt;}
._2b{width:19.760640pt;}
._17{width:20.663680pt;}
._10{width:21.957547pt;}
._2e{width:22.862933pt;}
._21{width:23.831893pt;}
._33{width:24.807040pt;}
._1a{width:25.710080pt;}
._1c{width:26.719360pt;}
._1f{width:27.994240pt;}
._20{width:29.109760pt;}
._2a{width:30.437760pt;}
._13{width:31.818880pt;}
._25{width:32.721920pt;}
._1e{width:33.837440pt;}
._19{width:34.952960pt;}
._30{width:36.174720pt;}
._11{width:37.237120pt;}
._2d{width:38.883840pt;}
._29{width:40.477440pt;}
._34{width:41.539840pt;}
._b{width:42.549120pt;}
._2f{width:43.877120pt;}
._7{width:45.145387pt;}
._27{width:46.873173pt;}
._22{width:48.286080pt;}
._1d{width:49.189120pt;}
._18{width:50.092160pt;}
._32{width:51.313920pt;}
._39{width:54.819840pt;}
._28{width:59.388160pt;}
._35{width:65.390720pt;}
._3a{width:67.249920pt;}
._36{width:68.152960pt;}
._37{width:76.758400pt;}
._38{width:77.873920pt;}
._3d{width:91.930240pt;}
._3c{width:98.803200pt;}
._24{width:104.965120pt;}
._31{width:180.714240pt;}
._3e{width:754.858667pt;}
._3{width:1063.150507pt;}
._2c{width:1163.345707pt;}
._2{width:1189.585707pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:78.560000pt;}
.y3e{bottom:81.920000pt;}
.y7d{bottom:93.920000pt;}
.y3d{bottom:97.280000pt;}
.y7c{bottom:109.280000pt;}
.y3c{bottom:112.640000pt;}
.y7b{bottom:124.512000pt;}
.y3b{bottom:128.032000pt;}
.y7a{bottom:139.866667pt;}
.y3a{bottom:143.386667pt;}
.y79{bottom:155.226667pt;}
.y39{bottom:158.746667pt;}
.y78{bottom:170.586667pt;}
.y38{bottom:173.946667pt;}
.y77{bottom:185.946667pt;}
.y37{bottom:189.306667pt;}
.y76{bottom:201.306667pt;}
.y36{bottom:204.666667pt;}
.y75{bottom:216.506667pt;}
.y35{bottom:220.026667pt;}
.y74{bottom:231.866667pt;}
.y34{bottom:235.386667pt;}
.y73{bottom:247.226667pt;}
.y33{bottom:250.746667pt;}
.y72{bottom:262.586667pt;}
.y32{bottom:265.946667pt;}
.y71{bottom:277.946667pt;}
.y31{bottom:281.306667pt;}
.y70{bottom:293.306667pt;}
.y30{bottom:296.666667pt;}
.y6f{bottom:308.506667pt;}
.y2f{bottom:312.026667pt;}
.y6e{bottom:323.866667pt;}
.y2e{bottom:327.386667pt;}
.y6d{bottom:339.226667pt;}
.y2d{bottom:342.746667pt;}
.y6c{bottom:354.626667pt;}
.y2c{bottom:357.986667pt;}
.y6b{bottom:369.986667pt;}
.y2b{bottom:373.346667pt;}
.y6a{bottom:385.186667pt;}
.y2a{bottom:388.706667pt;}
.y69{bottom:400.546667pt;}
.y29{bottom:404.066667pt;}
.y68{bottom:415.906667pt;}
.y28{bottom:419.426667pt;}
.y67{bottom:431.266667pt;}
.y27{bottom:434.626667pt;}
.y66{bottom:446.626667pt;}
.y26{bottom:449.986667pt;}
.y65{bottom:461.986667pt;}
.y25{bottom:465.346667pt;}
.y64{bottom:477.186667pt;}
.y24{bottom:480.706667pt;}
.y63{bottom:492.546667pt;}
.y23{bottom:496.066667pt;}
.y62{bottom:507.906667pt;}
.y22{bottom:511.426667pt;}
.y61{bottom:523.266667pt;}
.y21{bottom:526.626667pt;}
.y60{bottom:538.626667pt;}
.y20{bottom:541.986667pt;}
.y5f{bottom:553.986667pt;}
.y1f{bottom:557.346667pt;}
.y5e{bottom:569.213333pt;}
.y1e{bottom:572.733333pt;}
.y5d{bottom:584.573333pt;}
.y1d{bottom:588.093333pt;}
.y5c{bottom:599.933333pt;}
.y1c{bottom:603.453333pt;}
.y5b{bottom:615.293333pt;}
.y1b{bottom:618.653333pt;}
.y5a{bottom:630.653333pt;}
.y1a{bottom:634.013333pt;}
.y59{bottom:645.853333pt;}
.y19{bottom:649.373333pt;}
.y58{bottom:661.213333pt;}
.y18{bottom:664.733333pt;}
.y57{bottom:676.573333pt;}
.y17{bottom:680.093333pt;}
.y56{bottom:691.933333pt;}
.y16{bottom:695.293333pt;}
.y55{bottom:707.293333pt;}
.y15{bottom:710.653333pt;}
.y54{bottom:722.653333pt;}
.y14{bottom:726.013333pt;}
.y53{bottom:737.853333pt;}
.y13{bottom:741.373333pt;}
.y52{bottom:753.213333pt;}
.y12{bottom:756.733333pt;}
.y51{bottom:768.573333pt;}
.y11{bottom:772.093333pt;}
.y50{bottom:783.933333pt;}
.y10{bottom:787.293333pt;}
.y4f{bottom:799.333333pt;}
.yf{bottom:802.693333pt;}
.y4e{bottom:814.693333pt;}
.ye{bottom:818.053333pt;}
.y4d{bottom:829.893333pt;}
.yd{bottom:833.413333pt;}
.y4c{bottom:845.253333pt;}
.yc{bottom:848.773333pt;}
.y4b{bottom:860.613333pt;}
.y4a{bottom:875.973333pt;}
.yb{bottom:879.333333pt;}
.y49{bottom:891.333333pt;}
.ya{bottom:894.693333pt;}
.y48{bottom:906.693333pt;}
.y9{bottom:910.053333pt;}
.y47{bottom:921.893333pt;}
.y8{bottom:925.413333pt;}
.y46{bottom:937.253333pt;}
.y7{bottom:940.773333pt;}
.y45{bottom:952.613333pt;}
.y6{bottom:956.133333pt;}
.y44{bottom:967.973333pt;}
.y43{bottom:983.333333pt;}
.y5{bottom:986.693333pt;}
.y42{bottom:998.533333pt;}
.y4{bottom:1002.053333pt;}
.y41{bottom:1013.893333pt;}
.y3{bottom:1017.440000pt;}
.y40{bottom:1029.280000pt;}
.y2{bottom:1035.360000pt;}
.y3f{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.h8{height:44.327188pt;}
.h7{height:44.638438pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h9{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x4{left:110.271988pt;}
.x10{left:120.991988pt;}
.xa{left:151.066655pt;}
.x2{left:247.106655pt;}
.xd{left:254.786655pt;}
.xb{left:353.346655pt;}
.x5{left:363.586655pt;}
.x7{left:368.066655pt;}
.x11{left:406.493322pt;}
.x3{left:410.173322pt;}
.x12{left:432.893322pt;}
.xf{left:478.173322pt;}
.xe{left:599.013322pt;}
.x8{left:620.133322pt;}
.xc{left:624.613322pt;}
.x6{left:639.333322pt;}
.x9{left:699.333322pt;}
}




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