
    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_a410410a298155c1bea8f9da.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_07c65c129f67deb75cb129c3.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_d12c29eaeb47d2876fffa91e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_05b0561bff9da506989d9bdd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_33f5ef7988879d5644058752.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_5b7f362191a60a0831bf4cb0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5c25b05bf9be21b951023c8b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_35e086e553d80054554a34c2.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4ee998c228e040b06a05959a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f0c25a29590b590259c2b93c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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;}
.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;}
.ls8{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.087600px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-4.298640px;}
._2{margin-left:-2.849040px;}
._0{margin-left:-1.026000px;}
._1{width:1.212000px;}
._7{width:2.399760px;}
._14{width:3.636720px;}
._8{width:4.943280px;}
._9{width:6.188880px;}
._c{width:7.567200px;}
._15{width:8.657040px;}
._6{width:9.903360px;}
._e{width:11.875440px;}
._f{width:13.164000px;}
._a{width:16.673040px;}
._12{width:18.167040px;}
._13{width:19.252080px;}
._11{width:20.301600px;}
._10{width:21.394080px;}
._3{width:24.474720px;}
._4{width:25.496160px;}
._1b{width:27.190800px;}
._b{width:28.573200px;}
._1d{width:31.324320px;}
._1c{width:32.688720px;}
._5{width:34.720560px;}
._d{width:36.692640px;}
._1a{width:39.663840px;}
._16{width:51.257280px;}
._17{width:115.738320px;}
._18{width:116.830800px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y52{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.ya1{bottom:11.874000px;}
.y9c{bottom:11.880000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.ya0{bottom:20.514000px;}
.y4b{bottom:20.520000px;}
.y51{bottom:22.320000px;}
.y17{bottom:25.605000px;}
.y4f{bottom:28.980000px;}
.yb{bottom:30.240000px;}
.y4a{bottom:37.800000px;}
.y5{bottom:39.780000px;}
.y50{bottom:40.680000px;}
.y16{bottom:42.165000px;}
.y4e{bottom:43.560000px;}
.ya{bottom:46.440000px;}
.y49{bottom:55.080000px;}
.y15{bottom:61.605000px;}
.y1{bottom:62.280000px;}
.y14{bottom:72.045000px;}
.y48{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y47{bottom:89.685000px;}
.y13{bottom:90.405000px;}
.y8{bottom:93.090000px;}
.y59{bottom:106.416000px;}
.y46{bottom:106.785000px;}
.y12{bottom:109.485000px;}
.ya3{bottom:109.656000px;}
.y7{bottom:111.270000px;}
.yad{bottom:115.056000px;}
.y97{bottom:115.596000px;}
.yd8{bottom:121.716000px;}
.y58{bottom:123.516000px;}
.y45{bottom:124.065000px;}
.ya2{bottom:126.756000px;}
.yac{bottom:132.336000px;}
.y96{bottom:132.876000px;}
.y11{bottom:135.225000px;}
.yd7{bottom:138.996000px;}
.y57{bottom:140.796000px;}
.y44{bottom:141.345000px;}
.y9f{bottom:141.516000px;}
.yab{bottom:146.376000px;}
.y95{bottom:149.976000px;}
.yd6{bottom:156.270000px;}
.y56{bottom:158.070000px;}
.y43{bottom:158.625000px;}
.y10{bottom:159.525000px;}
.y94{bottom:167.250000px;}
.yd5{bottom:173.370000px;}
.y55{bottom:175.350000px;}
.y42{bottom:175.905000px;}
.y9e{bottom:176.790000px;}
.y93{bottom:184.530000px;}
.yd4{bottom:190.650000px;}
.y54{bottom:192.630000px;}
.y41{bottom:193.185000px;}
.y92{bottom:201.810000px;}
.yd3{bottom:207.930000px;}
.y53{bottom:209.730000px;}
.y40{bottom:210.285000px;}
.y9d{bottom:212.070000px;}
.y91{bottom:219.090000px;}
.y4d{bottom:223.770000px;}
.yd2{bottom:225.210000px;}
.y3f{bottom:227.565000px;}
.y90{bottom:236.370000px;}
.yd1{bottom:242.490000px;}
.y3e{bottom:244.845000px;}
.y9b{bottom:247.350000px;}
.y2c{bottom:250.965000px;}
.y8f{bottom:253.470000px;}
.yd0{bottom:259.770000px;}
.y3d{bottom:262.125000px;}
.y2b{bottom:266.265000px;}
.y8e{bottom:270.750000px;}
.ycf{bottom:276.870000px;}
.y1b{bottom:278.670000px;}
.y3c{bottom:279.405000px;}
.y9a{bottom:282.630000px;}
.y2a{bottom:283.905000px;}
.y8d{bottom:288.030000px;}
.yce{bottom:294.150000px;}
.y3b{bottom:296.505000px;}
.y99{bottom:300.630000px;}
.y29{bottom:301.185000px;}
.y8c{bottom:305.310000px;}
.ycd{bottom:311.430000px;}
.y3a{bottom:313.785000px;}
.y28{bottom:318.285000px;}
.y98{bottom:318.630000px;}
.y8b{bottom:322.590000px;}
.ycc{bottom:328.710000px;}
.y39{bottom:331.095000px;}
.y27{bottom:336.135000px;}
.y8a{bottom:339.915000px;}
.ycb{bottom:346.035000px;}
.y38{bottom:348.375000px;}
.y26{bottom:353.595000px;}
.y89{bottom:357.015000px;}
.yca{bottom:363.135000px;}
.y37{bottom:365.655000px;}
.y25{bottom:370.875000px;}
.y88{bottom:374.295000px;}
.yc9{bottom:380.415000px;}
.y36{bottom:382.935000px;}
.y24{bottom:388.335000px;}
.y87{bottom:391.575000px;}
.yc8{bottom:397.695000px;}
.y35{bottom:400.035000px;}
.y23{bottom:405.795000px;}
.y86{bottom:408.855000px;}
.yc7{bottom:414.975000px;}
.y34{bottom:417.315000px;}
.y22{bottom:423.075000px;}
.y85{bottom:426.135000px;}
.yc6{bottom:432.255000px;}
.y33{bottom:434.595000px;}
.y21{bottom:440.535000px;}
.y84{bottom:443.415000px;}
.yc5{bottom:449.535000px;}
.y32{bottom:451.875000px;}
.y20{bottom:457.995000px;}
.y83{bottom:460.515000px;}
.yc4{bottom:466.635000px;}
.y31{bottom:469.155000px;}
.y1f{bottom:475.275000px;}
.y82{bottom:477.795000px;}
.yc3{bottom:483.915000px;}
.y30{bottom:486.435000px;}
.yaa{bottom:489.495000px;}
.y81{bottom:495.075000px;}
.y1e{bottom:495.615000px;}
.yc2{bottom:501.195000px;}
.y2f{bottom:503.535000px;}
.ya9{bottom:506.595000px;}
.y80{bottom:512.355000px;}
.yc1{bottom:518.475000px;}
.ya8{bottom:520.635000px;}
.y2e{bottom:520.815000px;}
.y1d{bottom:522.975000px;}
.y7f{bottom:529.635000px;}
.yc0{bottom:535.755000px;}
.y2d{bottom:538.095000px;}
.y1c{bottom:540.795000px;}
.y7e{bottom:546.735000px;}
.ybf{bottom:553.035000px;}
.y7d{bottom:564.015000px;}
.ybe{bottom:570.135000px;}
.y7c{bottom:581.295000px;}
.ybd{bottom:587.415000px;}
.y7b{bottom:598.575000px;}
.ybc{bottom:604.725000px;}
.y7a{bottom:615.885000px;}
.ybb{bottom:622.005000px;}
.y79{bottom:633.165000px;}
.yba{bottom:639.285000px;}
.y78{bottom:650.265000px;}
.yb9{bottom:656.385000px;}
.y77{bottom:667.545000px;}
.yb8{bottom:673.665000px;}
.y76{bottom:684.825000px;}
.yb7{bottom:690.945000px;}
.y75{bottom:702.105000px;}
.yb6{bottom:708.225000px;}
.ya7{bottom:708.765000px;}
.y74{bottom:719.385000px;}
.yb5{bottom:725.505000px;}
.ya6{bottom:726.045000px;}
.y73{bottom:736.665000px;}
.yb4{bottom:742.785000px;}
.ya5{bottom:743.325000px;}
.y72{bottom:753.765000px;}
.ya4{bottom:757.365000px;}
.yb3{bottom:759.885000px;}
.y71{bottom:771.045000px;}
.yb2{bottom:777.165000px;}
.y70{bottom:788.325000px;}
.yb1{bottom:794.445000px;}
.y6f{bottom:805.605000px;}
.yb0{bottom:811.725000px;}
.y6e{bottom:822.885000px;}
.yaf{bottom:829.005000px;}
.y19{bottom:830.805000px;}
.y6d{bottom:839.985000px;}
.yae{bottom:843.045000px;}
.y6c{bottom:857.265000px;}
.yf{bottom:860.325000px;}
.y6b{bottom:874.590000px;}
.y6a{bottom:891.870000px;}
.y69{bottom:909.150000px;}
.y68{bottom:926.430000px;}
.y67{bottom:943.530000px;}
.y66{bottom:960.810000px;}
.y65{bottom:978.090000px;}
.y64{bottom:995.370000px;}
.y63{bottom:1012.650000px;}
.y62{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y61{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y60{bottom:1064.310000px;}
.y5f{bottom:1081.590000px;}
.y5e{bottom:1098.870000px;}
.y5d{bottom:1116.150000px;}
.y5c{bottom:1133.430000px;}
.y5b{bottom:1150.560000px;}
.y5a{bottom:1167.840000px;}
.h1f{height:17.100000px;}
.hb{height:25.020000px;}
.h13{height:29.520000px;}
.h2{height:32.976000px;}
.h20{height:34.380000px;}
.h21{height:34.560000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h12{height:43.453125px;}
.h22{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.900000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:174.630000px;}
.h15{height:552.135000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.wa{width:181.830000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xe{left:26.496000px;}
.xb{left:46.656000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x1f{left:108.035987px;}
.xf{left:117.390000px;}
.x20{left:135.035987px;}
.x1c{left:150.869987px;}
.xc{left:171.210000px;}
.x18{left:195.869987px;}
.x10{left:215.175000px;}
.x13{left:218.549987px;}
.x5{left:232.950000px;}
.x1a{left:244.649987px;}
.x14{left:264.270000px;}
.x8{left:272.235000px;}
.x1e{left:294.194987px;}
.x11{left:297.075000px;}
.xd{left:307.875000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x9{left:439.500000px;}
.x15{left:446.835000px;}
.x16{left:629.565000px;}
.x1d{left:716.549987px;}
.x3{left:739.050000px;}
.x1b{left:751.469987px;}
.x17{left:755.429987px;}
.x19{left:784.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.077867pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-3.821013pt;}
._2{margin-left:-2.532480pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.077333pt;}
._7{width:2.133120pt;}
._14{width:3.232640pt;}
._8{width:4.394027pt;}
._9{width:5.501227pt;}
._c{width:6.726400pt;}
._15{width:7.695147pt;}
._6{width:8.802987pt;}
._e{width:10.555947pt;}
._f{width:11.701333pt;}
._a{width:14.820480pt;}
._12{width:16.148480pt;}
._13{width:17.112960pt;}
._11{width:18.045867pt;}
._10{width:19.016960pt;}
._3{width:21.755307pt;}
._4{width:22.663253pt;}
._1b{width:24.169600pt;}
._b{width:25.398400pt;}
._1d{width:27.843840pt;}
._1c{width:29.056640pt;}
._5{width:30.862720pt;}
._d{width:32.615680pt;}
._1a{width:35.256747pt;}
._16{width:45.562027pt;}
._17{width:102.878507pt;}
._18{width:103.849600pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y52{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.ya1{bottom:10.554667pt;}
.y9c{bottom:10.560000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.ya0{bottom:18.234667pt;}
.y4b{bottom:18.240000pt;}
.y51{bottom:19.840000pt;}
.y17{bottom:22.760000pt;}
.y4f{bottom:25.760000pt;}
.yb{bottom:26.880000pt;}
.y4a{bottom:33.600000pt;}
.y5{bottom:35.360000pt;}
.y50{bottom:36.160000pt;}
.y16{bottom:37.480000pt;}
.y4e{bottom:38.720000pt;}
.ya{bottom:41.280000pt;}
.y49{bottom:48.960000pt;}
.y15{bottom:54.760000pt;}
.y1{bottom:55.360000pt;}
.y14{bottom:64.040000pt;}
.y48{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y47{bottom:79.720000pt;}
.y13{bottom:80.360000pt;}
.y8{bottom:82.746667pt;}
.y59{bottom:94.592000pt;}
.y46{bottom:94.920000pt;}
.y12{bottom:97.320000pt;}
.ya3{bottom:97.472000pt;}
.y7{bottom:98.906667pt;}
.yad{bottom:102.272000pt;}
.y97{bottom:102.752000pt;}
.yd8{bottom:108.192000pt;}
.y58{bottom:109.792000pt;}
.y45{bottom:110.280000pt;}
.ya2{bottom:112.672000pt;}
.yac{bottom:117.632000pt;}
.y96{bottom:118.112000pt;}
.y11{bottom:120.200000pt;}
.yd7{bottom:123.552000pt;}
.y57{bottom:125.152000pt;}
.y44{bottom:125.640000pt;}
.y9f{bottom:125.792000pt;}
.yab{bottom:130.112000pt;}
.y95{bottom:133.312000pt;}
.yd6{bottom:138.906667pt;}
.y56{bottom:140.506667pt;}
.y43{bottom:141.000000pt;}
.y10{bottom:141.800000pt;}
.y94{bottom:148.666667pt;}
.yd5{bottom:154.106667pt;}
.y55{bottom:155.866667pt;}
.y42{bottom:156.360000pt;}
.y9e{bottom:157.146667pt;}
.y93{bottom:164.026667pt;}
.yd4{bottom:169.466667pt;}
.y54{bottom:171.226667pt;}
.y41{bottom:171.720000pt;}
.y92{bottom:179.386667pt;}
.yd3{bottom:184.826667pt;}
.y53{bottom:186.426667pt;}
.y40{bottom:186.920000pt;}
.y9d{bottom:188.506667pt;}
.y91{bottom:194.746667pt;}
.y4d{bottom:198.906667pt;}
.yd2{bottom:200.186667pt;}
.y3f{bottom:202.280000pt;}
.y90{bottom:210.106667pt;}
.yd1{bottom:215.546667pt;}
.y3e{bottom:217.640000pt;}
.y9b{bottom:219.866667pt;}
.y2c{bottom:223.080000pt;}
.y8f{bottom:225.306667pt;}
.yd0{bottom:230.906667pt;}
.y3d{bottom:233.000000pt;}
.y2b{bottom:236.680000pt;}
.y8e{bottom:240.666667pt;}
.ycf{bottom:246.106667pt;}
.y1b{bottom:247.706667pt;}
.y3c{bottom:248.360000pt;}
.y9a{bottom:251.226667pt;}
.y2a{bottom:252.360000pt;}
.y8d{bottom:256.026667pt;}
.yce{bottom:261.466667pt;}
.y3b{bottom:263.560000pt;}
.y99{bottom:267.226667pt;}
.y29{bottom:267.720000pt;}
.y8c{bottom:271.386667pt;}
.ycd{bottom:276.826667pt;}
.y3a{bottom:278.920000pt;}
.y28{bottom:282.920000pt;}
.y98{bottom:283.226667pt;}
.y8b{bottom:286.746667pt;}
.ycc{bottom:292.186667pt;}
.y39{bottom:294.306667pt;}
.y27{bottom:298.786667pt;}
.y8a{bottom:302.146667pt;}
.ycb{bottom:307.586667pt;}
.y38{bottom:309.666667pt;}
.y26{bottom:314.306667pt;}
.y89{bottom:317.346667pt;}
.yca{bottom:322.786667pt;}
.y37{bottom:325.026667pt;}
.y25{bottom:329.666667pt;}
.y88{bottom:332.706667pt;}
.yc9{bottom:338.146667pt;}
.y36{bottom:340.386667pt;}
.y24{bottom:345.186667pt;}
.y87{bottom:348.066667pt;}
.yc8{bottom:353.506667pt;}
.y35{bottom:355.586667pt;}
.y23{bottom:360.706667pt;}
.y86{bottom:363.426667pt;}
.yc7{bottom:368.866667pt;}
.y34{bottom:370.946667pt;}
.y22{bottom:376.066667pt;}
.y85{bottom:378.786667pt;}
.yc6{bottom:384.226667pt;}
.y33{bottom:386.306667pt;}
.y21{bottom:391.586667pt;}
.y84{bottom:394.146667pt;}
.yc5{bottom:399.586667pt;}
.y32{bottom:401.666667pt;}
.y20{bottom:407.106667pt;}
.y83{bottom:409.346667pt;}
.yc4{bottom:414.786667pt;}
.y31{bottom:417.026667pt;}
.y1f{bottom:422.466667pt;}
.y82{bottom:424.706667pt;}
.yc3{bottom:430.146667pt;}
.y30{bottom:432.386667pt;}
.yaa{bottom:435.106667pt;}
.y81{bottom:440.066667pt;}
.y1e{bottom:440.546667pt;}
.yc2{bottom:445.506667pt;}
.y2f{bottom:447.586667pt;}
.ya9{bottom:450.306667pt;}
.y80{bottom:455.426667pt;}
.yc1{bottom:460.866667pt;}
.ya8{bottom:462.786667pt;}
.y2e{bottom:462.946667pt;}
.y1d{bottom:464.866667pt;}
.y7f{bottom:470.786667pt;}
.yc0{bottom:476.226667pt;}
.y2d{bottom:478.306667pt;}
.y1c{bottom:480.706667pt;}
.y7e{bottom:485.986667pt;}
.ybf{bottom:491.586667pt;}
.y7d{bottom:501.346667pt;}
.ybe{bottom:506.786667pt;}
.y7c{bottom:516.706667pt;}
.ybd{bottom:522.146667pt;}
.y7b{bottom:532.066667pt;}
.ybc{bottom:537.533333pt;}
.y7a{bottom:547.453333pt;}
.ybb{bottom:552.893333pt;}
.y79{bottom:562.813333pt;}
.yba{bottom:568.253333pt;}
.y78{bottom:578.013333pt;}
.yb9{bottom:583.453333pt;}
.y77{bottom:593.373333pt;}
.yb8{bottom:598.813333pt;}
.y76{bottom:608.733333pt;}
.yb7{bottom:614.173333pt;}
.y75{bottom:624.093333pt;}
.yb6{bottom:629.533333pt;}
.ya7{bottom:630.013333pt;}
.y74{bottom:639.453333pt;}
.yb5{bottom:644.893333pt;}
.ya6{bottom:645.373333pt;}
.y73{bottom:654.813333pt;}
.yb4{bottom:660.253333pt;}
.ya5{bottom:660.733333pt;}
.y72{bottom:670.013333pt;}
.ya4{bottom:673.213333pt;}
.yb3{bottom:675.453333pt;}
.y71{bottom:685.373333pt;}
.yb2{bottom:690.813333pt;}
.y70{bottom:700.733333pt;}
.yb1{bottom:706.173333pt;}
.y6f{bottom:716.093333pt;}
.yb0{bottom:721.533333pt;}
.y6e{bottom:731.453333pt;}
.yaf{bottom:736.893333pt;}
.y19{bottom:738.493333pt;}
.y6d{bottom:746.653333pt;}
.yae{bottom:749.373333pt;}
.y6c{bottom:762.013333pt;}
.yf{bottom:764.733333pt;}
.y6b{bottom:777.413333pt;}
.y6a{bottom:792.773333pt;}
.y69{bottom:808.133333pt;}
.y68{bottom:823.493333pt;}
.y67{bottom:838.693333pt;}
.y66{bottom:854.053333pt;}
.y65{bottom:869.413333pt;}
.y64{bottom:884.773333pt;}
.y63{bottom:900.133333pt;}
.y62{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y61{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y60{bottom:946.053333pt;}
.y5f{bottom:961.413333pt;}
.y5e{bottom:976.773333pt;}
.y5d{bottom:992.133333pt;}
.y5c{bottom:1007.493333pt;}
.y5b{bottom:1022.720000pt;}
.y5a{bottom:1038.080000pt;}
.h1f{height:15.200000pt;}
.hb{height:22.240000pt;}
.h13{height:26.240000pt;}
.h2{height:29.312000pt;}
.h20{height:30.560000pt;}
.h21{height:30.720000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h12{height:38.625000pt;}
.h22{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.800000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:155.226667pt;}
.h15{height:490.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.wa{width:161.626667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xe{left:23.552000pt;}
.xb{left:41.472000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x1f{left:96.031988pt;}
.xf{left:104.346667pt;}
.x20{left:120.031988pt;}
.x1c{left:134.106655pt;}
.xc{left:152.186667pt;}
.x18{left:174.106655pt;}
.x10{left:191.266667pt;}
.x13{left:194.266655pt;}
.x5{left:207.066667pt;}
.x1a{left:217.466655pt;}
.x14{left:234.906667pt;}
.x8{left:241.986667pt;}
.x1e{left:261.506655pt;}
.x11{left:264.066667pt;}
.xd{left:273.666667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x9{left:390.666667pt;}
.x15{left:397.186667pt;}
.x16{left:559.613333pt;}
.x1d{left:636.933322pt;}
.x3{left:656.933333pt;}
.x1b{left:667.973322pt;}
.x17{left:671.493322pt;}
.x19{left:697.733322pt;}
}




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