
    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_27aea00b2b55346f47459833.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5179aab668c3930e8bb82057.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_9240491bc28448c4602541f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_86f7131df178d84ddbd1e984.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118164;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_e21a087e1c85590329aca789.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118164;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_19a60f8c547be780c9ae3d16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_52db00dceaaa8ef35e0b9d2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_23773f4b99f754230a401029.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_9de00f85a2a80427f3e94b3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.087402;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:ffb;src:url('chunks/assets/font_edfe90f348c118d126fcf89e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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:ffc;src:url('chunks/assets/font_ae5f467d3f316d785e1d5cc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-0.804000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.184200px;}
.ls5{letter-spacing:-0.172800px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.097800px;}
.ls2{letter-spacing:-0.088800px;}
.lsd{letter-spacing:-0.085200px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.095040px;}
.lsf{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.361200px;}
.ls1b{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.535800px;}
.ls6{letter-spacing:0.547200px;}
.ls17{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.080000px;}
.ls15{letter-spacing:5.184000px;}
.lse{letter-spacing:6.480000px;}
.ls19{letter-spacing:14.400000px;}
.ls12{letter-spacing:15.120000px;}
.ls14{letter-spacing:28.920000px;}
.ls13{letter-spacing:48.360000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(238,236,225),0 0.015em rgb(238,236,225),0.015em 0 rgb(238,236,225),0 -0.015em  rgb(238,236,225);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(238,236,225);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.421200px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.971200px;}
.wsf{word-spacing:-16.272000px;}
.wse{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.552000px;}
.ws5{word-spacing:-13.147200px;}
.ws6{word-spacing:-13.049400px;}
.wsa{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.527600px;}
.wsc{word-spacing:-9.808800px;}
.ws0{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._36{margin-left:-13.560000px;}
._19{margin-left:-4.308720px;}
._f{margin-left:-3.287760px;}
._1d{margin-left:-2.255280px;}
._0{margin-left:-1.236240px;}
._2{width:1.254960px;}
._3{width:2.408640px;}
._12{width:4.287360px;}
._13{width:5.544000px;}
._10{width:6.840000px;}
._11{width:8.352000px;}
._18{width:9.506160px;}
._4{width:10.643520px;}
._5{width:11.844480px;}
._15{width:13.248000px;}
._8{width:14.719440px;}
._9{width:16.073520px;}
._14{width:17.381520px;}
._1b{width:18.451680px;}
._16{width:19.560000px;}
._1a{width:20.859120px;}
._7{width:22.084800px;}
._6{width:23.366160px;}
._a{width:25.017840px;}
._1e{width:26.568000px;}
._1f{width:27.802080px;}
._17{width:29.664000px;}
._24{width:31.392000px;}
._28{width:33.840000px;}
._22{width:34.920000px;}
._e{width:36.516000px;}
._c{width:38.304000px;}
._d{width:39.377280px;}
._1c{width:41.472000px;}
._27{width:42.552000px;}
._20{width:44.208000px;}
._21{width:45.238080px;}
._23{width:46.368000px;}
._29{width:48.600000px;}
._26{width:49.872000px;}
._25{width:51.120000px;}
._2b{width:52.572240px;}
._2a{width:53.688000px;}
._3e{width:54.912240px;}
._39{width:64.152000px;}
._b{width:71.280000px;}
._3c{width:95.760000px;}
._3f{width:123.048000px;}
._30{width:154.512000px;}
._33{width:186.192000px;}
._34{width:187.367280px;}
._31{width:192.096000px;}
._2e{width:201.569040px;}
._2f{width:202.752000px;}
._40{width:230.112000px;}
._2d{width:342.000000px;}
._3b{width:343.872000px;}
._38{width:490.896000px;}
._2c{width:602.208000px;}
._3d{width:686.225280px;}
._37{width:690.780000px;}
._3a{width:712.289280px;}
._41{width:731.753280px;}
._32{width:949.788000px;}
._1{width:1260.300000px;}
._35{width:2009.376000px;}
.fc5{color:rgb(0,29,53);}
.fc3{color:transparent;}
.fc2{color:rgb(238,236,225);}
.fc6{color:rgb(71,71,71);}
.fc4{color:rgb(27,27,27);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.240000px;}
.y4{bottom:12.060000px;}
.yb{bottom:16.740000px;}
.y17{bottom:20.880000px;}
.ye{bottom:30.600000px;}
.y16{bottom:38.340000px;}
.ya{bottom:41.070000px;}
.y7{bottom:52.560000px;}
.y15{bottom:55.980000px;}
.y9{bottom:65.370000px;}
.y14{bottom:73.656000px;}
.y13{bottom:91.116000px;}
.y12{bottom:108.756000px;}
.y11{bottom:126.396000px;}
.y10{bottom:143.856000px;}
.yb9{bottom:161.850000px;}
.ydf{bottom:169.770000px;}
.y62{bottom:169.950000px;}
.y8b{bottom:180.390000px;}
.y7e{bottom:180.570000px;}
.yb8{bottom:181.110000px;}
.yb7{bottom:184.890000px;}
.y3f{bottom:187.590000px;}
.yde{bottom:190.830000px;}
.yb6{bottom:201.270000px;}
.y8a{bottom:201.450000px;}
.y61{bottom:201.630000px;}
.ydd{bottom:212.070000px;}
.y7d{bottom:212.250000px;}
.y3e{bottom:219.270000px;}
.y89{bottom:222.510000px;}
.yd{bottom:222.870000px;}
.ydc{bottom:233.130000px;}
.y60{bottom:233.310000px;}
.y88{bottom:243.750000px;}
.y7c{bottom:243.930000px;}
.y3d{bottom:250.950000px;}
.y5f{bottom:254.190000px;}
.y87{bottom:264.810000px;}
.ya8{bottom:264.990000px;}
.y5e{bottom:275.250000px;}
.y7b{bottom:275.430000px;}
.y3c{bottom:282.630000px;}
.y86{bottom:285.870000px;}
.y5d{bottom:296.490000px;}
.ya7{bottom:296.670000px;}
.y85{bottom:306.930000px;}
.y7a{bottom:307.110000px;}
.y3b{bottom:314.130000px;}
.ydb{bottom:317.550000px;}
.yb5{bottom:328.170000px;}
.y5c{bottom:328.350000px;}
.yda{bottom:338.655000px;}
.y79{bottom:338.835000px;}
.y3a{bottom:345.855000px;}
.y5b{bottom:349.275000px;}
.yd9{bottom:359.715000px;}
.ya6{bottom:359.895000px;}
.yb4{bottom:370.335000px;}
.y78{bottom:370.515000px;}
.y39{bottom:377.535000px;}
.yd8{bottom:380.955000px;}
.y5a{bottom:381.135000px;}
.yb3{bottom:391.395000px;}
.ya5{bottom:391.575000px;}
.yd7{bottom:402.015000px;}
.y77{bottom:402.195000px;}
.y38{bottom:409.215000px;}
.yb2{bottom:412.455000px;}
.y59{bottom:412.635000px;}
.yd6{bottom:423.075000px;}
.ya4{bottom:423.255000px;}
.yb1{bottom:433.695000px;}
.y76{bottom:433.875000px;}
.y37{bottom:440.895000px;}
.yd5{bottom:444.135000px;}
.y58{bottom:444.315000px;}
.yb0{bottom:454.755000px;}
.ya3{bottom:454.935000px;}
.yd4{bottom:465.375000px;}
.y75{bottom:465.555000px;}
.y36{bottom:472.575000px;}
.yaf{bottom:475.815000px;}
.y57{bottom:475.995000px;}
.yd3{bottom:486.435000px;}
.ya2{bottom:486.615000px;}
.yae{bottom:496.875000px;}
.y74{bottom:497.055000px;}
.yc{bottom:502.995000px;}
.y35{bottom:504.075000px;}
.yd2{bottom:507.495000px;}
.y56{bottom:507.675000px;}
.yad{bottom:518.115000px;}
.ya1{bottom:518.295000px;}
.yd1{bottom:528.555000px;}
.y73{bottom:528.735000px;}
.y34{bottom:535.755000px;}
.yab{bottom:539.175000px;}
.y55{bottom:539.355000px;}
.yac{bottom:543.675000px;}
.yd0{bottom:549.795000px;}
.ya0{bottom:549.975000px;}
.yaa{bottom:560.235000px;}
.y72{bottom:560.415000px;}
.y33{bottom:567.435000px;}
.ycf{bottom:570.855000px;}
.y54{bottom:571.035000px;}
.y84{bottom:581.295000px;}
.y9f{bottom:581.475000px;}
.yce{bottom:591.915000px;}
.y71{bottom:592.095000px;}
.y32{bottom:599.115000px;}
.y83{bottom:602.535000px;}
.y53{bottom:602.715000px;}
.ycd{bottom:613.005000px;}
.y9e{bottom:613.185000px;}
.y82{bottom:623.625000px;}
.y70{bottom:623.805000px;}
.y31{bottom:630.825000px;}
.ycc{bottom:634.065000px;}
.y52{bottom:634.245000px;}
.ye0{bottom:643.245000px;}
.y9d{bottom:644.865000px;}
.y30{bottom:651.705000px;}
.ycb{bottom:655.305000px;}
.y6f{bottom:655.485000px;}
.y51{bottom:665.925000px;}
.y2f{bottom:672.765000px;}
.yca{bottom:676.365000px;}
.y9c{bottom:676.545000px;}
.y6e{bottom:687.165000px;}
.y2e{bottom:694.005000px;}
.yc9{bottom:697.425000px;}
.y50{bottom:697.605000px;}
.y81{bottom:708.045000px;}
.y9b{bottom:708.225000px;}
.y2d{bottom:715.065000px;}
.yc8{bottom:718.485000px;}
.y6d{bottom:718.665000px;}
.y80{bottom:729.105000px;}
.y4f{bottom:729.285000px;}
.y2c{bottom:736.125000px;}
.yc7{bottom:739.725000px;}
.y9a{bottom:739.905000px;}
.y7f{bottom:750.165000px;}
.y6c{bottom:750.345000px;}
.y2b{bottom:757.185000px;}
.yc6{bottom:760.785000px;}
.y4e{bottom:760.965000px;}
.y99{bottom:771.405000px;}
.y2a{bottom:778.425000px;}
.yc5{bottom:781.845000px;}
.y6b{bottom:782.025000px;}
.y4d{bottom:792.645000px;}
.y29{bottom:799.485000px;}
.yc4{bottom:802.905000px;}
.y98{bottom:803.085000px;}
.y6a{bottom:813.705000px;}
.y28{bottom:820.545000px;}
.yc3{bottom:824.145000px;}
.y4c{bottom:824.325000px;}
.y97{bottom:834.765000px;}
.y27{bottom:841.605000px;}
.yc2{bottom:845.205000px;}
.y69{bottom:845.385000px;}
.y4b{bottom:855.825000px;}
.y26{bottom:862.845000px;}
.yc1{bottom:866.265000px;}
.y96{bottom:866.445000px;}
.y68{bottom:877.110000px;}
.y25{bottom:883.950000px;}
.yc0{bottom:887.370000px;}
.y4a{bottom:887.550000px;}
.y95{bottom:898.170000px;}
.y3{bottom:903.390000px;}
.y24{bottom:905.010000px;}
.y49{bottom:908.610000px;}
.y67{bottom:908.790000px;}
.y23{bottom:926.070000px;}
.y48{bottom:929.670000px;}
.y94{bottom:929.850000px;}
.y66{bottom:940.290000px;}
.y22{bottom:947.130000px;}
.y47{bottom:950.730000px;}
.y93{bottom:961.530000px;}
.y21{bottom:968.370000px;}
.ybf{bottom:971.790000px;}
.y65{bottom:971.970000px;}
.y46{bottom:982.590000px;}
.y20{bottom:989.430000px;}
.ybe{bottom:992.850000px;}
.y92{bottom:993.030000px;}
.y64{bottom:1003.650000px;}
.y1f{bottom:1011.390000px;}
.ybd{bottom:1014.090000px;}
.y45{bottom:1014.270000px;}
.y91{bottom:1024.710000px;}
.y44{bottom:1035.150000px;}
.y63{bottom:1035.330000px;}
.y1e{bottom:1035.870000px;}
.ybc{bottom:1056.210000px;}
.y90{bottom:1056.390000px;}
.y1d{bottom:1060.530000px;}
.y43{bottom:1067.010000px;}
.ybb{bottom:1077.270000px;}
.y1c{bottom:1085.190000px;}
.y8f{bottom:1088.070000px;}
.yba{bottom:1098.510000px;}
.y42{bottom:1098.690000px;}
.y8{bottom:1107.870000px;}
.y1b{bottom:1109.850000px;}
.ya9{bottom:1119.570000px;}
.y8e{bottom:1119.750000px;}
.y41{bottom:1130.190000px;}
.y1a{bottom:1134.510000px;}
.y8d{bottom:1140.660000px;}
.y6{bottom:1141.380000px;}
.y19{bottom:1159.020000px;}
.y8c{bottom:1161.720000px;}
.y40{bottom:1161.900000px;}
.y5{bottom:1162.260000px;}
.yf{bottom:1183.320000px;}
.y2{bottom:1184.040000px;}
.y1{bottom:1204.020000px;}
.h4{height:29.160000px;}
.h10{height:33.830156px;}
.hf{height:42.351328px;}
.hb{height:52.465078px;}
.h11{height:57.636562px;}
.h6{height:62.648438px;}
.he{height:63.210938px;}
.h3{height:65.884219px;}
.hc{height:73.298672px;}
.hd{height:73.956797px;}
.h2{height:74.004654px;}
.h5{height:74.953125px;}
.h8{height:76.507031px;}
.ha{height:98.426190px;}
.h7{height:106.416000px;}
.h9{height:244.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.996000px;}
.w5{width:717.090000px;}
.w4{width:892.979972px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:10.800000px;}
.x5{left:14.579972px;}
.x6{left:22.499972px;}
.x1{left:42.479987px;}
.x8{left:51.660000px;}
.x3{left:127.655987px;}
.x1e{left:132.515987px;}
.xc{left:145.835987px;}
.xe{left:149.435987px;}
.x1d{left:159.509987px;}
.x1f{left:170.129973px;}
.x1a{left:180.749987px;}
.x12{left:233.489987px;}
.x1b{left:242.489973px;}
.x1c{left:249.689987px;}
.x13{left:254.909987px;}
.x11{left:271.289987px;}
.x15{left:283.394987px;}
.x17{left:289.694987px;}
.x7{left:291.674972px;}
.x14{left:334.154987px;}
.x10{left:340.094987px;}
.xa{left:351.615000px;}
.x16{left:356.114987px;}
.xd{left:382.934987px;}
.x20{left:386.174987px;}
.x19{left:407.054987px;}
.xf{left:413.894987px;}
.x18{left:416.234987px;}
.xb{left:451.874987px;}
.x2{left:825.450000px;}
.x4{left:897.839987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.163733pt;}
.ls5{letter-spacing:-0.153600pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.086933pt;}
.ls2{letter-spacing:-0.078933pt;}
.lsd{letter-spacing:-0.075733pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.084480pt;}
.lsf{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.321067pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.476267pt;}
.ls6{letter-spacing:0.486400pt;}
.ls17{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls15{letter-spacing:4.608000pt;}
.lse{letter-spacing:5.760000pt;}
.ls19{letter-spacing:12.800000pt;}
.ls12{letter-spacing:13.440000pt;}
.ls14{letter-spacing:25.706667pt;}
.ls13{letter-spacing:42.986667pt;}
.ws2{word-spacing:-19.041067pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.641067pt;}
.wsf{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws5{word-spacing:-11.686400pt;}
.ws6{word-spacing:-11.599467pt;}
.wsa{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.357867pt;}
.wsc{word-spacing:-8.718933pt;}
.ws0{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._36{margin-left:-12.053333pt;}
._19{margin-left:-3.829973pt;}
._f{margin-left:-2.922453pt;}
._1d{margin-left:-2.004693pt;}
._0{margin-left:-1.098880pt;}
._2{width:1.115520pt;}
._3{width:2.141013pt;}
._12{width:3.810987pt;}
._13{width:4.928000pt;}
._10{width:6.080000pt;}
._11{width:7.424000pt;}
._18{width:8.449920pt;}
._4{width:9.460907pt;}
._5{width:10.528427pt;}
._15{width:11.776000pt;}
._8{width:13.083947pt;}
._9{width:14.287573pt;}
._14{width:15.450240pt;}
._1b{width:16.401493pt;}
._16{width:17.386667pt;}
._1a{width:18.541440pt;}
._7{width:19.630933pt;}
._6{width:20.769920pt;}
._a{width:22.238080pt;}
._1e{width:23.616000pt;}
._1f{width:24.712960pt;}
._17{width:26.368000pt;}
._24{width:27.904000pt;}
._28{width:30.080000pt;}
._22{width:31.040000pt;}
._e{width:32.458667pt;}
._c{width:34.048000pt;}
._d{width:35.002027pt;}
._1c{width:36.864000pt;}
._27{width:37.824000pt;}
._20{width:39.296000pt;}
._21{width:40.211627pt;}
._23{width:41.216000pt;}
._29{width:43.200000pt;}
._26{width:44.330667pt;}
._25{width:45.440000pt;}
._2b{width:46.730880pt;}
._2a{width:47.722667pt;}
._3e{width:48.810880pt;}
._39{width:57.024000pt;}
._b{width:63.360000pt;}
._3c{width:85.120000pt;}
._3f{width:109.376000pt;}
._30{width:137.344000pt;}
._33{width:165.504000pt;}
._34{width:166.548693pt;}
._31{width:170.752000pt;}
._2e{width:179.172480pt;}
._2f{width:180.224000pt;}
._40{width:204.544000pt;}
._2d{width:304.000000pt;}
._3b{width:305.664000pt;}
._38{width:436.352000pt;}
._2c{width:535.296000pt;}
._3d{width:609.978027pt;}
._37{width:614.026667pt;}
._3a{width:633.146027pt;}
._41{width:650.447360pt;}
._32{width:844.256000pt;}
._1{width:1120.266667pt;}
._35{width:1786.112000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.880000pt;}
.y4{bottom:10.720000pt;}
.yb{bottom:14.880000pt;}
.y17{bottom:18.560000pt;}
.ye{bottom:27.200000pt;}
.y16{bottom:34.080000pt;}
.ya{bottom:36.506667pt;}
.y7{bottom:46.720000pt;}
.y15{bottom:49.760000pt;}
.y9{bottom:58.106667pt;}
.y14{bottom:65.472000pt;}
.y13{bottom:80.992000pt;}
.y12{bottom:96.672000pt;}
.y11{bottom:112.352000pt;}
.y10{bottom:127.872000pt;}
.yb9{bottom:143.866667pt;}
.ydf{bottom:150.906667pt;}
.y62{bottom:151.066667pt;}
.y8b{bottom:160.346667pt;}
.y7e{bottom:160.506667pt;}
.yb8{bottom:160.986667pt;}
.yb7{bottom:164.346667pt;}
.y3f{bottom:166.746667pt;}
.yde{bottom:169.626667pt;}
.yb6{bottom:178.906667pt;}
.y8a{bottom:179.066667pt;}
.y61{bottom:179.226667pt;}
.ydd{bottom:188.506667pt;}
.y7d{bottom:188.666667pt;}
.y3e{bottom:194.906667pt;}
.y89{bottom:197.786667pt;}
.yd{bottom:198.106667pt;}
.ydc{bottom:207.226667pt;}
.y60{bottom:207.386667pt;}
.y88{bottom:216.666667pt;}
.y7c{bottom:216.826667pt;}
.y3d{bottom:223.066667pt;}
.y5f{bottom:225.946667pt;}
.y87{bottom:235.386667pt;}
.ya8{bottom:235.546667pt;}
.y5e{bottom:244.666667pt;}
.y7b{bottom:244.826667pt;}
.y3c{bottom:251.226667pt;}
.y86{bottom:254.106667pt;}
.y5d{bottom:263.546667pt;}
.ya7{bottom:263.706667pt;}
.y85{bottom:272.826667pt;}
.y7a{bottom:272.986667pt;}
.y3b{bottom:279.226667pt;}
.ydb{bottom:282.266667pt;}
.yb5{bottom:291.706667pt;}
.y5c{bottom:291.866667pt;}
.yda{bottom:301.026667pt;}
.y79{bottom:301.186667pt;}
.y3a{bottom:307.426667pt;}
.y5b{bottom:310.466667pt;}
.yd9{bottom:319.746667pt;}
.ya6{bottom:319.906667pt;}
.yb4{bottom:329.186667pt;}
.y78{bottom:329.346667pt;}
.y39{bottom:335.586667pt;}
.yd8{bottom:338.626667pt;}
.y5a{bottom:338.786667pt;}
.yb3{bottom:347.906667pt;}
.ya5{bottom:348.066667pt;}
.yd7{bottom:357.346667pt;}
.y77{bottom:357.506667pt;}
.y38{bottom:363.746667pt;}
.yb2{bottom:366.626667pt;}
.y59{bottom:366.786667pt;}
.yd6{bottom:376.066667pt;}
.ya4{bottom:376.226667pt;}
.yb1{bottom:385.506667pt;}
.y76{bottom:385.666667pt;}
.y37{bottom:391.906667pt;}
.yd5{bottom:394.786667pt;}
.y58{bottom:394.946667pt;}
.yb0{bottom:404.226667pt;}
.ya3{bottom:404.386667pt;}
.yd4{bottom:413.666667pt;}
.y75{bottom:413.826667pt;}
.y36{bottom:420.066667pt;}
.yaf{bottom:422.946667pt;}
.y57{bottom:423.106667pt;}
.yd3{bottom:432.386667pt;}
.ya2{bottom:432.546667pt;}
.yae{bottom:441.666667pt;}
.y74{bottom:441.826667pt;}
.yc{bottom:447.106667pt;}
.y35{bottom:448.066667pt;}
.yd2{bottom:451.106667pt;}
.y56{bottom:451.266667pt;}
.yad{bottom:460.546667pt;}
.ya1{bottom:460.706667pt;}
.yd1{bottom:469.826667pt;}
.y73{bottom:469.986667pt;}
.y34{bottom:476.226667pt;}
.yab{bottom:479.266667pt;}
.y55{bottom:479.426667pt;}
.yac{bottom:483.266667pt;}
.yd0{bottom:488.706667pt;}
.ya0{bottom:488.866667pt;}
.yaa{bottom:497.986667pt;}
.y72{bottom:498.146667pt;}
.y33{bottom:504.386667pt;}
.ycf{bottom:507.426667pt;}
.y54{bottom:507.586667pt;}
.y84{bottom:516.706667pt;}
.y9f{bottom:516.866667pt;}
.yce{bottom:526.146667pt;}
.y71{bottom:526.306667pt;}
.y32{bottom:532.546667pt;}
.y83{bottom:535.586667pt;}
.y53{bottom:535.746667pt;}
.ycd{bottom:544.893333pt;}
.y9e{bottom:545.053333pt;}
.y82{bottom:554.333333pt;}
.y70{bottom:554.493333pt;}
.y31{bottom:560.733333pt;}
.ycc{bottom:563.613333pt;}
.y52{bottom:563.773333pt;}
.ye0{bottom:571.773333pt;}
.y9d{bottom:573.213333pt;}
.y30{bottom:579.293333pt;}
.ycb{bottom:582.493333pt;}
.y6f{bottom:582.653333pt;}
.y51{bottom:591.933333pt;}
.y2f{bottom:598.013333pt;}
.yca{bottom:601.213333pt;}
.y9c{bottom:601.373333pt;}
.y6e{bottom:610.813333pt;}
.y2e{bottom:616.893333pt;}
.yc9{bottom:619.933333pt;}
.y50{bottom:620.093333pt;}
.y81{bottom:629.373333pt;}
.y9b{bottom:629.533333pt;}
.y2d{bottom:635.613333pt;}
.yc8{bottom:638.653333pt;}
.y6d{bottom:638.813333pt;}
.y80{bottom:648.093333pt;}
.y4f{bottom:648.253333pt;}
.y2c{bottom:654.333333pt;}
.yc7{bottom:657.533333pt;}
.y9a{bottom:657.693333pt;}
.y7f{bottom:666.813333pt;}
.y6c{bottom:666.973333pt;}
.y2b{bottom:673.053333pt;}
.yc6{bottom:676.253333pt;}
.y4e{bottom:676.413333pt;}
.y99{bottom:685.693333pt;}
.y2a{bottom:691.933333pt;}
.yc5{bottom:694.973333pt;}
.y6b{bottom:695.133333pt;}
.y4d{bottom:704.573333pt;}
.y29{bottom:710.653333pt;}
.yc4{bottom:713.693333pt;}
.y98{bottom:713.853333pt;}
.y6a{bottom:723.293333pt;}
.y28{bottom:729.373333pt;}
.yc3{bottom:732.573333pt;}
.y4c{bottom:732.733333pt;}
.y97{bottom:742.013333pt;}
.y27{bottom:748.093333pt;}
.yc2{bottom:751.293333pt;}
.y69{bottom:751.453333pt;}
.y4b{bottom:760.733333pt;}
.y26{bottom:766.973333pt;}
.yc1{bottom:770.013333pt;}
.y96{bottom:770.173333pt;}
.y68{bottom:779.653333pt;}
.y25{bottom:785.733333pt;}
.yc0{bottom:788.773333pt;}
.y4a{bottom:788.933333pt;}
.y95{bottom:798.373333pt;}
.y3{bottom:803.013333pt;}
.y24{bottom:804.453333pt;}
.y49{bottom:807.653333pt;}
.y67{bottom:807.813333pt;}
.y23{bottom:823.173333pt;}
.y48{bottom:826.373333pt;}
.y94{bottom:826.533333pt;}
.y66{bottom:835.813333pt;}
.y22{bottom:841.893333pt;}
.y47{bottom:845.093333pt;}
.y93{bottom:854.693333pt;}
.y21{bottom:860.773333pt;}
.ybf{bottom:863.813333pt;}
.y65{bottom:863.973333pt;}
.y46{bottom:873.413333pt;}
.y20{bottom:879.493333pt;}
.ybe{bottom:882.533333pt;}
.y92{bottom:882.693333pt;}
.y64{bottom:892.133333pt;}
.y1f{bottom:899.013333pt;}
.ybd{bottom:901.413333pt;}
.y45{bottom:901.573333pt;}
.y91{bottom:910.853333pt;}
.y44{bottom:920.133333pt;}
.y63{bottom:920.293333pt;}
.y1e{bottom:920.773333pt;}
.ybc{bottom:938.853333pt;}
.y90{bottom:939.013333pt;}
.y1d{bottom:942.693333pt;}
.y43{bottom:948.453333pt;}
.ybb{bottom:957.573333pt;}
.y1c{bottom:964.613333pt;}
.y8f{bottom:967.173333pt;}
.yba{bottom:976.453333pt;}
.y42{bottom:976.613333pt;}
.y8{bottom:984.773333pt;}
.y1b{bottom:986.533333pt;}
.ya9{bottom:995.173333pt;}
.y8e{bottom:995.333333pt;}
.y41{bottom:1004.613333pt;}
.y1a{bottom:1008.453333pt;}
.y8d{bottom:1013.920000pt;}
.y6{bottom:1014.560000pt;}
.y19{bottom:1030.240000pt;}
.y8c{bottom:1032.640000pt;}
.y40{bottom:1032.800000pt;}
.y5{bottom:1033.120000pt;}
.yf{bottom:1051.840000pt;}
.y2{bottom:1052.480000pt;}
.y1{bottom:1070.240000pt;}
.h4{height:25.920000pt;}
.h10{height:30.071250pt;}
.hf{height:37.645625pt;}
.hb{height:46.635625pt;}
.h11{height:51.232500pt;}
.h6{height:55.687500pt;}
.he{height:56.187500pt;}
.h3{height:58.563750pt;}
.hc{height:65.154375pt;}
.hd{height:65.739375pt;}
.h2{height:65.781915pt;}
.h5{height:66.625000pt;}
.h8{height:68.006250pt;}
.ha{height:87.489947pt;}
.h7{height:94.592000pt;}
.h9{height:217.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.552000pt;}
.w5{width:637.413333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.600000pt;}
.x5{left:12.959976pt;}
.x6{left:19.999976pt;}
.x1{left:37.759988pt;}
.x8{left:45.920000pt;}
.x3{left:113.471988pt;}
.x1e{left:117.791988pt;}
.xc{left:129.631988pt;}
.xe{left:132.831988pt;}
.x1d{left:141.786655pt;}
.x1f{left:151.226643pt;}
.x1a{left:160.666655pt;}
.x12{left:207.546655pt;}
.x1b{left:215.546643pt;}
.x1c{left:221.946655pt;}
.x13{left:226.586655pt;}
.x11{left:241.146655pt;}
.x15{left:251.906655pt;}
.x17{left:257.506655pt;}
.x7{left:259.266642pt;}
.x14{left:297.026655pt;}
.x10{left:302.306655pt;}
.xa{left:312.546667pt;}
.x16{left:316.546655pt;}
.xd{left:340.386655pt;}
.x20{left:343.266655pt;}
.x19{left:361.826655pt;}
.xf{left:367.906655pt;}
.x18{left:369.986655pt;}
.xb{left:401.666655pt;}
.x2{left:733.733333pt;}
.x4{left:798.079988pt;}
}




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