
    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_68eda5f5959b03e2f0ae3577.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_67953d2b61f9ee1130d375d4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7279dced887085ee603955cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_20b0ed90182651a9675b44b2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b926bfdd645ac8a4b32d6c15.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_edba8341c4de614cde57ba1c.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_4d4e6ea2c83387c0b23613ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4796e1817b66ae587719fcef.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4bdb268adb781863d287303b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bac0a408c6b3881b26dd763e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_766312eed5c9840d8bc30d68.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.253200px;}
.ls3{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.269280px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:4.320000px;}
.ls9{letter-spacing:39.881280px;}
.lsc{letter-spacing:39.905280px;}
.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:-18.305520px;}
.ws7{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.230720px;}
._5{margin-left:-3.116160px;}
._0{margin-left:-1.788480px;}
._2{width:1.257840px;}
._6{width:2.626560px;}
._7{width:3.773520px;}
._d{width:5.318640px;}
._11{width:6.416640px;}
._c{width:7.488720px;}
._4{width:8.601120px;}
._3{width:10.517760px;}
._16{width:11.721600px;}
._9{width:12.728880px;}
._8{width:13.804560px;}
._15{width:14.943600px;}
._e{width:16.912080px;}
._10{width:18.144000px;}
._b{width:19.598400px;}
._a{width:20.975760px;}
._13{width:22.057920px;}
._14{width:23.382720px;}
._1a{width:25.369920px;}
._19{width:27.092160px;}
._1e{width:28.218240px;}
._1c{width:29.344320px;}
._1b{width:31.000320px;}
._1d{width:33.451200px;}
._20{width:34.643520px;}
._1f{width:37.522560px;}
._17{width:38.551680px;}
._18{width:39.612240px;}
._f{width:40.914480px;}
._1{width:1002.023040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.180000px;}
.y5{bottom:58.320000px;}
.y4{bottom:77.256000px;}
.y70{bottom:110.376000px;}
.y86{bottom:113.796000px;}
.y6f{bottom:114.876000px;}
.y6e{bottom:124.236000px;}
.y6d{bottom:128.736000px;}
.y85{bottom:135.576000px;}
.y83{bottom:137.916000px;}
.y6c{bottom:138.096000px;}
.y7f{bottom:138.996000px;}
.y38{bottom:142.236000px;}
.y82{bottom:142.416000px;}
.y6b{bottom:142.596000px;}
.y8a{bottom:151.770000px;}
.y6a{bottom:151.950000px;}
.y81{bottom:152.850000px;}
.y89{bottom:156.270000px;}
.y69{bottom:156.450000px;}
.y84{bottom:157.350000px;}
.y37{bottom:164.010000px;}
.y7b{bottom:165.810000px;}
.y68{bottom:166.710000px;}
.y7a{bottom:170.310000px;}
.y7e{bottom:179.130000px;}
.y79{bottom:179.670000px;}
.y78{bottom:184.170000px;}
.y36{bottom:185.790000px;}
.y77{bottom:194.430000px;}
.y67{bottom:201.090000px;}
.y35{bottom:207.570000px;}
.y66{bottom:222.870000px;}
.y34{bottom:229.530000px;}
.y65{bottom:244.650000px;}
.y33{bottom:251.310000px;}
.y64{bottom:266.430000px;}
.y76{bottom:272.370000px;}
.y32{bottom:273.090000px;}
.y63{bottom:288.210000px;}
.y31{bottom:294.870000px;}
.y62{bottom:310.170000px;}
.y30{bottom:312.870000px;}
.y2f{bottom:326.730000px;}
.y61{bottom:331.950000px;}
.y2e{bottom:341.355000px;}
.y60{bottom:353.775000px;}
.y2d{bottom:361.155000px;}
.y5f{bottom:375.555000px;}
.y2c{bottom:380.955000px;}
.y75{bottom:381.495000px;}
.y5e{bottom:397.515000px;}
.y2b{bottom:400.755000px;}
.y5d{bottom:419.295000px;}
.y2a{bottom:420.555000px;}
.y80{bottom:425.235000px;}
.y29{bottom:440.355000px;}
.y5c{bottom:441.075000px;}
.y28{bottom:460.335000px;}
.y5b{bottom:462.855000px;}
.y74{bottom:468.795000px;}
.y27{bottom:480.135000px;}
.y5a{bottom:484.635000px;}
.y26{bottom:499.935000px;}
.y59{bottom:506.595000px;}
.y25{bottom:519.735000px;}
.y58{bottom:528.375000px;}
.y24{bottom:539.535000px;}
.y57{bottom:550.155000px;}
.y73{bottom:556.095000px;}
.y23{bottom:559.515000px;}
.y56{bottom:571.935000px;}
.y22{bottom:579.315000px;}
.y55{bottom:593.895000px;}
.y21{bottom:599.115000px;}
.y54{bottom:615.705000px;}
.y20{bottom:618.945000px;}
.y53{bottom:637.485000px;}
.y1f{bottom:638.745000px;}
.y7d{bottom:643.425000px;}
.y1e{bottom:658.725000px;}
.y52{bottom:659.265000px;}
.y1d{bottom:678.525000px;}
.y51{bottom:681.045000px;}
.y1c{bottom:698.325000px;}
.y50{bottom:703.005000px;}
.y1b{bottom:718.125000px;}
.y4f{bottom:724.785000px;}
.y87{bottom:730.725000px;}
.y1a{bottom:737.925000px;}
.y4e{bottom:746.565000px;}
.y19{bottom:757.905000px;}
.y4d{bottom:768.345000px;}
.y72{bottom:774.285000px;}
.y18{bottom:777.705000px;}
.y4c{bottom:790.125000px;}
.y17{bottom:797.505000px;}
.y4b{bottom:812.085000px;}
.y16{bottom:817.305000px;}
.y4a{bottom:833.865000px;}
.y15{bottom:835.845000px;}
.y14{bottom:853.125000px;}
.y49{bottom:855.645000px;}
.y13{bottom:872.970000px;}
.y47{bottom:877.470000px;}
.y48{bottom:883.410000px;}
.y12{bottom:897.990000px;}
.y46{bottom:899.430000px;}
.y71{bottom:905.370000px;}
.y11{bottom:913.110000px;}
.y45{bottom:921.210000px;}
.y10{bottom:934.890000px;}
.y44{bottom:942.990000px;}
.y7c{bottom:948.930000px;}
.yf{bottom:956.850000px;}
.y43{bottom:964.770000px;}
.ye{bottom:979.890000px;}
.y41{bottom:986.550000px;}
.y42{bottom:992.490000px;}
.yd{bottom:1005.630000px;}
.y40{bottom:1008.510000px;}
.y3f{bottom:1030.290000px;}
.yc{bottom:1031.370000px;}
.y3d{bottom:1052.070000px;}
.yb{bottom:1053.330000px;}
.y3e{bottom:1058.010000px;}
.ya{bottom:1071.870000px;}
.y3c{bottom:1073.850000px;}
.y9{bottom:1089.150000px;}
.y3b{bottom:1095.810000px;}
.y88{bottom:1101.750000px;}
.y8{bottom:1106.430000px;}
.y3a{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y39{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1165.500000px;}
.y1{bottom:1180.980000px;}
.h14{height:22.015547px;}
.hb{height:27.147656px;}
.h2{height:27.900000px;}
.h13{height:29.158594px;}
.h15{height:33.683203px;}
.hd{height:34.036523px;}
.h16{height:35.120039px;}
.h6{height:39.760312px;}
.he{height:41.726953px;}
.h7{height:42.164648px;}
.h10{height:43.156758px;}
.hf{height:45.549492px;}
.h5{height:46.251562px;}
.h12{height:46.736719px;}
.h17{height:47.836406px;}
.hc{height:48.027656px;}
.h4{height:48.224531px;}
.h3{height:49.777031px;}
.h11{height:50.488594px;}
.ha{height:53.224453px;}
.h9{height:54.864844px;}
.h8{height:56.155781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.605000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x17{left:112.175987px;}
.x23{left:116.315987px;}
.x9{left:117.755987px;}
.x5{left:132.875987px;}
.x15{left:135.035987px;}
.x30{left:140.075987px;}
.x11{left:145.115973px;}
.x6{left:149.975987px;}
.xe{left:162.029987px;}
.x3{left:171.930000px;}
.x1e{left:176.969987px;}
.x1f{left:178.049973px;}
.x28{left:181.829973px;}
.x20{left:183.269987px;}
.x2c{left:189.029987px;}
.x29{left:192.269987px;}
.xa{left:194.429987px;}
.x1c{left:254.189973px;}
.x1d{left:259.409987px;}
.x24{left:268.229973px;}
.x2d{left:270.029987px;}
.x25{left:278.714987px;}
.x8{left:297.974987px;}
.xb{left:309.674987px;}
.x16{left:324.074987px;}
.x2e{left:343.874973px;}
.x7{left:349.814987px;}
.x2f{left:354.314987px;}
.x2a{left:411.554973px;}
.xd{left:420.194987px;}
.x2b{left:421.994987px;}
.xc{left:446.474987px;}
.x18{left:506.984973px;}
.x19{left:512.204987px;}
.x21{left:519.584973px;}
.x22{left:530.024987px;}
.xf{left:670.289973px;}
.x10{left:675.509987px;}
.x26{left:680.729987px;}
.x13{left:701.249973px;}
.x14{left:706.469987px;}
.x1a{left:721.229973px;}
.x1b{left:726.449987px;}
.x27{left:774.689973px;}
.x12{left:779.909973px;}
.x4{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.225067pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.239360pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls9{letter-spacing:35.450027pt;}
.lsc{letter-spacing:35.471360pt;}
.ws0{word-spacing:-16.271573pt;}
.ws7{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-3.760640pt;}
._5{margin-left:-2.769920pt;}
._0{margin-left:-1.589760pt;}
._2{width:1.118080pt;}
._6{width:2.334720pt;}
._7{width:3.354240pt;}
._d{width:4.727680pt;}
._11{width:5.703680pt;}
._c{width:6.656640pt;}
._4{width:7.645440pt;}
._3{width:9.349120pt;}
._16{width:10.419200pt;}
._9{width:11.314560pt;}
._8{width:12.270720pt;}
._15{width:13.283200pt;}
._e{width:15.032960pt;}
._10{width:16.128000pt;}
._b{width:17.420800pt;}
._a{width:18.645120pt;}
._13{width:19.607040pt;}
._14{width:20.784640pt;}
._1a{width:22.551040pt;}
._19{width:24.081920pt;}
._1e{width:25.082880pt;}
._1c{width:26.083840pt;}
._1b{width:27.555840pt;}
._1d{width:29.734400pt;}
._20{width:30.794240pt;}
._1f{width:33.353387pt;}
._17{width:34.268160pt;}
._18{width:35.210880pt;}
._f{width:36.368427pt;}
._1{width:890.687147pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.160000pt;}
.y5{bottom:51.840000pt;}
.y4{bottom:68.672000pt;}
.y70{bottom:98.112000pt;}
.y86{bottom:101.152000pt;}
.y6f{bottom:102.112000pt;}
.y6e{bottom:110.432000pt;}
.y6d{bottom:114.432000pt;}
.y85{bottom:120.512000pt;}
.y83{bottom:122.592000pt;}
.y6c{bottom:122.752000pt;}
.y7f{bottom:123.552000pt;}
.y38{bottom:126.432000pt;}
.y82{bottom:126.592000pt;}
.y6b{bottom:126.752000pt;}
.y8a{bottom:134.906667pt;}
.y6a{bottom:135.066667pt;}
.y81{bottom:135.866667pt;}
.y89{bottom:138.906667pt;}
.y69{bottom:139.066667pt;}
.y84{bottom:139.866667pt;}
.y37{bottom:145.786667pt;}
.y7b{bottom:147.386667pt;}
.y68{bottom:148.186667pt;}
.y7a{bottom:151.386667pt;}
.y7e{bottom:159.226667pt;}
.y79{bottom:159.706667pt;}
.y78{bottom:163.706667pt;}
.y36{bottom:165.146667pt;}
.y77{bottom:172.826667pt;}
.y67{bottom:178.746667pt;}
.y35{bottom:184.506667pt;}
.y66{bottom:198.106667pt;}
.y34{bottom:204.026667pt;}
.y65{bottom:217.466667pt;}
.y33{bottom:223.386667pt;}
.y64{bottom:236.826667pt;}
.y76{bottom:242.106667pt;}
.y32{bottom:242.746667pt;}
.y63{bottom:256.186667pt;}
.y31{bottom:262.106667pt;}
.y62{bottom:275.706667pt;}
.y30{bottom:278.106667pt;}
.y2f{bottom:290.426667pt;}
.y61{bottom:295.066667pt;}
.y2e{bottom:303.426667pt;}
.y60{bottom:314.466667pt;}
.y2d{bottom:321.026667pt;}
.y5f{bottom:333.826667pt;}
.y2c{bottom:338.626667pt;}
.y75{bottom:339.106667pt;}
.y5e{bottom:353.346667pt;}
.y2b{bottom:356.226667pt;}
.y5d{bottom:372.706667pt;}
.y2a{bottom:373.826667pt;}
.y80{bottom:377.986667pt;}
.y29{bottom:391.426667pt;}
.y5c{bottom:392.066667pt;}
.y28{bottom:409.186667pt;}
.y5b{bottom:411.426667pt;}
.y74{bottom:416.706667pt;}
.y27{bottom:426.786667pt;}
.y5a{bottom:430.786667pt;}
.y26{bottom:444.386667pt;}
.y59{bottom:450.306667pt;}
.y25{bottom:461.986667pt;}
.y58{bottom:469.666667pt;}
.y24{bottom:479.586667pt;}
.y57{bottom:489.026667pt;}
.y73{bottom:494.306667pt;}
.y23{bottom:497.346667pt;}
.y56{bottom:508.386667pt;}
.y22{bottom:514.946667pt;}
.y55{bottom:527.906667pt;}
.y21{bottom:532.546667pt;}
.y54{bottom:547.293333pt;}
.y20{bottom:550.173333pt;}
.y53{bottom:566.653333pt;}
.y1f{bottom:567.773333pt;}
.y7d{bottom:571.933333pt;}
.y1e{bottom:585.533333pt;}
.y52{bottom:586.013333pt;}
.y1d{bottom:603.133333pt;}
.y51{bottom:605.373333pt;}
.y1c{bottom:620.733333pt;}
.y50{bottom:624.893333pt;}
.y1b{bottom:638.333333pt;}
.y4f{bottom:644.253333pt;}
.y87{bottom:649.533333pt;}
.y1a{bottom:655.933333pt;}
.y4e{bottom:663.613333pt;}
.y19{bottom:673.693333pt;}
.y4d{bottom:682.973333pt;}
.y72{bottom:688.253333pt;}
.y18{bottom:691.293333pt;}
.y4c{bottom:702.333333pt;}
.y17{bottom:708.893333pt;}
.y4b{bottom:721.853333pt;}
.y16{bottom:726.493333pt;}
.y4a{bottom:741.213333pt;}
.y15{bottom:742.973333pt;}
.y14{bottom:758.333333pt;}
.y49{bottom:760.573333pt;}
.y13{bottom:775.973333pt;}
.y47{bottom:779.973333pt;}
.y48{bottom:785.253333pt;}
.y12{bottom:798.213333pt;}
.y46{bottom:799.493333pt;}
.y71{bottom:804.773333pt;}
.y11{bottom:811.653333pt;}
.y45{bottom:818.853333pt;}
.y10{bottom:831.013333pt;}
.y44{bottom:838.213333pt;}
.y7c{bottom:843.493333pt;}
.yf{bottom:850.533333pt;}
.y43{bottom:857.573333pt;}
.ye{bottom:871.013333pt;}
.y41{bottom:876.933333pt;}
.y42{bottom:882.213333pt;}
.yd{bottom:893.893333pt;}
.y40{bottom:896.453333pt;}
.y3f{bottom:915.813333pt;}
.yc{bottom:916.773333pt;}
.y3d{bottom:935.173333pt;}
.yb{bottom:936.293333pt;}
.y3e{bottom:940.453333pt;}
.ya{bottom:952.773333pt;}
.y3c{bottom:954.533333pt;}
.y9{bottom:968.133333pt;}
.y3b{bottom:974.053333pt;}
.y88{bottom:979.333333pt;}
.y8{bottom:983.493333pt;}
.y3a{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y39{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1036.000000pt;}
.y1{bottom:1049.760000pt;}
.h14{height:19.569375pt;}
.hb{height:24.131250pt;}
.h2{height:24.800000pt;}
.h13{height:25.918750pt;}
.h15{height:29.940625pt;}
.hd{height:30.254687pt;}
.h16{height:31.217812pt;}
.h6{height:35.342500pt;}
.he{height:37.090625pt;}
.h7{height:37.479688pt;}
.h10{height:38.361562pt;}
.hf{height:40.488438pt;}
.h5{height:41.112500pt;}
.h12{height:41.543750pt;}
.h17{height:42.521250pt;}
.hc{height:42.691250pt;}
.h4{height:42.866250pt;}
.h3{height:44.246250pt;}
.h11{height:44.878750pt;}
.ha{height:47.310625pt;}
.h9{height:48.768750pt;}
.h8{height:49.916250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.093333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x17{left:99.711988pt;}
.x23{left:103.391988pt;}
.x9{left:104.671988pt;}
.x5{left:118.111988pt;}
.x15{left:120.031988pt;}
.x30{left:124.511988pt;}
.x11{left:128.991976pt;}
.x6{left:133.311988pt;}
.xe{left:144.026655pt;}
.x3{left:152.826667pt;}
.x1e{left:157.306655pt;}
.x1f{left:158.266643pt;}
.x28{left:161.626643pt;}
.x20{left:162.906655pt;}
.x2c{left:168.026655pt;}
.x29{left:170.906655pt;}
.xa{left:172.826655pt;}
.x1c{left:225.946643pt;}
.x1d{left:230.586655pt;}
.x24{left:238.426643pt;}
.x2d{left:240.026655pt;}
.x25{left:247.746655pt;}
.x8{left:264.866655pt;}
.xb{left:275.266655pt;}
.x16{left:288.066655pt;}
.x2e{left:305.666643pt;}
.x7{left:310.946655pt;}
.x2f{left:314.946655pt;}
.x2a{left:365.826643pt;}
.xd{left:373.506655pt;}
.x2b{left:375.106655pt;}
.xc{left:396.866655pt;}
.x18{left:450.653310pt;}
.x19{left:455.293322pt;}
.x21{left:461.853310pt;}
.x22{left:471.133322pt;}
.xf{left:595.813310pt;}
.x10{left:600.453322pt;}
.x26{left:605.093322pt;}
.x13{left:623.333310pt;}
.x14{left:627.973322pt;}
.x1a{left:641.093310pt;}
.x1b{left:645.733322pt;}
.x27{left:688.613310pt;}
.x12{left:693.253310pt;}
.x4{left:697.893322pt;}
}




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