
    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_903658ce278c895aededd2bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_9dd076ad4ef0ebe51510ab82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_d53890bf3c5d6dcb54e10e8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691000;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_a3c5c7638e6d9f851bc5f654.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_315799ce0c0ce94a52c272ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-4.132800px;}
.ls4{letter-spacing:-0.413400px;}
.ls1{letter-spacing:-0.048000px;}
.ls5{letter-spacing:-0.033600px;}
.ls10{letter-spacing:-0.026400px;}
.ls8{letter-spacing:-0.025200px;}
.lse{letter-spacing:-0.019800px;}
.ls13{letter-spacing:-0.016800px;}
.lsd{letter-spacing:-0.013200px;}
.ls6{letter-spacing:-0.012600px;}
.ls7{letter-spacing:-0.010800px;}
.lsc{letter-spacing:-0.006600px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.006600px;}
.ls12{letter-spacing:0.008400px;}
.ls11{letter-spacing:0.025200px;}
.ls0{letter-spacing:0.026400px;}
.ls2{letter-spacing:0.039000px;}
.lsa{letter-spacing:271.935600px;}
.ls9{letter-spacing:277.253400px;}
.lsb{letter-spacing:325.899600px;}
.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;}
}
.ws2{word-spacing:-61.560000px;}
.ws14{word-spacing:-43.092000px;}
.ws15{word-spacing:-29.593200px;}
.ws9{word-spacing:-29.568000px;}
.ws16{word-spacing:-29.542800px;}
.ws4{word-spacing:-28.694400px;}
.ws3{word-spacing:-27.456000px;}
.ws5{word-spacing:-23.232000px;}
.ws7{word-spacing:-22.598400px;}
.ws6{word-spacing:-22.572000px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:48.634200px;}
.wsd{word-spacing:194.789400px;}
.ws0{word-spacing:212.538000px;}
.wsb{word-spacing:235.166400px;}
.wsc{word-spacing:248.753400px;}
.ws12{word-spacing:330.902400px;}
.wse{word-spacing:335.441400px;}
.ws13{word-spacing:342.943200px;}
.wsf{word-spacing:406.705200px;}
.ws10{word-spacing:428.618400px;}
.ws11{word-spacing:536.422800px;}
.wsa{word-spacing:2638.901400px;}
._6{margin-left:-12.540600px;}
._b{margin-left:-11.078400px;}
._4{margin-left:-9.477600px;}
._1{margin-left:-7.690800px;}
._3{margin-left:-6.118200px;}
._5{margin-left:-4.543200px;}
._c{margin-left:-3.031800px;}
._0{margin-left:-1.957800px;}
._2{width:1.255800px;}
._d{width:3.579600px;}
._e{width:4.736400px;}
._9{width:459.100800px;}
._a{width:492.106200px;}
._8{width:544.290600px;}
._7{width:655.365000px;}
.fc3{color:rgb(0,143,24);}
.fc2{color:rgb(0,143,24);}
.fc4{color:rgb(84,84,84);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(221,221,221);}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:126.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:10.500000px;}
.yd5{bottom:13.500000px;}
.y72{bottom:27.000000px;}
.y26{bottom:30.000000px;}
.y56{bottom:36.000000px;}
.yb9{bottom:43.500000px;}
.yd4{bottom:48.000000px;}
.y71{bottom:52.500000px;}
.y25{bottom:55.500000px;}
.yb8{bottom:69.000000px;}
.y55{bottom:72.000000px;}
.yd3{bottom:73.500000px;}
.y24{bottom:81.000000px;}
.y70{bottom:87.000000px;}
.yb7{bottom:94.500000px;}
.yd2{bottom:99.000000px;}
.ya3{bottom:100.500000px;}
.y23{bottom:106.500000px;}
.y6f{bottom:112.500000px;}
.ya2{bottom:120.000000px;}
.yd1{bottom:124.500000px;}
.y22{bottom:138.000000px;}
.yb6{bottom:145.500000px;}
.y103{bottom:153.000000px;}
.yd0{bottom:157.500000px;}
.y54{bottom:163.500000px;}
.ya1{bottom:166.500000px;}
.yb5{bottom:171.000000px;}
.ycf{bottom:183.000000px;}
.y102{bottom:184.500000px;}
.y53{bottom:189.000000px;}
.ya0{bottom:192.000000px;}
.yb4{bottom:196.500000px;}
.y8c{bottom:198.000000px;}
.y52{bottom:214.500000px;}
.y21{bottom:216.000000px;}
.y8b{bottom:217.500000px;}
.yb3{bottom:229.500000px;}
.y20{bottom:235.500000px;}
.y51{bottom:240.000000px;}
.y9f{bottom:243.000000px;}
.y101{bottom:247.500000px;}
.y1f{bottom:255.000000px;}
.y8a{bottom:262.500000px;}
.y9e{bottom:268.500000px;}
.y50{bottom:271.500000px;}
.y6e{bottom:273.000000px;}
.y1e{bottom:274.500000px;}
.yce{bottom:276.000000px;}
.yb2{bottom:280.500000px;}
.y89{bottom:288.000000px;}
.y1d{bottom:294.000000px;}
.y100{bottom:298.497000px;}
.y6d{bottom:298.500000px;}
.ycd{bottom:301.500000px;}
.yb1{bottom:306.000000px;}
.y1c{bottom:313.500000px;}
.yff{bottom:318.000000px;}
.y9d{bottom:319.500000px;}
.y6c{bottom:324.000000px;}
.yb0{bottom:331.500000px;}
.y1b{bottom:333.000000px;}
.ycc{bottom:336.000000px;}
.yfe{bottom:337.503000px;}
.y6b{bottom:349.500000px;}
.y1a{bottom:352.500000px;}
.yaf{bottom:357.000000px;}
.y4f{bottom:358.500000px;}
.y88{bottom:361.500000px;}
.yfd{bottom:362.995500px;}
.y19{bottom:372.000000px;}
.y9c{bottom:378.000000px;}
.yfc{bottom:382.498500px;}
.yae{bottom:382.500000px;}
.y4e{bottom:384.000000px;}
.ycb{bottom:387.000000px;}
.y18{bottom:391.500000px;}
.yfb{bottom:402.001500px;}
.y9b{bottom:403.500000px;}
.yad{bottom:408.000000px;}
.y4d{bottom:409.500000px;}
.y17{bottom:411.000000px;}
.y87{bottom:412.500000px;}
.yca{bottom:420.000000px;}
.yfa{bottom:428.995500px;}
.y9a{bottom:429.000000px;}
.y16{bottom:430.500000px;}
.y4c{bottom:435.000000px;}
.y86{bottom:438.000000px;}
.yac{bottom:442.500000px;}
.yc9{bottom:445.500000px;}
.yf9{bottom:448.498500px;}
.y15{bottom:450.000000px;}
.y99{bottom:454.500000px;}
.y6a{bottom:460.500000px;}
.y4b{bottom:468.000000px;}
.yf8{bottom:468.001500px;}
.yc8{bottom:471.000000px;}
.y14{bottom:477.000000px;}
.y98{bottom:480.000000px;}
.y69{bottom:486.000000px;}
.yf7{bottom:493.494000px;}
.y4a{bottom:493.500000px;}
.yc7{bottom:504.000000px;}
.yf6{bottom:512.997000px;}
.y97{bottom:513.000000px;}
.y68{bottom:517.500000px;}
.y49{bottom:519.000000px;}
.yc6{bottom:529.500000px;}
.yf5{bottom:532.500000px;}
.y96{bottom:538.500000px;}
.y13{bottom:544.500000px;}
.yc5{bottom:555.000000px;}
.y12{bottom:567.000000px;}
.y48{bottom:570.000000px;}
.y85{bottom:574.500000px;}
.y67{bottom:577.500000px;}
.yf4{bottom:580.665000px;}
.yc4{bottom:589.500000px;}
.y11{bottom:591.000000px;}
.y47{bottom:595.500000px;}
.y84{bottom:600.000000px;}
.y66{bottom:603.000000px;}
.yf3{bottom:606.159000px;}
.y10{bottom:613.500000px;}
.yc3{bottom:615.000000px;}
.y46{bottom:621.000000px;}
.y65{bottom:628.500000px;}
.yf2{bottom:631.653000px;}
.yf{bottom:636.000000px;}
.yc2{bottom:640.500000px;}
.y95{bottom:651.000000px;}
.y64{bottom:654.000000px;}
.y45{bottom:655.500000px;}
.yf1{bottom:657.147000px;}
.ye{bottom:660.000000px;}
.yc1{bottom:673.500000px;}
.y63{bottom:679.500000px;}
.y44{bottom:681.000000px;}
.yf0{bottom:690.138000px;}
.yc0{bottom:699.000000px;}
.y94{bottom:703.500000px;}
.y62{bottom:705.000000px;}
.y43{bottom:706.500000px;}
.yef{bottom:715.632000px;}
.yd{bottom:721.500000px;}
.y93{bottom:723.000000px;}
.yab{bottom:730.500000px;}
.y42{bottom:732.000000px;}
.ybf{bottom:733.500000px;}
.y83{bottom:736.500000px;}
.y61{bottom:741.000000px;}
.yee{bottom:741.126000px;}
.y41{bottom:757.500000px;}
.ybe{bottom:759.000000px;}
.yc{bottom:760.500000px;}
.y82{bottom:762.000000px;}
.yaa{bottom:765.000000px;}
.y92{bottom:769.500000px;}
.yed{bottom:775.629000px;}
.y40{bottom:783.000000px;}
.yb{bottom:784.500000px;}
.ya9{bottom:790.500000px;}
.y91{bottom:795.000000px;}
.yec{bottom:801.123000px;}
.y60{bottom:807.000000px;}
.y3f{bottom:808.500000px;}
.ya8{bottom:816.000000px;}
.y81{bottom:817.500000px;}
.y90{bottom:820.500000px;}
.ya{bottom:828.000000px;}
.y5f{bottom:832.500000px;}
.y3e{bottom:834.000000px;}
.yeb{bottom:834.114000px;}
.ya7{bottom:841.500000px;}
.y80{bottom:843.000000px;}
.y8f{bottom:846.000000px;}
.y5e{bottom:858.000000px;}
.y3d{bottom:859.500000px;}
.yea{bottom:859.608000px;}
.y9{bottom:861.000000px;}
.ya6{bottom:867.000000px;}
.ybd{bottom:868.500000px;}
.y8e{bottom:871.500000px;}
.y5d{bottom:883.500000px;}
.ye9{bottom:885.102000px;}
.y3c{bottom:892.500000px;}
.y8d{bottom:897.000000px;}
.y7f{bottom:900.000000px;}
.y3b{bottom:918.000000px;}
.ye8{bottom:919.605000px;}
.y8{bottom:924.000000px;}
.y7e{bottom:925.500000px;}
.y3a{bottom:943.500000px;}
.ye7{bottom:945.099000px;}
.ya5{bottom:949.500000px;}
.ybc{bottom:961.500000px;}
.y39{bottom:969.000000px;}
.ye6{bottom:970.593000px;}
.y7{bottom:978.000000px;}
.y7d{bottom:981.000000px;}
.ybb{bottom:987.000000px;}
.y38{bottom:994.500000px;}
.ye5{bottom:996.087000px;}
.y7c{bottom:1006.500000px;}
.yba{bottom:1012.500000px;}
.y37{bottom:1020.000000px;}
.ya4{bottom:1024.500000px;}
.ye4{bottom:1029.078000px;}
.y6{bottom:1032.000000px;}
.y36{bottom:1045.500000px;}
.ye3{bottom:1054.572000px;}
.y7b{bottom:1062.000000px;}
.y35{bottom:1071.000000px;}
.y5c{bottom:1081.500000px;}
.y5{bottom:1086.000000px;}
.y7a{bottom:1087.500000px;}
.ye2{bottom:1089.075000px;}
.y34{bottom:1096.500000px;}
.ye1{bottom:1114.569000px;}
.y33{bottom:1122.000000px;}
.ye0{bottom:1140.063000px;}
.y79{bottom:1143.000000px;}
.y32{bottom:1147.500000px;}
.y4{bottom:1152.000000px;}
.ydf{bottom:1165.557000px;}
.y78{bottom:1168.500000px;}
.y5b{bottom:1173.000000px;}
.y31{bottom:1182.000000px;}
.y77{bottom:1194.000000px;}
.y5a{bottom:1198.500000px;}
.yde{bottom:1198.548000px;}
.y3{bottom:1204.500000px;}
.y30{bottom:1207.500000px;}
.y59{bottom:1224.000000px;}
.ydd{bottom:1224.042000px;}
.y2{bottom:1228.500000px;}
.y2f{bottom:1233.000000px;}
.y58{bottom:1249.500000px;}
.ydc{bottom:1249.536000px;}
.y2e{bottom:1258.500000px;}
.ydb{bottom:1275.030000px;}
.y2d{bottom:1284.000000px;}
.y76{bottom:1303.500000px;}
.y2c{bottom:1309.500000px;}
.yda{bottom:1309.533000px;}
.y75{bottom:1323.000000px;}
.y2b{bottom:1335.000000px;}
.yd9{bottom:1335.027000px;}
.y2a{bottom:1360.500000px;}
.yd8{bottom:1360.521000px;}
.y74{bottom:1368.000000px;}
.y29{bottom:1386.000000px;}
.y73{bottom:1393.500000px;}
.yd7{bottom:1393.512000px;}
.y28{bottom:1419.000000px;}
.yd6{bottom:1419.006000px;}
.y1{bottom:1423.500000px;}
.y27{bottom:1444.500000px;}
.h3{height:51.948000px;}
.h9{height:60.029297px;}
.h6{height:66.032227px;}
.h1{height:76.687500px;}
.h2{height:78.038086px;}
.h7{height:84.041016px;}
.h5{height:108.052734px;}
.h8{height:126.061523px;}
.h4{height:180.087891px;}
.h0{height:1465.500000px;}
.w0{width:1047.000000px;}
.x0{left:0.000000px;}
.x8{left:30.000000px;}
.x9{left:46.781250px;}
.xa{left:51.000000px;}
.xe{left:54.000000px;}
.x1{left:82.500000px;}
.x2{left:84.937500px;}
.x1a{left:208.686750px;}
.x3{left:222.539100px;}
.x14{left:293.362050px;}
.x16{left:311.557950px;}
.x15{left:321.507900px;}
.xd{left:336.916200px;}
.x17{left:387.090150px;}
.x11{left:412.261950px;}
.x18{left:431.910150px;}
.x4{left:445.453200px;}
.x13{left:457.052850px;}
.x5{left:464.273400px;}
.x12{left:485.371950px;}
.xc{left:489.581550px;}
.x19{left:490.697400px;}
.xb{left:542.156250px;}
.x7{left:594.498000px;}
.x6{left:674.226600px;}
.x10{left:735.140700px;}
.xf{left:753.389250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-3.673600pt;}
.ls4{letter-spacing:-0.367467pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:-0.029867pt;}
.ls10{letter-spacing:-0.023467pt;}
.ls8{letter-spacing:-0.022400pt;}
.lse{letter-spacing:-0.017600pt;}
.ls13{letter-spacing:-0.014933pt;}
.lsd{letter-spacing:-0.011733pt;}
.ls6{letter-spacing:-0.011200pt;}
.ls7{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:-0.005867pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.005867pt;}
.ls12{letter-spacing:0.007467pt;}
.ls11{letter-spacing:0.022400pt;}
.ls0{letter-spacing:0.023467pt;}
.ls2{letter-spacing:0.034667pt;}
.lsa{letter-spacing:241.720533pt;}
.ls9{letter-spacing:246.447467pt;}
.lsb{letter-spacing:289.688533pt;}
.ws2{word-spacing:-54.720000pt;}
.ws14{word-spacing:-38.304000pt;}
.ws15{word-spacing:-26.305067pt;}
.ws9{word-spacing:-26.282667pt;}
.ws16{word-spacing:-26.260267pt;}
.ws4{word-spacing:-25.506133pt;}
.ws3{word-spacing:-24.405333pt;}
.ws5{word-spacing:-20.650667pt;}
.ws7{word-spacing:-20.087467pt;}
.ws6{word-spacing:-20.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:43.230400pt;}
.wsd{word-spacing:173.146133pt;}
.ws0{word-spacing:188.922667pt;}
.wsb{word-spacing:209.036800pt;}
.wsc{word-spacing:221.114133pt;}
.ws12{word-spacing:294.135467pt;}
.wse{word-spacing:298.170133pt;}
.ws13{word-spacing:304.838400pt;}
.wsf{word-spacing:361.515733pt;}
.ws10{word-spacing:380.994133pt;}
.ws11{word-spacing:476.820267pt;}
.wsa{word-spacing:2345.690133pt;}
._6{margin-left:-11.147200pt;}
._b{margin-left:-9.847467pt;}
._4{margin-left:-8.424533pt;}
._1{margin-left:-6.836267pt;}
._3{margin-left:-5.438400pt;}
._5{margin-left:-4.038400pt;}
._c{margin-left:-2.694933pt;}
._0{margin-left:-1.740267pt;}
._2{width:1.116267pt;}
._d{width:3.181867pt;}
._e{width:4.210133pt;}
._9{width:408.089600pt;}
._a{width:437.427733pt;}
._8{width:483.813867pt;}
._7{width:582.546667pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:112.000000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:9.333333pt;}
.yd5{bottom:12.000000pt;}
.y72{bottom:24.000000pt;}
.y26{bottom:26.666667pt;}
.y56{bottom:32.000000pt;}
.yb9{bottom:38.666667pt;}
.yd4{bottom:42.666667pt;}
.y71{bottom:46.666667pt;}
.y25{bottom:49.333333pt;}
.yb8{bottom:61.333333pt;}
.y55{bottom:64.000000pt;}
.yd3{bottom:65.333333pt;}
.y24{bottom:72.000000pt;}
.y70{bottom:77.333333pt;}
.yb7{bottom:84.000000pt;}
.yd2{bottom:88.000000pt;}
.ya3{bottom:89.333333pt;}
.y23{bottom:94.666667pt;}
.y6f{bottom:100.000000pt;}
.ya2{bottom:106.666667pt;}
.yd1{bottom:110.666667pt;}
.y22{bottom:122.666667pt;}
.yb6{bottom:129.333333pt;}
.y103{bottom:136.000000pt;}
.yd0{bottom:140.000000pt;}
.y54{bottom:145.333333pt;}
.ya1{bottom:148.000000pt;}
.yb5{bottom:152.000000pt;}
.ycf{bottom:162.666667pt;}
.y102{bottom:164.000000pt;}
.y53{bottom:168.000000pt;}
.ya0{bottom:170.666667pt;}
.yb4{bottom:174.666667pt;}
.y8c{bottom:176.000000pt;}
.y52{bottom:190.666667pt;}
.y21{bottom:192.000000pt;}
.y8b{bottom:193.333333pt;}
.yb3{bottom:204.000000pt;}
.y20{bottom:209.333333pt;}
.y51{bottom:213.333333pt;}
.y9f{bottom:216.000000pt;}
.y101{bottom:220.000000pt;}
.y1f{bottom:226.666667pt;}
.y8a{bottom:233.333333pt;}
.y9e{bottom:238.666667pt;}
.y50{bottom:241.333333pt;}
.y6e{bottom:242.666667pt;}
.y1e{bottom:244.000000pt;}
.yce{bottom:245.333333pt;}
.yb2{bottom:249.333333pt;}
.y89{bottom:256.000000pt;}
.y1d{bottom:261.333333pt;}
.y100{bottom:265.330667pt;}
.y6d{bottom:265.333333pt;}
.ycd{bottom:268.000000pt;}
.yb1{bottom:272.000000pt;}
.y1c{bottom:278.666667pt;}
.yff{bottom:282.666667pt;}
.y9d{bottom:284.000000pt;}
.y6c{bottom:288.000000pt;}
.yb0{bottom:294.666667pt;}
.y1b{bottom:296.000000pt;}
.ycc{bottom:298.666667pt;}
.yfe{bottom:300.002667pt;}
.y6b{bottom:310.666667pt;}
.y1a{bottom:313.333333pt;}
.yaf{bottom:317.333333pt;}
.y4f{bottom:318.666667pt;}
.y88{bottom:321.333333pt;}
.yfd{bottom:322.662667pt;}
.y19{bottom:330.666667pt;}
.y9c{bottom:336.000000pt;}
.yfc{bottom:339.998667pt;}
.yae{bottom:340.000000pt;}
.y4e{bottom:341.333333pt;}
.ycb{bottom:344.000000pt;}
.y18{bottom:348.000000pt;}
.yfb{bottom:357.334667pt;}
.y9b{bottom:358.666667pt;}
.yad{bottom:362.666667pt;}
.y4d{bottom:364.000000pt;}
.y17{bottom:365.333333pt;}
.y87{bottom:366.666667pt;}
.yca{bottom:373.333333pt;}
.yfa{bottom:381.329333pt;}
.y9a{bottom:381.333333pt;}
.y16{bottom:382.666667pt;}
.y4c{bottom:386.666667pt;}
.y86{bottom:389.333333pt;}
.yac{bottom:393.333333pt;}
.yc9{bottom:396.000000pt;}
.yf9{bottom:398.665333pt;}
.y15{bottom:400.000000pt;}
.y99{bottom:404.000000pt;}
.y6a{bottom:409.333333pt;}
.y4b{bottom:416.000000pt;}
.yf8{bottom:416.001333pt;}
.yc8{bottom:418.666667pt;}
.y14{bottom:424.000000pt;}
.y98{bottom:426.666667pt;}
.y69{bottom:432.000000pt;}
.yf7{bottom:438.661333pt;}
.y4a{bottom:438.666667pt;}
.yc7{bottom:448.000000pt;}
.yf6{bottom:455.997333pt;}
.y97{bottom:456.000000pt;}
.y68{bottom:460.000000pt;}
.y49{bottom:461.333333pt;}
.yc6{bottom:470.666667pt;}
.yf5{bottom:473.333333pt;}
.y96{bottom:478.666667pt;}
.y13{bottom:484.000000pt;}
.yc5{bottom:493.333333pt;}
.y12{bottom:504.000000pt;}
.y48{bottom:506.666667pt;}
.y85{bottom:510.666667pt;}
.y67{bottom:513.333333pt;}
.yf4{bottom:516.146667pt;}
.yc4{bottom:524.000000pt;}
.y11{bottom:525.333333pt;}
.y47{bottom:529.333333pt;}
.y84{bottom:533.333333pt;}
.y66{bottom:536.000000pt;}
.yf3{bottom:538.808000pt;}
.y10{bottom:545.333333pt;}
.yc3{bottom:546.666667pt;}
.y46{bottom:552.000000pt;}
.y65{bottom:558.666667pt;}
.yf2{bottom:561.469333pt;}
.yf{bottom:565.333333pt;}
.yc2{bottom:569.333333pt;}
.y95{bottom:578.666667pt;}
.y64{bottom:581.333333pt;}
.y45{bottom:582.666667pt;}
.yf1{bottom:584.130667pt;}
.ye{bottom:586.666667pt;}
.yc1{bottom:598.666667pt;}
.y63{bottom:604.000000pt;}
.y44{bottom:605.333333pt;}
.yf0{bottom:613.456000pt;}
.yc0{bottom:621.333333pt;}
.y94{bottom:625.333333pt;}
.y62{bottom:626.666667pt;}
.y43{bottom:628.000000pt;}
.yef{bottom:636.117333pt;}
.yd{bottom:641.333333pt;}
.y93{bottom:642.666667pt;}
.yab{bottom:649.333333pt;}
.y42{bottom:650.666667pt;}
.ybf{bottom:652.000000pt;}
.y83{bottom:654.666667pt;}
.y61{bottom:658.666667pt;}
.yee{bottom:658.778667pt;}
.y41{bottom:673.333333pt;}
.ybe{bottom:674.666667pt;}
.yc{bottom:676.000000pt;}
.y82{bottom:677.333333pt;}
.yaa{bottom:680.000000pt;}
.y92{bottom:684.000000pt;}
.yed{bottom:689.448000pt;}
.y40{bottom:696.000000pt;}
.yb{bottom:697.333333pt;}
.ya9{bottom:702.666667pt;}
.y91{bottom:706.666667pt;}
.yec{bottom:712.109333pt;}
.y60{bottom:717.333333pt;}
.y3f{bottom:718.666667pt;}
.ya8{bottom:725.333333pt;}
.y81{bottom:726.666667pt;}
.y90{bottom:729.333333pt;}
.ya{bottom:736.000000pt;}
.y5f{bottom:740.000000pt;}
.y3e{bottom:741.333333pt;}
.yeb{bottom:741.434667pt;}
.ya7{bottom:748.000000pt;}
.y80{bottom:749.333333pt;}
.y8f{bottom:752.000000pt;}
.y5e{bottom:762.666667pt;}
.y3d{bottom:764.000000pt;}
.yea{bottom:764.096000pt;}
.y9{bottom:765.333333pt;}
.ya6{bottom:770.666667pt;}
.ybd{bottom:772.000000pt;}
.y8e{bottom:774.666667pt;}
.y5d{bottom:785.333333pt;}
.ye9{bottom:786.757333pt;}
.y3c{bottom:793.333333pt;}
.y8d{bottom:797.333333pt;}
.y7f{bottom:800.000000pt;}
.y3b{bottom:816.000000pt;}
.ye8{bottom:817.426667pt;}
.y8{bottom:821.333333pt;}
.y7e{bottom:822.666667pt;}
.y3a{bottom:838.666667pt;}
.ye7{bottom:840.088000pt;}
.ya5{bottom:844.000000pt;}
.ybc{bottom:854.666667pt;}
.y39{bottom:861.333333pt;}
.ye6{bottom:862.749333pt;}
.y7{bottom:869.333333pt;}
.y7d{bottom:872.000000pt;}
.ybb{bottom:877.333333pt;}
.y38{bottom:884.000000pt;}
.ye5{bottom:885.410667pt;}
.y7c{bottom:894.666667pt;}
.yba{bottom:900.000000pt;}
.y37{bottom:906.666667pt;}
.ya4{bottom:910.666667pt;}
.ye4{bottom:914.736000pt;}
.y6{bottom:917.333333pt;}
.y36{bottom:929.333333pt;}
.ye3{bottom:937.397333pt;}
.y7b{bottom:944.000000pt;}
.y35{bottom:952.000000pt;}
.y5c{bottom:961.333333pt;}
.y5{bottom:965.333333pt;}
.y7a{bottom:966.666667pt;}
.ye2{bottom:968.066667pt;}
.y34{bottom:974.666667pt;}
.ye1{bottom:990.728000pt;}
.y33{bottom:997.333333pt;}
.ye0{bottom:1013.389333pt;}
.y79{bottom:1016.000000pt;}
.y32{bottom:1020.000000pt;}
.y4{bottom:1024.000000pt;}
.ydf{bottom:1036.050667pt;}
.y78{bottom:1038.666667pt;}
.y5b{bottom:1042.666667pt;}
.y31{bottom:1050.666667pt;}
.y77{bottom:1061.333333pt;}
.y5a{bottom:1065.333333pt;}
.yde{bottom:1065.376000pt;}
.y3{bottom:1070.666667pt;}
.y30{bottom:1073.333333pt;}
.y59{bottom:1088.000000pt;}
.ydd{bottom:1088.037333pt;}
.y2{bottom:1092.000000pt;}
.y2f{bottom:1096.000000pt;}
.y58{bottom:1110.666667pt;}
.ydc{bottom:1110.698667pt;}
.y2e{bottom:1118.666667pt;}
.ydb{bottom:1133.360000pt;}
.y2d{bottom:1141.333333pt;}
.y76{bottom:1158.666667pt;}
.y2c{bottom:1164.000000pt;}
.yda{bottom:1164.029333pt;}
.y75{bottom:1176.000000pt;}
.y2b{bottom:1186.666667pt;}
.yd9{bottom:1186.690667pt;}
.y2a{bottom:1209.333333pt;}
.yd8{bottom:1209.352000pt;}
.y74{bottom:1216.000000pt;}
.y29{bottom:1232.000000pt;}
.y73{bottom:1238.666667pt;}
.yd7{bottom:1238.677333pt;}
.y28{bottom:1261.333333pt;}
.yd6{bottom:1261.338667pt;}
.y1{bottom:1265.333333pt;}
.y27{bottom:1284.000000pt;}
.h3{height:46.176000pt;}
.h9{height:53.359375pt;}
.h6{height:58.695312pt;}
.h1{height:68.166667pt;}
.h2{height:69.367188pt;}
.h7{height:74.703125pt;}
.h5{height:96.046875pt;}
.h8{height:112.054688pt;}
.h4{height:160.078125pt;}
.h0{height:1302.666667pt;}
.w0{width:930.666667pt;}
.x0{left:0.000000pt;}
.x8{left:26.666667pt;}
.x9{left:41.583333pt;}
.xa{left:45.333333pt;}
.xe{left:48.000000pt;}
.x1{left:73.333333pt;}
.x2{left:75.500000pt;}
.x1a{left:185.499333pt;}
.x3{left:197.812533pt;}
.x14{left:260.766267pt;}
.x16{left:276.940400pt;}
.x15{left:285.784800pt;}
.xd{left:299.481067pt;}
.x17{left:344.080133pt;}
.x11{left:366.455067pt;}
.x18{left:383.920133pt;}
.x4{left:395.958400pt;}
.x13{left:406.269200pt;}
.x5{left:412.687467pt;}
.x12{left:431.441733pt;}
.xc{left:435.183600pt;}
.x19{left:436.175467pt;}
.xb{left:481.916667pt;}
.x7{left:528.442667pt;}
.x6{left:599.312533pt;}
.x10{left:653.458400pt;}
.xf{left:669.679333pt;}
}




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