
    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_a352ff4407b588c4bc9a7812.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_6d5b8a540f9833ed0069499b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_f3f1f01a90bdc3790bf68e13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_5d7a0a1639c2f95deb9b9910.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.842285;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_37d2771d4e2079f86197a5d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9ed7ee23eb249d9925c314f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_18a9a111642161dae7f7171f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_f389a0ab93e270d128ab5c04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_04ac731e32313519cc796d4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_2b0cb7567d6db838481e9d9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.039000;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_7dcda398529adb0d7af50843.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_7354e0a3cb633e1021741135.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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;}
.m3{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);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m2{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.m4{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);}
.v4{vertical-align:-27.360000px;}
.v2{vertical-align:-24.480000px;}
.v6{vertical-align:-13.944000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.502000px;}
.v1{vertical-align:24.480000px;}
.v3{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.158976px;}
.lsf{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.027000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.005400px;}
.lsc{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.237600px;}
.ls1{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.240048px;}
.ls3{letter-spacing:0.240480px;}
.ls8{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.361800px;}
.ls9{letter-spacing:1.080000px;}
.ls0{letter-spacing:199.440000px;}
.lsa{letter-spacing:845.585280px;}
.ls4{letter-spacing:845.999712px;}
.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:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-13.381867px;}
.ws7{word-spacing:-13.122000px;}
.ws3{word-spacing:-12.421800px;}
.ws8{word-spacing:-9.360000px;}
.ws5{word-spacing:-9.063600px;}
.ws0{word-spacing:-0.285120px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-2715.631320px;}
._15{margin-left:-479.336400px;}
._7{margin-left:-366.480000px;}
._1{margin-left:-202.583088px;}
._2{margin-left:-199.559520px;}
._9{margin-left:-22.525200px;}
._a{margin-left:-4.368000px;}
._4{margin-left:-2.768712px;}
._3{margin-left:-1.039968px;}
._0{width:1.126080px;}
._e{width:2.148912px;}
._f{width:3.247920px;}
._10{width:5.016600px;}
._14{width:6.075000px;}
._11{width:7.263000px;}
._b{width:9.099000px;}
._d{width:10.283544px;}
._c{width:11.711112px;}
._13{width:19.265688px;}
._12{width:20.426712px;}
._8{width:51.341400px;}
._5{width:199.448400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.000000px;}
.fs9{font-size:34.860000px;}
.fs8{font-size:36.000000px;}
.fse{font-size:36.712940px;}
.fsa{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs2{font-size:47.520000px;}
.fsb{font-size:48.000000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:55.069411px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:89.573250px;}
.y18{bottom:151.574100px;}
.y63{bottom:175.357950px;}
.y17{bottom:192.974100px;}
.y62{bottom:193.245450px;}
.y61{bottom:211.132950px;}
.y30{bottom:214.920000px;}
.y60{bottom:229.020450px;}
.y16{bottom:234.374100px;}
.y2f{bottom:235.620000px;}
.y5f{bottom:246.907950px;}
.y2e{bottom:256.320000px;}
.y5e{bottom:264.795450px;}
.y15{bottom:275.774100px;}
.y2d{bottom:276.660000px;}
.y5d{bottom:282.682950px;}
.y5c{bottom:300.570450px;}
.y14{bottom:317.174100px;}
.y2c{bottom:318.060000px;}
.y5b{bottom:318.457950px;}
.y5a{bottom:336.345450px;}
.y59{bottom:354.232950px;}
.y13{bottom:358.574100px;}
.y2b{bottom:359.460000px;}
.y58{bottom:372.120450px;}
.y57{bottom:390.007950px;}
.y12{bottom:399.974100px;}
.y2a{bottom:401.220000px;}
.y56{bottom:407.895450px;}
.y55{bottom:425.782950px;}
.y11{bottom:441.374100px;}
.y29{bottom:442.620000px;}
.y54{bottom:443.670450px;}
.y53{bottom:461.557950px;}
.y52{bottom:479.445450px;}
.y10{bottom:482.774100px;}
.y28{bottom:484.020000px;}
.y51{bottom:497.332950px;}
.y50{bottom:515.220450px;}
.yf{bottom:524.174100px;}
.y27{bottom:525.420000px;}
.y4f{bottom:533.107950px;}
.y4e{bottom:550.995450px;}
.ye{bottom:565.574100px;}
.y26{bottom:566.820000px;}
.y4d{bottom:568.882950px;}
.y4c{bottom:586.770450px;}
.y4b{bottom:604.657950px;}
.yd{bottom:606.974100px;}
.y25{bottom:608.220000px;}
.y4a{bottom:622.545450px;}
.y49{bottom:640.432950px;}
.yc{bottom:654.494100px;}
.y24{bottom:656.460000px;}
.y48{bottom:658.320450px;}
.yb{bottom:689.774100px;}
.y23{bottom:691.020000px;}
.y47{bottom:694.207950px;}
.y46{bottom:712.095450px;}
.y45{bottom:729.982950px;}
.ya{bottom:731.174100px;}
.y22{bottom:732.420000px;}
.y44{bottom:747.870450px;}
.y43{bottom:765.757950px;}
.y9{bottom:772.574100px;}
.y21{bottom:773.820000px;}
.y42{bottom:783.645450px;}
.y41{bottom:801.532950px;}
.y8{bottom:813.974100px;}
.y20{bottom:814.860000px;}
.y40{bottom:819.420450px;}
.y3f{bottom:837.307950px;}
.y3e{bottom:855.195450px;}
.y7{bottom:855.374100px;}
.y1f{bottom:856.620000px;}
.y3d{bottom:873.082950px;}
.y3c{bottom:890.970450px;}
.y6{bottom:896.774100px;}
.y1e{bottom:898.020000px;}
.y3b{bottom:908.857950px;}
.y5{bottom:938.174100px;}
.y1d{bottom:939.420000px;}
.y68{bottom:951.180000px;}
.y3a{bottom:952.266450px;}
.y39{bottom:974.682450px;}
.y4{bottom:979.574100px;}
.y1c{bottom:980.820000px;}
.y38{bottom:1016.335650px;}
.y3{bottom:1020.974100px;}
.y1b{bottom:1022.220000px;}
.y37{bottom:1036.259700px;}
.y36{bottom:1059.962700px;}
.y2{bottom:1062.374100px;}
.y1a{bottom:1063.620000px;}
.y34{bottom:1076.655150px;}
.y35{bottom:1083.405150px;}
.y33{bottom:1103.144700px;}
.y1{bottom:1117.814100px;}
.y19{bottom:1119.060000px;}
.y32{bottom:1132.957200px;}
.y31{bottom:1166.249700px;}
.y67{bottom:1206.586800px;}
.y66{bottom:1218.843150px;}
.y65{bottom:1231.099500px;}
.hf{height:20.658691px;}
.h19{height:26.208984px;}
.h10{height:26.672666px;}
.h17{height:27.544922px;}
.h18{height:28.090419px;}
.h5{height:32.113125px;}
.h11{height:32.135742px;}
.he{height:33.046922px;}
.h8{height:33.494766px;}
.h16{height:34.431152px;}
.h13{height:39.552000px;}
.hd{height:41.317383px;}
.h14{height:44.496000px;}
.h1{height:44.860781px;}
.h15{height:45.377194px;}
.h6{height:45.992812px;}
.h3{height:48.796875px;}
.hb{height:49.440000px;}
.h2{height:49.992188px;}
.h4{height:56.593125px;}
.h12{height:59.328000px;}
.h7{height:60.854766px;}
.hc{height:74.160000px;}
.h0{height:1188.000000px;}
.h9{height:1262.834700px;}
.ha{height:1263.000000px;}
.w1{width:892.913400px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:81.000000px;}
.x1d{left:97.875000px;}
.x1{left:108.706008px;}
.xb{left:157.680000px;}
.x14{left:176.456700px;}
.x1b{left:202.066200px;}
.x6{left:204.511188px;}
.x2{left:226.694784px;}
.x10{left:242.277600px;}
.x1c{left:246.265200px;}
.xe{left:340.200000px;}
.x3{left:355.486764px;}
.xc{left:357.660000px;}
.x9{left:361.475040px;}
.x11{left:374.169450px;}
.x12{left:376.857450px;}
.x7{left:378.477660px;}
.xd{left:379.800000px;}
.xa{left:384.717900px;}
.x4{left:392.462220px;}
.x5{left:416.953020px;}
.x20{left:446.456700px;}
.x13{left:450.088350px;}
.x1e{left:455.456700px;}
.x8{left:459.705900px;}
.x1f{left:472.331700px;}
.x15{left:597.859200px;}
.x21{left:624.980100px;}
.x16{left:627.437700px;}
.x17{left:634.538700px;}
.x18{left:659.108700px;}
.x19{left:666.209700px;}
.x1a{left:691.265700px;}
.x22{left:711.249150px;}
.x23{left:715.793100px;}
.x24{left:720.939150px;}
.x25{left:858.405000px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.760000pt;}
.v6{vertical-align:-12.394667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.890667pt;}
.v1{vertical-align:21.760000pt;}
.v3{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.141312pt;}
.lsf{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.024000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.004800pt;}
.lsc{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.211200pt;}
.ls1{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.213376pt;}
.ls3{letter-spacing:0.213760pt;}
.ls8{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.321600pt;}
.ls9{letter-spacing:0.960000pt;}
.ls0{letter-spacing:177.280000pt;}
.lsa{letter-spacing:751.631360pt;}
.ls4{letter-spacing:751.999744pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-11.894993pt;}
.ws7{word-spacing:-11.664000pt;}
.ws3{word-spacing:-11.041600pt;}
.ws8{word-spacing:-8.320000pt;}
.ws5{word-spacing:-8.056533pt;}
.ws0{word-spacing:-0.253440pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-2413.894507pt;}
._15{margin-left:-426.076800pt;}
._7{margin-left:-325.760000pt;}
._1{margin-left:-180.073856pt;}
._2{margin-left:-177.386240pt;}
._9{margin-left:-20.022400pt;}
._a{margin-left:-3.882667pt;}
._4{margin-left:-2.461077pt;}
._3{margin-left:-0.924416pt;}
._0{width:1.000960pt;}
._e{width:1.910144pt;}
._f{width:2.887040pt;}
._10{width:4.459200pt;}
._14{width:5.400000pt;}
._11{width:6.456000pt;}
._b{width:8.088000pt;}
._d{width:9.140928pt;}
._c{width:10.409877pt;}
._13{width:17.125056pt;}
._12{width:18.157077pt;}
._8{width:45.636800pt;}
._5{width:177.287467pt;}
.fs7{font-size:24.000000pt;}
.fs9{font-size:30.986667pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:32.633725pt;}
.fsa{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs2{font-size:42.240000pt;}
.fsb{font-size:42.666667pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:48.950587pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:79.620667pt;}
.y18{bottom:134.732533pt;}
.y63{bottom:155.873733pt;}
.y17{bottom:171.532533pt;}
.y62{bottom:171.773733pt;}
.y61{bottom:187.673733pt;}
.y30{bottom:191.040000pt;}
.y60{bottom:203.573733pt;}
.y16{bottom:208.332533pt;}
.y2f{bottom:209.440000pt;}
.y5f{bottom:219.473733pt;}
.y2e{bottom:227.840000pt;}
.y5e{bottom:235.373733pt;}
.y15{bottom:245.132533pt;}
.y2d{bottom:245.920000pt;}
.y5d{bottom:251.273733pt;}
.y5c{bottom:267.173733pt;}
.y14{bottom:281.932533pt;}
.y2c{bottom:282.720000pt;}
.y5b{bottom:283.073733pt;}
.y5a{bottom:298.973733pt;}
.y59{bottom:314.873733pt;}
.y13{bottom:318.732533pt;}
.y2b{bottom:319.520000pt;}
.y58{bottom:330.773733pt;}
.y57{bottom:346.673733pt;}
.y12{bottom:355.532533pt;}
.y2a{bottom:356.640000pt;}
.y56{bottom:362.573733pt;}
.y55{bottom:378.473733pt;}
.y11{bottom:392.332533pt;}
.y29{bottom:393.440000pt;}
.y54{bottom:394.373733pt;}
.y53{bottom:410.273733pt;}
.y52{bottom:426.173733pt;}
.y10{bottom:429.132533pt;}
.y28{bottom:430.240000pt;}
.y51{bottom:442.073733pt;}
.y50{bottom:457.973733pt;}
.yf{bottom:465.932533pt;}
.y27{bottom:467.040000pt;}
.y4f{bottom:473.873733pt;}
.y4e{bottom:489.773733pt;}
.ye{bottom:502.732533pt;}
.y26{bottom:503.840000pt;}
.y4d{bottom:505.673733pt;}
.y4c{bottom:521.573733pt;}
.y4b{bottom:537.473733pt;}
.yd{bottom:539.532533pt;}
.y25{bottom:540.640000pt;}
.y4a{bottom:553.373733pt;}
.y49{bottom:569.273733pt;}
.yc{bottom:581.772533pt;}
.y24{bottom:583.520000pt;}
.y48{bottom:585.173733pt;}
.yb{bottom:613.132533pt;}
.y23{bottom:614.240000pt;}
.y47{bottom:617.073733pt;}
.y46{bottom:632.973733pt;}
.y45{bottom:648.873733pt;}
.ya{bottom:649.932533pt;}
.y22{bottom:651.040000pt;}
.y44{bottom:664.773733pt;}
.y43{bottom:680.673733pt;}
.y9{bottom:686.732533pt;}
.y21{bottom:687.840000pt;}
.y42{bottom:696.573733pt;}
.y41{bottom:712.473733pt;}
.y8{bottom:723.532533pt;}
.y20{bottom:724.320000pt;}
.y40{bottom:728.373733pt;}
.y3f{bottom:744.273733pt;}
.y3e{bottom:760.173733pt;}
.y7{bottom:760.332533pt;}
.y1f{bottom:761.440000pt;}
.y3d{bottom:776.073733pt;}
.y3c{bottom:791.973733pt;}
.y6{bottom:797.132533pt;}
.y1e{bottom:798.240000pt;}
.y3b{bottom:807.873733pt;}
.y5{bottom:833.932533pt;}
.y1d{bottom:835.040000pt;}
.y68{bottom:845.493333pt;}
.y3a{bottom:846.459067pt;}
.y39{bottom:866.384400pt;}
.y4{bottom:870.732533pt;}
.y1c{bottom:871.840000pt;}
.y38{bottom:903.409467pt;}
.y3{bottom:907.532533pt;}
.y1b{bottom:908.640000pt;}
.y37{bottom:921.119733pt;}
.y36{bottom:942.189067pt;}
.y2{bottom:944.332533pt;}
.y1a{bottom:945.440000pt;}
.y34{bottom:957.026800pt;}
.y35{bottom:963.026800pt;}
.y33{bottom:980.573067pt;}
.y1{bottom:993.612533pt;}
.y19{bottom:994.720000pt;}
.y32{bottom:1007.073067pt;}
.y31{bottom:1036.666400pt;}
.y67{bottom:1072.521600pt;}
.y66{bottom:1083.416133pt;}
.y65{bottom:1094.310667pt;}
.hf{height:18.363281pt;}
.h19{height:23.296875pt;}
.h10{height:23.709036pt;}
.h17{height:24.484375pt;}
.h18{height:24.969261pt;}
.h5{height:28.545000pt;}
.h11{height:28.565104pt;}
.he{height:29.375042pt;}
.h8{height:29.773125pt;}
.h16{height:30.605469pt;}
.h13{height:35.157333pt;}
.hd{height:36.726562pt;}
.h14{height:39.552000pt;}
.h1{height:39.876250pt;}
.h15{height:40.335284pt;}
.h6{height:40.882500pt;}
.h3{height:43.375000pt;}
.hb{height:43.946667pt;}
.h2{height:44.437500pt;}
.h4{height:50.305000pt;}
.h12{height:52.736000pt;}
.h7{height:54.093125pt;}
.hc{height:65.920000pt;}
.h0{height:1056.000000pt;}
.h9{height:1122.519733pt;}
.ha{height:1122.666667pt;}
.w1{width:793.700800pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:72.000000pt;}
.x1d{left:87.000000pt;}
.x1{left:96.627563pt;}
.xb{left:140.160000pt;}
.x14{left:156.850400pt;}
.x1b{left:179.614400pt;}
.x6{left:181.787723pt;}
.x2{left:201.506475pt;}
.x10{left:215.357867pt;}
.x1c{left:218.902400pt;}
.xe{left:302.400000pt;}
.x3{left:315.988235pt;}
.xc{left:317.920000pt;}
.x9{left:321.311147pt;}
.x11{left:332.595067pt;}
.x12{left:334.984400pt;}
.x7{left:336.424587pt;}
.xd{left:337.600000pt;}
.xa{left:341.971467pt;}
.x4{left:348.855307pt;}
.x5{left:370.624907pt;}
.x20{left:396.850400pt;}
.x13{left:400.078533pt;}
.x1e{left:404.850400pt;}
.x8{left:408.627467pt;}
.x1f{left:419.850400pt;}
.x15{left:531.430400pt;}
.x21{left:555.537867pt;}
.x16{left:557.722400pt;}
.x17{left:564.034400pt;}
.x18{left:585.874400pt;}
.x19{left:592.186400pt;}
.x1a{left:614.458400pt;}
.x22{left:632.221467pt;}
.x23{left:636.260533pt;}
.x24{left:640.834800pt;}
.x25{left:763.026667pt;}
}




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