
    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_bdc3a5729baf9bbdd4bb6660.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_7c5815d0481156ad2041540f.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_b1341de941a65996ca54cf22.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6a357797ea24ac05791f8b6.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_ec18cd7682450f6fb834bece.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_d71e71c74e3be0e4d1305d2e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6aba2c61695fd505e61986e7.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_68a222b13cab1d9a4b244436.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_b30a9ae94c94aeac04dd8d26.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0fda101e5118742d7b82a789.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-4.800000px;}
.ls2{letter-spacing:-1.200000px;}
.ls1{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws7{word-spacing:-54.000000px;}
.ws0{word-spacing:-36.696000px;}
.ws1{word-spacing:-21.660000px;}
.ws3{word-spacing:-16.680000px;}
.ws6{word-spacing:-0.096000px;}
.ws5{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-9.936000px;}
._7{margin-left:-7.992000px;}
._5{margin-left:-5.520000px;}
._3{margin-left:-4.440000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.620000px;}
._4{width:1.140000px;}
._6{width:2.376000px;}
.fc3{color:rgb(37,64,143);}
.fc2{color:rgb(158,22,26);}
.fc1{color:rgb(20,74,144);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs7{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs3{font-size:132.000000px;}
.fs1{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:67.997250px;}
.yef{bottom:85.372200px;}
.y84{bottom:85.997250px;}
.y4b{bottom:88.425600px;}
.y2a{bottom:88.968450px;}
.y14d{bottom:93.724200px;}
.yb7{bottom:99.209100px;}
.yee{bottom:103.372200px;}
.y83{bottom:103.997250px;}
.y4a{bottom:106.425600px;}
.y29{bottom:106.968450px;}
.y14c{bottom:115.324200px;}
.yb6{bottom:117.209100px;}
.yed{bottom:121.372200px;}
.y82{bottom:121.997250px;}
.y49{bottom:124.425600px;}
.yb5{bottom:135.209100px;}
.yec{bottom:139.372200px;}
.y81{bottom:139.997250px;}
.y48{bottom:142.425600px;}
.y28{bottom:142.968450px;}
.yb4{bottom:153.209100px;}
.yeb{bottom:157.372200px;}
.y47{bottom:160.425600px;}
.y27{bottom:160.968450px;}
.yb3{bottom:171.209100px;}
.yea{bottom:175.372200px;}
.y80{bottom:175.997250px;}
.y46{bottom:178.425600px;}
.y26{bottom:178.968450px;}
.ye9{bottom:193.372200px;}
.y7f{bottom:193.997250px;}
.y25{bottom:196.968450px;}
.yb2{bottom:207.209100px;}
.ye8{bottom:211.372200px;}
.y7e{bottom:211.997250px;}
.y45{bottom:214.425600px;}
.y24{bottom:214.968450px;}
.y13c{bottom:217.372200px;}
.yb1{bottom:225.209100px;}
.y7d{bottom:229.997250px;}
.ye7{bottom:232.372200px;}
.y44{bottom:232.425600px;}
.y23{bottom:232.968450px;}
.y13b{bottom:235.372200px;}
.y7c{bottom:247.997250px;}
.y13a{bottom:253.372200px;}
.yb0{bottom:261.209100px;}
.y7b{bottom:265.997250px;}
.y43{bottom:268.425600px;}
.y22{bottom:268.968450px;}
.ye6{bottom:269.872200px;}
.y139{bottom:271.372200px;}
.yaf{bottom:279.209100px;}
.y7a{bottom:283.997250px;}
.y42{bottom:286.425600px;}
.y21{bottom:286.968450px;}
.ye5{bottom:287.872200px;}
.yae{bottom:297.209100px;}
.y79{bottom:301.997250px;}
.y20{bottom:304.968450px;}
.ye4{bottom:305.872200px;}
.y138{bottom:307.372200px;}
.yad{bottom:315.209100px;}
.y78{bottom:319.997250px;}
.y41{bottom:322.425600px;}
.y1f{bottom:322.968450px;}
.ye3{bottom:323.872200px;}
.y137{bottom:325.372200px;}
.y112{bottom:328.015050px;}
.y40{bottom:340.425600px;}
.y1e{bottom:340.968450px;}
.ye2{bottom:341.872200px;}
.y136{bottom:343.372200px;}
.y111{bottom:346.015050px;}
.yac{bottom:351.209100px;}
.y77{bottom:355.997250px;}
.y1d{bottom:358.968450px;}
.ye1{bottom:359.872200px;}
.y135{bottom:361.372200px;}
.y110{bottom:364.015050px;}
.yab{bottom:369.209100px;}
.y76{bottom:373.997250px;}
.y3f{bottom:376.425600px;}
.y1c{bottom:376.968450px;}
.ye0{bottom:377.872200px;}
.y134{bottom:379.372200px;}
.y10f{bottom:382.015050px;}
.yaa{bottom:387.209100px;}
.y75{bottom:391.997250px;}
.y3e{bottom:394.425600px;}
.y1b{bottom:394.968450px;}
.ydf{bottom:395.872200px;}
.y133{bottom:397.372200px;}
.y10e{bottom:400.015050px;}
.ya9{bottom:405.209100px;}
.y74{bottom:409.997250px;}
.yde{bottom:413.872200px;}
.y10d{bottom:418.015050px;}
.ya8{bottom:423.209100px;}
.y3d{bottom:430.425600px;}
.y1a{bottom:430.968450px;}
.ydd{bottom:431.872200px;}
.y132{bottom:433.372200px;}
.y10c{bottom:436.015050px;}
.ya7{bottom:441.209100px;}
.y73{bottom:445.997250px;}
.y3c{bottom:448.425600px;}
.y19{bottom:448.968450px;}
.ydc{bottom:449.872200px;}
.y131{bottom:451.372200px;}
.y10b{bottom:454.015050px;}
.ya6{bottom:463.709100px;}
.y72{bottom:463.997250px;}
.y3b{bottom:466.425600px;}
.y18{bottom:466.968450px;}
.ydb{bottom:467.872200px;}
.y130{bottom:469.372200px;}
.y10a{bottom:472.015050px;}
.y71{bottom:481.997250px;}
.y3a{bottom:484.425600px;}
.y17{bottom:484.968450px;}
.yda{bottom:485.872200px;}
.y12f{bottom:487.372200px;}
.y109{bottom:490.015050px;}
.y16{bottom:502.968450px;}
.yd9{bottom:503.872200px;}
.ya5{bottom:510.209100px;}
.y70{bottom:517.997250px;}
.y39{bottom:520.425600px;}
.yd8{bottom:521.872200px;}
.y12e{bottom:523.372200px;}
.y108{bottom:526.015050px;}
.y6f{bottom:535.997250px;}
.y38{bottom:538.425600px;}
.y15{bottom:538.968450px;}
.yd7{bottom:539.872200px;}
.y12d{bottom:541.372200px;}
.y107{bottom:544.015050px;}
.y6e{bottom:553.997250px;}
.y37{bottom:556.425600px;}
.yd6{bottom:560.872200px;}
.y106{bottom:562.015050px;}
.ya4{bottom:571.709100px;}
.y6d{bottom:571.997250px;}
.y36{bottom:574.425600px;}
.y12c{bottom:577.372200px;}
.ya3{bottom:589.709100px;}
.y6c{bottom:589.997250px;}
.y35{bottom:592.425600px;}
.y12b{bottom:595.372200px;}
.y105{bottom:598.015050px;}
.yd5{bottom:598.372200px;}
.y14{bottom:605.568450px;}
.ya2{bottom:607.709100px;}
.y6b{bottom:607.997250px;}
.y34{bottom:610.425600px;}
.y12a{bottom:613.372200px;}
.yd4{bottom:616.372200px;}
.y13{bottom:623.568450px;}
.ya1{bottom:625.709100px;}
.y6a{bottom:625.997250px;}
.y33{bottom:628.425600px;}
.y104{bottom:631.015050px;}
.yd3{bottom:634.372200px;}
.y12{bottom:641.568450px;}
.ya0{bottom:643.709100px;}
.y69{bottom:643.997250px;}
.y32{bottom:646.425600px;}
.y129{bottom:649.372200px;}
.y11{bottom:659.568450px;}
.y9f{bottom:661.709100px;}
.y103{bottom:664.015050px;}
.y31{bottom:664.425600px;}
.y128{bottom:667.372200px;}
.yd2{bottom:670.372200px;}
.y10{bottom:677.568450px;}
.y9e{bottom:679.709100px;}
.y68{bottom:679.997250px;}
.yd1{bottom:688.372200px;}
.yf{bottom:695.568450px;}
.y9d{bottom:697.709100px;}
.y67{bottom:697.997250px;}
.y30{bottom:700.425600px;}
.y127{bottom:703.372200px;}
.yd0{bottom:706.372200px;}
.y113{bottom:712.774950px;}
.ye{bottom:713.568450px;}
.y9c{bottom:715.709100px;}
.y66{bottom:715.997250px;}
.ycf{bottom:724.372200px;}
.yd{bottom:731.568450px;}
.y2f{bottom:733.425600px;}
.y9b{bottom:733.709100px;}
.y65{bottom:733.997250px;}
.y14b{bottom:737.515050px;}
.yce{bottom:742.372200px;}
.yc{bottom:749.568450px;}
.y9a{bottom:751.709100px;}
.y14a{bottom:755.515050px;}
.ycd{bottom:760.372200px;}
.y102{bottom:761.514900px;}
.yb{bottom:767.568450px;}
.y99{bottom:769.709100px;}
.y64{bottom:769.997250px;}
.ycc{bottom:778.372200px;}
.y101{bottom:779.514900px;}
.ya{bottom:785.568450px;}
.y98{bottom:787.709100px;}
.y63{bottom:787.997250px;}
.y149{bottom:788.514900px;}
.ycb{bottom:796.372200px;}
.y100{bottom:797.514900px;}
.y2e{bottom:799.428450px;}
.y9{bottom:803.568450px;}
.y97{bottom:805.709100px;}
.y62{bottom:805.997250px;}
.y126{bottom:808.372200px;}
.yca{bottom:814.372200px;}
.yff{bottom:815.514900px;}
.y2d{bottom:817.428450px;}
.y96{bottom:823.709100px;}
.y61{bottom:823.997250px;}
.y125{bottom:826.372200px;}
.yc9{bottom:832.372200px;}
.yfe{bottom:833.514900px;}
.y2c{bottom:835.428450px;}
.y8{bottom:839.568450px;}
.y95{bottom:841.709100px;}
.y60{bottom:841.997250px;}
.y124{bottom:844.372200px;}
.yc8{bottom:850.372200px;}
.yfd{bottom:851.514900px;}
.y2b{bottom:853.428450px;}
.y94{bottom:859.709100px;}
.y123{bottom:862.372200px;}
.yc7{bottom:871.372200px;}
.y93{bottom:877.709100px;}
.y5f{bottom:877.997250px;}
.y122{bottom:880.372200px;}
.yfc{bottom:887.514900px;}
.y148{bottom:887.532900px;}
.y5e{bottom:895.997250px;}
.y121{bottom:898.372200px;}
.yfb{bottom:905.514900px;}
.y147{bottom:905.528400px;}
.y7{bottom:906.837750px;}
.yc6{bottom:908.872200px;}
.y92{bottom:910.709100px;}
.y5d{bottom:913.997250px;}
.yfa{bottom:923.514900px;}
.y146{bottom:923.523900px;}
.yc5{bottom:926.872200px;}
.y5c{bottom:931.997250px;}
.y120{bottom:934.372200px;}
.yf9{bottom:941.514900px;}
.yc4{bottom:944.872200px;}
.y6{bottom:948.883950px;}
.y5b{bottom:949.997250px;}
.y11f{bottom:952.372200px;}
.yf8{bottom:959.514900px;}
.y145{bottom:959.528400px;}
.y4f{bottom:961.378350px;}
.yc3{bottom:962.872200px;}
.y5a{bottom:967.997250px;}
.y11e{bottom:970.372200px;}
.yf7{bottom:977.514900px;}
.y144{bottom:977.523900px;}
.y91{bottom:979.712250px;}
.yc2{bottom:980.872200px;}
.y4e{bottom:982.382850px;}
.y59{bottom:985.997250px;}
.y11d{bottom:988.372200px;}
.y5{bottom:993.865950px;}
.yf6{bottom:995.514900px;}
.y90{bottom:997.712250px;}
.yc1{bottom:998.872200px;}
.y4d{bottom:1003.387350px;}
.y58{bottom:1003.997250px;}
.y11c{bottom:1006.372200px;}
.y143{bottom:1013.528400px;}
.y8f{bottom:1015.712250px;}
.yc0{bottom:1016.872200px;}
.y57{bottom:1021.997250px;}
.y11b{bottom:1024.372200px;}
.y4c{bottom:1024.985850px;}
.yf5{bottom:1031.514900px;}
.y142{bottom:1031.523900px;}
.y8e{bottom:1033.712250px;}
.ybf{bottom:1034.872200px;}
.y4{bottom:1038.847950px;}
.y56{bottom:1039.997250px;}
.y11a{bottom:1042.372200px;}
.yf4{bottom:1049.514900px;}
.y141{bottom:1049.519400px;}
.y8d{bottom:1051.712250px;}
.ybe{bottom:1055.872200px;}
.y55{bottom:1057.997250px;}
.yf3{bottom:1067.514900px;}
.y8c{bottom:1069.712250px;}
.y119{bottom:1078.372200px;}
.y140{bottom:1085.523900px;}
.y8b{bottom:1087.712250px;}
.ybd{bottom:1093.372200px;}
.y54{bottom:1093.997250px;}
.y118{bottom:1096.372200px;}
.yf2{bottom:1103.514900px;}
.y13f{bottom:1103.519400px;}
.y8a{bottom:1105.712250px;}
.y2{bottom:1106.822250px;}
.ybc{bottom:1111.372200px;}
.y53{bottom:1111.997250px;}
.y117{bottom:1114.372200px;}
.y13e{bottom:1121.514900px;}
.y89{bottom:1123.712250px;}
.ybb{bottom:1129.372200px;}
.y52{bottom:1129.997250px;}
.y116{bottom:1132.372200px;}
.y1{bottom:1133.822250px;}
.yf1{bottom:1136.514900px;}
.y88{bottom:1141.712250px;}
.yba{bottom:1147.372200px;}
.y51{bottom:1147.997250px;}
.y115{bottom:1150.372200px;}
.y13d{bottom:1154.514900px;}
.y87{bottom:1159.712250px;}
.yb9{bottom:1165.372200px;}
.y114{bottom:1168.372200px;}
.yf0{bottom:1169.514900px;}
.y86{bottom:1177.712250px;}
.yb8{bottom:1183.372200px;}
.y50{bottom:1183.997250px;}
.y3{bottom:1188.577950px;}
.hd{height:39.474000px;}
.hb{height:43.740000px;}
.h6{height:43.860000px;}
.h8{height:48.048000px;}
.h9{height:48.246000px;}
.hc{height:52.632000px;}
.h2{height:65.610000px;}
.ha{height:70.176000px;}
.h4{height:78.948000px;}
.h7{height:87.720000px;}
.h5{height:96.492000px;}
.h3{height:122.808000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:48.271650px;}
.x1{left:63.779550px;}
.x8{left:80.787300px;}
.x5{left:85.034550px;}
.x9{left:102.042300px;}
.xb{left:452.834700px;}
.x2{left:465.584550px;}
.x6{left:472.724550px;}
.x3{left:486.845550px;}
.x7{left:493.981500px;}
.xd{left:626.145000px;}
.x4{left:657.637800px;}
.xc{left:672.207000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-4.266667pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws7{word-spacing:-48.000000pt;}
.ws0{word-spacing:-32.618667pt;}
.ws1{word-spacing:-19.253333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws6{word-spacing:-0.085333pt;}
.ws5{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-8.832000pt;}
._7{margin-left:-7.104000pt;}
._5{margin-left:-4.906667pt;}
._3{margin-left:-3.946667pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.440000pt;}
._4{width:1.013333pt;}
._6{width:2.112000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs7{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs3{font-size:117.333333pt;}
.fs1{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:60.442000pt;}
.yef{bottom:75.886400pt;}
.y84{bottom:76.442000pt;}
.y4b{bottom:78.600533pt;}
.y2a{bottom:79.083067pt;}
.y14d{bottom:83.310400pt;}
.yb7{bottom:88.185867pt;}
.yee{bottom:91.886400pt;}
.y83{bottom:92.442000pt;}
.y4a{bottom:94.600533pt;}
.y29{bottom:95.083067pt;}
.y14c{bottom:102.510400pt;}
.yb6{bottom:104.185867pt;}
.yed{bottom:107.886400pt;}
.y82{bottom:108.442000pt;}
.y49{bottom:110.600533pt;}
.yb5{bottom:120.185867pt;}
.yec{bottom:123.886400pt;}
.y81{bottom:124.442000pt;}
.y48{bottom:126.600533pt;}
.y28{bottom:127.083067pt;}
.yb4{bottom:136.185867pt;}
.yeb{bottom:139.886400pt;}
.y47{bottom:142.600533pt;}
.y27{bottom:143.083067pt;}
.yb3{bottom:152.185867pt;}
.yea{bottom:155.886400pt;}
.y80{bottom:156.442000pt;}
.y46{bottom:158.600533pt;}
.y26{bottom:159.083067pt;}
.ye9{bottom:171.886400pt;}
.y7f{bottom:172.442000pt;}
.y25{bottom:175.083067pt;}
.yb2{bottom:184.185867pt;}
.ye8{bottom:187.886400pt;}
.y7e{bottom:188.442000pt;}
.y45{bottom:190.600533pt;}
.y24{bottom:191.083067pt;}
.y13c{bottom:193.219733pt;}
.yb1{bottom:200.185867pt;}
.y7d{bottom:204.442000pt;}
.ye7{bottom:206.553067pt;}
.y44{bottom:206.600533pt;}
.y23{bottom:207.083067pt;}
.y13b{bottom:209.219733pt;}
.y7c{bottom:220.442000pt;}
.y13a{bottom:225.219733pt;}
.yb0{bottom:232.185867pt;}
.y7b{bottom:236.442000pt;}
.y43{bottom:238.600533pt;}
.y22{bottom:239.083067pt;}
.ye6{bottom:239.886400pt;}
.y139{bottom:241.219733pt;}
.yaf{bottom:248.185867pt;}
.y7a{bottom:252.442000pt;}
.y42{bottom:254.600533pt;}
.y21{bottom:255.083067pt;}
.ye5{bottom:255.886400pt;}
.yae{bottom:264.185867pt;}
.y79{bottom:268.442000pt;}
.y20{bottom:271.083067pt;}
.ye4{bottom:271.886400pt;}
.y138{bottom:273.219733pt;}
.yad{bottom:280.185867pt;}
.y78{bottom:284.442000pt;}
.y41{bottom:286.600533pt;}
.y1f{bottom:287.083067pt;}
.ye3{bottom:287.886400pt;}
.y137{bottom:289.219733pt;}
.y112{bottom:291.568933pt;}
.y40{bottom:302.600533pt;}
.y1e{bottom:303.083067pt;}
.ye2{bottom:303.886400pt;}
.y136{bottom:305.219733pt;}
.y111{bottom:307.568933pt;}
.yac{bottom:312.185867pt;}
.y77{bottom:316.442000pt;}
.y1d{bottom:319.083067pt;}
.ye1{bottom:319.886400pt;}
.y135{bottom:321.219733pt;}
.y110{bottom:323.568933pt;}
.yab{bottom:328.185867pt;}
.y76{bottom:332.442000pt;}
.y3f{bottom:334.600533pt;}
.y1c{bottom:335.083067pt;}
.ye0{bottom:335.886400pt;}
.y134{bottom:337.219733pt;}
.y10f{bottom:339.568933pt;}
.yaa{bottom:344.185867pt;}
.y75{bottom:348.442000pt;}
.y3e{bottom:350.600533pt;}
.y1b{bottom:351.083067pt;}
.ydf{bottom:351.886400pt;}
.y133{bottom:353.219733pt;}
.y10e{bottom:355.568933pt;}
.ya9{bottom:360.185867pt;}
.y74{bottom:364.442000pt;}
.yde{bottom:367.886400pt;}
.y10d{bottom:371.568933pt;}
.ya8{bottom:376.185867pt;}
.y3d{bottom:382.600533pt;}
.y1a{bottom:383.083067pt;}
.ydd{bottom:383.886400pt;}
.y132{bottom:385.219733pt;}
.y10c{bottom:387.568933pt;}
.ya7{bottom:392.185867pt;}
.y73{bottom:396.442000pt;}
.y3c{bottom:398.600533pt;}
.y19{bottom:399.083067pt;}
.ydc{bottom:399.886400pt;}
.y131{bottom:401.219733pt;}
.y10b{bottom:403.568933pt;}
.ya6{bottom:412.185867pt;}
.y72{bottom:412.442000pt;}
.y3b{bottom:414.600533pt;}
.y18{bottom:415.083067pt;}
.ydb{bottom:415.886400pt;}
.y130{bottom:417.219733pt;}
.y10a{bottom:419.568933pt;}
.y71{bottom:428.442000pt;}
.y3a{bottom:430.600533pt;}
.y17{bottom:431.083067pt;}
.yda{bottom:431.886400pt;}
.y12f{bottom:433.219733pt;}
.y109{bottom:435.568933pt;}
.y16{bottom:447.083067pt;}
.yd9{bottom:447.886400pt;}
.ya5{bottom:453.519200pt;}
.y70{bottom:460.442000pt;}
.y39{bottom:462.600533pt;}
.yd8{bottom:463.886400pt;}
.y12e{bottom:465.219733pt;}
.y108{bottom:467.568933pt;}
.y6f{bottom:476.442000pt;}
.y38{bottom:478.600533pt;}
.y15{bottom:479.083067pt;}
.yd7{bottom:479.886400pt;}
.y12d{bottom:481.219733pt;}
.y107{bottom:483.568933pt;}
.y6e{bottom:492.442000pt;}
.y37{bottom:494.600533pt;}
.yd6{bottom:498.553067pt;}
.y106{bottom:499.568933pt;}
.ya4{bottom:508.185867pt;}
.y6d{bottom:508.442000pt;}
.y36{bottom:510.600533pt;}
.y12c{bottom:513.219733pt;}
.ya3{bottom:524.185867pt;}
.y6c{bottom:524.442000pt;}
.y35{bottom:526.600533pt;}
.y12b{bottom:529.219733pt;}
.y105{bottom:531.568933pt;}
.yd5{bottom:531.886400pt;}
.y14{bottom:538.283067pt;}
.ya2{bottom:540.185867pt;}
.y6b{bottom:540.442000pt;}
.y34{bottom:542.600533pt;}
.y12a{bottom:545.219733pt;}
.yd4{bottom:547.886400pt;}
.y13{bottom:554.283067pt;}
.ya1{bottom:556.185867pt;}
.y6a{bottom:556.442000pt;}
.y33{bottom:558.600533pt;}
.y104{bottom:560.902267pt;}
.yd3{bottom:563.886400pt;}
.y12{bottom:570.283067pt;}
.ya0{bottom:572.185867pt;}
.y69{bottom:572.442000pt;}
.y32{bottom:574.600533pt;}
.y129{bottom:577.219733pt;}
.y11{bottom:586.283067pt;}
.y9f{bottom:588.185867pt;}
.y103{bottom:590.235600pt;}
.y31{bottom:590.600533pt;}
.y128{bottom:593.219733pt;}
.yd2{bottom:595.886400pt;}
.y10{bottom:602.283067pt;}
.y9e{bottom:604.185867pt;}
.y68{bottom:604.442000pt;}
.yd1{bottom:611.886400pt;}
.yf{bottom:618.283067pt;}
.y9d{bottom:620.185867pt;}
.y67{bottom:620.442000pt;}
.y30{bottom:622.600533pt;}
.y127{bottom:625.219733pt;}
.yd0{bottom:627.886400pt;}
.y113{bottom:633.577733pt;}
.ye{bottom:634.283067pt;}
.y9c{bottom:636.185867pt;}
.y66{bottom:636.442000pt;}
.ycf{bottom:643.886400pt;}
.yd{bottom:650.283067pt;}
.y2f{bottom:651.933867pt;}
.y9b{bottom:652.185867pt;}
.y65{bottom:652.442000pt;}
.y14b{bottom:655.568933pt;}
.yce{bottom:659.886400pt;}
.yc{bottom:666.283067pt;}
.y9a{bottom:668.185867pt;}
.y14a{bottom:671.568933pt;}
.ycd{bottom:675.886400pt;}
.y102{bottom:676.902133pt;}
.yb{bottom:682.283067pt;}
.y99{bottom:684.185867pt;}
.y64{bottom:684.442000pt;}
.ycc{bottom:691.886400pt;}
.y101{bottom:692.902133pt;}
.ya{bottom:698.283067pt;}
.y98{bottom:700.185867pt;}
.y63{bottom:700.442000pt;}
.y149{bottom:700.902133pt;}
.ycb{bottom:707.886400pt;}
.y100{bottom:708.902133pt;}
.y2e{bottom:710.603067pt;}
.y9{bottom:714.283067pt;}
.y97{bottom:716.185867pt;}
.y62{bottom:716.442000pt;}
.y126{bottom:718.553067pt;}
.yca{bottom:723.886400pt;}
.yff{bottom:724.902133pt;}
.y2d{bottom:726.603067pt;}
.y96{bottom:732.185867pt;}
.y61{bottom:732.442000pt;}
.y125{bottom:734.553067pt;}
.yc9{bottom:739.886400pt;}
.yfe{bottom:740.902133pt;}
.y2c{bottom:742.603067pt;}
.y8{bottom:746.283067pt;}
.y95{bottom:748.185867pt;}
.y60{bottom:748.442000pt;}
.y124{bottom:750.553067pt;}
.yc8{bottom:755.886400pt;}
.yfd{bottom:756.902133pt;}
.y2b{bottom:758.603067pt;}
.y94{bottom:764.185867pt;}
.y123{bottom:766.553067pt;}
.yc7{bottom:774.553067pt;}
.y93{bottom:780.185867pt;}
.y5f{bottom:780.442000pt;}
.y122{bottom:782.553067pt;}
.yfc{bottom:788.902133pt;}
.y148{bottom:788.918133pt;}
.y5e{bottom:796.442000pt;}
.y121{bottom:798.553067pt;}
.yfb{bottom:804.902133pt;}
.y147{bottom:804.914133pt;}
.y7{bottom:806.078000pt;}
.yc6{bottom:807.886400pt;}
.y92{bottom:809.519200pt;}
.y5d{bottom:812.442000pt;}
.yfa{bottom:820.902133pt;}
.y146{bottom:820.910133pt;}
.yc5{bottom:823.886400pt;}
.y5c{bottom:828.442000pt;}
.y120{bottom:830.553067pt;}
.yf9{bottom:836.902133pt;}
.yc4{bottom:839.886400pt;}
.y6{bottom:843.452400pt;}
.y5b{bottom:844.442000pt;}
.y11f{bottom:846.553067pt;}
.yf8{bottom:852.902133pt;}
.y145{bottom:852.914133pt;}
.y4f{bottom:854.558533pt;}
.yc3{bottom:855.886400pt;}
.y5a{bottom:860.442000pt;}
.y11e{bottom:862.553067pt;}
.yf7{bottom:868.902133pt;}
.y144{bottom:868.910133pt;}
.y91{bottom:870.855333pt;}
.yc2{bottom:871.886400pt;}
.y4e{bottom:873.229200pt;}
.y59{bottom:876.442000pt;}
.y11d{bottom:878.553067pt;}
.y5{bottom:883.436400pt;}
.yf6{bottom:884.902133pt;}
.y90{bottom:886.855333pt;}
.yc1{bottom:887.886400pt;}
.y4d{bottom:891.899867pt;}
.y58{bottom:892.442000pt;}
.y11c{bottom:894.553067pt;}
.y143{bottom:900.914133pt;}
.y8f{bottom:902.855333pt;}
.yc0{bottom:903.886400pt;}
.y57{bottom:908.442000pt;}
.y11b{bottom:910.553067pt;}
.y4c{bottom:911.098533pt;}
.yf5{bottom:916.902133pt;}
.y142{bottom:916.910133pt;}
.y8e{bottom:918.855333pt;}
.ybf{bottom:919.886400pt;}
.y4{bottom:923.420400pt;}
.y56{bottom:924.442000pt;}
.y11a{bottom:926.553067pt;}
.yf4{bottom:932.902133pt;}
.y141{bottom:932.906133pt;}
.y8d{bottom:934.855333pt;}
.ybe{bottom:938.553067pt;}
.y55{bottom:940.442000pt;}
.yf3{bottom:948.902133pt;}
.y8c{bottom:950.855333pt;}
.y119{bottom:958.553067pt;}
.y140{bottom:964.910133pt;}
.y8b{bottom:966.855333pt;}
.ybd{bottom:971.886400pt;}
.y54{bottom:972.442000pt;}
.y118{bottom:974.553067pt;}
.yf2{bottom:980.902133pt;}
.y13f{bottom:980.906133pt;}
.y8a{bottom:982.855333pt;}
.y2{bottom:983.842000pt;}
.ybc{bottom:987.886400pt;}
.y53{bottom:988.442000pt;}
.y117{bottom:990.553067pt;}
.y13e{bottom:996.902133pt;}
.y89{bottom:998.855333pt;}
.ybb{bottom:1003.886400pt;}
.y52{bottom:1004.442000pt;}
.y116{bottom:1006.553067pt;}
.y1{bottom:1007.842000pt;}
.yf1{bottom:1010.235467pt;}
.y88{bottom:1014.855333pt;}
.yba{bottom:1019.886400pt;}
.y51{bottom:1020.442000pt;}
.y115{bottom:1022.553067pt;}
.y13d{bottom:1026.235467pt;}
.y87{bottom:1030.855333pt;}
.yb9{bottom:1035.886400pt;}
.y114{bottom:1038.553067pt;}
.yf0{bottom:1039.568800pt;}
.y86{bottom:1046.855333pt;}
.yb8{bottom:1051.886400pt;}
.y50{bottom:1052.442000pt;}
.y3{bottom:1056.513733pt;}
.hd{height:35.088000pt;}
.hb{height:38.880000pt;}
.h6{height:38.986667pt;}
.h8{height:42.709333pt;}
.h9{height:42.885333pt;}
.hc{height:46.784000pt;}
.h2{height:58.320000pt;}
.ha{height:62.378667pt;}
.h4{height:70.176000pt;}
.h7{height:77.973333pt;}
.h5{height:85.770667pt;}
.h3{height:109.162667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:42.908133pt;}
.x1{left:56.692933pt;}
.x8{left:71.810933pt;}
.x5{left:75.586267pt;}
.x9{left:90.704267pt;}
.xb{left:402.519733pt;}
.x2{left:413.852933pt;}
.x6{left:420.199600pt;}
.x3{left:432.751600pt;}
.x7{left:439.094667pt;}
.xd{left:556.573333pt;}
.x4{left:584.566933pt;}
.xc{left:597.517333pt;}
}




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