
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d86fd29b07ff673b7221f9d4.woff2')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_52439707eaf5e0062e92ed4b.woff2')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_b9189870c1d138f974fe270a.woff2')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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fd4a9aa6a60d552b1054ee8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_3de0d74116a6b2094a65019f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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;}
.m3{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,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(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-1.152000px;}
.ls11{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.696000px;}
.ls13{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.326400px;}
.ls21{letter-spacing:-0.303000px;}
.lsa{letter-spacing:-0.240600px;}
.ls12{letter-spacing:-0.226800px;}
.ls26{letter-spacing:-0.175800px;}
.ls17{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.064800px;}
.ls9{letter-spacing:-0.058320px;}
.ls1d{letter-spacing:-0.049680px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.060600px;}
.ls6{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.140400px;}
.ls3{letter-spacing:0.174000px;}
.ls15{letter-spacing:0.175200px;}
.ls20{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.186600px;}
.ls16{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.393600px;}
.ls7{letter-spacing:0.479400px;}
.ls18{letter-spacing:0.492000px;}
.ls1c{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.894000px;}
.ls1a{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls23{letter-spacing:12.186720px;}
.ls1f{letter-spacing:42.426720px;}
.lsf{letter-spacing:44.586720px;}
.lse{letter-spacing:47.466720px;}
.ls10{letter-spacing:51.066720px;}
.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:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.692360px;}
.ws9{word-spacing:-13.680960px;}
.wse{word-spacing:-13.646160px;}
.ws5{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.456080px;}
.ws6{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.wsb{word-spacing:-13.427160px;}
.wsd{word-spacing:-13.265160px;}
.ws10{word-spacing:-13.202760px;}
.ws8{word-spacing:-13.179360px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1507.274160px;}
._1{margin-left:-1449.432000px;}
._2{margin-left:-1100.376000px;}
._5{margin-left:-608.762880px;}
._17{margin-left:-5.317920px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.287440px;}
._3{margin-left:-1.258560px;}
._0{width:1.394400px;}
._f{width:2.600400px;}
._9{width:3.729600px;}
._8{width:5.131200px;}
._c{width:6.338160px;}
._b{width:8.246880px;}
._e{width:9.681120px;}
._12{width:11.058480px;}
._11{width:12.204960px;}
._a{width:15.143040px;}
._10{width:16.196400px;}
._13{width:17.287920px;}
._16{width:18.346320px;}
._15{width:19.900080px;}
._14{width:23.156160px;}
._7{width:24.227280px;}
._18{width:116.959680px;}
.fc4{color:rgb(44,62,80);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:5.760000px;}
.yac{bottom:6.480000px;}
.yb0{bottom:6.660000px;}
.ybb{bottom:6.705000px;}
.yae{bottom:16.200000px;}
.ye8{bottom:25.560000px;}
.ye5{bottom:30.420000px;}
.ye7{bottom:45.720000px;}
.y6{bottom:60.696000px;}
.ye6{bottom:65.514000px;}
.y78{bottom:90.036000px;}
.ye4{bottom:95.256000px;}
.y7a{bottom:99.036000px;}
.yde{bottom:107.496000px;}
.yaa{bottom:108.036000px;}
.y77{bottom:111.096000px;}
.y79{bottom:120.096000px;}
.y30{bottom:124.776000px;}
.ydd{bottom:128.556000px;}
.y63{bottom:129.096000px;}
.ya9{bottom:132.156000px;}
.y76{bottom:141.156000px;}
.y2f{bottom:145.836000px;}
.ydc{bottom:149.616000px;}
.y62{bottom:150.150000px;}
.ya8{bottom:153.210000px;}
.y75{bottom:162.210000px;}
.y2e{bottom:166.890000px;}
.ydb{bottom:170.670000px;}
.y61{bottom:171.210000px;}
.ya7{bottom:174.270000px;}
.y74{bottom:183.270000px;}
.y2d{bottom:187.950000px;}
.yda{bottom:191.730000px;}
.y60{bottom:192.270000px;}
.ya6{bottom:195.330000px;}
.y73{bottom:204.330000px;}
.y2c{bottom:209.010000px;}
.yd9{bottom:212.790000px;}
.y5f{bottom:213.330000px;}
.ya5{bottom:216.390000px;}
.y72{bottom:225.390000px;}
.y2b{bottom:230.070000px;}
.yd8{bottom:233.850000px;}
.y5e{bottom:234.390000px;}
.ya4{bottom:237.450000px;}
.y71{bottom:246.450000px;}
.y2a{bottom:251.130000px;}
.yd7{bottom:254.910000px;}
.y5d{bottom:255.450000px;}
.ya3{bottom:258.510000px;}
.y70{bottom:267.510000px;}
.y29{bottom:272.190000px;}
.yd6{bottom:275.970000px;}
.y5c{bottom:276.510000px;}
.ya2{bottom:279.570000px;}
.y6f{bottom:288.615000px;}
.y28{bottom:293.295000px;}
.yd5{bottom:297.075000px;}
.y5b{bottom:297.615000px;}
.ya1{bottom:300.675000px;}
.y6e{bottom:309.675000px;}
.y27{bottom:314.355000px;}
.yd4{bottom:318.135000px;}
.y5a{bottom:318.675000px;}
.ya0{bottom:321.735000px;}
.y6d{bottom:330.735000px;}
.y26{bottom:335.415000px;}
.yd3{bottom:339.195000px;}
.y59{bottom:339.735000px;}
.y9f{bottom:342.795000px;}
.y6c{bottom:351.795000px;}
.y25{bottom:356.475000px;}
.yd2{bottom:360.255000px;}
.y58{bottom:360.795000px;}
.y9e{bottom:363.855000px;}
.y6b{bottom:372.855000px;}
.y24{bottom:377.535000px;}
.yd1{bottom:381.315000px;}
.y57{bottom:381.855000px;}
.y9d{bottom:384.915000px;}
.y6a{bottom:393.915000px;}
.y23{bottom:398.595000px;}
.yd0{bottom:402.375000px;}
.y56{bottom:402.915000px;}
.y9c{bottom:405.975000px;}
.y69{bottom:414.975000px;}
.y22{bottom:419.655000px;}
.ycf{bottom:423.435000px;}
.y55{bottom:423.975000px;}
.y9b{bottom:427.035000px;}
.y68{bottom:436.035000px;}
.y21{bottom:440.715000px;}
.yce{bottom:444.495000px;}
.y54{bottom:445.035000px;}
.y9a{bottom:448.095000px;}
.y67{bottom:457.095000px;}
.y20{bottom:461.775000px;}
.ycd{bottom:465.555000px;}
.y53{bottom:466.095000px;}
.y99{bottom:469.155000px;}
.y66{bottom:478.155000px;}
.y1f{bottom:482.835000px;}
.ycc{bottom:486.615000px;}
.y52{bottom:487.155000px;}
.y98{bottom:490.215000px;}
.y65{bottom:499.215000px;}
.y1e{bottom:503.895000px;}
.ycb{bottom:507.675000px;}
.y51{bottom:508.215000px;}
.y97{bottom:511.275000px;}
.y64{bottom:520.275000px;}
.y1d{bottom:524.955000px;}
.yca{bottom:528.735000px;}
.y50{bottom:529.275000px;}
.y96{bottom:532.335000px;}
.y7b{bottom:541.335000px;}
.y1c{bottom:546.015000px;}
.yc9{bottom:549.795000px;}
.y4f{bottom:550.335000px;}
.y95{bottom:553.395000px;}
.ye3{bottom:562.395000px;}
.y1b{bottom:567.105000px;}
.yc8{bottom:570.885000px;}
.y4e{bottom:571.425000px;}
.y94{bottom:574.485000px;}
.ye2{bottom:583.485000px;}
.y1a{bottom:587.985000px;}
.yc7{bottom:591.945000px;}
.y4d{bottom:592.485000px;}
.y93{bottom:595.545000px;}
.ye1{bottom:604.545000px;}
.y19{bottom:609.045000px;}
.yc6{bottom:613.005000px;}
.y4c{bottom:613.545000px;}
.y92{bottom:616.605000px;}
.ye0{bottom:625.605000px;}
.y18{bottom:630.105000px;}
.yc5{bottom:634.065000px;}
.y4b{bottom:634.605000px;}
.y91{bottom:637.665000px;}
.ydf{bottom:646.665000px;}
.y17{bottom:653.685000px;}
.yc4{bottom:655.125000px;}
.y4a{bottom:655.665000px;}
.y90{bottom:667.725000px;}
.yc3{bottom:676.185000px;}
.y49{bottom:676.725000px;}
.y16{bottom:683.565000px;}
.y8f{bottom:688.785000px;}
.yc2{bottom:697.245000px;}
.y48{bottom:697.785000px;}
.y15{bottom:704.625000px;}
.y8e{bottom:709.845000px;}
.yc1{bottom:718.305000px;}
.y47{bottom:718.845000px;}
.y14{bottom:725.685000px;}
.y8d{bottom:730.905000px;}
.yc0{bottom:739.365000px;}
.y46{bottom:739.905000px;}
.y13{bottom:746.745000px;}
.y8c{bottom:751.965000px;}
.ybf{bottom:760.425000px;}
.y45{bottom:760.965000px;}
.y12{bottom:767.805000px;}
.y8b{bottom:773.025000px;}
.ybe{bottom:775.545000px;}
.y44{bottom:782.025000px;}
.y11{bottom:788.865000px;}
.y8a{bottom:794.085000px;}
.ybd{bottom:797.325000px;}
.y43{bottom:803.085000px;}
.y10{bottom:809.925000px;}
.y89{bottom:815.145000px;}
.ybc{bottom:819.105000px;}
.y42{bottom:824.145000px;}
.yf{bottom:830.985000px;}
.y88{bottom:836.205000px;}
.yba{bottom:840.885000px;}
.y41{bottom:845.205000px;}
.ye{bottom:852.090000px;}
.y87{bottom:857.310000px;}
.yb9{bottom:862.890000px;}
.y40{bottom:866.310000px;}
.yd{bottom:875.490000px;}
.y86{bottom:878.370000px;}
.yb8{bottom:884.670000px;}
.y3f{bottom:887.370000px;}
.y85{bottom:899.430000px;}
.yc{bottom:901.590000px;}
.yb7{bottom:906.450000px;}
.y3e{bottom:908.430000px;}
.y84{bottom:920.490000px;}
.yb{bottom:922.650000px;}
.y3d{bottom:929.490000px;}
.yb6{bottom:934.890000px;}
.ya{bottom:939.390000px;}
.y83{bottom:941.550000px;}
.y3c{bottom:950.550000px;}
.yb5{bottom:955.950000px;}
.y9{bottom:961.710000px;}
.y82{bottom:962.610000px;}
.yb4{bottom:971.070000px;}
.y3b{bottom:971.610000px;}
.y81{bottom:983.670000px;}
.y8{bottom:986.910000px;}
.y3a{bottom:992.670000px;}
.yb3{bottom:992.850000px;}
.y80{bottom:1004.730000px;}
.y39{bottom:1013.730000px;}
.yb2{bottom:1014.630000px;}
.y7{bottom:1020.570000px;}
.y7f{bottom:1025.790000px;}
.y38{bottom:1034.790000px;}
.yb1{bottom:1036.590000px;}
.y7e{bottom:1046.850000px;}
.y37{bottom:1055.850000px;}
.yaf{bottom:1058.370000px;}
.y5{bottom:1059.810000px;}
.y7d{bottom:1067.910000px;}
.y36{bottom:1076.910000px;}
.yad{bottom:1080.150000px;}
.y7c{bottom:1088.970000px;}
.y4{bottom:1092.570000px;}
.y35{bottom:1097.970000px;}
.yab{bottom:1111.650000px;}
.y34{bottom:1119.030000px;}
.y3{bottom:1125.330000px;}
.y33{bottom:1140.120000px;}
.y2{bottom:1157.940000px;}
.y32{bottom:1170.900000px;}
.y1{bottom:1192.140000px;}
.y31{bottom:1194.120000px;}
.h10{height:2.864531px;}
.hb{height:20.916000px;}
.hd{height:21.060000px;}
.he{height:21.096000px;}
.hc{height:30.600000px;}
.h8{height:38.671172px;}
.h2{height:56.146289px;}
.h6{height:59.439023px;}
.h9{height:61.189805px;}
.ha{height:61.423863px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.hf{height:79.920000px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:46.260000px;}
.w8{width:78.660000px;}
.w4{width:93.096000px;}
.w9{width:102.636000px;}
.wb{width:157.710000px;}
.w7{width:158.970000px;}
.w6{width:179.850000px;}
.w3{width:192.270000px;}
.w5{width:203.790000px;}
.wd{width:207.030000px;}
.wa{width:213.510000px;}
.we{width:571.065000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x29{left:-2.520000px;}
.x0{left:0.000000px;}
.x10{left:8.460000px;}
.xb{left:10.620000px;}
.x1f{left:15.480000px;}
.x1b{left:18.534000px;}
.x13{left:24.120000px;}
.xd{left:26.640000px;}
.x15{left:27.900000px;}
.x11{left:29.880000px;}
.x26{left:32.940000px;}
.x16{left:35.460000px;}
.x22{left:36.540000px;}
.x2a{left:37.980000px;}
.x14{left:39.240000px;}
.x23{left:44.100000px;}
.x24{left:45.360000px;}
.x25{left:52.920000px;}
.x1{left:53.999987px;}
.x6{left:60.839987px;}
.x20{left:63.174000px;}
.x3{left:64.619987px;}
.x21{left:70.734000px;}
.x8{left:75.239987px;}
.xf{left:76.320000px;}
.x2c{left:80.999987px;}
.x18{left:83.565000px;}
.x7{left:87.839987px;}
.x5{left:96.515987px;}
.x12{left:99.000000px;}
.x17{left:102.780000px;}
.x4{left:107.135987px;}
.x9{left:117.935987px;}
.x19{left:119.195987px;}
.x1a{left:140.076000px;}
.x2b{left:160.409987px;}
.x2d{left:190.110000px;}
.xa{left:201.990000px;}
.x2e{left:261.030000px;}
.x1c{left:319.935000px;}
.x27{left:353.595000px;}
.xc{left:394.275000px;}
.x2{left:457.094987px;}
.x1d{left:478.905000px;}
.xe{left:487.365000px;}
.x28{left:511.305000px;}
.x1e{left:557.565000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-1.024000pt;}
.ls11{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.618667pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.290133pt;}
.ls21{letter-spacing:-0.269333pt;}
.lsa{letter-spacing:-0.213867pt;}
.ls12{letter-spacing:-0.201600pt;}
.ls26{letter-spacing:-0.156267pt;}
.ls17{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.057600pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls1d{letter-spacing:-0.044160pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.053867pt;}
.ls6{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.124800pt;}
.ls3{letter-spacing:0.154667pt;}
.ls15{letter-spacing:0.155733pt;}
.ls20{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.165867pt;}
.ls16{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.349867pt;}
.ls7{letter-spacing:0.426133pt;}
.ls18{letter-spacing:0.437333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.794667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls23{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:37.712640pt;}
.lsf{letter-spacing:39.632640pt;}
.lse{letter-spacing:42.192640pt;}
.ls10{letter-spacing:45.392640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.170987pt;}
.ws9{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.129920pt;}
.ws5{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.960960pt;}
.ws6{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.wsb{word-spacing:-11.935253pt;}
.wsd{word-spacing:-11.791253pt;}
.ws10{word-spacing:-11.735787pt;}
.ws8{word-spacing:-11.714987pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1339.799253pt;}
._1{margin-left:-1288.384000pt;}
._2{margin-left:-978.112000pt;}
._5{margin-left:-541.122560pt;}
._17{margin-left:-4.727040pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.033280pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._f{width:2.311467pt;}
._9{width:3.315200pt;}
._8{width:4.561067pt;}
._c{width:5.633920pt;}
._b{width:7.330560pt;}
._e{width:8.605440pt;}
._12{width:9.829760pt;}
._11{width:10.848853pt;}
._a{width:13.460480pt;}
._10{width:14.396800pt;}
._13{width:15.367040pt;}
._16{width:16.307840pt;}
._15{width:17.688960pt;}
._14{width:20.583253pt;}
._7{width:21.535360pt;}
._18{width:103.964160pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:5.120000pt;}
.yac{bottom:5.760000pt;}
.yb0{bottom:5.920000pt;}
.ybb{bottom:5.960000pt;}
.yae{bottom:14.400000pt;}
.ye8{bottom:22.720000pt;}
.ye5{bottom:27.040000pt;}
.ye7{bottom:40.640000pt;}
.y6{bottom:53.952000pt;}
.ye6{bottom:58.234667pt;}
.y78{bottom:80.032000pt;}
.ye4{bottom:84.672000pt;}
.y7a{bottom:88.032000pt;}
.yde{bottom:95.552000pt;}
.yaa{bottom:96.032000pt;}
.y77{bottom:98.752000pt;}
.y79{bottom:106.752000pt;}
.y30{bottom:110.912000pt;}
.ydd{bottom:114.272000pt;}
.y63{bottom:114.752000pt;}
.ya9{bottom:117.472000pt;}
.y76{bottom:125.472000pt;}
.y2f{bottom:129.632000pt;}
.ydc{bottom:132.992000pt;}
.y62{bottom:133.466667pt;}
.ya8{bottom:136.186667pt;}
.y75{bottom:144.186667pt;}
.y2e{bottom:148.346667pt;}
.ydb{bottom:151.706667pt;}
.y61{bottom:152.186667pt;}
.ya7{bottom:154.906667pt;}
.y74{bottom:162.906667pt;}
.y2d{bottom:167.066667pt;}
.yda{bottom:170.426667pt;}
.y60{bottom:170.906667pt;}
.ya6{bottom:173.626667pt;}
.y73{bottom:181.626667pt;}
.y2c{bottom:185.786667pt;}
.yd9{bottom:189.146667pt;}
.y5f{bottom:189.626667pt;}
.ya5{bottom:192.346667pt;}
.y72{bottom:200.346667pt;}
.y2b{bottom:204.506667pt;}
.yd8{bottom:207.866667pt;}
.y5e{bottom:208.346667pt;}
.ya4{bottom:211.066667pt;}
.y71{bottom:219.066667pt;}
.y2a{bottom:223.226667pt;}
.yd7{bottom:226.586667pt;}
.y5d{bottom:227.066667pt;}
.ya3{bottom:229.786667pt;}
.y70{bottom:237.786667pt;}
.y29{bottom:241.946667pt;}
.yd6{bottom:245.306667pt;}
.y5c{bottom:245.786667pt;}
.ya2{bottom:248.506667pt;}
.y6f{bottom:256.546667pt;}
.y28{bottom:260.706667pt;}
.yd5{bottom:264.066667pt;}
.y5b{bottom:264.546667pt;}
.ya1{bottom:267.266667pt;}
.y6e{bottom:275.266667pt;}
.y27{bottom:279.426667pt;}
.yd4{bottom:282.786667pt;}
.y5a{bottom:283.266667pt;}
.ya0{bottom:285.986667pt;}
.y6d{bottom:293.986667pt;}
.y26{bottom:298.146667pt;}
.yd3{bottom:301.506667pt;}
.y59{bottom:301.986667pt;}
.y9f{bottom:304.706667pt;}
.y6c{bottom:312.706667pt;}
.y25{bottom:316.866667pt;}
.yd2{bottom:320.226667pt;}
.y58{bottom:320.706667pt;}
.y9e{bottom:323.426667pt;}
.y6b{bottom:331.426667pt;}
.y24{bottom:335.586667pt;}
.yd1{bottom:338.946667pt;}
.y57{bottom:339.426667pt;}
.y9d{bottom:342.146667pt;}
.y6a{bottom:350.146667pt;}
.y23{bottom:354.306667pt;}
.yd0{bottom:357.666667pt;}
.y56{bottom:358.146667pt;}
.y9c{bottom:360.866667pt;}
.y69{bottom:368.866667pt;}
.y22{bottom:373.026667pt;}
.ycf{bottom:376.386667pt;}
.y55{bottom:376.866667pt;}
.y9b{bottom:379.586667pt;}
.y68{bottom:387.586667pt;}
.y21{bottom:391.746667pt;}
.yce{bottom:395.106667pt;}
.y54{bottom:395.586667pt;}
.y9a{bottom:398.306667pt;}
.y67{bottom:406.306667pt;}
.y20{bottom:410.466667pt;}
.ycd{bottom:413.826667pt;}
.y53{bottom:414.306667pt;}
.y99{bottom:417.026667pt;}
.y66{bottom:425.026667pt;}
.y1f{bottom:429.186667pt;}
.ycc{bottom:432.546667pt;}
.y52{bottom:433.026667pt;}
.y98{bottom:435.746667pt;}
.y65{bottom:443.746667pt;}
.y1e{bottom:447.906667pt;}
.ycb{bottom:451.266667pt;}
.y51{bottom:451.746667pt;}
.y97{bottom:454.466667pt;}
.y64{bottom:462.466667pt;}
.y1d{bottom:466.626667pt;}
.yca{bottom:469.986667pt;}
.y50{bottom:470.466667pt;}
.y96{bottom:473.186667pt;}
.y7b{bottom:481.186667pt;}
.y1c{bottom:485.346667pt;}
.yc9{bottom:488.706667pt;}
.y4f{bottom:489.186667pt;}
.y95{bottom:491.906667pt;}
.ye3{bottom:499.906667pt;}
.y1b{bottom:504.093333pt;}
.yc8{bottom:507.453333pt;}
.y4e{bottom:507.933333pt;}
.y94{bottom:510.653333pt;}
.ye2{bottom:518.653333pt;}
.y1a{bottom:522.653333pt;}
.yc7{bottom:526.173333pt;}
.y4d{bottom:526.653333pt;}
.y93{bottom:529.373333pt;}
.ye1{bottom:537.373333pt;}
.y19{bottom:541.373333pt;}
.yc6{bottom:544.893333pt;}
.y4c{bottom:545.373333pt;}
.y92{bottom:548.093333pt;}
.ye0{bottom:556.093333pt;}
.y18{bottom:560.093333pt;}
.yc5{bottom:563.613333pt;}
.y4b{bottom:564.093333pt;}
.y91{bottom:566.813333pt;}
.ydf{bottom:574.813333pt;}
.y17{bottom:581.053333pt;}
.yc4{bottom:582.333333pt;}
.y4a{bottom:582.813333pt;}
.y90{bottom:593.533333pt;}
.yc3{bottom:601.053333pt;}
.y49{bottom:601.533333pt;}
.y16{bottom:607.613333pt;}
.y8f{bottom:612.253333pt;}
.yc2{bottom:619.773333pt;}
.y48{bottom:620.253333pt;}
.y15{bottom:626.333333pt;}
.y8e{bottom:630.973333pt;}
.yc1{bottom:638.493333pt;}
.y47{bottom:638.973333pt;}
.y14{bottom:645.053333pt;}
.y8d{bottom:649.693333pt;}
.yc0{bottom:657.213333pt;}
.y46{bottom:657.693333pt;}
.y13{bottom:663.773333pt;}
.y8c{bottom:668.413333pt;}
.ybf{bottom:675.933333pt;}
.y45{bottom:676.413333pt;}
.y12{bottom:682.493333pt;}
.y8b{bottom:687.133333pt;}
.ybe{bottom:689.373333pt;}
.y44{bottom:695.133333pt;}
.y11{bottom:701.213333pt;}
.y8a{bottom:705.853333pt;}
.ybd{bottom:708.733333pt;}
.y43{bottom:713.853333pt;}
.y10{bottom:719.933333pt;}
.y89{bottom:724.573333pt;}
.ybc{bottom:728.093333pt;}
.y42{bottom:732.573333pt;}
.yf{bottom:738.653333pt;}
.y88{bottom:743.293333pt;}
.yba{bottom:747.453333pt;}
.y41{bottom:751.293333pt;}
.ye{bottom:757.413333pt;}
.y87{bottom:762.053333pt;}
.yb9{bottom:767.013333pt;}
.y40{bottom:770.053333pt;}
.yd{bottom:778.213333pt;}
.y86{bottom:780.773333pt;}
.yb8{bottom:786.373333pt;}
.y3f{bottom:788.773333pt;}
.y85{bottom:799.493333pt;}
.yc{bottom:801.413333pt;}
.yb7{bottom:805.733333pt;}
.y3e{bottom:807.493333pt;}
.y84{bottom:818.213333pt;}
.yb{bottom:820.133333pt;}
.y3d{bottom:826.213333pt;}
.yb6{bottom:831.013333pt;}
.ya{bottom:835.013333pt;}
.y83{bottom:836.933333pt;}
.y3c{bottom:844.933333pt;}
.yb5{bottom:849.733333pt;}
.y9{bottom:854.853333pt;}
.y82{bottom:855.653333pt;}
.yb4{bottom:863.173333pt;}
.y3b{bottom:863.653333pt;}
.y81{bottom:874.373333pt;}
.y8{bottom:877.253333pt;}
.y3a{bottom:882.373333pt;}
.yb3{bottom:882.533333pt;}
.y80{bottom:893.093333pt;}
.y39{bottom:901.093333pt;}
.yb2{bottom:901.893333pt;}
.y7{bottom:907.173333pt;}
.y7f{bottom:911.813333pt;}
.y38{bottom:919.813333pt;}
.yb1{bottom:921.413333pt;}
.y7e{bottom:930.533333pt;}
.y37{bottom:938.533333pt;}
.yaf{bottom:940.773333pt;}
.y5{bottom:942.053333pt;}
.y7d{bottom:949.253333pt;}
.y36{bottom:957.253333pt;}
.yad{bottom:960.133333pt;}
.y7c{bottom:967.973333pt;}
.y4{bottom:971.173333pt;}
.y35{bottom:975.973333pt;}
.yab{bottom:988.133333pt;}
.y34{bottom:994.693333pt;}
.y3{bottom:1000.293333pt;}
.y33{bottom:1013.440000pt;}
.y2{bottom:1029.280000pt;}
.y32{bottom:1040.800000pt;}
.y1{bottom:1059.680000pt;}
.y31{bottom:1061.440000pt;}
.h10{height:2.546250pt;}
.hb{height:18.592000pt;}
.hd{height:18.720000pt;}
.he{height:18.752000pt;}
.hc{height:27.200000pt;}
.h8{height:34.374375pt;}
.h2{height:49.907812pt;}
.h6{height:52.834688pt;}
.h9{height:54.390938pt;}
.ha{height:54.598989pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.hf{height:71.040000pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:41.120000pt;}
.w8{width:69.920000pt;}
.w4{width:82.752000pt;}
.w9{width:91.232000pt;}
.wb{width:140.186667pt;}
.w7{width:141.306667pt;}
.w6{width:159.866667pt;}
.w3{width:170.906667pt;}
.w5{width:181.146667pt;}
.wd{width:184.026667pt;}
.wa{width:189.786667pt;}
.we{width:507.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x29{left:-2.240000pt;}
.x0{left:0.000000pt;}
.x10{left:7.520000pt;}
.xb{left:9.440000pt;}
.x1f{left:13.760000pt;}
.x1b{left:16.474667pt;}
.x13{left:21.440000pt;}
.xd{left:23.680000pt;}
.x15{left:24.800000pt;}
.x11{left:26.560000pt;}
.x26{left:29.280000pt;}
.x16{left:31.520000pt;}
.x22{left:32.480000pt;}
.x2a{left:33.760000pt;}
.x14{left:34.880000pt;}
.x23{left:39.200000pt;}
.x24{left:40.320000pt;}
.x25{left:47.040000pt;}
.x1{left:47.999988pt;}
.x6{left:54.079988pt;}
.x20{left:56.154667pt;}
.x3{left:57.439988pt;}
.x21{left:62.874667pt;}
.x8{left:66.879988pt;}
.xf{left:67.840000pt;}
.x2c{left:71.999988pt;}
.x18{left:74.280000pt;}
.x7{left:78.079988pt;}
.x5{left:85.791988pt;}
.x12{left:88.000000pt;}
.x17{left:91.360000pt;}
.x4{left:95.231988pt;}
.x9{left:104.831988pt;}
.x19{left:105.951988pt;}
.x1a{left:124.512000pt;}
.x2b{left:142.586655pt;}
.x2d{left:168.986667pt;}
.xa{left:179.546667pt;}
.x2e{left:232.026667pt;}
.x1c{left:284.386667pt;}
.x27{left:314.306667pt;}
.xc{left:350.466667pt;}
.x2{left:406.306655pt;}
.x1d{left:425.693333pt;}
.xe{left:433.213333pt;}
.x28{left:454.493333pt;}
.x1e{left:495.613333pt;}
}




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