
    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_f52fb37076d1fef5babbcbd2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_faf414449c13738b629751fa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_031c10bddb00cb7129d3a669.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ecfbdf2d1fa76d68f997192e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c37289c29d148d1f59eb7021.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_6fac2809dd54df04a45c6a7e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3ad1732aee6cc3a01fe7ff4b.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsa{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.900000px;}
.ls9{letter-spacing:3.780000px;}
.ls6{letter-spacing:5.220000px;}
.lsc{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._4{width:3.348000px;}
._3{width:4.374000px;}
._8{width:5.986320px;}
._a{width:7.006560px;}
._9{width:8.007840px;}
._5{width:9.612000px;}
._6{width:10.613520px;}
._7{width:12.477840px;}
._b{width:13.685040px;}
._19{width:14.850000px;}
._15{width:16.308000px;}
._11{width:17.348400px;}
._e{width:18.689040px;}
._d{width:20.034000px;}
._16{width:21.567840px;}
._18{width:23.490000px;}
._1a{width:24.678000px;}
._c{width:26.838000px;}
._14{width:28.728000px;}
._17{width:30.610320px;}
._10{width:32.081040px;}
._f{width:33.102000px;}
._1b{width:34.398000px;}
._1c{width:35.472000px;}
._12{width:37.530000px;}
._1f{width:38.982000px;}
._13{width:51.894000px;}
._20{width:62.046000px;}
._1e{width:194.130000px;}
._1d{width:443.880000px;}
._21{width:891.594000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y2c{bottom:-7.665000px;}
.y29{bottom:-7.305000px;}
.y3c{bottom:-4.650000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y27{bottom:4.035000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y1f{bottom:6.765000px;}
.y42{bottom:6.990000px;}
.y1b{bottom:15.765000px;}
.y8{bottom:22.500000px;}
.y1e{bottom:26.205000px;}
.y7{bottom:41.040000px;}
.y3a{bottom:43.950000px;}
.y6{bottom:56.880000px;}
.y39{bottom:63.930000px;}
.y17{bottom:82.260000px;}
.ya3{bottom:82.620000px;}
.y38{bottom:83.730000px;}
.y71{bottom:85.500000px;}
.y16{bottom:100.260000px;}
.ya2{bottom:100.440000px;}
.y37{bottom:103.530000px;}
.y70{bottom:109.260000px;}
.y15{bottom:118.080000px;}
.ya1{bottom:118.260000px;}
.y36{bottom:123.330000px;}
.y21{bottom:127.365000px;}
.y14{bottom:135.900000px;}
.ya0{bottom:136.080000px;}
.y35{bottom:143.130000px;}
.y19{bottom:144.870000px;}
.y13{bottom:153.720000px;}
.y9f{bottom:153.900000px;}
.y34{bottom:163.110000px;}
.y9e{bottom:171.900000px;}
.y12{bottom:173.520000px;}
.y33{bottom:182.910000px;}
.y9d{bottom:189.720000px;}
.y32{bottom:202.710000px;}
.y9c{bottom:207.570000px;}
.y11{bottom:209.190000px;}
.yd6{bottom:216.390000px;}
.y31{bottom:222.555000px;}
.y9b{bottom:225.390000px;}
.y2e{bottom:226.980000px;}
.yd5{bottom:234.390000px;}
.y30{bottom:242.355000px;}
.y9a{bottom:243.210000px;}
.y3b{bottom:251.130000px;}
.y99{bottom:261.030000px;}
.y2f{bottom:262.335000px;}
.yd4{bottom:263.190000px;}
.y98{bottom:279.030000px;}
.yd3{bottom:290.010000px;}
.y97{bottom:296.850000px;}
.y96{bottom:314.670000px;}
.yd2{bottom:316.830000px;}
.y95{bottom:332.490000px;}
.yd1{bottom:334.650000px;}
.y94{bottom:350.310000px;}
.y6f{bottom:351.390000px;}
.yd0{bottom:352.470000px;}
.y6e{bottom:369.210000px;}
.ycf{bottom:370.290000px;}
.y93{bottom:377.310000px;}
.y6d{bottom:387.210000px;}
.yce{bottom:388.290000px;}
.y92{bottom:395.130000px;}
.y6c{bottom:405.030000px;}
.ycd{bottom:406.110000px;}
.y91{bottom:412.950000px;}
.y6b{bottom:422.850000px;}
.ycc{bottom:423.930000px;}
.y90{bottom:430.770000px;}
.ycb{bottom:441.795000px;}
.y8f{bottom:448.635000px;}
.y6a{bottom:449.355000px;}
.yca{bottom:459.615000px;}
.y8e{bottom:466.455000px;}
.y69{bottom:467.535000px;}
.yc9{bottom:477.435000px;}
.y8d{bottom:484.455000px;}
.y68{bottom:485.535000px;}
.yc8{bottom:495.435000px;}
.y8c{bottom:502.275000px;}
.y67{bottom:503.355000px;}
.y2d{bottom:509.115000px;}
.yc7{bottom:513.255000px;}
.y8b{bottom:520.095000px;}
.y66{bottom:521.175000px;}
.yc6{bottom:531.075000px;}
.y8a{bottom:537.915000px;}
.y65{bottom:538.995000px;}
.y10{bottom:544.755000px;}
.yc5{bottom:548.895000px;}
.y89{bottom:555.735000px;}
.y64{bottom:556.815000px;}
.yc4{bottom:566.715000px;}
.y88{bottom:573.735000px;}
.y63{bottom:574.635000px;}
.yc3{bottom:584.715000px;}
.yf{bottom:585.975000px;}
.y87{bottom:591.555000px;}
.y62{bottom:592.635000px;}
.ye{bottom:601.815000px;}
.yc2{bottom:602.535000px;}
.y2b{bottom:608.040000px;}
.y86{bottom:609.375000px;}
.y61{bottom:610.455000px;}
.yc1{bottom:620.355000px;}
.y85{bottom:627.195000px;}
.y2a{bottom:628.275000px;}
.yc0{bottom:638.175000px;}
.y84{bottom:645.015000px;}
.y60{bottom:646.095000px;}
.ybf{bottom:655.995000px;}
.yd{bottom:657.975000px;}
.y83{bottom:662.835000px;}
.y28{bottom:663.840000px;}
.y5f{bottom:663.915000px;}
.y20{bottom:671.580000px;}
.ybe{bottom:673.815000px;}
.y82{bottom:680.865000px;}
.y5e{bottom:681.945000px;}
.ybd{bottom:691.845000px;}
.y81{bottom:698.685000px;}
.y5d{bottom:699.765000px;}
.y26{bottom:702.105000px;}
.ybc{bottom:709.665000px;}
.y80{bottom:716.505000px;}
.y5c{bottom:717.585000px;}
.y25{bottom:722.625000px;}
.ybb{bottom:727.485000px;}
.y7f{bottom:734.325000px;}
.y5b{bottom:735.405000px;}
.yba{bottom:745.305000px;}
.y24{bottom:749.085000px;}
.y7e{bottom:752.145000px;}
.y5a{bottom:753.225000px;}
.yb9{bottom:763.125000px;}
.y23{bottom:769.605000px;}
.y7d{bottom:770.145000px;}
.y59{bottom:771.045000px;}
.yb8{bottom:781.125000px;}
.y7c{bottom:787.965000px;}
.y58{bottom:791.025000px;}
.y22{bottom:796.065000px;}
.yb7{bottom:798.945000px;}
.y7b{bottom:814.785000px;}
.yb6{bottom:816.765000px;}
.yc{bottom:818.205000px;}
.y57{bottom:823.785000px;}
.y1d{bottom:824.040000px;}
.y7a{bottom:832.605000px;}
.yb5{bottom:834.585000px;}
.y56{bottom:841.605000px;}
.y79{bottom:850.425000px;}
.yb4{bottom:852.405000px;}
.y55{bottom:859.425000px;}
.y78{bottom:868.245000px;}
.yb3{bottom:870.225000px;}
.y54{bottom:877.245000px;}
.y1a{bottom:880.740000px;}
.y77{bottom:886.245000px;}
.yb2{bottom:888.225000px;}
.y53{bottom:895.245000px;}
.y1c{bottom:896.505000px;}
.y76{bottom:904.065000px;}
.yb1{bottom:906.045000px;}
.y52{bottom:913.110000px;}
.y75{bottom:921.930000px;}
.yb0{bottom:923.910000px;}
.y51{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.y74{bottom:939.750000px;}
.y18{bottom:941.400000px;}
.yaf{bottom:941.730000px;}
.y50{bottom:948.750000px;}
.y41{bottom:955.800000px;}
.yae{bottom:959.550000px;}
.y4f{bottom:966.570000px;}
.yad{bottom:977.550000px;}
.y4e{bottom:984.570000px;}
.y40{bottom:989.430000px;}
.yac{bottom:995.370000px;}
.y4d{bottom:1002.390000px;}
.yab{bottom:1015.170000px;}
.y3f{bottom:1015.710000px;}
.y4c{bottom:1020.210000px;}
.y73{bottom:1038.030000px;}
.y3e{bottom:1041.990000px;}
.y4b{bottom:1047.030000px;}
.yaa{bottom:1047.930000px;}
.y72{bottom:1055.850000px;}
.y4a{bottom:1064.850000px;}
.ya9{bottom:1065.750000px;}
.y3d{bottom:1068.450000px;}
.y49{bottom:1082.670000px;}
.ya8{bottom:1083.750000px;}
.y48{bottom:1100.670000px;}
.ya7{bottom:1101.570000px;}
.ya{bottom:1107.690000px;}
.y47{bottom:1118.490000px;}
.ya6{bottom:1119.390000px;}
.y46{bottom:1136.310000px;}
.ya5{bottom:1137.210000px;}
.y45{bottom:1154.160000px;}
.ya4{bottom:1157.040000px;}
.y44{bottom:1171.980000px;}
.y43{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1d{height:39.049805px;}
.h14{height:40.985156px;}
.h17{height:44.280000px;}
.h10{height:45.180000px;}
.he{height:47.880000px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.hc{height:54.421875px;}
.h1e{height:55.503491px;}
.h8{height:55.825312px;}
.h18{height:58.621992px;}
.h13{height:58.651172px;}
.h1a{height:58.763250px;}
.h1b{height:58.792500px;}
.h1f{height:60.226875px;}
.h6{height:65.010937px;}
.h16{height:66.757500px;}
.h11{height:72.326250px;}
.hb{height:78.367500px;}
.hf{height:84.898125px;}
.h1c{height:132.480000px;}
.h12{height:140.940000px;}
.h15{height:148.680000px;}
.hd{height:160.380000px;}
.h19{height:304.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.wb{width:500.940000px;}
.w8{width:767.160000px;}
.wa{width:774.540000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w6{width:784.440000px;}
.w9{width:802.800000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xd{left:10.800000px;}
.x1a{left:19.980000px;}
.x10{left:29.556000px;}
.x19{left:45.180000px;}
.x12{left:51.660000px;}
.x5{left:54.000000px;}
.x1c{left:61.200000px;}
.x1b{left:65.160000px;}
.x17{left:72.000000px;}
.x24{left:81.000000px;}
.x13{left:96.336000px;}
.x1{left:100.080000px;}
.x25{left:108.036000px;}
.xe{left:110.730000px;}
.x16{left:113.616000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x22{left:177.915000px;}
.x21{left:198.360000px;}
.x11{left:255.315000px;}
.x1f{left:256.890000px;}
.x18{left:259.455000px;}
.x1d{left:265.575000px;}
.x20{left:324.435000px;}
.x23{left:351.975000px;}
.x7{left:356.655000px;}
.x1e{left:358.635000px;}
.x3{left:367.920000px;}
.x14{left:402.735000px;}
.x15{left:404.715000px;}
.xc{left:465.945000px;}
.x4{left:468.900000px;}
.xf{left:728.070000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls9{letter-spacing:3.360000pt;}
.ls6{letter-spacing:4.640000pt;}
.lsc{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._4{width:2.976000pt;}
._3{width:3.888000pt;}
._8{width:5.321173pt;}
._a{width:6.228053pt;}
._9{width:7.118080pt;}
._5{width:8.544000pt;}
._6{width:9.434240pt;}
._7{width:11.091413pt;}
._b{width:12.164480pt;}
._19{width:13.200000pt;}
._15{width:14.496000pt;}
._11{width:15.420800pt;}
._e{width:16.612480pt;}
._d{width:17.808000pt;}
._16{width:19.171413pt;}
._18{width:20.880000pt;}
._1a{width:21.936000pt;}
._c{width:23.856000pt;}
._14{width:25.536000pt;}
._17{width:27.209173pt;}
._10{width:28.516480pt;}
._f{width:29.424000pt;}
._1b{width:30.576000pt;}
._1c{width:31.530667pt;}
._12{width:33.360000pt;}
._1f{width:34.650667pt;}
._13{width:46.128000pt;}
._20{width:55.152000pt;}
._1e{width:172.560000pt;}
._1d{width:394.560000pt;}
._21{width:792.528000pt;}
._2{width:2580.859733pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y2c{bottom:-6.813333pt;}
.y29{bottom:-6.493333pt;}
.y3c{bottom:-4.133333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y27{bottom:3.586667pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y1f{bottom:6.013333pt;}
.y42{bottom:6.213333pt;}
.y1b{bottom:14.013333pt;}
.y8{bottom:20.000000pt;}
.y1e{bottom:23.293333pt;}
.y7{bottom:36.480000pt;}
.y3a{bottom:39.066667pt;}
.y6{bottom:50.560000pt;}
.y39{bottom:56.826667pt;}
.y17{bottom:73.120000pt;}
.ya3{bottom:73.440000pt;}
.y38{bottom:74.426667pt;}
.y71{bottom:76.000000pt;}
.y16{bottom:89.120000pt;}
.ya2{bottom:89.280000pt;}
.y37{bottom:92.026667pt;}
.y70{bottom:97.120000pt;}
.y15{bottom:104.960000pt;}
.ya1{bottom:105.120000pt;}
.y36{bottom:109.626667pt;}
.y21{bottom:113.213333pt;}
.y14{bottom:120.800000pt;}
.ya0{bottom:120.960000pt;}
.y35{bottom:127.226667pt;}
.y19{bottom:128.773333pt;}
.y13{bottom:136.640000pt;}
.y9f{bottom:136.800000pt;}
.y34{bottom:144.986667pt;}
.y9e{bottom:152.800000pt;}
.y12{bottom:154.240000pt;}
.y33{bottom:162.586667pt;}
.y9d{bottom:168.640000pt;}
.y32{bottom:180.186667pt;}
.y9c{bottom:184.506667pt;}
.y11{bottom:185.946667pt;}
.yd6{bottom:192.346667pt;}
.y31{bottom:197.826667pt;}
.y9b{bottom:200.346667pt;}
.y2e{bottom:201.760000pt;}
.yd5{bottom:208.346667pt;}
.y30{bottom:215.426667pt;}
.y9a{bottom:216.186667pt;}
.y3b{bottom:223.226667pt;}
.y99{bottom:232.026667pt;}
.y2f{bottom:233.186667pt;}
.yd4{bottom:233.946667pt;}
.y98{bottom:248.026667pt;}
.yd3{bottom:257.786667pt;}
.y97{bottom:263.866667pt;}
.y96{bottom:279.706667pt;}
.yd2{bottom:281.626667pt;}
.y95{bottom:295.546667pt;}
.yd1{bottom:297.466667pt;}
.y94{bottom:311.386667pt;}
.y6f{bottom:312.346667pt;}
.yd0{bottom:313.306667pt;}
.y6e{bottom:328.186667pt;}
.ycf{bottom:329.146667pt;}
.y93{bottom:335.386667pt;}
.y6d{bottom:344.186667pt;}
.yce{bottom:345.146667pt;}
.y92{bottom:351.226667pt;}
.y6c{bottom:360.026667pt;}
.ycd{bottom:360.986667pt;}
.y91{bottom:367.066667pt;}
.y6b{bottom:375.866667pt;}
.ycc{bottom:376.826667pt;}
.y90{bottom:382.906667pt;}
.ycb{bottom:392.706667pt;}
.y8f{bottom:398.786667pt;}
.y6a{bottom:399.426667pt;}
.yca{bottom:408.546667pt;}
.y8e{bottom:414.626667pt;}
.y69{bottom:415.586667pt;}
.yc9{bottom:424.386667pt;}
.y8d{bottom:430.626667pt;}
.y68{bottom:431.586667pt;}
.yc8{bottom:440.386667pt;}
.y8c{bottom:446.466667pt;}
.y67{bottom:447.426667pt;}
.y2d{bottom:452.546667pt;}
.yc7{bottom:456.226667pt;}
.y8b{bottom:462.306667pt;}
.y66{bottom:463.266667pt;}
.yc6{bottom:472.066667pt;}
.y8a{bottom:478.146667pt;}
.y65{bottom:479.106667pt;}
.y10{bottom:484.226667pt;}
.yc5{bottom:487.906667pt;}
.y89{bottom:493.986667pt;}
.y64{bottom:494.946667pt;}
.yc4{bottom:503.746667pt;}
.y88{bottom:509.986667pt;}
.y63{bottom:510.786667pt;}
.yc3{bottom:519.746667pt;}
.yf{bottom:520.866667pt;}
.y87{bottom:525.826667pt;}
.y62{bottom:526.786667pt;}
.ye{bottom:534.946667pt;}
.yc2{bottom:535.586667pt;}
.y2b{bottom:540.480000pt;}
.y86{bottom:541.666667pt;}
.y61{bottom:542.626667pt;}
.yc1{bottom:551.426667pt;}
.y85{bottom:557.506667pt;}
.y2a{bottom:558.466667pt;}
.yc0{bottom:567.266667pt;}
.y84{bottom:573.346667pt;}
.y60{bottom:574.306667pt;}
.ybf{bottom:583.106667pt;}
.yd{bottom:584.866667pt;}
.y83{bottom:589.186667pt;}
.y28{bottom:590.080000pt;}
.y5f{bottom:590.146667pt;}
.y20{bottom:596.960000pt;}
.ybe{bottom:598.946667pt;}
.y82{bottom:605.213333pt;}
.y5e{bottom:606.173333pt;}
.ybd{bottom:614.973333pt;}
.y81{bottom:621.053333pt;}
.y5d{bottom:622.013333pt;}
.y26{bottom:624.093333pt;}
.ybc{bottom:630.813333pt;}
.y80{bottom:636.893333pt;}
.y5c{bottom:637.853333pt;}
.y25{bottom:642.333333pt;}
.ybb{bottom:646.653333pt;}
.y7f{bottom:652.733333pt;}
.y5b{bottom:653.693333pt;}
.yba{bottom:662.493333pt;}
.y24{bottom:665.853333pt;}
.y7e{bottom:668.573333pt;}
.y5a{bottom:669.533333pt;}
.yb9{bottom:678.333333pt;}
.y23{bottom:684.093333pt;}
.y7d{bottom:684.573333pt;}
.y59{bottom:685.373333pt;}
.yb8{bottom:694.333333pt;}
.y7c{bottom:700.413333pt;}
.y58{bottom:703.133333pt;}
.y22{bottom:707.613333pt;}
.yb7{bottom:710.173333pt;}
.y7b{bottom:724.253333pt;}
.yb6{bottom:726.013333pt;}
.yc{bottom:727.293333pt;}
.y57{bottom:732.253333pt;}
.y1d{bottom:732.480000pt;}
.y7a{bottom:740.093333pt;}
.yb5{bottom:741.853333pt;}
.y56{bottom:748.093333pt;}
.y79{bottom:755.933333pt;}
.yb4{bottom:757.693333pt;}
.y55{bottom:763.933333pt;}
.y78{bottom:771.773333pt;}
.yb3{bottom:773.533333pt;}
.y54{bottom:779.773333pt;}
.y1a{bottom:782.880000pt;}
.y77{bottom:787.773333pt;}
.yb2{bottom:789.533333pt;}
.y53{bottom:795.773333pt;}
.y1c{bottom:796.893333pt;}
.y76{bottom:803.613333pt;}
.yb1{bottom:805.373333pt;}
.y52{bottom:811.653333pt;}
.y75{bottom:819.493333pt;}
.yb0{bottom:821.253333pt;}
.y51{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.y74{bottom:835.333333pt;}
.y18{bottom:836.800000pt;}
.yaf{bottom:837.093333pt;}
.y50{bottom:843.333333pt;}
.y41{bottom:849.600000pt;}
.yae{bottom:852.933333pt;}
.y4f{bottom:859.173333pt;}
.yad{bottom:868.933333pt;}
.y4e{bottom:875.173333pt;}
.y40{bottom:879.493333pt;}
.yac{bottom:884.773333pt;}
.y4d{bottom:891.013333pt;}
.yab{bottom:902.373333pt;}
.y3f{bottom:902.853333pt;}
.y4c{bottom:906.853333pt;}
.y73{bottom:922.693333pt;}
.y3e{bottom:926.213333pt;}
.y4b{bottom:930.693333pt;}
.yaa{bottom:931.493333pt;}
.y72{bottom:938.533333pt;}
.y4a{bottom:946.533333pt;}
.ya9{bottom:947.333333pt;}
.y3d{bottom:949.733333pt;}
.y49{bottom:962.373333pt;}
.ya8{bottom:963.333333pt;}
.y48{bottom:978.373333pt;}
.ya7{bottom:979.173333pt;}
.ya{bottom:984.613333pt;}
.y47{bottom:994.213333pt;}
.ya6{bottom:995.013333pt;}
.y46{bottom:1010.053333pt;}
.ya5{bottom:1010.853333pt;}
.y45{bottom:1025.920000pt;}
.ya4{bottom:1028.480000pt;}
.y44{bottom:1041.760000pt;}
.y43{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1d{height:34.710938pt;}
.h14{height:36.431250pt;}
.h17{height:39.360000pt;}
.h10{height:40.160000pt;}
.he{height:42.560000pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.hc{height:48.375000pt;}
.h1e{height:49.336436pt;}
.h8{height:49.622500pt;}
.h18{height:52.108438pt;}
.h13{height:52.134375pt;}
.h1a{height:52.234000pt;}
.h1b{height:52.260000pt;}
.h1f{height:53.535000pt;}
.h6{height:57.787500pt;}
.h16{height:59.340000pt;}
.h11{height:64.290000pt;}
.hb{height:69.660000pt;}
.hf{height:75.465000pt;}
.h1c{height:117.760000pt;}
.h12{height:125.280000pt;}
.h15{height:132.160000pt;}
.hd{height:142.560000pt;}
.h19{height:271.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.wb{width:445.280000pt;}
.w8{width:681.920000pt;}
.wa{width:688.480000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w6{width:697.280000pt;}
.w9{width:713.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xd{left:9.600000pt;}
.x1a{left:17.760000pt;}
.x10{left:26.272000pt;}
.x19{left:40.160000pt;}
.x12{left:45.920000pt;}
.x5{left:48.000000pt;}
.x1c{left:54.400000pt;}
.x1b{left:57.920000pt;}
.x17{left:64.000000pt;}
.x24{left:72.000000pt;}
.x13{left:85.632000pt;}
.x1{left:88.960000pt;}
.x25{left:96.032000pt;}
.xe{left:98.426667pt;}
.x16{left:100.992000pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x22{left:158.146667pt;}
.x21{left:176.320000pt;}
.x11{left:226.946667pt;}
.x1f{left:228.346667pt;}
.x18{left:230.626667pt;}
.x1d{left:236.066667pt;}
.x20{left:288.386667pt;}
.x23{left:312.866667pt;}
.x7{left:317.026667pt;}
.x1e{left:318.786667pt;}
.x3{left:327.040000pt;}
.x14{left:357.986667pt;}
.x15{left:359.746667pt;}
.xc{left:414.173333pt;}
.x4{left:416.800000pt;}
.xf{left:647.173333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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