
    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_5b267234e965056cc5261de1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_15bedd45a1b980381a30c951.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_117ee323d0c75505accb49a3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cef089d2b967da0e34cb0951.woff')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.m2{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:192.240000px;}
.ls7{letter-spacing:-7.800000px;}
.lsf{letter-spacing:-6.420000px;}
.ls14{letter-spacing:-2.478000px;}
.ls10{letter-spacing:-1.908000px;}
.lsb{letter-spacing:-1.482000px;}
.ls8{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.400200px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.319800px;}
.ls16{letter-spacing:-0.313200px;}
.ls17{letter-spacing:-0.295200px;}
.lse{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.126000px;}
.ls4{letter-spacing:-0.007920px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024480px;}
.ls2{letter-spacing:0.071280px;}
.ls12{letter-spacing:0.071400px;}
.ls15{letter-spacing:0.076800px;}
.ls11{letter-spacing:0.082200px;}
.lsc{letter-spacing:0.150600px;}
.ls18{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.209400px;}
.ls5{letter-spacing:0.288000px;}
.ls0{letter-spacing:148.716000px;}
.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;}
}
.ws0{word-spacing:-65.088000px;}
.ws1f{word-spacing:-48.816000px;}
.ws1b{word-spacing:-43.517640px;}
.ws1{word-spacing:-43.446240px;}
.ws3{word-spacing:-37.913760px;}
.wsb{word-spacing:-32.544000px;}
.ws5{word-spacing:-27.166320px;}
.ws8{word-spacing:-2.808000px;}
.ws20{word-spacing:-2.131440px;}
.ws19{word-spacing:-1.683360px;}
.ws22{word-spacing:-1.336680px;}
.wsa{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.056000px;}
.wsf{word-spacing:-0.796680px;}
.ws6{word-spacing:-0.648000px;}
.ws21{word-spacing:-0.627120px;}
.ws18{word-spacing:-0.528480px;}
.wsd{word-spacing:-0.356400px;}
.ws4{word-spacing:-0.336240px;}
.ws15{word-spacing:-0.128160px;}
.ws12{word-spacing:-0.101880px;}
.ws2{word-spacing:-0.060000px;}
.ws27{word-spacing:0.000000px;}
.wsc{word-spacing:0.030240px;}
.ws24{word-spacing:0.084960px;}
.ws1c{word-spacing:0.105840px;}
.ws1e{word-spacing:0.264240px;}
.ws1a{word-spacing:0.745320px;}
.ws25{word-spacing:0.778320px;}
.wse{word-spacing:1.123920px;}
.ws26{word-spacing:1.160640px;}
.ws10{word-spacing:1.261200px;}
.ws23{word-spacing:1.340640px;}
.ws14{word-spacing:2.211840px;}
.ws13{word-spacing:2.775840px;}
.ws11{word-spacing:3.363120px;}
.ws17{word-spacing:3.825360px;}
.ws1d{word-spacing:5.636880px;}
.ws16{word-spacing:12.387600px;}
.ws7{word-spacing:14.784000px;}
._a{margin-left:-32.256000px;}
._16{margin-left:-19.161600px;}
._5{margin-left:-17.714160px;}
._d{margin-left:-12.744000px;}
._14{margin-left:-11.342160px;}
._6{margin-left:-10.078560px;}
._0{margin-left:-7.200000px;}
._7{margin-left:-5.472000px;}
._4{margin-left:-4.037040px;}
._2{margin-left:-2.691360px;}
._3{margin-left:-1.153440px;}
._1{width:1.728000px;}
._13{width:2.764080px;}
._12{width:4.123680px;}
._8{width:5.170320px;}
._10{width:38.933040px;}
._11{width:40.313280px;}
._17{width:42.363120px;}
._15{width:44.454480px;}
._b{width:47.577840px;}
._c{width:48.869040px;}
._e{width:74.358480px;}
._9{width:132.003360px;}
._f{width:1954.331040px;}
.fc5{color:rgb(191,191,191);}
.fc3{color:rgb(32,32,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(55,70,75);}
.fc4{color:rgb(165,30,85);}
.fc0{color:rgb(27,35,38);}
.fs4{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs3{font-size:167.760000px;}
.fs1{font-size:192.240000px;}
.fs6{font-size:216.000000px;}
.fs0{font-size:288.000000px;}
.fs2{font-size:300.240000px;}
.fs7{font-size:324.000000px;}
.fs5{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:49.176000px;}
.y1c{bottom:156.135000px;}
.y8c{bottom:188.535000px;}
.y1b{bottom:205.635000px;}
.y8b{bottom:243.435000px;}
.y1a{bottom:255.135000px;}
.y8a{bottom:298.335000px;}
.y19{bottom:304.635000px;}
.y75{bottom:510.090000px;}
.y89{bottom:537.225000px;}
.y46{bottom:566.130000px;}
.y74{bottom:567.690000px;}
.y45{bottom:707.475000px;}
.y85{bottom:708.690000px;}
.y73{bottom:726.150000px;}
.y7a{bottom:755.970000px;}
.y44{bottom:765.075000px;}
.y84{bottom:766.290000px;}
.y72{bottom:783.750000px;}
.y79{bottom:813.600000px;}
.y43{bottom:822.675000px;}
.y83{bottom:823.890000px;}
.y71{bottom:841.350000px;}
.y78{bottom:871.200000px;}
.y42{bottom:880.275000px;}
.y82{bottom:881.490000px;}
.y70{bottom:898.950000px;}
.y77{bottom:928.800000px;}
.y41{bottom:937.875000px;}
.y81{bottom:940.710000px;}
.y6f{bottom:956.550000px;}
.y76{bottom:986.400000px;}
.y86{bottom:994.065000px;}
.y40{bottom:995.475000px;}
.y6e{bottom:1014.150000px;}
.y3f{bottom:1117.155000px;}
.y7f{bottom:1195.770000px;}
.y3e{bottom:1203.555000px;}
.y6d{bottom:1220.940000px;}
.y68{bottom:1252.470000px;}
.y7e{bottom:1253.415000px;}
.y6c{bottom:1278.540000px;}
.y67{bottom:1310.070000px;}
.y7d{bottom:1311.015000px;}
.y6b{bottom:1336.140000px;}
.y66{bottom:1367.670000px;}
.y7c{bottom:1368.615000px;}
.y6a{bottom:1393.740000px;}
.y65{bottom:1425.270000px;}
.y7b{bottom:1427.835000px;}
.y18{bottom:1430.355000px;}
.y69{bottom:1451.340000px;}
.y80{bottom:1484.895000px;}
.y17{bottom:1487.955000px;}
.y16{bottom:1545.555000px;}
.y15{bottom:1603.155000px;}
.y88{bottom:1686.780000px;}
.y64{bottom:1691.610000px;}
.y14{bottom:1717.380000px;}
.y87{bottom:1733.220000px;}
.y13{bottom:1774.980000px;}
.y12{bottom:1832.580000px;}
.y11{bottom:1890.180000px;}
.y53{bottom:1935.150000px;}
.y10{bottom:1947.780000px;}
.y63{bottom:1962.285000px;}
.y52{bottom:1992.780000px;}
.yf{bottom:2005.380000px;}
.ye{bottom:2062.980000px;}
.y5f{bottom:2175.480000px;}
.y51{bottom:2175.765000px;}
.yd{bottom:2184.660000px;}
.y57{bottom:2203.095000px;}
.y50{bottom:2226.165000px;}
.y5e{bottom:2233.080000px;}
.y56{bottom:2253.495000px;}
.y4f{bottom:2276.565000px;}
.y5d{bottom:2290.680000px;}
.y55{bottom:2303.895000px;}
.y4e{bottom:2326.965000px;}
.y5c{bottom:2349.900000px;}
.y54{bottom:2354.295000px;}
.yb{bottom:2361.240000px;}
.y4d{bottom:2377.365000px;}
.y60{bottom:2413.770000px;}
.ya{bottom:2418.840000px;}
.y9{bottom:2476.440000px;}
.y8{bottom:2534.040000px;}
.y7{bottom:2591.640000px;}
.y5a{bottom:2593.155000px;}
.y4c{bottom:2597.580000px;}
.y48{bottom:2644.995000px;}
.y4b{bottom:2647.980000px;}
.y6{bottom:2649.240000px;}
.y59{bottom:2650.785000px;}
.y47{bottom:2695.395000px;}
.y4a{bottom:2698.380000px;}
.y5{bottom:2706.840000px;}
.y58{bottom:2710.005000px;}
.y49{bottom:2748.780000px;}
.y5b{bottom:2778.840000px;}
.y4{bottom:2822.040000px;}
.y3{bottom:2879.640000px;}
.y2{bottom:2937.240000px;}
.y62{bottom:2992.860000px;}
.yc{bottom:3000.810000px;}
.y1{bottom:3001.320000px;}
.y61{bottom:3039.300000px;}
.y35{bottom:3267.975000px;}
.y39{bottom:3287.775000px;}
.y38{bottom:3338.175000px;}
.y2e{bottom:3352.245000px;}
.y8d{bottom:3353.430000px;}
.y2b{bottom:3383.490000px;}
.y37{bottom:3388.575000px;}
.y34{bottom:3402.975000px;}
.y2d{bottom:3409.845000px;}
.y2a{bottom:3448.290000px;}
.y3a{bottom:3454.740000px;}
.y2c{bottom:3467.445000px;}
.y29{bottom:3513.090000px;}
.y33{bottom:3517.275000px;}
.y28{bottom:3577.890000px;}
.y27{bottom:3642.690000px;}
.y26{bottom:3772.290000px;}
.y36{bottom:3793.110000px;}
.y25{bottom:3837.090000px;}
.y3c{bottom:3883.395000px;}
.y3b{bottom:3931.455000px;}
.y3d{bottom:3952.695000px;}
.y24{bottom:3966.690000px;}
.y23{bottom:4031.535000px;}
.y22{bottom:4096.335000px;}
.y32{bottom:4115.310000px;}
.y31{bottom:4158.510000px;}
.y21{bottom:4161.135000px;}
.y30{bottom:4221.075000px;}
.y20{bottom:4225.935000px;}
.y2f{bottom:4355.715000px;}
.y1f{bottom:4707.690000px;}
.y1e{bottom:4880.490000px;}
.h7{height:119.594180px;}
.hb{height:143.226562px;}
.hd{height:147.445312px;}
.h6{height:166.858945px;}
.h5{height:171.773789px;}
.h3{height:191.207461px;}
.hf{height:196.839492px;}
.h9{height:214.839844px;}
.hc{height:221.167969px;}
.he{height:286.453125px;}
.h2{height:294.890625px;}
.h4{height:307.423477px;}
.ha{height:331.751953px;}
.h10{height:389.079492px;}
.h8{height:589.781250px;}
.h1{height:5140.500000px;}
.h0{height:5140.620000px;}
.w1{width:3660.750000px;}
.w2{width:3661.019945px;}
.w0{width:3661.020000px;}
.x0{left:0.000000px;}
.x5{left:85.679945px;}
.x8{left:93.887945px;}
.x3{left:134.495945px;}
.x40{left:143.495945px;}
.x29{left:146.987945px;}
.x2b{left:246.704945px;}
.x6{left:394.769945px;}
.x41{left:942.269945px;}
.x2a{left:948.809945px;}
.x37{left:978.329945px;}
.x19{left:981.329945px;}
.x2e{left:984.629945px;}
.x34{left:989.129945px;}
.x21{left:996.329945px;}
.x20{left:997.769945px;}
.x22{left:1003.529945px;}
.x25{left:1028.309945px;}
.x36{left:1041.149945px;}
.x2d{left:1042.949945px;}
.x2c{left:1044.929945px;}
.x7{left:1055.909945px;}
.x24{left:1057.469945px;}
.x1f{left:1081.649945px;}
.x35{left:1094.069945px;}
.x23{left:1124.669945px;}
.x1a{left:1149.089945px;}
.x38{left:1176.689945px;}
.x14{left:1183.679945px;}
.xa{left:1189.364945px;}
.x39{left:1220.609945px;}
.x9{left:1227.524945px;}
.xb{left:1230.224945px;}
.x13{left:1287.389945px;}
.x3a{left:1323.569945px;}
.x10{left:1597.934945px;}
.x1c{left:1752.734945px;}
.x27{left:1759.469945px;}
.x3b{left:1761.194945px;}
.x1d{left:1764.974945px;}
.x30{left:1767.314945px;}
.x1b{left:1777.934945px;}
.x2f{left:1790.354945px;}
.x32{left:1796.834945px;}
.x11{left:1813.169945px;}
.x31{left:1835.714945px;}
.x3c{left:1845.614945px;}
.x3e{left:1847.414945px;}
.x26{left:1853.609945px;}
.x28{left:1861.529945px;}
.x3d{left:1862.894945px;}
.x1e{left:1899.974945px;}
.x3f{left:1914.194945px;}
.x12{left:1931.324945px;}
.x33{left:2017.724945px;}
.x15{left:2037.269945px;}
.xc{left:2512.154945px;}
.xd{left:2556.434945px;}
.x1{left:2559.884945px;}
.x18{left:2600.669945px;}
.x16{left:2603.339945px;}
.x4{left:2604.569945px;}
.x2{left:2613.884945px;}
.x17{left:2657.339945px;}
.xf{left:2768.369945px;}
.xe{left:3107.804945px;}
.x42{left:3375.509945px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:170.880000pt;}
.ls7{letter-spacing:-6.933333pt;}
.lsf{letter-spacing:-5.706667pt;}
.ls14{letter-spacing:-2.202667pt;}
.ls10{letter-spacing:-1.696000pt;}
.lsb{letter-spacing:-1.317333pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.355733pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.284267pt;}
.ls16{letter-spacing:-0.278400pt;}
.ls17{letter-spacing:-0.262400pt;}
.lse{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls4{letter-spacing:-0.007040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021760pt;}
.ls2{letter-spacing:0.063360pt;}
.ls12{letter-spacing:0.063467pt;}
.ls15{letter-spacing:0.068267pt;}
.ls11{letter-spacing:0.073067pt;}
.lsc{letter-spacing:0.133867pt;}
.ls18{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.186133pt;}
.ls5{letter-spacing:0.256000pt;}
.ls0{letter-spacing:132.192000pt;}
.ws0{word-spacing:-57.856000pt;}
.ws1f{word-spacing:-43.392000pt;}
.ws1b{word-spacing:-38.682347pt;}
.ws1{word-spacing:-38.618880pt;}
.ws3{word-spacing:-33.701120pt;}
.wsb{word-spacing:-28.928000pt;}
.ws5{word-spacing:-24.147840pt;}
.ws8{word-spacing:-2.496000pt;}
.ws20{word-spacing:-1.894613pt;}
.ws19{word-spacing:-1.496320pt;}
.ws22{word-spacing:-1.188160pt;}
.wsa{word-spacing:-1.152000pt;}
.ws9{word-spacing:-0.938667pt;}
.wsf{word-spacing:-0.708160pt;}
.ws6{word-spacing:-0.576000pt;}
.ws21{word-spacing:-0.557440pt;}
.ws18{word-spacing:-0.469760pt;}
.wsd{word-spacing:-0.316800pt;}
.ws4{word-spacing:-0.298880pt;}
.ws15{word-spacing:-0.113920pt;}
.ws12{word-spacing:-0.090560pt;}
.ws2{word-spacing:-0.053333pt;}
.ws27{word-spacing:0.000000pt;}
.wsc{word-spacing:0.026880pt;}
.ws24{word-spacing:0.075520pt;}
.ws1c{word-spacing:0.094080pt;}
.ws1e{word-spacing:0.234880pt;}
.ws1a{word-spacing:0.662507pt;}
.ws25{word-spacing:0.691840pt;}
.wse{word-spacing:0.999040pt;}
.ws26{word-spacing:1.031680pt;}
.ws10{word-spacing:1.121067pt;}
.ws23{word-spacing:1.191680pt;}
.ws14{word-spacing:1.966080pt;}
.ws13{word-spacing:2.467413pt;}
.ws11{word-spacing:2.989440pt;}
.ws17{word-spacing:3.400320pt;}
.ws1d{word-spacing:5.010560pt;}
.ws16{word-spacing:11.011200pt;}
.ws7{word-spacing:13.141333pt;}
._a{margin-left:-28.672000pt;}
._16{margin-left:-17.032533pt;}
._5{margin-left:-15.745920pt;}
._d{margin-left:-11.328000pt;}
._14{margin-left:-10.081920pt;}
._6{margin-left:-8.958720pt;}
._0{margin-left:-6.400000pt;}
._7{margin-left:-4.864000pt;}
._4{margin-left:-3.588480pt;}
._2{margin-left:-2.392320pt;}
._3{margin-left:-1.025280pt;}
._1{width:1.536000pt;}
._13{width:2.456960pt;}
._12{width:3.665493pt;}
._8{width:4.595840pt;}
._10{width:34.607147pt;}
._11{width:35.834027pt;}
._17{width:37.656107pt;}
._15{width:39.515093pt;}
._b{width:42.291413pt;}
._c{width:43.439147pt;}
._e{width:66.096427pt;}
._9{width:117.336320pt;}
._f{width:1737.183147pt;}
.fs4{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs3{font-size:149.120000pt;}
.fs1{font-size:170.880000pt;}
.fs6{font-size:192.000000pt;}
.fs0{font-size:256.000000pt;}
.fs2{font-size:266.880000pt;}
.fs7{font-size:288.000000pt;}
.fs5{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:43.712000pt;}
.y1c{bottom:138.786667pt;}
.y8c{bottom:167.586667pt;}
.y1b{bottom:182.786667pt;}
.y8b{bottom:216.386667pt;}
.y1a{bottom:226.786667pt;}
.y8a{bottom:265.186667pt;}
.y19{bottom:270.786667pt;}
.y75{bottom:453.413333pt;}
.y89{bottom:477.533333pt;}
.y46{bottom:503.226667pt;}
.y74{bottom:504.613333pt;}
.y45{bottom:628.866667pt;}
.y85{bottom:629.946667pt;}
.y73{bottom:645.466667pt;}
.y7a{bottom:671.973333pt;}
.y44{bottom:680.066667pt;}
.y84{bottom:681.146667pt;}
.y72{bottom:696.666667pt;}
.y79{bottom:723.200000pt;}
.y43{bottom:731.266667pt;}
.y83{bottom:732.346667pt;}
.y71{bottom:747.866667pt;}
.y78{bottom:774.400000pt;}
.y42{bottom:782.466667pt;}
.y82{bottom:783.546667pt;}
.y70{bottom:799.066667pt;}
.y77{bottom:825.600000pt;}
.y41{bottom:833.666667pt;}
.y81{bottom:836.186667pt;}
.y6f{bottom:850.266667pt;}
.y76{bottom:876.800000pt;}
.y86{bottom:883.613333pt;}
.y40{bottom:884.866667pt;}
.y6e{bottom:901.466667pt;}
.y3f{bottom:993.026667pt;}
.y7f{bottom:1062.906667pt;}
.y3e{bottom:1069.826667pt;}
.y6d{bottom:1085.280000pt;}
.y68{bottom:1113.306667pt;}
.y7e{bottom:1114.146667pt;}
.y6c{bottom:1136.480000pt;}
.y67{bottom:1164.506667pt;}
.y7d{bottom:1165.346667pt;}
.y6b{bottom:1187.680000pt;}
.y66{bottom:1215.706667pt;}
.y7c{bottom:1216.546667pt;}
.y6a{bottom:1238.880000pt;}
.y65{bottom:1266.906667pt;}
.y7b{bottom:1269.186667pt;}
.y18{bottom:1271.426667pt;}
.y69{bottom:1290.080000pt;}
.y80{bottom:1319.906667pt;}
.y17{bottom:1322.626667pt;}
.y16{bottom:1373.826667pt;}
.y15{bottom:1425.026667pt;}
.y88{bottom:1499.360000pt;}
.y64{bottom:1503.653333pt;}
.y14{bottom:1526.560000pt;}
.y87{bottom:1540.640000pt;}
.y13{bottom:1577.760000pt;}
.y12{bottom:1628.960000pt;}
.y11{bottom:1680.160000pt;}
.y53{bottom:1720.133333pt;}
.y10{bottom:1731.360000pt;}
.y63{bottom:1744.253333pt;}
.y52{bottom:1771.360000pt;}
.yf{bottom:1782.560000pt;}
.ye{bottom:1833.760000pt;}
.y5f{bottom:1933.760000pt;}
.y51{bottom:1934.013333pt;}
.yd{bottom:1941.920000pt;}
.y57{bottom:1958.306667pt;}
.y50{bottom:1978.813333pt;}
.y5e{bottom:1984.960000pt;}
.y56{bottom:2003.106667pt;}
.y4f{bottom:2023.613333pt;}
.y5d{bottom:2036.160000pt;}
.y55{bottom:2047.906667pt;}
.y4e{bottom:2068.413333pt;}
.y5c{bottom:2088.800000pt;}
.y54{bottom:2092.706667pt;}
.yb{bottom:2098.880000pt;}
.y4d{bottom:2113.213333pt;}
.y60{bottom:2145.573333pt;}
.ya{bottom:2150.080000pt;}
.y9{bottom:2201.280000pt;}
.y8{bottom:2252.480000pt;}
.y7{bottom:2303.680000pt;}
.y5a{bottom:2305.026667pt;}
.y4c{bottom:2308.960000pt;}
.y48{bottom:2351.106667pt;}
.y4b{bottom:2353.760000pt;}
.y6{bottom:2354.880000pt;}
.y59{bottom:2356.253333pt;}
.y47{bottom:2395.906667pt;}
.y4a{bottom:2398.560000pt;}
.y5{bottom:2406.080000pt;}
.y58{bottom:2408.893333pt;}
.y49{bottom:2443.360000pt;}
.y5b{bottom:2470.080000pt;}
.y4{bottom:2508.480000pt;}
.y3{bottom:2559.680000pt;}
.y2{bottom:2610.880000pt;}
.y62{bottom:2660.320000pt;}
.yc{bottom:2667.386667pt;}
.y1{bottom:2667.840000pt;}
.y61{bottom:2701.600000pt;}
.y35{bottom:2904.866667pt;}
.y39{bottom:2922.466667pt;}
.y38{bottom:2967.266667pt;}
.y2e{bottom:2979.773333pt;}
.y8d{bottom:2980.826667pt;}
.y2b{bottom:3007.546667pt;}
.y37{bottom:3012.066667pt;}
.y34{bottom:3024.866667pt;}
.y2d{bottom:3030.973333pt;}
.y2a{bottom:3065.146667pt;}
.y3a{bottom:3070.880000pt;}
.y2c{bottom:3082.173333pt;}
.y29{bottom:3122.746667pt;}
.y33{bottom:3126.466667pt;}
.y28{bottom:3180.346667pt;}
.y27{bottom:3237.946667pt;}
.y26{bottom:3353.146667pt;}
.y36{bottom:3371.653333pt;}
.y25{bottom:3410.746667pt;}
.y3c{bottom:3451.906667pt;}
.y3b{bottom:3494.626667pt;}
.y3d{bottom:3513.506667pt;}
.y24{bottom:3525.946667pt;}
.y23{bottom:3583.586667pt;}
.y22{bottom:3641.186667pt;}
.y32{bottom:3658.053333pt;}
.y31{bottom:3696.453333pt;}
.y21{bottom:3698.786667pt;}
.y30{bottom:3752.066667pt;}
.y20{bottom:3756.386667pt;}
.y2f{bottom:3871.746667pt;}
.y1f{bottom:4184.613333pt;}
.y1e{bottom:4338.213333pt;}
.h7{height:106.305937pt;}
.hb{height:127.312500pt;}
.hd{height:131.062500pt;}
.h6{height:148.319063pt;}
.h5{height:152.687812pt;}
.h3{height:169.962187pt;}
.hf{height:174.968437pt;}
.h9{height:190.968750pt;}
.hc{height:196.593750pt;}
.he{height:254.625000pt;}
.h2{height:262.125000pt;}
.h4{height:273.265312pt;}
.ha{height:294.890625pt;}
.h10{height:345.848437pt;}
.h8{height:524.250000pt;}
.h1{height:4569.333333pt;}
.h0{height:4569.440000pt;}
.w1{width:3254.000000pt;}
.w2{width:3254.239952pt;}
.w0{width:3254.240000pt;}
.x0{left:0.000000pt;}
.x5{left:76.159952pt;}
.x8{left:83.455952pt;}
.x3{left:119.551952pt;}
.x40{left:127.551952pt;}
.x29{left:130.655952pt;}
.x2b{left:219.293285pt;}
.x6{left:350.906618pt;}
.x41{left:837.573285pt;}
.x2a{left:843.386618pt;}
.x37{left:869.626618pt;}
.x19{left:872.293285pt;}
.x2e{left:875.226618pt;}
.x34{left:879.226618pt;}
.x21{left:885.626618pt;}
.x20{left:886.906618pt;}
.x22{left:892.026618pt;}
.x25{left:914.053285pt;}
.x36{left:925.466618pt;}
.x2d{left:927.066618pt;}
.x2c{left:928.826618pt;}
.x7{left:938.586618pt;}
.x24{left:939.973285pt;}
.x1f{left:961.466618pt;}
.x35{left:972.506618pt;}
.x23{left:999.706618pt;}
.x1a{left:1021.413285pt;}
.x38{left:1045.946618pt;}
.x14{left:1052.159952pt;}
.xa{left:1057.213285pt;}
.x39{left:1084.986618pt;}
.x9{left:1091.133285pt;}
.xb{left:1093.533285pt;}
.x13{left:1144.346618pt;}
.x3a{left:1176.506618pt;}
.x10{left:1420.386618pt;}
.x1c{left:1557.986618pt;}
.x27{left:1563.973285pt;}
.x3b{left:1565.506618pt;}
.x1d{left:1568.866618pt;}
.x30{left:1570.946618pt;}
.x1b{left:1580.386618pt;}
.x2f{left:1591.426618pt;}
.x32{left:1597.186618pt;}
.x11{left:1611.706618pt;}
.x31{left:1631.746618pt;}
.x3c{left:1640.546618pt;}
.x3e{left:1642.146618pt;}
.x26{left:1647.653285pt;}
.x28{left:1654.693285pt;}
.x3d{left:1655.906618pt;}
.x1e{left:1688.866618pt;}
.x3f{left:1701.506618pt;}
.x12{left:1716.733285pt;}
.x33{left:1793.533285pt;}
.x15{left:1810.906618pt;}
.xc{left:2233.026618pt;}
.xd{left:2272.386618pt;}
.x1{left:2275.453285pt;}
.x18{left:2311.706618pt;}
.x16{left:2314.079952pt;}
.x4{left:2315.173285pt;}
.x2{left:2323.453285pt;}
.x17{left:2362.079952pt;}
.xf{left:2460.773285pt;}
.xe{left:2762.493285pt;}
.x42{left:3000.453285pt;}
}




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