
    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_db2910b606896c74ebe6f325.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_303ff167a9dd0c78ccf7e170.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.746000;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_913ca44811148a7b04a39865.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.749000;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_303ff167a9dd0c78ccf7e170.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746000;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_11eafe17d67369a290df63cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746000;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_13bf3881c04db75694c556fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714000;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_97d8f9498a35f0c42d504561.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_733946c3c92d052549ec8e3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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_2edb2c6b1b34ba9f2d70a1f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;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_e55f267998e3099fab308759.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117000;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_9f1195be0a1e54ffb9194b71.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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_6defa710bc66b0d2d524cc20.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.746000;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;}
.ma{transform:matrix(0.193185,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.193185,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.193185,0.000000,-0.064705,0.241481,0,0);}
.m2{transform:matrix(0.196326,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.196326,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.196326,0.000000,-0.064705,0.241481,0,0);}
.m9{transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219048,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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);}
.m3{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.267200px;}
.v2{vertical-align:216.000000px;}
.ls5{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls0{letter-spacing:1.512000px;}
.ls2{letter-spacing:25.200000px;}
.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;}
}
.ws4{word-spacing:-25.200000px;}
.ws11{word-spacing:-3.540000px;}
.wsb{word-spacing:-2.820000px;}
.ws13{word-spacing:-2.700000px;}
.wse{word-spacing:-1.980000px;}
.wsd{word-spacing:-1.860000px;}
.wsf{word-spacing:-1.740000px;}
.ws24{word-spacing:-1.620000px;}
.ws1b{word-spacing:-1.560000px;}
.ws35{word-spacing:-1.512000px;}
.ws16{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.200000px;}
.ws41{word-spacing:-1.080000px;}
.ws42{word-spacing:-0.900000px;}
.ws1{word-spacing:-0.362521px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.ws15{word-spacing:0.120000px;}
.ws37{word-spacing:0.240000px;}
.ws7{word-spacing:0.480000px;}
.ws31{word-spacing:0.840000px;}
.ws8{word-spacing:1.140000px;}
.ws39{word-spacing:1.260000px;}
.ws10{word-spacing:1.320000px;}
.ws23{word-spacing:1.380000px;}
.ws3f{word-spacing:1.500000px;}
.ws27{word-spacing:2.340000px;}
.ws20{word-spacing:2.400000px;}
.ws2e{word-spacing:2.460000px;}
.ws29{word-spacing:2.520000px;}
.ws3e{word-spacing:3.060000px;}
.ws12{word-spacing:3.180000px;}
.ws33{word-spacing:3.240000px;}
.ws21{word-spacing:3.300000px;}
.ws26{word-spacing:3.480000px;}
.ws18{word-spacing:3.720000px;}
.ws1f{word-spacing:4.020000px;}
.ws30{word-spacing:4.080000px;}
.ws36{word-spacing:4.680000px;}
.ws1c{word-spacing:4.860000px;}
.ws14{word-spacing:4.920000px;}
.ws25{word-spacing:5.880000px;}
.ws34{word-spacing:5.940000px;}
.ws2f{word-spacing:6.000000px;}
.ws40{word-spacing:6.120000px;}
.ws3a{word-spacing:6.180000px;}
.ws6{word-spacing:6.300000px;}
.ws22{word-spacing:6.720000px;}
.ws19{word-spacing:7.440000px;}
.ws3b{word-spacing:7.560000px;}
.ws5{word-spacing:7.620000px;}
.ws2b{word-spacing:7.800000px;}
.ws1e{word-spacing:8.040000px;}
.ws3d{word-spacing:8.580000px;}
.wsa{word-spacing:8.880000px;}
.ws28{word-spacing:8.940000px;}
.ws3c{word-spacing:9.600000px;}
.ws38{word-spacing:9.900000px;}
.ws2c{word-spacing:10.140000px;}
.ws9{word-spacing:11.280000px;}
.ws2a{word-spacing:11.940000px;}
.ws1d{word-spacing:12.660000px;}
.ws17{word-spacing:13.020000px;}
.ws32{word-spacing:13.500000px;}
.ws2d{word-spacing:14.820000px;}
.ws2{word-spacing:199.656000px;}
.ws0{word-spacing:3362.133600px;}
._2{margin-left:-185.997600px;}
._8{margin-left:-16.056000px;}
._11{margin-left:-10.075200px;}
._10{margin-left:-7.756800px;}
._e{margin-left:-5.767200px;}
._b{margin-left:-4.450800px;}
._a{margin-left:-3.330187px;}
._12{margin-left:-2.324213px;}
._9{margin-left:-1.303200px;}
._c{width:1.214400px;}
._d{width:2.376000px;}
._f{width:3.500400px;}
._5{width:13.658400px;}
._7{width:122.781600px;}
._6{width:199.656000px;}
._1{width:252.000000px;}
._4{width:451.656000px;}
._0{width:3821.976000px;}
._3{width:4021.632000px;}
.fc2{color:transparent;}
.fc1{color:rgb(207,45,43);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:37.800000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:62.116583px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:77.645768px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:248.466333px;}
.fs4{font-size:252.000000px;}
.fs8{font-size:264.000000px;}
.fs3{font-size:305.613528px;}
.fs5{font-size:362.521200px;}
.y0{bottom:0.000000px;}
.y4d{bottom:68.332650px;}
.y33{bottom:68.341050px;}
.y4c{bottom:86.332650px;}
.y32{bottom:86.341050px;}
.y4b{bottom:104.332650px;}
.y31{bottom:104.341050px;}
.y4a{bottom:122.332650px;}
.y30{bottom:122.341050px;}
.y49{bottom:140.332650px;}
.y2f{bottom:140.341050px;}
.y48{bottom:158.332650px;}
.y47{bottom:176.332650px;}
.y2e{bottom:176.341050px;}
.y46{bottom:194.332650px;}
.y2d{bottom:194.341050px;}
.y45{bottom:212.332650px;}
.y2c{bottom:212.341050px;}
.y44{bottom:230.332650px;}
.y2b{bottom:230.341050px;}
.y4f{bottom:248.332650px;}
.y2a{bottom:248.341050px;}
.y43{bottom:266.332650px;}
.y29{bottom:266.341050px;}
.y42{bottom:284.332650px;}
.y28{bottom:284.341050px;}
.y41{bottom:302.332650px;}
.y27{bottom:302.341050px;}
.y40{bottom:320.332650px;}
.y26{bottom:320.341050px;}
.y3f{bottom:338.332650px;}
.y25{bottom:338.341050px;}
.y3e{bottom:356.332650px;}
.y24{bottom:356.341050px;}
.y3d{bottom:374.332650px;}
.y23{bottom:374.341050px;}
.y3c{bottom:392.332650px;}
.y22{bottom:392.341050px;}
.y3b{bottom:410.332650px;}
.y21{bottom:410.341050px;}
.y4e{bottom:438.170400px;}
.y20{bottom:446.341050px;}
.y1f{bottom:464.341050px;}
.y1e{bottom:482.341050px;}
.y1d{bottom:500.341050px;}
.y1c{bottom:518.341050px;}
.y1b{bottom:536.341050px;}
.y1a{bottom:554.341050px;}
.y19{bottom:572.341050px;}
.y18{bottom:590.341050px;}
.y17{bottom:608.341050px;}
.y16{bottom:626.341050px;}
.y15{bottom:644.341050px;}
.y14{bottom:662.341050px;}
.y13{bottom:698.341050px;}
.y12{bottom:716.341050px;}
.y11{bottom:734.341050px;}
.y10{bottom:752.341050px;}
.yf{bottom:770.341050px;}
.ye{bottom:788.341050px;}
.yd{bottom:806.341050px;}
.yc{bottom:824.341050px;}
.y9{bottom:842.341050px;}
.yb{bottom:860.341050px;}
.ya{bottom:878.341050px;}
.y34{bottom:954.306000px;}
.y36{bottom:1026.734100px;}
.y38{bottom:1026.904200px;}
.y35{bottom:1052.234100px;}
.y37{bottom:1052.404200px;}
.y3a{bottom:1103.800200px;}
.y39{bottom:1175.806200px;}
.y5{bottom:1242.662250px;}
.y8{bottom:1243.647600px;}
.y7{bottom:1244.399100px;}
.y6{bottom:1264.905600px;}
.y4{bottom:1265.162250px;}
.y3{bottom:1287.662250px;}
.y2{bottom:1310.162250px;}
.y1{bottom:1332.662250px;}
.hd{height:34.322400px;}
.h8{height:41.689453px;}
.ha{height:45.000000px;}
.he{height:45.531456px;}
.h9{height:48.246000px;}
.h2{height:50.400000px;}
.hf{height:56.914348px;}
.hb{height:65.376000px;}
.h3{height:71.971200px;}
.h4{height:182.125822px;}
.h6{height:183.960000px;}
.hc{height:194.832000px;}
.h5{height:224.014716px;}
.h7{height:258.840137px;}
.h1{height:1347.750000px;}
.h0{height:1347.874500px;}
.w0{width:1148.031000px;}
.w1{width:1148.250000px;}
.x1{left:-42.519750px;}
.x0{left:0.000000px;}
.x2{left:30.870300px;}
.x3{left:59.455350px;}
.x9{left:63.774900px;}
.x7{left:65.314500px;}
.x4{left:74.335350px;}
.xa{left:85.034550px;}
.x5{left:89.215350px;}
.xb{left:104.030250px;}
.x8{left:115.704900px;}
.x6{left:141.267150px;}
.xd{left:418.036500px;}
.xf{left:424.776000px;}
.xe{left:439.291500px;}
.xc{left:603.277500px;}
.x10{left:772.440900px;}
.x11{left:793.695900px;}
.x12{left:865.876950px;}
.x13{left:871.696800px;}
.x14{left:877.516650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.126400pt;}
.v2{vertical-align:192.000000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls0{letter-spacing:1.344000pt;}
.ls2{letter-spacing:22.400000pt;}
.ws4{word-spacing:-22.400000pt;}
.ws11{word-spacing:-3.146667pt;}
.wsb{word-spacing:-2.506667pt;}
.ws13{word-spacing:-2.400000pt;}
.wse{word-spacing:-1.760000pt;}
.wsd{word-spacing:-1.653333pt;}
.wsf{word-spacing:-1.546667pt;}
.ws24{word-spacing:-1.440000pt;}
.ws1b{word-spacing:-1.386667pt;}
.ws35{word-spacing:-1.344000pt;}
.ws16{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.066667pt;}
.ws41{word-spacing:-0.960000pt;}
.ws42{word-spacing:-0.800000pt;}
.ws1{word-spacing:-0.322241pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.ws15{word-spacing:0.106667pt;}
.ws37{word-spacing:0.213333pt;}
.ws7{word-spacing:0.426667pt;}
.ws31{word-spacing:0.746667pt;}
.ws8{word-spacing:1.013333pt;}
.ws39{word-spacing:1.120000pt;}
.ws10{word-spacing:1.173333pt;}
.ws23{word-spacing:1.226667pt;}
.ws3f{word-spacing:1.333333pt;}
.ws27{word-spacing:2.080000pt;}
.ws20{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.186667pt;}
.ws29{word-spacing:2.240000pt;}
.ws3e{word-spacing:2.720000pt;}
.ws12{word-spacing:2.826667pt;}
.ws33{word-spacing:2.880000pt;}
.ws21{word-spacing:2.933333pt;}
.ws26{word-spacing:3.093333pt;}
.ws18{word-spacing:3.306667pt;}
.ws1f{word-spacing:3.573333pt;}
.ws30{word-spacing:3.626667pt;}
.ws36{word-spacing:4.160000pt;}
.ws1c{word-spacing:4.320000pt;}
.ws14{word-spacing:4.373333pt;}
.ws25{word-spacing:5.226667pt;}
.ws34{word-spacing:5.280000pt;}
.ws2f{word-spacing:5.333333pt;}
.ws40{word-spacing:5.440000pt;}
.ws3a{word-spacing:5.493333pt;}
.ws6{word-spacing:5.600000pt;}
.ws22{word-spacing:5.973333pt;}
.ws19{word-spacing:6.613333pt;}
.ws3b{word-spacing:6.720000pt;}
.ws5{word-spacing:6.773333pt;}
.ws2b{word-spacing:6.933333pt;}
.ws1e{word-spacing:7.146667pt;}
.ws3d{word-spacing:7.626667pt;}
.wsa{word-spacing:7.893333pt;}
.ws28{word-spacing:7.946667pt;}
.ws3c{word-spacing:8.533333pt;}
.ws38{word-spacing:8.800000pt;}
.ws2c{word-spacing:9.013333pt;}
.ws9{word-spacing:10.026667pt;}
.ws2a{word-spacing:10.613333pt;}
.ws1d{word-spacing:11.253333pt;}
.ws17{word-spacing:11.573333pt;}
.ws32{word-spacing:12.000000pt;}
.ws2d{word-spacing:13.173333pt;}
.ws2{word-spacing:177.472000pt;}
.ws0{word-spacing:2988.563200pt;}
._2{margin-left:-165.331200pt;}
._8{margin-left:-14.272000pt;}
._11{margin-left:-8.955733pt;}
._10{margin-left:-6.894933pt;}
._e{margin-left:-5.126400pt;}
._b{margin-left:-3.956267pt;}
._a{margin-left:-2.960166pt;}
._12{margin-left:-2.065967pt;}
._9{margin-left:-1.158400pt;}
._c{width:1.079467pt;}
._d{width:2.112000pt;}
._f{width:3.111467pt;}
._5{width:12.140800pt;}
._7{width:109.139200pt;}
._6{width:177.472000pt;}
._1{width:224.000000pt;}
._4{width:401.472000pt;}
._0{width:3397.312000pt;}
._3{width:3574.784000pt;}
.fs9{font-size:33.600000pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:55.214741pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.018460pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:220.858963pt;}
.fs4{font-size:224.000000pt;}
.fs8{font-size:234.666667pt;}
.fs3{font-size:271.656469pt;}
.fs5{font-size:322.241067pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:60.740133pt;}
.y33{bottom:60.747600pt;}
.y4c{bottom:76.740133pt;}
.y32{bottom:76.747600pt;}
.y4b{bottom:92.740133pt;}
.y31{bottom:92.747600pt;}
.y4a{bottom:108.740133pt;}
.y30{bottom:108.747600pt;}
.y49{bottom:124.740133pt;}
.y2f{bottom:124.747600pt;}
.y48{bottom:140.740133pt;}
.y47{bottom:156.740133pt;}
.y2e{bottom:156.747600pt;}
.y46{bottom:172.740133pt;}
.y2d{bottom:172.747600pt;}
.y45{bottom:188.740133pt;}
.y2c{bottom:188.747600pt;}
.y44{bottom:204.740133pt;}
.y2b{bottom:204.747600pt;}
.y4f{bottom:220.740133pt;}
.y2a{bottom:220.747600pt;}
.y43{bottom:236.740133pt;}
.y29{bottom:236.747600pt;}
.y42{bottom:252.740133pt;}
.y28{bottom:252.747600pt;}
.y41{bottom:268.740133pt;}
.y27{bottom:268.747600pt;}
.y40{bottom:284.740133pt;}
.y26{bottom:284.747600pt;}
.y3f{bottom:300.740133pt;}
.y25{bottom:300.747600pt;}
.y3e{bottom:316.740133pt;}
.y24{bottom:316.747600pt;}
.y3d{bottom:332.740133pt;}
.y23{bottom:332.747600pt;}
.y3c{bottom:348.740133pt;}
.y22{bottom:348.747600pt;}
.y3b{bottom:364.740133pt;}
.y21{bottom:364.747600pt;}
.y4e{bottom:389.484800pt;}
.y20{bottom:396.747600pt;}
.y1f{bottom:412.747600pt;}
.y1e{bottom:428.747600pt;}
.y1d{bottom:444.747600pt;}
.y1c{bottom:460.747600pt;}
.y1b{bottom:476.747600pt;}
.y1a{bottom:492.747600pt;}
.y19{bottom:508.747600pt;}
.y18{bottom:524.747600pt;}
.y17{bottom:540.747600pt;}
.y16{bottom:556.747600pt;}
.y15{bottom:572.747600pt;}
.y14{bottom:588.747600pt;}
.y13{bottom:620.747600pt;}
.y12{bottom:636.747600pt;}
.y11{bottom:652.747600pt;}
.y10{bottom:668.747600pt;}
.yf{bottom:684.747600pt;}
.ye{bottom:700.747600pt;}
.yd{bottom:716.747600pt;}
.yc{bottom:732.747600pt;}
.y9{bottom:748.747600pt;}
.yb{bottom:764.747600pt;}
.ya{bottom:780.747600pt;}
.y34{bottom:848.272000pt;}
.y36{bottom:912.652533pt;}
.y38{bottom:912.803733pt;}
.y35{bottom:935.319200pt;}
.y37{bottom:935.470400pt;}
.y3a{bottom:981.155733pt;}
.y39{bottom:1045.161067pt;}
.y5{bottom:1104.588667pt;}
.y8{bottom:1105.464533pt;}
.y7{bottom:1106.132533pt;}
.y6{bottom:1124.360533pt;}
.y4{bottom:1124.588667pt;}
.y3{bottom:1144.588667pt;}
.y2{bottom:1164.588667pt;}
.y1{bottom:1184.588667pt;}
.hd{height:30.508800pt;}
.h8{height:37.057292pt;}
.ha{height:40.000000pt;}
.he{height:40.472405pt;}
.h9{height:42.885333pt;}
.h2{height:44.800000pt;}
.hf{height:50.590532pt;}
.hb{height:58.112000pt;}
.h3{height:63.974400pt;}
.h4{height:161.889620pt;}
.h6{height:163.520000pt;}
.hc{height:173.184000pt;}
.h5{height:199.124192pt;}
.h7{height:230.080122pt;}
.h1{height:1198.000000pt;}
.h0{height:1198.110667pt;}
.w0{width:1020.472000pt;}
.w1{width:1020.666667pt;}
.x1{left:-37.795333pt;}
.x0{left:0.000000pt;}
.x2{left:27.440267pt;}
.x3{left:52.849200pt;}
.x9{left:56.688800pt;}
.x7{left:58.057333pt;}
.x4{left:66.075867pt;}
.xa{left:75.586267pt;}
.x5{left:79.302533pt;}
.xb{left:92.471333pt;}
.x8{left:102.848800pt;}
.x6{left:125.570800pt;}
.xd{left:371.588000pt;}
.xf{left:377.578667pt;}
.xe{left:390.481333pt;}
.xc{left:536.246667pt;}
.x10{left:686.614133pt;}
.x11{left:705.507467pt;}
.x12{left:769.668400pt;}
.x13{left:774.841600pt;}
.x14{left:780.014800pt;}
}




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