
    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_da82cb2ef8bfef9881aacc6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_872e17816267c198255035d2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_693346e0d4394918a7fc3249.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2030eedd490a3028f3fa4934.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e81554316f145eee4c4e8640.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b2c3067809b1ad219fc58274.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c31739eb9b739c7f9633536f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_4e78f841f953a2857938bb66.woff2')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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.876000px;}
.lse{letter-spacing:-0.642000px;}
.ls10{letter-spacing:-0.618000px;}
.ls7{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.296400px;}
.lsb{letter-spacing:-0.158400px;}
.lsc{letter-spacing:-0.103800px;}
.ls6{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.080400px;}
.ls11{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.302400px;}
.ls5{letter-spacing:0.324000px;}
.ls8{letter-spacing:14.947200px;}
.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;}
}
.ws1{word-spacing:-24.408000px;}
.ws2{word-spacing:-15.984000px;}
.ws8{word-spacing:-14.875200px;}
.wsf{word-spacing:-14.679600px;}
.wsc{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.469000px;}
.wsa{word-spacing:-14.414400px;}
.ws9{word-spacing:-14.276400px;}
.ws6{word-spacing:-14.238600px;}
.wsd{word-spacing:-13.930800px;}
.wse{word-spacing:-13.696800px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:3.047040px;}
._b{margin-left:-8.132400px;}
._a{margin-left:-6.177600px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.127600px;}
._3{width:3.568800px;}
._1c{width:5.034240px;}
._1b{width:6.226560px;}
._21{width:7.409280px;}
._4{width:8.519760px;}
._16{width:9.864000px;}
._10{width:11.664000px;}
._23{width:12.691440px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._c{width:16.992000px;}
._d{width:18.072000px;}
._17{width:19.872000px;}
._15{width:20.880000px;}
._1e{width:22.442880px;}
._18{width:23.472000px;}
._1a{width:25.329120px;}
._1f{width:27.092160px;}
._20{width:28.222800px;}
._e{width:29.520000px;}
._f{width:30.528000px;}
._28{width:31.691520px;}
._1d{width:32.719680px;}
._13{width:33.984000px;}
._14{width:34.992000px;}
._22{width:37.823040px;}
._26{width:39.448080px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._27{width:43.738560px;}
._12{width:45.288000px;}
._11{width:46.728000px;}
._2f{width:47.833920px;}
._2e{width:49.944960px;}
._24{width:51.336000px;}
._25{width:52.528320px;}
._19{width:53.985600px;}
._2a{width:108.332640px;}
._29{width:112.872960px;}
._31{width:155.088480px;}
._30{width:159.704640px;}
._2c{width:198.196080px;}
._2d{width:199.581120px;}
._1{width:201.403200px;}
._2b{width:203.423040px;}
.fc6{color:rgb(0,17,229);}
.fc5{color:rgb(41,84,209);}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.yc{bottom:73.656000px;}
.yb{bottom:89.136000px;}
.ya{bottom:104.616000px;}
.y91{bottom:116.316000px;}
.y58{bottom:117.216000px;}
.y9{bottom:120.096000px;}
.y82{bottom:123.156000px;}
.y8{bottom:135.576000px;}
.y90{bottom:138.636000px;}
.y57{bottom:139.536000px;}
.y81{bottom:145.296000px;}
.y8f{bottom:160.770000px;}
.y56{bottom:161.850000px;}
.y80{bottom:167.610000px;}
.y2a{bottom:181.470000px;}
.y8e{bottom:183.090000px;}
.y55{bottom:183.990000px;}
.y7f{bottom:189.930000px;}
.y8d{bottom:205.410000px;}
.y54{bottom:206.310000px;}
.y7e{bottom:212.070000px;}
.y29{bottom:218.550000px;}
.y8c{bottom:227.550000px;}
.y53{bottom:228.450000px;}
.y7d{bottom:234.390000px;}
.y8b{bottom:249.870000px;}
.y52{bottom:250.770000px;}
.y28{bottom:255.810000px;}
.y7c{bottom:256.530000px;}
.y8a{bottom:272.010000px;}
.y51{bottom:273.090000px;}
.y7b{bottom:278.850000px;}
.y27{bottom:293.790000px;}
.y89{bottom:294.330000px;}
.y50{bottom:295.230000px;}
.y7a{bottom:300.990000px;}
.y9d{bottom:316.515000px;}
.y4f{bottom:317.595000px;}
.y26{bottom:318.135000px;}
.y79{bottom:323.355000px;}
.y9c{bottom:338.835000px;}
.y4e{bottom:339.735000px;}
.y25{bottom:343.695000px;}
.y78{bottom:345.675000px;}
.yb5{bottom:359.715000px;}
.y9b{bottom:361.155000px;}
.y4d{bottom:362.055000px;}
.y77{bottom:367.815000px;}
.ya7{bottom:383.295000px;}
.y4c{bottom:384.195000px;}
.y24{bottom:385.635000px;}
.y76{bottom:390.135000px;}
.yb4{bottom:396.795000px;}
.ya6{bottom:405.615000px;}
.y4b{bottom:406.515000px;}
.y23{bottom:410.115000px;}
.y75{bottom:412.275000px;}
.yb3{bottom:419.115000px;}
.ya5{bottom:427.755000px;}
.y4a{bottom:428.835000px;}
.y22{bottom:434.235000px;}
.y74{bottom:434.595000px;}
.yb2{bottom:441.435000px;}
.ya4{bottom:450.075000px;}
.y49{bottom:450.975000px;}
.y73{bottom:456.915000px;}
.y21{bottom:458.535000px;}
.yb1{bottom:463.575000px;}
.ya3{bottom:472.395000px;}
.y48{bottom:473.295000px;}
.y72{bottom:479.055000px;}
.y20{bottom:482.835000px;}
.yb0{bottom:485.895000px;}
.ya2{bottom:494.535000px;}
.y47{bottom:495.435000px;}
.y71{bottom:501.375000px;}
.y1f{bottom:507.135000px;}
.yaf{bottom:508.035000px;}
.ya1{bottom:516.855000px;}
.y46{bottom:517.755000px;}
.y70{bottom:523.515000px;}
.yae{bottom:530.355000px;}
.y1e{bottom:531.435000px;}
.ya0{bottom:538.995000px;}
.y45{bottom:540.075000px;}
.y6f{bottom:545.835000px;}
.yad{bottom:552.675000px;}
.y1d{bottom:555.735000px;}
.y9f{bottom:561.345000px;}
.y44{bottom:562.245000px;}
.y6e{bottom:568.005000px;}
.yac{bottom:574.845000px;}
.y1c{bottom:579.885000px;}
.y9e{bottom:583.485000px;}
.y43{bottom:584.565000px;}
.y6d{bottom:590.325000px;}
.yab{bottom:597.165000px;}
.y1b{bottom:604.185000px;}
.y6c{bottom:612.645000px;}
.y42{bottom:613.545000px;}
.yaa{bottom:619.305000px;}
.y1a{bottom:628.485000px;}
.y6b{bottom:634.785000px;}
.ya9{bottom:641.625000px;}
.y41{bottom:650.805000px;}
.y19{bottom:652.785000px;}
.y6a{bottom:657.105000px;}
.ya8{bottom:663.765000px;}
.y40{bottom:672.945000px;}
.y18{bottom:677.085000px;}
.y69{bottom:679.245000px;}
.y9a{bottom:686.085000px;}
.y3f{bottom:692.385000px;}
.y17{bottom:701.385000px;}
.y68{bottom:701.565000px;}
.y99{bottom:708.405000px;}
.y3e{bottom:711.645000px;}
.y67{bottom:723.885000px;}
.y16{bottom:727.665000px;}
.y98{bottom:730.545000px;}
.y3d{bottom:731.085000px;}
.y66{bottom:746.025000px;}
.y3c{bottom:750.345000px;}
.y97{bottom:752.865000px;}
.y15{bottom:754.305000px;}
.y65{bottom:768.345000px;}
.y3b{bottom:769.785000px;}
.y96{bottom:775.005000px;}
.y14{bottom:776.445000px;}
.y3a{bottom:789.045000px;}
.y64{bottom:790.485000px;}
.y95{bottom:797.325000px;}
.y13{bottom:798.765000px;}
.y39{bottom:808.485000px;}
.y63{bottom:812.850000px;}
.y94{bottom:819.690000px;}
.y12{bottom:821.130000px;}
.y38{bottom:827.790000px;}
.y62{bottom:835.170000px;}
.y93{bottom:841.830000px;}
.y37{bottom:847.230000px;}
.y61{bottom:857.310000px;}
.y92{bottom:864.150000px;}
.y36{bottom:866.490000px;}
.y11{bottom:873.870000px;}
.y60{bottom:879.630000px;}
.y35{bottom:885.930000px;}
.y88{bottom:886.290000px;}
.y5f{bottom:901.770000px;}
.y34{bottom:905.190000px;}
.y10{bottom:906.990000px;}
.y87{bottom:908.610000px;}
.y5e{bottom:924.090000px;}
.y33{bottom:924.630000px;}
.y86{bottom:930.750000px;}
.yf{bottom:939.930000px;}
.y32{bottom:943.890000px;}
.y5d{bottom:946.230000px;}
.y85{bottom:953.070000px;}
.y31{bottom:963.150000px;}
.y5c{bottom:968.550000px;}
.ye{bottom:972.870000px;}
.y84{bottom:975.390000px;}
.y30{bottom:982.590000px;}
.y5b{bottom:990.870000px;}
.y83{bottom:997.530000px;}
.y7{bottom:1002.210000px;}
.y5a{bottom:1013.010000px;}
.y2f{bottom:1019.850000px;}
.y6{bottom:1021.650000px;}
.y59{bottom:1035.330000px;}
.y5{bottom:1040.910000px;}
.y2e{bottom:1041.990000px;}
.y4{bottom:1060.350000px;}
.y2d{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y2b{bottom:1121.220000px;}
.h4{height:41.974453px;}
.h5{height:42.351328px;}
.hd{height:46.986328px;}
.hc{height:55.825312px;}
.h2{height:56.084062px;}
.h3{height:57.636562px;}
.h1{height:58.154062px;}
.ha{height:60.960938px;}
.h8{height:62.648438px;}
.hb{height:63.210938px;}
.h9{height:73.956797px;}
.h7{height:86.255508px;}
.h6{height:110.583984px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.036000px;}
.x4{left:138.456000px;}
.x9{left:170.310000px;}
.x6{left:182.550000px;}
.xd{left:188.130000px;}
.x5{left:192.990000px;}
.x3{left:262.470000px;}
.x8{left:278.130000px;}
.xa{left:354.495000px;}
.x7{left:404.535000px;}
.xc{left:412.275000px;}
.xb{left:459.075000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.778667pt;}
.lse{letter-spacing:-0.570667pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls7{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.263467pt;}
.lsb{letter-spacing:-0.140800pt;}
.lsc{letter-spacing:-0.092267pt;}
.ls6{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.071467pt;}
.ls11{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.268800pt;}
.ls5{letter-spacing:0.288000pt;}
.ls8{letter-spacing:13.286400pt;}
.ws1{word-spacing:-21.696000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws8{word-spacing:-13.222400pt;}
.wsf{word-spacing:-13.048533pt;}
.wsc{word-spacing:-13.025067pt;}
.ws7{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.861333pt;}
.wsa{word-spacing:-12.812800pt;}
.ws9{word-spacing:-12.690133pt;}
.ws6{word-spacing:-12.656533pt;}
.wsd{word-spacing:-12.382933pt;}
.wse{word-spacing:-12.174933pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:2.708480pt;}
._b{margin-left:-7.228800pt;}
._a{margin-left:-5.491200pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.891200pt;}
._3{width:3.172267pt;}
._1c{width:4.474880pt;}
._1b{width:5.534720pt;}
._21{width:6.586027pt;}
._4{width:7.573120pt;}
._16{width:8.768000pt;}
._10{width:10.368000pt;}
._23{width:11.281280pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._c{width:15.104000pt;}
._d{width:16.064000pt;}
._17{width:17.664000pt;}
._15{width:18.560000pt;}
._1e{width:19.949227pt;}
._18{width:20.864000pt;}
._1a{width:22.514773pt;}
._1f{width:24.081920pt;}
._20{width:25.086933pt;}
._e{width:26.240000pt;}
._f{width:27.136000pt;}
._28{width:28.170240pt;}
._1d{width:29.084160pt;}
._13{width:30.208000pt;}
._14{width:31.104000pt;}
._22{width:33.620480pt;}
._26{width:35.064960pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._27{width:38.878720pt;}
._12{width:40.256000pt;}
._11{width:41.536000pt;}
._2f{width:42.519040pt;}
._2e{width:44.395520pt;}
._24{width:45.632000pt;}
._25{width:46.691840pt;}
._19{width:47.987200pt;}
._2a{width:96.295680pt;}
._29{width:100.331520pt;}
._31{width:137.856427pt;}
._30{width:141.959680pt;}
._2c{width:176.174293pt;}
._2d{width:177.405440pt;}
._1{width:179.025067pt;}
._2b{width:180.820480pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.yc{bottom:65.472000pt;}
.yb{bottom:79.232000pt;}
.ya{bottom:92.992000pt;}
.y91{bottom:103.392000pt;}
.y58{bottom:104.192000pt;}
.y9{bottom:106.752000pt;}
.y82{bottom:109.472000pt;}
.y8{bottom:120.512000pt;}
.y90{bottom:123.232000pt;}
.y57{bottom:124.032000pt;}
.y81{bottom:129.152000pt;}
.y8f{bottom:142.906667pt;}
.y56{bottom:143.866667pt;}
.y80{bottom:148.986667pt;}
.y2a{bottom:161.306667pt;}
.y8e{bottom:162.746667pt;}
.y55{bottom:163.546667pt;}
.y7f{bottom:168.826667pt;}
.y8d{bottom:182.586667pt;}
.y54{bottom:183.386667pt;}
.y7e{bottom:188.506667pt;}
.y29{bottom:194.266667pt;}
.y8c{bottom:202.266667pt;}
.y53{bottom:203.066667pt;}
.y7d{bottom:208.346667pt;}
.y8b{bottom:222.106667pt;}
.y52{bottom:222.906667pt;}
.y28{bottom:227.386667pt;}
.y7c{bottom:228.026667pt;}
.y8a{bottom:241.786667pt;}
.y51{bottom:242.746667pt;}
.y7b{bottom:247.866667pt;}
.y27{bottom:261.146667pt;}
.y89{bottom:261.626667pt;}
.y50{bottom:262.426667pt;}
.y7a{bottom:267.546667pt;}
.y9d{bottom:281.346667pt;}
.y4f{bottom:282.306667pt;}
.y26{bottom:282.786667pt;}
.y79{bottom:287.426667pt;}
.y9c{bottom:301.186667pt;}
.y4e{bottom:301.986667pt;}
.y25{bottom:305.506667pt;}
.y78{bottom:307.266667pt;}
.yb5{bottom:319.746667pt;}
.y9b{bottom:321.026667pt;}
.y4d{bottom:321.826667pt;}
.y77{bottom:326.946667pt;}
.ya7{bottom:340.706667pt;}
.y4c{bottom:341.506667pt;}
.y24{bottom:342.786667pt;}
.y76{bottom:346.786667pt;}
.yb4{bottom:352.706667pt;}
.ya6{bottom:360.546667pt;}
.y4b{bottom:361.346667pt;}
.y23{bottom:364.546667pt;}
.y75{bottom:366.466667pt;}
.yb3{bottom:372.546667pt;}
.ya5{bottom:380.226667pt;}
.y4a{bottom:381.186667pt;}
.y22{bottom:385.986667pt;}
.y74{bottom:386.306667pt;}
.yb2{bottom:392.386667pt;}
.ya4{bottom:400.066667pt;}
.y49{bottom:400.866667pt;}
.y73{bottom:406.146667pt;}
.y21{bottom:407.586667pt;}
.yb1{bottom:412.066667pt;}
.ya3{bottom:419.906667pt;}
.y48{bottom:420.706667pt;}
.y72{bottom:425.826667pt;}
.y20{bottom:429.186667pt;}
.yb0{bottom:431.906667pt;}
.ya2{bottom:439.586667pt;}
.y47{bottom:440.386667pt;}
.y71{bottom:445.666667pt;}
.y1f{bottom:450.786667pt;}
.yaf{bottom:451.586667pt;}
.ya1{bottom:459.426667pt;}
.y46{bottom:460.226667pt;}
.y70{bottom:465.346667pt;}
.yae{bottom:471.426667pt;}
.y1e{bottom:472.386667pt;}
.ya0{bottom:479.106667pt;}
.y45{bottom:480.066667pt;}
.y6f{bottom:485.186667pt;}
.yad{bottom:491.266667pt;}
.y1d{bottom:493.986667pt;}
.y9f{bottom:498.973333pt;}
.y44{bottom:499.773333pt;}
.y6e{bottom:504.893333pt;}
.yac{bottom:510.973333pt;}
.y1c{bottom:515.453333pt;}
.y9e{bottom:518.653333pt;}
.y43{bottom:519.613333pt;}
.y6d{bottom:524.733333pt;}
.yab{bottom:530.813333pt;}
.y1b{bottom:537.053333pt;}
.y6c{bottom:544.573333pt;}
.y42{bottom:545.373333pt;}
.yaa{bottom:550.493333pt;}
.y1a{bottom:558.653333pt;}
.y6b{bottom:564.253333pt;}
.ya9{bottom:570.333333pt;}
.y41{bottom:578.493333pt;}
.y19{bottom:580.253333pt;}
.y6a{bottom:584.093333pt;}
.ya8{bottom:590.013333pt;}
.y40{bottom:598.173333pt;}
.y18{bottom:601.853333pt;}
.y69{bottom:603.773333pt;}
.y9a{bottom:609.853333pt;}
.y3f{bottom:615.453333pt;}
.y17{bottom:623.453333pt;}
.y68{bottom:623.613333pt;}
.y99{bottom:629.693333pt;}
.y3e{bottom:632.573333pt;}
.y67{bottom:643.453333pt;}
.y16{bottom:646.813333pt;}
.y98{bottom:649.373333pt;}
.y3d{bottom:649.853333pt;}
.y66{bottom:663.133333pt;}
.y3c{bottom:666.973333pt;}
.y97{bottom:669.213333pt;}
.y15{bottom:670.493333pt;}
.y65{bottom:682.973333pt;}
.y3b{bottom:684.253333pt;}
.y96{bottom:688.893333pt;}
.y14{bottom:690.173333pt;}
.y3a{bottom:701.373333pt;}
.y64{bottom:702.653333pt;}
.y95{bottom:708.733333pt;}
.y13{bottom:710.013333pt;}
.y39{bottom:718.653333pt;}
.y63{bottom:722.533333pt;}
.y94{bottom:728.613333pt;}
.y12{bottom:729.893333pt;}
.y38{bottom:735.813333pt;}
.y62{bottom:742.373333pt;}
.y93{bottom:748.293333pt;}
.y37{bottom:753.093333pt;}
.y61{bottom:762.053333pt;}
.y92{bottom:768.133333pt;}
.y36{bottom:770.213333pt;}
.y11{bottom:776.773333pt;}
.y60{bottom:781.893333pt;}
.y35{bottom:787.493333pt;}
.y88{bottom:787.813333pt;}
.y5f{bottom:801.573333pt;}
.y34{bottom:804.613333pt;}
.y10{bottom:806.213333pt;}
.y87{bottom:807.653333pt;}
.y5e{bottom:821.413333pt;}
.y33{bottom:821.893333pt;}
.y86{bottom:827.333333pt;}
.yf{bottom:835.493333pt;}
.y32{bottom:839.013333pt;}
.y5d{bottom:841.093333pt;}
.y85{bottom:847.173333pt;}
.y31{bottom:856.133333pt;}
.y5c{bottom:860.933333pt;}
.ye{bottom:864.773333pt;}
.y84{bottom:867.013333pt;}
.y30{bottom:873.413333pt;}
.y5b{bottom:880.773333pt;}
.y83{bottom:886.693333pt;}
.y7{bottom:890.853333pt;}
.y5a{bottom:900.453333pt;}
.y2f{bottom:906.533333pt;}
.y6{bottom:908.133333pt;}
.y59{bottom:920.293333pt;}
.y5{bottom:925.253333pt;}
.y2e{bottom:926.213333pt;}
.y4{bottom:942.533333pt;}
.y2d{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y2b{bottom:996.640000pt;}
.h4{height:37.310625pt;}
.h5{height:37.645625pt;}
.hd{height:41.765625pt;}
.hc{height:49.622500pt;}
.h2{height:49.852500pt;}
.h3{height:51.232500pt;}
.h1{height:51.692500pt;}
.ha{height:54.187500pt;}
.h8{height:55.687500pt;}
.hb{height:56.187500pt;}
.h9{height:65.739375pt;}
.h7{height:76.671562pt;}
.h6{height:98.296875pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.032000pt;}
.x4{left:123.072000pt;}
.x9{left:151.386667pt;}
.x6{left:162.266667pt;}
.xd{left:167.226667pt;}
.x5{left:171.546667pt;}
.x3{left:233.306667pt;}
.x8{left:247.226667pt;}
.xa{left:315.106667pt;}
.x7{left:359.586667pt;}
.xc{left:366.466667pt;}
.xb{left:408.066667pt;}
.x2{left:696.133333pt;}
}




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