
    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_8cfe365f1201ac3adc16bee6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_0a3800571280a796c79b0139.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_914f72d575759332460f71f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_7017fe220bd01cb539b0a4f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960449;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b1982c8224ee737e0fb9ba7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:ffa;src:url('chunks/assets/font_ff5d8cbc3716ad5991e6800d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1d{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.684000px;}
.ls20{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.037440px;}
.ls9{letter-spacing:-0.018720px;}
.ls7{letter-spacing:-0.000001px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls1f{letter-spacing:0.106560px;}
.ls23{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.208080px;}
.ls1b{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.341400px;}
.ls11{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.ls22{letter-spacing:0.378720px;}
.ls2{letter-spacing:0.504000px;}
.ls19{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.980000px;}
.ls4{letter-spacing:2.106720px;}
.ls1a{letter-spacing:4.140000px;}
.ls15{letter-spacing:7.020000px;}
.ls3{letter-spacing:9.180000px;}
.ls14{letter-spacing:13.500000px;}
.lse{letter-spacing:19.260000px;}
.ls5{letter-spacing:21.420000px;}
.ls24{letter-spacing:30.780000px;}
.ls18{letter-spacing:33.660000px;}
.ls1c{letter-spacing:46.620000px;}
.ls21{letter-spacing:49.500000px;}
.ls17{letter-spacing:51.660000px;}
.ls16{letter-spacing:52.380000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.wsb{word-spacing:-24.300000px;}
.ws4{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.312720px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.wsc{word-spacing:-21.022560px;}
.wsd{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.wse{word-spacing:-20.681400px;}
.wsf{word-spacing:-20.376000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.712000px;}
.ws8{word-spacing:0.000000px;}
._2b{margin-left:-6.338640px;}
._22{margin-left:-5.138640px;}
._f{margin-left:-3.875040px;}
._10{margin-left:-2.865120px;}
._2{margin-left:-1.158720px;}
._1{width:1.104000px;}
._0{width:2.208000px;}
._27{width:3.601680px;}
._17{width:4.801680px;}
._20{width:6.634320px;}
._9{width:8.424000px;}
._a{width:10.056240px;}
._4{width:11.105760px;}
._3{width:12.194160px;}
._e{width:13.512480px;}
._11{width:14.994720px;}
._12{width:16.089840px;}
._13{width:17.269200px;}
._5{width:18.701280px;}
._6{width:19.775760px;}
._14{width:22.354080px;}
._21{width:23.576400px;}
._1c{width:24.654480px;}
._b{width:26.535600px;}
._c{width:27.546480px;}
._d{width:29.217360px;}
._1e{width:30.304080px;}
._37{width:31.452960px;}
._15{width:32.516640px;}
._16{width:33.875280px;}
._1d{width:35.865600px;}
._1b{width:37.213440px;}
._1a{width:38.224320px;}
._7{width:39.255840px;}
._8{width:40.309680px;}
._23{width:42.352080px;}
._24{width:43.614000px;}
._30{width:45.548880px;}
._28{width:46.753200px;}
._2d{width:48.185280px;}
._3c{width:49.280400px;}
._2c{width:50.877840px;}
._26{width:52.144560px;}
._38{width:53.323920px;}
._39{width:54.750960px;}
._35{width:56.073600px;}
._36{width:57.133920px;}
._1f{width:59.473440px;}
._25{width:60.855360px;}
._18{width:61.991040px;}
._19{width:63.084720px;}
._31{width:64.445280px;}
._2a{width:65.875680px;}
._29{width:67.055040px;}
._3d{width:70.142880px;}
._3a{width:71.797920px;}
._3b{width:72.826320px;}
._3e{width:77.079600px;}
._3f{width:78.491040px;}
._40{width:79.816800px;}
._33{width:91.106400px;}
._32{width:92.181120px;}
._2f{width:119.252640px;}
._2e{width:120.703680px;}
._44{width:143.376480px;}
._34{width:165.447360px;}
._42{width:399.466080px;}
._43{width:400.674720px;}
._41{width:965.306160px;}
.fc4{color:transparent;}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.ybd{bottom:90.216000px;}
.y4d{bottom:95.256000px;}
.yc0{bottom:98.856000px;}
.y91{bottom:102.096000px;}
.yba{bottom:110.016000px;}
.ybc{bottom:117.936000px;}
.y8c{bottom:121.176000px;}
.y4c{bottom:122.976000px;}
.ybf{bottom:126.576000px;}
.y90{bottom:129.816000px;}
.yb9{bottom:137.736000px;}
.y2f{bottom:138.816000px;}
.y54{bottom:139.896000px;}
.ybb{bottom:141.156000px;}
.y8b{bottom:148.896000px;}
.y4b{bottom:150.870000px;}
.ybe{bottom:154.470000px;}
.y8f{bottom:157.530000px;}
.yb8{bottom:165.630000px;}
.y2e{bottom:166.530000px;}
.y53{bottom:167.610000px;}
.y8a{bottom:176.790000px;}
.y4a{bottom:178.590000px;}
.y8e{bottom:180.930000px;}
.yb7{bottom:193.350000px;}
.y2d{bottom:194.250000px;}
.y52{bottom:195.330000px;}
.y89{bottom:204.510000px;}
.y49{bottom:206.310000px;}
.yb6{bottom:221.070000px;}
.y2c{bottom:222.150000px;}
.y51{bottom:223.050000px;}
.y74{bottom:228.990000px;}
.y88{bottom:232.230000px;}
.y48{bottom:234.030000px;}
.y5f{bottom:236.010000px;}
.yb5{bottom:248.970000px;}
.y2b{bottom:249.870000px;}
.y50{bottom:250.950000px;}
.y73{bottom:256.710000px;}
.y87{bottom:259.950000px;}
.y47{bottom:261.930000px;}
.y5e{bottom:263.730000px;}
.yb4{bottom:276.690000px;}
.y2a{bottom:277.590000px;}
.y4f{bottom:278.670000px;}
.y72{bottom:284.610000px;}
.y86{bottom:287.850000px;}
.y46{bottom:289.650000px;}
.y5d{bottom:291.450000px;}
.y4e{bottom:301.890000px;}
.yb3{bottom:304.410000px;}
.y29{bottom:305.490000px;}
.y71{bottom:312.330000px;}
.y85{bottom:315.570000px;}
.y45{bottom:317.370000px;}
.y5c{bottom:319.350000px;}
.yb2{bottom:332.130000px;}
.y28{bottom:333.210000px;}
.ya9{bottom:333.570000px;}
.y70{bottom:340.095000px;}
.y84{bottom:343.335000px;}
.y44{bottom:345.135000px;}
.y5b{bottom:347.115000px;}
.yb1{bottom:360.075000px;}
.y27{bottom:360.975000px;}
.ya8{bottom:361.515000px;}
.y6f{bottom:367.995000px;}
.y83{bottom:371.235000px;}
.y43{bottom:373.035000px;}
.y5a{bottom:374.835000px;}
.yb0{bottom:387.795000px;}
.y26{bottom:388.695000px;}
.ya7{bottom:389.235000px;}
.y6e{bottom:395.715000px;}
.y82{bottom:398.955000px;}
.y42{bottom:400.755000px;}
.y59{bottom:402.735000px;}
.y9b{bottom:411.015000px;}
.yaf{bottom:415.515000px;}
.y25{bottom:416.595000px;}
.ya6{bottom:416.955000px;}
.y6d{bottom:423.435000px;}
.y81{bottom:426.675000px;}
.y41{bottom:428.475000px;}
.y58{bottom:430.455000px;}
.y9a{bottom:438.735000px;}
.yae{bottom:443.415000px;}
.y24{bottom:444.315000px;}
.ya5{bottom:444.675000px;}
.y6c{bottom:451.155000px;}
.y80{bottom:454.395000px;}
.y40{bottom:456.375000px;}
.y57{bottom:458.175000px;}
.y99{bottom:466.455000px;}
.yad{bottom:471.135000px;}
.y23{bottom:472.035000px;}
.ya4{bottom:472.575000px;}
.y6b{bottom:479.055000px;}
.y7f{bottom:482.295000px;}
.y3f{bottom:484.095000px;}
.y56{bottom:485.895000px;}
.y98{bottom:494.175000px;}
.yac{bottom:498.855000px;}
.y22{bottom:499.755000px;}
.ya3{bottom:500.295000px;}
.y6a{bottom:506.775000px;}
.y55{bottom:509.115000px;}
.y7e{bottom:510.015000px;}
.y3e{bottom:511.815000px;}
.y97{bottom:522.075000px;}
.yab{bottom:526.575000px;}
.y21{bottom:527.655000px;}
.ya2{bottom:528.015000px;}
.y69{bottom:534.495000px;}
.y7d{bottom:537.735000px;}
.y3d{bottom:539.535000px;}
.y96{bottom:549.795000px;}
.yaa{bottom:554.475000px;}
.y20{bottom:555.375000px;}
.ya1{bottom:555.915000px;}
.y68{bottom:562.215000px;}
.y7c{bottom:565.455000px;}
.y3c{bottom:567.435000px;}
.y95{bottom:577.515000px;}
.y1f{bottom:583.095000px;}
.ya0{bottom:583.635000px;}
.y67{bottom:590.115000px;}
.y7b{bottom:593.355000px;}
.y3b{bottom:595.155000px;}
.y8d{bottom:601.455000px;}
.y94{bottom:605.445000px;}
.y1e{bottom:611.025000px;}
.y9f{bottom:611.385000px;}
.y66{bottom:617.865000px;}
.y7a{bottom:621.105000px;}
.y3a{bottom:622.905000px;}
.y93{bottom:633.165000px;}
.y1d{bottom:638.745000px;}
.y9e{bottom:639.105000px;}
.y65{bottom:645.585000px;}
.y79{bottom:648.825000px;}
.y39{bottom:650.805000px;}
.y92{bottom:656.205000px;}
.y1c{bottom:666.465000px;}
.y9d{bottom:667.005000px;}
.y64{bottom:673.485000px;}
.y78{bottom:676.725000px;}
.y38{bottom:678.525000px;}
.y9c{bottom:690.045000px;}
.y1b{bottom:694.185000px;}
.y63{bottom:701.205000px;}
.y77{bottom:704.445000px;}
.y37{bottom:706.245000px;}
.y1a{bottom:722.085000px;}
.y62{bottom:728.925000px;}
.y76{bottom:732.165000px;}
.y36{bottom:733.965000px;}
.y19{bottom:749.805000px;}
.y75{bottom:755.385000px;}
.y61{bottom:756.645000px;}
.y35{bottom:761.865000px;}
.y18{bottom:777.525000px;}
.y60{bottom:779.865000px;}
.y34{bottom:789.585000px;}
.y17{bottom:805.425000px;}
.y33{bottom:817.305000px;}
.y16{bottom:833.145000px;}
.y32{bottom:845.025000px;}
.y15{bottom:860.865000px;}
.y31{bottom:872.970000px;}
.y14{bottom:888.630000px;}
.y30{bottom:900.690000px;}
.y13{bottom:928.410000px;}
.y12{bottom:956.310000px;}
.y11{bottom:984.030000px;}
.y10{bottom:1011.750000px;}
.yf{bottom:1039.470000px;}
.ye{bottom:1067.370000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.h10{height:58.819922px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:80.208984px;}
.ha{height:82.676953px;}
.hd{height:84.661875px;}
.hb{height:84.898125px;}
.he{height:86.585445px;}
.hf{height:87.695156px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x8{left:17.460000px;}
.x21{left:19.800000px;}
.xa{left:25.740000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.x1d{left:89.135987px;}
.x1e{left:98.675987px;}
.x19{left:114.695987px;}
.xb{left:123.695987px;}
.x18{left:127.475987px;}
.x1f{left:183.809987px;}
.xf{left:185.609987px;}
.x1a{left:188.849987px;}
.x12{left:263.909987px;}
.x10{left:282.134987px;}
.x13{left:283.934987px;}
.x1b{left:293.834987px;}
.x15{left:313.634987px;}
.x16{left:337.034987px;}
.x14{left:367.454987px;}
.x17{left:368.894987px;}
.x11{left:375.014987px;}
.xe{left:376.094987px;}
.x1c{left:389.234987px;}
.xc{left:392.114987px;}
.xd{left:446.474987px;}
.x3{left:521.205000px;}
.x20{left:717.629987px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1d{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.608000pt;}
.ls20{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.033280pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls7{letter-spacing:-0.000001pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls1f{letter-spacing:0.094720pt;}
.ls23{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.184960pt;}
.ls1b{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.303467pt;}
.ls11{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.ls22{letter-spacing:0.336640pt;}
.ls2{letter-spacing:0.448000pt;}
.ls19{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.760000pt;}
.ls4{letter-spacing:1.872640pt;}
.ls1a{letter-spacing:3.680000pt;}
.ls15{letter-spacing:6.240000pt;}
.ls3{letter-spacing:8.160000pt;}
.ls14{letter-spacing:12.000000pt;}
.lse{letter-spacing:17.120000pt;}
.ls5{letter-spacing:19.040000pt;}
.ls24{letter-spacing:27.360000pt;}
.ls18{letter-spacing:29.920000pt;}
.ls1c{letter-spacing:41.440000pt;}
.ls21{letter-spacing:44.000000pt;}
.ls17{letter-spacing:45.920000pt;}
.ls16{letter-spacing:46.560000pt;}
.ws7{word-spacing:-53.120000pt;}
.wsb{word-spacing:-21.600000pt;}
.ws4{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.944640pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.wsc{word-spacing:-18.686720pt;}
.wsd{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.wse{word-spacing:-18.383467pt;}
.wsf{word-spacing:-18.112000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws8{word-spacing:0.000000pt;}
._2b{margin-left:-5.634347pt;}
._22{margin-left:-4.567680pt;}
._f{margin-left:-3.444480pt;}
._10{margin-left:-2.546773pt;}
._2{margin-left:-1.029973pt;}
._1{width:0.981333pt;}
._0{width:1.962667pt;}
._27{width:3.201493pt;}
._17{width:4.268160pt;}
._20{width:5.897173pt;}
._9{width:7.488000pt;}
._a{width:8.938880pt;}
._4{width:9.871787pt;}
._3{width:10.839253pt;}
._e{width:12.011093pt;}
._11{width:13.328640pt;}
._12{width:14.302080pt;}
._13{width:15.350400pt;}
._5{width:16.623360pt;}
._6{width:17.578453pt;}
._14{width:19.870293pt;}
._21{width:20.956800pt;}
._1c{width:21.915093pt;}
._b{width:23.587200pt;}
._c{width:24.485760pt;}
._d{width:25.970987pt;}
._1e{width:26.936960pt;}
._37{width:27.958187pt;}
._15{width:28.903680pt;}
._16{width:30.111360pt;}
._1d{width:31.880533pt;}
._1b{width:33.078613pt;}
._1a{width:33.977173pt;}
._7{width:34.894080pt;}
._8{width:35.830827pt;}
._23{width:37.646293pt;}
._24{width:38.768000pt;}
._30{width:40.487893pt;}
._28{width:41.558400pt;}
._2d{width:42.831360pt;}
._3c{width:43.804800pt;}
._2c{width:45.224747pt;}
._26{width:46.350720pt;}
._38{width:47.399040pt;}
._39{width:48.667520pt;}
._35{width:49.843200pt;}
._36{width:50.785707pt;}
._1f{width:52.865280pt;}
._25{width:54.093653pt;}
._18{width:55.103147pt;}
._19{width:56.075307pt;}
._31{width:57.284693pt;}
._2a{width:58.556160pt;}
._29{width:59.604480pt;}
._3d{width:62.349227pt;}
._3a{width:63.820373pt;}
._3b{width:64.734507pt;}
._3e{width:68.515200pt;}
._3f{width:69.769813pt;}
._40{width:70.948267pt;}
._33{width:80.983467pt;}
._32{width:81.938773pt;}
._2f{width:106.002347pt;}
._2e{width:107.292160pt;}
._44{width:127.445760pt;}
._34{width:147.064320pt;}
._42{width:355.080960pt;}
._43{width:356.155307pt;}
._41{width:858.049920pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.ybd{bottom:80.192000pt;}
.y4d{bottom:84.672000pt;}
.yc0{bottom:87.872000pt;}
.y91{bottom:90.752000pt;}
.yba{bottom:97.792000pt;}
.ybc{bottom:104.832000pt;}
.y8c{bottom:107.712000pt;}
.y4c{bottom:109.312000pt;}
.ybf{bottom:112.512000pt;}
.y90{bottom:115.392000pt;}
.yb9{bottom:122.432000pt;}
.y2f{bottom:123.392000pt;}
.y54{bottom:124.352000pt;}
.ybb{bottom:125.472000pt;}
.y8b{bottom:132.352000pt;}
.y4b{bottom:134.106667pt;}
.ybe{bottom:137.306667pt;}
.y8f{bottom:140.026667pt;}
.yb8{bottom:147.226667pt;}
.y2e{bottom:148.026667pt;}
.y53{bottom:148.986667pt;}
.y8a{bottom:157.146667pt;}
.y4a{bottom:158.746667pt;}
.y8e{bottom:160.826667pt;}
.yb7{bottom:171.866667pt;}
.y2d{bottom:172.666667pt;}
.y52{bottom:173.626667pt;}
.y89{bottom:181.786667pt;}
.y49{bottom:183.386667pt;}
.yb6{bottom:196.506667pt;}
.y2c{bottom:197.466667pt;}
.y51{bottom:198.266667pt;}
.y74{bottom:203.546667pt;}
.y88{bottom:206.426667pt;}
.y48{bottom:208.026667pt;}
.y5f{bottom:209.786667pt;}
.yb5{bottom:221.306667pt;}
.y2b{bottom:222.106667pt;}
.y50{bottom:223.066667pt;}
.y73{bottom:228.186667pt;}
.y87{bottom:231.066667pt;}
.y47{bottom:232.826667pt;}
.y5e{bottom:234.426667pt;}
.yb4{bottom:245.946667pt;}
.y2a{bottom:246.746667pt;}
.y4f{bottom:247.706667pt;}
.y72{bottom:252.986667pt;}
.y86{bottom:255.866667pt;}
.y46{bottom:257.466667pt;}
.y5d{bottom:259.066667pt;}
.y4e{bottom:268.346667pt;}
.yb3{bottom:270.586667pt;}
.y29{bottom:271.546667pt;}
.y71{bottom:277.626667pt;}
.y85{bottom:280.506667pt;}
.y45{bottom:282.106667pt;}
.y5c{bottom:283.866667pt;}
.yb2{bottom:295.226667pt;}
.y28{bottom:296.186667pt;}
.ya9{bottom:296.506667pt;}
.y70{bottom:302.306667pt;}
.y84{bottom:305.186667pt;}
.y44{bottom:306.786667pt;}
.y5b{bottom:308.546667pt;}
.yb1{bottom:320.066667pt;}
.y27{bottom:320.866667pt;}
.ya8{bottom:321.346667pt;}
.y6f{bottom:327.106667pt;}
.y83{bottom:329.986667pt;}
.y43{bottom:331.586667pt;}
.y5a{bottom:333.186667pt;}
.yb0{bottom:344.706667pt;}
.y26{bottom:345.506667pt;}
.ya7{bottom:345.986667pt;}
.y6e{bottom:351.746667pt;}
.y82{bottom:354.626667pt;}
.y42{bottom:356.226667pt;}
.y59{bottom:357.986667pt;}
.y9b{bottom:365.346667pt;}
.yaf{bottom:369.346667pt;}
.y25{bottom:370.306667pt;}
.ya6{bottom:370.626667pt;}
.y6d{bottom:376.386667pt;}
.y81{bottom:379.266667pt;}
.y41{bottom:380.866667pt;}
.y58{bottom:382.626667pt;}
.y9a{bottom:389.986667pt;}
.yae{bottom:394.146667pt;}
.y24{bottom:394.946667pt;}
.ya5{bottom:395.266667pt;}
.y6c{bottom:401.026667pt;}
.y80{bottom:403.906667pt;}
.y40{bottom:405.666667pt;}
.y57{bottom:407.266667pt;}
.y99{bottom:414.626667pt;}
.yad{bottom:418.786667pt;}
.y23{bottom:419.586667pt;}
.ya4{bottom:420.066667pt;}
.y6b{bottom:425.826667pt;}
.y7f{bottom:428.706667pt;}
.y3f{bottom:430.306667pt;}
.y56{bottom:431.906667pt;}
.y98{bottom:439.266667pt;}
.yac{bottom:443.426667pt;}
.y22{bottom:444.226667pt;}
.ya3{bottom:444.706667pt;}
.y6a{bottom:450.466667pt;}
.y55{bottom:452.546667pt;}
.y7e{bottom:453.346667pt;}
.y3e{bottom:454.946667pt;}
.y97{bottom:464.066667pt;}
.yab{bottom:468.066667pt;}
.y21{bottom:469.026667pt;}
.ya2{bottom:469.346667pt;}
.y69{bottom:475.106667pt;}
.y7d{bottom:477.986667pt;}
.y3d{bottom:479.586667pt;}
.y96{bottom:488.706667pt;}
.yaa{bottom:492.866667pt;}
.y20{bottom:493.666667pt;}
.ya1{bottom:494.146667pt;}
.y68{bottom:499.746667pt;}
.y7c{bottom:502.626667pt;}
.y3c{bottom:504.386667pt;}
.y95{bottom:513.346667pt;}
.y1f{bottom:518.306667pt;}
.ya0{bottom:518.786667pt;}
.y67{bottom:524.546667pt;}
.y7b{bottom:527.426667pt;}
.y3b{bottom:529.026667pt;}
.y8d{bottom:534.626667pt;}
.y94{bottom:538.173333pt;}
.y1e{bottom:543.133333pt;}
.y9f{bottom:543.453333pt;}
.y66{bottom:549.213333pt;}
.y7a{bottom:552.093333pt;}
.y3a{bottom:553.693333pt;}
.y93{bottom:562.813333pt;}
.y1d{bottom:567.773333pt;}
.y9e{bottom:568.093333pt;}
.y65{bottom:573.853333pt;}
.y79{bottom:576.733333pt;}
.y39{bottom:578.493333pt;}
.y92{bottom:583.293333pt;}
.y1c{bottom:592.413333pt;}
.y9d{bottom:592.893333pt;}
.y64{bottom:598.653333pt;}
.y78{bottom:601.533333pt;}
.y38{bottom:603.133333pt;}
.y9c{bottom:613.373333pt;}
.y1b{bottom:617.053333pt;}
.y63{bottom:623.293333pt;}
.y77{bottom:626.173333pt;}
.y37{bottom:627.773333pt;}
.y1a{bottom:641.853333pt;}
.y62{bottom:647.933333pt;}
.y76{bottom:650.813333pt;}
.y36{bottom:652.413333pt;}
.y19{bottom:666.493333pt;}
.y75{bottom:671.453333pt;}
.y61{bottom:672.573333pt;}
.y35{bottom:677.213333pt;}
.y18{bottom:691.133333pt;}
.y60{bottom:693.213333pt;}
.y34{bottom:701.853333pt;}
.y17{bottom:715.933333pt;}
.y33{bottom:726.493333pt;}
.y16{bottom:740.573333pt;}
.y32{bottom:751.133333pt;}
.y15{bottom:765.213333pt;}
.y31{bottom:775.973333pt;}
.y14{bottom:789.893333pt;}
.y30{bottom:800.613333pt;}
.y13{bottom:825.253333pt;}
.y12{bottom:850.053333pt;}
.y11{bottom:874.693333pt;}
.y10{bottom:899.333333pt;}
.yf{bottom:923.973333pt;}
.ye{bottom:948.773333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.h10{height:52.284375pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:71.296875pt;}
.ha{height:73.490625pt;}
.hd{height:75.255000pt;}
.hb{height:75.465000pt;}
.he{height:76.964840pt;}
.hf{height:77.951250pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x8{left:15.520000pt;}
.x21{left:17.600000pt;}
.xa{left:22.880000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.x1d{left:79.231988pt;}
.x1e{left:87.711988pt;}
.x19{left:101.951988pt;}
.xb{left:109.951988pt;}
.x18{left:113.311988pt;}
.x1f{left:163.386655pt;}
.xf{left:164.986655pt;}
.x1a{left:167.866655pt;}
.x12{left:234.586655pt;}
.x10{left:250.786655pt;}
.x13{left:252.386655pt;}
.x1b{left:261.186655pt;}
.x15{left:278.786655pt;}
.x16{left:299.586655pt;}
.x14{left:326.626655pt;}
.x17{left:327.906655pt;}
.x11{left:333.346655pt;}
.xe{left:334.306655pt;}
.x1c{left:345.986655pt;}
.xc{left:348.546655pt;}
.xd{left:396.866655pt;}
.x3{left:463.293333pt;}
.x20{left:637.893322pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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