
    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_43323cd7c7080d233d3122eb.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_a4838f268c80e693fe96fbda.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_9d95aa6e166d1b313817e94d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_a4838f268c80e693fe96fbda.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_b783db052ba917c964d12c34.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f1d2a62d847fa9c2a1a0c38d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ebda49485978cadf22fcb6df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ecf9dbef4aec17a212551f8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ef55d69488522ab2c8ee277d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bbe71ea844afa341dd7e3f50.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7955e401bd7dbf272c684a84.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3f07a02f6bb17cd9686051e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;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_ebf494d5adea22a9acd01fbd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903000;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_f78438d84f4f9f20c858f0f7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.913086;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_b4c4a2ac4fbaec27182b5df8.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_74c7cdea8a7b53b2e7c16de9.woff2')format("woff");}.ff10{font-family:ff10;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;}
.mc{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);}
.m8{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,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.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m3{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.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);}
.m5{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);}
.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);}
.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);}
.ma{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);}
.mb{transform:matrix(0.312500,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,-0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.267200px;}
.v2{vertical-align:216.000000px;}
.ls7{letter-spacing:-5.520000px;}
.ls8{letter-spacing:-3.450000px;}
.ls5{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.620000px;}
.ls3{letter-spacing:-1.320000px;}
.ls4{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.360000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls0{letter-spacing:1.512000px;}
.ls6{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;}
}
.ws8{word-spacing:-90.630300px;}
.ws2{word-spacing:-29.670000px;}
.ws1{word-spacing:-27.600000px;}
.ws3c{word-spacing:-25.200000px;}
.ws3{word-spacing:-15.120000px;}
.ws32{word-spacing:-2.820000px;}
.ws19{word-spacing:-2.520000px;}
.ws27{word-spacing:-2.280000px;}
.ws22{word-spacing:-2.160000px;}
.ws33{word-spacing:-1.860000px;}
.ws3f{word-spacing:-1.794000px;}
.ws20{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.500000px;}
.ws4b{word-spacing:-1.320000px;}
.ws4f{word-spacing:-1.260000px;}
.ws34{word-spacing:-1.200000px;}
.wse{word-spacing:-1.140000px;}
.ws28{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.792000px;}
.ws17{word-spacing:-0.780000px;}
.ws4c{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.420000px;}
.ws26{word-spacing:-0.240000px;}
.ws5{word-spacing:-0.180000px;}
.ws7{word-spacing:0.000000px;}
.ws44{word-spacing:0.180000px;}
.ws4{word-spacing:0.300000px;}
.ws30{word-spacing:0.360000px;}
.ws1f{word-spacing:0.420000px;}
.ws4d{word-spacing:0.540000px;}
.ws47{word-spacing:0.600000px;}
.ws16{word-spacing:1.020000px;}
.ws3a{word-spacing:1.140000px;}
.ws9{word-spacing:1.380000px;}
.ws51{word-spacing:1.620000px;}
.ws2c{word-spacing:1.740000px;}
.ws2a{word-spacing:1.980000px;}
.ws1d{word-spacing:2.100000px;}
.ws36{word-spacing:2.160000px;}
.ws42{word-spacing:2.220000px;}
.ws4e{word-spacing:2.340000px;}
.wsa{word-spacing:2.460000px;}
.ws23{word-spacing:2.760000px;}
.ws24{word-spacing:3.420000px;}
.ws3d{word-spacing:3.450000px;}
.ws43{word-spacing:3.600000px;}
.ws10{word-spacing:3.840000px;}
.ws35{word-spacing:4.200000px;}
.ws45{word-spacing:4.440000px;}
.ws12{word-spacing:4.620000px;}
.ws29{word-spacing:4.920000px;}
.ws14{word-spacing:4.980000px;}
.ws39{word-spacing:5.340000px;}
.ws50{word-spacing:5.400000px;}
.ws46{word-spacing:5.460000px;}
.ws3e{word-spacing:5.520000px;}
.ws2d{word-spacing:6.180000px;}
.ws1e{word-spacing:6.480000px;}
.ws2b{word-spacing:6.600000px;}
.ws38{word-spacing:7.080000px;}
.wsc{word-spacing:7.260000px;}
.ws40{word-spacing:7.620000px;}
.wsb{word-spacing:8.340000px;}
.ws1b{word-spacing:8.400000px;}
.ws25{word-spacing:9.300000px;}
.ws11{word-spacing:9.360000px;}
.ws49{word-spacing:9.720000px;}
.ws1a{word-spacing:9.780000px;}
.ws2e{word-spacing:9.900000px;}
.ws18{word-spacing:10.080000px;}
.ws13{word-spacing:10.320000px;}
.ws48{word-spacing:10.380000px;}
.ws1c{word-spacing:11.040000px;}
.ws15{word-spacing:12.120000px;}
.wsf{word-spacing:12.300000px;}
.ws4a{word-spacing:12.540000px;}
.ws21{word-spacing:13.920000px;}
.ws37{word-spacing:14.940000px;}
.ws6{word-spacing:199.656000px;}
.ws0{word-spacing:3399.428400px;}
._2{margin-left:-185.997600px;}
._10{margin-left:-29.037456px;}
._8{margin-left:-16.056000px;}
._12{margin-left:-12.696000px;}
._11{margin-left:-10.032000px;}
._14{margin-left:-7.038000px;}
._d{margin-left:-5.748000px;}
._b{margin-left:-4.198800px;}
._e{margin-left:-2.526864px;}
._9{margin-left:-1.303200px;}
._c{width:1.249344px;}
._a{width:2.459328px;}
._f{width:3.480624px;}
._13{width:5.520000px;}
._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;}
.fc3{color:transparent;}
.fc2{color:rgb(39,91,155);}
.fc1{color:rgb(207,45,43);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:37.800000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:62.116583px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:77.645768px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:138.000000px;}
.fs2{font-size:248.466333px;}
.fs8{font-size:252.000000px;}
.fs6{font-size:264.000000px;}
.fs3{font-size:305.613528px;}
.fs4{font-size:362.521200px;}
.fsa{font-size:534.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:68.797050px;}
.y32{bottom:69.403950px;}
.y4a{bottom:82.131600px;}
.y4b{bottom:82.136100px;}
.y56{bottom:86.797050px;}
.y31{bottom:87.403950px;}
.y55{bottom:104.797050px;}
.y30{bottom:105.403950px;}
.y54{bottom:122.797050px;}
.y2f{bottom:123.403950px;}
.y49{bottom:125.636100px;}
.y53{bottom:140.797050px;}
.y2e{bottom:141.403950px;}
.y52{bottom:158.797050px;}
.y2d{bottom:159.403950px;}
.y4c{bottom:163.372050px;}
.y48{bottom:169.136100px;}
.y51{bottom:176.797050px;}
.y2c{bottom:177.403950px;}
.y50{bottom:194.797050px;}
.y2b{bottom:195.403950px;}
.y47{bottom:212.636100px;}
.y4f{bottom:212.797050px;}
.y2a{bottom:213.403950px;}
.y4e{bottom:230.797050px;}
.y29{bottom:231.403950px;}
.y4d{bottom:248.797050px;}
.y28{bottom:249.403950px;}
.y44{bottom:266.797050px;}
.y27{bottom:267.403950px;}
.y43{bottom:284.797050px;}
.y26{bottom:285.403950px;}
.y42{bottom:302.797050px;}
.y25{bottom:303.403950px;}
.y41{bottom:320.797050px;}
.y24{bottom:321.403950px;}
.y40{bottom:338.797050px;}
.y23{bottom:339.403950px;}
.y3f{bottom:356.797050px;}
.y22{bottom:357.403950px;}
.y3e{bottom:374.797050px;}
.y21{bottom:375.403950px;}
.y3d{bottom:392.797050px;}
.y20{bottom:393.403950px;}
.y3c{bottom:410.797050px;}
.y1f{bottom:411.403950px;}
.y3b{bottom:428.797050px;}
.y1e{bottom:429.403950px;}
.y3a{bottom:446.797050px;}
.y1d{bottom:447.403950px;}
.y1c{bottom:465.403950px;}
.y45{bottom:469.795500px;}
.y1b{bottom:483.403950px;}
.y1a{bottom:501.403950px;}
.y19{bottom:519.403950px;}
.y18{bottom:537.403950px;}
.y17{bottom:555.403950px;}
.y16{bottom:573.403950px;}
.y15{bottom:591.403950px;}
.y14{bottom:609.403950px;}
.y13{bottom:627.403950px;}
.y12{bottom:645.403950px;}
.y11{bottom:663.403950px;}
.y10{bottom:681.403950px;}
.yf{bottom:699.403950px;}
.ye{bottom:717.403950px;}
.yd{bottom:735.403950px;}
.yc{bottom:753.403950px;}
.yb{bottom:771.403950px;}
.y8{bottom:789.403950px;}
.ya{bottom:807.403950px;}
.y9{bottom:825.403950px;}
.y33{bottom:923.372100px;}
.y35{bottom:1025.665200px;}
.y37{bottom:1025.841300px;}
.y34{bottom:1051.171200px;}
.y36{bottom:1051.341300px;}
.y39{bottom:1102.743150px;}
.y38{bottom:1174.743150px;}
.y5{bottom:1242.662250px;}
.y46{bottom:1242.820950px;}
.y7{bottom:1244.399100px;}
.y6{bottom:1264.905600px;}
.y4{bottom:1265.162250px;}
.y3{bottom:1287.662250px;}
.y2{bottom:1310.162250px;}
.y1{bottom:1332.662250px;}
.hb{height:34.322400px;}
.h7{height:41.689453px;}
.h8{height:45.000000px;}
.h10{height:45.531456px;}
.h2{height:50.400000px;}
.h11{height:56.914348px;}
.h9{height:65.376000px;}
.h3{height:71.971200px;}
.he{height:98.532000px;}
.hd{height:99.636000px;}
.h4{height:182.125822px;}
.hc{height:183.960000px;}
.ha{height:194.832000px;}
.h5{height:224.014716px;}
.h6{height:258.840137px;}
.hf{height:382.248047px;}
.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:26.892450px;}
.x6{left:58.064100px;}
.x3{left:59.455350px;}
.x8{left:63.771900px;}
.x4{left:74.335350px;}
.x9{left:85.026900px;}
.x5{left:89.215350px;}
.xa{left:104.339850px;}
.x7{left:108.816900px;}
.xf{left:141.919800px;}
.xd{left:418.100100px;}
.x10{left:425.551050px;}
.xc{left:439.370100px;}
.x11{left:462.313950px;}
.xe{left:470.190900px;}
.x13{left:574.774200px;}
.xb{left:603.277500px;}
.x12{left:614.148000px;}
.x14{left:697.677150px;}
.x15{left:772.440900px;}
.x16{left:793.695900px;}
.x17{left:826.671000px;}
.x18{left:832.490700px;}
.x19{left:838.310550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.126400pt;}
.v2{vertical-align:192.000000pt;}
.ls7{letter-spacing:-4.906667pt;}
.ls8{letter-spacing:-3.066667pt;}
.ls5{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.440000pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls0{letter-spacing:1.344000pt;}
.ls6{letter-spacing:22.400000pt;}
.ws8{word-spacing:-80.560267pt;}
.ws2{word-spacing:-26.373333pt;}
.ws1{word-spacing:-24.533333pt;}
.ws3c{word-spacing:-22.400000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws32{word-spacing:-2.506667pt;}
.ws19{word-spacing:-2.240000pt;}
.ws27{word-spacing:-2.026667pt;}
.ws22{word-spacing:-1.920000pt;}
.ws33{word-spacing:-1.653333pt;}
.ws3f{word-spacing:-1.594667pt;}
.ws20{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.333333pt;}
.ws4b{word-spacing:-1.173333pt;}
.ws4f{word-spacing:-1.120000pt;}
.ws34{word-spacing:-1.066667pt;}
.wse{word-spacing:-1.013333pt;}
.ws28{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.704000pt;}
.ws17{word-spacing:-0.693333pt;}
.ws4c{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.373333pt;}
.ws26{word-spacing:-0.213333pt;}
.ws5{word-spacing:-0.160000pt;}
.ws7{word-spacing:0.000000pt;}
.ws44{word-spacing:0.160000pt;}
.ws4{word-spacing:0.266667pt;}
.ws30{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.373333pt;}
.ws4d{word-spacing:0.480000pt;}
.ws47{word-spacing:0.533333pt;}
.ws16{word-spacing:0.906667pt;}
.ws3a{word-spacing:1.013333pt;}
.ws9{word-spacing:1.226667pt;}
.ws51{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.546667pt;}
.ws2a{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.866667pt;}
.ws36{word-spacing:1.920000pt;}
.ws42{word-spacing:1.973333pt;}
.ws4e{word-spacing:2.080000pt;}
.wsa{word-spacing:2.186667pt;}
.ws23{word-spacing:2.453333pt;}
.ws24{word-spacing:3.040000pt;}
.ws3d{word-spacing:3.066667pt;}
.ws43{word-spacing:3.200000pt;}
.ws10{word-spacing:3.413333pt;}
.ws35{word-spacing:3.733333pt;}
.ws45{word-spacing:3.946667pt;}
.ws12{word-spacing:4.106667pt;}
.ws29{word-spacing:4.373333pt;}
.ws14{word-spacing:4.426667pt;}
.ws39{word-spacing:4.746667pt;}
.ws50{word-spacing:4.800000pt;}
.ws46{word-spacing:4.853333pt;}
.ws3e{word-spacing:4.906667pt;}
.ws2d{word-spacing:5.493333pt;}
.ws1e{word-spacing:5.760000pt;}
.ws2b{word-spacing:5.866667pt;}
.ws38{word-spacing:6.293333pt;}
.wsc{word-spacing:6.453333pt;}
.ws40{word-spacing:6.773333pt;}
.wsb{word-spacing:7.413333pt;}
.ws1b{word-spacing:7.466667pt;}
.ws25{word-spacing:8.266667pt;}
.ws11{word-spacing:8.320000pt;}
.ws49{word-spacing:8.640000pt;}
.ws1a{word-spacing:8.693333pt;}
.ws2e{word-spacing:8.800000pt;}
.ws18{word-spacing:8.960000pt;}
.ws13{word-spacing:9.173333pt;}
.ws48{word-spacing:9.226667pt;}
.ws1c{word-spacing:9.813333pt;}
.ws15{word-spacing:10.773333pt;}
.wsf{word-spacing:10.933333pt;}
.ws4a{word-spacing:11.146667pt;}
.ws21{word-spacing:12.373333pt;}
.ws37{word-spacing:13.280000pt;}
.ws6{word-spacing:177.472000pt;}
.ws0{word-spacing:3021.714133pt;}
._2{margin-left:-165.331200pt;}
._10{margin-left:-25.811072pt;}
._8{margin-left:-14.272000pt;}
._12{margin-left:-11.285333pt;}
._11{margin-left:-8.917333pt;}
._14{margin-left:-6.256000pt;}
._d{margin-left:-5.109333pt;}
._b{margin-left:-3.732267pt;}
._e{margin-left:-2.246101pt;}
._9{margin-left:-1.158400pt;}
._c{width:1.110528pt;}
._a{width:2.186069pt;}
._f{width:3.093888pt;}
._13{width:4.906667pt;}
._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;}
.fs7{font-size:33.600000pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:55.214741pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:69.018460pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:122.666667pt;}
.fs2{font-size:220.858963pt;}
.fs8{font-size:224.000000pt;}
.fs6{font-size:234.666667pt;}
.fs3{font-size:271.656469pt;}
.fs4{font-size:322.241067pt;}
.fsa{font-size:474.666667pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:61.152933pt;}
.y32{bottom:61.692400pt;}
.y4a{bottom:73.005867pt;}
.y4b{bottom:73.009867pt;}
.y56{bottom:77.152933pt;}
.y31{bottom:77.692400pt;}
.y55{bottom:93.152933pt;}
.y30{bottom:93.692400pt;}
.y54{bottom:109.152933pt;}
.y2f{bottom:109.692400pt;}
.y49{bottom:111.676533pt;}
.y53{bottom:125.152933pt;}
.y2e{bottom:125.692400pt;}
.y52{bottom:141.152933pt;}
.y2d{bottom:141.692400pt;}
.y4c{bottom:145.219600pt;}
.y48{bottom:150.343200pt;}
.y51{bottom:157.152933pt;}
.y2c{bottom:157.692400pt;}
.y50{bottom:173.152933pt;}
.y2b{bottom:173.692400pt;}
.y47{bottom:189.009867pt;}
.y4f{bottom:189.152933pt;}
.y2a{bottom:189.692400pt;}
.y4e{bottom:205.152933pt;}
.y29{bottom:205.692400pt;}
.y4d{bottom:221.152933pt;}
.y28{bottom:221.692400pt;}
.y44{bottom:237.152933pt;}
.y27{bottom:237.692400pt;}
.y43{bottom:253.152933pt;}
.y26{bottom:253.692400pt;}
.y42{bottom:269.152933pt;}
.y25{bottom:269.692400pt;}
.y41{bottom:285.152933pt;}
.y24{bottom:285.692400pt;}
.y40{bottom:301.152933pt;}
.y23{bottom:301.692400pt;}
.y3f{bottom:317.152933pt;}
.y22{bottom:317.692400pt;}
.y3e{bottom:333.152933pt;}
.y21{bottom:333.692400pt;}
.y3d{bottom:349.152933pt;}
.y20{bottom:349.692400pt;}
.y3c{bottom:365.152933pt;}
.y1f{bottom:365.692400pt;}
.y3b{bottom:381.152933pt;}
.y1e{bottom:381.692400pt;}
.y3a{bottom:397.152933pt;}
.y1d{bottom:397.692400pt;}
.y1c{bottom:413.692400pt;}
.y45{bottom:417.596000pt;}
.y1b{bottom:429.692400pt;}
.y1a{bottom:445.692400pt;}
.y19{bottom:461.692400pt;}
.y18{bottom:477.692400pt;}
.y17{bottom:493.692400pt;}
.y16{bottom:509.692400pt;}
.y15{bottom:525.692400pt;}
.y14{bottom:541.692400pt;}
.y13{bottom:557.692400pt;}
.y12{bottom:573.692400pt;}
.y11{bottom:589.692400pt;}
.y10{bottom:605.692400pt;}
.yf{bottom:621.692400pt;}
.ye{bottom:637.692400pt;}
.yd{bottom:653.692400pt;}
.yc{bottom:669.692400pt;}
.yb{bottom:685.692400pt;}
.y8{bottom:701.692400pt;}
.ya{bottom:717.692400pt;}
.y9{bottom:733.692400pt;}
.y33{bottom:820.775200pt;}
.y35{bottom:911.702400pt;}
.y37{bottom:911.858933pt;}
.y34{bottom:934.374400pt;}
.y36{bottom:934.525600pt;}
.y39{bottom:980.216133pt;}
.y38{bottom:1044.216133pt;}
.y5{bottom:1104.588667pt;}
.y46{bottom:1104.729733pt;}
.y7{bottom:1106.132533pt;}
.y6{bottom:1124.360533pt;}
.y4{bottom:1124.588667pt;}
.y3{bottom:1144.588667pt;}
.y2{bottom:1164.588667pt;}
.y1{bottom:1184.588667pt;}
.hb{height:30.508800pt;}
.h7{height:37.057292pt;}
.h8{height:40.000000pt;}
.h10{height:40.472405pt;}
.h2{height:44.800000pt;}
.h11{height:50.590532pt;}
.h9{height:58.112000pt;}
.h3{height:63.974400pt;}
.he{height:87.584000pt;}
.hd{height:88.565333pt;}
.h4{height:161.889620pt;}
.hc{height:163.520000pt;}
.ha{height:173.184000pt;}
.h5{height:199.124192pt;}
.h6{height:230.080122pt;}
.hf{height:339.776042pt;}
.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:23.904400pt;}
.x6{left:51.612533pt;}
.x3{left:52.849200pt;}
.x8{left:56.686133pt;}
.x4{left:66.075867pt;}
.x9{left:75.579467pt;}
.x5{left:79.302533pt;}
.xa{left:92.746533pt;}
.x7{left:96.726133pt;}
.xf{left:126.150933pt;}
.xd{left:371.644533pt;}
.x10{left:378.267600pt;}
.xc{left:390.551200pt;}
.x11{left:410.945733pt;}
.xe{left:417.947467pt;}
.x13{left:510.910400pt;}
.xb{left:536.246667pt;}
.x12{left:545.909333pt;}
.x14{left:620.157467pt;}
.x15{left:686.614133pt;}
.x16{left:705.507467pt;}
.x17{left:734.818667pt;}
.x18{left:739.991733pt;}
.x19{left:745.164933pt;}
}




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