
    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_7f5cbcdeb54499d573949902.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_b86c6de53cf4123ad28a6289.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_4a8a086605ed9defc36a1e64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_4e31cf7910cd296fb40f31d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_5e743acd2e3c83d92a5af511.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_c8bbc771ab7e329bae6cea78.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_31fd04cba77a142d8f01c1a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v2{vertical-align:-27.360077px;}
.v3{vertical-align:-2.879928px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012094px;}
.ls5{letter-spacing:0.142650px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls7{letter-spacing:34.055251px;}
.ls6{letter-spacing:55.445857px;}
.ls2{letter-spacing:64.085852px;}
.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;}
}
.ws1{word-spacing:-59.762250px;}
.ws3{word-spacing:-18.012770px;}
.ws0{word-spacing:-18.000676px;}
.ws4{word-spacing:-12.060450px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-8.483662px;}
._3{margin-left:-5.040189px;}
._4{margin-left:-3.466112px;}
._1{margin-left:-1.571403px;}
._0{width:1.052651px;}
._f{width:2.597412px;}
._c{width:3.597633px;}
._7{width:5.008232px;}
._5{width:6.480243px;}
._6{width:7.583949px;}
._b{width:8.634864px;}
._9{width:10.019345px;}
._8{width:11.042290px;}
._a{width:12.422998px;}
._16{width:13.515133px;}
._12{width:15.121140px;}
._15{width:16.671555px;}
._e{width:19.406788px;}
._d{width:20.808229px;}
._11{width:22.188181px;}
._10{width:23.200893px;}
._14{width:24.492005px;}
._1a{width:26.641001px;}
._13{width:28.082752px;}
._1d{width:29.441726px;}
._1c{width:30.483020px;}
._1b{width:34.796674px;}
._19{width:36.060524px;}
._18{width:37.204585px;}
._17{width:38.942494px;}
.fc2{color:rgb(11,87,208);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,31,31);}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y81{bottom:93.780121px;}
.y117{bottom:94.140060px;}
.yce{bottom:94.500000px;}
.y136{bottom:99.900055px;}
.ya5{bottom:100.440033px;}
.y27{bottom:104.220016px;}
.y80{bottom:114.480079px;}
.ycd{bottom:115.200096px;}
.ya4{bottom:121.140060px;}
.y116{bottom:123.840088px;}
.y135{bottom:129.600083px;}
.y53{bottom:132.840088px;}
.y26{bottom:133.920043px;}
.y7f{bottom:135.180039px;}
.ycc{bottom:135.900055px;}
.yeb{bottom:139.140060px;}
.ya3{bottom:141.840088px;}
.y115{bottom:144.540047px;}
.y134{bottom:150.300041px;}
.y52{bottom:153.540047px;}
.y25{bottom:154.620072px;}
.y7e{bottom:155.880066px;}
.ycb{bottom:156.600083px;}
.yea{bottom:159.840088px;}
.ya2{bottom:162.540047px;}
.y114{bottom:165.240074px;}
.y133{bottom:171.000068px;}
.y51{bottom:174.240074px;}
.y24{bottom:175.320099px;}
.y7d{bottom:176.580093px;}
.yca{bottom:177.300041px;}
.ye9{bottom:180.540047px;}
.ya1{bottom:183.240074px;}
.y113{bottom:185.940033px;}
.y132{bottom:191.700096px;}
.y50{bottom:194.940033px;}
.y23{bottom:196.020058px;}
.y7c{bottom:197.280052px;}
.ya0{bottom:203.940033px;}
.y112{bottom:206.640060px;}
.yc9{bottom:207.000068px;}
.y131{bottom:212.400055px;}
.y22{bottom:216.720085px;}
.y7b{bottom:217.980079px;}
.ye8{bottom:219.240074px;}
.y4f{bottom:224.640060px;}
.y111{bottom:227.340088px;}
.yc8{bottom:227.700096px;}
.y130{bottom:233.100083px;}
.y9f{bottom:233.640060px;}
.y21{bottom:237.420043px;}
.y7a{bottom:238.680039px;}
.ye7{bottom:239.940033px;}
.y110{bottom:248.040047px;}
.yc7{bottom:248.400055px;}
.y12f{bottom:253.800041px;}
.y4e{bottom:254.340088px;}
.y20{bottom:258.120072px;}
.y79{bottom:259.380066px;}
.ye6{bottom:260.640060px;}
.y9e{bottom:263.340088px;}
.y12e{bottom:274.500068px;}
.y10f{bottom:277.740074px;}
.yc6{bottom:278.100083px;}
.y1f{bottom:278.820099px;}
.y78{bottom:280.080093px;}
.ye5{bottom:281.340088px;}
.y4d{bottom:284.040047px;}
.y9d{bottom:293.040047px;}
.y12d{bottom:295.200096px;}
.y1e{bottom:299.520058px;}
.y77{bottom:300.780052px;}
.ye4{bottom:302.040047px;}
.y4c{bottom:304.740074px;}
.y10e{bottom:307.440033px;}
.yc5{bottom:307.800041px;}
.y9c{bottom:313.740074px;}
.y12c{bottom:315.900055px;}
.y1d{bottom:320.220085px;}
.y76{bottom:321.480079px;}
.ye3{bottom:322.740074px;}
.y4b{bottom:325.440033px;}
.y10d{bottom:328.140060px;}
.yc4{bottom:328.500068px;}
.y9b{bottom:334.440033px;}
.y12b{bottom:336.600083px;}
.y75{bottom:342.000068px;}
.ye2{bottom:343.440033px;}
.y4a{bottom:346.140060px;}
.y10c{bottom:348.840088px;}
.yc3{bottom:349.200096px;}
.y1c{bottom:349.920043px;}
.y9a{bottom:355.140060px;}
.y12a{bottom:357.300041px;}
.y74{bottom:362.700096px;}
.ye1{bottom:364.140060px;}
.y49{bottom:366.840088px;}
.y10b{bottom:369.540047px;}
.yc2{bottom:369.900055px;}
.y1b{bottom:370.620072px;}
.y99{bottom:375.840088px;}
.y129{bottom:378.000068px;}
.y73{bottom:383.400055px;}
.ye0{bottom:384.840088px;}
.y48{bottom:387.540047px;}
.y10a{bottom:390.240074px;}
.yc1{bottom:390.600083px;}
.y98{bottom:396.540047px;}
.y128{bottom:398.700096px;}
.y1a{bottom:400.320099px;}
.y72{bottom:404.100083px;}
.ydf{bottom:405.540047px;}
.y109{bottom:410.940033px;}
.yc0{bottom:411.300041px;}
.y47{bottom:417.240074px;}
.y127{bottom:419.400055px;}
.y71{bottom:424.800041px;}
.yde{bottom:426.240074px;}
.y19{bottom:430.020058px;}
.ybf{bottom:432.000068px;}
.y46{bottom:437.940033px;}
.y126{bottom:440.100083px;}
.y108{bottom:440.640060px;}
.ydd{bottom:446.940033px;}
.y18{bottom:450.720085px;}
.ybe{bottom:452.700096px;}
.y70{bottom:454.500068px;}
.y107{bottom:461.340088px;}
.y45{bottom:467.640060px;}
.y125{bottom:469.800041px;}
.y17{bottom:471.420043px;}
.ybd{bottom:473.400055px;}
.y6f{bottom:484.200096px;}
.ydc{bottom:488.340088px;}
.y106{bottom:491.040047px;}
.y16{bottom:492.120072px;}
.ybc{bottom:494.100083px;}
.y44{bottom:497.340088px;}
.y124{bottom:499.320099px;}
.y6e{bottom:504.900055px;}
.ydb{bottom:509.040047px;}
.ybb{bottom:514.800041px;}
.y43{bottom:518.040047px;}
.y105{bottom:520.740074px;}
.y6d{bottom:525.600083px;}
.y97{bottom:527.040047px;}
.y14b{bottom:528.660049px;}
.yda{bottom:529.740074px;}
.y15{bottom:530.820099px;}
.y42{bottom:538.740074px;}
.y123{bottom:541.080093px;}
.y104{bottom:541.440033px;}
.yba{bottom:544.320099px;}
.y6c{bottom:546.300041px;}
.y96{bottom:547.740074px;}
.yd9{bottom:550.440033px;}
.y41{bottom:559.440033px;}
.y122{bottom:561.780052px;}
.y103{bottom:562.140060px;}
.y14a{bottom:563.040047px;}
.y6b{bottom:567.000068px;}
.y95{bottom:568.440033px;}
.yd8{bottom:571.140060px;}
.y14{bottom:572.400055px;}
.y40{bottom:580.140060px;}
.y121{bottom:582.480079px;}
.y102{bottom:582.840088px;}
.yb9{bottom:583.020058px;}
.y149{bottom:583.740074px;}
.y6a{bottom:587.700096px;}
.y94{bottom:589.140060px;}
.yd7{bottom:591.840088px;}
.y13{bottom:593.100083px;}
.y3f{bottom:600.840088px;}
.y101{bottom:603.540047px;}
.y148{bottom:604.440033px;}
.y69{bottom:608.400055px;}
.y93{bottom:609.840088px;}
.y12{bottom:613.800041px;}
.y3e{bottom:621.540047px;}
.y100{bottom:624.240074px;}
.yb8{bottom:624.780052px;}
.y147{bottom:625.140060px;}
.y68{bottom:629.100083px;}
.y92{bottom:630.540047px;}
.y11{bottom:634.500068px;}
.yd6{bottom:642.240074px;}
.yff{bottom:644.940033px;}
.yb7{bottom:645.480079px;}
.y146{bottom:645.840088px;}
.y67{bottom:649.800041px;}
.y3d{bottom:651.240074px;}
.y10{bottom:655.200096px;}
.yfe{bottom:665.640060px;}
.yb6{bottom:666.180039px;}
.y145{bottom:666.540047px;}
.y66{bottom:670.500068px;}
.y91{bottom:671.940033px;}
.yf{bottom:675.900055px;}
.y3c{bottom:680.940033px;}
.y120{bottom:686.340088px;}
.yb5{bottom:686.880066px;}
.y144{bottom:687.240074px;}
.y65{bottom:691.200061px;}
.y90{bottom:692.640060px;}
.yfd{bottom:695.340054px;}
.ye{bottom:696.600083px;}
.yd5{bottom:701.640060px;}
.y11f{bottom:707.040081px;}
.yb4{bottom:707.580059px;}
.y143{bottom:707.940067px;}
.y3b{bottom:710.640060px;}
.y64{bottom:711.900055px;}
.y8f{bottom:713.340054px;}
.yd{bottom:717.300076px;}
.yd4{bottom:722.340054px;}
.yfc{bottom:725.040081px;}
.y11e{bottom:727.740074px;}
.y142{bottom:728.640060px;}
.y3a{bottom:731.340054px;}
.y63{bottom:732.600083px;}
.y8e{bottom:734.040081px;}
.yc{bottom:738.000068px;}
.yd3{bottom:743.040081px;}
.yfb{bottom:745.740074px;}
.y11d{bottom:748.440067px;}
.yb3{bottom:749.340054px;}
.y39{bottom:752.040081px;}
.y62{bottom:753.300076px;}
.y141{bottom:758.340054px;}
.yb{bottom:758.700061px;}
.y8d{bottom:763.740074px;}
.yfa{bottom:766.440067px;}
.y11c{bottom:769.140060px;}
.yb2{bottom:770.040081px;}
.y38{bottom:772.740074px;}
.y61{bottom:774.000068px;}
.ya{bottom:779.400055px;}
.yd2{bottom:784.440067px;}
.yf9{bottom:787.140060px;}
.y140{bottom:788.040081px;}
.y11b{bottom:789.840054px;}
.yb1{bottom:790.740074px;}
.y37{bottom:793.440067px;}
.y60{bottom:794.700061px;}
.y8c{bottom:802.440067px;}
.yd1{bottom:805.140060px;}
.yf8{bottom:807.840054px;}
.y13f{bottom:808.740074px;}
.yb0{bottom:811.440067px;}
.y36{bottom:814.140060px;}
.y5f{bottom:815.400055px;}
.y9{bottom:818.100083px;}
.y8b{bottom:823.140060px;}
.yd0{bottom:825.840054px;}
.yf7{bottom:828.540081px;}
.y13e{bottom:829.440067px;}
.y11a{bottom:831.420078px;}
.yaf{bottom:832.140060px;}
.y35{bottom:834.840054px;}
.y5e{bottom:836.100083px;}
.ycf{bottom:846.540081px;}
.yf6{bottom:849.240074px;}
.y13d{bottom:850.140060px;}
.y119{bottom:852.120072px;}
.yae{bottom:852.840054px;}
.y34{bottom:855.540081px;}
.y8{bottom:857.520058px;}
.y8a{bottom:861.840054px;}
.y5d{bottom:865.800076px;}
.yf5{bottom:869.940067px;}
.y13c{bottom:870.840054px;}
.yad{bottom:873.540081px;}
.y33{bottom:876.240074px;}
.y89{bottom:882.540081px;}
.y5c{bottom:886.500068px;}
.yf4{bottom:890.640060px;}
.y13b{bottom:891.540081px;}
.y118{bottom:893.880066px;}
.yac{bottom:894.240074px;}
.y7{bottom:899.640060px;}
.y88{bottom:903.240074px;}
.y32{bottom:905.940067px;}
.y5b{bottom:907.200061px;}
.yf3{bottom:911.340054px;}
.y13a{bottom:912.240074px;}
.yab{bottom:914.940067px;}
.y87{bottom:923.940067px;}
.yf2{bottom:932.040081px;}
.y139{bottom:932.940067px;}
.y31{bottom:935.640060px;}
.y5a{bottom:936.900055px;}
.y86{bottom:944.640060px;}
.y6{bottom:949.860077px;}
.y138{bottom:953.640060px;}
.yaa{bottom:956.340054px;}
.yf1{bottom:961.740074px;}
.y30{bottom:965.340054px;}
.y137{bottom:974.340054px;}
.y59{bottom:975.600065px;}
.ya9{bottom:977.040064px;}
.y2f{bottom:986.040064px;}
.y5{bottom:986.220068px;}
.y85{bottom:995.040064px;}
.ya8{bottom:997.740074px;}
.yf0{bottom:1000.440067px;}
.y2e{bottom:1006.740074px;}
.y58{bottom:1014.300058px;}
.y84{bottom:1015.740074px;}
.ya7{bottom:1018.440067px;}
.yef{bottom:1021.140060px;}
.y2d{bottom:1027.440067px;}
.y4{bottom:1027.980063px;}
.y83{bottom:1036.440067px;}
.ya6{bottom:1039.140060px;}
.y2c{bottom:1048.140060px;}
.y57{bottom:1049.400072px;}
.y82{bottom:1057.140060px;}
.yee{bottom:1059.840070px;}
.y3{bottom:1066.680073px;}
.y2b{bottom:1068.840070px;}
.y56{bottom:1077.840070px;}
.yed{bottom:1080.540064px;}
.y2a{bottom:1089.540064px;}
.y55{bottom:1098.540064px;}
.yec{bottom:1101.240074px;}
.y2{bottom:1106.640060px;}
.y29{bottom:1110.240074px;}
.y54{bottom:1119.240066px;}
.y1{bottom:1134.360068px;}
.y28{bottom:1139.940067px;}
.h6{height:42.329353px;}
.h3{height:52.138677px;}
.ha{height:52.419938px;}
.h7{height:57.412496px;}
.hb{height:59.345979px;}
.h4{height:63.178154px;}
.h2{height:69.344443px;}
.h8{height:69.689290px;}
.h9{height:69.689294px;}
.h5{height:69.689362px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x7{left:90.000000px;}
.x2{left:111.959997px;}
.x3{left:138.959997px;}
.x4{left:165.960005px;}
.x6{left:192.960005px;}
.x5{left:205.560001px;}
.x8{left:332.639992px;}
@media print{
.v2{vertical-align:-24.320068pt;}
.v3{vertical-align:-2.559936pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010750pt;}
.ls5{letter-spacing:0.126800pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls7{letter-spacing:30.271334pt;}
.ls6{letter-spacing:49.285206pt;}
.ls2{letter-spacing:56.965202pt;}
.ws1{word-spacing:-53.122000pt;}
.ws3{word-spacing:-16.011351pt;}
.ws0{word-spacing:-16.000601pt;}
.ws4{word-spacing:-10.720400pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-7.541033pt;}
._3{margin-left:-4.480168pt;}
._4{margin-left:-3.080988pt;}
._1{margin-left:-1.396802pt;}
._0{width:0.935690pt;}
._f{width:2.308811pt;}
._c{width:3.197896pt;}
._7{width:4.451762pt;}
._5{width:5.760216pt;}
._6{width:6.741288pt;}
._b{width:7.675434pt;}
._9{width:8.906085pt;}
._8{width:9.815369pt;}
._a{width:11.042665pt;}
._16{width:12.013451pt;}
._12{width:13.441013pt;}
._15{width:14.819160pt;}
._e{width:17.250478pt;}
._d{width:18.496203pt;}
._11{width:19.722827pt;}
._10{width:20.623016pt;}
._14{width:21.770671pt;}
._1a{width:23.680889pt;}
._13{width:24.962446pt;}
._1d{width:26.170423pt;}
._1c{width:27.096018pt;}
._1b{width:30.930377pt;}
._19{width:32.053799pt;}
._18{width:33.070742pt;}
._17{width:34.615550pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:83.360108pt;}
.y117{bottom:83.680054pt;}
.yce{bottom:84.000000pt;}
.y136{bottom:88.800049pt;}
.ya5{bottom:89.280030pt;}
.y27{bottom:92.640015pt;}
.y80{bottom:101.760071pt;}
.ycd{bottom:102.400086pt;}
.ya4{bottom:107.680054pt;}
.y116{bottom:110.080079pt;}
.y135{bottom:115.200074pt;}
.y53{bottom:118.080079pt;}
.y26{bottom:119.040039pt;}
.y7f{bottom:120.160035pt;}
.ycc{bottom:120.800049pt;}
.yeb{bottom:123.680054pt;}
.ya3{bottom:126.080079pt;}
.y115{bottom:128.480042pt;}
.y134{bottom:133.600037pt;}
.y52{bottom:136.480042pt;}
.y25{bottom:137.440064pt;}
.y7e{bottom:138.560059pt;}
.ycb{bottom:139.200074pt;}
.yea{bottom:142.080079pt;}
.ya2{bottom:144.480042pt;}
.y114{bottom:146.880066pt;}
.y133{bottom:152.000061pt;}
.y51{bottom:154.880066pt;}
.y24{bottom:155.840088pt;}
.y7d{bottom:156.960083pt;}
.yca{bottom:157.600037pt;}
.ye9{bottom:160.480042pt;}
.ya1{bottom:162.880066pt;}
.y113{bottom:165.280030pt;}
.y132{bottom:170.400086pt;}
.y50{bottom:173.280030pt;}
.y23{bottom:174.240052pt;}
.y7c{bottom:175.360047pt;}
.ya0{bottom:181.280030pt;}
.y112{bottom:183.680054pt;}
.yc9{bottom:184.000061pt;}
.y131{bottom:188.800049pt;}
.y22{bottom:192.640076pt;}
.y7b{bottom:193.760071pt;}
.ye8{bottom:194.880066pt;}
.y4f{bottom:199.680054pt;}
.y111{bottom:202.080079pt;}
.yc8{bottom:202.400086pt;}
.y130{bottom:207.200074pt;}
.y9f{bottom:207.680054pt;}
.y21{bottom:211.040039pt;}
.y7a{bottom:212.160035pt;}
.ye7{bottom:213.280030pt;}
.y110{bottom:220.480042pt;}
.yc7{bottom:220.800049pt;}
.y12f{bottom:225.600037pt;}
.y4e{bottom:226.080079pt;}
.y20{bottom:229.440064pt;}
.y79{bottom:230.560059pt;}
.ye6{bottom:231.680054pt;}
.y9e{bottom:234.080079pt;}
.y12e{bottom:244.000061pt;}
.y10f{bottom:246.880066pt;}
.yc6{bottom:247.200074pt;}
.y1f{bottom:247.840088pt;}
.y78{bottom:248.960083pt;}
.ye5{bottom:250.080079pt;}
.y4d{bottom:252.480042pt;}
.y9d{bottom:260.480042pt;}
.y12d{bottom:262.400086pt;}
.y1e{bottom:266.240052pt;}
.y77{bottom:267.360047pt;}
.ye4{bottom:268.480042pt;}
.y4c{bottom:270.880066pt;}
.y10e{bottom:273.280030pt;}
.yc5{bottom:273.600037pt;}
.y9c{bottom:278.880066pt;}
.y12c{bottom:280.800049pt;}
.y1d{bottom:284.640076pt;}
.y76{bottom:285.760071pt;}
.ye3{bottom:286.880066pt;}
.y4b{bottom:289.280030pt;}
.y10d{bottom:291.680054pt;}
.yc4{bottom:292.000061pt;}
.y9b{bottom:297.280030pt;}
.y12b{bottom:299.200074pt;}
.y75{bottom:304.000061pt;}
.ye2{bottom:305.280030pt;}
.y4a{bottom:307.680054pt;}
.y10c{bottom:310.080079pt;}
.yc3{bottom:310.400086pt;}
.y1c{bottom:311.040039pt;}
.y9a{bottom:315.680054pt;}
.y12a{bottom:317.600037pt;}
.y74{bottom:322.400086pt;}
.ye1{bottom:323.680054pt;}
.y49{bottom:326.080079pt;}
.y10b{bottom:328.480042pt;}
.yc2{bottom:328.800049pt;}
.y1b{bottom:329.440064pt;}
.y99{bottom:334.080079pt;}
.y129{bottom:336.000061pt;}
.y73{bottom:340.800049pt;}
.ye0{bottom:342.080079pt;}
.y48{bottom:344.480042pt;}
.y10a{bottom:346.880066pt;}
.yc1{bottom:347.200074pt;}
.y98{bottom:352.480042pt;}
.y128{bottom:354.400086pt;}
.y1a{bottom:355.840088pt;}
.y72{bottom:359.200074pt;}
.ydf{bottom:360.480042pt;}
.y109{bottom:365.280030pt;}
.yc0{bottom:365.600037pt;}
.y47{bottom:370.880066pt;}
.y127{bottom:372.800049pt;}
.y71{bottom:377.600037pt;}
.yde{bottom:378.880066pt;}
.y19{bottom:382.240052pt;}
.ybf{bottom:384.000061pt;}
.y46{bottom:389.280030pt;}
.y126{bottom:391.200074pt;}
.y108{bottom:391.680054pt;}
.ydd{bottom:397.280030pt;}
.y18{bottom:400.640076pt;}
.ybe{bottom:402.400086pt;}
.y70{bottom:404.000061pt;}
.y107{bottom:410.080079pt;}
.y45{bottom:415.680054pt;}
.y125{bottom:417.600037pt;}
.y17{bottom:419.040039pt;}
.ybd{bottom:420.800049pt;}
.y6f{bottom:430.400086pt;}
.ydc{bottom:434.080079pt;}
.y106{bottom:436.480042pt;}
.y16{bottom:437.440064pt;}
.ybc{bottom:439.200074pt;}
.y44{bottom:442.080079pt;}
.y124{bottom:443.840088pt;}
.y6e{bottom:448.800049pt;}
.ydb{bottom:452.480042pt;}
.ybb{bottom:457.600037pt;}
.y43{bottom:460.480042pt;}
.y105{bottom:462.880066pt;}
.y6d{bottom:467.200074pt;}
.y97{bottom:468.480042pt;}
.y14b{bottom:469.920044pt;}
.yda{bottom:470.880066pt;}
.y15{bottom:471.840088pt;}
.y42{bottom:478.880066pt;}
.y123{bottom:480.960083pt;}
.y104{bottom:481.280030pt;}
.yba{bottom:483.840088pt;}
.y6c{bottom:485.600037pt;}
.y96{bottom:486.880066pt;}
.yd9{bottom:489.280030pt;}
.y41{bottom:497.280030pt;}
.y122{bottom:499.360047pt;}
.y103{bottom:499.680054pt;}
.y14a{bottom:500.480042pt;}
.y6b{bottom:504.000061pt;}
.y95{bottom:505.280030pt;}
.yd8{bottom:507.680054pt;}
.y14{bottom:508.800049pt;}
.y40{bottom:515.680054pt;}
.y121{bottom:517.760071pt;}
.y102{bottom:518.080079pt;}
.yb9{bottom:518.240052pt;}
.y149{bottom:518.880066pt;}
.y6a{bottom:522.400086pt;}
.y94{bottom:523.680054pt;}
.yd7{bottom:526.080079pt;}
.y13{bottom:527.200074pt;}
.y3f{bottom:534.080079pt;}
.y101{bottom:536.480042pt;}
.y148{bottom:537.280030pt;}
.y69{bottom:540.800049pt;}
.y93{bottom:542.080079pt;}
.y12{bottom:545.600037pt;}
.y3e{bottom:552.480042pt;}
.y100{bottom:554.880066pt;}
.yb8{bottom:555.360047pt;}
.y147{bottom:555.680054pt;}
.y68{bottom:559.200074pt;}
.y92{bottom:560.480042pt;}
.y11{bottom:564.000061pt;}
.yd6{bottom:570.880066pt;}
.yff{bottom:573.280030pt;}
.yb7{bottom:573.760071pt;}
.y146{bottom:574.080079pt;}
.y67{bottom:577.600037pt;}
.y3d{bottom:578.880066pt;}
.y10{bottom:582.400086pt;}
.yfe{bottom:591.680054pt;}
.yb6{bottom:592.160035pt;}
.y145{bottom:592.480042pt;}
.y66{bottom:596.000061pt;}
.y91{bottom:597.280030pt;}
.yf{bottom:600.800049pt;}
.y3c{bottom:605.280030pt;}
.y120{bottom:610.080079pt;}
.yb5{bottom:610.560059pt;}
.y144{bottom:610.880066pt;}
.y65{bottom:614.400055pt;}
.y90{bottom:615.680054pt;}
.yfd{bottom:618.080048pt;}
.ye{bottom:619.200074pt;}
.yd5{bottom:623.680054pt;}
.y11f{bottom:628.480072pt;}
.yb4{bottom:628.960053pt;}
.y143{bottom:629.280060pt;}
.y3b{bottom:631.680054pt;}
.y64{bottom:632.800049pt;}
.y8f{bottom:634.080048pt;}
.yd{bottom:637.600068pt;}
.yd4{bottom:642.080048pt;}
.yfc{bottom:644.480072pt;}
.y11e{bottom:646.880066pt;}
.y142{bottom:647.680054pt;}
.y3a{bottom:650.080048pt;}
.y63{bottom:651.200074pt;}
.y8e{bottom:652.480072pt;}
.yc{bottom:656.000061pt;}
.yd3{bottom:660.480072pt;}
.yfb{bottom:662.880066pt;}
.y11d{bottom:665.280060pt;}
.yb3{bottom:666.080048pt;}
.y39{bottom:668.480072pt;}
.y62{bottom:669.600068pt;}
.y141{bottom:674.080048pt;}
.yb{bottom:674.400055pt;}
.y8d{bottom:678.880066pt;}
.yfa{bottom:681.280060pt;}
.y11c{bottom:683.680054pt;}
.yb2{bottom:684.480072pt;}
.y38{bottom:686.880066pt;}
.y61{bottom:688.000061pt;}
.ya{bottom:692.800049pt;}
.yd2{bottom:697.280060pt;}
.yf9{bottom:699.680054pt;}
.y140{bottom:700.480072pt;}
.y11b{bottom:702.080048pt;}
.yb1{bottom:702.880066pt;}
.y37{bottom:705.280060pt;}
.y60{bottom:706.400055pt;}
.y8c{bottom:713.280060pt;}
.yd1{bottom:715.680054pt;}
.yf8{bottom:718.080048pt;}
.y13f{bottom:718.880066pt;}
.yb0{bottom:721.280060pt;}
.y36{bottom:723.680054pt;}
.y5f{bottom:724.800049pt;}
.y9{bottom:727.200074pt;}
.y8b{bottom:731.680054pt;}
.yd0{bottom:734.080048pt;}
.yf7{bottom:736.480072pt;}
.y13e{bottom:737.280060pt;}
.y11a{bottom:739.040070pt;}
.yaf{bottom:739.680054pt;}
.y35{bottom:742.080048pt;}
.y5e{bottom:743.200074pt;}
.ycf{bottom:752.480072pt;}
.yf6{bottom:754.880066pt;}
.y13d{bottom:755.680054pt;}
.y119{bottom:757.440064pt;}
.yae{bottom:758.080048pt;}
.y34{bottom:760.480072pt;}
.y8{bottom:762.240052pt;}
.y8a{bottom:766.080048pt;}
.y5d{bottom:769.600068pt;}
.yf5{bottom:773.280060pt;}
.y13c{bottom:774.080048pt;}
.yad{bottom:776.480072pt;}
.y33{bottom:778.880066pt;}
.y89{bottom:784.480072pt;}
.y5c{bottom:788.000061pt;}
.yf4{bottom:791.680054pt;}
.y13b{bottom:792.480072pt;}
.y118{bottom:794.560059pt;}
.yac{bottom:794.880066pt;}
.y7{bottom:799.680054pt;}
.y88{bottom:802.880066pt;}
.y32{bottom:805.280060pt;}
.y5b{bottom:806.400055pt;}
.yf3{bottom:810.080048pt;}
.y13a{bottom:810.880066pt;}
.yab{bottom:813.280060pt;}
.y87{bottom:821.280060pt;}
.yf2{bottom:828.480072pt;}
.y139{bottom:829.280060pt;}
.y31{bottom:831.680054pt;}
.y5a{bottom:832.800049pt;}
.y86{bottom:839.680054pt;}
.y6{bottom:844.320069pt;}
.y138{bottom:847.680054pt;}
.yaa{bottom:850.080048pt;}
.yf1{bottom:854.880066pt;}
.y30{bottom:858.080048pt;}
.y137{bottom:866.080048pt;}
.y59{bottom:867.200058pt;}
.ya9{bottom:868.480057pt;}
.y2f{bottom:876.480057pt;}
.y5{bottom:876.640061pt;}
.y85{bottom:884.480057pt;}
.ya8{bottom:886.880066pt;}
.yf0{bottom:889.280060pt;}
.y2e{bottom:894.880066pt;}
.y58{bottom:901.600052pt;}
.y84{bottom:902.880066pt;}
.ya7{bottom:905.280060pt;}
.yef{bottom:907.680054pt;}
.y2d{bottom:913.280060pt;}
.y4{bottom:913.760056pt;}
.y83{bottom:921.280060pt;}
.ya6{bottom:923.680054pt;}
.y2c{bottom:931.680054pt;}
.y57{bottom:932.800064pt;}
.y82{bottom:939.680054pt;}
.yee{bottom:942.080063pt;}
.y3{bottom:948.160065pt;}
.y2b{bottom:950.080063pt;}
.y56{bottom:958.080063pt;}
.yed{bottom:960.480057pt;}
.y2a{bottom:968.480057pt;}
.y55{bottom:976.480057pt;}
.yec{bottom:978.880066pt;}
.y2{bottom:983.680054pt;}
.y29{bottom:986.880066pt;}
.y54{bottom:994.880059pt;}
.y1{bottom:1008.320061pt;}
.y28{bottom:1013.280060pt;}
.h6{height:37.626091pt;}
.h3{height:46.345491pt;}
.ha{height:46.595500pt;}
.h7{height:51.033330pt;}
.hb{height:52.751981pt;}
.h4{height:56.158359pt;}
.h2{height:61.639505pt;}
.h8{height:61.946035pt;}
.h9{height:61.946039pt;}
.h5{height:61.946099pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x7{left:80.000000pt;}
.x2{left:99.519997pt;}
.x3{left:123.519997pt;}
.x4{left:147.520004pt;}
.x6{left:171.520004pt;}
.x5{left:182.720001pt;}
.x8{left:295.679993pt;}
}




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