
    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_687abee197218d3a6ba24a1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_063791fa0bd44052a46668de.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_14fe97df17dd5ff1a4a76831.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5c0bc51e361fbc79086ae977.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d6955f0ac72a92cf9bc2707d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_382026b0e15494dadb358905.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.057600px;}
.lsf{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:16.506720px;}
.ls6{letter-spacing:37.386720px;}
.ls10{letter-spacing:46.026720px;}
.ls1{letter-spacing:65.700000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-3.525840px;}
._1c{margin-left:-2.450160px;}
._4{margin-left:-1.437120px;}
._0{width:1.135440px;}
._6{width:2.432400px;}
._d{width:4.422240px;}
._11{width:6.035760px;}
._b{width:7.888320px;}
._8{width:9.083520px;}
._9{width:10.099440px;}
._a{width:11.234880px;}
._16{width:12.430080px;}
._1d{width:13.924080px;}
._12{width:16.359120px;}
._c{width:17.629200px;}
._13{width:19.481760px;}
._15{width:21.144960px;}
._14{width:22.415040px;}
._1b{width:24.265440px;}
._19{width:25.398000px;}
._22{width:27.180720px;}
._26{width:28.257120px;}
._25{width:29.401920px;}
._20{width:30.931920px;}
._1f{width:32.091120px;}
._29{width:33.465600px;}
._f{width:35.258400px;}
._e{width:36.991440px;}
._1a{width:38.126880px;}
._18{width:39.800160px;}
._23{width:41.055120px;}
._24{width:42.071040px;}
._27{width:43.684560px;}
._2a{width:44.879760px;}
._2b{width:46.194480px;}
._1e{width:50.736240px;}
._2d{width:52.588800px;}
._2c{width:54.262080px;}
._32{width:55.397520px;}
._28{width:57.429360px;}
._10{width:58.445280px;}
._30{width:61.911360px;}
._2f{width:69.782160px;}
._2e{width:71.233920px;}
._31{width:75.400320px;}
._21{width:76.552560px;}
._2{width:93.180000px;}
._3{width:201.060000px;}
._1{width:736.821120px;}
._5{width:1156.037520px;}
._7{width:1712.040000px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:23.760000px;}
.fs4{font-size:30.240000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y16{bottom:3.240000px;}
.y30{bottom:5.940000px;}
.y2e{bottom:6.840000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.236000px;}
.y81{bottom:16.380000px;}
.y25{bottom:20.520000px;}
.y34{bottom:21.240000px;}
.y2d{bottom:24.120000px;}
.y80{bottom:30.240000px;}
.y7{bottom:35.460000px;}
.y24{bottom:37.800000px;}
.y33{bottom:38.520000px;}
.y2c{bottom:41.430000px;}
.y7f{bottom:43.920000px;}
.y23{bottom:55.080000px;}
.y32{bottom:55.800000px;}
.y3{bottom:58.140000px;}
.y2b{bottom:58.530000px;}
.y22{bottom:72.180000px;}
.y31{bottom:73.080000px;}
.y2a{bottom:75.810000px;}
.y21{bottom:89.460000px;}
.y29{bottom:93.090000px;}
.y20{bottom:106.740000px;}
.y28{bottom:110.370000px;}
.y46{bottom:121.356000px;}
.y7c{bottom:123.876000px;}
.y1f{bottom:124.020000px;}
.y27{bottom:127.650000px;}
.y45{bottom:138.456000px;}
.y7b{bottom:141.156000px;}
.y1e{bottom:141.300000px;}
.y44{bottom:155.730000px;}
.y7a{bottom:158.430000px;}
.y1d{bottom:158.610000px;}
.y43{bottom:173.010000px;}
.y1c{bottom:175.710000px;}
.y42{bottom:190.290000px;}
.y1b{bottom:192.990000px;}
.y41{bottom:207.570000px;}
.y79{bottom:210.090000px;}
.y1a{bottom:210.270000px;}
.y40{bottom:224.850000px;}
.y78{bottom:227.370000px;}
.y19{bottom:227.550000px;}
.y3f{bottom:241.950000px;}
.y18{bottom:243.210000px;}
.y77{bottom:244.650000px;}
.y3e{bottom:259.230000px;}
.y76{bottom:261.930000px;}
.y3d{bottom:276.510000px;}
.y75{bottom:279.210000px;}
.y3c{bottom:293.790000px;}
.y74{bottom:296.490000px;}
.y3b{bottom:311.070000px;}
.y73{bottom:313.590000px;}
.y3a{bottom:328.395000px;}
.y72{bottom:330.915000px;}
.y39{bottom:345.495000px;}
.y71{bottom:348.195000px;}
.y38{bottom:362.775000px;}
.y70{bottom:365.475000px;}
.y37{bottom:380.055000px;}
.y6f{bottom:382.755000px;}
.y36{bottom:397.335000px;}
.y6e{bottom:399.855000px;}
.y35{bottom:412.635000px;}
.y6d{bottom:417.135000px;}
.y17{bottom:418.935000px;}
.y6c{bottom:434.415000px;}
.y6b{bottom:451.695000px;}
.y6a{bottom:468.975000px;}
.y69{bottom:486.255000px;}
.y68{bottom:503.355000px;}
.y2f{bottom:506.775000px;}
.y67{bottom:520.635000px;}
.y26{bottom:527.475000px;}
.y66{bottom:537.915000px;}
.y65{bottom:555.195000px;}
.y7e{bottom:569.985000px;}
.y64{bottom:572.505000px;}
.y63{bottom:589.785000px;}
.y62{bottom:606.885000px;}
.y61{bottom:624.165000px;}
.y7d{bottom:625.965000px;}
.y60{bottom:641.445000px;}
.y5f{bottom:658.725000px;}
.y15{bottom:669.885000px;}
.y5e{bottom:676.005000px;}
.y14{bottom:691.125000px;}
.y5d{bottom:693.285000px;}
.y13{bottom:708.405000px;}
.y5c{bottom:710.385000px;}
.y5b{bottom:727.665000px;}
.y12{bottom:728.205000px;}
.y5a{bottom:744.945000px;}
.y11{bottom:756.645000px;}
.y59{bottom:762.225000px;}
.y10{bottom:779.145000px;}
.y58{bottom:779.505000px;}
.yf{bottom:796.425000px;}
.y57{bottom:796.605000px;}
.ye{bottom:808.305000px;}
.y56{bottom:813.885000px;}
.yd{bottom:828.330000px;}
.y55{bottom:831.210000px;}
.y54{bottom:848.490000px;}
.yc{bottom:859.290000px;}
.y53{bottom:865.770000px;}
.y52{bottom:883.050000px;}
.yb{bottom:890.430000px;}
.y51{bottom:900.150000px;}
.y50{bottom:917.430000px;}
.ya{bottom:918.870000px;}
.y8{bottom:932.730000px;}
.y4f{bottom:934.710000px;}
.y4e{bottom:951.990000px;}
.y4d{bottom:969.270000px;}
.y4c{bottom:986.550000px;}
.y4b{bottom:1003.650000px;}
.y4a{bottom:1020.930000px;}
.y49{bottom:1038.210000px;}
.y48{bottom:1055.490000px;}
.y47{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h19{height:13.860000px;}
.h16{height:16.764258px;}
.he{height:17.280000px;}
.h14{height:19.980000px;}
.h11{height:21.114844px;}
.hb{height:27.147656px;}
.h3{height:27.576000px;}
.h1a{height:33.683203px;}
.h6{height:39.336328px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.hf{height:42.164648px;}
.h18{height:43.506914px;}
.h13{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h9{height:46.736719px;}
.h17{height:49.255313px;}
.h1{height:50.800781px;}
.h1b{height:55.260000px;}
.hd{height:65.884219px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:87.120000px;}
.h12{height:141.696000px;}
.h7{height:153.930000px;}
.h10{height:250.230000px;}
.h0{height:1188.000000px;}
.w2{width:38.196000px;}
.w6{width:262.875000px;}
.w7{width:371.055000px;}
.w5{width:545.865000px;}
.w3{width:769.110000px;}
.w4{width:821.880000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:6.660000px;}
.x4{left:8.640000px;}
.xf{left:20.160000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x7{left:67.319986px;}
.x3{left:69.300000px;}
.x18{left:74.160000px;}
.x14{left:88.199986px;}
.x5{left:108.576000px;}
.xa{left:152.669986px;}
.xb{left:186.509986px;}
.x11{left:214.589986px;}
.x9{left:348.914986px;}
.xc{left:433.514986px;}
.x17{left:459.434986px;}
.xd{left:475.994986px;}
.x8{left:479.234986px;}
.x15{left:482.504986px;}
.x13{left:506.804986px;}
.x16{left:509.504986px;}
.x12{left:565.124986px;}
.xe{left:608.145000px;}
.x6{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.051200pt;}
.lsf{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls6{letter-spacing:33.232640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls1{letter-spacing:58.400000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-3.134080pt;}
._1c{margin-left:-2.177920pt;}
._4{margin-left:-1.277440pt;}
._0{width:1.009280pt;}
._6{width:2.162133pt;}
._d{width:3.930880pt;}
._11{width:5.365120pt;}
._b{width:7.011840pt;}
._8{width:8.074240pt;}
._9{width:8.977280pt;}
._a{width:9.986560pt;}
._16{width:11.048960pt;}
._1d{width:12.376960pt;}
._12{width:14.541440pt;}
._c{width:15.670400pt;}
._13{width:17.317120pt;}
._15{width:18.795520pt;}
._14{width:19.924480pt;}
._1b{width:21.569280pt;}
._19{width:22.576000pt;}
._22{width:24.160640pt;}
._26{width:25.117440pt;}
._25{width:26.135040pt;}
._20{width:27.495040pt;}
._1f{width:28.525440pt;}
._29{width:29.747200pt;}
._f{width:31.340800pt;}
._e{width:32.881280pt;}
._1a{width:33.890560pt;}
._18{width:35.377920pt;}
._23{width:36.493440pt;}
._24{width:37.396480pt;}
._27{width:38.830720pt;}
._2a{width:39.893120pt;}
._2b{width:41.061760pt;}
._1e{width:45.098880pt;}
._2d{width:46.745600pt;}
._2c{width:48.232960pt;}
._32{width:49.242240pt;}
._28{width:51.048320pt;}
._10{width:51.951360pt;}
._30{width:55.032320pt;}
._2f{width:62.028587pt;}
._2e{width:63.319040pt;}
._31{width:67.022507pt;}
._21{width:68.046720pt;}
._2{width:82.826667pt;}
._3{width:178.720000pt;}
._1{width:654.952107pt;}
._5{width:1027.588907pt;}
._7{width:1521.813333pt;}
.fs8{font-size:21.120000pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y16{bottom:2.880000pt;}
.y30{bottom:5.280000pt;}
.y2e{bottom:6.080000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.432000pt;}
.y81{bottom:14.560000pt;}
.y25{bottom:18.240000pt;}
.y34{bottom:18.880000pt;}
.y2d{bottom:21.440000pt;}
.y80{bottom:26.880000pt;}
.y7{bottom:31.520000pt;}
.y24{bottom:33.600000pt;}
.y33{bottom:34.240000pt;}
.y2c{bottom:36.826667pt;}
.y7f{bottom:39.040000pt;}
.y23{bottom:48.960000pt;}
.y32{bottom:49.600000pt;}
.y3{bottom:51.680000pt;}
.y2b{bottom:52.026667pt;}
.y22{bottom:64.160000pt;}
.y31{bottom:64.960000pt;}
.y2a{bottom:67.386667pt;}
.y21{bottom:79.520000pt;}
.y29{bottom:82.746667pt;}
.y20{bottom:94.880000pt;}
.y28{bottom:98.106667pt;}
.y46{bottom:107.872000pt;}
.y7c{bottom:110.112000pt;}
.y1f{bottom:110.240000pt;}
.y27{bottom:113.466667pt;}
.y45{bottom:123.072000pt;}
.y7b{bottom:125.472000pt;}
.y1e{bottom:125.600000pt;}
.y44{bottom:138.426667pt;}
.y7a{bottom:140.826667pt;}
.y1d{bottom:140.986667pt;}
.y43{bottom:153.786667pt;}
.y1c{bottom:156.186667pt;}
.y42{bottom:169.146667pt;}
.y1b{bottom:171.546667pt;}
.y41{bottom:184.506667pt;}
.y79{bottom:186.746667pt;}
.y1a{bottom:186.906667pt;}
.y40{bottom:199.866667pt;}
.y78{bottom:202.106667pt;}
.y19{bottom:202.266667pt;}
.y3f{bottom:215.066667pt;}
.y18{bottom:216.186667pt;}
.y77{bottom:217.466667pt;}
.y3e{bottom:230.426667pt;}
.y76{bottom:232.826667pt;}
.y3d{bottom:245.786667pt;}
.y75{bottom:248.186667pt;}
.y3c{bottom:261.146667pt;}
.y74{bottom:263.546667pt;}
.y3b{bottom:276.506667pt;}
.y73{bottom:278.746667pt;}
.y3a{bottom:291.906667pt;}
.y72{bottom:294.146667pt;}
.y39{bottom:307.106667pt;}
.y71{bottom:309.506667pt;}
.y38{bottom:322.466667pt;}
.y70{bottom:324.866667pt;}
.y37{bottom:337.826667pt;}
.y6f{bottom:340.226667pt;}
.y36{bottom:353.186667pt;}
.y6e{bottom:355.426667pt;}
.y35{bottom:366.786667pt;}
.y6d{bottom:370.786667pt;}
.y17{bottom:372.386667pt;}
.y6c{bottom:386.146667pt;}
.y6b{bottom:401.506667pt;}
.y6a{bottom:416.866667pt;}
.y69{bottom:432.226667pt;}
.y68{bottom:447.426667pt;}
.y2f{bottom:450.466667pt;}
.y67{bottom:462.786667pt;}
.y26{bottom:468.866667pt;}
.y66{bottom:478.146667pt;}
.y65{bottom:493.506667pt;}
.y7e{bottom:506.653333pt;}
.y64{bottom:508.893333pt;}
.y63{bottom:524.253333pt;}
.y62{bottom:539.453333pt;}
.y61{bottom:554.813333pt;}
.y7d{bottom:556.413333pt;}
.y60{bottom:570.173333pt;}
.y5f{bottom:585.533333pt;}
.y15{bottom:595.453333pt;}
.y5e{bottom:600.893333pt;}
.y14{bottom:614.333333pt;}
.y5d{bottom:616.253333pt;}
.y13{bottom:629.693333pt;}
.y5c{bottom:631.453333pt;}
.y5b{bottom:646.813333pt;}
.y12{bottom:647.293333pt;}
.y5a{bottom:662.173333pt;}
.y11{bottom:672.573333pt;}
.y59{bottom:677.533333pt;}
.y10{bottom:692.573333pt;}
.y58{bottom:692.893333pt;}
.yf{bottom:707.933333pt;}
.y57{bottom:708.093333pt;}
.ye{bottom:718.493333pt;}
.y56{bottom:723.453333pt;}
.yd{bottom:736.293333pt;}
.y55{bottom:738.853333pt;}
.y54{bottom:754.213333pt;}
.yc{bottom:763.813333pt;}
.y53{bottom:769.573333pt;}
.y52{bottom:784.933333pt;}
.yb{bottom:791.493333pt;}
.y51{bottom:800.133333pt;}
.y50{bottom:815.493333pt;}
.ya{bottom:816.773333pt;}
.y8{bottom:829.093333pt;}
.y4f{bottom:830.853333pt;}
.y4e{bottom:846.213333pt;}
.y4d{bottom:861.573333pt;}
.y4c{bottom:876.933333pt;}
.y4b{bottom:892.133333pt;}
.y4a{bottom:907.493333pt;}
.y49{bottom:922.853333pt;}
.y48{bottom:938.213333pt;}
.y47{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h19{height:12.320000pt;}
.h16{height:14.901562pt;}
.he{height:15.360000pt;}
.h14{height:17.760000pt;}
.h11{height:18.768750pt;}
.hb{height:24.131250pt;}
.h3{height:24.512000pt;}
.h1a{height:29.940625pt;}
.h6{height:34.965625pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.hf{height:37.479688pt;}
.h18{height:38.672812pt;}
.h13{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h9{height:41.543750pt;}
.h17{height:43.782500pt;}
.h1{height:45.156250pt;}
.h1b{height:49.120000pt;}
.hd{height:58.563750pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:77.440000pt;}
.h12{height:125.952000pt;}
.h7{height:136.826667pt;}
.h10{height:222.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:33.952000pt;}
.w6{width:233.666667pt;}
.w7{width:329.826667pt;}
.w5{width:485.213333pt;}
.w3{width:683.653333pt;}
.w4{width:730.560000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.920000pt;}
.x4{left:7.680000pt;}
.xf{left:17.920000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x7{left:59.839988pt;}
.x3{left:61.600000pt;}
.x18{left:65.920000pt;}
.x14{left:78.399988pt;}
.x5{left:96.512000pt;}
.xa{left:135.706655pt;}
.xb{left:165.786655pt;}
.x11{left:190.746655pt;}
.x9{left:310.146655pt;}
.xc{left:385.346655pt;}
.x17{left:408.386655pt;}
.xd{left:423.106655pt;}
.x8{left:425.986655pt;}
.x15{left:428.893321pt;}
.x13{left:450.493321pt;}
.x16{left:452.893321pt;}
.x12{left:502.333321pt;}
.xe{left:540.573333pt;}
.x6{left:722.213333pt;}
}




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