
    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_dae8c6a25e22e0d3c6d31c22.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_57cb13cdc7a69b090f541660.woff')format("woff");}.ff2{font-family:ff2;line-height:0.880859;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_97ee6afc28c81d0b3514ca49.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b3f7fd2f9d77a13bc906d779.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_14d347e4dedb7a2076f14e8f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4251e8873aa699a638fde855.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064453;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_85e7372b2bde04bab7ae8518.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_6f13b42b0a2d017acf7b3d31.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_35ee6a241ac2008f79ed821e.woff')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-3.240000px;}
.ls1d{letter-spacing:-3.060000px;}
.ls1f{letter-spacing:-2.910000px;}
.ls32{letter-spacing:-2.850000px;}
.ls1b{letter-spacing:-2.538000px;}
.ls1a{letter-spacing:-2.520000px;}
.ls1c{letter-spacing:-2.502000px;}
.ls9{letter-spacing:-2.340000px;}
.ls20{letter-spacing:-2.190000px;}
.ls19{letter-spacing:-2.130000px;}
.lse{letter-spacing:-1.818000px;}
.ls8{letter-spacing:-1.812000px;}
.ls7{letter-spacing:-1.800000px;}
.ls18{letter-spacing:-1.788000px;}
.ls17{letter-spacing:-1.782000px;}
.ls6{letter-spacing:-1.620000px;}
.ls26{letter-spacing:-1.470000px;}
.ls24{letter-spacing:-1.410000px;}
.ls23{letter-spacing:-1.092000px;}
.ls25{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.900000px;}
.ls33{letter-spacing:-0.690000px;}
.lsc{letter-spacing:-0.369600px;}
.ls2f{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.109200px;}
.ls30{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.028080px;}
.lsd{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls34{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.540000px;}
.ls31{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.700000px;}
.ls28{letter-spacing:3.420000px;}
.ls29{letter-spacing:4.140000px;}
.ls0{letter-spacing:5.580000px;}
.ls2a{letter-spacing:8.460000px;}
.ls35{letter-spacing:9.180000px;}
.ls16{letter-spacing:10.620000px;}
.ls38{letter-spacing:11.340000px;}
.ls2b{letter-spacing:15.660000px;}
.ls2c{letter-spacing:16.380000px;}
.ls3a{letter-spacing:20.700000px;}
.ls14{letter-spacing:21.420000px;}
.ls36{letter-spacing:25.020000px;}
.ls11{letter-spacing:27.180000px;}
.ls12{letter-spacing:30.780000px;}
.ls13{letter-spacing:30.900000px;}
.lsf{letter-spacing:37.980000px;}
.ls27{letter-spacing:83.442720px;}
.ls2d{letter-spacing:84.162720px;}
.ls2e{letter-spacing:84.882720px;}
.ls37{letter-spacing:125.621280px;}
.ls39{letter-spacing:129.941280px;}
.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;}
}
.ws18{word-spacing:-59.760000px;}
.ws1{word-spacing:-41.940000px;}
.ws0{word-spacing:-24.331344px;}
.ws11{word-spacing:-21.420000px;}
.ws1e{word-spacing:-21.401400px;}
.ws13{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.041280px;}
.ws12{word-spacing:-21.031920px;}
.ws19{word-spacing:-20.700000px;}
.ws1d{word-spacing:-20.370000px;}
.ws15{word-spacing:-19.980000px;}
.ws14{word-spacing:-19.968000px;}
.ws17{word-spacing:-19.650000px;}
.ws16{word-spacing:-19.590000px;}
.ws9{word-spacing:-19.278000px;}
.wsa{word-spacing:-19.272000px;}
.ws4{word-spacing:-19.260000px;}
.ws5{word-spacing:-19.248000px;}
.ws7{word-spacing:-19.242000px;}
.ws10{word-spacing:-18.870000px;}
.ws1b{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.558000px;}
.wsb{word-spacing:-18.540000px;}
.wsc{word-spacing:-18.522000px;}
.ws1c{word-spacing:-18.210000px;}
.wsf{word-spacing:-18.150000px;}
.ws2{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.wse{word-spacing:-17.820000px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-7.518000px;}
._d{margin-left:-6.211200px;}
._c{margin-left:-4.963200px;}
._1e{margin-left:-3.948480px;}
._2{margin-left:-2.689920px;}
._1{margin-left:-1.269360px;}
._0{width:1.560960px;}
._3{width:2.804880px;}
._4{width:4.663200px;}
._1d{width:5.980560px;}
._5{width:7.204560px;}
._b{width:9.058080px;}
._23{width:10.167360px;}
._6{width:12.147840px;}
._11{width:13.393200px;}
._7{width:14.484480px;}
._1b{width:15.752880px;}
._1a{width:16.938000px;}
._24{width:18.249600px;}
._1c{width:19.290960px;}
._2c{width:20.628240px;}
._21{width:22.551600px;}
._9{width:23.591280px;}
._8{width:24.839280px;}
._a{width:26.068320px;}
._e{width:27.199680px;}
._12{width:29.635200px;}
._13{width:30.703680px;}
._22{width:31.999200px;}
._16{width:34.094160px;}
._17{width:35.685360px;}
._18{width:37.913760px;}
._1f{width:40.880640px;}
._20{width:42.294000px;}
._2b{width:43.401600px;}
._10{width:45.388080px;}
._25{width:46.428960px;}
._f{width:48.328320px;}
._14{width:51.020640px;}
._15{width:52.066080px;}
._28{width:54.432480px;}
._26{width:55.513920px;}
._27{width:56.909040px;}
._2f{width:57.935280px;}
._30{width:60.048720px;}
._29{width:73.885440px;}
._2a{width:74.947440px;}
._31{width:98.139600px;}
._32{width:99.284640px;}
._2d{width:1766.974560px;}
._2e{width:2002.957440px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.035981px;}
.y5f{bottom:3.960000px;}
.y6{bottom:6.660000px;}
.y4{bottom:7.056000px;}
.y8{bottom:11.700000px;}
.y77{bottom:14.220000px;}
.y74{bottom:14.400000px;}
.y3{bottom:21.960000px;}
.y7{bottom:23.796000px;}
.y75{bottom:24.660000px;}
.y32{bottom:97.596000px;}
.y71{bottom:101.016000px;}
.y90{bottom:102.816000px;}
.y5d{bottom:109.116000px;}
.y31{bottom:121.716000px;}
.y70{bottom:125.316000px;}
.y8f{bottom:126.936000px;}
.y5c{bottom:133.236000px;}
.y30{bottom:145.836000px;}
.y6f{bottom:149.436000px;}
.y8e{bottom:151.050000px;}
.y5b{bottom:157.350000px;}
.y2f{bottom:170.130000px;}
.y6e{bottom:173.550000px;}
.y8d{bottom:175.170000px;}
.y5a{bottom:181.470000px;}
.y2e{bottom:194.250000px;}
.y6d{bottom:197.670000px;}
.y8c{bottom:199.290000px;}
.y59{bottom:205.590000px;}
.y2d{bottom:218.370000px;}
.y6c{bottom:221.790000px;}
.y8b{bottom:223.410000px;}
.y58{bottom:229.710000px;}
.y2c{bottom:242.490000px;}
.y6b{bottom:245.910000px;}
.y8a{bottom:247.710000px;}
.y57{bottom:254.010000px;}
.y2b{bottom:266.610000px;}
.y6a{bottom:270.210000px;}
.y89{bottom:271.830000px;}
.y56{bottom:278.130000px;}
.y2a{bottom:290.775000px;}
.y69{bottom:294.375000px;}
.y88{bottom:295.995000px;}
.y55{bottom:302.295000px;}
.y29{bottom:315.075000px;}
.y68{bottom:318.495000px;}
.y87{bottom:320.115000px;}
.y54{bottom:326.415000px;}
.y28{bottom:339.195000px;}
.y67{bottom:342.615000px;}
.y86{bottom:344.235000px;}
.y53{bottom:350.535000px;}
.yaa{bottom:356.835000px;}
.y27{bottom:363.315000px;}
.y66{bottom:366.735000px;}
.y85{bottom:368.355000px;}
.y52{bottom:374.655000px;}
.ya9{bottom:380.955000px;}
.y26{bottom:387.435000px;}
.y65{bottom:390.855000px;}
.y84{bottom:392.655000px;}
.y51{bottom:398.955000px;}
.ya8{bottom:405.075000px;}
.y25{bottom:411.555000px;}
.y64{bottom:415.155000px;}
.y83{bottom:416.775000px;}
.y50{bottom:423.075000px;}
.ya7{bottom:429.375000px;}
.y24{bottom:435.675000px;}
.y63{bottom:439.275000px;}
.y82{bottom:446.115000px;}
.y4f{bottom:447.195000px;}
.ya6{bottom:453.495000px;}
.y23{bottom:459.795000px;}
.y81{bottom:467.535000px;}
.y62{bottom:468.615000px;}
.y4e{bottom:471.315000px;}
.ya5{bottom:477.615000px;}
.y22{bottom:484.095000px;}
.y80{bottom:488.955000px;}
.y61{bottom:490.035000px;}
.y4d{bottom:495.435000px;}
.ya4{bottom:501.735000px;}
.y21{bottom:508.215000px;}
.y7f{bottom:510.375000px;}
.y60{bottom:511.455000px;}
.y4c{bottom:519.555000px;}
.ya3{bottom:525.855000px;}
.y7e{bottom:531.795000px;}
.y20{bottom:532.335000px;}
.y5e{bottom:532.875000px;}
.y4b{bottom:543.675000px;}
.ya2{bottom:549.975000px;}
.y1f{bottom:556.455000px;}
.y7d{bottom:566.925000px;}
.y4a{bottom:568.005000px;}
.ya1{bottom:574.305000px;}
.y1e{bottom:580.605000px;}
.y49{bottom:592.125000px;}
.ya0{bottom:598.425000px;}
.y1d{bottom:604.725000px;}
.y7c{bottom:615.165000px;}
.y48{bottom:616.245000px;}
.y9f{bottom:622.545000px;}
.y1c{bottom:629.025000px;}
.y7b{bottom:639.285000px;}
.y47{bottom:640.365000px;}
.y9e{bottom:646.665000px;}
.y1b{bottom:653.145000px;}
.y7a{bottom:663.405000px;}
.y46{bottom:664.485000px;}
.y9d{bottom:670.785000px;}
.y1a{bottom:677.265000px;}
.y79{bottom:687.705000px;}
.y45{bottom:688.605000px;}
.y9c{bottom:694.905000px;}
.y19{bottom:701.385000px;}
.y44{bottom:712.905000px;}
.y78{bottom:717.045000px;}
.y9b{bottom:719.205000px;}
.y18{bottom:725.505000px;}
.y43{bottom:737.025000px;}
.y76{bottom:738.465000px;}
.y9a{bottom:743.325000px;}
.y17{bottom:749.625000px;}
.y42{bottom:761.145000px;}
.y99{bottom:767.445000px;}
.y16{bottom:773.745000px;}
.y73{bottom:780.585000px;}
.y41{bottom:785.265000px;}
.y98{bottom:791.565000px;}
.y15{bottom:798.045000px;}
.y40{bottom:809.385000px;}
.y97{bottom:815.685000px;}
.y14{bottom:822.165000px;}
.y72{bottom:822.705000px;}
.y3f{bottom:833.505000px;}
.y96{bottom:839.805000px;}
.y13{bottom:846.285000px;}
.y3e{bottom:857.670000px;}
.y95{bottom:863.970000px;}
.y12{bottom:870.450000px;}
.y3d{bottom:881.970000px;}
.y94{bottom:888.270000px;}
.y11{bottom:894.570000px;}
.y3c{bottom:906.090000px;}
.y93{bottom:912.390000px;}
.y10{bottom:918.690000px;}
.y3b{bottom:930.210000px;}
.y92{bottom:936.510000px;}
.yf{bottom:942.990000px;}
.y3a{bottom:954.330000px;}
.y39{bottom:978.450000px;}
.ye{bottom:980.970000px;}
.y91{bottom:981.510000px;}
.y38{bottom:1002.570000px;}
.yd{bottom:1007.070000px;}
.y37{bottom:1026.870000px;}
.yc{bottom:1033.170000px;}
.y36{bottom:1050.990000px;}
.y35{bottom:1075.110000px;}
.yb{bottom:1078.170000px;}
.y34{bottom:1099.230000px;}
.ya{bottom:1102.470000px;}
.y33{bottom:1123.350000px;}
.y9{bottom:1147.500000px;}
.y1{bottom:1175.040000px;}
.y5{bottom:1200.600000px;}
.hf{height:20.700000px;}
.h7{height:28.440000px;}
.h3{height:39.420000px;}
.h11{height:41.400000px;}
.h5{height:45.900000px;}
.h2{height:65.884219px;}
.h12{height:70.628906px;}
.h10{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:72.846211px;}
.hd{height:74.244727px;}
.h4{height:81.688852px;}
.hb{height:82.635820px;}
.hc{height:82.676953px;}
.h9{height:84.898125px;}
.h13{height:86.585445px;}
.he{height:105.996094px;}
.h6{height:169.070625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.820000px;}
.w9{width:158.790000px;}
.w8{width:166.890000px;}
.wa{width:180.030000px;}
.wb{width:209.190000px;}
.w6{width:235.830000px;}
.wc{width:337.035000px;}
.w5{width:356.835000px;}
.wd{width:379.335000px;}
.w7{width:453.855000px;}
.w4{width:610.740000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x15{left:7.740000px;}
.x23{left:12.060000px;}
.x22{left:16.560000px;}
.x29{left:19.440000px;}
.x6{left:20.700000px;}
.x1c{left:22.320000px;}
.x25{left:26.460000px;}
.x26{left:27.900000px;}
.x27{left:34.560000px;}
.x1a{left:37.116000px;}
.x4{left:38.130000px;}
.x24{left:44.460000px;}
.x28{left:50.040000px;}
.x21{left:52.956000px;}
.x11{left:61.554000px;}
.x1e{left:67.320000px;}
.x20{left:80.640000px;}
.x14{left:83.874000px;}
.x8{left:84.959987px;}
.x16{left:89.814000px;}
.x18{left:94.175987px;}
.xc{left:101.375987px;}
.x9{left:106.055987px;}
.x10{left:112.536000px;}
.xe{left:138.095987px;}
.x2b{left:153.570000px;}
.x13{left:159.150000px;}
.x2d{left:162.210000px;}
.xa{left:232.409987px;}
.xd{left:243.209987px;}
.x1b{left:253.470000px;}
.x2a{left:268.949987px;}
.xb{left:308.954987px;}
.xf{left:326.594987px;}
.x12{left:349.095000px;}
.x2e{left:361.154987px;}
.x1d{left:412.995000px;}
.x2c{left:423.615000px;}
.x19{left:430.814987px;}
.x7{left:434.955000px;}
.x1f{left:593.745000px;}
.x17{left:755.609987px;}
.x3{left:794.160000px;}
.x1{left:891.899987px;}
.x2{left:901.079987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-2.880000pt;}
.ls1d{letter-spacing:-2.720000pt;}
.ls1f{letter-spacing:-2.586667pt;}
.ls32{letter-spacing:-2.533333pt;}
.ls1b{letter-spacing:-2.256000pt;}
.ls1a{letter-spacing:-2.240000pt;}
.ls1c{letter-spacing:-2.224000pt;}
.ls9{letter-spacing:-2.080000pt;}
.ls20{letter-spacing:-1.946667pt;}
.ls19{letter-spacing:-1.893333pt;}
.lse{letter-spacing:-1.616000pt;}
.ls8{letter-spacing:-1.610667pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls18{letter-spacing:-1.589333pt;}
.ls17{letter-spacing:-1.584000pt;}
.ls6{letter-spacing:-1.440000pt;}
.ls26{letter-spacing:-1.306667pt;}
.ls24{letter-spacing:-1.253333pt;}
.ls23{letter-spacing:-0.970667pt;}
.ls25{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls33{letter-spacing:-0.613333pt;}
.lsc{letter-spacing:-0.328533pt;}
.ls2f{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.024960pt;}
.lsd{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls34{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.760000pt;}
.ls10{letter-spacing:2.400000pt;}
.ls28{letter-spacing:3.040000pt;}
.ls29{letter-spacing:3.680000pt;}
.ls0{letter-spacing:4.960000pt;}
.ls2a{letter-spacing:7.520000pt;}
.ls35{letter-spacing:8.160000pt;}
.ls16{letter-spacing:9.440000pt;}
.ls38{letter-spacing:10.080000pt;}
.ls2b{letter-spacing:13.920000pt;}
.ls2c{letter-spacing:14.560000pt;}
.ls3a{letter-spacing:18.400000pt;}
.ls14{letter-spacing:19.040000pt;}
.ls36{letter-spacing:22.240000pt;}
.ls11{letter-spacing:24.160000pt;}
.ls12{letter-spacing:27.360000pt;}
.ls13{letter-spacing:27.466667pt;}
.lsf{letter-spacing:33.760000pt;}
.ls27{letter-spacing:74.171307pt;}
.ls2d{letter-spacing:74.811307pt;}
.ls2e{letter-spacing:75.451307pt;}
.ls37{letter-spacing:111.663360pt;}
.ls39{letter-spacing:115.503360pt;}
.ws18{word-spacing:-53.120000pt;}
.ws1{word-spacing:-37.280000pt;}
.ws0{word-spacing:-21.627861pt;}
.ws11{word-spacing:-19.040000pt;}
.ws1e{word-spacing:-19.023467pt;}
.ws13{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.703360pt;}
.ws12{word-spacing:-18.695040pt;}
.ws19{word-spacing:-18.400000pt;}
.ws1d{word-spacing:-18.106667pt;}
.ws15{word-spacing:-17.760000pt;}
.ws14{word-spacing:-17.749333pt;}
.ws17{word-spacing:-17.466667pt;}
.ws16{word-spacing:-17.413333pt;}
.ws9{word-spacing:-17.136000pt;}
.wsa{word-spacing:-17.130667pt;}
.ws4{word-spacing:-17.120000pt;}
.ws5{word-spacing:-17.109333pt;}
.ws7{word-spacing:-17.104000pt;}
.ws10{word-spacing:-16.773333pt;}
.ws1b{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.496000pt;}
.wsb{word-spacing:-16.480000pt;}
.wsc{word-spacing:-16.464000pt;}
.ws1c{word-spacing:-16.186667pt;}
.wsf{word-spacing:-16.133333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.840000pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-6.682667pt;}
._d{margin-left:-5.521067pt;}
._c{margin-left:-4.411733pt;}
._1e{margin-left:-3.509760pt;}
._2{margin-left:-2.391040pt;}
._1{margin-left:-1.128320pt;}
._0{width:1.387520pt;}
._3{width:2.493227pt;}
._4{width:4.145067pt;}
._1d{width:5.316053pt;}
._5{width:6.404053pt;}
._b{width:8.051627pt;}
._23{width:9.037653pt;}
._6{width:10.798080pt;}
._11{width:11.905067pt;}
._7{width:12.875093pt;}
._1b{width:14.002560pt;}
._1a{width:15.056000pt;}
._24{width:16.221867pt;}
._1c{width:17.147520pt;}
._2c{width:18.336213pt;}
._21{width:20.045867pt;}
._9{width:20.970027pt;}
._8{width:22.079360pt;}
._a{width:23.171840pt;}
._e{width:24.177493pt;}
._12{width:26.342400pt;}
._13{width:27.292160pt;}
._22{width:28.443733pt;}
._16{width:30.305920pt;}
._17{width:31.720320pt;}
._18{width:33.701120pt;}
._1f{width:36.338347pt;}
._20{width:37.594667pt;}
._2b{width:38.579200pt;}
._10{width:40.344960pt;}
._25{width:41.270187pt;}
._f{width:42.958507pt;}
._14{width:45.351680pt;}
._15{width:46.280960pt;}
._28{width:48.384427pt;}
._26{width:49.345707pt;}
._27{width:50.585813pt;}
._2f{width:51.498027pt;}
._30{width:53.376640pt;}
._29{width:65.675947pt;}
._2a{width:66.619947pt;}
._31{width:87.235200pt;}
._32{width:88.253013pt;}
._2d{width:1570.644053pt;}
._2e{width:1780.406613pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.031983pt;}
.y5f{bottom:3.520000pt;}
.y6{bottom:5.920000pt;}
.y4{bottom:6.272000pt;}
.y8{bottom:10.400000pt;}
.y77{bottom:12.640000pt;}
.y74{bottom:12.800000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.152000pt;}
.y75{bottom:21.920000pt;}
.y32{bottom:86.752000pt;}
.y71{bottom:89.792000pt;}
.y90{bottom:91.392000pt;}
.y5d{bottom:96.992000pt;}
.y31{bottom:108.192000pt;}
.y70{bottom:111.392000pt;}
.y8f{bottom:112.832000pt;}
.y5c{bottom:118.432000pt;}
.y30{bottom:129.632000pt;}
.y6f{bottom:132.832000pt;}
.y8e{bottom:134.266667pt;}
.y5b{bottom:139.866667pt;}
.y2f{bottom:151.226667pt;}
.y6e{bottom:154.266667pt;}
.y8d{bottom:155.706667pt;}
.y5a{bottom:161.306667pt;}
.y2e{bottom:172.666667pt;}
.y6d{bottom:175.706667pt;}
.y8c{bottom:177.146667pt;}
.y59{bottom:182.746667pt;}
.y2d{bottom:194.106667pt;}
.y6c{bottom:197.146667pt;}
.y8b{bottom:198.586667pt;}
.y58{bottom:204.186667pt;}
.y2c{bottom:215.546667pt;}
.y6b{bottom:218.586667pt;}
.y8a{bottom:220.186667pt;}
.y57{bottom:225.786667pt;}
.y2b{bottom:236.986667pt;}
.y6a{bottom:240.186667pt;}
.y89{bottom:241.626667pt;}
.y56{bottom:247.226667pt;}
.y2a{bottom:258.466667pt;}
.y69{bottom:261.666667pt;}
.y88{bottom:263.106667pt;}
.y55{bottom:268.706667pt;}
.y29{bottom:280.066667pt;}
.y68{bottom:283.106667pt;}
.y87{bottom:284.546667pt;}
.y54{bottom:290.146667pt;}
.y28{bottom:301.506667pt;}
.y67{bottom:304.546667pt;}
.y86{bottom:305.986667pt;}
.y53{bottom:311.586667pt;}
.yaa{bottom:317.186667pt;}
.y27{bottom:322.946667pt;}
.y66{bottom:325.986667pt;}
.y85{bottom:327.426667pt;}
.y52{bottom:333.026667pt;}
.ya9{bottom:338.626667pt;}
.y26{bottom:344.386667pt;}
.y65{bottom:347.426667pt;}
.y84{bottom:349.026667pt;}
.y51{bottom:354.626667pt;}
.ya8{bottom:360.066667pt;}
.y25{bottom:365.826667pt;}
.y64{bottom:369.026667pt;}
.y83{bottom:370.466667pt;}
.y50{bottom:376.066667pt;}
.ya7{bottom:381.666667pt;}
.y24{bottom:387.266667pt;}
.y63{bottom:390.466667pt;}
.y82{bottom:396.546667pt;}
.y4f{bottom:397.506667pt;}
.ya6{bottom:403.106667pt;}
.y23{bottom:408.706667pt;}
.y81{bottom:415.586667pt;}
.y62{bottom:416.546667pt;}
.y4e{bottom:418.946667pt;}
.ya5{bottom:424.546667pt;}
.y22{bottom:430.306667pt;}
.y80{bottom:434.626667pt;}
.y61{bottom:435.586667pt;}
.y4d{bottom:440.386667pt;}
.ya4{bottom:445.986667pt;}
.y21{bottom:451.746667pt;}
.y7f{bottom:453.666667pt;}
.y60{bottom:454.626667pt;}
.y4c{bottom:461.826667pt;}
.ya3{bottom:467.426667pt;}
.y7e{bottom:472.706667pt;}
.y20{bottom:473.186667pt;}
.y5e{bottom:473.666667pt;}
.y4b{bottom:483.266667pt;}
.ya2{bottom:488.866667pt;}
.y1f{bottom:494.626667pt;}
.y7d{bottom:503.933333pt;}
.y4a{bottom:504.893333pt;}
.ya1{bottom:510.493333pt;}
.y1e{bottom:516.093333pt;}
.y49{bottom:526.333333pt;}
.ya0{bottom:531.933333pt;}
.y1d{bottom:537.533333pt;}
.y7c{bottom:546.813333pt;}
.y48{bottom:547.773333pt;}
.y9f{bottom:553.373333pt;}
.y1c{bottom:559.133333pt;}
.y7b{bottom:568.253333pt;}
.y47{bottom:569.213333pt;}
.y9e{bottom:574.813333pt;}
.y1b{bottom:580.573333pt;}
.y7a{bottom:589.693333pt;}
.y46{bottom:590.653333pt;}
.y9d{bottom:596.253333pt;}
.y1a{bottom:602.013333pt;}
.y79{bottom:611.293333pt;}
.y45{bottom:612.093333pt;}
.y9c{bottom:617.693333pt;}
.y19{bottom:623.453333pt;}
.y44{bottom:633.693333pt;}
.y78{bottom:637.373333pt;}
.y9b{bottom:639.293333pt;}
.y18{bottom:644.893333pt;}
.y43{bottom:655.133333pt;}
.y76{bottom:656.413333pt;}
.y9a{bottom:660.733333pt;}
.y17{bottom:666.333333pt;}
.y42{bottom:676.573333pt;}
.y99{bottom:682.173333pt;}
.y16{bottom:687.773333pt;}
.y73{bottom:693.853333pt;}
.y41{bottom:698.013333pt;}
.y98{bottom:703.613333pt;}
.y15{bottom:709.373333pt;}
.y40{bottom:719.453333pt;}
.y97{bottom:725.053333pt;}
.y14{bottom:730.813333pt;}
.y72{bottom:731.293333pt;}
.y3f{bottom:740.893333pt;}
.y96{bottom:746.493333pt;}
.y13{bottom:752.253333pt;}
.y3e{bottom:762.373333pt;}
.y95{bottom:767.973333pt;}
.y12{bottom:773.733333pt;}
.y3d{bottom:783.973333pt;}
.y94{bottom:789.573333pt;}
.y11{bottom:795.173333pt;}
.y3c{bottom:805.413333pt;}
.y93{bottom:811.013333pt;}
.y10{bottom:816.613333pt;}
.y3b{bottom:826.853333pt;}
.y92{bottom:832.453333pt;}
.yf{bottom:838.213333pt;}
.y3a{bottom:848.293333pt;}
.y39{bottom:869.733333pt;}
.ye{bottom:871.973333pt;}
.y91{bottom:872.453333pt;}
.y38{bottom:891.173333pt;}
.yd{bottom:895.173333pt;}
.y37{bottom:912.773333pt;}
.yc{bottom:918.373333pt;}
.y36{bottom:934.213333pt;}
.y35{bottom:955.653333pt;}
.yb{bottom:958.373333pt;}
.y34{bottom:977.093333pt;}
.ya{bottom:979.973333pt;}
.y33{bottom:998.533333pt;}
.y9{bottom:1020.000000pt;}
.y1{bottom:1044.480000pt;}
.y5{bottom:1067.200000pt;}
.hf{height:18.400000pt;}
.h7{height:25.280000pt;}
.h3{height:35.040000pt;}
.h11{height:36.800000pt;}
.h5{height:40.800000pt;}
.h2{height:58.563750pt;}
.h12{height:62.781250pt;}
.h10{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:64.752187pt;}
.hd{height:65.995312pt;}
.h4{height:72.612313pt;}
.hb{height:73.454062pt;}
.hc{height:73.490625pt;}
.h9{height:75.465000pt;}
.h13{height:76.964840pt;}
.he{height:94.218750pt;}
.h6{height:150.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.840000pt;}
.w9{width:141.146667pt;}
.w8{width:148.346667pt;}
.wa{width:160.026667pt;}
.wb{width:185.946667pt;}
.w6{width:209.626667pt;}
.wc{width:299.586667pt;}
.w5{width:317.186667pt;}
.wd{width:337.186667pt;}
.w7{width:403.426667pt;}
.w4{width:542.880000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x15{left:6.880000pt;}
.x23{left:10.720000pt;}
.x22{left:14.720000pt;}
.x29{left:17.280000pt;}
.x6{left:18.400000pt;}
.x1c{left:19.840000pt;}
.x25{left:23.520000pt;}
.x26{left:24.800000pt;}
.x27{left:30.720000pt;}
.x1a{left:32.992000pt;}
.x4{left:33.893333pt;}
.x24{left:39.520000pt;}
.x28{left:44.480000pt;}
.x21{left:47.072000pt;}
.x11{left:54.714667pt;}
.x1e{left:59.840000pt;}
.x20{left:71.680000pt;}
.x14{left:74.554667pt;}
.x8{left:75.519988pt;}
.x16{left:79.834667pt;}
.x18{left:83.711988pt;}
.xc{left:90.111988pt;}
.x9{left:94.271988pt;}
.x10{left:100.032000pt;}
.xe{left:122.751988pt;}
.x2b{left:136.506667pt;}
.x13{left:141.466667pt;}
.x2d{left:144.186667pt;}
.xa{left:206.586655pt;}
.xd{left:216.186655pt;}
.x1b{left:225.306667pt;}
.x2a{left:239.066655pt;}
.xb{left:274.626655pt;}
.xf{left:290.306655pt;}
.x12{left:310.306667pt;}
.x2e{left:321.026655pt;}
.x1d{left:367.106667pt;}
.x2c{left:376.546667pt;}
.x19{left:382.946655pt;}
.x7{left:386.626667pt;}
.x1f{left:527.773333pt;}
.x17{left:671.653322pt;}
.x3{left:705.920000pt;}
.x1{left:792.799988pt;}
.x2{left:800.959988pt;}
}




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