
    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_9bbaf40d987d53eeb3552af3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_be14e01ab76093e8c273326f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_a1be7a8742a253e5b301a359.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b01741fc400283aab75e7f0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3379f880a3823d0728c894a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_17627d6e35330e1c78962ce0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_7a74a129b1cd987c8da3a33e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_0afbb83dbfd943d6abd13a64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-2.520000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.092400px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.115200px;}
.lsa{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.233280px;}
.ls9{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.900000px;}
.lse{letter-spacing:1.620000px;}
.lsf{letter-spacing:16.650720px;}
.lsd{letter-spacing:46.170720px;}
.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;}
}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.354320px;}
.ws2{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.420000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
.ws1{word-spacing:3.841920px;}
._1{margin-left:-14.364000px;}
._5{margin-left:-12.204000px;}
._2{margin-left:-8.100000px;}
._16{margin-left:-6.948240px;}
._3{margin-left:-5.508000px;}
._12{margin-left:-4.315680px;}
._7{margin-left:-3.245760px;}
._4{margin-left:-2.052000px;}
._8{margin-left:-1.006080px;}
._6{width:1.008000px;}
._b{width:2.278800px;}
._e{width:3.525840px;}
._11{width:4.633200px;}
._a{width:6.186960px;}
._9{width:7.547760px;}
._10{width:9.473040px;}
._f{width:10.876320px;}
._15{width:12.266640px;}
._14{width:13.386240px;}
._13{width:15.982560px;}
._18{width:17.662320px;}
._0{width:18.850320px;}
._d{width:20.377200px;}
._c{width:21.453840px;}
._17{width:24.270480px;}
._19{width:176.633040px;}
.fc2{color:rgb(4,95,193);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs7{font-size:18.000000px;}
.fs8{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:70.236000px;}
.y2{bottom:91.656000px;}
.y98{bottom:117.036000px;}
.yb7{bottom:127.836000px;}
.y97{bottom:142.596000px;}
.yb6{bottom:153.210000px;}
.y75{bottom:153.570000px;}
.y3d{bottom:157.710000px;}
.y5a{bottom:161.670000px;}
.y25{bottom:163.470000px;}
.y96{bottom:168.510000px;}
.yb5{bottom:178.590000px;}
.y74{bottom:179.490000px;}
.y3c{bottom:183.090000px;}
.y59{bottom:187.050000px;}
.y24{bottom:188.850000px;}
.y95{bottom:194.070000px;}
.yb4{bottom:204.150000px;}
.y73{bottom:205.410000px;}
.y3b{bottom:208.470000px;}
.y58{bottom:212.430000px;}
.y23{bottom:214.410000px;}
.y94{bottom:221.610000px;}
.yb3{bottom:229.530000px;}
.y72{bottom:231.150000px;}
.y3a{bottom:235.110000px;}
.y57{bottom:237.990000px;}
.y22{bottom:239.790000px;}
.y93{bottom:247.710000px;}
.yb2{bottom:254.910000px;}
.y71{bottom:257.610000px;}
.y39{bottom:258.150000px;}
.y56{bottom:263.415000px;}
.y21{bottom:265.215000px;}
.y92{bottom:273.855000px;}
.yb1{bottom:280.515000px;}
.y38{bottom:283.395000px;}
.y70{bottom:283.575000px;}
.y55{bottom:289.515000px;}
.y20{bottom:290.775000px;}
.y91{bottom:299.235000px;}
.y37{bottom:300.675000px;}
.yb0{bottom:305.895000px;}
.y6f{bottom:309.495000px;}
.y1f{bottom:312.915000px;}
.y54{bottom:314.895000px;}
.y36{bottom:320.835000px;}
.y90{bottom:324.795000px;}
.yaf{bottom:331.275000px;}
.y1e{bottom:336.315000px;}
.y6e{bottom:336.495000px;}
.y53{bottom:340.275000px;}
.y8f{bottom:350.175000px;}
.y1d{bottom:354.315000px;}
.yae{bottom:357.915000px;}
.y6d{bottom:360.075000px;}
.y52{bottom:365.835000px;}
.y1c{bottom:372.135000px;}
.y8e{bottom:375.555000px;}
.y6c{bottom:380.775000px;}
.yad{bottom:384.375000px;}
.yd3{bottom:390.135000px;}
.y51{bottom:391.215000px;}
.yac{bottom:397.695000px;}
.y1b{bottom:398.235000px;}
.y8d{bottom:401.115000px;}
.y6b{bottom:406.155000px;}
.y50{bottom:416.595000px;}
.yd2{bottom:418.215000px;}
.yab{bottom:423.255000px;}
.y1a{bottom:424.335000px;}
.y8c{bottom:426.495000px;}
.y6a{bottom:431.535000px;}
.y4f{bottom:442.155000px;}
.yd1{bottom:443.775000px;}
.yaa{bottom:448.635000px;}
.y8b{bottom:449.535000px;}
.y19{bottom:449.715000px;}
.y69{bottom:461.775000px;}
.y4e{bottom:468.075000px;}
.yd0{bottom:469.155000px;}
.y8a{bottom:472.395000px;}
.ya9{bottom:474.195000px;}
.y18{bottom:475.095000px;}
.y68{bottom:487.155000px;}
.ycf{bottom:487.875000px;}
.y4d{bottom:493.635000px;}
.y89{bottom:495.435000px;}
.ya8{bottom:500.115000px;}
.y17{bottom:500.655000px;}
.yce{bottom:506.415000px;}
.y67{bottom:512.535000px;}
.y88{bottom:518.295000px;}
.y4c{bottom:519.015000px;}
.ycd{bottom:524.955000px;}
.ya7{bottom:525.675000px;}
.y16{bottom:526.035000px;}
.y87{bottom:541.365000px;}
.y66{bottom:542.805000px;}
.ycc{bottom:543.705000px;}
.y4b{bottom:544.425000px;}
.y15{bottom:551.445000px;}
.ya6{bottom:551.625000px;}
.ycb{bottom:562.245000px;}
.y86{bottom:564.225000px;}
.y65{bottom:568.185000px;}
.y4a{bottom:570.525000px;}
.y14{bottom:577.005000px;}
.ya5{bottom:577.185000px;}
.y85{bottom:587.265000px;}
.yca{bottom:587.805000px;}
.y64{bottom:593.745000px;}
.y49{bottom:595.905000px;}
.y13{bottom:602.925000px;}
.ya4{bottom:603.105000px;}
.y84{bottom:610.305000px;}
.yc9{bottom:613.185000px;}
.y48{bottom:621.465000px;}
.y35{bottom:623.265000px;}
.y63{bottom:623.805000px;}
.y12{bottom:628.485000px;}
.ya3{bottom:630.825000px;}
.y83{bottom:633.165000px;}
.yc8{bottom:638.565000px;}
.y47{bottom:646.845000px;}
.y34{bottom:648.645000px;}
.y11{bottom:653.865000px;}
.y62{bottom:654.405000px;}
.y82{bottom:656.205000px;}
.ya2{bottom:656.745000px;}
.yc7{bottom:664.125000px;}
.y46{bottom:672.225000px;}
.y33{bottom:674.025000px;}
.y81{bottom:679.065000px;}
.y10{bottom:679.245000px;}
.ya1{bottom:682.305000px;}
.yc6{bottom:682.665000px;}
.y61{bottom:683.205000px;}
.y45{bottom:697.785000px;}
.y32{bottom:699.585000px;}
.yc5{bottom:701.205000px;}
.y80{bottom:702.105000px;}
.yf{bottom:704.805000px;}
.ya0{bottom:707.685000px;}
.y44{bottom:723.705000px;}
.y31{bottom:724.965000px;}
.yc4{bottom:726.765000px;}
.ye{bottom:730.185000px;}
.y9f{bottom:733.785000px;}
.y7f{bottom:748.005000px;}
.y43{bottom:749.265000px;}
.y30{bottom:750.345000px;}
.yc3{bottom:752.145000px;}
.yd{bottom:755.565000px;}
.y9e{bottom:759.165000px;}
.y7e{bottom:771.045000px;}
.y42{bottom:775.185000px;}
.y2f{bottom:775.905000px;}
.yc2{bottom:777.525000px;}
.yc{bottom:781.125000px;}
.y9d{bottom:785.265000px;}
.yc1{bottom:796.290000px;}
.y7d{bottom:797.010000px;}
.y41{bottom:800.790000px;}
.yb{bottom:801.150000px;}
.y2e{bottom:801.330000px;}
.y9c{bottom:810.690000px;}
.yc0{bottom:814.830000px;}
.ya{bottom:822.210000px;}
.y7c{bottom:823.110000px;}
.y40{bottom:826.170000px;}
.y2d{bottom:826.710000px;}
.y60{bottom:827.430000px;}
.y9b{bottom:836.790000px;}
.ybf{bottom:840.390000px;}
.y9{bottom:845.250000px;}
.y7b{bottom:849.030000px;}
.y3f{bottom:851.550000px;}
.y2c{bottom:852.270000px;}
.y5f{bottom:852.810000px;}
.y9a{bottom:862.170000px;}
.ybe{bottom:865.770000px;}
.y8{bottom:866.310000px;}
.y7a{bottom:875.130000px;}
.y3e{bottom:877.110000px;}
.y2b{bottom:877.650000px;}
.y5e{bottom:878.190000px;}
.y99{bottom:882.510000px;}
.ybd{bottom:891.150000px;}
.y7{bottom:898.890000px;}
.y79{bottom:901.050000px;}
.y2a{bottom:903.030000px;}
.y5d{bottom:903.750000px;}
.ybc{bottom:916.710000px;}
.y6{bottom:922.290000px;}
.y78{bottom:927.150000px;}
.y29{bottom:928.590000px;}
.y5c{bottom:929.130000px;}
.ybb{bottom:935.250000px;}
.y77{bottom:953.070000px;}
.yba{bottom:953.790000px;}
.y28{bottom:953.970000px;}
.y5b{bottom:954.510000px;}
.y5{bottom:955.410000px;}
.y76{bottom:979.530000px;}
.y27{bottom:980.070000px;}
.yb9{bottom:982.230000px;}
.y4{bottom:994.110000px;}
.yb8{bottom:1004.010000px;}
.y26{bottom:1005.450000px;}
.y1{bottom:1023.450000px;}
.h10{height:4.165313px;}
.hb{height:13.016602px;}
.hd{height:17.181914px;}
.hf{height:21.867891px;}
.h5{height:31.768594px;}
.he{height:42.164648px;}
.h8{height:43.215117px;}
.h11{height:43.506914px;}
.h9{height:45.461953px;}
.ha{height:46.736719px;}
.h7{height:47.901094px;}
.h6{height:50.391562px;}
.h1{height:52.066406px;}
.hc{height:52.417969px;}
.h2{height:57.410156px;}
.h4{height:68.340586px;}
.h3{height:76.201172px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:74.339986px;}
.x1{left:87.839986px;}
.xb{left:101.375986px;}
.x3{left:148.355986px;}
.x6{left:187.949986px;}
.xd{left:207.929986px;}
.x4{left:247.889986px;}
.x7{left:250.409986px;}
.x8{left:286.949986px;}
.x5{left:294.194986px;}
.xc{left:455.834986px;}
.xa{left:681.944986px;}
.x2{left:733.289986px;}
.x9{left:739.409986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-2.240000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.082133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.102400pt;}
.lsa{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls9{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.440000pt;}
.lsf{letter-spacing:14.800640pt;}
.lsd{letter-spacing:41.040640pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.870507pt;}
.ws2{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
.ws1{word-spacing:3.415040pt;}
._1{margin-left:-12.768000pt;}
._5{margin-left:-10.848000pt;}
._2{margin-left:-7.200000pt;}
._16{margin-left:-6.176213pt;}
._3{margin-left:-4.896000pt;}
._12{margin-left:-3.836160pt;}
._7{margin-left:-2.885120pt;}
._4{margin-left:-1.824000pt;}
._8{margin-left:-0.894293pt;}
._6{width:0.896000pt;}
._b{width:2.025600pt;}
._e{width:3.134080pt;}
._11{width:4.118400pt;}
._a{width:5.499520pt;}
._9{width:6.709120pt;}
._10{width:8.420480pt;}
._f{width:9.667840pt;}
._15{width:10.903680pt;}
._14{width:11.898880pt;}
._13{width:14.206720pt;}
._18{width:15.699840pt;}
._0{width:16.755840pt;}
._d{width:18.113067pt;}
._c{width:19.070080pt;}
._17{width:21.573760pt;}
._19{width:157.007147pt;}
.fsa{font-size:5.120000pt;}
.fs7{font-size:16.000000pt;}
.fs8{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:62.432000pt;}
.y2{bottom:81.472000pt;}
.y98{bottom:104.032000pt;}
.yb7{bottom:113.632000pt;}
.y97{bottom:126.752000pt;}
.yb6{bottom:136.186667pt;}
.y75{bottom:136.506667pt;}
.y3d{bottom:140.186667pt;}
.y5a{bottom:143.706667pt;}
.y25{bottom:145.306667pt;}
.y96{bottom:149.786667pt;}
.yb5{bottom:158.746667pt;}
.y74{bottom:159.546667pt;}
.y3c{bottom:162.746667pt;}
.y59{bottom:166.266667pt;}
.y24{bottom:167.866667pt;}
.y95{bottom:172.506667pt;}
.yb4{bottom:181.466667pt;}
.y73{bottom:182.586667pt;}
.y3b{bottom:185.306667pt;}
.y58{bottom:188.826667pt;}
.y23{bottom:190.586667pt;}
.y94{bottom:196.986667pt;}
.yb3{bottom:204.026667pt;}
.y72{bottom:205.466667pt;}
.y3a{bottom:208.986667pt;}
.y57{bottom:211.546667pt;}
.y22{bottom:213.146667pt;}
.y93{bottom:220.186667pt;}
.yb2{bottom:226.586667pt;}
.y71{bottom:228.986667pt;}
.y39{bottom:229.466667pt;}
.y56{bottom:234.146667pt;}
.y21{bottom:235.746667pt;}
.y92{bottom:243.426667pt;}
.yb1{bottom:249.346667pt;}
.y38{bottom:251.906667pt;}
.y70{bottom:252.066667pt;}
.y55{bottom:257.346667pt;}
.y20{bottom:258.466667pt;}
.y91{bottom:265.986667pt;}
.y37{bottom:267.266667pt;}
.yb0{bottom:271.906667pt;}
.y6f{bottom:275.106667pt;}
.y1f{bottom:278.146667pt;}
.y54{bottom:279.906667pt;}
.y36{bottom:285.186667pt;}
.y90{bottom:288.706667pt;}
.yaf{bottom:294.466667pt;}
.y1e{bottom:298.946667pt;}
.y6e{bottom:299.106667pt;}
.y53{bottom:302.466667pt;}
.y8f{bottom:311.266667pt;}
.y1d{bottom:314.946667pt;}
.yae{bottom:318.146667pt;}
.y6d{bottom:320.066667pt;}
.y52{bottom:325.186667pt;}
.y1c{bottom:330.786667pt;}
.y8e{bottom:333.826667pt;}
.y6c{bottom:338.466667pt;}
.yad{bottom:341.666667pt;}
.yd3{bottom:346.786667pt;}
.y51{bottom:347.746667pt;}
.yac{bottom:353.506667pt;}
.y1b{bottom:353.986667pt;}
.y8d{bottom:356.546667pt;}
.y6b{bottom:361.026667pt;}
.y50{bottom:370.306667pt;}
.yd2{bottom:371.746667pt;}
.yab{bottom:376.226667pt;}
.y1a{bottom:377.186667pt;}
.y8c{bottom:379.106667pt;}
.y6a{bottom:383.586667pt;}
.y4f{bottom:393.026667pt;}
.yd1{bottom:394.466667pt;}
.yaa{bottom:398.786667pt;}
.y8b{bottom:399.586667pt;}
.y19{bottom:399.746667pt;}
.y69{bottom:410.466667pt;}
.y4e{bottom:416.066667pt;}
.yd0{bottom:417.026667pt;}
.y8a{bottom:419.906667pt;}
.ya9{bottom:421.506667pt;}
.y18{bottom:422.306667pt;}
.y68{bottom:433.026667pt;}
.ycf{bottom:433.666667pt;}
.y4d{bottom:438.786667pt;}
.y89{bottom:440.386667pt;}
.ya8{bottom:444.546667pt;}
.y17{bottom:445.026667pt;}
.yce{bottom:450.146667pt;}
.y67{bottom:455.586667pt;}
.y88{bottom:460.706667pt;}
.y4c{bottom:461.346667pt;}
.ycd{bottom:466.626667pt;}
.ya7{bottom:467.266667pt;}
.y16{bottom:467.586667pt;}
.y87{bottom:481.213333pt;}
.y66{bottom:482.493333pt;}
.ycc{bottom:483.293333pt;}
.y4b{bottom:483.933333pt;}
.y15{bottom:490.173333pt;}
.ya6{bottom:490.333333pt;}
.ycb{bottom:499.773333pt;}
.y86{bottom:501.533333pt;}
.y65{bottom:505.053333pt;}
.y4a{bottom:507.133333pt;}
.y14{bottom:512.893333pt;}
.ya5{bottom:513.053333pt;}
.y85{bottom:522.013333pt;}
.yca{bottom:522.493333pt;}
.y64{bottom:527.773333pt;}
.y49{bottom:529.693333pt;}
.y13{bottom:535.933333pt;}
.ya4{bottom:536.093333pt;}
.y84{bottom:542.493333pt;}
.yc9{bottom:545.053333pt;}
.y48{bottom:552.413333pt;}
.y35{bottom:554.013333pt;}
.y63{bottom:554.493333pt;}
.y12{bottom:558.653333pt;}
.ya3{bottom:560.733333pt;}
.y83{bottom:562.813333pt;}
.yc8{bottom:567.613333pt;}
.y47{bottom:574.973333pt;}
.y34{bottom:576.573333pt;}
.y11{bottom:581.213333pt;}
.y62{bottom:581.693333pt;}
.y82{bottom:583.293333pt;}
.ya2{bottom:583.773333pt;}
.yc7{bottom:590.333333pt;}
.y46{bottom:597.533333pt;}
.y33{bottom:599.133333pt;}
.y81{bottom:603.613333pt;}
.y10{bottom:603.773333pt;}
.ya1{bottom:606.493333pt;}
.yc6{bottom:606.813333pt;}
.y61{bottom:607.293333pt;}
.y45{bottom:620.253333pt;}
.y32{bottom:621.853333pt;}
.yc5{bottom:623.293333pt;}
.y80{bottom:624.093333pt;}
.yf{bottom:626.493333pt;}
.ya0{bottom:629.053333pt;}
.y44{bottom:643.293333pt;}
.y31{bottom:644.413333pt;}
.yc4{bottom:646.013333pt;}
.ye{bottom:649.053333pt;}
.y9f{bottom:652.253333pt;}
.y7f{bottom:664.893333pt;}
.y43{bottom:666.013333pt;}
.y30{bottom:666.973333pt;}
.yc3{bottom:668.573333pt;}
.yd{bottom:671.613333pt;}
.y9e{bottom:674.813333pt;}
.y7e{bottom:685.373333pt;}
.y42{bottom:689.053333pt;}
.y2f{bottom:689.693333pt;}
.yc2{bottom:691.133333pt;}
.yc{bottom:694.333333pt;}
.y9d{bottom:698.013333pt;}
.yc1{bottom:707.813333pt;}
.y7d{bottom:708.453333pt;}
.y41{bottom:711.813333pt;}
.yb{bottom:712.133333pt;}
.y2e{bottom:712.293333pt;}
.y9c{bottom:720.613333pt;}
.yc0{bottom:724.293333pt;}
.ya{bottom:730.853333pt;}
.y7c{bottom:731.653333pt;}
.y40{bottom:734.373333pt;}
.y2d{bottom:734.853333pt;}
.y60{bottom:735.493333pt;}
.y9b{bottom:743.813333pt;}
.ybf{bottom:747.013333pt;}
.y9{bottom:751.333333pt;}
.y7b{bottom:754.693333pt;}
.y3f{bottom:756.933333pt;}
.y2c{bottom:757.573333pt;}
.y5f{bottom:758.053333pt;}
.y9a{bottom:766.373333pt;}
.ybe{bottom:769.573333pt;}
.y8{bottom:770.053333pt;}
.y7a{bottom:777.893333pt;}
.y3e{bottom:779.653333pt;}
.y2b{bottom:780.133333pt;}
.y5e{bottom:780.613333pt;}
.y99{bottom:784.453333pt;}
.ybd{bottom:792.133333pt;}
.y7{bottom:799.013333pt;}
.y79{bottom:800.933333pt;}
.y2a{bottom:802.693333pt;}
.y5d{bottom:803.333333pt;}
.ybc{bottom:814.853333pt;}
.y6{bottom:819.813333pt;}
.y78{bottom:824.133333pt;}
.y29{bottom:825.413333pt;}
.y5c{bottom:825.893333pt;}
.ybb{bottom:831.333333pt;}
.y77{bottom:847.173333pt;}
.yba{bottom:847.813333pt;}
.y28{bottom:847.973333pt;}
.y5b{bottom:848.453333pt;}
.y5{bottom:849.253333pt;}
.y76{bottom:870.693333pt;}
.y27{bottom:871.173333pt;}
.yb9{bottom:873.093333pt;}
.y4{bottom:883.653333pt;}
.yb8{bottom:892.453333pt;}
.y26{bottom:893.733333pt;}
.y1{bottom:909.733333pt;}
.h10{height:3.702500pt;}
.hb{height:11.570312pt;}
.hd{height:15.272812pt;}
.hf{height:19.438125pt;}
.h5{height:28.238750pt;}
.he{height:37.479688pt;}
.h8{height:38.413438pt;}
.h11{height:38.672812pt;}
.h9{height:40.410625pt;}
.ha{height:41.543750pt;}
.h7{height:42.578750pt;}
.h6{height:44.792500pt;}
.h1{height:46.281250pt;}
.hc{height:46.593750pt;}
.h2{height:51.031250pt;}
.h4{height:60.747188pt;}
.h3{height:67.734375pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:66.079988pt;}
.x1{left:78.079988pt;}
.xb{left:90.111988pt;}
.x3{left:131.871988pt;}
.x6{left:167.066655pt;}
.xd{left:184.826655pt;}
.x4{left:220.346655pt;}
.x7{left:222.586655pt;}
.x8{left:255.066655pt;}
.x5{left:261.506655pt;}
.xc{left:405.186655pt;}
.xa{left:606.173321pt;}
.x2{left:651.813321pt;}
.x9{left:657.253321pt;}
}




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