
    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_b0de48f477e1bfee96d432aa.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_4f42d59b7dfa0dc80e1ac136.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2479090788ecfd11ce46da7b.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_1df1b4f6f945ccdc214f2a7d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_fd1e80021e6c5bc0f1e5ef91.woff')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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1e{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.208200px;}
.ls12{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.098720px;}
.ls6{letter-spacing:1.421280px;}
.ls4{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.629360px;}
.ls5{letter-spacing:1.762560px;}
.ls1{letter-spacing:1.800000px;}
.ls3{letter-spacing:2.431920px;}
.ls1d{letter-spacing:16.506720px;}
.ls1b{letter-spacing:46.026720px;}
.ls1c{letter-spacing:46.170720px;}
.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;}
}
.ws4{word-spacing:-24.300000px;}
.ws3{word-spacing:-23.958720px;}
.ws5{word-spacing:-23.940000px;}
.ws6{word-spacing:-23.731800px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.166000px;}
.ws8{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-2651.618400px;}
._8{margin-left:-1395.714240px;}
._b{margin-left:-1021.867200px;}
._a{margin-left:-933.863040px;}
._13{margin-left:-754.584960px;}
._14{margin-left:-523.427040px;}
._23{margin-left:-517.080000px;}
._24{margin-left:-515.436480px;}
._c{margin-left:-513.293760px;}
._2f{margin-left:-511.104960px;}
._11{margin-left:-494.544960px;}
._12{margin-left:-461.520000px;}
._2e{margin-left:-445.860000px;}
._10{margin-left:-429.300000px;}
._16{margin-left:-298.080000px;}
._d{margin-left:-244.800000px;}
._15{margin-left:-231.120000px;}
._e{margin-left:-210.130560px;}
._17{margin-left:-198.720000px;}
._2c{margin-left:-193.570560px;}
._21{margin-left:-152.640000px;}
._f{margin-left:-132.480000px;}
._1b{margin-left:-117.708480px;}
._2d{margin-left:-115.920000px;}
._1a{margin-left:-100.980000px;}
._18{margin-left:-98.640000px;}
._19{margin-left:-82.800000px;}
._20{margin-left:-79.920000px;}
._1e{margin-left:-76.930560px;}
._1f{margin-left:-64.385280px;}
._1c{margin-left:-51.840000px;}
._22{margin-left:-49.723200px;}
._1d{margin-left:-47.934720px;}
._9{margin-left:-8.213760px;}
._33{margin-left:-7.121520px;}
._5{margin-left:-5.683680px;}
._1{margin-left:-3.732480px;}
._4{margin-left:-2.255040px;}
._7{margin-left:-1.059840px;}
._0{width:1.399680px;}
._2{width:2.566080px;}
._3{width:3.915840px;}
._2a{width:5.293440px;}
._29{width:6.394320px;}
._28{width:7.828560px;}
._27{width:9.561600px;}
._30{width:10.817520px;}
._32{width:11.979360px;}
._2b{width:13.659840px;}
._35{width:15.976800px;}
._31{width:17.330400px;}
._34{width:22.922640px;}
._26{width:42.126960px;}
._25{width:43.191840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.240000px;}
.y52{bottom:3.780000px;}
.y57{bottom:3.960000px;}
.y54{bottom:4.140000px;}
.y85{bottom:5.760000px;}
.y81{bottom:11.880000px;}
.y83{bottom:20.340000px;}
.y80{bottom:20.520000px;}
.y6{bottom:59.580000px;}
.yc9{bottom:91.116000px;}
.ya6{bottom:96.696000px;}
.y34{bottom:100.836000px;}
.y6d{bottom:101.916000px;}
.yf2{bottom:107.316000px;}
.yc8{bottom:110.916000px;}
.ya5{bottom:116.496000px;}
.y33{bottom:120.636000px;}
.y6c{bottom:121.896000px;}
.yf1{bottom:127.116000px;}
.yc7{bottom:130.716000px;}
.ya4{bottom:136.476000px;}
.y32{bottom:140.616000px;}
.y6b{bottom:141.696000px;}
.yf0{bottom:146.916000px;}
.yc6{bottom:150.690000px;}
.ya3{bottom:156.270000px;}
.y31{bottom:160.410000px;}
.y6a{bottom:161.490000px;}
.yef{bottom:166.710000px;}
.yc5{bottom:170.490000px;}
.ya2{bottom:176.070000px;}
.y30{bottom:180.210000px;}
.y69{bottom:181.290000px;}
.yee{bottom:186.690000px;}
.yc4{bottom:190.290000px;}
.ya1{bottom:195.870000px;}
.y2f{bottom:200.010000px;}
.y68{bottom:201.090000px;}
.yed{bottom:206.490000px;}
.yc3{bottom:210.090000px;}
.ya0{bottom:215.670000px;}
.y2e{bottom:219.810000px;}
.y67{bottom:221.070000px;}
.yec{bottom:226.290000px;}
.yc2{bottom:229.890000px;}
.y9f{bottom:235.650000px;}
.y2d{bottom:239.790000px;}
.y66{bottom:240.870000px;}
.yeb{bottom:246.090000px;}
.yc1{bottom:249.870000px;}
.y9e{bottom:255.450000px;}
.y2c{bottom:259.590000px;}
.y65{bottom:260.670000px;}
.yea{bottom:265.890000px;}
.yc0{bottom:269.670000px;}
.y9d{bottom:275.250000px;}
.y2b{bottom:279.390000px;}
.ye9{bottom:285.870000px;}
.y64{bottom:289.470000px;}
.y9c{bottom:295.050000px;}
.y2a{bottom:299.190000px;}
.ye8{bottom:305.670000px;}
.y63{bottom:309.270000px;}
.y9b{bottom:314.850000px;}
.y29{bottom:318.990000px;}
.ye7{bottom:325.470000px;}
.ybf{bottom:329.115000px;}
.y62{bottom:329.295000px;}
.y9a{bottom:334.875000px;}
.y28{bottom:339.015000px;}
.ye6{bottom:345.315000px;}
.y61{bottom:349.095000px;}
.y27{bottom:358.815000px;}
.y99{bottom:363.675000px;}
.ye5{bottom:365.115000px;}
.y60{bottom:368.895000px;}
.y26{bottom:378.615000px;}
.y98{bottom:383.475000px;}
.ye4{bottom:385.095000px;}
.ybe{bottom:388.695000px;}
.y5f{bottom:397.695000px;}
.y25{bottom:398.415000px;}
.y97{bottom:403.275000px;}
.ye3{bottom:404.895000px;}
.ybd{bottom:408.495000px;}
.y5e{bottom:417.495000px;}
.y24{bottom:418.215000px;}
.y96{bottom:423.075000px;}
.ye2{bottom:424.695000px;}
.ybc{bottom:428.295000px;}
.y5d{bottom:437.475000px;}
.y23{bottom:438.195000px;}
.y95{bottom:443.055000px;}
.ye1{bottom:444.495000px;}
.ybb{bottom:448.275000px;}
.y5c{bottom:457.275000px;}
.y22{bottom:457.995000px;}
.y94{bottom:462.855000px;}
.ye0{bottom:464.295000px;}
.y5b{bottom:477.075000px;}
.y21{bottom:477.795000px;}
.y93{bottom:482.655000px;}
.ydf{bottom:484.275000px;}
.y5a{bottom:496.875000px;}
.y92{bottom:497.415000px;}
.y20{bottom:497.595000px;}
.yde{bottom:504.075000px;}
.y59{bottom:511.635000px;}
.y91{bottom:515.415000px;}
.yba{bottom:516.675000px;}
.y1f{bottom:517.395000px;}
.ydd{bottom:523.875000px;}
.y58{bottom:530.895000px;}
.y90{bottom:533.415000px;}
.yb9{bottom:536.475000px;}
.y1e{bottom:537.375000px;}
.ydc{bottom:543.675000px;}
.y56{bottom:550.695000px;}
.y8f{bottom:551.415000px;}
.y1d{bottom:557.175000px;}
.ydb{bottom:563.475000px;}
.yb8{bottom:565.455000px;}
.y8e{bottom:569.415000px;}
.y55{bottom:569.955000px;}
.y1c{bottom:576.975000px;}
.yda{bottom:583.455000px;}
.yb7{bottom:585.255000px;}
.y8d{bottom:587.415000px;}
.y53{bottom:589.035000px;}
.y1b{bottom:596.805000px;}
.yd9{bottom:603.285000px;}
.yb6{bottom:605.085000px;}
.y51{bottom:609.045000px;}
.y8c{bottom:611.205000px;}
.y1a{bottom:616.605000px;}
.yd8{bottom:623.085000px;}
.yb5{bottom:624.885000px;}
.y8b{bottom:631.185000px;}
.y50{bottom:633.885000px;}
.y19{bottom:636.585000px;}
.yd7{bottom:642.885000px;}
.yb4{bottom:644.685000px;}
.y8a{bottom:650.985000px;}
.y4f{bottom:653.685000px;}
.y18{bottom:656.385000px;}
.yd6{bottom:662.685000px;}
.yb3{bottom:664.665000px;}
.y89{bottom:670.785000px;}
.y4e{bottom:673.665000px;}
.y17{bottom:676.185000px;}
.yd5{bottom:682.665000px;}
.y88{bottom:690.585000px;}
.y4d{bottom:693.465000px;}
.y16{bottom:695.985000px;}
.yd4{bottom:702.465000px;}
.y87{bottom:710.385000px;}
.yfb{bottom:711.465000px;}
.y4c{bottom:713.265000px;}
.y15{bottom:721.005000px;}
.yd3{bottom:722.265000px;}
.y86{bottom:730.365000px;}
.yfa{bottom:731.265000px;}
.y4b{bottom:733.065000px;}
.y14{bottom:735.765000px;}
.yd2{bottom:742.065000px;}
.y84{bottom:745.125000px;}
.yf9{bottom:751.065000px;}
.y4a{bottom:752.865000px;}
.y13{bottom:755.565000px;}
.yd1{bottom:761.865000px;}
.y82{bottom:768.165000px;}
.yf8{bottom:770.865000px;}
.y49{bottom:772.845000px;}
.y12{bottom:775.365000px;}
.yd0{bottom:781.845000px;}
.yf7{bottom:790.845000px;}
.y48{bottom:792.645000px;}
.y11{bottom:795.165000px;}
.ycf{bottom:801.645000px;}
.y7f{bottom:803.265000px;}
.yf6{bottom:810.645000px;}
.y47{bottom:812.445000px;}
.yce{bottom:821.445000px;}
.y10{bottom:822.525000px;}
.yf5{bottom:830.445000px;}
.y46{bottom:832.245000px;}
.y7e{bottom:838.545000px;}
.yb2{bottom:841.245000px;}
.yf{bottom:842.325000px;}
.yf4{bottom:850.245000px;}
.y45{bottom:852.045000px;}
.ye{bottom:856.905000px;}
.yb1{bottom:861.045000px;}
.y7d{bottom:862.350000px;}
.yf3{bottom:870.090000px;}
.y44{bottom:872.070000px;}
.yb0{bottom:881.070000px;}
.yd{bottom:882.150000px;}
.y7c{bottom:882.330000px;}
.ycd{bottom:890.070000px;}
.y43{bottom:891.870000px;}
.yaf{bottom:900.870000px;}
.yc{bottom:901.950000px;}
.y7b{bottom:902.130000px;}
.ycc{bottom:909.870000px;}
.y42{bottom:911.670000px;}
.yb{bottom:916.530000px;}
.yae{bottom:920.670000px;}
.y7a{bottom:921.930000px;}
.ycb{bottom:929.670000px;}
.y41{bottom:931.470000px;}
.ya{bottom:936.330000px;}
.yad{bottom:940.470000px;}
.y79{bottom:941.730000px;}
.yca{bottom:949.470000px;}
.y9{bottom:959.730000px;}
.y40{bottom:960.270000px;}
.y78{bottom:961.530000px;}
.yac{bottom:969.270000px;}
.y3f{bottom:980.250000px;}
.y77{bottom:981.510000px;}
.yab{bottom:989.250000px;}
.y8{bottom:991.590000px;}
.y3e{bottom:1000.050000px;}
.y76{bottom:1001.310000px;}
.yaa{bottom:1009.050000px;}
.y75{bottom:1016.070000px;}
.y3d{bottom:1019.850000px;}
.y7{bottom:1023.270000px;}
.ya9{bottom:1028.850000px;}
.y74{bottom:1034.070000px;}
.y3c{bottom:1039.650000px;}
.ya8{bottom:1048.650000px;}
.y73{bottom:1052.070000px;}
.y3b{bottom:1059.450000px;}
.y5{bottom:1062.690000px;}
.ya7{bottom:1068.450000px;}
.y72{bottom:1070.070000px;}
.y71{bottom:1088.070000px;}
.y3a{bottom:1088.430000px;}
.y4{bottom:1092.930000px;}
.y70{bottom:1106.070000px;}
.y39{bottom:1108.230000px;}
.y3{bottom:1123.170000px;}
.y6e{bottom:1124.070000px;}
.y38{bottom:1128.030000px;}
.y37{bottom:1147.860000px;}
.y2{bottom:1153.440000px;}
.y36{bottom:1174.500000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.580000px;}
.h11{height:17.280000px;}
.h10{height:17.316000px;}
.hc{height:18.360000px;}
.he{height:18.540000px;}
.hf{height:19.080000px;}
.hd{height:19.296000px;}
.h14{height:22.140000px;}
.h13{height:34.380000px;}
.h12{height:34.560000px;}
.h8{height:38.158594px;}
.h9{height:39.183750px;}
.h16{height:43.215117px;}
.h6{height:58.651172px;}
.ha{height:60.063750px;}
.h7{height:60.226875px;}
.h15{height:61.423863px;}
.h5{height:65.010937px;}
.hb{height:66.757500px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:116.136000px;}
.w6{width:137.160000px;}
.wb{width:139.500000px;}
.wc{width:139.536000px;}
.wa{width:146.340000px;}
.w8{width:146.376000px;}
.w9{width:146.556000px;}
.w4{width:221.070000px;}
.w3{width:361.335000px;}
.w5{width:382.035000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:54.179987px;}
.x9{left:79.020000px;}
.x12{left:80.999987px;}
.xe{left:96.336000px;}
.x13{left:108.035987px;}
.x6{left:128.196000px;}
.x3{left:155.010000px;}
.xa{left:226.110000px;}
.xf{left:236.550000px;}
.xb{left:373.395000px;}
.x10{left:376.815000px;}
.x7{left:510.945000px;}
.x5{left:517.065000px;}
.xc{left:520.485000px;}
.x8{left:648.825000px;}
.x11{left:657.285000px;}
.xd{left:667.770000px;}
.x2{left:808.889987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1e{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.185067pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.976640pt;}
.ls6{letter-spacing:1.263360pt;}
.ls4{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.448320pt;}
.ls5{letter-spacing:1.566720pt;}
.ls1{letter-spacing:1.600000pt;}
.ls3{letter-spacing:2.161707pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls1c{letter-spacing:41.040640pt;}
.ws4{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.296640pt;}
.ws5{word-spacing:-21.280000pt;}
.ws6{word-spacing:-21.094933pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.592000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-2356.994133pt;}
._8{margin-left:-1240.634880pt;}
._b{margin-left:-908.326400pt;}
._a{margin-left:-830.100480pt;}
._13{margin-left:-670.742187pt;}
._14{margin-left:-465.268480pt;}
._23{margin-left:-459.626667pt;}
._24{margin-left:-458.165760pt;}
._c{margin-left:-456.261120pt;}
._2f{margin-left:-454.315520pt;}
._11{margin-left:-439.595520pt;}
._12{margin-left:-410.240000pt;}
._2e{margin-left:-396.320000pt;}
._10{margin-left:-381.600000pt;}
._16{margin-left:-264.960000pt;}
._d{margin-left:-217.600000pt;}
._15{margin-left:-205.440000pt;}
._e{margin-left:-186.782720pt;}
._17{margin-left:-176.640000pt;}
._2c{margin-left:-172.062720pt;}
._21{margin-left:-135.680000pt;}
._f{margin-left:-117.760000pt;}
._1b{margin-left:-104.629760pt;}
._2d{margin-left:-103.040000pt;}
._1a{margin-left:-89.760000pt;}
._18{margin-left:-87.680000pt;}
._19{margin-left:-73.600000pt;}
._20{margin-left:-71.040000pt;}
._1e{margin-left:-68.382720pt;}
._1f{margin-left:-57.231360pt;}
._1c{margin-left:-46.080000pt;}
._22{margin-left:-44.198400pt;}
._1d{margin-left:-42.608640pt;}
._9{margin-left:-7.301120pt;}
._33{margin-left:-6.330240pt;}
._5{margin-left:-5.052160pt;}
._1{margin-left:-3.317760pt;}
._4{margin-left:-2.004480pt;}
._7{margin-left:-0.942080pt;}
._0{width:1.244160pt;}
._2{width:2.280960pt;}
._3{width:3.480747pt;}
._2a{width:4.705280pt;}
._29{width:5.683840pt;}
._28{width:6.958720pt;}
._27{width:8.499200pt;}
._30{width:9.615573pt;}
._32{width:10.648320pt;}
._2b{width:12.142080pt;}
._35{width:14.201600pt;}
._31{width:15.404800pt;}
._34{width:20.375680pt;}
._26{width:37.446187pt;}
._25{width:38.392747pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.880000pt;}
.y52{bottom:3.360000pt;}
.y57{bottom:3.520000pt;}
.y54{bottom:3.680000pt;}
.y85{bottom:5.120000pt;}
.y81{bottom:10.560000pt;}
.y83{bottom:18.080000pt;}
.y80{bottom:18.240000pt;}
.y6{bottom:52.960000pt;}
.yc9{bottom:80.992000pt;}
.ya6{bottom:85.952000pt;}
.y34{bottom:89.632000pt;}
.y6d{bottom:90.592000pt;}
.yf2{bottom:95.392000pt;}
.yc8{bottom:98.592000pt;}
.ya5{bottom:103.552000pt;}
.y33{bottom:107.232000pt;}
.y6c{bottom:108.352000pt;}
.yf1{bottom:112.992000pt;}
.yc7{bottom:116.192000pt;}
.ya4{bottom:121.312000pt;}
.y32{bottom:124.992000pt;}
.y6b{bottom:125.952000pt;}
.yf0{bottom:130.592000pt;}
.yc6{bottom:133.946667pt;}
.ya3{bottom:138.906667pt;}
.y31{bottom:142.586667pt;}
.y6a{bottom:143.546667pt;}
.yef{bottom:148.186667pt;}
.yc5{bottom:151.546667pt;}
.ya2{bottom:156.506667pt;}
.y30{bottom:160.186667pt;}
.y69{bottom:161.146667pt;}
.yee{bottom:165.946667pt;}
.yc4{bottom:169.146667pt;}
.ya1{bottom:174.106667pt;}
.y2f{bottom:177.786667pt;}
.y68{bottom:178.746667pt;}
.yed{bottom:183.546667pt;}
.yc3{bottom:186.746667pt;}
.ya0{bottom:191.706667pt;}
.y2e{bottom:195.386667pt;}
.y67{bottom:196.506667pt;}
.yec{bottom:201.146667pt;}
.yc2{bottom:204.346667pt;}
.y9f{bottom:209.466667pt;}
.y2d{bottom:213.146667pt;}
.y66{bottom:214.106667pt;}
.yeb{bottom:218.746667pt;}
.yc1{bottom:222.106667pt;}
.y9e{bottom:227.066667pt;}
.y2c{bottom:230.746667pt;}
.y65{bottom:231.706667pt;}
.yea{bottom:236.346667pt;}
.yc0{bottom:239.706667pt;}
.y9d{bottom:244.666667pt;}
.y2b{bottom:248.346667pt;}
.ye9{bottom:254.106667pt;}
.y64{bottom:257.306667pt;}
.y9c{bottom:262.266667pt;}
.y2a{bottom:265.946667pt;}
.ye8{bottom:271.706667pt;}
.y63{bottom:274.906667pt;}
.y9b{bottom:279.866667pt;}
.y29{bottom:283.546667pt;}
.ye7{bottom:289.306667pt;}
.ybf{bottom:292.546667pt;}
.y62{bottom:292.706667pt;}
.y9a{bottom:297.666667pt;}
.y28{bottom:301.346667pt;}
.ye6{bottom:306.946667pt;}
.y61{bottom:310.306667pt;}
.y27{bottom:318.946667pt;}
.y99{bottom:323.266667pt;}
.ye5{bottom:324.546667pt;}
.y60{bottom:327.906667pt;}
.y26{bottom:336.546667pt;}
.y98{bottom:340.866667pt;}
.ye4{bottom:342.306667pt;}
.ybe{bottom:345.506667pt;}
.y5f{bottom:353.506667pt;}
.y25{bottom:354.146667pt;}
.y97{bottom:358.466667pt;}
.ye3{bottom:359.906667pt;}
.ybd{bottom:363.106667pt;}
.y5e{bottom:371.106667pt;}
.y24{bottom:371.746667pt;}
.y96{bottom:376.066667pt;}
.ye2{bottom:377.506667pt;}
.ybc{bottom:380.706667pt;}
.y5d{bottom:388.866667pt;}
.y23{bottom:389.506667pt;}
.y95{bottom:393.826667pt;}
.ye1{bottom:395.106667pt;}
.ybb{bottom:398.466667pt;}
.y5c{bottom:406.466667pt;}
.y22{bottom:407.106667pt;}
.y94{bottom:411.426667pt;}
.ye0{bottom:412.706667pt;}
.y5b{bottom:424.066667pt;}
.y21{bottom:424.706667pt;}
.y93{bottom:429.026667pt;}
.ydf{bottom:430.466667pt;}
.y5a{bottom:441.666667pt;}
.y92{bottom:442.146667pt;}
.y20{bottom:442.306667pt;}
.yde{bottom:448.066667pt;}
.y59{bottom:454.786667pt;}
.y91{bottom:458.146667pt;}
.yba{bottom:459.266667pt;}
.y1f{bottom:459.906667pt;}
.ydd{bottom:465.666667pt;}
.y58{bottom:471.906667pt;}
.y90{bottom:474.146667pt;}
.yb9{bottom:476.866667pt;}
.y1e{bottom:477.666667pt;}
.ydc{bottom:483.266667pt;}
.y56{bottom:489.506667pt;}
.y8f{bottom:490.146667pt;}
.y1d{bottom:495.266667pt;}
.ydb{bottom:500.866667pt;}
.yb8{bottom:502.626667pt;}
.y8e{bottom:506.146667pt;}
.y55{bottom:506.626667pt;}
.y1c{bottom:512.866667pt;}
.yda{bottom:518.626667pt;}
.yb7{bottom:520.226667pt;}
.y8d{bottom:522.146667pt;}
.y53{bottom:523.586667pt;}
.y1b{bottom:530.493333pt;}
.yd9{bottom:536.253333pt;}
.yb6{bottom:537.853333pt;}
.y51{bottom:541.373333pt;}
.y8c{bottom:543.293333pt;}
.y1a{bottom:548.093333pt;}
.yd8{bottom:553.853333pt;}
.yb5{bottom:555.453333pt;}
.y8b{bottom:561.053333pt;}
.y50{bottom:563.453333pt;}
.y19{bottom:565.853333pt;}
.yd7{bottom:571.453333pt;}
.yb4{bottom:573.053333pt;}
.y8a{bottom:578.653333pt;}
.y4f{bottom:581.053333pt;}
.y18{bottom:583.453333pt;}
.yd6{bottom:589.053333pt;}
.yb3{bottom:590.813333pt;}
.y89{bottom:596.253333pt;}
.y4e{bottom:598.813333pt;}
.y17{bottom:601.053333pt;}
.yd5{bottom:606.813333pt;}
.y88{bottom:613.853333pt;}
.y4d{bottom:616.413333pt;}
.y16{bottom:618.653333pt;}
.yd4{bottom:624.413333pt;}
.y87{bottom:631.453333pt;}
.yfb{bottom:632.413333pt;}
.y4c{bottom:634.013333pt;}
.y15{bottom:640.893333pt;}
.yd3{bottom:642.013333pt;}
.y86{bottom:649.213333pt;}
.yfa{bottom:650.013333pt;}
.y4b{bottom:651.613333pt;}
.y14{bottom:654.013333pt;}
.yd2{bottom:659.613333pt;}
.y84{bottom:662.333333pt;}
.yf9{bottom:667.613333pt;}
.y4a{bottom:669.213333pt;}
.y13{bottom:671.613333pt;}
.yd1{bottom:677.213333pt;}
.y82{bottom:682.813333pt;}
.yf8{bottom:685.213333pt;}
.y49{bottom:686.973333pt;}
.y12{bottom:689.213333pt;}
.yd0{bottom:694.973333pt;}
.yf7{bottom:702.973333pt;}
.y48{bottom:704.573333pt;}
.y11{bottom:706.813333pt;}
.ycf{bottom:712.573333pt;}
.y7f{bottom:714.013333pt;}
.yf6{bottom:720.573333pt;}
.y47{bottom:722.173333pt;}
.yce{bottom:730.173333pt;}
.y10{bottom:731.133333pt;}
.yf5{bottom:738.173333pt;}
.y46{bottom:739.773333pt;}
.y7e{bottom:745.373333pt;}
.yb2{bottom:747.773333pt;}
.yf{bottom:748.733333pt;}
.yf4{bottom:755.773333pt;}
.y45{bottom:757.373333pt;}
.ye{bottom:761.693333pt;}
.yb1{bottom:765.373333pt;}
.y7d{bottom:766.533333pt;}
.yf3{bottom:773.413333pt;}
.y44{bottom:775.173333pt;}
.yb0{bottom:783.173333pt;}
.yd{bottom:784.133333pt;}
.y7c{bottom:784.293333pt;}
.ycd{bottom:791.173333pt;}
.y43{bottom:792.773333pt;}
.yaf{bottom:800.773333pt;}
.yc{bottom:801.733333pt;}
.y7b{bottom:801.893333pt;}
.ycc{bottom:808.773333pt;}
.y42{bottom:810.373333pt;}
.yb{bottom:814.693333pt;}
.yae{bottom:818.373333pt;}
.y7a{bottom:819.493333pt;}
.ycb{bottom:826.373333pt;}
.y41{bottom:827.973333pt;}
.ya{bottom:832.293333pt;}
.yad{bottom:835.973333pt;}
.y79{bottom:837.093333pt;}
.yca{bottom:843.973333pt;}
.y9{bottom:853.093333pt;}
.y40{bottom:853.573333pt;}
.y78{bottom:854.693333pt;}
.yac{bottom:861.573333pt;}
.y3f{bottom:871.333333pt;}
.y77{bottom:872.453333pt;}
.yab{bottom:879.333333pt;}
.y8{bottom:881.413333pt;}
.y3e{bottom:888.933333pt;}
.y76{bottom:890.053333pt;}
.yaa{bottom:896.933333pt;}
.y75{bottom:903.173333pt;}
.y3d{bottom:906.533333pt;}
.y7{bottom:909.573333pt;}
.ya9{bottom:914.533333pt;}
.y74{bottom:919.173333pt;}
.y3c{bottom:924.133333pt;}
.ya8{bottom:932.133333pt;}
.y73{bottom:935.173333pt;}
.y3b{bottom:941.733333pt;}
.y5{bottom:944.613333pt;}
.ya7{bottom:949.733333pt;}
.y72{bottom:951.173333pt;}
.y71{bottom:967.173333pt;}
.y3a{bottom:967.493333pt;}
.y4{bottom:971.493333pt;}
.y70{bottom:983.173333pt;}
.y39{bottom:985.093333pt;}
.y3{bottom:998.373333pt;}
.y6e{bottom:999.173333pt;}
.y38{bottom:1002.693333pt;}
.y37{bottom:1020.320000pt;}
.y2{bottom:1025.280000pt;}
.y36{bottom:1044.000000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.960000pt;}
.h11{height:15.360000pt;}
.h10{height:15.392000pt;}
.hc{height:16.320000pt;}
.he{height:16.480000pt;}
.hf{height:16.960000pt;}
.hd{height:17.152000pt;}
.h14{height:19.680000pt;}
.h13{height:30.560000pt;}
.h12{height:30.720000pt;}
.h8{height:33.918750pt;}
.h9{height:34.830000pt;}
.h16{height:38.413438pt;}
.h6{height:52.134375pt;}
.ha{height:53.390000pt;}
.h7{height:53.535000pt;}
.h15{height:54.598989pt;}
.h5{height:57.787500pt;}
.hb{height:59.340000pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:103.232000pt;}
.w6{width:121.920000pt;}
.wb{width:124.000000pt;}
.wc{width:124.032000pt;}
.wa{width:130.080000pt;}
.w8{width:130.112000pt;}
.w9{width:130.272000pt;}
.w4{width:196.506667pt;}
.w3{width:321.186667pt;}
.w5{width:339.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:48.159988pt;}
.x9{left:70.240000pt;}
.x12{left:71.999988pt;}
.xe{left:85.632000pt;}
.x13{left:96.031988pt;}
.x6{left:113.952000pt;}
.x3{left:137.786667pt;}
.xa{left:200.986667pt;}
.xf{left:210.266667pt;}
.xb{left:331.906667pt;}
.x10{left:334.946667pt;}
.x7{left:454.173333pt;}
.x5{left:459.613333pt;}
.xc{left:462.653333pt;}
.x8{left:576.733333pt;}
.x11{left:584.253333pt;}
.xd{left:593.573333pt;}
.x2{left:719.013322pt;}
}




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