
    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_064286dedf0f761440380af6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_d5c2da21896c4a8c27911d9a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d741c5d58566890eb00a000b.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5f4ed25d677c436a8f196a73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_824e1e156db89658b6884490.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860840;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_0fbe0d8af45d67798c31dfc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_010fec53444134fa2a306a8a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d50270aaf773665ab6d43157.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_3023cc09c930d19abb5cae7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_f2de34fbf9ea4cd7e90a8f20.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fde6bd2723c07c0c58e8f6a3.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_71948b0742f36c6d3116b6bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.880371;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_6a5de35a5868b6c2c3537c54.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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);}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-25.920000px;}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.520000px;}
.v1{vertical-align:24.480000px;}
.v4{vertical-align:27.360000px;}
.v7{vertical-align:51.840000px;}
.ls1c{letter-spacing:-0.930240px;}
.ls18{letter-spacing:-0.913824px;}
.ls19{letter-spacing:-0.831744px;}
.ls1a{letter-spacing:-0.634752px;}
.ls16{letter-spacing:-0.383040px;}
.ls17{letter-spacing:-0.366624px;}
.ls1b{letter-spacing:-0.175104px;}
.ls11{letter-spacing:-0.158976px;}
.lsb{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.119232px;}
.ls13{letter-spacing:-0.079488px;}
.ls14{letter-spacing:-0.059616px;}
.ls5{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000432px;}
.lsc{letter-spacing:0.000576px;}
.ls10{letter-spacing:0.001440px;}
.lsd{letter-spacing:0.011520px;}
.ls7{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.118800px;}
.lsa{letter-spacing:0.119952px;}
.lsf{letter-spacing:0.161568px;}
.ls3{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.239904px;}
.ls1{letter-spacing:0.240048px;}
.ls4{letter-spacing:0.240480px;}
.ls8{letter-spacing:0.242352px;}
.ls9{letter-spacing:194.399424px;}
.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:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.wsd{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.500384px;}
.wsb{word-spacing:-16.480512px;}
.wsa{word-spacing:-16.440768px;}
.ws9{word-spacing:-16.401024px;}
.ws7{word-spacing:-14.837760px;}
.wse{word-spacing:-12.191616px;}
.ws5{word-spacing:-12.122352px;}
.ws2{word-spacing:-12.120480px;}
.ws8{word-spacing:-12.041568px;}
.ws10{word-spacing:-12.000096px;}
.ws3{word-spacing:-11.998800px;}
.ws12{word-spacing:-11.983680px;}
.wsf{word-spacing:-11.436480px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:473.841240px;}
.ws11{word-spacing:507.927360px;}
.ws15{word-spacing:521.607360px;}
.ws14{word-spacing:535.296240px;}
._9{margin-left:-4.089600px;}
._8{margin-left:-2.539152px;}
._3{margin-left:-1.036800px;}
._1{width:1.540800px;}
._0{width:5.882400px;}
._a{width:7.848000px;}
._b{width:12.194640px;}
._2{width:19.317600px;}
._4{width:38.894400px;}
._c{width:72.190848px;}
._d{width:85.576920px;}
._e{width:111.892344px;}
._f{width:121.580256px;}
._7{width:194.399424px;}
._10{width:235.748592px;}
._11{width:247.560840px;}
._6{width:843.840000px;}
._5{width:846.000000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(24,25,27);}
.fc3{color:rgb(14,16,26);}
.fc1{color:rgb(5,99,193);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:80.640000px;}
.fs5{font-size:108.000000px;}
.yae{bottom:-3.240000px;}
.yaa{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.760000px;}
.ya5{bottom:12.960000px;}
.y63{bottom:23.460000px;}
.y96{bottom:23.520000px;}
.y94{bottom:24.180000px;}
.y7c{bottom:24.720000px;}
.y89{bottom:24.840000px;}
.y67{bottom:24.960000px;}
.y6a{bottom:25.020000px;}
.y61{bottom:25.140000px;}
.y8c{bottom:25.440000px;}
.y7f{bottom:25.560000px;}
.y6c{bottom:25.620000px;}
.y6f{bottom:25.740000px;}
.y65{bottom:25.860000px;}
.y78{bottom:25.920000px;}
.y8f{bottom:26.040000px;}
.y8a{bottom:26.280000px;}
.y92{bottom:26.580000px;}
.y8d{bottom:26.880000px;}
.y90{bottom:27.480000px;}
.yb9{bottom:30.960000px;}
.y9f{bottom:31.320000px;}
.yba{bottom:61.920000px;}
.y69{bottom:66.060000px;}
.y7b{bottom:66.120000px;}
.y86{bottom:66.360000px;}
.y74{bottom:66.420000px;}
.y60{bottom:66.540000px;}
.y7e{bottom:66.960000px;}
.y6e{bottom:67.140000px;}
.y77{bottom:67.320000px;}
.y87{bottom:67.800000px;}
.ya0{bottom:75.600000px;}
.ybb{bottom:92.880000px;}
.yb3{bottom:106.920000px;}
.y7a{bottom:107.520000px;}
.y73{bottom:107.820000px;}
.ya8{bottom:108.000000px;}
.y76{bottom:108.720000px;}
.y79{bottom:120.000000px;}
.ya1{bottom:120.240000px;}
.ybc{bottom:123.480000px;}
.ya7{bottom:133.200000px;}
.yc7{bottom:140.760000px;}
.y3e{bottom:144.360000px;}
.y72{bottom:149.220000px;}
.y5e{bottom:150.120000px;}
.ybd{bottom:154.440000px;}
.ya6{bottom:158.400000px;}
.y25{bottom:162.000000px;}
.ya2{bottom:164.520000px;}
.yc6{bottom:165.960000px;}
.ybe{bottom:185.040000px;}
.y3d{bottom:185.760000px;}
.y24{bottom:190.440000px;}
.y71{bottom:190.620000px;}
.y5d{bottom:191.520000px;}
.yb4{bottom:194.040000px;}
.ya3{bottom:209.160000px;}
.ybf{bottom:216.000000px;}
.yc5{bottom:216.720000px;}
.y23{bottom:218.520000px;}
.yb5{bottom:225.000000px;}
.y3c{bottom:227.160000px;}
.y5c{bottom:232.920000px;}
.yc4{bottom:241.920000px;}
.y75{bottom:243.000000px;}
.y22{bottom:246.600000px;}
.yb6{bottom:250.560000px;}
.ya4{bottom:253.800000px;}
.y3b{bottom:268.560000px;}
.y5b{bottom:274.320000px;}
.y21{bottom:275.040000px;}
.yc0{bottom:277.560000px;}
.yb7{bottom:286.560000px;}
.y20{bottom:303.120000px;}
.yc1{bottom:308.160000px;}
.y3a{bottom:309.960000px;}
.yb8{bottom:311.400000px;}
.y5a{bottom:315.720000px;}
.y1f{bottom:331.200000px;}
.yc2{bottom:339.120000px;}
.y39{bottom:351.360000px;}
.y45{bottom:351.720000px;}
.y59{bottom:357.120000px;}
.y1e{bottom:359.640000px;}
.yc3{bottom:370.080000px;}
.y1d{bottom:387.720000px;}
.y38{bottom:392.760000px;}
.y58{bottom:398.520000px;}
.y70{bottom:409.500000px;}
.y1c{bottom:415.800000px;}
.y46{bottom:432.000000px;}
.y37{bottom:434.160000px;}
.y57{bottom:439.920000px;}
.y1b{bottom:444.240000px;}
.y9d{bottom:470.160000px;}
.y1a{bottom:472.320000px;}
.y36{bottom:475.560000px;}
.y56{bottom:481.320000px;}
.y19{bottom:500.400000px;}
.y9c{bottom:511.560000px;}
.y35{bottom:516.960000px;}
.yb1{bottom:518.760000px;}
.y55{bottom:522.720000px;}
.y18{bottom:528.840000px;}
.y9b{bottom:552.960000px;}
.yb0{bottom:556.200000px;}
.y17{bottom:556.920000px;}
.yb2{bottom:558.000000px;}
.y34{bottom:558.360000px;}
.y54{bottom:564.120000px;}
.y16{bottom:585.000000px;}
.y9a{bottom:594.360000px;}
.y33{bottom:599.760000px;}
.y53{bottom:605.520000px;}
.y15{bottom:613.440000px;}
.y6d{bottom:616.500000px;}
.y99{bottom:631.800000px;}
.y9e{bottom:632.880000px;}
.y32{bottom:641.160000px;}
.y14{bottom:641.520000px;}
.y52{bottom:646.920000px;}
.y98{bottom:659.160000px;}
.y13{bottom:669.600000px;}
.y44{bottom:682.560000px;}
.y51{bottom:688.320000px;}
.y31{bottom:688.680000px;}
.y12{bottom:698.040000px;}
.y6b{bottom:700.500000px;}
.y97{bottom:700.560000px;}
.y95{bottom:717.000000px;}
.yad{bottom:717.840000px;}
.y43{bottom:723.960000px;}
.y11{bottom:726.120000px;}
.yaf{bottom:728.640000px;}
.y50{bottom:729.720000px;}
.y30{bottom:730.080000px;}
.y68{bottom:742.500000px;}
.ya9{bottom:750.600000px;}
.y10{bottom:754.200000px;}
.y93{bottom:754.500000px;}
.y2f{bottom:765.360000px;}
.y4f{bottom:771.120000px;}
.yac{bottom:774.720000px;}
.yf{bottom:782.640000px;}
.y91{bottom:793.500000px;}
.yab{bottom:800.280000px;}
.y42{bottom:806.760000px;}
.ye{bottom:810.720000px;}
.y4e{bottom:812.520000px;}
.y2e{bottom:812.880000px;}
.y66{bottom:825.000000px;}
.y8e{bottom:834.000000px;}
.yd{bottom:838.800000px;}
.y41{bottom:848.160000px;}
.y4d{bottom:853.920000px;}
.y2d{bottom:854.280000px;}
.y64{bottom:865.500000px;}
.yc{bottom:867.240000px;}
.y8b{bottom:876.000000px;}
.y40{bottom:889.560000px;}
.y4c{bottom:895.320000px;}
.y2c{bottom:895.680000px;}
.yb{bottom:905.760000px;}
.y62{bottom:907.500000px;}
.y88{bottom:918.000000px;}
.y83{bottom:930.240000px;}
.y2b{bottom:930.960000px;}
.ya{bottom:936.720000px;}
.y5f{bottom:946.500000px;}
.y85{bottom:960.000000px;}
.y9{bottom:967.680000px;}
.y3f{bottom:972.360000px;}
.y82{bottom:977.760000px;}
.y4b{bottom:978.120000px;}
.y2a{bottom:978.480000px;}
.y8{bottom:1006.200000px;}
.y81{bottom:1013.040000px;}
.y29{bottom:1013.760000px;}
.y4a{bottom:1019.520000px;}
.y7{bottom:1037.160000px;}
.y80{bottom:1054.440000px;}
.y28{bottom:1055.160000px;}
.y49{bottom:1060.920000px;}
.y6{bottom:1068.480000px;}
.y7d{bottom:1071.000000px;}
.y27{bottom:1096.560000px;}
.y5{bottom:1099.440000px;}
.y48{bottom:1102.320000px;}
.y84{bottom:1109.880000px;}
.y4{bottom:1130.400000px;}
.y26{bottom:1137.960000px;}
.y2{bottom:1188.000000px;}
.y47{bottom:1193.040000px;}
.y1{bottom:1193.400000px;}
.h17{height:13.320000px;}
.h16{height:13.680000px;}
.h3{height:22.500000px;}
.h15{height:37.913906px;}
.h6{height:38.695781px;}
.hc{height:39.000000px;}
.h13{height:40.500000px;}
.hf{height:42.000000px;}
.he{height:43.500000px;}
.h4{height:44.149219px;}
.hd{height:45.992813px;}
.h8{height:48.761719px;}
.h9{height:49.992188px;}
.h7{height:53.746875px;}
.h2{height:63.175781px;}
.h5{height:63.949219px;}
.h19{height:65.273906px;}
.ha{height:71.982422px;}
.hb{height:84.000000px;}
.h1a{height:89.753906px;}
.h12{height:124.500000px;}
.h11{height:168.000000px;}
.h10{height:208.500000px;}
.h14{height:273.600000px;}
.h18{height:390.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w3{width:18.000000px;}
.wf{width:21.600000px;}
.we{width:43.560000px;}
.wd{width:66.600000px;}
.wb{width:85.500000px;}
.w8{width:87.000000px;}
.wa{width:97.500000px;}
.w5{width:118.500000px;}
.w6{width:129.000000px;}
.w9{width:139.500000px;}
.w7{width:160.500000px;}
.w4{width:277.500000px;}
.wc{width:676.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:1.020000px;}
.x22{left:7.920036px;}
.x24{left:10.018560px;}
.x32{left:12.181656px;}
.x25{left:15.343680px;}
.x3d{left:16.590000px;}
.x1f{left:17.598000px;}
.x26{left:19.018560px;}
.x33{left:22.943856px;}
.x23{left:24.393000px;}
.x2a{left:25.768560px;}
.x1c{left:27.759000px;}
.x3b{left:29.167560px;}
.x2b{left:30.268560px;}
.x1d{left:32.021760px;}
.x2c{left:34.768560px;}
.x2f{left:35.893320px;}
.x20{left:37.346880px;}
.x27{left:38.521200px;}
.x2e{left:40.093680px;}
.x28{left:43.846320px;}
.x3a{left:45.200640px;}
.x30{left:46.592640px;}
.x35{left:48.953640px;}
.x1a{left:54.825084px;}
.x29{left:58.762560px;}
.x2d{left:64.087680px;}
.x45{left:87.839700px;}
.x1{left:108.000000px;}
.xb{left:112.557852px;}
.x4{left:116.247816px;}
.x43{left:121.713450px;}
.xe{left:123.076908px;}
.x7{left:133.825932px;}
.x9{left:161.033940px;}
.xd{left:180.277596px;}
.x10{left:200.546280px;}
.xa{left:226.014408px;}
.x31{left:267.000000px;}
.x8{left:310.015872px;}
.x6{left:312.239484px;}
.x34{left:352.500000px;}
.x11{left:359.740008px;}
.xc{left:363.985200px;}
.x3f{left:381.240000px;}
.x1b{left:384.000000px;}
.x16{left:387.491400px;}
.x14{left:390.501720px;}
.x19{left:404.502840px;}
.x18{left:405.961560px;}
.xf{left:412.984080px;}
.x17{left:414.041400px;}
.x5{left:417.488400px;}
.x44{left:436.923600px;}
.x13{left:443.027520px;}
.x15{left:445.022640px;}
.x40{left:480.240000px;}
.x36{left:490.500000px;}
.x1e{left:501.000000px;}
.x41{left:514.440000px;}
.x46{left:572.189250px;}
.x37{left:586.500000px;}
.x42{left:588.960000px;}
.x3e{left:592.087050px;}
.x21{left:628.500000px;}
.x38{left:670.500000px;}
.x39{left:756.000000px;}
.x12{left:768.000000px;}
.x2{left:775.500000px;}
.x3c{left:785.880000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-23.040000pt;}
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.240000pt;}
.v1{vertical-align:21.760000pt;}
.v4{vertical-align:24.320000pt;}
.v7{vertical-align:46.080000pt;}
.ls1c{letter-spacing:-0.826880pt;}
.ls18{letter-spacing:-0.812288pt;}
.ls19{letter-spacing:-0.739328pt;}
.ls1a{letter-spacing:-0.564224pt;}
.ls16{letter-spacing:-0.340480pt;}
.ls17{letter-spacing:-0.325888pt;}
.ls1b{letter-spacing:-0.155648pt;}
.ls11{letter-spacing:-0.141312pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.105984pt;}
.ls13{letter-spacing:-0.070656pt;}
.ls14{letter-spacing:-0.052992pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000384pt;}
.lsc{letter-spacing:0.000512pt;}
.ls10{letter-spacing:0.001280pt;}
.lsd{letter-spacing:0.010240pt;}
.ls7{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.105600pt;}
.lsa{letter-spacing:0.106624pt;}
.lsf{letter-spacing:0.143616pt;}
.ls3{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.213248pt;}
.ls1{letter-spacing:0.213376pt;}
.ls4{letter-spacing:0.213760pt;}
.ls8{letter-spacing:0.215424pt;}
.ls9{letter-spacing:172.799488pt;}
.ws4{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.wsd{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.667008pt;}
.wsb{word-spacing:-14.649344pt;}
.wsa{word-spacing:-14.614016pt;}
.ws9{word-spacing:-14.578688pt;}
.ws7{word-spacing:-13.189120pt;}
.wse{word-spacing:-10.836992pt;}
.ws5{word-spacing:-10.775424pt;}
.ws2{word-spacing:-10.773760pt;}
.ws8{word-spacing:-10.703616pt;}
.ws10{word-spacing:-10.666752pt;}
.ws3{word-spacing:-10.665600pt;}
.ws12{word-spacing:-10.652160pt;}
.wsf{word-spacing:-10.165760pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:421.192213pt;}
.ws11{word-spacing:451.490987pt;}
.ws15{word-spacing:463.650987pt;}
.ws14{word-spacing:475.818880pt;}
._9{margin-left:-3.635200pt;}
._8{margin-left:-2.257024pt;}
._3{margin-left:-0.921600pt;}
._1{width:1.369600pt;}
._0{width:5.228800pt;}
._a{width:6.976000pt;}
._b{width:10.839680pt;}
._2{width:17.171200pt;}
._4{width:34.572800pt;}
._c{width:64.169643pt;}
._d{width:76.068373pt;}
._e{width:99.459861pt;}
._f{width:108.071339pt;}
._7{width:172.799488pt;}
._10{width:209.554304pt;}
._11{width:220.054080pt;}
._6{width:750.080000pt;}
._5{width:752.000000pt;}
.fs2{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:71.680000pt;}
.fs5{font-size:96.000000pt;}
.yae{bottom:-2.880000pt;}
.yaa{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:5.120000pt;}
.ya5{bottom:11.520000pt;}
.y63{bottom:20.853333pt;}
.y96{bottom:20.906667pt;}
.y94{bottom:21.493333pt;}
.y7c{bottom:21.973333pt;}
.y89{bottom:22.080000pt;}
.y67{bottom:22.186667pt;}
.y6a{bottom:22.240000pt;}
.y61{bottom:22.346667pt;}
.y8c{bottom:22.613333pt;}
.y7f{bottom:22.720000pt;}
.y6c{bottom:22.773333pt;}
.y6f{bottom:22.880000pt;}
.y65{bottom:22.986667pt;}
.y78{bottom:23.040000pt;}
.y8f{bottom:23.146667pt;}
.y8a{bottom:23.360000pt;}
.y92{bottom:23.626667pt;}
.y8d{bottom:23.893333pt;}
.y90{bottom:24.426667pt;}
.yb9{bottom:27.520000pt;}
.y9f{bottom:27.840000pt;}
.yba{bottom:55.040000pt;}
.y69{bottom:58.720000pt;}
.y7b{bottom:58.773333pt;}
.y86{bottom:58.986667pt;}
.y74{bottom:59.040000pt;}
.y60{bottom:59.146667pt;}
.y7e{bottom:59.520000pt;}
.y6e{bottom:59.680000pt;}
.y77{bottom:59.840000pt;}
.y87{bottom:60.266667pt;}
.ya0{bottom:67.200000pt;}
.ybb{bottom:82.560000pt;}
.yb3{bottom:95.040000pt;}
.y7a{bottom:95.573333pt;}
.y73{bottom:95.840000pt;}
.ya8{bottom:96.000000pt;}
.y76{bottom:96.640000pt;}
.y79{bottom:106.666667pt;}
.ya1{bottom:106.880000pt;}
.ybc{bottom:109.760000pt;}
.ya7{bottom:118.400000pt;}
.yc7{bottom:125.120000pt;}
.y3e{bottom:128.320000pt;}
.y72{bottom:132.640000pt;}
.y5e{bottom:133.440000pt;}
.ybd{bottom:137.280000pt;}
.ya6{bottom:140.800000pt;}
.y25{bottom:144.000000pt;}
.ya2{bottom:146.240000pt;}
.yc6{bottom:147.520000pt;}
.ybe{bottom:164.480000pt;}
.y3d{bottom:165.120000pt;}
.y24{bottom:169.280000pt;}
.y71{bottom:169.440000pt;}
.y5d{bottom:170.240000pt;}
.yb4{bottom:172.480000pt;}
.ya3{bottom:185.920000pt;}
.ybf{bottom:192.000000pt;}
.yc5{bottom:192.640000pt;}
.y23{bottom:194.240000pt;}
.yb5{bottom:200.000000pt;}
.y3c{bottom:201.920000pt;}
.y5c{bottom:207.040000pt;}
.yc4{bottom:215.040000pt;}
.y75{bottom:216.000000pt;}
.y22{bottom:219.200000pt;}
.yb6{bottom:222.720000pt;}
.ya4{bottom:225.600000pt;}
.y3b{bottom:238.720000pt;}
.y5b{bottom:243.840000pt;}
.y21{bottom:244.480000pt;}
.yc0{bottom:246.720000pt;}
.yb7{bottom:254.720000pt;}
.y20{bottom:269.440000pt;}
.yc1{bottom:273.920000pt;}
.y3a{bottom:275.520000pt;}
.yb8{bottom:276.800000pt;}
.y5a{bottom:280.640000pt;}
.y1f{bottom:294.400000pt;}
.yc2{bottom:301.440000pt;}
.y39{bottom:312.320000pt;}
.y45{bottom:312.640000pt;}
.y59{bottom:317.440000pt;}
.y1e{bottom:319.680000pt;}
.yc3{bottom:328.960000pt;}
.y1d{bottom:344.640000pt;}
.y38{bottom:349.120000pt;}
.y58{bottom:354.240000pt;}
.y70{bottom:364.000000pt;}
.y1c{bottom:369.600000pt;}
.y46{bottom:384.000000pt;}
.y37{bottom:385.920000pt;}
.y57{bottom:391.040000pt;}
.y1b{bottom:394.880000pt;}
.y9d{bottom:417.920000pt;}
.y1a{bottom:419.840000pt;}
.y36{bottom:422.720000pt;}
.y56{bottom:427.840000pt;}
.y19{bottom:444.800000pt;}
.y9c{bottom:454.720000pt;}
.y35{bottom:459.520000pt;}
.yb1{bottom:461.120000pt;}
.y55{bottom:464.640000pt;}
.y18{bottom:470.080000pt;}
.y9b{bottom:491.520000pt;}
.yb0{bottom:494.400000pt;}
.y17{bottom:495.040000pt;}
.yb2{bottom:496.000000pt;}
.y34{bottom:496.320000pt;}
.y54{bottom:501.440000pt;}
.y16{bottom:520.000000pt;}
.y9a{bottom:528.320000pt;}
.y33{bottom:533.120000pt;}
.y53{bottom:538.240000pt;}
.y15{bottom:545.280000pt;}
.y6d{bottom:548.000000pt;}
.y99{bottom:561.600000pt;}
.y9e{bottom:562.560000pt;}
.y32{bottom:569.920000pt;}
.y14{bottom:570.240000pt;}
.y52{bottom:575.040000pt;}
.y98{bottom:585.920000pt;}
.y13{bottom:595.200000pt;}
.y44{bottom:606.720000pt;}
.y51{bottom:611.840000pt;}
.y31{bottom:612.160000pt;}
.y12{bottom:620.480000pt;}
.y6b{bottom:622.666667pt;}
.y97{bottom:622.720000pt;}
.y95{bottom:637.333333pt;}
.yad{bottom:638.080000pt;}
.y43{bottom:643.520000pt;}
.y11{bottom:645.440000pt;}
.yaf{bottom:647.680000pt;}
.y50{bottom:648.640000pt;}
.y30{bottom:648.960000pt;}
.y68{bottom:660.000000pt;}
.ya9{bottom:667.200000pt;}
.y10{bottom:670.400000pt;}
.y93{bottom:670.666667pt;}
.y2f{bottom:680.320000pt;}
.y4f{bottom:685.440000pt;}
.yac{bottom:688.640000pt;}
.yf{bottom:695.680000pt;}
.y91{bottom:705.333333pt;}
.yab{bottom:711.360000pt;}
.y42{bottom:717.120000pt;}
.ye{bottom:720.640000pt;}
.y4e{bottom:722.240000pt;}
.y2e{bottom:722.560000pt;}
.y66{bottom:733.333333pt;}
.y8e{bottom:741.333333pt;}
.yd{bottom:745.600000pt;}
.y41{bottom:753.920000pt;}
.y4d{bottom:759.040000pt;}
.y2d{bottom:759.360000pt;}
.y64{bottom:769.333333pt;}
.yc{bottom:770.880000pt;}
.y8b{bottom:778.666667pt;}
.y40{bottom:790.720000pt;}
.y4c{bottom:795.840000pt;}
.y2c{bottom:796.160000pt;}
.yb{bottom:805.120000pt;}
.y62{bottom:806.666667pt;}
.y88{bottom:816.000000pt;}
.y83{bottom:826.880000pt;}
.y2b{bottom:827.520000pt;}
.ya{bottom:832.640000pt;}
.y5f{bottom:841.333333pt;}
.y85{bottom:853.333333pt;}
.y9{bottom:860.160000pt;}
.y3f{bottom:864.320000pt;}
.y82{bottom:869.120000pt;}
.y4b{bottom:869.440000pt;}
.y2a{bottom:869.760000pt;}
.y8{bottom:894.400000pt;}
.y81{bottom:900.480000pt;}
.y29{bottom:901.120000pt;}
.y4a{bottom:906.240000pt;}
.y7{bottom:921.920000pt;}
.y80{bottom:937.280000pt;}
.y28{bottom:937.920000pt;}
.y49{bottom:943.040000pt;}
.y6{bottom:949.760000pt;}
.y7d{bottom:952.000000pt;}
.y27{bottom:974.720000pt;}
.y5{bottom:977.280000pt;}
.y48{bottom:979.840000pt;}
.y84{bottom:986.560000pt;}
.y4{bottom:1004.800000pt;}
.y26{bottom:1011.520000pt;}
.y2{bottom:1056.000000pt;}
.y47{bottom:1060.480000pt;}
.y1{bottom:1060.800000pt;}
.h17{height:11.840000pt;}
.h16{height:12.160000pt;}
.h3{height:20.000000pt;}
.h15{height:33.701250pt;}
.h6{height:34.396250pt;}
.hc{height:34.666667pt;}
.h13{height:36.000000pt;}
.hf{height:37.333333pt;}
.he{height:38.666667pt;}
.h4{height:39.243750pt;}
.hd{height:40.882500pt;}
.h8{height:43.343750pt;}
.h9{height:44.437500pt;}
.h7{height:47.775000pt;}
.h2{height:56.156250pt;}
.h5{height:56.843750pt;}
.h19{height:58.021250pt;}
.ha{height:63.984375pt;}
.hb{height:74.666667pt;}
.h1a{height:79.781250pt;}
.h12{height:110.666667pt;}
.h11{height:149.333333pt;}
.h10{height:185.333333pt;}
.h14{height:243.200000pt;}
.h18{height:346.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w3{width:16.000000pt;}
.wf{width:19.200000pt;}
.we{width:38.720000pt;}
.wd{width:59.200000pt;}
.wb{width:76.000000pt;}
.w8{width:77.333333pt;}
.wa{width:86.666667pt;}
.w5{width:105.333333pt;}
.w6{width:114.666667pt;}
.w9{width:124.000000pt;}
.w7{width:142.666667pt;}
.w4{width:246.666667pt;}
.wc{width:601.600000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:0.906667pt;}
.x22{left:7.040032pt;}
.x24{left:8.905387pt;}
.x32{left:10.828139pt;}
.x25{left:13.638827pt;}
.x3d{left:14.746667pt;}
.x1f{left:15.642667pt;}
.x26{left:16.905387pt;}
.x33{left:20.394539pt;}
.x23{left:21.682667pt;}
.x2a{left:22.905387pt;}
.x1c{left:24.674667pt;}
.x3b{left:25.926720pt;}
.x2b{left:26.905387pt;}
.x1d{left:28.463787pt;}
.x2c{left:30.905387pt;}
.x2f{left:31.905173pt;}
.x20{left:33.197227pt;}
.x27{left:34.241067pt;}
.x2e{left:35.638827pt;}
.x28{left:38.974507pt;}
.x3a{left:40.178347pt;}
.x30{left:41.415680pt;}
.x35{left:43.514347pt;}
.x1a{left:48.733408pt;}
.x29{left:52.233387pt;}
.x2d{left:56.966827pt;}
.x45{left:78.079733pt;}
.x1{left:96.000000pt;}
.xb{left:100.051424pt;}
.x4{left:103.331392pt;}
.x43{left:108.189733pt;}
.xe{left:109.401696pt;}
.x7{left:118.956384pt;}
.x9{left:143.141280pt;}
.xd{left:160.246752pt;}
.x10{left:178.263360pt;}
.xa{left:200.901696pt;}
.x31{left:237.333333pt;}
.x8{left:275.569664pt;}
.x6{left:277.546208pt;}
.x34{left:313.333333pt;}
.x11{left:319.768896pt;}
.xc{left:323.542400pt;}
.x3f{left:338.880000pt;}
.x1b{left:341.333333pt;}
.x16{left:344.436800pt;}
.x14{left:347.112640pt;}
.x19{left:359.558080pt;}
.x18{left:360.854720pt;}
.xf{left:367.096960pt;}
.x17{left:368.036800pt;}
.x5{left:371.100800pt;}
.x44{left:388.376533pt;}
.x13{left:393.802240pt;}
.x15{left:395.575680pt;}
.x40{left:426.880000pt;}
.x36{left:436.000000pt;}
.x1e{left:445.333333pt;}
.x41{left:457.280000pt;}
.x46{left:508.612667pt;}
.x37{left:521.333333pt;}
.x42{left:523.520000pt;}
.x3e{left:526.299600pt;}
.x21{left:558.666667pt;}
.x38{left:596.000000pt;}
.x39{left:672.000000pt;}
.x12{left:682.666667pt;}
.x2{left:689.333333pt;}
.x3c{left:698.560000pt;}
}




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