
    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_b4d8f6841427887acf37c0be.woff')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_45a777c51ad7834acdbd2fb3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_877e12c1689228e2597a884c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_b5b1e7f0e49ff144eea7b414.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9dc07db559392f563c8ff970.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b8b5a93e3ff9bf04892d3051.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_179943343850f238a12ed7ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.953125;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_74b368470d2ef1dd875dba73.woff')format("woff");}.ff8{font-family:ff8;line-height:0.759033;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_4d288eeddc5b2d3f46678e17.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bebdaaf36d14156c77b94583.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls17{letter-spacing:-4.980000px;}
.ls15{letter-spacing:-4.440000px;}
.ls12{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.060000px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008400px;}
.ls13{letter-spacing:0.010200px;}
.ls10{letter-spacing:0.021000px;}
.ls1f{letter-spacing:0.190800px;}
.ls1a{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.559200px;}
.ls3{letter-spacing:0.559800px;}
.ls1e{letter-spacing:0.805200px;}
.ls2{letter-spacing:0.960000px;}
.ls0{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.100000px;}
.ls11{letter-spacing:3.399600px;}
.ls14{letter-spacing:3.720000px;}
.ls6{letter-spacing:3.813000px;}
.ls22{letter-spacing:4.896000px;}
.ls20{letter-spacing:5.132400px;}
.ls21{letter-spacing:5.136000px;}
.ls18{letter-spacing:6.240000px;}
.ls1d{letter-spacing:6.858600px;}
.ls5{letter-spacing:7.747200px;}
.ls19{letter-spacing:8.160000px;}
.ls1c{letter-spacing:9.511200px;}
.lse{letter-spacing:9.840000px;}
.ls8{letter-spacing:9.855000px;}
.ls16{letter-spacing:11.160000px;}
.lsd{letter-spacing:12.480000px;}
.ls7{letter-spacing:12.486000px;}
.ls9{letter-spacing:20.460000px;}
.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;}
}
.ws2a{word-spacing:-17.100000px;}
.ws2{word-spacing:-15.000000px;}
.ws11{word-spacing:-12.480000px;}
.ws3{word-spacing:-12.000000px;}
.ws21{word-spacing:-11.160000px;}
.ws12{word-spacing:-9.840000px;}
.ws27{word-spacing:-8.160000px;}
.ws25{word-spacing:-6.240000px;}
.ws36{word-spacing:-5.136000px;}
.ws38{word-spacing:-4.896000px;}
.ws22{word-spacing:-4.380000px;}
.ws1e{word-spacing:-3.840000px;}
.ws1c{word-spacing:-3.720000px;}
.ws9{word-spacing:-2.100000px;}
.ws5{word-spacing:-1.440000px;}
.ws6{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.816000px;}
.ws15{word-spacing:-0.768000px;}
.wse{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws1{word-spacing:-0.038478px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:0.060000px;}
.ws35{word-spacing:0.144000px;}
.ws37{word-spacing:0.240000px;}
.ws2d{word-spacing:0.420000px;}
.wsf{word-spacing:0.600000px;}
.ws29{word-spacing:1.080000px;}
.ws8{word-spacing:1.248000px;}
.ws2c{word-spacing:1.320000px;}
.ws19{word-spacing:1.440000px;}
.ws7{word-spacing:1.536000px;}
.ws28{word-spacing:2.760000px;}
.ws31{word-spacing:3.024000px;}
.wsa{word-spacing:3.540000px;}
.wsd{word-spacing:3.840000px;}
.ws1b{word-spacing:4.320000px;}
.ws34{word-spacing:4.368000px;}
.ws1d{word-spacing:4.440000px;}
.ws23{word-spacing:4.980000px;}
.ws2f{word-spacing:5.220000px;}
.ws30{word-spacing:5.580000px;}
.ws18{word-spacing:5.808000px;}
.ws2e{word-spacing:6.180000px;}
.ws39{word-spacing:6.579000px;}
.wsc{word-spacing:6.660000px;}
.ws24{word-spacing:6.840000px;}
.ws14{word-spacing:7.080000px;}
.wsb{word-spacing:7.740000px;}
.ws26{word-spacing:8.760000px;}
.ws32{word-spacing:9.504000px;}
.ws20{word-spacing:11.760000px;}
.ws10{word-spacing:12.480000px;}
.ws2b{word-spacing:27.540000px;}
._8{margin-left:-15.262800px;}
._f{margin-left:-12.487200px;}
._11{margin-left:-9.208200px;}
._d{margin-left:-7.854600px;}
._3{margin-left:-6.339000px;}
._a{margin-left:-4.799400px;}
._4{margin-left:-3.689400px;}
._5{margin-left:-2.640000px;}
._0{margin-left:-1.440000px;}
._1{width:1.440000px;}
._16{width:2.484000px;}
._b{width:3.510000px;}
._6{width:4.675200px;}
._17{width:6.000000px;}
._9{width:7.092000px;}
._c{width:8.293800px;}
._10{width:9.837000px;}
._18{width:10.837800px;}
._13{width:11.848200px;}
._e{width:12.923400px;}
._15{width:13.969200px;}
._1b{width:16.044000px;}
._1f{width:17.787600px;}
._1c{width:18.798000px;}
._1d{width:20.094000px;}
._1e{width:22.068000px;}
._14{width:23.616000px;}
._1a{width:26.223600px;}
._19{width:27.271200px;}
._7{width:28.512000px;}
._12{width:31.308000px;}
._2{width:50.913600px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:38.478000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:55.955700px;}
.y1{bottom:56.664300px;}
.y43{bottom:89.870700px;}
.y4c{bottom:90.478950px;}
.yd9{bottom:103.158300px;}
.y28{bottom:104.393850px;}
.y42{bottom:107.870700px;}
.y4b{bottom:108.478950px;}
.y86{bottom:115.060500px;}
.yb8{bottom:115.954650px;}
.y73{bottom:119.379150px;}
.y41{bottom:122.870700px;}
.yd8{bottom:122.958300px;}
.y27{bottom:122.993850px;}
.y4a{bottom:123.478950px;}
.yb7{bottom:130.354650px;}
.y85{bottom:133.660500px;}
.y26{bottom:141.593850px;}
.y72{bottom:142.231050px;}
.yb6{bottom:144.754650px;}
.y84{bottom:152.260500px;}
.yb5{bottom:159.154650px;}
.y25{bottom:160.193850px;}
.y71{bottom:160.831050px;}
.y83{bottom:170.860500px;}
.yb4{bottom:173.554650px;}
.y70{bottom:179.431050px;}
.y24{bottom:183.045750px;}
.yb3{bottom:187.954650px;}
.y82{bottom:189.460500px;}
.y23{bottom:201.645750px;}
.y6f{bottom:202.283100px;}
.yb2{bottom:202.354650px;}
.y81{bottom:208.060500px;}
.yb1{bottom:216.754650px;}
.y22{bottom:220.245750px;}
.y6e{bottom:220.883100px;}
.y80{bottom:226.660500px;}
.yb0{bottom:231.154650px;}
.y21{bottom:238.845900px;}
.y6d{bottom:239.483100px;}
.yaf{bottom:245.554650px;}
.y20{bottom:257.445900px;}
.y7f{bottom:258.016350px;}
.yae{bottom:259.954650px;}
.y6c{bottom:262.335000px;}
.yad{bottom:274.354650px;}
.y1f{bottom:276.045750px;}
.yac{bottom:288.754650px;}
.y7e{bottom:289.372350px;}
.y6b{bottom:293.691000px;}
.y1e{bottom:294.645750px;}
.yab{bottom:303.154650px;}
.y7d{bottom:307.972350px;}
.y6a{bottom:312.291000px;}
.y1d{bottom:313.245750px;}
.yaa{bottom:317.554650px;}
.y7c{bottom:326.572350px;}
.y69{bottom:330.891000px;}
.y1c{bottom:331.845900px;}
.ya9{bottom:331.954650px;}
.y7b{bottom:345.172350px;}
.ya8{bottom:346.354650px;}
.y68{bottom:349.491000px;}
.y1b{bottom:350.445900px;}
.ya7{bottom:360.754650px;}
.y7a{bottom:368.024250px;}
.y67{bottom:368.091000px;}
.y1a{bottom:369.045750px;}
.ya6{bottom:375.154650px;}
.y79{bottom:386.624250px;}
.y66{bottom:386.691000px;}
.y19{bottom:387.645750px;}
.ya5{bottom:389.554650px;}
.ya4{bottom:403.954650px;}
.y78{bottom:405.224250px;}
.y65{bottom:405.291000px;}
.y18{bottom:406.245750px;}
.ya3{bottom:418.354650px;}
.y77{bottom:423.824400px;}
.y64{bottom:423.891000px;}
.y49{bottom:424.368150px;}
.y17{bottom:424.845900px;}
.ya2{bottom:432.754650px;}
.y48{bottom:442.968150px;}
.y16{bottom:443.445900px;}
.y76{bottom:446.676300px;}
.y63{bottom:446.742900px;}
.ya1{bottom:447.154650px;}
.ya0{bottom:461.554650px;}
.y47{bottom:461.568150px;}
.y75{bottom:465.276300px;}
.y62{bottom:465.342900px;}
.yd7{bottom:471.715200px;}
.y15{bottom:474.801750px;}
.y9f{bottom:475.954650px;}
.y74{bottom:483.876300px;}
.y61{bottom:483.942900px;}
.yd6{bottom:486.115200px;}
.y46{bottom:490.293900px;}
.y9e{bottom:490.354650px;}
.yd5{bottom:500.515200px;}
.y40{bottom:501.475200px;}
.y60{bottom:502.542900px;}
.y9d{bottom:504.754650px;}
.y45{bottom:508.293900px;}
.y14{bottom:510.409650px;}
.yd4{bottom:514.915200px;}
.y9c{bottom:519.154650px;}
.y3f{bottom:520.075200px;}
.y5f{bottom:521.142900px;}
.y88{bottom:525.372600px;}
.yd3{bottom:529.315200px;}
.y9b{bottom:533.554650px;}
.y3e{bottom:538.675200px;}
.y5e{bottom:539.742900px;}
.y87{bottom:543.372600px;}
.yd2{bottom:543.715200px;}
.y9a{bottom:547.954650px;}
.y13{bottom:548.313600px;}
.yd1{bottom:558.115200px;}
.y5d{bottom:558.342900px;}
.y3d{bottom:561.527100px;}
.y99{bottom:562.354650px;}
.y12{bottom:562.713600px;}
.yd0{bottom:572.515200px;}
.y98{bottom:576.754650px;}
.y5c{bottom:576.942900px;}
.y11{bottom:577.113600px;}
.y3c{bottom:584.379150px;}
.ycf{bottom:586.915200px;}
.y97{bottom:591.154650px;}
.y10{bottom:591.513450px;}
.y5b{bottom:599.794950px;}
.yce{bottom:601.315200px;}
.y3b{bottom:602.979150px;}
.y96{bottom:605.554650px;}
.yf{bottom:605.913600px;}
.ycd{bottom:615.715200px;}
.y5a{bottom:618.394800px;}
.ye{bottom:620.313600px;}
.ycc{bottom:630.115200px;}
.y95{bottom:632.710500px;}
.y3a{bottom:634.335000px;}
.y59{bottom:636.994950px;}
.ycb{bottom:644.515200px;}
.yd{bottom:651.721500px;}
.y58{bottom:655.594800px;}
.yca{bottom:658.915200px;}
.y94{bottom:663.016500px;}
.yc{bottom:665.221500px;}
.y39{bottom:665.690850px;}
.yc9{bottom:673.315200px;}
.y57{bottom:674.194950px;}
.yb{bottom:678.721500px;}
.y93{bottom:681.616350px;}
.y38{bottom:684.291000px;}
.yc8{bottom:687.715200px;}
.y56{bottom:692.794950px;}
.ya{bottom:696.217500px;}
.y92{bottom:700.216500px;}
.yc7{bottom:702.115200px;}
.y37{bottom:702.891000px;}
.y9{bottom:709.973400px;}
.y55{bottom:711.394800px;}
.yc6{bottom:716.515200px;}
.y36{bottom:721.491000px;}
.y91{bottom:723.068400px;}
.y8{bottom:723.473400px;}
.y54{bottom:729.994950px;}
.yc5{bottom:730.915200px;}
.y35{bottom:740.091000px;}
.y7{bottom:740.969400px;}
.y90{bottom:741.668400px;}
.yc4{bottom:745.315200px;}
.y53{bottom:748.594950px;}
.y34{bottom:758.690850px;}
.yc3{bottom:759.715200px;}
.y6{bottom:764.977350px;}
.y52{bottom:767.194950px;}
.y8f{bottom:773.024250px;}
.yc2{bottom:774.115200px;}
.y33{bottom:777.291000px;}
.y5{bottom:782.977350px;}
.y51{bottom:785.794950px;}
.yc1{bottom:788.515200px;}
.y32{bottom:795.891000px;}
.yc0{bottom:802.915200px;}
.y8e{bottom:804.380250px;}
.y50{bottom:808.646850px;}
.y31{bottom:814.491000px;}
.ybf{bottom:817.315200px;}
.y4{bottom:817.985250px;}
.y8d{bottom:822.980250px;}
.y4f{bottom:827.246850px;}
.ybe{bottom:831.715200px;}
.y30{bottom:833.091000px;}
.y3{bottom:835.737150px;}
.y8c{bottom:841.580250px;}
.y4e{bottom:845.846850px;}
.ybd{bottom:846.115200px;}
.y2f{bottom:851.690850px;}
.y2{bottom:857.337150px;}
.ybc{bottom:860.515200px;}
.y8b{bottom:864.432150px;}
.y4d{bottom:864.446850px;}
.y2e{bottom:870.291000px;}
.ybb{bottom:874.915200px;}
.y8a{bottom:883.032150px;}
.y44{bottom:883.046850px;}
.yba{bottom:889.315200px;}
.y89{bottom:901.632150px;}
.y2d{bottom:901.646850px;}
.yb9{bottom:903.715200px;}
.y2a{bottom:927.827700px;}
.y29{bottom:948.827700px;}
.y2b{bottom:951.848250px;}
.h7{height:26.133188px;}
.h9{height:32.531250px;}
.h5{height:33.328125px;}
.hd{height:35.411133px;}
.hc{height:36.375000px;}
.h8{height:42.117188px;}
.h2{height:45.468750px;}
.hb{height:48.468750px;}
.h3{height:48.796875px;}
.h4{height:49.289062px;}
.ha{height:52.646484px;}
.h6{height:57.911133px;}
.h1{height:1011.750000px;}
.h0{height:1011.969000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x12{left:76.535400px;}
.xe{left:93.543300px;}
.x19{left:97.795350px;}
.xa{left:101.400450px;}
.xb{left:107.561250px;}
.xf{left:110.551200px;}
.x1a{left:114.803100px;}
.x5{left:118.919250px;}
.x2{left:121.922400px;}
.x15{left:127.559100px;}
.x7{left:130.869000px;}
.xc{left:133.744950px;}
.x3{left:148.358700px;}
.x8{left:165.935250px;}
.x11{left:192.121500px;}
.x6{left:200.791950px;}
.xd{left:213.962100px;}
.x4{left:257.778600px;}
.x13{left:260.638500px;}
.x17{left:274.917000px;}
.x18{left:276.997050px;}
.x9{left:278.336250px;}
.x16{left:293.430000px;}
.x14{left:310.516350px;}
.x10{left:331.805250px;}
.x1{left:613.053000px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls17{letter-spacing:-4.426667pt;}
.ls15{letter-spacing:-3.946667pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007467pt;}
.ls13{letter-spacing:0.009067pt;}
.ls10{letter-spacing:0.018667pt;}
.ls1f{letter-spacing:0.169600pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.497067pt;}
.ls3{letter-spacing:0.497600pt;}
.ls1e{letter-spacing:0.715733pt;}
.ls2{letter-spacing:0.853333pt;}
.ls0{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.866667pt;}
.ls11{letter-spacing:3.021867pt;}
.ls14{letter-spacing:3.306667pt;}
.ls6{letter-spacing:3.389333pt;}
.ls22{letter-spacing:4.352000pt;}
.ls20{letter-spacing:4.562133pt;}
.ls21{letter-spacing:4.565333pt;}
.ls18{letter-spacing:5.546667pt;}
.ls1d{letter-spacing:6.096533pt;}
.ls5{letter-spacing:6.886400pt;}
.ls19{letter-spacing:7.253333pt;}
.ls1c{letter-spacing:8.454400pt;}
.lse{letter-spacing:8.746667pt;}
.ls8{letter-spacing:8.760000pt;}
.ls16{letter-spacing:9.920000pt;}
.lsd{letter-spacing:11.093333pt;}
.ls7{letter-spacing:11.098667pt;}
.ls9{letter-spacing:18.186667pt;}
.ws2a{word-spacing:-15.200000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws11{word-spacing:-11.093333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws21{word-spacing:-9.920000pt;}
.ws12{word-spacing:-8.746667pt;}
.ws27{word-spacing:-7.253333pt;}
.ws25{word-spacing:-5.546667pt;}
.ws36{word-spacing:-4.565333pt;}
.ws38{word-spacing:-4.352000pt;}
.ws22{word-spacing:-3.893333pt;}
.ws1e{word-spacing:-3.413333pt;}
.ws1c{word-spacing:-3.306667pt;}
.ws9{word-spacing:-1.866667pt;}
.ws5{word-spacing:-1.280000pt;}
.ws6{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.725333pt;}
.ws15{word-spacing:-0.682667pt;}
.wse{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws1{word-spacing:-0.034203pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053333pt;}
.ws35{word-spacing:0.128000pt;}
.ws37{word-spacing:0.213333pt;}
.ws2d{word-spacing:0.373333pt;}
.wsf{word-spacing:0.533333pt;}
.ws29{word-spacing:0.960000pt;}
.ws8{word-spacing:1.109333pt;}
.ws2c{word-spacing:1.173333pt;}
.ws19{word-spacing:1.280000pt;}
.ws7{word-spacing:1.365333pt;}
.ws28{word-spacing:2.453333pt;}
.ws31{word-spacing:2.688000pt;}
.wsa{word-spacing:3.146667pt;}
.wsd{word-spacing:3.413333pt;}
.ws1b{word-spacing:3.840000pt;}
.ws34{word-spacing:3.882667pt;}
.ws1d{word-spacing:3.946667pt;}
.ws23{word-spacing:4.426667pt;}
.ws2f{word-spacing:4.640000pt;}
.ws30{word-spacing:4.960000pt;}
.ws18{word-spacing:5.162667pt;}
.ws2e{word-spacing:5.493333pt;}
.ws39{word-spacing:5.848000pt;}
.wsc{word-spacing:5.920000pt;}
.ws24{word-spacing:6.080000pt;}
.ws14{word-spacing:6.293333pt;}
.wsb{word-spacing:6.880000pt;}
.ws26{word-spacing:7.786667pt;}
.ws32{word-spacing:8.448000pt;}
.ws20{word-spacing:10.453333pt;}
.ws10{word-spacing:11.093333pt;}
.ws2b{word-spacing:24.480000pt;}
._8{margin-left:-13.566933pt;}
._f{margin-left:-11.099733pt;}
._11{margin-left:-8.185067pt;}
._d{margin-left:-6.981867pt;}
._3{margin-left:-5.634667pt;}
._a{margin-left:-4.266133pt;}
._4{margin-left:-3.279467pt;}
._5{margin-left:-2.346667pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.280000pt;}
._16{width:2.208000pt;}
._b{width:3.120000pt;}
._6{width:4.155733pt;}
._17{width:5.333333pt;}
._9{width:6.304000pt;}
._c{width:7.372267pt;}
._10{width:8.744000pt;}
._18{width:9.633600pt;}
._13{width:10.531733pt;}
._e{width:11.487467pt;}
._15{width:12.417067pt;}
._1b{width:14.261333pt;}
._1f{width:15.811200pt;}
._1c{width:16.709333pt;}
._1d{width:17.861333pt;}
._1e{width:19.616000pt;}
._14{width:20.992000pt;}
._1a{width:23.309867pt;}
._19{width:24.241067pt;}
._7{width:25.344000pt;}
._12{width:27.829333pt;}
._2{width:45.256533pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:34.202667pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:49.738400pt;}
.y1{bottom:50.368267pt;}
.y43{bottom:79.885067pt;}
.y4c{bottom:80.425733pt;}
.yd9{bottom:91.696267pt;}
.y28{bottom:92.794533pt;}
.y42{bottom:95.885067pt;}
.y4b{bottom:96.425733pt;}
.y86{bottom:102.276000pt;}
.yb8{bottom:103.070800pt;}
.y73{bottom:106.114800pt;}
.y41{bottom:109.218400pt;}
.yd8{bottom:109.296267pt;}
.y27{bottom:109.327867pt;}
.y4a{bottom:109.759067pt;}
.yb7{bottom:115.870800pt;}
.y85{bottom:118.809333pt;}
.y26{bottom:125.861200pt;}
.y72{bottom:126.427600pt;}
.yb6{bottom:128.670800pt;}
.y84{bottom:135.342667pt;}
.yb5{bottom:141.470800pt;}
.y25{bottom:142.394533pt;}
.y71{bottom:142.960933pt;}
.y83{bottom:151.876000pt;}
.yb4{bottom:154.270800pt;}
.y70{bottom:159.494267pt;}
.y24{bottom:162.707333pt;}
.yb3{bottom:167.070800pt;}
.y82{bottom:168.409333pt;}
.y23{bottom:179.240667pt;}
.y6f{bottom:179.807200pt;}
.yb2{bottom:179.870800pt;}
.y81{bottom:184.942667pt;}
.yb1{bottom:192.670800pt;}
.y22{bottom:195.774000pt;}
.y6e{bottom:196.340533pt;}
.y80{bottom:201.476000pt;}
.yb0{bottom:205.470800pt;}
.y21{bottom:212.307467pt;}
.y6d{bottom:212.873867pt;}
.yaf{bottom:218.270800pt;}
.y20{bottom:228.840800pt;}
.y7f{bottom:229.347867pt;}
.yae{bottom:231.070800pt;}
.y6c{bottom:233.186667pt;}
.yad{bottom:243.870800pt;}
.y1f{bottom:245.374000pt;}
.yac{bottom:256.670800pt;}
.y7e{bottom:257.219867pt;}
.y6b{bottom:261.058667pt;}
.y1e{bottom:261.907333pt;}
.yab{bottom:269.470800pt;}
.y7d{bottom:273.753200pt;}
.y6a{bottom:277.592000pt;}
.y1d{bottom:278.440667pt;}
.yaa{bottom:282.270800pt;}
.y7c{bottom:290.286533pt;}
.y69{bottom:294.125333pt;}
.y1c{bottom:294.974133pt;}
.ya9{bottom:295.070800pt;}
.y7b{bottom:306.819867pt;}
.ya8{bottom:307.870800pt;}
.y68{bottom:310.658667pt;}
.y1b{bottom:311.507467pt;}
.ya7{bottom:320.670800pt;}
.y7a{bottom:327.132667pt;}
.y67{bottom:327.192000pt;}
.y1a{bottom:328.040667pt;}
.ya6{bottom:333.470800pt;}
.y79{bottom:343.666000pt;}
.y66{bottom:343.725333pt;}
.y19{bottom:344.574000pt;}
.ya5{bottom:346.270800pt;}
.ya4{bottom:359.070800pt;}
.y78{bottom:360.199333pt;}
.y65{bottom:360.258667pt;}
.y18{bottom:361.107333pt;}
.ya3{bottom:371.870800pt;}
.y77{bottom:376.732800pt;}
.y64{bottom:376.792000pt;}
.y49{bottom:377.216133pt;}
.y17{bottom:377.640800pt;}
.ya2{bottom:384.670800pt;}
.y48{bottom:393.749467pt;}
.y16{bottom:394.174133pt;}
.y76{bottom:397.045600pt;}
.y63{bottom:397.104800pt;}
.ya1{bottom:397.470800pt;}
.ya0{bottom:410.270800pt;}
.y47{bottom:410.282800pt;}
.y75{bottom:413.578933pt;}
.y62{bottom:413.638133pt;}
.yd7{bottom:419.302400pt;}
.y15{bottom:422.046000pt;}
.y9f{bottom:423.070800pt;}
.y74{bottom:430.112267pt;}
.y61{bottom:430.171467pt;}
.yd6{bottom:432.102400pt;}
.y46{bottom:435.816800pt;}
.y9e{bottom:435.870800pt;}
.yd5{bottom:444.902400pt;}
.y40{bottom:445.755733pt;}
.y60{bottom:446.704800pt;}
.y9d{bottom:448.670800pt;}
.y45{bottom:451.816800pt;}
.y14{bottom:453.697467pt;}
.yd4{bottom:457.702400pt;}
.y9c{bottom:461.470800pt;}
.y3f{bottom:462.289067pt;}
.y5f{bottom:463.238133pt;}
.y88{bottom:466.997867pt;}
.yd3{bottom:470.502400pt;}
.y9b{bottom:474.270800pt;}
.y3e{bottom:478.822400pt;}
.y5e{bottom:479.771467pt;}
.y87{bottom:482.997867pt;}
.yd2{bottom:483.302400pt;}
.y9a{bottom:487.070800pt;}
.y13{bottom:487.389867pt;}
.yd1{bottom:496.102400pt;}
.y5d{bottom:496.304800pt;}
.y3d{bottom:499.135200pt;}
.y99{bottom:499.870800pt;}
.y12{bottom:500.189867pt;}
.yd0{bottom:508.902400pt;}
.y98{bottom:512.670800pt;}
.y5c{bottom:512.838133pt;}
.y11{bottom:512.989867pt;}
.y3c{bottom:519.448133pt;}
.ycf{bottom:521.702400pt;}
.y97{bottom:525.470800pt;}
.y10{bottom:525.789733pt;}
.y5b{bottom:533.151067pt;}
.yce{bottom:534.502400pt;}
.y3b{bottom:535.981467pt;}
.y96{bottom:538.270800pt;}
.yf{bottom:538.589867pt;}
.ycd{bottom:547.302400pt;}
.y5a{bottom:549.684267pt;}
.ye{bottom:551.389867pt;}
.ycc{bottom:560.102400pt;}
.y95{bottom:562.409333pt;}
.y3a{bottom:563.853333pt;}
.y59{bottom:566.217733pt;}
.ycb{bottom:572.902400pt;}
.yd{bottom:579.308000pt;}
.y58{bottom:582.750933pt;}
.yca{bottom:585.702400pt;}
.y94{bottom:589.348000pt;}
.yc{bottom:591.308000pt;}
.y39{bottom:591.725200pt;}
.yc9{bottom:598.502400pt;}
.y57{bottom:599.284400pt;}
.yb{bottom:603.308000pt;}
.y93{bottom:605.881200pt;}
.y38{bottom:608.258667pt;}
.yc8{bottom:611.302400pt;}
.y56{bottom:615.817733pt;}
.ya{bottom:618.860000pt;}
.y92{bottom:622.414667pt;}
.yc7{bottom:624.102400pt;}
.y37{bottom:624.792000pt;}
.y9{bottom:631.087467pt;}
.y55{bottom:632.350933pt;}
.yc6{bottom:636.902400pt;}
.y36{bottom:641.325333pt;}
.y91{bottom:642.727467pt;}
.y8{bottom:643.087467pt;}
.y54{bottom:648.884400pt;}
.yc5{bottom:649.702400pt;}
.y35{bottom:657.858667pt;}
.y7{bottom:658.639467pt;}
.y90{bottom:659.260800pt;}
.yc4{bottom:662.502400pt;}
.y53{bottom:665.417733pt;}
.y34{bottom:674.391867pt;}
.yc3{bottom:675.302400pt;}
.y6{bottom:679.979867pt;}
.y52{bottom:681.951067pt;}
.y8f{bottom:687.132667pt;}
.yc2{bottom:688.102400pt;}
.y33{bottom:690.925333pt;}
.y5{bottom:695.979867pt;}
.y51{bottom:698.484400pt;}
.yc1{bottom:700.902400pt;}
.y32{bottom:707.458667pt;}
.yc0{bottom:713.702400pt;}
.y8e{bottom:715.004667pt;}
.y50{bottom:718.797200pt;}
.y31{bottom:723.992000pt;}
.ybf{bottom:726.502400pt;}
.y4{bottom:727.098000pt;}
.y8d{bottom:731.538000pt;}
.y4f{bottom:735.330533pt;}
.ybe{bottom:739.302400pt;}
.y30{bottom:740.525333pt;}
.y3{bottom:742.877467pt;}
.y8c{bottom:748.071333pt;}
.y4e{bottom:751.863867pt;}
.ybd{bottom:752.102400pt;}
.y2f{bottom:757.058533pt;}
.y2{bottom:762.077467pt;}
.ybc{bottom:764.902400pt;}
.y8b{bottom:768.384133pt;}
.y4d{bottom:768.397200pt;}
.y2e{bottom:773.592000pt;}
.ybb{bottom:777.702400pt;}
.y8a{bottom:784.917467pt;}
.y44{bottom:784.930533pt;}
.yba{bottom:790.502400pt;}
.y89{bottom:801.450800pt;}
.y2d{bottom:801.463867pt;}
.yb9{bottom:803.302400pt;}
.y2a{bottom:824.735733pt;}
.y29{bottom:843.402400pt;}
.y2b{bottom:846.087333pt;}
.h7{height:23.229500pt;}
.h9{height:28.916667pt;}
.h5{height:29.625000pt;}
.hd{height:31.476562pt;}
.hc{height:32.333333pt;}
.h8{height:37.437500pt;}
.h2{height:40.416667pt;}
.hb{height:43.083333pt;}
.h3{height:43.375000pt;}
.h4{height:43.812500pt;}
.ha{height:46.796875pt;}
.h6{height:51.476563pt;}
.h1{height:899.333333pt;}
.h0{height:899.528000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x12{left:68.031467pt;}
.xe{left:83.149600pt;}
.x19{left:86.929200pt;}
.xa{left:90.133733pt;}
.xb{left:95.610000pt;}
.xf{left:98.267733pt;}
.x1a{left:102.047200pt;}
.x5{left:105.706000pt;}
.x2{left:108.375467pt;}
.x15{left:113.385867pt;}
.x7{left:116.328000pt;}
.xc{left:118.884400pt;}
.x3{left:131.874400pt;}
.x8{left:147.498000pt;}
.x11{left:170.774667pt;}
.x6{left:178.481733pt;}
.xd{left:190.188533pt;}
.x4{left:229.136533pt;}
.x13{left:231.678667pt;}
.x17{left:244.370667pt;}
.x18{left:246.219600pt;}
.x9{left:247.410000pt;}
.x16{left:260.826667pt;}
.x14{left:276.014533pt;}
.x10{left:294.938000pt;}
.x1{left:544.936000pt;}
}




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