
    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_d7b719c05a3558e4d99396b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c666940b808bd5e49628e510.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_68a735edd87f0aec5115deec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fde4bd0a031c56c34be3d7fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_7993f6f2e732d29dc2479535.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_ce5c5e7484c0d231227aac41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2477bdcebb4c479afa287ffc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls6{letter-spacing:2.160000px;}
.lse{letter-spacing:4.320000px;}
.ls9{letter-spacing:5.040000px;}
.ls10{letter-spacing:10.080000px;}
.ls7{letter-spacing:13.680000px;}
.ls4{letter-spacing:14.400000px;}
.lsd{letter-spacing:20.160000px;}
.lsf{letter-spacing:27.360000px;}
.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;}
}
.ws2{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-14.970240px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-5.156160px;}
._2{margin-left:-4.091520px;}
._1{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._3{width:1.192320px;}
._5{width:2.232000px;}
._d{width:3.240000px;}
._e{width:4.320000px;}
._13{width:5.632320px;}
._14{width:6.678720px;}
._16{width:8.098560px;}
._c{width:9.216000px;}
._b{width:10.224000px;}
._15{width:11.304000px;}
._19{width:12.352320px;}
._6{width:13.536000px;}
._f{width:15.408000px;}
._12{width:16.560000px;}
._11{width:19.930080px;}
._10{width:20.992320px;}
._1d{width:22.149600px;}
._8{width:23.728320px;}
._17{width:25.272000px;}
._18{width:26.352000px;}
._7{width:28.080000px;}
._1b{width:29.952000px;}
._2a{width:31.464000px;}
._1a{width:33.120000px;}
._1c{width:34.159680px;}
._24{width:35.784000px;}
._9{width:37.584000px;}
._a{width:38.767680px;}
._22{width:40.536000px;}
._25{width:44.478720px;}
._23{width:45.656640px;}
._20{width:46.872000px;}
._21{width:47.911680px;}
._1e{width:48.960000px;}
._1f{width:50.400000px;}
._27{width:53.680320px;}
._26{width:55.080000px;}
._29{width:63.792000px;}
._28{width:64.872000px;}
._2b{width:76.008000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.ya{bottom:-27.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.340000px;}
.y2{bottom:4.680000px;}
.y9{bottom:11.700000px;}
.y11{bottom:12.420000px;}
.y3f{bottom:12.600000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y6{bottom:24.840000px;}
.y8{bottom:45.900000px;}
.yf{bottom:57.420000px;}
.ye{bottom:77.580000px;}
.yd{bottom:93.420000px;}
.y3d{bottom:110.160000px;}
.y6c{bottom:111.960000px;}
.yde{bottom:112.860000px;}
.y111{bottom:113.760000px;}
.y3c{bottom:115.380000px;}
.ybd{bottom:119.160000px;}
.y96{bottom:121.860000px;}
.y100{bottom:124.560000px;}
.y3b{bottom:128.880000px;}
.yd4{bottom:130.860000px;}
.y6b{bottom:132.660000px;}
.ydd{bottom:133.560000px;}
.ybc{bottom:139.860000px;}
.y95{bottom:142.560000px;}
.y110{bottom:143.460000px;}
.yff{bottom:145.260000px;}
.yd3{bottom:151.560000px;}
.y6a{bottom:153.360000px;}
.ydc{bottom:154.260000px;}
.ybb{bottom:160.560000px;}
.y94{bottom:163.260000px;}
.y3a{bottom:170.460000px;}
.yd2{bottom:172.260000px;}
.y10f{bottom:173.160000px;}
.y69{bottom:174.060000px;}
.ydb{bottom:174.960000px;}
.yba{bottom:181.260000px;}
.y93{bottom:183.960000px;}
.y39{bottom:191.160000px;}
.yd1{bottom:192.960000px;}
.yda{bottom:195.660000px;}
.y10e{bottom:202.890000px;}
.y68{bottom:203.790000px;}
.y92{bottom:204.690000px;}
.yb9{bottom:210.990000px;}
.y38{bottom:211.890000px;}
.yd0{bottom:213.690000px;}
.yd9{bottom:216.390000px;}
.y12f{bottom:220.890000px;}
.y67{bottom:224.490000px;}
.y91{bottom:225.390000px;}
.yb8{bottom:231.690000px;}
.y37{bottom:232.590000px;}
.ye9{bottom:234.390000px;}
.yd8{bottom:237.090000px;}
.ycf{bottom:243.390000px;}
.y66{bottom:245.190000px;}
.y12e{bottom:250.590000px;}
.yb7{bottom:252.390000px;}
.y36{bottom:253.290000px;}
.y90{bottom:255.090000px;}
.yfe{bottom:257.790000px;}
.y10d{bottom:262.290000px;}
.yce{bottom:264.090000px;}
.y65{bottom:265.890000px;}
.yd7{bottom:266.790000px;}
.y12d{bottom:271.290000px;}
.yb6{bottom:273.090000px;}
.y35{bottom:273.990000px;}
.y8f{bottom:275.790000px;}
.yfd{bottom:278.490000px;}
.ycd{bottom:284.790000px;}
.y10c{bottom:291.990000px;}
.yb5{bottom:293.790000px;}
.y34{bottom:294.690000px;}
.y64{bottom:295.590000px;}
.y8e{bottom:296.490000px;}
.y12c{bottom:300.990000px;}
.ycc{bottom:305.490000px;}
.yfc{bottom:308.190000px;}
.yb4{bottom:314.490000px;}
.y33{bottom:315.390000px;}
.y8d{bottom:317.190000px;}
.y10b{bottom:321.690000px;}
.y63{bottom:325.290000px;}
.ycb{bottom:326.190000px;}
.yfb{bottom:328.890000px;}
.yb3{bottom:335.190000px;}
.y32{bottom:336.090000px;}
.y8c{bottom:337.890000px;}
.y62{bottom:345.990000px;}
.yca{bottom:346.890000px;}
.yfa{bottom:349.590000px;}
.y10a{bottom:351.390000px;}
.yb2{bottom:355.890000px;}
.y8b{bottom:358.590000px;}
.y31{bottom:365.790000px;}
.y61{bottom:366.690000px;}
.yc9{bottom:367.590000px;}
.yf9{bottom:370.290000px;}
.y12b{bottom:372.090000px;}
.yb1{bottom:376.590000px;}
.y8a{bottom:379.290000px;}
.y109{bottom:381.090000px;}
.y60{bottom:387.390000px;}
.yc8{bottom:388.290000px;}
.yf8{bottom:390.990000px;}
.y30{bottom:395.490000px;}
.yb0{bottom:397.290000px;}
.y89{bottom:399.990000px;}
.y12a{bottom:401.790000px;}
.yc7{bottom:408.990000px;}
.y108{bottom:410.790000px;}
.yf7{bottom:411.690000px;}
.y5f{bottom:417.090000px;}
.yaf{bottom:417.990000px;}
.y129{bottom:422.490000px;}
.y2f{bottom:425.190000px;}
.y88{bottom:429.690000px;}
.yf6{bottom:432.390000px;}
.y5e{bottom:437.835000px;}
.yae{bottom:438.735000px;}
.y107{bottom:440.535000px;}
.y87{bottom:450.435000px;}
.y128{bottom:452.235000px;}
.y2e{bottom:454.935000px;}
.y5d{bottom:458.535000px;}
.yad{bottom:459.435000px;}
.yf5{bottom:462.135000px;}
.y106{bottom:470.235000px;}
.y86{bottom:471.135000px;}
.y127{bottom:472.935000px;}
.yac{bottom:480.135000px;}
.yf4{bottom:482.835000px;}
.y2d{bottom:484.635000px;}
.y5c{bottom:488.235000px;}
.y85{bottom:491.835000px;}
.y105{bottom:499.935000px;}
.yab{bottom:500.835000px;}
.y126{bottom:502.635000px;}
.yf3{bottom:503.535000px;}
.y2c{bottom:505.335000px;}
.y5b{bottom:508.935000px;}
.y84{bottom:512.535000px;}
.yd6{bottom:521.535000px;}
.y125{bottom:523.335000px;}
.yf2{bottom:524.235000px;}
.y2b{bottom:526.035000px;}
.y5a{bottom:529.635000px;}
.yaa{bottom:530.535000px;}
.y83{bottom:533.235000px;}
.yc6{bottom:542.235000px;}
.yf1{bottom:544.935000px;}
.y2a{bottom:546.735000px;}
.y59{bottom:550.335000px;}
.ya9{bottom:551.235000px;}
.y124{bottom:553.035000px;}
.y82{bottom:553.935000px;}
.y104{bottom:559.335000px;}
.yc5{bottom:562.935000px;}
.y29{bottom:567.435000px;}
.y58{bottom:571.035000px;}
.ya8{bottom:571.935000px;}
.y123{bottom:573.735000px;}
.y81{bottom:574.635000px;}
.yc4{bottom:583.635000px;}
.y103{bottom:589.035000px;}
.y57{bottom:591.735000px;}
.ya7{bottom:592.635000px;}
.y122{bottom:594.435000px;}
.y80{bottom:595.335000px;}
.y28{bottom:597.135000px;}
.yc3{bottom:604.335000px;}
.ya6{bottom:613.335000px;}
.y7f{bottom:616.035000px;}
.y3e{bottom:617.475000px;}
.y27{bottom:617.835000px;}
.y102{bottom:618.735000px;}
.y56{bottom:621.435000px;}
.y121{bottom:624.135000px;}
.yc2{bottom:625.035000px;}
.ya5{bottom:634.035000px;}
.y10{bottom:636.735000px;}
.y26{bottom:638.535000px;}
.y55{bottom:642.135000px;}
.y120{bottom:644.835000px;}
.yc1{bottom:645.735000px;}
.y101{bottom:648.435000px;}
.ya4{bottom:654.735000px;}
.y7e{bottom:657.435000px;}
.y25{bottom:659.235000px;}
.y54{bottom:662.835000px;}
.y11f{bottom:665.535000px;}
.yc0{bottom:666.435000px;}
.ya3{bottom:675.465000px;}
.y7d{bottom:678.165000px;}
.y24{bottom:679.965000px;}
.y53{bottom:683.565000px;}
.ybf{bottom:687.165000px;}
.y11e{bottom:695.265000px;}
.ya2{bottom:696.165000px;}
.yf0{bottom:698.865000px;}
.y23{bottom:700.665000px;}
.y52{bottom:704.265000px;}
.y7c{bottom:707.865000px;}
.y11d{bottom:715.965000px;}
.ya1{bottom:716.865000px;}
.yef{bottom:719.565000px;}
.y22{bottom:721.365000px;}
.y7b{bottom:728.565000px;}
.y51{bottom:733.965000px;}
.y11c{bottom:736.665000px;}
.ya0{bottom:737.565000px;}
.yee{bottom:740.265000px;}
.y21{bottom:742.065000px;}
.y7a{bottom:749.265000px;}
.y50{bottom:754.665000px;}
.y9f{bottom:758.265000px;}
.yed{bottom:760.965000px;}
.y20{bottom:762.765000px;}
.y11b{bottom:766.365000px;}
.y79{bottom:769.965000px;}
.y4f{bottom:775.365000px;}
.y9e{bottom:778.965000px;}
.yec{bottom:781.665000px;}
.y11a{bottom:787.065000px;}
.y78{bottom:790.665000px;}
.y1f{bottom:792.465000px;}
.y4e{bottom:796.065000px;}
.y9d{bottom:799.665000px;}
.ye8{bottom:808.665000px;}
.y77{bottom:811.365000px;}
.y4d{bottom:816.765000px;}
.y9c{bottom:820.365000px;}
.y1e{bottom:822.165000px;}
.ye7{bottom:829.365000px;}
.y76{bottom:832.065000px;}
.y119{bottom:837.465000px;}
.y9b{bottom:841.065000px;}
.y4c{bottom:846.465000px;}
.ye6{bottom:850.065000px;}
.y1d{bottom:851.865000px;}
.y75{bottom:852.765000px;}
.y9a{bottom:861.765000px;}
.y4b{bottom:867.165000px;}
.ye5{bottom:870.765000px;}
.y74{bottom:873.465000px;}
.y1c{bottom:879.405000px;}
.y99{bottom:882.465000px;}
.y4a{bottom:887.865000px;}
.ye4{bottom:891.465000px;}
.yeb{bottom:894.165000px;}
.y1b{bottom:902.265000px;}
.y73{bottom:903.165000px;}
.y49{bottom:908.565000px;}
.ye3{bottom:912.165000px;}
.yea{bottom:914.910000px;}
.y118{bottom:917.610000px;}
.y72{bottom:923.910000px;}
.y1a{bottom:929.850000px;}
.ye2{bottom:932.910000px;}
.y48{bottom:938.310000px;}
.y71{bottom:944.610000px;}
.y19{bottom:952.710000px;}
.ye1{bottom:953.610000px;}
.y117{bottom:959.010000px;}
.y70{bottom:965.310000px;}
.y47{bottom:968.010000px;}
.ye0{bottom:974.310000px;}
.y18{bottom:982.410000px;}
.y6f{bottom:986.010000px;}
.y116{bottom:988.710000px;}
.ydf{bottom:995.010000px;}
.y46{bottom:997.710000px;}
.y6e{bottom:1006.710000px;}
.y115{bottom:1009.410000px;}
.y17{bottom:1012.110000px;}
.yd5{bottom:1015.710000px;}
.y45{bottom:1027.410000px;}
.y6d{bottom:1036.410000px;}
.y114{bottom:1039.110000px;}
.y15{bottom:1041.810000px;}
.y16{bottom:1047.750000px;}
.y98{bottom:1048.110000px;}
.y44{bottom:1057.110000px;}
.y113{bottom:1059.810000px;}
.y97{bottom:1068.810000px;}
.y14{bottom:1071.510000px;}
.y43{bottom:1077.810000px;}
.ybe{bottom:1089.510000px;}
.y42{bottom:1098.510000px;}
.y13{bottom:1101.210000px;}
.y112{bottom:1110.210000px;}
.y41{bottom:1119.210000px;}
.y12{bottom:1130.910000px;}
.y40{bottom:1139.910000px;}
.yc{bottom:1193.220000px;}
.y7{bottom:1200.960000px;}
.y5{bottom:1205.280000px;}
.yb{bottom:1208.880000px;}
.h4{height:15.660000px;}
.h2{height:18.000000px;}
.h9{height:28.080000px;}
.h11{height:28.260000px;}
.hf{height:38.671172px;}
.h5{height:39.600000px;}
.hd{height:40.254961px;}
.hb{height:41.362031px;}
.h8{height:49.868086px;}
.h10{height:59.439023px;}
.he{height:60.082031px;}
.h7{height:60.660000px;}
.ha{height:61.734375px;}
.hc{height:65.122031px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w6{width:88.236000px;}
.w2{width:165.810000px;}
.w3{width:184.530000px;}
.w4{width:189.390000px;}
.w5{width:397.515000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xb{left:10.800000px;}
.x8{left:21.780000px;}
.x6{left:39.600000px;}
.x3{left:61.380000px;}
.x9{left:106.235987px;}
.x13{left:107.675987px;}
.xc{left:108.755987px;}
.x18{left:111.095987px;}
.x15{left:141.155987px;}
.x5{left:208.290000px;}
.x10{left:269.849987px;}
.xd{left:281.954987px;}
.x12{left:301.394987px;}
.x17{left:322.274987px;}
.x16{left:349.814987px;}
.x4{left:364.575000px;}
.x14{left:411.374987px;}
.x11{left:446.474987px;}
.xe{left:604.904973px;}
.xf{left:611.024987px;}
.x1{left:694.950000px;}
.x7{left:767.850000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.840000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls10{letter-spacing:8.960000pt;}
.ls7{letter-spacing:12.160000pt;}
.ls4{letter-spacing:12.800000pt;}
.lsd{letter-spacing:17.920000pt;}
.lsf{letter-spacing:24.320000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-4.583253pt;}
._2{margin-left:-3.636907pt;}
._1{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.059840pt;}
._5{width:1.984000pt;}
._d{width:2.880000pt;}
._e{width:3.840000pt;}
._13{width:5.006507pt;}
._14{width:5.936640pt;}
._16{width:7.198720pt;}
._c{width:8.192000pt;}
._b{width:9.088000pt;}
._15{width:10.048000pt;}
._19{width:10.979840pt;}
._6{width:12.032000pt;}
._f{width:13.696000pt;}
._12{width:14.720000pt;}
._11{width:17.715627pt;}
._10{width:18.659840pt;}
._1d{width:19.688533pt;}
._8{width:21.091840pt;}
._17{width:22.464000pt;}
._18{width:23.424000pt;}
._7{width:24.960000pt;}
._1b{width:26.624000pt;}
._2a{width:27.968000pt;}
._1a{width:29.440000pt;}
._1c{width:30.364160pt;}
._24{width:31.808000pt;}
._9{width:33.408000pt;}
._a{width:34.460160pt;}
._22{width:36.032000pt;}
._25{width:39.536640pt;}
._23{width:40.583680pt;}
._20{width:41.664000pt;}
._21{width:42.588160pt;}
._1e{width:43.520000pt;}
._1f{width:44.800000pt;}
._27{width:47.715840pt;}
._26{width:48.960000pt;}
._29{width:56.704000pt;}
._28{width:57.664000pt;}
._2b{width:67.562667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.ya{bottom:-24.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.080000pt;}
.y2{bottom:4.160000pt;}
.y9{bottom:10.400000pt;}
.y11{bottom:11.040000pt;}
.y3f{bottom:11.200000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y6{bottom:22.080000pt;}
.y8{bottom:40.800000pt;}
.yf{bottom:51.040000pt;}
.ye{bottom:68.960000pt;}
.yd{bottom:83.040000pt;}
.y3d{bottom:97.920000pt;}
.y6c{bottom:99.520000pt;}
.yde{bottom:100.320000pt;}
.y111{bottom:101.120000pt;}
.y3c{bottom:102.560000pt;}
.ybd{bottom:105.920000pt;}
.y96{bottom:108.320000pt;}
.y100{bottom:110.720000pt;}
.y3b{bottom:114.560000pt;}
.yd4{bottom:116.320000pt;}
.y6b{bottom:117.920000pt;}
.ydd{bottom:118.720000pt;}
.ybc{bottom:124.320000pt;}
.y95{bottom:126.720000pt;}
.y110{bottom:127.520000pt;}
.yff{bottom:129.120000pt;}
.yd3{bottom:134.720000pt;}
.y6a{bottom:136.320000pt;}
.ydc{bottom:137.120000pt;}
.ybb{bottom:142.720000pt;}
.y94{bottom:145.120000pt;}
.y3a{bottom:151.520000pt;}
.yd2{bottom:153.120000pt;}
.y10f{bottom:153.920000pt;}
.y69{bottom:154.720000pt;}
.ydb{bottom:155.520000pt;}
.yba{bottom:161.120000pt;}
.y93{bottom:163.520000pt;}
.y39{bottom:169.920000pt;}
.yd1{bottom:171.520000pt;}
.yda{bottom:173.920000pt;}
.y10e{bottom:180.346667pt;}
.y68{bottom:181.146667pt;}
.y92{bottom:181.946667pt;}
.yb9{bottom:187.546667pt;}
.y38{bottom:188.346667pt;}
.yd0{bottom:189.946667pt;}
.yd9{bottom:192.346667pt;}
.y12f{bottom:196.346667pt;}
.y67{bottom:199.546667pt;}
.y91{bottom:200.346667pt;}
.yb8{bottom:205.946667pt;}
.y37{bottom:206.746667pt;}
.ye9{bottom:208.346667pt;}
.yd8{bottom:210.746667pt;}
.ycf{bottom:216.346667pt;}
.y66{bottom:217.946667pt;}
.y12e{bottom:222.746667pt;}
.yb7{bottom:224.346667pt;}
.y36{bottom:225.146667pt;}
.y90{bottom:226.746667pt;}
.yfe{bottom:229.146667pt;}
.y10d{bottom:233.146667pt;}
.yce{bottom:234.746667pt;}
.y65{bottom:236.346667pt;}
.yd7{bottom:237.146667pt;}
.y12d{bottom:241.146667pt;}
.yb6{bottom:242.746667pt;}
.y35{bottom:243.546667pt;}
.y8f{bottom:245.146667pt;}
.yfd{bottom:247.546667pt;}
.ycd{bottom:253.146667pt;}
.y10c{bottom:259.546667pt;}
.yb5{bottom:261.146667pt;}
.y34{bottom:261.946667pt;}
.y64{bottom:262.746667pt;}
.y8e{bottom:263.546667pt;}
.y12c{bottom:267.546667pt;}
.ycc{bottom:271.546667pt;}
.yfc{bottom:273.946667pt;}
.yb4{bottom:279.546667pt;}
.y33{bottom:280.346667pt;}
.y8d{bottom:281.946667pt;}
.y10b{bottom:285.946667pt;}
.y63{bottom:289.146667pt;}
.ycb{bottom:289.946667pt;}
.yfb{bottom:292.346667pt;}
.yb3{bottom:297.946667pt;}
.y32{bottom:298.746667pt;}
.y8c{bottom:300.346667pt;}
.y62{bottom:307.546667pt;}
.yca{bottom:308.346667pt;}
.yfa{bottom:310.746667pt;}
.y10a{bottom:312.346667pt;}
.yb2{bottom:316.346667pt;}
.y8b{bottom:318.746667pt;}
.y31{bottom:325.146667pt;}
.y61{bottom:325.946667pt;}
.yc9{bottom:326.746667pt;}
.yf9{bottom:329.146667pt;}
.y12b{bottom:330.746667pt;}
.yb1{bottom:334.746667pt;}
.y8a{bottom:337.146667pt;}
.y109{bottom:338.746667pt;}
.y60{bottom:344.346667pt;}
.yc8{bottom:345.146667pt;}
.yf8{bottom:347.546667pt;}
.y30{bottom:351.546667pt;}
.yb0{bottom:353.146667pt;}
.y89{bottom:355.546667pt;}
.y12a{bottom:357.146667pt;}
.yc7{bottom:363.546667pt;}
.y108{bottom:365.146667pt;}
.yf7{bottom:365.946667pt;}
.y5f{bottom:370.746667pt;}
.yaf{bottom:371.546667pt;}
.y129{bottom:375.546667pt;}
.y2f{bottom:377.946667pt;}
.y88{bottom:381.946667pt;}
.yf6{bottom:384.346667pt;}
.y5e{bottom:389.186667pt;}
.yae{bottom:389.986667pt;}
.y107{bottom:391.586667pt;}
.y87{bottom:400.386667pt;}
.y128{bottom:401.986667pt;}
.y2e{bottom:404.386667pt;}
.y5d{bottom:407.586667pt;}
.yad{bottom:408.386667pt;}
.yf5{bottom:410.786667pt;}
.y106{bottom:417.986667pt;}
.y86{bottom:418.786667pt;}
.y127{bottom:420.386667pt;}
.yac{bottom:426.786667pt;}
.yf4{bottom:429.186667pt;}
.y2d{bottom:430.786667pt;}
.y5c{bottom:433.986667pt;}
.y85{bottom:437.186667pt;}
.y105{bottom:444.386667pt;}
.yab{bottom:445.186667pt;}
.y126{bottom:446.786667pt;}
.yf3{bottom:447.586667pt;}
.y2c{bottom:449.186667pt;}
.y5b{bottom:452.386667pt;}
.y84{bottom:455.586667pt;}
.yd6{bottom:463.586667pt;}
.y125{bottom:465.186667pt;}
.yf2{bottom:465.986667pt;}
.y2b{bottom:467.586667pt;}
.y5a{bottom:470.786667pt;}
.yaa{bottom:471.586667pt;}
.y83{bottom:473.986667pt;}
.yc6{bottom:481.986667pt;}
.yf1{bottom:484.386667pt;}
.y2a{bottom:485.986667pt;}
.y59{bottom:489.186667pt;}
.ya9{bottom:489.986667pt;}
.y124{bottom:491.586667pt;}
.y82{bottom:492.386667pt;}
.y104{bottom:497.186667pt;}
.yc5{bottom:500.386667pt;}
.y29{bottom:504.386667pt;}
.y58{bottom:507.586667pt;}
.ya8{bottom:508.386667pt;}
.y123{bottom:509.986667pt;}
.y81{bottom:510.786667pt;}
.yc4{bottom:518.786667pt;}
.y103{bottom:523.586667pt;}
.y57{bottom:525.986667pt;}
.ya7{bottom:526.786667pt;}
.y122{bottom:528.386667pt;}
.y80{bottom:529.186667pt;}
.y28{bottom:530.786667pt;}
.yc3{bottom:537.186667pt;}
.ya6{bottom:545.186667pt;}
.y7f{bottom:547.586667pt;}
.y3e{bottom:548.866667pt;}
.y27{bottom:549.186667pt;}
.y102{bottom:549.986667pt;}
.y56{bottom:552.386667pt;}
.y121{bottom:554.786667pt;}
.yc2{bottom:555.586667pt;}
.ya5{bottom:563.586667pt;}
.y10{bottom:565.986667pt;}
.y26{bottom:567.586667pt;}
.y55{bottom:570.786667pt;}
.y120{bottom:573.186667pt;}
.yc1{bottom:573.986667pt;}
.y101{bottom:576.386667pt;}
.ya4{bottom:581.986667pt;}
.y7e{bottom:584.386667pt;}
.y25{bottom:585.986667pt;}
.y54{bottom:589.186667pt;}
.y11f{bottom:591.586667pt;}
.yc0{bottom:592.386667pt;}
.ya3{bottom:600.413333pt;}
.y7d{bottom:602.813333pt;}
.y24{bottom:604.413333pt;}
.y53{bottom:607.613333pt;}
.ybf{bottom:610.813333pt;}
.y11e{bottom:618.013333pt;}
.ya2{bottom:618.813333pt;}
.yf0{bottom:621.213333pt;}
.y23{bottom:622.813333pt;}
.y52{bottom:626.013333pt;}
.y7c{bottom:629.213333pt;}
.y11d{bottom:636.413333pt;}
.ya1{bottom:637.213333pt;}
.yef{bottom:639.613333pt;}
.y22{bottom:641.213333pt;}
.y7b{bottom:647.613333pt;}
.y51{bottom:652.413333pt;}
.y11c{bottom:654.813333pt;}
.ya0{bottom:655.613333pt;}
.yee{bottom:658.013333pt;}
.y21{bottom:659.613333pt;}
.y7a{bottom:666.013333pt;}
.y50{bottom:670.813333pt;}
.y9f{bottom:674.013333pt;}
.yed{bottom:676.413333pt;}
.y20{bottom:678.013333pt;}
.y11b{bottom:681.213333pt;}
.y79{bottom:684.413333pt;}
.y4f{bottom:689.213333pt;}
.y9e{bottom:692.413333pt;}
.yec{bottom:694.813333pt;}
.y11a{bottom:699.613333pt;}
.y78{bottom:702.813333pt;}
.y1f{bottom:704.413333pt;}
.y4e{bottom:707.613333pt;}
.y9d{bottom:710.813333pt;}
.ye8{bottom:718.813333pt;}
.y77{bottom:721.213333pt;}
.y4d{bottom:726.013333pt;}
.y9c{bottom:729.213333pt;}
.y1e{bottom:730.813333pt;}
.ye7{bottom:737.213333pt;}
.y76{bottom:739.613333pt;}
.y119{bottom:744.413333pt;}
.y9b{bottom:747.613333pt;}
.y4c{bottom:752.413333pt;}
.ye6{bottom:755.613333pt;}
.y1d{bottom:757.213333pt;}
.y75{bottom:758.013333pt;}
.y9a{bottom:766.013333pt;}
.y4b{bottom:770.813333pt;}
.ye5{bottom:774.013333pt;}
.y74{bottom:776.413333pt;}
.y1c{bottom:781.693333pt;}
.y99{bottom:784.413333pt;}
.y4a{bottom:789.213333pt;}
.ye4{bottom:792.413333pt;}
.yeb{bottom:794.813333pt;}
.y1b{bottom:802.013333pt;}
.y73{bottom:802.813333pt;}
.y49{bottom:807.613333pt;}
.ye3{bottom:810.813333pt;}
.yea{bottom:813.253333pt;}
.y118{bottom:815.653333pt;}
.y72{bottom:821.253333pt;}
.y1a{bottom:826.533333pt;}
.ye2{bottom:829.253333pt;}
.y48{bottom:834.053333pt;}
.y71{bottom:839.653333pt;}
.y19{bottom:846.853333pt;}
.ye1{bottom:847.653333pt;}
.y117{bottom:852.453333pt;}
.y70{bottom:858.053333pt;}
.y47{bottom:860.453333pt;}
.ye0{bottom:866.053333pt;}
.y18{bottom:873.253333pt;}
.y6f{bottom:876.453333pt;}
.y116{bottom:878.853333pt;}
.ydf{bottom:884.453333pt;}
.y46{bottom:886.853333pt;}
.y6e{bottom:894.853333pt;}
.y115{bottom:897.253333pt;}
.y17{bottom:899.653333pt;}
.yd5{bottom:902.853333pt;}
.y45{bottom:913.253333pt;}
.y6d{bottom:921.253333pt;}
.y114{bottom:923.653333pt;}
.y15{bottom:926.053333pt;}
.y16{bottom:931.333333pt;}
.y98{bottom:931.653333pt;}
.y44{bottom:939.653333pt;}
.y113{bottom:942.053333pt;}
.y97{bottom:950.053333pt;}
.y14{bottom:952.453333pt;}
.y43{bottom:958.053333pt;}
.ybe{bottom:968.453333pt;}
.y42{bottom:976.453333pt;}
.y13{bottom:978.853333pt;}
.y112{bottom:986.853333pt;}
.y41{bottom:994.853333pt;}
.y12{bottom:1005.253333pt;}
.y40{bottom:1013.253333pt;}
.yc{bottom:1060.640000pt;}
.y7{bottom:1067.520000pt;}
.y5{bottom:1071.360000pt;}
.yb{bottom:1074.560000pt;}
.h4{height:13.920000pt;}
.h2{height:16.000000pt;}
.h9{height:24.960000pt;}
.h11{height:25.120000pt;}
.hf{height:34.374375pt;}
.h5{height:35.200000pt;}
.hd{height:35.782187pt;}
.hb{height:36.766250pt;}
.h8{height:44.327188pt;}
.h10{height:52.834688pt;}
.he{height:53.406250pt;}
.h7{height:53.920000pt;}
.ha{height:54.875000pt;}
.hc{height:57.886250pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w6{width:78.432000pt;}
.w2{width:147.386667pt;}
.w3{width:164.026667pt;}
.w4{width:168.346667pt;}
.w5{width:353.346667pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xb{left:9.600000pt;}
.x8{left:19.360000pt;}
.x6{left:35.200000pt;}
.x3{left:54.560000pt;}
.x9{left:94.431988pt;}
.x13{left:95.711988pt;}
.xc{left:96.671988pt;}
.x18{left:98.751988pt;}
.x15{left:125.471988pt;}
.x5{left:185.146667pt;}
.x10{left:239.866655pt;}
.xd{left:250.626655pt;}
.x12{left:267.906655pt;}
.x17{left:286.466655pt;}
.x16{left:310.946655pt;}
.x4{left:324.066667pt;}
.x14{left:365.666655pt;}
.x11{left:396.866655pt;}
.xe{left:537.693310pt;}
.xf{left:543.133322pt;}
.x1{left:617.733333pt;}
.x7{left:682.533333pt;}
.xa{left:718.213333pt;}
}




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