
    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_547fc4bc952dde28e8aec3a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_e1efd87a7946f3955a2c6444.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_8933273844b3107a1300e774.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_20efec0539db466e96c65d0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1f0fc8e1a9ef0b0d9bcf1000.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_aab51922f58b86687faf4d0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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_380d8d48c4b26315b158a3ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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);}
.va{vertical-align:-18.027360px;}
.v5{vertical-align:-3.622320px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.317320px;}
.v9{vertical-align:12.466800px;}
.v4{vertical-align:19.459440px;}
.v8{vertical-align:50.375520px;}
.v2{vertical-align:51.807600px;}
.v3{vertical-align:65.538720px;}
.v7{vertical-align:79.791720px;}
.vb{vertical-align:90.570000px;}
.v1{vertical-align:102.267360px;}
.ls12{letter-spacing:-6.823440px;}
.ls14{letter-spacing:-6.486480px;}
.ls11{letter-spacing:-2.948400px;}
.ls19{letter-spacing:-2.527200px;}
.ls15{letter-spacing:-1.095120px;}
.ls8{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.298800px;}
.ls4{letter-spacing:-0.264240px;}
.ls5{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.119520px;}
.ls3{letter-spacing:-0.084240px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.192240px;}
.lsa{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252720px;}
.ls6{letter-spacing:0.336960px;}
.lse{letter-spacing:16.434000px;}
.lsd{letter-spacing:23.081760px;}
.lsc{letter-spacing:23.241816px;}
.lsb{letter-spacing:23.258664px;}
.ls17{letter-spacing:525.657600px;}
.ls18{letter-spacing:529.279920px;}
.ls16{letter-spacing:549.413280px;}
.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;}
}
.ws5e{word-spacing:-572.832000px;}
.ws3{word-spacing:-58.132800px;}
.ws7{word-spacing:-57.868560px;}
.ws17{word-spacing:-47.736000px;}
.ws16{word-spacing:-47.304000px;}
.ws4{word-spacing:-23.418720px;}
.ws9{word-spacing:-23.334480px;}
.ws63{word-spacing:-20.891520px;}
.ws8{word-spacing:-18.280080px;}
.ws25{word-spacing:-16.595280px;}
.ws1d{word-spacing:-6.065280px;}
.ws2{word-spacing:-3.075840px;}
.ws5{word-spacing:-2.442960px;}
.ws14{word-spacing:-2.274480px;}
.ws15{word-spacing:-2.190240px;}
.ws13{word-spacing:-1.937520px;}
.ws6{word-spacing:-1.684800px;}
.ws1f{word-spacing:-1.374480px;}
.ws12{word-spacing:-1.179360px;}
.ws1b{word-spacing:-1.095120px;}
.wsc{word-spacing:-1.010880px;}
.ws1{word-spacing:-0.768960px;}
.wsd{word-spacing:-0.336960px;}
.ws10{word-spacing:-0.252720px;}
.wsf{word-spacing:-0.084240px;}
.ws11{word-spacing:0.000000px;}
.ws1c{word-spacing:0.084240px;}
.wsb{word-spacing:0.252720px;}
.ws1e{word-spacing:0.298800px;}
.ws32{word-spacing:0.324000px;}
.wse{word-spacing:0.421200px;}
.ws53{word-spacing:0.776880px;}
.ws48{word-spacing:0.864000px;}
.ws0{word-spacing:1.872000px;}
.ws66{word-spacing:11.540880px;}
.ws67{word-spacing:13.309920px;}
.ws20{word-spacing:29.307096px;}
.ws21{word-spacing:38.017512px;}
.ws22{word-spacing:40.881672px;}
.ws23{word-spacing:46.214064px;}
.ws24{word-spacing:48.758112px;}
.ws31{word-spacing:65.184912px;}
.ws76{word-spacing:68.577840px;}
.ws51{word-spacing:83.515536px;}
.ws54{word-spacing:88.620480px;}
.ws27{word-spacing:91.012896px;}
.ws70{word-spacing:125.273304px;}
.ws4c{word-spacing:130.184496px;}
.ws52{word-spacing:132.795936px;}
.ws2b{word-spacing:137.766096px;}
.ws4f{word-spacing:139.518288px;}
.ws6c{word-spacing:179.936640px;}
.ws41{word-spacing:182.135304px;}
.ws33{word-spacing:186.263064px;}
.ws4d{word-spacing:187.172856px;}
.ws50{word-spacing:189.009288px;}
.ws2d{word-spacing:190.475064px;}
.ws74{word-spacing:194.819160px;}
.ws55{word-spacing:195.116688px;}
.ws18{word-spacing:203.726016px;}
.ws35{word-spacing:213.801120px;}
.ws4b{word-spacing:218.055240px;}
.ws26{word-spacing:222.140880px;}
.ws6f{word-spacing:228.239856px;}
.ws6e{word-spacing:231.828480px;}
.ws75{word-spacing:243.885600px;}
.ws34{word-spacing:246.460968px;}
.ws73{word-spacing:257.378472px;}
.ws47{word-spacing:257.607936px;}
.ws71{word-spacing:259.880400px;}
.ws69{word-spacing:270.679968px;}
.ws29{word-spacing:274.032720px;}
.ws6d{word-spacing:277.638192px;}
.ws61{word-spacing:278.994456px;}
.ws62{word-spacing:279.238752px;}
.ws45{word-spacing:285.101856px;}
.ws6a{word-spacing:287.679600px;}
.ws3a{word-spacing:288.690480px;}
.ws2f{word-spacing:293.433192px;}
.ws6b{word-spacing:293.677488px;}
.ws2a{word-spacing:297.038664px;}
.ws2e{word-spacing:301.326480px;}
.ws36{word-spacing:311.839632px;}
.ws46{word-spacing:314.324712px;}
.ws42{word-spacing:316.742400px;}
.ws72{word-spacing:320.347872px;}
.ws30{word-spacing:322.664472px;}
.ws4e{word-spacing:323.599536px;}
.ws3b{word-spacing:328.401216px;}
.ws39{word-spacing:329.075136px;}
.ws28{word-spacing:329.883840px;}
.ws68{word-spacing:340.245360px;}
.ws65{word-spacing:340.650840px;}
.ws38{word-spacing:344.541600px;}
.ws60{word-spacing:347.835000px;}
.ws37{word-spacing:351.112320px;}
.ws43{word-spacing:352.072656px;}
.ws3c{word-spacing:352.156896px;}
.ws3e{word-spacing:355.694976px;}
.ws5d{word-spacing:358.786584px;}
.ws56{word-spacing:389.694240px;}
.ws3f{word-spacing:391.463280px;}
.ws3d{word-spacing:397.107360px;}
.ws40{word-spacing:398.910096px;}
.ws2c{word-spacing:405.447120px;}
.ws44{word-spacing:415.303200px;}
.ws5f{word-spacing:437.997456px;}
.ws49{word-spacing:464.836320px;}
.ws64{word-spacing:465.341760px;}
.ws5b{word-spacing:465.350184px;}
.ws57{word-spacing:479.359296px;}
.ws58{word-spacing:497.437200px;}
.ws59{word-spacing:503.114976px;}
.ws5a{word-spacing:525.994560px;}
.ws5c{word-spacing:550.002960px;}
.ws4a{word-spacing:638.732952px;}
.ws19{word-spacing:812.494800px;}
.wsa{word-spacing:915.562440px;}
.ws1a{word-spacing:1147.609944px;}
._35{margin-left:-548.495064px;}
._10{margin-left:-32.052312px;}
._11{margin-left:-29.172096px;}
._f{margin-left:-16.999200px;}
._b{margin-left:-12.172680px;}
._9{margin-left:-10.389960px;}
._4{margin-left:-9.208296px;}
._43{margin-left:-7.523136px;}
._d{margin-left:-6.393816px;}
._6{margin-left:-4.862016px;}
._2{margin-left:-2.887920px;}
._1{margin-left:-1.728000px;}
._0{width:1.152000px;}
._3{width:2.727648px;}
._5{width:3.998232px;}
._16{width:5.512464px;}
._25{width:6.553872px;}
._18{width:7.692552px;}
._e{width:17.606160px;}
._21{width:110.691360px;}
._20{width:113.608440px;}
._23{width:122.433000px;}
._19{width:133.739424px;}
._2c{width:140.470200px;}
._1b{width:148.346640px;}
._22{width:152.130384px;}
._30{width:154.571544px;}
._38{width:158.059440px;}
._1a{width:172.557216px;}
._1d{width:180.905400px;}
._1c{width:195.217776px;}
._1f{width:196.430832px;}
._1e{width:218.223720px;}
._14{width:230.301936px;}
._24{width:242.771256px;}
._31{width:247.911984px;}
._2d{width:264.035520px;}
._2e{width:267.994800px;}
._41{width:270.759600px;}
._32{width:282.215040px;}
._3a{width:301.073760px;}
._3d{width:317.163600px;}
._42{width:320.027760px;}
._3c{width:324.829440px;}
._17{width:328.159008px;}
._a{width:334.810800px;}
._39{width:341.744832px;}
._40{width:348.585120px;}
._2b{width:351.613152px;}
._3e{width:365.348880px;}
._c{width:371.695320px;}
._27{width:375.592464px;}
._2a{width:378.456624px;}
._3b{width:388.498032px;}
._3f{width:391.303224px;}
._29{width:399.735648px;}
._26{width:408.429216px;}
._28{width:422.295120px;}
._12{width:429.874560px;}
._7{width:444.643920px;}
._2f{width:455.281344px;}
._36{width:493.056720px;}
._34{width:525.312216px;}
._33{width:526.550544px;}
._37{width:549.767088px;}
._15{width:574.318800px;}
._8{width:841.163760px;}
._13{width:1376.440560px;}
.fc2{color:rgb(49,133,156);}
.fc1{color:rgb(23,55,94);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:59.760000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:13.322070px;}
.y57{bottom:15.267300px;}
.y1e{bottom:17.621580px;}
.y1f{bottom:17.979600px;}
.y78{bottom:23.630400px;}
.y6d{bottom:25.204800px;}
.y62{bottom:25.717740px;}
.y61{bottom:38.332680px;}
.y4a{bottom:38.892300px;}
.y55{bottom:40.026150px;}
.y6c{bottom:40.090800px;}
.y1d{bottom:42.830400px;}
.y3d{bottom:44.895000px;}
.y77{bottom:53.935740px;}
.y85{bottom:54.754860px;}
.y49{bottom:56.895000px;}
.y54{bottom:66.730230px;}
.y6b{bottom:66.794880px;}
.y1b{bottom:69.534480px;}
.y1c{bottom:69.892500px;}
.y60{bottom:77.672760px;}
.y84{bottom:79.963680px;}
.y76{bottom:80.639820px;}
.y3c{bottom:84.949740px;}
.y5f{bottom:90.287700px;}
.y53{bottom:93.434310px;}
.y6a{bottom:93.498960px;}
.y1a{bottom:94.743300px;}
.y48{bottom:97.928100px;}
.y83{bottom:105.172500px;}
.y75{bottom:107.343900px;}
.y3b{bottom:119.256480px;}
.y52{bottom:120.138390px;}
.y69{bottom:120.203040px;}
.y31{bottom:128.790000px;}
.y19{bottom:128.965800px;}
.y5e{bottom:129.627780px;}
.y82{bottom:130.337220px;}
.y2d{bottom:130.965120px;}
.y1{bottom:132.000000px;}
.y47{bottom:132.171660px;}
.y74{bottom:134.047980px;}
.y5d{bottom:142.242720px;}
.y51{bottom:146.842470px;}
.y68{bottom:146.907120px;}
.y3a{bottom:153.563220px;}
.y18{bottom:154.174620px;}
.y27{bottom:154.405560px;}
.y81{bottom:155.546040px;}
.y24{bottom:155.547480px;}
.y73{bottom:160.752060px;}
.y46{bottom:166.415220px;}
.y50{bottom:173.546550px;}
.y67{bottom:173.611200px;}
.y80{bottom:180.754860px;}
.y23{bottom:180.756300px;}
.y2c{bottom:181.361700px;}
.y5c{bottom:181.582800px;}
.y72{bottom:187.456140px;}
.y39{bottom:187.848900px;}
.y5b{bottom:194.197740px;}
.y30{bottom:194.817000px;}
.y16{bottom:195.915540px;}
.y17{bottom:196.273560px;}
.y4f{bottom:200.250630px;}
.y66{bottom:200.315280px;}
.y45{bottom:200.658780px;}
.y7f{bottom:205.963680px;}
.y2b{bottom:206.570520px;}
.y71{bottom:214.160220px;}
.y38{bottom:220.618260px;}
.y15{bottom:221.124360px;}
.y4e{bottom:226.954710px;}
.y65{bottom:227.019360px;}
.y32{bottom:230.227500px;}
.y26{bottom:231.101220px;}
.y22{bottom:231.152880px;}
.y7e{bottom:231.172500px;}
.y5a{bottom:233.516760px;}
.y44{bottom:234.902340px;}
.y70{bottom:240.864300px;}
.y4{bottom:254.343240px;}
.y37{bottom:254.882880px;}
.y12{bottom:255.346860px;}
.y7d{bottom:256.354860px;}
.y21{bottom:256.361700px;}
.y2a{bottom:256.967100px;}
.y4d{bottom:259.050150px;}
.y64{bottom:259.114800px;}
.y2f{bottom:262.857000px;}
.y59{bottom:265.612200px;}
.y14{bottom:268.298760px;}
.y43{bottom:269.145900px;}
.y3e{bottom:272.602500px;}
.y6f{bottom:272.980800px;}
.y11{bottom:280.555680px;}
.y7c{bottom:281.563680px;}
.y29{bottom:282.175920px;}
.y36{bottom:287.652240px;}
.y13{bottom:293.507580px;}
.y4c{bottom:297.847650px;}
.y63{bottom:297.880950px;}
.y42{bottom:303.389460px;}
.y58{bottom:304.409550px;}
.y10{bottom:305.764500px;}
.y25{bottom:306.277500px;}
.y9{bottom:306.758280px;}
.y7b{bottom:306.772500px;}
.y6e{bottom:311.752500px;}
.y3{bottom:311.919120px;}
.y35{bottom:321.937920px;}
.y2e{bottom:326.415000px;}
.y7a{bottom:331.946040px;}
.y8{bottom:331.967100px;}
.ye{bottom:332.468580px;}
.y28{bottom:332.572500px;}
.yf{bottom:332.826600px;}
.y41{bottom:337.633020px;}
.y34{bottom:356.244660px;}
.y79{bottom:357.154860px;}
.y7{bottom:357.175920px;}
.yd{bottom:357.677400px;}
.y2{bottom:369.495000px;}
.y40{bottom:371.876580px;}
.y20{bottom:382.363680px;}
.yb{bottom:384.381480px;}
.y4b{bottom:384.465000px;}
.yc{bottom:384.739500px;}
.y33{bottom:390.551400px;}
.y3f{bottom:406.141200px;}
.y6{bottom:407.572500px;}
.ya{bottom:409.590300px;}
.y5{bottom:477.465000px;}
.ha{height:62.327813px;}
.h5{height:73.956797px;}
.h4{height:87.859687px;}
.hb{height:107.319127px;}
.hc{height:114.335625px;}
.he{height:138.235207px;}
.h7{height:139.667288px;}
.hf{height:140.636212px;}
.hd{height:142.119533px;}
.h8{height:152.085938px;}
.h9{height:153.398408px;}
.h1{height:153.648000px;}
.h6{height:190.127048px;}
.h2{height:205.120080px;}
.h3{height:231.984141px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x10{left:91.683750px;}
.x2{left:94.050000px;}
.x13{left:99.387960px;}
.x3{left:100.874850px;}
.x6{left:103.121250px;}
.x1{left:117.300000px;}
.x11{left:119.355000px;}
.xf{left:135.487500px;}
.x5{left:148.047840px;}
.x17{left:185.995260px;}
.x1f{left:191.280600px;}
.x8{left:200.535000px;}
.x16{left:202.927500px;}
.x18{left:205.770600px;}
.x12{left:215.407500px;}
.x19{left:219.796560px;}
.x9{left:225.483000px;}
.x1b{left:227.347650px;}
.xa{left:231.487500px;}
.x1e{left:249.487650px;}
.x1a{left:259.312350px;}
.x1d{left:263.088600px;}
.x15{left:366.412350px;}
.xb{left:395.999850px;}
.x4{left:406.118490px;}
.x7{left:441.300000px;}
.xe{left:454.707150px;}
.xd{left:580.014150px;}
.x1c{left:681.487500px;}
.x14{left:703.612500px;}
.xc{left:823.800000px;}
@media print{
.va{vertical-align:-16.024320pt;}
.v5{vertical-align:-3.219840pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.726507pt;}
.v9{vertical-align:11.081600pt;}
.v4{vertical-align:17.297280pt;}
.v8{vertical-align:44.778240pt;}
.v2{vertical-align:46.051200pt;}
.v3{vertical-align:58.256640pt;}
.v7{vertical-align:70.925973pt;}
.vb{vertical-align:80.506667pt;}
.v1{vertical-align:90.904320pt;}
.ls12{letter-spacing:-6.065280pt;}
.ls14{letter-spacing:-5.765760pt;}
.ls11{letter-spacing:-2.620800pt;}
.ls19{letter-spacing:-2.246400pt;}
.ls15{letter-spacing:-0.973440pt;}
.ls8{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.265600pt;}
.ls4{letter-spacing:-0.234880pt;}
.ls5{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.106240pt;}
.ls3{letter-spacing:-0.074880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.170880pt;}
.lsa{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224640pt;}
.ls6{letter-spacing:0.299520pt;}
.lse{letter-spacing:14.608000pt;}
.lsd{letter-spacing:20.517120pt;}
.lsc{letter-spacing:20.659392pt;}
.lsb{letter-spacing:20.674368pt;}
.ls17{letter-spacing:467.251200pt;}
.ls18{letter-spacing:470.471040pt;}
.ls16{letter-spacing:488.367360pt;}
.ws5e{word-spacing:-509.184000pt;}
.ws3{word-spacing:-51.673600pt;}
.ws7{word-spacing:-51.438720pt;}
.ws17{word-spacing:-42.432000pt;}
.ws16{word-spacing:-42.048000pt;}
.ws4{word-spacing:-20.816640pt;}
.ws9{word-spacing:-20.741760pt;}
.ws63{word-spacing:-18.570240pt;}
.ws8{word-spacing:-16.248960pt;}
.ws25{word-spacing:-14.751360pt;}
.ws1d{word-spacing:-5.391360pt;}
.ws2{word-spacing:-2.734080pt;}
.ws5{word-spacing:-2.171520pt;}
.ws14{word-spacing:-2.021760pt;}
.ws15{word-spacing:-1.946880pt;}
.ws13{word-spacing:-1.722240pt;}
.ws6{word-spacing:-1.497600pt;}
.ws1f{word-spacing:-1.221760pt;}
.ws12{word-spacing:-1.048320pt;}
.ws1b{word-spacing:-0.973440pt;}
.wsc{word-spacing:-0.898560pt;}
.ws1{word-spacing:-0.683520pt;}
.wsd{word-spacing:-0.299520pt;}
.ws10{word-spacing:-0.224640pt;}
.wsf{word-spacing:-0.074880pt;}
.ws11{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.074880pt;}
.wsb{word-spacing:0.224640pt;}
.ws1e{word-spacing:0.265600pt;}
.ws32{word-spacing:0.288000pt;}
.wse{word-spacing:0.374400pt;}
.ws53{word-spacing:0.690560pt;}
.ws48{word-spacing:0.768000pt;}
.ws0{word-spacing:1.664000pt;}
.ws66{word-spacing:10.258560pt;}
.ws67{word-spacing:11.831040pt;}
.ws20{word-spacing:26.050752pt;}
.ws21{word-spacing:33.793344pt;}
.ws22{word-spacing:36.339264pt;}
.ws23{word-spacing:41.079168pt;}
.ws24{word-spacing:43.340544pt;}
.ws31{word-spacing:57.942144pt;}
.ws76{word-spacing:60.958080pt;}
.ws51{word-spacing:74.236032pt;}
.ws54{word-spacing:78.773760pt;}
.ws27{word-spacing:80.900352pt;}
.ws70{word-spacing:111.354048pt;}
.ws4c{word-spacing:115.719552pt;}
.ws52{word-spacing:118.040832pt;}
.ws2b{word-spacing:122.458752pt;}
.ws4f{word-spacing:124.016256pt;}
.ws6c{word-spacing:159.943680pt;}
.ws41{word-spacing:161.898048pt;}
.ws33{word-spacing:165.567168pt;}
.ws4d{word-spacing:166.375872pt;}
.ws50{word-spacing:168.008256pt;}
.ws2d{word-spacing:169.311168pt;}
.ws74{word-spacing:173.172587pt;}
.ws55{word-spacing:173.437056pt;}
.ws18{word-spacing:181.089792pt;}
.ws35{word-spacing:190.045440pt;}
.ws4b{word-spacing:193.826880pt;}
.ws26{word-spacing:197.458560pt;}
.ws6f{word-spacing:202.879872pt;}
.ws6e{word-spacing:206.069760pt;}
.ws75{word-spacing:216.787200pt;}
.ws34{word-spacing:219.076416pt;}
.ws73{word-spacing:228.780864pt;}
.ws47{word-spacing:228.984832pt;}
.ws71{word-spacing:231.004800pt;}
.ws69{word-spacing:240.604416pt;}
.ws29{word-spacing:243.584640pt;}
.ws6d{word-spacing:246.789504pt;}
.ws61{word-spacing:247.995072pt;}
.ws62{word-spacing:248.212224pt;}
.ws45{word-spacing:253.423872pt;}
.ws6a{word-spacing:255.715200pt;}
.ws3a{word-spacing:256.613760pt;}
.ws2f{word-spacing:260.829504pt;}
.ws6b{word-spacing:261.046656pt;}
.ws2a{word-spacing:264.034368pt;}
.ws2e{word-spacing:267.845760pt;}
.ws36{word-spacing:277.190784pt;}
.ws46{word-spacing:279.399744pt;}
.ws42{word-spacing:281.548800pt;}
.ws72{word-spacing:284.753664pt;}
.ws30{word-spacing:286.812864pt;}
.ws4e{word-spacing:287.644032pt;}
.ws3b{word-spacing:291.912192pt;}
.ws39{word-spacing:292.511232pt;}
.ws28{word-spacing:293.230080pt;}
.ws68{word-spacing:302.440320pt;}
.ws65{word-spacing:302.800747pt;}
.ws38{word-spacing:306.259200pt;}
.ws60{word-spacing:309.186667pt;}
.ws37{word-spacing:312.099840pt;}
.ws43{word-spacing:312.953472pt;}
.ws3c{word-spacing:313.028352pt;}
.ws3e{word-spacing:316.173312pt;}
.ws5d{word-spacing:318.921408pt;}
.ws56{word-spacing:346.394880pt;}
.ws3f{word-spacing:347.967360pt;}
.ws3d{word-spacing:352.984320pt;}
.ws40{word-spacing:354.586752pt;}
.ws2c{word-spacing:360.397440pt;}
.ws44{word-spacing:369.158400pt;}
.ws5f{word-spacing:389.331072pt;}
.ws49{word-spacing:413.187840pt;}
.ws64{word-spacing:413.637120pt;}
.ws5b{word-spacing:413.644608pt;}
.ws57{word-spacing:426.097152pt;}
.ws58{word-spacing:442.166400pt;}
.ws59{word-spacing:447.213312pt;}
.ws5a{word-spacing:467.550720pt;}
.ws5c{word-spacing:488.891520pt;}
.ws4a{word-spacing:567.762624pt;}
.ws19{word-spacing:722.217600pt;}
.wsa{word-spacing:813.833280pt;}
.ws1a{word-spacing:1020.097728pt;}
._35{margin-left:-487.551168pt;}
._10{margin-left:-28.490944pt;}
._11{margin-left:-25.930752pt;}
._f{margin-left:-15.110400pt;}
._b{margin-left:-10.820160pt;}
._9{margin-left:-9.235520pt;}
._4{margin-left:-8.185152pt;}
._43{margin-left:-6.687232pt;}
._d{margin-left:-5.683392pt;}
._6{margin-left:-4.321792pt;}
._2{margin-left:-2.567040pt;}
._1{margin-left:-1.536000pt;}
._0{width:1.024000pt;}
._3{width:2.424576pt;}
._5{width:3.553984pt;}
._16{width:4.899968pt;}
._25{width:5.825664pt;}
._18{width:6.837824pt;}
._e{width:15.649920pt;}
._21{width:98.392320pt;}
._20{width:100.985280pt;}
._23{width:108.829333pt;}
._19{width:118.879488pt;}
._2c{width:124.862400pt;}
._1b{width:131.863680pt;}
._22{width:135.227008pt;}
._30{width:137.396928pt;}
._38{width:140.497280pt;}
._1a{width:153.384192pt;}
._1d{width:160.804800pt;}
._1c{width:173.526912pt;}
._1f{width:174.605184pt;}
._1e{width:193.976640pt;}
._14{width:204.712832pt;}
._24{width:215.796672pt;}
._31{width:220.366208pt;}
._2d{width:234.698240pt;}
._2e{width:238.217600pt;}
._41{width:240.675200pt;}
._32{width:250.857813pt;}
._3a{width:267.621120pt;}
._3d{width:281.923200pt;}
._42{width:284.469120pt;}
._3c{width:288.737280pt;}
._17{width:291.696896pt;}
._a{width:297.609600pt;}
._39{width:303.773184pt;}
._40{width:309.853440pt;}
._2b{width:312.545024pt;}
._3e{width:324.754560pt;}
._c{width:330.395840pt;}
._27{width:333.859968pt;}
._2a{width:336.405888pt;}
._3b{width:345.331584pt;}
._3f{width:347.825088pt;}
._29{width:355.320576pt;}
._26{width:363.048192pt;}
._28{width:375.373440pt;}
._12{width:382.110720pt;}
._7{width:395.239040pt;}
._2f{width:404.694528pt;}
._36{width:438.272640pt;}
._34{width:466.944192pt;}
._33{width:468.044928pt;}
._37{width:488.681856pt;}
._15{width:510.505600pt;}
._8{width:747.701120pt;}
._13{width:1223.502720pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:11.841840pt;}
.y57{bottom:13.570933pt;}
.y1e{bottom:15.663627pt;}
.y1f{bottom:15.981867pt;}
.y78{bottom:21.004800pt;}
.y6d{bottom:22.404267pt;}
.y62{bottom:22.860213pt;}
.y61{bottom:34.073493pt;}
.y4a{bottom:34.570933pt;}
.y55{bottom:35.578800pt;}
.y6c{bottom:35.636267pt;}
.y1d{bottom:38.071467pt;}
.y3d{bottom:39.906667pt;}
.y77{bottom:47.942880pt;}
.y85{bottom:48.670987pt;}
.y49{bottom:50.573333pt;}
.y54{bottom:59.315760pt;}
.y6b{bottom:59.373227pt;}
.y1b{bottom:61.808427pt;}
.y1c{bottom:62.126667pt;}
.y60{bottom:69.042453pt;}
.y84{bottom:71.078827pt;}
.y76{bottom:71.679840pt;}
.y3c{bottom:75.510880pt;}
.y5f{bottom:80.255733pt;}
.y53{bottom:83.052720pt;}
.y6a{bottom:83.110187pt;}
.y1a{bottom:84.216267pt;}
.y48{bottom:87.047200pt;}
.y83{bottom:93.486667pt;}
.y75{bottom:95.416800pt;}
.y3b{bottom:106.005760pt;}
.y52{bottom:106.789680pt;}
.y69{bottom:106.847147pt;}
.y31{bottom:114.480000pt;}
.y19{bottom:114.636267pt;}
.y5e{bottom:115.224693pt;}
.y82{bottom:115.855307pt;}
.y2d{bottom:116.413440pt;}
.y1{bottom:117.333333pt;}
.y47{bottom:117.485920pt;}
.y74{bottom:119.153760pt;}
.y5d{bottom:126.437973pt;}
.y51{bottom:130.526640pt;}
.y68{bottom:130.584107pt;}
.y3a{bottom:136.500640pt;}
.y18{bottom:137.044107pt;}
.y27{bottom:137.249387pt;}
.y81{bottom:138.263147pt;}
.y24{bottom:138.264427pt;}
.y73{bottom:142.890720pt;}
.y46{bottom:147.924640pt;}
.y50{bottom:154.263600pt;}
.y67{bottom:154.321067pt;}
.y80{bottom:160.670987pt;}
.y23{bottom:160.672267pt;}
.y2c{bottom:161.210400pt;}
.y5c{bottom:161.406933pt;}
.y72{bottom:166.627680pt;}
.y39{bottom:166.976800pt;}
.y5b{bottom:172.620213pt;}
.y30{bottom:173.170667pt;}
.y16{bottom:174.147147pt;}
.y17{bottom:174.465387pt;}
.y4f{bottom:178.000560pt;}
.y66{bottom:178.058027pt;}
.y45{bottom:178.363360pt;}
.y7f{bottom:183.078827pt;}
.y2b{bottom:183.618240pt;}
.y71{bottom:190.364640pt;}
.y38{bottom:196.105120pt;}
.y15{bottom:196.554987pt;}
.y4e{bottom:201.737520pt;}
.y65{bottom:201.794987pt;}
.y32{bottom:204.646667pt;}
.y26{bottom:205.423307pt;}
.y22{bottom:205.469227pt;}
.y7e{bottom:205.486667pt;}
.y5a{bottom:207.570453pt;}
.y44{bottom:208.802080pt;}
.y70{bottom:214.101600pt;}
.y4{bottom:226.082880pt;}
.y37{bottom:226.562560pt;}
.y12{bottom:226.974987pt;}
.y7d{bottom:227.870987pt;}
.y21{bottom:227.877067pt;}
.y2a{bottom:228.415200pt;}
.y4d{bottom:230.266800pt;}
.y64{bottom:230.324267pt;}
.y2f{bottom:233.650667pt;}
.y59{bottom:236.099733pt;}
.y14{bottom:238.487787pt;}
.y43{bottom:239.240800pt;}
.y3e{bottom:242.313333pt;}
.y6f{bottom:242.649600pt;}
.y11{bottom:249.382827pt;}
.y7c{bottom:250.278827pt;}
.y29{bottom:250.823040pt;}
.y36{bottom:255.690880pt;}
.y13{bottom:260.895627pt;}
.y4c{bottom:264.753467pt;}
.y63{bottom:264.783067pt;}
.y42{bottom:269.679520pt;}
.y58{bottom:270.586267pt;}
.y10{bottom:271.790667pt;}
.y25{bottom:272.246667pt;}
.y9{bottom:272.674027pt;}
.y7b{bottom:272.686667pt;}
.y6e{bottom:277.113333pt;}
.y3{bottom:277.261440pt;}
.y35{bottom:286.167040pt;}
.y2e{bottom:290.146667pt;}
.y7a{bottom:295.063147pt;}
.y8{bottom:295.081867pt;}
.ye{bottom:295.527627pt;}
.y28{bottom:295.620000pt;}
.yf{bottom:295.845867pt;}
.y41{bottom:300.118240pt;}
.y34{bottom:316.661920pt;}
.y79{bottom:317.470987pt;}
.y7{bottom:317.489707pt;}
.yd{bottom:317.935467pt;}
.y2{bottom:328.440000pt;}
.y40{bottom:330.556960pt;}
.y20{bottom:339.878827pt;}
.yb{bottom:341.672427pt;}
.y4b{bottom:341.746667pt;}
.yc{bottom:341.990667pt;}
.y33{bottom:347.156800pt;}
.y3f{bottom:361.014400pt;}
.y6{bottom:362.286667pt;}
.ya{bottom:364.080267pt;}
.y5{bottom:424.413333pt;}
.ha{height:55.402500pt;}
.h5{height:65.739375pt;}
.h4{height:78.097500pt;}
.hb{height:95.394780pt;}
.hc{height:101.631667pt;}
.he{height:122.875740pt;}
.h7{height:124.148700pt;}
.hf{height:125.009967pt;}
.hd{height:126.328473pt;}
.h8{height:135.187500pt;}
.h9{height:136.354140pt;}
.h1{height:136.576000pt;}
.h6{height:169.001820pt;}
.h2{height:182.328960pt;}
.h3{height:206.208125pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x10{left:81.496667pt;}
.x2{left:83.600000pt;}
.x13{left:88.344853pt;}
.x3{left:89.666533pt;}
.x6{left:91.663333pt;}
.x1{left:104.266667pt;}
.x11{left:106.093333pt;}
.xf{left:120.433333pt;}
.x5{left:131.598080pt;}
.x17{left:165.329120pt;}
.x1f{left:170.027200pt;}
.x8{left:178.253333pt;}
.x16{left:180.380000pt;}
.x18{left:182.907200pt;}
.x12{left:191.473333pt;}
.x19{left:195.374720pt;}
.x9{left:200.429333pt;}
.x1b{left:202.086800pt;}
.xa{left:205.766667pt;}
.x1e{left:221.766800pt;}
.x1a{left:230.499867pt;}
.x1d{left:233.856533pt;}
.x15{left:325.699867pt;}
.xb{left:351.999867pt;}
.x4{left:360.994213pt;}
.x7{left:392.266667pt;}
.xe{left:404.184133pt;}
.xd{left:515.568133pt;}
.x1c{left:605.766667pt;}
.x14{left:625.433333pt;}
.xc{left:732.266667pt;}
}




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