
    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_be96174ed376712fc44784af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930176;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_be0bc878701b492136fdba35.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e9aa2520ceb8dd11a0dce1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930176;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_7e17100b8a50d2388d4b05c5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_148a61a869a5493a022aca41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_dc0047968e9c0df5d6c4e2b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_f9ad94493b8c7b9f760494e7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.720000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-5.136000px;}
._7{margin-left:-3.744000px;}
._8{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._1{width:1.080000px;}
._3{width:2.592000px;}
._4{width:4.464000px;}
._6{width:6.264000px;}
._5{width:7.344000px;}
._13{width:8.712000px;}
._14{width:10.224000px;}
._d{width:12.024000px;}
._e{width:13.176000px;}
._2{width:14.472000px;}
._f{width:15.840000px;}
._10{width:16.992000px;}
._18{width:19.440000px;}
._19{width:20.448000px;}
._b{width:21.816000px;}
._9{width:22.896000px;}
._16{width:23.976000px;}
._15{width:25.128000px;}
._12{width:26.712000px;}
._1c{width:27.864000px;}
._17{width:29.304000px;}
._c{width:30.312000px;}
._1a{width:32.040000px;}
._25{width:33.048000px;}
._24{width:34.200000px;}
._1d{width:36.288000px;}
._1e{width:37.368000px;}
._1f{width:38.880000px;}
._23{width:40.680000px;}
._a{width:46.512000px;}
._11{width:47.604000px;}
._22{width:48.636000px;}
._21{width:50.544000px;}
._20{width:51.552000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.880000px;}
.y5a{bottom:3.240000px;}
.y5f{bottom:18.360000px;}
.y5c{bottom:18.540000px;}
.y6b{bottom:117.360000px;}
.y86{bottom:121.860000px;}
.y27{bottom:126.360000px;}
.yab{bottom:129.060000px;}
.y9b{bottom:139.860000px;}
.yc6{bottom:144.360000px;}
.yc3{bottom:149.760000px;}
.y54{bottom:155.160000px;}
.y6a{bottom:158.760000px;}
.y85{bottom:163.260000px;}
.y3e{bottom:166.860000px;}
.y26{bottom:167.760000px;}
.ya1{bottom:170.460000px;}
.yd9{bottom:171.360000px;}
.y9a{bottom:181.260000px;}
.yc5{bottom:185.760000px;}
.yc2{bottom:191.160000px;}
.y53{bottom:196.590000px;}
.y69{bottom:200.190000px;}
.y84{bottom:204.690000px;}
.y25{bottom:209.190000px;}
.ya0{bottom:211.890000px;}
.yd8{bottom:212.790000px;}
.y75{bottom:219.990000px;}
.y99{bottom:222.690000px;}
.y52{bottom:226.290000px;}
.yc4{bottom:227.190000px;}
.yc1{bottom:232.590000px;}
.y3d{bottom:235.290000px;}
.y68{bottom:241.590000px;}
.y83{bottom:246.090000px;}
.y24{bottom:250.590000px;}
.y9f{bottom:253.290000px;}
.yd7{bottom:254.190000px;}
.y74{bottom:261.390000px;}
.y98{bottom:264.090000px;}
.yae{bottom:268.590000px;}
.yc0{bottom:273.990000px;}
.y3c{bottom:276.690000px;}
.y67{bottom:280.290000px;}
.y82{bottom:287.490000px;}
.y23{bottom:291.990000px;}
.y51{bottom:294.690000px;}
.yd6{bottom:295.590000px;}
.y73{bottom:302.790000px;}
.y97{bottom:305.490000px;}
.yad{bottom:309.990000px;}
.ybf{bottom:315.390000px;}
.y3b{bottom:318.090000px;}
.yaa{bottom:324.390000px;}
.y81{bottom:328.890000px;}
.y22{bottom:333.390000px;}
.y50{bottom:336.090000px;}
.y66{bottom:336.630000px;}
.yd5{bottom:336.990000px;}
.y72{bottom:344.190000px;}
.y96{bottom:346.890000px;}
.yac{bottom:351.390000px;}
.y65{bottom:355.710000px;}
.ybe{bottom:356.790000px;}
.y3a{bottom:359.490000px;}
.y80{bottom:370.290000px;}
.y21{bottom:374.790000px;}
.y4f{bottom:377.490000px;}
.yd4{bottom:378.390000px;}
.y71{bottom:385.590000px;}
.y95{bottom:388.290000px;}
.ya9{bottom:392.790000px;}
.y64{bottom:393.690000px;}
.ybd{bottom:398.190000px;}
.y39{bottom:400.890000px;}
.y7f{bottom:411.690000px;}
.y63{bottom:412.590000px;}
.y20{bottom:416.190000px;}
.y4e{bottom:418.890000px;}
.yd3{bottom:419.790000px;}
.y70{bottom:426.990000px;}
.y94{bottom:429.690000px;}
.ya8{bottom:434.235000px;}
.y62{bottom:437.115000px;}
.ybc{bottom:439.635000px;}
.y38{bottom:442.335000px;}
.yd2{bottom:449.535000px;}
.y7e{bottom:450.435000px;}
.y1f{bottom:457.635000px;}
.y4d{bottom:460.335000px;}
.y61{bottom:468.435000px;}
.y93{bottom:471.135000px;}
.ya7{bottom:475.635000px;}
.ybb{bottom:481.035000px;}
.y37{bottom:483.735000px;}
.yd{bottom:489.495000px;}
.y1e{bottom:499.035000px;}
.y60{bottom:499.575000px;}
.y4c{bottom:501.735000px;}
.yd1{bottom:508.935000px;}
.y6f{bottom:509.835000px;}
.yc{bottom:510.195000px;}
.y92{bottom:512.535000px;}
.y5e{bottom:515.235000px;}
.ya6{bottom:517.035000px;}
.yba{bottom:522.435000px;}
.y36{bottom:525.135000px;}
.y7d{bottom:527.835000px;}
.y1d{bottom:540.435000px;}
.y4b{bottom:543.135000px;}
.y5b{bottom:546.375000px;}
.yb{bottom:548.895000px;}
.yd0{bottom:550.335000px;}
.y6e{bottom:551.235000px;}
.y91{bottom:553.935000px;}
.ya5{bottom:558.435000px;}
.yb9{bottom:563.835000px;}
.y35{bottom:566.535000px;}
.y7c{bottom:569.235000px;}
.ya{bottom:569.595000px;}
.y59{bottom:577.695000px;}
.ycf{bottom:580.035000px;}
.y6d{bottom:580.935000px;}
.y1c{bottom:581.835000px;}
.y4a{bottom:584.535000px;}
.y90{bottom:595.335000px;}
.ya4{bottom:599.835000px;}
.yb8{bottom:605.235000px;}
.y34{bottom:607.935000px;}
.y7b{bottom:610.635000px;}
.y1b{bottom:623.235000px;}
.y49{bottom:625.935000px;}
.y8f{bottom:636.735000px;}
.yce{bottom:639.435000px;}
.ya3{bottom:641.235000px;}
.yb7{bottom:646.635000px;}
.y33{bottom:649.335000px;}
.y7a{bottom:652.035000px;}
.y9e{bottom:655.635000px;}
.y1a{bottom:664.635000px;}
.y48{bottom:667.335000px;}
.ycd{bottom:669.135000px;}
.y8e{bottom:678.165000px;}
.y79{bottom:681.765000px;}
.ya2{bottom:682.665000px;}
.yb6{bottom:688.065000px;}
.y32{bottom:690.765000px;}
.y9{bottom:698.325000px;}
.y19{bottom:706.065000px;}
.y8d{bottom:707.865000px;}
.y47{bottom:708.765000px;}
.y8{bottom:719.025000px;}
.y9d{bottom:724.065000px;}
.ycc{bottom:728.565000px;}
.yb5{bottom:729.465000px;}
.y31{bottom:732.165000px;}
.y46{bottom:738.465000px;}
.y7{bottom:739.725000px;}
.y18{bottom:747.465000px;}
.y58{bottom:750.165000px;}
.y6{bottom:760.425000px;}
.y9c{bottom:765.465000px;}
.ycb{bottom:769.965000px;}
.y6c{bottom:770.865000px;}
.y30{bottom:773.565000px;}
.y8c{bottom:776.265000px;}
.y5{bottom:781.125000px;}
.y17{bottom:788.865000px;}
.y57{bottom:791.565000px;}
.yca{bottom:799.665000px;}
.y45{bottom:806.865000px;}
.yb4{bottom:812.265000px;}
.y2f{bottom:814.965000px;}
.y8b{bottom:817.665000px;}
.y16{bottom:830.265000px;}
.y56{bottom:832.965000px;}
.y44{bottom:848.265000px;}
.yb3{bottom:853.665000px;}
.y2e{bottom:856.365000px;}
.y8a{bottom:859.065000px;}
.y15{bottom:871.665000px;}
.y4{bottom:874.365000px;}
.y43{bottom:889.665000px;}
.yb2{bottom:895.065000px;}
.y2d{bottom:897.765000px;}
.y3{bottom:898.485000px;}
.y89{bottom:900.465000px;}
.y55{bottom:904.065000px;}
.y14{bottom:913.110000px;}
.y78{bottom:915.810000px;}
.y2{bottom:922.110000px;}
.yc9{bottom:930.210000px;}
.y42{bottom:931.110000px;}
.yb1{bottom:936.510000px;}
.y2c{bottom:939.210000px;}
.y88{bottom:941.910000px;}
.y13{bottom:954.510000px;}
.y77{bottom:957.210000px;}
.y87{bottom:971.610000px;}
.y41{bottom:972.510000px;}
.yaf{bottom:977.910000px;}
.y2b{bottom:980.610000px;}
.y76{bottom:986.910000px;}
.yc8{bottom:989.610000px;}
.y12{bottom:995.910000px;}
.y40{bottom:1013.910000px;}
.y29{bottom:1016.610000px;}
.y2a{bottom:1019.310000px;}
.yc7{bottom:1031.010000px;}
.y11{bottom:1037.310000px;}
.y3f{bottom:1055.310000px;}
.yb0{bottom:1060.710000px;}
.y10{bottom:1078.710000px;}
.y28{bottom:1096.710000px;}
.yf{bottom:1117.410000px;}
.ye{bottom:1138.110000px;}
.y1{bottom:1193.040000px;}
.ha{height:15.480000px;}
.h6{height:17.100000px;}
.h9{height:30.960000px;}
.h7{height:31.140000px;}
.h8{height:38.575195px;}
.hc{height:47.318906px;}
.h2{height:51.433594px;}
.hb{height:53.755312px;}
.h5{height:58.429688px;}
.h4{height:59.343750px;}
.h3{height:59.436914px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:83.880000px;}
.w3{width:89.820000px;}
.w7{width:124.416000px;}
.w6{width:176.220000px;}
.w5{width:201.675000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:2.160000px;}
.x19{left:4.860000px;}
.x27{left:6.840000px;}
.x1a{left:10.305000px;}
.x11{left:13.140000px;}
.x1c{left:16.560000px;}
.x1f{left:18.000000px;}
.x23{left:20.520000px;}
.x17{left:23.265000px;}
.x26{left:24.300000px;}
.x22{left:25.785000px;}
.x10{left:27.540000px;}
.x1e{left:31.005000px;}
.x21{left:32.445000px;}
.x25{left:35.145000px;}
.x15{left:59.760000px;}
.x24{left:62.640000px;}
.x1d{left:65.520000px;}
.x20{left:67.500000px;}
.x13{left:72.045000px;}
.x1b{left:82.485000px;}
.x2{left:108.035987px;}
.x28{left:110.915987px;}
.xd{left:125.315987px;}
.xe{left:162.029987px;}
.x2b{left:164.369987px;}
.xa{left:172.109987px;}
.x29{left:174.269987px;}
.xf{left:180.929987px;}
.xb{left:198.209987px;}
.x4{left:216.569987px;}
.x12{left:282.270000px;}
.x8{left:297.254987px;}
.x3{left:304.454987px;}
.x7{left:320.474987px;}
.x6{left:336.314987px;}
.x2c{left:363.494987px;}
.x9{left:398.234987px;}
.x5{left:401.294987px;}
.x2d{left:404.534987px;}
.xc{left:412.994987px;}
.x2a{left:429.914987px;}
.x1{left:438.914987px;}
.x14{left:484.125000px;}
.x16{left:660.525000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.640000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-4.565333pt;}
._7{margin-left:-3.328000pt;}
._8{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.960000pt;}
._3{width:2.304000pt;}
._4{width:3.968000pt;}
._6{width:5.568000pt;}
._5{width:6.528000pt;}
._13{width:7.744000pt;}
._14{width:9.088000pt;}
._d{width:10.688000pt;}
._e{width:11.712000pt;}
._2{width:12.864000pt;}
._f{width:14.080000pt;}
._10{width:15.104000pt;}
._18{width:17.280000pt;}
._19{width:18.176000pt;}
._b{width:19.392000pt;}
._9{width:20.352000pt;}
._16{width:21.312000pt;}
._15{width:22.336000pt;}
._12{width:23.744000pt;}
._1c{width:24.768000pt;}
._17{width:26.048000pt;}
._c{width:26.944000pt;}
._1a{width:28.480000pt;}
._25{width:29.376000pt;}
._24{width:30.400000pt;}
._1d{width:32.256000pt;}
._1e{width:33.216000pt;}
._1f{width:34.560000pt;}
._23{width:36.160000pt;}
._a{width:41.344000pt;}
._11{width:42.314667pt;}
._22{width:43.232000pt;}
._21{width:44.928000pt;}
._20{width:45.824000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.560000pt;}
.y5a{bottom:2.880000pt;}
.y5f{bottom:16.320000pt;}
.y5c{bottom:16.480000pt;}
.y6b{bottom:104.320000pt;}
.y86{bottom:108.320000pt;}
.y27{bottom:112.320000pt;}
.yab{bottom:114.720000pt;}
.y9b{bottom:124.320000pt;}
.yc6{bottom:128.320000pt;}
.yc3{bottom:133.120000pt;}
.y54{bottom:137.920000pt;}
.y6a{bottom:141.120000pt;}
.y85{bottom:145.120000pt;}
.y3e{bottom:148.320000pt;}
.y26{bottom:149.120000pt;}
.ya1{bottom:151.520000pt;}
.yd9{bottom:152.320000pt;}
.y9a{bottom:161.120000pt;}
.yc5{bottom:165.120000pt;}
.yc2{bottom:169.920000pt;}
.y53{bottom:174.746667pt;}
.y69{bottom:177.946667pt;}
.y84{bottom:181.946667pt;}
.y25{bottom:185.946667pt;}
.ya0{bottom:188.346667pt;}
.yd8{bottom:189.146667pt;}
.y75{bottom:195.546667pt;}
.y99{bottom:197.946667pt;}
.y52{bottom:201.146667pt;}
.yc4{bottom:201.946667pt;}
.yc1{bottom:206.746667pt;}
.y3d{bottom:209.146667pt;}
.y68{bottom:214.746667pt;}
.y83{bottom:218.746667pt;}
.y24{bottom:222.746667pt;}
.y9f{bottom:225.146667pt;}
.yd7{bottom:225.946667pt;}
.y74{bottom:232.346667pt;}
.y98{bottom:234.746667pt;}
.yae{bottom:238.746667pt;}
.yc0{bottom:243.546667pt;}
.y3c{bottom:245.946667pt;}
.y67{bottom:249.146667pt;}
.y82{bottom:255.546667pt;}
.y23{bottom:259.546667pt;}
.y51{bottom:261.946667pt;}
.yd6{bottom:262.746667pt;}
.y73{bottom:269.146667pt;}
.y97{bottom:271.546667pt;}
.yad{bottom:275.546667pt;}
.ybf{bottom:280.346667pt;}
.y3b{bottom:282.746667pt;}
.yaa{bottom:288.346667pt;}
.y81{bottom:292.346667pt;}
.y22{bottom:296.346667pt;}
.y50{bottom:298.746667pt;}
.y66{bottom:299.226667pt;}
.yd5{bottom:299.546667pt;}
.y72{bottom:305.946667pt;}
.y96{bottom:308.346667pt;}
.yac{bottom:312.346667pt;}
.y65{bottom:316.186667pt;}
.ybe{bottom:317.146667pt;}
.y3a{bottom:319.546667pt;}
.y80{bottom:329.146667pt;}
.y21{bottom:333.146667pt;}
.y4f{bottom:335.546667pt;}
.yd4{bottom:336.346667pt;}
.y71{bottom:342.746667pt;}
.y95{bottom:345.146667pt;}
.ya9{bottom:349.146667pt;}
.y64{bottom:349.946667pt;}
.ybd{bottom:353.946667pt;}
.y39{bottom:356.346667pt;}
.y7f{bottom:365.946667pt;}
.y63{bottom:366.746667pt;}
.y20{bottom:369.946667pt;}
.y4e{bottom:372.346667pt;}
.yd3{bottom:373.146667pt;}
.y70{bottom:379.546667pt;}
.y94{bottom:381.946667pt;}
.ya8{bottom:385.986667pt;}
.y62{bottom:388.546667pt;}
.ybc{bottom:390.786667pt;}
.y38{bottom:393.186667pt;}
.yd2{bottom:399.586667pt;}
.y7e{bottom:400.386667pt;}
.y1f{bottom:406.786667pt;}
.y4d{bottom:409.186667pt;}
.y61{bottom:416.386667pt;}
.y93{bottom:418.786667pt;}
.ya7{bottom:422.786667pt;}
.ybb{bottom:427.586667pt;}
.y37{bottom:429.986667pt;}
.yd{bottom:435.106667pt;}
.y1e{bottom:443.586667pt;}
.y60{bottom:444.066667pt;}
.y4c{bottom:445.986667pt;}
.yd1{bottom:452.386667pt;}
.y6f{bottom:453.186667pt;}
.yc{bottom:453.506667pt;}
.y92{bottom:455.586667pt;}
.y5e{bottom:457.986667pt;}
.ya6{bottom:459.586667pt;}
.yba{bottom:464.386667pt;}
.y36{bottom:466.786667pt;}
.y7d{bottom:469.186667pt;}
.y1d{bottom:480.386667pt;}
.y4b{bottom:482.786667pt;}
.y5b{bottom:485.666667pt;}
.yb{bottom:487.906667pt;}
.yd0{bottom:489.186667pt;}
.y6e{bottom:489.986667pt;}
.y91{bottom:492.386667pt;}
.ya5{bottom:496.386667pt;}
.yb9{bottom:501.186667pt;}
.y35{bottom:503.586667pt;}
.y7c{bottom:505.986667pt;}
.ya{bottom:506.306667pt;}
.y59{bottom:513.506667pt;}
.ycf{bottom:515.586667pt;}
.y6d{bottom:516.386667pt;}
.y1c{bottom:517.186667pt;}
.y4a{bottom:519.586667pt;}
.y90{bottom:529.186667pt;}
.ya4{bottom:533.186667pt;}
.yb8{bottom:537.986667pt;}
.y34{bottom:540.386667pt;}
.y7b{bottom:542.786667pt;}
.y1b{bottom:553.986667pt;}
.y49{bottom:556.386667pt;}
.y8f{bottom:565.986667pt;}
.yce{bottom:568.386667pt;}
.ya3{bottom:569.986667pt;}
.yb7{bottom:574.786667pt;}
.y33{bottom:577.186667pt;}
.y7a{bottom:579.586667pt;}
.y9e{bottom:582.786667pt;}
.y1a{bottom:590.786667pt;}
.y48{bottom:593.186667pt;}
.ycd{bottom:594.786667pt;}
.y8e{bottom:602.813333pt;}
.y79{bottom:606.013333pt;}
.ya2{bottom:606.813333pt;}
.yb6{bottom:611.613333pt;}
.y32{bottom:614.013333pt;}
.y9{bottom:620.733333pt;}
.y19{bottom:627.613333pt;}
.y8d{bottom:629.213333pt;}
.y47{bottom:630.013333pt;}
.y8{bottom:639.133333pt;}
.y9d{bottom:643.613333pt;}
.ycc{bottom:647.613333pt;}
.yb5{bottom:648.413333pt;}
.y31{bottom:650.813333pt;}
.y46{bottom:656.413333pt;}
.y7{bottom:657.533333pt;}
.y18{bottom:664.413333pt;}
.y58{bottom:666.813333pt;}
.y6{bottom:675.933333pt;}
.y9c{bottom:680.413333pt;}
.ycb{bottom:684.413333pt;}
.y6c{bottom:685.213333pt;}
.y30{bottom:687.613333pt;}
.y8c{bottom:690.013333pt;}
.y5{bottom:694.333333pt;}
.y17{bottom:701.213333pt;}
.y57{bottom:703.613333pt;}
.yca{bottom:710.813333pt;}
.y45{bottom:717.213333pt;}
.yb4{bottom:722.013333pt;}
.y2f{bottom:724.413333pt;}
.y8b{bottom:726.813333pt;}
.y16{bottom:738.013333pt;}
.y56{bottom:740.413333pt;}
.y44{bottom:754.013333pt;}
.yb3{bottom:758.813333pt;}
.y2e{bottom:761.213333pt;}
.y8a{bottom:763.613333pt;}
.y15{bottom:774.813333pt;}
.y4{bottom:777.213333pt;}
.y43{bottom:790.813333pt;}
.yb2{bottom:795.613333pt;}
.y2d{bottom:798.013333pt;}
.y3{bottom:798.653333pt;}
.y89{bottom:800.413333pt;}
.y55{bottom:803.613333pt;}
.y14{bottom:811.653333pt;}
.y78{bottom:814.053333pt;}
.y2{bottom:819.653333pt;}
.yc9{bottom:826.853333pt;}
.y42{bottom:827.653333pt;}
.yb1{bottom:832.453333pt;}
.y2c{bottom:834.853333pt;}
.y88{bottom:837.253333pt;}
.y13{bottom:848.453333pt;}
.y77{bottom:850.853333pt;}
.y87{bottom:863.653333pt;}
.y41{bottom:864.453333pt;}
.yaf{bottom:869.253333pt;}
.y2b{bottom:871.653333pt;}
.y76{bottom:877.253333pt;}
.yc8{bottom:879.653333pt;}
.y12{bottom:885.253333pt;}
.y40{bottom:901.253333pt;}
.y29{bottom:903.653333pt;}
.y2a{bottom:906.053333pt;}
.yc7{bottom:916.453333pt;}
.y11{bottom:922.053333pt;}
.y3f{bottom:938.053333pt;}
.yb0{bottom:942.853333pt;}
.y10{bottom:958.853333pt;}
.y28{bottom:974.853333pt;}
.yf{bottom:993.253333pt;}
.ye{bottom:1011.653333pt;}
.y1{bottom:1060.480000pt;}
.ha{height:13.760000pt;}
.h6{height:15.200000pt;}
.h9{height:27.520000pt;}
.h7{height:27.680000pt;}
.h8{height:34.289062pt;}
.hc{height:42.061250pt;}
.h2{height:45.718750pt;}
.hb{height:47.782500pt;}
.h5{height:51.937500pt;}
.h4{height:52.750000pt;}
.h3{height:52.832812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:74.560000pt;}
.w3{width:79.840000pt;}
.w7{width:110.592000pt;}
.w6{width:156.640000pt;}
.w5{width:179.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.920000pt;}
.x19{left:4.320000pt;}
.x27{left:6.080000pt;}
.x1a{left:9.160000pt;}
.x11{left:11.680000pt;}
.x1c{left:14.720000pt;}
.x1f{left:16.000000pt;}
.x23{left:18.240000pt;}
.x17{left:20.680000pt;}
.x26{left:21.600000pt;}
.x22{left:22.920000pt;}
.x10{left:24.480000pt;}
.x1e{left:27.560000pt;}
.x21{left:28.840000pt;}
.x25{left:31.240000pt;}
.x15{left:53.120000pt;}
.x24{left:55.680000pt;}
.x1d{left:58.240000pt;}
.x20{left:60.000000pt;}
.x13{left:64.040000pt;}
.x1b{left:73.320000pt;}
.x2{left:96.031988pt;}
.x28{left:98.591988pt;}
.xd{left:111.391988pt;}
.xe{left:144.026655pt;}
.x2b{left:146.106655pt;}
.xa{left:152.986655pt;}
.x29{left:154.906655pt;}
.xf{left:160.826655pt;}
.xb{left:176.186655pt;}
.x4{left:192.506655pt;}
.x12{left:250.906667pt;}
.x8{left:264.226655pt;}
.x3{left:270.626655pt;}
.x7{left:284.866655pt;}
.x6{left:298.946655pt;}
.x2c{left:323.106655pt;}
.x9{left:353.986655pt;}
.x5{left:356.706655pt;}
.x2d{left:359.586655pt;}
.xc{left:367.106655pt;}
.x2a{left:382.146655pt;}
.x1{left:390.146655pt;}
.x14{left:430.333333pt;}
.x16{left:587.133333pt;}
}




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