
    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_713e8a3dd812a1efff2a0ed4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.804199;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_ae3f25d014e9f50a4dcb0296.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_c2bc24b3a09f8a2422b9b45f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_76a782f73fc38e1cb70dc194.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_83a033cddccd38990467666e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_acd2512d8b148a5011643202.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_40929698343dc5006ce105f0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_2fc24f7885e0690550595fb6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_33e8c171ebc74047ebb12de3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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:ffb;src:url('chunks/assets/font_b4c755d3eeace5ce4f9e7b9f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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:ffc;src:url('chunks/assets/font_ecaee99c5ef98714def1856b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.111600px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.440000px;}
.ls6{letter-spacing:17.280000px;}
.ls7{letter-spacing:53.280000px;}
.ls1{letter-spacing:54.000000px;}
.lsd{letter-spacing:57.024000px;}
.ls5{letter-spacing:139.104000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.442880px;}
._1{width:1.434240px;}
._8{width:2.597760px;}
._3{width:3.816000px;}
._4{width:5.040000px;}
._5{width:6.312000px;}
._9{width:8.160000px;}
._e{width:9.900000px;}
._17{width:10.982880px;}
._a{width:12.096000px;}
._c{width:13.826880px;}
._b{width:14.904000px;}
._d{width:16.502880px;}
._10{width:19.512000px;}
._16{width:21.144000px;}
._7{width:22.932000px;}
._6{width:24.912000px;}
._f{width:25.992000px;}
._13{width:28.008000px;}
._14{width:29.520000px;}
._18{width:31.152000px;}
._19{width:38.088000px;}
._1a{width:39.456000px;}
._12{width:44.316000px;}
._11{width:46.224000px;}
._2{width:53.604000px;}
._15{width:55.008000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc6{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y4f{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.380000px;}
.y44{bottom:7.560000px;}
.y54{bottom:7.920000px;}
.y47{bottom:9.000000px;}
.y69{bottom:9.180000px;}
.ya{bottom:10.800000px;}
.yb{bottom:11.520000px;}
.y6{bottom:12.600000px;}
.y6d{bottom:13.680000px;}
.y6a{bottom:15.480000px;}
.y61{bottom:17.280000px;}
.y5c{bottom:17.460000px;}
.y4d{bottom:19.260000px;}
.y58{bottom:19.440000px;}
.y42{bottom:21.420000px;}
.y2a{bottom:24.480000px;}
.y3{bottom:25.020000px;}
.y2b{bottom:25.560000px;}
.y29{bottom:27.540000px;}
.y2d{bottom:27.900000px;}
.y4b{bottom:31.140000px;}
.y5b{bottom:31.320000px;}
.y51{bottom:31.365000px;}
.y53{bottom:31.680000px;}
.y5{bottom:32.580000px;}
.y6c{bottom:37.440000px;}
.y67{bottom:41.220000px;}
.y7{bottom:42.120000px;}
.y60{bottom:43.020000px;}
.y65{bottom:43.050000px;}
.y57{bottom:43.200000px;}
.y49{bottom:45.360000px;}
.y2{bottom:52.740000px;}
.y5e{bottom:54.900000px;}
.y63{bottom:54.930000px;}
.y5a{bottom:55.080000px;}
.y4{bottom:56.340000px;}
.yc{bottom:57.600000px;}
.y48{bottom:69.300000px;}
.y9{bottom:73.800000px;}
.y46{bottom:83.520000px;}
.y32{bottom:131.940000px;}
.y40{bottom:149.796000px;}
.y31{bottom:155.910000px;}
.y3f{bottom:173.730000px;}
.y30{bottom:179.670000px;}
.y3e{bottom:197.490000px;}
.y2f{bottom:203.430000px;}
.y3d{bottom:221.250000px;}
.y2e{bottom:227.550000px;}
.y2c{bottom:243.930000px;}
.y3c{bottom:245.010000px;}
.y3b{bottom:268.950000px;}
.y28{bottom:288.210000px;}
.y3a{bottom:292.710000px;}
.y39{bottom:316.470000px;}
.y38{bottom:340.230000px;}
.y37{bottom:364.170000px;}
.y36{bottom:387.975000px;}
.y35{bottom:411.735000px;}
.y34{bottom:435.495000px;}
.y33{bottom:459.255000px;}
.y6b{bottom:476.535000px;}
.y27{bottom:511.095000px;}
.y26{bottom:534.855000px;}
.y66{bottom:537.555000px;}
.y25{bottom:558.795000px;}
.y68{bottom:578.235000px;}
.y24{bottom:582.555000px;}
.y62{bottom:606.135000px;}
.y23{bottom:606.315000px;}
.y22{bottom:630.075000px;}
.y64{bottom:650.445000px;}
.y21{bottom:654.045000px;}
.y20{bottom:677.805000px;}
.y5d{bottom:678.345000px;}
.y75{bottom:701.205000px;}
.y1f{bottom:701.565000px;}
.y5f{bottom:722.625000px;}
.y1e{bottom:725.325000px;}
.y1d{bottom:749.265000px;}
.y56{bottom:750.345000px;}
.y1c{bottom:773.025000px;}
.y59{bottom:794.805000px;}
.y1b{bottom:796.425000px;}
.y74{bottom:796.785000px;}
.y1a{bottom:820.545000px;}
.y52{bottom:822.525000px;}
.y19{bottom:844.305000px;}
.y55{bottom:847.185000px;}
.y18{bottom:868.245000px;}
.y50{bottom:871.665000px;}
.y73{bottom:891.645000px;}
.y17{bottom:892.005000px;}
.y16{bottom:915.810000px;}
.y45{bottom:920.130000px;}
.y15{bottom:939.570000px;}
.y4e{bottom:947.850000px;}
.y14{bottom:963.510000px;}
.y13{bottom:987.270000px;}
.y4a{bottom:996.270000px;}
.y12{bottom:1010.670000px;}
.y72{bottom:1011.030000px;}
.y11{bottom:1034.430000px;}
.y71{bottom:1034.790000px;}
.y41{bottom:1044.510000px;}
.y10{bottom:1058.730000px;}
.y43{bottom:1072.230000px;}
.yf{bottom:1082.130000px;}
.y70{bottom:1082.490000px;}
.ye{bottom:1105.890000px;}
.y6f{bottom:1106.250000px;}
.yd{bottom:1129.650000px;}
.y6e{bottom:1130.010000px;}
.y8{bottom:1150.560000px;}
.y1{bottom:1167.120000px;}
.h18{height:23.760000px;}
.h11{height:23.940000px;}
.h8{height:27.000000px;}
.h20{height:39.960000px;}
.h1c{height:43.560000px;}
.h1e{height:43.596000px;}
.h1a{height:43.740000px;}
.he{height:44.280000px;}
.h14{height:47.520000px;}
.h15{height:47.736000px;}
.h17{height:48.420000px;}
.hc{height:50.273438px;}
.hb{height:51.609375px;}
.h10{height:51.660000px;}
.h5{height:60.226875px;}
.h21{height:60.300000px;}
.h3{height:61.781484px;}
.h9{height:65.884219px;}
.h1f{height:67.680000px;}
.ha{height:70.628906px;}
.h7{height:70.664062px;}
.h1b{height:71.280000px;}
.h1d{height:71.316000px;}
.h19{height:71.460000px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h16{height:74.704922px;}
.h2{height:95.760000px;}
.h4{height:102.861562px;}
.h13{height:123.660000px;}
.h12{height:176.040000px;}
.hd{height:215.490000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:60.300000px;}
.w13{width:83.736000px;}
.w10{width:95.220000px;}
.wf{width:104.436000px;}
.w11{width:107.136000px;}
.w7{width:108.036000px;}
.w2{width:120.276000px;}
.w12{width:149.580000px;}
.we{width:158.430000px;}
.wb{width:224.130000px;}
.w9{width:231.690000px;}
.wa{width:232.230000px;}
.wc{width:234.030000px;}
.wd{width:308.235000px;}
.w8{width:310.215000px;}
.w6{width:310.350000px;}
.w3{width:712.410000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-21.960028px;}
.x1{left:-8.640031px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x39{left:9.540000px;}
.x35{left:10.620000px;}
.x31{left:14.445000px;}
.x27{left:15.840000px;}
.x25{left:17.325000px;}
.x23{left:18.540000px;}
.x26{left:20.340000px;}
.x28{left:21.780000px;}
.x2e{left:22.860000px;}
.x22{left:24.300000px;}
.x2c{left:25.920000px;}
.x29{left:28.305000px;}
.x33{left:30.600000px;}
.x3a{left:31.860000px;}
.x32{left:34.020000px;}
.x34{left:36.360000px;}
.x3b{left:37.800000px;}
.x1d{left:39.420000px;}
.x20{left:41.580000px;}
.x37{left:42.834000px;}
.xd{left:45.030000px;}
.x2b{left:47.520000px;}
.x1e{left:49.140000px;}
.x38{left:50.394000px;}
.x2a{left:52.200000px;}
.x2f{left:53.460000px;}
.x19{left:61.194000px;}
.x30{left:62.274000px;}
.x1a{left:64.974000px;}
.x2d{left:67.134000px;}
.x3c{left:70.020000px;}
.x36{left:72.900000px;}
.x3e{left:84.275987px;}
.xa{left:108.936000px;}
.x9{left:117.035987px;}
.x3{left:120.276000px;}
.x5{left:127.434000px;}
.xf{left:134.675987px;}
.x3d{left:138.275987px;}
.x15{left:170.129987px;}
.x4{left:177.519000px;}
.x24{left:259.590000px;}
.x18{left:265.215000px;}
.x12{left:269.174987px;}
.x16{left:276.699000px;}
.x6{left:300.999000px;}
.xb{left:302.259000px;}
.x14{left:322.454987px;}
.x11{left:337.934987px;}
.x13{left:340.814987px;}
.x1b{left:344.055000px;}
.xc{left:419.295000px;}
.x10{left:434.594987px;}
.x1f{left:449.205000px;}
.xe{left:527.325000px;}
.x21{left:545.145000px;}
.x17{left:572.865000px;}
.x1c{left:653.190000px;}
.x7{left:832.680000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.099200pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls6{letter-spacing:15.360000pt;}
.ls7{letter-spacing:47.360000pt;}
.ls1{letter-spacing:48.000000pt;}
.lsd{letter-spacing:50.688000pt;}
.ls5{letter-spacing:123.648000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.274880pt;}
._8{width:2.309120pt;}
._3{width:3.392000pt;}
._4{width:4.480000pt;}
._5{width:5.610667pt;}
._9{width:7.253333pt;}
._e{width:8.800000pt;}
._17{width:9.762560pt;}
._a{width:10.752000pt;}
._c{width:12.290560pt;}
._b{width:13.248000pt;}
._d{width:14.669227pt;}
._10{width:17.344000pt;}
._16{width:18.794667pt;}
._7{width:20.384000pt;}
._6{width:22.144000pt;}
._f{width:23.104000pt;}
._13{width:24.896000pt;}
._14{width:26.240000pt;}
._18{width:27.690667pt;}
._19{width:33.856000pt;}
._1a{width:35.072000pt;}
._12{width:39.392000pt;}
._11{width:41.088000pt;}
._2{width:47.648000pt;}
._15{width:48.896000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y4f{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.560000pt;}
.y44{bottom:6.720000pt;}
.y54{bottom:7.040000pt;}
.y47{bottom:8.000000pt;}
.y69{bottom:8.160000pt;}
.ya{bottom:9.600000pt;}
.yb{bottom:10.240000pt;}
.y6{bottom:11.200000pt;}
.y6d{bottom:12.160000pt;}
.y6a{bottom:13.760000pt;}
.y61{bottom:15.360000pt;}
.y5c{bottom:15.520000pt;}
.y4d{bottom:17.120000pt;}
.y58{bottom:17.280000pt;}
.y42{bottom:19.040000pt;}
.y2a{bottom:21.760000pt;}
.y3{bottom:22.240000pt;}
.y2b{bottom:22.720000pt;}
.y29{bottom:24.480000pt;}
.y2d{bottom:24.800000pt;}
.y4b{bottom:27.680000pt;}
.y5b{bottom:27.840000pt;}
.y51{bottom:27.880000pt;}
.y53{bottom:28.160000pt;}
.y5{bottom:28.960000pt;}
.y6c{bottom:33.280000pt;}
.y67{bottom:36.640000pt;}
.y7{bottom:37.440000pt;}
.y60{bottom:38.240000pt;}
.y65{bottom:38.266667pt;}
.y57{bottom:38.400000pt;}
.y49{bottom:40.320000pt;}
.y2{bottom:46.880000pt;}
.y5e{bottom:48.800000pt;}
.y63{bottom:48.826667pt;}
.y5a{bottom:48.960000pt;}
.y4{bottom:50.080000pt;}
.yc{bottom:51.200000pt;}
.y48{bottom:61.600000pt;}
.y9{bottom:65.600000pt;}
.y46{bottom:74.240000pt;}
.y32{bottom:117.280000pt;}
.y40{bottom:133.152000pt;}
.y31{bottom:138.586667pt;}
.y3f{bottom:154.426667pt;}
.y30{bottom:159.706667pt;}
.y3e{bottom:175.546667pt;}
.y2f{bottom:180.826667pt;}
.y3d{bottom:196.666667pt;}
.y2e{bottom:202.266667pt;}
.y2c{bottom:216.826667pt;}
.y3c{bottom:217.786667pt;}
.y3b{bottom:239.066667pt;}
.y28{bottom:256.186667pt;}
.y3a{bottom:260.186667pt;}
.y39{bottom:281.306667pt;}
.y38{bottom:302.426667pt;}
.y37{bottom:323.706667pt;}
.y36{bottom:344.866667pt;}
.y35{bottom:365.986667pt;}
.y34{bottom:387.106667pt;}
.y33{bottom:408.226667pt;}
.y6b{bottom:423.586667pt;}
.y27{bottom:454.306667pt;}
.y26{bottom:475.426667pt;}
.y66{bottom:477.826667pt;}
.y25{bottom:496.706667pt;}
.y68{bottom:513.986667pt;}
.y24{bottom:517.826667pt;}
.y62{bottom:538.786667pt;}
.y23{bottom:538.946667pt;}
.y22{bottom:560.066667pt;}
.y64{bottom:578.173333pt;}
.y21{bottom:581.373333pt;}
.y20{bottom:602.493333pt;}
.y5d{bottom:602.973333pt;}
.y75{bottom:623.293333pt;}
.y1f{bottom:623.613333pt;}
.y5f{bottom:642.333333pt;}
.y1e{bottom:644.733333pt;}
.y1d{bottom:666.013333pt;}
.y56{bottom:666.973333pt;}
.y1c{bottom:687.133333pt;}
.y59{bottom:706.493333pt;}
.y1b{bottom:707.933333pt;}
.y74{bottom:708.253333pt;}
.y1a{bottom:729.373333pt;}
.y52{bottom:731.133333pt;}
.y19{bottom:750.493333pt;}
.y55{bottom:753.053333pt;}
.y18{bottom:771.773333pt;}
.y50{bottom:774.813333pt;}
.y73{bottom:792.573333pt;}
.y17{bottom:792.893333pt;}
.y16{bottom:814.053333pt;}
.y45{bottom:817.893333pt;}
.y15{bottom:835.173333pt;}
.y4e{bottom:842.533333pt;}
.y14{bottom:856.453333pt;}
.y13{bottom:877.573333pt;}
.y4a{bottom:885.573333pt;}
.y12{bottom:898.373333pt;}
.y72{bottom:898.693333pt;}
.y11{bottom:919.493333pt;}
.y71{bottom:919.813333pt;}
.y41{bottom:928.453333pt;}
.y10{bottom:941.093333pt;}
.y43{bottom:953.093333pt;}
.yf{bottom:961.893333pt;}
.y70{bottom:962.213333pt;}
.ye{bottom:983.013333pt;}
.y6f{bottom:983.333333pt;}
.yd{bottom:1004.133333pt;}
.y6e{bottom:1004.453333pt;}
.y8{bottom:1022.720000pt;}
.y1{bottom:1037.440000pt;}
.h18{height:21.120000pt;}
.h11{height:21.280000pt;}
.h8{height:24.000000pt;}
.h20{height:35.520000pt;}
.h1c{height:38.720000pt;}
.h1e{height:38.752000pt;}
.h1a{height:38.880000pt;}
.he{height:39.360000pt;}
.h14{height:42.240000pt;}
.h15{height:42.432000pt;}
.h17{height:43.040000pt;}
.hc{height:44.687500pt;}
.hb{height:45.875000pt;}
.h10{height:45.920000pt;}
.h5{height:53.535000pt;}
.h21{height:53.600000pt;}
.h3{height:54.916875pt;}
.h9{height:58.563750pt;}
.h1f{height:60.160000pt;}
.ha{height:62.781250pt;}
.h7{height:62.812500pt;}
.h1b{height:63.360000pt;}
.h1d{height:63.392000pt;}
.h19{height:63.520000pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h16{height:66.404375pt;}
.h2{height:85.120000pt;}
.h4{height:91.432500pt;}
.h13{height:109.920000pt;}
.h12{height:156.480000pt;}
.hd{height:191.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:53.600000pt;}
.w13{width:74.432000pt;}
.w10{width:84.640000pt;}
.wf{width:92.832000pt;}
.w11{width:95.232000pt;}
.w7{width:96.032000pt;}
.w2{width:106.912000pt;}
.w12{width:132.960000pt;}
.we{width:140.826667pt;}
.wb{width:199.226667pt;}
.w9{width:205.946667pt;}
.wa{width:206.426667pt;}
.wc{width:208.026667pt;}
.wd{width:273.986667pt;}
.w8{width:275.746667pt;}
.w6{width:275.866667pt;}
.w3{width:633.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-19.520025pt;}
.x1{left:-7.680028pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x39{left:8.480000pt;}
.x35{left:9.440000pt;}
.x31{left:12.840000pt;}
.x27{left:14.080000pt;}
.x25{left:15.400000pt;}
.x23{left:16.480000pt;}
.x26{left:18.080000pt;}
.x28{left:19.360000pt;}
.x2e{left:20.320000pt;}
.x22{left:21.600000pt;}
.x2c{left:23.040000pt;}
.x29{left:25.160000pt;}
.x33{left:27.200000pt;}
.x3a{left:28.320000pt;}
.x32{left:30.240000pt;}
.x34{left:32.320000pt;}
.x3b{left:33.600000pt;}
.x1d{left:35.040000pt;}
.x20{left:36.960000pt;}
.x37{left:38.074667pt;}
.xd{left:40.026667pt;}
.x2b{left:42.240000pt;}
.x1e{left:43.680000pt;}
.x38{left:44.794667pt;}
.x2a{left:46.400000pt;}
.x2f{left:47.520000pt;}
.x19{left:54.394667pt;}
.x30{left:55.354667pt;}
.x1a{left:57.754667pt;}
.x2d{left:59.674667pt;}
.x3c{left:62.240000pt;}
.x36{left:64.800000pt;}
.x3e{left:74.911988pt;}
.xa{left:96.832000pt;}
.x9{left:104.031988pt;}
.x3{left:106.912000pt;}
.x5{left:113.274667pt;}
.xf{left:119.711988pt;}
.x3d{left:122.911988pt;}
.x15{left:151.226655pt;}
.x4{left:157.794667pt;}
.x24{left:230.746667pt;}
.x18{left:235.746667pt;}
.x12{left:239.266655pt;}
.x16{left:245.954667pt;}
.x6{left:267.554667pt;}
.xb{left:268.674667pt;}
.x14{left:286.626655pt;}
.x11{left:300.386655pt;}
.x13{left:302.946655pt;}
.x1b{left:305.826667pt;}
.xc{left:372.706667pt;}
.x10{left:386.306655pt;}
.x1f{left:399.293333pt;}
.xe{left:468.733333pt;}
.x21{left:484.573333pt;}
.x17{left:509.213333pt;}
.x1c{left:580.613333pt;}
.x7{left:740.160000pt;}
}




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