
    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_6bf90baa4006b37f768f36a2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970703;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_5f799d928edfd904bb2cc0dc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_31769b986c43c52f5c6d8d6a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_38520f0e7701b2b18caaee8b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f22df0678b2886626dfd34e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_502bba93f5b4eccdd4f32451.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.942000px;}
.lsc{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:59.345280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws7{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-4.856160px;}
._e{margin-left:-3.496800px;}
._4{margin-left:-2.464080px;}
._1{margin-left:-1.254240px;}
._0{width:1.015920px;}
._9{width:2.543280px;}
._b{width:4.362480px;}
._a{width:5.402160px;}
._8{width:6.513840px;}
._7{width:8.187120px;}
._c{width:9.979920px;}
._d{width:11.294640px;}
._17{width:13.265520px;}
._14{width:14.303520px;}
._15{width:15.323040px;}
._1c{width:18.007200px;}
._6{width:19.422000px;}
._5{width:20.856240px;}
._1d{width:22.313280px;}
._1a{width:24.385200px;}
._18{width:25.502400px;}
._19{width:26.774160px;}
._21{width:28.668720px;}
._1f{width:32.457600px;}
._20{width:33.782400px;}
._11{width:36.564480px;}
._12{width:37.928880px;}
._1e{width:40.340160px;}
._10{width:105.840000px;}
._1b{width:111.600000px;}
._f{width:168.368880px;}
._16{width:213.420000px;}
._3{width:309.180000px;}
._2{width:1099.768800px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.240000px;}
.y95{bottom:3.600000px;}
.ycc{bottom:3.780000px;}
.yb0{bottom:5.040000px;}
.ya1{bottom:5.220000px;}
.y97{bottom:5.400000px;}
.y2{bottom:6.120000px;}
.yc0{bottom:6.660000px;}
.yd1{bottom:7.020000px;}
.yd3{bottom:7.200000px;}
.yd5{bottom:14.940000px;}
.y92{bottom:20.520000px;}
.ycb{bottom:22.680000px;}
.yd7{bottom:25.920000px;}
.yce{bottom:26.094000px;}
.yd0{bottom:26.100000px;}
.ydb{bottom:26.145000px;}
.yc2{bottom:37.800000px;}
.y4{bottom:70.416000px;}
.y101{bottom:110.196000px;}
.y75{bottom:110.916000px;}
.y9a{bottom:117.036000px;}
.y3e{bottom:121.176000px;}
.y100{bottom:129.276000px;}
.y74{bottom:129.816000px;}
.ycd{bottom:134.676000px;}
.y99{bottom:138.456000px;}
.y3d{bottom:140.256000px;}
.yff{bottom:148.176000px;}
.y73{bottom:148.896000px;}
.y3c{bottom:159.150000px;}
.y98{bottom:159.870000px;}
.yfe{bottom:167.250000px;}
.y72{bottom:167.790000px;}
.yca{bottom:176.790000px;}
.y3b{bottom:178.230000px;}
.y96{bottom:181.470000px;}
.yfd{bottom:186.150000px;}
.y71{bottom:186.870000px;}
.y3a{bottom:197.130000px;}
.y94{bottom:202.890000px;}
.yfc{bottom:205.050000px;}
.y70{bottom:205.770000px;}
.y39{bottom:216.030000px;}
.yc9{bottom:219.270000px;}
.y91{bottom:222.510000px;}
.yfb{bottom:224.130000px;}
.y6f{bottom:224.670000px;}
.y38{bottom:235.110000px;}
.yc8{bottom:238.170000px;}
.yfa{bottom:243.030000px;}
.y6e{bottom:243.750000px;}
.y37{bottom:254.010000px;}
.yc7{bottom:257.070000px;}
.y90{bottom:261.570000px;}
.yf9{bottom:262.110000px;}
.y6d{bottom:262.650000px;}
.y36{bottom:273.090000px;}
.yc6{bottom:276.150000px;}
.y8f{bottom:280.470000px;}
.yf8{bottom:281.010000px;}
.y6c{bottom:281.730000px;}
.y35{bottom:291.990000px;}
.yc5{bottom:295.050000px;}
.y8e{bottom:299.370000px;}
.yf7{bottom:300.090000px;}
.y6b{bottom:300.630000px;}
.y34{bottom:310.890000px;}
.yc4{bottom:314.130000px;}
.y8d{bottom:318.450000px;}
.yf6{bottom:318.990000px;}
.y6a{bottom:319.530000px;}
.y33{bottom:329.970000px;}
.yc3{bottom:333.030000px;}
.y8c{bottom:337.395000px;}
.yf5{bottom:337.935000px;}
.y69{bottom:338.655000px;}
.y32{bottom:348.915000px;}
.yc1{bottom:349.095000px;}
.y8b{bottom:356.475000px;}
.yf4{bottom:357.015000px;}
.y68{bottom:357.555000px;}
.y31{bottom:367.455000px;}
.y8a{bottom:375.375000px;}
.yf3{bottom:375.915000px;}
.y67{bottom:376.635000px;}
.y30{bottom:384.015000px;}
.y89{bottom:394.275000px;}
.yf2{bottom:394.995000px;}
.y66{bottom:395.535000px;}
.y2f{bottom:397.875000px;}
.ybf{bottom:401.655000px;}
.y2e{bottom:412.275000px;}
.y88{bottom:413.355000px;}
.yf1{bottom:413.895000px;}
.y65{bottom:414.435000px;}
.ybe{bottom:423.075000px;}
.y2d{bottom:429.555000px;}
.y87{bottom:432.255000px;}
.yf0{bottom:432.795000px;}
.y64{bottom:433.515000px;}
.ybd{bottom:444.315000px;}
.y2c{bottom:446.835000px;}
.y86{bottom:451.335000px;}
.yef{bottom:451.875000px;}
.y63{bottom:452.415000px;}
.y2b{bottom:464.115000px;}
.ybc{bottom:465.735000px;}
.y85{bottom:470.235000px;}
.yee{bottom:470.775000px;}
.y62{bottom:471.495000px;}
.y2a{bottom:481.395000px;}
.ybb{bottom:487.155000px;}
.y84{bottom:489.135000px;}
.yed{bottom:489.855000px;}
.y61{bottom:490.395000px;}
.y29{bottom:498.675000px;}
.y83{bottom:508.215000px;}
.yba{bottom:508.575000px;}
.yec{bottom:508.755000px;}
.y60{bottom:509.295000px;}
.y28{bottom:515.775000px;}
.y82{bottom:527.115000px;}
.yeb{bottom:527.655000px;}
.y5f{bottom:528.375000px;}
.yb9{bottom:529.815000px;}
.y27{bottom:533.055000px;}
.y81{bottom:546.195000px;}
.yea{bottom:546.735000px;}
.y5e{bottom:547.275000px;}
.y26{bottom:550.335000px;}
.yb8{bottom:551.235000px;}
.y80{bottom:565.095000px;}
.ye9{bottom:565.635000px;}
.y5d{bottom:566.355000px;}
.y25{bottom:567.615000px;}
.yb7{bottom:572.655000px;}
.y7f{bottom:584.175000px;}
.ye8{bottom:584.715000px;}
.y24{bottom:584.895000px;}
.y5c{bottom:585.255000px;}
.yb6{bottom:594.075000px;}
.y23{bottom:602.175000px;}
.y7e{bottom:603.075000px;}
.ye7{bottom:603.645000px;}
.y5b{bottom:604.365000px;}
.yb5{bottom:615.345000px;}
.y22{bottom:619.305000px;}
.y7d{bottom:622.005000px;}
.ye6{bottom:622.545000px;}
.y5a{bottom:623.265000px;}
.y21{bottom:636.585000px;}
.yb4{bottom:636.765000px;}
.y7c{bottom:641.085000px;}
.ye5{bottom:641.625000px;}
.y59{bottom:642.165000px;}
.y20{bottom:653.865000px;}
.yb3{bottom:658.185000px;}
.y7b{bottom:659.985000px;}
.ye4{bottom:660.525000px;}
.y58{bottom:661.245000px;}
.y1f{bottom:671.145000px;}
.y7a{bottom:679.065000px;}
.yb2{bottom:679.605000px;}
.y57{bottom:680.145000px;}
.y1e{bottom:688.425000px;}
.y79{bottom:697.965000px;}
.ye3{bottom:698.505000px;}
.y56{bottom:699.225000px;}
.yb1{bottom:700.845000px;}
.y1d{bottom:705.525000px;}
.y78{bottom:716.865000px;}
.ye2{bottom:717.405000px;}
.y55{bottom:718.125000px;}
.yaf{bottom:722.445000px;}
.y1c{bottom:722.805000px;}
.y77{bottom:735.945000px;}
.ye1{bottom:736.485000px;}
.y54{bottom:737.025000px;}
.y1b{bottom:740.085000px;}
.yae{bottom:743.505000px;}
.y76{bottom:754.845000px;}
.ye0{bottom:755.385000px;}
.y53{bottom:756.105000px;}
.y1a{bottom:757.365000px;}
.yad{bottom:765.105000px;}
.ydf{bottom:774.465000px;}
.y19{bottom:774.645000px;}
.y52{bottom:775.005000px;}
.yac{bottom:786.525000px;}
.y18{bottom:791.925000px;}
.yde{bottom:793.365000px;}
.y51{bottom:794.085000px;}
.yab{bottom:807.945000px;}
.y17{bottom:809.025000px;}
.ydd{bottom:812.445000px;}
.y50{bottom:812.985000px;}
.y16{bottom:826.305000px;}
.yaa{bottom:829.365000px;}
.ydc{bottom:831.345000px;}
.y4f{bottom:831.885000px;}
.y15{bottom:843.585000px;}
.yda{bottom:847.365000px;}
.ya9{bottom:850.605000px;}
.y4e{bottom:850.965000px;}
.y14{bottom:860.865000px;}
.y4d{bottom:869.865000px;}
.ya8{bottom:872.250000px;}
.y13{bottom:878.190000px;}
.y4c{bottom:888.990000px;}
.yd9{bottom:889.530000px;}
.ya7{bottom:893.670000px;}
.y12{bottom:895.830000px;}
.y4b{bottom:907.890000px;}
.y11{bottom:914.370000px;}
.ya6{bottom:915.090000px;}
.y4a{bottom:926.790000px;}
.y10{bottom:931.650000px;}
.ya5{bottom:936.510000px;}
.y49{bottom:945.870000px;}
.yf{bottom:949.290000px;}
.ya4{bottom:957.930000px;}
.y48{bottom:964.770000px;}
.ye{bottom:968.190000px;}
.yd8{bottom:977.550000px;}
.ya3{bottom:979.350000px;}
.y47{bottom:983.850000px;}
.yd{bottom:987.630000px;}
.yd6{bottom:993.570000px;}
.ya2{bottom:1000.950000px;}
.y46{bottom:1002.750000px;}
.yc{bottom:1010.130000px;}
.y45{bottom:1021.650000px;}
.ya0{bottom:1022.370000px;}
.yb{bottom:1032.630000px;}
.yd4{bottom:1035.690000px;}
.y44{bottom:1040.730000px;}
.y9f{bottom:1043.790000px;}
.ya{bottom:1053.330000px;}
.y43{bottom:1059.630000px;}
.y9e{bottom:1065.210000px;}
.yd2{bottom:1066.650000px;}
.y9{bottom:1067.910000px;}
.y42{bottom:1078.710000px;}
.y8{bottom:1085.190000px;}
.y9d{bottom:1086.630000px;}
.y41{bottom:1097.610000px;}
.y7{bottom:1102.290000px;}
.y9c{bottom:1108.050000px;}
.ycf{bottom:1108.770000px;}
.y40{bottom:1116.690000px;}
.y6{bottom:1119.570000px;}
.y9b{bottom:1129.470000px;}
.y3f{bottom:1135.590000px;}
.y5{bottom:1136.850000px;}
.y3{bottom:1154.880000px;}
.y1{bottom:1171.620000px;}
.h13{height:18.900000px;}
.h17{height:20.340000px;}
.h16{height:20.520000px;}
.h18{height:20.556000px;}
.h14{height:20.700000px;}
.h15{height:20.736000px;}
.h2{height:23.220000px;}
.h1d{height:30.240000px;}
.he{height:33.683203px;}
.h7{height:34.036523px;}
.h12{height:34.560000px;}
.h1a{height:37.980000px;}
.h5{height:39.760312px;}
.h1e{height:41.220000px;}
.h1b{height:41.400000px;}
.h1c{height:41.436000px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h3{height:43.302656px;}
.hf{height:46.251562px;}
.ha{height:46.736719px;}
.h11{height:48.224531px;}
.hd{height:49.255313px;}
.h4{height:50.273438px;}
.h19{height:51.840000px;}
.hb{height:53.224453px;}
.h10{height:54.596250px;}
.h9{height:54.864844px;}
.h8{height:56.345625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.280000px;}
.wd{width:62.640000px;}
.wc{width:64.980000px;}
.w8{width:68.580000px;}
.w7{width:68.616000px;}
.w5{width:69.480000px;}
.wa{width:92.520000px;}
.we{width:112.536000px;}
.w6{width:164.370000px;}
.w9{width:178.590000px;}
.wb{width:258.375000px;}
.w3{width:618.225000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.400000px;}
.x4{left:7.920000px;}
.x17{left:14.220000px;}
.x2{left:16.020000px;}
.x19{left:17.640000px;}
.x15{left:21.060000px;}
.x18{left:26.820000px;}
.x16{left:60.300000px;}
.x1a{left:71.100000px;}
.x14{left:82.125000px;}
.x1{left:106.236000px;}
.xc{left:107.675987px;}
.x7{left:115.235987px;}
.x22{left:138.275987px;}
.x6{left:140.435987px;}
.x1c{left:150.330000px;}
.x21{left:159.329987px;}
.x3{left:168.510000px;}
.xe{left:170.310000px;}
.xa{left:228.629987px;}
.xd{left:230.249987px;}
.xf{left:240.510000px;}
.x1d{left:243.570000px;}
.x1b{left:248.249987px;}
.x8{left:277.634987px;}
.x9{left:281.594987px;}
.x10{left:405.615000px;}
.xb{left:420.194987px;}
.x5{left:446.474987px;}
.x11{left:474.945000px;}
.x1e{left:502.665000px;}
.x12{left:544.245000px;}
.x1f{left:568.365000px;}
.x20{left:631.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.837333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:52.751360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws7{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-4.316587pt;}
._e{margin-left:-3.108267pt;}
._4{margin-left:-2.190293pt;}
._1{margin-left:-1.114880pt;}
._0{width:0.903040pt;}
._9{width:2.260693pt;}
._b{width:3.877760pt;}
._a{width:4.801920pt;}
._8{width:5.790080pt;}
._7{width:7.277440pt;}
._c{width:8.871040pt;}
._d{width:10.039680pt;}
._17{width:11.791573pt;}
._14{width:12.714240pt;}
._15{width:13.620480pt;}
._1c{width:16.006400pt;}
._6{width:17.264000pt;}
._5{width:18.538880pt;}
._1d{width:19.834027pt;}
._1a{width:21.675733pt;}
._18{width:22.668800pt;}
._19{width:23.799253pt;}
._21{width:25.483307pt;}
._1f{width:28.851200pt;}
._20{width:30.028800pt;}
._11{width:32.501760pt;}
._12{width:33.714560pt;}
._1e{width:35.857920pt;}
._10{width:94.080000pt;}
._1b{width:99.200000pt;}
._f{width:149.661227pt;}
._16{width:189.706667pt;}
._3{width:274.826667pt;}
._2{width:977.572267pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.880000pt;}
.y95{bottom:3.200000pt;}
.ycc{bottom:3.360000pt;}
.yb0{bottom:4.480000pt;}
.ya1{bottom:4.640000pt;}
.y97{bottom:4.800000pt;}
.y2{bottom:5.440000pt;}
.yc0{bottom:5.920000pt;}
.yd1{bottom:6.240000pt;}
.yd3{bottom:6.400000pt;}
.yd5{bottom:13.280000pt;}
.y92{bottom:18.240000pt;}
.ycb{bottom:20.160000pt;}
.yd7{bottom:23.040000pt;}
.yce{bottom:23.194667pt;}
.yd0{bottom:23.200000pt;}
.ydb{bottom:23.240000pt;}
.yc2{bottom:33.600000pt;}
.y4{bottom:62.592000pt;}
.y101{bottom:97.952000pt;}
.y75{bottom:98.592000pt;}
.y9a{bottom:104.032000pt;}
.y3e{bottom:107.712000pt;}
.y100{bottom:114.912000pt;}
.y74{bottom:115.392000pt;}
.ycd{bottom:119.712000pt;}
.y99{bottom:123.072000pt;}
.y3d{bottom:124.672000pt;}
.yff{bottom:131.712000pt;}
.y73{bottom:132.352000pt;}
.y3c{bottom:141.466667pt;}
.y98{bottom:142.106667pt;}
.yfe{bottom:148.666667pt;}
.y72{bottom:149.146667pt;}
.yca{bottom:157.146667pt;}
.y3b{bottom:158.426667pt;}
.y96{bottom:161.306667pt;}
.yfd{bottom:165.466667pt;}
.y71{bottom:166.106667pt;}
.y3a{bottom:175.226667pt;}
.y94{bottom:180.346667pt;}
.yfc{bottom:182.266667pt;}
.y70{bottom:182.906667pt;}
.y39{bottom:192.026667pt;}
.yc9{bottom:194.906667pt;}
.y91{bottom:197.786667pt;}
.yfb{bottom:199.226667pt;}
.y6f{bottom:199.706667pt;}
.y38{bottom:208.986667pt;}
.yc8{bottom:211.706667pt;}
.yfa{bottom:216.026667pt;}
.y6e{bottom:216.666667pt;}
.y37{bottom:225.786667pt;}
.yc7{bottom:228.506667pt;}
.y90{bottom:232.506667pt;}
.yf9{bottom:232.986667pt;}
.y6d{bottom:233.466667pt;}
.y36{bottom:242.746667pt;}
.yc6{bottom:245.466667pt;}
.y8f{bottom:249.306667pt;}
.yf8{bottom:249.786667pt;}
.y6c{bottom:250.426667pt;}
.y35{bottom:259.546667pt;}
.yc5{bottom:262.266667pt;}
.y8e{bottom:266.106667pt;}
.yf7{bottom:266.746667pt;}
.y6b{bottom:267.226667pt;}
.y34{bottom:276.346667pt;}
.yc4{bottom:279.226667pt;}
.y8d{bottom:283.066667pt;}
.yf6{bottom:283.546667pt;}
.y6a{bottom:284.026667pt;}
.y33{bottom:293.306667pt;}
.yc3{bottom:296.026667pt;}
.y8c{bottom:299.906667pt;}
.yf5{bottom:300.386667pt;}
.y69{bottom:301.026667pt;}
.y32{bottom:310.146667pt;}
.yc1{bottom:310.306667pt;}
.y8b{bottom:316.866667pt;}
.yf4{bottom:317.346667pt;}
.y68{bottom:317.826667pt;}
.y31{bottom:326.626667pt;}
.y8a{bottom:333.666667pt;}
.yf3{bottom:334.146667pt;}
.y67{bottom:334.786667pt;}
.y30{bottom:341.346667pt;}
.y89{bottom:350.466667pt;}
.yf2{bottom:351.106667pt;}
.y66{bottom:351.586667pt;}
.y2f{bottom:353.666667pt;}
.ybf{bottom:357.026667pt;}
.y2e{bottom:366.466667pt;}
.y88{bottom:367.426667pt;}
.yf1{bottom:367.906667pt;}
.y65{bottom:368.386667pt;}
.ybe{bottom:376.066667pt;}
.y2d{bottom:381.826667pt;}
.y87{bottom:384.226667pt;}
.yf0{bottom:384.706667pt;}
.y64{bottom:385.346667pt;}
.ybd{bottom:394.946667pt;}
.y2c{bottom:397.186667pt;}
.y86{bottom:401.186667pt;}
.yef{bottom:401.666667pt;}
.y63{bottom:402.146667pt;}
.y2b{bottom:412.546667pt;}
.ybc{bottom:413.986667pt;}
.y85{bottom:417.986667pt;}
.yee{bottom:418.466667pt;}
.y62{bottom:419.106667pt;}
.y2a{bottom:427.906667pt;}
.ybb{bottom:433.026667pt;}
.y84{bottom:434.786667pt;}
.yed{bottom:435.426667pt;}
.y61{bottom:435.906667pt;}
.y29{bottom:443.266667pt;}
.y83{bottom:451.746667pt;}
.yba{bottom:452.066667pt;}
.yec{bottom:452.226667pt;}
.y60{bottom:452.706667pt;}
.y28{bottom:458.466667pt;}
.y82{bottom:468.546667pt;}
.yeb{bottom:469.026667pt;}
.y5f{bottom:469.666667pt;}
.yb9{bottom:470.946667pt;}
.y27{bottom:473.826667pt;}
.y81{bottom:485.506667pt;}
.yea{bottom:485.986667pt;}
.y5e{bottom:486.466667pt;}
.y26{bottom:489.186667pt;}
.yb8{bottom:489.986667pt;}
.y80{bottom:502.306667pt;}
.ye9{bottom:502.786667pt;}
.y5d{bottom:503.426667pt;}
.y25{bottom:504.546667pt;}
.yb7{bottom:509.026667pt;}
.y7f{bottom:519.266667pt;}
.ye8{bottom:519.746667pt;}
.y24{bottom:519.906667pt;}
.y5c{bottom:520.226667pt;}
.yb6{bottom:528.066667pt;}
.y23{bottom:535.266667pt;}
.y7e{bottom:536.066667pt;}
.ye7{bottom:536.573333pt;}
.y5b{bottom:537.213333pt;}
.yb5{bottom:546.973333pt;}
.y22{bottom:550.493333pt;}
.y7d{bottom:552.893333pt;}
.ye6{bottom:553.373333pt;}
.y5a{bottom:554.013333pt;}
.y21{bottom:565.853333pt;}
.yb4{bottom:566.013333pt;}
.y7c{bottom:569.853333pt;}
.ye5{bottom:570.333333pt;}
.y59{bottom:570.813333pt;}
.y20{bottom:581.213333pt;}
.yb3{bottom:585.053333pt;}
.y7b{bottom:586.653333pt;}
.ye4{bottom:587.133333pt;}
.y58{bottom:587.773333pt;}
.y1f{bottom:596.573333pt;}
.y7a{bottom:603.613333pt;}
.yb2{bottom:604.093333pt;}
.y57{bottom:604.573333pt;}
.y1e{bottom:611.933333pt;}
.y79{bottom:620.413333pt;}
.ye3{bottom:620.893333pt;}
.y56{bottom:621.533333pt;}
.yb1{bottom:622.973333pt;}
.y1d{bottom:627.133333pt;}
.y78{bottom:637.213333pt;}
.ye2{bottom:637.693333pt;}
.y55{bottom:638.333333pt;}
.yaf{bottom:642.173333pt;}
.y1c{bottom:642.493333pt;}
.y77{bottom:654.173333pt;}
.ye1{bottom:654.653333pt;}
.y54{bottom:655.133333pt;}
.y1b{bottom:657.853333pt;}
.yae{bottom:660.893333pt;}
.y76{bottom:670.973333pt;}
.ye0{bottom:671.453333pt;}
.y53{bottom:672.093333pt;}
.y1a{bottom:673.213333pt;}
.yad{bottom:680.093333pt;}
.ydf{bottom:688.413333pt;}
.y19{bottom:688.573333pt;}
.y52{bottom:688.893333pt;}
.yac{bottom:699.133333pt;}
.y18{bottom:703.933333pt;}
.yde{bottom:705.213333pt;}
.y51{bottom:705.853333pt;}
.yab{bottom:718.173333pt;}
.y17{bottom:719.133333pt;}
.ydd{bottom:722.173333pt;}
.y50{bottom:722.653333pt;}
.y16{bottom:734.493333pt;}
.yaa{bottom:737.213333pt;}
.ydc{bottom:738.973333pt;}
.y4f{bottom:739.453333pt;}
.y15{bottom:749.853333pt;}
.yda{bottom:753.213333pt;}
.ya9{bottom:756.093333pt;}
.y4e{bottom:756.413333pt;}
.y14{bottom:765.213333pt;}
.y4d{bottom:773.213333pt;}
.ya8{bottom:775.333333pt;}
.y13{bottom:780.613333pt;}
.y4c{bottom:790.213333pt;}
.yd9{bottom:790.693333pt;}
.ya7{bottom:794.373333pt;}
.y12{bottom:796.293333pt;}
.y4b{bottom:807.013333pt;}
.y11{bottom:812.773333pt;}
.ya6{bottom:813.413333pt;}
.y4a{bottom:823.813333pt;}
.y10{bottom:828.133333pt;}
.ya5{bottom:832.453333pt;}
.y49{bottom:840.773333pt;}
.yf{bottom:843.813333pt;}
.ya4{bottom:851.493333pt;}
.y48{bottom:857.573333pt;}
.ye{bottom:860.613333pt;}
.yd8{bottom:868.933333pt;}
.ya3{bottom:870.533333pt;}
.y47{bottom:874.533333pt;}
.yd{bottom:877.893333pt;}
.yd6{bottom:883.173333pt;}
.ya2{bottom:889.733333pt;}
.y46{bottom:891.333333pt;}
.yc{bottom:897.893333pt;}
.y45{bottom:908.133333pt;}
.ya0{bottom:908.773333pt;}
.yb{bottom:917.893333pt;}
.yd4{bottom:920.613333pt;}
.y44{bottom:925.093333pt;}
.y9f{bottom:927.813333pt;}
.ya{bottom:936.293333pt;}
.y43{bottom:941.893333pt;}
.y9e{bottom:946.853333pt;}
.yd2{bottom:948.133333pt;}
.y9{bottom:949.253333pt;}
.y42{bottom:958.853333pt;}
.y8{bottom:964.613333pt;}
.y9d{bottom:965.893333pt;}
.y41{bottom:975.653333pt;}
.y7{bottom:979.813333pt;}
.y9c{bottom:984.933333pt;}
.ycf{bottom:985.573333pt;}
.y40{bottom:992.613333pt;}
.y6{bottom:995.173333pt;}
.y9b{bottom:1003.973333pt;}
.y3f{bottom:1009.413333pt;}
.y5{bottom:1010.533333pt;}
.y3{bottom:1026.560000pt;}
.y1{bottom:1041.440000pt;}
.h13{height:16.800000pt;}
.h17{height:18.080000pt;}
.h16{height:18.240000pt;}
.h18{height:18.272000pt;}
.h14{height:18.400000pt;}
.h15{height:18.432000pt;}
.h2{height:20.640000pt;}
.h1d{height:26.880000pt;}
.he{height:29.940625pt;}
.h7{height:30.254687pt;}
.h12{height:30.720000pt;}
.h1a{height:33.760000pt;}
.h5{height:35.342500pt;}
.h1e{height:36.640000pt;}
.h1b{height:36.800000pt;}
.h1c{height:36.832000pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h3{height:38.491250pt;}
.hf{height:41.112500pt;}
.ha{height:41.543750pt;}
.h11{height:42.866250pt;}
.hd{height:43.782500pt;}
.h4{height:44.687500pt;}
.h19{height:46.080000pt;}
.hb{height:47.310625pt;}
.h10{height:48.530000pt;}
.h9{height:48.768750pt;}
.h8{height:50.085000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.360000pt;}
.wd{width:55.680000pt;}
.wc{width:57.760000pt;}
.w8{width:60.960000pt;}
.w7{width:60.992000pt;}
.w5{width:61.760000pt;}
.wa{width:82.240000pt;}
.we{width:100.032000pt;}
.w6{width:146.106667pt;}
.w9{width:158.746667pt;}
.wb{width:229.666667pt;}
.w3{width:549.533333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.800000pt;}
.x4{left:7.040000pt;}
.x17{left:12.640000pt;}
.x2{left:14.240000pt;}
.x19{left:15.680000pt;}
.x15{left:18.720000pt;}
.x18{left:23.840000pt;}
.x16{left:53.600000pt;}
.x1a{left:63.200000pt;}
.x14{left:73.000000pt;}
.x1{left:94.432000pt;}
.xc{left:95.711988pt;}
.x7{left:102.431988pt;}
.x22{left:122.911988pt;}
.x6{left:124.831988pt;}
.x1c{left:133.626667pt;}
.x21{left:141.626655pt;}
.x3{left:149.786667pt;}
.xe{left:151.386667pt;}
.xa{left:203.226655pt;}
.xd{left:204.666655pt;}
.xf{left:213.786667pt;}
.x1d{left:216.506667pt;}
.x1b{left:220.666655pt;}
.x8{left:246.786655pt;}
.x9{left:250.306655pt;}
.x10{left:360.546667pt;}
.xb{left:373.506655pt;}
.x5{left:396.866655pt;}
.x11{left:422.173333pt;}
.x1e{left:446.813333pt;}
.x12{left:483.773333pt;}
.x1f{left:505.213333pt;}
.x20{left:561.533333pt;}
}




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