
    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_f1fa9e4d269aec855e9e014a.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_5ef5932cc88cb2405ccfd71c.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_aebf6bb0fd7fec945a0e39d6.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_65260b5ec5de6c45f4e72119.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_f4a4ca2a42fbe9c16beba8d4.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_a5e2bc25c0dced2c09f88254.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a8c28e508c517d737b1064ed.woff')format("woff");}.ff8{font-family:ff8;line-height:0.816406;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_02db305ed20467f4804adf2b.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;}
.ls7{letter-spacing:-0.375000px;}
.lsc{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.164400px;}
.ls10{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.121200px;}
.ls11{letter-spacing:-0.101400px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.037800px;}
.ls15{letter-spacing:-0.013320px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.014760px;}
.lsa{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.047520px;}
.lsb{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.lsf{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:7.293600px;}
.ls3{letter-spacing:16.560000px;}
.ls1a{letter-spacing:48.446640px;}
.ls17{letter-spacing:81.566640px;}
.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.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.wsd{word-spacing:-13.273920px;}
.ws12{word-spacing:-13.231800px;}
.ws1{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.188600px;}
.ws5{word-spacing:-13.141800px;}
.wsc{word-spacing:-13.125000px;}
.ws2{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
.wsf{word-spacing:94.856040px;}
._3{margin-left:-3.860405px;}
._2{margin-left:-2.825400px;}
._0{margin-left:-1.020000px;}
._1{width:1.006812px;}
._7{width:2.503441px;}
._8{width:3.547268px;}
._5{width:5.349598px;}
._4{width:6.493200px;}
._6{width:7.583280px;}
._9{width:9.062040px;}
._d{width:10.879920px;}
._c{width:12.144000px;}
._b{width:14.352122px;}
._a{width:15.390600px;}
._10{width:17.089429px;}
._e{width:19.719360px;}
._f{width:21.311400px;}
._12{width:28.917720px;}
._13{width:29.999880px;}
._15{width:45.991800px;}
._14{width:74.608920px;}
._11{width:123.666840px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:9.090000px;}
.y7d{bottom:9.180000px;}
.y8a{bottom:9.210000px;}
.y79{bottom:28.080000px;}
.y86{bottom:28.170000px;}
.y83{bottom:29.430000px;}
.y84{bottom:30.240000px;}
.y78{bottom:47.070000px;}
.y82{bottom:49.140000px;}
.y2{bottom:74.370000px;}
.y27{bottom:75.540000px;}
.y1{bottom:103.980000px;}
.y6c{bottom:126.120000px;}
.yda{bottom:128.280000px;}
.y25{bottom:137.100000px;}
.yd9{bottom:147.180000px;}
.y24{bottom:156.090000px;}
.y6b{bottom:159.870000px;}
.yac{bottom:169.680000px;}
.yd8{bottom:173.730000px;}
.yd7{bottom:192.630000px;}
.y23{bottom:193.080000px;}
.yab{bottom:196.140000px;}
.yd6{bottom:211.620000px;}
.y22{bottom:212.070000px;}
.yaa{bottom:215.040000px;}
.y21{bottom:230.970000px;}
.ya9{bottom:234.030000px;}
.yd5{bottom:238.170000px;}
.y51{bottom:240.870000px;}
.y20{bottom:249.960000px;}
.yd4{bottom:257.070000px;}
.y50{bottom:259.860000px;}
.ya8{bottom:260.580000px;}
.y1f{bottom:268.950000px;}
.y4f{bottom:278.850000px;}
.ya7{bottom:279.480000px;}
.yd3{bottom:283.620000px;}
.ya6{bottom:298.470000px;}
.yd2{bottom:302.520000px;}
.y1e{bottom:305.940000px;}
.y91{bottom:312.870000px;}
.y4e{bottom:315.840000px;}
.yd1{bottom:321.510000px;}
.y1d{bottom:324.930000px;}
.ya5{bottom:327.000000px;}
.y90{bottom:331.860000px;}
.y4d{bottom:334.830000px;}
.y1c{bottom:343.920000px;}
.yd0{bottom:348.060000px;}
.y8f{bottom:350.850000px;}
.y4c{bottom:353.820000px;}
.y1b{bottom:362.910000px;}
.ycf{bottom:366.960000px;}
.y8e{bottom:369.840000px;}
.y4b{bottom:372.810000px;}
.ya4{bottom:376.500000px;}
.y6a{bottom:385.050000px;}
.yce{bottom:385.950000px;}
.y8d{bottom:388.830000px;}
.y1a{bottom:391.440000px;}
.y4a{bottom:391.800000px;}
.y69{bottom:404.040000px;}
.ycd{bottom:404.940000px;}
.ya3{bottom:405.030000px;}
.y8c{bottom:407.820000px;}
.y49{bottom:410.700000px;}
.y68{bottom:423.030000px;}
.ycc{bottom:431.490000px;}
.y8b{bottom:435.720000px;}
.y48{bottom:438.690000px;}
.y19{bottom:440.940000px;}
.y67{bottom:441.930000px;}
.ya2{bottom:443.370000px;}
.ycb{bottom:450.390000px;}
.y18{bottom:459.930000px;}
.y66{bottom:460.920000px;}
.y89{bottom:468.840000px;}
.ya1{bottom:471.930000px;}
.y47{bottom:475.710000px;}
.yca{bottom:476.970000px;}
.y17{bottom:479.490000px;}
.y65{bottom:479.940000px;}
.y46{bottom:494.700000px;}
.yc9{bottom:495.870000px;}
.y88{bottom:497.580000px;}
.y64{bottom:498.930000px;}
.ya0{bottom:510.810000px;}
.y45{bottom:513.690000px;}
.yc8{bottom:514.860000px;}
.y16{bottom:517.830000px;}
.y63{bottom:517.920000px;}
.y87{bottom:526.290000px;}
.y44{bottom:532.680000px;}
.y15{bottom:536.820000px;}
.y62{bottom:536.910000px;}
.yc7{bottom:541.410000px;}
.y43{bottom:551.670000px;}
.y85{bottom:555.000000px;}
.y14{bottom:555.810000px;}
.y61{bottom:555.900000px;}
.yc6{bottom:560.310000px;}
.y9f{bottom:560.400000px;}
.y42{bottom:570.570000px;}
.y13{bottom:574.800000px;}
.yc5{bottom:579.300000px;}
.y9e{bottom:579.390000px;}
.y41{bottom:589.560000px;}
.y12{bottom:593.790000px;}
.y9d{bottom:598.380000px;}
.y81{bottom:602.700000px;}
.yc4{bottom:605.850000px;}
.y40{bottom:608.550000px;}
.y11{bottom:612.690000px;}
.y9c{bottom:617.370000px;}
.yc3{bottom:624.750000px;}
.y3f{bottom:627.540000px;}
.y60{bottom:630.780000px;}
.y10{bottom:631.680000px;}
.y9b{bottom:636.360000px;}
.y3e{bottom:646.530000px;}
.y5f{bottom:649.770000px;}
.yf{bottom:650.670000px;}
.yc2{bottom:651.300000px;}
.y9a{bottom:655.260000px;}
.y3d{bottom:665.520000px;}
.y5e{bottom:668.760000px;}
.ye{bottom:669.660000px;}
.yc1{bottom:670.200000px;}
.y80{bottom:671.460000px;}
.y99{bottom:674.250000px;}
.y3c{bottom:684.510000px;}
.y5d{bottom:687.750000px;}
.yd{bottom:688.650000px;}
.y98{bottom:693.240000px;}
.yc0{bottom:696.750000px;}
.y7f{bottom:700.170000px;}
.y3b{bottom:703.410000px;}
.y5c{bottom:706.740000px;}
.yc{bottom:707.640000px;}
.y97{bottom:712.230000px;}
.ybf{bottom:715.650000px;}
.y5b{bottom:725.730000px;}
.yb{bottom:726.630000px;}
.y7e{bottom:728.880000px;}
.y96{bottom:731.220000px;}
.y3a{bottom:731.940000px;}
.ybe{bottom:742.200000px;}
.y5a{bottom:744.630000px;}
.ya{bottom:745.530000px;}
.y95{bottom:750.210000px;}
.y7c{bottom:757.590000px;}
.ybd{bottom:761.100000px;}
.y59{bottom:763.620000px;}
.y9{bottom:774.060000px;}
.y94{bottom:778.740000px;}
.y39{bottom:781.530000px;}
.y58{bottom:782.610000px;}
.y7b{bottom:786.390000px;}
.ybc{bottom:787.650000px;}
.y38{bottom:800.520000px;}
.y57{bottom:801.600000px;}
.ybb{bottom:806.550000px;}
.y37{bottom:819.510000px;}
.y56{bottom:820.590000px;}
.y8{bottom:822.390000px;}
.yba{bottom:825.540000px;}
.y93{bottom:828.330000px;}
.y77{bottom:834.090000px;}
.y55{bottom:839.580000px;}
.yb9{bottom:852.090000px;}
.y36{bottom:856.500000px;}
.y7{bottom:859.290000px;}
.y92{bottom:861.990000px;}
.y54{bottom:867.570000px;}
.yb8{bottom:870.990000px;}
.y35{bottom:875.490000px;}
.y34{bottom:894.480000px;}
.y6{bottom:895.200000px;}
.yb7{bottom:897.540000px;}
.y53{bottom:904.470000px;}
.y33{bottom:913.380000px;}
.yb6{bottom:916.440000px;}
.y76{bottom:923.370000px;}
.y5{bottom:931.200000px;}
.y32{bottom:932.370000px;}
.yb5{bottom:935.430000px;}
.y52{bottom:938.490000px;}
.y31{bottom:951.360000px;}
.yb4{bottom:954.420000px;}
.y75{bottom:960.360000px;}
.y4{bottom:968.820000px;}
.y30{bottom:970.350000px;}
.yb3{bottom:973.320000px;}
.y74{bottom:979.350000px;}
.y2f{bottom:989.340000px;}
.yb2{bottom:992.310000px;}
.y73{bottom:998.340000px;}
.y2e{bottom:1008.330000px;}
.y3{bottom:1009.050000px;}
.yb1{bottom:1011.330000px;}
.y72{bottom:1017.360000px;}
.y71{bottom:1036.350000px;}
.yb0{bottom:1037.880000px;}
.y2d{bottom:1045.350000px;}
.y70{bottom:1055.340000px;}
.yaf{bottom:1056.780000px;}
.y2c{bottom:1064.340000px;}
.y6f{bottom:1074.240000px;}
.yae{bottom:1075.770000px;}
.y2b{bottom:1083.240000px;}
.y6e{bottom:1093.230000px;}
.y2a{bottom:1102.230000px;}
.yad{bottom:1102.320000px;}
.y6d{bottom:1112.220000px;}
.y29{bottom:1121.220000px;}
.y28{bottom:1140.210000px;}
.y26{bottom:1194.210000px;}
.hc{height:27.990000px;}
.hf{height:28.020000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:46.890000px;}
.he{height:46.980000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.h10{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:65.880000px;}
.hd{height:67.950000px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:44.100000px;}
.w8{width:45.090000px;}
.wc{width:46.350000px;}
.w6{width:52.380000px;}
.wd{width:66.780000px;}
.w5{width:69.390000px;}
.wb{width:76.410000px;}
.wa{width:78.390000px;}
.w9{width:87.060000px;}
.w4{width:90.030000px;}
.w3{width:92.070000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.x1{left:68.040000px;}
.x14{left:111.419987px;}
.x9{left:161.550000px;}
.x2{left:192.719987px;}
.xa{left:252.300000px;}
.x13{left:258.599987px;}
.x7{left:311.069987px;}
.x5{left:322.409987px;}
.xb{left:375.600000px;}
.xc{left:420.510000px;}
.xd{left:466.320000px;}
.xe{left:554.190000px;}
.x6{left:617.639987px;}
.x4{left:622.139987px;}
.xf{left:633.390000px;}
.x12{left:688.559987px;}
.x10{left:710.520000px;}
.x11{left:757.680000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.333333pt;}
.lsc{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.146133pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls11{letter-spacing:-0.090133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.033600pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.013120pt;}
.lsa{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.042240pt;}
.lsb{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.lsf{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:6.483200pt;}
.ls3{letter-spacing:14.720000pt;}
.ls1a{letter-spacing:43.063680pt;}
.ls17{letter-spacing:72.503680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.wsd{word-spacing:-11.799040pt;}
.ws12{word-spacing:-11.761600pt;}
.ws1{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.723200pt;}
.ws5{word-spacing:-11.681600pt;}
.wsc{word-spacing:-11.666667pt;}
.ws2{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
.wsf{word-spacing:84.316480pt;}
._3{margin-left:-3.431471pt;}
._2{margin-left:-2.511466pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.894944pt;}
._7{width:2.225281pt;}
._8{width:3.153127pt;}
._5{width:4.755198pt;}
._4{width:5.771734pt;}
._6{width:6.740694pt;}
._9{width:8.055147pt;}
._d{width:9.671040pt;}
._c{width:10.794666pt;}
._b{width:12.757442pt;}
._a{width:13.680533pt;}
._10{width:15.190603pt;}
._e{width:17.528320pt;}
._f{width:18.943467pt;}
._12{width:25.704640pt;}
._13{width:26.666560pt;}
._15{width:40.881600pt;}
._14{width:66.319040pt;}
._11{width:109.926080pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:8.080000pt;}
.y7d{bottom:8.160000pt;}
.y8a{bottom:8.186667pt;}
.y79{bottom:24.960000pt;}
.y86{bottom:25.040000pt;}
.y83{bottom:26.160000pt;}
.y84{bottom:26.880000pt;}
.y78{bottom:41.840000pt;}
.y82{bottom:43.680000pt;}
.y2{bottom:66.106667pt;}
.y27{bottom:67.146667pt;}
.y1{bottom:92.426667pt;}
.y6c{bottom:112.106667pt;}
.yda{bottom:114.026667pt;}
.y25{bottom:121.866667pt;}
.yd9{bottom:130.826667pt;}
.y24{bottom:138.746667pt;}
.y6b{bottom:142.106667pt;}
.yac{bottom:150.826667pt;}
.yd8{bottom:154.426667pt;}
.yd7{bottom:171.226667pt;}
.y23{bottom:171.626667pt;}
.yab{bottom:174.346667pt;}
.yd6{bottom:188.106667pt;}
.y22{bottom:188.506667pt;}
.yaa{bottom:191.146667pt;}
.y21{bottom:205.306667pt;}
.ya9{bottom:208.026667pt;}
.yd5{bottom:211.706667pt;}
.y51{bottom:214.106667pt;}
.y20{bottom:222.186667pt;}
.yd4{bottom:228.506667pt;}
.y50{bottom:230.986667pt;}
.ya8{bottom:231.626667pt;}
.y1f{bottom:239.066667pt;}
.y4f{bottom:247.866667pt;}
.ya7{bottom:248.426667pt;}
.yd3{bottom:252.106667pt;}
.ya6{bottom:265.306667pt;}
.yd2{bottom:268.906667pt;}
.y1e{bottom:271.946667pt;}
.y91{bottom:278.106667pt;}
.y4e{bottom:280.746667pt;}
.yd1{bottom:285.786667pt;}
.y1d{bottom:288.826667pt;}
.ya5{bottom:290.666667pt;}
.y90{bottom:294.986667pt;}
.y4d{bottom:297.626667pt;}
.y1c{bottom:305.706667pt;}
.yd0{bottom:309.386667pt;}
.y8f{bottom:311.866667pt;}
.y4c{bottom:314.506667pt;}
.y1b{bottom:322.586667pt;}
.ycf{bottom:326.186667pt;}
.y8e{bottom:328.746667pt;}
.y4b{bottom:331.386667pt;}
.ya4{bottom:334.666667pt;}
.y6a{bottom:342.266667pt;}
.yce{bottom:343.066667pt;}
.y8d{bottom:345.626667pt;}
.y1a{bottom:347.946667pt;}
.y4a{bottom:348.266667pt;}
.y69{bottom:359.146667pt;}
.ycd{bottom:359.946667pt;}
.ya3{bottom:360.026667pt;}
.y8c{bottom:362.506667pt;}
.y49{bottom:365.066667pt;}
.y68{bottom:376.026667pt;}
.ycc{bottom:383.546667pt;}
.y8b{bottom:387.306667pt;}
.y48{bottom:389.946667pt;}
.y19{bottom:391.946667pt;}
.y67{bottom:392.826667pt;}
.ya2{bottom:394.106667pt;}
.ycb{bottom:400.346667pt;}
.y18{bottom:408.826667pt;}
.y66{bottom:409.706667pt;}
.y89{bottom:416.746667pt;}
.ya1{bottom:419.493333pt;}
.y47{bottom:422.853333pt;}
.yca{bottom:423.973333pt;}
.y17{bottom:426.213333pt;}
.y65{bottom:426.613333pt;}
.y46{bottom:439.733333pt;}
.yc9{bottom:440.773333pt;}
.y88{bottom:442.293333pt;}
.y64{bottom:443.493333pt;}
.ya0{bottom:454.053333pt;}
.y45{bottom:456.613333pt;}
.yc8{bottom:457.653333pt;}
.y16{bottom:460.293333pt;}
.y63{bottom:460.373333pt;}
.y87{bottom:467.813333pt;}
.y44{bottom:473.493333pt;}
.y15{bottom:477.173333pt;}
.y62{bottom:477.253333pt;}
.yc7{bottom:481.253333pt;}
.y43{bottom:490.373333pt;}
.y85{bottom:493.333333pt;}
.y14{bottom:494.053333pt;}
.y61{bottom:494.133333pt;}
.yc6{bottom:498.053333pt;}
.y9f{bottom:498.133333pt;}
.y42{bottom:507.173333pt;}
.y13{bottom:510.933333pt;}
.yc5{bottom:514.933333pt;}
.y9e{bottom:515.013333pt;}
.y41{bottom:524.053333pt;}
.y12{bottom:527.813333pt;}
.y9d{bottom:531.893333pt;}
.y81{bottom:535.733333pt;}
.yc4{bottom:538.533333pt;}
.y40{bottom:540.933333pt;}
.y11{bottom:544.613333pt;}
.y9c{bottom:548.773333pt;}
.yc3{bottom:555.333333pt;}
.y3f{bottom:557.813333pt;}
.y60{bottom:560.693333pt;}
.y10{bottom:561.493333pt;}
.y9b{bottom:565.653333pt;}
.y3e{bottom:574.693333pt;}
.y5f{bottom:577.573333pt;}
.yf{bottom:578.373333pt;}
.yc2{bottom:578.933333pt;}
.y9a{bottom:582.453333pt;}
.y3d{bottom:591.573333pt;}
.y5e{bottom:594.453333pt;}
.ye{bottom:595.253333pt;}
.yc1{bottom:595.733333pt;}
.y80{bottom:596.853333pt;}
.y99{bottom:599.333333pt;}
.y3c{bottom:608.453333pt;}
.y5d{bottom:611.333333pt;}
.yd{bottom:612.133333pt;}
.y98{bottom:616.213333pt;}
.yc0{bottom:619.333333pt;}
.y7f{bottom:622.373333pt;}
.y3b{bottom:625.253333pt;}
.y5c{bottom:628.213333pt;}
.yc{bottom:629.013333pt;}
.y97{bottom:633.093333pt;}
.ybf{bottom:636.133333pt;}
.y5b{bottom:645.093333pt;}
.yb{bottom:645.893333pt;}
.y7e{bottom:647.893333pt;}
.y96{bottom:649.973333pt;}
.y3a{bottom:650.613333pt;}
.ybe{bottom:659.733333pt;}
.y5a{bottom:661.893333pt;}
.ya{bottom:662.693333pt;}
.y95{bottom:666.853333pt;}
.y7c{bottom:673.413333pt;}
.ybd{bottom:676.533333pt;}
.y59{bottom:678.773333pt;}
.y9{bottom:688.053333pt;}
.y94{bottom:692.213333pt;}
.y39{bottom:694.693333pt;}
.y58{bottom:695.653333pt;}
.y7b{bottom:699.013333pt;}
.ybc{bottom:700.133333pt;}
.y38{bottom:711.573333pt;}
.y57{bottom:712.533333pt;}
.ybb{bottom:716.933333pt;}
.y37{bottom:728.453333pt;}
.y56{bottom:729.413333pt;}
.y8{bottom:731.013333pt;}
.yba{bottom:733.813333pt;}
.y93{bottom:736.293333pt;}
.y77{bottom:741.413333pt;}
.y55{bottom:746.293333pt;}
.yb9{bottom:757.413333pt;}
.y36{bottom:761.333333pt;}
.y7{bottom:763.813333pt;}
.y92{bottom:766.213333pt;}
.y54{bottom:771.173333pt;}
.yb8{bottom:774.213333pt;}
.y35{bottom:778.213333pt;}
.y34{bottom:795.093333pt;}
.y6{bottom:795.733333pt;}
.yb7{bottom:797.813333pt;}
.y53{bottom:803.973333pt;}
.y33{bottom:811.893333pt;}
.yb6{bottom:814.613333pt;}
.y76{bottom:820.773333pt;}
.y5{bottom:827.733333pt;}
.y32{bottom:828.773333pt;}
.yb5{bottom:831.493333pt;}
.y52{bottom:834.213333pt;}
.y31{bottom:845.653333pt;}
.yb4{bottom:848.373333pt;}
.y75{bottom:853.653333pt;}
.y4{bottom:861.173333pt;}
.y30{bottom:862.533333pt;}
.yb3{bottom:865.173333pt;}
.y74{bottom:870.533333pt;}
.y2f{bottom:879.413333pt;}
.yb2{bottom:882.053333pt;}
.y73{bottom:887.413333pt;}
.y2e{bottom:896.293333pt;}
.y3{bottom:896.933333pt;}
.yb1{bottom:898.960000pt;}
.y72{bottom:904.320000pt;}
.y71{bottom:921.200000pt;}
.yb0{bottom:922.560000pt;}
.y2d{bottom:929.200000pt;}
.y70{bottom:938.080000pt;}
.yaf{bottom:939.360000pt;}
.y2c{bottom:946.080000pt;}
.y6f{bottom:954.880000pt;}
.yae{bottom:956.240000pt;}
.y2b{bottom:962.880000pt;}
.y6e{bottom:971.760000pt;}
.y2a{bottom:979.760000pt;}
.yad{bottom:979.840000pt;}
.y6d{bottom:988.640000pt;}
.y29{bottom:996.640000pt;}
.y28{bottom:1013.520000pt;}
.y26{bottom:1061.520000pt;}
.hc{height:24.880000pt;}
.hf{height:24.906667pt;}
.h2{height:26.686563pt;}
.h3{height:33.867188pt;}
.hb{height:41.680000pt;}
.he{height:41.760000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.h10{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:58.560000pt;}
.hd{height:60.400000pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:39.200000pt;}
.w8{width:40.080000pt;}
.wc{width:41.200000pt;}
.w6{width:46.560000pt;}
.wd{width:59.360000pt;}
.w5{width:61.680000pt;}
.wb{width:67.920000pt;}
.wa{width:69.680000pt;}
.w9{width:77.386667pt;}
.w4{width:80.026667pt;}
.w3{width:81.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.x1{left:60.480000pt;}
.x14{left:99.039988pt;}
.x9{left:143.600000pt;}
.x2{left:171.306655pt;}
.xa{left:224.266667pt;}
.x13{left:229.866655pt;}
.x7{left:276.506655pt;}
.x5{left:286.586655pt;}
.xb{left:333.866667pt;}
.xc{left:373.786667pt;}
.xd{left:414.506667pt;}
.xe{left:492.613333pt;}
.x6{left:549.013322pt;}
.x4{left:553.013322pt;}
.xf{left:563.013333pt;}
.x12{left:612.053322pt;}
.x10{left:631.573333pt;}
.x11{left:673.493333pt;}
.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; }
  