
    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_52221348c012500ddf9e5ad0.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_b06347ce14e82cfd582f5f4a.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_7b9645c7faf5cf2bd98632ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_a7aa8154fae969748663c9dd.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_c09a32cdd0a8f28ca32fee7d.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;}
.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;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.045360px;}
.ls8{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.900000px;}
.lse{letter-spacing:2.340000px;}
.lsf{letter-spacing:3.780000px;}
.lsd{letter-spacing:39.881280px;}
.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;}
}
.wsa{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.105360px;}
.ws7{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._1a{margin-left:-5.101920px;}
._f{margin-left:-4.006800px;}
._10{margin-left:-2.754000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._6{width:2.754000px;}
._d{width:4.050000px;}
._e{width:5.087520px;}
._a{width:6.180960px;}
._9{width:7.506000px;}
._4{width:8.802000px;}
._3{width:9.936000px;}
._13{width:11.002560px;}
._18{width:12.390960px;}
._1b{width:13.571760px;}
._8{width:14.688000px;}
._1e{width:17.760000px;}
._15{width:18.987840px;}
._14{width:20.070720px;}
._11{width:21.213360px;}
._c{width:22.256640px;}
._b{width:23.382000px;}
._2{width:24.600000px;}
._12{width:25.650000px;}
._1f{width:27.820800px;}
._20{width:28.828800px;}
._21{width:29.940480px;}
._22{width:31.757760px;}
._1c{width:33.053760px;}
._1d{width:34.459200px;}
._5{width:36.774000px;}
._7{width:38.182080px;}
._16{width:51.534720px;}
._17{width:53.337600px;}
._19{width:55.057680px;}
._25{width:137.963520px;}
._24{width:138.985920px;}
._23{width:147.648960px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.880000px;}
.y42{bottom:3.600000px;}
.y2{bottom:5.400000px;}
.y43{bottom:7.740000px;}
.y3f{bottom:18.390000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y3e{bottom:33.870000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3d{bottom:49.530000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3c{bottom:65.010000px;}
.y3b{bottom:80.490000px;}
.y3a{bottom:95.970000px;}
.y85{bottom:110.340000px;}
.y39{bottom:111.630000px;}
.y84{bottom:114.840000px;}
.y46{bottom:117.540000px;}
.y83{bottom:124.020000px;}
.y38{bottom:127.110000px;}
.y8e{bottom:128.520000px;}
.y82{bottom:137.880000px;}
.y45{bottom:139.320000px;}
.y81{bottom:142.380000px;}
.y37{bottom:142.590000px;}
.y80{bottom:151.740000px;}
.y8d{bottom:152.640000px;}
.y7f{bottom:156.240000px;}
.y36{bottom:158.070000px;}
.y44{bottom:161.100000px;}
.y7e{bottom:165.420000px;}
.y9b{bottom:169.920000px;}
.y9c{bottom:170.460000px;}
.y35{bottom:173.730000px;}
.y41{bottom:176.580000px;}
.y7d{bottom:179.280000px;}
.y94{bottom:183.780000px;}
.y34{bottom:189.210000px;}
.y8c{bottom:192.240000px;}
.y7c{bottom:193.140000px;}
.y7b{bottom:197.640000px;}
.y18{bottom:201.780000px;}
.y33{bottom:204.690000px;}
.y7a{bottom:206.820000px;}
.y9a{bottom:207.900000px;}
.y93{bottom:211.350000px;}
.y8b{bottom:214.050000px;}
.y32{bottom:220.170000px;}
.y79{bottom:220.710000px;}
.y92{bottom:221.790000px;}
.y78{bottom:225.210000px;}
.y77{bottom:234.570000px;}
.y97{bottom:235.470000px;}
.y31{bottom:235.830000px;}
.y8a{bottom:236.010000px;}
.y76{bottom:239.070000px;}
.y75{bottom:248.250000px;}
.y30{bottom:251.355000px;}
.y89{bottom:257.790000px;}
.y74{bottom:262.110000px;}
.y73{bottom:266.610000px;}
.y2f{bottom:266.835000px;}
.y72{bottom:276.870000px;}
.y88{bottom:279.570000px;}
.y2e{bottom:282.315000px;}
.y2d{bottom:297.975000px;}
.y87{bottom:301.350000px;}
.y2c{bottom:313.455000px;}
.y70{bottom:323.310000px;}
.y2b{bottom:328.935000px;}
.y71{bottom:329.250000px;}
.y2a{bottom:344.415000px;}
.y6f{bottom:345.090000px;}
.y29{bottom:360.075000px;}
.y6e{bottom:366.870000px;}
.y28{bottom:375.555000px;}
.y6c{bottom:388.650000px;}
.y27{bottom:391.035000px;}
.y6d{bottom:394.590000px;}
.y26{bottom:406.515000px;}
.y6b{bottom:410.430000px;}
.y25{bottom:422.175000px;}
.y6a{bottom:432.390000px;}
.y24{bottom:437.655000px;}
.y91{bottom:438.330000px;}
.y23{bottom:453.135000px;}
.y69{bottom:454.215000px;}
.y22{bottom:468.615000px;}
.y67{bottom:475.995000px;}
.y68{bottom:481.935000px;}
.y21{bottom:484.305000px;}
.y66{bottom:497.775000px;}
.y20{bottom:499.785000px;}
.y1f{bottom:515.265000px;}
.y65{bottom:519.735000px;}
.y1e{bottom:530.745000px;}
.y64{bottom:541.515000px;}
.y1d{bottom:546.225000px;}
.y1c{bottom:561.885000px;}
.y62{bottom:563.295000px;}
.y63{bottom:569.235000px;}
.y1b{bottom:577.365000px;}
.y61{bottom:585.075000px;}
.y1a{bottom:592.845000px;}
.y60{bottom:606.855000px;}
.y19{bottom:608.325000px;}
.y96{bottom:612.795000px;}
.y5e{bottom:628.815000px;}
.y5f{bottom:634.755000px;}
.y5d{bottom:650.595000px;}
.y90{bottom:656.535000px;}
.y5c{bottom:672.375000px;}
.y5b{bottom:694.185000px;}
.y5a{bottom:716.145000px;}
.y59{bottom:737.925000px;}
.y58{bottom:759.705000px;}
.y57{bottom:781.485000px;}
.y55{bottom:803.265000px;}
.y56{bottom:809.205000px;}
.y54{bottom:825.225000px;}
.y17{bottom:829.185000px;}
.y99{bottom:831.165000px;}
.y53{bottom:847.005000px;}
.y16{bottom:850.965000px;}
.y95{bottom:852.945000px;}
.y52{bottom:868.785000px;}
.y15{bottom:872.745000px;}
.y8f{bottom:874.725000px;}
.y51{bottom:890.565000px;}
.y14{bottom:894.525000px;}
.y4f{bottom:912.525000px;}
.y13{bottom:916.530000px;}
.y50{bottom:918.510000px;}
.y4e{bottom:934.350000px;}
.y12{bottom:938.310000px;}
.y4d{bottom:956.130000px;}
.y11{bottom:960.090000px;}
.y4c{bottom:977.910000px;}
.y10{bottom:980.070000px;}
.yf{bottom:997.710000px;}
.y4b{bottom:999.690000px;}
.ye{bottom:1019.670000px;}
.y4a{bottom:1021.650000px;}
.y86{bottom:1027.590000px;}
.yd{bottom:1039.650000px;}
.y49{bottom:1043.430000px;}
.yc{bottom:1058.550000px;}
.y48{bottom:1065.210000px;}
.yb{bottom:1084.290000px;}
.y47{bottom:1086.990000px;}
.y98{bottom:1092.930000px;}
.y9{bottom:1108.770000px;}
.y1{bottom:1131.090000px;}
.h15{height:21.114844px;}
.h12{height:25.200000px;}
.h14{height:29.158594px;}
.hb{height:33.683203px;}
.h9{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.h16{height:39.760312px;}
.h3{height:42.164648px;}
.h11{height:44.507812px;}
.hd{height:46.251562px;}
.h13{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.he{height:620.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.135000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x16{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x11{left:112.535987px;}
.xa{left:115.235987px;}
.xd{left:124.415987px;}
.xf{left:127.295987px;}
.x7{left:131.805000px;}
.x2a{left:135.035987px;}
.x30{left:140.075987px;}
.x18{left:162.029987px;}
.x12{left:166.529987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x1d{left:187.229973px;}
.x13{left:190.649987px;}
.x1e{left:192.449987px;}
.x2f{left:198.209987px;}
.x33{left:241.949973px;}
.x34{left:252.389987px;}
.x25{left:324.074987px;}
.xb{left:328.214987px;}
.x10{left:359.894987px;}
.x14{left:362.234987px;}
.x17{left:391.575000px;}
.xe{left:393.914987px;}
.x2e{left:404.354987px;}
.x1b{left:424.694973px;}
.x1c{left:429.914987px;}
.x2b{left:436.574973px;}
.x2c{left:444.884973px;}
.xc{left:446.684987px;}
.x2d{left:455.324987px;}
.x35{left:459.464973px;}
.x36{left:469.904987px;}
.x9{left:496.184987px;}
.x5{left:554.685000px;}
.x15{left:567.105000px;}
.x23{left:580.964973px;}
.x24{left:586.184987px;}
.x38{left:595.184973px;}
.x26{left:600.764973px;}
.x27{left:605.984987px;}
.x28{left:613.004973px;}
.x29{left:618.224987px;}
.x31{left:660.029973px;}
.x32{left:670.469987px;}
.x21{left:688.289973px;}
.x22{left:693.509987px;}
.x39{left:695.669973px;}
.x3a{left:706.109987px;}
.x19{left:761.009973px;}
.x1a{left:766.229987px;}
.x37{left:774.869973px;}
.x1f{left:780.089973px;}
.x20{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls8{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.800000pt;}
.lse{letter-spacing:2.080000pt;}
.lsf{letter-spacing:3.360000pt;}
.lsd{letter-spacing:35.450027pt;}
.wsa{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.ws9{word-spacing:-10.760320pt;}
.ws7{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1a{margin-left:-4.535040pt;}
._f{margin-left:-3.561600pt;}
._10{margin-left:-2.448000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._6{width:2.448000pt;}
._d{width:3.600000pt;}
._e{width:4.522240pt;}
._a{width:5.494187pt;}
._9{width:6.672000pt;}
._4{width:7.824000pt;}
._3{width:8.832000pt;}
._13{width:9.780053pt;}
._18{width:11.014187pt;}
._1b{width:12.063787pt;}
._8{width:13.056000pt;}
._1e{width:15.786667pt;}
._15{width:16.878080pt;}
._14{width:17.840640pt;}
._11{width:18.856320pt;}
._c{width:19.783680pt;}
._b{width:20.784000pt;}
._2{width:21.866667pt;}
._12{width:22.800000pt;}
._1f{width:24.729600pt;}
._20{width:25.625600pt;}
._21{width:26.613760pt;}
._22{width:28.229120pt;}
._1c{width:29.381120pt;}
._1d{width:30.630400pt;}
._5{width:32.688000pt;}
._7{width:33.939627pt;}
._16{width:45.808640pt;}
._17{width:47.411200pt;}
._19{width:48.940160pt;}
._25{width:122.634240pt;}
._24{width:123.543040pt;}
._23{width:131.243520pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.560000pt;}
.y42{bottom:3.200000pt;}
.y2{bottom:4.800000pt;}
.y43{bottom:6.880000pt;}
.y3f{bottom:16.346667pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y3e{bottom:30.106667pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3d{bottom:44.026667pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3c{bottom:57.786667pt;}
.y3b{bottom:71.546667pt;}
.y3a{bottom:85.306667pt;}
.y85{bottom:98.080000pt;}
.y39{bottom:99.226667pt;}
.y84{bottom:102.080000pt;}
.y46{bottom:104.480000pt;}
.y83{bottom:110.240000pt;}
.y38{bottom:112.986667pt;}
.y8e{bottom:114.240000pt;}
.y82{bottom:122.560000pt;}
.y45{bottom:123.840000pt;}
.y81{bottom:126.560000pt;}
.y37{bottom:126.746667pt;}
.y80{bottom:134.880000pt;}
.y8d{bottom:135.680000pt;}
.y7f{bottom:138.880000pt;}
.y36{bottom:140.506667pt;}
.y44{bottom:143.200000pt;}
.y7e{bottom:147.040000pt;}
.y9b{bottom:151.040000pt;}
.y9c{bottom:151.520000pt;}
.y35{bottom:154.426667pt;}
.y41{bottom:156.960000pt;}
.y7d{bottom:159.360000pt;}
.y94{bottom:163.360000pt;}
.y34{bottom:168.186667pt;}
.y8c{bottom:170.880000pt;}
.y7c{bottom:171.680000pt;}
.y7b{bottom:175.680000pt;}
.y18{bottom:179.360000pt;}
.y33{bottom:181.946667pt;}
.y7a{bottom:183.840000pt;}
.y9a{bottom:184.800000pt;}
.y93{bottom:187.866667pt;}
.y8b{bottom:190.266667pt;}
.y32{bottom:195.706667pt;}
.y79{bottom:196.186667pt;}
.y92{bottom:197.146667pt;}
.y78{bottom:200.186667pt;}
.y77{bottom:208.506667pt;}
.y97{bottom:209.306667pt;}
.y31{bottom:209.626667pt;}
.y8a{bottom:209.786667pt;}
.y76{bottom:212.506667pt;}
.y75{bottom:220.666667pt;}
.y30{bottom:223.426667pt;}
.y89{bottom:229.146667pt;}
.y74{bottom:232.986667pt;}
.y73{bottom:236.986667pt;}
.y2f{bottom:237.186667pt;}
.y72{bottom:246.106667pt;}
.y88{bottom:248.506667pt;}
.y2e{bottom:250.946667pt;}
.y2d{bottom:264.866667pt;}
.y87{bottom:267.866667pt;}
.y2c{bottom:278.626667pt;}
.y70{bottom:287.386667pt;}
.y2b{bottom:292.386667pt;}
.y71{bottom:292.666667pt;}
.y2a{bottom:306.146667pt;}
.y6f{bottom:306.746667pt;}
.y29{bottom:320.066667pt;}
.y6e{bottom:326.106667pt;}
.y28{bottom:333.826667pt;}
.y6c{bottom:345.466667pt;}
.y27{bottom:347.586667pt;}
.y6d{bottom:350.746667pt;}
.y26{bottom:361.346667pt;}
.y6b{bottom:364.826667pt;}
.y25{bottom:375.266667pt;}
.y6a{bottom:384.346667pt;}
.y24{bottom:389.026667pt;}
.y91{bottom:389.626667pt;}
.y23{bottom:402.786667pt;}
.y69{bottom:403.746667pt;}
.y22{bottom:416.546667pt;}
.y67{bottom:423.106667pt;}
.y68{bottom:428.386667pt;}
.y21{bottom:430.493333pt;}
.y66{bottom:442.466667pt;}
.y20{bottom:444.253333pt;}
.y1f{bottom:458.013333pt;}
.y65{bottom:461.986667pt;}
.y1e{bottom:471.773333pt;}
.y64{bottom:481.346667pt;}
.y1d{bottom:485.533333pt;}
.y1c{bottom:499.453333pt;}
.y62{bottom:500.706667pt;}
.y63{bottom:505.986667pt;}
.y1b{bottom:513.213333pt;}
.y61{bottom:520.066667pt;}
.y1a{bottom:526.973333pt;}
.y60{bottom:539.426667pt;}
.y19{bottom:540.733333pt;}
.y96{bottom:544.706667pt;}
.y5e{bottom:558.946667pt;}
.y5f{bottom:564.226667pt;}
.y5d{bottom:578.306667pt;}
.y90{bottom:583.586667pt;}
.y5c{bottom:597.666667pt;}
.y5b{bottom:617.053333pt;}
.y5a{bottom:636.573333pt;}
.y59{bottom:655.933333pt;}
.y58{bottom:675.293333pt;}
.y57{bottom:694.653333pt;}
.y55{bottom:714.013333pt;}
.y56{bottom:719.293333pt;}
.y54{bottom:733.533333pt;}
.y17{bottom:737.053333pt;}
.y99{bottom:738.813333pt;}
.y53{bottom:752.893333pt;}
.y16{bottom:756.413333pt;}
.y95{bottom:758.173333pt;}
.y52{bottom:772.253333pt;}
.y15{bottom:775.773333pt;}
.y8f{bottom:777.533333pt;}
.y51{bottom:791.613333pt;}
.y14{bottom:795.133333pt;}
.y4f{bottom:811.133333pt;}
.y13{bottom:814.693333pt;}
.y50{bottom:816.453333pt;}
.y4e{bottom:830.533333pt;}
.y12{bottom:834.053333pt;}
.y4d{bottom:849.893333pt;}
.y11{bottom:853.413333pt;}
.y4c{bottom:869.253333pt;}
.y10{bottom:871.173333pt;}
.yf{bottom:886.853333pt;}
.y4b{bottom:888.613333pt;}
.ye{bottom:906.373333pt;}
.y4a{bottom:908.133333pt;}
.y86{bottom:913.413333pt;}
.yd{bottom:924.133333pt;}
.y49{bottom:927.493333pt;}
.yc{bottom:940.933333pt;}
.y48{bottom:946.853333pt;}
.yb{bottom:963.813333pt;}
.y47{bottom:966.213333pt;}
.y98{bottom:971.493333pt;}
.y9{bottom:985.573333pt;}
.y1{bottom:1005.413333pt;}
.h15{height:18.768750pt;}
.h12{height:22.400000pt;}
.h14{height:25.918750pt;}
.hb{height:29.940625pt;}
.h9{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.h16{height:35.342500pt;}
.h3{height:37.479688pt;}
.h11{height:39.562500pt;}
.hd{height:41.112500pt;}
.h13{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.he{height:551.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.786667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x16{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x11{left:100.031988pt;}
.xa{left:102.431988pt;}
.xd{left:110.591988pt;}
.xf{left:113.151988pt;}
.x7{left:117.160000pt;}
.x2a{left:120.031988pt;}
.x30{left:124.511988pt;}
.x18{left:144.026655pt;}
.x12{left:148.026655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x1d{left:166.426643pt;}
.x13{left:169.466655pt;}
.x1e{left:171.066655pt;}
.x2f{left:176.186655pt;}
.x33{left:215.066643pt;}
.x34{left:224.346655pt;}
.x25{left:288.066655pt;}
.xb{left:291.746655pt;}
.x10{left:319.906655pt;}
.x14{left:321.986655pt;}
.x17{left:348.066667pt;}
.xe{left:350.146655pt;}
.x2e{left:359.426655pt;}
.x1b{left:377.506643pt;}
.x1c{left:382.146655pt;}
.x2b{left:388.066643pt;}
.x2c{left:395.453310pt;}
.xc{left:397.053322pt;}
.x2d{left:404.733322pt;}
.x35{left:408.413310pt;}
.x36{left:417.693322pt;}
.x9{left:441.053322pt;}
.x5{left:493.053333pt;}
.x15{left:504.093333pt;}
.x23{left:516.413310pt;}
.x24{left:521.053322pt;}
.x38{left:529.053310pt;}
.x26{left:534.013310pt;}
.x27{left:538.653322pt;}
.x28{left:544.893310pt;}
.x29{left:549.533322pt;}
.x31{left:586.693310pt;}
.x32{left:595.973322pt;}
.x21{left:611.813310pt;}
.x22{left:616.453322pt;}
.x39{left:618.373310pt;}
.x3a{left:627.653322pt;}
.x19{left:676.453310pt;}
.x1a{left:681.093322pt;}
.x37{left:688.773310pt;}
.x1f{left:693.413310pt;}
.x20{left:698.053322pt;}
}




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