
    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_559cb08909ca5dc822c37d0f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')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_9d10a42a5213a7bd09242a9c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_11c0460ab61fa2f651922575.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_8fd3fe691abad9eeeb0432af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f9cac3eb468151f33478666.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_611d98af94727d97f1067612.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bcee6b5f1513910aaa4ee287.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_661f63251f026d3cdf6e412e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9fc1ee6d07ed6407750b4653.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d17bd730aecc16c5114bd49b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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;}
.ls13{letter-spacing:-2.400000px;}
.ls11{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls2a{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.516000px;}
.ls1b{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.240000px;}
.lsf{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.960000px;}
.ls30{letter-spacing:1.020000px;}
.lsa{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.260000px;}
.ls19{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.380000px;}
.ls17{letter-spacing:1.560000px;}
.ls1d{letter-spacing:1.740000px;}
.ls9{letter-spacing:1.800000px;}
.ls2e{letter-spacing:2.520000px;}
.ls2f{letter-spacing:5.400000px;}
.ls27{letter-spacing:10.200000px;}
.ls28{letter-spacing:12.600000px;}
.ls14{letter-spacing:14.940000px;}
.ls2d{letter-spacing:16.140000px;}
.ls23{letter-spacing:16.200000px;}
.ls24{letter-spacing:16.320000px;}
.ls4{letter-spacing:19.800000px;}
.ls22{letter-spacing:20.940000px;}
.ls3{letter-spacing:21.000000px;}
.ls1c{letter-spacing:28.200000px;}
.ls21{letter-spacing:29.400000px;}
.ls2b{letter-spacing:41.580000px;}
.ls2c{letter-spacing:45.000000px;}
.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:-72.000000px;}
.ws4{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws3{word-spacing:-23.040000px;}
.ws6{word-spacing:-21.504000px;}
.ws7{word-spacing:-21.000000px;}
.ws15{word-spacing:-17.520000px;}
.wsd{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.600000px;}
.wsf{word-spacing:-15.540000px;}
.ws12{word-spacing:-15.480000px;}
.wsb{word-spacing:-15.420000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.760000px;}
.ws10{word-spacing:-14.640000px;}
.wse{word-spacing:-14.580000px;}
.ws14{word-spacing:-13.800000px;}
.wsa{word-spacing:-12.600000px;}
.ws0{word-spacing:-0.072000px;}
.wsc{word-spacing:0.000000px;}
.ws5{word-spacing:0.168000px;}
._19{margin-left:-4.812000px;}
._14{margin-left:-3.696000px;}
._f{margin-left:-2.472000px;}
._0{margin-left:-1.152000px;}
._1{width:1.152000px;}
._10{width:2.940000px;}
._d{width:4.284000px;}
._e{width:5.772000px;}
._1f{width:6.846000px;}
._7{width:7.926000px;}
._8{width:9.408000px;}
._6{width:10.812000px;}
._5{width:12.156000px;}
._3{width:13.224000px;}
._13{width:14.340000px;}
._a{width:15.432000px;}
._9{width:17.424000px;}
._4{width:19.572000px;}
._1b{width:20.940000px;}
._17{width:22.194000px;}
._16{width:23.712000px;}
._15{width:24.756000px;}
._18{width:25.764000px;}
._12{width:27.648000px;}
._11{width:28.956000px;}
._1e{width:30.744000px;}
._2b{width:32.232000px;}
._2c{width:33.672000px;}
._b{width:35.760000px;}
._c{width:36.762000px;}
._1d{width:37.782000px;}
._1a{width:40.128000px;}
._1c{width:41.268000px;}
._23{width:42.522000px;}
._24{width:43.590000px;}
._30{width:44.694000px;}
._2d{width:46.344000px;}
._25{width:47.604000px;}
._26{width:48.798000px;}
._20{width:53.652000px;}
._21{width:55.188000px;}
._2f{width:58.020000px;}
._27{width:60.372000px;}
._28{width:62.004000px;}
._22{width:64.512000px;}
._2a{width:81.120000px;}
._29{width:82.380000px;}
._2e{width:103.632000px;}
._2{width:1512.870000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.600000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.637500px;}
.y29{bottom:88.237500px;}
.y28{bottom:93.637500px;}
.y3b{bottom:103.237500px;}
.y27{bottom:105.637500px;}
.y26{bottom:111.037500px;}
.y25{bottom:122.737500px;}
.y41{bottom:128.137500px;}
.y3d{bottom:138.637500px;}
.y3a{bottom:139.237500px;}
.y24{bottom:140.137500px;}
.y30{bottom:145.537500px;}
.y40{bottom:156.045000px;}
.y23{bottom:157.245000px;}
.y22{bottom:162.630000px;}
.y2f{bottom:173.175000px;}
.y37{bottom:174.675000px;}
.y39{bottom:175.575000px;}
.y21{bottom:190.575000px;}
.y36{bottom:191.775000px;}
.y35{bottom:197.175000px;}
.y38{bottom:211.875000px;}
.y34{bottom:225.075000px;}
.y20{bottom:247.875000px;}
.y1f{bottom:284.175000px;}
.y1e{bottom:320.475000px;}
.y1d{bottom:356.820000px;}
.y1c{bottom:392.820000px;}
.y3f{bottom:400.320000px;}
.y1b{bottom:429.120000px;}
.y33{bottom:436.620000px;}
.y19{bottom:465.405000px;}
.y1a{bottom:472.905000px;}
.y18{bottom:501.705000px;}
.y17{bottom:537.750000px;}
.y3c{bottom:545.250000px;}
.y16{bottom:574.050000px;}
.y43{bottom:581.550000px;}
.y15{bottom:610.350000px;}
.y2e{bottom:617.850000px;}
.y14{bottom:646.650000px;}
.y3e{bottom:654.150000px;}
.y13{bottom:682.680000px;}
.y12{bottom:718.980000px;}
.y32{bottom:726.480000px;}
.y11{bottom:755.280000px;}
.y10{bottom:791.580000px;}
.yf{bottom:827.580000px;}
.yd{bottom:863.925000px;}
.ye{bottom:871.425000px;}
.yb{bottom:900.225000px;}
.yc{bottom:907.725000px;}
.ya{bottom:936.525000px;}
.y9{bottom:972.525000px;}
.y42{bottom:980.025000px;}
.y8{bottom:1008.225000px;}
.y2d{bottom:1008.825000px;}
.y44{bottom:1016.355000px;}
.y7{bottom:1044.570000px;}
.y2c{bottom:1045.155000px;}
.y6{bottom:1080.570000px;}
.y2b{bottom:1081.170000px;}
.y31{bottom:1088.670000px;}
.y5{bottom:1116.855000px;}
.y2a{bottom:1117.455000px;}
.y3{bottom:1154.655000px;}
.y2{bottom:1191.000000px;}
.y1{bottom:1227.900000px;}
.hc{height:38.865234px;}
.h3{height:47.340820px;}
.ha{height:52.998047px;}
.hf{height:53.868164px;}
.h4{height:55.623047px;}
.hd{height:58.886719px;}
.h8{height:58.898438px;}
.h5{height:59.267578px;}
.h10{height:64.775391px;}
.hb{height:65.645508px;}
.h2{height:68.859375px;}
.he{height:70.664062px;}
.h7{height:82.441406px;}
.h6{height:84.656250px;}
.h9{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x1{left:157.830000px;}
.x8{left:170.130000px;}
.x1e{left:175.192500px;}
.x10{left:180.637500px;}
.x12{left:185.775000px;}
.x1b{left:187.875000px;}
.x1f{left:189.075000px;}
.x11{left:190.275000px;}
.x22{left:192.075000px;}
.x25{left:206.775000px;}
.x14{left:209.137500px;}
.x4{left:216.075000px;}
.x28{left:231.937500px;}
.x29{left:245.775000px;}
.x26{left:281.137500px;}
.x27{left:294.975000px;}
.xf{left:343.620000px;}
.x6{left:361.020000px;}
.x13{left:367.020000px;}
.x19{left:374.782500px;}
.x1a{left:381.705000px;}
.x5{left:400.905000px;}
.x15{left:443.512500px;}
.x16{left:450.450000px;}
.x7{left:460.050000px;}
.x9{left:481.312500px;}
.xa{left:488.250000px;}
.xb{left:527.812500px;}
.xc{left:536.280000px;}
.x1c{left:600.742500px;}
.x1d{left:607.695000px;}
.x2{left:611.580000px;}
.x23{left:646.057500px;}
.x24{left:659.925000px;}
.x17{left:663.187500px;}
.x18{left:670.125000px;}
.xd{left:676.687500px;}
.xe{left:684.825000px;}
.x20{left:701.587500px;}
.x2a{left:704.587500px;}
.x2b{left:718.425000px;}
.x21{left:722.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls2a{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.458667pt;}
.ls1b{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.853333pt;}
.ls30{letter-spacing:0.906667pt;}
.lsa{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.120000pt;}
.ls19{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.226667pt;}
.ls17{letter-spacing:1.386667pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls9{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:2.240000pt;}
.ls2f{letter-spacing:4.800000pt;}
.ls27{letter-spacing:9.066667pt;}
.ls28{letter-spacing:11.200000pt;}
.ls14{letter-spacing:13.280000pt;}
.ls2d{letter-spacing:14.346667pt;}
.ls23{letter-spacing:14.400000pt;}
.ls24{letter-spacing:14.506667pt;}
.ls4{letter-spacing:17.600000pt;}
.ls22{letter-spacing:18.613333pt;}
.ls3{letter-spacing:18.666667pt;}
.ls1c{letter-spacing:25.066667pt;}
.ls21{letter-spacing:26.133333pt;}
.ls2b{letter-spacing:36.960000pt;}
.ls2c{letter-spacing:40.000000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws3{word-spacing:-20.480000pt;}
.ws6{word-spacing:-19.114667pt;}
.ws7{word-spacing:-18.666667pt;}
.ws15{word-spacing:-15.573333pt;}
.wsd{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.866667pt;}
.wsf{word-spacing:-13.813333pt;}
.ws12{word-spacing:-13.760000pt;}
.wsb{word-spacing:-13.706667pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.120000pt;}
.ws10{word-spacing:-13.013333pt;}
.wse{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.266667pt;}
.wsa{word-spacing:-11.200000pt;}
.ws0{word-spacing:-0.064000pt;}
.wsc{word-spacing:0.000000pt;}
.ws5{word-spacing:0.149333pt;}
._19{margin-left:-4.277333pt;}
._14{margin-left:-3.285333pt;}
._f{margin-left:-2.197333pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.024000pt;}
._10{width:2.613333pt;}
._d{width:3.808000pt;}
._e{width:5.130667pt;}
._1f{width:6.085333pt;}
._7{width:7.045333pt;}
._8{width:8.362667pt;}
._6{width:9.610667pt;}
._5{width:10.805333pt;}
._3{width:11.754667pt;}
._13{width:12.746667pt;}
._a{width:13.717333pt;}
._9{width:15.488000pt;}
._4{width:17.397333pt;}
._1b{width:18.613333pt;}
._17{width:19.728000pt;}
._16{width:21.077333pt;}
._15{width:22.005333pt;}
._18{width:22.901333pt;}
._12{width:24.576000pt;}
._11{width:25.738667pt;}
._1e{width:27.328000pt;}
._2b{width:28.650667pt;}
._2c{width:29.930667pt;}
._b{width:31.786667pt;}
._c{width:32.677333pt;}
._1d{width:33.584000pt;}
._1a{width:35.669333pt;}
._1c{width:36.682667pt;}
._23{width:37.797333pt;}
._24{width:38.746667pt;}
._30{width:39.728000pt;}
._2d{width:41.194667pt;}
._25{width:42.314667pt;}
._26{width:43.376000pt;}
._20{width:47.690667pt;}
._21{width:49.056000pt;}
._2f{width:51.573333pt;}
._27{width:53.664000pt;}
._28{width:55.114667pt;}
._22{width:57.344000pt;}
._2a{width:72.106667pt;}
._29{width:73.226667pt;}
._2e{width:92.117333pt;}
._2{width:1344.773333pt;}
.fs5{font-size:35.200000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.233333pt;}
.y29{bottom:78.433333pt;}
.y28{bottom:83.233333pt;}
.y3b{bottom:91.766667pt;}
.y27{bottom:93.900000pt;}
.y26{bottom:98.700000pt;}
.y25{bottom:109.100000pt;}
.y41{bottom:113.900000pt;}
.y3d{bottom:123.233333pt;}
.y3a{bottom:123.766667pt;}
.y24{bottom:124.566667pt;}
.y30{bottom:129.366667pt;}
.y40{bottom:138.706667pt;}
.y23{bottom:139.773333pt;}
.y22{bottom:144.560000pt;}
.y2f{bottom:153.933333pt;}
.y37{bottom:155.266667pt;}
.y39{bottom:156.066667pt;}
.y21{bottom:169.400000pt;}
.y36{bottom:170.466667pt;}
.y35{bottom:175.266667pt;}
.y38{bottom:188.333333pt;}
.y34{bottom:200.066667pt;}
.y20{bottom:220.333333pt;}
.y1f{bottom:252.600000pt;}
.y1e{bottom:284.866667pt;}
.y1d{bottom:317.173333pt;}
.y1c{bottom:349.173333pt;}
.y3f{bottom:355.840000pt;}
.y1b{bottom:381.440000pt;}
.y33{bottom:388.106667pt;}
.y19{bottom:413.693333pt;}
.y1a{bottom:420.360000pt;}
.y18{bottom:445.960000pt;}
.y17{bottom:478.000000pt;}
.y3c{bottom:484.666667pt;}
.y16{bottom:510.266667pt;}
.y43{bottom:516.933333pt;}
.y15{bottom:542.533333pt;}
.y2e{bottom:549.200000pt;}
.y14{bottom:574.800000pt;}
.y3e{bottom:581.466667pt;}
.y13{bottom:606.826667pt;}
.y12{bottom:639.093333pt;}
.y32{bottom:645.760000pt;}
.y11{bottom:671.360000pt;}
.y10{bottom:703.626667pt;}
.yf{bottom:735.626667pt;}
.yd{bottom:767.933333pt;}
.ye{bottom:774.600000pt;}
.yb{bottom:800.200000pt;}
.yc{bottom:806.866667pt;}
.ya{bottom:832.466667pt;}
.y9{bottom:864.466667pt;}
.y42{bottom:871.133333pt;}
.y8{bottom:896.200000pt;}
.y2d{bottom:896.733333pt;}
.y44{bottom:903.426667pt;}
.y7{bottom:928.506667pt;}
.y2c{bottom:929.026667pt;}
.y6{bottom:960.506667pt;}
.y2b{bottom:961.040000pt;}
.y31{bottom:967.706667pt;}
.y5{bottom:992.760000pt;}
.y2a{bottom:993.293333pt;}
.y3{bottom:1026.360000pt;}
.y2{bottom:1058.666667pt;}
.y1{bottom:1091.466667pt;}
.hc{height:34.546875pt;}
.h3{height:42.080729pt;}
.ha{height:47.109375pt;}
.hf{height:47.882812pt;}
.h4{height:49.442708pt;}
.hd{height:52.343750pt;}
.h8{height:52.354167pt;}
.h5{height:52.682292pt;}
.h10{height:57.578125pt;}
.hb{height:58.351562pt;}
.h2{height:61.208333pt;}
.he{height:62.812500pt;}
.h7{height:73.281250pt;}
.h6{height:75.250000pt;}
.h9{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x1{left:140.293333pt;}
.x8{left:151.226667pt;}
.x1e{left:155.726667pt;}
.x10{left:160.566667pt;}
.x12{left:165.133333pt;}
.x1b{left:167.000000pt;}
.x1f{left:168.066667pt;}
.x11{left:169.133333pt;}
.x22{left:170.733333pt;}
.x25{left:183.800000pt;}
.x14{left:185.900000pt;}
.x4{left:192.066667pt;}
.x28{left:206.166667pt;}
.x29{left:218.466667pt;}
.x26{left:249.900000pt;}
.x27{left:262.200000pt;}
.xf{left:305.440000pt;}
.x6{left:320.906667pt;}
.x13{left:326.240000pt;}
.x19{left:333.140000pt;}
.x1a{left:339.293333pt;}
.x5{left:356.360000pt;}
.x15{left:394.233333pt;}
.x16{left:400.400000pt;}
.x7{left:408.933333pt;}
.x9{left:427.833333pt;}
.xa{left:434.000000pt;}
.xb{left:469.166667pt;}
.xc{left:476.693333pt;}
.x1c{left:533.993333pt;}
.x1d{left:540.173333pt;}
.x2{left:543.626667pt;}
.x23{left:574.273333pt;}
.x24{left:586.600000pt;}
.x17{left:589.500000pt;}
.x18{left:595.666667pt;}
.xd{left:601.500000pt;}
.xe{left:608.733333pt;}
.x20{left:623.633333pt;}
.x2a{left:626.300000pt;}
.x2b{left:638.600000pt;}
.x21{left:642.600000pt;}
}




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