
    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_82d7a6cf06a89965cb608e09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_0c1a435723f5b8ac982b6197.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_439a22dc4809339d749b8a63.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b8120fe3b87080306693ffc4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_4e314fe36e989d1be4c9fb1d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-4.320000px;}
.v2{vertical-align:-3.180000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.872000px;}
.lsc{letter-spacing:-1.152000px;}
.ls14{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.040320px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.227400px;}
.lsa{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls4{letter-spacing:33.032160px;}
.ls5{letter-spacing:41.256000px;}
.ls3{letter-spacing:194.349600px;}
.ls0{letter-spacing:194.376000px;}
.ls1{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(151,124,107),0 0.015em rgb(151,124,107),0.015em 0 rgb(151,124,107),0 -0.015em  rgb(151,124,107);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(151,124,107);text-shadow:none;}
}
.ws0{word-spacing:-82.872720px;}
.ws1{word-spacing:-79.606800px;}
.ws28{word-spacing:-42.408000px;}
.ws21{word-spacing:-42.264000px;}
.ws3{word-spacing:-42.120000px;}
.ws2b{word-spacing:-42.107760px;}
.ws41{word-spacing:-41.904000px;}
.ws8{word-spacing:-41.760000px;}
.ws30{word-spacing:-35.100000px;}
.ws4e{word-spacing:-5.040000px;}
.ws11{word-spacing:-4.824000px;}
.ws13{word-spacing:-4.788000px;}
.ws48{word-spacing:-4.680000px;}
.ws18{word-spacing:-4.473936px;}
.ws43{word-spacing:-4.104000px;}
.ws10{word-spacing:-2.592000px;}
.ws47{word-spacing:-2.304000px;}
.ws22{word-spacing:-2.160000px;}
.ws46{word-spacing:-1.728000px;}
.ws1d{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.260000px;}
.wsb{word-spacing:-1.152000px;}
.ws12{word-spacing:-1.008000px;}
.ws4d{word-spacing:-0.888000px;}
.ws4f{word-spacing:-0.744000px;}
.ws25{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.576000px;}
.ws23{word-spacing:-0.504000px;}
.ws27{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.360000px;}
.ws1e{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.144000px;}
.ws20{word-spacing:0.000000px;}
.wse{word-spacing:0.048000px;}
.ws45{word-spacing:0.072000px;}
.ws2f{word-spacing:0.288000px;}
.ws29{word-spacing:0.324000px;}
.wsc{word-spacing:0.360000px;}
.ws9{word-spacing:0.396000px;}
.ws1f{word-spacing:1.008000px;}
.ws4a{word-spacing:8.136000px;}
.ws4c{word-spacing:8.208000px;}
.ws44{word-spacing:9.448992px;}
.ws49{word-spacing:9.624000px;}
.ws19{word-spacing:10.008000px;}
.ws1b{word-spacing:10.512000px;}
.ws1a{word-spacing:11.160000px;}
.ws39{word-spacing:12.384000px;}
.ws4b{word-spacing:13.248000px;}
.ws3b{word-spacing:13.752000px;}
.ws3c{word-spacing:14.040000px;}
.ws3f{word-spacing:14.256000px;}
.ws3a{word-spacing:14.688000px;}
.ws3d{word-spacing:14.760000px;}
.ws3e{word-spacing:14.808000px;}
.wsf{word-spacing:20.952000px;}
.ws42{word-spacing:24.696000px;}
.ws40{word-spacing:25.392000px;}
.ws26{word-spacing:34.272000px;}
.ws2e{word-spacing:49.100544px;}
.ws2d{word-spacing:49.278888px;}
.ws2c{word-spacing:49.414896px;}
.ws2a{word-spacing:49.449168px;}
.ws6{word-spacing:63.336000px;}
.ws4{word-spacing:64.512000px;}
.ws5{word-spacing:64.728000px;}
.ws17{word-spacing:77.544000px;}
.ws16{word-spacing:77.904000px;}
.ws15{word-spacing:78.048000px;}
.ws14{word-spacing:78.192000px;}
.ws1c{word-spacing:98.424000px;}
.ws37{word-spacing:100.920000px;}
.ws33{word-spacing:105.120000px;}
.ws35{word-spacing:117.060000px;}
.ws31{word-spacing:121.200000px;}
.ws36{word-spacing:228.240000px;}
.ws32{word-spacing:232.380000px;}
.ws38{word-spacing:552.720000px;}
.ws34{word-spacing:561.120000px;}
.ws2{word-spacing:6892.711872px;}
._6{margin-left:-20.010816px;}
._5{margin-left:-17.968896px;}
._8{margin-left:-16.335360px;}
._0{margin-left:-8.167680px;}
._7{margin-left:-6.942528px;}
._4{margin-left:-4.492224px;}
._1{margin-left:-2.450304px;}
._3{margin-left:-1.225152px;}
._2{width:1.225152px;}
._9{width:2.519904px;}
._17{width:34.105968px;}
._10{width:38.954304px;}
._14{width:41.940000px;}
._e{width:43.092000px;}
._b{width:44.534304px;}
._11{width:53.892000px;}
._26{width:57.156672px;}
._f{width:61.596000px;}
._27{width:68.016000px;}
._15{width:77.616000px;}
._16{width:92.906064px;}
._d{width:107.893152px;}
._12{width:141.877152px;}
._13{width:143.530848px;}
._23{width:236.700000px;}
._21{width:239.460000px;}
._1c{width:240.840000px;}
._1a{width:243.660000px;}
._22{width:249.900000px;}
._1b{width:254.100000px;}
._1f{width:264.300000px;}
._18{width:268.680000px;}
._20{width:297.300000px;}
._19{width:301.440000px;}
._24{width:732.060000px;}
._1d{width:742.440000px;}
._25{width:1249.980000px;}
._1e{width:1264.620000px;}
._c{width:2532.142848px;}
._a{width:4033.191888px;}
.fc2{color:rgb(91,146,53);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(237,237,237);}
.fc0{color:rgb(151,124,107);}
.fs5{font-size:167.760000px;}
.fs6{font-size:180.000000px;}
.fs7{font-size:180.144000px;}
.fs3{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fs2{font-size:239.760000px;}
.fs8{font-size:239.904000px;}
.fs1{font-size:408.240000px;}
.fs0{font-size:408.384000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:19.335000px;}
.y20{bottom:19.410000px;}
.y7{bottom:67.500000px;}
.y30{bottom:97.095000px;}
.y3b{bottom:103.110000px;}
.y1f{bottom:103.170000px;}
.y2f{bottom:159.510000px;}
.y32{bottom:161.025000px;}
.y16{bottom:161.070000px;}
.y2e{bottom:221.970000px;}
.y22{bottom:237.810000px;}
.y21{bottom:252.030000px;}
.y17{bottom:256.320000px;}
.y33{bottom:271.620000px;}
.y2d{bottom:284.430000px;}
.y3e{bottom:299.235000px;}
.y3d{bottom:313.455000px;}
.y2c{bottom:346.860000px;}
.y18{bottom:351.570000px;}
.y45{bottom:380.775000px;}
.y34{bottom:382.215000px;}
.y2b{bottom:409.320000px;}
.y44{bottom:443.190000px;}
.y19{bottom:446.790000px;}
.y8{bottom:450.465000px;}
.y2a{bottom:471.780000px;}
.y35{bottom:492.810000px;}
.y43{bottom:505.650000px;}
.y29{bottom:534.210000px;}
.y1a{bottom:542.055000px;}
.y42{bottom:568.110000px;}
.y28{bottom:596.670000px;}
.y36{bottom:603.435000px;}
.y41{bottom:630.540000px;}
.y1b{bottom:637.305000px;}
.y27{bottom:659.130000px;}
.y4f{bottom:669.165000px;}
.y40{bottom:693.000000px;}
.y37{bottom:714.030000px;}
.y26{bottom:721.545000px;}
.y1c{bottom:732.525000px;}
.y4e{bottom:733.965000px;}
.y25{bottom:784.005000px;}
.y4d{bottom:798.765000px;}
.y31{bottom:821.520000px;}
.y38{bottom:824.610000px;}
.y1d{bottom:827.790000px;}
.y24{bottom:846.465000px;}
.y4c{bottom:863.565000px;}
.y1e{bottom:923.010000px;}
.y4b{bottom:928.185000px;}
.y39{bottom:935.205000px;}
.y23{bottom:988.125000px;}
.y4a{bottom:993.210000px;}
.y3a{bottom:1045.800000px;}
.y49{bottom:1058.010000px;}
.y3f{bottom:1118.415000px;}
.y48{bottom:1122.810000px;}
.y47{bottom:1187.610000px;}
.y46{bottom:1252.410000px;}
.y5{bottom:1342.155000px;}
.y15{bottom:2171.340000px;}
.y14{bottom:3362.325000px;}
.y6{bottom:3364.560000px;}
.y13{bottom:3412.725000px;}
.y12{bottom:3596.250000px;}
.y11{bottom:3661.050000px;}
.y10{bottom:3725.850000px;}
.yf{bottom:3790.695000px;}
.ye{bottom:3855.495000px;}
.yd{bottom:3920.295000px;}
.yc{bottom:3985.095000px;}
.yb{bottom:4049.895000px;}
.ya{bottom:4114.695000px;}
.y9{bottom:4179.495000px;}
.y4{bottom:4275.615000px;}
.y3{bottom:4613.040000px;}
.y2{bottom:4735.440000px;}
.y1{bottom:4858.050000px;}
.h9{height:122.871094px;}
.hb{height:131.835938px;}
.hc{height:131.941406px;}
.h7{height:158.203125px;}
.h8{height:158.308594px;}
.hf{height:159.996094px;}
.h6{height:175.605469px;}
.hd{height:175.710937px;}
.h4{height:299.003906px;}
.h5{height:299.109375px;}
.h3{height:345.050508px;}
.h2{height:345.172219px;}
.ha{height:1056.960000px;}
.he{height:1187.280000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:1873.260000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x15{left:61.815000px;}
.x11{left:77.250000px;}
.x10{left:78.690000px;}
.xf{left:79.995000px;}
.xe{left:86.010000px;}
.xb{left:96.120000px;}
.x6{left:106.955947px;}
.xd{left:120.240000px;}
.x2{left:139.715947px;}
.x7{left:174.449947px;}
.x13{left:182.490000px;}
.x12{left:191.310000px;}
.x1a{left:502.920000px;}
.x16{left:540.540000px;}
.x1{left:1096.634947px;}
.x18{left:1247.610000px;}
.xc{left:1257.015000px;}
.x5{left:1340.309947px;}
.x19{left:1371.705000px;}
.x14{left:1381.110000px;}
.x4{left:1414.364947px;}
.x17{left:1462.215000px;}
.x1b{left:1481.685000px;}
.x8{left:1636.304947px;}
.x9{left:1703.804947px;}
.x1c{left:2128.469947px;}
.x3{left:2173.469947px;}
.x1d{left:2195.969947px;}
.xa{left:2702.264947px;}
@media print{
.v1{vertical-align:-3.840000pt;}
.v2{vertical-align:-2.826667pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.664000pt;}
.lsc{letter-spacing:-1.024000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.035840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.202133pt;}
.lsa{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls4{letter-spacing:29.361920pt;}
.ls5{letter-spacing:36.672000pt;}
.ls3{letter-spacing:172.755200pt;}
.ls0{letter-spacing:172.778667pt;}
.ls1{letter-spacing:172.800000pt;}
.ws0{word-spacing:-73.664640pt;}
.ws1{word-spacing:-70.761600pt;}
.ws28{word-spacing:-37.696000pt;}
.ws21{word-spacing:-37.568000pt;}
.ws3{word-spacing:-37.440000pt;}
.ws2b{word-spacing:-37.429120pt;}
.ws41{word-spacing:-37.248000pt;}
.ws8{word-spacing:-37.120000pt;}
.ws30{word-spacing:-31.200000pt;}
.ws4e{word-spacing:-4.480000pt;}
.ws11{word-spacing:-4.288000pt;}
.ws13{word-spacing:-4.256000pt;}
.ws48{word-spacing:-4.160000pt;}
.ws18{word-spacing:-3.976832pt;}
.ws43{word-spacing:-3.648000pt;}
.ws10{word-spacing:-2.304000pt;}
.ws47{word-spacing:-2.048000pt;}
.ws22{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.536000pt;}
.ws1d{word-spacing:-1.152000pt;}
.ws24{word-spacing:-1.120000pt;}
.wsb{word-spacing:-1.024000pt;}
.ws12{word-spacing:-0.896000pt;}
.ws4d{word-spacing:-0.789333pt;}
.ws4f{word-spacing:-0.661333pt;}
.ws25{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.512000pt;}
.ws23{word-spacing:-0.448000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.320000pt;}
.ws1e{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws20{word-spacing:0.000000pt;}
.wse{word-spacing:0.042667pt;}
.ws45{word-spacing:0.064000pt;}
.ws2f{word-spacing:0.256000pt;}
.ws29{word-spacing:0.288000pt;}
.wsc{word-spacing:0.320000pt;}
.ws9{word-spacing:0.352000pt;}
.ws1f{word-spacing:0.896000pt;}
.ws4a{word-spacing:7.232000pt;}
.ws4c{word-spacing:7.296000pt;}
.ws44{word-spacing:8.399104pt;}
.ws49{word-spacing:8.554667pt;}
.ws19{word-spacing:8.896000pt;}
.ws1b{word-spacing:9.344000pt;}
.ws1a{word-spacing:9.920000pt;}
.ws39{word-spacing:11.008000pt;}
.ws4b{word-spacing:11.776000pt;}
.ws3b{word-spacing:12.224000pt;}
.ws3c{word-spacing:12.480000pt;}
.ws3f{word-spacing:12.672000pt;}
.ws3a{word-spacing:13.056000pt;}
.ws3d{word-spacing:13.120000pt;}
.ws3e{word-spacing:13.162667pt;}
.wsf{word-spacing:18.624000pt;}
.ws42{word-spacing:21.952000pt;}
.ws40{word-spacing:22.570667pt;}
.ws26{word-spacing:30.464000pt;}
.ws2e{word-spacing:43.644928pt;}
.ws2d{word-spacing:43.803456pt;}
.ws2c{word-spacing:43.924352pt;}
.ws2a{word-spacing:43.954816pt;}
.ws6{word-spacing:56.298667pt;}
.ws4{word-spacing:57.344000pt;}
.ws5{word-spacing:57.536000pt;}
.ws17{word-spacing:68.928000pt;}
.ws16{word-spacing:69.248000pt;}
.ws15{word-spacing:69.376000pt;}
.ws14{word-spacing:69.504000pt;}
.ws1c{word-spacing:87.488000pt;}
.ws37{word-spacing:89.706667pt;}
.ws33{word-spacing:93.440000pt;}
.ws35{word-spacing:104.053333pt;}
.ws31{word-spacing:107.733333pt;}
.ws36{word-spacing:202.880000pt;}
.ws32{word-spacing:206.560000pt;}
.ws38{word-spacing:491.306667pt;}
.ws34{word-spacing:498.773333pt;}
.ws2{word-spacing:6126.854997pt;}
._6{margin-left:-17.787392pt;}
._5{margin-left:-15.972352pt;}
._8{margin-left:-14.520320pt;}
._0{margin-left:-7.260160pt;}
._7{margin-left:-6.171136pt;}
._4{margin-left:-3.993088pt;}
._1{margin-left:-2.178048pt;}
._3{margin-left:-1.089024pt;}
._2{width:1.089024pt;}
._9{width:2.239915pt;}
._17{width:30.316416pt;}
._10{width:34.626048pt;}
._14{width:37.280000pt;}
._e{width:38.304000pt;}
._b{width:39.586048pt;}
._11{width:47.904000pt;}
._26{width:50.805931pt;}
._f{width:54.752000pt;}
._27{width:60.458667pt;}
._15{width:68.992000pt;}
._16{width:82.583168pt;}
._d{width:95.905024pt;}
._12{width:126.113024pt;}
._13{width:127.582976pt;}
._23{width:210.400000pt;}
._21{width:212.853333pt;}
._1c{width:214.080000pt;}
._1a{width:216.586667pt;}
._22{width:222.133333pt;}
._1b{width:225.866667pt;}
._1f{width:234.933333pt;}
._18{width:238.826667pt;}
._20{width:264.266667pt;}
._19{width:267.946667pt;}
._24{width:650.720000pt;}
._1d{width:659.946667pt;}
._25{width:1111.093333pt;}
._1e{width:1124.106667pt;}
._c{width:2250.793643pt;}
._a{width:3585.059456pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:160.000000pt;}
.fs7{font-size:160.128000pt;}
.fs3{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fs2{font-size:213.120000pt;}
.fs8{font-size:213.248000pt;}
.fs1{font-size:362.880000pt;}
.fs0{font-size:363.008000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:17.186667pt;}
.y20{bottom:17.253333pt;}
.y7{bottom:60.000000pt;}
.y30{bottom:86.306667pt;}
.y3b{bottom:91.653333pt;}
.y1f{bottom:91.706667pt;}
.y2f{bottom:141.786667pt;}
.y32{bottom:143.133333pt;}
.y16{bottom:143.173333pt;}
.y2e{bottom:197.306667pt;}
.y22{bottom:211.386667pt;}
.y21{bottom:224.026667pt;}
.y17{bottom:227.840000pt;}
.y33{bottom:241.440000pt;}
.y2d{bottom:252.826667pt;}
.y3e{bottom:265.986667pt;}
.y3d{bottom:278.626667pt;}
.y2c{bottom:308.320000pt;}
.y18{bottom:312.506667pt;}
.y45{bottom:338.466667pt;}
.y34{bottom:339.746667pt;}
.y2b{bottom:363.840000pt;}
.y44{bottom:393.946667pt;}
.y19{bottom:397.146667pt;}
.y8{bottom:400.413333pt;}
.y2a{bottom:419.360000pt;}
.y35{bottom:438.053333pt;}
.y43{bottom:449.466667pt;}
.y29{bottom:474.853333pt;}
.y1a{bottom:481.826667pt;}
.y42{bottom:504.986667pt;}
.y28{bottom:530.373333pt;}
.y36{bottom:536.386667pt;}
.y41{bottom:560.480000pt;}
.y1b{bottom:566.493333pt;}
.y27{bottom:585.893333pt;}
.y4f{bottom:594.813333pt;}
.y40{bottom:616.000000pt;}
.y37{bottom:634.693333pt;}
.y26{bottom:641.373333pt;}
.y1c{bottom:651.133333pt;}
.y4e{bottom:652.413333pt;}
.y25{bottom:696.893333pt;}
.y4d{bottom:710.013333pt;}
.y31{bottom:730.240000pt;}
.y38{bottom:732.986667pt;}
.y1d{bottom:735.813333pt;}
.y24{bottom:752.413333pt;}
.y4c{bottom:767.613333pt;}
.y1e{bottom:820.453333pt;}
.y4b{bottom:825.053333pt;}
.y39{bottom:831.293333pt;}
.y23{bottom:878.333333pt;}
.y4a{bottom:882.853333pt;}
.y3a{bottom:929.600000pt;}
.y49{bottom:940.453333pt;}
.y3f{bottom:994.146667pt;}
.y48{bottom:998.053333pt;}
.y47{bottom:1055.653333pt;}
.y46{bottom:1113.253333pt;}
.y5{bottom:1193.026667pt;}
.y15{bottom:1930.080000pt;}
.y14{bottom:2988.733333pt;}
.y6{bottom:2990.720000pt;}
.y13{bottom:3033.533333pt;}
.y12{bottom:3196.666667pt;}
.y11{bottom:3254.266667pt;}
.y10{bottom:3311.866667pt;}
.yf{bottom:3369.506667pt;}
.ye{bottom:3427.106667pt;}
.yd{bottom:3484.706667pt;}
.yc{bottom:3542.306667pt;}
.yb{bottom:3599.906667pt;}
.ya{bottom:3657.506667pt;}
.y9{bottom:3715.106667pt;}
.y4{bottom:3800.546667pt;}
.y3{bottom:4100.480000pt;}
.y2{bottom:4209.280000pt;}
.y1{bottom:4318.266667pt;}
.h9{height:109.218750pt;}
.hb{height:117.187500pt;}
.hc{height:117.281250pt;}
.h7{height:140.625000pt;}
.h8{height:140.718750pt;}
.hf{height:142.218750pt;}
.h6{height:156.093750pt;}
.hd{height:156.187500pt;}
.h4{height:265.781250pt;}
.h5{height:265.875000pt;}
.h3{height:306.711563pt;}
.h2{height:306.819750pt;}
.ha{height:939.520000pt;}
.he{height:1055.360000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:1665.120000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x15{left:54.946667pt;}
.x11{left:68.666667pt;}
.x10{left:69.946667pt;}
.xf{left:71.106667pt;}
.xe{left:76.453333pt;}
.xb{left:85.440000pt;}
.x6{left:95.071953pt;}
.xd{left:106.880000pt;}
.x2{left:124.191953pt;}
.x7{left:155.066619pt;}
.x13{left:162.213333pt;}
.x12{left:170.053333pt;}
.x1a{left:447.040000pt;}
.x16{left:480.480000pt;}
.x1{left:974.786619pt;}
.x18{left:1108.986667pt;}
.xc{left:1117.346667pt;}
.x5{left:1191.386619pt;}
.x19{left:1219.293333pt;}
.x14{left:1227.653333pt;}
.x4{left:1257.213286pt;}
.x17{left:1299.746667pt;}
.x1b{left:1317.053333pt;}
.x8{left:1454.493286pt;}
.x9{left:1514.493286pt;}
.x1c{left:1891.973286pt;}
.x3{left:1931.973286pt;}
.x1d{left:1951.973286pt;}
.xa{left:2402.013286pt;}
}




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