
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_75c1496a765bc35890515001.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_de4883e25bbb22b7747a7d2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e3af5817cf563aa7e28e6c4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b9477c95fa8cedff7c1247f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_41231c164ff6378a100238bc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be61da531d9c3c40f6d2e5ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_d12a6e55f95aadaa9a2e4a23.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_9cac3e6d16025149c86e409c.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls24{letter-spacing:-0.453000px;}
.ls23{letter-spacing:-0.444600px;}
.ls12{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls20{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.048960px;}
.ls15{letter-spacing:-0.038880px;}
.ls1b{letter-spacing:-0.015480px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls17{letter-spacing:0.038160px;}
.ls11{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls22{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.111000px;}
.ls4{letter-spacing:0.113400px;}
.ls16{letter-spacing:0.115800px;}
.ls1f{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.160800px;}
.ls10{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.173600px;}
.lsd{letter-spacing:5.133600px;}
.lse{letter-spacing:6.213600px;}
.ls1e{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws11{word-spacing:-60.120000px;}
.wsf{word-spacing:-60.071040px;}
.ws4{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.387200px;}
.ws15{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.337400px;}
.ws14{word-spacing:-13.324800px;}
.ws19{word-spacing:-13.300800px;}
.ws17{word-spacing:-13.287000px;}
.ws5{word-spacing:-13.275600px;}
.ws8{word-spacing:-13.275360px;}
.wse{word-spacing:-13.264560px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.210920px;}
.wsb{word-spacing:-13.187520px;}
.ws9{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.101000px;}
.wsa{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws18{word-spacing:-12.773400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._e{margin-left:-4.301521px;}
._8{margin-left:-2.825400px;}
._0{margin-left:-1.110000px;}
._2{width:1.342248px;}
._6{width:2.445553px;}
._d{width:3.593466px;}
._9{width:4.689600px;}
._a{width:5.709596px;}
._f{width:6.745825px;}
._4{width:7.755600px;}
._3{width:9.273456px;}
._1{width:10.317072px;}
._7{width:11.991600px;}
._5{width:14.237760px;}
._10{width:15.299952px;}
._16{width:16.452022px;}
._15{width:17.494920px;}
._17{width:23.927760px;}
._c{width:32.584800px;}
._b{width:34.407360px;}
._14{width:77.607720px;}
._13{width:80.977200px;}
._12{width:82.003680px;}
._11{width:100.499280px;}
._18{width:227.244000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:7.830000px;}
.y64{bottom:7.860000px;}
.y5f{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y55{bottom:122.880000px;}
.y88{bottom:123.510000px;}
.y25{bottom:139.260000px;}
.y87{bottom:141.060000px;}
.yd3{bottom:147.270000px;}
.y54{bottom:158.430000px;}
.y86{bottom:158.700000px;}
.yd2{bottom:164.910000px;}
.y24{bottom:165.900000px;}
.y53{bottom:176.070000px;}
.y85{bottom:176.250000px;}
.yd1{bottom:191.460000px;}
.y52{bottom:193.620000px;}
.y84{bottom:193.890000px;}
.ya4{bottom:198.930000px;}
.y23{bottom:201.810000px;}
.yd0{bottom:209.100000px;}
.y83{bottom:211.440000px;}
.ya3{bottom:225.840000px;}
.y51{bottom:229.260000px;}
.ycf{bottom:235.650000px;}
.y82{bottom:237.990000px;}
.y50{bottom:246.810000px;}
.y22{bottom:250.050000px;}
.yce{bottom:253.200000px;}
.y6c{bottom:261.660000px;}
.ya2{bottom:263.190000px;}
.y4f{bottom:264.360000px;}
.y21{bottom:267.690000px;}
.y81{bottom:273.630000px;}
.y6b{bottom:276.600000px;}
.ycd{bottom:279.840000px;}
.y4e{bottom:282.000000px;}
.y20{bottom:285.240000px;}
.y80{bottom:291.180000px;}
.ycc{bottom:297.390000px;}
.y6a{bottom:303.960000px;}
.y4d{bottom:308.550000px;}
.y7f{bottom:308.820000px;}
.ya1{bottom:311.430000px;}
.y1f{bottom:320.790000px;}
.ycb{bottom:323.940000px;}
.y7e{bottom:326.370000px;}
.ya0{bottom:328.980000px;}
.y69{bottom:331.230000px;}
.y1e{bottom:338.430000px;}
.yca{bottom:341.580000px;}
.y4c{bottom:344.460000px;}
.y9f{bottom:346.620000px;}
.y1d{bottom:355.980000px;}
.y7d{bottom:357.420000px;}
.y68{bottom:358.590000px;}
.y9e{bottom:364.170000px;}
.yc9{bottom:368.130000px;}
.y1c{bottom:373.620000px;}
.y7c{bottom:375.060000px;}
.yc8{bottom:385.770000px;}
.y67{bottom:385.950000px;}
.y9d{bottom:391.080000px;}
.y1b{bottom:391.170000px;}
.y7b{bottom:392.610000px;}
.y4b{bottom:392.790000px;}
.yc7{bottom:403.320000px;}
.y1a{bottom:408.720000px;}
.y7a{bottom:410.250000px;}
.y4a{bottom:410.340000px;}
.y66{bottom:413.220000px;}
.y49{bottom:427.890000px;}
.yc6{bottom:429.870000px;}
.yf4{bottom:434.370000px;}
.y19{bottom:435.630000px;}
.y9c{bottom:439.410000px;}
.y65{bottom:440.580000px;}
.y79{bottom:441.300000px;}
.y48{bottom:445.530000px;}
.yc5{bottom:447.510000px;}
.yf3{bottom:451.920000px;}
.y9b{bottom:456.960000px;}
.y47{bottom:463.080000px;}
.y63{bottom:467.940000px;}
.yc4{bottom:474.090000px;}
.y9a{bottom:474.540000px;}
.y78{bottom:476.880000px;}
.yf2{bottom:478.500000px;}
.y18{bottom:483.990000px;}
.y46{bottom:489.750000px;}
.yc3{bottom:491.730000px;}
.y77{bottom:494.520000px;}
.y61{bottom:495.330000px;}
.yf1{bottom:496.140000px;}
.y17{bottom:501.900000px;}
.y99{bottom:510.180000px;}
.y76{bottom:512.070000px;}
.yf0{bottom:513.690000px;}
.yc2{bottom:518.280000px;}
.y60{bottom:522.600000px;}
.y45{bottom:525.300000px;}
.y98{bottom:527.730000px;}
.y75{bottom:529.710000px;}
.yc1{bottom:535.830000px;}
.y16{bottom:538.890000px;}
.yef{bottom:540.330000px;}
.y44{bottom:542.850000px;}
.y97{bottom:545.280000px;}
.y5e{bottom:549.960000px;}
.y15{bottom:556.440000px;}
.yee{bottom:557.880000px;}
.y43{bottom:560.490000px;}
.yc0{bottom:562.470000px;}
.y74{bottom:562.650000px;}
.y14{bottom:574.080000px;}
.yed{bottom:575.430000px;}
.y42{bottom:578.040000px;}
.ybf{bottom:580.020000px;}
.y96{bottom:580.920000px;}
.y73{bottom:590.010000px;}
.y13{bottom:591.630000px;}
.y41{bottom:595.590000px;}
.y95{bottom:598.470000px;}
.y5d{bottom:598.650000px;}
.yec{bottom:602.070000px;}
.ybe{bottom:606.660000px;}
.y12{bottom:609.270000px;}
.y94{bottom:616.110000px;}
.y72{bottom:617.280000px;}
.yeb{bottom:619.620000px;}
.y40{bottom:622.230000px;}
.ybd{bottom:624.210000px;}
.y5c{bottom:625.290000px;}
.y11{bottom:626.820000px;}
.y93{bottom:633.660000px;}
.y10{bottom:644.370000px;}
.y71{bottom:644.640000px;}
.yea{bottom:646.260000px;}
.ybc{bottom:650.760000px;}
.y3f{bottom:657.780000px;}
.y5b{bottom:660.840000px;}
.yf{bottom:662.010000px;}
.ye9{bottom:663.810000px;}
.ybb{bottom:668.400000px;}
.y92{bottom:669.210000px;}
.y3e{bottom:675.420000px;}
.y5a{bottom:678.390000px;}
.ye{bottom:679.560000px;}
.ye8{bottom:681.360000px;}
.yba{bottom:685.950000px;}
.y91{bottom:686.850000px;}
.y3d{bottom:692.970000px;}
.y70{bottom:693.330000px;}
.y59{bottom:696.030000px;}
.yd{bottom:697.200000px;}
.ye7{bottom:708.000000px;}
.yb9{bottom:712.590000px;}
.y90{bottom:713.400000px;}
.y58{bottom:713.580000px;}
.yc{bottom:714.750000px;}
.y3c{bottom:719.520000px;}
.y6f{bottom:719.970000px;}
.ye6{bottom:725.550000px;}
.yb8{bottom:730.140000px;}
.yb{bottom:732.300000px;}
.ye5{bottom:743.190000px;}
.y8f{bottom:749.040000px;}
.y57{bottom:749.220000px;}
.y3b{bottom:755.160000px;}
.y6e{bottom:755.520000px;}
.yb7{bottom:756.690000px;}
.ya{bottom:759.210000px;}
.ye4{bottom:769.740000px;}
.y3a{bottom:772.710000px;}
.yb6{bottom:774.330000px;}
.y8e{bottom:781.260000px;}
.y56{bottom:781.440000px;}
.ye3{bottom:787.290000px;}
.y6d{bottom:787.740000px;}
.y39{bottom:790.350000px;}
.yb5{bottom:791.880000px;}
.ye2{bottom:804.930000px;}
.y9{bottom:807.540000px;}
.y38{bottom:807.900000px;}
.yb4{bottom:818.520000px;}
.y37{bottom:825.450000px;}
.ye1{bottom:831.480000px;}
.yb3{bottom:836.070000px;}
.y36{bottom:843.090000px;}
.y8{bottom:843.360000px;}
.ye0{bottom:849.030000px;}
.y35{bottom:860.640000px;}
.yb2{bottom:862.620000px;}
.ydf{bottom:866.670000px;}
.y34{bottom:878.280000px;}
.y7{bottom:879.360000px;}
.yb1{bottom:880.260000px;}
.yde{bottom:893.220000px;}
.y33{bottom:895.830000px;}
.yb0{bottom:897.810000px;}
.ydd{bottom:910.860000px;}
.y6{bottom:915.360000px;}
.y32{bottom:922.380000px;}
.yaf{bottom:924.450000px;}
.ydc{bottom:928.410000px;}
.yae{bottom:942.000000px;}
.y5{bottom:951.450000px;}
.ydb{bottom:954.960000px;}
.y31{bottom:958.020000px;}
.yad{bottom:959.550000px;}
.yda{bottom:972.600000px;}
.y30{bottom:975.570000px;}
.yac{bottom:977.190000px;}
.y4{bottom:989.700000px;}
.y2f{bottom:993.210000px;}
.yd9{bottom:999.150000px;}
.yab{bottom:1003.740000px;}
.y2e{bottom:1010.790000px;}
.y3{bottom:1014.390000px;}
.yd8{bottom:1016.820000px;}
.yaa{bottom:1021.320000px;}
.y2d{bottom:1028.340000px;}
.yd7{bottom:1034.370000px;}
.ya9{bottom:1038.960000px;}
.y2c{bottom:1045.980000px;}
.y8d{bottom:1052.370000px;}
.yd6{bottom:1060.920000px;}
.y2b{bottom:1063.530000px;}
.ya8{bottom:1065.510000px;}
.y8c{bottom:1069.920000px;}
.yd5{bottom:1078.560000px;}
.y2a{bottom:1081.170000px;}
.ya7{bottom:1083.150000px;}
.y8b{bottom:1087.560000px;}
.yd4{bottom:1096.110000px;}
.ya6{bottom:1100.700000px;}
.y8a{bottom:1105.110000px;}
.y29{bottom:1107.720000px;}
.y89{bottom:1122.750000px;}
.ya5{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:59.973223px;}
.hf{height:61.793886px;}
.h9{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:51.750000px;}
.wa{width:51.780000px;}
.w8{width:53.280000px;}
.w9{width:73.980000px;}
.wb{width:110.790000px;}
.w7{width:118.530000px;}
.w3{width:139.350000px;}
.w4{width:149.400000px;}
.w6{width:181.350000px;}
.w5{width:223.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:98.640000px;}
.x14{left:111.239987px;}
.xd{left:214.680000px;}
.x13{left:220.979987px;}
.xc{left:227.099987px;}
.x2{left:231.149987px;}
.x8{left:238.710000px;}
.x5{left:242.489987px;}
.xe{left:333.930000px;}
.x9{left:388.830000px;}
.xf{left:462.630000px;}
.x10{left:515.220000px;}
.xa{left:613.230000px;}
.x11{left:626.820000px;}
.x12{left:682.889987px;}
.x4{left:700.889987px;}
.xb{left:749.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls24{letter-spacing:-0.402667pt;}
.ls23{letter-spacing:-0.395200pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls20{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.043520pt;}
.ls15{letter-spacing:-0.034560pt;}
.ls1b{letter-spacing:-0.013760pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls17{letter-spacing:0.033920pt;}
.ls11{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls22{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.098667pt;}
.ls4{letter-spacing:0.100800pt;}
.ls16{letter-spacing:0.102933pt;}
.ls1f{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.142933pt;}
.ls10{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.043200pt;}
.lsd{letter-spacing:4.563200pt;}
.lse{letter-spacing:5.523200pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws11{word-spacing:-53.440000pt;}
.wsf{word-spacing:-53.396480pt;}
.ws4{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.899733pt;}
.ws15{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.855467pt;}
.ws14{word-spacing:-11.844267pt;}
.ws19{word-spacing:-11.822933pt;}
.ws17{word-spacing:-11.810667pt;}
.ws5{word-spacing:-11.800533pt;}
.ws8{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.790720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.743040pt;}
.wsb{word-spacing:-11.722240pt;}
.ws9{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.645333pt;}
.wsa{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws18{word-spacing:-11.354133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._e{margin-left:-3.823575pt;}
._8{margin-left:-2.511466pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.193109pt;}
._6{width:2.173825pt;}
._d{width:3.194192pt;}
._9{width:4.168534pt;}
._a{width:5.075197pt;}
._f{width:5.996289pt;}
._4{width:6.893867pt;}
._3{width:8.243072pt;}
._1{width:9.170731pt;}
._7{width:10.659200pt;}
._5{width:12.655787pt;}
._10{width:13.599958pt;}
._16{width:14.624020pt;}
._15{width:15.551040pt;}
._17{width:21.269120pt;}
._c{width:28.964266pt;}
._b{width:30.584320pt;}
._14{width:68.984640pt;}
._13{width:71.979733pt;}
._12{width:72.892160pt;}
._11{width:89.332693pt;}
._18{width:201.994667pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:6.960000pt;}
.y64{bottom:6.986667pt;}
.y5f{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y55{bottom:109.226667pt;}
.y88{bottom:109.786667pt;}
.y25{bottom:123.786667pt;}
.y87{bottom:125.386667pt;}
.yd3{bottom:130.906667pt;}
.y54{bottom:140.826667pt;}
.y86{bottom:141.066667pt;}
.yd2{bottom:146.586667pt;}
.y24{bottom:147.466667pt;}
.y53{bottom:156.506667pt;}
.y85{bottom:156.666667pt;}
.yd1{bottom:170.186667pt;}
.y52{bottom:172.106667pt;}
.y84{bottom:172.346667pt;}
.ya4{bottom:176.826667pt;}
.y23{bottom:179.386667pt;}
.yd0{bottom:185.866667pt;}
.y83{bottom:187.946667pt;}
.ya3{bottom:200.746667pt;}
.y51{bottom:203.786667pt;}
.ycf{bottom:209.466667pt;}
.y82{bottom:211.546667pt;}
.y50{bottom:219.386667pt;}
.y22{bottom:222.266667pt;}
.yce{bottom:225.066667pt;}
.y6c{bottom:232.586667pt;}
.ya2{bottom:233.946667pt;}
.y4f{bottom:234.986667pt;}
.y21{bottom:237.946667pt;}
.y81{bottom:243.226667pt;}
.y6b{bottom:245.866667pt;}
.ycd{bottom:248.746667pt;}
.y4e{bottom:250.666667pt;}
.y20{bottom:253.546667pt;}
.y80{bottom:258.826667pt;}
.ycc{bottom:264.346667pt;}
.y6a{bottom:270.186667pt;}
.y4d{bottom:274.266667pt;}
.y7f{bottom:274.506667pt;}
.ya1{bottom:276.826667pt;}
.y1f{bottom:285.146667pt;}
.ycb{bottom:287.946667pt;}
.y7e{bottom:290.106667pt;}
.ya0{bottom:292.426667pt;}
.y69{bottom:294.426667pt;}
.y1e{bottom:300.826667pt;}
.yca{bottom:303.626667pt;}
.y4c{bottom:306.186667pt;}
.y9f{bottom:308.106667pt;}
.y1d{bottom:316.426667pt;}
.y7d{bottom:317.706667pt;}
.y68{bottom:318.746667pt;}
.y9e{bottom:323.706667pt;}
.yc9{bottom:327.226667pt;}
.y1c{bottom:332.106667pt;}
.y7c{bottom:333.386667pt;}
.yc8{bottom:342.906667pt;}
.y67{bottom:343.066667pt;}
.y9d{bottom:347.626667pt;}
.y1b{bottom:347.706667pt;}
.y7b{bottom:348.986667pt;}
.y4b{bottom:349.146667pt;}
.yc7{bottom:358.506667pt;}
.y1a{bottom:363.306667pt;}
.y7a{bottom:364.666667pt;}
.y4a{bottom:364.746667pt;}
.y66{bottom:367.306667pt;}
.y49{bottom:380.346667pt;}
.yc6{bottom:382.106667pt;}
.yf4{bottom:386.106667pt;}
.y19{bottom:387.226667pt;}
.y9c{bottom:390.586667pt;}
.y65{bottom:391.626667pt;}
.y79{bottom:392.266667pt;}
.y48{bottom:396.026667pt;}
.yc5{bottom:397.786667pt;}
.yf3{bottom:401.706667pt;}
.y9b{bottom:406.186667pt;}
.y47{bottom:411.626667pt;}
.y63{bottom:415.946667pt;}
.yc4{bottom:421.413333pt;}
.y9a{bottom:421.813333pt;}
.y78{bottom:423.893333pt;}
.yf2{bottom:425.333333pt;}
.y18{bottom:430.213333pt;}
.y46{bottom:435.333333pt;}
.yc3{bottom:437.093333pt;}
.y77{bottom:439.573333pt;}
.y61{bottom:440.293333pt;}
.yf1{bottom:441.013333pt;}
.y17{bottom:446.133333pt;}
.y99{bottom:453.493333pt;}
.y76{bottom:455.173333pt;}
.yf0{bottom:456.613333pt;}
.yc2{bottom:460.693333pt;}
.y60{bottom:464.533333pt;}
.y45{bottom:466.933333pt;}
.y98{bottom:469.093333pt;}
.y75{bottom:470.853333pt;}
.yc1{bottom:476.293333pt;}
.y16{bottom:479.013333pt;}
.yef{bottom:480.293333pt;}
.y44{bottom:482.533333pt;}
.y97{bottom:484.693333pt;}
.y5e{bottom:488.853333pt;}
.y15{bottom:494.613333pt;}
.yee{bottom:495.893333pt;}
.y43{bottom:498.213333pt;}
.yc0{bottom:499.973333pt;}
.y74{bottom:500.133333pt;}
.y14{bottom:510.293333pt;}
.yed{bottom:511.493333pt;}
.y42{bottom:513.813333pt;}
.ybf{bottom:515.573333pt;}
.y96{bottom:516.373333pt;}
.y73{bottom:524.453333pt;}
.y13{bottom:525.893333pt;}
.y41{bottom:529.413333pt;}
.y95{bottom:531.973333pt;}
.y5d{bottom:532.133333pt;}
.yec{bottom:535.173333pt;}
.ybe{bottom:539.253333pt;}
.y12{bottom:541.573333pt;}
.y94{bottom:547.653333pt;}
.y72{bottom:548.693333pt;}
.yeb{bottom:550.773333pt;}
.y40{bottom:553.093333pt;}
.ybd{bottom:554.853333pt;}
.y5c{bottom:555.813333pt;}
.y11{bottom:557.173333pt;}
.y93{bottom:563.253333pt;}
.y10{bottom:572.773333pt;}
.y71{bottom:573.013333pt;}
.yea{bottom:574.453333pt;}
.ybc{bottom:578.453333pt;}
.y3f{bottom:584.693333pt;}
.y5b{bottom:587.413333pt;}
.yf{bottom:588.453333pt;}
.ye9{bottom:590.053333pt;}
.ybb{bottom:594.133333pt;}
.y92{bottom:594.853333pt;}
.y3e{bottom:600.373333pt;}
.y5a{bottom:603.013333pt;}
.ye{bottom:604.053333pt;}
.ye8{bottom:605.653333pt;}
.yba{bottom:609.733333pt;}
.y91{bottom:610.533333pt;}
.y3d{bottom:615.973333pt;}
.y70{bottom:616.293333pt;}
.y59{bottom:618.693333pt;}
.yd{bottom:619.733333pt;}
.ye7{bottom:629.333333pt;}
.yb9{bottom:633.413333pt;}
.y90{bottom:634.133333pt;}
.y58{bottom:634.293333pt;}
.yc{bottom:635.333333pt;}
.y3c{bottom:639.573333pt;}
.y6f{bottom:639.973333pt;}
.ye6{bottom:644.933333pt;}
.yb8{bottom:649.013333pt;}
.yb{bottom:650.933333pt;}
.ye5{bottom:660.613333pt;}
.y8f{bottom:665.813333pt;}
.y57{bottom:665.973333pt;}
.y3b{bottom:671.253333pt;}
.y6e{bottom:671.573333pt;}
.yb7{bottom:672.613333pt;}
.ya{bottom:674.853333pt;}
.ye4{bottom:684.213333pt;}
.y3a{bottom:686.853333pt;}
.yb6{bottom:688.293333pt;}
.y8e{bottom:694.453333pt;}
.y56{bottom:694.613333pt;}
.ye3{bottom:699.813333pt;}
.y6d{bottom:700.213333pt;}
.y39{bottom:702.533333pt;}
.yb5{bottom:703.893333pt;}
.ye2{bottom:715.493333pt;}
.y9{bottom:717.813333pt;}
.y38{bottom:718.133333pt;}
.yb4{bottom:727.573333pt;}
.y37{bottom:733.733333pt;}
.ye1{bottom:739.093333pt;}
.yb3{bottom:743.173333pt;}
.y36{bottom:749.413333pt;}
.y8{bottom:749.653333pt;}
.ye0{bottom:754.693333pt;}
.y35{bottom:765.013333pt;}
.yb2{bottom:766.773333pt;}
.ydf{bottom:770.373333pt;}
.y34{bottom:780.693333pt;}
.y7{bottom:781.653333pt;}
.yb1{bottom:782.453333pt;}
.yde{bottom:793.973333pt;}
.y33{bottom:796.293333pt;}
.yb0{bottom:798.053333pt;}
.ydd{bottom:809.653333pt;}
.y6{bottom:813.653333pt;}
.y32{bottom:819.893333pt;}
.yaf{bottom:821.733333pt;}
.ydc{bottom:825.253333pt;}
.yae{bottom:837.333333pt;}
.y5{bottom:845.733333pt;}
.ydb{bottom:848.853333pt;}
.y31{bottom:851.573333pt;}
.yad{bottom:852.933333pt;}
.yda{bottom:864.533333pt;}
.y30{bottom:867.173333pt;}
.yac{bottom:868.613333pt;}
.y4{bottom:879.733333pt;}
.y2f{bottom:882.853333pt;}
.yd9{bottom:888.133333pt;}
.yab{bottom:892.213333pt;}
.y2e{bottom:898.480000pt;}
.y3{bottom:901.680000pt;}
.yd8{bottom:903.840000pt;}
.yaa{bottom:907.840000pt;}
.y2d{bottom:914.080000pt;}
.yd7{bottom:919.440000pt;}
.ya9{bottom:923.520000pt;}
.y2c{bottom:929.760000pt;}
.y8d{bottom:935.440000pt;}
.yd6{bottom:943.040000pt;}
.y2b{bottom:945.360000pt;}
.ya8{bottom:947.120000pt;}
.y8c{bottom:951.040000pt;}
.yd5{bottom:958.720000pt;}
.y2a{bottom:961.040000pt;}
.ya7{bottom:962.800000pt;}
.y8b{bottom:966.720000pt;}
.yd4{bottom:974.320000pt;}
.ya6{bottom:978.400000pt;}
.y8a{bottom:982.320000pt;}
.y29{bottom:984.640000pt;}
.y89{bottom:998.000000pt;}
.ya5{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:53.309531pt;}
.hf{height:54.927899pt;}
.h9{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:46.000000pt;}
.wa{width:46.026667pt;}
.w8{width:47.360000pt;}
.w9{width:65.760000pt;}
.wb{width:98.480000pt;}
.w7{width:105.360000pt;}
.w3{width:123.866667pt;}
.w4{width:132.800000pt;}
.w6{width:161.200000pt;}
.w5{width:198.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:87.680000pt;}
.x14{left:98.879988pt;}
.xd{left:190.826667pt;}
.x13{left:196.426655pt;}
.xc{left:201.866655pt;}
.x2{left:205.466655pt;}
.x8{left:212.186667pt;}
.x5{left:215.546655pt;}
.xe{left:296.826667pt;}
.x9{left:345.626667pt;}
.xf{left:411.226667pt;}
.x10{left:457.973333pt;}
.xa{left:545.093333pt;}
.x11{left:557.173333pt;}
.x12{left:607.013322pt;}
.x4{left:623.013322pt;}
.xb{left:666.053322pt;}
.x3{left:711.413322pt;}
}




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