
    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_81225e374b59cd6ec4a217a2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_68ac79fc9c3f22a17b89af05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_fde0193738faaea1862ab605.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_64628bdbe9caaeb28e495cfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927500;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_b1237fb32ad7c073cdbd2f02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_0bf42c76d7090787bd57e441.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_bfdcf0f037ccb251f7db84ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_3544e95a19373b78f3c53887.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_04aba51fd912825f7d4b2396.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;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_4b23c4997cec470888fd4821.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_2616fb2a99463210adae9716.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_0158f4c67fcb0ff4093e3b7e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_81225e374b59cd6ec4a217a2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_68ac79fc9c3f22a17b89af05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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:fff;src:url('chunks/assets/font_ed5256028b21ff0d595de142.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;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:ff10;src:url('chunks/assets/font_8bf541e484079f1e521801c2.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls4{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.000750px;}
.ls1{letter-spacing:66.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws49{word-spacing:-61.416000px;}
.ws21{word-spacing:-60.768000px;}
.wsf{word-spacing:-59.616000px;}
.ws1a{word-spacing:-59.040000px;}
.ws37{word-spacing:-58.392000px;}
.ws24{word-spacing:-55.584000px;}
.ws57{word-spacing:-55.512000px;}
.ws1e{word-spacing:-54.432000px;}
.ws23{word-spacing:-54.000000px;}
.ws26{word-spacing:-53.784000px;}
.ws4e{word-spacing:-52.711200px;}
.ws4d{word-spacing:-52.704000px;}
.ws5c{word-spacing:-51.984000px;}
.ws43{word-spacing:-51.552000px;}
.ws42{word-spacing:-51.515400px;}
.ws36{word-spacing:-51.048000px;}
.ws4{word-spacing:-50.112000px;}
.ws3b{word-spacing:-49.752000px;}
.ws3e{word-spacing:-49.320000px;}
.ws9{word-spacing:-48.960000px;}
.ws32{word-spacing:-48.744000px;}
.ws4c{word-spacing:-48.600000px;}
.ws7{word-spacing:-46.872000px;}
.ws19{word-spacing:-46.728000px;}
.ws6{word-spacing:-46.152000px;}
.ws59{word-spacing:-45.792000px;}
.ws3c{word-spacing:-45.666600px;}
.ws3d{word-spacing:-45.648000px;}
.ws39{word-spacing:-45.360000px;}
.ws17{word-spacing:-45.288000px;}
.ws35{word-spacing:-44.280000px;}
.ws22{word-spacing:-43.848000px;}
.ws2c{word-spacing:-43.776000px;}
.ws44{word-spacing:-43.056000px;}
.ws3a{word-spacing:-42.624000px;}
.ws13{word-spacing:-42.264000px;}
.ws31{word-spacing:-40.896000px;}
.ws47{word-spacing:-40.032000px;}
.wsa{word-spacing:-38.016000px;}
.ws5d{word-spacing:-37.656000px;}
.ws3f{word-spacing:-37.512000px;}
.ws53{word-spacing:-37.368000px;}
.ws41{word-spacing:-36.648000px;}
.ws40{word-spacing:-36.360000px;}
.ws38{word-spacing:-35.496000px;}
.ws58{word-spacing:-35.136000px;}
.ws50{word-spacing:-32.616000px;}
.ws2e{word-spacing:-32.400000px;}
.ws8{word-spacing:-32.184000px;}
.ws16{word-spacing:-30.456000px;}
.ws18{word-spacing:-29.376000px;}
.ws46{word-spacing:-29.304000px;}
.ws45{word-spacing:-29.257200px;}
.ws5{word-spacing:-26.496000px;}
.ws11{word-spacing:-25.848000px;}
.ws29{word-spacing:-25.776000px;}
.ws20{word-spacing:-24.192000px;}
.ws34{word-spacing:-19.015200px;}
.ws25{word-spacing:-17.568000px;}
.ws33{word-spacing:-15.048000px;}
.wsb{word-spacing:-15.000000px;}
.ws51{word-spacing:-13.680000px;}
.ws27{word-spacing:-13.500000px;}
.ws30{word-spacing:-12.096000px;}
.ws1c{word-spacing:-10.872000px;}
.ws56{word-spacing:-7.344000px;}
.ws48{word-spacing:-7.272000px;}
.ws2{word-spacing:-5.680800px;}
.ws4f{word-spacing:-3.960000px;}
.wsc{word-spacing:0.000000px;}
.wse{word-spacing:0.720000px;}
.ws2d{word-spacing:8.352000px;}
.ws2a{word-spacing:10.584000px;}
.ws1f{word-spacing:10.872000px;}
.ws2b{word-spacing:10.944000px;}
.ws1d{word-spacing:11.376000px;}
.ws4b{word-spacing:15.336000px;}
.ws5b{word-spacing:16.560000px;}
.ws4a{word-spacing:20.592000px;}
.ws5a{word-spacing:24.336000px;}
.ws1b{word-spacing:24.624000px;}
.ws54{word-spacing:28.800000px;}
.ws28{word-spacing:37.008000px;}
.ws52{word-spacing:39.672000px;}
.ws55{word-spacing:40.464000px;}
.ws15{word-spacing:43.128000px;}
.ws14{word-spacing:43.200000px;}
.ws0{word-spacing:48.021000px;}
.ws2f{word-spacing:49.032000px;}
.ws12{word-spacing:68.040000px;}
.ws10{word-spacing:79.704000px;}
.ws1{word-spacing:386.314800px;}
.wsd{word-spacing:1714.377600px;}
._18{margin-left:-61.920000px;}
._c{margin-left:-18.720000px;}
._13{margin-left:-15.408000px;}
._b{margin-left:-14.112000px;}
._9{margin-left:-12.456000px;}
._11{margin-left:-10.800000px;}
._7{margin-left:-9.576000px;}
._2{margin-left:-8.215200px;}
._15{margin-left:-6.552000px;}
._1{margin-left:-4.824000px;}
._a{margin-left:-3.702000px;}
._4{margin-left:-2.664000px;}
._3{margin-left:-1.584000px;}
._10{width:2.304000px;}
._8{width:3.672000px;}
._6{width:4.968000px;}
._d{width:6.840000px;}
._17{width:8.064000px;}
._0{width:9.352800px;}
._16{width:10.440000px;}
._19{width:41.832000px;}
._5{width:66.319200px;}
._12{width:86.464800px;}
._f{width:97.048800px;}
._e{width:98.776800px;}
._14{width:141.760800px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y30{bottom:64.760550px;}
.y2f{bottom:65.586600px;}
.y5b{bottom:93.296850px;}
.y82{bottom:93.960150px;}
.y25{bottom:107.443050px;}
.y54{bottom:115.796850px;}
.y81{bottom:116.460150px;}
.y24{bottom:129.943050px;}
.y53{bottom:138.296850px;}
.y80{bottom:138.960150px;}
.y23{bottom:152.443050px;}
.y52{bottom:160.796850px;}
.y7f{bottom:161.460150px;}
.y22{bottom:174.943050px;}
.y51{bottom:183.296850px;}
.y7e{bottom:183.960150px;}
.y21{bottom:197.443050px;}
.y50{bottom:205.796850px;}
.y7d{bottom:206.460150px;}
.y20{bottom:219.943050px;}
.y4f{bottom:228.296850px;}
.y7c{bottom:228.960150px;}
.y4e{bottom:250.796850px;}
.y7b{bottom:251.460150px;}
.y1f{bottom:254.443050px;}
.y4d{bottom:273.296850px;}
.y7a{bottom:273.960150px;}
.y1e{bottom:276.943050px;}
.y5a{bottom:295.796850px;}
.y79{bottom:296.460150px;}
.y1d{bottom:299.443050px;}
.y4c{bottom:318.296850px;}
.y78{bottom:318.960150px;}
.y1c{bottom:321.943050px;}
.y4b{bottom:340.796850px;}
.y84{bottom:341.460150px;}
.y1b{bottom:344.443050px;}
.y4a{bottom:363.296850px;}
.y77{bottom:363.960150px;}
.y1a{bottom:366.943050px;}
.y49{bottom:385.796850px;}
.y76{bottom:386.460150px;}
.y19{bottom:389.443050px;}
.y59{bottom:408.296850px;}
.y75{bottom:408.960150px;}
.y18{bottom:423.943050px;}
.y48{bottom:430.796850px;}
.y74{bottom:431.460150px;}
.y17{bottom:446.443050px;}
.y47{bottom:453.296850px;}
.y73{bottom:453.960150px;}
.y2e{bottom:456.139950px;}
.y16{bottom:468.943050px;}
.y46{bottom:475.796850px;}
.y72{bottom:476.460150px;}
.y2d{bottom:478.639950px;}
.y15{bottom:491.443050px;}
.y58{bottom:498.296850px;}
.y71{bottom:498.960150px;}
.y2c{bottom:501.139950px;}
.y14{bottom:513.943050px;}
.y45{bottom:520.796850px;}
.y70{bottom:521.460150px;}
.y13{bottom:536.443050px;}
.y2b{bottom:541.639950px;}
.y44{bottom:543.296850px;}
.y6f{bottom:543.960150px;}
.y43{bottom:565.796850px;}
.y6e{bottom:566.460150px;}
.y12{bottom:570.943050px;}
.y2a{bottom:586.639950px;}
.y42{bottom:588.296850px;}
.y6d{bottom:588.960150px;}
.y11{bottom:593.443050px;}
.y41{bottom:610.796850px;}
.y6c{bottom:611.460150px;}
.y10{bottom:615.943050px;}
.y29{bottom:627.139950px;}
.y57{bottom:633.296850px;}
.y6b{bottom:633.960150px;}
.yf{bottom:638.443050px;}
.y40{bottom:655.796850px;}
.y6a{bottom:656.460150px;}
.ye{bottom:660.943050px;}
.y28{bottom:663.139950px;}
.y3f{bottom:678.296850px;}
.y69{bottom:678.960150px;}
.yd{bottom:683.443050px;}
.y27{bottom:699.139950px;}
.y3e{bottom:700.796850px;}
.y68{bottom:701.460150px;}
.yc{bottom:717.938550px;}
.y3d{bottom:723.296850px;}
.y67{bottom:723.960150px;}
.y26{bottom:735.139950px;}
.yb{bottom:738.943050px;}
.y3c{bottom:745.796850px;}
.y83{bottom:746.460150px;}
.ya{bottom:759.943050px;}
.y56{bottom:768.296850px;}
.y66{bottom:768.960150px;}
.y3b{bottom:790.796850px;}
.y65{bottom:791.460150px;}
.y9{bottom:809.429550px;}
.y3a{bottom:813.296850px;}
.y64{bottom:813.960150px;}
.y8{bottom:830.434050px;}
.y39{bottom:835.796850px;}
.y63{bottom:836.460150px;}
.y7{bottom:851.438550px;}
.y38{bottom:858.296850px;}
.y62{bottom:858.960150px;}
.y6{bottom:872.443050px;}
.y37{bottom:880.796850px;}
.y61{bottom:881.460150px;}
.y5{bottom:893.443050px;}
.y55{bottom:903.296850px;}
.y60{bottom:903.960150px;}
.y36{bottom:925.796850px;}
.y5f{bottom:926.460150px;}
.y4{bottom:942.950550px;}
.y35{bottom:948.296850px;}
.y5e{bottom:948.960150px;}
.y3{bottom:968.443050px;}
.y34{bottom:970.796850px;}
.y5d{bottom:971.460150px;}
.y33{bottom:993.296850px;}
.y5c{bottom:993.960150px;}
.y32{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y31{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x11{left:63.779550px;}
.x2{left:65.202600px;}
.x10{left:73.027500px;}
.x1{left:74.853150px;}
.x15{left:85.039350px;}
.xd{left:223.656300px;}
.xe{left:244.916250px;}
.x4{left:280.054650px;}
.x9{left:300.758850px;}
.xc{left:320.872950px;}
.x3{left:329.599650px;}
.x20{left:331.620600px;}
.x8{left:364.234350px;}
.x16{left:374.424150px;}
.xb{left:375.718950px;}
.x17{left:399.935850px;}
.x21{left:410.729550px;}
.x14{left:412.272150px;}
.x18{left:421.195650px;}
.x22{left:426.953850px;}
.x19{left:453.936000px;}
.x1a{left:466.314150px;}
.x6{left:474.734850px;}
.xa{left:482.645100px;}
.x1c{left:494.581200px;}
.x1b{left:501.371550px;}
.x1d{left:531.544050px;}
.x7{left:532.798350px;}
.x5{left:540.481050px;}
.x13{left:614.196150px;}
.x1e{left:615.632100px;}
.x1f{left:626.860800px;}
.x12{left:632.875800px;}
.xf{left:709.972350px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls4{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.000667pt;}
.ls1{letter-spacing:58.944000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws49{word-spacing:-54.592000pt;}
.ws21{word-spacing:-54.016000pt;}
.wsf{word-spacing:-52.992000pt;}
.ws1a{word-spacing:-52.480000pt;}
.ws37{word-spacing:-51.904000pt;}
.ws24{word-spacing:-49.408000pt;}
.ws57{word-spacing:-49.344000pt;}
.ws1e{word-spacing:-48.384000pt;}
.ws23{word-spacing:-48.000000pt;}
.ws26{word-spacing:-47.808000pt;}
.ws4e{word-spacing:-46.854400pt;}
.ws4d{word-spacing:-46.848000pt;}
.ws5c{word-spacing:-46.208000pt;}
.ws43{word-spacing:-45.824000pt;}
.ws42{word-spacing:-45.791467pt;}
.ws36{word-spacing:-45.376000pt;}
.ws4{word-spacing:-44.544000pt;}
.ws3b{word-spacing:-44.224000pt;}
.ws3e{word-spacing:-43.840000pt;}
.ws9{word-spacing:-43.520000pt;}
.ws32{word-spacing:-43.328000pt;}
.ws4c{word-spacing:-43.200000pt;}
.ws7{word-spacing:-41.664000pt;}
.ws19{word-spacing:-41.536000pt;}
.ws6{word-spacing:-41.024000pt;}
.ws59{word-spacing:-40.704000pt;}
.ws3c{word-spacing:-40.592533pt;}
.ws3d{word-spacing:-40.576000pt;}
.ws39{word-spacing:-40.320000pt;}
.ws17{word-spacing:-40.256000pt;}
.ws35{word-spacing:-39.360000pt;}
.ws22{word-spacing:-38.976000pt;}
.ws2c{word-spacing:-38.912000pt;}
.ws44{word-spacing:-38.272000pt;}
.ws3a{word-spacing:-37.888000pt;}
.ws13{word-spacing:-37.568000pt;}
.ws31{word-spacing:-36.352000pt;}
.ws47{word-spacing:-35.584000pt;}
.wsa{word-spacing:-33.792000pt;}
.ws5d{word-spacing:-33.472000pt;}
.ws3f{word-spacing:-33.344000pt;}
.ws53{word-spacing:-33.216000pt;}
.ws41{word-spacing:-32.576000pt;}
.ws40{word-spacing:-32.320000pt;}
.ws38{word-spacing:-31.552000pt;}
.ws58{word-spacing:-31.232000pt;}
.ws50{word-spacing:-28.992000pt;}
.ws2e{word-spacing:-28.800000pt;}
.ws8{word-spacing:-28.608000pt;}
.ws16{word-spacing:-27.072000pt;}
.ws18{word-spacing:-26.112000pt;}
.ws46{word-spacing:-26.048000pt;}
.ws45{word-spacing:-26.006400pt;}
.ws5{word-spacing:-23.552000pt;}
.ws11{word-spacing:-22.976000pt;}
.ws29{word-spacing:-22.912000pt;}
.ws20{word-spacing:-21.504000pt;}
.ws34{word-spacing:-16.902400pt;}
.ws25{word-spacing:-15.616000pt;}
.ws33{word-spacing:-13.376000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws51{word-spacing:-12.160000pt;}
.ws27{word-spacing:-12.000000pt;}
.ws30{word-spacing:-10.752000pt;}
.ws1c{word-spacing:-9.664000pt;}
.ws56{word-spacing:-6.528000pt;}
.ws48{word-spacing:-6.464000pt;}
.ws2{word-spacing:-5.049600pt;}
.ws4f{word-spacing:-3.520000pt;}
.wsc{word-spacing:0.000000pt;}
.wse{word-spacing:0.640000pt;}
.ws2d{word-spacing:7.424000pt;}
.ws2a{word-spacing:9.408000pt;}
.ws1f{word-spacing:9.664000pt;}
.ws2b{word-spacing:9.728000pt;}
.ws1d{word-spacing:10.112000pt;}
.ws4b{word-spacing:13.632000pt;}
.ws5b{word-spacing:14.720000pt;}
.ws4a{word-spacing:18.304000pt;}
.ws5a{word-spacing:21.632000pt;}
.ws1b{word-spacing:21.888000pt;}
.ws54{word-spacing:25.600000pt;}
.ws28{word-spacing:32.896000pt;}
.ws52{word-spacing:35.264000pt;}
.ws55{word-spacing:35.968000pt;}
.ws15{word-spacing:38.336000pt;}
.ws14{word-spacing:38.400000pt;}
.ws0{word-spacing:42.685333pt;}
.ws2f{word-spacing:43.584000pt;}
.ws12{word-spacing:60.480000pt;}
.ws10{word-spacing:70.848000pt;}
.ws1{word-spacing:343.390933pt;}
.wsd{word-spacing:1523.891200pt;}
._18{margin-left:-55.040000pt;}
._c{margin-left:-16.640000pt;}
._13{margin-left:-13.696000pt;}
._b{margin-left:-12.544000pt;}
._9{margin-left:-11.072000pt;}
._11{margin-left:-9.600000pt;}
._7{margin-left:-8.512000pt;}
._2{margin-left:-7.302400pt;}
._15{margin-left:-5.824000pt;}
._1{margin-left:-4.288000pt;}
._a{margin-left:-3.290667pt;}
._4{margin-left:-2.368000pt;}
._3{margin-left:-1.408000pt;}
._10{width:2.048000pt;}
._8{width:3.264000pt;}
._6{width:4.416000pt;}
._d{width:6.080000pt;}
._17{width:7.168000pt;}
._0{width:8.313600pt;}
._16{width:9.280000pt;}
._19{width:37.184000pt;}
._5{width:58.950400pt;}
._12{width:76.857600pt;}
._f{width:86.265600pt;}
._e{width:87.801600pt;}
._14{width:126.009600pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y30{bottom:57.564933pt;}
.y2f{bottom:58.299200pt;}
.y5b{bottom:82.930533pt;}
.y82{bottom:83.520133pt;}
.y25{bottom:95.504933pt;}
.y54{bottom:102.930533pt;}
.y81{bottom:103.520133pt;}
.y24{bottom:115.504933pt;}
.y53{bottom:122.930533pt;}
.y80{bottom:123.520133pt;}
.y23{bottom:135.504933pt;}
.y52{bottom:142.930533pt;}
.y7f{bottom:143.520133pt;}
.y22{bottom:155.504933pt;}
.y51{bottom:162.930533pt;}
.y7e{bottom:163.520133pt;}
.y21{bottom:175.504933pt;}
.y50{bottom:182.930533pt;}
.y7d{bottom:183.520133pt;}
.y20{bottom:195.504933pt;}
.y4f{bottom:202.930533pt;}
.y7c{bottom:203.520133pt;}
.y4e{bottom:222.930533pt;}
.y7b{bottom:223.520133pt;}
.y1f{bottom:226.171600pt;}
.y4d{bottom:242.930533pt;}
.y7a{bottom:243.520133pt;}
.y1e{bottom:246.171600pt;}
.y5a{bottom:262.930533pt;}
.y79{bottom:263.520133pt;}
.y1d{bottom:266.171600pt;}
.y4c{bottom:282.930533pt;}
.y78{bottom:283.520133pt;}
.y1c{bottom:286.171600pt;}
.y4b{bottom:302.930533pt;}
.y84{bottom:303.520133pt;}
.y1b{bottom:306.171600pt;}
.y4a{bottom:322.930533pt;}
.y77{bottom:323.520133pt;}
.y1a{bottom:326.171600pt;}
.y49{bottom:342.930533pt;}
.y76{bottom:343.520133pt;}
.y19{bottom:346.171600pt;}
.y59{bottom:362.930533pt;}
.y75{bottom:363.520133pt;}
.y18{bottom:376.838267pt;}
.y48{bottom:382.930533pt;}
.y74{bottom:383.520133pt;}
.y17{bottom:396.838267pt;}
.y47{bottom:402.930533pt;}
.y73{bottom:403.520133pt;}
.y2e{bottom:405.457733pt;}
.y16{bottom:416.838267pt;}
.y46{bottom:422.930533pt;}
.y72{bottom:423.520133pt;}
.y2d{bottom:425.457733pt;}
.y15{bottom:436.838267pt;}
.y58{bottom:442.930533pt;}
.y71{bottom:443.520133pt;}
.y2c{bottom:445.457733pt;}
.y14{bottom:456.838267pt;}
.y45{bottom:462.930533pt;}
.y70{bottom:463.520133pt;}
.y13{bottom:476.838267pt;}
.y2b{bottom:481.457733pt;}
.y44{bottom:482.930533pt;}
.y6f{bottom:483.520133pt;}
.y43{bottom:502.930533pt;}
.y6e{bottom:503.520133pt;}
.y12{bottom:507.504933pt;}
.y2a{bottom:521.457733pt;}
.y42{bottom:522.930533pt;}
.y6d{bottom:523.520133pt;}
.y11{bottom:527.504933pt;}
.y41{bottom:542.930533pt;}
.y6c{bottom:543.520133pt;}
.y10{bottom:547.504933pt;}
.y29{bottom:557.457733pt;}
.y57{bottom:562.930533pt;}
.y6b{bottom:563.520133pt;}
.yf{bottom:567.504933pt;}
.y40{bottom:582.930533pt;}
.y6a{bottom:583.520133pt;}
.ye{bottom:587.504933pt;}
.y28{bottom:589.457733pt;}
.y3f{bottom:602.930533pt;}
.y69{bottom:603.520133pt;}
.yd{bottom:607.504933pt;}
.y27{bottom:621.457733pt;}
.y3e{bottom:622.930533pt;}
.y68{bottom:623.520133pt;}
.yc{bottom:638.167600pt;}
.y3d{bottom:642.930533pt;}
.y67{bottom:643.520133pt;}
.y26{bottom:653.457733pt;}
.yb{bottom:656.838267pt;}
.y3c{bottom:662.930533pt;}
.y83{bottom:663.520133pt;}
.ya{bottom:675.504933pt;}
.y56{bottom:682.930533pt;}
.y66{bottom:683.520133pt;}
.y3b{bottom:702.930533pt;}
.y65{bottom:703.520133pt;}
.y9{bottom:719.492933pt;}
.y3a{bottom:722.930533pt;}
.y64{bottom:723.520133pt;}
.y8{bottom:738.163600pt;}
.y39{bottom:742.930533pt;}
.y63{bottom:743.520133pt;}
.y7{bottom:756.834267pt;}
.y38{bottom:762.930533pt;}
.y62{bottom:763.520133pt;}
.y6{bottom:775.504933pt;}
.y37{bottom:782.930533pt;}
.y61{bottom:783.520133pt;}
.y5{bottom:794.171600pt;}
.y55{bottom:802.930533pt;}
.y60{bottom:803.520133pt;}
.y36{bottom:822.930533pt;}
.y5f{bottom:823.520133pt;}
.y4{bottom:838.178267pt;}
.y35{bottom:842.930533pt;}
.y5e{bottom:843.520133pt;}
.y3{bottom:860.838267pt;}
.y34{bottom:862.930533pt;}
.y5d{bottom:863.520133pt;}
.y33{bottom:882.930533pt;}
.y5c{bottom:883.520133pt;}
.y32{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y31{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x11{left:56.692933pt;}
.x2{left:57.957867pt;}
.x10{left:64.913333pt;}
.x1{left:66.536133pt;}
.x15{left:75.590533pt;}
.xd{left:198.805600pt;}
.xe{left:217.703333pt;}
.x4{left:248.937467pt;}
.x9{left:267.341200pt;}
.xc{left:285.220400pt;}
.x3{left:292.977467pt;}
.x20{left:294.773867pt;}
.x8{left:323.763867pt;}
.x16{left:332.821467pt;}
.xb{left:333.972400pt;}
.x17{left:355.498533pt;}
.x21{left:365.092933pt;}
.x14{left:366.464133pt;}
.x18{left:374.396133pt;}
.x22{left:379.514533pt;}
.x19{left:403.498667pt;}
.x1a{left:414.501467pt;}
.x6{left:421.986533pt;}
.xa{left:429.017867pt;}
.x1c{left:439.627733pt;}
.x1b{left:445.663600pt;}
.x1d{left:472.483600pt;}
.x7{left:473.598533pt;}
.x5{left:480.427600pt;}
.x13{left:545.952133pt;}
.x1e{left:547.228533pt;}
.x1f{left:557.209600pt;}
.x12{left:562.556267pt;}
.xf{left:631.086533pt;}
}




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