
    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_d012d32b5be3a14c8eabef44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_41b56e48f971e5f809de5f63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b09ad9c5e721acd621b5513a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_6ba6a6abb19328000f9eb113.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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_66aae74978fbf69281b70025.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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:-23.940000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls1d{letter-spacing:-0.544800px;}
.ls4{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.414000px;}
.ls8{letter-spacing:-0.363000px;}
.ls18{letter-spacing:-0.301200px;}
.lsa{letter-spacing:-0.298200px;}
.ls10{letter-spacing:-0.214800px;}
.ls3{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.115800px;}
.ls2a{letter-spacing:-0.064800px;}
.ls17{letter-spacing:-0.061200px;}
.ls29{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.ls25{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls15{letter-spacing:0.067200px;}
.ls24{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.178800px;}
.ls6{letter-spacing:0.190200px;}
.ls16{letter-spacing:0.218400px;}
.ls21{letter-spacing:0.238800px;}
.ls1e{letter-spacing:0.279600px;}
.ls19{letter-spacing:0.309000px;}
.ls11{letter-spacing:0.314400px;}
.ls28{letter-spacing:0.433440px;}
.ls27{letter-spacing:0.479520px;}
.ls1f{letter-spacing:0.493200px;}
.ls14{letter-spacing:0.617760px;}
.lsf{letter-spacing:0.654000px;}
.ls13{letter-spacing:5.706720px;}
.ls1a{letter-spacing:10.385280px;}
.ls1c{letter-spacing:13.265280px;}
.ls20{letter-spacing:15.425280px;}
.lsd{letter-spacing:17.226720px;}
.lse{letter-spacing:20.106720px;}
.lsc{letter-spacing:21.546720px;}
.ls12{letter-spacing:22.266720px;}
.ls0{letter-spacing:38.106720px;}
.ls26{letter-spacing:42.426720px;}
.ls22{letter-spacing:44.586720px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws11{word-spacing:-15.249840px;}
.ws12{word-spacing:-15.209040px;}
.ws10{word-spacing:-15.149040px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.820160px;}
.wsf{word-spacing:-13.814760px;}
.wsc{word-spacing:-13.724160px;}
.ws14{word-spacing:-13.646160px;}
.wsb{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.444560px;}
.ws16{word-spacing:-13.440960px;}
.ws7{word-spacing:-13.389960px;}
.ws9{word-spacing:-13.290960px;}
.wse{word-spacing:-13.204560px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-295.659120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._22{margin-left:-48.382560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.292160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2e{width:3.253680px;}
._2f{width:4.638600px;}
._30{width:5.813160px;}
._34{width:7.124040px;}
._31{width:8.483400px;}
._32{width:9.686160px;}
._37{width:10.809000px;}
._35{width:11.832480px;}
._33{width:14.508360px;}
._2a{width:15.513120px;}
._2b{width:17.245920px;}
._38{width:18.346320px;}
._3b{width:19.419480px;}
._3f{width:20.856240px;}
._3e{width:22.825800px;}
._3d{width:23.844240px;}
._36{width:27.009000px;}
._2d{width:29.059320px;}
._2c{width:30.068640px;}
._43{width:35.891640px;}
._44{width:37.015560px;}
._3a{width:58.564800px;}
._39{width:59.879520px;}
._3c{width:65.616480px;}
._40{width:137.926080px;}
._42{width:199.299600px;}
._41{width:284.039280px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.520000px;}
.yb3{bottom:2.700000px;}
.y5b{bottom:6.660000px;}
.y82{bottom:23.580000px;}
.y7d{bottom:23.970000px;}
.y61{bottom:27.720000px;}
.y5d{bottom:27.750000px;}
.y60{bottom:48.780000px;}
.y74{bottom:48.810000px;}
.y6{bottom:61.380000px;}
.y5f{bottom:69.840000px;}
.y75{bottom:89.640000px;}
.ybb{bottom:89.820000px;}
.yab{bottom:90.900000px;}
.ya8{bottom:94.320000px;}
.y2f{bottom:100.620000px;}
.yba{bottom:110.880000px;}
.y73{bottom:111.420000px;}
.yaa{bottom:111.960000px;}
.yce{bottom:113.220000px;}
.yb2{bottom:121.185000px;}
.y2e{bottom:121.680000px;}
.ycf{bottom:130.860000px;}
.yb9{bottom:131.940000px;}
.ycd{bottom:134.280000px;}
.ya7{bottom:137.340000px;}
.yb1{bottom:142.245000px;}
.y2d{bottom:142.740000px;}
.yb8{bottom:153.030000px;}
.y53{bottom:153.750000px;}
.ycc{bottom:155.370000px;}
.ya5{bottom:163.260000px;}
.yb0{bottom:163.305000px;}
.y2c{bottom:163.830000px;}
.yb7{bottom:170.130000px;}
.y52{bottom:174.810000px;}
.y72{bottom:175.350000px;}
.ycb{bottom:176.430000px;}
.ya4{bottom:180.210000px;}
.yaf{bottom:184.365000px;}
.y2b{bottom:184.890000px;}
.y51{bottom:195.870000px;}
.yca{bottom:197.490000px;}
.yae{bottom:205.425000px;}
.y2a{bottom:205.950000px;}
.y88{bottom:209.910000px;}
.y50{bottom:216.930000px;}
.y71{bottom:218.190000px;}
.yc9{bottom:218.550000px;}
.yad{bottom:226.485000px;}
.y29{bottom:227.010000px;}
.y87{bottom:230.970000px;}
.y4f{bottom:237.990000px;}
.yc8{bottom:239.610000px;}
.y81{bottom:240.345000px;}
.y70{bottom:246.630000px;}
.y28{bottom:248.070000px;}
.y86{bottom:252.030000px;}
.y4e{bottom:259.050000px;}
.yc7{bottom:260.670000px;}
.y80{bottom:261.405000px;}
.y6f{bottom:267.690000px;}
.y27{bottom:269.130000px;}
.y85{bottom:273.090000px;}
.y4d{bottom:280.110000px;}
.yc6{bottom:281.730000px;}
.y7f{bottom:282.465000px;}
.y6e{bottom:288.750000px;}
.y26{bottom:290.190000px;}
.y84{bottom:293.970000px;}
.y4c{bottom:297.210000px;}
.yc5{bottom:302.790000px;}
.y6d{bottom:309.810000px;}
.y25{bottom:311.250000px;}
.y83{bottom:316.470000px;}
.yc4{bottom:323.850000px;}
.y7c{bottom:324.075000px;}
.y6c{bottom:330.870000px;}
.y7e{bottom:331.770000px;}
.y24{bottom:332.310000px;}
.yc3{bottom:344.910000px;}
.y7b{bottom:345.135000px;}
.y6b{bottom:351.930000px;}
.y23{bottom:353.370000px;}
.ya3{bottom:358.590000px;}
.yc2{bottom:365.970000px;}
.y7a{bottom:366.195000px;}
.y6a{bottom:372.990000px;}
.yc1{bottom:387.030000px;}
.y79{bottom:387.255000px;}
.y69{bottom:394.050000px;}
.y22{bottom:397.830000px;}
.yc0{bottom:408.135000px;}
.ya2{bottom:408.315000px;}
.y68{bottom:415.155000px;}
.y21{bottom:427.755000px;}
.ybf{bottom:429.195000px;}
.ya1{bottom:429.375000px;}
.y67{bottom:436.215000px;}
.y20{bottom:448.815000px;}
.ybe{bottom:450.255000px;}
.ya0{bottom:450.435000px;}
.y66{bottom:457.275000px;}
.y1f{bottom:469.875000px;}
.ybd{bottom:471.315000px;}
.y9f{bottom:471.495000px;}
.y65{bottom:478.335000px;}
.y1e{bottom:490.935000px;}
.ybc{bottom:492.375000px;}
.y9e{bottom:492.555000px;}
.y64{bottom:499.395000px;}
.y1d{bottom:511.995000px;}
.y9d{bottom:513.435000px;}
.y63{bottom:520.455000px;}
.y1c{bottom:533.055000px;}
.y9c{bottom:534.495000px;}
.y62{bottom:541.515000px;}
.y1b{bottom:554.115000px;}
.y9b{bottom:555.555000px;}
.y5e{bottom:556.635000px;}
.y1a{bottom:575.175000px;}
.y9a{bottom:576.615000px;}
.y19{bottom:596.235000px;}
.y99{bottom:597.675000px;}
.y4b{bottom:609.735000px;}
.y18{bottom:617.295000px;}
.y98{bottom:618.735000px;}
.y78{bottom:629.355000px;}
.y4a{bottom:630.795000px;}
.y17{bottom:638.355000px;}
.y97{bottom:639.795000px;}
.y5c{bottom:641.595000px;}
.y49{bottom:651.885000px;}
.y16{bottom:659.445000px;}
.y96{bottom:660.885000px;}
.y48{bottom:672.945000px;}
.y15{bottom:680.505000px;}
.y95{bottom:681.945000px;}
.y5a{bottom:684.465000px;}
.y47{bottom:694.005000px;}
.y14{bottom:701.565000px;}
.y94{bottom:703.005000px;}
.y59{bottom:712.905000px;}
.y13{bottom:722.625000px;}
.y46{bottom:724.065000px;}
.yb6{bottom:732.165000px;}
.y58{bottom:733.965000px;}
.y93{bottom:734.505000px;}
.y12{bottom:743.685000px;}
.y45{bottom:745.125000px;}
.yb5{bottom:753.225000px;}
.y57{bottom:755.025000px;}
.y92{bottom:755.565000px;}
.y11{bottom:764.745000px;}
.y44{bottom:766.005000px;}
.yb4{bottom:775.725000px;}
.y56{bottom:776.085000px;}
.y91{bottom:776.625000px;}
.y10{bottom:785.805000px;}
.y43{bottom:787.065000px;}
.yac{bottom:790.845000px;}
.y55{bottom:797.145000px;}
.y90{bottom:797.685000px;}
.y42{bottom:808.125000px;}
.yf{bottom:809.025000px;}
.y54{bottom:818.205000px;}
.y8f{bottom:818.745000px;}
.y41{bottom:829.185000px;}
.ye{bottom:835.305000px;}
.y8e{bottom:839.805000px;}
.y40{bottom:850.245000px;}
.yd{bottom:851.145000px;}
.y8d{bottom:860.865000px;}
.y3f{bottom:871.305000px;}
.yc{bottom:877.425000px;}
.y8c{bottom:881.925000px;}
.y3e{bottom:892.365000px;}
.yb{bottom:894.165000px;}
.y8b{bottom:903.030000px;}
.y3d{bottom:913.470000px;}
.ya{bottom:916.530000px;}
.y8a{bottom:924.090000px;}
.y3c{bottom:934.530000px;}
.y89{bottom:941.190000px;}
.y9{bottom:941.730000px;}
.y3b{bottom:955.590000px;}
.y8{bottom:975.390000px;}
.y3a{bottom:976.650000px;}
.y39{bottom:997.710000px;}
.y7{bottom:1009.050000px;}
.y38{bottom:1018.770000px;}
.y77{bottom:1031.730000px;}
.ya9{bottom:1032.450000px;}
.y37{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.y36{bottom:1060.890000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1081.950000px;}
.y34{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y76{bottom:1116.690000px;}
.y33{bottom:1124.070000px;}
.y32{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.ha{height:21.060000px;}
.h7{height:38.671172px;}
.hd{height:42.120000px;}
.hb{height:42.156000px;}
.h9{height:48.088125px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h12{height:126.396000px;}
.h11{height:177.660000px;}
.h13{height:240.870000px;}
.h10{height:296.850000px;}
.hf{height:401.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.636000px;}
.w7{width:161.310000px;}
.w4{width:191.730000px;}
.w9{width:203.250000px;}
.w5{width:243.030000px;}
.w6{width:273.495000px;}
.wa{width:566.430000px;}
.w8{width:620.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x6{left:53.999987px;}
.x13{left:55.260000px;}
.x1a{left:61.380000px;}
.xb{left:70.199987px;}
.xe{left:71.460000px;}
.x7{left:75.599987px;}
.x20{left:80.999987px;}
.x21{left:108.035987px;}
.x10{left:111.816000px;}
.x5{left:168.509987px;}
.x14{left:217.290000px;}
.x1f{left:227.909987px;}
.x1b{left:265.350000px;}
.x3{left:272.234987px;}
.x11{left:304.275000px;}
.x2{left:350.534987px;}
.xd{left:366.914987px;}
.x9{left:369.614987px;}
.x16{left:381.675000px;}
.x18{left:386.534987px;}
.x15{left:399.855000px;}
.x4{left:419.114987px;}
.x19{left:446.504987px;}
.xa{left:454.604987px;}
.x1{left:479.264987px;}
.x1d{left:484.860000px;}
.x12{left:548.025000px;}
.x1c{left:550.050000px;}
.x17{left:663.629987px;}
.x8{left:670.829987px;}
.xc{left:714.389987px;}
.x1e{left:838.979987px;}
@media print{
.v2{vertical-align:-21.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls1d{letter-spacing:-0.484267pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.368000pt;}
.ls8{letter-spacing:-0.322667pt;}
.ls18{letter-spacing:-0.267733pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls10{letter-spacing:-0.190933pt;}
.ls3{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls2a{letter-spacing:-0.057600pt;}
.ls17{letter-spacing:-0.054400pt;}
.ls29{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.ls25{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls15{letter-spacing:0.059733pt;}
.ls24{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.158933pt;}
.ls6{letter-spacing:0.169067pt;}
.ls16{letter-spacing:0.194133pt;}
.ls21{letter-spacing:0.212267pt;}
.ls1e{letter-spacing:0.248533pt;}
.ls19{letter-spacing:0.274667pt;}
.ls11{letter-spacing:0.279467pt;}
.ls28{letter-spacing:0.385280pt;}
.ls27{letter-spacing:0.426240pt;}
.ls1f{letter-spacing:0.438400pt;}
.ls14{letter-spacing:0.549120pt;}
.lsf{letter-spacing:0.581333pt;}
.ls13{letter-spacing:5.072640pt;}
.ls1a{letter-spacing:9.231360pt;}
.ls1c{letter-spacing:11.791360pt;}
.ls20{letter-spacing:13.711360pt;}
.lsd{letter-spacing:15.312640pt;}
.lse{letter-spacing:17.872640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls12{letter-spacing:19.792640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls26{letter-spacing:37.712640pt;}
.ls22{letter-spacing:39.632640pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws11{word-spacing:-13.555413pt;}
.ws12{word-spacing:-13.519147pt;}
.ws10{word-spacing:-13.465813pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.284587pt;}
.wsf{word-spacing:-12.279787pt;}
.wsc{word-spacing:-12.199253pt;}
.ws14{word-spacing:-12.129920pt;}
.wsb{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.950720pt;}
.ws16{word-spacing:-11.947520pt;}
.ws7{word-spacing:-11.902187pt;}
.ws9{word-spacing:-11.814187pt;}
.wse{word-spacing:-11.737387pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-262.808107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._22{margin-left:-43.006720pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.815253pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2e{width:2.892160pt;}
._2f{width:4.123200pt;}
._30{width:5.167253pt;}
._34{width:6.332480pt;}
._31{width:7.540800pt;}
._32{width:8.609920pt;}
._37{width:9.608000pt;}
._35{width:10.517760pt;}
._33{width:12.896320pt;}
._2a{width:13.789440pt;}
._2b{width:15.329707pt;}
._38{width:16.307840pt;}
._3b{width:17.261760pt;}
._3f{width:18.538880pt;}
._3e{width:20.289600pt;}
._3d{width:21.194880pt;}
._36{width:24.008000pt;}
._2d{width:25.830507pt;}
._2c{width:26.727680pt;}
._43{width:31.903680pt;}
._44{width:32.902720pt;}
._3a{width:52.057600pt;}
._39{width:53.226240pt;}
._3c{width:58.325760pt;}
._40{width:122.600960pt;}
._42{width:177.155200pt;}
._41{width:252.479360pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:2.240000pt;}
.yb3{bottom:2.400000pt;}
.y5b{bottom:5.920000pt;}
.y82{bottom:20.960000pt;}
.y7d{bottom:21.306667pt;}
.y61{bottom:24.640000pt;}
.y5d{bottom:24.666667pt;}
.y60{bottom:43.360000pt;}
.y74{bottom:43.386667pt;}
.y6{bottom:54.560000pt;}
.y5f{bottom:62.080000pt;}
.y75{bottom:79.680000pt;}
.ybb{bottom:79.840000pt;}
.yab{bottom:80.800000pt;}
.ya8{bottom:83.840000pt;}
.y2f{bottom:89.440000pt;}
.yba{bottom:98.560000pt;}
.y73{bottom:99.040000pt;}
.yaa{bottom:99.520000pt;}
.yce{bottom:100.640000pt;}
.yb2{bottom:107.720000pt;}
.y2e{bottom:108.160000pt;}
.ycf{bottom:116.320000pt;}
.yb9{bottom:117.280000pt;}
.ycd{bottom:119.360000pt;}
.ya7{bottom:122.080000pt;}
.yb1{bottom:126.440000pt;}
.y2d{bottom:126.880000pt;}
.yb8{bottom:136.026667pt;}
.y53{bottom:136.666667pt;}
.ycc{bottom:138.106667pt;}
.ya5{bottom:145.120000pt;}
.yb0{bottom:145.160000pt;}
.y2c{bottom:145.626667pt;}
.yb7{bottom:151.226667pt;}
.y52{bottom:155.386667pt;}
.y72{bottom:155.866667pt;}
.ycb{bottom:156.826667pt;}
.ya4{bottom:160.186667pt;}
.yaf{bottom:163.880000pt;}
.y2b{bottom:164.346667pt;}
.y51{bottom:174.106667pt;}
.yca{bottom:175.546667pt;}
.yae{bottom:182.600000pt;}
.y2a{bottom:183.066667pt;}
.y88{bottom:186.586667pt;}
.y50{bottom:192.826667pt;}
.y71{bottom:193.946667pt;}
.yc9{bottom:194.266667pt;}
.yad{bottom:201.320000pt;}
.y29{bottom:201.786667pt;}
.y87{bottom:205.306667pt;}
.y4f{bottom:211.546667pt;}
.yc8{bottom:212.986667pt;}
.y81{bottom:213.640000pt;}
.y70{bottom:219.226667pt;}
.y28{bottom:220.506667pt;}
.y86{bottom:224.026667pt;}
.y4e{bottom:230.266667pt;}
.yc7{bottom:231.706667pt;}
.y80{bottom:232.360000pt;}
.y6f{bottom:237.946667pt;}
.y27{bottom:239.226667pt;}
.y85{bottom:242.746667pt;}
.y4d{bottom:248.986667pt;}
.yc6{bottom:250.426667pt;}
.y7f{bottom:251.080000pt;}
.y6e{bottom:256.666667pt;}
.y26{bottom:257.946667pt;}
.y84{bottom:261.306667pt;}
.y4c{bottom:264.186667pt;}
.yc5{bottom:269.146667pt;}
.y6d{bottom:275.386667pt;}
.y25{bottom:276.666667pt;}
.y83{bottom:281.306667pt;}
.yc4{bottom:287.866667pt;}
.y7c{bottom:288.066667pt;}
.y6c{bottom:294.106667pt;}
.y7e{bottom:294.906667pt;}
.y24{bottom:295.386667pt;}
.yc3{bottom:306.586667pt;}
.y7b{bottom:306.786667pt;}
.y6b{bottom:312.826667pt;}
.y23{bottom:314.106667pt;}
.ya3{bottom:318.746667pt;}
.yc2{bottom:325.306667pt;}
.y7a{bottom:325.506667pt;}
.y6a{bottom:331.546667pt;}
.yc1{bottom:344.026667pt;}
.y79{bottom:344.226667pt;}
.y69{bottom:350.266667pt;}
.y22{bottom:353.626667pt;}
.yc0{bottom:362.786667pt;}
.ya2{bottom:362.946667pt;}
.y68{bottom:369.026667pt;}
.y21{bottom:380.226667pt;}
.ybf{bottom:381.506667pt;}
.ya1{bottom:381.666667pt;}
.y67{bottom:387.746667pt;}
.y20{bottom:398.946667pt;}
.ybe{bottom:400.226667pt;}
.ya0{bottom:400.386667pt;}
.y66{bottom:406.466667pt;}
.y1f{bottom:417.666667pt;}
.ybd{bottom:418.946667pt;}
.y9f{bottom:419.106667pt;}
.y65{bottom:425.186667pt;}
.y1e{bottom:436.386667pt;}
.ybc{bottom:437.666667pt;}
.y9e{bottom:437.826667pt;}
.y64{bottom:443.906667pt;}
.y1d{bottom:455.106667pt;}
.y9d{bottom:456.386667pt;}
.y63{bottom:462.626667pt;}
.y1c{bottom:473.826667pt;}
.y9c{bottom:475.106667pt;}
.y62{bottom:481.346667pt;}
.y1b{bottom:492.546667pt;}
.y9b{bottom:493.826667pt;}
.y5e{bottom:494.786667pt;}
.y1a{bottom:511.266667pt;}
.y9a{bottom:512.546667pt;}
.y19{bottom:529.986667pt;}
.y99{bottom:531.266667pt;}
.y4b{bottom:541.986667pt;}
.y18{bottom:548.706667pt;}
.y98{bottom:549.986667pt;}
.y78{bottom:559.426667pt;}
.y4a{bottom:560.706667pt;}
.y17{bottom:567.426667pt;}
.y97{bottom:568.706667pt;}
.y5c{bottom:570.306667pt;}
.y49{bottom:579.453333pt;}
.y16{bottom:586.173333pt;}
.y96{bottom:587.453333pt;}
.y48{bottom:598.173333pt;}
.y15{bottom:604.893333pt;}
.y95{bottom:606.173333pt;}
.y5a{bottom:608.413333pt;}
.y47{bottom:616.893333pt;}
.y14{bottom:623.613333pt;}
.y94{bottom:624.893333pt;}
.y59{bottom:633.693333pt;}
.y13{bottom:642.333333pt;}
.y46{bottom:643.613333pt;}
.yb6{bottom:650.813333pt;}
.y58{bottom:652.413333pt;}
.y93{bottom:652.893333pt;}
.y12{bottom:661.053333pt;}
.y45{bottom:662.333333pt;}
.yb5{bottom:669.533333pt;}
.y57{bottom:671.133333pt;}
.y92{bottom:671.613333pt;}
.y11{bottom:679.773333pt;}
.y44{bottom:680.893333pt;}
.yb4{bottom:689.533333pt;}
.y56{bottom:689.853333pt;}
.y91{bottom:690.333333pt;}
.y10{bottom:698.493333pt;}
.y43{bottom:699.613333pt;}
.yac{bottom:702.973333pt;}
.y55{bottom:708.573333pt;}
.y90{bottom:709.053333pt;}
.y42{bottom:718.333333pt;}
.yf{bottom:719.133333pt;}
.y54{bottom:727.293333pt;}
.y8f{bottom:727.773333pt;}
.y41{bottom:737.053333pt;}
.ye{bottom:742.493333pt;}
.y8e{bottom:746.493333pt;}
.y40{bottom:755.773333pt;}
.yd{bottom:756.573333pt;}
.y8d{bottom:765.213333pt;}
.y3f{bottom:774.493333pt;}
.yc{bottom:779.933333pt;}
.y8c{bottom:783.933333pt;}
.y3e{bottom:793.213333pt;}
.yb{bottom:794.813333pt;}
.y8b{bottom:802.693333pt;}
.y3d{bottom:811.973333pt;}
.ya{bottom:814.693333pt;}
.y8a{bottom:821.413333pt;}
.y3c{bottom:830.693333pt;}
.y89{bottom:836.613333pt;}
.y9{bottom:837.093333pt;}
.y3b{bottom:849.413333pt;}
.y8{bottom:867.013333pt;}
.y3a{bottom:868.133333pt;}
.y39{bottom:886.853333pt;}
.y7{bottom:896.933333pt;}
.y38{bottom:905.573333pt;}
.y77{bottom:917.093333pt;}
.ya9{bottom:917.733333pt;}
.y37{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.y36{bottom:943.013333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:961.733333pt;}
.y34{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y76{bottom:992.613333pt;}
.y33{bottom:999.173333pt;}
.y32{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.h7{height:34.374375pt;}
.hd{height:37.440000pt;}
.hb{height:37.472000pt;}
.h9{height:42.745000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h12{height:112.352000pt;}
.h11{height:157.920000pt;}
.h13{height:214.106667pt;}
.h10{height:263.866667pt;}
.hf{height:357.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.232000pt;}
.w7{width:143.386667pt;}
.w4{width:170.426667pt;}
.w9{width:180.666667pt;}
.w5{width:216.026667pt;}
.w6{width:243.106667pt;}
.wa{width:503.493333pt;}
.w8{width:551.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x6{left:47.999988pt;}
.x13{left:49.120000pt;}
.x1a{left:54.560000pt;}
.xb{left:62.399988pt;}
.xe{left:63.520000pt;}
.x7{left:67.199988pt;}
.x20{left:71.999988pt;}
.x21{left:96.031988pt;}
.x10{left:99.392000pt;}
.x5{left:149.786655pt;}
.x14{left:193.146667pt;}
.x1f{left:202.586655pt;}
.x1b{left:235.866667pt;}
.x3{left:241.986655pt;}
.x11{left:270.466667pt;}
.x2{left:311.586655pt;}
.xd{left:326.146655pt;}
.x9{left:328.546655pt;}
.x16{left:339.266667pt;}
.x18{left:343.586655pt;}
.x15{left:355.426667pt;}
.x4{left:372.546655pt;}
.x19{left:396.893322pt;}
.xa{left:404.093322pt;}
.x1{left:426.013322pt;}
.x1d{left:430.986667pt;}
.x12{left:487.133333pt;}
.x1c{left:488.933333pt;}
.x17{left:589.893322pt;}
.x8{left:596.293322pt;}
.xc{left:635.013322pt;}
.x1e{left:745.759988pt;}
}




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