
    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_eedb3ecedf989a27ba9b7027.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_b256c756b4c1c45d845ed399.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_9f8af621c466e39823e600ca.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_7833d668d7a29f4c18415920.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a7f681004df10e7cbef7b277.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42e260dabe0afdb219b27777.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_8df0db7a9c7e601bf7a6a071.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f07ad4b97f0c88de746b3ff2.woff')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-3.270000px;}
.ls1d{letter-spacing:-1.908000px;}
.lsf{letter-spacing:-1.704000px;}
.lse{letter-spacing:-1.128000px;}
.lsd{letter-spacing:-0.876000px;}
.lsb{letter-spacing:0.000000px;}
.lsc{letter-spacing:1.128000px;}
.ls6{letter-spacing:1.173000px;}
.ls11{letter-spacing:1.230000px;}
.ls2{letter-spacing:1.293000px;}
.ls10{letter-spacing:1.524000px;}
.ls9{letter-spacing:1.525500px;}
.ls18{letter-spacing:1.645500px;}
.ls14{letter-spacing:1.705500px;}
.ls16{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.034000px;}
.ls23{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.250000px;}
.ls24{letter-spacing:2.430000px;}
.ls5{letter-spacing:3.375000px;}
.ls1a{letter-spacing:3.435000px;}
.ls1f{letter-spacing:3.555000px;}
.ls25{letter-spacing:6.750000px;}
.ls8{letter-spacing:8.055000px;}
.ls0{letter-spacing:12.375000px;}
.ls20{letter-spacing:12.495000px;}
.ls1c{letter-spacing:12.555000px;}
.ls7{letter-spacing:16.875000px;}
.ls4{letter-spacing:21.375000px;}
.ls1e{letter-spacing:21.495000px;}
.ls22{letter-spacing:21.555000px;}
.ls15{letter-spacing:25.875000px;}
.ls3{letter-spacing:30.375000px;}
.ls1b{letter-spacing:43.935000px;}
.lsa{letter-spacing:48.495000px;}
.ls17{letter-spacing:66.555000px;}
.ls21{letter-spacing:70.995000px;}
.ls19{letter-spacing:97.995000px;}
.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;}
}
.ws2{word-spacing:-21.375000px;}
.ws4{word-spacing:-21.159000px;}
.ws3{word-spacing:-20.649000px;}
.ws7{word-spacing:-19.980000px;}
.ws1{word-spacing:-19.125000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.217000px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3{margin-left:-7.879800px;}
._12{margin-left:-5.835900px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._13{width:5.470050px;}
._7{width:7.419750px;}
._10{width:8.731050px;}
._2c{width:10.105500px;}
._15{width:12.130650px;}
._14{width:13.429350px;}
._d{width:16.428600px;}
._11{width:17.624250px;}
._8{width:20.621250px;}
._c{width:22.062750px;}
._19{width:23.082150px;}
._17{width:24.892800px;}
._16{width:26.183550px;}
._18{width:27.746250px;}
._22{width:29.519700px;}
._a{width:30.670200px;}
._b{width:31.930500px;}
._21{width:33.576000px;}
._9{width:34.941150px;}
._2d{width:36.741750px;}
._25{width:39.037050px;}
._1d{width:40.128600px;}
._1c{width:43.715550px;}
._1a{width:47.948700px;}
._1b{width:49.217100px;}
._f{width:52.074300px;}
._e{width:53.132100px;}
._26{width:61.884900px;}
._1e{width:65.692350px;}
._20{width:67.444350px;}
._1f{width:68.871600px;}
._2b{width:71.472150px;}
._29{width:72.883800px;}
._28{width:74.769000px;}
._2a{width:76.178550px;}
._27{width:84.680400px;}
._23{width:93.849450px;}
._24{width:95.148600px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(29,27,17);}
.fc3{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y3b{bottom:-3.375000px;}
.y0{bottom:0.000000px;}
.y40{bottom:6.735000px;}
.y32{bottom:6.750000px;}
.y4c{bottom:6.765000px;}
.y42{bottom:6.780000px;}
.y34{bottom:6.795000px;}
.y3d{bottom:7.875000px;}
.y36{bottom:9.000000px;}
.y3a{bottom:12.375000px;}
.y5{bottom:14.662500px;}
.y38{bottom:19.125000px;}
.y3c{bottom:27.000000px;}
.y35{bottom:29.250000px;}
.y39{bottom:30.375000px;}
.y30{bottom:31.530000px;}
.y3{bottom:32.662500px;}
.y37{bottom:42.780000px;}
.y2f{bottom:55.155000px;}
.y4{bottom:61.912500px;}
.y31{bottom:78.825000px;}
.y2d{bottom:130.612500px;}
.y5d{bottom:133.987500px;}
.y2c{bottom:156.480000px;}
.y5c{bottom:159.900000px;}
.y2b{bottom:182.400000px;}
.y5b{bottom:184.650000px;}
.y2a{bottom:208.320000px;}
.y5a{bottom:210.570000px;}
.y29{bottom:234.195000px;}
.y59{bottom:236.445000px;}
.y28{bottom:260.100000px;}
.y58{bottom:262.350000px;}
.y27{bottom:286.005000px;}
.y57{bottom:288.270000px;}
.y26{bottom:311.895000px;}
.y56{bottom:314.130000px;}
.y25{bottom:336.675000px;}
.y55{bottom:340.050000px;}
.y24{bottom:362.550000px;}
.y54{bottom:365.970000px;}
.y23{bottom:388.455000px;}
.y53{bottom:391.830000px;}
.y22{bottom:414.375000px;}
.y52{bottom:417.750000px;}
.y51{bottom:435.750000px;}
.y21{bottom:440.250000px;}
.y50{bottom:460.530000px;}
.y20{bottom:466.170000px;}
.y4f{bottom:485.280000px;}
.y1f{bottom:492.075000px;}
.y4e{bottom:510.075000px;}
.y1e{bottom:517.950000px;}
.y4d{bottom:534.855000px;}
.y1d{bottom:543.870000px;}
.y4b{bottom:559.605000px;}
.y1c{bottom:569.745000px;}
.y4a{bottom:583.275000px;}
.y1b{bottom:595.650000px;}
.y49{bottom:608.025000px;}
.y1a{bottom:621.570000px;}
.y48{bottom:632.820000px;}
.y19{bottom:646.320000px;}
.y47{bottom:657.570000px;}
.y18{bottom:672.225000px;}
.y46{bottom:682.350000px;}
.y17{bottom:698.100000px;}
.y45{bottom:706.005000px;}
.y16{bottom:724.005000px;}
.y44{bottom:730.755000px;}
.y15{bottom:749.925000px;}
.y43{bottom:755.550000px;}
.y14{bottom:775.800000px;}
.y41{bottom:780.300000px;}
.y13{bottom:801.705000px;}
.y3f{bottom:805.095000px;}
.y12{bottom:827.625000px;}
.y3e{bottom:829.875000px;}
.y11{bottom:853.500000px;}
.y2e{bottom:878.295000px;}
.y10{bottom:879.420000px;}
.yf{bottom:905.295000px;}
.ye{bottom:931.200000px;}
.y33{bottom:950.325000px;}
.yd{bottom:957.120000px;}
.yc{bottom:981.870000px;}
.yb{bottom:1007.775000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h15{height:23.625000px;}
.h16{height:23.647500px;}
.h10{height:23.662500px;}
.h17{height:24.750000px;}
.h14{height:24.787500px;}
.h5{height:40.537500px;}
.he{height:50.484375px;}
.hc{height:53.639648px;}
.ha{height:63.052734px;}
.h7{height:66.153076px;}
.h3{height:68.027344px;}
.h11{height:70.664049px;}
.h13{height:70.664051px;}
.hf{height:70.664062px;}
.h12{height:70.897500px;}
.h9{height:75.043213px;}
.hb{height:75.080566px;}
.h8{height:77.097656px;}
.h2{height:86.319141px;}
.h4{height:95.389453px;}
.hd{height:95.685000px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.we{width:70.987500px;}
.wa{width:72.112500px;}
.w2{width:75.487500px;}
.w7{width:76.575000px;}
.wd{width:76.612500px;}
.w9{width:77.700000px;}
.w8{width:77.737500px;}
.w4{width:86.737500px;}
.wc{width:91.237500px;}
.w6{width:94.612500px;}
.w3{width:125.062500px;}
.w5{width:384.120000px;}
.wb{width:693.900000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x11{left:-18.030000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x12{left:6.750000px;}
.xd{left:7.912500px;}
.x23{left:19.125000px;}
.x1b{left:20.295000px;}
.x1e{left:24.795000px;}
.xc{left:29.287500px;}
.x13{left:31.545000px;}
.x1c{left:45.090000px;}
.x14{left:56.325000px;}
.x1d{left:69.870000px;}
.x15{left:79.950000px;}
.xb{left:100.237500px;}
.x16{left:104.730000px;}
.x1{left:108.149987px;}
.x6{left:129.524987px;}
.x8{left:150.929987px;}
.x4{left:174.599987px;}
.x5{left:192.644987px;}
.xe{left:226.425000px;}
.xf{left:314.295000px;}
.x1f{left:317.670000px;}
.xa{left:332.294987px;}
.x7{left:369.494987px;}
.x25{left:388.619987px;}
.x17{left:391.995000px;}
.x20{left:395.370000px;}
.x9{left:397.619987px;}
.x18{left:469.725000px;}
.x21{left:473.100000px;}
.x19{left:548.595000px;}
.x22{left:550.845000px;}
.x1a{left:626.280000px;}
.x24{left:627.405000px;}
.x10{left:699.525000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-2.906667pt;}
.ls1d{letter-spacing:-1.696000pt;}
.lsf{letter-spacing:-1.514667pt;}
.lse{letter-spacing:-1.002667pt;}
.lsd{letter-spacing:-0.778667pt;}
.lsb{letter-spacing:0.000000pt;}
.lsc{letter-spacing:1.002667pt;}
.ls6{letter-spacing:1.042667pt;}
.ls11{letter-spacing:1.093333pt;}
.ls2{letter-spacing:1.149333pt;}
.ls10{letter-spacing:1.354667pt;}
.ls9{letter-spacing:1.356000pt;}
.ls18{letter-spacing:1.462667pt;}
.ls14{letter-spacing:1.516000pt;}
.ls16{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.808000pt;}
.ls23{letter-spacing:1.904000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls24{letter-spacing:2.160000pt;}
.ls5{letter-spacing:3.000000pt;}
.ls1a{letter-spacing:3.053333pt;}
.ls1f{letter-spacing:3.160000pt;}
.ls25{letter-spacing:6.000000pt;}
.ls8{letter-spacing:7.160000pt;}
.ls0{letter-spacing:11.000000pt;}
.ls20{letter-spacing:11.106667pt;}
.ls1c{letter-spacing:11.160000pt;}
.ls7{letter-spacing:15.000000pt;}
.ls4{letter-spacing:19.000000pt;}
.ls1e{letter-spacing:19.106667pt;}
.ls22{letter-spacing:19.160000pt;}
.ls15{letter-spacing:23.000000pt;}
.ls3{letter-spacing:27.000000pt;}
.ls1b{letter-spacing:39.053333pt;}
.lsa{letter-spacing:43.106667pt;}
.ls17{letter-spacing:59.160000pt;}
.ls21{letter-spacing:63.106667pt;}
.ls19{letter-spacing:87.106667pt;}
.ws2{word-spacing:-19.000000pt;}
.ws4{word-spacing:-18.808000pt;}
.ws3{word-spacing:-18.354667pt;}
.ws7{word-spacing:-17.760000pt;}
.ws1{word-spacing:-17.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.304000pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3{margin-left:-7.004267pt;}
._12{margin-left:-5.187467pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._13{width:4.862267pt;}
._7{width:6.595333pt;}
._10{width:7.760933pt;}
._2c{width:8.982667pt;}
._15{width:10.782800pt;}
._14{width:11.937200pt;}
._d{width:14.603200pt;}
._11{width:15.666000pt;}
._8{width:18.330000pt;}
._c{width:19.611333pt;}
._19{width:20.517467pt;}
._17{width:22.126933pt;}
._16{width:23.274267pt;}
._18{width:24.663333pt;}
._22{width:26.239733pt;}
._a{width:27.262400pt;}
._b{width:28.382667pt;}
._21{width:29.845333pt;}
._9{width:31.058800pt;}
._2d{width:32.659333pt;}
._25{width:34.699600pt;}
._1d{width:35.669867pt;}
._1c{width:38.858267pt;}
._1a{width:42.621067pt;}
._1b{width:43.748533pt;}
._f{width:46.288267pt;}
._e{width:47.228533pt;}
._26{width:55.008800pt;}
._1e{width:58.393200pt;}
._20{width:59.950533pt;}
._1f{width:61.219200pt;}
._2b{width:63.530800pt;}
._29{width:64.785600pt;}
._28{width:66.461333pt;}
._2a{width:67.714267pt;}
._27{width:75.271467pt;}
._23{width:83.421733pt;}
._24{width:84.576533pt;}
.fs1{font-size:60.000000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y3b{bottom:-3.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:5.986667pt;}
.y32{bottom:6.000000pt;}
.y4c{bottom:6.013333pt;}
.y42{bottom:6.026667pt;}
.y34{bottom:6.040000pt;}
.y3d{bottom:7.000000pt;}
.y36{bottom:8.000000pt;}
.y3a{bottom:11.000000pt;}
.y5{bottom:13.033333pt;}
.y38{bottom:17.000000pt;}
.y3c{bottom:24.000000pt;}
.y35{bottom:26.000000pt;}
.y39{bottom:27.000000pt;}
.y30{bottom:28.026667pt;}
.y3{bottom:29.033333pt;}
.y37{bottom:38.026667pt;}
.y2f{bottom:49.026667pt;}
.y4{bottom:55.033333pt;}
.y31{bottom:70.066667pt;}
.y2d{bottom:116.100000pt;}
.y5d{bottom:119.100000pt;}
.y2c{bottom:139.093333pt;}
.y5c{bottom:142.133333pt;}
.y2b{bottom:162.133333pt;}
.y5b{bottom:164.133333pt;}
.y2a{bottom:185.173333pt;}
.y5a{bottom:187.173333pt;}
.y29{bottom:208.173333pt;}
.y59{bottom:210.173333pt;}
.y28{bottom:231.200000pt;}
.y58{bottom:233.200000pt;}
.y27{bottom:254.226667pt;}
.y57{bottom:256.240000pt;}
.y26{bottom:277.240000pt;}
.y56{bottom:279.226667pt;}
.y25{bottom:299.266667pt;}
.y55{bottom:302.266667pt;}
.y24{bottom:322.266667pt;}
.y54{bottom:325.306667pt;}
.y23{bottom:345.293333pt;}
.y53{bottom:348.293333pt;}
.y22{bottom:368.333333pt;}
.y52{bottom:371.333333pt;}
.y51{bottom:387.333333pt;}
.y21{bottom:391.333333pt;}
.y50{bottom:409.360000pt;}
.y20{bottom:414.373333pt;}
.y4f{bottom:431.360000pt;}
.y1f{bottom:437.400000pt;}
.y4e{bottom:453.400000pt;}
.y1e{bottom:460.400000pt;}
.y4d{bottom:475.426667pt;}
.y1d{bottom:483.440000pt;}
.y4b{bottom:497.426667pt;}
.y1c{bottom:506.440000pt;}
.y4a{bottom:518.466667pt;}
.y1b{bottom:529.466667pt;}
.y49{bottom:540.466667pt;}
.y1a{bottom:552.506667pt;}
.y48{bottom:562.506667pt;}
.y19{bottom:574.506667pt;}
.y47{bottom:584.506667pt;}
.y18{bottom:597.533333pt;}
.y46{bottom:606.533333pt;}
.y17{bottom:620.533333pt;}
.y45{bottom:627.560000pt;}
.y16{bottom:643.560000pt;}
.y44{bottom:649.560000pt;}
.y15{bottom:666.600000pt;}
.y43{bottom:671.600000pt;}
.y14{bottom:689.600000pt;}
.y41{bottom:693.600000pt;}
.y13{bottom:712.626667pt;}
.y3f{bottom:715.640000pt;}
.y12{bottom:735.666667pt;}
.y3e{bottom:737.666667pt;}
.y11{bottom:758.666667pt;}
.y2e{bottom:780.706667pt;}
.y10{bottom:781.706667pt;}
.yf{bottom:804.706667pt;}
.ye{bottom:827.733333pt;}
.y33{bottom:844.733333pt;}
.yd{bottom:850.773333pt;}
.yc{bottom:872.773333pt;}
.yb{bottom:895.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h15{height:21.000000pt;}
.h16{height:21.020000pt;}
.h10{height:21.033333pt;}
.h17{height:22.000000pt;}
.h14{height:22.033333pt;}
.h5{height:36.033333pt;}
.he{height:44.875000pt;}
.hc{height:47.679688pt;}
.ha{height:56.046875pt;}
.h7{height:58.802734pt;}
.h3{height:60.468750pt;}
.h11{height:62.812488pt;}
.h13{height:62.812490pt;}
.hf{height:62.812500pt;}
.h12{height:63.020000pt;}
.h9{height:66.705078pt;}
.hb{height:66.738281pt;}
.h8{height:68.531250pt;}
.h2{height:76.728125pt;}
.h4{height:84.790625pt;}
.hd{height:85.053333pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.we{width:63.100000pt;}
.wa{width:64.100000pt;}
.w2{width:67.100000pt;}
.w7{width:68.066667pt;}
.wd{width:68.100000pt;}
.w9{width:69.066667pt;}
.w8{width:69.100000pt;}
.w4{width:77.100000pt;}
.wc{width:81.100000pt;}
.w6{width:84.100000pt;}
.w3{width:111.166667pt;}
.w5{width:341.440000pt;}
.wb{width:616.800000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x11{left:-16.026667pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.000000pt;}
.xd{left:7.033333pt;}
.x23{left:17.000000pt;}
.x1b{left:18.040000pt;}
.x1e{left:22.040000pt;}
.xc{left:26.033333pt;}
.x13{left:28.040000pt;}
.x1c{left:40.080000pt;}
.x14{left:50.066667pt;}
.x1d{left:62.106667pt;}
.x15{left:71.066667pt;}
.xb{left:89.100000pt;}
.x16{left:93.093333pt;}
.x1{left:96.133322pt;}
.x6{left:115.133322pt;}
.x8{left:134.159988pt;}
.x4{left:155.199988pt;}
.x5{left:171.239988pt;}
.xe{left:201.266667pt;}
.xf{left:279.373333pt;}
.x1f{left:282.373333pt;}
.xa{left:295.373322pt;}
.x7{left:328.439988pt;}
.x25{left:345.439988pt;}
.x17{left:348.440000pt;}
.x20{left:351.440000pt;}
.x9{left:353.439988pt;}
.x18{left:417.533333pt;}
.x21{left:420.533333pt;}
.x19{left:487.640000pt;}
.x22{left:489.640000pt;}
.x1a{left:556.693333pt;}
.x24{left:557.693333pt;}
.x10{left:621.800000pt;}
.x2{left:712.893333pt;}
}




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