
    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_5721d35dfba348d90605798a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ab8d8ddf26030372a4694f87.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b930fdcd81c1730f15a3d9a6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c8eec6e6590ebe13ec72e2ac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:259.200000px;}
.lsb{letter-spacing:-1.284000px;}
.lse{letter-spacing:-1.068000px;}
.lsa{letter-spacing:-0.565200px;}
.lsc{letter-spacing:-0.419400px;}
.ls7{letter-spacing:-0.361200px;}
.lsd{letter-spacing:-0.346200px;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.167400px;}
.lsf{letter-spacing:-0.084000px;}
.ls9{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.319200px;}
.ls3{letter-spacing:40.320000px;}
.ls2{letter-spacing:61.967520px;}
.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;}
}
.ws1d{word-spacing:-45.703560px;}
.ws1f{word-spacing:-44.981760px;}
.ws0{word-spacing:-40.680000px;}
.ws1{word-spacing:-37.913760px;}
.ws4{word-spacing:-35.310240px;}
.ws2d{word-spacing:-2.179680px;}
.ws30{word-spacing:-1.594080px;}
.ws2f{word-spacing:-0.401040px;}
.ws2e{word-spacing:-0.362400px;}
.ws31{word-spacing:0.000000px;}
.ws19{word-spacing:0.145152px;}
.ws17{word-spacing:1.539264px;}
.ws18{word-spacing:1.857312px;}
.ws12{word-spacing:4.376160px;}
.ws14{word-spacing:4.487040px;}
.ws16{word-spacing:4.842720px;}
.ws13{word-spacing:5.505840px;}
.ws15{word-spacing:7.223040px;}
.wsb{word-spacing:11.217600px;}
.ws10{word-spacing:11.244240px;}
.ws11{word-spacing:11.906640px;}
.wsd{word-spacing:11.909520px;}
.wsc{word-spacing:11.985840px;}
.ws1c{word-spacing:12.022560px;}
.wsf{word-spacing:12.241920px;}
.wse{word-spacing:12.266640px;}
.ws1a{word-spacing:12.558960px;}
.ws21{word-spacing:12.762720px;}
.ws1b{word-spacing:13.070160px;}
.ws1e{word-spacing:13.481280px;}
.ws20{word-spacing:13.482720px;}
.ws2c{word-spacing:14.718960px;}
.ws25{word-spacing:14.748240px;}
.ws2b{word-spacing:14.813760px;}
.ws23{word-spacing:14.817600px;}
.ws29{word-spacing:14.991600px;}
.ws24{word-spacing:15.226560px;}
.ws26{word-spacing:15.304080px;}
.ws22{word-spacing:15.305040px;}
.ws28{word-spacing:15.474240px;}
.ws2a{word-spacing:15.621840px;}
.ws27{word-spacing:15.950160px;}
.ws9{word-spacing:123.195600px;}
.ws8{word-spacing:123.292800px;}
.wsa{word-spacing:123.400080px;}
.ws7{word-spacing:123.926160px;}
.ws3{word-spacing:465.120000px;}
.ws2{word-spacing:502.572000px;}
.ws6{word-spacing:1106.778480px;}
.ws5{word-spacing:1144.523088px;}
._f{margin-left:-18.044160px;}
._15{margin-left:-15.300000px;}
._17{margin-left:-12.286080px;}
._18{margin-left:-10.918320px;}
._e{margin-left:-9.780480px;}
._19{margin-left:-8.028000px;}
._2{margin-left:-6.840000px;}
._8{margin-left:-5.794560px;}
._1{margin-left:-3.960000px;}
._4{margin-left:-2.808000px;}
._0{margin-left:-1.440000px;}
._3{width:1.584000px;}
._10{width:2.778240px;}
._16{width:34.256160px;}
._12{width:43.999200px;}
._14{width:45.769680px;}
._13{width:47.031840px;}
._b{width:48.043296px;}
._a{width:51.459600px;}
._9{width:58.652400px;}
._c{width:59.978640px;}
._d{width:61.003680px;}
._11{width:62.803440px;}
._6{width:170.402400px;}
._7{width:171.792240px;}
._5{width:2893.548000px;}
.fc1{color:rgb(0,115,170);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(64,64,64);}
.fs4{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs5{font-size:156.240000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs0{font-size:180.000000px;}
.fs7{font-size:203.760000px;}
.fs8{font-size:203.904000px;}
.fs1{font-size:216.000000px;}
.fsc{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.fsa{font-size:576.000000px;}
.fs9{font-size:779.880000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:24.045000px;}
.y52{bottom:24.300000px;}
.y4f{bottom:26.280000px;}
.y18{bottom:26.490000px;}
.y23{bottom:29.700000px;}
.y5{bottom:34.560000px;}
.y42{bottom:41.616000px;}
.y9{bottom:54.435000px;}
.y62{bottom:60.585000px;}
.y2e{bottom:65.775000px;}
.y39{bottom:67.215000px;}
.y51{bottom:75.600000px;}
.y4e{bottom:77.580000px;}
.y17{bottom:108.540000px;}
.y8{bottom:109.515000px;}
.y22{bottom:111.750000px;}
.y61{bottom:115.485000px;}
.y4a{bottom:126.645000px;}
.y50{bottom:126.900000px;}
.y4d{bottom:128.880000px;}
.y2d{bottom:135.825000px;}
.y38{bottom:137.265000px;}
.y41{bottom:151.455000px;}
.y7{bottom:164.415000px;}
.y16{bottom:190.590000px;}
.y21{bottom:193.785000px;}
.y2c{bottom:205.845000px;}
.y37{bottom:207.285000px;}
.y40{bottom:212.655000px;}
.y6{bottom:219.315000px;}
.y15{bottom:272.670000px;}
.y3f{bottom:273.855000px;}
.y20{bottom:275.835000px;}
.y2b{bottom:275.910000px;}
.y36{bottom:277.350000px;}
.y55{bottom:291.315000px;}
.y4b{bottom:310.965000px;}
.y3e{bottom:335.055000px;}
.y54{bottom:342.615000px;}
.y2a{bottom:345.930000px;}
.y35{bottom:347.370000px;}
.y14{bottom:354.705000px;}
.y65{bottom:356.400000px;}
.y1f{bottom:357.870000px;}
.y53{bottom:393.915000px;}
.y3d{bottom:396.285000px;}
.y64{bottom:411.300000px;}
.y29{bottom:415.980000px;}
.y34{bottom:417.420000px;}
.y13{bottom:436.755000px;}
.y1e{bottom:439.950000px;}
.y3c{bottom:457.485000px;}
.y63{bottom:466.200000px;}
.y28{bottom:486.030000px;}
.y33{bottom:487.440000px;}
.y57{bottom:488.595000px;}
.y48{bottom:495.000000px;}
.y60{bottom:508.290000px;}
.y3b{bottom:518.685000px;}
.y12{bottom:518.790000px;}
.y1d{bottom:522.000000px;}
.y56{bottom:539.895000px;}
.y47{bottom:546.300000px;}
.y27{bottom:556.050000px;}
.y32{bottom:557.490000px;}
.y5f{bottom:563.190000px;}
.y3a{bottom:579.885000px;}
.y46{bottom:597.600000px;}
.y11{bottom:600.840000px;}
.y1c{bottom:604.050000px;}
.y5e{bottom:618.090000px;}
.y26{bottom:626.115000px;}
.y31{bottom:627.510000px;}
.y45{bottom:648.900000px;}
.y67{bottom:652.860000px;}
.yb{bottom:680.145000px;}
.y10{bottom:682.890000px;}
.y1b{bottom:686.085000px;}
.y25{bottom:696.135000px;}
.y30{bottom:697.575000px;}
.y44{bottom:700.200000px;}
.y75{bottom:704.055000px;}
.y66{bottom:707.760000px;}
.y24{bottom:721.440000px;}
.ya{bottom:735.045000px;}
.y59{bottom:743.040000px;}
.yf{bottom:764.925000px;}
.y1a{bottom:768.135000px;}
.y3{bottom:771.300000px;}
.y2f{bottom:782.070000px;}
.y58{bottom:794.340000px;}
.y5b{bottom:803.880000px;}
.y2{bottom:826.200000px;}
.y6b{bottom:826.770000px;}
.y69{bottom:828.795000px;}
.y5a{bottom:855.180000px;}
.y19{bottom:856.830000px;}
.y6a{bottom:881.670000px;}
.y68{bottom:883.695000px;}
.y6d{bottom:971.490000px;}
.y5c{bottom:982.155000px;}
.y6c{bottom:1037.370000px;}
.y71{bottom:1619.925000px;}
.y74{bottom:1775.340000px;}
.y5d{bottom:1820.880000px;}
.y43{bottom:1866.780000px;}
.y49{bottom:2102.400000px;}
.y72{bottom:3023.070000px;}
.y73{bottom:3161.910000px;}
.y1{bottom:3240.000000px;}
.ye{bottom:3241.620000px;}
.y4{bottom:3921.840000px;}
.yd{bottom:4160.235000px;}
.yc{bottom:4225.035000px;}
.y70{bottom:4382.970000px;}
.y6f{bottom:4630.065000px;}
.y6e{bottom:4817.910000px;}
.ha{height:143.226562px;}
.hd{height:143.369789px;}
.hb{height:155.400820px;}
.h8{height:166.858945px;}
.h9{height:167.002172px;}
.h3{height:179.033203px;}
.h12{height:179.640000px;}
.h14{height:180.360000px;}
.h10{height:184.306641px;}
.h13{height:184.320000px;}
.he{height:202.665586px;}
.hf{height:202.808812px;}
.h4{height:209.700000px;}
.h5{height:221.167969px;}
.h19{height:270.562148px;}
.h18{height:270.709594px;}
.h6{height:480.367969px;}
.h17{height:572.906250px;}
.h16{height:798.539238px;}
.hc{height:845.820000px;}
.h7{height:889.380000px;}
.h11{height:1069.020000px;}
.h15{height:1124.280000px;}
.h2{height:1241.280000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w8{width:1180.800000px;}
.w9{width:1232.280000px;}
.wa{width:1298.520000px;}
.w5{width:1510.020000px;}
.w7{width:1543.500000px;}
.wb{width:1623.420000px;}
.w3{width:1738.440000px;}
.w2{width:1952.820000px;}
.w6{width:2976.120000px;}
.w4{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x19{left:11.985000px;}
.x49{left:27.000000px;}
.x4b{left:30.060000px;}
.x1e{left:35.670000px;}
.x38{left:57.095947px;}
.x39{left:87.840000px;}
.x34{left:101.805000px;}
.x5a{left:104.040000px;}
.x58{left:112.785000px;}
.x4a{left:120.420000px;}
.x5b{left:128.700000px;}
.x4c{left:131.220000px;}
.x47{left:134.355000px;}
.x33{left:137.520000px;}
.x5c{left:142.815000px;}
.x57{left:152.385000px;}
.x60{left:158.610000px;}
.x35{left:165.090000px;}
.x9{left:174.569971px;}
.x59{left:176.325000px;}
.x51{left:177.630000px;}
.x48{left:178.815000px;}
.x32{left:192.495000px;}
.x3{left:214.380000px;}
.xa{left:216.689971px;}
.x5d{left:235.365000px;}
.x18{left:249.120000px;}
.x20{left:265.890000px;}
.xb{left:295.229947px;}
.x22{left:299.700000px;}
.x4d{left:306.975000px;}
.x4e{left:335.775000px;}
.x61{left:342.570000px;}
.x31{left:358.020000px;}
.x2e{left:377.310000px;}
.xc{left:378.569947px;}
.x1a{left:389.085000px;}
.x45{left:399.060000px;}
.x62{left:412.949947px;}
.x1c{left:424.080000px;}
.x36{left:427.470000px;}
.x1d{left:442.410000px;}
.x3f{left:450.540000px;}
.x2f{left:457.095000px;}
.x1b{left:509.790000px;}
.x1f{left:548.715000px;}
.x21{left:567.930000px;}
.x17{left:698.070000px;}
.x30{left:744.840000px;}
.x15{left:748.830000px;}
.x12{left:755.385000px;}
.x14{left:774.975000px;}
.x10{left:814.575000px;}
.x46{left:844.350000px;}
.x40{left:877.065000px;}
.x13{left:880.275000px;}
.x16{left:965.805000px;}
.x42{left:970.845000px;}
.x4f{left:1000.800000px;}
.xf{left:1031.505000px;}
.x50{left:1064.910000px;}
.x43{left:1088.790000px;}
.x11{left:1097.205000px;}
.x44{left:1117.230000px;}
.x4{left:1120.755000px;}
.x55{left:1152.000000px;}
.x5e{left:1170.465000px;}
.x56{left:1182.240000px;}
.x3a{left:1189.695000px;}
.x64{left:1202.609947px;}
.x6{left:1209.809971px;}
.x5f{left:1212.585000px;}
.x1{left:1223.174971px;}
.x3b{left:1225.365000px;}
.x3c{left:1233.645000px;}
.x7{left:1257.689971px;}
.x53{left:1273.290000px;}
.x2{left:1274.834971px;}
.x3d{left:1287.825000px;}
.x3e{left:1291.965000px;}
.x8{left:1306.469971px;}
.x37{left:1317.090000px;}
.x5{left:1318.529971px;}
.x54{left:1320.270000px;}
.x41{left:1338.405000px;}
.x63{left:1381.214947px;}
.x65{left:1466.174947px;}
.x2d{left:1470.630000px;}
.x25{left:1593.360000px;}
.x2b{left:1706.370000px;}
.x2c{left:1840.395000px;}
.xe{left:1900.260000px;}
.x26{left:1917.975000px;}
.x2a{left:1925.100000px;}
.x52{left:1944.900000px;}
.x24{left:2002.680000px;}
.x27{left:2030.970000px;}
.x28{left:2037.930000px;}
.xd{left:2148.989947px;}
.x29{left:2200.215000px;}
.x23{left:2821.245000px;}
.x68{left:2860.529947px;}
.x66{left:3205.514947px;}
.x67{left:3213.614947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:230.400000pt;}
.lsb{letter-spacing:-1.141333pt;}
.lse{letter-spacing:-0.949333pt;}
.lsa{letter-spacing:-0.502400pt;}
.lsc{letter-spacing:-0.372800pt;}
.ls7{letter-spacing:-0.321067pt;}
.lsd{letter-spacing:-0.307733pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.148800pt;}
.lsf{letter-spacing:-0.074667pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.283733pt;}
.ls3{letter-spacing:35.840000pt;}
.ls2{letter-spacing:55.082240pt;}
.ws1d{word-spacing:-40.625387pt;}
.ws1f{word-spacing:-39.983787pt;}
.ws0{word-spacing:-36.160000pt;}
.ws1{word-spacing:-33.701120pt;}
.ws4{word-spacing:-31.386880pt;}
.ws2d{word-spacing:-1.937493pt;}
.ws30{word-spacing:-1.416960pt;}
.ws2f{word-spacing:-0.356480pt;}
.ws2e{word-spacing:-0.322133pt;}
.ws31{word-spacing:0.000000pt;}
.ws19{word-spacing:0.129024pt;}
.ws17{word-spacing:1.368235pt;}
.ws18{word-spacing:1.650944pt;}
.ws12{word-spacing:3.889920pt;}
.ws14{word-spacing:3.988480pt;}
.ws16{word-spacing:4.304640pt;}
.ws13{word-spacing:4.894080pt;}
.ws15{word-spacing:6.420480pt;}
.wsb{word-spacing:9.971200pt;}
.ws10{word-spacing:9.994880pt;}
.ws11{word-spacing:10.583680pt;}
.wsd{word-spacing:10.586240pt;}
.wsc{word-spacing:10.654080pt;}
.ws1c{word-spacing:10.686720pt;}
.wsf{word-spacing:10.881707pt;}
.wse{word-spacing:10.903680pt;}
.ws1a{word-spacing:11.163520pt;}
.ws21{word-spacing:11.344640pt;}
.ws1b{word-spacing:11.617920pt;}
.ws1e{word-spacing:11.983360pt;}
.ws20{word-spacing:11.984640pt;}
.ws2c{word-spacing:13.083520pt;}
.ws25{word-spacing:13.109547pt;}
.ws2b{word-spacing:13.167787pt;}
.ws23{word-spacing:13.171200pt;}
.ws29{word-spacing:13.325867pt;}
.ws24{word-spacing:13.534720pt;}
.ws26{word-spacing:13.603627pt;}
.ws22{word-spacing:13.604480pt;}
.ws28{word-spacing:13.754880pt;}
.ws2a{word-spacing:13.886080pt;}
.ws27{word-spacing:14.177920pt;}
.ws9{word-spacing:109.507200pt;}
.ws8{word-spacing:109.593600pt;}
.wsa{word-spacing:109.688960pt;}
.ws7{word-spacing:110.156587pt;}
.ws3{word-spacing:413.440000pt;}
.ws2{word-spacing:446.730667pt;}
.ws6{word-spacing:983.803093pt;}
.ws5{word-spacing:1017.353856pt;}
._f{margin-left:-16.039253pt;}
._15{margin-left:-13.600000pt;}
._17{margin-left:-10.920960pt;}
._18{margin-left:-9.705173pt;}
._e{margin-left:-8.693760pt;}
._19{margin-left:-7.136000pt;}
._2{margin-left:-6.080000pt;}
._8{margin-left:-5.150720pt;}
._1{margin-left:-3.520000pt;}
._4{margin-left:-2.496000pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.408000pt;}
._10{width:2.469547pt;}
._16{width:30.449920pt;}
._12{width:39.110400pt;}
._14{width:40.684160pt;}
._13{width:41.806080pt;}
._b{width:42.705152pt;}
._a{width:45.741867pt;}
._9{width:52.135467pt;}
._c{width:53.314347pt;}
._d{width:54.225493pt;}
._11{width:55.825280pt;}
._6{width:151.468800pt;}
._7{width:152.704213pt;}
._5{width:2572.042667pt;}
.fs4{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs5{font-size:138.880000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs0{font-size:160.000000pt;}
.fs7{font-size:181.120000pt;}
.fs8{font-size:181.248000pt;}
.fs1{font-size:192.000000pt;}
.fsc{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.fsa{font-size:512.000000pt;}
.fs9{font-size:693.226667pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:21.373333pt;}
.y52{bottom:21.600000pt;}
.y4f{bottom:23.360000pt;}
.y18{bottom:23.546667pt;}
.y23{bottom:26.400000pt;}
.y5{bottom:30.720000pt;}
.y42{bottom:36.992000pt;}
.y9{bottom:48.386667pt;}
.y62{bottom:53.853333pt;}
.y2e{bottom:58.466667pt;}
.y39{bottom:59.746667pt;}
.y51{bottom:67.200000pt;}
.y4e{bottom:68.960000pt;}
.y17{bottom:96.480000pt;}
.y8{bottom:97.346667pt;}
.y22{bottom:99.333333pt;}
.y61{bottom:102.653333pt;}
.y4a{bottom:112.573333pt;}
.y50{bottom:112.800000pt;}
.y4d{bottom:114.560000pt;}
.y2d{bottom:120.733333pt;}
.y38{bottom:122.013333pt;}
.y41{bottom:134.626667pt;}
.y7{bottom:146.146667pt;}
.y16{bottom:169.413333pt;}
.y21{bottom:172.253333pt;}
.y2c{bottom:182.973333pt;}
.y37{bottom:184.253333pt;}
.y40{bottom:189.026667pt;}
.y6{bottom:194.946667pt;}
.y15{bottom:242.373333pt;}
.y3f{bottom:243.426667pt;}
.y20{bottom:245.186667pt;}
.y2b{bottom:245.253333pt;}
.y36{bottom:246.533333pt;}
.y55{bottom:258.946667pt;}
.y4b{bottom:276.413333pt;}
.y3e{bottom:297.826667pt;}
.y54{bottom:304.546667pt;}
.y2a{bottom:307.493333pt;}
.y35{bottom:308.773333pt;}
.y14{bottom:315.293333pt;}
.y65{bottom:316.800000pt;}
.y1f{bottom:318.106667pt;}
.y53{bottom:350.146667pt;}
.y3d{bottom:352.253333pt;}
.y64{bottom:365.600000pt;}
.y29{bottom:369.760000pt;}
.y34{bottom:371.040000pt;}
.y13{bottom:388.226667pt;}
.y1e{bottom:391.066667pt;}
.y3c{bottom:406.653333pt;}
.y63{bottom:414.400000pt;}
.y28{bottom:432.026667pt;}
.y33{bottom:433.280000pt;}
.y57{bottom:434.306667pt;}
.y48{bottom:440.000000pt;}
.y60{bottom:451.813333pt;}
.y3b{bottom:461.053333pt;}
.y12{bottom:461.146667pt;}
.y1d{bottom:464.000000pt;}
.y56{bottom:479.906667pt;}
.y47{bottom:485.600000pt;}
.y27{bottom:494.266667pt;}
.y32{bottom:495.546667pt;}
.y5f{bottom:500.613333pt;}
.y3a{bottom:515.453333pt;}
.y46{bottom:531.200000pt;}
.y11{bottom:534.080000pt;}
.y1c{bottom:536.933333pt;}
.y5e{bottom:549.413333pt;}
.y26{bottom:556.546667pt;}
.y31{bottom:557.786667pt;}
.y45{bottom:576.800000pt;}
.y67{bottom:580.320000pt;}
.yb{bottom:604.573333pt;}
.y10{bottom:607.013333pt;}
.y1b{bottom:609.853333pt;}
.y25{bottom:618.786667pt;}
.y30{bottom:620.066667pt;}
.y44{bottom:622.400000pt;}
.y75{bottom:625.826667pt;}
.y66{bottom:629.120000pt;}
.y24{bottom:641.280000pt;}
.ya{bottom:653.373333pt;}
.y59{bottom:660.480000pt;}
.yf{bottom:679.933333pt;}
.y1a{bottom:682.786667pt;}
.y3{bottom:685.600000pt;}
.y2f{bottom:695.173333pt;}
.y58{bottom:706.080000pt;}
.y5b{bottom:714.560000pt;}
.y2{bottom:734.400000pt;}
.y6b{bottom:734.906667pt;}
.y69{bottom:736.706667pt;}
.y5a{bottom:760.160000pt;}
.y19{bottom:761.626667pt;}
.y6a{bottom:783.706667pt;}
.y68{bottom:785.506667pt;}
.y6d{bottom:863.546667pt;}
.y5c{bottom:873.026667pt;}
.y6c{bottom:922.106667pt;}
.y71{bottom:1439.933333pt;}
.y74{bottom:1578.080000pt;}
.y5d{bottom:1618.560000pt;}
.y43{bottom:1659.360000pt;}
.y49{bottom:1868.800000pt;}
.y72{bottom:2687.173333pt;}
.y73{bottom:2810.586667pt;}
.y1{bottom:2880.000000pt;}
.ye{bottom:2881.440000pt;}
.y4{bottom:3486.080000pt;}
.yd{bottom:3697.986667pt;}
.yc{bottom:3755.586667pt;}
.y70{bottom:3895.973333pt;}
.y6f{bottom:4115.613333pt;}
.y6e{bottom:4282.586667pt;}
.ha{height:127.312500pt;}
.hd{height:127.439813pt;}
.hb{height:138.134062pt;}
.h8{height:148.319063pt;}
.h9{height:148.446375pt;}
.h3{height:159.140625pt;}
.h12{height:159.680000pt;}
.h14{height:160.320000pt;}
.h10{height:163.828125pt;}
.h13{height:163.840000pt;}
.he{height:180.147188pt;}
.hf{height:180.274500pt;}
.h4{height:186.400000pt;}
.h5{height:196.593750pt;}
.h19{height:240.499687pt;}
.h18{height:240.630750pt;}
.h6{height:426.993750pt;}
.h17{height:509.250000pt;}
.h16{height:709.812656pt;}
.hc{height:751.840000pt;}
.h7{height:790.560000pt;}
.h11{height:950.240000pt;}
.h15{height:999.360000pt;}
.h2{height:1103.360000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w8{width:1049.600000pt;}
.w9{width:1095.360000pt;}
.wa{width:1154.240000pt;}
.w5{width:1342.240000pt;}
.w7{width:1372.000000pt;}
.wb{width:1443.040000pt;}
.w3{width:1545.280000pt;}
.w2{width:1735.840000pt;}
.w6{width:2645.440000pt;}
.w4{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x19{left:10.653333pt;}
.x49{left:24.000000pt;}
.x4b{left:26.720000pt;}
.x1e{left:31.706667pt;}
.x38{left:50.751953pt;}
.x39{left:78.080000pt;}
.x34{left:90.493333pt;}
.x5a{left:92.480000pt;}
.x58{left:100.253333pt;}
.x4a{left:107.040000pt;}
.x5b{left:114.400000pt;}
.x4c{left:116.640000pt;}
.x47{left:119.426667pt;}
.x33{left:122.240000pt;}
.x5c{left:126.946667pt;}
.x57{left:135.453333pt;}
.x60{left:140.986667pt;}
.x35{left:146.746667pt;}
.x9{left:155.173307pt;}
.x59{left:156.733333pt;}
.x51{left:157.893333pt;}
.x48{left:158.946667pt;}
.x32{left:171.106667pt;}
.x3{left:190.560000pt;}
.xa{left:192.613307pt;}
.x5d{left:209.213333pt;}
.x18{left:221.440000pt;}
.x20{left:236.346667pt;}
.xb{left:262.426619pt;}
.x22{left:266.400000pt;}
.x4d{left:272.866667pt;}
.x4e{left:298.466667pt;}
.x61{left:304.506667pt;}
.x31{left:318.240000pt;}
.x2e{left:335.386667pt;}
.xc{left:336.506619pt;}
.x1a{left:345.853333pt;}
.x45{left:354.720000pt;}
.x62{left:367.066619pt;}
.x1c{left:376.960000pt;}
.x36{left:379.973333pt;}
.x1d{left:393.253333pt;}
.x3f{left:400.480000pt;}
.x2f{left:406.306667pt;}
.x1b{left:453.146667pt;}
.x1f{left:487.746667pt;}
.x21{left:504.826667pt;}
.x17{left:620.506667pt;}
.x30{left:662.080000pt;}
.x15{left:665.626667pt;}
.x12{left:671.453333pt;}
.x14{left:688.866667pt;}
.x10{left:724.066667pt;}
.x46{left:750.533333pt;}
.x40{left:779.613333pt;}
.x13{left:782.466667pt;}
.x16{left:858.493333pt;}
.x42{left:862.973333pt;}
.x4f{left:889.600000pt;}
.xf{left:916.893333pt;}
.x50{left:946.586667pt;}
.x43{left:967.813333pt;}
.x11{left:975.293333pt;}
.x44{left:993.093333pt;}
.x4{left:996.226667pt;}
.x55{left:1024.000000pt;}
.x5e{left:1040.413333pt;}
.x56{left:1050.880000pt;}
.x3a{left:1057.506667pt;}
.x64{left:1068.986619pt;}
.x6{left:1075.386641pt;}
.x5f{left:1077.853333pt;}
.x1{left:1087.266641pt;}
.x3b{left:1089.213333pt;}
.x3c{left:1096.573333pt;}
.x7{left:1117.946641pt;}
.x53{left:1131.813333pt;}
.x2{left:1133.186641pt;}
.x3d{left:1144.733333pt;}
.x3e{left:1148.413333pt;}
.x8{left:1161.306641pt;}
.x37{left:1170.746667pt;}
.x5{left:1172.026641pt;}
.x54{left:1173.573333pt;}
.x41{left:1189.693333pt;}
.x63{left:1227.746619pt;}
.x65{left:1303.266619pt;}
.x2d{left:1307.226667pt;}
.x25{left:1416.320000pt;}
.x2b{left:1516.773333pt;}
.x2c{left:1635.906667pt;}
.xe{left:1689.120000pt;}
.x26{left:1704.866667pt;}
.x2a{left:1711.200000pt;}
.x52{left:1728.800000pt;}
.x24{left:1780.160000pt;}
.x27{left:1805.306667pt;}
.x28{left:1811.493333pt;}
.xd{left:1910.213286pt;}
.x29{left:1955.746667pt;}
.x23{left:2507.773333pt;}
.x68{left:2542.693286pt;}
.x66{left:2849.346619pt;}
.x67{left:2856.546619pt;}
}




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