
    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_706dc04d724f60222e697380.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3a0de8ffd20287095a2a01fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f807689d18d8587efd99c53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_7be8aec6b2d3243cd6f7df06.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.819824;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_c29896261a146c6a75d58bf2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985000;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_4069b062f027f331c568de69.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b991672c20509715b3242b40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_e23dd0d8eb0bda85de44756d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107000;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_58e172c4a181eac790a6ffe8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.802000;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_4a6cef73bcba831f1e1a94da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_e03d260309beb3ab98fdf775.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_2aff767b59eb6cc5d2b817b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683105;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_1217bdd2986df512924a96b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5dbea6a9a085826df7d82b7d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.985000;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls4{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.003000px;}
.lsc{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.540000px;}
.ls12{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.104000px;}
.ls1{letter-spacing:1.200000px;}
.lsb{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.744400px;}
.lse{letter-spacing:3.984000px;}
.ls7{letter-spacing:11.313000px;}
.ls0{letter-spacing:43.200300px;}
.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:-54.000000px;}
.ws19{word-spacing:-14.112000px;}
.ws18{word-spacing:-13.104000px;}
.ws1c{word-spacing:-13.056000px;}
.ws1{word-spacing:-12.960000px;}
.ws16{word-spacing:-12.000000px;}
.ws1b{word-spacing:-11.856000px;}
.ws17{word-spacing:-11.712000px;}
.ws1a{word-spacing:-11.664000px;}
.ws1f{word-spacing:-3.984000px;}
.ws12{word-spacing:-2.280000px;}
.ws9{word-spacing:-1.200000px;}
.ws7{word-spacing:-0.540000px;}
.ws1d{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.378000px;}
.ws0{word-spacing:-0.042000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.120000px;}
.ws21{word-spacing:0.144000px;}
.wsc{word-spacing:0.240000px;}
.ws1e{word-spacing:0.288000px;}
.ws20{word-spacing:0.336000px;}
.ws3{word-spacing:0.486000px;}
.ws6{word-spacing:0.540000px;}
.wsa{word-spacing:0.680400px;}
.ws4{word-spacing:1.026000px;}
.ws10{word-spacing:2.220000px;}
.wsf{word-spacing:3.000000px;}
.wsd{word-spacing:4.260000px;}
.ws13{word-spacing:5.340000px;}
.wse{word-spacing:9.540000px;}
.ws14{word-spacing:14.100000px;}
.ws15{word-spacing:23.760000px;}
.ws11{word-spacing:24.480000px;}
._1e{margin-left:-2824.153200px;}
._1f{margin-left:-8.875800px;}
._7{margin-left:-7.584000px;}
._0{margin-left:-6.385200px;}
._3{margin-left:-4.396200px;}
._1{margin-left:-2.468400px;}
._4{margin-left:-1.132200px;}
._2{width:1.142400px;}
._5{width:2.264400px;}
._14{width:3.546000px;}
._17{width:4.566000px;}
._8{width:5.748000px;}
._13{width:6.834000px;}
._12{width:8.706000px;}
._11{width:10.230000px;}
._19{width:11.988000px;}
._1a{width:13.266000px;}
._26{width:14.376000px;}
._d{width:16.062000px;}
._20{width:17.592000px;}
._1b{width:18.768000px;}
._9{width:19.992000px;}
._c{width:21.339600px;}
._a{width:22.430400px;}
._b{width:24.171600px;}
._1d{width:25.401600px;}
._22{width:26.835600px;}
._18{width:28.264200px;}
._6{width:29.760000px;}
._e{width:30.870000px;}
._23{width:31.878000px;}
._10{width:32.952000px;}
._21{width:35.038200px;}
._f{width:36.192000px;}
._24{width:39.534000px;}
._29{width:44.620200px;}
._15{width:46.496400px;}
._16{width:48.129600px;}
._1c{width:60.630000px;}
._27{width:69.478200px;}
._25{width:95.142600px;}
._28{width:100.078800px;}
.fc1{color:rgb(39,113,125);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:52.031700px;}
.y31{bottom:64.631700px;}
.y33{bottom:76.648200px;}
.y30{bottom:77.231700px;}
.y27{bottom:131.811000px;}
.y26{bottom:149.811000px;}
.y25{bottom:167.811000px;}
.y2d{bottom:185.811000px;}
.y24{bottom:203.811000px;}
.y2c{bottom:221.811000px;}
.y2b{bottom:239.811000px;}
.y2a{bottom:257.811000px;}
.y23{bottom:275.811000px;}
.y22{bottom:293.811000px;}
.y21{bottom:311.811000px;}
.y20{bottom:329.811000px;}
.y1f{bottom:347.811000px;}
.y1e{bottom:365.811000px;}
.y1d{bottom:383.811000px;}
.y1c{bottom:401.811000px;}
.y56{bottom:401.811150px;}
.y1b{bottom:419.811000px;}
.y55{bottom:419.811150px;}
.y1a{bottom:437.811000px;}
.y54{bottom:437.811150px;}
.y19{bottom:455.811000px;}
.y53{bottom:455.811150px;}
.y18{bottom:473.811000px;}
.y52{bottom:473.811150px;}
.y17{bottom:491.811000px;}
.y5c{bottom:491.811150px;}
.y16{bottom:509.811000px;}
.y51{bottom:509.811150px;}
.y15{bottom:527.811000px;}
.y5b{bottom:527.811150px;}
.y14{bottom:545.811000px;}
.y5a{bottom:545.811150px;}
.y13{bottom:563.811000px;}
.y50{bottom:563.811150px;}
.y12{bottom:581.811000px;}
.y4f{bottom:581.811150px;}
.y11{bottom:599.811000px;}
.y4e{bottom:599.811150px;}
.y10{bottom:617.811000px;}
.y4d{bottom:617.811150px;}
.yf{bottom:635.811000px;}
.y4c{bottom:635.811150px;}
.ye{bottom:653.811000px;}
.y4b{bottom:653.811150px;}
.yd{bottom:671.811000px;}
.y4a{bottom:671.811150px;}
.yc{bottom:689.811000px;}
.y49{bottom:689.811150px;}
.yb{bottom:707.811000px;}
.y48{bottom:707.811150px;}
.ya{bottom:725.811000px;}
.y47{bottom:725.811150px;}
.y9{bottom:743.811000px;}
.y46{bottom:743.811150px;}
.y8{bottom:761.811000px;}
.y45{bottom:761.811150px;}
.y29{bottom:779.811000px;}
.y7{bottom:797.811000px;}
.y28{bottom:815.811000px;}
.y44{bottom:833.811000px;}
.y43{bottom:851.811000px;}
.y42{bottom:869.811000px;}
.y41{bottom:887.811000px;}
.y6{bottom:902.051250px;}
.y40{bottom:905.811000px;}
.y3f{bottom:923.811000px;}
.y3e{bottom:941.811000px;}
.y5{bottom:949.815000px;}
.y59{bottom:959.811000px;}
.y4{bottom:972.067050px;}
.y3d{bottom:977.811000px;}
.y58{bottom:995.811000px;}
.y3{bottom:1008.065550px;}
.y57{bottom:1013.811000px;}
.y3c{bottom:1031.811000px;}
.y2{bottom:1047.664050px;}
.y3b{bottom:1049.811000px;}
.y3a{bottom:1067.811000px;}
.y1{bottom:1078.264200px;}
.y39{bottom:1085.811000px;}
.y38{bottom:1103.811000px;}
.y37{bottom:1121.811000px;}
.y36{bottom:1139.811000px;}
.y35{bottom:1157.811000px;}
.y2f{bottom:1190.373450px;}
.y34{bottom:1193.653500px;}
.y2e{bottom:1208.373450px;}
.hd{height:30.013200px;}
.h5{height:33.328125px;}
.h11{height:33.351562px;}
.hc{height:35.550000px;}
.h6{height:35.730000px;}
.h7{height:37.520508px;}
.h8{height:39.258000px;}
.h10{height:41.660156px;}
.ha{height:41.689453px;}
.hb{height:44.267271px;}
.hf{height:44.267871px;}
.h4{height:50.027344px;}
.he{height:64.080000px;}
.h2{height:70.822266px;}
.h3{height:70.872070px;}
.h9{height:74.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x8{left:93.543300px;}
.xb{left:110.551200px;}
.xd{left:127.558950px;}
.x2{left:263.186700px;}
.x3{left:313.894200px;}
.xc{left:317.276700px;}
.x4{left:440.677200px;}
.x9{left:457.086600px;}
.xe{left:474.094350px;}
.xf{left:491.102250px;}
.x5{left:494.799150px;}
.xa{left:613.693650px;}
.x6{left:621.582150px;}
.x10{left:671.393100px;}
.x7{left:677.173350px;}
.x11{left:775.882350px;}
@media print{
.v2{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.002667pt;}
.lsc{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.981333pt;}
.ls1{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.877333pt;}
.ls8{letter-spacing:2.439467pt;}
.lse{letter-spacing:3.541333pt;}
.ls7{letter-spacing:10.056000pt;}
.ls0{letter-spacing:38.400267pt;}
.ws2{word-spacing:-48.000000pt;}
.ws19{word-spacing:-12.544000pt;}
.ws18{word-spacing:-11.648000pt;}
.ws1c{word-spacing:-11.605333pt;}
.ws1{word-spacing:-11.520000pt;}
.ws16{word-spacing:-10.666667pt;}
.ws1b{word-spacing:-10.538667pt;}
.ws17{word-spacing:-10.410667pt;}
.ws1a{word-spacing:-10.368000pt;}
.ws1f{word-spacing:-3.541333pt;}
.ws12{word-spacing:-2.026667pt;}
.ws9{word-spacing:-1.066667pt;}
.ws7{word-spacing:-0.480000pt;}
.ws1d{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.336000pt;}
.ws0{word-spacing:-0.037333pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.106667pt;}
.ws21{word-spacing:0.128000pt;}
.wsc{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.256000pt;}
.ws20{word-spacing:0.298667pt;}
.ws3{word-spacing:0.432000pt;}
.ws6{word-spacing:0.480000pt;}
.wsa{word-spacing:0.604800pt;}
.ws4{word-spacing:0.912000pt;}
.ws10{word-spacing:1.973333pt;}
.wsf{word-spacing:2.666667pt;}
.wsd{word-spacing:3.786667pt;}
.ws13{word-spacing:4.746667pt;}
.wse{word-spacing:8.480000pt;}
.ws14{word-spacing:12.533333pt;}
.ws15{word-spacing:21.120000pt;}
.ws11{word-spacing:21.760000pt;}
._1e{margin-left:-2510.358400pt;}
._1f{margin-left:-7.889600pt;}
._7{margin-left:-6.741333pt;}
._0{margin-left:-5.675733pt;}
._3{margin-left:-3.907733pt;}
._1{margin-left:-2.194133pt;}
._4{margin-left:-1.006400pt;}
._2{width:1.015467pt;}
._5{width:2.012800pt;}
._14{width:3.152000pt;}
._17{width:4.058667pt;}
._8{width:5.109333pt;}
._13{width:6.074667pt;}
._12{width:7.738667pt;}
._11{width:9.093333pt;}
._19{width:10.656000pt;}
._1a{width:11.792000pt;}
._26{width:12.778667pt;}
._d{width:14.277333pt;}
._20{width:15.637333pt;}
._1b{width:16.682667pt;}
._9{width:17.770667pt;}
._c{width:18.968533pt;}
._a{width:19.938133pt;}
._b{width:21.485867pt;}
._1d{width:22.579200pt;}
._22{width:23.853867pt;}
._18{width:25.123733pt;}
._6{width:26.453333pt;}
._e{width:27.440000pt;}
._23{width:28.336000pt;}
._10{width:29.290667pt;}
._21{width:31.145067pt;}
._f{width:32.170667pt;}
._24{width:35.141333pt;}
._29{width:39.662400pt;}
._15{width:41.330133pt;}
._16{width:42.781867pt;}
._1c{width:53.893333pt;}
._27{width:61.758400pt;}
._25{width:84.571200pt;}
._28{width:88.958933pt;}
.fs2{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:46.250400pt;}
.y31{bottom:57.450400pt;}
.y33{bottom:68.131733pt;}
.y30{bottom:68.650400pt;}
.y27{bottom:117.165333pt;}
.y26{bottom:133.165333pt;}
.y25{bottom:149.165333pt;}
.y2d{bottom:165.165333pt;}
.y24{bottom:181.165333pt;}
.y2c{bottom:197.165333pt;}
.y2b{bottom:213.165333pt;}
.y2a{bottom:229.165333pt;}
.y23{bottom:245.165333pt;}
.y22{bottom:261.165333pt;}
.y21{bottom:277.165333pt;}
.y20{bottom:293.165333pt;}
.y1f{bottom:309.165333pt;}
.y1e{bottom:325.165333pt;}
.y1d{bottom:341.165333pt;}
.y1c{bottom:357.165333pt;}
.y56{bottom:357.165467pt;}
.y1b{bottom:373.165333pt;}
.y55{bottom:373.165467pt;}
.y1a{bottom:389.165333pt;}
.y54{bottom:389.165467pt;}
.y19{bottom:405.165333pt;}
.y53{bottom:405.165467pt;}
.y18{bottom:421.165333pt;}
.y52{bottom:421.165467pt;}
.y17{bottom:437.165333pt;}
.y5c{bottom:437.165467pt;}
.y16{bottom:453.165333pt;}
.y51{bottom:453.165467pt;}
.y15{bottom:469.165333pt;}
.y5b{bottom:469.165467pt;}
.y14{bottom:485.165333pt;}
.y5a{bottom:485.165467pt;}
.y13{bottom:501.165333pt;}
.y50{bottom:501.165467pt;}
.y12{bottom:517.165333pt;}
.y4f{bottom:517.165467pt;}
.y11{bottom:533.165333pt;}
.y4e{bottom:533.165467pt;}
.y10{bottom:549.165333pt;}
.y4d{bottom:549.165467pt;}
.yf{bottom:565.165333pt;}
.y4c{bottom:565.165467pt;}
.ye{bottom:581.165333pt;}
.y4b{bottom:581.165467pt;}
.yd{bottom:597.165333pt;}
.y4a{bottom:597.165467pt;}
.yc{bottom:613.165333pt;}
.y49{bottom:613.165467pt;}
.yb{bottom:629.165333pt;}
.y48{bottom:629.165467pt;}
.ya{bottom:645.165333pt;}
.y47{bottom:645.165467pt;}
.y9{bottom:661.165333pt;}
.y46{bottom:661.165467pt;}
.y8{bottom:677.165333pt;}
.y45{bottom:677.165467pt;}
.y29{bottom:693.165333pt;}
.y7{bottom:709.165333pt;}
.y28{bottom:725.165333pt;}
.y44{bottom:741.165333pt;}
.y43{bottom:757.165333pt;}
.y42{bottom:773.165333pt;}
.y41{bottom:789.165333pt;}
.y6{bottom:801.823333pt;}
.y40{bottom:805.165333pt;}
.y3f{bottom:821.165333pt;}
.y3e{bottom:837.165333pt;}
.y5{bottom:844.280000pt;}
.y59{bottom:853.165333pt;}
.y4{bottom:864.059600pt;}
.y3d{bottom:869.165333pt;}
.y58{bottom:885.165333pt;}
.y3{bottom:896.058267pt;}
.y57{bottom:901.165333pt;}
.y3c{bottom:917.165333pt;}
.y2{bottom:931.256933pt;}
.y3b{bottom:933.165333pt;}
.y3a{bottom:949.165333pt;}
.y1{bottom:958.457067pt;}
.y39{bottom:965.165333pt;}
.y38{bottom:981.165333pt;}
.y37{bottom:997.165333pt;}
.y36{bottom:1013.165333pt;}
.y35{bottom:1029.165333pt;}
.y2f{bottom:1058.109733pt;}
.y34{bottom:1061.025333pt;}
.y2e{bottom:1074.109733pt;}
.hd{height:26.678400pt;}
.h5{height:29.625000pt;}
.h11{height:29.645833pt;}
.hc{height:31.600000pt;}
.h6{height:31.760000pt;}
.h7{height:33.351562pt;}
.h8{height:34.896000pt;}
.h10{height:37.031250pt;}
.ha{height:37.057292pt;}
.hb{height:39.348685pt;}
.hf{height:39.349219pt;}
.h4{height:44.468750pt;}
.he{height:56.960000pt;}
.h2{height:62.953125pt;}
.h3{height:62.997396pt;}
.h9{height:66.453333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x8{left:83.149600pt;}
.xb{left:98.267733pt;}
.xd{left:113.385733pt;}
.x2{left:233.943733pt;}
.x3{left:279.017067pt;}
.xc{left:282.023733pt;}
.x4{left:391.713067pt;}
.x9{left:406.299200pt;}
.xe{left:421.417200pt;}
.xf{left:436.535333pt;}
.x5{left:439.821467pt;}
.xa{left:545.505467pt;}
.x6{left:552.517467pt;}
.x10{left:596.793867pt;}
.x7{left:601.931867pt;}
.x11{left:689.673200pt;}
}




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