
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e5fdab8033bce07cb6004c72.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_c0b13e427e689270bb89ea05.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75c62d6fc5c2ef046a86b2be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ba3a66399de32e4b814ac1d2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8434d9ce7d286f204fb8b22c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_b435cdcdeae6599b6da1e600.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_6ea00ed880198ca987cfe1cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_3af9b34ca08aa8278b4780a2.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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);}
.v4{vertical-align:-63.480000px;}
.v2{vertical-align:-60.480000px;}
.v3{vertical-align:-59.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.458000px;}
.ls18{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.020160px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.200160px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.lse{letter-spacing:6.226560px;}
.lsc{letter-spacing:10.800000px;}
.ls17{letter-spacing:16.306560px;}
.ls3{letter-spacing:16.560000px;}
.ls10{letter-spacing:23.506560px;}
.ls14{letter-spacing:46.546560px;}
.lsf{letter-spacing:318.036000px;}
.ls11{letter-spacing:319.476000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws8{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.099840px;}
.ws9{word-spacing:-14.653200px;}
.ws4{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.662000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-3.478560px;}
._4{margin-left:-2.365440px;}
._3{margin-left:-1.085280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.478400px;}
._c{width:5.868000px;}
._d{width:7.189440px;}
._13{width:8.355360px;}
._f{width:9.371040px;}
._9{width:10.988640px;}
._8{width:12.202560px;}
._e{width:13.676640px;}
._6{width:15.622080px;}
._5{width:17.278080px;}
._b{width:18.659520px;}
._a{width:20.359200px;}
._14{width:21.751680px;}
._15{width:23.895840px;}
._16{width:25.158240px;}
._12{width:27.604800px;}
._10{width:29.690400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y9e{bottom:-4.695000px;}
.yb6{bottom:-4.680000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.600000px;}
.y9d{bottom:3.945000px;}
.y56{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y99{bottom:12.240000px;}
.y49{bottom:14.035500px;}
.y9a{bottom:20.880000px;}
.y55{bottom:21.235500px;}
.y4{bottom:21.240000px;}
.y48{bottom:21.595500px;}
.y3f{bottom:38.520000px;}
.y54{bottom:38.554500px;}
.y3{bottom:44.280000px;}
.y47{bottom:51.154500px;}
.y3e{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y53{bottom:60.154500px;}
.y46{bottom:63.394500px;}
.y3d{bottom:73.080000px;}
.y45{bottom:76.354500px;}
.y52{bottom:78.874500px;}
.y44{bottom:89.314500px;}
.y3c{bottom:90.405000px;}
.y51{bottom:94.714500px;}
.y57{bottom:99.036000px;}
.yc8{bottom:102.996000px;}
.y91{bottom:103.356000px;}
.y3b{bottom:107.685000px;}
.y50{bottom:110.554500px;}
.y43{bottom:110.914500px;}
.y40{bottom:113.080500px;}
.y4f{bottom:119.554500px;}
.yc7{bottom:120.276000px;}
.y90{bottom:120.636000px;}
.y3a{bottom:124.965000px;}
.y8f{bottom:137.916000px;}
.y4e{bottom:138.634500px;}
.y39{bottom:141.885000px;}
.yc6{bottom:146.592000px;}
.y4d{bottom:154.114500px;}
.y8e{bottom:155.235000px;}
.y38{bottom:158.805000px;}
.yc5{bottom:163.875000px;}
.y4c{bottom:169.624500px;}
.y8d{bottom:172.155000px;}
.y42{bottom:173.224500px;}
.yc4{bottom:181.155000px;}
.y41{bottom:184.024500px;}
.y4b{bottom:185.104500px;}
.y37{bottom:185.445000px;}
.yc3{bottom:198.435000px;}
.y8c{bottom:198.795000px;}
.y4a{bottom:200.224500px;}
.y36{bottom:202.725000px;}
.yc2{bottom:215.355000px;}
.y8b{bottom:216.075000px;}
.y35{bottom:220.035000px;}
.y8a{bottom:233.355000px;}
.y34{bottom:237.315000px;}
.yc1{bottom:241.995000px;}
.y89{bottom:250.275000px;}
.y33{bottom:254.595000px;}
.yc0{bottom:259.275000px;}
.y88{bottom:267.555000px;}
.y32{bottom:271.875000px;}
.y1f{bottom:281.235000px;}
.y87{bottom:284.505000px;}
.ybf{bottom:285.585000px;}
.y31{bottom:289.155000px;}
.ybe{bottom:302.865000px;}
.y1e{bottom:305.355000px;}
.y30{bottom:306.435000px;}
.y86{bottom:311.145000px;}
.ybd{bottom:320.145000px;}
.y2f{bottom:323.715000px;}
.y11{bottom:326.625000px;}
.y85{bottom:328.425000px;}
.y1d{bottom:329.475000px;}
.ybc{bottom:337.425000px;}
.y2e{bottom:340.995000px;}
.y84{bottom:345.345000px;}
.y1c{bottom:353.985000px;}
.ybb{bottom:355.425000px;}
.y2d{bottom:357.945000px;}
.y83{bottom:371.985000px;}
.yba{bottom:373.785000px;}
.y2c{bottom:375.225000px;}
.y1b{bottom:378.105000px;}
.y82{bottom:389.265000px;}
.yb9{bottom:392.145000px;}
.y2b{bottom:392.505000px;}
.y1a{bottom:402.225000px;}
.y81{bottom:406.230000px;}
.y2a{bottom:409.425000px;}
.yb8{bottom:410.190000px;}
.y19{bottom:426.345000px;}
.y29{bottom:426.705000px;}
.y80{bottom:432.870000px;}
.yb7{bottom:433.590000px;}
.y7f{bottom:450.150000px;}
.y18{bottom:450.465000px;}
.yb5{bottom:451.590000px;}
.y28{bottom:452.625000px;}
.y7e{bottom:467.430000px;}
.y27{bottom:468.105000px;}
.yb4{bottom:469.590000px;}
.y17{bottom:474.630000px;}
.y26{bottom:483.630000px;}
.y7d{bottom:484.350000px;}
.yd0{bottom:493.350000px;}
.y16{bottom:498.750000px;}
.y25{bottom:499.470000px;}
.y7c{bottom:501.630000px;}
.yb3{bottom:508.470000px;}
.ycf{bottom:510.630000px;}
.y24{bottom:514.950000px;}
.y7b{bottom:518.550000px;}
.y15{bottom:522.870000px;}
.yce{bottom:527.910000px;}
.y23{bottom:530.430000px;}
.yb2{bottom:541.620000px;}
.y7a{bottom:545.220000px;}
.y22{bottom:545.910000px;}
.y14{bottom:546.990000px;}
.yb1{bottom:552.060000px;}
.y21{bottom:561.390000px;}
.y79{bottom:562.500000px;}
.yb0{bottom:569.340000px;}
.y13{bottom:571.110000px;}
.y78{bottom:579.780000px;}
.yaf{bottom:586.260000px;}
.y20{bottom:591.990000px;}
.y12{bottom:595.230000px;}
.y77{bottom:597.060000px;}
.yae{bottom:602.100000px;}
.yad{bottom:612.540000px;}
.y76{bottom:614.340000px;}
.yac{bottom:629.460000px;}
.y75{bottom:631.620000px;}
.yab{bottom:646.740000px;}
.y74{bottom:648.900000px;}
.yaa{bottom:664.020000px;}
.y73{bottom:666.180000px;}
.ya9{bottom:680.970000px;}
.y72{bottom:683.130000px;}
.y71{bottom:700.410000px;}
.ya8{bottom:707.610000px;}
.y70{bottom:717.690000px;}
.ya7{bottom:724.890000px;}
.y6f{bottom:734.970000px;}
.ya6{bottom:751.170000px;}
.y6e{bottom:752.250000px;}
.ya5{bottom:768.450000px;}
.y6d{bottom:769.530000px;}
.ya4{bottom:785.730000px;}
.y6c{bottom:786.810000px;}
.ya3{bottom:803.055000px;}
.y6b{bottom:804.135000px;}
.y6a{bottom:821.415000px;}
.y69{bottom:838.695000px;}
.ya2{bottom:839.415000px;}
.y68{bottom:855.975000px;}
.ya1{bottom:857.775000px;}
.y67{bottom:873.255000px;}
.ya0{bottom:876.135000px;}
.y66{bottom:890.175000px;}
.y9f{bottom:899.190000px;}
.y65{bottom:907.455000px;}
.y9c{bottom:917.190000px;}
.ycd{bottom:924.375000px;}
.y64{bottom:924.735000px;}
.y10{bottom:934.125000px;}
.y98{bottom:935.205000px;}
.yf{bottom:939.525000px;}
.y63{bottom:942.045000px;}
.ycc{bottom:951.045000px;}
.ye{bottom:956.805000px;}
.y62{bottom:959.325000px;}
.ycb{bottom:968.325000px;}
.y97{bottom:971.925000px;}
.yd{bottom:974.085000px;}
.y61{bottom:976.245000px;}
.yca{bottom:985.605000px;}
.yc{bottom:991.365000px;}
.y96{bottom:994.245000px;}
.y95{bottom:1002.165000px;}
.y60{bottom:1002.885000px;}
.yb{bottom:1008.285000px;}
.y94{bottom:1019.445000px;}
.y5f{bottom:1020.165000px;}
.ya{bottom:1035.645000px;}
.y93{bottom:1036.365000px;}
.y5e{bottom:1037.445000px;}
.y5d{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y92{bottom:1062.645000px;}
.y5c{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.yc9{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h16{height:5.650313px;}
.h1f{height:17.265000px;}
.h1e{height:17.280000px;}
.h1b{height:18.372656px;}
.h1c{height:18.866250px;}
.h7{height:24.348516px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.h1d{height:34.545000px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h12{height:42.229688px;}
.h10{height:53.677969px;}
.h15{height:55.147500px;}
.h8{height:58.050000px;}
.h17{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.h11{height:60.952500px;}
.h1a{height:62.163910px;}
.h19{height:63.455625px;}
.hb{height:65.518594px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h13{height:212.805000px;}
.hd{height:604.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:56.865000px;}
.w11{width:57.225000px;}
.w9{width:57.240000px;}
.wb{width:64.785000px;}
.wf{width:64.800000px;}
.w10{width:89.670000px;}
.wc{width:98.685000px;}
.w2{width:103.702500px;}
.wa{width:130.032000px;}
.w4{width:132.502500px;}
.w8{width:149.832000px;}
.w6{width:163.080000px;}
.w7{width:176.805000px;}
.we{width:185.445000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x15{left:8.295000px;}
.x21{left:11.880000px;}
.x4{left:13.305000px;}
.x13{left:16.546500px;}
.x18{left:18.346500px;}
.x5{left:19.425000px;}
.x29{left:20.520000px;}
.x34{left:21.960000px;}
.x35{left:25.200000px;}
.x27{left:26.655000px;}
.x12{left:29.146500px;}
.x25{left:30.225000px;}
.x37{left:41.040000px;}
.x6{left:43.575000px;}
.x2b{left:45.735000px;}
.x19{left:47.542500px;}
.xd{left:50.782500px;}
.xc{left:55.102500px;}
.x1b{left:57.262500px;}
.x2a{left:58.365000px;}
.x2c{left:59.445000px;}
.x16{left:62.295000px;}
.x36{left:63.382500px;}
.x1a{left:66.265500px;}
.x1f{left:68.062500px;}
.x2e{left:72.025500px;}
.x10{left:73.105500px;}
.xf{left:76.705500px;}
.x1{left:78.529500px;}
.x11{left:80.305500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1c{left:102.985500px;}
.x17{left:106.945500px;}
.x38{left:113.436000px;}
.xe{left:124.585500px;}
.x1d{left:140.472000px;}
.x3{left:182.250000px;}
.x14{left:218.970000px;}
.x20{left:255.705000px;}
.x2f{left:264.345000px;}
.xa{left:404.460000px;}
.x22{left:405.900000px;}
.x30{left:414.540000px;}
.x2d{left:446.580000px;}
.x23{left:463.500000px;}
.x31{left:472.140000px;}
.x24{left:593.910000px;}
.x32{left:602.550000px;}
.x26{left:659.070000px;}
.x33{left:667.725000px;}
.x28{left:758.130000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xb{left:807.090000px;}
@media print{
.v4{vertical-align:-56.426667pt;}
.v2{vertical-align:-53.760000pt;}
.v3{vertical-align:-52.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.296000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.177920pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.lse{letter-spacing:5.534720pt;}
.lsc{letter-spacing:9.600000pt;}
.ls17{letter-spacing:14.494720pt;}
.ls3{letter-spacing:14.720000pt;}
.ls10{letter-spacing:20.894720pt;}
.ls14{letter-spacing:41.374720pt;}
.lsf{letter-spacing:282.698667pt;}
.ls11{letter-spacing:283.978667pt;}
.wsa{word-spacing:-53.760000pt;}
.ws8{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.422080pt;}
.ws9{word-spacing:-13.025067pt;}
.ws4{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.144000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-3.092053pt;}
._4{margin-left:-2.102613pt;}
._3{margin-left:-0.964693pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:3.980800pt;}
._c{width:5.216000pt;}
._d{width:6.390613pt;}
._13{width:7.426987pt;}
._f{width:8.329813pt;}
._9{width:9.767680pt;}
._8{width:10.846720pt;}
._e{width:12.157013pt;}
._6{width:13.886293pt;}
._5{width:15.358293pt;}
._b{width:16.586240pt;}
._a{width:18.097067pt;}
._14{width:19.334827pt;}
._15{width:21.240747pt;}
._16{width:22.362880pt;}
._12{width:24.537600pt;}
._10{width:26.391467pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y9e{bottom:-4.173333pt;}
.yb6{bottom:-4.160000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:3.200000pt;}
.y9d{bottom:3.506667pt;}
.y56{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y99{bottom:10.880000pt;}
.y49{bottom:12.476000pt;}
.y9a{bottom:18.560000pt;}
.y55{bottom:18.876000pt;}
.y4{bottom:18.880000pt;}
.y48{bottom:19.196000pt;}
.y3f{bottom:34.240000pt;}
.y54{bottom:34.270667pt;}
.y3{bottom:39.360000pt;}
.y47{bottom:45.470667pt;}
.y3e{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:53.470667pt;}
.y46{bottom:56.350667pt;}
.y3d{bottom:64.960000pt;}
.y45{bottom:67.870667pt;}
.y52{bottom:70.110667pt;}
.y44{bottom:79.390667pt;}
.y3c{bottom:80.360000pt;}
.y51{bottom:84.190667pt;}
.y57{bottom:88.032000pt;}
.yc8{bottom:91.552000pt;}
.y91{bottom:91.872000pt;}
.y3b{bottom:95.720000pt;}
.y50{bottom:98.270667pt;}
.y43{bottom:98.590667pt;}
.y40{bottom:100.516000pt;}
.y4f{bottom:106.270667pt;}
.yc7{bottom:106.912000pt;}
.y90{bottom:107.232000pt;}
.y3a{bottom:111.080000pt;}
.y8f{bottom:122.592000pt;}
.y4e{bottom:123.230667pt;}
.y39{bottom:126.120000pt;}
.yc6{bottom:130.304000pt;}
.y4d{bottom:136.990667pt;}
.y8e{bottom:137.986667pt;}
.y38{bottom:141.160000pt;}
.yc5{bottom:145.666667pt;}
.y4c{bottom:150.777333pt;}
.y8d{bottom:153.026667pt;}
.y42{bottom:153.977333pt;}
.yc4{bottom:161.026667pt;}
.y41{bottom:163.577333pt;}
.y4b{bottom:164.537333pt;}
.y37{bottom:164.840000pt;}
.yc3{bottom:176.386667pt;}
.y8c{bottom:176.706667pt;}
.y4a{bottom:177.977333pt;}
.y36{bottom:180.200000pt;}
.yc2{bottom:191.426667pt;}
.y8b{bottom:192.066667pt;}
.y35{bottom:195.586667pt;}
.y8a{bottom:207.426667pt;}
.y34{bottom:210.946667pt;}
.yc1{bottom:215.106667pt;}
.y89{bottom:222.466667pt;}
.y33{bottom:226.306667pt;}
.yc0{bottom:230.466667pt;}
.y88{bottom:237.826667pt;}
.y32{bottom:241.666667pt;}
.y1f{bottom:249.986667pt;}
.y87{bottom:252.893333pt;}
.ybf{bottom:253.853333pt;}
.y31{bottom:257.026667pt;}
.ybe{bottom:269.213333pt;}
.y1e{bottom:271.426667pt;}
.y30{bottom:272.386667pt;}
.y86{bottom:276.573333pt;}
.ybd{bottom:284.573333pt;}
.y2f{bottom:287.746667pt;}
.y11{bottom:290.333333pt;}
.y85{bottom:291.933333pt;}
.y1d{bottom:292.866667pt;}
.ybc{bottom:299.933333pt;}
.y2e{bottom:303.106667pt;}
.y84{bottom:306.973333pt;}
.y1c{bottom:314.653333pt;}
.ybb{bottom:315.933333pt;}
.y2d{bottom:318.173333pt;}
.y83{bottom:330.653333pt;}
.yba{bottom:332.253333pt;}
.y2c{bottom:333.533333pt;}
.y1b{bottom:336.093333pt;}
.y82{bottom:346.013333pt;}
.yb9{bottom:348.573333pt;}
.y2b{bottom:348.893333pt;}
.y1a{bottom:357.533333pt;}
.y81{bottom:361.093333pt;}
.y2a{bottom:363.933333pt;}
.yb8{bottom:364.613333pt;}
.y19{bottom:378.973333pt;}
.y29{bottom:379.293333pt;}
.y80{bottom:384.773333pt;}
.yb7{bottom:385.413333pt;}
.y7f{bottom:400.133333pt;}
.y18{bottom:400.413333pt;}
.yb5{bottom:401.413333pt;}
.y28{bottom:402.333333pt;}
.y7e{bottom:415.493333pt;}
.y27{bottom:416.093333pt;}
.yb4{bottom:417.413333pt;}
.y17{bottom:421.893333pt;}
.y26{bottom:429.893333pt;}
.y7d{bottom:430.533333pt;}
.yd0{bottom:438.533333pt;}
.y16{bottom:443.333333pt;}
.y25{bottom:443.973333pt;}
.y7c{bottom:445.893333pt;}
.yb3{bottom:451.973333pt;}
.ycf{bottom:453.893333pt;}
.y24{bottom:457.733333pt;}
.y7b{bottom:460.933333pt;}
.y15{bottom:464.773333pt;}
.yce{bottom:469.253333pt;}
.y23{bottom:471.493333pt;}
.yb2{bottom:481.440000pt;}
.y7a{bottom:484.640000pt;}
.y22{bottom:485.253333pt;}
.y14{bottom:486.213333pt;}
.yb1{bottom:490.720000pt;}
.y21{bottom:499.013333pt;}
.y79{bottom:500.000000pt;}
.yb0{bottom:506.080000pt;}
.y13{bottom:507.653333pt;}
.y78{bottom:515.360000pt;}
.yaf{bottom:521.120000pt;}
.y20{bottom:526.213333pt;}
.y12{bottom:529.093333pt;}
.y77{bottom:530.720000pt;}
.yae{bottom:535.200000pt;}
.yad{bottom:544.480000pt;}
.y76{bottom:546.080000pt;}
.yac{bottom:559.520000pt;}
.y75{bottom:561.440000pt;}
.yab{bottom:574.880000pt;}
.y74{bottom:576.800000pt;}
.yaa{bottom:590.240000pt;}
.y73{bottom:592.160000pt;}
.ya9{bottom:605.306667pt;}
.y72{bottom:607.226667pt;}
.y71{bottom:622.586667pt;}
.ya8{bottom:628.986667pt;}
.y70{bottom:637.946667pt;}
.ya7{bottom:644.346667pt;}
.y6f{bottom:653.306667pt;}
.ya6{bottom:667.706667pt;}
.y6e{bottom:668.666667pt;}
.ya5{bottom:683.066667pt;}
.y6d{bottom:684.026667pt;}
.ya4{bottom:698.426667pt;}
.y6c{bottom:699.386667pt;}
.ya3{bottom:713.826667pt;}
.y6b{bottom:714.786667pt;}
.y6a{bottom:730.146667pt;}
.y69{bottom:745.506667pt;}
.ya2{bottom:746.146667pt;}
.y68{bottom:760.866667pt;}
.ya1{bottom:762.466667pt;}
.y67{bottom:776.226667pt;}
.ya0{bottom:778.786667pt;}
.y66{bottom:791.266667pt;}
.y9f{bottom:799.280000pt;}
.y65{bottom:806.626667pt;}
.y9c{bottom:815.280000pt;}
.ycd{bottom:821.666667pt;}
.y64{bottom:821.986667pt;}
.y10{bottom:830.333333pt;}
.y98{bottom:831.293333pt;}
.yf{bottom:835.133333pt;}
.y63{bottom:837.373333pt;}
.ycc{bottom:845.373333pt;}
.ye{bottom:850.493333pt;}
.y62{bottom:852.733333pt;}
.ycb{bottom:860.733333pt;}
.y97{bottom:863.933333pt;}
.yd{bottom:865.853333pt;}
.y61{bottom:867.773333pt;}
.yca{bottom:876.093333pt;}
.yc{bottom:881.213333pt;}
.y96{bottom:883.773333pt;}
.y95{bottom:890.813333pt;}
.y60{bottom:891.453333pt;}
.yb{bottom:896.253333pt;}
.y94{bottom:906.173333pt;}
.y5f{bottom:906.813333pt;}
.ya{bottom:920.573333pt;}
.y93{bottom:921.213333pt;}
.y5e{bottom:922.173333pt;}
.y5d{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y92{bottom:944.573333pt;}
.y5c{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.yc9{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h16{height:5.022500pt;}
.h1f{height:15.346667pt;}
.h1e{height:15.360000pt;}
.h1b{height:16.331250pt;}
.h1c{height:16.770000pt;}
.h7{height:21.643125pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.h1d{height:30.706667pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h12{height:37.537500pt;}
.h10{height:47.713750pt;}
.h15{height:49.020000pt;}
.h8{height:51.600000pt;}
.h17{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.h11{height:54.180000pt;}
.h1a{height:55.256809pt;}
.h19{height:56.405000pt;}
.hb{height:58.238750pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h13{height:189.160000pt;}
.hd{height:537.413333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:50.546667pt;}
.w11{width:50.866667pt;}
.w9{width:50.880000pt;}
.wb{width:57.586667pt;}
.wf{width:57.600000pt;}
.w10{width:79.706667pt;}
.wc{width:87.720000pt;}
.w2{width:92.180000pt;}
.wa{width:115.584000pt;}
.w4{width:117.780000pt;}
.w8{width:133.184000pt;}
.w6{width:144.960000pt;}
.w7{width:157.160000pt;}
.we{width:164.840000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x15{left:7.373333pt;}
.x21{left:10.560000pt;}
.x4{left:11.826667pt;}
.x13{left:14.708000pt;}
.x18{left:16.308000pt;}
.x5{left:17.266667pt;}
.x29{left:18.240000pt;}
.x34{left:19.520000pt;}
.x35{left:22.400000pt;}
.x27{left:23.693333pt;}
.x12{left:25.908000pt;}
.x25{left:26.866667pt;}
.x37{left:36.480000pt;}
.x6{left:38.733333pt;}
.x2b{left:40.653333pt;}
.x19{left:42.260000pt;}
.xd{left:45.140000pt;}
.xc{left:48.980000pt;}
.x1b{left:50.900000pt;}
.x2a{left:51.880000pt;}
.x2c{left:52.840000pt;}
.x16{left:55.373333pt;}
.x36{left:56.340000pt;}
.x1a{left:58.902667pt;}
.x1f{left:60.500000pt;}
.x2e{left:64.022667pt;}
.x10{left:64.982667pt;}
.xf{left:68.182667pt;}
.x1{left:69.804000pt;}
.x11{left:71.382667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1c{left:91.542667pt;}
.x17{left:95.062667pt;}
.x38{left:100.832000pt;}
.xe{left:110.742667pt;}
.x1d{left:124.864000pt;}
.x3{left:162.000000pt;}
.x14{left:194.640000pt;}
.x20{left:227.293333pt;}
.x2f{left:234.973333pt;}
.xa{left:359.520000pt;}
.x22{left:360.800000pt;}
.x30{left:368.480000pt;}
.x2d{left:396.960000pt;}
.x23{left:412.000000pt;}
.x31{left:419.680000pt;}
.x24{left:527.920000pt;}
.x32{left:535.600000pt;}
.x26{left:585.840000pt;}
.x33{left:593.533333pt;}
.x28{left:673.893333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xb{left:717.413333pt;}
}




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