
    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_a34ef99d7109c3c80f708e79.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e3913af45bf24e86329fdf16.woff2')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_4d8439c094bb0e35020abbae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.805176;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c2663d3114731319545a856b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_45794c61a4092abc8dec7cfa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.066406;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_ccc36a8b9dac6791b46643ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.805176;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_662cfbb9f2801e88c796d38c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d294fcc80a08e2a04dac36e8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.vd{vertical-align:-42.480000px;}
.v2{vertical-align:-27.360000px;}
.v11{vertical-align:-23.040000px;}
.v4{vertical-align:-12.960000px;}
.v6{vertical-align:-9.360000px;}
.v3{vertical-align:-5.760000px;}
.vb{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:5.760000px;}
.v7{vertical-align:9.360000px;}
.v5{vertical-align:12.960000px;}
.ve{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:31.680000px;}
.va{vertical-align:34.560000px;}
.v10{vertical-align:36.000000px;}
.v9{vertical-align:37.440000px;}
.vf{vertical-align:50.400000px;}
.vc{vertical-align:69.120000px;}
.ls3{letter-spacing:-4.464000px;}
.ls32{letter-spacing:-4.320000px;}
.ls2e{letter-spacing:-2.880000px;}
.ls6{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.504000px;}
.ls2f{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.270600px;}
.ls2d{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.081600px;}
.ls7{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.184200px;}
.ls33{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.223920px;}
.lsb{letter-spacing:0.269400px;}
.ls25{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.345600px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.892800px;}
.ls1a{letter-spacing:1.816560px;}
.ls1c{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.340000px;}
.ls27{letter-spacing:2.799360px;}
.ls23{letter-spacing:3.215520px;}
.ls19{letter-spacing:4.084560px;}
.ls8{letter-spacing:4.500000px;}
.ls18{letter-spacing:10.456560px;}
.lsd{letter-spacing:10.465920px;}
.ls31{letter-spacing:12.240000px;}
.ls14{letter-spacing:13.221360px;}
.ls13{letter-spacing:14.884560px;}
.ls2b{letter-spacing:16.479360px;}
.ls22{letter-spacing:17.413200px;}
.ls17{letter-spacing:17.470080px;}
.ls21{letter-spacing:20.644560px;}
.ls16{letter-spacing:20.802240px;}
.ls24{letter-spacing:33.984000px;}
.ls1{letter-spacing:43.585920px;}
.ls30{letter-spacing:57.265920px;}
.ls11{letter-spacing:88.277760px;}
.ls10{letter-spacing:91.204560px;}
.ls1b{letter-spacing:108.000000px;}
.lsc{letter-spacing:108.144000px;}
.lse{letter-spacing:113.220000px;}
.ls15{letter-spacing:134.357760px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws10{word-spacing:-63.544200px;}
.ws7{word-spacing:-63.360000px;}
.wsf{word-spacing:-52.934400px;}
.wsd{word-spacing:-52.588800px;}
.wsc{word-spacing:-50.054400px;}
.ws17{word-spacing:-49.489920px;}
.ws15{word-spacing:-45.889920px;}
.wsa{word-spacing:-45.360000px;}
.ws9{word-spacing:-37.249920px;}
.wsb{word-spacing:-36.000000px;}
.ws12{word-spacing:-33.215040px;}
.ws11{word-spacing:-32.375040px;}
.ws16{word-spacing:-27.891600px;}
.ws8{word-spacing:-25.543440px;}
.ws1c{word-spacing:-18.864000px;}
.ws1a{word-spacing:-18.576000px;}
.ws19{word-spacing:-18.504000px;}
.ws18{word-spacing:-18.288000px;}
.ws20{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws1b{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.360640px;}
.ws1{word-spacing:-17.090040px;}
.ws1d{word-spacing:-15.120000px;}
.ws1f{word-spacing:-13.680000px;}
.ws5{word-spacing:-12.329400px;}
.ws13{word-spacing:-12.060000px;}
.ws1e{word-spacing:-11.609400px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:95.416560px;}
._20{margin-left:-108.795600px;}
._1f{margin-left:-107.204400px;}
._22{margin-left:-76.199760px;}
._21{margin-left:-63.360000px;}
._4{margin-left:-8.064000px;}
._c{margin-left:-5.937360px;}
._5{margin-left:-4.235280px;}
._3{margin-left:-3.168000px;}
._1{margin-left:-1.819440px;}
._0{width:1.053360px;}
._2{width:3.043680px;}
._d{width:4.817520px;}
._10{width:5.830080px;}
._7{width:6.852000px;}
._6{width:8.064000px;}
._8{width:10.034640px;}
._b{width:11.500080px;}
._11{width:13.392000px;}
._18{width:14.437440px;}
._17{width:15.441360px;}
._12{width:16.488000px;}
._1c{width:18.123600px;}
._15{width:20.016000px;}
._16{width:21.024000px;}
._e{width:22.248000px;}
._f{width:23.870640px;}
._9{width:24.899280px;}
._25{width:27.288000px;}
._27{width:28.819440px;}
._a{width:29.976720px;}
._28{width:31.392000px;}
._13{width:32.400000px;}
._14{width:33.643440px;}
._29{width:35.136000px;}
._26{width:37.728000px;}
._23{width:39.360000px;}
._24{width:40.382640px;}
._2c{width:41.490720px;}
._1d{width:43.200000px;}
._1a{width:58.358640px;}
._19{width:59.472000px;}
._1b{width:60.585360px;}
._2b{width:80.686080px;}
._2a{width:81.969360px;}
._1e{width:108.000000px;}
.fc7{color:rgb(255,51,51);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(255,51,0);}
.fc4{color:rgb(204,51,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs7{font-size:36.000000px;}
.fs5{font-size:45.360000px;}
.fs6{font-size:47.813160px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:63.360000px;}
.fs8{font-size:66.786636px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:121.356000px;}
.y29{bottom:130.356000px;}
.y83{bottom:144.756000px;}
.y28{bottom:153.750000px;}
.y46{bottom:158.610000px;}
.y45{bottom:166.530000px;}
.y82{bottom:168.150000px;}
.y4e{bottom:176.430000px;}
.y27{bottom:177.150000px;}
.y81{bottom:191.550000px;}
.y38{bottom:196.770000px;}
.y26{bottom:200.550000px;}
.y51{bottom:203.430000px;}
.y80{bottom:214.950000px;}
.y25{bottom:223.950000px;}
.y7f{bottom:238.350000px;}
.y24{bottom:247.350000px;}
.y7e{bottom:261.750000px;}
.y23{bottom:270.750000px;}
.y7d{bottom:285.150000px;}
.y22{bottom:294.150000px;}
.y7c{bottom:308.550000px;}
.y21{bottom:317.550000px;}
.y44{bottom:319.350000px;}
.y7b{bottom:331.950000px;}
.y20{bottom:340.995000px;}
.y56{bottom:342.795000px;}
.y7a{bottom:355.395000px;}
.y55{bottom:362.775000px;}
.y1f{bottom:364.395000px;}
.y79{bottom:378.795000px;}
.y57{bottom:385.455000px;}
.y1e{bottom:387.795000px;}
.y78{bottom:402.195000px;}
.y35{bottom:411.195000px;}
.y1d{bottom:412.995000px;}
.y77{bottom:425.595000px;}
.y4f{bottom:432.795000px;}
.y1c{bottom:434.595000px;}
.y4b{bottom:436.395000px;}
.y76{bottom:448.995000px;}
.y34{bottom:457.995000px;}
.y1b{bottom:459.795000px;}
.y75{bottom:472.395000px;}
.y1a{bottom:481.395000px;}
.y54{bottom:483.195000px;}
.y74{bottom:495.795000px;}
.y19{bottom:504.795000px;}
.y4a{bottom:505.875000px;}
.y53{bottom:506.595000px;}
.y3e{bottom:509.295000px;}
.y40{bottom:513.615000px;}
.y43{bottom:513.975000px;}
.y3d{bottom:517.215000px;}
.y73{bottom:519.195000px;}
.y3f{bottom:523.155000px;}
.y42{bottom:523.335000px;}
.y18{bottom:528.195000px;}
.y41{bottom:528.555000px;}
.y72{bottom:542.595000px;}
.y17{bottom:551.595000px;}
.y71{bottom:565.995000px;}
.y52{bottom:573.555000px;}
.y16{bottom:574.995000px;}
.y70{bottom:589.395000px;}
.y15{bottom:598.395000px;}
.y6f{bottom:612.825000px;}
.y50{bottom:621.645000px;}
.y14{bottom:621.825000px;}
.y59{bottom:623.625000px;}
.y6e{bottom:636.225000px;}
.y13{bottom:645.225000px;}
.y4d{bottom:647.025000px;}
.y6d{bottom:659.625000px;}
.y12{bottom:668.625000px;}
.y6c{bottom:683.025000px;}
.y11{bottom:692.025000px;}
.y6b{bottom:706.425000px;}
.y4c{bottom:713.625000px;}
.y10{bottom:715.425000px;}
.y85{bottom:717.225000px;}
.y6a{bottom:729.825000px;}
.yf{bottom:738.825000px;}
.y49{bottom:740.625000px;}
.y69{bottom:753.225000px;}
.y58{bottom:759.885000px;}
.ye{bottom:762.225000px;}
.y3a{bottom:766.005000px;}
.y3c{bottom:767.805000px;}
.y39{bottom:775.725000px;}
.y68{bottom:776.625000px;}
.yd{bottom:785.625000px;}
.y3b{bottom:786.165000px;}
.y67{bottom:800.025000px;}
.yc{bottom:809.025000px;}
.y66{bottom:823.425000px;}
.yb{bottom:832.425000px;}
.y65{bottom:846.825000px;}
.ya{bottom:855.825000px;}
.y37{bottom:857.625000px;}
.y64{bottom:870.225000px;}
.y33{bottom:879.270000px;}
.y9{bottom:881.070000px;}
.y63{bottom:893.670000px;}
.y8{bottom:902.670000px;}
.y62{bottom:917.070000px;}
.y32{bottom:926.070000px;}
.y7{bottom:932.910000px;}
.y61{bottom:942.270000px;}
.y31{bottom:949.470000px;}
.y6{bottom:956.310000px;}
.y60{bottom:963.870000px;}
.y30{bottom:972.870000px;}
.y5{bottom:979.710000px;}
.y5f{bottom:989.070000px;}
.y4{bottom:996.270000px;}
.y48{bottom:998.070000px;}
.y5e{bottom:1010.670000px;}
.y2f{bottom:1019.670000px;}
.y3{bottom:1025.970000px;}
.y5d{bottom:1034.070000px;}
.y2e{bottom:1043.070000px;}
.y5c{bottom:1057.470000px;}
.y2d{bottom:1066.470000px;}
.y47{bottom:1068.270000px;}
.y2{bottom:1076.010000px;}
.y5b{bottom:1080.870000px;}
.y2c{bottom:1089.870000px;}
.y2b{bottom:1113.270000px;}
.y1{bottom:1122.810000px;}
.y5a{bottom:1124.970000px;}
.y2a{bottom:1136.670000px;}
.y36{bottom:1138.500000px;}
.h5{height:33.683203px;}
.ha{height:36.163372px;}
.hb{height:38.228203px;}
.h7{height:47.922187px;}
.h6{height:50.273438px;}
.hd{height:50.513916px;}
.h8{height:50.800781px;}
.h14{height:50.941406px;}
.h15{height:52.417969px;}
.h9{height:53.398125px;}
.h4{height:61.043203px;}
.h12{height:66.358125px;}
.h2{height:67.565039px;}
.h11{height:67.798125px;}
.he{height:75.668203px;}
.hc{height:81.953437px;}
.h10{height:85.078125px;}
.h3{height:92.000391px;}
.h13{height:92.948203px;}
.hf{height:107.348203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:80.999987px;}
.x7{left:103.355987px;}
.x5{left:105.155987px;}
.xc{left:108.035987px;}
.xd{left:112.535987px;}
.xa{left:117.035987px;}
.xe{left:119.375987px;}
.xf{left:126.215987px;}
.x2{left:128.015987px;}
.x1{left:137.015987px;}
.x10{left:149.975987px;}
.x11{left:177.869987px;}
.x12{left:182.549987px;}
.x16{left:183.809987px;}
.x13{left:189.389987px;}
.x6{left:196.949987px;}
.x14{left:198.209987px;}
.x15{left:207.749987px;}
.x18{left:223.769987px;}
.x4{left:248.249987px;}
.x17{left:255.629987px;}
.x19{left:271.829987px;}
.x1a{left:293.654987px;}
.x8{left:332.354987px;}
.x3{left:446.474987px;}
.x1b{left:542.084987px;}
.x20{left:721.409987px;}
.x1f{left:764.789987px;}
.x1e{left:791.429987px;}
.xb{left:811.769987px;}
.x1d{left:818.429987px;}
.x1c{left:820.409987px;}
@media print{
.vd{vertical-align:-37.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v11{vertical-align:-20.480000pt;}
.v4{vertical-align:-11.520000pt;}
.v6{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.120000pt;}
.vb{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:5.120000pt;}
.v7{vertical-align:8.320000pt;}
.v5{vertical-align:11.520000pt;}
.ve{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:28.160000pt;}
.va{vertical-align:30.720000pt;}
.v10{vertical-align:32.000000pt;}
.v9{vertical-align:33.280000pt;}
.vf{vertical-align:44.800000pt;}
.vc{vertical-align:61.440000pt;}
.ls3{letter-spacing:-3.968000pt;}
.ls32{letter-spacing:-3.840000pt;}
.ls2e{letter-spacing:-2.560000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls2f{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.240533pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.072533pt;}
.ls7{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.163733pt;}
.ls33{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.199040pt;}
.lsb{letter-spacing:0.239467pt;}
.ls25{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.307200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.793600pt;}
.ls1a{letter-spacing:1.614720pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.080000pt;}
.ls27{letter-spacing:2.488320pt;}
.ls23{letter-spacing:2.858240pt;}
.ls19{letter-spacing:3.630720pt;}
.ls8{letter-spacing:4.000000pt;}
.ls18{letter-spacing:9.294720pt;}
.lsd{letter-spacing:9.303040pt;}
.ls31{letter-spacing:10.880000pt;}
.ls14{letter-spacing:11.752320pt;}
.ls13{letter-spacing:13.230720pt;}
.ls2b{letter-spacing:14.648320pt;}
.ls22{letter-spacing:15.478400pt;}
.ls17{letter-spacing:15.528960pt;}
.ls21{letter-spacing:18.350720pt;}
.ls16{letter-spacing:18.490880pt;}
.ls24{letter-spacing:30.208000pt;}
.ls1{letter-spacing:38.743040pt;}
.ls30{letter-spacing:50.903040pt;}
.ls11{letter-spacing:78.469120pt;}
.ls10{letter-spacing:81.070720pt;}
.ls1b{letter-spacing:96.000000pt;}
.lsc{letter-spacing:96.128000pt;}
.lse{letter-spacing:100.640000pt;}
.ls15{letter-spacing:119.429120pt;}
.ws14{word-spacing:-64.000000pt;}
.ws10{word-spacing:-56.483733pt;}
.ws7{word-spacing:-56.320000pt;}
.wsf{word-spacing:-47.052800pt;}
.wsd{word-spacing:-46.745600pt;}
.wsc{word-spacing:-44.492800pt;}
.ws17{word-spacing:-43.991040pt;}
.ws15{word-spacing:-40.791040pt;}
.wsa{word-spacing:-40.320000pt;}
.ws9{word-spacing:-33.111040pt;}
.wsb{word-spacing:-32.000000pt;}
.ws12{word-spacing:-29.524480pt;}
.ws11{word-spacing:-28.777813pt;}
.ws16{word-spacing:-24.792533pt;}
.ws8{word-spacing:-22.705280pt;}
.ws1c{word-spacing:-16.768000pt;}
.ws1a{word-spacing:-16.512000pt;}
.ws19{word-spacing:-16.448000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws20{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1b{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.431680pt;}
.ws1{word-spacing:-15.191147pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-12.160000pt;}
.ws5{word-spacing:-10.959467pt;}
.ws13{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.319467pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:84.814720pt;}
._20{margin-left:-96.707200pt;}
._1f{margin-left:-95.292800pt;}
._22{margin-left:-67.733120pt;}
._21{margin-left:-56.320000pt;}
._4{margin-left:-7.168000pt;}
._c{margin-left:-5.277653pt;}
._5{margin-left:-3.764693pt;}
._3{margin-left:-2.816000pt;}
._1{margin-left:-1.617280pt;}
._0{width:0.936320pt;}
._2{width:2.705493pt;}
._d{width:4.282240pt;}
._10{width:5.182293pt;}
._7{width:6.090667pt;}
._6{width:7.168000pt;}
._8{width:8.919680pt;}
._b{width:10.222293pt;}
._11{width:11.904000pt;}
._18{width:12.833280pt;}
._17{width:13.725653pt;}
._12{width:14.656000pt;}
._1c{width:16.109867pt;}
._15{width:17.792000pt;}
._16{width:18.688000pt;}
._e{width:19.776000pt;}
._f{width:21.218347pt;}
._9{width:22.132693pt;}
._25{width:24.256000pt;}
._27{width:25.617280pt;}
._a{width:26.645973pt;}
._28{width:27.904000pt;}
._13{width:28.800000pt;}
._14{width:29.905280pt;}
._29{width:31.232000pt;}
._26{width:33.536000pt;}
._23{width:34.986667pt;}
._24{width:35.895680pt;}
._2c{width:36.880640pt;}
._1d{width:38.400000pt;}
._1a{width:51.874347pt;}
._19{width:52.864000pt;}
._1b{width:53.853653pt;}
._2b{width:71.720960pt;}
._2a{width:72.861653pt;}
._1e{width:96.000000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:40.320000pt;}
.fs6{font-size:42.500587pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:56.320000pt;}
.fs8{font-size:59.365899pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:107.872000pt;}
.y29{bottom:115.872000pt;}
.y83{bottom:128.672000pt;}
.y28{bottom:136.666667pt;}
.y46{bottom:140.986667pt;}
.y45{bottom:148.026667pt;}
.y82{bottom:149.466667pt;}
.y4e{bottom:156.826667pt;}
.y27{bottom:157.466667pt;}
.y81{bottom:170.266667pt;}
.y38{bottom:174.906667pt;}
.y26{bottom:178.266667pt;}
.y51{bottom:180.826667pt;}
.y80{bottom:191.066667pt;}
.y25{bottom:199.066667pt;}
.y7f{bottom:211.866667pt;}
.y24{bottom:219.866667pt;}
.y7e{bottom:232.666667pt;}
.y23{bottom:240.666667pt;}
.y7d{bottom:253.466667pt;}
.y22{bottom:261.466667pt;}
.y7c{bottom:274.266667pt;}
.y21{bottom:282.266667pt;}
.y44{bottom:283.866667pt;}
.y7b{bottom:295.066667pt;}
.y20{bottom:303.106667pt;}
.y56{bottom:304.706667pt;}
.y7a{bottom:315.906667pt;}
.y55{bottom:322.466667pt;}
.y1f{bottom:323.906667pt;}
.y79{bottom:336.706667pt;}
.y57{bottom:342.626667pt;}
.y1e{bottom:344.706667pt;}
.y78{bottom:357.506667pt;}
.y35{bottom:365.506667pt;}
.y1d{bottom:367.106667pt;}
.y77{bottom:378.306667pt;}
.y4f{bottom:384.706667pt;}
.y1c{bottom:386.306667pt;}
.y4b{bottom:387.906667pt;}
.y76{bottom:399.106667pt;}
.y34{bottom:407.106667pt;}
.y1b{bottom:408.706667pt;}
.y75{bottom:419.906667pt;}
.y1a{bottom:427.906667pt;}
.y54{bottom:429.506667pt;}
.y74{bottom:440.706667pt;}
.y19{bottom:448.706667pt;}
.y4a{bottom:449.666667pt;}
.y53{bottom:450.306667pt;}
.y3e{bottom:452.706667pt;}
.y40{bottom:456.546667pt;}
.y43{bottom:456.866667pt;}
.y3d{bottom:459.746667pt;}
.y73{bottom:461.506667pt;}
.y3f{bottom:465.026667pt;}
.y42{bottom:465.186667pt;}
.y18{bottom:469.506667pt;}
.y41{bottom:469.826667pt;}
.y72{bottom:482.306667pt;}
.y17{bottom:490.306667pt;}
.y71{bottom:503.106667pt;}
.y52{bottom:509.826667pt;}
.y16{bottom:511.106667pt;}
.y70{bottom:523.906667pt;}
.y15{bottom:531.906667pt;}
.y6f{bottom:544.733333pt;}
.y50{bottom:552.573333pt;}
.y14{bottom:552.733333pt;}
.y59{bottom:554.333333pt;}
.y6e{bottom:565.533333pt;}
.y13{bottom:573.533333pt;}
.y4d{bottom:575.133333pt;}
.y6d{bottom:586.333333pt;}
.y12{bottom:594.333333pt;}
.y6c{bottom:607.133333pt;}
.y11{bottom:615.133333pt;}
.y6b{bottom:627.933333pt;}
.y4c{bottom:634.333333pt;}
.y10{bottom:635.933333pt;}
.y85{bottom:637.533333pt;}
.y6a{bottom:648.733333pt;}
.yf{bottom:656.733333pt;}
.y49{bottom:658.333333pt;}
.y69{bottom:669.533333pt;}
.y58{bottom:675.453333pt;}
.ye{bottom:677.533333pt;}
.y3a{bottom:680.893333pt;}
.y3c{bottom:682.493333pt;}
.y39{bottom:689.533333pt;}
.y68{bottom:690.333333pt;}
.yd{bottom:698.333333pt;}
.y3b{bottom:698.813333pt;}
.y67{bottom:711.133333pt;}
.yc{bottom:719.133333pt;}
.y66{bottom:731.933333pt;}
.yb{bottom:739.933333pt;}
.y65{bottom:752.733333pt;}
.ya{bottom:760.733333pt;}
.y37{bottom:762.333333pt;}
.y64{bottom:773.533333pt;}
.y33{bottom:781.573333pt;}
.y9{bottom:783.173333pt;}
.y63{bottom:794.373333pt;}
.y8{bottom:802.373333pt;}
.y62{bottom:815.173333pt;}
.y32{bottom:823.173333pt;}
.y7{bottom:829.253333pt;}
.y61{bottom:837.573333pt;}
.y31{bottom:843.973333pt;}
.y6{bottom:850.053333pt;}
.y60{bottom:856.773333pt;}
.y30{bottom:864.773333pt;}
.y5{bottom:870.853333pt;}
.y5f{bottom:879.173333pt;}
.y4{bottom:885.573333pt;}
.y48{bottom:887.173333pt;}
.y5e{bottom:898.373333pt;}
.y2f{bottom:906.373333pt;}
.y3{bottom:911.973333pt;}
.y5d{bottom:919.173333pt;}
.y2e{bottom:927.173333pt;}
.y5c{bottom:939.973333pt;}
.y2d{bottom:947.973333pt;}
.y47{bottom:949.573333pt;}
.y2{bottom:956.453333pt;}
.y5b{bottom:960.773333pt;}
.y2c{bottom:968.773333pt;}
.y2b{bottom:989.573333pt;}
.y1{bottom:998.053333pt;}
.y5a{bottom:999.973333pt;}
.y2a{bottom:1010.373333pt;}
.y36{bottom:1012.000000pt;}
.h5{height:29.940625pt;}
.ha{height:32.145219pt;}
.hb{height:33.980625pt;}
.h7{height:42.597500pt;}
.h6{height:44.687500pt;}
.hd{height:44.901259pt;}
.h8{height:45.156250pt;}
.h14{height:45.281250pt;}
.h15{height:46.593750pt;}
.h9{height:47.465000pt;}
.h4{height:54.260625pt;}
.h12{height:58.985000pt;}
.h2{height:60.057813pt;}
.h11{height:60.265000pt;}
.he{height:67.260625pt;}
.hc{height:72.847500pt;}
.h10{height:75.625000pt;}
.h3{height:81.778125pt;}
.h13{height:82.620625pt;}
.hf{height:95.420625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:71.999988pt;}
.x7{left:91.871988pt;}
.x5{left:93.471988pt;}
.xc{left:96.031988pt;}
.xd{left:100.031988pt;}
.xa{left:104.031988pt;}
.xe{left:106.111988pt;}
.xf{left:112.191988pt;}
.x2{left:113.791988pt;}
.x1{left:121.791988pt;}
.x10{left:133.311988pt;}
.x11{left:158.106655pt;}
.x12{left:162.266655pt;}
.x16{left:163.386655pt;}
.x13{left:168.346655pt;}
.x6{left:175.066655pt;}
.x14{left:176.186655pt;}
.x15{left:184.666655pt;}
.x18{left:198.906655pt;}
.x4{left:220.666655pt;}
.x17{left:227.226655pt;}
.x19{left:241.626655pt;}
.x1a{left:261.026655pt;}
.x8{left:295.426655pt;}
.x3{left:396.866655pt;}
.x1b{left:481.853322pt;}
.x20{left:641.253322pt;}
.x1f{left:679.813322pt;}
.x1e{left:703.493322pt;}
.xb{left:721.573322pt;}
.x1d{left:727.493322pt;}
.x1c{left:729.253322pt;}
}




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