
    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_617ac6fe94b1d531bc215912.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e83cd7302eca90183a4e06a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b10535a89209c74ea970e659.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2f6380b9409acfb1f019eeb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_86dbbd0f219c5f61e6876102.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eca31778cc97de641467f0ee.woff')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_6896de83343ca75a8c98dd32.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_f15777c821119de71329f5d0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f6b905ffafe1068d687b85e3.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.341400px;}
.lse{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.540000px;}
.ls1b{letter-spacing:1.620000px;}
.ls19{letter-spacing:1.980000px;}
.ls9{letter-spacing:3.060000px;}
.ls0{letter-spacing:3.420000px;}
.ls17{letter-spacing:5.220000px;}
.ls13{letter-spacing:7.020000px;}
.ls2{letter-spacing:7.380000px;}
.ls15{letter-spacing:7.740000px;}
.ls25{letter-spacing:10.620000px;}
.ls26{letter-spacing:12.060000px;}
.lsd{letter-spacing:12.420000px;}
.ls18{letter-spacing:12.780000px;}
.ls16{letter-spacing:14.220000px;}
.ls1f{letter-spacing:15.660000px;}
.ls22{letter-spacing:19.980000px;}
.ls20{letter-spacing:21.060000px;}
.ls1d{letter-spacing:22.320000px;}
.lsc{letter-spacing:28.620000px;}
.ls1e{letter-spacing:30.780000px;}
.ls1c{letter-spacing:40.860000px;}
.lsb{letter-spacing:41.381280px;}
.ls1a{letter-spacing:50.220000px;}
.ls23{letter-spacing:53.820000px;}
.ls24{letter-spacing:76.860000px;}
.ls14{letter-spacing:168.101280px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.410400px;}
.ws9{word-spacing:-21.329400px;}
.ws7{word-spacing:-21.312720px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.718600px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-5.981040px;}
._1b{margin-left:-4.770720px;}
._2a{margin-left:-3.396960px;}
._12{margin-left:-2.389680px;}
._0{margin-left:-1.126080px;}
._7{width:1.045920px;}
._6{width:2.343840px;}
._f{width:3.368640px;}
._8{width:4.464720px;}
._14{width:6.317520px;}
._d{width:7.497360px;}
._25{width:8.529360px;}
._b{width:9.887040px;}
._19{width:11.221680px;}
._21{width:12.800400px;}
._1e{width:14.489280px;}
._c{width:15.615360px;}
._13{width:16.950480px;}
._10{width:17.974080px;}
._11{width:18.990480px;}
._31{width:20.419200px;}
._5{width:22.249440px;}
._4{width:23.675040px;}
._24{width:25.462080px;}
._e{width:27.125280px;}
._26{width:28.131840px;}
._9{width:29.147040px;}
._a{width:30.273120px;}
._20{width:31.744080px;}
._2b{width:32.931600px;}
._23{width:34.005120px;}
._15{width:35.253120px;}
._16{width:36.591120px;}
._2d{width:38.209920px;}
._2c{width:39.792240px;}
._1d{width:40.852320px;}
._17{width:41.898240px;}
._18{width:43.463760px;}
._1a{width:47.258640px;}
._35{width:48.940080px;}
._2e{width:50.088720px;}
._28{width:51.535680px;}
._27{width:52.884240px;}
._1f{width:54.166320px;}
._32{width:56.487360px;}
._22{width:67.556400px;}
._30{width:70.252080px;}
._2f{width:71.466480px;}
._34{width:77.149440px;}
._33{width:78.199680px;}
._29{width:80.227440px;}
._1{width:430.638720px;}
._2{width:612.782880px;}
._3{width:915.300000px;}
.fc3{color:rgb(31,78,121);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(196,89,17);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y4{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.180000px;}
.y6{bottom:4.500000px;}
.y2d{bottom:68.040000px;}
.y7{bottom:71.280000px;}
.y2c{bottom:92.160000px;}
.y5{bottom:97.560000px;}
.y2b{bottom:116.460000px;}
.y3{bottom:129.060000px;}
.y24{bottom:139.500000px;}
.y2a{bottom:140.220000px;}
.y23{bottom:144.756000px;}
.y22{bottom:156.810000px;}
.y21{bottom:162.030000px;}
.y29{bottom:164.310000px;}
.y20{bottom:174.090000px;}
.y5d{bottom:174.630000px;}
.y48{bottom:174.990000px;}
.y4c{bottom:179.310000px;}
.y28{bottom:188.430000px;}
.y1f{bottom:191.190000px;}
.y1e{bottom:196.410000px;}
.y53{bottom:208.470000px;}
.y1d{bottom:209.370000px;}
.y47{bottom:210.810000px;}
.y52{bottom:213.690000px;}
.y51{bottom:226.650000px;}
.y46{bottom:246.990000px;}
.y1c{bottom:275.790000px;}
.y45{bottom:283.350000px;}
.y1b{bottom:311.970000px;}
.y44{bottom:319.530000px;}
.y50{bottom:327.090000px;}
.y1a{bottom:348.330000px;}
.y43{bottom:355.710000px;}
.y59{bottom:363.270000px;}
.y19{bottom:384.510000px;}
.y42{bottom:391.890000px;}
.y17{bottom:420.735000px;}
.y5c{bottom:427.935000px;}
.y18{bottom:428.295000px;}
.y4f{bottom:435.855000px;}
.y15{bottom:456.915000px;}
.y16{bottom:464.475000px;}
.y14{bottom:493.275000px;}
.y41{bottom:500.655000px;}
.y13{bottom:529.095000px;}
.y40{bottom:536.835000px;}
.y58{bottom:544.395000px;}
.y12{bottom:565.635000px;}
.y3f{bottom:573.015000px;}
.y55{bottom:580.575000px;}
.y11{bottom:601.815000px;}
.y3e{bottom:609.375000px;}
.y10{bottom:638.175000px;}
.y3d{bottom:645.585000px;}
.y4b{bottom:653.145000px;}
.yf{bottom:674.385000px;}
.y3c{bottom:681.765000px;}
.y4e{bottom:689.325000px;}
.ye{bottom:710.565000px;}
.y4d{bottom:717.585000px;}
.y3b{bottom:717.945000px;}
.yd{bottom:746.745000px;}
.y3a{bottom:754.305000px;}
.yc{bottom:782.925000px;}
.y39{bottom:790.485000px;}
.yb{bottom:819.285000px;}
.y38{bottom:826.665000px;}
.y57{bottom:834.225000px;}
.ya{bottom:855.465000px;}
.y36{bottom:862.845000px;}
.y37{bottom:870.405000px;}
.y9{bottom:891.645000px;}
.y35{bottom:899.250000px;}
.y8{bottom:927.870000px;}
.y34{bottom:935.430000px;}
.y25{bottom:946.950000px;}
.y27{bottom:946.980000px;}
.y5b{bottom:971.250000px;}
.y33{bottom:971.610000px;}
.y56{bottom:979.170000px;}
.y32{bottom:1007.790000px;}
.y54{bottom:1015.350000px;}
.y5e{bottom:1043.070000px;}
.y31{bottom:1043.970000px;}
.y30{bottom:1080.330000px;}
.y4a{bottom:1087.890000px;}
.y2f{bottom:1116.510000px;}
.y49{bottom:1152.360000px;}
.y2e{bottom:1152.720000px;}
.y5a{bottom:1160.280000px;}
.y2{bottom:1175.580000px;}
.y1{bottom:1194.480000px;}
.h3{height:6.660000px;}
.h5{height:20.700000px;}
.he{height:38.158594px;}
.hd{height:52.998047px;}
.h4{height:58.651172px;}
.hc{height:59.066719px;}
.h9{height:61.575820px;}
.h7{height:65.884219px;}
.h2{height:66.757500px;}
.h6{height:70.664062px;}
.h8{height:82.635820px;}
.ha{height:82.676953px;}
.h12{height:83.787539px;}
.hb{height:84.898125px;}
.h11{height:86.585445px;}
.h10{height:207.900000px;}
.hf{height:207.930000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:164.730000px;}
.w4{width:302.115000px;}
.w3{width:392.295000px;}
.w7{width:559.260000px;}
.w8{width:559.365000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x11{left:14.655000px;}
.x13{left:113.940000px;}
.x1{left:127.655987px;}
.xe{left:132.515987px;}
.x26{left:137.375987px;}
.xf{left:156.639000px;}
.x14{left:164.550000px;}
.x6{left:170.129987px;}
.x12{left:226.005000px;}
.xb{left:267.149973px;}
.xc{left:274.034987px;}
.x2b{left:275.114973px;}
.x5{left:276.885000px;}
.x15{left:279.750000px;}
.x2c{left:288.794987px;}
.x10{left:292.320000px;}
.x4{left:293.475000px;}
.x16{left:302.654973px;}
.x1c{left:303.914973px;}
.x17{left:309.494987px;}
.x1d{left:310.754987px;}
.xd{left:343.694987px;}
.x29{left:386.534973px;}
.x24{left:390.134973px;}
.x2a{left:400.214987px;}
.x25{left:403.814987px;}
.x20{left:442.514973px;}
.x21{left:449.354987px;}
.x3{left:519.945000px;}
.x22{left:521.204973px;}
.x23{left:534.884987px;}
.x1a{left:571.604973px;}
.x1b{left:578.444987px;}
.x27{left:663.089973px;}
.x7{left:674.969973px;}
.x28{left:676.769987px;}
.x8{left:681.809987px;}
.x18{left:707.369973px;}
.x1e{left:712.049973px;}
.x19{left:714.209987px;}
.x1f{left:718.889987px;}
.x2d{left:815.759973px;}
.x9{left:822.599973px;}
.xa{left:829.439987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.303467pt;}
.lse{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls19{letter-spacing:1.760000pt;}
.ls9{letter-spacing:2.720000pt;}
.ls0{letter-spacing:3.040000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls13{letter-spacing:6.240000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls15{letter-spacing:6.880000pt;}
.ls25{letter-spacing:9.440000pt;}
.ls26{letter-spacing:10.720000pt;}
.lsd{letter-spacing:11.040000pt;}
.ls18{letter-spacing:11.360000pt;}
.ls16{letter-spacing:12.640000pt;}
.ls1f{letter-spacing:13.920000pt;}
.ls22{letter-spacing:17.760000pt;}
.ls20{letter-spacing:18.720000pt;}
.ls1d{letter-spacing:19.840000pt;}
.lsc{letter-spacing:25.440000pt;}
.ls1e{letter-spacing:27.360000pt;}
.ls1c{letter-spacing:36.320000pt;}
.lsb{letter-spacing:36.783360pt;}
.ls1a{letter-spacing:44.640000pt;}
.ls23{letter-spacing:47.840000pt;}
.ls24{letter-spacing:68.320000pt;}
.ls14{letter-spacing:149.423360pt;}
.ws4{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.031467pt;}
.ws9{word-spacing:-18.959467pt;}
.ws7{word-spacing:-18.944640pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.416533pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-5.316480pt;}
._1b{margin-left:-4.240640pt;}
._2a{margin-left:-3.019520pt;}
._12{margin-left:-2.124160pt;}
._0{margin-left:-1.000960pt;}
._7{width:0.929707pt;}
._6{width:2.083413pt;}
._f{width:2.994347pt;}
._8{width:3.968640pt;}
._14{width:5.615573pt;}
._d{width:6.664320pt;}
._25{width:7.581653pt;}
._b{width:8.788480pt;}
._19{width:9.974827pt;}
._21{width:11.378133pt;}
._1e{width:12.879360pt;}
._c{width:13.880320pt;}
._13{width:15.067093pt;}
._10{width:15.976960pt;}
._11{width:16.880427pt;}
._31{width:18.150400pt;}
._5{width:19.777280pt;}
._4{width:21.044480pt;}
._24{width:22.632960pt;}
._e{width:24.111360pt;}
._26{width:25.006080pt;}
._9{width:25.908480pt;}
._a{width:26.909440pt;}
._20{width:28.216960pt;}
._2b{width:29.272533pt;}
._23{width:30.226773pt;}
._15{width:31.336107pt;}
._16{width:32.525440pt;}
._2d{width:33.964373pt;}
._2c{width:35.370880pt;}
._1d{width:36.313173pt;}
._17{width:37.242880pt;}
._18{width:38.634453pt;}
._1a{width:42.007680pt;}
._35{width:43.502293pt;}
._2e{width:44.523307pt;}
._28{width:45.809493pt;}
._27{width:47.008213pt;}
._1f{width:48.147840pt;}
._32{width:50.210987pt;}
._22{width:60.050133pt;}
._30{width:62.446293pt;}
._2f{width:63.525760pt;}
._34{width:68.577280pt;}
._33{width:69.510827pt;}
._29{width:71.313280pt;}
._1{width:382.789973pt;}
._2{width:544.695893pt;}
._3{width:813.600000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y4{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.160000pt;}
.y6{bottom:4.000000pt;}
.y2d{bottom:60.480000pt;}
.y7{bottom:63.360000pt;}
.y2c{bottom:81.920000pt;}
.y5{bottom:86.720000pt;}
.y2b{bottom:103.520000pt;}
.y3{bottom:114.720000pt;}
.y24{bottom:124.000000pt;}
.y2a{bottom:124.640000pt;}
.y23{bottom:128.672000pt;}
.y22{bottom:139.386667pt;}
.y21{bottom:144.026667pt;}
.y29{bottom:146.053333pt;}
.y20{bottom:154.746667pt;}
.y5d{bottom:155.226667pt;}
.y48{bottom:155.546667pt;}
.y4c{bottom:159.386667pt;}
.y28{bottom:167.493333pt;}
.y1f{bottom:169.946667pt;}
.y1e{bottom:174.586667pt;}
.y53{bottom:185.306667pt;}
.y1d{bottom:186.106667pt;}
.y47{bottom:187.386667pt;}
.y52{bottom:189.946667pt;}
.y51{bottom:201.466667pt;}
.y46{bottom:219.546667pt;}
.y1c{bottom:245.146667pt;}
.y45{bottom:251.866667pt;}
.y1b{bottom:277.306667pt;}
.y44{bottom:284.026667pt;}
.y50{bottom:290.746667pt;}
.y1a{bottom:309.626667pt;}
.y43{bottom:316.186667pt;}
.y59{bottom:322.906667pt;}
.y19{bottom:341.786667pt;}
.y42{bottom:348.346667pt;}
.y17{bottom:373.986667pt;}
.y5c{bottom:380.386667pt;}
.y18{bottom:380.706667pt;}
.y4f{bottom:387.426667pt;}
.y15{bottom:406.146667pt;}
.y16{bottom:412.866667pt;}
.y14{bottom:438.466667pt;}
.y41{bottom:445.026667pt;}
.y13{bottom:470.306667pt;}
.y40{bottom:477.186667pt;}
.y58{bottom:483.906667pt;}
.y12{bottom:502.786667pt;}
.y3f{bottom:509.346667pt;}
.y55{bottom:516.066667pt;}
.y11{bottom:534.946667pt;}
.y3e{bottom:541.666667pt;}
.y10{bottom:567.266667pt;}
.y3d{bottom:573.853333pt;}
.y4b{bottom:580.573333pt;}
.yf{bottom:599.453333pt;}
.y3c{bottom:606.013333pt;}
.y4e{bottom:612.733333pt;}
.ye{bottom:631.613333pt;}
.y4d{bottom:637.853333pt;}
.y3b{bottom:638.173333pt;}
.yd{bottom:663.773333pt;}
.y3a{bottom:670.493333pt;}
.yc{bottom:695.933333pt;}
.y39{bottom:702.653333pt;}
.yb{bottom:728.253333pt;}
.y38{bottom:734.813333pt;}
.y57{bottom:741.533333pt;}
.ya{bottom:760.413333pt;}
.y36{bottom:766.973333pt;}
.y37{bottom:773.693333pt;}
.y9{bottom:792.573333pt;}
.y35{bottom:799.333333pt;}
.y8{bottom:824.773333pt;}
.y34{bottom:831.493333pt;}
.y25{bottom:841.733333pt;}
.y27{bottom:841.760000pt;}
.y5b{bottom:863.333333pt;}
.y33{bottom:863.653333pt;}
.y56{bottom:870.373333pt;}
.y32{bottom:895.813333pt;}
.y54{bottom:902.533333pt;}
.y5e{bottom:927.173333pt;}
.y31{bottom:927.973333pt;}
.y30{bottom:960.293333pt;}
.y4a{bottom:967.013333pt;}
.y2f{bottom:992.453333pt;}
.y49{bottom:1024.320000pt;}
.y2e{bottom:1024.640000pt;}
.y5a{bottom:1031.360000pt;}
.y2{bottom:1044.960000pt;}
.y1{bottom:1061.760000pt;}
.h3{height:5.920000pt;}
.h5{height:18.400000pt;}
.he{height:33.918750pt;}
.hd{height:47.109375pt;}
.h4{height:52.134375pt;}
.hc{height:52.503750pt;}
.h9{height:54.734062pt;}
.h7{height:58.563750pt;}
.h2{height:59.340000pt;}
.h6{height:62.812500pt;}
.h8{height:73.454062pt;}
.ha{height:73.490625pt;}
.h12{height:74.477812pt;}
.hb{height:75.465000pt;}
.h11{height:76.964840pt;}
.h10{height:184.800000pt;}
.hf{height:184.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:146.426667pt;}
.w4{width:268.546667pt;}
.w3{width:348.706667pt;}
.w7{width:497.120000pt;}
.w8{width:497.213333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x11{left:13.026667pt;}
.x13{left:101.280000pt;}
.x1{left:113.471988pt;}
.xe{left:117.791988pt;}
.x26{left:122.111988pt;}
.xf{left:139.234667pt;}
.x14{left:146.266667pt;}
.x6{left:151.226655pt;}
.x12{left:200.893333pt;}
.xb{left:237.466643pt;}
.xc{left:243.586655pt;}
.x2b{left:244.546643pt;}
.x5{left:246.120000pt;}
.x15{left:248.666667pt;}
.x2c{left:256.706655pt;}
.x10{left:259.840000pt;}
.x4{left:260.866667pt;}
.x16{left:269.026643pt;}
.x1c{left:270.146643pt;}
.x17{left:275.106655pt;}
.x1d{left:276.226655pt;}
.xd{left:305.506655pt;}
.x29{left:343.586643pt;}
.x24{left:346.786643pt;}
.x2a{left:355.746655pt;}
.x25{left:358.946655pt;}
.x20{left:393.346643pt;}
.x21{left:399.426655pt;}
.x3{left:462.173333pt;}
.x22{left:463.293310pt;}
.x23{left:475.453322pt;}
.x1a{left:508.093310pt;}
.x1b{left:514.173322pt;}
.x27{left:589.413310pt;}
.x7{left:599.973310pt;}
.x28{left:601.573322pt;}
.x8{left:606.053322pt;}
.x18{left:628.773310pt;}
.x1e{left:632.933310pt;}
.x19{left:634.853322pt;}
.x1f{left:639.013322pt;}
.x2d{left:725.119976pt;}
.x9{left:731.199976pt;}
.xa{left:737.279988pt;}
}




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