
    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_90a749a57220822c9f98e244.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c12ee364f5794e27d6f4fe22.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4e49bbb473d0e06e056062d0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c6567c3acdf42b166613918b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.260000px;}
.ls4{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:1.620000px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.lse{letter-spacing:64.026720px;}
.lsb{letter-spacing:91.386720px;}
.ls0{letter-spacing:91.530720px;}
.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.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1572.917760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._7{margin-left:-413.137920px;}
._6{margin-left:-228.392640px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._8{width:2.803200px;}
._e{width:3.812640px;}
._d{width:4.912320px;}
._f{width:6.039600px;}
._c{width:7.093680px;}
._a{width:8.188800px;}
._9{width:9.471120px;}
._b{width:11.286000px;}
._1f{width:12.580560px;}
._1c{width:13.833360px;}
._20{width:16.075440px;}
._25{width:17.688960px;}
._16{width:18.793440px;}
._2a{width:19.809360px;}
._23{width:21.659760px;}
._15{width:23.158080px;}
._12{width:24.590160px;}
._17{width:26.294400px;}
._22{width:28.237680px;}
._1a{width:29.490480px;}
._19{width:30.805200px;}
._18{width:32.210640px;}
._28{width:33.255360px;}
._13{width:34.390800px;}
._14{width:35.439840px;}
._24{width:36.752400px;}
._26{width:38.184480px;}
._21{width:39.291120px;}
._11{width:40.307040px;}
._10{width:41.832000px;}
._27{width:45.178560px;}
._1b{width:46.612800px;}
._29{width:48.286080px;}
._2b{width:50.113440px;}
._2c{width:52.916400px;}
._1e{width:55.337760px;}
._1d{width:57.011040px;}
._33{width:60.149520px;}
._2d{width:61.760880px;}
._2e{width:63.374400px;}
._31{width:89.480160px;}
._30{width:90.655920px;}
._32{width:92.955600px;}
._2f{width:119.870640px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y55{bottom:5.760000px;}
.y60{bottom:5.805000px;}
.y58{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.ya{bottom:39.780000px;}
.y6{bottom:55.440000px;}
.ydc{bottom:84.960000px;}
.yc4{bottom:93.780000px;}
.y3a{bottom:94.860000px;}
.y53{bottom:95.040000px;}
.y88{bottom:100.620000px;}
.ydb{bottom:104.940000px;}
.yc3{bottom:113.580000px;}
.y39{bottom:114.840000px;}
.y87{bottom:120.420000px;}
.yda{bottom:124.740000px;}
.yc2{bottom:130.140000px;}
.y38{bottom:134.640000px;}
.y86{bottom:140.220000px;}
.yd9{bottom:145.620000px;}
.y37{bottom:154.470000px;}
.y85{bottom:160.050000px;}
.yd8{bottom:165.450000px;}
.y36{bottom:174.270000px;}
.y84{bottom:179.850000px;}
.yd7{bottom:185.250000px;}
.y35{bottom:194.070000px;}
.y83{bottom:199.830000px;}
.yd6{bottom:206.130000px;}
.y34{bottom:214.050000px;}
.y82{bottom:219.630000px;}
.yd5{bottom:226.110000px;}
.y33{bottom:233.850000px;}
.y81{bottom:239.430000px;}
.yd4{bottom:245.910000px;}
.y32{bottom:253.650000px;}
.y80{bottom:259.230000px;}
.ya2{bottom:265.530000px;}
.yd3{bottom:266.790000px;}
.y31{bottom:273.450000px;}
.y7f{bottom:279.030000px;}
.ya1{bottom:285.330000px;}
.yd2{bottom:286.590000px;}
.y30{bottom:293.250000px;}
.y7e{bottom:299.010000px;}
.ya0{bottom:305.130000px;}
.yd1{bottom:306.390000px;}
.y2f{bottom:313.230000px;}
.y7d{bottom:318.810000px;}
.y9f{bottom:325.110000px;}
.yd0{bottom:327.450000px;}
.y2e{bottom:333.030000px;}
.y7c{bottom:338.610000px;}
.y9e{bottom:344.910000px;}
.ycf{bottom:347.250000px;}
.y2d{bottom:352.830000px;}
.y7b{bottom:353.370000px;}
.yc1{bottom:354.270000px;}
.y9d{bottom:364.710000px;}
.yce{bottom:367.050000px;}
.y2c{bottom:372.630000px;}
.y7a{bottom:373.890000px;}
.yc0{bottom:374.070000px;}
.y9c{bottom:384.510000px;}
.ycd{bottom:386.850000px;}
.y2b{bottom:392.430000px;}
.ybf{bottom:394.050000px;}
.y79{bottom:394.590000px;}
.y9b{bottom:404.355000px;}
.ycc{bottom:407.775000px;}
.y2a{bottom:412.455000px;}
.ybe{bottom:413.895000px;}
.y78{bottom:415.155000px;}
.y9a{bottom:424.335000px;}
.ycb{bottom:427.755000px;}
.y29{bottom:432.255000px;}
.ybd{bottom:433.695000px;}
.y77{bottom:435.855000px;}
.y99{bottom:444.135000px;}
.yca{bottom:447.555000px;}
.y28{bottom:452.055000px;}
.ybc{bottom:453.495000px;}
.y76{bottom:456.375000px;}
.y98{bottom:463.935000px;}
.yc9{bottom:468.435000px;}
.y27{bottom:471.855000px;}
.ybb{bottom:473.295000px;}
.y75{bottom:482.655000px;}
.y97{bottom:483.735000px;}
.yc8{bottom:488.235000px;}
.y26{bottom:491.655000px;}
.yba{bottom:493.095000px;}
.y74{bottom:502.635000px;}
.y96{bottom:503.535000px;}
.yc7{bottom:508.035000px;}
.y25{bottom:511.635000px;}
.yb9{bottom:513.075000px;}
.y73{bottom:522.435000px;}
.y95{bottom:523.515000px;}
.yc6{bottom:528.015000px;}
.y24{bottom:531.435000px;}
.yb8{bottom:532.875000px;}
.y72{bottom:542.235000px;}
.y94{bottom:543.315000px;}
.yc5{bottom:544.395000px;}
.y23{bottom:551.235000px;}
.yb7{bottom:552.675000px;}
.y71{bottom:562.035000px;}
.y93{bottom:563.115000px;}
.y22{bottom:571.035000px;}
.yb6{bottom:572.475000px;}
.y70{bottom:581.835000px;}
.y92{bottom:582.915000px;}
.y21{bottom:590.835000px;}
.yb5{bottom:592.275000px;}
.y6f{bottom:601.815000px;}
.y91{bottom:602.715000px;}
.y20{bottom:610.815000px;}
.yb4{bottom:612.255000px;}
.y6e{bottom:621.615000px;}
.y90{bottom:622.695000px;}
.y1f{bottom:630.615000px;}
.yb3{bottom:632.055000px;}
.y6d{bottom:641.415000px;}
.y8f{bottom:642.495000px;}
.y1e{bottom:650.445000px;}
.yb2{bottom:651.885000px;}
.y6c{bottom:661.245000px;}
.y8e{bottom:662.325000px;}
.y1d{bottom:670.245000px;}
.yb1{bottom:671.685000px;}
.y6b{bottom:681.045000px;}
.y8d{bottom:682.125000px;}
.y1c{bottom:690.045000px;}
.yb0{bottom:691.485000px;}
.y6a{bottom:701.025000px;}
.y8c{bottom:701.925000px;}
.y1b{bottom:710.025000px;}
.yaf{bottom:711.465000px;}
.y69{bottom:720.825000px;}
.y8b{bottom:721.905000px;}
.y52{bottom:729.825000px;}
.yae{bottom:731.265000px;}
.y1a{bottom:731.985000px;}
.y68{bottom:740.625000px;}
.y8a{bottom:741.705000px;}
.y51{bottom:749.625000px;}
.yad{bottom:751.065000px;}
.y19{bottom:751.785000px;}
.y89{bottom:758.265000px;}
.y67{bottom:760.425000px;}
.y50{bottom:769.425000px;}
.yac{bottom:770.865000px;}
.y18{bottom:771.765000px;}
.y66{bottom:780.225000px;}
.y4f{bottom:789.225000px;}
.yab{bottom:790.665000px;}
.y17{bottom:791.565000px;}
.y65{bottom:800.205000px;}
.y4e{bottom:809.205000px;}
.yaa{bottom:810.645000px;}
.y16{bottom:811.365000px;}
.y64{bottom:820.005000px;}
.y4d{bottom:829.005000px;}
.ya9{bottom:830.445000px;}
.y15{bottom:831.165000px;}
.y63{bottom:839.805000px;}
.y4c{bottom:848.805000px;}
.ya8{bottom:850.245000px;}
.y14{bottom:850.965000px;}
.y62{bottom:859.605000px;}
.y4b{bottom:868.605000px;}
.ya7{bottom:870.045000px;}
.y13{bottom:870.945000px;}
.y61{bottom:874.365000px;}
.y4a{bottom:888.405000px;}
.ya6{bottom:889.845000px;}
.y12{bottom:890.745000px;}
.y5f{bottom:895.065000px;}
.y49{bottom:908.430000px;}
.ya5{bottom:909.870000px;}
.y11{bottom:910.590000px;}
.y5e{bottom:915.630000px;}
.y48{bottom:928.230000px;}
.ya4{bottom:929.670000px;}
.y10{bottom:932.730000px;}
.y5d{bottom:936.330000px;}
.ya3{bottom:946.230000px;}
.y47{bottom:948.030000px;}
.y5c{bottom:956.850000px;}
.yf{bottom:957.750000px;}
.y46{bottom:967.830000px;}
.y5b{bottom:977.370000px;}
.ye{bottom:977.550000px;}
.y45{bottom:987.630000px;}
.yd{bottom:992.670000px;}
.y5a{bottom:998.070000px;}
.y44{bottom:1007.610000px;}
.yc{bottom:1014.090000px;}
.y59{bottom:1018.590000px;}
.y43{bottom:1027.410000px;}
.yb{bottom:1037.490000px;}
.y57{bottom:1039.110000px;}
.y42{bottom:1047.210000px;}
.y56{bottom:1059.810000px;}
.y5{bottom:1066.110000px;}
.y41{bottom:1067.010000px;}
.y54{bottom:1080.330000px;}
.y40{bottom:1086.810000px;}
.y4{bottom:1087.890000px;}
.y3f{bottom:1106.790000px;}
.y3{bottom:1118.850000px;}
.y3e{bottom:1126.590000px;}
.y3d{bottom:1146.420000px;}
.y2{bottom:1149.660000px;}
.y3c{bottom:1166.220000px;}
.y1{bottom:1181.700000px;}
.y3b{bottom:1194.300000px;}
.hf{height:19.800000px;}
.h11{height:19.836000px;}
.h10{height:19.980000px;}
.h4{height:21.780000px;}
.h7{height:27.432422px;}
.hc{height:28.115859px;}
.h6{height:29.464453px;}
.hd{height:42.164648px;}
.ha{height:43.215117px;}
.he{height:43.506914px;}
.h3{height:46.736719px;}
.h5{height:47.901094px;}
.hb{height:53.224453px;}
.h2{height:54.864844px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:56.556000px;}
.w6{width:88.776000px;}
.w8{width:126.900000px;}
.w7{width:170.850000px;}
.w5{width:269.130000px;}
.w4{width:734.730000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x11{left:51.299987px;}
.xd{left:52.919987px;}
.x1{left:54.179987px;}
.x18{left:58.499987px;}
.x20{left:64.799987px;}
.x10{left:75.599987px;}
.x22{left:80.999987px;}
.x23{left:108.035987px;}
.x3{left:111.276000px;}
.xb{left:129.635987px;}
.x8{left:137.555987px;}
.x21{left:206.489987px;}
.xc{left:214.049987px;}
.x19{left:221.609987px;}
.xf{left:238.529987px;}
.xa{left:271.154987px;}
.x7{left:284.259000px;}
.x6{left:392.649000px;}
.x17{left:394.814987px;}
.x1f{left:420.734987px;}
.x5{left:443.949000px;}
.x9{left:446.504987px;}
.x4{left:457.449000px;}
.xe{left:473.144987px;}
.x1b{left:475.484987px;}
.x12{left:476.745000px;}
.x1d{left:495.644987px;}
.x24{left:500.144987px;}
.x14{left:506.805000px;}
.x16{left:527.144987px;}
.x1e{left:568.544987px;}
.x1c{left:640.769987px;}
.x15{left:678.390000px;}
.x13{left:746.790000px;}
.x1a{left:839.879987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.120000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:1.440000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.lsb{letter-spacing:81.232640pt;}
.ls0{letter-spacing:81.360640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.149120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._7{margin-left:-367.233707pt;}
._6{margin-left:-203.015680pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._8{width:2.491733pt;}
._e{width:3.389013pt;}
._d{width:4.366507pt;}
._f{width:5.368533pt;}
._c{width:6.305493pt;}
._a{width:7.278933pt;}
._9{width:8.418773pt;}
._b{width:10.032000pt;}
._1f{width:11.182720pt;}
._1c{width:12.296320pt;}
._20{width:14.289280pt;}
._25{width:15.723520pt;}
._16{width:16.705280pt;}
._2a{width:17.608320pt;}
._23{width:19.253120pt;}
._15{width:20.584960pt;}
._12{width:21.857920pt;}
._17{width:23.372800pt;}
._22{width:25.100160pt;}
._1a{width:26.213760pt;}
._19{width:27.382400pt;}
._18{width:28.631680pt;}
._28{width:29.560320pt;}
._13{width:30.569600pt;}
._14{width:31.502080pt;}
._24{width:32.668800pt;}
._26{width:33.941760pt;}
._21{width:34.925440pt;}
._11{width:35.828480pt;}
._10{width:37.184000pt;}
._27{width:40.158720pt;}
._1b{width:41.433600pt;}
._29{width:42.920960pt;}
._2b{width:44.545280pt;}
._2c{width:47.036800pt;}
._1e{width:49.189120pt;}
._1d{width:50.676480pt;}
._33{width:53.466240pt;}
._2d{width:54.898560pt;}
._2e{width:56.332800pt;}
._31{width:79.537920pt;}
._30{width:80.583040pt;}
._32{width:82.627200pt;}
._2f{width:106.551680pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:5.120000pt;}
.y60{bottom:5.160000pt;}
.y58{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.ya{bottom:35.360000pt;}
.y6{bottom:49.280000pt;}
.ydc{bottom:75.520000pt;}
.yc4{bottom:83.360000pt;}
.y3a{bottom:84.320000pt;}
.y53{bottom:84.480000pt;}
.y88{bottom:89.440000pt;}
.ydb{bottom:93.280000pt;}
.yc3{bottom:100.960000pt;}
.y39{bottom:102.080000pt;}
.y87{bottom:107.040000pt;}
.yda{bottom:110.880000pt;}
.yc2{bottom:115.680000pt;}
.y38{bottom:119.680000pt;}
.y86{bottom:124.640000pt;}
.yd9{bottom:129.440000pt;}
.y37{bottom:137.306667pt;}
.y85{bottom:142.266667pt;}
.yd8{bottom:147.066667pt;}
.y36{bottom:154.906667pt;}
.y84{bottom:159.866667pt;}
.yd7{bottom:164.666667pt;}
.y35{bottom:172.506667pt;}
.y83{bottom:177.626667pt;}
.yd6{bottom:183.226667pt;}
.y34{bottom:190.266667pt;}
.y82{bottom:195.226667pt;}
.yd5{bottom:200.986667pt;}
.y33{bottom:207.866667pt;}
.y81{bottom:212.826667pt;}
.yd4{bottom:218.586667pt;}
.y32{bottom:225.466667pt;}
.y80{bottom:230.426667pt;}
.ya2{bottom:236.026667pt;}
.yd3{bottom:237.146667pt;}
.y31{bottom:243.066667pt;}
.y7f{bottom:248.026667pt;}
.ya1{bottom:253.626667pt;}
.yd2{bottom:254.746667pt;}
.y30{bottom:260.666667pt;}
.y7e{bottom:265.786667pt;}
.ya0{bottom:271.226667pt;}
.yd1{bottom:272.346667pt;}
.y2f{bottom:278.426667pt;}
.y7d{bottom:283.386667pt;}
.y9f{bottom:288.986667pt;}
.yd0{bottom:291.066667pt;}
.y2e{bottom:296.026667pt;}
.y7c{bottom:300.986667pt;}
.y9e{bottom:306.586667pt;}
.ycf{bottom:308.666667pt;}
.y2d{bottom:313.626667pt;}
.y7b{bottom:314.106667pt;}
.yc1{bottom:314.906667pt;}
.y9d{bottom:324.186667pt;}
.yce{bottom:326.266667pt;}
.y2c{bottom:331.226667pt;}
.y7a{bottom:332.346667pt;}
.yc0{bottom:332.506667pt;}
.y9c{bottom:341.786667pt;}
.ycd{bottom:343.866667pt;}
.y2b{bottom:348.826667pt;}
.ybf{bottom:350.266667pt;}
.y79{bottom:350.746667pt;}
.y9b{bottom:359.426667pt;}
.ycc{bottom:362.466667pt;}
.y2a{bottom:366.626667pt;}
.ybe{bottom:367.906667pt;}
.y78{bottom:369.026667pt;}
.y9a{bottom:377.186667pt;}
.ycb{bottom:380.226667pt;}
.y29{bottom:384.226667pt;}
.ybd{bottom:385.506667pt;}
.y77{bottom:387.426667pt;}
.y99{bottom:394.786667pt;}
.yca{bottom:397.826667pt;}
.y28{bottom:401.826667pt;}
.ybc{bottom:403.106667pt;}
.y76{bottom:405.666667pt;}
.y98{bottom:412.386667pt;}
.yc9{bottom:416.386667pt;}
.y27{bottom:419.426667pt;}
.ybb{bottom:420.706667pt;}
.y75{bottom:429.026667pt;}
.y97{bottom:429.986667pt;}
.yc8{bottom:433.986667pt;}
.y26{bottom:437.026667pt;}
.yba{bottom:438.306667pt;}
.y74{bottom:446.786667pt;}
.y96{bottom:447.586667pt;}
.yc7{bottom:451.586667pt;}
.y25{bottom:454.786667pt;}
.yb9{bottom:456.066667pt;}
.y73{bottom:464.386667pt;}
.y95{bottom:465.346667pt;}
.yc6{bottom:469.346667pt;}
.y24{bottom:472.386667pt;}
.yb8{bottom:473.666667pt;}
.y72{bottom:481.986667pt;}
.y94{bottom:482.946667pt;}
.yc5{bottom:483.906667pt;}
.y23{bottom:489.986667pt;}
.yb7{bottom:491.266667pt;}
.y71{bottom:499.586667pt;}
.y93{bottom:500.546667pt;}
.y22{bottom:507.586667pt;}
.yb6{bottom:508.866667pt;}
.y70{bottom:517.186667pt;}
.y92{bottom:518.146667pt;}
.y21{bottom:525.186667pt;}
.yb5{bottom:526.466667pt;}
.y6f{bottom:534.946667pt;}
.y91{bottom:535.746667pt;}
.y20{bottom:542.946667pt;}
.yb4{bottom:544.226667pt;}
.y6e{bottom:552.546667pt;}
.y90{bottom:553.506667pt;}
.y1f{bottom:560.546667pt;}
.yb3{bottom:561.826667pt;}
.y6d{bottom:570.146667pt;}
.y8f{bottom:571.106667pt;}
.y1e{bottom:578.173333pt;}
.yb2{bottom:579.453333pt;}
.y6c{bottom:587.773333pt;}
.y8e{bottom:588.733333pt;}
.y1d{bottom:595.773333pt;}
.yb1{bottom:597.053333pt;}
.y6b{bottom:605.373333pt;}
.y8d{bottom:606.333333pt;}
.y1c{bottom:613.373333pt;}
.yb0{bottom:614.653333pt;}
.y6a{bottom:623.133333pt;}
.y8c{bottom:623.933333pt;}
.y1b{bottom:631.133333pt;}
.yaf{bottom:632.413333pt;}
.y69{bottom:640.733333pt;}
.y8b{bottom:641.693333pt;}
.y52{bottom:648.733333pt;}
.yae{bottom:650.013333pt;}
.y1a{bottom:650.653333pt;}
.y68{bottom:658.333333pt;}
.y8a{bottom:659.293333pt;}
.y51{bottom:666.333333pt;}
.yad{bottom:667.613333pt;}
.y19{bottom:668.253333pt;}
.y89{bottom:674.013333pt;}
.y67{bottom:675.933333pt;}
.y50{bottom:683.933333pt;}
.yac{bottom:685.213333pt;}
.y18{bottom:686.013333pt;}
.y66{bottom:693.533333pt;}
.y4f{bottom:701.533333pt;}
.yab{bottom:702.813333pt;}
.y17{bottom:703.613333pt;}
.y65{bottom:711.293333pt;}
.y4e{bottom:719.293333pt;}
.yaa{bottom:720.573333pt;}
.y16{bottom:721.213333pt;}
.y64{bottom:728.893333pt;}
.y4d{bottom:736.893333pt;}
.ya9{bottom:738.173333pt;}
.y15{bottom:738.813333pt;}
.y63{bottom:746.493333pt;}
.y4c{bottom:754.493333pt;}
.ya8{bottom:755.773333pt;}
.y14{bottom:756.413333pt;}
.y62{bottom:764.093333pt;}
.y4b{bottom:772.093333pt;}
.ya7{bottom:773.373333pt;}
.y13{bottom:774.173333pt;}
.y61{bottom:777.213333pt;}
.y4a{bottom:789.693333pt;}
.ya6{bottom:790.973333pt;}
.y12{bottom:791.773333pt;}
.y5f{bottom:795.613333pt;}
.y49{bottom:807.493333pt;}
.ya5{bottom:808.773333pt;}
.y11{bottom:809.413333pt;}
.y5e{bottom:813.893333pt;}
.y48{bottom:825.093333pt;}
.ya4{bottom:826.373333pt;}
.y10{bottom:829.093333pt;}
.y5d{bottom:832.293333pt;}
.ya3{bottom:841.093333pt;}
.y47{bottom:842.693333pt;}
.y5c{bottom:850.533333pt;}
.yf{bottom:851.333333pt;}
.y46{bottom:860.293333pt;}
.y5b{bottom:868.773333pt;}
.ye{bottom:868.933333pt;}
.y45{bottom:877.893333pt;}
.yd{bottom:882.373333pt;}
.y5a{bottom:887.173333pt;}
.y44{bottom:895.653333pt;}
.yc{bottom:901.413333pt;}
.y59{bottom:905.413333pt;}
.y43{bottom:913.253333pt;}
.yb{bottom:922.213333pt;}
.y57{bottom:923.653333pt;}
.y42{bottom:930.853333pt;}
.y56{bottom:942.053333pt;}
.y5{bottom:947.653333pt;}
.y41{bottom:948.453333pt;}
.y54{bottom:960.293333pt;}
.y40{bottom:966.053333pt;}
.y4{bottom:967.013333pt;}
.y3f{bottom:983.813333pt;}
.y3{bottom:994.533333pt;}
.y3e{bottom:1001.413333pt;}
.y3d{bottom:1019.040000pt;}
.y2{bottom:1021.920000pt;}
.y3c{bottom:1036.640000pt;}
.y1{bottom:1050.400000pt;}
.y3b{bottom:1061.600000pt;}
.hf{height:17.600000pt;}
.h11{height:17.632000pt;}
.h10{height:17.760000pt;}
.h4{height:19.360000pt;}
.h7{height:24.384375pt;}
.hc{height:24.991875pt;}
.h6{height:26.190625pt;}
.hd{height:37.479688pt;}
.ha{height:38.413438pt;}
.he{height:38.672812pt;}
.h3{height:41.543750pt;}
.h5{height:42.578750pt;}
.hb{height:47.310625pt;}
.h2{height:48.768750pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:50.272000pt;}
.w6{width:78.912000pt;}
.w8{width:112.800000pt;}
.w7{width:151.866667pt;}
.w5{width:239.226667pt;}
.w4{width:653.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x11{left:45.599988pt;}
.xd{left:47.039988pt;}
.x1{left:48.159988pt;}
.x18{left:51.999988pt;}
.x20{left:57.599988pt;}
.x10{left:67.199988pt;}
.x22{left:71.999988pt;}
.x23{left:96.031988pt;}
.x3{left:98.912000pt;}
.xb{left:115.231988pt;}
.x8{left:122.271988pt;}
.x21{left:183.546655pt;}
.xc{left:190.266655pt;}
.x19{left:196.986655pt;}
.xf{left:212.026655pt;}
.xa{left:241.026655pt;}
.x7{left:252.674667pt;}
.x6{left:349.021333pt;}
.x17{left:350.946655pt;}
.x1f{left:373.986655pt;}
.x5{left:394.621333pt;}
.x9{left:396.893322pt;}
.x4{left:406.621333pt;}
.xe{left:420.573322pt;}
.x1b{left:422.653322pt;}
.x12{left:423.773333pt;}
.x1d{left:440.573322pt;}
.x24{left:444.573322pt;}
.x14{left:450.493333pt;}
.x16{left:468.573322pt;}
.x1e{left:505.373322pt;}
.x1c{left:569.573322pt;}
.x15{left:603.013333pt;}
.x13{left:663.813333pt;}
.x1a{left:746.559988pt;}
}




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