
    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_51e64a120b91366fed968243.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4f3ebc25b6cc1ce69b62370.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_67953d2b61f9ee1130d375d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_2fabbe5ad9df21043ada11d0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3b6888c4aab3e7f7be0fdf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3416e83b5722a45d87655d25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.253200px;}
.ls9{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:3.060000px;}
.lsd{letter-spacing:16.865280px;}
.lsa{letter-spacing:39.881280px;}
.lsb{letter-spacing:39.905280px;}
.ls5{letter-spacing:199.416000px;}
.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;}
}
.ws8{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws7{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-12.960000px;}
._18{margin-left:-4.927680px;}
._3{margin-left:-3.672000px;}
._4{margin-left:-2.529360px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._17{width:2.279520px;}
._9{width:3.294000px;}
._6{width:4.590000px;}
._5{width:5.616000px;}
._e{width:6.875760px;}
._8{width:7.992000px;}
._7{width:9.018000px;}
._f{width:10.044000px;}
._11{width:11.394000px;}
._14{width:13.181760px;}
._15{width:14.904000px;}
._d{width:16.956000px;}
._c{width:18.900000px;}
._19{width:19.907280px;}
._12{width:20.931840px;}
._1b{width:22.089600px;}
._13{width:23.117760px;}
._21{width:24.379920px;}
._1c{width:25.701120px;}
._1d{width:26.760960px;}
._16{width:27.847680px;}
._2{width:28.920000px;}
._10{width:30.672000px;}
._1a{width:32.855040px;}
._1f{width:35.570880px;}
._20{width:36.630720px;}
._b{width:38.938320px;}
._a{width:40.068000px;}
._23{width:63.789120px;}
._22{width:64.915200px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:2.880000px;}
.y2{bottom:5.400000px;}
.y3f{bottom:7.380000px;}
.y3c{bottom:18.360000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y3b{bottom:34.020000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y3a{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y39{bottom:65.025000px;}
.y38{bottom:80.505000px;}
.y37{bottom:96.165000px;}
.y84{bottom:110.376000px;}
.y36{bottom:111.645000px;}
.y83{bottom:114.876000px;}
.y82{bottom:124.236000px;}
.y35{bottom:127.125000px;}
.y8e{bottom:128.736000px;}
.y45{bottom:132.696000px;}
.y81{bottom:138.096000px;}
.y8d{bottom:138.996000px;}
.y80{bottom:142.596000px;}
.y34{bottom:142.605000px;}
.y95{bottom:149.076000px;}
.y94{bottom:151.770000px;}
.y7f{bottom:151.950000px;}
.y44{bottom:154.470000px;}
.y93{bottom:156.270000px;}
.y33{bottom:158.265000px;}
.y7e{bottom:165.630000px;}
.y7d{bottom:170.130000px;}
.y8c{bottom:170.850000px;}
.y32{bottom:173.745000px;}
.y43{bottom:176.250000px;}
.y7c{bottom:179.490000px;}
.y92{bottom:183.990000px;}
.y31{bottom:189.225000px;}
.y8b{bottom:192.630000px;}
.y7b{bottom:193.350000px;}
.y91{bottom:194.250000px;}
.y7a{bottom:197.850000px;}
.y42{bottom:198.030000px;}
.y30{bottom:204.705000px;}
.y79{bottom:207.210000px;}
.y9b{bottom:211.710000px;}
.y8a{bottom:214.410000px;}
.y41{bottom:219.990000px;}
.y2f{bottom:220.365000px;}
.y78{bottom:221.070000px;}
.y9a{bottom:221.970000px;}
.y77{bottom:225.570000px;}
.y76{bottom:234.930000px;}
.y2e{bottom:235.845000px;}
.y89{bottom:236.370000px;}
.y40{bottom:241.770000px;}
.y90{bottom:242.310000px;}
.y75{bottom:248.610000px;}
.y2d{bottom:251.325000px;}
.y74{bottom:253.110000px;}
.y3e{bottom:257.250000px;}
.y88{bottom:258.150000px;}
.y73{bottom:262.470000px;}
.y2c{bottom:266.805000px;}
.y72{bottom:276.330000px;}
.y87{bottom:279.930000px;}
.y71{bottom:280.830000px;}
.y14{bottom:281.730000px;}
.y2b{bottom:282.465000px;}
.y99{bottom:285.870000px;}
.y70{bottom:291.090000px;}
.y2a{bottom:297.945000px;}
.y86{bottom:301.710000px;}
.y29{bottom:313.425000px;}
.y85{bottom:323.670000px;}
.y28{bottom:328.935000px;}
.y27{bottom:344.595000px;}
.y6e{bottom:345.495000px;}
.y6f{bottom:351.435000px;}
.y26{bottom:360.075000px;}
.y6d{bottom:367.275000px;}
.y25{bottom:375.555000px;}
.y6c{bottom:389.055000px;}
.y24{bottom:391.035000px;}
.y23{bottom:406.695000px;}
.y6b{bottom:410.835000px;}
.y22{bottom:422.175000px;}
.y6a{bottom:432.795000px;}
.y21{bottom:437.655000px;}
.y8f{bottom:438.735000px;}
.y20{bottom:453.135000px;}
.y68{bottom:454.575000px;}
.y69{bottom:460.515000px;}
.y1f{bottom:468.795000px;}
.y67{bottom:476.355000px;}
.y1e{bottom:484.275000px;}
.y66{bottom:498.135000px;}
.y1d{bottom:499.755000px;}
.y98{bottom:504.075000px;}
.y1c{bottom:515.235000px;}
.y65{bottom:520.095000px;}
.y1b{bottom:530.715000px;}
.y64{bottom:541.875000px;}
.y1a{bottom:546.375000px;}
.y19{bottom:561.855000px;}
.y62{bottom:563.655000px;}
.y63{bottom:569.595000px;}
.y18{bottom:577.335000px;}
.y61{bottom:585.435000px;}
.y17{bottom:592.860000px;}
.y5f{bottom:607.245000px;}
.y16{bottom:608.520000px;}
.y60{bottom:613.185000px;}
.y15{bottom:624.000000px;}
.y5e{bottom:629.205000px;}
.y5d{bottom:650.985000px;}
.y97{bottom:656.925000px;}
.y5c{bottom:672.765000px;}
.y5a{bottom:694.545000px;}
.y5b{bottom:700.485000px;}
.y59{bottom:716.505000px;}
.y96{bottom:722.445000px;}
.y58{bottom:738.285000px;}
.y57{bottom:760.065000px;}
.y56{bottom:781.845000px;}
.y55{bottom:803.625000px;}
.y53{bottom:825.585000px;}
.y54{bottom:831.525000px;}
.y52{bottom:847.365000px;}
.y51{bottom:869.145000px;}
.y50{bottom:890.970000px;}
.y4f{bottom:912.930000px;}
.y13{bottom:921.930000px;}
.y4e{bottom:934.710000px;}
.y12{bottom:941.010000px;}
.y4d{bottom:956.490000px;}
.y11{bottom:959.910000px;}
.y4c{bottom:978.270000px;}
.y10{bottom:978.990000px;}
.yf{bottom:997.890000px;}
.y4a{bottom:1000.050000px;}
.y4b{bottom:1005.990000px;}
.ye{bottom:1017.330000px;}
.y49{bottom:1022.010000px;}
.yd{bottom:1039.830000px;}
.y48{bottom:1043.790000px;}
.y9c{bottom:1049.730000px;}
.yc{bottom:1062.150000px;}
.y47{bottom:1065.570000px;}
.yb{bottom:1084.650000px;}
.y46{bottom:1087.350000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h11{height:22.015547px;}
.he{height:24.480000px;}
.h10{height:29.158594px;}
.h13{height:33.683203px;}
.hc{height:37.705078px;}
.hb{height:38.100586px;}
.h7{height:39.147891px;}
.h12{height:39.760312px;}
.h3{height:42.164648px;}
.hd{height:44.507812px;}
.h9{height:46.251562px;}
.h4{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.hf{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.ha{height:636.585000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x13{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.xb{left:109.655987px;}
.x10{left:112.355987px;}
.x2f{left:116.315987px;}
.xc{left:117.935987px;}
.xa{left:120.995987px;}
.x30{left:129.275987px;}
.x7{left:131.805000px;}
.x26{left:135.035987px;}
.x2b{left:157.529973px;}
.x17{left:162.029987px;}
.x2c{left:167.969987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x28{left:189.029987px;}
.x24{left:194.249973px;}
.x25{left:199.469987px;}
.x20{left:204.329973px;}
.x21{left:209.549987px;}
.x27{left:216.029987px;}
.x1a{left:249.689973px;}
.x1b{left:254.909987px;}
.x15{left:284.114973px;}
.x16{left:289.334987px;}
.x33{left:292.034973px;}
.x22{left:295.274987px;}
.x11{left:296.894987px;}
.x34{left:302.474987px;}
.x29{left:309.854973px;}
.x2a{left:315.074987px;}
.x23{left:324.074987px;}
.xf{left:334.334987px;}
.xd{left:339.554987px;}
.x2d{left:344.954973px;}
.x2e{left:355.394987px;}
.x37{left:360.794973px;}
.x38{left:371.234987px;}
.x1e{left:372.854973px;}
.x1f{left:378.074987px;}
.x14{left:391.575000px;}
.xe{left:446.474987px;}
.x31{left:498.524973px;}
.x9{left:500.144987px;}
.x32{left:508.964987px;}
.x1c{left:543.164973px;}
.x1d{left:548.384987px;}
.x5{left:554.685000px;}
.x35{left:562.604973px;}
.x12{left:567.105000px;}
.x36{left:573.044987px;}
.x39{left:609.764973px;}
.x3a{left:620.204987px;}
.x18{left:752.369973px;}
.x19{left:757.589987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.225067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.720000pt;}
.lsd{letter-spacing:14.991360pt;}
.lsa{letter-spacing:35.450027pt;}
.lsb{letter-spacing:35.471360pt;}
.ls5{letter-spacing:177.258667pt;}
.ws8{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-11.520000pt;}
._18{margin-left:-4.380160pt;}
._3{margin-left:-3.264000pt;}
._4{margin-left:-2.248320pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._17{width:2.026240pt;}
._9{width:2.928000pt;}
._6{width:4.080000pt;}
._5{width:4.992000pt;}
._e{width:6.111787pt;}
._8{width:7.104000pt;}
._7{width:8.016000pt;}
._f{width:8.928000pt;}
._11{width:10.128000pt;}
._14{width:11.717120pt;}
._15{width:13.248000pt;}
._d{width:15.072000pt;}
._c{width:16.800000pt;}
._19{width:17.695360pt;}
._12{width:18.606080pt;}
._1b{width:19.635200pt;}
._13{width:20.549120pt;}
._21{width:21.671040pt;}
._1c{width:22.845440pt;}
._1d{width:23.787520pt;}
._16{width:24.753493pt;}
._2{width:25.706667pt;}
._10{width:27.264000pt;}
._1a{width:29.204480pt;}
._1f{width:31.618560pt;}
._20{width:32.560640pt;}
._b{width:34.611840pt;}
._a{width:35.616000pt;}
._23{width:56.701440pt;}
._22{width:57.702400pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.560000pt;}
.y2{bottom:4.800000pt;}
.y3f{bottom:6.560000pt;}
.y3c{bottom:16.320000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y3b{bottom:30.240000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y3a{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y39{bottom:57.800000pt;}
.y38{bottom:71.560000pt;}
.y37{bottom:85.480000pt;}
.y84{bottom:98.112000pt;}
.y36{bottom:99.240000pt;}
.y83{bottom:102.112000pt;}
.y82{bottom:110.432000pt;}
.y35{bottom:113.000000pt;}
.y8e{bottom:114.432000pt;}
.y45{bottom:117.952000pt;}
.y81{bottom:122.752000pt;}
.y8d{bottom:123.552000pt;}
.y80{bottom:126.752000pt;}
.y34{bottom:126.760000pt;}
.y95{bottom:132.512000pt;}
.y94{bottom:134.906667pt;}
.y7f{bottom:135.066667pt;}
.y44{bottom:137.306667pt;}
.y93{bottom:138.906667pt;}
.y33{bottom:140.680000pt;}
.y7e{bottom:147.226667pt;}
.y7d{bottom:151.226667pt;}
.y8c{bottom:151.866667pt;}
.y32{bottom:154.440000pt;}
.y43{bottom:156.666667pt;}
.y7c{bottom:159.546667pt;}
.y92{bottom:163.546667pt;}
.y31{bottom:168.200000pt;}
.y8b{bottom:171.226667pt;}
.y7b{bottom:171.866667pt;}
.y91{bottom:172.666667pt;}
.y7a{bottom:175.866667pt;}
.y42{bottom:176.026667pt;}
.y30{bottom:181.960000pt;}
.y79{bottom:184.186667pt;}
.y9b{bottom:188.186667pt;}
.y8a{bottom:190.586667pt;}
.y41{bottom:195.546667pt;}
.y2f{bottom:195.880000pt;}
.y78{bottom:196.506667pt;}
.y9a{bottom:197.306667pt;}
.y77{bottom:200.506667pt;}
.y76{bottom:208.826667pt;}
.y2e{bottom:209.640000pt;}
.y89{bottom:210.106667pt;}
.y40{bottom:214.906667pt;}
.y90{bottom:215.386667pt;}
.y75{bottom:220.986667pt;}
.y2d{bottom:223.400000pt;}
.y74{bottom:224.986667pt;}
.y3e{bottom:228.666667pt;}
.y88{bottom:229.466667pt;}
.y73{bottom:233.306667pt;}
.y2c{bottom:237.160000pt;}
.y72{bottom:245.626667pt;}
.y87{bottom:248.826667pt;}
.y71{bottom:249.626667pt;}
.y14{bottom:250.426667pt;}
.y2b{bottom:251.080000pt;}
.y99{bottom:254.106667pt;}
.y70{bottom:258.746667pt;}
.y2a{bottom:264.840000pt;}
.y86{bottom:268.186667pt;}
.y29{bottom:278.600000pt;}
.y85{bottom:287.706667pt;}
.y28{bottom:292.386667pt;}
.y27{bottom:306.306667pt;}
.y6e{bottom:307.106667pt;}
.y6f{bottom:312.386667pt;}
.y26{bottom:320.066667pt;}
.y6d{bottom:326.466667pt;}
.y25{bottom:333.826667pt;}
.y6c{bottom:345.826667pt;}
.y24{bottom:347.586667pt;}
.y23{bottom:361.506667pt;}
.y6b{bottom:365.186667pt;}
.y22{bottom:375.266667pt;}
.y6a{bottom:384.706667pt;}
.y21{bottom:389.026667pt;}
.y8f{bottom:389.986667pt;}
.y20{bottom:402.786667pt;}
.y68{bottom:404.066667pt;}
.y69{bottom:409.346667pt;}
.y1f{bottom:416.706667pt;}
.y67{bottom:423.426667pt;}
.y1e{bottom:430.466667pt;}
.y66{bottom:442.786667pt;}
.y1d{bottom:444.226667pt;}
.y98{bottom:448.066667pt;}
.y1c{bottom:457.986667pt;}
.y65{bottom:462.306667pt;}
.y1b{bottom:471.746667pt;}
.y64{bottom:481.666667pt;}
.y1a{bottom:485.666667pt;}
.y19{bottom:499.426667pt;}
.y62{bottom:501.026667pt;}
.y63{bottom:506.306667pt;}
.y18{bottom:513.186667pt;}
.y61{bottom:520.386667pt;}
.y17{bottom:526.986667pt;}
.y5f{bottom:539.773333pt;}
.y16{bottom:540.906667pt;}
.y60{bottom:545.053333pt;}
.y15{bottom:554.666667pt;}
.y5e{bottom:559.293333pt;}
.y5d{bottom:578.653333pt;}
.y97{bottom:583.933333pt;}
.y5c{bottom:598.013333pt;}
.y5a{bottom:617.373333pt;}
.y5b{bottom:622.653333pt;}
.y59{bottom:636.893333pt;}
.y96{bottom:642.173333pt;}
.y58{bottom:656.253333pt;}
.y57{bottom:675.613333pt;}
.y56{bottom:694.973333pt;}
.y55{bottom:714.333333pt;}
.y53{bottom:733.853333pt;}
.y54{bottom:739.133333pt;}
.y52{bottom:753.213333pt;}
.y51{bottom:772.573333pt;}
.y50{bottom:791.973333pt;}
.y4f{bottom:811.493333pt;}
.y13{bottom:819.493333pt;}
.y4e{bottom:830.853333pt;}
.y12{bottom:836.453333pt;}
.y4d{bottom:850.213333pt;}
.y11{bottom:853.253333pt;}
.y4c{bottom:869.573333pt;}
.y10{bottom:870.213333pt;}
.yf{bottom:887.013333pt;}
.y4a{bottom:888.933333pt;}
.y4b{bottom:894.213333pt;}
.ye{bottom:904.293333pt;}
.y49{bottom:908.453333pt;}
.yd{bottom:924.293333pt;}
.y48{bottom:927.813333pt;}
.y9c{bottom:933.093333pt;}
.yc{bottom:944.133333pt;}
.y47{bottom:947.173333pt;}
.yb{bottom:964.133333pt;}
.y46{bottom:966.533333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h11{height:19.569375pt;}
.he{height:21.760000pt;}
.h10{height:25.918750pt;}
.h13{height:29.940625pt;}
.hc{height:33.515625pt;}
.hb{height:33.867188pt;}
.h7{height:34.798125pt;}
.h12{height:35.342500pt;}
.h3{height:37.479688pt;}
.hd{height:39.562500pt;}
.h9{height:41.112500pt;}
.h4{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.hf{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.ha{height:565.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x13{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.xb{left:97.471988pt;}
.x10{left:99.871988pt;}
.x2f{left:103.391988pt;}
.xc{left:104.831988pt;}
.xa{left:107.551988pt;}
.x30{left:114.911988pt;}
.x7{left:117.160000pt;}
.x26{left:120.031988pt;}
.x2b{left:140.026643pt;}
.x17{left:144.026655pt;}
.x2c{left:149.306655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x28{left:168.026655pt;}
.x24{left:172.666643pt;}
.x25{left:177.306655pt;}
.x20{left:181.626643pt;}
.x21{left:186.266655pt;}
.x27{left:192.026655pt;}
.x1a{left:221.946643pt;}
.x1b{left:226.586655pt;}
.x15{left:252.546643pt;}
.x16{left:257.186655pt;}
.x33{left:259.586643pt;}
.x22{left:262.466655pt;}
.x11{left:263.906655pt;}
.x34{left:268.866655pt;}
.x29{left:275.426643pt;}
.x2a{left:280.066655pt;}
.x23{left:288.066655pt;}
.xf{left:297.186655pt;}
.xd{left:301.826655pt;}
.x2d{left:306.626643pt;}
.x2e{left:315.906655pt;}
.x37{left:320.706643pt;}
.x38{left:329.986655pt;}
.x1e{left:331.426643pt;}
.x1f{left:336.066655pt;}
.x14{left:348.066667pt;}
.xe{left:396.866655pt;}
.x31{left:443.133310pt;}
.x9{left:444.573322pt;}
.x32{left:452.413322pt;}
.x1c{left:482.813310pt;}
.x1d{left:487.453322pt;}
.x5{left:493.053333pt;}
.x35{left:500.093310pt;}
.x12{left:504.093333pt;}
.x36{left:509.373322pt;}
.x39{left:542.013310pt;}
.x3a{left:551.293322pt;}
.x18{left:668.773310pt;}
.x19{left:673.413322pt;}
}




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