
    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_b3e7a47c97d9325b11da7379.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.272949;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_c530c7de621db39b5a829335.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_446955f8d75b5668d07a0d4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bc0df7648b54cba80f47e52c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.724033px;}
.ls1{letter-spacing:0.724897px;}
.ls3{letter-spacing:33.274658px;}
.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:-18.000000px;}
.ws3{word-spacing:-15.120000px;}
.ws2{word-spacing:-11.880000px;}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-4.945158px;}
._12{margin-left:-3.527481px;}
._2{margin-left:-2.149851px;}
._1{margin-left:-1.080000px;}
._0{width:1.440000px;}
._4{width:2.756022px;}
._b{width:4.184936px;}
._a{width:5.294811px;}
._17{width:6.416025px;}
._5{width:7.499520px;}
._6{width:8.789622px;}
._9{width:10.504052px;}
._7{width:11.701302px;}
._8{width:12.732618px;}
._16{width:13.901817px;}
._1b{width:15.135453px;}
._e{width:16.532369px;}
._d{width:19.945786px;}
._c{width:21.733851px;}
._11{width:23.178796px;}
._10{width:24.243702px;}
._f{width:25.909851px;}
._13{width:27.103680px;}
._14{width:28.334408px;}
._15{width:29.692500px;}
._1d{width:31.276386px;}
._18{width:32.400000px;}
._19{width:33.459183px;}
._1a{width:34.539702px;}
._3{width:38.480301px;}
._1e{width:40.351680px;}
._20{width:41.939623px;}
._1f{width:43.117851px;}
._21{width:45.339702px;}
._22{width:46.388057px;}
._1c{width:73.979105px;}
._28{width:233.569056px;}
._27{width:234.637851px;}
._26{width:284.101332px;}
._25{width:285.181851px;}
._24{width:288.329829px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs0{font-size:66.239400px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.960000px;}
.y1{bottom:77.760000px;}
.y8b{bottom:110.160000px;}
.ya6{bottom:123.479850px;}
.y65{bottom:128.160000px;}
.y36{bottom:130.680000px;}
.y8a{bottom:134.280000px;}
.yed{bottom:138.240000px;}
.y12c{bottom:141.840000px;}
.ya5{bottom:144.000000px;}
.yd1{bottom:144.720000px;}
.y89{bottom:145.439850px;}
.y64{bottom:149.040000px;}
.y35{bottom:151.560000px;}
.yd0{bottom:162.000000px;}
.y12b{bottom:162.360000px;}
.ya4{bottom:164.880000px;}
.y63{bottom:169.560000px;}
.y34{bottom:172.080000px;}
.yec{bottom:173.880000px;}
.y12a{bottom:183.240000px;}
.y109{bottom:183.600000px;}
.ya3{bottom:185.400000px;}
.ycf{bottom:186.120000px;}
.y62{bottom:190.440000px;}
.y33{bottom:192.960000px;}
.yce{bottom:197.280000px;}
.y108{bottom:204.480000px;}
.ya2{bottom:205.560000px;}
.yeb{bottom:209.520000px;}
.y61{bottom:210.960000px;}
.y32{bottom:213.480000px;}
.y129{bottom:218.880000px;}
.ya1{bottom:219.240000px;}
.y107{bottom:225.000000px;}
.ycd{bottom:229.680000px;}
.y60{bottom:231.840000px;}
.y31{bottom:234.360000px;}
.y128{bottom:239.400000px;}
.yea{bottom:245.160000px;}
.ycc{bottom:250.560000px;}
.y5f{bottom:252.360000px;}
.y30{bottom:254.880000px;}
.y127{bottom:260.280000px;}
.y106{bottom:261.000000px;}
.y88{bottom:261.720000px;}
.ycb{bottom:271.080000px;}
.y5e{bottom:273.240000px;}
.y2f{bottom:275.760000px;}
.ye9{bottom:280.800000px;}
.y105{bottom:281.520000px;}
.y87{bottom:282.600000px;}
.yca{bottom:291.600000px;}
.y5d{bottom:293.760000px;}
.y2e{bottom:296.280000px;}
.y126{bottom:301.680000px;}
.y86{bottom:303.120000px;}
.yc9{bottom:312.480000px;}
.y5c{bottom:314.640000px;}
.ye8{bottom:316.800000px;}
.y2d{bottom:317.160000px;}
.y125{bottom:322.200000px;}
.y85{bottom:324.000000px;}
.yc8{bottom:333.000000px;}
.y5b{bottom:335.160000px;}
.y2c{bottom:337.680000px;}
.y104{bottom:338.040000px;}
.y124{bottom:343.080000px;}
.y84{bottom:344.520000px;}
.ye7{bottom:352.440000px;}
.yc7{bottom:353.880000px;}
.y5a{bottom:356.040000px;}
.y2b{bottom:358.560000px;}
.y123{bottom:363.600000px;}
.y83{bottom:365.400000px;}
.y103{bottom:373.680000px;}
.yc6{bottom:374.400000px;}
.y59{bottom:376.560000px;}
.y2a{bottom:379.080000px;}
.y122{bottom:384.480000px;}
.y82{bottom:385.920000px;}
.ye6{bottom:388.080000px;}
.ya0{bottom:392.400000px;}
.y102{bottom:394.200000px;}
.yc5{bottom:395.280000px;}
.y58{bottom:397.440000px;}
.y29{bottom:399.960000px;}
.y81{bottom:406.800000px;}
.ye5{bottom:408.600000px;}
.y9f{bottom:412.920000px;}
.yc4{bottom:415.800000px;}
.y57{bottom:417.960000px;}
.y121{bottom:420.120000px;}
.y28{bottom:420.480000px;}
.y80{bottom:427.320000px;}
.y101{bottom:430.200000px;}
.y9e{bottom:433.800000px;}
.yc3{bottom:436.680000px;}
.y56{bottom:438.840000px;}
.y120{bottom:441.000000px;}
.y27{bottom:441.360000px;}
.ye4{bottom:444.600000px;}
.y7f{bottom:448.200000px;}
.y100{bottom:450.720000px;}
.y9d{bottom:454.320000px;}
.yc2{bottom:457.200000px;}
.y55{bottom:459.360000px;}
.y11f{bottom:461.520000px;}
.y26{bottom:461.880000px;}
.ye3{bottom:465.120000px;}
.y7e{bottom:468.720000px;}
.y9c{bottom:475.200000px;}
.yc1{bottom:478.080000px;}
.y54{bottom:480.240000px;}
.y25{bottom:482.760000px;}
.yff{bottom:486.360000px;}
.y7d{bottom:489.600000px;}
.y9b{bottom:495.720000px;}
.y11e{bottom:496.800000px;}
.yc0{bottom:498.600000px;}
.y53{bottom:500.760000px;}
.y24{bottom:502.560000px;}
.yfe{bottom:507.240000px;}
.y7c{bottom:510.120000px;}
.y9a{bottom:516.600000px;}
.ybf{bottom:519.480000px;}
.y23{bottom:520.200000px;}
.y52{bottom:521.640000px;}
.y7b{bottom:531.000000px;}
.y11d{bottom:532.800000px;}
.ye2{bottom:536.400000px;}
.y99{bottom:537.120000px;}
.y22{bottom:537.480000px;}
.ybe{bottom:540.000000px;}
.y51{bottom:542.160000px;}
.yfd{bottom:542.880000px;}
.y7a{bottom:551.520000px;}
.y21{bottom:554.400000px;}
.ye1{bottom:557.280000px;}
.y98{bottom:558.000000px;}
.ybd{bottom:560.880000px;}
.y50{bottom:563.040000px;}
.yfc{bottom:563.400000px;}
.y11c{bottom:568.800000px;}
.y20{bottom:571.680000px;}
.y79{bottom:572.400000px;}
.ye0{bottom:577.800000px;}
.ybc{bottom:581.400000px;}
.y4f{bottom:583.560000px;}
.y1f{bottom:588.960000px;}
.y11b{bottom:589.320000px;}
.y78{bottom:592.920000px;}
.y97{bottom:593.280000px;}
.ydf{bottom:598.680000px;}
.yfb{bottom:599.400000px;}
.ybb{bottom:602.280000px;}
.y136{bottom:604.440000px;}
.y1e{bottom:605.880000px;}
.y11a{bottom:610.200000px;}
.y77{bottom:613.800000px;}
.y4e{bottom:618.840000px;}
.yde{bottom:619.200000px;}
.yfa{bottom:619.920000px;}
.yba{bottom:622.800000px;}
.y1d{bottom:623.880000px;}
.y135{bottom:624.960000px;}
.y119{bottom:630.720000px;}
.y76{bottom:634.320000px;}
.ydd{bottom:640.080000px;}
.yf9{bottom:640.800000px;}
.y1c{bottom:641.880000px;}
.yb9{bottom:643.680000px;}
.y134{bottom:645.840000px;}
.y96{bottom:649.440000px;}
.y118{bottom:651.600000px;}
.y4d{bottom:655.200000px;}
.y1b{bottom:659.160000px;}
.ydc{bottom:660.600000px;}
.yb8{bottom:664.200000px;}
.y133{bottom:666.360000px;}
.y117{bottom:672.120000px;}
.y75{bottom:675.720000px;}
.y1a{bottom:676.440000px;}
.y95{bottom:677.880000px;}
.ydb{bottom:681.480000px;}
.yb7{bottom:685.080000px;}
.y132{bottom:687.240000px;}
.y4c{bottom:690.840000px;}
.y116{bottom:693.000000px;}
.y19{bottom:693.720000px;}
.y74{bottom:696.600000px;}
.yda{bottom:702.000000px;}
.y138{bottom:704.880000px;}
.yb6{bottom:705.600000px;}
.y18{bottom:711.000000px;}
.y4b{bottom:711.360000px;}
.yf8{bottom:712.080000px;}
.y115{bottom:713.520000px;}
.y73{bottom:717.120000px;}
.yd9{bottom:722.880000px;}
.y137{bottom:723.600000px;}
.yb5{bottom:726.480000px;}
.y17{bottom:728.280000px;}
.y4a{bottom:732.240000px;}
.y114{bottom:734.400000px;}
.y72{bottom:738.000000px;}
.yd8{bottom:743.400000px;}
.y16{bottom:745.920000px;}
.yb4{bottom:747.000000px;}
.yf7{bottom:747.720000px;}
.y49{bottom:752.760000px;}
.y113{bottom:754.920000px;}
.y71{bottom:758.520000px;}
.yd7{bottom:764.280000px;}
.y15{bottom:766.080000px;}
.yb3{bottom:767.880000px;}
.y48{bottom:773.640000px;}
.y112{bottom:775.800000px;}
.y70{bottom:779.400000px;}
.y14{bottom:783.360000px;}
.yd6{bottom:784.800000px;}
.yb2{bottom:788.400000px;}
.y47{bottom:794.160000px;}
.y111{bottom:796.320000px;}
.y6f{bottom:799.920000px;}
.y13{bottom:800.640000px;}
.yd5{bottom:805.680000px;}
.yb1{bottom:809.280000px;}
.y46{bottom:815.040000px;}
.y110{bottom:817.200000px;}
.y12{bottom:817.920000px;}
.yf6{bottom:819.000000px;}
.y6e{bottom:820.800000px;}
.y94{bottom:824.040000px;}
.yd4{bottom:826.200000px;}
.yb0{bottom:829.800000px;}
.y11{bottom:835.200000px;}
.y45{bottom:835.560000px;}
.y10f{bottom:837.720000px;}
.y6d{bottom:841.320000px;}
.y93{bottom:844.920000px;}
.y131{bottom:847.080000px;}
.yaf{bottom:850.320000px;}
.y10{bottom:852.480000px;}
.yf5{bottom:854.640000px;}
.y44{bottom:856.440000px;}
.y6c{bottom:862.200000px;}
.y92{bottom:865.440000px;}
.y130{bottom:867.600000px;}
.yf{bottom:869.400000px;}
.yae{bottom:871.200000px;}
.y10e{bottom:873.000000px;}
.y43{bottom:876.960000px;}
.y6b{bottom:882.720000px;}
.y91{bottom:886.320000px;}
.ye{bottom:887.400000px;}
.y12f{bottom:888.480000px;}
.yf4{bottom:890.640000px;}
.yad{bottom:892.080000px;}
.y42{bottom:897.840000px;}
.y6a{bottom:903.600000px;}
.y90{bottom:906.840000px;}
.yd{bottom:907.560000px;}
.y10d{bottom:909.000000px;}
.yac{bottom:912.600000px;}
.y41{bottom:918.360000px;}
.yd3{bottom:924.120000px;}
.yc{bottom:925.200000px;}
.yf3{bottom:926.280000px;}
.y8f{bottom:927.720000px;}
.yab{bottom:933.480000px;}
.y40{bottom:939.240000px;}
.y10c{bottom:944.640000px;}
.yb{bottom:946.080000px;}
.y8e{bottom:948.240000px;}
.yaa{bottom:954.000000px;}
.y3f{bottom:959.760000px;}
.yf2{bottom:961.920000px;}
.y10b{bottom:965.520000px;}
.ya{bottom:966.600000px;}
.ya9{bottom:974.880000px;}
.y3e{bottom:980.640000px;}
.y8d{bottom:983.520000px;}
.y10a{bottom:986.040000px;}
.y9{bottom:987.480000px;}
.ya8{bottom:995.400000px;}
.yf1{bottom:997.560000px;}
.y3d{bottom:1001.160000px;}
.y12e{bottom:1006.920000px;}
.y8{bottom:1011.600000px;}
.y8c{bottom:1011.960000px;}
.ya7{bottom:1016.280000px;}
.y69{bottom:1022.040000px;}
.y12d{bottom:1027.440000px;}
.yf0{bottom:1033.200000px;}
.y7{bottom:1036.080000px;}
.y3c{bottom:1036.800000px;}
.y68{bottom:1042.560000px;}
.y3b{bottom:1057.680000px;}
.y6{bottom:1060.200000px;}
.y67{bottom:1063.440000px;}
.yef{bottom:1068.840000px;}
.y3a{bottom:1078.200000px;}
.y5{bottom:1083.600000px;}
.y66{bottom:1083.960000px;}
.y39{bottom:1099.080000px;}
.y4{bottom:1104.480000px;}
.yee{bottom:1104.840000px;}
.yd2{bottom:1119.240000px;}
.y38{bottom:1119.600000px;}
.y3{bottom:1140.120000px;}
.y37{bottom:1140.480000px;}
.h9{height:38.158594px;}
.h5{height:59.357813px;}
.h7{height:60.952500px;}
.h6{height:61.365938px;}
.h1{height:67.209704px;}
.hb{height:70.628906px;}
.h4{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:75.093750px;}
.h8{height:79.735078px;}
.ha{height:79.758281px;}
.h3{height:84.172500px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.439850px;}
.x6{left:159.480000px;}
.x7{left:169.920000px;}
.xa{left:177.480000px;}
.x8{left:180.720000px;}
.xb{left:204.480000px;}
.x3{left:396.000000px;}
.x4{left:407.160000px;}
.x5{left:455.760000px;}
.x9{left:748.800000px;}
.x1{left:757.080000px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.643585pt;}
.ls1{letter-spacing:0.644353pt;}
.ls3{letter-spacing:29.577474pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-4.395696pt;}
._12{margin-left:-3.135539pt;}
._2{margin-left:-1.910978pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.280000pt;}
._4{width:2.449797pt;}
._b{width:3.719943pt;}
._a{width:4.706498pt;}
._17{width:5.703134pt;}
._5{width:6.666240pt;}
._6{width:7.812997pt;}
._9{width:9.336935pt;}
._7{width:10.401157pt;}
._8{width:11.317883pt;}
._16{width:12.357171pt;}
._1b{width:13.453736pt;}
._e{width:14.695439pt;}
._d{width:17.729588pt;}
._c{width:19.318978pt;}
._11{width:20.603374pt;}
._10{width:21.549957pt;}
._f{width:23.030978pt;}
._13{width:24.092160pt;}
._14{width:25.186140pt;}
._15{width:26.393333pt;}
._1d{width:27.801232pt;}
._18{width:28.800000pt;}
._19{width:29.741496pt;}
._1a{width:30.701957pt;}
._3{width:34.204712pt;}
._1e{width:35.868160pt;}
._20{width:37.279665pt;}
._1f{width:38.326978pt;}
._21{width:40.301957pt;}
._22{width:41.233828pt;}
._1c{width:65.759204pt;}
._28{width:207.616939pt;}
._27{width:208.566978pt;}
._26{width:252.534518pt;}
._25{width:253.494978pt;}
._24{width:256.293182pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs0{font-size:58.879467pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:69.120000pt;}
.y8b{bottom:97.920000pt;}
.ya6{bottom:109.759867pt;}
.y65{bottom:113.920000pt;}
.y36{bottom:116.160000pt;}
.y8a{bottom:119.360000pt;}
.yed{bottom:122.880000pt;}
.y12c{bottom:126.080000pt;}
.ya5{bottom:128.000000pt;}
.yd1{bottom:128.640000pt;}
.y89{bottom:129.279867pt;}
.y64{bottom:132.480000pt;}
.y35{bottom:134.720000pt;}
.yd0{bottom:144.000000pt;}
.y12b{bottom:144.320000pt;}
.ya4{bottom:146.560000pt;}
.y63{bottom:150.720000pt;}
.y34{bottom:152.960000pt;}
.yec{bottom:154.560000pt;}
.y12a{bottom:162.880000pt;}
.y109{bottom:163.200000pt;}
.ya3{bottom:164.800000pt;}
.ycf{bottom:165.440000pt;}
.y62{bottom:169.280000pt;}
.y33{bottom:171.520000pt;}
.yce{bottom:175.360000pt;}
.y108{bottom:181.760000pt;}
.ya2{bottom:182.720000pt;}
.yeb{bottom:186.240000pt;}
.y61{bottom:187.520000pt;}
.y32{bottom:189.760000pt;}
.y129{bottom:194.560000pt;}
.ya1{bottom:194.880000pt;}
.y107{bottom:200.000000pt;}
.ycd{bottom:204.160000pt;}
.y60{bottom:206.080000pt;}
.y31{bottom:208.320000pt;}
.y128{bottom:212.800000pt;}
.yea{bottom:217.920000pt;}
.ycc{bottom:222.720000pt;}
.y5f{bottom:224.320000pt;}
.y30{bottom:226.560000pt;}
.y127{bottom:231.360000pt;}
.y106{bottom:232.000000pt;}
.y88{bottom:232.640000pt;}
.ycb{bottom:240.960000pt;}
.y5e{bottom:242.880000pt;}
.y2f{bottom:245.120000pt;}
.ye9{bottom:249.600000pt;}
.y105{bottom:250.240000pt;}
.y87{bottom:251.200000pt;}
.yca{bottom:259.200000pt;}
.y5d{bottom:261.120000pt;}
.y2e{bottom:263.360000pt;}
.y126{bottom:268.160000pt;}
.y86{bottom:269.440000pt;}
.yc9{bottom:277.760000pt;}
.y5c{bottom:279.680000pt;}
.ye8{bottom:281.600000pt;}
.y2d{bottom:281.920000pt;}
.y125{bottom:286.400000pt;}
.y85{bottom:288.000000pt;}
.yc8{bottom:296.000000pt;}
.y5b{bottom:297.920000pt;}
.y2c{bottom:300.160000pt;}
.y104{bottom:300.480000pt;}
.y124{bottom:304.960000pt;}
.y84{bottom:306.240000pt;}
.ye7{bottom:313.280000pt;}
.yc7{bottom:314.560000pt;}
.y5a{bottom:316.480000pt;}
.y2b{bottom:318.720000pt;}
.y123{bottom:323.200000pt;}
.y83{bottom:324.800000pt;}
.y103{bottom:332.160000pt;}
.yc6{bottom:332.800000pt;}
.y59{bottom:334.720000pt;}
.y2a{bottom:336.960000pt;}
.y122{bottom:341.760000pt;}
.y82{bottom:343.040000pt;}
.ye6{bottom:344.960000pt;}
.ya0{bottom:348.800000pt;}
.y102{bottom:350.400000pt;}
.yc5{bottom:351.360000pt;}
.y58{bottom:353.280000pt;}
.y29{bottom:355.520000pt;}
.y81{bottom:361.600000pt;}
.ye5{bottom:363.200000pt;}
.y9f{bottom:367.040000pt;}
.yc4{bottom:369.600000pt;}
.y57{bottom:371.520000pt;}
.y121{bottom:373.440000pt;}
.y28{bottom:373.760000pt;}
.y80{bottom:379.840000pt;}
.y101{bottom:382.400000pt;}
.y9e{bottom:385.600000pt;}
.yc3{bottom:388.160000pt;}
.y56{bottom:390.080000pt;}
.y120{bottom:392.000000pt;}
.y27{bottom:392.320000pt;}
.ye4{bottom:395.200000pt;}
.y7f{bottom:398.400000pt;}
.y100{bottom:400.640000pt;}
.y9d{bottom:403.840000pt;}
.yc2{bottom:406.400000pt;}
.y55{bottom:408.320000pt;}
.y11f{bottom:410.240000pt;}
.y26{bottom:410.560000pt;}
.ye3{bottom:413.440000pt;}
.y7e{bottom:416.640000pt;}
.y9c{bottom:422.400000pt;}
.yc1{bottom:424.960000pt;}
.y54{bottom:426.880000pt;}
.y25{bottom:429.120000pt;}
.yff{bottom:432.320000pt;}
.y7d{bottom:435.200000pt;}
.y9b{bottom:440.640000pt;}
.y11e{bottom:441.600000pt;}
.yc0{bottom:443.200000pt;}
.y53{bottom:445.120000pt;}
.y24{bottom:446.720000pt;}
.yfe{bottom:450.880000pt;}
.y7c{bottom:453.440000pt;}
.y9a{bottom:459.200000pt;}
.ybf{bottom:461.760000pt;}
.y23{bottom:462.400000pt;}
.y52{bottom:463.680000pt;}
.y7b{bottom:472.000000pt;}
.y11d{bottom:473.600000pt;}
.ye2{bottom:476.800000pt;}
.y99{bottom:477.440000pt;}
.y22{bottom:477.760000pt;}
.ybe{bottom:480.000000pt;}
.y51{bottom:481.920000pt;}
.yfd{bottom:482.560000pt;}
.y7a{bottom:490.240000pt;}
.y21{bottom:492.800000pt;}
.ye1{bottom:495.360000pt;}
.y98{bottom:496.000000pt;}
.ybd{bottom:498.560000pt;}
.y50{bottom:500.480000pt;}
.yfc{bottom:500.800000pt;}
.y11c{bottom:505.600000pt;}
.y20{bottom:508.160000pt;}
.y79{bottom:508.800000pt;}
.ye0{bottom:513.600000pt;}
.ybc{bottom:516.800000pt;}
.y4f{bottom:518.720000pt;}
.y1f{bottom:523.520000pt;}
.y11b{bottom:523.840000pt;}
.y78{bottom:527.040000pt;}
.y97{bottom:527.360000pt;}
.ydf{bottom:532.160000pt;}
.yfb{bottom:532.800000pt;}
.ybb{bottom:535.360000pt;}
.y136{bottom:537.280000pt;}
.y1e{bottom:538.560000pt;}
.y11a{bottom:542.400000pt;}
.y77{bottom:545.600000pt;}
.y4e{bottom:550.080000pt;}
.yde{bottom:550.400000pt;}
.yfa{bottom:551.040000pt;}
.yba{bottom:553.600000pt;}
.y1d{bottom:554.560000pt;}
.y135{bottom:555.520000pt;}
.y119{bottom:560.640000pt;}
.y76{bottom:563.840000pt;}
.ydd{bottom:568.960000pt;}
.yf9{bottom:569.600000pt;}
.y1c{bottom:570.560000pt;}
.yb9{bottom:572.160000pt;}
.y134{bottom:574.080000pt;}
.y96{bottom:577.280000pt;}
.y118{bottom:579.200000pt;}
.y4d{bottom:582.400000pt;}
.y1b{bottom:585.920000pt;}
.ydc{bottom:587.200000pt;}
.yb8{bottom:590.400000pt;}
.y133{bottom:592.320000pt;}
.y117{bottom:597.440000pt;}
.y75{bottom:600.640000pt;}
.y1a{bottom:601.280000pt;}
.y95{bottom:602.560000pt;}
.ydb{bottom:605.760000pt;}
.yb7{bottom:608.960000pt;}
.y132{bottom:610.880000pt;}
.y4c{bottom:614.080000pt;}
.y116{bottom:616.000000pt;}
.y19{bottom:616.640000pt;}
.y74{bottom:619.200000pt;}
.yda{bottom:624.000000pt;}
.y138{bottom:626.560000pt;}
.yb6{bottom:627.200000pt;}
.y18{bottom:632.000000pt;}
.y4b{bottom:632.320000pt;}
.yf8{bottom:632.960000pt;}
.y115{bottom:634.240000pt;}
.y73{bottom:637.440000pt;}
.yd9{bottom:642.560000pt;}
.y137{bottom:643.200000pt;}
.yb5{bottom:645.760000pt;}
.y17{bottom:647.360000pt;}
.y4a{bottom:650.880000pt;}
.y114{bottom:652.800000pt;}
.y72{bottom:656.000000pt;}
.yd8{bottom:660.800000pt;}
.y16{bottom:663.040000pt;}
.yb4{bottom:664.000000pt;}
.yf7{bottom:664.640000pt;}
.y49{bottom:669.120000pt;}
.y113{bottom:671.040000pt;}
.y71{bottom:674.240000pt;}
.yd7{bottom:679.360000pt;}
.y15{bottom:680.960000pt;}
.yb3{bottom:682.560000pt;}
.y48{bottom:687.680000pt;}
.y112{bottom:689.600000pt;}
.y70{bottom:692.800000pt;}
.y14{bottom:696.320000pt;}
.yd6{bottom:697.600000pt;}
.yb2{bottom:700.800000pt;}
.y47{bottom:705.920000pt;}
.y111{bottom:707.840000pt;}
.y6f{bottom:711.040000pt;}
.y13{bottom:711.680000pt;}
.yd5{bottom:716.160000pt;}
.yb1{bottom:719.360000pt;}
.y46{bottom:724.480000pt;}
.y110{bottom:726.400000pt;}
.y12{bottom:727.040000pt;}
.yf6{bottom:728.000000pt;}
.y6e{bottom:729.600000pt;}
.y94{bottom:732.480000pt;}
.yd4{bottom:734.400000pt;}
.yb0{bottom:737.600000pt;}
.y11{bottom:742.400000pt;}
.y45{bottom:742.720000pt;}
.y10f{bottom:744.640000pt;}
.y6d{bottom:747.840000pt;}
.y93{bottom:751.040000pt;}
.y131{bottom:752.960000pt;}
.yaf{bottom:755.840000pt;}
.y10{bottom:757.760000pt;}
.yf5{bottom:759.680000pt;}
.y44{bottom:761.280000pt;}
.y6c{bottom:766.400000pt;}
.y92{bottom:769.280000pt;}
.y130{bottom:771.200000pt;}
.yf{bottom:772.800000pt;}
.yae{bottom:774.400000pt;}
.y10e{bottom:776.000000pt;}
.y43{bottom:779.520000pt;}
.y6b{bottom:784.640000pt;}
.y91{bottom:787.840000pt;}
.ye{bottom:788.800000pt;}
.y12f{bottom:789.760000pt;}
.yf4{bottom:791.680000pt;}
.yad{bottom:792.960000pt;}
.y42{bottom:798.080000pt;}
.y6a{bottom:803.200000pt;}
.y90{bottom:806.080000pt;}
.yd{bottom:806.720000pt;}
.y10d{bottom:808.000000pt;}
.yac{bottom:811.200000pt;}
.y41{bottom:816.320000pt;}
.yd3{bottom:821.440000pt;}
.yc{bottom:822.400000pt;}
.yf3{bottom:823.360000pt;}
.y8f{bottom:824.640000pt;}
.yab{bottom:829.760000pt;}
.y40{bottom:834.880000pt;}
.y10c{bottom:839.680000pt;}
.yb{bottom:840.960000pt;}
.y8e{bottom:842.880000pt;}
.yaa{bottom:848.000000pt;}
.y3f{bottom:853.120000pt;}
.yf2{bottom:855.040000pt;}
.y10b{bottom:858.240000pt;}
.ya{bottom:859.200000pt;}
.ya9{bottom:866.560000pt;}
.y3e{bottom:871.680000pt;}
.y8d{bottom:874.240000pt;}
.y10a{bottom:876.480000pt;}
.y9{bottom:877.760000pt;}
.ya8{bottom:884.800000pt;}
.yf1{bottom:886.720000pt;}
.y3d{bottom:889.920000pt;}
.y12e{bottom:895.040000pt;}
.y8{bottom:899.200000pt;}
.y8c{bottom:899.520000pt;}
.ya7{bottom:903.360000pt;}
.y69{bottom:908.480000pt;}
.y12d{bottom:913.280000pt;}
.yf0{bottom:918.400000pt;}
.y7{bottom:920.960000pt;}
.y3c{bottom:921.600000pt;}
.y68{bottom:926.720000pt;}
.y3b{bottom:940.160000pt;}
.y6{bottom:942.400000pt;}
.y67{bottom:945.280000pt;}
.yef{bottom:950.080000pt;}
.y3a{bottom:958.400000pt;}
.y5{bottom:963.200000pt;}
.y66{bottom:963.520000pt;}
.y39{bottom:976.960000pt;}
.y4{bottom:981.760000pt;}
.yee{bottom:982.080000pt;}
.yd2{bottom:994.880000pt;}
.y38{bottom:995.200000pt;}
.y3{bottom:1013.440000pt;}
.y37{bottom:1013.760000pt;}
.h9{height:33.918750pt;}
.h5{height:52.762500pt;}
.h7{height:54.180000pt;}
.h6{height:54.547500pt;}
.h1{height:59.741959pt;}
.hb{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:66.750000pt;}
.h8{height:70.875625pt;}
.ha{height:70.896250pt;}
.h3{height:74.820000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.279867pt;}
.x6{left:141.760000pt;}
.x7{left:151.040000pt;}
.xa{left:157.760000pt;}
.x8{left:160.640000pt;}
.xb{left:181.760000pt;}
.x3{left:352.000000pt;}
.x4{left:361.920000pt;}
.x5{left:405.120000pt;}
.x9{left:665.600000pt;}
.x1{left:672.960000pt;}
}




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