
    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_2b914f61abb8964eaaca6076.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.760742;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_b64bb8765f833b676269aa6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8d3991f3c6bc896c21403883.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e8d07262d1c7690e3a381dfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_47fc3a2ee474fcdbbf828e6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_4e0a46824eeb4819c0ceec8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_36e146c1e6cac63b080a5cc2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c76f596afb24e430461b2421.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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:ff9;src:url('chunks/assets/font_e5737513f5e79ecac817f482.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.020000px;}
.ls12{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.496200px;}
.ls19{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.181200px;}
.ls16{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.041040px;}
.lsa{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lse{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.269280px;}
.ls6{letter-spacing:0.269400px;}
.ls17{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.576000px;}
.ls14{letter-spacing:3.888000px;}
.ls11{letter-spacing:11.808000px;}
.ls3{letter-spacing:849.149760px;}
.ls1{letter-spacing:1553.286720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.wsa{word-spacing:-16.632000px;}
.wsc{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.344000px;}
.ws4{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.912000px;}
.wse{word-spacing:-15.624000px;}
.ws1{word-spacing:-13.680120px;}
.ws2{word-spacing:-13.229520px;}
.ws0{word-spacing:-12.914520px;}
.ws9{word-spacing:-0.136800px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-4.680000px;}
._4{margin-left:-3.672000px;}
._8{margin-left:-2.442240px;}
._0{margin-left:-1.440720px;}
._1{width:1.194960px;}
._b{width:2.549040px;}
._3{width:3.672000px;}
._2{width:4.824000px;}
._6{width:5.832000px;}
._5{width:7.128000px;}
._7{width:8.424000px;}
._18{width:9.432720px;}
._c{width:10.440000px;}
._d{width:11.850720px;}
._e{width:13.218240px;}
._9{width:14.285760px;}
._17{width:17.965680px;}
._16{width:19.512000px;}
._19{width:20.737440px;}
._13{width:21.816000px;}
._12{width:22.896000px;}
._1b{width:24.192000px;}
._15{width:25.878480px;}
._14{width:27.144000px;}
._1c{width:28.175280px;}
._f{width:29.477040px;}
._10{width:31.018800px;}
._1d{width:32.040000px;}
._20{width:33.192000px;}
._27{width:36.936000px;}
._1f{width:38.305440px;}
._1e{width:39.384000px;}
._2c{width:40.536000px;}
._22{width:41.832000px;}
._21{width:42.840000px;}
._24{width:48.096000px;}
._a{width:49.248000px;}
._23{width:50.340720px;}
._11{width:65.478240px;}
._2b{width:79.922160px;}
._2a{width:80.928000px;}
._26{width:102.672720px;}
._25{width:103.824000px;}
._29{width:177.480000px;}
._28{width:178.776000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs8{font-size:357.120000px;}
.y0{bottom:0.000000px;}
.y73{bottom:4.860000px;}
.y30{bottom:12.060000px;}
.yf{bottom:57.600000px;}
.y2{bottom:73.290000px;}
.ye{bottom:77.616000px;}
.yd{bottom:95.796000px;}
.yc{bottom:109.656000px;}
.yb{bottom:123.516000px;}
.y2e{bottom:138.636000px;}
.y71{bottom:140.076000px;}
.ybf{bottom:141.336000px;}
.y10f{bottom:143.856000px;}
.y86{bottom:147.456000px;}
.y8f{bottom:151.050000px;}
.y2d{bottom:157.530000px;}
.y70{bottom:162.030000px;}
.ybe{bottom:163.290000px;}
.y2c{bottom:163.470000px;}
.y10e{bottom:165.810000px;}
.y85{bottom:169.410000px;}
.ydf{bottom:169.770000px;}
.y8e{bottom:173.010000px;}
.y6f{bottom:183.990000px;}
.yf8{bottom:187.770000px;}
.y2b{bottom:191.190000px;}
.y84{bottom:191.370000px;}
.yde{bottom:191.730000px;}
.ybd{bottom:194.250000px;}
.y8d{bottom:194.970000px;}
.y10d{bottom:196.770000px;}
.y6e{bottom:205.950000px;}
.yf7{bottom:209.730000px;}
.y83{bottom:213.330000px;}
.ybc{bottom:216.210000px;}
.y8c{bottom:216.930000px;}
.y10c{bottom:218.730000px;}
.ydd{bottom:222.870000px;}
.y6d{bottom:227.910000px;}
.yf6{bottom:231.870000px;}
.y82{bottom:235.290000px;}
.ybb{bottom:238.170000px;}
.y8b{bottom:238.890000px;}
.ydc{bottom:244.830000px;}
.y6c{bottom:249.870000px;}
.yf5{bottom:253.830000px;}
.y81{bottom:257.250000px;}
.yba{bottom:260.130000px;}
.y8a{bottom:260.850000px;}
.y6b{bottom:271.830000px;}
.ydb{bottom:275.790000px;}
.y80{bottom:279.210000px;}
.y89{bottom:282.810000px;}
.yf4{bottom:284.790000px;}
.yb9{bottom:291.090000px;}
.y6a{bottom:293.790000px;}
.yda{bottom:297.750000px;}
.y7f{bottom:301.170000px;}
.y10b{bottom:302.790000px;}
.y88{bottom:304.770000px;}
.yf3{bottom:306.750000px;}
.y2a{bottom:315.390000px;}
.y69{bottom:315.750000px;}
.yd9{bottom:319.710000px;}
.yb8{bottom:322.050000px;}
.yab{bottom:323.130000px;}
.y7e{bottom:323.850000px;}
.y10a{bottom:324.750000px;}
.y87{bottom:326.730000px;}
.yf2{bottom:328.710000px;}
.y29{bottom:337.395000px;}
.y68{bottom:337.935000px;}
.yb7{bottom:344.055000px;}
.yaa{bottom:345.135000px;}
.yac{bottom:346.035000px;}
.y109{bottom:346.755000px;}
.y7d{bottom:348.915000px;}
.yd8{bottom:350.715000px;}
.yf1{bottom:359.715000px;}
.y67{bottom:359.895000px;}
.ya9{bottom:367.095000px;}
.y7c{bottom:370.875000px;}
.yd7{bottom:372.675000px;}
.yb6{bottom:375.015000px;}
.y108{bottom:377.715000px;}
.y28{bottom:380.235000px;}
.yf0{bottom:381.675000px;}
.y66{bottom:381.855000px;}
.ya8{bottom:389.055000px;}
.y7b{bottom:392.835000px;}
.yd6{bottom:394.635000px;}
.y49{bottom:395.715000px;}
.yb5{bottom:396.975000px;}
.y107{bottom:399.675000px;}
.y65{bottom:403.815000px;}
.ya7{bottom:411.015000px;}
.yef{bottom:412.635000px;}
.y7a{bottom:414.795000px;}
.y48{bottom:419.295000px;}
.y27{bottom:423.255000px;}
.yd5{bottom:425.595000px;}
.y64{bottom:425.775000px;}
.yb4{bottom:428.115000px;}
.y106{bottom:430.635000px;}
.ya6{bottom:432.975000px;}
.yee{bottom:434.595000px;}
.y79{bottom:436.755000px;}
.yd4{bottom:447.555000px;}
.y63{bottom:447.735000px;}
.yb3{bottom:450.075000px;}
.y105{bottom:452.595000px;}
.ya5{bottom:455.115000px;}
.y78{bottom:458.715000px;}
.yed{bottom:465.555000px;}
.y26{bottom:466.275000px;}
.yd3{bottom:469.515000px;}
.y47{bottom:469.695000px;}
.y104{bottom:474.555000px;}
.ya4{bottom:477.075000px;}
.y77{bottom:480.675000px;}
.yb2{bottom:481.035000px;}
.yec{bottom:487.515000px;}
.y62{bottom:491.655000px;}
.ya3{bottom:499.035000px;}
.yd2{bottom:500.475000px;}
.y76{bottom:502.635000px;}
.yb1{bottom:502.995000px;}
.y103{bottom:505.515000px;}
.y25{bottom:509.295000px;}
.y61{bottom:513.615000px;}
.yeb{bottom:518.475000px;}
.y46{bottom:519.915000px;}
.ya2{bottom:520.995000px;}
.yd1{bottom:522.435000px;}
.y75{bottom:524.595000px;}
.yb0{bottom:524.955000px;}
.y102{bottom:527.475000px;}
.y24{bottom:531.255000px;}
.y60{bottom:535.575000px;}
.yea{bottom:540.435000px;}
.ya1{bottom:542.955000px;}
.y74{bottom:546.555000px;}
.y23{bottom:553.215000px;}
.yd0{bottom:553.395000px;}
.yaf{bottom:555.915000px;}
.y5f{bottom:557.535000px;}
.y101{bottom:558.435000px;}
.ya0{bottom:564.915000px;}
.y45{bottom:568.515000px;}
.ye9{bottom:571.395000px;}
.y22{bottom:575.175000px;}
.ycf{bottom:575.535000px;}
.yae{bottom:577.875000px;}
.y5e{bottom:579.495000px;}
.y100{bottom:580.395000px;}
.y1{bottom:583.815000px;}
.y9f{bottom:586.875000px;}
.y44{bottom:590.475000px;}
.ye8{bottom:593.535000px;}
.y21{bottom:597.135000px;}
.y5d{bottom:601.455000px;}
.yff{bottom:602.535000px;}
.yce{bottom:606.525000px;}
.y9e{bottom:608.865000px;}
.y43{bottom:612.465000px;}
.y20{bottom:619.125000px;}
.y5c{bottom:623.445000px;}
.ye7{bottom:624.525000px;}
.y9d{bottom:630.825000px;}
.yad{bottom:631.545000px;}
.y42{bottom:634.425000px;}
.ycd{bottom:637.485000px;}
.y1f{bottom:641.085000px;}
.y5b{bottom:645.405000px;}
.ye6{bottom:646.485000px;}
.y2f{bottom:650.985000px;}
.y9c{bottom:652.785000px;}
.yfe{bottom:655.485000px;}
.y41{bottom:656.565000px;}
.y1e{bottom:663.045000px;}
.y5a{bottom:667.545000px;}
.ycc{bottom:668.445000px;}
.y110{bottom:669.885000px;}
.y9b{bottom:674.745000px;}
.yfd{bottom:677.445000px;}
.y40{bottom:678.525000px;}
.y1d{bottom:685.005000px;}
.y59{bottom:689.505000px;}
.ycb{bottom:690.405000px;}
.y9a{bottom:696.705000px;}
.ye5{bottom:699.405000px;}
.y3f{bottom:700.485000px;}
.y1c{bottom:706.965000px;}
.y58{bottom:711.465000px;}
.yca{bottom:712.365000px;}
.y99{bottom:718.665000px;}
.ye4{bottom:721.365000px;}
.y3e{bottom:722.445000px;}
.y1b{bottom:728.925000px;}
.yfc{bottom:730.365000px;}
.y57{bottom:733.425000px;}
.y98{bottom:740.625000px;}
.yc9{bottom:743.325000px;}
.y3d{bottom:744.405000px;}
.y1a{bottom:750.885000px;}
.ye3{bottom:752.325000px;}
.y56{bottom:755.385000px;}
.y97{bottom:762.765000px;}
.yc8{bottom:765.285000px;}
.y3c{bottom:766.365000px;}
.y19{bottom:772.845000px;}
.ye2{bottom:774.285000px;}
.y55{bottom:777.345000px;}
.y96{bottom:784.725000px;}
.y3b{bottom:788.325000px;}
.yc7{bottom:796.245000px;}
.y54{bottom:799.305000px;}
.yfb{bottom:805.245000px;}
.y95{bottom:806.685000px;}
.y3a{bottom:810.285000px;}
.y18{bottom:815.865000px;}
.yc6{bottom:818.205000px;}
.y53{bottom:821.265000px;}
.ye1{bottom:827.205000px;}
.y94{bottom:828.645000px;}
.y39{bottom:832.245000px;}
.y52{bottom:843.225000px;}
.yc5{bottom:849.165000px;}
.y93{bottom:850.605000px;}
.y38{bottom:854.205000px;}
.y17{bottom:858.885000px;}
.y51{bottom:865.185000px;}
.yc4{bottom:871.170000px;}
.y92{bottom:872.610000px;}
.y37{bottom:876.210000px;}
.ye0{bottom:880.170000px;}
.y50{bottom:887.190000px;}
.y91{bottom:894.570000px;}
.y36{bottom:898.170000px;}
.y16{bottom:901.950000px;}
.yc3{bottom:902.130000px;}
.y72{bottom:904.290000px;}
.y4f{bottom:909.150000px;}
.yfa{bottom:911.130000px;}
.y90{bottom:917.250000px;}
.y35{bottom:920.130000px;}
.yc2{bottom:924.090000px;}
.y15{bottom:924.630000px;}
.y4e{bottom:931.110000px;}
.yf9{bottom:933.090000px;}
.y34{bottom:942.090000px;}
.y14{bottom:949.470000px;}
.y4d{bottom:953.070000px;}
.yc1{bottom:955.230000px;}
.y33{bottom:964.230000px;}
.y12{bottom:973.050000px;}
.y4c{bottom:975.930000px;}
.yc0{bottom:977.190000px;}
.y13{bottom:978.990000px;}
.y32{bottom:986.190000px;}
.y4b{bottom:1001.490000px;}
.y11{bottom:1002.390000px;}
.y31{bottom:1008.150000px;}
.y4a{bottom:1027.230000px;}
.y10{bottom:1030.110000px;}
.ya{bottom:1050.450000px;}
.y9{bottom:1067.010000px;}
.y8{bottom:1080.690000px;}
.y7{bottom:1094.550000px;}
.y6{bottom:1126.230000px;}
.y5{bottom:1143.540000px;}
.y4{bottom:1160.820000px;}
.y3{bottom:1174.860000px;}
.he{height:27.720000px;}
.hc{height:35.806641px;}
.hd{height:41.535703px;}
.h9{height:50.218594px;}
.h6{height:50.312812px;}
.h5{height:62.327813px;}
.ha{height:63.961523px;}
.h10{height:65.880000px;}
.h4{height:65.884219px;}
.h7{height:71.613281px;}
.h3{height:71.820000px;}
.hb{height:73.722656px;}
.hf{height:86.255508px;}
.h2{height:95.076000px;}
.h8{height:98.051133px;}
.h11{height:355.201875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:34.020000px;}
.w6{width:51.696000px;}
.w2{width:71.850000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.x13{left:24.330000px;}
.x2{left:31.350000px;}
.x4{left:53.999987px;}
.xe{left:59.219987px;}
.xc{left:75.419987px;}
.x11{left:105.695987px;}
.x12{left:107.135987px;}
.x3{left:153.029987px;}
.x8{left:203.069987px;}
.x5{left:209.909987px;}
.xd{left:270.029987px;}
.x9{left:274.709987px;}
.x7{left:369.794987px;}
.x6{left:446.474987px;}
.xa{left:612.284973px;}
.xb{left:618.404987px;}
.x1{left:821.130000px;}
.xf{left:849.960000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.906667pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.441067pt;}
.ls19{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.036480pt;}
.lsa{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.239360pt;}
.ls6{letter-spacing:0.239467pt;}
.ls17{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls14{letter-spacing:3.456000pt;}
.ls11{letter-spacing:10.496000pt;}
.ls3{letter-spacing:754.799787pt;}
.ls1{letter-spacing:1380.699307pt;}
.ws5{word-spacing:-64.000000pt;}
.wsa{word-spacing:-14.784000pt;}
.wsc{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.144000pt;}
.wse{word-spacing:-13.888000pt;}
.ws1{word-spacing:-12.160107pt;}
.ws2{word-spacing:-11.759573pt;}
.ws0{word-spacing:-11.479573pt;}
.ws9{word-spacing:-0.121600pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-4.160000pt;}
._4{margin-left:-3.264000pt;}
._8{margin-left:-2.170880pt;}
._0{margin-left:-1.280640pt;}
._1{width:1.062187pt;}
._b{width:2.265813pt;}
._3{width:3.264000pt;}
._2{width:4.288000pt;}
._6{width:5.184000pt;}
._5{width:6.336000pt;}
._7{width:7.488000pt;}
._18{width:8.384640pt;}
._c{width:9.280000pt;}
._d{width:10.533973pt;}
._e{width:11.749547pt;}
._9{width:12.698453pt;}
._17{width:15.969493pt;}
._16{width:17.344000pt;}
._19{width:18.433280pt;}
._13{width:19.392000pt;}
._12{width:20.352000pt;}
._1b{width:21.504000pt;}
._15{width:23.003093pt;}
._14{width:24.128000pt;}
._1c{width:25.044693pt;}
._f{width:26.201813pt;}
._10{width:27.572267pt;}
._1d{width:28.480000pt;}
._20{width:29.504000pt;}
._27{width:32.832000pt;}
._1f{width:34.049280pt;}
._1e{width:35.008000pt;}
._2c{width:36.032000pt;}
._22{width:37.184000pt;}
._21{width:38.080000pt;}
._24{width:42.752000pt;}
._a{width:43.776000pt;}
._23{width:44.747307pt;}
._11{width:58.202880pt;}
._2b{width:71.041920pt;}
._2a{width:71.936000pt;}
._26{width:91.264640pt;}
._25{width:92.288000pt;}
._29{width:157.760000pt;}
._28{width:158.912000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs8{font-size:317.440000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:4.320000pt;}
.y30{bottom:10.720000pt;}
.yf{bottom:51.200000pt;}
.y2{bottom:65.146667pt;}
.ye{bottom:68.992000pt;}
.yd{bottom:85.152000pt;}
.yc{bottom:97.472000pt;}
.yb{bottom:109.792000pt;}
.y2e{bottom:123.232000pt;}
.y71{bottom:124.512000pt;}
.ybf{bottom:125.632000pt;}
.y10f{bottom:127.872000pt;}
.y86{bottom:131.072000pt;}
.y8f{bottom:134.266667pt;}
.y2d{bottom:140.026667pt;}
.y70{bottom:144.026667pt;}
.ybe{bottom:145.146667pt;}
.y2c{bottom:145.306667pt;}
.y10e{bottom:147.386667pt;}
.y85{bottom:150.586667pt;}
.ydf{bottom:150.906667pt;}
.y8e{bottom:153.786667pt;}
.y6f{bottom:163.546667pt;}
.yf8{bottom:166.906667pt;}
.y2b{bottom:169.946667pt;}
.y84{bottom:170.106667pt;}
.yde{bottom:170.426667pt;}
.ybd{bottom:172.666667pt;}
.y8d{bottom:173.306667pt;}
.y10d{bottom:174.906667pt;}
.y6e{bottom:183.066667pt;}
.yf7{bottom:186.426667pt;}
.y83{bottom:189.626667pt;}
.ybc{bottom:192.186667pt;}
.y8c{bottom:192.826667pt;}
.y10c{bottom:194.426667pt;}
.ydd{bottom:198.106667pt;}
.y6d{bottom:202.586667pt;}
.yf6{bottom:206.106667pt;}
.y82{bottom:209.146667pt;}
.ybb{bottom:211.706667pt;}
.y8b{bottom:212.346667pt;}
.ydc{bottom:217.626667pt;}
.y6c{bottom:222.106667pt;}
.yf5{bottom:225.626667pt;}
.y81{bottom:228.666667pt;}
.yba{bottom:231.226667pt;}
.y8a{bottom:231.866667pt;}
.y6b{bottom:241.626667pt;}
.ydb{bottom:245.146667pt;}
.y80{bottom:248.186667pt;}
.y89{bottom:251.386667pt;}
.yf4{bottom:253.146667pt;}
.yb9{bottom:258.746667pt;}
.y6a{bottom:261.146667pt;}
.yda{bottom:264.666667pt;}
.y7f{bottom:267.706667pt;}
.y10b{bottom:269.146667pt;}
.y88{bottom:270.906667pt;}
.yf3{bottom:272.666667pt;}
.y2a{bottom:280.346667pt;}
.y69{bottom:280.666667pt;}
.yd9{bottom:284.186667pt;}
.yb8{bottom:286.266667pt;}
.yab{bottom:287.226667pt;}
.y7e{bottom:287.866667pt;}
.y10a{bottom:288.666667pt;}
.y87{bottom:290.426667pt;}
.yf2{bottom:292.186667pt;}
.y29{bottom:299.906667pt;}
.y68{bottom:300.386667pt;}
.yb7{bottom:305.826667pt;}
.yaa{bottom:306.786667pt;}
.yac{bottom:307.586667pt;}
.y109{bottom:308.226667pt;}
.y7d{bottom:310.146667pt;}
.yd8{bottom:311.746667pt;}
.yf1{bottom:319.746667pt;}
.y67{bottom:319.906667pt;}
.ya9{bottom:326.306667pt;}
.y7c{bottom:329.666667pt;}
.yd7{bottom:331.266667pt;}
.yb6{bottom:333.346667pt;}
.y108{bottom:335.746667pt;}
.y28{bottom:337.986667pt;}
.yf0{bottom:339.266667pt;}
.y66{bottom:339.426667pt;}
.ya8{bottom:345.826667pt;}
.y7b{bottom:349.186667pt;}
.yd6{bottom:350.786667pt;}
.y49{bottom:351.746667pt;}
.yb5{bottom:352.866667pt;}
.y107{bottom:355.266667pt;}
.y65{bottom:358.946667pt;}
.ya7{bottom:365.346667pt;}
.yef{bottom:366.786667pt;}
.y7a{bottom:368.706667pt;}
.y48{bottom:372.706667pt;}
.y27{bottom:376.226667pt;}
.yd5{bottom:378.306667pt;}
.y64{bottom:378.466667pt;}
.yb4{bottom:380.546667pt;}
.y106{bottom:382.786667pt;}
.ya6{bottom:384.866667pt;}
.yee{bottom:386.306667pt;}
.y79{bottom:388.226667pt;}
.yd4{bottom:397.826667pt;}
.y63{bottom:397.986667pt;}
.yb3{bottom:400.066667pt;}
.y105{bottom:402.306667pt;}
.ya5{bottom:404.546667pt;}
.y78{bottom:407.746667pt;}
.yed{bottom:413.826667pt;}
.y26{bottom:414.466667pt;}
.yd3{bottom:417.346667pt;}
.y47{bottom:417.506667pt;}
.y104{bottom:421.826667pt;}
.ya4{bottom:424.066667pt;}
.y77{bottom:427.266667pt;}
.yb2{bottom:427.586667pt;}
.yec{bottom:433.346667pt;}
.y62{bottom:437.026667pt;}
.ya3{bottom:443.586667pt;}
.yd2{bottom:444.866667pt;}
.y76{bottom:446.786667pt;}
.yb1{bottom:447.106667pt;}
.y103{bottom:449.346667pt;}
.y25{bottom:452.706667pt;}
.y61{bottom:456.546667pt;}
.yeb{bottom:460.866667pt;}
.y46{bottom:462.146667pt;}
.ya2{bottom:463.106667pt;}
.yd1{bottom:464.386667pt;}
.y75{bottom:466.306667pt;}
.yb0{bottom:466.626667pt;}
.y102{bottom:468.866667pt;}
.y24{bottom:472.226667pt;}
.y60{bottom:476.066667pt;}
.yea{bottom:480.386667pt;}
.ya1{bottom:482.626667pt;}
.y74{bottom:485.826667pt;}
.y23{bottom:491.746667pt;}
.yd0{bottom:491.906667pt;}
.yaf{bottom:494.146667pt;}
.y5f{bottom:495.586667pt;}
.y101{bottom:496.386667pt;}
.ya0{bottom:502.146667pt;}
.y45{bottom:505.346667pt;}
.ye9{bottom:507.906667pt;}
.y22{bottom:511.266667pt;}
.ycf{bottom:511.586667pt;}
.yae{bottom:513.666667pt;}
.y5e{bottom:515.106667pt;}
.y100{bottom:515.906667pt;}
.y1{bottom:518.946667pt;}
.y9f{bottom:521.666667pt;}
.y44{bottom:524.866667pt;}
.ye8{bottom:527.586667pt;}
.y21{bottom:530.786667pt;}
.y5d{bottom:534.626667pt;}
.yff{bottom:535.586667pt;}
.yce{bottom:539.133333pt;}
.y9e{bottom:541.213333pt;}
.y43{bottom:544.413333pt;}
.y20{bottom:550.333333pt;}
.y5c{bottom:554.173333pt;}
.ye7{bottom:555.133333pt;}
.y9d{bottom:560.733333pt;}
.yad{bottom:561.373333pt;}
.y42{bottom:563.933333pt;}
.ycd{bottom:566.653333pt;}
.y1f{bottom:569.853333pt;}
.y5b{bottom:573.693333pt;}
.ye6{bottom:574.653333pt;}
.y2f{bottom:578.653333pt;}
.y9c{bottom:580.253333pt;}
.yfe{bottom:582.653333pt;}
.y41{bottom:583.613333pt;}
.y1e{bottom:589.373333pt;}
.y5a{bottom:593.373333pt;}
.ycc{bottom:594.173333pt;}
.y110{bottom:595.453333pt;}
.y9b{bottom:599.773333pt;}
.yfd{bottom:602.173333pt;}
.y40{bottom:603.133333pt;}
.y1d{bottom:608.893333pt;}
.y59{bottom:612.893333pt;}
.ycb{bottom:613.693333pt;}
.y9a{bottom:619.293333pt;}
.ye5{bottom:621.693333pt;}
.y3f{bottom:622.653333pt;}
.y1c{bottom:628.413333pt;}
.y58{bottom:632.413333pt;}
.yca{bottom:633.213333pt;}
.y99{bottom:638.813333pt;}
.ye4{bottom:641.213333pt;}
.y3e{bottom:642.173333pt;}
.y1b{bottom:647.933333pt;}
.yfc{bottom:649.213333pt;}
.y57{bottom:651.933333pt;}
.y98{bottom:658.333333pt;}
.yc9{bottom:660.733333pt;}
.y3d{bottom:661.693333pt;}
.y1a{bottom:667.453333pt;}
.ye3{bottom:668.733333pt;}
.y56{bottom:671.453333pt;}
.y97{bottom:678.013333pt;}
.yc8{bottom:680.253333pt;}
.y3c{bottom:681.213333pt;}
.y19{bottom:686.973333pt;}
.ye2{bottom:688.253333pt;}
.y55{bottom:690.973333pt;}
.y96{bottom:697.533333pt;}
.y3b{bottom:700.733333pt;}
.yc7{bottom:707.773333pt;}
.y54{bottom:710.493333pt;}
.yfb{bottom:715.773333pt;}
.y95{bottom:717.053333pt;}
.y3a{bottom:720.253333pt;}
.y18{bottom:725.213333pt;}
.yc6{bottom:727.293333pt;}
.y53{bottom:730.013333pt;}
.ye1{bottom:735.293333pt;}
.y94{bottom:736.573333pt;}
.y39{bottom:739.773333pt;}
.y52{bottom:749.533333pt;}
.yc5{bottom:754.813333pt;}
.y93{bottom:756.093333pt;}
.y38{bottom:759.293333pt;}
.y17{bottom:763.453333pt;}
.y51{bottom:769.053333pt;}
.yc4{bottom:774.373333pt;}
.y92{bottom:775.653333pt;}
.y37{bottom:778.853333pt;}
.ye0{bottom:782.373333pt;}
.y50{bottom:788.613333pt;}
.y91{bottom:795.173333pt;}
.y36{bottom:798.373333pt;}
.y16{bottom:801.733333pt;}
.yc3{bottom:801.893333pt;}
.y72{bottom:803.813333pt;}
.y4f{bottom:808.133333pt;}
.yfa{bottom:809.893333pt;}
.y90{bottom:815.333333pt;}
.y35{bottom:817.893333pt;}
.yc2{bottom:821.413333pt;}
.y15{bottom:821.893333pt;}
.y4e{bottom:827.653333pt;}
.yf9{bottom:829.413333pt;}
.y34{bottom:837.413333pt;}
.y14{bottom:843.973333pt;}
.y4d{bottom:847.173333pt;}
.yc1{bottom:849.093333pt;}
.y33{bottom:857.093333pt;}
.y12{bottom:864.933333pt;}
.y4c{bottom:867.493333pt;}
.yc0{bottom:868.613333pt;}
.y13{bottom:870.213333pt;}
.y32{bottom:876.613333pt;}
.y4b{bottom:890.213333pt;}
.y11{bottom:891.013333pt;}
.y31{bottom:896.133333pt;}
.y4a{bottom:913.093333pt;}
.y10{bottom:915.653333pt;}
.ya{bottom:933.733333pt;}
.y9{bottom:948.453333pt;}
.y8{bottom:960.613333pt;}
.y7{bottom:972.933333pt;}
.y6{bottom:1001.093333pt;}
.y5{bottom:1016.480000pt;}
.y4{bottom:1031.840000pt;}
.y3{bottom:1044.320000pt;}
.he{height:24.640000pt;}
.hc{height:31.828125pt;}
.hd{height:36.920625pt;}
.h9{height:44.638750pt;}
.h6{height:44.722500pt;}
.h5{height:55.402500pt;}
.ha{height:56.854687pt;}
.h10{height:58.560000pt;}
.h4{height:58.563750pt;}
.h7{height:63.656250pt;}
.h3{height:63.840000pt;}
.hb{height:65.531250pt;}
.hf{height:76.671562pt;}
.h2{height:84.512000pt;}
.h8{height:87.156562pt;}
.h11{height:315.735000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:30.240000pt;}
.w6{width:45.952000pt;}
.w2{width:63.866667pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.x13{left:21.626667pt;}
.x2{left:27.866667pt;}
.x4{left:47.999988pt;}
.xe{left:52.639988pt;}
.xc{left:67.039988pt;}
.x11{left:93.951988pt;}
.x12{left:95.231988pt;}
.x3{left:136.026655pt;}
.x8{left:180.506655pt;}
.x5{left:186.586655pt;}
.xd{left:240.026655pt;}
.x9{left:244.186655pt;}
.x7{left:328.706655pt;}
.x6{left:396.866655pt;}
.xa{left:544.253310pt;}
.xb{left:549.693322pt;}
.x1{left:729.893333pt;}
.xf{left:755.520000pt;}
}




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