
    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_6f5ffe99e6da75efbdef71d6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_202a07449c1a1957b793cf68.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_c276893cdc39763848d75301.woff')format("woff");}.ff3{font-family:ff3;line-height:0.727000;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_43db3a6b5cc7457c17187293.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_e4ea65d2d4258b0b7be26db3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.909000;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_f2fc8ad4797ac88949c93f74.woff')format("woff");}.ff7{font-family:ff7;line-height:0.872000;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_5ee371e3ce22075adb2e4638.woff')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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_965adfef897c63709a17c45c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_deb30fcdc4a5c7df5f9cf239.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_e4ea65d2d4258b0b7be26db3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_7611738e6b3cb96540e90458.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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:ffd;src:url('chunks/assets/font_f0d538961a8ab54b9ad6dd50.woff')format("woff");}.ffd{font-family:ffd;line-height:0.920000;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:ffe;src:url('chunks/assets/font_6a71bb796426534a9243f819.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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:fff;src:url('chunks/assets/font_6a71bb796426534a9243f819.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;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:ff10;src:url('chunks/assets/font_d38b487235d759e6c72e61af.woff')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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);}
.v3{vertical-align:-11.988000px;}
.v2{vertical-align:-3.486000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls2{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000072px;}
.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;}
}
.ws0{word-spacing:-80.064000px;}
.ws1{word-spacing:-36.696000px;}
.ws5{word-spacing:-16.080000px;}
.ws6{word-spacing:-9.724440px;}
.ws3{word-spacing:-0.480000px;}
.ws4{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.036000px;}
.wsd{word-spacing:-0.030000px;}
.wsb{word-spacing:-0.012000px;}
.wsc{word-spacing:-0.006000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.576000px;}
.ws8{word-spacing:0.600000px;}
.ws7{word-spacing:3.522000px;}
._5{margin-left:-7.992000px;}
._2{margin-left:-6.060000px;}
._4{margin-left:-4.980000px;}
._1{margin-left:-3.587904px;}
._0{margin-left:-1.620000px;}
._3{width:1.140000px;}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(157,23,28);}
.fc1{color:rgb(38,69,143);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:20.988000px;}
.fs9{font-size:34.980000px;}
.fsb{font-size:36.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:77.158050px;}
.ya6{bottom:88.990500px;}
.y2a{bottom:89.700750px;}
.y11d{bottom:90.535200px;}
.y4e{bottom:95.158050px;}
.y29{bottom:107.700750px;}
.y11c{bottom:112.135200px;}
.y4d{bottom:113.158050px;}
.y4c{bottom:131.158050px;}
.yd7{bottom:138.235500px;}
.y28{bottom:143.700750px;}
.y4b{bottom:149.158050px;}
.yd6{bottom:157.735500px;}
.y27{bottom:161.700750px;}
.y4a{bottom:167.158050px;}
.yd5{bottom:177.235500px;}
.y26{bottom:179.700750px;}
.y49{bottom:185.158050px;}
.y7e{bottom:192.076200px;}
.yd4{bottom:196.735500px;}
.y25{bottom:197.700750px;}
.y48{bottom:203.158050px;}
.y7d{bottom:214.576200px;}
.y24{bottom:215.700750px;}
.yd3{bottom:216.235500px;}
.y47{bottom:221.158050px;}
.y23{bottom:233.700750px;}
.yd2{bottom:235.735500px;}
.y7c{bottom:237.076200px;}
.y46{bottom:239.158050px;}
.ya5{bottom:246.076200px;}
.y22{bottom:251.700750px;}
.yd1{bottom:255.235500px;}
.y45{bottom:257.158050px;}
.y7b{bottom:259.576200px;}
.ya4{bottom:264.076200px;}
.y21{bottom:269.700750px;}
.yd0{bottom:274.735500px;}
.y44{bottom:275.158050px;}
.y7a{bottom:281.052000px;}
.ya3{bottom:282.076200px;}
.y20{bottom:287.700750px;}
.y43{bottom:293.158050px;}
.ycf{bottom:294.235500px;}
.y79{bottom:299.052000px;}
.y1f{bottom:305.700750px;}
.y42{bottom:311.158050px;}
.yce{bottom:313.735500px;}
.y78{bottom:317.052000px;}
.ya2{bottom:318.076200px;}
.yff{bottom:319.707000px;}
.y1e{bottom:323.700750px;}
.y41{bottom:329.158050px;}
.ycd{bottom:333.235500px;}
.ya1{bottom:336.076200px;}
.yfe{bottom:337.707000px;}
.y77{bottom:338.085000px;}
.y1d{bottom:341.700750px;}
.y40{bottom:347.158050px;}
.ycc{bottom:352.735500px;}
.ya0{bottom:354.076200px;}
.yfd{bottom:355.707000px;}
.y1c{bottom:359.700750px;}
.y3f{bottom:365.158050px;}
.y76{bottom:370.197000px;}
.y9f{bottom:372.076200px;}
.ycb{bottom:372.235500px;}
.yfc{bottom:373.707000px;}
.y1b{bottom:377.700750px;}
.y3e{bottom:383.158050px;}
.y75{bottom:388.947000px;}
.yca{bottom:390.805500px;}
.yfb{bottom:391.707000px;}
.y74{bottom:405.852000px;}
.y9e{bottom:408.076200px;}
.yfa{bottom:409.707000px;}
.yc9{bottom:411.235500px;}
.y1a{bottom:413.700750px;}
.y3d{bottom:419.158050px;}
.y73{bottom:424.602000px;}
.y9d{bottom:426.076200px;}
.yf9{bottom:427.707000px;}
.yc8{bottom:429.805500px;}
.y3c{bottom:437.158050px;}
.yf8{bottom:443.277000px;}
.y72{bottom:444.076200px;}
.y3b{bottom:455.158050px;}
.yf7{bottom:461.139000px;}
.yc7{bottom:462.236100px;}
.y3a{bottom:473.158050px;}
.y71{bottom:474.076200px;}
.y19{bottom:477.300750px;}
.y39{bottom:491.158050px;}
.y18{bottom:495.300750px;}
.yf6{bottom:499.921800px;}
.y38{bottom:509.158050px;}
.y17{bottom:513.300750px;}
.yf5{bottom:517.921800px;}
.y37{bottom:527.158050px;}
.y16{bottom:531.300750px;}
.y70{bottom:535.576200px;}
.yf4{bottom:535.921800px;}
.yc6{bottom:543.938400px;}
.y36{bottom:545.158050px;}
.y15{bottom:549.300750px;}
.y9c{bottom:550.576200px;}
.y6f{bottom:553.576200px;}
.yf3{bottom:553.921800px;}
.yc1{bottom:561.938400px;}
.y35{bottom:563.158050px;}
.y14{bottom:567.300750px;}
.y9b{bottom:568.576200px;}
.y6e{bottom:571.576200px;}
.yf2{bottom:571.921800px;}
.yc0{bottom:579.938400px;}
.y34{bottom:581.158050px;}
.y13{bottom:585.300750px;}
.y9a{bottom:586.576200px;}
.y6d{bottom:589.576200px;}
.ybf{bottom:597.938400px;}
.y33{bottom:599.158050px;}
.y12{bottom:603.300750px;}
.y99{bottom:604.576200px;}
.y6c{bottom:607.576200px;}
.yf1{bottom:607.921800px;}
.y11b{bottom:610.921800px;}
.ybe{bottom:615.938400px;}
.y98{bottom:622.576200px;}
.y6b{bottom:625.576200px;}
.yf0{bottom:625.921800px;}
.y11a{bottom:628.921800px;}
.ybd{bottom:633.938400px;}
.y32{bottom:635.158050px;}
.y11{bottom:639.300750px;}
.y97{bottom:640.576200px;}
.y6a{bottom:643.576200px;}
.yef{bottom:643.921800px;}
.y119{bottom:646.921800px;}
.ybc{bottom:651.938400px;}
.y10{bottom:657.300750px;}
.y96{bottom:658.576200px;}
.y69{bottom:661.576200px;}
.yee{bottom:661.921800px;}
.y118{bottom:664.921800px;}
.y31{bottom:668.158050px;}
.ybb{bottom:669.938400px;}
.yf{bottom:675.300750px;}
.y95{bottom:676.576200px;}
.y68{bottom:679.576200px;}
.yed{bottom:679.921800px;}
.y117{bottom:682.921800px;}
.yc5{bottom:687.938400px;}
.ye{bottom:693.300750px;}
.y94{bottom:694.576200px;}
.y67{bottom:697.576200px;}
.y116{bottom:700.921800px;}
.yba{bottom:705.938400px;}
.yd{bottom:711.300750px;}
.y93{bottom:712.576200px;}
.yec{bottom:715.921800px;}
.y115{bottom:718.921800px;}
.yb9{bottom:723.938400px;}
.y30{bottom:725.160750px;}
.yc{bottom:729.300750px;}
.y92{bottom:730.576200px;}
.y66{bottom:733.576200px;}
.y114{bottom:736.921800px;}
.yb8{bottom:741.938400px;}
.y2f{bottom:743.160750px;}
.yb{bottom:747.300750px;}
.y91{bottom:748.576200px;}
.y65{bottom:751.576200px;}
.y113{bottom:754.921800px;}
.yb7{bottom:759.938400px;}
.y2e{bottom:761.160750px;}
.ya{bottom:765.300750px;}
.y90{bottom:766.576200px;}
.y64{bottom:769.576200px;}
.y112{bottom:772.921800px;}
.yeb{bottom:775.439550px;}
.yb6{bottom:777.938400px;}
.y2d{bottom:779.160750px;}
.y8f{bottom:784.576200px;}
.y63{bottom:787.576200px;}
.y111{bottom:790.921800px;}
.yea{bottom:793.439550px;}
.yb5{bottom:795.938400px;}
.y2c{bottom:797.160750px;}
.y9{bottom:801.300600px;}
.y8e{bottom:802.576200px;}
.y62{bottom:805.576200px;}
.y110{bottom:808.921800px;}
.ye9{bottom:811.439550px;}
.yb4{bottom:813.938400px;}
.y2b{bottom:815.160750px;}
.y8d{bottom:820.576200px;}
.y61{bottom:823.576200px;}
.y10f{bottom:826.921800px;}
.ye8{bottom:829.439550px;}
.yb3{bottom:831.938400px;}
.y8c{bottom:838.576200px;}
.y60{bottom:841.576200px;}
.y10e{bottom:844.921800px;}
.ye7{bottom:847.440000px;}
.yb2{bottom:849.938400px;}
.y8b{bottom:856.576200px;}
.y5f{bottom:859.576200px;}
.ye6{bottom:865.440000px;}
.yb1{bottom:867.938400px;}
.y8{bottom:876.687750px;}
.y10d{bottom:878.491800px;}
.ye5{bottom:883.440000px;}
.yc4{bottom:885.938400px;}
.y8a{bottom:892.576200px;}
.y5e{bottom:895.576200px;}
.y10c{bottom:898.921800px;}
.ye4{bottom:901.440000px;}
.yb0{bottom:903.938400px;}
.y89{bottom:910.576200px;}
.y5d{bottom:913.576200px;}
.y10b{bottom:916.921800px;}
.ye3{bottom:919.440000px;}
.yaf{bottom:921.938400px;}
.y7{bottom:927.723750px;}
.y88{bottom:928.576200px;}
.y5c{bottom:931.576500px;}
.y10a{bottom:934.921500px;}
.ye2{bottom:935.010000px;}
.yae{bottom:939.938400px;}
.y87{bottom:946.576200px;}
.y5b{bottom:949.576500px;}
.ye1{bottom:952.754700px;}
.y109{bottom:952.921500px;}
.yad{bottom:957.938400px;}
.y86{bottom:964.576200px;}
.y6{bottom:966.711750px;}
.y5a{bottom:967.576500px;}
.y52{bottom:969.381900px;}
.ye0{bottom:970.754700px;}
.y108{bottom:970.921500px;}
.yac{bottom:975.938400px;}
.y85{bottom:982.576200px;}
.y59{bottom:985.576500px;}
.ydf{bottom:988.755000px;}
.y107{bottom:988.921500px;}
.yab{bottom:993.938400px;}
.y51{bottom:994.883400px;}
.y84{bottom:1000.576200px;}
.y58{bottom:1003.576500px;}
.y5{bottom:1005.699000px;}
.yde{bottom:1006.755000px;}
.y106{bottom:1006.921500px;}
.yaa{bottom:1011.938400px;}
.yc3{bottom:1011.939000px;}
.y50{bottom:1016.481900px;}
.y83{bottom:1018.576200px;}
.y57{bottom:1021.576500px;}
.ydd{bottom:1024.755000px;}
.y105{bottom:1024.921500px;}
.ya9{bottom:1029.938400px;}
.yc2{bottom:1029.939000px;}
.y82{bottom:1036.576200px;}
.y56{bottom:1039.576500px;}
.ydc{bottom:1042.755000px;}
.y104{bottom:1042.921500px;}
.y4{bottom:1044.687000px;}
.y81{bottom:1054.576200px;}
.y55{bottom:1057.576500px;}
.ydb{bottom:1060.755000px;}
.y103{bottom:1060.921500px;}
.ya8{bottom:1065.938400px;}
.y80{bottom:1072.576200px;}
.yda{bottom:1078.755000px;}
.y102{bottom:1078.921500px;}
.y7f{bottom:1090.576200px;}
.y54{bottom:1093.576200px;}
.yd9{bottom:1096.755000px;}
.y101{bottom:1096.921500px;}
.ya7{bottom:1098.938400px;}
.y2{bottom:1106.822250px;}
.yd8{bottom:1112.325000px;}
.y100{bottom:1114.921500px;}
.y53{bottom:1126.576200px;}
.y1{bottom:1133.822250px;}
.y3{bottom:1188.577950px;}
.hf{height:15.342228px;}
.h8{height:43.860000px;}
.h10{height:43.861200px;}
.hd{height:45.550380px;}
.ha{height:48.048000px;}
.hc{height:48.246000px;}
.hb{height:52.626000px;}
.h11{height:52.632000px;}
.h2{height:65.610000px;}
.he{height:65.790000px;}
.h6{height:78.948000px;}
.h9{height:87.720000px;}
.h7{height:96.492000px;}
.h4{height:105.264000px;}
.h5{height:105.267000px;}
.h3{height:122.808000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x4{left:80.787450px;}
.x5{left:98.277450px;}
.x9{left:110.551200px;}
.xa{left:114.802500px;}
.xb{left:462.047250px;}
.x2{left:465.584550px;}
.x6{left:472.726500px;}
.x8{left:481.230450px;}
.x7{left:489.734400px;}
.x3{left:642.047250px;}
@media print{
.v3{vertical-align:-10.656000pt;}
.v2{vertical-align:-3.098667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000064pt;}
.ws0{word-spacing:-71.168000pt;}
.ws1{word-spacing:-32.618667pt;}
.ws5{word-spacing:-14.293333pt;}
.ws6{word-spacing:-8.643947pt;}
.ws3{word-spacing:-0.426667pt;}
.ws4{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.032000pt;}
.wsd{word-spacing:-0.026667pt;}
.wsb{word-spacing:-0.010667pt;}
.wsc{word-spacing:-0.005333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.512000pt;}
.ws8{word-spacing:0.533333pt;}
.ws7{word-spacing:3.130667pt;}
._5{margin-left:-7.104000pt;}
._2{margin-left:-5.386667pt;}
._4{margin-left:-4.426667pt;}
._1{margin-left:-3.189248pt;}
._0{margin-left:-1.440000pt;}
._3{width:1.013333pt;}
.fsa{font-size:18.656000pt;}
.fs9{font-size:31.093333pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:68.584933pt;}
.ya6{bottom:79.102667pt;}
.y2a{bottom:79.734000pt;}
.y11d{bottom:80.475733pt;}
.y4e{bottom:84.584933pt;}
.y29{bottom:95.734000pt;}
.y11c{bottom:99.675733pt;}
.y4d{bottom:100.584933pt;}
.y4c{bottom:116.584933pt;}
.yd7{bottom:122.876000pt;}
.y28{bottom:127.734000pt;}
.y4b{bottom:132.584933pt;}
.yd6{bottom:140.209333pt;}
.y27{bottom:143.734000pt;}
.y4a{bottom:148.584933pt;}
.yd5{bottom:157.542667pt;}
.y26{bottom:159.734000pt;}
.y49{bottom:164.584933pt;}
.y7e{bottom:170.734400pt;}
.yd4{bottom:174.876000pt;}
.y25{bottom:175.734000pt;}
.y48{bottom:180.584933pt;}
.y7d{bottom:190.734400pt;}
.y24{bottom:191.734000pt;}
.yd3{bottom:192.209333pt;}
.y47{bottom:196.584933pt;}
.y23{bottom:207.734000pt;}
.yd2{bottom:209.542667pt;}
.y7c{bottom:210.734400pt;}
.y46{bottom:212.584933pt;}
.ya5{bottom:218.734400pt;}
.y22{bottom:223.734000pt;}
.yd1{bottom:226.876000pt;}
.y45{bottom:228.584933pt;}
.y7b{bottom:230.734400pt;}
.ya4{bottom:234.734400pt;}
.y21{bottom:239.734000pt;}
.yd0{bottom:244.209333pt;}
.y44{bottom:244.584933pt;}
.y7a{bottom:249.824000pt;}
.ya3{bottom:250.734400pt;}
.y20{bottom:255.734000pt;}
.y43{bottom:260.584933pt;}
.ycf{bottom:261.542667pt;}
.y79{bottom:265.824000pt;}
.y1f{bottom:271.734000pt;}
.y42{bottom:276.584933pt;}
.yce{bottom:278.876000pt;}
.y78{bottom:281.824000pt;}
.ya2{bottom:282.734400pt;}
.yff{bottom:284.184000pt;}
.y1e{bottom:287.734000pt;}
.y41{bottom:292.584933pt;}
.ycd{bottom:296.209333pt;}
.ya1{bottom:298.734400pt;}
.yfe{bottom:300.184000pt;}
.y77{bottom:300.520000pt;}
.y1d{bottom:303.734000pt;}
.y40{bottom:308.584933pt;}
.ycc{bottom:313.542667pt;}
.ya0{bottom:314.734400pt;}
.yfd{bottom:316.184000pt;}
.y1c{bottom:319.734000pt;}
.y3f{bottom:324.584933pt;}
.y76{bottom:329.064000pt;}
.y9f{bottom:330.734400pt;}
.ycb{bottom:330.876000pt;}
.yfc{bottom:332.184000pt;}
.y1b{bottom:335.734000pt;}
.y3e{bottom:340.584933pt;}
.y75{bottom:345.730667pt;}
.yca{bottom:347.382667pt;}
.yfb{bottom:348.184000pt;}
.y74{bottom:360.757333pt;}
.y9e{bottom:362.734400pt;}
.yfa{bottom:364.184000pt;}
.yc9{bottom:365.542667pt;}
.y1a{bottom:367.734000pt;}
.y3d{bottom:372.584933pt;}
.y73{bottom:377.424000pt;}
.y9d{bottom:378.734400pt;}
.yf9{bottom:380.184000pt;}
.yc8{bottom:382.049333pt;}
.y3c{bottom:388.584933pt;}
.yf8{bottom:394.024000pt;}
.y72{bottom:394.734400pt;}
.y3b{bottom:404.584933pt;}
.yf7{bottom:409.901333pt;}
.yc7{bottom:410.876533pt;}
.y3a{bottom:420.584933pt;}
.y71{bottom:421.401067pt;}
.y19{bottom:424.267333pt;}
.y39{bottom:436.584933pt;}
.y18{bottom:440.267333pt;}
.yf6{bottom:444.374933pt;}
.y38{bottom:452.584933pt;}
.y17{bottom:456.267333pt;}
.yf5{bottom:460.374933pt;}
.y37{bottom:468.584933pt;}
.y16{bottom:472.267333pt;}
.y70{bottom:476.067733pt;}
.yf4{bottom:476.374933pt;}
.yc6{bottom:483.500800pt;}
.y36{bottom:484.584933pt;}
.y15{bottom:488.267333pt;}
.y9c{bottom:489.401067pt;}
.y6f{bottom:492.067733pt;}
.yf3{bottom:492.374933pt;}
.yc1{bottom:499.500800pt;}
.y35{bottom:500.584933pt;}
.y14{bottom:504.267333pt;}
.y9b{bottom:505.401067pt;}
.y6e{bottom:508.067733pt;}
.yf2{bottom:508.374933pt;}
.yc0{bottom:515.500800pt;}
.y34{bottom:516.584933pt;}
.y13{bottom:520.267333pt;}
.y9a{bottom:521.401067pt;}
.y6d{bottom:524.067733pt;}
.ybf{bottom:531.500800pt;}
.y33{bottom:532.584933pt;}
.y12{bottom:536.267333pt;}
.y99{bottom:537.401067pt;}
.y6c{bottom:540.067733pt;}
.yf1{bottom:540.374933pt;}
.y11b{bottom:543.041600pt;}
.ybe{bottom:547.500800pt;}
.y98{bottom:553.401067pt;}
.y6b{bottom:556.067733pt;}
.yf0{bottom:556.374933pt;}
.y11a{bottom:559.041600pt;}
.ybd{bottom:563.500800pt;}
.y32{bottom:564.584933pt;}
.y11{bottom:568.267333pt;}
.y97{bottom:569.401067pt;}
.y6a{bottom:572.067733pt;}
.yef{bottom:572.374933pt;}
.y119{bottom:575.041600pt;}
.ybc{bottom:579.500800pt;}
.y10{bottom:584.267333pt;}
.y96{bottom:585.401067pt;}
.y69{bottom:588.067733pt;}
.yee{bottom:588.374933pt;}
.y118{bottom:591.041600pt;}
.y31{bottom:593.918267pt;}
.ybb{bottom:595.500800pt;}
.yf{bottom:600.267333pt;}
.y95{bottom:601.401067pt;}
.y68{bottom:604.067733pt;}
.yed{bottom:604.374933pt;}
.y117{bottom:607.041600pt;}
.yc5{bottom:611.500800pt;}
.ye{bottom:616.267333pt;}
.y94{bottom:617.401067pt;}
.y67{bottom:620.067733pt;}
.y116{bottom:623.041600pt;}
.yba{bottom:627.500800pt;}
.yd{bottom:632.267333pt;}
.y93{bottom:633.401067pt;}
.yec{bottom:636.374933pt;}
.y115{bottom:639.041600pt;}
.yb9{bottom:643.500800pt;}
.y30{bottom:644.587333pt;}
.yc{bottom:648.267333pt;}
.y92{bottom:649.401067pt;}
.y66{bottom:652.067733pt;}
.y114{bottom:655.041600pt;}
.yb8{bottom:659.500800pt;}
.y2f{bottom:660.587333pt;}
.yb{bottom:664.267333pt;}
.y91{bottom:665.401067pt;}
.y65{bottom:668.067733pt;}
.y113{bottom:671.041600pt;}
.yb7{bottom:675.500800pt;}
.y2e{bottom:676.587333pt;}
.ya{bottom:680.267333pt;}
.y90{bottom:681.401067pt;}
.y64{bottom:684.067733pt;}
.y112{bottom:687.041600pt;}
.yeb{bottom:689.279600pt;}
.yb6{bottom:691.500800pt;}
.y2d{bottom:692.587333pt;}
.y8f{bottom:697.401067pt;}
.y63{bottom:700.067733pt;}
.y111{bottom:703.041600pt;}
.yea{bottom:705.279600pt;}
.yb5{bottom:707.500800pt;}
.y2c{bottom:708.587333pt;}
.y9{bottom:712.267200pt;}
.y8e{bottom:713.401067pt;}
.y62{bottom:716.067733pt;}
.y110{bottom:719.041600pt;}
.ye9{bottom:721.279600pt;}
.yb4{bottom:723.500800pt;}
.y2b{bottom:724.587333pt;}
.y8d{bottom:729.401067pt;}
.y61{bottom:732.067733pt;}
.y10f{bottom:735.041600pt;}
.ye8{bottom:737.279600pt;}
.yb3{bottom:739.500800pt;}
.y8c{bottom:745.401067pt;}
.y60{bottom:748.067733pt;}
.y10e{bottom:751.041600pt;}
.ye7{bottom:753.280000pt;}
.yb2{bottom:755.500800pt;}
.y8b{bottom:761.401067pt;}
.y5f{bottom:764.067733pt;}
.ye6{bottom:769.280000pt;}
.yb1{bottom:771.500800pt;}
.y8{bottom:779.278000pt;}
.y10d{bottom:780.881600pt;}
.ye5{bottom:785.280000pt;}
.yc4{bottom:787.500800pt;}
.y8a{bottom:793.401067pt;}
.y5e{bottom:796.067733pt;}
.y10c{bottom:799.041600pt;}
.ye4{bottom:801.280000pt;}
.yb0{bottom:803.500800pt;}
.y89{bottom:809.401067pt;}
.y5d{bottom:812.067733pt;}
.y10b{bottom:815.041600pt;}
.ye3{bottom:817.280000pt;}
.yaf{bottom:819.500800pt;}
.y7{bottom:824.643333pt;}
.y88{bottom:825.401067pt;}
.y5c{bottom:828.068000pt;}
.y10a{bottom:831.041333pt;}
.ye2{bottom:831.120000pt;}
.yae{bottom:835.500800pt;}
.y87{bottom:841.401067pt;}
.y5b{bottom:844.068000pt;}
.ye1{bottom:846.893067pt;}
.y109{bottom:847.041333pt;}
.yad{bottom:851.500800pt;}
.y86{bottom:857.401067pt;}
.y6{bottom:859.299333pt;}
.y5a{bottom:860.068000pt;}
.y52{bottom:861.672800pt;}
.ye0{bottom:862.893067pt;}
.y108{bottom:863.041333pt;}
.yac{bottom:867.500800pt;}
.y85{bottom:873.401067pt;}
.y59{bottom:876.068000pt;}
.ydf{bottom:878.893333pt;}
.y107{bottom:879.041333pt;}
.yab{bottom:883.500800pt;}
.y51{bottom:884.340800pt;}
.y84{bottom:889.401067pt;}
.y58{bottom:892.068000pt;}
.y5{bottom:893.954667pt;}
.yde{bottom:894.893333pt;}
.y106{bottom:895.041333pt;}
.yaa{bottom:899.500800pt;}
.yc3{bottom:899.501333pt;}
.y50{bottom:903.539467pt;}
.y83{bottom:905.401067pt;}
.y57{bottom:908.068000pt;}
.ydd{bottom:910.893333pt;}
.y105{bottom:911.041333pt;}
.ya9{bottom:915.500800pt;}
.yc2{bottom:915.501333pt;}
.y82{bottom:921.401067pt;}
.y56{bottom:924.068000pt;}
.ydc{bottom:926.893333pt;}
.y104{bottom:927.041333pt;}
.y4{bottom:928.610667pt;}
.y81{bottom:937.401067pt;}
.y55{bottom:940.068000pt;}
.ydb{bottom:942.893333pt;}
.y103{bottom:943.041333pt;}
.ya8{bottom:947.500800pt;}
.y80{bottom:953.401067pt;}
.yda{bottom:958.893333pt;}
.y102{bottom:959.041333pt;}
.y7f{bottom:969.401067pt;}
.y54{bottom:972.067733pt;}
.yd9{bottom:974.893333pt;}
.y101{bottom:975.041333pt;}
.ya7{bottom:976.834133pt;}
.y2{bottom:983.842000pt;}
.yd8{bottom:988.733333pt;}
.y100{bottom:991.041333pt;}
.y53{bottom:1001.401067pt;}
.y1{bottom:1007.842000pt;}
.y3{bottom:1056.513733pt;}
.hf{height:13.637536pt;}
.h8{height:38.986667pt;}
.h10{height:38.987733pt;}
.hd{height:40.489227pt;}
.ha{height:42.709333pt;}
.hc{height:42.885333pt;}
.hb{height:46.778667pt;}
.h11{height:46.784000pt;}
.h2{height:58.320000pt;}
.he{height:58.480000pt;}
.h6{height:70.176000pt;}
.h9{height:77.973333pt;}
.h7{height:85.770667pt;}
.h4{height:93.568000pt;}
.h5{height:93.570667pt;}
.h3{height:109.162667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x4{left:71.811067pt;}
.x5{left:87.357733pt;}
.x9{left:98.267733pt;}
.xa{left:102.046667pt;}
.xb{left:410.708667pt;}
.x2{left:413.852933pt;}
.x6{left:420.201333pt;}
.x8{left:427.760400pt;}
.x7{left:435.319467pt;}
.x3{left:570.708667pt;}
}




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