
    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_50c5f3ff8d141859175515d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b46a58a50aafb44ea4e4e736.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_af16bbcbde0c389877f759c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_571ff4d99fd1a3a6861f733d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4a24a6378f86c9d7f4713cee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_ea1dd1e100a1a3115feab38d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3237fc529d4e53983e3849d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-3.600000px;}
.ls11{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144720px;}
.lsf{letter-spacing:0.178800px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.880000px;}
.ls14{letter-spacing:4.320000px;}
.lsa{letter-spacing:7.920000px;}
.lsc{letter-spacing:39.905280px;}
.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;}
}
.wsf{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.450800px;}
.wsa{word-spacing:-16.407600px;}
.wsd{word-spacing:-16.297800px;}
.wse{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.618800px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:-10.080000px;}
.ws6{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._12{margin-left:-4.785360px;}
._b{margin-left:-3.759600px;}
._8{margin-left:-2.594640px;}
._0{margin-left:-1.128960px;}
._2{width:1.279920px;}
._3{width:2.425440px;}
._4{width:4.183200px;}
._c{width:6.095520px;}
._7{width:7.567920px;}
._5{width:8.820000px;}
._6{width:10.608960px;}
._a{width:11.609520px;}
._f{width:13.524480px;}
._e{width:14.771520px;}
._9{width:16.434000px;}
._19{width:17.818560px;}
._11{width:20.070720px;}
._14{width:21.660480px;}
._1a{width:23.226240px;}
._17{width:24.511680px;}
._16{width:25.966080px;}
._18{width:27.013200px;}
._13{width:28.152000px;}
._1b{width:32.060160px;}
._15{width:38.021760px;}
._d{width:91.698240px;}
._1{width:777.591120px;}
._10{width:973.596000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y67{bottom:6.300000px;}
.y71{bottom:6.345000px;}
.y6d{bottom:6.480000px;}
.y2{bottom:7.920000px;}
.y78{bottom:9.540000px;}
.y7a{bottom:9.720000px;}
.y7e{bottom:9.750000px;}
.y6{bottom:16.740000px;}
.y69{bottom:28.080000px;}
.y95{bottom:28.110000px;}
.y66{bottom:28.260000px;}
.y6c{bottom:28.296000px;}
.y5{bottom:38.700000px;}
.y65{bottom:50.040000px;}
.y4{bottom:58.320000px;}
.y6b{bottom:121.500000px;}
.y94{bottom:123.120000px;}
.yc2{bottom:134.280000px;}
.ycc{bottom:135.756000px;}
.y3e{bottom:149.616000px;}
.yc1{bottom:156.090000px;}
.ycb{bottom:157.530000px;}
.y6a{bottom:165.990000px;}
.y93{bottom:167.430000px;}
.y3d{bottom:171.390000px;}
.yc0{bottom:177.870000px;}
.yca{bottom:179.310000px;}
.y3c{bottom:193.170000px;}
.y92{bottom:196.410000px;}
.ybf{bottom:199.650000px;}
.yc9{bottom:201.270000px;}
.y68{bottom:210.450000px;}
.y3b{bottom:214.950000px;}
.y91{bottom:218.190000px;}
.ybe{bottom:221.430000px;}
.yc8{bottom:223.050000px;}
.y3a{bottom:236.730000px;}
.y90{bottom:240.150000px;}
.ybd{bottom:243.390000px;}
.yc7{bottom:244.830000px;}
.y64{bottom:254.730000px;}
.y39{bottom:258.690000px;}
.y8f{bottom:261.930000px;}
.ybc{bottom:265.170000px;}
.yc6{bottom:266.610000px;}
.y38{bottom:280.470000px;}
.y8e{bottom:283.710000px;}
.ybb{bottom:286.950000px;}
.yc5{bottom:288.390000px;}
.y37{bottom:299.550000px;}
.y8d{bottom:305.490000px;}
.yba{bottom:308.730000px;}
.yc4{bottom:310.350000px;}
.y36{bottom:318.630000px;}
.y8c{bottom:327.270000px;}
.yb9{bottom:330.690000px;}
.yc3{bottom:332.130000px;}
.y35{bottom:336.450000px;}
.y8b{bottom:349.230000px;}
.y34{bottom:350.130000px;}
.yb8{bottom:352.470000px;}
.y63{bottom:353.910000px;}
.y33{bottom:365.070000px;}
.y8a{bottom:371.010000px;}
.yb7{bottom:374.250000px;}
.y62{bottom:375.690000px;}
.y32{bottom:383.610000px;}
.y89{bottom:392.835000px;}
.yb6{bottom:396.075000px;}
.y61{bottom:397.695000px;}
.y31{bottom:400.935000px;}
.y88{bottom:414.615000px;}
.yb5{bottom:417.855000px;}
.y30{bottom:418.215000px;}
.y60{bottom:419.475000px;}
.y2f{bottom:435.495000px;}
.y87{bottom:436.575000px;}
.yb4{bottom:439.815000px;}
.y5f{bottom:441.255000px;}
.y2e{bottom:452.775000px;}
.y86{bottom:458.355000px;}
.yb3{bottom:461.595000px;}
.y5e{bottom:463.035000px;}
.y2d{bottom:470.055000px;}
.y85{bottom:480.135000px;}
.yb2{bottom:483.375000px;}
.y5d{bottom:484.815000px;}
.y2c{bottom:487.155000px;}
.y84{bottom:501.915000px;}
.y2b{bottom:504.435000px;}
.yb1{bottom:505.155000px;}
.y5c{bottom:506.775000px;}
.y2a{bottom:521.715000px;}
.y83{bottom:523.695000px;}
.yb0{bottom:527.115000px;}
.y5b{bottom:528.555000px;}
.y29{bottom:538.995000px;}
.y82{bottom:545.655000px;}
.yaf{bottom:548.895000px;}
.y5a{bottom:550.335000px;}
.y28{bottom:556.275000px;}
.y81{bottom:567.435000px;}
.yae{bottom:570.675000px;}
.y59{bottom:572.115000px;}
.y27{bottom:573.555000px;}
.y80{bottom:589.215000px;}
.y26{bottom:590.655000px;}
.yad{bottom:592.455000px;}
.y58{bottom:594.075000px;}
.y7f{bottom:605.415000px;}
.y25{bottom:607.935000px;}
.yac{bottom:614.235000px;}
.y57{bottom:615.855000px;}
.y24{bottom:625.215000px;}
.y7d{bottom:631.335000px;}
.yab{bottom:636.195000px;}
.y56{bottom:637.635000px;}
.y23{bottom:642.525000px;}
.y7c{bottom:657.285000px;}
.yaa{bottom:658.005000px;}
.y55{bottom:659.445000px;}
.y22{bottom:659.805000px;}
.y21{bottom:676.905000px;}
.ya9{bottom:679.785000px;}
.y54{bottom:681.225000px;}
.y7b{bottom:683.025000px;}
.y20{bottom:694.185000px;}
.ya8{bottom:701.565000px;}
.y53{bottom:703.185000px;}
.y79{bottom:708.945000px;}
.y1f{bottom:711.465000px;}
.ya7{bottom:723.345000px;}
.y52{bottom:724.965000px;}
.y1e{bottom:728.745000px;}
.y77{bottom:734.145000px;}
.ya6{bottom:745.305000px;}
.y1d{bottom:746.025000px;}
.y51{bottom:746.745000px;}
.y1c{bottom:763.305000px;}
.y76{bottom:766.365000px;}
.ya5{bottom:767.085000px;}
.y50{bottom:768.525000px;}
.y1b{bottom:780.405000px;}
.y75{bottom:788.145000px;}
.ya4{bottom:788.865000px;}
.y4f{bottom:790.305000px;}
.y1a{bottom:797.685000px;}
.y74{bottom:809.925000px;}
.ya3{bottom:810.645000px;}
.y4e{bottom:812.265000px;}
.y19{bottom:814.965000px;}
.y73{bottom:826.125000px;}
.y18{bottom:832.245000px;}
.ya2{bottom:832.605000px;}
.y4d{bottom:834.045000px;}
.y17{bottom:849.525000px;}
.ya1{bottom:854.385000px;}
.y4c{bottom:855.825000px;}
.y16{bottom:866.085000px;}
.y72{bottom:869.865000px;}
.ya0{bottom:876.165000px;}
.y4b{bottom:877.605000px;}
.y15{bottom:880.485000px;}
.y70{bottom:891.645000px;}
.y9f{bottom:897.990000px;}
.y4a{bottom:899.610000px;}
.y14{bottom:903.030000px;}
.y6f{bottom:913.470000px;}
.y9e{bottom:919.770000px;}
.y13{bottom:920.310000px;}
.y49{bottom:921.390000px;}
.y12{bottom:932.730000px;}
.y6e{bottom:936.150000px;}
.y9d{bottom:941.730000px;}
.y48{bottom:943.170000px;}
.y11{bottom:950.910000px;}
.y9c{bottom:963.510000px;}
.y47{bottom:964.950000px;}
.y10{bottom:967.290000px;}
.y9b{bottom:985.290000px;}
.yf{bottom:986.190000px;}
.y46{bottom:986.730000px;}
.ye{bottom:1005.630000px;}
.y9a{bottom:1007.070000px;}
.y45{bottom:1008.690000px;}
.yd{bottom:1028.130000px;}
.y99{bottom:1029.030000px;}
.y44{bottom:1030.470000px;}
.yc{bottom:1050.450000px;}
.y98{bottom:1050.810000px;}
.y43{bottom:1052.250000px;}
.y97{bottom:1067.010000px;}
.yb{bottom:1072.050000px;}
.y42{bottom:1074.030000px;}
.ya{bottom:1089.330000px;}
.y41{bottom:1095.990000px;}
.y9{bottom:1106.610000px;}
.y96{bottom:1110.570000px;}
.y40{bottom:1117.770000px;}
.y8{bottom:1123.710000px;}
.y3f{bottom:1139.550000px;}
.y7{bottom:1140.990000px;}
.y3{bottom:1164.420000px;}
.y1{bottom:1181.520000px;}
.h15{height:21.780000px;}
.h16{height:21.816000px;}
.h1c{height:21.960000px;}
.h18{height:25.020000px;}
.h19{height:25.200000px;}
.h1a{height:25.236000px;}
.hb{height:27.147656px;}
.h2{height:28.080000px;}
.hd{height:33.683203px;}
.hf{height:34.036523px;}
.h9{height:36.597656px;}
.h5{height:36.768867px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h13{height:43.560000px;}
.h1d{height:43.596000px;}
.h17{height:43.740000px;}
.h14{height:43.776000px;}
.he{height:45.549492px;}
.h11{height:46.251562px;}
.h10{height:46.736719px;}
.h1b{height:48.224531px;}
.h8{height:50.488594px;}
.h1e{height:52.918594px;}
.h1f{height:53.038594px;}
.ha{height:53.224453px;}
.h3{height:54.421875px;}
.h7{height:54.864844px;}
.h12{height:65.520000px;}
.h4{height:71.613281px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w11{width:42.300000px;}
.wc{width:43.560000px;}
.w2{width:53.100000px;}
.w15{width:53.280000px;}
.we{width:55.620000px;}
.w8{width:63.000000px;}
.wd{width:63.396000px;}
.w18{width:66.240000px;}
.w19{width:66.816000px;}
.w7{width:73.800000px;}
.w1b{width:75.276000px;}
.w16{width:77.796000px;}
.w1a{width:79.740000px;}
.w6{width:81.756000px;}
.w14{width:89.316000px;}
.wa{width:92.556000px;}
.w17{width:102.456000px;}
.wb{width:103.860000px;}
.w10{width:105.120000px;}
.wf{width:105.876000px;}
.w5{width:126.936000px;}
.w9{width:137.556000px;}
.w13{width:138.240000px;}
.w12{width:358.635000px;}
.w3{width:606.165000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:8.280000px;}
.x2f{left:10.620000px;}
.x19{left:12.240000px;}
.x16{left:13.860000px;}
.x33{left:15.300000px;}
.x13{left:16.920000px;}
.x1a{left:19.080000px;}
.x22{left:21.060000px;}
.x2a{left:22.860000px;}
.x17{left:24.480000px;}
.x38{left:26.100000px;}
.x14{left:28.440000px;}
.x37{left:30.060000px;}
.x23{left:31.500000px;}
.x1f{left:35.850000px;}
.x30{left:37.800000px;}
.x1d{left:42.165000px;}
.x2d{left:44.100000px;}
.x20{left:46.290000px;}
.x21{left:52.245000px;}
.x1c{left:56.385000px;}
.x11{left:63.405000px;}
.x1{left:108.036000px;}
.x5{left:119.915987px;}
.x7{left:130.175987px;}
.xf{left:135.035987px;}
.xb{left:154.649987px;}
.x3{left:161.130000px;}
.x3d{left:182.549987px;}
.x10{left:230.070000px;}
.x39{left:251.130000px;}
.x31{left:257.249987px;}
.x27{left:260.175000px;}
.x9{left:261.974987px;}
.xa{left:265.574987px;}
.x32{left:267.015000px;}
.xc{left:275.294987px;}
.x25{left:318.494987px;}
.x24{left:320.114987px;}
.x26{left:328.214987px;}
.x3a{left:353.595000px;}
.x12{left:357.735000px;}
.x28{left:364.035000px;}
.x2e{left:365.295000px;}
.x6{left:373.934987px;}
.x8{left:403.094987px;}
.x34{left:405.255000px;}
.x29{left:407.595000px;}
.xe{left:418.394987px;}
.xd{left:420.014987px;}
.x1e{left:421.455000px;}
.x15{left:440.205000px;}
.x4{left:446.324987px;}
.x2b{left:470.985000px;}
.x3b{left:486.645000px;}
.x35{left:494.565000px;}
.x18{left:514.725000px;}
.x2c{left:526.605000px;}
.x36{left:547.845000px;}
.x3c{left:566.385000px;}
.x1b{left:578.445000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-3.200000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128640pt;}
.lsf{letter-spacing:0.158933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.840000pt;}
.lsa{letter-spacing:7.040000pt;}
.lsc{letter-spacing:35.471360pt;}
.wsf{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.622933pt;}
.wsa{word-spacing:-14.584533pt;}
.wsd{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.438933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.960000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._12{margin-left:-4.253653pt;}
._b{margin-left:-3.341867pt;}
._8{margin-left:-2.306347pt;}
._0{margin-left:-1.003520pt;}
._2{width:1.137707pt;}
._3{width:2.155947pt;}
._4{width:3.718400pt;}
._c{width:5.418240pt;}
._7{width:6.727040pt;}
._5{width:7.840000pt;}
._6{width:9.430187pt;}
._a{width:10.319573pt;}
._f{width:12.021760pt;}
._e{width:13.130240pt;}
._9{width:14.608000pt;}
._19{width:15.838720pt;}
._11{width:17.840640pt;}
._14{width:19.253760pt;}
._1a{width:20.645547pt;}
._17{width:21.788160pt;}
._16{width:23.080960pt;}
._18{width:24.011733pt;}
._13{width:25.024000pt;}
._1b{width:28.497920pt;}
._15{width:33.797120pt;}
._d{width:81.509547pt;}
._1{width:691.192107pt;}
._10{width:865.418667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:5.600000pt;}
.y71{bottom:5.640000pt;}
.y6d{bottom:5.760000pt;}
.y2{bottom:7.040000pt;}
.y78{bottom:8.480000pt;}
.y7a{bottom:8.640000pt;}
.y7e{bottom:8.666667pt;}
.y6{bottom:14.880000pt;}
.y69{bottom:24.960000pt;}
.y95{bottom:24.986667pt;}
.y66{bottom:25.120000pt;}
.y6c{bottom:25.152000pt;}
.y5{bottom:34.400000pt;}
.y65{bottom:44.480000pt;}
.y4{bottom:51.840000pt;}
.y6b{bottom:108.000000pt;}
.y94{bottom:109.440000pt;}
.yc2{bottom:119.360000pt;}
.ycc{bottom:120.672000pt;}
.y3e{bottom:132.992000pt;}
.yc1{bottom:138.746667pt;}
.ycb{bottom:140.026667pt;}
.y6a{bottom:147.546667pt;}
.y93{bottom:148.826667pt;}
.y3d{bottom:152.346667pt;}
.yc0{bottom:158.106667pt;}
.yca{bottom:159.386667pt;}
.y3c{bottom:171.706667pt;}
.y92{bottom:174.586667pt;}
.ybf{bottom:177.466667pt;}
.yc9{bottom:178.906667pt;}
.y68{bottom:187.066667pt;}
.y3b{bottom:191.066667pt;}
.y91{bottom:193.946667pt;}
.ybe{bottom:196.826667pt;}
.yc8{bottom:198.266667pt;}
.y3a{bottom:210.426667pt;}
.y90{bottom:213.466667pt;}
.ybd{bottom:216.346667pt;}
.yc7{bottom:217.626667pt;}
.y64{bottom:226.426667pt;}
.y39{bottom:229.946667pt;}
.y8f{bottom:232.826667pt;}
.ybc{bottom:235.706667pt;}
.yc6{bottom:236.986667pt;}
.y38{bottom:249.306667pt;}
.y8e{bottom:252.186667pt;}
.ybb{bottom:255.066667pt;}
.yc5{bottom:256.346667pt;}
.y37{bottom:266.266667pt;}
.y8d{bottom:271.546667pt;}
.yba{bottom:274.426667pt;}
.yc4{bottom:275.866667pt;}
.y36{bottom:283.226667pt;}
.y8c{bottom:290.906667pt;}
.yb9{bottom:293.946667pt;}
.yc3{bottom:295.226667pt;}
.y35{bottom:299.066667pt;}
.y8b{bottom:310.426667pt;}
.y34{bottom:311.226667pt;}
.yb8{bottom:313.306667pt;}
.y63{bottom:314.586667pt;}
.y33{bottom:324.506667pt;}
.y8a{bottom:329.786667pt;}
.yb7{bottom:332.666667pt;}
.y62{bottom:333.946667pt;}
.y32{bottom:340.986667pt;}
.y89{bottom:349.186667pt;}
.yb6{bottom:352.066667pt;}
.y61{bottom:353.506667pt;}
.y31{bottom:356.386667pt;}
.y88{bottom:368.546667pt;}
.yb5{bottom:371.426667pt;}
.y30{bottom:371.746667pt;}
.y60{bottom:372.866667pt;}
.y2f{bottom:387.106667pt;}
.y87{bottom:388.066667pt;}
.yb4{bottom:390.946667pt;}
.y5f{bottom:392.226667pt;}
.y2e{bottom:402.466667pt;}
.y86{bottom:407.426667pt;}
.yb3{bottom:410.306667pt;}
.y5e{bottom:411.586667pt;}
.y2d{bottom:417.826667pt;}
.y85{bottom:426.786667pt;}
.yb2{bottom:429.666667pt;}
.y5d{bottom:430.946667pt;}
.y2c{bottom:433.026667pt;}
.y84{bottom:446.146667pt;}
.y2b{bottom:448.386667pt;}
.yb1{bottom:449.026667pt;}
.y5c{bottom:450.466667pt;}
.y2a{bottom:463.746667pt;}
.y83{bottom:465.506667pt;}
.yb0{bottom:468.546667pt;}
.y5b{bottom:469.826667pt;}
.y29{bottom:479.106667pt;}
.y82{bottom:485.026667pt;}
.yaf{bottom:487.906667pt;}
.y5a{bottom:489.186667pt;}
.y28{bottom:494.466667pt;}
.y81{bottom:504.386667pt;}
.yae{bottom:507.266667pt;}
.y59{bottom:508.546667pt;}
.y27{bottom:509.826667pt;}
.y80{bottom:523.746667pt;}
.y26{bottom:525.026667pt;}
.yad{bottom:526.626667pt;}
.y58{bottom:528.066667pt;}
.y7f{bottom:538.146667pt;}
.y25{bottom:540.386667pt;}
.yac{bottom:545.986667pt;}
.y57{bottom:547.426667pt;}
.y24{bottom:555.746667pt;}
.y7d{bottom:561.186667pt;}
.yab{bottom:565.506667pt;}
.y56{bottom:566.786667pt;}
.y23{bottom:571.133333pt;}
.y7c{bottom:584.253333pt;}
.yaa{bottom:584.893333pt;}
.y55{bottom:586.173333pt;}
.y22{bottom:586.493333pt;}
.y21{bottom:601.693333pt;}
.ya9{bottom:604.253333pt;}
.y54{bottom:605.533333pt;}
.y7b{bottom:607.133333pt;}
.y20{bottom:617.053333pt;}
.ya8{bottom:623.613333pt;}
.y53{bottom:625.053333pt;}
.y79{bottom:630.173333pt;}
.y1f{bottom:632.413333pt;}
.ya7{bottom:642.973333pt;}
.y52{bottom:644.413333pt;}
.y1e{bottom:647.773333pt;}
.y77{bottom:652.573333pt;}
.ya6{bottom:662.493333pt;}
.y1d{bottom:663.133333pt;}
.y51{bottom:663.773333pt;}
.y1c{bottom:678.493333pt;}
.y76{bottom:681.213333pt;}
.ya5{bottom:681.853333pt;}
.y50{bottom:683.133333pt;}
.y1b{bottom:693.693333pt;}
.y75{bottom:700.573333pt;}
.ya4{bottom:701.213333pt;}
.y4f{bottom:702.493333pt;}
.y1a{bottom:709.053333pt;}
.y74{bottom:719.933333pt;}
.ya3{bottom:720.573333pt;}
.y4e{bottom:722.013333pt;}
.y19{bottom:724.413333pt;}
.y73{bottom:734.333333pt;}
.y18{bottom:739.773333pt;}
.ya2{bottom:740.093333pt;}
.y4d{bottom:741.373333pt;}
.y17{bottom:755.133333pt;}
.ya1{bottom:759.453333pt;}
.y4c{bottom:760.733333pt;}
.y16{bottom:769.853333pt;}
.y72{bottom:773.213333pt;}
.ya0{bottom:778.813333pt;}
.y4b{bottom:780.093333pt;}
.y15{bottom:782.653333pt;}
.y70{bottom:792.573333pt;}
.y9f{bottom:798.213333pt;}
.y4a{bottom:799.653333pt;}
.y14{bottom:802.693333pt;}
.y6f{bottom:811.973333pt;}
.y9e{bottom:817.573333pt;}
.y13{bottom:818.053333pt;}
.y49{bottom:819.013333pt;}
.y12{bottom:829.093333pt;}
.y6e{bottom:832.133333pt;}
.y9d{bottom:837.093333pt;}
.y48{bottom:838.373333pt;}
.y11{bottom:845.253333pt;}
.y9c{bottom:856.453333pt;}
.y47{bottom:857.733333pt;}
.y10{bottom:859.813333pt;}
.y9b{bottom:875.813333pt;}
.yf{bottom:876.613333pt;}
.y46{bottom:877.093333pt;}
.ye{bottom:893.893333pt;}
.y9a{bottom:895.173333pt;}
.y45{bottom:896.613333pt;}
.yd{bottom:913.893333pt;}
.y99{bottom:914.693333pt;}
.y44{bottom:915.973333pt;}
.yc{bottom:933.733333pt;}
.y98{bottom:934.053333pt;}
.y43{bottom:935.333333pt;}
.y97{bottom:948.453333pt;}
.yb{bottom:952.933333pt;}
.y42{bottom:954.693333pt;}
.ya{bottom:968.293333pt;}
.y41{bottom:974.213333pt;}
.y9{bottom:983.653333pt;}
.y96{bottom:987.173333pt;}
.y40{bottom:993.573333pt;}
.y8{bottom:998.853333pt;}
.y3f{bottom:1012.933333pt;}
.y7{bottom:1014.213333pt;}
.y3{bottom:1035.040000pt;}
.y1{bottom:1050.240000pt;}
.h15{height:19.360000pt;}
.h16{height:19.392000pt;}
.h1c{height:19.520000pt;}
.h18{height:22.240000pt;}
.h19{height:22.400000pt;}
.h1a{height:22.432000pt;}
.hb{height:24.131250pt;}
.h2{height:24.960000pt;}
.hd{height:29.940625pt;}
.hf{height:30.254687pt;}
.h9{height:32.531250pt;}
.h5{height:32.683437pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h13{height:38.720000pt;}
.h1d{height:38.752000pt;}
.h17{height:38.880000pt;}
.h14{height:38.912000pt;}
.he{height:40.488438pt;}
.h11{height:41.112500pt;}
.h10{height:41.543750pt;}
.h1b{height:42.866250pt;}
.h8{height:44.878750pt;}
.h1e{height:47.038750pt;}
.h1f{height:47.145417pt;}
.ha{height:47.310625pt;}
.h3{height:48.375000pt;}
.h7{height:48.768750pt;}
.h12{height:58.240000pt;}
.h4{height:63.656250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w11{width:37.600000pt;}
.wc{width:38.720000pt;}
.w2{width:47.200000pt;}
.w15{width:47.360000pt;}
.we{width:49.440000pt;}
.w8{width:56.000000pt;}
.wd{width:56.352000pt;}
.w18{width:58.880000pt;}
.w19{width:59.392000pt;}
.w7{width:65.600000pt;}
.w1b{width:66.912000pt;}
.w16{width:69.152000pt;}
.w1a{width:70.880000pt;}
.w6{width:72.672000pt;}
.w14{width:79.392000pt;}
.wa{width:82.272000pt;}
.w17{width:91.072000pt;}
.wb{width:92.320000pt;}
.w10{width:93.440000pt;}
.wf{width:94.112000pt;}
.w5{width:112.832000pt;}
.w9{width:122.272000pt;}
.w13{width:122.880000pt;}
.w12{width:318.786667pt;}
.w3{width:538.813333pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:7.360000pt;}
.x2f{left:9.440000pt;}
.x19{left:10.880000pt;}
.x16{left:12.320000pt;}
.x33{left:13.600000pt;}
.x13{left:15.040000pt;}
.x1a{left:16.960000pt;}
.x22{left:18.720000pt;}
.x2a{left:20.320000pt;}
.x17{left:21.760000pt;}
.x38{left:23.200000pt;}
.x14{left:25.280000pt;}
.x37{left:26.720000pt;}
.x23{left:28.000000pt;}
.x1f{left:31.866667pt;}
.x30{left:33.600000pt;}
.x1d{left:37.480000pt;}
.x2d{left:39.200000pt;}
.x20{left:41.146667pt;}
.x21{left:46.440000pt;}
.x1c{left:50.120000pt;}
.x11{left:56.360000pt;}
.x1{left:96.032000pt;}
.x5{left:106.591988pt;}
.x7{left:115.711988pt;}
.xf{left:120.031988pt;}
.xb{left:137.466655pt;}
.x3{left:143.226667pt;}
.x3d{left:162.266655pt;}
.x10{left:204.506667pt;}
.x39{left:223.226667pt;}
.x31{left:228.666655pt;}
.x27{left:231.266667pt;}
.x9{left:232.866655pt;}
.xa{left:236.066655pt;}
.x32{left:237.346667pt;}
.xc{left:244.706655pt;}
.x25{left:283.106655pt;}
.x24{left:284.546655pt;}
.x26{left:291.746655pt;}
.x3a{left:314.306667pt;}
.x12{left:317.986667pt;}
.x28{left:323.586667pt;}
.x2e{left:324.706667pt;}
.x6{left:332.386655pt;}
.x8{left:358.306655pt;}
.x34{left:360.226667pt;}
.x29{left:362.306667pt;}
.xe{left:371.906655pt;}
.xd{left:373.346655pt;}
.x1e{left:374.626667pt;}
.x15{left:391.293333pt;}
.x4{left:396.733322pt;}
.x2b{left:418.653333pt;}
.x3b{left:432.573333pt;}
.x35{left:439.613333pt;}
.x18{left:457.533333pt;}
.x2c{left:468.093333pt;}
.x36{left:486.973333pt;}
.x3c{left:503.453333pt;}
.x1b{left:514.173333pt;}
}




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