
    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_47f4a83fc0e9fd59faf9f773.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_dda11284cd68fc378fdbc37f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c6b728cb71e7fe5840eed387.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff486470b11513f2c6959557.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_8c43eccf9b734cd0796cdc12.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_46f0a787eff5fc642a5073ec.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a0da338240dc56bb65da096.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0812dcc19ea874e699cd373.woff')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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);}
.v2{vertical-align:-32.520000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:32.400000px;}
.v1{vertical-align:39.600000px;}
.ls13{letter-spacing:-0.229800px;}
.ls9{letter-spacing:-0.096600px;}
.ls8{letter-spacing:-0.087000px;}
.lse{letter-spacing:-0.083400px;}
.ls4{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.084600px;}
.ls7{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.462000px;}
.lsc{letter-spacing:1.902240px;}
.ls12{letter-spacing:2.562000px;}
.lsb{letter-spacing:3.342240px;}
.ls11{letter-spacing:15.429600px;}
.ls10{letter-spacing:15.480000px;}
.ls0{letter-spacing:24.622992px;}
.ls1{letter-spacing:24.696000px;}
.ls5{letter-spacing:61.833600px;}
.ls6{letter-spacing:61.884000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-131.760000px;}
.ws6{word-spacing:-43.478784px;}
.ws5{word-spacing:-43.446240px;}
.wsd{word-spacing:-40.680000px;}
.ws4{word-spacing:-37.946304px;}
.ws3{word-spacing:-37.913760px;}
.wse{word-spacing:-29.894904px;}
.wsb{word-spacing:-29.810304px;}
.ws7{word-spacing:-29.777760px;}
.ws10{word-spacing:-27.174240px;}
.ws8{word-spacing:-26.621280px;}
.ws0{word-spacing:-24.408000px;}
.ws1{word-spacing:-24.372000px;}
.ws11{word-spacing:-21.641760px;}
.ws12{word-spacing:-19.038240px;}
.ws13{word-spacing:-18.808440px;}
.wsa{word-spacing:-16.488000px;}
.ws9{word-spacing:-16.272000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:675.658368px;}
._e{margin-left:-15.597360px;}
._10{margin-left:-14.294640px;}
._4{margin-left:-12.960000px;}
._8{margin-left:-11.067840px;}
._a{margin-left:-9.857520px;}
._5{margin-left:-8.640000px;}
._7{margin-left:-7.579440px;}
._b{margin-left:-6.477120px;}
._2{margin-left:-5.184000px;}
._3{margin-left:-4.104000px;}
._1{margin-left:-2.808000px;}
._0{margin-left:-1.512000px;}
._6{width:1.185840px;}
._c{width:2.450304px;}
._d{width:3.882480px;}
._11{width:5.238720px;}
._9{width:26.184000px;}
._12{width:288.330000px;}
._f{width:3577.051440px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs2{font-size:87.840000px;}
.fsc{font-size:95.760000px;}
.fs14{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs12{font-size:113.760000px;}
.fs11{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs1{font-size:131.760000px;}
.fs7{font-size:131.904000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fse{font-size:180.000000px;}
.fs6{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fsf{font-size:768.360000px;}
.y0{bottom:0.000000px;}
.y18{bottom:15.732000px;}
.y4c{bottom:25.596000px;}
.y8a{bottom:26.460000px;}
.y41{bottom:31.392000px;}
.y85{bottom:44.928000px;}
.y89{bottom:51.660000px;}
.y5a{bottom:53.064000px;}
.y45{bottom:53.964000px;}
.y4b{bottom:54.396000px;}
.y84{bottom:73.728000px;}
.y3d{bottom:81.108000px;}
.y4a{bottom:83.196000px;}
.y17{bottom:86.508000px;}
.y33{bottom:93.492000px;}
.y88{bottom:102.096000px;}
.y32{bottom:113.256000px;}
.y31{bottom:118.152000px;}
.yaa{bottom:123.840000px;}
.yad{bottom:124.776000px;}
.y4d{bottom:125.316000px;}
.y16{bottom:126.108000px;}
.y87{bottom:127.296000px;}
.y3c{bottom:138.708000px;}
.ya1{bottom:140.508000px;}
.y8{bottom:141.264000px;}
.ya9{bottom:152.640000px;}
.y81{bottom:152.670000px;}
.y6f{bottom:153.105000px;}
.y6c{bottom:157.425000px;}
.y30{bottom:157.755000px;}
.y86{bottom:162.930000px;}
.y59{bottom:165.705000px;}
.y3b{bottom:178.305000px;}
.ya0{bottom:180.105000px;}
.y80{bottom:185.070000px;}
.y7{bottom:187.170000px;}
.y15{bottom:192.705000px;}
.y6b{bottom:197.025000px;}
.y2f{bottom:197.355000px;}
.y8b{bottom:204.660000px;}
.y58{bottom:205.305000px;}
.ya8{bottom:210.270000px;}
.y7f{bottom:217.470000px;}
.y72{bottom:218.340000px;}
.y9f{bottom:219.705000px;}
.y6{bottom:225.900000px;}
.y83{bottom:231.870000px;}
.y14{bottom:232.305000px;}
.y5c{bottom:235.515000px;}
.y6a{bottom:236.625000px;}
.y3a{bottom:244.950000px;}
.ya7{bottom:248.070000px;}
.y1a{bottom:249.120000px;}
.y7d{bottom:249.870000px;}
.y9e{bottom:259.350000px;}
.y2e{bottom:263.955000px;}
.y82{bottom:264.270000px;}
.y13{bottom:271.950000px;}
.y69{bottom:276.225000px;}
.ya6{bottom:276.870000px;}
.y99{bottom:279.330000px;}
.y19{bottom:281.520000px;}
.y7c{bottom:282.315000px;}
.yac{bottom:283.110000px;}
.y5{bottom:284.400000px;}
.y7e{bottom:296.715000px;}
.y6e{bottom:298.950000px;}
.y66{bottom:302.010000px;}
.y39{bottom:302.550000px;}
.y2d{bottom:303.585000px;}
.y57{bottom:311.550000px;}
.yab{bottom:311.910000px;}
.ya5{bottom:314.670000px;}
.y68{bottom:315.825000px;}
.y98{bottom:320.550000px;}
.y4{bottom:322.560000px;}
.y7b{bottom:329.115000px;}
.y12{bottom:338.550000px;}
.y65{bottom:341.610000px;}
.y38{bottom:342.150000px;}
.ya4{bottom:343.470000px;}
.y1f{bottom:346.290000px;}
.y8e{bottom:351.150000px;}
.y23{bottom:351.255000px;}
.y67{bottom:355.470000px;}
.y21{bottom:357.870000px;}
.y7a{bottom:361.515000px;}
.y97{bottom:361.800000px;}
.y3{bottom:362.160000px;}
.y9d{bottom:365.550000px;}
.y55{bottom:368.565000px;}
.y2c{bottom:370.185000px;}
.y11{bottom:378.150000px;}
.y1e{bottom:378.690000px;}
.y64{bottom:381.210000px;}
.y20{bottom:390.270000px;}
.y79{bottom:393.915000px;}
.ya3{bottom:401.115000px;}
.y96{bottom:402.840000px;}
.y9c{bottom:405.150000px;}
.y25{bottom:405.255000px;}
.y53{bottom:407.805000px;}
.y37{bottom:408.750000px;}
.y22{bottom:408.855000px;}
.y2b{bottom:409.785000px;}
.y10{bottom:417.750000px;}
.y63{bottom:420.810000px;}
.y78{bottom:441.435000px;}
.y95{bottom:442.440000px;}
.y6d{bottom:444.780000px;}
.y52{bottom:447.450000px;}
.y2a{bottom:449.385000px;}
.y8d{bottom:457.380000px;}
.y62{bottom:460.440000px;}
.y24{bottom:462.885000px;}
.y36{bottom:466.380000px;}
.y94{bottom:466.740000px;}
.y75{bottom:473.250000px;}
.y40{bottom:475.950000px;}
.y77{bottom:477.465000px;}
.yf{bottom:484.380000px;}
.y56{bottom:500.760000px;}
.y35{bottom:505.980000px;}
.y93{bottom:506.370000px;}
.y44{bottom:510.840000px;}
.y51{bottom:514.050000px;}
.y29{bottom:516.030000px;}
.y2{bottom:522.435000px;}
.ye{bottom:523.980000px;}
.y92{bottom:530.670000px;}
.y3f{bottom:531.390000px;}
.y61{bottom:534.885000px;}
.y1d{bottom:537.480000px;}
.y9b{bottom:550.980000px;}
.y5b{bottom:552.270000px;}
.y50{bottom:553.650000px;}
.y71{bottom:554.550000px;}
.y47{bottom:554.760000px;}
.y28{bottom:555.630000px;}
.y43{bottom:561.240000px;}
.y8c{bottom:563.580000px;}
.y74{bottom:564.690000px;}
.y91{bottom:570.090000px;}
.y34{bottom:572.580000px;}
.y60{bottom:574.485000px;}
.y1{bottom:580.755000px;}
.y49{bottom:581.145000px;}
.y3e{bottom:586.830000px;}
.yd{bottom:590.580000px;}
.y1c{bottom:592.920000px;}
.y90{bottom:594.390000px;}
.y9a{bottom:601.050000px;}
.y46{bottom:608.760000px;}
.y70{bottom:609.990000px;}
.y42{bottom:611.670000px;}
.y5f{bottom:614.085000px;}
.y73{bottom:620.175000px;}
.y4f{bottom:620.280000px;}
.y27{bottom:622.230000px;}
.yc{bottom:630.210000px;}
.y48{bottom:635.145000px;}
.y8f{bottom:639.030000px;}
.y1b{bottom:648.360000px;}
.y5e{bottom:653.685000px;}
.y26{bottom:661.860000px;}
.y76{bottom:682.230000px;}
.y4e{bottom:686.880000px;}
.y5d{bottom:693.330000px;}
.y9{bottom:702.795000px;}
.yb{bottom:709.815000px;}
.ya2{bottom:711.150000px;}
.y54{bottom:719.070000px;}
.ya{bottom:744.585000px;}
.ha{height:68.554688px;}
.h10{height:69.996445px;}
.h11{height:71.613281px;}
.h4{height:74.899922px;}
.h5{height:75.019922px;}
.h12{height:83.787539px;}
.h1d{height:83.930766px;}
.h14{height:95.245664px;}
.h15{height:98.051133px;}
.h1e{height:98.198578px;}
.h3{height:107.419922px;}
.hd{height:107.563148px;}
.h6{height:110.583984px;}
.h1c{height:116.481797px;}
.h1b{height:123.116836px;}
.h1a{height:123.264281px;}
.h9{height:131.052305px;}
.h16{height:131.195531px;}
.h2{height:134.912461px;}
.h8{height:135.059906px;}
.hb{height:159.732422px;}
.hc{height:159.869531px;}
.h13{height:171.386719px;}
.h7{height:183.041016px;}
.he{height:191.207461px;}
.hf{height:191.350688px;}
.h17{height:196.839492px;}
.h18{height:196.986938px;}
.h1{height:205.664062px;}
.h19{height:786.743613px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:52.487979px;}
.x35{left:68.075979px;}
.x54{left:72.323979px;}
.xa{left:74.231979px;}
.x2e{left:78.695979px;}
.xb{left:83.591979px;}
.x1e{left:88.919979px;}
.x41{left:94.175979px;}
.x53{left:95.579979px;}
.x11{left:100.655979px;}
.x2d{left:105.695979px;}
.x42{left:107.495979px;}
.x3e{left:108.827979px;}
.xc{left:110.591979px;}
.x19{left:116.351979px;}
.x24{left:117.503979px;}
.x3f{left:120.995979px;}
.x3c{left:126.431979px;}
.x3b{left:129.851979px;}
.x29{left:132.371979px;}
.x40{left:138.995979px;}
.x1c{left:147.131979px;}
.x38{left:151.844979px;}
.x58{left:154.769979px;}
.x57{left:156.569979px;}
.x10{left:176.609979px;}
.x25{left:177.914979px;}
.x1d{left:195.734979px;}
.x27{left:198.794979px;}
.x2a{left:224.534979px;}
.x20{left:232.814979px;}
.x1{left:239.219979px;}
.x1b{left:240.554979px;}
.x9{left:242.024979px;}
.x28{left:256.604979px;}
.x1f{left:261.104979px;}
.x3d{left:265.394979px;}
.x2b{left:267.989979px;}
.x59{left:277.409979px;}
.xf{left:315.209979px;}
.x45{left:367.199979px;}
.x46{left:380.519979px;}
.x7{left:387.869979px;}
.x2{left:395.669979px;}
.x44{left:397.439979px;}
.x22{left:402.044979px;}
.x14{left:418.604979px;}
.x26{left:430.304979px;}
.x43{left:431.819979px;}
.x15{left:439.409979px;}
.x32{left:443.849979px;}
.xe{left:457.994979px;}
.x13{left:464.504979px;}
.x3{left:466.889979px;}
.x6{left:496.409979px;}
.x5{left:531.689979px;}
.x23{left:537.809979px;}
.x8{left:544.064979px;}
.x30{left:552.029979px;}
.x37{left:560.489979px;}
.x5a{left:575.564979px;}
.x5b{left:584.924979px;}
.x12{left:592.349979px;}
.x33{left:596.774979px;}
.x2f{left:609.809979px;}
.x21{left:615.029979px;}
.x49{left:619.454979px;}
.x4{left:629.099979px;}
.x4a{left:632.774979px;}
.x39{left:672.194979px;}
.x47{left:674.924979px;}
.x48{left:688.604979px;}
.x5c{left:691.529979px;}
.x5d{left:762.659979px;}
.x4c{left:879.989979px;}
.x4d{left:893.309979px;}
.x4b{left:922.289979px;}
.x34{left:929.909979px;}
.x17{left:938.234979px;}
.x5e{left:945.149979px;}
.x16{left:963.794979px;}
.x55{left:985.349979px;}
.x56{left:1007.309979px;}
.x1a{left:1045.229979px;}
.x2c{left:1062.359979px;}
.x31{left:1064.339979px;}
.x36{left:1101.524979px;}
.x50{left:1163.444979px;}
.x51{left:1176.764979px;}
.x4f{left:1193.729979px;}
.x4e{left:1207.589979px;}
.x3a{left:1215.614979px;}
.xd{left:1222.094979px;}
.x52{left:1268.789979px;}
@media print{
.v2{vertical-align:-28.906667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:28.800000pt;}
.v1{vertical-align:35.200000pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls9{letter-spacing:-0.085867pt;}
.ls8{letter-spacing:-0.077333pt;}
.lse{letter-spacing:-0.074133pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.075200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.410667pt;}
.lsc{letter-spacing:1.690880pt;}
.ls12{letter-spacing:2.277333pt;}
.lsb{letter-spacing:2.970880pt;}
.ls11{letter-spacing:13.715200pt;}
.ls10{letter-spacing:13.760000pt;}
.ls0{letter-spacing:21.887104pt;}
.ls1{letter-spacing:21.952000pt;}
.ls5{letter-spacing:54.963200pt;}
.ls6{letter-spacing:55.008000pt;}
.wsc{word-spacing:-117.120000pt;}
.ws6{word-spacing:-38.647808pt;}
.ws5{word-spacing:-38.618880pt;}
.wsd{word-spacing:-36.160000pt;}
.ws4{word-spacing:-33.730048pt;}
.ws3{word-spacing:-33.701120pt;}
.wse{word-spacing:-26.573248pt;}
.wsb{word-spacing:-26.498048pt;}
.ws7{word-spacing:-26.469120pt;}
.ws10{word-spacing:-24.154880pt;}
.ws8{word-spacing:-23.663360pt;}
.ws0{word-spacing:-21.696000pt;}
.ws1{word-spacing:-21.664000pt;}
.ws11{word-spacing:-19.237120pt;}
.ws12{word-spacing:-16.922880pt;}
.ws13{word-spacing:-16.718613pt;}
.wsa{word-spacing:-14.656000pt;}
.ws9{word-spacing:-14.464000pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:600.585216pt;}
._e{margin-left:-13.864320pt;}
._10{margin-left:-12.706347pt;}
._4{margin-left:-11.520000pt;}
._8{margin-left:-9.838080pt;}
._a{margin-left:-8.762240pt;}
._5{margin-left:-7.680000pt;}
._7{margin-left:-6.737280pt;}
._b{margin-left:-5.757440pt;}
._2{margin-left:-4.608000pt;}
._3{margin-left:-3.648000pt;}
._1{margin-left:-2.496000pt;}
._0{margin-left:-1.344000pt;}
._6{width:1.054080pt;}
._c{width:2.178048pt;}
._d{width:3.451093pt;}
._11{width:4.656640pt;}
._9{width:23.274667pt;}
._12{width:256.293333pt;}
._f{width:3179.601280pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs2{font-size:78.080000pt;}
.fsc{font-size:85.120000pt;}
.fs14{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs12{font-size:101.120000pt;}
.fs11{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs1{font-size:117.120000pt;}
.fs7{font-size:117.248000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fse{font-size:160.000000pt;}
.fs6{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fsf{font-size:682.986667pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:13.984000pt;}
.y4c{bottom:22.752000pt;}
.y8a{bottom:23.520000pt;}
.y41{bottom:27.904000pt;}
.y85{bottom:39.936000pt;}
.y89{bottom:45.920000pt;}
.y5a{bottom:47.168000pt;}
.y45{bottom:47.968000pt;}
.y4b{bottom:48.352000pt;}
.y84{bottom:65.536000pt;}
.y3d{bottom:72.096000pt;}
.y4a{bottom:73.952000pt;}
.y17{bottom:76.896000pt;}
.y33{bottom:83.104000pt;}
.y88{bottom:90.752000pt;}
.y32{bottom:100.672000pt;}
.y31{bottom:105.024000pt;}
.yaa{bottom:110.080000pt;}
.yad{bottom:110.912000pt;}
.y4d{bottom:111.392000pt;}
.y16{bottom:112.096000pt;}
.y87{bottom:113.152000pt;}
.y3c{bottom:123.296000pt;}
.ya1{bottom:124.896000pt;}
.y8{bottom:125.568000pt;}
.ya9{bottom:135.680000pt;}
.y81{bottom:135.706667pt;}
.y6f{bottom:136.093333pt;}
.y6c{bottom:139.933333pt;}
.y30{bottom:140.226667pt;}
.y86{bottom:144.826667pt;}
.y59{bottom:147.293333pt;}
.y3b{bottom:158.493333pt;}
.ya0{bottom:160.093333pt;}
.y80{bottom:164.506667pt;}
.y7{bottom:166.373333pt;}
.y15{bottom:171.293333pt;}
.y6b{bottom:175.133333pt;}
.y2f{bottom:175.426667pt;}
.y8b{bottom:181.920000pt;}
.y58{bottom:182.493333pt;}
.ya8{bottom:186.906667pt;}
.y7f{bottom:193.306667pt;}
.y72{bottom:194.080000pt;}
.y9f{bottom:195.293333pt;}
.y6{bottom:200.800000pt;}
.y83{bottom:206.106667pt;}
.y14{bottom:206.493333pt;}
.y5c{bottom:209.346667pt;}
.y6a{bottom:210.333333pt;}
.y3a{bottom:217.733333pt;}
.ya7{bottom:220.506667pt;}
.y1a{bottom:221.440000pt;}
.y7d{bottom:222.106667pt;}
.y9e{bottom:230.533333pt;}
.y2e{bottom:234.626667pt;}
.y82{bottom:234.906667pt;}
.y13{bottom:241.733333pt;}
.y69{bottom:245.533333pt;}
.ya6{bottom:246.106667pt;}
.y99{bottom:248.293333pt;}
.y19{bottom:250.240000pt;}
.y7c{bottom:250.946667pt;}
.yac{bottom:251.653333pt;}
.y5{bottom:252.800000pt;}
.y7e{bottom:263.746667pt;}
.y6e{bottom:265.733333pt;}
.y66{bottom:268.453333pt;}
.y39{bottom:268.933333pt;}
.y2d{bottom:269.853333pt;}
.y57{bottom:276.933333pt;}
.yab{bottom:277.253333pt;}
.ya5{bottom:279.706667pt;}
.y68{bottom:280.733333pt;}
.y98{bottom:284.933333pt;}
.y4{bottom:286.720000pt;}
.y7b{bottom:292.546667pt;}
.y12{bottom:300.933333pt;}
.y65{bottom:303.653333pt;}
.y38{bottom:304.133333pt;}
.ya4{bottom:305.306667pt;}
.y1f{bottom:307.813333pt;}
.y8e{bottom:312.133333pt;}
.y23{bottom:312.226667pt;}
.y67{bottom:315.973333pt;}
.y21{bottom:318.106667pt;}
.y7a{bottom:321.346667pt;}
.y97{bottom:321.600000pt;}
.y3{bottom:321.920000pt;}
.y9d{bottom:324.933333pt;}
.y55{bottom:327.613333pt;}
.y2c{bottom:329.053333pt;}
.y11{bottom:336.133333pt;}
.y1e{bottom:336.613333pt;}
.y64{bottom:338.853333pt;}
.y20{bottom:346.906667pt;}
.y79{bottom:350.146667pt;}
.ya3{bottom:356.546667pt;}
.y96{bottom:358.080000pt;}
.y9c{bottom:360.133333pt;}
.y25{bottom:360.226667pt;}
.y53{bottom:362.493333pt;}
.y37{bottom:363.333333pt;}
.y22{bottom:363.426667pt;}
.y2b{bottom:364.253333pt;}
.y10{bottom:371.333333pt;}
.y63{bottom:374.053333pt;}
.y78{bottom:392.386667pt;}
.y95{bottom:393.280000pt;}
.y6d{bottom:395.360000pt;}
.y52{bottom:397.733333pt;}
.y2a{bottom:399.453333pt;}
.y8d{bottom:406.560000pt;}
.y62{bottom:409.280000pt;}
.y24{bottom:411.453333pt;}
.y36{bottom:414.560000pt;}
.y94{bottom:414.880000pt;}
.y75{bottom:420.666667pt;}
.y40{bottom:423.066667pt;}
.y77{bottom:424.413333pt;}
.yf{bottom:430.560000pt;}
.y56{bottom:445.120000pt;}
.y35{bottom:449.760000pt;}
.y93{bottom:450.106667pt;}
.y44{bottom:454.080000pt;}
.y51{bottom:456.933333pt;}
.y29{bottom:458.693333pt;}
.y2{bottom:464.386667pt;}
.ye{bottom:465.760000pt;}
.y92{bottom:471.706667pt;}
.y3f{bottom:472.346667pt;}
.y61{bottom:475.453333pt;}
.y1d{bottom:477.760000pt;}
.y9b{bottom:489.760000pt;}
.y5b{bottom:490.906667pt;}
.y50{bottom:492.133333pt;}
.y71{bottom:492.933333pt;}
.y47{bottom:493.120000pt;}
.y28{bottom:493.893333pt;}
.y43{bottom:498.880000pt;}
.y8c{bottom:500.960000pt;}
.y74{bottom:501.946667pt;}
.y91{bottom:506.746667pt;}
.y34{bottom:508.960000pt;}
.y60{bottom:510.653333pt;}
.y1{bottom:516.226667pt;}
.y49{bottom:516.573333pt;}
.y3e{bottom:521.626667pt;}
.yd{bottom:524.960000pt;}
.y1c{bottom:527.040000pt;}
.y90{bottom:528.346667pt;}
.y9a{bottom:534.266667pt;}
.y46{bottom:541.120000pt;}
.y70{bottom:542.213333pt;}
.y42{bottom:543.706667pt;}
.y5f{bottom:545.853333pt;}
.y73{bottom:551.266667pt;}
.y4f{bottom:551.360000pt;}
.y27{bottom:553.093333pt;}
.yc{bottom:560.186667pt;}
.y48{bottom:564.573333pt;}
.y8f{bottom:568.026667pt;}
.y1b{bottom:576.320000pt;}
.y5e{bottom:581.053333pt;}
.y26{bottom:588.320000pt;}
.y76{bottom:606.426667pt;}
.y4e{bottom:610.560000pt;}
.y5d{bottom:616.293333pt;}
.y9{bottom:624.706667pt;}
.yb{bottom:630.946667pt;}
.ya2{bottom:632.133333pt;}
.y54{bottom:639.173333pt;}
.ya{bottom:661.853333pt;}
.ha{height:60.937500pt;}
.h10{height:62.219062pt;}
.h11{height:63.656250pt;}
.h4{height:66.577708pt;}
.h5{height:66.684375pt;}
.h12{height:74.477812pt;}
.h1d{height:74.605125pt;}
.h14{height:84.662813pt;}
.h15{height:87.156562pt;}
.h1e{height:87.287625pt;}
.h3{height:95.484375pt;}
.hd{height:95.611688pt;}
.h6{height:98.296875pt;}
.h1c{height:103.539375pt;}
.h1b{height:109.437187pt;}
.h1a{height:109.568250pt;}
.h9{height:116.490937pt;}
.h16{height:116.618250pt;}
.h2{height:119.922187pt;}
.h8{height:120.053250pt;}
.hb{height:141.984375pt;}
.hc{height:142.106250pt;}
.h13{height:152.343750pt;}
.h7{height:162.703125pt;}
.he{height:169.962187pt;}
.hf{height:170.089500pt;}
.h17{height:174.968437pt;}
.h18{height:175.099500pt;}
.h1{height:182.812500pt;}
.h19{height:699.327656pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:46.655981pt;}
.x35{left:60.511981pt;}
.x54{left:64.287981pt;}
.xa{left:65.983981pt;}
.x2e{left:69.951981pt;}
.xb{left:74.303981pt;}
.x1e{left:79.039981pt;}
.x41{left:83.711981pt;}
.x53{left:84.959981pt;}
.x11{left:89.471981pt;}
.x2d{left:93.951981pt;}
.x42{left:95.551981pt;}
.x3e{left:96.735981pt;}
.xc{left:98.303981pt;}
.x19{left:103.423981pt;}
.x24{left:104.447981pt;}
.x3f{left:107.551981pt;}
.x3c{left:112.383981pt;}
.x3b{left:115.423981pt;}
.x29{left:117.663981pt;}
.x40{left:123.551981pt;}
.x1c{left:130.783981pt;}
.x38{left:134.973314pt;}
.x58{left:137.573314pt;}
.x57{left:139.173314pt;}
.x10{left:156.986648pt;}
.x25{left:158.146648pt;}
.x1d{left:173.986648pt;}
.x27{left:176.706648pt;}
.x2a{left:199.586648pt;}
.x20{left:206.946648pt;}
.x1{left:212.639981pt;}
.x1b{left:213.826648pt;}
.x9{left:215.133314pt;}
.x28{left:228.093314pt;}
.x1f{left:232.093314pt;}
.x3d{left:235.906648pt;}
.x2b{left:238.213314pt;}
.x59{left:246.586648pt;}
.xf{left:280.186648pt;}
.x45{left:326.399981pt;}
.x46{left:338.239981pt;}
.x7{left:344.773314pt;}
.x2{left:351.706648pt;}
.x44{left:353.279981pt;}
.x22{left:357.373314pt;}
.x14{left:372.093314pt;}
.x26{left:382.493314pt;}
.x43{left:383.839981pt;}
.x15{left:390.586648pt;}
.x32{left:394.533314pt;}
.xe{left:407.106648pt;}
.x13{left:412.893314pt;}
.x3{left:415.013314pt;}
.x6{left:441.253314pt;}
.x5{left:472.613314pt;}
.x23{left:478.053314pt;}
.x8{left:483.613314pt;}
.x30{left:490.693314pt;}
.x37{left:498.213314pt;}
.x5a{left:511.613314pt;}
.x5b{left:519.933314pt;}
.x12{left:526.533314pt;}
.x33{left:530.466648pt;}
.x2f{left:542.053314pt;}
.x21{left:546.693314pt;}
.x49{left:550.626648pt;}
.x4{left:559.199981pt;}
.x4a{left:562.466648pt;}
.x39{left:597.506648pt;}
.x47{left:599.933314pt;}
.x48{left:612.093314pt;}
.x5c{left:614.693314pt;}
.x5d{left:677.919981pt;}
.x4c{left:782.213314pt;}
.x4d{left:794.053314pt;}
.x4b{left:819.813314pt;}
.x34{left:826.586648pt;}
.x17{left:833.986648pt;}
.x5e{left:840.133314pt;}
.x16{left:856.706648pt;}
.x55{left:875.866648pt;}
.x56{left:895.386648pt;}
.x1a{left:929.093314pt;}
.x2c{left:944.319981pt;}
.x31{left:946.079981pt;}
.x36{left:979.133314pt;}
.x50{left:1034.173314pt;}
.x51{left:1046.013314pt;}
.x4f{left:1061.093314pt;}
.x4e{left:1073.413314pt;}
.x3a{left:1080.546648pt;}
.xd{left:1086.306648pt;}
.x52{left:1127.813314pt;}
}




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