
    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_b54b5095c2fd6775e092bafa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_2b767abf680464fedf0d118f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bf98331ef0a40447ad5bfe6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_cfb7717188ed55203f16845e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_0aed703c3dc0a0208a48484e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.v1{vertical-align:30.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.250560px;}
.ls3{letter-spacing:33.232051px;}
.ls4{letter-spacing:43.630294px;}
.ls1{letter-spacing:51.076826px;}
.ls7{letter-spacing:94.252648px;}
.ls6{letter-spacing:169.087747px;}
.ls8{letter-spacing:173.405157px;}
.ls5{letter-spacing:179.161703px;}
.ls0{letter-spacing:251.096942px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws0{word-spacing:-60.120000px;}
.ws1{word-spacing:-20.880000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._3e{margin-left:-9.401269px;}
._35{margin-left:-8.158551px;}
._b{margin-left:-6.936034px;}
._e{margin-left:-5.927846px;}
._a{margin-left:-4.340393px;}
._6{margin-left:-2.698968px;}
._3{margin-left:-1.033573px;}
._4{width:1.206658px;}
._5{width:2.223483px;}
._15{width:3.339630px;}
._8{width:4.392993px;}
._7{width:5.781717px;}
._11{width:6.967277px;}
._f{width:8.014782px;}
._10{width:9.273652px;}
._17{width:10.840630px;}
._27{width:11.844194px;}
._1f{width:12.996125px;}
._16{width:14.256273px;}
._c{width:15.810109px;}
._1a{width:16.917720px;}
._d{width:19.218949px;}
._25{width:20.696424px;}
._21{width:22.154194px;}
._20{width:23.533430px;}
._19{width:24.584703px;}
._18{width:26.083756px;}
._1e{width:27.709250px;}
._1d{width:29.499297px;}
._22{width:30.950355px;}
._3d{width:32.560933px;}
._3c{width:33.718347px;}
._23{width:35.147355px;}
._24{width:36.157712px;}
._9{width:38.137147px;}
._1c{width:40.481342px;}
._1b{width:41.487543px;}
._26{width:43.415948px;}
._2b{width:47.176003px;}
._12{width:50.191011px;}
._13{width:59.822300px;}
._31{width:69.559239px;}
._2d{width:70.730187px;}
._37{width:71.757128px;}
._34{width:76.134366px;}
._2f{width:77.583084px;}
._2c{width:82.539398px;}
._33{width:86.692599px;}
._32{width:99.572086px;}
._2{width:107.870478px;}
._14{width:111.135519px;}
._39{width:130.012212px;}
._0{width:137.260955px;}
._38{width:145.246764px;}
._1{width:161.870478px;}
._36{width:181.282023px;}
._3b{width:205.959890px;}
._2a{width:216.606248px;}
._3a{width:263.283708px;}
._30{width:324.398387px;}
._28{width:338.863287px;}
._29{width:367.067395px;}
._2e{width:523.072157px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs8{font-size:60.480000px;}
.fs6{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:4.320000px;}
.y2{bottom:35.640000px;}
.y3f{bottom:50.040000px;}
.y5e{bottom:85.680000px;}
.y107{bottom:87.480000px;}
.yd6{bottom:95.760000px;}
.y1f{bottom:97.560000px;}
.y3e{bottom:101.520000px;}
.y118{bottom:106.920000px;}
.y5d{bottom:109.439850px;}
.y106{bottom:110.880000px;}
.ya4{bottom:111.960000px;}
.y91{bottom:119.520000px;}
.yd4{bottom:120.240000px;}
.yd5{bottom:120.600000px;}
.y1e{bottom:120.960000px;}
.yb1{bottom:121.320000px;}
.y3d{bottom:125.280000px;}
.y124{bottom:127.080000px;}
.y117{bottom:130.680000px;}
.y105{bottom:134.640000px;}
.ya3{bottom:136.080000px;}
.y90{bottom:142.920000px;}
.yf5{bottom:144.000000px;}
.yd3{bottom:144.360000px;}
.y77{bottom:144.720000px;}
.y1d{bottom:145.439850px;}
.y5c{bottom:148.680000px;}
.y3c{bottom:149.040000px;}
.y123{bottom:150.479850px;}
.ya2{bottom:159.840000px;}
.y8f{bottom:166.680000px;}
.yf4{bottom:167.760000px;}
.y76{bottom:168.480000px;}
.yd2{bottom:169.200000px;}
.y116{bottom:170.640000px;}
.y5b{bottom:172.080000px;}
.y3b{bottom:173.160000px;}
.y104{bottom:173.520000px;}
.y122{bottom:174.240000px;}
.ya1{bottom:183.600000px;}
.y1c{bottom:187.920000px;}
.y8e{bottom:190.440000px;}
.yf3{bottom:191.520000px;}
.yd1{bottom:192.959850px;}
.y5a{bottom:195.840000px;}
.y3a{bottom:196.920000px;}
.y121{bottom:198.000000px;}
.y75{bottom:207.360000px;}
.yb0{bottom:207.720000px;}
.y1b{bottom:211.320000px;}
.yce{bottom:212.040000px;}
.y103{bottom:212.400000px;}
.y8d{bottom:214.560000px;}
.ycd{bottom:216.360000px;}
.yd0{bottom:216.720000px;}
.y59{bottom:219.600000px;}
.y39{bottom:220.680000px;}
.y120{bottom:222.120000px;}
.yf2{bottom:230.400000px;}
.yaf{bottom:231.120000px;}
.y1a{bottom:235.080000px;}
.y102{bottom:235.800000px;}
.y8c{bottom:238.320000px;}
.yca{bottom:240.840000px;}
.y11f{bottom:245.879850px;}
.y74{bottom:246.600000px;}
.yae{bottom:254.879850px;}
.y58{bottom:258.480000px;}
.y19{bottom:258.840000px;}
.y38{bottom:259.560000px;}
.y101{bottom:259.920000px;}
.yc9{bottom:264.600000px;}
.ycc{bottom:264.959850px;}
.yf1{bottom:269.640000px;}
.y73{bottom:270.000000px;}
.y8b{bottom:276.840000px;}
.yad{bottom:278.640000px;}
.y18{bottom:282.600000px;}
.y115{bottom:283.680000px;}
.yc8{bottom:288.360000px;}
.ycb{bottom:288.720000px;}
.yf0{bottom:293.040000px;}
.y11e{bottom:293.400000px;}
.y72{bottom:293.760000px;}
.y57{bottom:297.720000px;}
.y100{bottom:298.440000px;}
.y37{bottom:299.160000px;}
.yac{bottom:302.400000px;}
.y17{bottom:306.360000px;}
.yc7{bottom:313.560000px;}
.y8a{bottom:316.080000px;}
.yef{bottom:316.800000px;}
.y11d{bottom:317.160000px;}
.y71{bottom:317.520000px;}
.y56{bottom:321.120000px;}
.y114{bottom:322.200000px;}
.y16{bottom:330.480000px;}
.ya0{bottom:332.640000px;}
.yc4{bottom:336.960000px;}
.yc6{bottom:337.320000px;}
.yff{bottom:337.680000px;}
.y89{bottom:339.480000px;}
.yee{bottom:340.560000px;}
.y11c{bottom:340.920000px;}
.y36{bottom:341.280000px;}
.yab{bottom:341.640000px;}
.y55{bottom:344.880000px;}
.y15{bottom:354.240000px;}
.y70{bottom:356.400000px;}
.yc3{bottom:360.720000px;}
.yc5{bottom:361.080000px;}
.y113{bottom:361.440000px;}
.y88{bottom:363.240000px;}
.y35{bottom:364.680000px;}
.yaa{bottom:365.040000px;}
.y54{bottom:368.640000px;}
.y9f{bottom:371.880000px;}
.y14{bottom:378.000000px;}
.yed{bottom:379.440000px;}
.yfe{bottom:384.840000px;}
.yc2{bottom:385.560000px;}
.y87{bottom:387.360000px;}
.y34{bottom:388.440000px;}
.y53{bottom:392.400000px;}
.y9e{bottom:395.280000px;}
.y6f{bottom:395.640000px;}
.y13{bottom:401.759850px;}
.ya9{bottom:403.919850px;}
.ybf{bottom:408.960000px;}
.yc1{bottom:409.320000px;}
.y86{bottom:411.120000px;}
.y33{bottom:412.200000px;}
.y52{bottom:416.520000px;}
.yec{bottom:418.680000px;}
.y6e{bottom:419.040000px;}
.y12{bottom:425.520000px;}
.ybe{bottom:432.720000px;}
.yc0{bottom:433.080000px;}
.y9d{bottom:434.160000px;}
.y85{bottom:434.880000px;}
.y32{bottom:436.320000px;}
.y51{bottom:440.280000px;}
.yeb{bottom:442.080000px;}
.y6d{bottom:442.800000px;}
.ya8{bottom:443.160000px;}
.yfd{bottom:447.480000px;}
.y11{bottom:449.280000px;}
.ybd{bottom:457.560000px;}
.y9c{bottom:457.919850px;}
.y84{bottom:458.640000px;}
.y31{bottom:460.080000px;}
.y50{bottom:464.040000px;}
.yea{bottom:465.840000px;}
.y112{bottom:471.240000px;}
.y10{bottom:473.040000px;}
.y6c{bottom:481.680000px;}
.ya7{bottom:482.040000px;}
.y83{bottom:482.400000px;}
.y30{bottom:483.840000px;}
.yfc{bottom:486.720000px;}
.y4f{bottom:487.800000px;}
.yf{bottom:496.800000px;}
.ybc{bottom:505.080000px;}
.y9b{bottom:505.440000px;}
.ye9{bottom:505.800000px;}
.y2f{bottom:507.600000px;}
.yfb{bottom:510.120000px;}
.y111{bottom:510.480000px;}
.y4e{bottom:511.560000px;}
.y6b{bottom:520.200000px;}
.ye{bottom:520.560000px;}
.y82{bottom:522.360000px;}
.y9a{bottom:529.200000px;}
.yba{bottom:529.919850px;}
.y2e{bottom:531.360000px;}
.y110{bottom:533.880000px;}
.y4d{bottom:535.320000px;}
.yd{bottom:544.680000px;}
.ye8{bottom:547.560000px;}
.yfa{bottom:550.080000px;}
.y99{bottom:552.960000px;}
.yb9{bottom:553.680000px;}
.y2d{bottom:555.120000px;}
.y10f{bottom:557.640000px;}
.y4c{bottom:559.080000px;}
.y6a{bottom:559.440000px;}
.y81{bottom:564.480000px;}
.yc{bottom:568.440000px;}
.ye7{bottom:571.320000px;}
.y98{bottom:576.720000px;}
.yb8{bottom:577.080000px;}
.ybb{bottom:577.440000px;}
.y10e{bottom:581.759850px;}
.y69{bottom:582.840000px;}
.y80{bottom:587.880000px;}
.y11b{bottom:589.680000px;}
.yb{bottom:592.200000px;}
.y2c{bottom:594.360000px;}
.ye6{bottom:595.080000px;}
.y4b{bottom:597.960000px;}
.y97{bottom:600.480000px;}
.yb7{bottom:601.560000px;}
.y68{bottom:606.600000px;}
.y7f{bottom:611.640000px;}
.y11a{bottom:613.080000px;}
.yf9{bottom:615.600000px;}
.ya{bottom:615.960000px;}
.y2b{bottom:617.759850px;}
.ye5{bottom:618.840000px;}
.y10d{bottom:620.280000px;}
.yb6{bottom:625.320000px;}
.y67{bottom:630.720000px;}
.y7e{bottom:635.400000px;}
.y119{bottom:636.840000px;}
.y4a{bottom:637.200000px;}
.ya6{bottom:639.360000px;}
.y9{bottom:639.720000px;}
.y2a{bottom:641.520000px;}
.ye4{bottom:642.600000px;}
.yb5{bottom:649.440000px;}
.y66{bottom:654.480000px;}
.y7d{bottom:659.160000px;}
.y10c{bottom:659.520000px;}
.y49{bottom:660.600000px;}
.yf8{bottom:663.120000px;}
.y8{bottom:663.480000px;}
.y29{bottom:665.280000px;}
.yb4{bottom:673.200000px;}
.y65{bottom:678.240000px;}
.ye3{bottom:681.840000px;}
.y10b{bottom:682.920000px;}
.y48{bottom:684.360000px;}
.y28{bottom:689.040000px;}
.yb3{bottom:697.680000px;}
.y7c{bottom:698.400000px;}
.y64{bottom:702.000000px;}
.y7{bottom:703.440000px;}
.ye1{bottom:705.960000px;}
.y10a{bottom:706.680000px;}
.y47{bottom:708.120000px;}
.y27{bottom:713.160000px;}
.y96{bottom:717.480000px;}
.y7b{bottom:721.800000px;}
.y63{bottom:725.760000px;}
.ye0{bottom:729.720000px;}
.y46{bottom:731.880000px;}
.y26{bottom:736.920000px;}
.yb2{bottom:737.280000px;}
.y95{bottom:740.880000px;}
.yf7{bottom:741.240000px;}
.y6{bottom:744.480000px;}
.y7a{bottom:745.560000px;}
.y109{bottom:746.640000px;}
.y62{bottom:749.520000px;}
.ydf{bottom:753.120000px;}
.ye2{bottom:753.480000px;}
.y45{bottom:755.640000px;}
.y25{bottom:760.680000px;}
.y94{bottom:764.640000px;}
.y5{bottom:766.440000px;}
.y79{bottom:769.320000px;}
.y61{bottom:773.280000px;}
.ydb{bottom:777.600000px;}
.yde{bottom:777.960000px;}
.y44{bottom:779.760000px;}
.ya5{bottom:780.120000px;}
.y24{bottom:784.440000px;}
.y93{bottom:788.400000px;}
.y108{bottom:788.760000px;}
.y4{bottom:789.480000px;}
.yda{bottom:801.360000px;}
.ydd{bottom:801.720000px;}
.y43{bottom:803.519850px;}
.y23{bottom:808.200000px;}
.y78{bottom:809.280000px;}
.y60{bottom:812.160000px;}
.yd9{bottom:825.480000px;}
.ydc{bottom:825.839850px;}
.y42{bottom:827.280000px;}
.y22{bottom:831.960000px;}
.y3{bottom:833.760000px;}
.y92{bottom:835.920000px;}
.yd8{bottom:850.320000px;}
.y41{bottom:851.040000px;}
.y5f{bottom:851.400000px;}
.y21{bottom:871.920000px;}
.yd7{bottom:873.720000px;}
.yf6{bottom:874.440000px;}
.y40{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y20{bottom:923.040000px;}
.he{height:20.520000px;}
.h2{height:34.157813px;}
.h5{height:45.992396px;}
.h9{height:47.988281px;}
.hc{height:48.796875px;}
.hb{height:49.042969px;}
.h7{height:49.992188px;}
.ha{height:51.679688px;}
.hd{height:53.119688px;}
.h4{height:56.604375px;}
.h8{height:57.990937px;}
.h6{height:59.235469px;}
.h3{height:65.387406px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w1{width:8.640000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.x3{left:101.160000px;}
.x9{left:108.000000px;}
.x8{left:113.400000px;}
.xa{left:118.080000px;}
.x6{left:174.960000px;}
.x5{left:209.160000px;}
.xe{left:229.320000px;}
.xd{left:246.600000px;}
.x7{left:338.760000px;}
.x4{left:347.400000px;}
.xb{left:431.640000px;}
.xc{left:585.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.v1{vertical-align:26.880000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.222720pt;}
.ls3{letter-spacing:29.539601pt;}
.ls4{letter-spacing:38.782483pt;}
.ls1{letter-spacing:45.401623pt;}
.ls7{letter-spacing:83.780132pt;}
.ls6{letter-spacing:150.300220pt;}
.ls8{letter-spacing:154.137917pt;}
.ls5{letter-spacing:159.254847pt;}
.ls0{letter-spacing:223.197282pt;}
.ws4{word-spacing:-53.760000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._3e{margin-left:-8.356683pt;}
._35{margin-left:-7.252046pt;}
._b{margin-left:-6.165363pt;}
._e{margin-left:-5.269197pt;}
._a{margin-left:-3.858127pt;}
._6{margin-left:-2.399083pt;}
._3{margin-left:-0.918732pt;}
._4{width:1.072585pt;}
._5{width:1.976430pt;}
._15{width:2.968560pt;}
._8{width:3.904883pt;}
._7{width:5.139304pt;}
._11{width:6.193135pt;}
._f{width:7.124250pt;}
._10{width:8.243246pt;}
._17{width:9.636115pt;}
._27{width:10.528173pt;}
._1f{width:11.552111pt;}
._16{width:12.672243pt;}
._c{width:14.053430pt;}
._1a{width:15.037974pt;}
._d{width:17.083510pt;}
._25{width:18.396821pt;}
._21{width:19.692617pt;}
._20{width:20.918604pt;}
._19{width:21.853069pt;}
._18{width:23.185561pt;}
._1e{width:24.630444pt;}
._1d{width:26.221597pt;}
._22{width:27.511427pt;}
._3d{width:28.943051pt;}
._3c{width:29.971864pt;}
._23{width:31.242093pt;}
._24{width:32.140189pt;}
._9{width:33.899686pt;}
._1c{width:35.983415pt;}
._1b{width:36.877816pt;}
._26{width:38.591954pt;}
._2b{width:41.934225pt;}
._12{width:44.614232pt;}
._13{width:53.175378pt;}
._31{width:61.830435pt;}
._2d{width:62.871277pt;}
._37{width:63.784114pt;}
._34{width:67.674992pt;}
._2f{width:68.962741pt;}
._2c{width:73.368354pt;}
._33{width:77.060088pt;}
._32{width:88.508520pt;}
._2{width:95.884869pt;}
._14{width:98.787128pt;}
._39{width:115.566411pt;}
._0{width:122.009738pt;}
._38{width:129.108235pt;}
._1{width:143.884869pt;}
._36{width:161.139576pt;}
._3b{width:183.075458pt;}
._2a{width:192.538887pt;}
._3a{width:234.029963pt;}
._30{width:288.354121pt;}
._28{width:301.211811pt;}
._29{width:326.282129pt;}
._2e{width:464.953028pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs8{font-size:53.760000pt;}
.fs6{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.840000pt;}
.y2{bottom:31.680000pt;}
.y3f{bottom:44.480000pt;}
.y5e{bottom:76.160000pt;}
.y107{bottom:77.760000pt;}
.yd6{bottom:85.120000pt;}
.y1f{bottom:86.720000pt;}
.y3e{bottom:90.240000pt;}
.y118{bottom:95.040000pt;}
.y5d{bottom:97.279867pt;}
.y106{bottom:98.560000pt;}
.ya4{bottom:99.520000pt;}
.y91{bottom:106.240000pt;}
.yd4{bottom:106.880000pt;}
.yd5{bottom:107.200000pt;}
.y1e{bottom:107.520000pt;}
.yb1{bottom:107.840000pt;}
.y3d{bottom:111.360000pt;}
.y124{bottom:112.960000pt;}
.y117{bottom:116.160000pt;}
.y105{bottom:119.680000pt;}
.ya3{bottom:120.960000pt;}
.y90{bottom:127.040000pt;}
.yf5{bottom:128.000000pt;}
.yd3{bottom:128.320000pt;}
.y77{bottom:128.640000pt;}
.y1d{bottom:129.279867pt;}
.y5c{bottom:132.160000pt;}
.y3c{bottom:132.480000pt;}
.y123{bottom:133.759867pt;}
.ya2{bottom:142.080000pt;}
.y8f{bottom:148.160000pt;}
.yf4{bottom:149.120000pt;}
.y76{bottom:149.760000pt;}
.yd2{bottom:150.400000pt;}
.y116{bottom:151.680000pt;}
.y5b{bottom:152.960000pt;}
.y3b{bottom:153.920000pt;}
.y104{bottom:154.240000pt;}
.y122{bottom:154.880000pt;}
.ya1{bottom:163.200000pt;}
.y1c{bottom:167.040000pt;}
.y8e{bottom:169.280000pt;}
.yf3{bottom:170.240000pt;}
.yd1{bottom:171.519867pt;}
.y5a{bottom:174.080000pt;}
.y3a{bottom:175.040000pt;}
.y121{bottom:176.000000pt;}
.y75{bottom:184.320000pt;}
.yb0{bottom:184.640000pt;}
.y1b{bottom:187.840000pt;}
.yce{bottom:188.480000pt;}
.y103{bottom:188.800000pt;}
.y8d{bottom:190.720000pt;}
.ycd{bottom:192.320000pt;}
.yd0{bottom:192.640000pt;}
.y59{bottom:195.200000pt;}
.y39{bottom:196.160000pt;}
.y120{bottom:197.440000pt;}
.yf2{bottom:204.800000pt;}
.yaf{bottom:205.440000pt;}
.y1a{bottom:208.960000pt;}
.y102{bottom:209.600000pt;}
.y8c{bottom:211.840000pt;}
.yca{bottom:214.080000pt;}
.y11f{bottom:218.559867pt;}
.y74{bottom:219.200000pt;}
.yae{bottom:226.559867pt;}
.y58{bottom:229.760000pt;}
.y19{bottom:230.080000pt;}
.y38{bottom:230.720000pt;}
.y101{bottom:231.040000pt;}
.yc9{bottom:235.200000pt;}
.ycc{bottom:235.519867pt;}
.yf1{bottom:239.680000pt;}
.y73{bottom:240.000000pt;}
.y8b{bottom:246.080000pt;}
.yad{bottom:247.680000pt;}
.y18{bottom:251.200000pt;}
.y115{bottom:252.160000pt;}
.yc8{bottom:256.320000pt;}
.ycb{bottom:256.640000pt;}
.yf0{bottom:260.480000pt;}
.y11e{bottom:260.800000pt;}
.y72{bottom:261.120000pt;}
.y57{bottom:264.640000pt;}
.y100{bottom:265.280000pt;}
.y37{bottom:265.920000pt;}
.yac{bottom:268.800000pt;}
.y17{bottom:272.320000pt;}
.yc7{bottom:278.720000pt;}
.y8a{bottom:280.960000pt;}
.yef{bottom:281.600000pt;}
.y11d{bottom:281.920000pt;}
.y71{bottom:282.240000pt;}
.y56{bottom:285.440000pt;}
.y114{bottom:286.400000pt;}
.y16{bottom:293.760000pt;}
.ya0{bottom:295.680000pt;}
.yc4{bottom:299.520000pt;}
.yc6{bottom:299.840000pt;}
.yff{bottom:300.160000pt;}
.y89{bottom:301.760000pt;}
.yee{bottom:302.720000pt;}
.y11c{bottom:303.040000pt;}
.y36{bottom:303.360000pt;}
.yab{bottom:303.680000pt;}
.y55{bottom:306.560000pt;}
.y15{bottom:314.880000pt;}
.y70{bottom:316.800000pt;}
.yc3{bottom:320.640000pt;}
.yc5{bottom:320.960000pt;}
.y113{bottom:321.280000pt;}
.y88{bottom:322.880000pt;}
.y35{bottom:324.160000pt;}
.yaa{bottom:324.480000pt;}
.y54{bottom:327.680000pt;}
.y9f{bottom:330.560000pt;}
.y14{bottom:336.000000pt;}
.yed{bottom:337.280000pt;}
.yfe{bottom:342.080000pt;}
.yc2{bottom:342.720000pt;}
.y87{bottom:344.320000pt;}
.y34{bottom:345.280000pt;}
.y53{bottom:348.800000pt;}
.y9e{bottom:351.360000pt;}
.y6f{bottom:351.680000pt;}
.y13{bottom:357.119867pt;}
.ya9{bottom:359.039867pt;}
.ybf{bottom:363.520000pt;}
.yc1{bottom:363.840000pt;}
.y86{bottom:365.440000pt;}
.y33{bottom:366.400000pt;}
.y52{bottom:370.240000pt;}
.yec{bottom:372.160000pt;}
.y6e{bottom:372.480000pt;}
.y12{bottom:378.240000pt;}
.ybe{bottom:384.640000pt;}
.yc0{bottom:384.960000pt;}
.y9d{bottom:385.920000pt;}
.y85{bottom:386.560000pt;}
.y32{bottom:387.840000pt;}
.y51{bottom:391.360000pt;}
.yeb{bottom:392.960000pt;}
.y6d{bottom:393.600000pt;}
.ya8{bottom:393.920000pt;}
.yfd{bottom:397.760000pt;}
.y11{bottom:399.360000pt;}
.ybd{bottom:406.720000pt;}
.y9c{bottom:407.039867pt;}
.y84{bottom:407.680000pt;}
.y31{bottom:408.960000pt;}
.y50{bottom:412.480000pt;}
.yea{bottom:414.080000pt;}
.y112{bottom:418.880000pt;}
.y10{bottom:420.480000pt;}
.y6c{bottom:428.160000pt;}
.ya7{bottom:428.480000pt;}
.y83{bottom:428.800000pt;}
.y30{bottom:430.080000pt;}
.yfc{bottom:432.640000pt;}
.y4f{bottom:433.600000pt;}
.yf{bottom:441.600000pt;}
.ybc{bottom:448.960000pt;}
.y9b{bottom:449.280000pt;}
.ye9{bottom:449.600000pt;}
.y2f{bottom:451.200000pt;}
.yfb{bottom:453.440000pt;}
.y111{bottom:453.760000pt;}
.y4e{bottom:454.720000pt;}
.y6b{bottom:462.400000pt;}
.ye{bottom:462.720000pt;}
.y82{bottom:464.320000pt;}
.y9a{bottom:470.400000pt;}
.yba{bottom:471.039867pt;}
.y2e{bottom:472.320000pt;}
.y110{bottom:474.560000pt;}
.y4d{bottom:475.840000pt;}
.yd{bottom:484.160000pt;}
.ye8{bottom:486.720000pt;}
.yfa{bottom:488.960000pt;}
.y99{bottom:491.520000pt;}
.yb9{bottom:492.160000pt;}
.y2d{bottom:493.440000pt;}
.y10f{bottom:495.680000pt;}
.y4c{bottom:496.960000pt;}
.y6a{bottom:497.280000pt;}
.y81{bottom:501.760000pt;}
.yc{bottom:505.280000pt;}
.ye7{bottom:507.840000pt;}
.y98{bottom:512.640000pt;}
.yb8{bottom:512.960000pt;}
.ybb{bottom:513.280000pt;}
.y10e{bottom:517.119867pt;}
.y69{bottom:518.080000pt;}
.y80{bottom:522.560000pt;}
.y11b{bottom:524.160000pt;}
.yb{bottom:526.400000pt;}
.y2c{bottom:528.320000pt;}
.ye6{bottom:528.960000pt;}
.y4b{bottom:531.520000pt;}
.y97{bottom:533.760000pt;}
.yb7{bottom:534.720000pt;}
.y68{bottom:539.200000pt;}
.y7f{bottom:543.680000pt;}
.y11a{bottom:544.960000pt;}
.yf9{bottom:547.200000pt;}
.ya{bottom:547.520000pt;}
.y2b{bottom:549.119867pt;}
.ye5{bottom:550.080000pt;}
.y10d{bottom:551.360000pt;}
.yb6{bottom:555.840000pt;}
.y67{bottom:560.640000pt;}
.y7e{bottom:564.800000pt;}
.y119{bottom:566.080000pt;}
.y4a{bottom:566.400000pt;}
.ya6{bottom:568.320000pt;}
.y9{bottom:568.640000pt;}
.y2a{bottom:570.240000pt;}
.ye4{bottom:571.200000pt;}
.yb5{bottom:577.280000pt;}
.y66{bottom:581.760000pt;}
.y7d{bottom:585.920000pt;}
.y10c{bottom:586.240000pt;}
.y49{bottom:587.200000pt;}
.yf8{bottom:589.440000pt;}
.y8{bottom:589.760000pt;}
.y29{bottom:591.360000pt;}
.yb4{bottom:598.400000pt;}
.y65{bottom:602.880000pt;}
.ye3{bottom:606.080000pt;}
.y10b{bottom:607.040000pt;}
.y48{bottom:608.320000pt;}
.y28{bottom:612.480000pt;}
.yb3{bottom:620.160000pt;}
.y7c{bottom:620.800000pt;}
.y64{bottom:624.000000pt;}
.y7{bottom:625.280000pt;}
.ye1{bottom:627.520000pt;}
.y10a{bottom:628.160000pt;}
.y47{bottom:629.440000pt;}
.y27{bottom:633.920000pt;}
.y96{bottom:637.760000pt;}
.y7b{bottom:641.600000pt;}
.y63{bottom:645.120000pt;}
.ye0{bottom:648.640000pt;}
.y46{bottom:650.560000pt;}
.y26{bottom:655.040000pt;}
.yb2{bottom:655.360000pt;}
.y95{bottom:658.560000pt;}
.yf7{bottom:658.880000pt;}
.y6{bottom:661.760000pt;}
.y7a{bottom:662.720000pt;}
.y109{bottom:663.680000pt;}
.y62{bottom:666.240000pt;}
.ydf{bottom:669.440000pt;}
.ye2{bottom:669.760000pt;}
.y45{bottom:671.680000pt;}
.y25{bottom:676.160000pt;}
.y94{bottom:679.680000pt;}
.y5{bottom:681.280000pt;}
.y79{bottom:683.840000pt;}
.y61{bottom:687.360000pt;}
.ydb{bottom:691.200000pt;}
.yde{bottom:691.520000pt;}
.y44{bottom:693.120000pt;}
.ya5{bottom:693.440000pt;}
.y24{bottom:697.280000pt;}
.y93{bottom:700.800000pt;}
.y108{bottom:701.120000pt;}
.y4{bottom:701.760000pt;}
.yda{bottom:712.320000pt;}
.ydd{bottom:712.640000pt;}
.y43{bottom:714.239867pt;}
.y23{bottom:718.400000pt;}
.y78{bottom:719.360000pt;}
.y60{bottom:721.920000pt;}
.yd9{bottom:733.760000pt;}
.ydc{bottom:734.079867pt;}
.y42{bottom:735.360000pt;}
.y22{bottom:739.520000pt;}
.y3{bottom:741.120000pt;}
.y92{bottom:743.040000pt;}
.yd8{bottom:755.840000pt;}
.y41{bottom:756.480000pt;}
.y5f{bottom:756.800000pt;}
.y21{bottom:775.040000pt;}
.yd7{bottom:776.640000pt;}
.yf6{bottom:777.280000pt;}
.y40{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y20{bottom:820.480000pt;}
.he{height:18.240000pt;}
.h2{height:30.362500pt;}
.h5{height:40.882130pt;}
.h9{height:42.656250pt;}
.hc{height:43.375000pt;}
.hb{height:43.593750pt;}
.h7{height:44.437500pt;}
.ha{height:45.937500pt;}
.hd{height:47.217500pt;}
.h4{height:50.315000pt;}
.h8{height:51.547500pt;}
.h6{height:52.653750pt;}
.h3{height:58.122139pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w1{width:7.680000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.x3{left:89.920000pt;}
.x9{left:96.000000pt;}
.x8{left:100.800000pt;}
.xa{left:104.960000pt;}
.x6{left:155.520000pt;}
.x5{left:185.920000pt;}
.xe{left:203.840000pt;}
.xd{left:219.200000pt;}
.x7{left:301.120000pt;}
.x4{left:308.800000pt;}
.xb{left:383.680000pt;}
.xc{left:520.000000pt;}
}




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