
    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_8830eb3a494a020e088ebe38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_6a9c63f35068fa5b38ad354a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_ee26fe0b7bc80c7e7518f77e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_32acfb105ff201b0ce9ddab4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_72c4d024a7a931f551069d85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_952972f7a45e84f676c03cb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_f88cc3e6c1cbfb5b6295e1af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:72.000000px;}
.ls2d{letter-spacing:-10.080000px;}
.ls31{letter-spacing:-7.200000px;}
.ls2e{letter-spacing:-3.288000px;}
.ls30{letter-spacing:-3.078000px;}
.ls21{letter-spacing:-0.894000px;}
.ls36{letter-spacing:-0.846000px;}
.ls1b{letter-spacing:-0.714000px;}
.ls25{letter-spacing:-0.678000px;}
.ls35{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.585600px;}
.ls1e{letter-spacing:-0.565200px;}
.ls37{letter-spacing:-0.441600px;}
.ls39{letter-spacing:-0.406200px;}
.ls1a{letter-spacing:-0.302400px;}
.ls16{letter-spacing:-0.276600px;}
.ls19{letter-spacing:-0.264000px;}
.ls2a{letter-spacing:-0.261600px;}
.ls18{letter-spacing:-0.182400px;}
.ls17{letter-spacing:-0.173400px;}
.ls12{letter-spacing:-0.162600px;}
.ls34{letter-spacing:-0.145200px;}
.ls1d{letter-spacing:-0.144600px;}
.ls23{letter-spacing:-0.132600px;}
.ls2c{letter-spacing:-0.128400px;}
.ls20{letter-spacing:-0.115200px;}
.ls1f{letter-spacing:-0.076200px;}
.ls2f{letter-spacing:-0.049680px;}
.ls13{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005040px;}
.ls7{letter-spacing:0.042480px;}
.ls27{letter-spacing:0.049680px;}
.ls24{letter-spacing:0.062400px;}
.ls38{letter-spacing:0.070800px;}
.ls26{letter-spacing:0.071400px;}
.ls14{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.153600px;}
.lsf{letter-spacing:0.169680px;}
.lsc{letter-spacing:0.171360px;}
.ls2b{letter-spacing:0.225600px;}
.ls5{letter-spacing:0.226944px;}
.ls32{letter-spacing:0.232800px;}
.ls33{letter-spacing:0.278400px;}
.ls3a{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.303600px;}
.ls1c{letter-spacing:0.361200px;}
.ls28{letter-spacing:0.587400px;}
.lse{letter-spacing:1.511280px;}
.lsd{letter-spacing:6.551280px;}
.ls22{letter-spacing:7.980000px;}
.ls1{letter-spacing:9.935280px;}
.ls6{letter-spacing:13.751280px;}
.ls11{letter-spacing:19.511280px;}
.lsb{letter-spacing:25.784640px;}
.ls9{letter-spacing:37.511280px;}
.ls29{letter-spacing:43.980000px;}
.ls3{letter-spacing:50.975280px;}
.ls4{letter-spacing:64.899360px;}
.lsa{letter-spacing:76.391280px;}
.ls8{letter-spacing:253.511280px;}
.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;}
}
.ws2d{word-spacing:-120.096000px;}
.ws0{word-spacing:-58.464000px;}
.wsb{word-spacing:-39.385920px;}
.ws7{word-spacing:-39.328320px;}
.ws5{word-spacing:-39.178320px;}
.ws1{word-spacing:-39.159120px;}
.wsf{word-spacing:-39.053952px;}
.wsc{word-spacing:-39.024720px;}
.wse{word-spacing:-38.977752px;}
.ws4{word-spacing:-38.851320px;}
.ws6{word-spacing:-38.842320px;}
.ws8{word-spacing:-38.760720px;}
.ws3{word-spacing:-38.748120px;}
.ws9{word-spacing:-38.722320px;}
.wsd{word-spacing:-38.459520px;}
.ws2{word-spacing:-38.439120px;}
.wsa{word-spacing:-38.310720px;}
.ws10{word-spacing:-38.130720px;}
.ws16{word-spacing:-24.996120px;}
.ws23{word-spacing:-24.687120px;}
.ws21{word-spacing:-24.641520px;}
.ws19{word-spacing:-24.634320px;}
.ws28{word-spacing:-24.479520px;}
.ws13{word-spacing:-24.471120px;}
.ws15{word-spacing:-24.458400px;}
.ws12{word-spacing:-24.451200px;}
.ws20{word-spacing:-24.413760px;}
.ws17{word-spacing:-24.408720px;}
.ws1d{word-spacing:-24.359040px;}
.ws22{word-spacing:-24.280320px;}
.ws11{word-spacing:-24.276120px;}
.ws24{word-spacing:-24.263520px;}
.ws18{word-spacing:-24.147120px;}
.ws29{word-spacing:-24.002520px;}
.ws27{word-spacing:-23.967120px;}
.ws25{word-spacing:-23.748720px;}
.ws14{word-spacing:-23.730720px;}
.ws26{word-spacing:-23.562720px;}
.ws1e{word-spacing:-21.330720px;}
.ws1c{word-spacing:-21.120720px;}
.ws1f{word-spacing:-17.208720px;}
.ws1b{word-spacing:-14.328720px;}
.ws2e{word-spacing:0.000000px;}
.ws1a{word-spacing:93.559680px;}
.ws2c{word-spacing:225.441840px;}
.ws2a{word-spacing:307.226880px;}
.ws2b{word-spacing:307.460400px;}
._2{margin-left:-23.976000px;}
._6{margin-left:-21.723120px;}
._3{margin-left:-15.912000px;}
._8{margin-left:-12.312000px;}
._7{margin-left:-11.153760px;}
._32{margin-left:-9.110880px;}
._2a{margin-left:-6.220320px;}
._5{margin-left:-4.997520px;}
._1{margin-left:-3.204000px;}
._0{margin-left:-1.824360px;}
._4{width:1.272000px;}
._2b{width:2.621520px;}
._1e{width:4.052880px;}
._43{width:5.818800px;}
._1a{width:7.115640px;}
._1d{width:8.545680px;}
._f{width:9.822240px;}
._10{width:11.401920px;}
._11{width:12.444960px;}
._2c{width:13.588080px;}
._2e{width:17.305320px;}
._2d{width:18.933600px;}
._4d{width:20.876280px;}
._3f{width:23.206920px;}
._1f{width:24.432360px;}
._13{width:25.568160px;}
._12{width:26.747160px;}
._36{width:28.288440px;}
._42{width:33.046080px;}
._41{width:34.351200px;}
._18{width:35.978760px;}
._19{width:37.038240px;}
._40{width:38.057640px;}
._49{width:41.907480px;}
._48{width:43.091160px;}
._3e{width:44.397360px;}
._35{width:48.467400px;}
._26{width:51.504240px;}
._c{width:53.320320px;}
._d{width:54.565680px;}
._3a{width:55.999200px;}
._3d{width:57.157200px;}
._1b{width:58.301520px;}
._a{width:59.429880px;}
._9{width:60.532560px;}
._e{width:62.961840px;}
._33{width:64.629960px;}
._28{width:71.186160px;}
._27{width:72.578880px;}
._23{width:76.265760px;}
._22{width:78.199080px;}
._38{width:86.009640px;}
._39{width:87.093840px;}
._24{width:91.067760px;}
._25{width:92.291640px;}
._b{width:98.376360px;}
._4a{width:102.764160px;}
._4f{width:103.821720px;}
._1c{width:106.617600px;}
._34{width:114.418800px;}
._37{width:122.367600px;}
._21{width:132.418560px;}
._20{width:133.424040px;}
._14{width:135.843840px;}
._15{width:137.249520px;}
._3c{width:144.336720px;}
._31{width:150.358920px;}
._29{width:153.102960px;}
._17{width:161.183520px;}
._16{width:162.793440px;}
._4e{width:165.119760px;}
._4c{width:202.191120px;}
._4b{width:203.898120px;}
._2f{width:214.560360px;}
._30{width:215.755080px;}
._3b{width:252.628080px;}
._46{width:282.310560px;}
._47{width:314.178720px;}
._45{width:337.795680px;}
._44{width:420.287760px;}
._50{width:568.616520px;}
.fc4{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(29,73,154);}
.fs7{font-size:120.240000px;}
.fs6{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.fs4{font-size:288.000000px;}
.fs3{font-size:324.000000px;}
.fs8{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:26.820000px;}
.y62{bottom:149.904000px;}
.y61{bottom:185.910000px;}
.y60{bottom:221.910000px;}
.y5f{bottom:257.910000px;}
.y59{bottom:270.105000px;}
.y5e{bottom:293.910000px;}
.y58{bottom:327.705000px;}
.y5d{bottom:329.910000px;}
.y5c{bottom:365.910000px;}
.y57{bottom:385.305000px;}
.y5b{bottom:401.910000px;}
.y56{bottom:495.030000px;}
.y5a{bottom:507.270000px;}
.y7b{bottom:702.570000px;}
.y7a{bottom:738.570000px;}
.y79{bottom:774.570000px;}
.y78{bottom:810.570000px;}
.y77{bottom:846.570000px;}
.y76{bottom:882.570000px;}
.y75{bottom:918.570000px;}
.y74{bottom:954.570000px;}
.y73{bottom:990.570000px;}
.y72{bottom:1026.570000px;}
.y71{bottom:1062.570000px;}
.y67{bottom:1184.370000px;}
.y65{bottom:1242.615000px;}
.y64{bottom:1260.615000px;}
.y66{bottom:1278.615000px;}
.y3e{bottom:1524.930000px;}
.y3d{bottom:1560.930000px;}
.y3c{bottom:1596.930000px;}
.y3b{bottom:1632.930000px;}
.y3a{bottom:1668.930000px;}
.y70{bottom:1690.560000px;}
.y39{bottom:1704.930000px;}
.y6f{bottom:1726.560000px;}
.y38{bottom:1740.930000px;}
.y6e{bottom:1762.560000px;}
.y37{bottom:1776.930000px;}
.y6d{bottom:1798.560000px;}
.y36{bottom:1812.930000px;}
.y6c{bottom:1834.560000px;}
.y35{bottom:1848.930000px;}
.y6b{bottom:1870.560000px;}
.y34{bottom:1884.930000px;}
.y6a{bottom:1906.560000px;}
.y33{bottom:1920.930000px;}
.y69{bottom:1942.560000px;}
.y22{bottom:2055.090000px;}
.y32{bottom:2092.755000px;}
.y21{bottom:2112.690000px;}
.y31{bottom:2143.155000px;}
.y20{bottom:2170.290000px;}
.y30{bottom:2193.555000px;}
.y1f{bottom:2227.890000px;}
.y2f{bottom:2321.460000px;}
.y1e{bottom:2343.135000px;}
.y2e{bottom:2379.060000px;}
.y1d{bottom:2400.735000px;}
.y2d{bottom:2436.660000px;}
.y1c{bottom:2458.335000px;}
.y2c{bottom:2494.260000px;}
.y1b{bottom:2515.935000px;}
.y2b{bottom:2551.860000px;}
.y1a{bottom:2573.535000px;}
.y2a{bottom:2609.460000px;}
.y29{bottom:2667.060000px;}
.y19{bottom:2681.535000px;}
.y28{bottom:2724.660000px;}
.y18{bottom:2739.135000px;}
.y27{bottom:2782.290000px;}
.y17{bottom:2796.735000px;}
.y26{bottom:2839.890000px;}
.y16{bottom:2854.335000px;}
.y25{bottom:2897.490000px;}
.y15{bottom:2911.935000px;}
.y24{bottom:2955.090000px;}
.y14{bottom:3052.185000px;}
.y23{bottom:3052.335000px;}
.y55{bottom:3120.735000px;}
.y54{bottom:3156.735000px;}
.y13{bottom:3177.390000px;}
.y53{bottom:3192.735000px;}
.y52{bottom:3228.735000px;}
.y12{bottom:3234.990000px;}
.y51{bottom:3264.735000px;}
.y11{bottom:3292.590000px;}
.y50{bottom:3300.735000px;}
.y4f{bottom:3336.735000px;}
.y10{bottom:3350.190000px;}
.y4e{bottom:3372.735000px;}
.yf{bottom:3407.790000px;}
.y4d{bottom:3408.735000px;}
.y4c{bottom:3444.735000px;}
.ye{bottom:3465.390000px;}
.y4b{bottom:3480.735000px;}
.y4a{bottom:3516.735000px;}
.yd{bottom:3522.990000px;}
.y49{bottom:3552.735000px;}
.yc{bottom:3580.590000px;}
.y48{bottom:3588.765000px;}
.y47{bottom:3624.765000px;}
.yb{bottom:3638.190000px;}
.y46{bottom:3660.765000px;}
.ya{bottom:3695.790000px;}
.y9{bottom:3753.390000px;}
.y8{bottom:3810.990000px;}
.y45{bottom:3850.020000px;}
.y7{bottom:3868.590000px;}
.y44{bottom:3886.020000px;}
.y43{bottom:3922.020000px;}
.y6{bottom:3926.190000px;}
.y42{bottom:3958.020000px;}
.y41{bottom:3994.020000px;}
.y5{bottom:4028.835000px;}
.y40{bottom:4030.050000px;}
.y3f{bottom:4066.050000px;}
.y2{bottom:4187.055000px;}
.y1{bottom:4261.395000px;}
.y4{bottom:4366.905000px;}
.y3{bottom:4512.750000px;}
.y68{bottom:4838.580000px;}
.hd{height:104.211914px;}
.hc{height:104.388047px;}
.hb{height:145.397461px;}
.ha{height:145.643203px;}
.h2{height:157.886719px;}
.h6{height:166.614258px;}
.h8{height:166.739063px;}
.h7{height:166.895859px;}
.h9{height:167.020875px;}
.he{height:176.211914px;}
.h3{height:208.151016px;}
.h4{height:243.632812px;}
.h5{height:250.031250px;}
.hf{height:324.843750px;}
.h1{height:5055.750000px;}
.h0{height:5056.020000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x19{left:120.131947px;}
.xd{left:188.069947px;}
.x3{left:207.254947px;}
.x4{left:218.054947px;}
.x1{left:242.999947px;}
.x2{left:281.129947px;}
.x5{left:325.154947px;}
.xb{left:1164.569947px;}
.xe{left:1771.484947px;}
.xf{left:1782.284947px;}
.x10{left:1836.329947px;}
.x6{left:1841.294947px;}
.x7{left:1852.094947px;}
.x8{left:1906.094947px;}
.x9{left:1988.534947px;}
.x18{left:2042.534947px;}
.x12{left:2058.374947px;}
.xa{left:2269.364947px;}
.x13{left:2482.484947px;}
.x14{left:2632.574947px;}
.x15{left:2633.834947px;}
.x11{left:2714.864947px;}
.x17{left:2777.219947px;}
.x16{left:2783.879947px;}
.xc{left:2931.869947px;}
.x1a{left:2966.114947px;}
.x1b{left:2984.909947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.ls2d{letter-spacing:-8.960000pt;}
.ls31{letter-spacing:-6.400000pt;}
.ls2e{letter-spacing:-2.922667pt;}
.ls30{letter-spacing:-2.736000pt;}
.ls21{letter-spacing:-0.794667pt;}
.ls36{letter-spacing:-0.752000pt;}
.ls1b{letter-spacing:-0.634667pt;}
.ls25{letter-spacing:-0.602667pt;}
.ls35{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.520533pt;}
.ls1e{letter-spacing:-0.502400pt;}
.ls37{letter-spacing:-0.392533pt;}
.ls39{letter-spacing:-0.361067pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls16{letter-spacing:-0.245867pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls2a{letter-spacing:-0.232533pt;}
.ls18{letter-spacing:-0.162133pt;}
.ls17{letter-spacing:-0.154133pt;}
.ls12{letter-spacing:-0.144533pt;}
.ls34{letter-spacing:-0.129067pt;}
.ls1d{letter-spacing:-0.128533pt;}
.ls23{letter-spacing:-0.117867pt;}
.ls2c{letter-spacing:-0.114133pt;}
.ls20{letter-spacing:-0.102400pt;}
.ls1f{letter-spacing:-0.067733pt;}
.ls2f{letter-spacing:-0.044160pt;}
.ls13{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004480pt;}
.ls7{letter-spacing:0.037760pt;}
.ls27{letter-spacing:0.044160pt;}
.ls24{letter-spacing:0.055467pt;}
.ls38{letter-spacing:0.062933pt;}
.ls26{letter-spacing:0.063467pt;}
.ls14{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.136533pt;}
.lsf{letter-spacing:0.150827pt;}
.lsc{letter-spacing:0.152320pt;}
.ls2b{letter-spacing:0.200533pt;}
.ls5{letter-spacing:0.201728pt;}
.ls32{letter-spacing:0.206933pt;}
.ls33{letter-spacing:0.247467pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.269867pt;}
.ls1c{letter-spacing:0.321067pt;}
.ls28{letter-spacing:0.522133pt;}
.lse{letter-spacing:1.343360pt;}
.lsd{letter-spacing:5.823360pt;}
.ls22{letter-spacing:7.093333pt;}
.ls1{letter-spacing:8.831360pt;}
.ls6{letter-spacing:12.223360pt;}
.ls11{letter-spacing:17.343360pt;}
.lsb{letter-spacing:22.919680pt;}
.ls9{letter-spacing:33.343360pt;}
.ls29{letter-spacing:39.093333pt;}
.ls3{letter-spacing:45.311360pt;}
.ls4{letter-spacing:57.688320pt;}
.lsa{letter-spacing:67.903360pt;}
.ls8{letter-spacing:225.343360pt;}
.ws2d{word-spacing:-106.752000pt;}
.ws0{word-spacing:-51.968000pt;}
.wsb{word-spacing:-35.009707pt;}
.ws7{word-spacing:-34.958507pt;}
.ws5{word-spacing:-34.825173pt;}
.ws1{word-spacing:-34.808107pt;}
.wsf{word-spacing:-34.714624pt;}
.wsc{word-spacing:-34.688640pt;}
.wse{word-spacing:-34.646891pt;}
.ws4{word-spacing:-34.534507pt;}
.ws6{word-spacing:-34.526507pt;}
.ws8{word-spacing:-34.453973pt;}
.ws3{word-spacing:-34.442773pt;}
.ws9{word-spacing:-34.419840pt;}
.wsd{word-spacing:-34.186240pt;}
.ws2{word-spacing:-34.168107pt;}
.wsa{word-spacing:-34.053973pt;}
.ws10{word-spacing:-33.893973pt;}
.ws16{word-spacing:-22.218773pt;}
.ws23{word-spacing:-21.944107pt;}
.ws21{word-spacing:-21.903573pt;}
.ws19{word-spacing:-21.897173pt;}
.ws28{word-spacing:-21.759573pt;}
.ws13{word-spacing:-21.752107pt;}
.ws15{word-spacing:-21.740800pt;}
.ws12{word-spacing:-21.734400pt;}
.ws20{word-spacing:-21.701120pt;}
.ws17{word-spacing:-21.696640pt;}
.ws1d{word-spacing:-21.652480pt;}
.ws22{word-spacing:-21.582507pt;}
.ws11{word-spacing:-21.578773pt;}
.ws24{word-spacing:-21.567573pt;}
.ws18{word-spacing:-21.464107pt;}
.ws29{word-spacing:-21.335573pt;}
.ws27{word-spacing:-21.304107pt;}
.ws25{word-spacing:-21.109973pt;}
.ws14{word-spacing:-21.093973pt;}
.ws26{word-spacing:-20.944640pt;}
.ws1e{word-spacing:-18.960640pt;}
.ws1c{word-spacing:-18.773973pt;}
.ws1f{word-spacing:-15.296640pt;}
.ws1b{word-spacing:-12.736640pt;}
.ws2e{word-spacing:0.000000pt;}
.ws1a{word-spacing:83.164160pt;}
.ws2c{word-spacing:200.392747pt;}
.ws2a{word-spacing:273.090560pt;}
.ws2b{word-spacing:273.298133pt;}
._2{margin-left:-21.312000pt;}
._6{margin-left:-19.309440pt;}
._3{margin-left:-14.144000pt;}
._8{margin-left:-10.944000pt;}
._7{margin-left:-9.914453pt;}
._32{margin-left:-8.098560pt;}
._2a{margin-left:-5.529173pt;}
._5{margin-left:-4.442240pt;}
._1{margin-left:-2.848000pt;}
._0{margin-left:-1.621653pt;}
._4{width:1.130667pt;}
._2b{width:2.330240pt;}
._1e{width:3.602560pt;}
._43{width:5.172267pt;}
._1a{width:6.325013pt;}
._1d{width:7.596160pt;}
._f{width:8.730880pt;}
._10{width:10.135040pt;}
._11{width:11.062187pt;}
._2c{width:12.078293pt;}
._2e{width:15.382507pt;}
._2d{width:16.829867pt;}
._4d{width:18.556693pt;}
._3f{width:20.628373pt;}
._1f{width:21.717653pt;}
._13{width:22.727253pt;}
._12{width:23.775253pt;}
._36{width:25.145280pt;}
._42{width:29.374293pt;}
._41{width:30.534400pt;}
._18{width:31.981120pt;}
._19{width:32.922880pt;}
._40{width:33.829013pt;}
._49{width:37.251093pt;}
._48{width:38.303253pt;}
._3e{width:39.464320pt;}
._35{width:43.082133pt;}
._26{width:45.781547pt;}
._c{width:47.395840pt;}
._d{width:48.502827pt;}
._3a{width:49.777067pt;}
._3d{width:50.806400pt;}
._1b{width:51.823573pt;}
._a{width:52.826560pt;}
._9{width:53.806720pt;}
._e{width:55.966080pt;}
._33{width:57.448853pt;}
._28{width:63.276587pt;}
._27{width:64.514560pt;}
._23{width:67.791787pt;}
._22{width:69.510293pt;}
._38{width:76.453013pt;}
._39{width:77.416747pt;}
._24{width:80.949120pt;}
._25{width:82.037013pt;}
._b{width:87.445653pt;}
._4a{width:91.345920pt;}
._4f{width:92.285973pt;}
._1c{width:94.771200pt;}
._34{width:101.705600pt;}
._37{width:108.771200pt;}
._21{width:117.705387pt;}
._20{width:118.599147pt;}
._14{width:120.750080pt;}
._15{width:121.999573pt;}
._3c{width:128.299307pt;}
._31{width:133.652373pt;}
._29{width:136.091520pt;}
._17{width:143.274240pt;}
._16{width:144.705280pt;}
._4e{width:146.773120pt;}
._4c{width:179.725440pt;}
._4b{width:181.242773pt;}
._2f{width:190.720320pt;}
._30{width:191.782293pt;}
._3b{width:224.558293pt;}
._46{width:250.942720pt;}
._47{width:279.269973pt;}
._45{width:300.262827pt;}
._44{width:373.589120pt;}
._50{width:505.436907pt;}
.fs7{font-size:106.880000pt;}
.fs6{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.fs4{font-size:256.000000pt;}
.fs3{font-size:288.000000pt;}
.fs8{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:23.840000pt;}
.y62{bottom:133.248000pt;}
.y61{bottom:165.253333pt;}
.y60{bottom:197.253333pt;}
.y5f{bottom:229.253333pt;}
.y59{bottom:240.093333pt;}
.y5e{bottom:261.253333pt;}
.y58{bottom:291.293333pt;}
.y5d{bottom:293.253333pt;}
.y5c{bottom:325.253333pt;}
.y57{bottom:342.493333pt;}
.y5b{bottom:357.253333pt;}
.y56{bottom:440.026667pt;}
.y5a{bottom:450.906667pt;}
.y7b{bottom:624.506667pt;}
.y7a{bottom:656.506667pt;}
.y79{bottom:688.506667pt;}
.y78{bottom:720.506667pt;}
.y77{bottom:752.506667pt;}
.y76{bottom:784.506667pt;}
.y75{bottom:816.506667pt;}
.y74{bottom:848.506667pt;}
.y73{bottom:880.506667pt;}
.y72{bottom:912.506667pt;}
.y71{bottom:944.506667pt;}
.y67{bottom:1052.773333pt;}
.y65{bottom:1104.546667pt;}
.y64{bottom:1120.546667pt;}
.y66{bottom:1136.546667pt;}
.y3e{bottom:1355.493333pt;}
.y3d{bottom:1387.493333pt;}
.y3c{bottom:1419.493333pt;}
.y3b{bottom:1451.493333pt;}
.y3a{bottom:1483.493333pt;}
.y70{bottom:1502.720000pt;}
.y39{bottom:1515.493333pt;}
.y6f{bottom:1534.720000pt;}
.y38{bottom:1547.493333pt;}
.y6e{bottom:1566.720000pt;}
.y37{bottom:1579.493333pt;}
.y6d{bottom:1598.720000pt;}
.y36{bottom:1611.493333pt;}
.y6c{bottom:1630.720000pt;}
.y35{bottom:1643.493333pt;}
.y6b{bottom:1662.720000pt;}
.y34{bottom:1675.493333pt;}
.y6a{bottom:1694.720000pt;}
.y33{bottom:1707.493333pt;}
.y69{bottom:1726.720000pt;}
.y22{bottom:1826.746667pt;}
.y32{bottom:1860.226667pt;}
.y21{bottom:1877.946667pt;}
.y31{bottom:1905.026667pt;}
.y20{bottom:1929.146667pt;}
.y30{bottom:1949.826667pt;}
.y1f{bottom:1980.346667pt;}
.y2f{bottom:2063.520000pt;}
.y1e{bottom:2082.786667pt;}
.y2e{bottom:2114.720000pt;}
.y1d{bottom:2133.986667pt;}
.y2d{bottom:2165.920000pt;}
.y1c{bottom:2185.186667pt;}
.y2c{bottom:2217.120000pt;}
.y1b{bottom:2236.386667pt;}
.y2b{bottom:2268.320000pt;}
.y1a{bottom:2287.586667pt;}
.y2a{bottom:2319.520000pt;}
.y29{bottom:2370.720000pt;}
.y19{bottom:2383.586667pt;}
.y28{bottom:2421.920000pt;}
.y18{bottom:2434.786667pt;}
.y27{bottom:2473.146667pt;}
.y17{bottom:2485.986667pt;}
.y26{bottom:2524.346667pt;}
.y16{bottom:2537.186667pt;}
.y25{bottom:2575.546667pt;}
.y15{bottom:2588.386667pt;}
.y24{bottom:2626.746667pt;}
.y14{bottom:2713.053333pt;}
.y23{bottom:2713.186667pt;}
.y55{bottom:2773.986667pt;}
.y54{bottom:2805.986667pt;}
.y13{bottom:2824.346667pt;}
.y53{bottom:2837.986667pt;}
.y52{bottom:2869.986667pt;}
.y12{bottom:2875.546667pt;}
.y51{bottom:2901.986667pt;}
.y11{bottom:2926.746667pt;}
.y50{bottom:2933.986667pt;}
.y4f{bottom:2965.986667pt;}
.y10{bottom:2977.946667pt;}
.y4e{bottom:2997.986667pt;}
.yf{bottom:3029.146667pt;}
.y4d{bottom:3029.986667pt;}
.y4c{bottom:3061.986667pt;}
.ye{bottom:3080.346667pt;}
.y4b{bottom:3093.986667pt;}
.y4a{bottom:3125.986667pt;}
.yd{bottom:3131.546667pt;}
.y49{bottom:3157.986667pt;}
.yc{bottom:3182.746667pt;}
.y48{bottom:3190.013333pt;}
.y47{bottom:3222.013333pt;}
.yb{bottom:3233.946667pt;}
.y46{bottom:3254.013333pt;}
.ya{bottom:3285.146667pt;}
.y9{bottom:3336.346667pt;}
.y8{bottom:3387.546667pt;}
.y45{bottom:3422.240000pt;}
.y7{bottom:3438.746667pt;}
.y44{bottom:3454.240000pt;}
.y43{bottom:3486.240000pt;}
.y6{bottom:3489.946667pt;}
.y42{bottom:3518.240000pt;}
.y41{bottom:3550.240000pt;}
.y5{bottom:3581.186667pt;}
.y40{bottom:3582.266667pt;}
.y3f{bottom:3614.266667pt;}
.y2{bottom:3721.826667pt;}
.y1{bottom:3787.906667pt;}
.y4{bottom:3881.693333pt;}
.y3{bottom:4011.333333pt;}
.y68{bottom:4300.960000pt;}
.hd{height:92.632812pt;}
.hc{height:92.789375pt;}
.hb{height:129.242188pt;}
.ha{height:129.460625pt;}
.h2{height:140.343750pt;}
.h6{height:148.101562pt;}
.h8{height:148.212500pt;}
.h7{height:148.351875pt;}
.h9{height:148.463000pt;}
.he{height:156.632812pt;}
.h3{height:185.023125pt;}
.h4{height:216.562500pt;}
.h5{height:222.250000pt;}
.hf{height:288.750000pt;}
.h1{height:4494.000000pt;}
.h0{height:4494.240000pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x19{left:106.783953pt;}
.xd{left:167.173286pt;}
.x3{left:184.226619pt;}
.x4{left:193.826619pt;}
.x1{left:215.999953pt;}
.x2{left:249.893286pt;}
.x5{left:289.026619pt;}
.xb{left:1035.173286pt;}
.xe{left:1574.653286pt;}
.xf{left:1584.253286pt;}
.x10{left:1632.293286pt;}
.x6{left:1636.706619pt;}
.x7{left:1646.306619pt;}
.x8{left:1694.306619pt;}
.x9{left:1767.586619pt;}
.x18{left:1815.586619pt;}
.x12{left:1829.666619pt;}
.xa{left:2017.213286pt;}
.x13{left:2206.653286pt;}
.x14{left:2340.066619pt;}
.x15{left:2341.186619pt;}
.x11{left:2413.213286pt;}
.x17{left:2468.639953pt;}
.x16{left:2474.559953pt;}
.xc{left:2606.106619pt;}
.x1a{left:2636.546619pt;}
.x1b{left:2653.253286pt;}
}




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