
    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_f6336efbd3d630cc1d4a8000.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.837000;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_d958895fce9ad848515020b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_8c778f6a16edb8f64a89c8b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.127000;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_8c027fbb6c4cb1e145a06e3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_74c0fac24643d2f78a13a25e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_4c6b0ff6e02b50cca7c1f528.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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:-23.975400px;}
.v2{vertical-align:-19.782000px;}
.v4{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v1{vertical-align:23.739000px;}
.ls25{letter-spacing:-4.320000px;}
.ls1f{letter-spacing:-2.160000px;}
.ls24{letter-spacing:-2.014848px;}
.ls21{letter-spacing:-1.259280px;}
.ls11{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.900000px;}
.ls23{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.755568px;}
.ls22{letter-spacing:-0.629640px;}
.lsb{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.419760px;}
.ls20{letter-spacing:-0.314820px;}
.ls14{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.209880px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.209880px;}
.ls17{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.415004px;}
.ls9{letter-spacing:0.415409px;}
.ls1c{letter-spacing:0.419760px;}
.ls0{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.486000px;}
.ls1b{letter-spacing:0.503712px;}
.ls1a{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.594060px;}
.ls6{letter-spacing:0.623089px;}
.ls19{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.891090px;}
.ls4{letter-spacing:1.425744px;}
.lsd{letter-spacing:1.440000px;}
.ls1{letter-spacing:3.840000px;}
.ls7{letter-spacing:53.418600px;}
.ls3{letter-spacing:53.952600px;}
.lse{letter-spacing:53.953200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-14.554470px;}
.wsc{word-spacing:-13.800000px;}
.ws3{word-spacing:-13.663380px;}
.ws22{word-spacing:-13.068000px;}
.ws1e{word-spacing:-13.014000px;}
.ws23{word-spacing:-12.960000px;}
.ws19{word-spacing:-12.906000px;}
.ws11{word-spacing:-12.900000px;}
.ws1f{word-spacing:-12.690000px;}
.ws1d{word-spacing:-12.528000px;}
.ws18{word-spacing:-12.420000px;}
.ws2c{word-spacing:-11.880000px;}
.ws31{word-spacing:-11.448000px;}
.ws2b{word-spacing:-10.260000px;}
.wsb{word-spacing:-9.654480px;}
.ws4{word-spacing:-9.558846px;}
.ws5{word-spacing:-7.965774px;}
.ws1a{word-spacing:-7.240860px;}
.ws2d{word-spacing:-6.926040px;}
.wsf{word-spacing:-3.240000px;}
.ws6{word-spacing:-2.138616px;}
.ws1{word-spacing:-1.440000px;}
.ws7{word-spacing:-1.425744px;}
.ws13{word-spacing:-1.134000px;}
.wsd{word-spacing:-0.960000px;}
.ws8{word-spacing:-0.891090px;}
.ws10{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.648000px;}
.ws9{word-spacing:-0.594060px;}
.ws28{word-spacing:-0.540000px;}
.ws25{word-spacing:-0.503712px;}
.ws27{word-spacing:-0.419760px;}
.ws21{word-spacing:-0.270000px;}
.ws20{word-spacing:-0.209880px;}
.ws24{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.209880px;}
.ws1c{word-spacing:0.270000px;}
.ws29{word-spacing:0.419760px;}
.ws2a{word-spacing:0.540000px;}
.wse{word-spacing:0.600000px;}
.ws2f{word-spacing:0.629640px;}
.ws15{word-spacing:0.755568px;}
.ws30{word-spacing:0.810000px;}
.ws12{word-spacing:0.900000px;}
.ws16{word-spacing:0.972000px;}
.ws2e{word-spacing:1.259280px;}
.ws32{word-spacing:2.014848px;}
.ws33{word-spacing:4.320000px;}
.wsa{word-spacing:6.891096px;}
.ws14{word-spacing:8.208000px;}
.ws17{word-spacing:8.370000px;}
._a{margin-left:-73.800000px;}
._16{margin-left:-11.622600px;}
._18{margin-left:-10.093800px;}
._10{margin-left:-8.976000px;}
._12{margin-left:-7.915800px;}
._e{margin-left:-6.264000px;}
._d{margin-left:-4.764000px;}
._2{margin-left:-3.612000px;}
._0{margin-left:-2.412000px;}
._3{margin-left:-1.200000px;}
._9{width:1.278000px;}
._1{width:2.412000px;}
._6{width:3.810000px;}
._5{width:4.926000px;}
._4{width:6.708000px;}
._8{width:8.046000px;}
._7{width:9.756000px;}
._c{width:10.859343px;}
._b{width:12.510904px;}
._17{width:13.759200px;}
._19{width:14.809200px;}
._1e{width:16.133400px;}
._1d{width:17.616000px;}
._1b{width:24.622200px;}
._1a{width:27.287400px;}
._13{width:34.114992px;}
._11{width:35.122416px;}
._1c{width:38.438520px;}
._14{width:39.816600px;}
._15{width:40.996800px;}
._f{width:43.517616px;}
.fc1{color:rgb(78,131,187);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.633800px;}
.fs6{font-size:41.560200px;}
.fs9{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.406000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:71.287200px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:106.930800px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.779550px;}
.y60{bottom:86.834550px;}
.y36{bottom:86.834700px;}
.y5f{bottom:107.834550px;}
.y35{bottom:107.834700px;}
.y77{bottom:113.828700px;}
.y5e{bottom:128.834550px;}
.y21{bottom:128.834700px;}
.y7d{bottom:134.828700px;}
.y5d{bottom:149.834550px;}
.y20{bottom:149.834700px;}
.y5c{bottom:170.834550px;}
.y1f{bottom:170.834700px;}
.y6a{bottom:176.828700px;}
.y5b{bottom:191.834550px;}
.y1e{bottom:191.834700px;}
.y66{bottom:197.828700px;}
.y5a{bottom:212.834550px;}
.y1d{bottom:212.834700px;}
.y6f{bottom:218.828700px;}
.y59{bottom:233.834550px;}
.y1c{bottom:233.834700px;}
.y76{bottom:239.828700px;}
.y58{bottom:254.834550px;}
.y2f{bottom:254.834700px;}
.y7c{bottom:260.828700px;}
.y57{bottom:275.834550px;}
.y1b{bottom:275.834700px;}
.y87{bottom:281.828700px;}
.y56{bottom:296.834550px;}
.y1a{bottom:296.834700px;}
.y19{bottom:317.834700px;}
.y55{bottom:323.828550px;}
.y75{bottom:323.828700px;}
.y18{bottom:338.834700px;}
.y65{bottom:344.828700px;}
.y54{bottom:359.834550px;}
.y2e{bottom:359.834700px;}
.y83{bottom:365.828700px;}
.y53{bottom:380.834550px;}
.y17{bottom:380.834700px;}
.y6e{bottom:386.828700px;}
.y52{bottom:401.834550px;}
.y16{bottom:401.834700px;}
.y7b{bottom:407.828700px;}
.y51{bottom:422.834550px;}
.y15{bottom:422.834700px;}
.y64{bottom:428.828700px;}
.y50{bottom:443.834550px;}
.y33{bottom:443.834700px;}
.y4f{bottom:464.834550px;}
.y14{bottom:464.834700px;}
.y74{bottom:470.828700px;}
.y4e{bottom:485.834550px;}
.y13{bottom:485.834700px;}
.y6d{bottom:491.828700px;}
.y4d{bottom:506.834550px;}
.y12{bottom:506.834700px;}
.y69{bottom:512.828700px;}
.y4c{bottom:527.834550px;}
.y11{bottom:527.834700px;}
.y7a{bottom:533.828700px;}
.y4b{bottom:548.834550px;}
.y10{bottom:548.834700px;}
.y82{bottom:554.828700px;}
.y4a{bottom:569.834550px;}
.yf{bottom:569.834700px;}
.y49{bottom:590.834550px;}
.ye{bottom:590.834700px;}
.y73{bottom:596.828700px;}
.y48{bottom:611.834550px;}
.yd{bottom:611.834700px;}
.yc{bottom:632.834700px;}
.y47{bottom:638.828550px;}
.y6c{bottom:638.828700px;}
.yb{bottom:653.834700px;}
.y68{bottom:659.828700px;}
.y46{bottom:674.834550px;}
.y2d{bottom:674.834700px;}
.y63{bottom:680.828700px;}
.y45{bottom:695.834550px;}
.ya{bottom:695.834700px;}
.y81{bottom:701.828700px;}
.y44{bottom:716.834550px;}
.y9{bottom:716.834700px;}
.y43{bottom:737.834550px;}
.y8{bottom:737.834700px;}
.y79{bottom:743.828700px;}
.y7{bottom:758.834700px;}
.y42{bottom:764.828550px;}
.y86{bottom:764.828700px;}
.y6{bottom:779.834700px;}
.y62{bottom:785.828550px;}
.y41{bottom:800.834550px;}
.y2c{bottom:800.834700px;}
.y40{bottom:821.834550px;}
.y32{bottom:821.834700px;}
.y72{bottom:827.828550px;}
.y3f{bottom:842.834550px;}
.y2b{bottom:842.834700px;}
.y85{bottom:848.828550px;}
.y3e{bottom:863.834550px;}
.y31{bottom:863.834700px;}
.y78{bottom:869.828550px;}
.y3d{bottom:884.834550px;}
.y5{bottom:884.834700px;}
.y80{bottom:890.828550px;}
.y3c{bottom:905.834550px;}
.y2a{bottom:905.834700px;}
.y67{bottom:911.828550px;}
.y4{bottom:917.834700px;}
.y3b{bottom:926.834550px;}
.y29{bottom:926.834700px;}
.y6b{bottom:932.828550px;}
.y28{bottom:947.834700px;}
.y3a{bottom:953.828550px;}
.y3{bottom:953.834700px;}
.y27{bottom:968.834700px;}
.y71{bottom:974.828550px;}
.y39{bottom:989.834550px;}
.y2{bottom:989.834700px;}
.y7e{bottom:995.828550px;}
.y26{bottom:1010.834700px;}
.y25{bottom:1031.834700px;}
.y84{bottom:1037.828550px;}
.y38{bottom:1052.834550px;}
.y24{bottom:1052.834700px;}
.y7f{bottom:1058.828550px;}
.y34{bottom:1064.834700px;}
.y23{bottom:1073.834700px;}
.y70{bottom:1079.828550px;}
.y37{bottom:1094.834550px;}
.y30{bottom:1094.834700px;}
.y22{bottom:1115.834700px;}
.y61{bottom:1121.828550px;}
.hd{height:29.802960px;}
.h2{height:34.080000px;}
.h5{height:43.200000px;}
.he{height:48.870000px;}
.h8{height:51.326784px;}
.ha{height:51.840000px;}
.h9{height:53.762430px;}
.h4{height:54.300000px;}
.h7{height:64.514916px;}
.hc{height:65.160000px;}
.h6{height:76.990176px;}
.hb{height:77.760000px;}
.h3{height:86.400000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x8{left:102.047250px;}
.x5{left:112.039350px;}
.x4{left:125.551200px;}
.x7{left:686.143500px;}
.xa{left:687.511650px;}
.x9{left:689.911500px;}
.x3{left:691.519500px;}
.x6{left:692.827350px;}
.x1{left:694.279350px;}
@media print{
.v3{vertical-align:-21.311467pt;}
.v2{vertical-align:-17.584000pt;}
.v4{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v1{vertical-align:21.101333pt;}
.ls25{letter-spacing:-3.840000pt;}
.ls1f{letter-spacing:-1.920000pt;}
.ls24{letter-spacing:-1.790976pt;}
.ls21{letter-spacing:-1.119360pt;}
.ls11{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.671616pt;}
.ls22{letter-spacing:-0.559680pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.373120pt;}
.ls20{letter-spacing:-0.279840pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.186560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.186560pt;}
.ls17{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.368893pt;}
.ls9{letter-spacing:0.369253pt;}
.ls1c{letter-spacing:0.373120pt;}
.ls0{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.432000pt;}
.ls1b{letter-spacing:0.447744pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.528053pt;}
.ls6{letter-spacing:0.553857pt;}
.ls19{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.792080pt;}
.ls4{letter-spacing:1.267328pt;}
.lsd{letter-spacing:1.280000pt;}
.ls1{letter-spacing:3.413333pt;}
.ls7{letter-spacing:47.483200pt;}
.ls3{letter-spacing:47.957867pt;}
.lse{letter-spacing:47.958400pt;}
.ws2{word-spacing:-12.937307pt;}
.wsc{word-spacing:-12.266667pt;}
.ws3{word-spacing:-12.145227pt;}
.ws22{word-spacing:-11.616000pt;}
.ws1e{word-spacing:-11.568000pt;}
.ws23{word-spacing:-11.520000pt;}
.ws19{word-spacing:-11.472000pt;}
.ws11{word-spacing:-11.466667pt;}
.ws1f{word-spacing:-11.280000pt;}
.ws1d{word-spacing:-11.136000pt;}
.ws18{word-spacing:-11.040000pt;}
.ws2c{word-spacing:-10.560000pt;}
.ws31{word-spacing:-10.176000pt;}
.ws2b{word-spacing:-9.120000pt;}
.wsb{word-spacing:-8.581760pt;}
.ws4{word-spacing:-8.496752pt;}
.ws5{word-spacing:-7.080688pt;}
.ws1a{word-spacing:-6.436320pt;}
.ws2d{word-spacing:-6.156480pt;}
.wsf{word-spacing:-2.880000pt;}
.ws6{word-spacing:-1.900992pt;}
.ws1{word-spacing:-1.280000pt;}
.ws7{word-spacing:-1.267328pt;}
.ws13{word-spacing:-1.008000pt;}
.wsd{word-spacing:-0.853333pt;}
.ws8{word-spacing:-0.792080pt;}
.ws10{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.576000pt;}
.ws9{word-spacing:-0.528053pt;}
.ws28{word-spacing:-0.480000pt;}
.ws25{word-spacing:-0.447744pt;}
.ws27{word-spacing:-0.373120pt;}
.ws21{word-spacing:-0.240000pt;}
.ws20{word-spacing:-0.186560pt;}
.ws24{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.186560pt;}
.ws1c{word-spacing:0.240000pt;}
.ws29{word-spacing:0.373120pt;}
.ws2a{word-spacing:0.480000pt;}
.wse{word-spacing:0.533333pt;}
.ws2f{word-spacing:0.559680pt;}
.ws15{word-spacing:0.671616pt;}
.ws30{word-spacing:0.720000pt;}
.ws12{word-spacing:0.800000pt;}
.ws16{word-spacing:0.864000pt;}
.ws2e{word-spacing:1.119360pt;}
.ws32{word-spacing:1.790976pt;}
.ws33{word-spacing:3.840000pt;}
.wsa{word-spacing:6.125419pt;}
.ws14{word-spacing:7.296000pt;}
.ws17{word-spacing:7.440000pt;}
._a{margin-left:-65.600000pt;}
._16{margin-left:-10.331200pt;}
._18{margin-left:-8.972267pt;}
._10{margin-left:-7.978667pt;}
._12{margin-left:-7.036267pt;}
._e{margin-left:-5.568000pt;}
._d{margin-left:-4.234667pt;}
._2{margin-left:-3.210667pt;}
._0{margin-left:-2.144000pt;}
._3{margin-left:-1.066667pt;}
._9{width:1.136000pt;}
._1{width:2.144000pt;}
._6{width:3.386667pt;}
._5{width:4.378667pt;}
._4{width:5.962667pt;}
._8{width:7.152000pt;}
._7{width:8.672000pt;}
._c{width:9.652749pt;}
._b{width:11.120803pt;}
._17{width:12.230400pt;}
._19{width:13.163733pt;}
._1e{width:14.340800pt;}
._1d{width:15.658667pt;}
._1b{width:21.886400pt;}
._1a{width:24.255467pt;}
._13{width:30.324437pt;}
._11{width:31.219925pt;}
._1c{width:34.167573pt;}
._14{width:35.392533pt;}
._15{width:36.441600pt;}
._f{width:38.682325pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:30.785600pt;}
.fs6{font-size:36.942400pt;}
.fs9{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:52.805333pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:63.366400pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:95.049600pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.692933pt;}
.y60{bottom:77.186267pt;}
.y36{bottom:77.186400pt;}
.y5f{bottom:95.852933pt;}
.y35{bottom:95.853067pt;}
.y77{bottom:101.181067pt;}
.y5e{bottom:114.519600pt;}
.y21{bottom:114.519733pt;}
.y7d{bottom:119.847733pt;}
.y5d{bottom:133.186267pt;}
.y20{bottom:133.186400pt;}
.y5c{bottom:151.852933pt;}
.y1f{bottom:151.853067pt;}
.y6a{bottom:157.181067pt;}
.y5b{bottom:170.519600pt;}
.y1e{bottom:170.519733pt;}
.y66{bottom:175.847733pt;}
.y5a{bottom:189.186267pt;}
.y1d{bottom:189.186400pt;}
.y6f{bottom:194.514400pt;}
.y59{bottom:207.852933pt;}
.y1c{bottom:207.853067pt;}
.y76{bottom:213.181067pt;}
.y58{bottom:226.519600pt;}
.y2f{bottom:226.519733pt;}
.y7c{bottom:231.847733pt;}
.y57{bottom:245.186267pt;}
.y1b{bottom:245.186400pt;}
.y87{bottom:250.514400pt;}
.y56{bottom:263.852933pt;}
.y1a{bottom:263.853067pt;}
.y19{bottom:282.519733pt;}
.y55{bottom:287.847600pt;}
.y75{bottom:287.847733pt;}
.y18{bottom:301.186400pt;}
.y65{bottom:306.514400pt;}
.y54{bottom:319.852933pt;}
.y2e{bottom:319.853067pt;}
.y83{bottom:325.181067pt;}
.y53{bottom:338.519600pt;}
.y17{bottom:338.519733pt;}
.y6e{bottom:343.847733pt;}
.y52{bottom:357.186267pt;}
.y16{bottom:357.186400pt;}
.y7b{bottom:362.514400pt;}
.y51{bottom:375.852933pt;}
.y15{bottom:375.853067pt;}
.y64{bottom:381.181067pt;}
.y50{bottom:394.519600pt;}
.y33{bottom:394.519733pt;}
.y4f{bottom:413.186267pt;}
.y14{bottom:413.186400pt;}
.y74{bottom:418.514400pt;}
.y4e{bottom:431.852933pt;}
.y13{bottom:431.853067pt;}
.y6d{bottom:437.181067pt;}
.y4d{bottom:450.519600pt;}
.y12{bottom:450.519733pt;}
.y69{bottom:455.847733pt;}
.y4c{bottom:469.186267pt;}
.y11{bottom:469.186400pt;}
.y7a{bottom:474.514400pt;}
.y4b{bottom:487.852933pt;}
.y10{bottom:487.853067pt;}
.y82{bottom:493.181067pt;}
.y4a{bottom:506.519600pt;}
.yf{bottom:506.519733pt;}
.y49{bottom:525.186267pt;}
.ye{bottom:525.186400pt;}
.y73{bottom:530.514400pt;}
.y48{bottom:543.852933pt;}
.yd{bottom:543.853067pt;}
.yc{bottom:562.519733pt;}
.y47{bottom:567.847600pt;}
.y6c{bottom:567.847733pt;}
.yb{bottom:581.186400pt;}
.y68{bottom:586.514400pt;}
.y46{bottom:599.852933pt;}
.y2d{bottom:599.853067pt;}
.y63{bottom:605.181067pt;}
.y45{bottom:618.519600pt;}
.ya{bottom:618.519733pt;}
.y81{bottom:623.847733pt;}
.y44{bottom:637.186267pt;}
.y9{bottom:637.186400pt;}
.y43{bottom:655.852933pt;}
.y8{bottom:655.853067pt;}
.y79{bottom:661.181067pt;}
.y7{bottom:674.519733pt;}
.y42{bottom:679.847600pt;}
.y86{bottom:679.847733pt;}
.y6{bottom:693.186400pt;}
.y62{bottom:698.514267pt;}
.y41{bottom:711.852933pt;}
.y2c{bottom:711.853067pt;}
.y40{bottom:730.519600pt;}
.y32{bottom:730.519733pt;}
.y72{bottom:735.847600pt;}
.y3f{bottom:749.186267pt;}
.y2b{bottom:749.186400pt;}
.y85{bottom:754.514267pt;}
.y3e{bottom:767.852933pt;}
.y31{bottom:767.853067pt;}
.y78{bottom:773.180933pt;}
.y3d{bottom:786.519600pt;}
.y5{bottom:786.519733pt;}
.y80{bottom:791.847600pt;}
.y3c{bottom:805.186267pt;}
.y2a{bottom:805.186400pt;}
.y67{bottom:810.514267pt;}
.y4{bottom:815.853067pt;}
.y3b{bottom:823.852933pt;}
.y29{bottom:823.853067pt;}
.y6b{bottom:829.180933pt;}
.y28{bottom:842.519733pt;}
.y3a{bottom:847.847600pt;}
.y3{bottom:847.853067pt;}
.y27{bottom:861.186400pt;}
.y71{bottom:866.514267pt;}
.y39{bottom:879.852933pt;}
.y2{bottom:879.853067pt;}
.y7e{bottom:885.180933pt;}
.y26{bottom:898.519733pt;}
.y25{bottom:917.186400pt;}
.y84{bottom:922.514267pt;}
.y38{bottom:935.852933pt;}
.y24{bottom:935.853067pt;}
.y7f{bottom:941.180933pt;}
.y34{bottom:946.519733pt;}
.y23{bottom:954.519733pt;}
.y70{bottom:959.847600pt;}
.y37{bottom:973.186267pt;}
.y30{bottom:973.186400pt;}
.y22{bottom:991.853067pt;}
.y61{bottom:997.180933pt;}
.hd{height:26.491520pt;}
.h2{height:30.293333pt;}
.h5{height:38.400000pt;}
.he{height:43.440000pt;}
.h8{height:45.623808pt;}
.ha{height:46.080000pt;}
.h9{height:47.788827pt;}
.h4{height:48.266667pt;}
.h7{height:57.346592pt;}
.hc{height:57.920000pt;}
.h6{height:68.435712pt;}
.hb{height:69.120000pt;}
.h3{height:76.800000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x8{left:90.708667pt;}
.x5{left:99.590533pt;}
.x4{left:111.601067pt;}
.x7{left:609.905333pt;}
.xa{left:611.121467pt;}
.x9{left:613.254667pt;}
.x3{left:614.684000pt;}
.x6{left:615.846533pt;}
.x1{left:617.137200pt;}
}




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