
    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_876ceb8bbdf6400a175dd29b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_4a732160500ecebad8731026.woff')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_410172466d437760681ef807.woff')format("woff");}.ff3{font-family:ff3;line-height:0.827148;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_bd5419ebb67a401075f66977.woff')format("woff");}.ff4{font-family:ff4;line-height:0.636230;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_5edf39f73b44dd854fe66ed3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.638184;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_0869baa69da6eaf428b2580b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.991211;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_1ba05652968a7488eb3b57fe.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d35de8c283dcdcf813a84a77.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_1988d78450432a9d5cef3808.woff')format("woff");}.ff9{font-family:ff9;line-height:0.697266;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_94b73b422a0f7363427640a9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.695312;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_e0fa12fdf2be1898d37c7fcc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.960449;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_a1b70981f91925fbc3346802.woff')format("woff");}.ffc{font-family:ffc;line-height:0.770533;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_946bc28f867cf834f302a0c9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_7c11312eac95947d3d49c68f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_414f155e1e265f9a6547467d.woff')format("woff");}.fff{font-family:fff;line-height:0.708008;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_216927579782f94861a215b9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.897461;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:ff11;src:url('chunks/assets/font_fdf200be9146be4c9d251f88.woff')format("woff");}.ff11{font-family:ff11;line-height:1.163086;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:ff12;src:url('chunks/assets/font_dfd264bd8227f84ce32358e4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.850586;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:ff13;src:url('chunks/assets/font_513b03cdf7ab4d0f9565867c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.697266;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:ff14;src:url('chunks/assets/font_d536f6ec04ccd523eb17d58d.woff')format("woff");}.ff14{font-family:ff14;line-height:1.163086;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:ff15;src:url('chunks/assets/font_6300e6eae10f0b58864646dd.woff')format("woff");}.ff15{font-family:ff15;line-height:0.991211;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:ff16;src:url('chunks/assets/font_bd5419ebb67a401075f66977.woff')format("woff");}.ff16{font-family:ff16;line-height:0.636230;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:ff17;src:url('chunks/assets/font_410172466d437760681ef807.woff')format("woff");}.ff17{font-family:ff17;line-height:0.827148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.265633,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.265633,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.265633,0.000000,-0.064694,0.241484,0,0);}
.m3{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.157200px;}
.ls2{letter-spacing:-1.656000px;}
.ls14{letter-spacing:-1.122000px;}
.ls10{letter-spacing:-0.846000px;}
.ls12{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.298800px;}
.ls11{letter-spacing:-0.280200px;}
.lsf{letter-spacing:-0.262800px;}
.ls8{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.000003px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.204600px;}
.lsb{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.432000px;}
.ls13{letter-spacing:1.452000px;}
.ls0{letter-spacing:6.480000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.036000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.999997px;}
.wsf{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.737200px;}
.ws0{word-spacing:-17.052000px;}
.ws1{word-spacing:-11.936400px;}
.ws4{word-spacing:-8.640000px;}
.ws17{word-spacing:-4.248000px;}
.ws24{word-spacing:-4.026000px;}
.ws18{word-spacing:-3.672000px;}
.ws25{word-spacing:-1.452000px;}
.ws1d{word-spacing:-0.924000px;}
.ws10{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.648000px;}
.ws1c{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.096000px;}
.ws3{word-spacing:0.000000px;}
.ws2d{word-spacing:0.132000px;}
.ws1a{word-spacing:1.440000px;}
.ws1e{word-spacing:3.036000px;}
.ws1b{word-spacing:4.032000px;}
.ws22{word-spacing:4.158000px;}
.ws29{word-spacing:4.224000px;}
.ws21{word-spacing:4.554000px;}
.ws2a{word-spacing:4.752000px;}
.ws20{word-spacing:5.148000px;}
.ws15{word-spacing:5.544000px;}
.ws23{word-spacing:5.808000px;}
.ws11{word-spacing:6.408000px;}
.ws1f{word-spacing:7.128000px;}
.ws13{word-spacing:8.496000px;}
.ws27{word-spacing:8.580000px;}
.ws2b{word-spacing:9.636000px;}
.ws26{word-spacing:9.702000px;}
.ws19{word-spacing:10.800000px;}
.ws2c{word-spacing:10.824000px;}
.ws16{word-spacing:10.872000px;}
.ws28{word-spacing:20.262000px;}
.ws12{word-spacing:20.304000px;}
._0{margin-left:-27.990099px;}
._9{margin-left:-10.348800px;}
._8{margin-left:-8.683200px;}
._7{margin-left:-7.190400px;}
._d{margin-left:-6.091920px;}
._6{margin-left:-4.857120px;}
._2{margin-left:-3.643200px;}
._5{margin-left:-2.500560px;}
._4{margin-left:-1.407600px;}
._3{width:1.291680px;}
._c{width:2.784240px;}
._a{width:6.774540px;}
._b{width:7.843620px;}
._1{width:932.691000px;}
.fc4{color:rgb(166,27,63);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(244,244,244);}
.fsb{font-size:36.000000px;}
.fs5{font-size:58.800000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fsd{font-size:60.000000px;}
.fs11{font-size:66.000000px;}
.fse{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fsc{font-size:74.538968px;}
.fs4{font-size:84.000000px;}
.fs10{font-size:84.240000px;}
.fs6{font-size:96.000000px;}
.fs0{font-size:109.498200px;}
.fs1{font-size:109.507800px;}
.fsa{font-size:144.000000px;}
.fs3{font-size:165.600000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:67.366650px;}
.y28{bottom:68.040000px;}
.y26{bottom:70.740000px;}
.y27{bottom:87.840000px;}
.ye{bottom:89.280000px;}
.y46{bottom:122.760000px;}
.y4b{bottom:130.500000px;}
.y25{bottom:146.694000px;}
.y24{bottom:166.494000px;}
.y4d{bottom:175.680000px;}
.y23{bottom:186.294000px;}
.y6{bottom:190.488150px;}
.y22{bottom:206.094000px;}
.y5{bottom:219.940050px;}
.y70{bottom:231.739650px;}
.y6f{bottom:252.739650px;}
.y3a{bottom:266.790000px;}
.y6e{bottom:273.739650px;}
.y4{bottom:273.926700px;}
.y3c{bottom:288.390000px;}
.y6d{bottom:294.739650px;}
.y3{bottom:303.378750px;}
.y43{bottom:309.990000px;}
.y6c{bottom:315.739650px;}
.y41{bottom:331.590000px;}
.y6b{bottom:336.739650px;}
.y6a{bottom:357.739650px;}
.y37{bottom:368.130000px;}
.y35{bottom:374.250000px;}
.y69{bottom:378.739650px;}
.y34{bottom:395.895000px;}
.y68{bottom:412.495650px;}
.y33{bottom:418.035000px;}
.y4f{bottom:423.615000px;}
.y67{bottom:436.495650px;}
.y31{bottom:439.635000px;}
.y51{bottom:445.935000px;}
.y66{bottom:457.495650px;}
.y65{bottom:478.495650px;}
.y4a{bottom:482.835000px;}
.y2d{bottom:498.855000px;}
.y64{bottom:499.495650px;}
.y20{bottom:500.115000px;}
.y21{bottom:502.602000px;}
.y45{bottom:504.435000px;}
.y63{bottom:520.495650px;}
.y1f{bottom:521.715000px;}
.y2c{bottom:522.075000px;}
.y3f{bottom:526.035000px;}
.y62{bottom:541.495650px;}
.y1e{bottom:543.315000px;}
.y2b{bottom:545.295000px;}
.y3d{bottom:547.635000px;}
.y61{bottom:562.495650px;}
.y2a{bottom:568.725000px;}
.y32{bottom:569.085000px;}
.y39{bottom:569.265000px;}
.y60{bottom:583.495650px;}
.y3b{bottom:590.865000px;}
.y29{bottom:591.945000px;}
.y48{bottom:612.645000px;}
.y5f{bottom:628.495650px;}
.y44{bottom:633.885000px;}
.y5e{bottom:652.495650px;}
.y1d{bottom:659.265000px;}
.y4c{bottom:661.965000px;}
.y5d{bottom:674.995650px;}
.y38{bottom:676.185000px;}
.yc{bottom:687.911100px;}
.y5c{bottom:697.495650px;}
.y30{bottom:698.865000px;}
.y1b{bottom:703.905000px;}
.y4e{bottom:715.965000px;}
.yb{bottom:716.711100px;}
.y1c{bottom:717.405000px;}
.y5b{bottom:719.995650px;}
.y36{bottom:720.285000px;}
.y1a{bottom:738.105000px;}
.y5a{bottom:742.495650px;}
.ya{bottom:745.511100px;}
.y19{bottom:754.170000px;}
.y2f{bottom:763.710000px;}
.y59{bottom:764.995650px;}
.y18{bottom:770.010000px;}
.y40{bottom:785.310000px;}
.y17{bottom:785.850000px;}
.y58{bottom:787.495650px;}
.y9{bottom:788.376750px;}
.y2e{bottom:795.750000px;}
.y47{bottom:798.270000px;}
.y16{bottom:801.690000px;}
.y50{bottom:806.010000px;}
.y49{bottom:807.090000px;}
.y57{bottom:809.995650px;}
.y15{bottom:817.710000px;}
.yd{bottom:831.930000px;}
.y56{bottom:832.495650px;}
.y14{bottom:833.550000px;}
.y13{bottom:849.390000px;}
.y55{bottom:854.995650px;}
.y12{bottom:865.230000px;}
.y42{bottom:871.710000px;}
.y54{bottom:877.495650px;}
.y11{bottom:881.250000px;}
.y8{bottom:882.224850px;}
.y3e{bottom:893.310000px;}
.y10{bottom:897.090000px;}
.y53{bottom:899.995650px;}
.y7{bottom:915.276900px;}
.y52{bottom:922.495650px;}
.yf{bottom:929.670000px;}
.y2{bottom:935.433150px;}
.h10{height:34.505859px;}
.h1f{height:40.472227px;}
.hb{height:41.493516px;}
.hc{height:41.593500px;}
.h13{height:42.900000px;}
.h1e{height:44.860781px;}
.h15{height:46.348594px;}
.h11{height:48.761719px;}
.h16{height:48.859242px;}
.h22{height:49.790039px;}
.h19{height:49.992188px;}
.h1d{height:50.092172px;}
.h14{height:50.378906px;}
.h18{height:50.479664px;}
.h5{height:52.376953px;}
.h12{height:52.624512px;}
.h3{height:53.015625px;}
.h21{height:54.316406px;}
.h17{height:58.943320px;}
.h1c{height:60.679688px;}
.h6{height:63.369141px;}
.hf{height:69.011719px;}
.h7{height:70.687500px;}
.h1b{height:71.613281px;}
.h1a{height:71.756508px;}
.h9{height:72.421875px;}
.h2{height:76.655460px;}
.hd{height:97.523438px;}
.h23{height:118.333163px;}
.h4{height:118.333763px;}
.h8{height:134.578125px;}
.he{height:207.035156px;}
.ha{height:1020.420000px;}
.h0{height:1020.472500px;}
.h20{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w3{width:722.879989px;}
.w2{width:722.880000px;}
.w4{width:722.965500px;}
.w1{width:723.000000px;}
.x3{left:-45.837300px;}
.x2{left:-24.237300px;}
.x0{left:0.000000px;}
.x1{left:65.563650px;}
.x40{left:85.039350px;}
.x5{left:89.291250px;}
.x4{left:93.543300px;}
.x8{left:108.935989px;}
.x7{left:110.915989px;}
.xd{left:111.928500px;}
.x22{left:126.215989px;}
.x6{left:131.795989px;}
.x1c{left:142.775989px;}
.x1d{left:145.655989px;}
.x29{left:199.334989px;}
.x26{left:202.934989px;}
.x3d{left:227.054989px;}
.x2b{left:244.334989px;}
.x18{left:246.314989px;}
.x3f{left:269.174989px;}
.x20{left:271.154989px;}
.xc{left:281.783100px;}
.x1a{left:292.574989px;}
.x15{left:297.434989px;}
.xa{left:309.134989px;}
.x3e{left:317.414989px;}
.x38{left:319.214989px;}
.x3a{left:335.804989px;}
.x17{left:338.864989px;}
.x30{left:341.924989px;}
.x31{left:343.184989px;}
.x1f{left:350.024989px;}
.x24{left:351.284989px;}
.x19{left:354.344989px;}
.x13{left:355.964989px;}
.x32{left:357.404989px;}
.x9{left:359.384989px;}
.xb{left:360.824989px;}
.x36{left:365.324989px;}
.x27{left:369.464989px;}
.x37{left:384.584989px;}
.x1e{left:389.084989px;}
.x35{left:399.704989px;}
.x14{left:404.924989px;}
.x33{left:416.264989px;}
.x34{left:420.224989px;}
.x1b{left:424.004989px;}
.x39{left:458.924989px;}
.x21{left:477.149989px;}
.x3b{left:504.149989px;}
.x2c{left:525.389989px;}
.x25{left:559.589989px;}
.x3c{left:582.629989px;}
.x28{left:584.609989px;}
.x2f{left:585.869989px;}
.x23{left:587.129989px;}
.x2e{left:588.389989px;}
.x2a{left:590.369989px;}
.x16{left:591.809989px;}
.x11{left:593.069989px;}
.x12{left:594.329989px;}
.x10{left:596.309989px;}
.xf{left:599.039989px;}
.x2d{left:602.819989px;}
.xe{left:611.999989px;}
.x42{left:736.525050px;}
.x41{left:758.125050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.473067pt;}
.ls2{letter-spacing:-1.472000pt;}
.ls14{letter-spacing:-0.997333pt;}
.ls10{letter-spacing:-0.752000pt;}
.ls12{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.265600pt;}
.ls11{letter-spacing:-0.249067pt;}
.lsf{letter-spacing:-0.233600pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.000003pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.181867pt;}
.lsb{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.384000pt;}
.ls13{letter-spacing:1.290667pt;}
.ls0{letter-spacing:5.760000pt;}
.wse{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.032000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.999997pt;}
.wsf{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.766400pt;}
.ws0{word-spacing:-15.157333pt;}
.ws1{word-spacing:-10.610133pt;}
.ws4{word-spacing:-7.680000pt;}
.ws17{word-spacing:-3.776000pt;}
.ws24{word-spacing:-3.578667pt;}
.ws18{word-spacing:-3.264000pt;}
.ws25{word-spacing:-1.290667pt;}
.ws1d{word-spacing:-0.821333pt;}
.ws10{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.576000pt;}
.ws1c{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.085333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.117333pt;}
.ws1a{word-spacing:1.280000pt;}
.ws1e{word-spacing:2.698667pt;}
.ws1b{word-spacing:3.584000pt;}
.ws22{word-spacing:3.696000pt;}
.ws29{word-spacing:3.754667pt;}
.ws21{word-spacing:4.048000pt;}
.ws2a{word-spacing:4.224000pt;}
.ws20{word-spacing:4.576000pt;}
.ws15{word-spacing:4.928000pt;}
.ws23{word-spacing:5.162667pt;}
.ws11{word-spacing:5.696000pt;}
.ws1f{word-spacing:6.336000pt;}
.ws13{word-spacing:7.552000pt;}
.ws27{word-spacing:7.626667pt;}
.ws2b{word-spacing:8.565333pt;}
.ws26{word-spacing:8.624000pt;}
.ws19{word-spacing:9.600000pt;}
.ws2c{word-spacing:9.621333pt;}
.ws16{word-spacing:9.664000pt;}
.ws28{word-spacing:18.010667pt;}
.ws12{word-spacing:18.048000pt;}
._0{margin-left:-24.880088pt;}
._9{margin-left:-9.198933pt;}
._8{margin-left:-7.718400pt;}
._7{margin-left:-6.391467pt;}
._d{margin-left:-5.415040pt;}
._6{margin-left:-4.317440pt;}
._2{margin-left:-3.238400pt;}
._5{margin-left:-2.222720pt;}
._4{margin-left:-1.251200pt;}
._3{width:1.148160pt;}
._c{width:2.474880pt;}
._a{width:6.021813pt;}
._b{width:6.972107pt;}
._1{width:829.058667pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:52.266667pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fsd{font-size:53.333333pt;}
.fs11{font-size:58.666667pt;}
.fse{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fsc{font-size:66.256861pt;}
.fs4{font-size:74.666667pt;}
.fs10{font-size:74.880000pt;}
.fs6{font-size:85.333333pt;}
.fs0{font-size:97.331733pt;}
.fs1{font-size:97.340267pt;}
.fsa{font-size:128.000000pt;}
.fs3{font-size:147.200000pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:59.881467pt;}
.y28{bottom:60.480000pt;}
.y26{bottom:62.880000pt;}
.y27{bottom:78.080000pt;}
.ye{bottom:79.360000pt;}
.y46{bottom:109.120000pt;}
.y4b{bottom:116.000000pt;}
.y25{bottom:130.394667pt;}
.y24{bottom:147.994667pt;}
.y4d{bottom:156.160000pt;}
.y23{bottom:165.594667pt;}
.y6{bottom:169.322800pt;}
.y22{bottom:183.194667pt;}
.y5{bottom:195.502267pt;}
.y70{bottom:205.990800pt;}
.y6f{bottom:224.657467pt;}
.y3a{bottom:237.146667pt;}
.y6e{bottom:243.324133pt;}
.y4{bottom:243.490400pt;}
.y3c{bottom:256.346667pt;}
.y6d{bottom:261.990800pt;}
.y3{bottom:269.670000pt;}
.y43{bottom:275.546667pt;}
.y6c{bottom:280.657467pt;}
.y41{bottom:294.746667pt;}
.y6b{bottom:299.324133pt;}
.y6a{bottom:317.990800pt;}
.y37{bottom:327.226667pt;}
.y35{bottom:332.666667pt;}
.y69{bottom:336.657467pt;}
.y34{bottom:351.906667pt;}
.y68{bottom:366.662800pt;}
.y33{bottom:371.586667pt;}
.y4f{bottom:376.546667pt;}
.y67{bottom:387.996133pt;}
.y31{bottom:390.786667pt;}
.y51{bottom:396.386667pt;}
.y66{bottom:406.662800pt;}
.y65{bottom:425.329467pt;}
.y4a{bottom:429.186667pt;}
.y2d{bottom:443.426667pt;}
.y64{bottom:443.996133pt;}
.y20{bottom:444.546667pt;}
.y21{bottom:446.757333pt;}
.y45{bottom:448.386667pt;}
.y63{bottom:462.662800pt;}
.y1f{bottom:463.746667pt;}
.y2c{bottom:464.066667pt;}
.y3f{bottom:467.586667pt;}
.y62{bottom:481.329467pt;}
.y1e{bottom:482.946667pt;}
.y2b{bottom:484.706667pt;}
.y3d{bottom:486.786667pt;}
.y61{bottom:499.996133pt;}
.y2a{bottom:505.533333pt;}
.y32{bottom:505.853333pt;}
.y39{bottom:506.013333pt;}
.y60{bottom:518.662800pt;}
.y3b{bottom:525.213333pt;}
.y29{bottom:526.173333pt;}
.y48{bottom:544.573333pt;}
.y5f{bottom:558.662800pt;}
.y44{bottom:563.453333pt;}
.y5e{bottom:579.996133pt;}
.y1d{bottom:586.013333pt;}
.y4c{bottom:588.413333pt;}
.y5d{bottom:599.996133pt;}
.y38{bottom:601.053333pt;}
.yc{bottom:611.476533pt;}
.y5c{bottom:619.996133pt;}
.y30{bottom:621.213333pt;}
.y1b{bottom:625.693333pt;}
.y4e{bottom:636.413333pt;}
.yb{bottom:637.076533pt;}
.y1c{bottom:637.693333pt;}
.y5b{bottom:639.996133pt;}
.y36{bottom:640.253333pt;}
.y1a{bottom:656.093333pt;}
.y5a{bottom:659.996133pt;}
.ya{bottom:662.676533pt;}
.y19{bottom:670.373333pt;}
.y2f{bottom:678.853333pt;}
.y59{bottom:679.996133pt;}
.y18{bottom:684.453333pt;}
.y40{bottom:698.053333pt;}
.y17{bottom:698.533333pt;}
.y58{bottom:699.996133pt;}
.y9{bottom:700.779333pt;}
.y2e{bottom:707.333333pt;}
.y47{bottom:709.573333pt;}
.y16{bottom:712.613333pt;}
.y50{bottom:716.453333pt;}
.y49{bottom:717.413333pt;}
.y57{bottom:719.996133pt;}
.y15{bottom:726.853333pt;}
.yd{bottom:739.493333pt;}
.y56{bottom:739.996133pt;}
.y14{bottom:740.933333pt;}
.y13{bottom:755.013333pt;}
.y55{bottom:759.996133pt;}
.y12{bottom:769.093333pt;}
.y42{bottom:774.853333pt;}
.y54{bottom:779.996133pt;}
.y11{bottom:783.333333pt;}
.y8{bottom:784.199867pt;}
.y3e{bottom:794.053333pt;}
.y10{bottom:797.413333pt;}
.y53{bottom:799.996133pt;}
.y7{bottom:813.579467pt;}
.y52{bottom:819.996133pt;}
.yf{bottom:826.373333pt;}
.y2{bottom:831.496133pt;}
.h10{height:30.671875pt;}
.h1f{height:35.975313pt;}
.hb{height:36.883125pt;}
.hc{height:36.972000pt;}
.h13{height:38.133333pt;}
.h1e{height:39.876250pt;}
.h15{height:41.198750pt;}
.h11{height:43.343750pt;}
.h16{height:43.430437pt;}
.h22{height:44.257812pt;}
.h19{height:44.437500pt;}
.h1d{height:44.526375pt;}
.h14{height:44.781250pt;}
.h18{height:44.870812pt;}
.h5{height:46.557292pt;}
.h12{height:46.777344pt;}
.h3{height:47.125000pt;}
.h21{height:48.281250pt;}
.h17{height:52.394062pt;}
.h1c{height:53.937500pt;}
.h6{height:56.328125pt;}
.hf{height:61.343750pt;}
.h7{height:62.833333pt;}
.h1b{height:63.656250pt;}
.h1a{height:63.783562pt;}
.h9{height:64.375000pt;}
.h2{height:68.138187pt;}
.hd{height:86.687500pt;}
.h23{height:105.185033pt;}
.h4{height:105.185567pt;}
.h8{height:119.625000pt;}
.he{height:184.031250pt;}
.ha{height:907.040000pt;}
.h0{height:907.086667pt;}
.h20{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w3{width:642.559990pt;}
.w2{width:642.560000pt;}
.w4{width:642.636000pt;}
.w1{width:642.666667pt;}
.x3{left:-40.744267pt;}
.x2{left:-21.544267pt;}
.x0{left:0.000000pt;}
.x1{left:58.278800pt;}
.x40{left:75.590533pt;}
.x5{left:79.370000pt;}
.x4{left:83.149600pt;}
.x8{left:96.831990pt;}
.x7{left:98.591990pt;}
.xd{left:99.492000pt;}
.x22{left:112.191990pt;}
.x6{left:117.151990pt;}
.x1c{left:126.911990pt;}
.x1d{left:129.471990pt;}
.x29{left:177.186657pt;}
.x26{left:180.386657pt;}
.x3d{left:201.826657pt;}
.x2b{left:217.186657pt;}
.x18{left:218.946657pt;}
.x3f{left:239.266657pt;}
.x20{left:241.026657pt;}
.xc{left:250.473867pt;}
.x1a{left:260.066657pt;}
.x15{left:264.386657pt;}
.xa{left:274.786657pt;}
.x3e{left:282.146657pt;}
.x38{left:283.746657pt;}
.x3a{left:298.493324pt;}
.x17{left:301.213324pt;}
.x30{left:303.933324pt;}
.x31{left:305.053324pt;}
.x1f{left:311.133324pt;}
.x24{left:312.253324pt;}
.x19{left:314.973324pt;}
.x13{left:316.413324pt;}
.x32{left:317.693324pt;}
.x9{left:319.453324pt;}
.xb{left:320.733324pt;}
.x36{left:324.733324pt;}
.x27{left:328.413324pt;}
.x37{left:341.853324pt;}
.x1e{left:345.853324pt;}
.x35{left:355.293324pt;}
.x14{left:359.933324pt;}
.x33{left:370.013324pt;}
.x34{left:373.533324pt;}
.x1b{left:376.893324pt;}
.x39{left:407.933324pt;}
.x21{left:424.133324pt;}
.x3b{left:448.133324pt;}
.x2c{left:467.013324pt;}
.x25{left:497.413324pt;}
.x3c{left:517.893324pt;}
.x28{left:519.653324pt;}
.x2f{left:520.773324pt;}
.x23{left:521.893324pt;}
.x2e{left:523.013324pt;}
.x2a{left:524.773324pt;}
.x16{left:526.053324pt;}
.x11{left:527.173324pt;}
.x12{left:528.293324pt;}
.x10{left:530.053324pt;}
.xf{left:532.479990pt;}
.x2d{left:535.839990pt;}
.xe{left:543.999990pt;}
.x42{left:654.688933pt;}
.x41{left:673.888933pt;}
}




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