
    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_b8c327195112a0643c21cae7.woff')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_d35ece56644eaf9f6ee0a541.woff')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_2603cc34507b4f65fdb2848b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2d2c4dec7cae05a833e65050.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_39e2d3fc69be8652c31b715e.woff')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_0e279093cc1c09b06905b955.woff')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_d94bf09ff6ad37f01b578133.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dd3226db2ae95f44d77f2d9f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_97afcc5438342195844f751c.woff')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;}
.ls15{letter-spacing:-0.391800px;}
.lsd{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsf{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.067200px;}
.lsb{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.105600px;}
.ls14{letter-spacing:0.113400px;}
.lse{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.199200px;}
.ls1d{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.443400px;}
.ls12{letter-spacing:7.293600px;}
.ls16{letter-spacing:9.093600px;}
.ls17{letter-spacing:11.253600px;}
.ls18{letter-spacing:15.933600px;}
.ls1c{letter-spacing:47.726640px;}
.ls1b{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;}
}
.ws3{word-spacing:-14.937000px;}
.ws2{word-spacing:-14.560800px;}
.ws7{word-spacing:-14.493600px;}
.ws14{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.425600px;}
.wsb{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.339800px;}
.ws13{word-spacing:-13.332000px;}
.ws8{word-spacing:-13.275600px;}
.wsf{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wse{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.266400px;}
.wsd{word-spacing:-8.625600px;}
.wsc{word-spacing:-8.614200px;}
.ws11{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._c{margin-left:-3.759720px;}
._5{margin-left:-2.705400px;}
._0{margin-left:-1.110000px;}
._1{width:1.174236px;}
._4{width:2.886000px;}
._2{width:4.509000px;}
._3{width:5.711400px;}
._9{width:6.867240px;}
._6{width:8.837400px;}
._7{width:10.521000px;}
._8{width:11.970804px;}
._d{width:14.789520px;}
._b{width:16.472880px;}
._11{width:17.494920px;}
._f{width:19.165320px;}
._e{width:20.270640px;}
._10{width:21.378564px;}
._a{width:22.405320px;}
._12{width:23.657040px;}
._13{width:29.639160px;}
.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;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9a{bottom:127.200000px;}
.y69{bottom:132.780000px;}
.yc7{bottom:136.200000px;}
.y61{bottom:137.910000px;}
.y28{bottom:138.630000px;}
.y99{bottom:144.840000px;}
.yf2{bottom:152.490000px;}
.yc6{bottom:153.840000px;}
.y60{bottom:155.550000px;}
.y27{bottom:156.270000px;}
.y98{bottom:162.390000px;}
.y68{bottom:168.420000px;}
.yf1{bottom:170.130000px;}
.yc5{bottom:171.390000px;}
.y5f{bottom:173.100000px;}
.y26{bottom:173.820000px;}
.y97{bottom:179.940000px;}
.y67{bottom:185.970000px;}
.yf0{bottom:187.680000px;}
.yc4{bottom:188.940000px;}
.y5e{bottom:190.650000px;}
.y96{bottom:197.580000px;}
.y25{bottom:200.370000px;}
.yc3{bottom:206.580000px;}
.yef{bottom:214.320000px;}
.y95{bottom:215.130000px;}
.y66{bottom:221.610000px;}
.yc2{bottom:224.130000px;}
.y5d{bottom:226.290000px;}
.yee{bottom:231.870000px;}
.y94{bottom:232.680000px;}
.y24{bottom:236.010000px;}
.yc1{bottom:241.680000px;}
.y5c{bottom:243.840000px;}
.yed{bottom:249.420000px;}
.y93{bottom:250.320000px;}
.y23{bottom:253.560000px;}
.yc0{bottom:259.320000px;}
.y5b{bottom:261.480000px;}
.y92{bottom:267.870000px;}
.y22{bottom:271.200000px;}
.yec{bottom:276.060000px;}
.ybf{bottom:276.870000px;}
.y5a{bottom:279.030000px;}
.y21{bottom:288.750000px;}
.yeb{bottom:293.610000px;}
.ybe{bottom:294.510000px;}
.y59{bottom:296.580000px;}
.y91{bottom:303.510000px;}
.y20{bottom:306.300000px;}
.ybd{bottom:312.060000px;}
.y58{bottom:314.220000px;}
.yea{bottom:320.250000px;}
.y90{bottom:321.060000px;}
.y1f{bottom:323.940000px;}
.ybc{bottom:329.610000px;}
.y57{bottom:331.770000px;}
.ye9{bottom:337.800000px;}
.y8f{bottom:338.610000px;}
.y1e{bottom:341.490000px;}
.ybb{bottom:347.250000px;}
.y41{bottom:347.970000px;}
.y8e{bottom:356.250000px;}
.y1d{bottom:359.130000px;}
.ye8{bottom:364.350000px;}
.yba{bottom:364.800000px;}
.y40{bottom:365.520000px;}
.y56{bottom:367.410000px;}
.y8d{bottom:373.800000px;}
.y1c{bottom:376.680000px;}
.ye7{bottom:381.990000px;}
.y3f{bottom:383.160000px;}
.y55{bottom:384.960000px;}
.y8c{bottom:391.440000px;}
.y1b{bottom:394.230000px;}
.yb9{bottom:400.440000px;}
.y3e{bottom:400.710000px;}
.y54{bottom:402.510000px;}
.ye6{bottom:408.540000px;}
.y8b{bottom:408.990000px;}
.y1a{bottom:411.870000px;}
.yb8{bottom:417.990000px;}
.y3d{bottom:418.260000px;}
.ye5{bottom:426.090000px;}
.y8a{bottom:426.540000px;}
.yb7{bottom:435.540000px;}
.y53{bottom:438.150000px;}
.y19{bottom:438.780000px;}
.y89{bottom:444.180000px;}
.ye4{bottom:452.730000px;}
.yb6{bottom:453.180000px;}
.y3c{bottom:453.900000px;}
.y52{bottom:455.700000px;}
.y88{bottom:461.730000px;}
.ye3{bottom:470.310000px;}
.yb5{bottom:470.760000px;}
.y3b{bottom:471.480000px;}
.y51{bottom:473.280000px;}
.y87{bottom:479.400000px;}
.y18{bottom:487.050000px;}
.yb4{bottom:488.400000px;}
.y3a{bottom:489.030000px;}
.ye2{bottom:496.950000px;}
.y50{bottom:499.920000px;}
.y17{bottom:504.960000px;}
.y86{bottom:505.950000px;}
.y39{bottom:506.670000px;}
.ye1{bottom:514.500000px;}
.yb3{bottom:523.500000px;}
.y38{bottom:524.220000px;}
.y4f{bottom:535.470000px;}
.ye0{bottom:541.050000px;}
.yb2{bottom:541.140000px;}
.y85{bottom:541.500000px;}
.y37{bottom:541.860000px;}
.y16{bottom:541.950000px;}
.y4e{bottom:553.110000px;}
.yb1{bottom:558.690000px;}
.y84{bottom:559.140000px;}
.y36{bottom:559.410000px;}
.y15{bottom:559.590000px;}
.ydf{bottom:567.690000px;}
.y4d{bottom:570.660000px;}
.yb0{bottom:576.330000px;}
.y83{bottom:576.690000px;}
.y35{bottom:576.960000px;}
.y14{bottom:577.140000px;}
.yde{bottom:585.240000px;}
.y4c{bottom:588.210000px;}
.y65{bottom:590.640000px;}
.yaf{bottom:593.880000px;}
.y82{bottom:594.330000px;}
.y34{bottom:594.600000px;}
.y13{bottom:594.780000px;}
.y4b{bottom:605.850000px;}
.y64{bottom:608.280000px;}
.yae{bottom:611.430000px;}
.y81{bottom:611.880000px;}
.y33{bottom:612.150000px;}
.y12{bottom:612.330000px;}
.y4a{bottom:623.400000px;}
.y63{bottom:625.830000px;}
.yad{bottom:629.070000px;}
.y80{bottom:629.430000px;}
.y32{bottom:629.790000px;}
.y11{bottom:629.880000px;}
.y49{bottom:641.040000px;}
.y7f{bottom:647.070000px;}
.y10{bottom:647.520000px;}
.y48{bottom:658.590000px;}
.ydd{bottom:660.480000px;}
.y62{bottom:661.380000px;}
.y7e{bottom:664.620000px;}
.yf{bottom:665.070000px;}
.y31{bottom:665.340000px;}
.y47{bottom:676.140000px;}
.ydc{bottom:678.030000px;}
.y7d{bottom:682.260000px;}
.ye{bottom:682.710000px;}
.y30{bottom:682.890000px;}
.y46{bottom:693.780000px;}
.y7c{bottom:699.810000px;}
.yd{bottom:700.260000px;}
.ydb{bottom:704.940000px;}
.y2f{bottom:715.110000px;}
.y7b{bottom:717.360000px;}
.yc{bottom:717.810000px;}
.y45{bottom:729.330000px;}
.yac{bottom:735.000000px;}
.yb{bottom:735.450000px;}
.yda{bottom:741.930000px;}
.y44{bottom:746.970000px;}
.yab{bottom:752.550000px;}
.ya{bottom:753.000000px;}
.yd9{bottom:759.570000px;}
.y43{bottom:764.520000px;}
.yaa{bottom:770.190000px;}
.y7a{bottom:770.550000px;}
.yd8{bottom:777.120000px;}
.y9{bottom:779.910000px;}
.ya9{bottom:787.740000px;}
.y79{bottom:788.190000px;}
.yd7{bottom:794.670000px;}
.y42{bottom:796.740000px;}
.ya8{bottom:805.290000px;}
.y78{bottom:805.740000px;}
.yd6{bottom:821.580000px;}
.ya7{bottom:822.930000px;}
.y77{bottom:823.290000px;}
.y8{bottom:828.240000px;}
.ya6{bottom:840.480000px;}
.y76{bottom:840.930000px;}
.ya5{bottom:858.030000px;}
.y75{bottom:858.480000px;}
.yd5{bottom:858.930000px;}
.y7{bottom:863.790000px;}
.y74{bottom:876.030000px;}
.y73{bottom:893.670000px;}
.y6{bottom:899.610000px;}
.yd4{bottom:907.260000px;}
.y72{bottom:911.220000px;}
.yd3{bottom:924.810000px;}
.yf8{bottom:928.410000px;}
.ya4{bottom:928.860000px;}
.y5{bottom:935.610000px;}
.yd2{bottom:942.450000px;}
.yf7{bottom:945.960000px;}
.ya3{bottom:946.410000px;}
.y71{bottom:946.860000px;}
.yd1{bottom:960.000000px;}
.ya2{bottom:963.960000px;}
.y70{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.yf6{bottom:972.600000px;}
.yd0{bottom:977.550000px;}
.ya1{bottom:981.600000px;}
.y6f{bottom:981.960000px;}
.yf5{bottom:990.150000px;}
.ycf{bottom:995.190000px;}
.ya0{bottom:999.150000px;}
.y6e{bottom:999.600000px;}
.y3{bottom:1009.980000px;}
.yce{bottom:1012.770000px;}
.y9f{bottom:1016.820000px;}
.y6d{bottom:1017.180000px;}
.ycd{bottom:1030.320000px;}
.y9e{bottom:1034.370000px;}
.y6c{bottom:1034.820000px;}
.ycc{bottom:1047.960000px;}
.y9d{bottom:1051.920000px;}
.y6b{bottom:1052.370000px;}
.ycb{bottom:1065.510000px;}
.y9c{bottom:1069.560000px;}
.y6a{bottom:1069.920000px;}
.yf4{bottom:1078.560000px;}
.yca{bottom:1083.150000px;}
.y9b{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yf3{bottom:1096.110000px;}
.yc9{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yc8{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.xa{left:70.469987px;}
.x7{left:71.999987px;}
.x4{left:74.429987px;}
.xe{left:111.239987px;}
.xd{left:146.429987px;}
.x5{left:149.489987px;}
.x2{left:192.719987px;}
.xb{left:363.899987px;}
.x8{left:431.399987px;}
.xc{left:710.969987px;}
.x6{left:742.559987px;}
.x9{left:743.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.348267pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsf{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.059733pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.093867pt;}
.ls14{letter-spacing:0.100800pt;}
.lse{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.177067pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.394133pt;}
.ls12{letter-spacing:6.483200pt;}
.ls16{letter-spacing:8.083200pt;}
.ls17{letter-spacing:10.003200pt;}
.ls18{letter-spacing:14.163200pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws3{word-spacing:-13.277333pt;}
.ws2{word-spacing:-12.942933pt;}
.ws7{word-spacing:-12.883200pt;}
.ws14{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.933867pt;}
.wsb{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.857600pt;}
.ws13{word-spacing:-11.850667pt;}
.ws8{word-spacing:-11.800533pt;}
.wsf{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.236800pt;}
.wsd{word-spacing:-7.667200pt;}
.wsc{word-spacing:-7.657067pt;}
.ws11{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._c{margin-left:-3.341973pt;}
._5{margin-left:-2.404800pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043765pt;}
._4{width:2.565334pt;}
._2{width:4.008000pt;}
._3{width:5.076800pt;}
._9{width:6.104213pt;}
._6{width:7.855466pt;}
._7{width:9.352000pt;}
._8{width:10.640715pt;}
._d{width:13.146240pt;}
._b{width:14.642560pt;}
._11{width:15.551040pt;}
._f{width:17.035840pt;}
._e{width:18.018347pt;}
._10{width:19.003168pt;}
._a{width:19.915840pt;}
._12{width:21.028480pt;}
._13{width:26.345920pt;}
.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;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9a{bottom:113.066667pt;}
.y69{bottom:118.026667pt;}
.yc7{bottom:121.066667pt;}
.y61{bottom:122.586667pt;}
.y28{bottom:123.226667pt;}
.y99{bottom:128.746667pt;}
.yf2{bottom:135.546667pt;}
.yc6{bottom:136.746667pt;}
.y60{bottom:138.266667pt;}
.y27{bottom:138.906667pt;}
.y98{bottom:144.346667pt;}
.y68{bottom:149.706667pt;}
.yf1{bottom:151.226667pt;}
.yc5{bottom:152.346667pt;}
.y5f{bottom:153.866667pt;}
.y26{bottom:154.506667pt;}
.y97{bottom:159.946667pt;}
.y67{bottom:165.306667pt;}
.yf0{bottom:166.826667pt;}
.yc4{bottom:167.946667pt;}
.y5e{bottom:169.466667pt;}
.y96{bottom:175.626667pt;}
.y25{bottom:178.106667pt;}
.yc3{bottom:183.626667pt;}
.yef{bottom:190.506667pt;}
.y95{bottom:191.226667pt;}
.y66{bottom:196.986667pt;}
.yc2{bottom:199.226667pt;}
.y5d{bottom:201.146667pt;}
.yee{bottom:206.106667pt;}
.y94{bottom:206.826667pt;}
.y24{bottom:209.786667pt;}
.yc1{bottom:214.826667pt;}
.y5c{bottom:216.746667pt;}
.yed{bottom:221.706667pt;}
.y93{bottom:222.506667pt;}
.y23{bottom:225.386667pt;}
.yc0{bottom:230.506667pt;}
.y5b{bottom:232.426667pt;}
.y92{bottom:238.106667pt;}
.y22{bottom:241.066667pt;}
.yec{bottom:245.386667pt;}
.ybf{bottom:246.106667pt;}
.y5a{bottom:248.026667pt;}
.y21{bottom:256.666667pt;}
.yeb{bottom:260.986667pt;}
.ybe{bottom:261.786667pt;}
.y59{bottom:263.626667pt;}
.y91{bottom:269.786667pt;}
.y20{bottom:272.266667pt;}
.ybd{bottom:277.386667pt;}
.y58{bottom:279.306667pt;}
.yea{bottom:284.666667pt;}
.y90{bottom:285.386667pt;}
.y1f{bottom:287.946667pt;}
.ybc{bottom:292.986667pt;}
.y57{bottom:294.906667pt;}
.ye9{bottom:300.266667pt;}
.y8f{bottom:300.986667pt;}
.y1e{bottom:303.546667pt;}
.ybb{bottom:308.666667pt;}
.y41{bottom:309.306667pt;}
.y8e{bottom:316.666667pt;}
.y1d{bottom:319.226667pt;}
.ye8{bottom:323.866667pt;}
.yba{bottom:324.266667pt;}
.y40{bottom:324.906667pt;}
.y56{bottom:326.586667pt;}
.y8d{bottom:332.266667pt;}
.y1c{bottom:334.826667pt;}
.ye7{bottom:339.546667pt;}
.y3f{bottom:340.586667pt;}
.y55{bottom:342.186667pt;}
.y8c{bottom:347.946667pt;}
.y1b{bottom:350.426667pt;}
.yb9{bottom:355.946667pt;}
.y3e{bottom:356.186667pt;}
.y54{bottom:357.786667pt;}
.ye6{bottom:363.146667pt;}
.y8b{bottom:363.546667pt;}
.y1a{bottom:366.106667pt;}
.yb8{bottom:371.546667pt;}
.y3d{bottom:371.786667pt;}
.ye5{bottom:378.746667pt;}
.y8a{bottom:379.146667pt;}
.yb7{bottom:387.146667pt;}
.y53{bottom:389.466667pt;}
.y19{bottom:390.026667pt;}
.y89{bottom:394.826667pt;}
.ye4{bottom:402.426667pt;}
.yb6{bottom:402.826667pt;}
.y3c{bottom:403.466667pt;}
.y52{bottom:405.066667pt;}
.y88{bottom:410.426667pt;}
.ye3{bottom:418.053333pt;}
.yb5{bottom:418.453333pt;}
.y3b{bottom:419.093333pt;}
.y51{bottom:420.693333pt;}
.y87{bottom:426.133333pt;}
.y18{bottom:432.933333pt;}
.yb4{bottom:434.133333pt;}
.y3a{bottom:434.693333pt;}
.ye2{bottom:441.733333pt;}
.y50{bottom:444.373333pt;}
.y17{bottom:448.853333pt;}
.y86{bottom:449.733333pt;}
.y39{bottom:450.373333pt;}
.ye1{bottom:457.333333pt;}
.yb3{bottom:465.333333pt;}
.y38{bottom:465.973333pt;}
.y4f{bottom:475.973333pt;}
.ye0{bottom:480.933333pt;}
.yb2{bottom:481.013333pt;}
.y85{bottom:481.333333pt;}
.y37{bottom:481.653333pt;}
.y16{bottom:481.733333pt;}
.y4e{bottom:491.653333pt;}
.yb1{bottom:496.613333pt;}
.y84{bottom:497.013333pt;}
.y36{bottom:497.253333pt;}
.y15{bottom:497.413333pt;}
.ydf{bottom:504.613333pt;}
.y4d{bottom:507.253333pt;}
.yb0{bottom:512.293333pt;}
.y83{bottom:512.613333pt;}
.y35{bottom:512.853333pt;}
.y14{bottom:513.013333pt;}
.yde{bottom:520.213333pt;}
.y4c{bottom:522.853333pt;}
.y65{bottom:525.013333pt;}
.yaf{bottom:527.893333pt;}
.y82{bottom:528.293333pt;}
.y34{bottom:528.533333pt;}
.y13{bottom:528.693333pt;}
.y4b{bottom:538.533333pt;}
.y64{bottom:540.693333pt;}
.yae{bottom:543.493333pt;}
.y81{bottom:543.893333pt;}
.y33{bottom:544.133333pt;}
.y12{bottom:544.293333pt;}
.y4a{bottom:554.133333pt;}
.y63{bottom:556.293333pt;}
.yad{bottom:559.173333pt;}
.y80{bottom:559.493333pt;}
.y32{bottom:559.813333pt;}
.y11{bottom:559.893333pt;}
.y49{bottom:569.813333pt;}
.y7f{bottom:575.173333pt;}
.y10{bottom:575.573333pt;}
.y48{bottom:585.413333pt;}
.ydd{bottom:587.093333pt;}
.y62{bottom:587.893333pt;}
.y7e{bottom:590.773333pt;}
.yf{bottom:591.173333pt;}
.y31{bottom:591.413333pt;}
.y47{bottom:601.013333pt;}
.ydc{bottom:602.693333pt;}
.y7d{bottom:606.453333pt;}
.ye{bottom:606.853333pt;}
.y30{bottom:607.013333pt;}
.y46{bottom:616.693333pt;}
.y7c{bottom:622.053333pt;}
.yd{bottom:622.453333pt;}
.ydb{bottom:626.613333pt;}
.y2f{bottom:635.653333pt;}
.y7b{bottom:637.653333pt;}
.yc{bottom:638.053333pt;}
.y45{bottom:648.293333pt;}
.yac{bottom:653.333333pt;}
.yb{bottom:653.733333pt;}
.yda{bottom:659.493333pt;}
.y44{bottom:663.973333pt;}
.yab{bottom:668.933333pt;}
.ya{bottom:669.333333pt;}
.yd9{bottom:675.173333pt;}
.y43{bottom:679.573333pt;}
.yaa{bottom:684.613333pt;}
.y7a{bottom:684.933333pt;}
.yd8{bottom:690.773333pt;}
.y9{bottom:693.253333pt;}
.ya9{bottom:700.213333pt;}
.y79{bottom:700.613333pt;}
.yd7{bottom:706.373333pt;}
.y42{bottom:708.213333pt;}
.ya8{bottom:715.813333pt;}
.y78{bottom:716.213333pt;}
.yd6{bottom:730.293333pt;}
.ya7{bottom:731.493333pt;}
.y77{bottom:731.813333pt;}
.y8{bottom:736.213333pt;}
.ya6{bottom:747.093333pt;}
.y76{bottom:747.493333pt;}
.ya5{bottom:762.693333pt;}
.y75{bottom:763.093333pt;}
.yd5{bottom:763.493333pt;}
.y7{bottom:767.813333pt;}
.y74{bottom:778.693333pt;}
.y73{bottom:794.373333pt;}
.y6{bottom:799.653333pt;}
.yd4{bottom:806.453333pt;}
.y72{bottom:809.973333pt;}
.yd3{bottom:822.053333pt;}
.yf8{bottom:825.253333pt;}
.ya4{bottom:825.653333pt;}
.y5{bottom:831.653333pt;}
.yd2{bottom:837.733333pt;}
.yf7{bottom:840.853333pt;}
.ya3{bottom:841.253333pt;}
.y71{bottom:841.653333pt;}
.yd1{bottom:853.333333pt;}
.ya2{bottom:856.853333pt;}
.y70{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.yf6{bottom:864.533333pt;}
.yd0{bottom:868.933333pt;}
.ya1{bottom:872.533333pt;}
.y6f{bottom:872.853333pt;}
.yf5{bottom:880.133333pt;}
.ycf{bottom:884.613333pt;}
.ya0{bottom:888.133333pt;}
.y6e{bottom:888.533333pt;}
.y3{bottom:897.760000pt;}
.yce{bottom:900.240000pt;}
.y9f{bottom:903.840000pt;}
.y6d{bottom:904.160000pt;}
.ycd{bottom:915.840000pt;}
.y9e{bottom:919.440000pt;}
.y6c{bottom:919.840000pt;}
.ycc{bottom:931.520000pt;}
.y9d{bottom:935.040000pt;}
.y6b{bottom:935.440000pt;}
.ycb{bottom:947.120000pt;}
.y9c{bottom:950.720000pt;}
.y6a{bottom:951.040000pt;}
.yf4{bottom:958.720000pt;}
.yca{bottom:962.800000pt;}
.y9b{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yf3{bottom:974.320000pt;}
.yc9{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yc8{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.xa{left:62.639988pt;}
.x7{left:63.999988pt;}
.x4{left:66.159988pt;}
.xe{left:98.879988pt;}
.xd{left:130.159988pt;}
.x5{left:132.879988pt;}
.x2{left:171.306655pt;}
.xb{left:323.466655pt;}
.x8{left:383.466655pt;}
.xc{left:631.973322pt;}
.x6{left:660.053322pt;}
.x9{left:661.013322pt;}
.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; }
  