
    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_6de12df4b64545ebaf6d0c13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_4955affc24f4b17d7dbfe819.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_757879a9516219791e3dae81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_bc3ab51891b0879241971438.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_ed541b15114f7e1e913967be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_ed541b15114f7e1e913967be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_333dca38a3b284892365a58e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_a7f1a1b78bd944087032431e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_ed541b15114f7e1e913967be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_ed541b15114f7e1e913967be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-26.250000px;}
.v2{vertical-align:-18.375000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.013800px;}
.v3{vertical-align:18.390000px;}
.lse{letter-spacing:-0.336000px;}
.lsc{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053400px;}
.ls6{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.109500px;}
.ls7{letter-spacing:0.109650px;}
.ls9{letter-spacing:0.109800px;}
.lsd{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.157200px;}
.ls3{letter-spacing:0.157500px;}
.ls4{letter-spacing:0.157800px;}
.ls14{letter-spacing:0.159960px;}
.ls12{letter-spacing:0.160560px;}
.ls13{letter-spacing:0.161160px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.225000px;}
.lsb{letter-spacing:0.238500px;}
.ls0{letter-spacing:0.342000px;}
.lsf{letter-spacing:0.360000px;}
.ls11{letter-spacing:944.571000px;}
.ls10{letter-spacing:1515.312000px;}
.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;}
}
.ws40{word-spacing:-11.236500px;}
.ws0{word-spacing:-9.534000px;}
.ws1{word-spacing:-9.198000px;}
.ws5b{word-spacing:-6.336000px;}
.ws4c{word-spacing:-4.950000px;}
.ws45{word-spacing:-4.686000px;}
.ws51{word-spacing:-4.554000px;}
.ws4b{word-spacing:-4.158000px;}
.ws14{word-spacing:-4.026000px;}
.ws4a{word-spacing:-3.828000px;}
.ws22{word-spacing:-3.696000px;}
.ws35{word-spacing:-3.306000px;}
.ws1e{word-spacing:-3.036000px;}
.ws6a{word-spacing:-2.772000px;}
.ws7{word-spacing:-2.706000px;}
.ws34{word-spacing:-2.677500px;}
.ws2f{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.574000px;}
.ws36{word-spacing:-2.508000px;}
.ws18{word-spacing:-2.442000px;}
.ws17{word-spacing:-2.376000px;}
.wsd{word-spacing:-2.310000px;}
.ws8{word-spacing:-2.178000px;}
.ws4e{word-spacing:-1.980000px;}
.wse{word-spacing:-1.650000px;}
.ws54{word-spacing:-1.539000px;}
.ws10{word-spacing:-1.386000px;}
.ws25{word-spacing:-1.320000px;}
.ws2b{word-spacing:-1.254000px;}
.wsc{word-spacing:-0.990000px;}
.ws4d{word-spacing:-0.924000px;}
.ws5a{word-spacing:-0.855000px;}
.ws53{word-spacing:-0.726000px;}
.ws2d{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.570000px;}
.wsa{word-spacing:-0.528000px;}
.ws1a{word-spacing:-0.396000px;}
.ws24{word-spacing:-0.264000px;}
.ws4{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.132000px;}
.ws3a{word-spacing:-0.114000px;}
.ws39{word-spacing:-0.105000px;}
.ws9{word-spacing:-0.066000px;}
.ws62{word-spacing:-0.049500px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.225000px;}
.ws1b{word-spacing:0.330000px;}
.ws68{word-spacing:0.445500px;}
.ws43{word-spacing:0.594000px;}
.ws26{word-spacing:0.726000px;}
.ws65{word-spacing:0.792000px;}
.ws38{word-spacing:1.026000px;}
.ws64{word-spacing:1.138500px;}
.ws30{word-spacing:1.320000px;}
.ws2a{word-spacing:1.368000px;}
.ws15{word-spacing:1.584000px;}
.ws50{word-spacing:1.716000px;}
.ws47{word-spacing:1.782000px;}
.ws5c{word-spacing:1.831500px;}
.ws57{word-spacing:1.881000px;}
.ws52{word-spacing:2.442000px;}
.ws61{word-spacing:2.524500px;}
.ws28{word-spacing:2.664000px;}
.ws3b{word-spacing:2.793000px;}
.ws16{word-spacing:2.838000px;}
.ws60{word-spacing:2.970000px;}
.ws5d{word-spacing:3.069000px;}
.ws1c{word-spacing:3.432000px;}
.ws5e{word-spacing:3.514500px;}
.ws42{word-spacing:3.696000px;}
.ws55{word-spacing:3.762000px;}
.ws41{word-spacing:3.828000px;}
.ws67{word-spacing:4.306500px;}
.ws27{word-spacing:4.356000px;}
.ws31{word-spacing:4.488000px;}
.ws2e{word-spacing:4.554000px;}
.ws44{word-spacing:4.620000px;}
.ws11{word-spacing:4.686000px;}
.ws58{word-spacing:4.902000px;}
.ws21{word-spacing:5.016000px;}
.ws49{word-spacing:5.214000px;}
.ws3e{word-spacing:5.586000px;}
.ws66{word-spacing:5.841000px;}
.ws13{word-spacing:6.072000px;}
.ws69{word-spacing:6.682500px;}
.ws63{word-spacing:6.732000px;}
.ws46{word-spacing:6.864000px;}
.wsf{word-spacing:6.930000px;}
.ws2c{word-spacing:7.458000px;}
.ws5{word-spacing:8.250000px;}
.ws12{word-spacing:8.382000px;}
.ws19{word-spacing:9.372000px;}
.ws4f{word-spacing:9.702000px;}
.ws1d{word-spacing:9.966000px;}
.ws33{word-spacing:10.296000px;}
.ws59{word-spacing:10.545000px;}
.ws56{word-spacing:11.115000px;}
.ws29{word-spacing:11.628000px;}
.ws6b{word-spacing:12.622500px;}
.ws20{word-spacing:13.134000px;}
.ws3d{word-spacing:14.022000px;}
.ws1f{word-spacing:14.454000px;}
.ws32{word-spacing:15.774000px;}
.ws6{word-spacing:16.302000px;}
.wsb{word-spacing:17.226000px;}
.ws5f{word-spacing:22.077000px;}
.ws37{word-spacing:22.629000px;}
.ws3f{word-spacing:661.528800px;}
._2{margin-left:-4.012800px;}
._1{margin-left:-1.764000px;}
._0{width:1.213800px;}
._3{width:10.296000px;}
._7{width:15.642000px;}
._8{width:17.721000px;}
._4{width:18.859500px;}
._6{width:22.077000px;}
._5{width:24.106500px;}
.fc3{color:rgb(0,133,188);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(135,206,42);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:6.000000px;}
.fs4{font-size:18.000000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:36.750000px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:49.500000px;}
.fsc{font-size:51.000000px;}
.fs1{font-size:52.500000px;}
.fsd{font-size:53.580000px;}
.fsa{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:75.000000px;}
.fs0{font-size:79.500000px;}
.fs2{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:22.605000px;}
.y48{bottom:32.802000px;}
.y47{bottom:43.002000px;}
.y14{bottom:44.434950px;}
.y46{bottom:53.205000px;}
.y13{bottom:56.436450px;}
.y45{bottom:63.402000px;}
.y12{bottom:68.437950px;}
.y61{bottom:74.647800px;}
.y62{bottom:77.944500px;}
.y4d{bottom:77.948700px;}
.y17{bottom:79.642500px;}
.y16{bottom:80.434950px;}
.y11{bottom:80.439450px;}
.y4a{bottom:90.565050px;}
.y4c{bottom:90.565200px;}
.y4b{bottom:91.928250px;}
.y15{bottom:92.436450px;}
.y10{bottom:92.440950px;}
.y52{bottom:145.219500px;}
.y2b{bottom:145.227150px;}
.y44{bottom:145.260150px;}
.y51{bottom:164.343000px;}
.y2a{bottom:164.350650px;}
.y43{bottom:164.383650px;}
.y50{bottom:183.466500px;}
.y29{bottom:183.474150px;}
.y42{bottom:183.507150px;}
.y4f{bottom:202.590000px;}
.y28{bottom:202.597650px;}
.y41{bottom:202.630650px;}
.y4e{bottom:221.713500px;}
.y27{bottom:221.721150px;}
.y40{bottom:221.754150px;}
.y26{bottom:240.844650px;}
.y3f{bottom:240.877650px;}
.y25{bottom:259.968150px;}
.y3e{bottom:260.001150px;}
.y24{bottom:279.091650px;}
.y3d{bottom:279.124650px;}
.y60{bottom:281.220450px;}
.y54{bottom:290.174100px;}
.y5f{bottom:297.137700px;}
.y23{bottom:298.215150px;}
.y3c{bottom:298.248150px;}
.y5e{bottom:313.054950px;}
.y22{bottom:317.338650px;}
.y3b{bottom:317.371650px;}
.y5d{bottom:328.972200px;}
.y3a{bottom:336.495150px;}
.y5c{bottom:344.888700px;}
.y39{bottom:355.618650px;}
.y5b{bottom:360.805950px;}
.y21{bottom:374.713650px;}
.y38{bottom:374.742150px;}
.y20{bottom:393.838650px;}
.y37{bottom:393.865650px;}
.y99{bottom:411.458250px;}
.y1f{bottom:412.963650px;}
.y36{bottom:412.989150px;}
.y98{bottom:425.684250px;}
.y35{bottom:432.112650px;}
.ya3{bottom:439.928250px;}
.y97{bottom:439.940250px;}
.y34{bottom:451.236150px;}
.ya2{bottom:454.184250px;}
.y96{bottom:454.196250px;}
.ya1{bottom:468.440250px;}
.y95{bottom:468.452250px;}
.y1e{bottom:470.338650px;}
.y33{bottom:470.359650px;}
.ya0{bottom:482.696250px;}
.y94{bottom:482.708250px;}
.y1d{bottom:489.463650px;}
.y32{bottom:489.483150px;}
.y93{bottom:496.940250px;}
.y9f{bottom:496.952250px;}
.y1c{bottom:508.588650px;}
.y31{bottom:508.606650px;}
.y9e{bottom:511.188375px;}
.y92{bottom:511.196250px;}
.y9d{bottom:525.444375px;}
.y91{bottom:525.452250px;}
.y30{bottom:527.730150px;}
.y90{bottom:539.696250px;}
.y9c{bottom:539.700375px;}
.y5a{bottom:542.024550px;}
.y2f{bottom:546.853650px;}
.y8f{bottom:553.952250px;}
.y9b{bottom:553.956375px;}
.y59{bottom:557.941800px;}
.y8e{bottom:565.954800px;}
.y1b{bottom:565.963650px;}
.y2e{bottom:565.977150px;}
.y9a{bottom:568.212375px;}
.y58{bottom:573.859050px;}
.y1a{bottom:585.088650px;}
.y2d{bottom:585.100650px;}
.y57{bottom:589.776300px;}
.y19{bottom:604.213650px;}
.y2c{bottom:604.224150px;}
.y56{bottom:605.693550px;}
.y8d{bottom:623.220600px;}
.y7b{bottom:623.338650px;}
.y8c{bottom:639.137850px;}
.y7a{bottom:642.469500px;}
.y8b{bottom:655.055100px;}
.y79{bottom:661.593000px;}
.y8a{bottom:670.972350px;}
.y78{bottom:680.716500px;}
.y89{bottom:686.889600px;}
.y77{bottom:699.840000px;}
.y88{bottom:702.806850px;}
.y87{bottom:718.724100px;}
.y76{bottom:718.963500px;}
.y86{bottom:734.641350px;}
.y75{bottom:738.088500px;}
.yc{bottom:739.286100px;}
.y85{bottom:750.558600px;}
.yb{bottom:756.161100px;}
.y74{bottom:757.213500px;}
.y84{bottom:766.475850px;}
.y73{bottom:776.362500px;}
.ya{bottom:777.633600px;}
.y72{bottom:795.486000px;}
.y55{bottom:796.612650px;}
.y83{bottom:798.316050px;}
.y8{bottom:802.670700px;}
.y9{bottom:809.233200px;}
.y71{bottom:814.609500px;}
.y6{bottom:829.670700px;}
.y53{bottom:830.952000px;}
.y70{bottom:833.733000px;}
.y7{bottom:836.233200px;}
.y6f{bottom:852.856500px;}
.y82{bottom:855.708750px;}
.y6e{bottom:871.980000px;}
.y5{bottom:883.260450px;}
.y81{bottom:887.548950px;}
.y6d{bottom:891.103500px;}
.y6c{bottom:910.227000px;}
.y4{bottom:914.752950px;}
.y6b{bottom:929.350500px;}
.y80{bottom:946.004550px;}
.y3{bottom:946.245450px;}
.y6a{bottom:948.474000px;}
.y69{bottom:967.597500px;}
.y7f{bottom:977.844750px;}
.y68{bottom:986.721000px;}
.y67{bottom:1005.844500px;}
.y66{bottom:1024.968000px;}
.y7e{bottom:1036.299750px;}
.y65{bottom:1044.091500px;}
.yf{bottom:1044.241350px;}
.y18{bottom:1050.639750px;}
.y7d{bottom:1052.217000px;}
.ye{bottom:1056.988350px;}
.y64{bottom:1063.215000px;}
.y2{bottom:1067.764500px;}
.yd{bottom:1069.735350px;}
.y63{bottom:1082.338500px;}
.y7c{bottom:1084.057050px;}
.y1{bottom:1114.724400px;}
.hd{height:25.704000px;}
.h6{height:26.496750px;}
.h9{height:29.988000px;}
.ha{height:30.012000px;}
.h8{height:30.282000px;}
.hf{height:35.343000px;}
.h13{height:35.391000px;}
.h14{height:35.422500px;}
.h15{height:35.463000px;}
.h10{height:37.751953px;}
.h3{height:37.852500px;}
.he{height:40.698000px;}
.h11{height:40.701000px;}
.hb{height:43.260000px;}
.h12{height:44.356800px;}
.h7{height:44.886750px;}
.hc{height:47.124000px;}
.h5{height:54.075000px;}
.h2{height:57.319500px;}
.h4{height:82.194000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x10{left:67.258200px;}
.xc{left:72.284550px;}
.xd{left:82.913400px;}
.x6{left:168.283500px;}
.x3{left:190.951350px;}
.xb{left:194.525700px;}
.x1{left:325.275600px;}
.x11{left:329.506650px;}
.x13{left:344.407350px;}
.x7{left:352.350450px;}
.x4{left:368.474850px;}
.xa{left:456.023550px;}
.xe{left:475.151400px;}
.x8{left:511.109700px;}
.x5{left:570.070950px;}
.xf{left:586.771650px;}
.x14{left:605.899125px;}
.x9{left:684.058350px;}
.x12{left:809.024550px;}
@media print{
.v1{vertical-align:-23.333333pt;}
.v2{vertical-align:-16.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.012267pt;}
.v3{vertical-align:16.346667pt;}
.lse{letter-spacing:-0.298667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047467pt;}
.ls6{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.097333pt;}
.ls7{letter-spacing:0.097467pt;}
.ls9{letter-spacing:0.097600pt;}
.lsd{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.139733pt;}
.ls3{letter-spacing:0.140000pt;}
.ls4{letter-spacing:0.140267pt;}
.ls14{letter-spacing:0.142187pt;}
.ls12{letter-spacing:0.142720pt;}
.ls13{letter-spacing:0.143253pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.200000pt;}
.lsb{letter-spacing:0.212000pt;}
.ls0{letter-spacing:0.304000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls11{letter-spacing:839.618667pt;}
.ls10{letter-spacing:1346.944000pt;}
.ws40{word-spacing:-9.988000pt;}
.ws0{word-spacing:-8.474667pt;}
.ws1{word-spacing:-8.176000pt;}
.ws5b{word-spacing:-5.632000pt;}
.ws4c{word-spacing:-4.400000pt;}
.ws45{word-spacing:-4.165333pt;}
.ws51{word-spacing:-4.048000pt;}
.ws4b{word-spacing:-3.696000pt;}
.ws14{word-spacing:-3.578667pt;}
.ws4a{word-spacing:-3.402667pt;}
.ws22{word-spacing:-3.285333pt;}
.ws35{word-spacing:-2.938667pt;}
.ws1e{word-spacing:-2.698667pt;}
.ws6a{word-spacing:-2.464000pt;}
.ws7{word-spacing:-2.405333pt;}
.ws34{word-spacing:-2.380000pt;}
.ws2f{word-spacing:-2.346667pt;}
.ws23{word-spacing:-2.288000pt;}
.ws36{word-spacing:-2.229333pt;}
.ws18{word-spacing:-2.170667pt;}
.ws17{word-spacing:-2.112000pt;}
.wsd{word-spacing:-2.053333pt;}
.ws8{word-spacing:-1.936000pt;}
.ws4e{word-spacing:-1.760000pt;}
.wse{word-spacing:-1.466667pt;}
.ws54{word-spacing:-1.368000pt;}
.ws10{word-spacing:-1.232000pt;}
.ws25{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-1.114667pt;}
.wsc{word-spacing:-0.880000pt;}
.ws4d{word-spacing:-0.821333pt;}
.ws5a{word-spacing:-0.760000pt;}
.ws53{word-spacing:-0.645333pt;}
.ws2d{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.506667pt;}
.wsa{word-spacing:-0.469333pt;}
.ws1a{word-spacing:-0.352000pt;}
.ws24{word-spacing:-0.234667pt;}
.ws4{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.117333pt;}
.ws3a{word-spacing:-0.101333pt;}
.ws39{word-spacing:-0.093333pt;}
.ws9{word-spacing:-0.058667pt;}
.ws62{word-spacing:-0.044000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.200000pt;}
.ws1b{word-spacing:0.293333pt;}
.ws68{word-spacing:0.396000pt;}
.ws43{word-spacing:0.528000pt;}
.ws26{word-spacing:0.645333pt;}
.ws65{word-spacing:0.704000pt;}
.ws38{word-spacing:0.912000pt;}
.ws64{word-spacing:1.012000pt;}
.ws30{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.216000pt;}
.ws15{word-spacing:1.408000pt;}
.ws50{word-spacing:1.525333pt;}
.ws47{word-spacing:1.584000pt;}
.ws5c{word-spacing:1.628000pt;}
.ws57{word-spacing:1.672000pt;}
.ws52{word-spacing:2.170667pt;}
.ws61{word-spacing:2.244000pt;}
.ws28{word-spacing:2.368000pt;}
.ws3b{word-spacing:2.482667pt;}
.ws16{word-spacing:2.522667pt;}
.ws60{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.728000pt;}
.ws1c{word-spacing:3.050667pt;}
.ws5e{word-spacing:3.124000pt;}
.ws42{word-spacing:3.285333pt;}
.ws55{word-spacing:3.344000pt;}
.ws41{word-spacing:3.402667pt;}
.ws67{word-spacing:3.828000pt;}
.ws27{word-spacing:3.872000pt;}
.ws31{word-spacing:3.989333pt;}
.ws2e{word-spacing:4.048000pt;}
.ws44{word-spacing:4.106667pt;}
.ws11{word-spacing:4.165333pt;}
.ws58{word-spacing:4.357333pt;}
.ws21{word-spacing:4.458667pt;}
.ws49{word-spacing:4.634667pt;}
.ws3e{word-spacing:4.965333pt;}
.ws66{word-spacing:5.192000pt;}
.ws13{word-spacing:5.397333pt;}
.ws69{word-spacing:5.940000pt;}
.ws63{word-spacing:5.984000pt;}
.ws46{word-spacing:6.101333pt;}
.wsf{word-spacing:6.160000pt;}
.ws2c{word-spacing:6.629333pt;}
.ws5{word-spacing:7.333333pt;}
.ws12{word-spacing:7.450667pt;}
.ws19{word-spacing:8.330667pt;}
.ws4f{word-spacing:8.624000pt;}
.ws1d{word-spacing:8.858667pt;}
.ws33{word-spacing:9.152000pt;}
.ws59{word-spacing:9.373333pt;}
.ws56{word-spacing:9.880000pt;}
.ws29{word-spacing:10.336000pt;}
.ws6b{word-spacing:11.220000pt;}
.ws20{word-spacing:11.674667pt;}
.ws3d{word-spacing:12.464000pt;}
.ws1f{word-spacing:12.848000pt;}
.ws32{word-spacing:14.021333pt;}
.ws6{word-spacing:14.490667pt;}
.wsb{word-spacing:15.312000pt;}
.ws5f{word-spacing:19.624000pt;}
.ws37{word-spacing:20.114667pt;}
.ws3f{word-spacing:588.025600pt;}
._2{margin-left:-3.566933pt;}
._1{margin-left:-1.568000pt;}
._0{width:1.078933pt;}
._3{width:9.152000pt;}
._7{width:13.904000pt;}
._8{width:15.752000pt;}
._4{width:16.764000pt;}
._6{width:19.624000pt;}
._5{width:21.428000pt;}
.fse{font-size:5.333333pt;}
.fs4{font-size:16.000000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:32.666667pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:44.000000pt;}
.fsc{font-size:45.333333pt;}
.fs1{font-size:46.666667pt;}
.fsd{font-size:47.626667pt;}
.fsa{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:66.666667pt;}
.fs0{font-size:70.666667pt;}
.fs2{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:20.093333pt;}
.y48{bottom:29.157333pt;}
.y47{bottom:38.224000pt;}
.y14{bottom:39.497733pt;}
.y46{bottom:47.293333pt;}
.y13{bottom:50.165733pt;}
.y45{bottom:56.357333pt;}
.y12{bottom:60.833733pt;}
.y61{bottom:66.353600pt;}
.y62{bottom:69.284000pt;}
.y4d{bottom:69.287733pt;}
.y17{bottom:70.793333pt;}
.y16{bottom:71.497733pt;}
.y11{bottom:71.501733pt;}
.y4a{bottom:80.502267pt;}
.y4c{bottom:80.502400pt;}
.y4b{bottom:81.714000pt;}
.y15{bottom:82.165733pt;}
.y10{bottom:82.169733pt;}
.y52{bottom:129.084000pt;}
.y2b{bottom:129.090800pt;}
.y44{bottom:129.120133pt;}
.y51{bottom:146.082667pt;}
.y2a{bottom:146.089467pt;}
.y43{bottom:146.118800pt;}
.y50{bottom:163.081333pt;}
.y29{bottom:163.088133pt;}
.y42{bottom:163.117467pt;}
.y4f{bottom:180.080000pt;}
.y28{bottom:180.086800pt;}
.y41{bottom:180.116133pt;}
.y4e{bottom:197.078667pt;}
.y27{bottom:197.085467pt;}
.y40{bottom:197.114800pt;}
.y26{bottom:214.084133pt;}
.y3f{bottom:214.113467pt;}
.y25{bottom:231.082800pt;}
.y3e{bottom:231.112133pt;}
.y24{bottom:248.081467pt;}
.y3d{bottom:248.110800pt;}
.y60{bottom:249.973733pt;}
.y54{bottom:257.932533pt;}
.y5f{bottom:264.122400pt;}
.y23{bottom:265.080133pt;}
.y3c{bottom:265.109467pt;}
.y5e{bottom:278.271067pt;}
.y22{bottom:282.078800pt;}
.y3b{bottom:282.108133pt;}
.y5d{bottom:292.419733pt;}
.y3a{bottom:299.106800pt;}
.y5c{bottom:306.567733pt;}
.y39{bottom:316.105467pt;}
.y5b{bottom:320.716400pt;}
.y21{bottom:333.078800pt;}
.y38{bottom:333.104133pt;}
.y20{bottom:350.078800pt;}
.y37{bottom:350.102800pt;}
.y99{bottom:365.740667pt;}
.y1f{bottom:367.078800pt;}
.y36{bottom:367.101467pt;}
.y98{bottom:378.386000pt;}
.y35{bottom:384.100133pt;}
.ya3{bottom:391.047333pt;}
.y97{bottom:391.058000pt;}
.y34{bottom:401.098800pt;}
.ya2{bottom:403.719333pt;}
.y96{bottom:403.730000pt;}
.ya1{bottom:416.391333pt;}
.y95{bottom:416.402000pt;}
.y1e{bottom:418.078800pt;}
.y33{bottom:418.097467pt;}
.ya0{bottom:429.063333pt;}
.y94{bottom:429.074000pt;}
.y1d{bottom:435.078800pt;}
.y32{bottom:435.096133pt;}
.y93{bottom:441.724667pt;}
.y9f{bottom:441.735333pt;}
.y1c{bottom:452.078800pt;}
.y31{bottom:452.094800pt;}
.y9e{bottom:454.389667pt;}
.y92{bottom:454.396667pt;}
.y9d{bottom:467.061667pt;}
.y91{bottom:467.068667pt;}
.y30{bottom:469.093467pt;}
.y90{bottom:479.730000pt;}
.y9c{bottom:479.733667pt;}
.y5a{bottom:481.799600pt;}
.y2f{bottom:486.092133pt;}
.y8f{bottom:492.402000pt;}
.y9b{bottom:492.405667pt;}
.y59{bottom:495.948267pt;}
.y8e{bottom:503.070933pt;}
.y1b{bottom:503.078800pt;}
.y2e{bottom:503.090800pt;}
.y9a{bottom:505.077667pt;}
.y58{bottom:510.096933pt;}
.y1a{bottom:520.078800pt;}
.y2d{bottom:520.089467pt;}
.y57{bottom:524.245600pt;}
.y19{bottom:537.078800pt;}
.y2c{bottom:537.088133pt;}
.y56{bottom:538.394267pt;}
.y8d{bottom:553.973867pt;}
.y7b{bottom:554.078800pt;}
.y8c{bottom:568.122533pt;}
.y7a{bottom:571.084000pt;}
.y8b{bottom:582.271200pt;}
.y79{bottom:588.082667pt;}
.y8a{bottom:596.419867pt;}
.y78{bottom:605.081333pt;}
.y89{bottom:610.568533pt;}
.y77{bottom:622.080000pt;}
.y88{bottom:624.717200pt;}
.y87{bottom:638.865867pt;}
.y76{bottom:639.078667pt;}
.y86{bottom:653.014533pt;}
.y75{bottom:656.078667pt;}
.yc{bottom:657.143200pt;}
.y85{bottom:667.163200pt;}
.yb{bottom:672.143200pt;}
.y74{bottom:673.078667pt;}
.y84{bottom:681.311867pt;}
.y73{bottom:690.100000pt;}
.ya{bottom:691.229867pt;}
.y72{bottom:707.098667pt;}
.y55{bottom:708.100133pt;}
.y83{bottom:709.614267pt;}
.y8{bottom:713.485067pt;}
.y9{bottom:719.318400pt;}
.y71{bottom:724.097333pt;}
.y6{bottom:737.485067pt;}
.y53{bottom:738.624000pt;}
.y70{bottom:741.096000pt;}
.y7{bottom:743.318400pt;}
.y6f{bottom:758.094667pt;}
.y82{bottom:760.630000pt;}
.y6e{bottom:775.093333pt;}
.y5{bottom:785.120400pt;}
.y81{bottom:788.932400pt;}
.y6d{bottom:792.092000pt;}
.y6c{bottom:809.090667pt;}
.y4{bottom:813.113733pt;}
.y6b{bottom:826.089333pt;}
.y80{bottom:840.892933pt;}
.y3{bottom:841.107067pt;}
.y6a{bottom:843.088000pt;}
.y69{bottom:860.086667pt;}
.y7f{bottom:869.195333pt;}
.y68{bottom:877.085333pt;}
.y67{bottom:894.084000pt;}
.y66{bottom:911.082667pt;}
.y7e{bottom:921.155333pt;}
.y65{bottom:928.081333pt;}
.yf{bottom:928.214533pt;}
.y18{bottom:933.902000pt;}
.y7d{bottom:935.304000pt;}
.ye{bottom:939.545200pt;}
.y64{bottom:945.080000pt;}
.y2{bottom:949.124000pt;}
.yd{bottom:950.875867pt;}
.y63{bottom:962.078667pt;}
.y7c{bottom:963.606267pt;}
.y1{bottom:990.866133pt;}
.hd{height:22.848000pt;}
.h6{height:23.552667pt;}
.h9{height:26.656000pt;}
.ha{height:26.677333pt;}
.h8{height:26.917333pt;}
.hf{height:31.416000pt;}
.h13{height:31.458667pt;}
.h14{height:31.486667pt;}
.h15{height:31.522667pt;}
.h10{height:33.557292pt;}
.h3{height:33.646667pt;}
.he{height:36.176000pt;}
.h11{height:36.178667pt;}
.hb{height:38.453333pt;}
.h12{height:39.428267pt;}
.h7{height:39.899333pt;}
.hc{height:41.888000pt;}
.h5{height:48.066667pt;}
.h2{height:50.950667pt;}
.h4{height:73.061333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x10{left:59.785067pt;}
.xc{left:64.252933pt;}
.xd{left:73.700800pt;}
.x6{left:149.585333pt;}
.x3{left:169.734533pt;}
.xb{left:172.911733pt;}
.x1{left:289.133867pt;}
.x11{left:292.894800pt;}
.x13{left:306.139867pt;}
.x7{left:313.200400pt;}
.x4{left:327.533200pt;}
.xa{left:405.354267pt;}
.xe{left:422.356800pt;}
.x8{left:454.319733pt;}
.x5{left:506.729733pt;}
.xf{left:521.574800pt;}
.x14{left:538.577000pt;}
.x9{left:608.051867pt;}
.x12{left:719.132933pt;}
}




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