
    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_008500dd86113b715d41e617.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b490d9283411dba120d61deb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738770;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_33e6461689a61fd40d5c40f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_15eef0e037093300badcf7b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.940000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.249600px;}
.ls7{letter-spacing:0.289440px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.363600px;}
.lsf{letter-spacing:7.146720px;}
.lse{letter-spacing:36.666720px;}
.ls4{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-3.193920px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._5{width:2.308080px;}
._6{width:3.781920px;}
._13{width:4.983840px;}
._d{width:6.780240px;}
._16{width:8.681280px;}
._10{width:10.264080px;}
._b{width:11.772720px;}
._9{width:12.848400px;}
._a{width:13.909440px;}
._14{width:16.015680px;}
._c{width:17.330400px;}
._1f{width:18.704880px;}
._e{width:20.079360px;}
._f{width:21.319680px;}
._1b{width:23.186880px;}
._27{width:24.621120px;}
._26{width:25.637040px;}
._25{width:26.652960px;}
._4{width:27.677760px;}
._15{width:28.804320px;}
._17{width:29.820240px;}
._7{width:31.553280px;}
._8{width:33.226560px;}
._18{width:34.899840px;}
._19{width:35.915760px;}
._22{width:36.991440px;}
._30{width:38.013840px;}
._29{width:39.083040px;}
._1c{width:40.278240px;}
._1d{width:41.294160px;}
._2c{width:42.668640px;}
._2a{width:44.521200px;}
._12{width:45.955440px;}
._11{width:47.389680px;}
._28{width:48.564000px;}
._2f{width:50.198400px;}
._24{width:51.214320px;}
._35{width:53.544960px;}
._2d{width:54.740160px;}
._3a{width:55.875600px;}
._36{width:57.011040px;}
._38{width:58.146480px;}
._23{width:59.939280px;}
._1e{width:61.791840px;}
._34{width:63.465120px;}
._2{width:64.800000px;}
._37{width:65.915280px;}
._2e{width:66.931200px;}
._21{width:68.186160px;}
._20{width:69.500160px;}
._33{width:71.472960px;}
._39{width:72.907200px;}
._2b{width:75.178080px;}
._32{width:94.958640px;}
._31{width:95.974560px;}
._3{width:674.100000px;}
.fc4{color:rgb(51,102,153);}
.fc3{color:rgb(24,23,23);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y34{bottom:6.120000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.y1d{bottom:8.820000px;}
.yd{bottom:25.560000px;}
.y2c{bottom:25.740000px;}
.y33{bottom:25.920000px;}
.y2{bottom:26.820000px;}
.y7{bottom:27.720000px;}
.y2b{bottom:45.540000px;}
.y32{bottom:45.720000px;}
.y6{bottom:47.520000px;}
.y13{bottom:49.860000px;}
.yc{bottom:54.360000px;}
.y10{bottom:63.900000px;}
.y2a{bottom:65.340000px;}
.y31{bottom:65.520000px;}
.y5{bottom:69.660000px;}
.yb{bottom:74.160000px;}
.y29{bottom:85.140000px;}
.y30{bottom:85.320000px;}
.y82{bottom:90.540000px;}
.y4a{bottom:91.800000px;}
.yc1{bottom:92.340000px;}
.y4{bottom:97.410000px;}
.yb5{bottom:101.340000px;}
.ya{bottom:102.990000px;}
.y28{bottom:104.940000px;}
.y2f{bottom:105.120000px;}
.y81{bottom:110.340000px;}
.y49{bottom:111.600000px;}
.yc0{bottom:112.140000px;}
.yb4{bottom:121.140000px;}
.y9{bottom:122.970000px;}
.y27{bottom:124.920000px;}
.y80{bottom:130.140000px;}
.y48{bottom:131.400000px;}
.ybf{bottom:131.940000px;}
.y3{bottom:131.970000px;}
.yb3{bottom:140.940000px;}
.y26{bottom:144.720000px;}
.y7f{bottom:149.940000px;}
.y47{bottom:151.200000px;}
.ybe{bottom:151.740000px;}
.yb2{bottom:160.740000px;}
.y25{bottom:164.550000px;}
.y7e{bottom:169.740000px;}
.y46{bottom:171.000000px;}
.ybd{bottom:171.540000px;}
.yb1{bottom:180.540000px;}
.y24{bottom:184.350000px;}
.y2e{bottom:184.530000px;}
.y7d{bottom:189.540000px;}
.y45{bottom:190.800000px;}
.ybc{bottom:191.340000px;}
.yb0{bottom:200.340000px;}
.y23{bottom:204.150000px;}
.y2d{bottom:204.330000px;}
.y7c{bottom:209.340000px;}
.y44{bottom:210.630000px;}
.ybb{bottom:211.350000px;}
.yaf{bottom:220.350000px;}
.y22{bottom:224.130000px;}
.y7b{bottom:229.350000px;}
.y43{bottom:230.430000px;}
.yba{bottom:231.150000px;}
.yae{bottom:240.150000px;}
.y21{bottom:243.930000px;}
.y7a{bottom:249.150000px;}
.y42{bottom:250.230000px;}
.yb9{bottom:250.950000px;}
.yad{bottom:259.950000px;}
.y20{bottom:263.730000px;}
.y79{bottom:268.950000px;}
.y41{bottom:270.210000px;}
.yb8{bottom:270.750000px;}
.yac{bottom:279.750000px;}
.y1f{bottom:283.530000px;}
.y78{bottom:288.750000px;}
.y40{bottom:290.010000px;}
.yb7{bottom:290.550000px;}
.yab{bottom:299.550000px;}
.y77{bottom:308.550000px;}
.y3f{bottom:309.810000px;}
.yb6{bottom:310.350000px;}
.yaa{bottom:319.350000px;}
.y76{bottom:328.350000px;}
.y3e{bottom:329.610000px;}
.ya9{bottom:339.150000px;}
.y75{bottom:348.150000px;}
.y3d{bottom:349.410000px;}
.ya8{bottom:358.950000px;}
.y74{bottom:367.950000px;}
.y3c{bottom:369.210000px;}
.ya7{bottom:378.750000px;}
.y73{bottom:387.750000px;}
.y3b{bottom:389.010000px;}
.ya6{bottom:398.730000px;}
.y72{bottom:407.730000px;}
.y3a{bottom:408.810000px;}
.ya5{bottom:418.530000px;}
.y71{bottom:427.530000px;}
.y39{bottom:428.610000px;}
.ya4{bottom:438.330000px;}
.y70{bottom:447.375000px;}
.y38{bottom:448.635000px;}
.ya3{bottom:458.175000px;}
.y6f{bottom:467.175000px;}
.y37{bottom:468.435000px;}
.ya2{bottom:477.975000px;}
.y6e{bottom:486.975000px;}
.y36{bottom:488.235000px;}
.ya1{bottom:497.775000px;}
.y35{bottom:502.995000px;}
.y6d{bottom:506.775000px;}
.ya0{bottom:517.575000px;}
.y1e{bottom:523.515000px;}
.y6c{bottom:526.575000px;}
.y9f{bottom:537.375000px;}
.y6b{bottom:546.375000px;}
.y9e{bottom:557.175000px;}
.y6a{bottom:566.175000px;}
.y9d{bottom:577.155000px;}
.y69{bottom:586.155000px;}
.y9c{bottom:596.955000px;}
.y68{bottom:605.955000px;}
.y9b{bottom:616.755000px;}
.y67{bottom:625.755000px;}
.y9a{bottom:636.555000px;}
.y66{bottom:645.555000px;}
.y99{bottom:656.355000px;}
.y65{bottom:665.355000px;}
.y98{bottom:676.155000px;}
.y64{bottom:685.185000px;}
.y97{bottom:695.985000px;}
.y63{bottom:704.985000px;}
.y96{bottom:715.785000px;}
.y62{bottom:724.785000px;}
.y95{bottom:735.585000px;}
.y61{bottom:744.585000px;}
.y94{bottom:755.565000px;}
.y60{bottom:764.565000px;}
.y93{bottom:775.365000px;}
.y5f{bottom:784.365000px;}
.y92{bottom:795.165000px;}
.y5e{bottom:804.165000px;}
.y91{bottom:814.965000px;}
.y1c{bottom:821.805000px;}
.y5d{bottom:823.965000px;}
.y90{bottom:834.765000px;}
.y5c{bottom:843.765000px;}
.y1b{bottom:851.325000px;}
.y8f{bottom:854.565000px;}
.y5b{bottom:863.565000px;}
.y8e{bottom:874.365000px;}
.y1a{bottom:876.345000px;}
.y5a{bottom:883.365000px;}
.y8d{bottom:894.165000px;}
.y19{bottom:896.145000px;}
.y59{bottom:903.165000px;}
.y18{bottom:911.265000px;}
.y8c{bottom:913.965000px;}
.y58{bottom:923.010000px;}
.y17{bottom:932.550000px;}
.y8b{bottom:933.990000px;}
.y57{bottom:942.990000px;}
.y8a{bottom:953.790000px;}
.y16{bottom:955.950000px;}
.y56{bottom:962.790000px;}
.y89{bottom:973.590000px;}
.y55{bottom:982.590000px;}
.y15{bottom:987.630000px;}
.y88{bottom:993.390000px;}
.y54{bottom:1002.390000px;}
.y87{bottom:1013.190000px;}
.y14{bottom:1019.490000px;}
.y53{bottom:1022.190000px;}
.y86{bottom:1032.990000px;}
.y52{bottom:1041.990000px;}
.yf{bottom:1045.050000px;}
.y85{bottom:1052.790000px;}
.y51{bottom:1061.790000px;}
.y1{bottom:1065.750000px;}
.y84{bottom:1072.590000px;}
.y50{bottom:1081.590000px;}
.y83{bottom:1092.390000px;}
.y4f{bottom:1101.390000px;}
.y4e{bottom:1121.370000px;}
.y4d{bottom:1141.170000px;}
.y4c{bottom:1170.540000px;}
.y4b{bottom:1192.320000px;}
.h3{height:2.010938px;}
.h10{height:19.800000px;}
.h9{height:21.960000px;}
.he{height:22.860000px;}
.hd{height:27.147656px;}
.h7{height:41.726953px;}
.h4{height:42.164648px;}
.h12{height:43.506914px;}
.h8{height:46.251562px;}
.h6{height:46.736719px;}
.ha{height:53.224453px;}
.hc{height:53.404453px;}
.h11{height:55.291992px;}
.h5{height:59.436914px;}
.hb{height:67.565039px;}
.h2{height:146.016000px;}
.hf{height:297.570000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:55.476000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.w8{width:192.270000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:745.170000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.xb{left:45.900000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xd{left:57.600000px;}
.x10{left:68.759987px;}
.x15{left:75.239987px;}
.x12{left:80.999987px;}
.xc{left:102.096000px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.450000px;}
.x7{left:154.305000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.xe{left:249.870000px;}
.x11{left:263.369987px;}
.xf{left:457.304987px;}
.x13{left:478.544987px;}
.x14{left:505.544987px;}
.x9{left:703.050000px;}
@media print{
.v2{vertical-align:-21.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.221867pt;}
.ls7{letter-spacing:0.257280pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.323200pt;}
.lsf{letter-spacing:6.352640pt;}
.lse{letter-spacing:32.592640pt;}
.ls4{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-2.839040pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._5{width:2.051627pt;}
._6{width:3.361707pt;}
._13{width:4.430080pt;}
._d{width:6.026880pt;}
._16{width:7.716693pt;}
._10{width:9.123627pt;}
._b{width:10.464640pt;}
._9{width:11.420800pt;}
._a{width:12.363947pt;}
._14{width:14.236160pt;}
._c{width:15.404800pt;}
._1f{width:16.626560pt;}
._e{width:17.848320pt;}
._f{width:18.950827pt;}
._1b{width:20.610560pt;}
._27{width:21.885440pt;}
._26{width:22.788480pt;}
._25{width:23.691520pt;}
._4{width:24.602453pt;}
._15{width:25.603840pt;}
._17{width:26.506880pt;}
._7{width:28.047360pt;}
._8{width:29.534720pt;}
._18{width:31.022080pt;}
._19{width:31.925120pt;}
._22{width:32.881280pt;}
._30{width:33.790080pt;}
._29{width:34.740480pt;}
._1c{width:35.802880pt;}
._1d{width:36.705920pt;}
._2c{width:37.927680pt;}
._2a{width:39.574400pt;}
._12{width:40.849280pt;}
._11{width:42.124160pt;}
._28{width:43.168000pt;}
._2f{width:44.620800pt;}
._24{width:45.523840pt;}
._35{width:47.595520pt;}
._2d{width:48.657920pt;}
._3a{width:49.667200pt;}
._36{width:50.676480pt;}
._38{width:51.685760pt;}
._23{width:53.279360pt;}
._1e{width:54.926080pt;}
._34{width:56.413440pt;}
._2{width:57.600000pt;}
._37{width:58.591360pt;}
._2e{width:59.494400pt;}
._21{width:60.609920pt;}
._20{width:61.777920pt;}
._33{width:63.531520pt;}
._39{width:64.806400pt;}
._2b{width:66.824960pt;}
._32{width:84.407680pt;}
._31{width:85.310720pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y34{bottom:5.440000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.y1d{bottom:7.840000pt;}
.yd{bottom:22.720000pt;}
.y2c{bottom:22.880000pt;}
.y33{bottom:23.040000pt;}
.y2{bottom:23.840000pt;}
.y7{bottom:24.640000pt;}
.y2b{bottom:40.480000pt;}
.y32{bottom:40.640000pt;}
.y6{bottom:42.240000pt;}
.y13{bottom:44.320000pt;}
.yc{bottom:48.320000pt;}
.y10{bottom:56.800000pt;}
.y2a{bottom:58.080000pt;}
.y31{bottom:58.240000pt;}
.y5{bottom:61.920000pt;}
.yb{bottom:65.920000pt;}
.y29{bottom:75.680000pt;}
.y30{bottom:75.840000pt;}
.y82{bottom:80.480000pt;}
.y4a{bottom:81.600000pt;}
.yc1{bottom:82.080000pt;}
.y4{bottom:86.586667pt;}
.yb5{bottom:90.080000pt;}
.ya{bottom:91.546667pt;}
.y28{bottom:93.280000pt;}
.y2f{bottom:93.440000pt;}
.y81{bottom:98.080000pt;}
.y49{bottom:99.200000pt;}
.yc0{bottom:99.680000pt;}
.yb4{bottom:107.680000pt;}
.y9{bottom:109.306667pt;}
.y27{bottom:111.040000pt;}
.y80{bottom:115.680000pt;}
.y48{bottom:116.800000pt;}
.ybf{bottom:117.280000pt;}
.y3{bottom:117.306667pt;}
.yb3{bottom:125.280000pt;}
.y26{bottom:128.640000pt;}
.y7f{bottom:133.280000pt;}
.y47{bottom:134.400000pt;}
.ybe{bottom:134.880000pt;}
.yb2{bottom:142.880000pt;}
.y25{bottom:146.266667pt;}
.y7e{bottom:150.880000pt;}
.y46{bottom:152.000000pt;}
.ybd{bottom:152.480000pt;}
.yb1{bottom:160.480000pt;}
.y24{bottom:163.866667pt;}
.y2e{bottom:164.026667pt;}
.y7d{bottom:168.480000pt;}
.y45{bottom:169.600000pt;}
.ybc{bottom:170.080000pt;}
.yb0{bottom:178.080000pt;}
.y23{bottom:181.466667pt;}
.y2d{bottom:181.626667pt;}
.y7c{bottom:186.080000pt;}
.y44{bottom:187.226667pt;}
.ybb{bottom:187.866667pt;}
.yaf{bottom:195.866667pt;}
.y22{bottom:199.226667pt;}
.y7b{bottom:203.866667pt;}
.y43{bottom:204.826667pt;}
.yba{bottom:205.466667pt;}
.yae{bottom:213.466667pt;}
.y21{bottom:216.826667pt;}
.y7a{bottom:221.466667pt;}
.y42{bottom:222.426667pt;}
.yb9{bottom:223.066667pt;}
.yad{bottom:231.066667pt;}
.y20{bottom:234.426667pt;}
.y79{bottom:239.066667pt;}
.y41{bottom:240.186667pt;}
.yb8{bottom:240.666667pt;}
.yac{bottom:248.666667pt;}
.y1f{bottom:252.026667pt;}
.y78{bottom:256.666667pt;}
.y40{bottom:257.786667pt;}
.yb7{bottom:258.266667pt;}
.yab{bottom:266.266667pt;}
.y77{bottom:274.266667pt;}
.y3f{bottom:275.386667pt;}
.yb6{bottom:275.866667pt;}
.yaa{bottom:283.866667pt;}
.y76{bottom:291.866667pt;}
.y3e{bottom:292.986667pt;}
.ya9{bottom:301.466667pt;}
.y75{bottom:309.466667pt;}
.y3d{bottom:310.586667pt;}
.ya8{bottom:319.066667pt;}
.y74{bottom:327.066667pt;}
.y3c{bottom:328.186667pt;}
.ya7{bottom:336.666667pt;}
.y73{bottom:344.666667pt;}
.y3b{bottom:345.786667pt;}
.ya6{bottom:354.426667pt;}
.y72{bottom:362.426667pt;}
.y3a{bottom:363.386667pt;}
.ya5{bottom:372.026667pt;}
.y71{bottom:380.026667pt;}
.y39{bottom:380.986667pt;}
.ya4{bottom:389.626667pt;}
.y70{bottom:397.666667pt;}
.y38{bottom:398.786667pt;}
.ya3{bottom:407.266667pt;}
.y6f{bottom:415.266667pt;}
.y37{bottom:416.386667pt;}
.ya2{bottom:424.866667pt;}
.y6e{bottom:432.866667pt;}
.y36{bottom:433.986667pt;}
.ya1{bottom:442.466667pt;}
.y35{bottom:447.106667pt;}
.y6d{bottom:450.466667pt;}
.ya0{bottom:460.066667pt;}
.y1e{bottom:465.346667pt;}
.y6c{bottom:468.066667pt;}
.y9f{bottom:477.666667pt;}
.y6b{bottom:485.666667pt;}
.y9e{bottom:495.266667pt;}
.y6a{bottom:503.266667pt;}
.y9d{bottom:513.026667pt;}
.y69{bottom:521.026667pt;}
.y9c{bottom:530.626667pt;}
.y68{bottom:538.626667pt;}
.y9b{bottom:548.226667pt;}
.y67{bottom:556.226667pt;}
.y9a{bottom:565.826667pt;}
.y66{bottom:573.826667pt;}
.y99{bottom:583.426667pt;}
.y65{bottom:591.426667pt;}
.y98{bottom:601.026667pt;}
.y64{bottom:609.053333pt;}
.y97{bottom:618.653333pt;}
.y63{bottom:626.653333pt;}
.y96{bottom:636.253333pt;}
.y62{bottom:644.253333pt;}
.y95{bottom:653.853333pt;}
.y61{bottom:661.853333pt;}
.y94{bottom:671.613333pt;}
.y60{bottom:679.613333pt;}
.y93{bottom:689.213333pt;}
.y5f{bottom:697.213333pt;}
.y92{bottom:706.813333pt;}
.y5e{bottom:714.813333pt;}
.y91{bottom:724.413333pt;}
.y1c{bottom:730.493333pt;}
.y5d{bottom:732.413333pt;}
.y90{bottom:742.013333pt;}
.y5c{bottom:750.013333pt;}
.y1b{bottom:756.733333pt;}
.y8f{bottom:759.613333pt;}
.y5b{bottom:767.613333pt;}
.y8e{bottom:777.213333pt;}
.y1a{bottom:778.973333pt;}
.y5a{bottom:785.213333pt;}
.y8d{bottom:794.813333pt;}
.y19{bottom:796.573333pt;}
.y59{bottom:802.813333pt;}
.y18{bottom:810.013333pt;}
.y8c{bottom:812.413333pt;}
.y58{bottom:820.453333pt;}
.y17{bottom:828.933333pt;}
.y8b{bottom:830.213333pt;}
.y57{bottom:838.213333pt;}
.y8a{bottom:847.813333pt;}
.y16{bottom:849.733333pt;}
.y56{bottom:855.813333pt;}
.y89{bottom:865.413333pt;}
.y55{bottom:873.413333pt;}
.y15{bottom:877.893333pt;}
.y88{bottom:883.013333pt;}
.y54{bottom:891.013333pt;}
.y87{bottom:900.613333pt;}
.y14{bottom:906.213333pt;}
.y53{bottom:908.613333pt;}
.y86{bottom:918.213333pt;}
.y52{bottom:926.213333pt;}
.yf{bottom:928.933333pt;}
.y85{bottom:935.813333pt;}
.y51{bottom:943.813333pt;}
.y1{bottom:947.333333pt;}
.y84{bottom:953.413333pt;}
.y50{bottom:961.413333pt;}
.y83{bottom:971.013333pt;}
.y4f{bottom:979.013333pt;}
.y4e{bottom:996.773333pt;}
.y4d{bottom:1014.373333pt;}
.y4c{bottom:1040.480000pt;}
.y4b{bottom:1059.840000pt;}
.h3{height:1.787500pt;}
.h10{height:17.600000pt;}
.h9{height:19.520000pt;}
.he{height:20.320000pt;}
.hd{height:24.131250pt;}
.h7{height:37.090625pt;}
.h4{height:37.479688pt;}
.h12{height:38.672812pt;}
.h8{height:41.112500pt;}
.h6{height:41.543750pt;}
.ha{height:47.310625pt;}
.hc{height:47.470625pt;}
.h11{height:49.148438pt;}
.h5{height:52.832812pt;}
.hb{height:60.057813pt;}
.h2{height:129.792000pt;}
.hf{height:264.506667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:49.312000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.w8{width:170.906667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:662.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.xb{left:40.800000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xd{left:51.200000pt;}
.x10{left:61.119988pt;}
.x15{left:66.879988pt;}
.x12{left:71.999988pt;}
.xc{left:90.752000pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.066667pt;}
.x7{left:137.160000pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.xe{left:222.106667pt;}
.x11{left:234.106655pt;}
.xf{left:406.493322pt;}
.x13{left:425.373322pt;}
.x14{left:449.373322pt;}
.x9{left:624.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  