
    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_b1d9d214dcfe3578ad28b4b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009277;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_4a3e84a7ee3a456e53cb3f61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.681641;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_b6e7d682fb70883c23812e60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_e38062c14b000200bbaba473.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_b8635779e8cc8e1faf92138b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954102;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_f1fc7427aa4245774172c189.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_71d9acea5fa4ea23e6acd7e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_6fad86ac547fa2aa4e8a1be6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_51246433fcacf701d5795aff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674805;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_4fbd1cc7745c686046b14b81.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.840332;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_b89dd9238516b010252f1e19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_d46a8c227ec61bfa54aea86c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_7e01c4508b61edb298d91392.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_2e4bab151af4ec7620781deb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952637;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_63ec1a030cdd5c7a452aa3c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.683594;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_30a01fd6465bcb7d829a62af.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_6c5152573b449115bbc8b8a2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_deea692442f4f0328205f830.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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:ff13;src:url('chunks/assets/font_ba045bf9891fe249a7b24342.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_eebdbb8aeeee8bc1b7597787.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.701660;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:ff15;src:url('chunks/assets/font_dfab3d8d4ca81085600150af.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.722656;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:ff16;src:url('chunks/assets/font_8b5ac35f6fff40b154ed0e36.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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;}
.m2{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,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(0.273809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273809,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-23.040000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.480000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-1.195200px;}
.lsb{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.028800px;}
.lse{letter-spacing:-0.021600px;}
.ls12{letter-spacing:-0.014400px;}
.ls9{letter-spacing:-0.007200px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.100224px;}
.ls2{letter-spacing:0.102096px;}
.ls1{letter-spacing:0.102240px;}
.ls13{letter-spacing:0.123552px;}
.ls3{letter-spacing:0.208800px;}
.ls15{letter-spacing:1.081440px;}
.lsd{letter-spacing:1.864800px;}
.ls10{letter-spacing:16.382880px;}
.ls11{letter-spacing:28.007424px;}
.ls16{letter-spacing:33.984000px;}
.ls14{letter-spacing:55.042704px;}
.ls5{letter-spacing:707.760000px;}
.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;}
}
.ws7{word-spacing:-18.208800px;}
.ws5{word-spacing:-18.036000px;}
.ws9{word-spacing:-18.021600px;}
.wsa{word-spacing:-18.014400px;}
.wsd{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.985600px;}
.ws8{word-spacing:-17.978400px;}
.wse{word-spacing:-0.171072px;}
.ws6{word-spacing:-0.141984px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.064800px;}
.ws4{word-spacing:-0.043200px;}
.ws1{word-spacing:-0.036000px;}
.wsb{word-spacing:0.000000px;}
.ws0{word-spacing:1.123200px;}
._13{margin-left:-7.992000px;}
._0{margin-left:-2.543328px;}
._1{margin-left:-1.534608px;}
._3{width:1.463328px;}
._7{width:3.103200px;}
._4{width:4.384800px;}
._8{width:6.141600px;}
._c{width:7.632432px;}
._11{width:8.689536px;}
._5{width:9.957600px;}
._9{width:11.253600px;}
._6{width:12.542400px;}
._e{width:13.543200px;}
._b{width:14.724000px;}
._d{width:16.304832px;}
._10{width:19.195200px;}
._12{width:21.261600px;}
._15{width:26.200800px;}
._a{width:27.900000px;}
._f{width:28.965600px;}
._14{width:136.755936px;}
._2{width:1343.883024px;}
.fc4{color:transparent;}
.fc3{color:rgb(148,54,52);}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(227,108,10);}
.fs2{font-size:5.760000px;}
.fs4{font-size:8.640000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.290000px;}
.y6{bottom:4.530000px;}
.y2e{bottom:5.430000px;}
.ya{bottom:8.490000px;}
.y15{bottom:9.570000px;}
.y9{bottom:30.450000px;}
.y5{bottom:33.000000px;}
.y4{bottom:53.370000px;}
.y2d{bottom:64.500000px;}
.y25{bottom:79.530000px;}
.y2c{bottom:85.050000px;}
.y85{bottom:106.650000px;}
.y24{bottom:111.930000px;}
.y5b{bottom:112.050000px;}
.ya6{bottom:116.370000px;}
.y84{bottom:127.530000px;}
.y23{bottom:132.090000px;}
.y5a{bottom:132.930000px;}
.ya5{bottom:137.250000px;}
.yc9{bottom:149.490000px;}
.y22{bottom:152.250000px;}
.y59{bottom:153.450000px;}
.y83{bottom:156.690000px;}
.ya4{bottom:166.770000px;}
.yc8{bottom:170.730000px;}
.y21{bottom:172.410000px;}
.y58{bottom:174.330000px;}
.y82{bottom:177.930000px;}
.y20{bottom:192.930000px;}
.ya3{bottom:196.290000px;}
.y81{bottom:198.450000px;}
.yc7{bottom:199.890000px;}
.y57{bottom:203.490000px;}
.y29{bottom:209.490000px;}
.y1f{bottom:213.090000px;}
.y80{bottom:219.330000px;}
.yc6{bottom:221.130000px;}
.y56{bottom:224.730000px;}
.ya2{bottom:226.170000px;}
.y28{bottom:229.650000px;}
.y1e{bottom:233.250000px;}
.y7f{bottom:239.850000px;}
.yc5{bottom:241.650000px;}
.y55{bottom:245.250000px;}
.y27{bottom:249.810000px;}
.y1d{bottom:253.410000px;}
.ya1{bottom:255.690000px;}
.y7e{bottom:260.730000px;}
.y54{bottom:266.130000px;}
.yc4{bottom:271.170000px;}
.y26{bottom:272.850000px;}
.y1c{bottom:273.930000px;}
.y7d{bottom:281.250000px;}
.ya0{bottom:285.570000px;}
.y53{bottom:286.650000px;}
.yc3{bottom:292.050000px;}
.y1b{bottom:294.090000px;}
.y52{bottom:307.530000px;}
.y7c{bottom:310.770000px;}
.y1a{bottom:314.250000px;}
.y9f{bottom:315.090000px;}
.yc2{bottom:321.570000px;}
.y51{bottom:328.050000px;}
.y2b{bottom:331.290000px;}
.y7b{bottom:331.650000px;}
.y19{bottom:334.410000px;}
.yc1{bottom:342.450000px;}
.y9e{bottom:344.970000px;}
.y16{bottom:345.000000px;}
.y50{bottom:348.930000px;}
.y7a{bottom:352.530000px;}
.y18{bottom:354.930000px;}
.y4f{bottom:369.450000px;}
.yc0{bottom:371.970000px;}
.y79{bottom:373.050000px;}
.y2a{bottom:374.010000px;}
.y9d{bottom:374.490000px;}
.y17{bottom:375.090000px;}
.ybf{bottom:392.850000px;}
.y78{bottom:393.930000px;}
.y9c{bottom:395.730000px;}
.y4e{bottom:398.970000px;}
.ybe{bottom:413.730000px;}
.y77{bottom:414.450000px;}
.y4d{bottom:419.850000px;}
.y9b{bottom:424.890000px;}
.ybd{bottom:434.250000px;}
.y76{bottom:435.330000px;}
.y4c{bottom:440.730000px;}
.y9a{bottom:446.130000px;}
.y75{bottom:455.850000px;}
.y4b{bottom:461.250000px;}
.ybc{bottom:463.770000px;}
.y99{bottom:475.290000px;}
.y4a{bottom:482.130000px;}
.ybb{bottom:484.650000px;}
.y74{bottom:485.370000px;}
.y49{bottom:502.650000px;}
.y98{bottom:505.170000px;}
.y73{bottom:506.250000px;}
.yba{bottom:514.170000px;}
.y48{bottom:523.530000px;}
.y97{bottom:526.050000px;}
.y72{bottom:527.130000px;}
.yb9{bottom:535.050000px;}
.y47{bottom:544.050000px;}
.y71{bottom:547.650000px;}
.y96{bottom:555.570000px;}
.yb8{bottom:555.930000px;}
.y46{bottom:564.930000px;}
.y70{bottom:568.530000px;}
.y95{bottom:585.090000px;}
.y45{bottom:585.450000px;}
.y6f{bottom:589.050000px;}
.y44{bottom:606.330000px;}
.y6e{bottom:609.930000px;}
.yb7{bottom:626.850000px;}
.y43{bottom:635.490000px;}
.y6d{bottom:639.090000px;}
.yb6{bottom:656.370000px;}
.y94{bottom:656.730000px;}
.y6c{bottom:660.330000px;}
.y42{bottom:665.370000px;}
.yb5{bottom:677.250000px;}
.y6b{bottom:680.850000px;}
.y93{bottom:685.890000px;}
.y41{bottom:694.890000px;}
.y6a{bottom:701.730000px;}
.yb4{bottom:706.770000px;}
.y92{bottom:707.130000px;}
.y40{bottom:716.130000px;}
.y69{bottom:722.250000px;}
.y91{bottom:727.650000px;}
.y14{bottom:735.000000px;}
.y68{bottom:743.130000px;}
.y3f{bottom:745.290000px;}
.yb3{bottom:748.530000px;}
.y90{bottom:757.170000px;}
.y13{bottom:764.370000px;}
.y67{bottom:772.290000px;}
.y3e{bottom:775.170000px;}
.yb2{bottom:777.690000px;}
.y8f{bottom:778.050000px;}
.y12{bottom:782.730000px;}
.y66{bottom:793.530000px;}
.y3d{bottom:804.690000px;}
.y8e{bottom:807.570000px;}
.y11{bottom:807.930000px;}
.y65{bottom:814.050000px;}
.y10{bottom:826.290000px;}
.y8d{bottom:828.450000px;}
.y3c{bottom:834.570000px;}
.y64{bottom:834.930000px;}
.yb1{bottom:837.090000px;}
.yf{bottom:838.890000px;}
.y3b{bottom:855.450000px;}
.y8c{bottom:857.970000px;}
.yb0{bottom:858.330000px;}
.ye{bottom:871.650000px;}
.y8b{bottom:878.850000px;}
.y3a{bottom:884.970000px;}
.yaf{bottom:899.730000px;}
.yd{bottom:904.410000px;}
.y63{bottom:905.850000px;}
.y8a{bottom:908.370000px;}
.y39{bottom:914.490000px;}
.yae{bottom:920.250000px;}
.y62{bottom:926.730000px;}
.y89{bottom:929.250000px;}
.y38{bottom:935.730000px;}
.yad{bottom:941.130000px;}
.yc{bottom:944.370000px;}
.y61{bottom:947.250000px;}
.y37{bottom:956.250000px;}
.y88{bottom:958.770000px;}
.y8{bottom:960.000000px;}
.y60{bottom:968.130000px;}
.yac{bottom:970.290000px;}
.y36{bottom:977.130000px;}
.y87{bottom:988.290000px;}
.y5f{bottom:988.650000px;}
.yab{bottom:991.530000px;}
.y35{bottom:997.650000px;}
.y5e{bottom:1009.530000px;}
.y86{bottom:1018.170000px;}
.y34{bottom:1018.530000px;}
.yaa{bottom:1020.690000px;}
.y5d{bottom:1030.050000px;}
.y33{bottom:1039.050000px;}
.ya9{bottom:1050.570000px;}
.y5c{bottom:1059.570000px;}
.y32{bottom:1059.930000px;}
.ya8{bottom:1071.450000px;}
.y31{bottom:1080.450000px;}
.ya7{bottom:1100.970000px;}
.y30{bottom:1101.330000px;}
.y2f{bottom:1121.850000px;}
.y7{bottom:1122.570000px;}
.y3{bottom:1142.010000px;}
.y2{bottom:1163.610000px;}
.y1{bottom:1188.090000px;}
.h3{height:3.839063px;}
.h8{height:5.889375px;}
.h4{height:21.000000px;}
.h11{height:22.500000px;}
.hc{height:25.500000px;}
.hb{height:27.833203px;}
.h10{height:40.310156px;}
.h2{height:41.225625px;}
.h5{height:44.149219px;}
.hd{height:47.988281px;}
.h12{height:48.796875px;}
.he{height:50.027344px;}
.h7{height:50.132813px;}
.h14{height:52.031250px;}
.ha{height:55.193203px;}
.h1{height:55.195313px;}
.h13{height:57.474844px;}
.h9{height:71.982422px;}
.h6{height:145.500000px;}
.hf{height:391.500000px;}
.h0{height:1263.000000px;}
.w2{width:12.000000px;}
.w5{width:25.500000px;}
.w7{width:30.000000px;}
.w1{width:34.500000px;}
.w8{width:36.000000px;}
.w6{width:249.000000px;}
.w4{width:459.000000px;}
.w3{width:811.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:8.430176px;}
.x13{left:13.469946px;}
.x21{left:28.409912px;}
.x7{left:33.000000px;}
.x4{left:35.310058px;}
.xb{left:48.810058px;}
.x22{left:60.359988px;}
.x1c{left:62.310072px;}
.x1e{left:67.260144px;}
.xc{left:89.356944px;}
.x10{left:92.554680px;}
.x1f{left:94.260144px;}
.x12{left:109.500000px;}
.x20{left:116.310072px;}
.x14{left:117.374244px;}
.x8{left:161.531232px;}
.x17{left:179.535120px;}
.xe{left:289.136712px;}
.x1{left:290.148924px;}
.x19{left:293.898936px;}
.xf{left:310.709460px;}
.x2{left:368.748804px;}
.x1a{left:372.498780px;}
.xd{left:392.823480px;}
.x9{left:398.955120px;}
.x5{left:436.500000px;}
.x1d{left:439.500000px;}
.x11{left:446.684880px;}
.x3{left:448.034880px;}
.x1b{left:451.785000px;}
.x15{left:567.000000px;}
.x16{left:591.000000px;}
.x18{left:838.500000px;}
.x6{left:861.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-20.480000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.760000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-1.062400pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.025600pt;}
.lse{letter-spacing:-0.019200pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:-0.006400pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.089088pt;}
.ls2{letter-spacing:0.090752pt;}
.ls1{letter-spacing:0.090880pt;}
.ls13{letter-spacing:0.109824pt;}
.ls3{letter-spacing:0.185600pt;}
.ls15{letter-spacing:0.961280pt;}
.lsd{letter-spacing:1.657600pt;}
.ls10{letter-spacing:14.562560pt;}
.ls11{letter-spacing:24.895488pt;}
.ls16{letter-spacing:30.208000pt;}
.ls14{letter-spacing:48.926848pt;}
.ls5{letter-spacing:629.120000pt;}
.ws7{word-spacing:-16.185600pt;}
.ws5{word-spacing:-16.032000pt;}
.ws9{word-spacing:-16.019200pt;}
.wsa{word-spacing:-16.012800pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.987200pt;}
.ws8{word-spacing:-15.980800pt;}
.wse{word-spacing:-0.152064pt;}
.ws6{word-spacing:-0.126208pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.057600pt;}
.ws4{word-spacing:-0.038400pt;}
.ws1{word-spacing:-0.032000pt;}
.wsb{word-spacing:0.000000pt;}
.ws0{word-spacing:0.998400pt;}
._13{margin-left:-7.104000pt;}
._0{margin-left:-2.260736pt;}
._1{margin-left:-1.364096pt;}
._3{width:1.300736pt;}
._7{width:2.758400pt;}
._4{width:3.897600pt;}
._8{width:5.459200pt;}
._c{width:6.784384pt;}
._11{width:7.724032pt;}
._5{width:8.851200pt;}
._9{width:10.003200pt;}
._6{width:11.148800pt;}
._e{width:12.038400pt;}
._b{width:13.088000pt;}
._d{width:14.493184pt;}
._10{width:17.062400pt;}
._12{width:18.899200pt;}
._15{width:23.289600pt;}
._a{width:24.800000pt;}
._f{width:25.747200pt;}
._14{width:121.560832pt;}
._2{width:1194.562688pt;}
.fs2{font-size:5.120000pt;}
.fs4{font-size:7.680000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:1.146667pt;}
.y6{bottom:4.026667pt;}
.y2e{bottom:4.826667pt;}
.ya{bottom:7.546667pt;}
.y15{bottom:8.506667pt;}
.y9{bottom:27.066667pt;}
.y5{bottom:29.333333pt;}
.y4{bottom:47.440000pt;}
.y2d{bottom:57.333333pt;}
.y25{bottom:70.693333pt;}
.y2c{bottom:75.600000pt;}
.y85{bottom:94.800000pt;}
.y24{bottom:99.493333pt;}
.y5b{bottom:99.600000pt;}
.ya6{bottom:103.440000pt;}
.y84{bottom:113.360000pt;}
.y23{bottom:117.413333pt;}
.y5a{bottom:118.160000pt;}
.ya5{bottom:122.000000pt;}
.yc9{bottom:132.880000pt;}
.y22{bottom:135.333333pt;}
.y59{bottom:136.400000pt;}
.y83{bottom:139.280000pt;}
.ya4{bottom:148.240000pt;}
.yc8{bottom:151.760000pt;}
.y21{bottom:153.253333pt;}
.y58{bottom:154.960000pt;}
.y82{bottom:158.160000pt;}
.y20{bottom:171.493333pt;}
.ya3{bottom:174.480000pt;}
.y81{bottom:176.400000pt;}
.yc7{bottom:177.680000pt;}
.y57{bottom:180.880000pt;}
.y29{bottom:186.213333pt;}
.y1f{bottom:189.413333pt;}
.y80{bottom:194.960000pt;}
.yc6{bottom:196.560000pt;}
.y56{bottom:199.760000pt;}
.ya2{bottom:201.040000pt;}
.y28{bottom:204.133333pt;}
.y1e{bottom:207.333333pt;}
.y7f{bottom:213.200000pt;}
.yc5{bottom:214.800000pt;}
.y55{bottom:218.000000pt;}
.y27{bottom:222.053333pt;}
.y1d{bottom:225.253333pt;}
.ya1{bottom:227.280000pt;}
.y7e{bottom:231.760000pt;}
.y54{bottom:236.560000pt;}
.yc4{bottom:241.040000pt;}
.y26{bottom:242.533333pt;}
.y1c{bottom:243.493333pt;}
.y7d{bottom:250.000000pt;}
.ya0{bottom:253.840000pt;}
.y53{bottom:254.800000pt;}
.yc3{bottom:259.600000pt;}
.y1b{bottom:261.413333pt;}
.y52{bottom:273.360000pt;}
.y7c{bottom:276.240000pt;}
.y1a{bottom:279.333333pt;}
.y9f{bottom:280.080000pt;}
.yc2{bottom:285.840000pt;}
.y51{bottom:291.600000pt;}
.y2b{bottom:294.480000pt;}
.y7b{bottom:294.800000pt;}
.y19{bottom:297.253333pt;}
.yc1{bottom:304.400000pt;}
.y9e{bottom:306.640000pt;}
.y16{bottom:306.666667pt;}
.y50{bottom:310.160000pt;}
.y7a{bottom:313.360000pt;}
.y18{bottom:315.493333pt;}
.y4f{bottom:328.400000pt;}
.yc0{bottom:330.640000pt;}
.y79{bottom:331.600000pt;}
.y2a{bottom:332.453333pt;}
.y9d{bottom:332.880000pt;}
.y17{bottom:333.413333pt;}
.ybf{bottom:349.200000pt;}
.y78{bottom:350.160000pt;}
.y9c{bottom:351.760000pt;}
.y4e{bottom:354.640000pt;}
.ybe{bottom:367.760000pt;}
.y77{bottom:368.400000pt;}
.y4d{bottom:373.200000pt;}
.y9b{bottom:377.680000pt;}
.ybd{bottom:386.000000pt;}
.y76{bottom:386.960000pt;}
.y4c{bottom:391.760000pt;}
.y9a{bottom:396.560000pt;}
.y75{bottom:405.200000pt;}
.y4b{bottom:410.000000pt;}
.ybc{bottom:412.240000pt;}
.y99{bottom:422.480000pt;}
.y4a{bottom:428.560000pt;}
.ybb{bottom:430.800000pt;}
.y74{bottom:431.440000pt;}
.y49{bottom:446.800000pt;}
.y98{bottom:449.040000pt;}
.y73{bottom:450.000000pt;}
.yba{bottom:457.040000pt;}
.y48{bottom:465.360000pt;}
.y97{bottom:467.600000pt;}
.y72{bottom:468.560000pt;}
.yb9{bottom:475.600000pt;}
.y47{bottom:483.600000pt;}
.y71{bottom:486.800000pt;}
.y96{bottom:493.840000pt;}
.yb8{bottom:494.160000pt;}
.y46{bottom:502.160000pt;}
.y70{bottom:505.360000pt;}
.y95{bottom:520.080000pt;}
.y45{bottom:520.400000pt;}
.y6f{bottom:523.600000pt;}
.y44{bottom:538.960000pt;}
.y6e{bottom:542.160000pt;}
.yb7{bottom:557.200000pt;}
.y43{bottom:564.880000pt;}
.y6d{bottom:568.080000pt;}
.yb6{bottom:583.440000pt;}
.y94{bottom:583.760000pt;}
.y6c{bottom:586.960000pt;}
.y42{bottom:591.440000pt;}
.yb5{bottom:602.000000pt;}
.y6b{bottom:605.200000pt;}
.y93{bottom:609.680000pt;}
.y41{bottom:617.680000pt;}
.y6a{bottom:623.760000pt;}
.yb4{bottom:628.240000pt;}
.y92{bottom:628.560000pt;}
.y40{bottom:636.560000pt;}
.y69{bottom:642.000000pt;}
.y91{bottom:646.800000pt;}
.y14{bottom:653.333333pt;}
.y68{bottom:660.560000pt;}
.y3f{bottom:662.480000pt;}
.yb3{bottom:665.360000pt;}
.y90{bottom:673.040000pt;}
.y13{bottom:679.440000pt;}
.y67{bottom:686.480000pt;}
.y3e{bottom:689.040000pt;}
.yb2{bottom:691.280000pt;}
.y8f{bottom:691.600000pt;}
.y12{bottom:695.760000pt;}
.y66{bottom:705.360000pt;}
.y3d{bottom:715.280000pt;}
.y8e{bottom:717.840000pt;}
.y11{bottom:718.160000pt;}
.y65{bottom:723.600000pt;}
.y10{bottom:734.480000pt;}
.y8d{bottom:736.400000pt;}
.y3c{bottom:741.840000pt;}
.y64{bottom:742.160000pt;}
.yb1{bottom:744.080000pt;}
.yf{bottom:745.680000pt;}
.y3b{bottom:760.400000pt;}
.y8c{bottom:762.640000pt;}
.yb0{bottom:762.960000pt;}
.ye{bottom:774.800000pt;}
.y8b{bottom:781.200000pt;}
.y3a{bottom:786.640000pt;}
.yaf{bottom:799.760000pt;}
.yd{bottom:803.920000pt;}
.y63{bottom:805.200000pt;}
.y8a{bottom:807.440000pt;}
.y39{bottom:812.880000pt;}
.yae{bottom:818.000000pt;}
.y62{bottom:823.760000pt;}
.y89{bottom:826.000000pt;}
.y38{bottom:831.760000pt;}
.yad{bottom:836.560000pt;}
.yc{bottom:839.440000pt;}
.y61{bottom:842.000000pt;}
.y37{bottom:850.000000pt;}
.y88{bottom:852.240000pt;}
.y8{bottom:853.333333pt;}
.y60{bottom:860.560000pt;}
.yac{bottom:862.480000pt;}
.y36{bottom:868.560000pt;}
.y87{bottom:878.480000pt;}
.y5f{bottom:878.800000pt;}
.yab{bottom:881.360000pt;}
.y35{bottom:886.800000pt;}
.y5e{bottom:897.360000pt;}
.y86{bottom:905.040000pt;}
.y34{bottom:905.360000pt;}
.yaa{bottom:907.280000pt;}
.y5d{bottom:915.600000pt;}
.y33{bottom:923.600000pt;}
.ya9{bottom:933.840000pt;}
.y5c{bottom:941.840000pt;}
.y32{bottom:942.160000pt;}
.ya8{bottom:952.400000pt;}
.y31{bottom:960.400000pt;}
.ya7{bottom:978.640000pt;}
.y30{bottom:978.960000pt;}
.y2f{bottom:997.200000pt;}
.y7{bottom:997.840000pt;}
.y3{bottom:1015.120000pt;}
.y2{bottom:1034.320000pt;}
.y1{bottom:1056.080000pt;}
.h3{height:3.412500pt;}
.h8{height:5.235000pt;}
.h4{height:18.666667pt;}
.h11{height:20.000000pt;}
.hc{height:22.666667pt;}
.hb{height:24.740625pt;}
.h10{height:35.831250pt;}
.h2{height:36.645000pt;}
.h5{height:39.243750pt;}
.hd{height:42.656250pt;}
.h12{height:43.375000pt;}
.he{height:44.468750pt;}
.h7{height:44.562500pt;}
.h14{height:46.250000pt;}
.ha{height:49.060625pt;}
.h1{height:49.062500pt;}
.h13{height:51.088750pt;}
.h9{height:63.984375pt;}
.h6{height:129.333333pt;}
.hf{height:348.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:10.666667pt;}
.w5{width:22.666667pt;}
.w7{width:26.666667pt;}
.w1{width:30.666667pt;}
.w8{width:32.000000pt;}
.w6{width:221.333333pt;}
.w4{width:408.000000pt;}
.w3{width:721.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:7.493490pt;}
.x13{left:11.973286pt;}
.x21{left:25.253255pt;}
.x7{left:29.333333pt;}
.x4{left:31.386718pt;}
.xb{left:43.386718pt;}
.x22{left:53.653323pt;}
.x1c{left:55.386731pt;}
.x1e{left:59.786795pt;}
.xc{left:79.428395pt;}
.x10{left:82.270827pt;}
.x1f{left:83.786795pt;}
.x12{left:97.333333pt;}
.x20{left:103.386731pt;}
.x14{left:104.332661pt;}
.x8{left:143.583317pt;}
.x17{left:159.586773pt;}
.xe{left:257.010411pt;}
.x1{left:257.910155pt;}
.x19{left:261.243499pt;}
.xf{left:276.186187pt;}
.x2{left:327.776715pt;}
.x1a{left:331.110027pt;}
.xd{left:349.176427pt;}
.x9{left:354.626773pt;}
.x5{left:388.000000pt;}
.x1d{left:390.666667pt;}
.x11{left:397.053227pt;}
.x3{left:398.253227pt;}
.x1b{left:401.586667pt;}
.x15{left:504.000000pt;}
.x16{left:525.333333pt;}
.x18{left:745.333333pt;}
.x6{left:765.333333pt;}
}




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