
    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_b4fa6710abc5205bff61b349.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f9a8f76c729e32ccc145d3ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_97f2646fda4edabdcef163ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_f9b1835f8ecf495ac1381358.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de63cb6fc3635dae926252ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_7fe5a72fe6c86ffb86c6e567.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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_a385d72740eb635c62ba3281.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-77.760000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls4{letter-spacing:5.940000px;}
.ls3{letter-spacing:64.397280px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-10.080000px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-5.256000px;}
._14{margin-left:-4.248000px;}
._f{margin-left:-2.808000px;}
._0{margin-left:-1.457280px;}
._1{width:1.003200px;}
._8{width:2.194080px;}
._12{width:3.531840px;}
._20{width:4.824000px;}
._22{width:5.976000px;}
._1f{width:7.272000px;}
._e{width:9.108000px;}
._d{width:10.152000px;}
._21{width:11.465280px;}
._10{width:12.672000px;}
._11{width:13.836000px;}
._1e{width:15.264000px;}
._1d{width:16.632000px;}
._13{width:19.080000px;}
._1b{width:20.880000px;}
._1c{width:21.996000px;}
._24{width:23.328000px;}
._23{width:24.785280px;}
._16{width:25.848000px;}
._2b{width:27.360000px;}
._19{width:29.376000px;}
._1a{width:30.388800px;}
._17{width:31.680000px;}
._18{width:32.772000px;}
._2a{width:34.056480px;}
._5{width:35.289840px;}
._25{width:36.535920px;}
._2c{width:37.584000px;}
._28{width:39.960000px;}
._29{width:41.052000px;}
._26{width:43.896000px;}
._27{width:45.060000px;}
._c{width:59.850000px;}
._b{width:61.145040px;}
._6{width:71.915760px;}
._7{width:73.245120px;}
._30{width:74.303520px;}
._9{width:108.496080px;}
._a{width:109.599600px;}
._3{width:126.403200px;}
._4{width:127.698240px;}
._33{width:153.936000px;}
._2e{width:172.728000px;}
._2f{width:174.540000px;}
._31{width:351.072000px;}
._32{width:352.080000px;}
._2d{width:417.672000px;}
._35{width:486.072000px;}
._34{width:823.752000px;}
._2{width:1832.717760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:8.640000px;}
.y8e{bottom:8.820000px;}
.y72{bottom:9.720000px;}
.y7a{bottom:9.765000px;}
.y83{bottom:9.900000px;}
.y78{bottom:11.520000px;}
.y9e{bottom:16.560000px;}
.y74{bottom:16.920000px;}
.y70{bottom:18.000000px;}
.y90{bottom:24.300000px;}
.y8d{bottom:24.480000px;}
.y71{bottom:26.280000px;}
.y96{bottom:32.040000px;}
.y98{bottom:32.760000px;}
.y91{bottom:39.960000px;}
.y8c{bottom:40.140000px;}
.y86{bottom:47.700000px;}
.y87{bottom:55.440000px;}
.y8b{bottom:55.620000px;}
.y85{bottom:63.360000px;}
.y8a{bottom:71.100000px;}
.y5{bottom:82.116000px;}
.y89{bottom:86.580000px;}
.y88{bottom:102.060000px;}
.y4{bottom:128.736000px;}
.y3{bottom:147.636000px;}
.y2{bottom:166.710000px;}
.y6a{bottom:187.050000px;}
.yb4{bottom:189.750000px;}
.y2e{bottom:203.430000px;}
.yef{bottom:208.290000px;}
.y4e{bottom:211.350000px;}
.y69{bottom:218.010000px;}
.y6e{bottom:218.370000px;}
.ycf{bottom:219.630000px;}
.yb3{bottom:220.890000px;}
.y95{bottom:223.590000px;}
.y2d{bottom:224.130000px;}
.yee{bottom:228.990000px;}
.yce{bottom:240.330000px;}
.y4d{bottom:242.310000px;}
.y2c{bottom:244.830000px;}
.y68{bottom:249.150000px;}
.yb2{bottom:251.850000px;}
.y6d{bottom:264.450000px;}
.yed{bottom:264.630000px;}
.y2b{bottom:265.530000px;}
.y4c{bottom:273.450000px;}
.ycd{bottom:275.970000px;}
.y67{bottom:280.110000px;}
.yb1{bottom:282.990000px;}
.yec{bottom:285.330000px;}
.y2a{bottom:286.230000px;}
.y93{bottom:292.530000px;}
.ycc{bottom:296.670000px;}
.y4b{bottom:304.410000px;}
.yeb{bottom:306.030000px;}
.y29{bottom:306.930000px;}
.y66{bottom:311.250000px;}
.yb0{bottom:313.950000px;}
.ycb{bottom:317.370000px;}
.y28{bottom:327.630000px;}
.y4a{bottom:335.550000px;}
.yea{bottom:341.895000px;}
.y65{bottom:342.255000px;}
.yaf{bottom:345.135000px;}
.y92{bottom:345.855000px;}
.y27{bottom:348.375000px;}
.yca{bottom:353.055000px;}
.ye9{bottom:362.595000px;}
.y49{bottom:366.555000px;}
.y26{bottom:369.075000px;}
.y64{bottom:373.395000px;}
.yc9{bottom:373.755000px;}
.yae{bottom:376.095000px;}
.y25{bottom:389.775000px;}
.y48{bottom:397.695000px;}
.ye8{bottom:398.235000px;}
.y8f{bottom:399.135000px;}
.y63{bottom:404.355000px;}
.yad{bottom:407.235000px;}
.yc8{bottom:409.575000px;}
.y24{bottom:410.475000px;}
.ye7{bottom:418.935000px;}
.y47{bottom:428.655000px;}
.yc7{bottom:430.275000px;}
.y23{bottom:431.175000px;}
.y62{bottom:435.495000px;}
.yac{bottom:438.195000px;}
.ye6{bottom:439.635000px;}
.yc6{bottom:450.975000px;}
.y22{bottom:451.875000px;}
.y84{bottom:452.415000px;}
.y46{bottom:459.795000px;}
.ye5{bottom:460.335000px;}
.y61{bottom:466.455000px;}
.yab{bottom:469.335000px;}
.y21{bottom:472.575000px;}
.yc5{bottom:486.615000px;}
.yf8{bottom:490.395000px;}
.y45{bottom:490.755000px;}
.y20{bottom:493.275000px;}
.y6b{bottom:495.975000px;}
.y60{bottom:497.595000px;}
.yaa{bottom:500.295000px;}
.yc4{bottom:507.315000px;}
.yf7{bottom:511.095000px;}
.y1f{bottom:513.975000px;}
.ye4{bottom:516.675000px;}
.y44{bottom:521.895000px;}
.y6c{bottom:526.935000px;}
.yc3{bottom:528.015000px;}
.y5f{bottom:528.555000px;}
.ya9{bottom:531.435000px;}
.yf6{bottom:531.615000px;}
.y1e{bottom:534.675000px;}
.ye3{bottom:537.375000px;}
.yc2{bottom:548.715000px;}
.yf5{bottom:552.315000px;}
.y43{bottom:552.855000px;}
.y1d{bottom:555.375000px;}
.y5e{bottom:559.695000px;}
.ya8{bottom:562.395000px;}
.y82{bottom:567.975000px;}
.ye2{bottom:573.015000px;}
.y1c{bottom:576.075000px;}
.y42{bottom:583.815000px;}
.yc1{bottom:584.355000px;}
.y5d{bottom:590.655000px;}
.ya7{bottom:593.535000px;}
.ye1{bottom:593.715000px;}
.y1b{bottom:596.775000px;}
.yc0{bottom:611.745000px;}
.ye0{bottom:614.445000px;}
.y41{bottom:614.985000px;}
.y81{bottom:615.705000px;}
.y1a{bottom:617.505000px;}
.y5c{bottom:621.645000px;}
.ya6{bottom:624.525000px;}
.y19{bottom:638.205000px;}
.y40{bottom:645.945000px;}
.ydf{bottom:650.265000px;}
.y5b{bottom:652.785000px;}
.ybf{bottom:654.585000px;}
.ya5{bottom:655.665000px;}
.y18{bottom:658.905000px;}
.y80{bottom:661.785000px;}
.yde{bottom:670.965000px;}
.y3f{bottom:677.085000px;}
.y17{bottom:679.605000px;}
.y5a{bottom:683.745000px;}
.ybe{bottom:685.725000px;}
.ya4{bottom:686.625000px;}
.ydd{bottom:691.665000px;}
.y7f{bottom:692.745000px;}
.y16{bottom:700.305000px;}
.y3e{bottom:708.045000px;}
.y59{bottom:714.885000px;}
.ybd{bottom:716.685000px;}
.ya3{bottom:717.765000px;}
.y15{bottom:721.005000px;}
.y7e{bottom:723.885000px;}
.ydc{bottom:727.305000px;}
.y3d{bottom:739.185000px;}
.y14{bottom:741.705000px;}
.y58{bottom:745.845000px;}
.ybc{bottom:747.825000px;}
.ydb{bottom:748.005000px;}
.ya2{bottom:748.725000px;}
.y7d{bottom:754.845000px;}
.y13{bottom:762.405000px;}
.yda{bottom:768.705000px;}
.y3c{bottom:770.145000px;}
.y57{bottom:776.985000px;}
.ybb{bottom:778.785000px;}
.ya1{bottom:779.865000px;}
.y12{bottom:783.105000px;}
.y7c{bottom:785.985000px;}
.y3b{bottom:801.285000px;}
.y11{bottom:803.805000px;}
.yd9{bottom:804.345000px;}
.y56{bottom:807.945000px;}
.yba{bottom:809.925000px;}
.ya0{bottom:810.825000px;}
.y10{bottom:824.505000px;}
.yd8{bottom:825.045000px;}
.y7b{bottom:832.065000px;}
.y3a{bottom:832.245000px;}
.y55{bottom:839.085000px;}
.yb9{bottom:840.885000px;}
.yd7{bottom:845.745000px;}
.y9f{bottom:847.905000px;}
.yf{bottom:852.405000px;}
.y39{bottom:863.385000px;}
.y79{bottom:864.465000px;}
.yf4{bottom:866.445000px;}
.y54{bottom:870.045000px;}
.yb8{bottom:872.070000px;}
.ye{bottom:880.170000px;}
.y9d{bottom:880.350000px;}
.yd6{bottom:881.610000px;}
.yf3{bottom:887.190000px;}
.y77{bottom:887.730000px;}
.y38{bottom:894.390000px;}
.y53{bottom:901.230000px;}
.yd5{bottom:902.310000px;}
.yb7{bottom:903.030000px;}
.yd{bottom:907.710000px;}
.y76{bottom:914.550000px;}
.y9c{bottom:918.150000px;}
.yd4{bottom:923.010000px;}
.y37{bottom:925.530000px;}
.y52{bottom:932.190000px;}
.yb6{bottom:934.170000px;}
.yc{bottom:935.430000px;}
.y9b{bottom:940.470000px;}
.yd3{bottom:943.710000px;}
.y75{bottom:952.170000px;}
.y36{bottom:961.710000px;}
.y9a{bottom:962.790000px;}
.yb{bottom:962.970000px;}
.y51{bottom:963.330000px;}
.yf2{bottom:964.410000px;}
.yd2{bottom:979.350000px;}
.yb5{bottom:982.410000px;}
.y73{bottom:989.790000px;}
.y35{bottom:994.290000px;}
.ya{bottom:996.450000px;}
.yd1{bottom:1000.050000px;}
.y34{bottom:1014.990000px;}
.yd0{bottom:1020.750000px;}
.y9{bottom:1024.170000px;}
.y50{bottom:1025.430000px;}
.y6f{bottom:1027.410000px;}
.y99{bottom:1031.550000px;}
.y33{bottom:1035.690000px;}
.yf1{bottom:1041.450000px;}
.y8{bottom:1051.710000px;}
.y32{bottom:1056.390000px;}
.yf0{bottom:1062.150000px;}
.y31{bottom:1077.090000px;}
.y7{bottom:1079.430000px;}
.y97{bottom:1085.010000px;}
.y4f{bottom:1087.530000px;}
.y30{bottom:1097.790000px;}
.y6{bottom:1112.730000px;}
.y2f{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h18{height:21.600000px;}
.he{height:22.536000px;}
.hd{height:26.100000px;}
.hf{height:26.640000px;}
.hb{height:36.900000px;}
.h19{height:37.080000px;}
.h9{height:39.060000px;}
.ha{height:45.641602px;}
.hc{height:46.801758px;}
.h12{height:48.410156px;}
.h16{height:49.500000px;}
.h13{height:52.560000px;}
.h14{height:52.596000px;}
.h6{height:52.628906px;}
.h3{height:59.383125px;}
.h10{height:63.949219px;}
.h2{height:64.546875px;}
.h17{height:68.040000px;}
.h15{height:68.220000px;}
.h5{height:69.996445px;}
.h8{height:70.606406px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h11{height:114.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:52.740000px;}
.wa{width:52.776000px;}
.w8{width:53.280000px;}
.w9{width:59.040000px;}
.wb{width:63.360000px;}
.w5{width:63.396000px;}
.w4{width:63.540000px;}
.w6{width:63.576000px;}
.w7{width:66.960000px;}
.w3{width:83.880000px;}
.wd{width:123.840000px;}
.we{width:171.750000px;}
.wf{width:382.035000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:5.220000px;}
.x16{left:7.245000px;}
.xd{left:8.460000px;}
.x10{left:9.720000px;}
.x20{left:11.160000px;}
.x1a{left:12.600000px;}
.xb{left:14.400000px;}
.x1c{left:16.560000px;}
.x1d{left:19.440000px;}
.x18{left:21.600000px;}
.x1b{left:23.400000px;}
.x1e{left:25.020000px;}
.x1f{left:26.820000px;}
.x22{left:28.845000px;}
.x25{left:50.085000px;}
.x2{left:127.655987px;}
.xa{left:129.455987px;}
.x26{left:145.470000px;}
.x7{left:159.689987px;}
.x24{left:166.710000px;}
.x4{left:170.129987px;}
.x5{left:176.969987px;}
.x9{left:181.649987px;}
.xc{left:212.610000px;}
.x21{left:252.930000px;}
.x6{left:263.009987px;}
.xe{left:276.510000px;}
.xf{left:340.275000px;}
.x11{left:404.175000px;}
.x23{left:425.415000px;}
.x8{left:467.924987px;}
.x1{left:489.164987px;}
.x13{left:535.605000px;}
.x14{left:589.245000px;}
.x15{left:648.645000px;}
.x17{left:701.790000px;}
.x19{left:765.690000px;}
.x3{left:808.169987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls4{letter-spacing:5.280000pt;}
.ls3{letter-spacing:57.242027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-8.960000pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-4.672000pt;}
._14{margin-left:-3.776000pt;}
._f{margin-left:-2.496000pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.891733pt;}
._8{width:1.950293pt;}
._12{width:3.139413pt;}
._20{width:4.288000pt;}
._22{width:5.312000pt;}
._1f{width:6.464000pt;}
._e{width:8.096000pt;}
._d{width:9.024000pt;}
._21{width:10.191360pt;}
._10{width:11.264000pt;}
._11{width:12.298667pt;}
._1e{width:13.568000pt;}
._1d{width:14.784000pt;}
._13{width:16.960000pt;}
._1b{width:18.560000pt;}
._1c{width:19.552000pt;}
._24{width:20.736000pt;}
._23{width:22.031360pt;}
._16{width:22.976000pt;}
._2b{width:24.320000pt;}
._19{width:26.112000pt;}
._1a{width:27.012267pt;}
._17{width:28.160000pt;}
._18{width:29.130667pt;}
._2a{width:30.272427pt;}
._5{width:31.368747pt;}
._25{width:32.476373pt;}
._2c{width:33.408000pt;}
._28{width:35.520000pt;}
._29{width:36.490667pt;}
._26{width:39.018667pt;}
._27{width:40.053333pt;}
._c{width:53.200000pt;}
._b{width:54.351147pt;}
._6{width:63.925120pt;}
._7{width:65.106773pt;}
._30{width:66.047573pt;}
._9{width:96.440960pt;}
._a{width:97.421867pt;}
._3{width:112.358400pt;}
._4{width:113.509547pt;}
._33{width:136.832000pt;}
._2e{width:153.536000pt;}
._2f{width:155.146667pt;}
._31{width:312.064000pt;}
._32{width:312.960000pt;}
._2d{width:371.264000pt;}
._35{width:432.064000pt;}
._34{width:732.224000pt;}
._2{width:1629.082453pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:7.680000pt;}
.y8e{bottom:7.840000pt;}
.y72{bottom:8.640000pt;}
.y7a{bottom:8.680000pt;}
.y83{bottom:8.800000pt;}
.y78{bottom:10.240000pt;}
.y9e{bottom:14.720000pt;}
.y74{bottom:15.040000pt;}
.y70{bottom:16.000000pt;}
.y90{bottom:21.600000pt;}
.y8d{bottom:21.760000pt;}
.y71{bottom:23.360000pt;}
.y96{bottom:28.480000pt;}
.y98{bottom:29.120000pt;}
.y91{bottom:35.520000pt;}
.y8c{bottom:35.680000pt;}
.y86{bottom:42.400000pt;}
.y87{bottom:49.280000pt;}
.y8b{bottom:49.440000pt;}
.y85{bottom:56.320000pt;}
.y8a{bottom:63.200000pt;}
.y5{bottom:72.992000pt;}
.y89{bottom:76.960000pt;}
.y88{bottom:90.720000pt;}
.y4{bottom:114.432000pt;}
.y3{bottom:131.232000pt;}
.y2{bottom:148.186667pt;}
.y6a{bottom:166.266667pt;}
.yb4{bottom:168.666667pt;}
.y2e{bottom:180.826667pt;}
.yef{bottom:185.146667pt;}
.y4e{bottom:187.866667pt;}
.y69{bottom:193.786667pt;}
.y6e{bottom:194.106667pt;}
.ycf{bottom:195.226667pt;}
.yb3{bottom:196.346667pt;}
.y95{bottom:198.746667pt;}
.y2d{bottom:199.226667pt;}
.yee{bottom:203.546667pt;}
.yce{bottom:213.626667pt;}
.y4d{bottom:215.386667pt;}
.y2c{bottom:217.626667pt;}
.y68{bottom:221.466667pt;}
.yb2{bottom:223.866667pt;}
.y6d{bottom:235.066667pt;}
.yed{bottom:235.226667pt;}
.y2b{bottom:236.026667pt;}
.y4c{bottom:243.066667pt;}
.ycd{bottom:245.306667pt;}
.y67{bottom:248.986667pt;}
.yb1{bottom:251.546667pt;}
.yec{bottom:253.626667pt;}
.y2a{bottom:254.426667pt;}
.y93{bottom:260.026667pt;}
.ycc{bottom:263.706667pt;}
.y4b{bottom:270.586667pt;}
.yeb{bottom:272.026667pt;}
.y29{bottom:272.826667pt;}
.y66{bottom:276.666667pt;}
.yb0{bottom:279.066667pt;}
.ycb{bottom:282.106667pt;}
.y28{bottom:291.226667pt;}
.y4a{bottom:298.266667pt;}
.yea{bottom:303.906667pt;}
.y65{bottom:304.226667pt;}
.yaf{bottom:306.786667pt;}
.y92{bottom:307.426667pt;}
.y27{bottom:309.666667pt;}
.yca{bottom:313.826667pt;}
.ye9{bottom:322.306667pt;}
.y49{bottom:325.826667pt;}
.y26{bottom:328.066667pt;}
.y64{bottom:331.906667pt;}
.yc9{bottom:332.226667pt;}
.yae{bottom:334.306667pt;}
.y25{bottom:346.466667pt;}
.y48{bottom:353.506667pt;}
.ye8{bottom:353.986667pt;}
.y8f{bottom:354.786667pt;}
.y63{bottom:359.426667pt;}
.yad{bottom:361.986667pt;}
.yc8{bottom:364.066667pt;}
.y24{bottom:364.866667pt;}
.ye7{bottom:372.386667pt;}
.y47{bottom:381.026667pt;}
.yc7{bottom:382.466667pt;}
.y23{bottom:383.266667pt;}
.y62{bottom:387.106667pt;}
.yac{bottom:389.506667pt;}
.ye6{bottom:390.786667pt;}
.yc6{bottom:400.866667pt;}
.y22{bottom:401.666667pt;}
.y84{bottom:402.146667pt;}
.y46{bottom:408.706667pt;}
.ye5{bottom:409.186667pt;}
.y61{bottom:414.626667pt;}
.yab{bottom:417.186667pt;}
.y21{bottom:420.066667pt;}
.yc5{bottom:432.546667pt;}
.yf8{bottom:435.906667pt;}
.y45{bottom:436.226667pt;}
.y20{bottom:438.466667pt;}
.y6b{bottom:440.866667pt;}
.y60{bottom:442.306667pt;}
.yaa{bottom:444.706667pt;}
.yc4{bottom:450.946667pt;}
.yf7{bottom:454.306667pt;}
.y1f{bottom:456.866667pt;}
.ye4{bottom:459.266667pt;}
.y44{bottom:463.906667pt;}
.y6c{bottom:468.386667pt;}
.yc3{bottom:469.346667pt;}
.y5f{bottom:469.826667pt;}
.ya9{bottom:472.386667pt;}
.yf6{bottom:472.546667pt;}
.y1e{bottom:475.266667pt;}
.ye3{bottom:477.666667pt;}
.yc2{bottom:487.746667pt;}
.yf5{bottom:490.946667pt;}
.y43{bottom:491.426667pt;}
.y1d{bottom:493.666667pt;}
.y5e{bottom:497.506667pt;}
.ya8{bottom:499.906667pt;}
.y82{bottom:504.866667pt;}
.ye2{bottom:509.346667pt;}
.y1c{bottom:512.066667pt;}
.y42{bottom:518.946667pt;}
.yc1{bottom:519.426667pt;}
.y5d{bottom:525.026667pt;}
.ya7{bottom:527.586667pt;}
.ye1{bottom:527.746667pt;}
.y1b{bottom:530.466667pt;}
.yc0{bottom:543.773333pt;}
.ye0{bottom:546.173333pt;}
.y41{bottom:546.653333pt;}
.y81{bottom:547.293333pt;}
.y1a{bottom:548.893333pt;}
.y5c{bottom:552.573333pt;}
.ya6{bottom:555.133333pt;}
.y19{bottom:567.293333pt;}
.y40{bottom:574.173333pt;}
.ydf{bottom:578.013333pt;}
.y5b{bottom:580.253333pt;}
.ybf{bottom:581.853333pt;}
.ya5{bottom:582.813333pt;}
.y18{bottom:585.693333pt;}
.y80{bottom:588.253333pt;}
.yde{bottom:596.413333pt;}
.y3f{bottom:601.853333pt;}
.y17{bottom:604.093333pt;}
.y5a{bottom:607.773333pt;}
.ybe{bottom:609.533333pt;}
.ya4{bottom:610.333333pt;}
.ydd{bottom:614.813333pt;}
.y7f{bottom:615.773333pt;}
.y16{bottom:622.493333pt;}
.y3e{bottom:629.373333pt;}
.y59{bottom:635.453333pt;}
.ybd{bottom:637.053333pt;}
.ya3{bottom:638.013333pt;}
.y15{bottom:640.893333pt;}
.y7e{bottom:643.453333pt;}
.ydc{bottom:646.493333pt;}
.y3d{bottom:657.053333pt;}
.y14{bottom:659.293333pt;}
.y58{bottom:662.973333pt;}
.ybc{bottom:664.733333pt;}
.ydb{bottom:664.893333pt;}
.ya2{bottom:665.533333pt;}
.y7d{bottom:670.973333pt;}
.y13{bottom:677.693333pt;}
.yda{bottom:683.293333pt;}
.y3c{bottom:684.573333pt;}
.y57{bottom:690.653333pt;}
.ybb{bottom:692.253333pt;}
.ya1{bottom:693.213333pt;}
.y12{bottom:696.093333pt;}
.y7c{bottom:698.653333pt;}
.y3b{bottom:712.253333pt;}
.y11{bottom:714.493333pt;}
.yd9{bottom:714.973333pt;}
.y56{bottom:718.173333pt;}
.yba{bottom:719.933333pt;}
.ya0{bottom:720.733333pt;}
.y10{bottom:732.893333pt;}
.yd8{bottom:733.373333pt;}
.y7b{bottom:739.613333pt;}
.y3a{bottom:739.773333pt;}
.y55{bottom:745.853333pt;}
.yb9{bottom:747.453333pt;}
.yd7{bottom:751.773333pt;}
.y9f{bottom:753.693333pt;}
.yf{bottom:757.693333pt;}
.y39{bottom:767.453333pt;}
.y79{bottom:768.413333pt;}
.yf4{bottom:770.173333pt;}
.y54{bottom:773.373333pt;}
.yb8{bottom:775.173333pt;}
.ye{bottom:782.373333pt;}
.y9d{bottom:782.533333pt;}
.yd6{bottom:783.653333pt;}
.yf3{bottom:788.613333pt;}
.y77{bottom:789.093333pt;}
.y38{bottom:795.013333pt;}
.y53{bottom:801.093333pt;}
.yd5{bottom:802.053333pt;}
.yb7{bottom:802.693333pt;}
.yd{bottom:806.853333pt;}
.y76{bottom:812.933333pt;}
.y9c{bottom:816.133333pt;}
.yd4{bottom:820.453333pt;}
.y37{bottom:822.693333pt;}
.y52{bottom:828.613333pt;}
.yb6{bottom:830.373333pt;}
.yc{bottom:831.493333pt;}
.y9b{bottom:835.973333pt;}
.yd3{bottom:838.853333pt;}
.y75{bottom:846.373333pt;}
.y36{bottom:854.853333pt;}
.y9a{bottom:855.813333pt;}
.yb{bottom:855.973333pt;}
.y51{bottom:856.293333pt;}
.yf2{bottom:857.253333pt;}
.yd2{bottom:870.533333pt;}
.yb5{bottom:873.253333pt;}
.y73{bottom:879.813333pt;}
.y35{bottom:883.813333pt;}
.ya{bottom:885.733333pt;}
.yd1{bottom:888.933333pt;}
.y34{bottom:902.213333pt;}
.yd0{bottom:907.333333pt;}
.y9{bottom:910.373333pt;}
.y50{bottom:911.493333pt;}
.y6f{bottom:913.253333pt;}
.y99{bottom:916.933333pt;}
.y33{bottom:920.613333pt;}
.yf1{bottom:925.733333pt;}
.y8{bottom:934.853333pt;}
.y32{bottom:939.013333pt;}
.yf0{bottom:944.133333pt;}
.y31{bottom:957.413333pt;}
.y7{bottom:959.493333pt;}
.y97{bottom:964.453333pt;}
.y4f{bottom:966.693333pt;}
.y30{bottom:975.813333pt;}
.y6{bottom:989.093333pt;}
.y2f{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h18{height:19.200000pt;}
.he{height:20.032000pt;}
.hd{height:23.200000pt;}
.hf{height:23.680000pt;}
.hb{height:32.800000pt;}
.h19{height:32.960000pt;}
.h9{height:34.720000pt;}
.ha{height:40.570312pt;}
.hc{height:41.601562pt;}
.h12{height:43.031250pt;}
.h16{height:44.000000pt;}
.h13{height:46.720000pt;}
.h14{height:46.752000pt;}
.h6{height:46.781250pt;}
.h3{height:52.785000pt;}
.h10{height:56.843750pt;}
.h2{height:57.375000pt;}
.h17{height:60.480000pt;}
.h15{height:60.640000pt;}
.h5{height:62.219062pt;}
.h8{height:62.761250pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h11{height:101.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:46.880000pt;}
.wa{width:46.912000pt;}
.w8{width:47.360000pt;}
.w9{width:52.480000pt;}
.wb{width:56.320000pt;}
.w5{width:56.352000pt;}
.w4{width:56.480000pt;}
.w6{width:56.512000pt;}
.w7{width:59.520000pt;}
.w3{width:74.560000pt;}
.wd{width:110.080000pt;}
.we{width:152.666667pt;}
.wf{width:339.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.640000pt;}
.x16{left:6.440000pt;}
.xd{left:7.520000pt;}
.x10{left:8.640000pt;}
.x20{left:9.920000pt;}
.x1a{left:11.200000pt;}
.xb{left:12.800000pt;}
.x1c{left:14.720000pt;}
.x1d{left:17.280000pt;}
.x18{left:19.200000pt;}
.x1b{left:20.800000pt;}
.x1e{left:22.240000pt;}
.x1f{left:23.840000pt;}
.x22{left:25.640000pt;}
.x25{left:44.520000pt;}
.x2{left:113.471988pt;}
.xa{left:115.071988pt;}
.x26{left:129.306667pt;}
.x7{left:141.946655pt;}
.x24{left:148.186667pt;}
.x4{left:151.226655pt;}
.x5{left:157.306655pt;}
.x9{left:161.466655pt;}
.xc{left:188.986667pt;}
.x21{left:224.826667pt;}
.x6{left:233.786655pt;}
.xe{left:245.786667pt;}
.xf{left:302.466667pt;}
.x11{left:359.266667pt;}
.x23{left:378.146667pt;}
.x8{left:415.933322pt;}
.x1{left:434.813322pt;}
.x13{left:476.093333pt;}
.x14{left:523.773333pt;}
.x15{left:576.573333pt;}
.x17{left:623.813333pt;}
.x19{left:680.613333pt;}
.x3{left:718.373322pt;}
}




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