
    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_7ac6764c1b0779e8bcafea84.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_43464aa3a1fe5f96d6a39359.woff2')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_22d175745166d828177f5377.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_175bfe0296d427dd4a0cec12.woff2')format("woff");}.ff4{font-family:ff4;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.338400px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.092400px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010080px;}
.lsb{letter-spacing:0.028800px;}
.ls3{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.078000px;}
.ls0{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.202800px;}
.lse{letter-spacing:0.238800px;}
.ls10{letter-spacing:0.259200px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:9.849600px;}
.lsf{letter-spacing:62.460000px;}
.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:-18.000000px;}
.ws23{word-spacing:-16.560000px;}
.ws21{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.536000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.338000px;}
.wsd{word-spacing:-9.798000px;}
.ws1e{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.381600px;}
.ws22{word-spacing:-7.560000px;}
.ws24{word-spacing:-1.440000px;}
.ws1{word-spacing:-0.882000px;}
.ws1f{word-spacing:-0.864000px;}
.ws3{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.224640px;}
.ws20{word-spacing:0.000000px;}
.ws6{word-spacing:0.056640px;}
.ws7{word-spacing:0.672480px;}
.ws19{word-spacing:1.497600px;}
.ws1d{word-spacing:1.533600px;}
.ws1b{word-spacing:1.591200px;}
.ws1c{word-spacing:1.695600px;}
.ws14{word-spacing:1.696320px;}
.ws18{word-spacing:1.919520px;}
.ws17{word-spacing:1.941120px;}
.ws1a{word-spacing:2.050560px;}
.ws16{word-spacing:2.217600px;}
.ws15{word-spacing:2.683200px;}
.ws13{word-spacing:2.724480px;}
.ws11{word-spacing:13.888800px;}
.ws10{word-spacing:14.279040px;}
.ws12{word-spacing:14.457600px;}
.wsb{word-spacing:14.535360px;}
.wse{word-spacing:14.777760px;}
.wsf{word-spacing:14.926320px;}
.wsc{word-spacing:15.010560px;}
.ws9{word-spacing:15.095520px;}
._c{margin-left:-575.344800px;}
._4{margin-left:-2.142000px;}
._2{margin-left:-1.098000px;}
._0{width:1.062000px;}
._3{width:2.412000px;}
._7{width:3.528000px;}
._5{width:4.674000px;}
._8{width:10.811040px;}
._1{width:11.946000px;}
._a{width:13.095360px;}
._6{width:14.580000px;}
._b{width:15.864000px;}
._9{width:25.654800px;}
.fc6{color:transparent;}
.fc4{color:rgb(34,57,91);}
.fc3{color:rgb(25,91,49);}
.fc5{color:rgb(22,38,60);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:14.364000px;}
.yd8{bottom:26.964000px;}
.y35{bottom:32.652000px;}
.yd7{bottom:39.564000px;}
.y34{bottom:45.072000px;}
.yd6{bottom:52.164000px;}
.y33{bottom:57.672000px;}
.yd5{bottom:64.764000px;}
.y32{bottom:70.128000px;}
.yd4{bottom:77.364000px;}
.y31{bottom:82.728000px;}
.yd3{bottom:90.000000px;}
.y73{bottom:149.112000px;}
.yd2{bottom:154.110000px;}
.y71{bottom:163.185000px;}
.y72{bottom:165.315000px;}
.yd1{bottom:170.355000px;}
.y70{bottom:179.385000px;}
.yd0{bottom:186.555000px;}
.y86{bottom:198.330000px;}
.y30{bottom:200.700000px;}
.ycf{bottom:202.755000px;}
.y87{bottom:210.165000px;}
.yb3{bottom:211.680000px;}
.y9b{bottom:211.965000px;}
.y2f{bottom:216.900000px;}
.yce{bottom:218.955000px;}
.yb2{bottom:226.980000px;}
.y9a{bottom:227.265000px;}
.ycd{bottom:235.155000px;}
.yb1{bottom:242.280000px;}
.y99{bottom:242.565000px;}
.y6c{bottom:244.185000px;}
.ycc{bottom:251.355000px;}
.ya{bottom:254.490000px;}
.yb0{bottom:257.580000px;}
.y98{bottom:257.865000px;}
.ycb{bottom:267.555000px;}
.y9{bottom:270.690000px;}
.yaf{bottom:272.880000px;}
.y97{bottom:273.210000px;}
.y8{bottom:286.890000px;}
.yca{bottom:301.035000px;}
.yae{bottom:301.680000px;}
.y96{bottom:302.010000px;}
.y6f{bottom:308.490000px;}
.y7{bottom:319.290000px;}
.yad{bottom:321.480000px;}
.y95{bottom:321.810000px;}
.y6e{bottom:325.290000px;}
.yb5{bottom:327.780000px;}
.y6{bottom:335.490000px;}
.yc9{bottom:337.755000px;}
.y85{bottom:340.350000px;}
.y6d{bottom:343.290000px;}
.yc8{bottom:353.955000px;}
.y5{bottom:367.890000px;}
.yc7{bottom:370.155000px;}
.y6b{bottom:377.610000px;}
.y4{bottom:384.090000px;}
.yc6{bottom:386.355000px;}
.yc5{bottom:402.555000px;}
.y57{bottom:404.745000px;}
.y3{bottom:416.520000px;}
.yc4{bottom:418.755000px;}
.y56{bottom:420.945000px;}
.ya4{bottom:424.335000px;}
.y2{bottom:432.720000px;}
.yac{bottom:434.985000px;}
.y55{bottom:437.145000px;}
.ya3{bottom:439.635000px;}
.y1{bottom:448.920000px;}
.yab{bottom:450.285000px;}
.yc3{bottom:451.185000px;}
.y54{bottom:453.345000px;}
.ya2{bottom:454.935000px;}
.y80{bottom:459.390000px;}
.y79{bottom:463.245000px;}
.yaa{bottom:465.630000px;}
.y53{bottom:469.545000px;}
.ya1{bottom:470.265000px;}
.yb4{bottom:471.270000px;}
.ya9{bottom:480.930000px;}
.yc2{bottom:484.665000px;}
.ya0{bottom:485.565000px;}
.y52{bottom:485.745000px;}
.y7f{bottom:486.030000px;}
.y78{bottom:489.885000px;}
.ya8{bottom:496.230000px;}
.y9f{bottom:500.865000px;}
.y51{bottom:501.945000px;}
.y7e{bottom:502.230000px;}
.y77{bottom:506.130000px;}
.ya7{bottom:511.530000px;}
.y9e{bottom:516.165000px;}
.y50{bottom:518.145000px;}
.y7d{bottom:518.430000px;}
.y21{bottom:519.450000px;}
.yc1{bottom:521.385000px;}
.y76{bottom:522.330000px;}
.y84{bottom:528.630000px;}
.y4f{bottom:534.390000px;}
.y7c{bottom:534.630000px;}
.y20{bottom:535.650000px;}
.yc0{bottom:537.585000px;}
.y75{bottom:538.530000px;}
.ya6{bottom:540.330000px;}
.y83{bottom:544.830000px;}
.y9d{bottom:544.965000px;}
.y7b{bottom:550.830000px;}
.ybf{bottom:553.785000px;}
.y2e{bottom:553.890000px;}
.y74{bottom:554.730000px;}
.ya5{bottom:560.130000px;}
.y82{bottom:561.030000px;}
.y9c{bottom:564.765000px;}
.y4e{bottom:566.790000px;}
.y7a{bottom:567.030000px;}
.y1f{bottom:568.080000px;}
.ybe{bottom:569.985000px;}
.y2d{bottom:570.090000px;}
.y81{bottom:577.230000px;}
.y4d{bottom:582.990000px;}
.y1e{bottom:584.280000px;}
.ybd{bottom:586.185000px;}
.y2c{bottom:586.290000px;}
.y4c{bottom:599.190000px;}
.y1d{bottom:600.480000px;}
.ybc{bottom:602.385000px;}
.y2b{bottom:602.490000px;}
.y4b{bottom:615.390000px;}
.y1c{bottom:616.680000px;}
.ybb{bottom:618.585000px;}
.y2a{bottom:618.690000px;}
.y6a{bottom:631.470000px;}
.y4a{bottom:631.590000px;}
.y1b{bottom:632.880000px;}
.yba{bottom:634.785000px;}
.y29{bottom:634.890000px;}
.y88{bottom:636.150000px;}
.y69{bottom:647.670000px;}
.y49{bottom:647.790000px;}
.y1a{bottom:649.080000px;}
.yb9{bottom:650.985000px;}
.y28{bottom:651.090000px;}
.y68{bottom:663.870000px;}
.y48{bottom:663.990000px;}
.yb8{bottom:667.185000px;}
.y67{bottom:680.115000px;}
.y19{bottom:681.480000px;}
.y27{bottom:683.490000px;}
.y66{bottom:696.315000px;}
.y47{bottom:696.390000px;}
.y18{bottom:697.680000px;}
.y26{bottom:699.690000px;}
.yb7{bottom:700.710000px;}
.y46{bottom:712.590000px;}
.y17{bottom:713.880000px;}
.y25{bottom:715.890000px;}
.y94{bottom:718.890000px;}
.y65{bottom:728.715000px;}
.y45{bottom:728.790000px;}
.y16{bottom:730.080000px;}
.y24{bottom:732.090000px;}
.y93{bottom:735.090000px;}
.y64{bottom:744.915000px;}
.y44{bottom:744.990000px;}
.y15{bottom:746.280000px;}
.y23{bottom:748.290000px;}
.y63{bottom:761.115000px;}
.y43{bottom:761.190000px;}
.y14{bottom:762.480000px;}
.y92{bottom:767.490000px;}
.y42{bottom:777.420000px;}
.y22{bottom:781.770000px;}
.y91{bottom:783.690000px;}
.y62{bottom:793.515000px;}
.y41{bottom:793.620000px;}
.y13{bottom:795.960000px;}
.y61{bottom:809.715000px;}
.y90{bottom:816.090000px;}
.y60{bottom:825.915000px;}
.y40{bottom:826.020000px;}
.y8f{bottom:832.290000px;}
.y5f{bottom:842.115000px;}
.y3f{bottom:842.220000px;}
.y5e{bottom:858.315000px;}
.y3e{bottom:858.420000px;}
.y8e{bottom:864.720000px;}
.y5d{bottom:874.515000px;}
.y3d{bottom:874.620000px;}
.y8d{bottom:880.920000px;}
.yb6{bottom:890.715000px;}
.y3c{bottom:890.820000px;}
.y5c{bottom:906.915000px;}
.y3b{bottom:907.020000px;}
.y12{bottom:912.090000px;}
.y8c{bottom:913.320000px;}
.y5b{bottom:923.115000px;}
.y3a{bottom:923.220000px;}
.y11{bottom:928.290000px;}
.y8b{bottom:929.520000px;}
.y5a{bottom:939.345000px;}
.y39{bottom:939.420000px;}
.y10{bottom:944.490000px;}
.y8a{bottom:945.720000px;}
.y59{bottom:955.545000px;}
.yf{bottom:960.690000px;}
.y38{bottom:972.900000px;}
.ye{bottom:976.890000px;}
.y89{bottom:981.900000px;}
.y58{bottom:989.025000px;}
.yd{bottom:1009.545000px;}
.yc{bottom:1034.745000px;}
.y37{bottom:1072.950000px;}
.yb{bottom:1075.605000px;}
.y36{bottom:1149.735000px;}
.he{height:4.671563px;}
.hb{height:24.525703px;}
.hc{height:24.540469px;}
.h6{height:31.533047px;}
.h7{height:31.552031px;}
.h8{height:33.868828px;}
.hf{height:33.889219px;}
.hd{height:41.460117px;}
.h2{height:43.795898px;}
.h1{height:43.822266px;}
.ha{height:48.496641px;}
.h9{height:53.755312px;}
.h5{height:58.429688px;}
.h4{height:68.362734px;}
.h3{height:87.644531px;}
.h0{height:1170.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x2{left:66.527988px;}
.x8{left:67.787988px;}
.x3{left:69.155988px;}
.x12{left:80.855988px;}
.x20{left:86.687988px;}
.x11{left:88.955988px;}
.xc{left:91.367988px;}
.x7{left:93.275988px;}
.xe{left:97.631988px;}
.x10{left:99.035988px;}
.xf{left:109.295988px;}
.x39{left:113.615988px;}
.x1{left:118.763988px;}
.x2c{left:120.527988px;}
.x37{left:125.027988px;}
.x35{left:126.287988px;}
.x30{left:128.987988px;}
.x32{left:131.147988px;}
.x31{left:133.667988px;}
.x36{left:135.467988px;}
.x2e{left:139.067988px;}
.x38{left:141.227988px;}
.x2f{left:142.487988px;}
.x33{left:152.204988px;}
.x34{left:156.209988px;}
.x5{left:168.629988px;}
.x3a{left:175.529988px;}
.x2d{left:182.804988px;}
.x1e{left:187.739988px;}
.x3b{left:196.769988px;}
.x16{left:314.174988px;}
.x14{left:318.134988px;}
.x15{left:321.734988px;}
.x9{left:327.029988px;}
.x13{left:344.594988px;}
.x17{left:377.534988px;}
.x1d{left:397.079988px;}
.x28{left:462.809988px;}
.x21{left:464.909988px;}
.x24{left:466.709988px;}
.x2a{left:470.369988px;}
.x23{left:473.369988px;}
.x25{left:478.409988px;}
.x29{left:480.449988px;}
.x26{left:484.769988px;}
.x4{left:491.834988px;}
.x22{left:507.029988px;}
.xd{left:508.649988px;}
.x2b{left:513.569988px;}
.x27{left:540.209988px;}
.x1a{left:553.289988px;}
.xa{left:555.014988px;}
.x1b{left:561.029988px;}
.x19{left:562.649988px;}
.x1c{left:567.869988px;}
.x18{left:581.549988px;}
.xb{left:611.204988px;}
.x1f{left:651.599988px;}
.x6{left:692.024988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.300800pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.082133pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.008960pt;}
.lsb{letter-spacing:0.025600pt;}
.ls3{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls0{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.180267pt;}
.lse{letter-spacing:0.212267pt;}
.ls10{letter-spacing:0.230400pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:8.755200pt;}
.lsf{letter-spacing:55.520000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws23{word-spacing:-14.720000pt;}
.ws21{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.032000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.856000pt;}
.wsd{word-spacing:-8.709333pt;}
.ws1e{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.339200pt;}
.ws22{word-spacing:-6.720000pt;}
.ws24{word-spacing:-1.280000pt;}
.ws1{word-spacing:-0.784000pt;}
.ws1f{word-spacing:-0.768000pt;}
.ws3{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.199680pt;}
.ws20{word-spacing:0.000000pt;}
.ws6{word-spacing:0.050347pt;}
.ws7{word-spacing:0.597760pt;}
.ws19{word-spacing:1.331200pt;}
.ws1d{word-spacing:1.363200pt;}
.ws1b{word-spacing:1.414400pt;}
.ws1c{word-spacing:1.507200pt;}
.ws14{word-spacing:1.507840pt;}
.ws18{word-spacing:1.706240pt;}
.ws17{word-spacing:1.725440pt;}
.ws1a{word-spacing:1.822720pt;}
.ws16{word-spacing:1.971200pt;}
.ws15{word-spacing:2.385067pt;}
.ws13{word-spacing:2.421760pt;}
.ws11{word-spacing:12.345600pt;}
.ws10{word-spacing:12.692480pt;}
.ws12{word-spacing:12.851200pt;}
.wsb{word-spacing:12.920320pt;}
.wse{word-spacing:13.135787pt;}
.wsf{word-spacing:13.267840pt;}
.wsc{word-spacing:13.342720pt;}
.ws9{word-spacing:13.418240pt;}
._c{margin-left:-511.417600pt;}
._4{margin-left:-1.904000pt;}
._2{margin-left:-0.976000pt;}
._0{width:0.944000pt;}
._3{width:2.144000pt;}
._7{width:3.136000pt;}
._5{width:4.154667pt;}
._8{width:9.609813pt;}
._1{width:10.618667pt;}
._a{width:11.640320pt;}
._6{width:12.960000pt;}
._b{width:14.101333pt;}
._9{width:22.804267pt;}
.fsa{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:12.768000pt;}
.yd8{bottom:23.968000pt;}
.y35{bottom:29.024000pt;}
.yd7{bottom:35.168000pt;}
.y34{bottom:40.064000pt;}
.yd6{bottom:46.368000pt;}
.y33{bottom:51.264000pt;}
.yd5{bottom:57.568000pt;}
.y32{bottom:62.336000pt;}
.yd4{bottom:68.768000pt;}
.y31{bottom:73.536000pt;}
.yd3{bottom:80.000000pt;}
.y73{bottom:132.544000pt;}
.yd2{bottom:136.986667pt;}
.y71{bottom:145.053333pt;}
.y72{bottom:146.946667pt;}
.yd1{bottom:151.426667pt;}
.y70{bottom:159.453333pt;}
.yd0{bottom:165.826667pt;}
.y86{bottom:176.293333pt;}
.y30{bottom:178.400000pt;}
.ycf{bottom:180.226667pt;}
.y87{bottom:186.813333pt;}
.yb3{bottom:188.160000pt;}
.y9b{bottom:188.413333pt;}
.y2f{bottom:192.800000pt;}
.yce{bottom:194.626667pt;}
.yb2{bottom:201.760000pt;}
.y9a{bottom:202.013333pt;}
.ycd{bottom:209.026667pt;}
.yb1{bottom:215.360000pt;}
.y99{bottom:215.613333pt;}
.y6c{bottom:217.053333pt;}
.ycc{bottom:223.426667pt;}
.ya{bottom:226.213333pt;}
.yb0{bottom:228.960000pt;}
.y98{bottom:229.213333pt;}
.ycb{bottom:237.826667pt;}
.y9{bottom:240.613333pt;}
.yaf{bottom:242.560000pt;}
.y97{bottom:242.853333pt;}
.y8{bottom:255.013333pt;}
.yca{bottom:267.586667pt;}
.yae{bottom:268.160000pt;}
.y96{bottom:268.453333pt;}
.y6f{bottom:274.213333pt;}
.y7{bottom:283.813333pt;}
.yad{bottom:285.760000pt;}
.y95{bottom:286.053333pt;}
.y6e{bottom:289.146667pt;}
.yb5{bottom:291.360000pt;}
.y6{bottom:298.213333pt;}
.yc9{bottom:300.226667pt;}
.y85{bottom:302.533333pt;}
.y6d{bottom:305.146667pt;}
.yc8{bottom:314.626667pt;}
.y5{bottom:327.013333pt;}
.yc7{bottom:329.026667pt;}
.y6b{bottom:335.653333pt;}
.y4{bottom:341.413333pt;}
.yc6{bottom:343.426667pt;}
.yc5{bottom:357.826667pt;}
.y57{bottom:359.773333pt;}
.y3{bottom:370.240000pt;}
.yc4{bottom:372.226667pt;}
.y56{bottom:374.173333pt;}
.ya4{bottom:377.186667pt;}
.y2{bottom:384.640000pt;}
.yac{bottom:386.653333pt;}
.y55{bottom:388.573333pt;}
.ya3{bottom:390.786667pt;}
.y1{bottom:399.040000pt;}
.yab{bottom:400.253333pt;}
.yc3{bottom:401.053333pt;}
.y54{bottom:402.973333pt;}
.ya2{bottom:404.386667pt;}
.y80{bottom:408.346667pt;}
.y79{bottom:411.773333pt;}
.yaa{bottom:413.893333pt;}
.y53{bottom:417.373333pt;}
.ya1{bottom:418.013333pt;}
.yb4{bottom:418.906667pt;}
.ya9{bottom:427.493333pt;}
.yc2{bottom:430.813333pt;}
.ya0{bottom:431.613333pt;}
.y52{bottom:431.773333pt;}
.y7f{bottom:432.026667pt;}
.y78{bottom:435.453333pt;}
.ya8{bottom:441.093333pt;}
.y9f{bottom:445.213333pt;}
.y51{bottom:446.173333pt;}
.y7e{bottom:446.426667pt;}
.y77{bottom:449.893333pt;}
.ya7{bottom:454.693333pt;}
.y9e{bottom:458.813333pt;}
.y50{bottom:460.573333pt;}
.y7d{bottom:460.826667pt;}
.y21{bottom:461.733333pt;}
.yc1{bottom:463.453333pt;}
.y76{bottom:464.293333pt;}
.y84{bottom:469.893333pt;}
.y4f{bottom:475.013333pt;}
.y7c{bottom:475.226667pt;}
.y20{bottom:476.133333pt;}
.yc0{bottom:477.853333pt;}
.y75{bottom:478.693333pt;}
.ya6{bottom:480.293333pt;}
.y83{bottom:484.293333pt;}
.y9d{bottom:484.413333pt;}
.y7b{bottom:489.626667pt;}
.ybf{bottom:492.253333pt;}
.y2e{bottom:492.346667pt;}
.y74{bottom:493.093333pt;}
.ya5{bottom:497.893333pt;}
.y82{bottom:498.693333pt;}
.y9c{bottom:502.013333pt;}
.y4e{bottom:503.813333pt;}
.y7a{bottom:504.026667pt;}
.y1f{bottom:504.960000pt;}
.ybe{bottom:506.653333pt;}
.y2d{bottom:506.746667pt;}
.y81{bottom:513.093333pt;}
.y4d{bottom:518.213333pt;}
.y1e{bottom:519.360000pt;}
.ybd{bottom:521.053333pt;}
.y2c{bottom:521.146667pt;}
.y4c{bottom:532.613333pt;}
.y1d{bottom:533.760000pt;}
.ybc{bottom:535.453333pt;}
.y2b{bottom:535.546667pt;}
.y4b{bottom:547.013333pt;}
.y1c{bottom:548.160000pt;}
.ybb{bottom:549.853333pt;}
.y2a{bottom:549.946667pt;}
.y6a{bottom:561.306667pt;}
.y4a{bottom:561.413333pt;}
.y1b{bottom:562.560000pt;}
.yba{bottom:564.253333pt;}
.y29{bottom:564.346667pt;}
.y88{bottom:565.466667pt;}
.y69{bottom:575.706667pt;}
.y49{bottom:575.813333pt;}
.y1a{bottom:576.960000pt;}
.yb9{bottom:578.653333pt;}
.y28{bottom:578.746667pt;}
.y68{bottom:590.106667pt;}
.y48{bottom:590.213333pt;}
.yb8{bottom:593.053333pt;}
.y67{bottom:604.546667pt;}
.y19{bottom:605.760000pt;}
.y27{bottom:607.546667pt;}
.y66{bottom:618.946667pt;}
.y47{bottom:619.013333pt;}
.y18{bottom:620.160000pt;}
.y26{bottom:621.946667pt;}
.yb7{bottom:622.853333pt;}
.y46{bottom:633.413333pt;}
.y17{bottom:634.560000pt;}
.y25{bottom:636.346667pt;}
.y94{bottom:639.013333pt;}
.y65{bottom:647.746667pt;}
.y45{bottom:647.813333pt;}
.y16{bottom:648.960000pt;}
.y24{bottom:650.746667pt;}
.y93{bottom:653.413333pt;}
.y64{bottom:662.146667pt;}
.y44{bottom:662.213333pt;}
.y15{bottom:663.360000pt;}
.y23{bottom:665.146667pt;}
.y63{bottom:676.546667pt;}
.y43{bottom:676.613333pt;}
.y14{bottom:677.760000pt;}
.y92{bottom:682.213333pt;}
.y42{bottom:691.040000pt;}
.y22{bottom:694.906667pt;}
.y91{bottom:696.613333pt;}
.y62{bottom:705.346667pt;}
.y41{bottom:705.440000pt;}
.y13{bottom:707.520000pt;}
.y61{bottom:719.746667pt;}
.y90{bottom:725.413333pt;}
.y60{bottom:734.146667pt;}
.y40{bottom:734.240000pt;}
.y8f{bottom:739.813333pt;}
.y5f{bottom:748.546667pt;}
.y3f{bottom:748.640000pt;}
.y5e{bottom:762.946667pt;}
.y3e{bottom:763.040000pt;}
.y8e{bottom:768.640000pt;}
.y5d{bottom:777.346667pt;}
.y3d{bottom:777.440000pt;}
.y8d{bottom:783.040000pt;}
.yb6{bottom:791.746667pt;}
.y3c{bottom:791.840000pt;}
.y5c{bottom:806.146667pt;}
.y3b{bottom:806.240000pt;}
.y12{bottom:810.746667pt;}
.y8c{bottom:811.840000pt;}
.y5b{bottom:820.546667pt;}
.y3a{bottom:820.640000pt;}
.y11{bottom:825.146667pt;}
.y8b{bottom:826.240000pt;}
.y5a{bottom:834.973333pt;}
.y39{bottom:835.040000pt;}
.y10{bottom:839.546667pt;}
.y8a{bottom:840.640000pt;}
.y59{bottom:849.373333pt;}
.yf{bottom:853.946667pt;}
.y38{bottom:864.800000pt;}
.ye{bottom:868.346667pt;}
.y89{bottom:872.800000pt;}
.y58{bottom:879.133333pt;}
.yd{bottom:897.373333pt;}
.yc{bottom:919.773333pt;}
.y37{bottom:953.733333pt;}
.yb{bottom:956.093333pt;}
.y36{bottom:1021.986667pt;}
.he{height:4.152500pt;}
.hb{height:21.800625pt;}
.hc{height:21.813750pt;}
.h6{height:28.029375pt;}
.h7{height:28.046250pt;}
.h8{height:30.105625pt;}
.hf{height:30.123750pt;}
.hd{height:36.853437pt;}
.h2{height:38.929688pt;}
.h1{height:38.953125pt;}
.ha{height:43.108125pt;}
.h9{height:47.782500pt;}
.h5{height:51.937500pt;}
.h4{height:60.766875pt;}
.h3{height:77.906250pt;}
.h0{height:1040.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x2{left:59.135989pt;}
.x8{left:60.255989pt;}
.x3{left:61.471989pt;}
.x12{left:71.871989pt;}
.x20{left:77.055989pt;}
.x11{left:79.071989pt;}
.xc{left:81.215989pt;}
.x7{left:82.911989pt;}
.xe{left:86.783989pt;}
.x10{left:88.031989pt;}
.xf{left:97.151989pt;}
.x39{left:100.991989pt;}
.x1{left:105.567989pt;}
.x2c{left:107.135989pt;}
.x37{left:111.135989pt;}
.x35{left:112.255989pt;}
.x30{left:114.655989pt;}
.x32{left:116.575989pt;}
.x31{left:118.815989pt;}
.x36{left:120.415989pt;}
.x2e{left:123.615989pt;}
.x38{left:125.535989pt;}
.x2f{left:126.655989pt;}
.x33{left:135.293323pt;}
.x34{left:138.853323pt;}
.x5{left:149.893323pt;}
.x3a{left:156.026656pt;}
.x2d{left:162.493323pt;}
.x1e{left:166.879989pt;}
.x3b{left:174.906656pt;}
.x16{left:279.266656pt;}
.x14{left:282.786656pt;}
.x15{left:285.986656pt;}
.x9{left:290.693323pt;}
.x13{left:306.306656pt;}
.x17{left:335.586656pt;}
.x1d{left:352.959989pt;}
.x28{left:411.386656pt;}
.x21{left:413.253323pt;}
.x24{left:414.853323pt;}
.x2a{left:418.106656pt;}
.x23{left:420.773323pt;}
.x25{left:425.253323pt;}
.x29{left:427.066656pt;}
.x26{left:430.906656pt;}
.x4{left:437.186656pt;}
.x22{left:450.693323pt;}
.xd{left:452.133323pt;}
.x2b{left:456.506656pt;}
.x27{left:480.186656pt;}
.x1a{left:491.813323pt;}
.xa{left:493.346656pt;}
.x1b{left:498.693323pt;}
.x19{left:500.133323pt;}
.x1c{left:504.773323pt;}
.x18{left:516.933323pt;}
.xb{left:543.293323pt;}
.x1f{left:579.199989pt;}
.x6{left:615.133323pt;}
}




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