
    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_9fea790f19df5c99d72a1510.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_d3d4a576c4592e41bceef3b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_cd4660327872458631026867.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_731afde887f59c92f5f22e0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894043;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_058a79ddc08a46ff90065da5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_1a8b8a834e111cb750b3b016.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014000;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_6a23c7509ed57e0d9e2fb9b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_a3ca04b0be7b0d63830a6ce0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073500;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_2f6c393a36676d58a54c0e70.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_6bb4c81cd7bb8f58c76019ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_06d5d3a39c64da0a501f44fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.030273;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_520488a1fa7b82fde2f0c337.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.847500;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;}
.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);}
.v1{vertical-align:-33.450000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.700000px;}
.lsc{letter-spacing:-2.172000px;}
.lse{letter-spacing:-1.968000px;}
.lsf{letter-spacing:-1.632000px;}
.ls10{letter-spacing:-1.332000px;}
.lsd{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-0.894000px;}
.ls1b{letter-spacing:-0.409200px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.569400px;}
.ls4{letter-spacing:0.855600px;}
.lsb{letter-spacing:0.900000px;}
.ls1{letter-spacing:0.936000px;}
.ls1a{letter-spacing:1.068000px;}
.ls14{letter-spacing:1.206000px;}
.ls7{letter-spacing:1.758000px;}
.ls3{letter-spacing:1.908000px;}
.ls19{letter-spacing:2.052000px;}
.ls6{letter-spacing:2.250000px;}
.ls16{letter-spacing:21.531000px;}
.ls2{letter-spacing:49.770000px;}
.ls5{letter-spacing:49.822500px;}
.ls9{letter-spacing:97.147500px;}
.ls8{letter-spacing:97.297500px;}
.ls17{letter-spacing:101.872500px;}
.ls18{letter-spacing:101.925000px;}
.ls11{letter-spacing:105.052500px;}
.ls12{letter-spacing:105.202500px;}
.ls13{letter-spacing:105.255000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,114,154),0 0.015em rgb(0,114,154),0.015em 0 rgb(0,114,154),0 -0.015em  rgb(0,114,154);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,114,154);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-108.150000px;}
.ws5{word-spacing:-48.620400px;}
.ws6{word-spacing:-48.278400px;}
.ws4{word-spacing:-46.370400px;}
.wse{word-spacing:-28.952700px;}
.wsd{word-spacing:-25.739700px;}
.ws10{word-spacing:-23.022450px;}
.ws8{word-spacing:-21.954450px;}
.ws0{word-spacing:-21.320700px;}
.wsa{word-spacing:-20.754450px;}
.ws1{word-spacing:-20.384700px;}
.wsb{word-spacing:-19.986450px;}
.ws9{word-spacing:-19.782450px;}
.wsf{word-spacing:-19.213950px;}
.ws13{word-spacing:-17.171700px;}
.ws12{word-spacing:-16.762500px;}
.ws7{word-spacing:-1.611600px;}
.ws11{word-spacing:-0.360450px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1.251600px;}
._d{margin-left:-20.290350px;}
._a{margin-left:-16.942350px;}
._c{margin-left:-12.757500px;}
._9{margin-left:-10.419900px;}
._e{margin-left:-9.079650px;}
._12{margin-left:-6.921600px;}
._b{margin-left:-5.314950px;}
._6{margin-left:-3.460800px;}
._2{margin-left:-2.260500px;}
._1{margin-left:-1.081500px;}
._0{width:1.081500px;}
._3{width:2.909400px;}
._5{width:4.641000px;}
._14{width:5.730750px;}
._f{width:7.352100px;}
._10{width:20.163450px;}
._11{width:23.306850px;}
._8{width:38.105550px;}
._16{width:43.730850px;}
._15{width:44.909400px;}
._7{width:47.538000px;}
._4{width:50.325900px;}
._17{width:1017.455850px;}
._13{width:4085.609850px;}
.fcc{color:rgb(233,113,50);}
.fcb{color:rgb(15,158,213);}
.fca{color:rgb(25,107,36);}
.fc9{color:rgb(39,180,195);}
.fc8{color:rgb(6,9,40);}
.fc7{color:rgb(82,207,220);}
.fc6{color:rgb(136,137,155);}
.fc5{color:transparent;}
.fc3{color:rgb(0,114,154);}
.fc1{color:rgb(255,192,0);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(118,118,118);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:72.000000px;}
.fs10{font-size:72.150000px;}
.fsb{font-size:85.500000px;}
.fs2{font-size:85.650000px;}
.fse{font-size:94.500000px;}
.fsc{font-size:94.650000px;}
.fs6{font-size:108.150000px;}
.fs7{font-size:121.650000px;}
.fsa{font-size:121.800000px;}
.fs1{font-size:126.150000px;}
.fs9{font-size:144.150000px;}
.fs5{font-size:166.650000px;}
.fs4{font-size:166.800000px;}
.fs8{font-size:193.800000px;}
.fs0{font-size:216.300000px;}
.fsd{font-size:265.950000px;}
.fsf{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y4{bottom:30.525000px;}
.y19{bottom:30.900000px;}
.y4f{bottom:38.887500px;}
.y18{bottom:63.562500px;}
.y4e{bottom:71.587500px;}
.y77{bottom:85.912500px;}
.y39{bottom:90.450000px;}
.y3{bottom:91.275000px;}
.y17{bottom:96.225000px;}
.y3f{bottom:96.525000px;}
.y76{bottom:115.200000px;}
.y38{bottom:125.362500px;}
.y3e{bottom:129.187500px;}
.y75{bottom:144.487500px;}
.y29{bottom:155.655000px;}
.y37{bottom:158.025000px;}
.y3d{bottom:160.725000px;}
.y74{bottom:172.650000px;}
.y28{bottom:188.370000px;}
.y36{bottom:190.725000px;}
.y3c{bottom:193.425000px;}
.y27{bottom:221.025000px;}
.y35{bottom:222.270000px;}
.y3b{bottom:226.095000px;}
.y4d{bottom:226.380000px;}
.y73{bottom:230.100000px;}
.y4c{bottom:248.925000px;}
.y26{bottom:253.695000px;}
.y34{bottom:254.925000px;}
.y3a{bottom:258.750000px;}
.y61{bottom:264.000000px;}
.y4b{bottom:271.470000px;}
.y2{bottom:272.775000px;}
.y11{bottom:278.880000px;}
.y25{bottom:285.225000px;}
.y33{bottom:287.580000px;}
.y72{bottom:288.675000px;}
.y60{bottom:293.280000px;}
.y4a{bottom:293.970000px;}
.y14{bottom:303.195000px;}
.yd{bottom:306.945000px;}
.y10{bottom:311.550000px;}
.y69{bottom:312.450000px;}
.y24{bottom:317.880000px;}
.y71{bottom:317.955000px;}
.y32{bottom:320.250000px;}
.y5f{bottom:322.575000px;}
.y1{bottom:325.425000px;}
.y13{bottom:335.850000px;}
.y68{bottom:338.370000px;}
.y49{bottom:339.030000px;}
.yc{bottom:339.600000px;}
.ya{bottom:340.845000px;}
.yf{bottom:344.220000px;}
.y70{bottom:346.125000px;}
.y23{bottom:350.595000px;}
.y5e{bottom:352.980000px;}
.y48{bottom:361.575000px;}
.y67{bottom:364.275000px;}
.y12{bottom:368.550000px;}
.y7e{bottom:370.155000px;}
.yb{bottom:372.270000px;}
.ye{bottom:376.875000px;}
.y22{bottom:383.250000px;}
.y5d{bottom:384.525000px;}
.y9{bottom:387.000000px;}
.y31{bottom:389.820000px;}
.y66{bottom:390.195000px;}
.y6f{bottom:403.575000px;}
.y47{bottom:406.650000px;}
.y7d{bottom:409.200000px;}
.y7f{bottom:413.775000px;}
.y5c{bottom:413.820000px;}
.y21{bottom:415.905000px;}
.y65{bottom:416.100000px;}
.y30{bottom:422.505000px;}
.y46{bottom:429.150000px;}
.y5b{bottom:443.130000px;}
.y8{bottom:446.745000px;}
.y7c{bottom:447.405000px;}
.y20{bottom:447.450000px;}
.y45{bottom:451.695000px;}
.y2f{bottom:455.175000px;}
.y6e{bottom:461.070000px;}
.y5a{bottom:472.425000px;}
.y7b{bottom:480.075000px;}
.y1f{bottom:480.120000px;}
.y2e{bottom:487.830000px;}
.y7{bottom:492.900000px;}
.y44{bottom:496.755000px;}
.y59{bottom:505.095000px;}
.y7a{bottom:512.745000px;}
.y1e{bottom:512.820000px;}
.y6d{bottom:518.505000px;}
.y43{bottom:519.300000px;}
.y2d{bottom:519.375000px;}
.y64{bottom:526.050000px;}
.y58{bottom:533.250000px;}
.y42{bottom:541.830000px;}
.y79{bottom:545.400000px;}
.y1d{bottom:545.475000px;}
.y2c{bottom:552.030000px;}
.y6{bottom:552.630000px;}
.y57{bottom:563.655000px;}
.y52{bottom:567.255000px;}
.y6c{bottom:581.580000px;}
.y2b{bottom:584.745000px;}
.y41{bottom:586.875000px;}
.y63{bottom:589.845000px;}
.y51{bottom:597.675000px;}
.y1b{bottom:600.345000px;}
.y40{bottom:609.405000px;}
.y2a{bottom:617.400000px;}
.y56{bottom:622.950000px;}
.y1a{bottom:633.000000px;}
.y6b{bottom:634.995000px;}
.y54{bottom:638.745000px;}
.y5{bottom:670.275000px;}
.y50{bottom:677.505000px;}
.y78{bottom:679.905000px;}
.y16{bottom:680.880000px;}
.y1c{bottom:684.300000px;}
.y55{bottom:685.800000px;}
.y15{bottom:687.630000px;}
.y53{bottom:705.495000px;}
.y6a{bottom:705.975000px;}
.y62{bottom:741.075000px;}
.hb{height:59.580000px;}
.h4{height:62.402344px;}
.h1b{height:63.275550px;}
.h3{height:75.115050px;}
.h14{height:78.322875px;}
.h17{height:81.903076px;}
.h16{height:82.033081px;}
.h12{height:89.494125px;}
.ha{height:93.733521px;}
.hd{height:94.847550px;}
.h11{height:100.665375px;}
.h13{height:100.789500px;}
.hc{height:105.433960px;}
.h2{height:110.633550px;}
.h8{height:110.737573px;}
.h19{height:112.547550px;}
.h7{height:116.466797px;}
.h6{height:121.813989px;}
.h5{height:121.923633px;}
.h10{height:124.934692px;}
.hf{height:126.419550px;}
.he{height:167.966309px;}
.h18{height:169.962600px;}
.h9{height:179.961600px;}
.h1{height:189.695100px;}
.h15{height:224.784888px;}
.h1a{height:302.597775px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xe{left:27.149979px;}
.xc{left:34.424979px;}
.x6{left:35.812479px;}
.x1c{left:48.524979px;}
.xb{left:68.174979px;}
.x10{left:84.449979px;}
.x20{left:98.587479px;}
.x1d{left:102.562479px;}
.x13{left:104.549979px;}
.x4{left:109.874979px;}
.x15{left:123.862479px;}
.x22{left:132.787479px;}
.x5{left:136.912479px;}
.x14{left:140.587479px;}
.x1{left:190.949979px;}
.x16{left:195.899979px;}
.x1a{left:229.694979px;}
.x7{left:401.969979px;}
.x21{left:506.879979px;}
.x19{left:535.574979px;}
.xd{left:672.299979px;}
.x1e{left:776.849979px;}
.x11{left:780.374979px;}
.x8{left:791.399979px;}
.x18{left:834.149979px;}
.x2{left:890.444979px;}
.x17{left:1081.004979px;}
.x9{left:1130.999979px;}
.x1b{left:1270.649979px;}
.x23{left:1311.944979px;}
.x12{left:1317.119979px;}
.x1f{left:1319.354979px;}
.x3{left:1321.499979px;}
.xa{left:1323.674979px;}
.xf{left:1325.369979px;}
@media print{
.v1{vertical-align:-29.733333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.733333pt;}
.lsc{letter-spacing:-1.930667pt;}
.lse{letter-spacing:-1.749333pt;}
.lsf{letter-spacing:-1.450667pt;}
.ls10{letter-spacing:-1.184000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-0.794667pt;}
.ls1b{letter-spacing:-0.363733pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.506133pt;}
.ls4{letter-spacing:0.760533pt;}
.lsb{letter-spacing:0.800000pt;}
.ls1{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:0.949333pt;}
.ls14{letter-spacing:1.072000pt;}
.ls7{letter-spacing:1.562667pt;}
.ls3{letter-spacing:1.696000pt;}
.ls19{letter-spacing:1.824000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls16{letter-spacing:19.138667pt;}
.ls2{letter-spacing:44.240000pt;}
.ls5{letter-spacing:44.286667pt;}
.ls9{letter-spacing:86.353333pt;}
.ls8{letter-spacing:86.486667pt;}
.ls17{letter-spacing:90.553333pt;}
.ls18{letter-spacing:90.600000pt;}
.ls11{letter-spacing:93.380000pt;}
.ls12{letter-spacing:93.513333pt;}
.ls13{letter-spacing:93.560000pt;}
.wsc{word-spacing:-96.133333pt;}
.ws5{word-spacing:-43.218133pt;}
.ws6{word-spacing:-42.914133pt;}
.ws4{word-spacing:-41.218133pt;}
.wse{word-spacing:-25.735733pt;}
.wsd{word-spacing:-22.879733pt;}
.ws10{word-spacing:-20.464400pt;}
.ws8{word-spacing:-19.515067pt;}
.ws0{word-spacing:-18.951733pt;}
.wsa{word-spacing:-18.448400pt;}
.ws1{word-spacing:-18.119733pt;}
.wsb{word-spacing:-17.765733pt;}
.ws9{word-spacing:-17.584400pt;}
.wsf{word-spacing:-17.079067pt;}
.ws13{word-spacing:-15.263733pt;}
.ws12{word-spacing:-14.900000pt;}
.ws7{word-spacing:-1.432533pt;}
.ws11{word-spacing:-0.320400pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:1.112533pt;}
._d{margin-left:-18.035867pt;}
._a{margin-left:-15.059867pt;}
._c{margin-left:-11.340000pt;}
._9{margin-left:-9.262133pt;}
._e{margin-left:-8.070800pt;}
._12{margin-left:-6.152533pt;}
._b{margin-left:-4.724400pt;}
._6{margin-left:-3.076267pt;}
._2{margin-left:-2.009333pt;}
._1{margin-left:-0.961333pt;}
._0{width:0.961333pt;}
._3{width:2.586133pt;}
._5{width:4.125333pt;}
._14{width:5.094000pt;}
._f{width:6.535200pt;}
._10{width:17.923067pt;}
._11{width:20.717200pt;}
._8{width:33.871600pt;}
._16{width:38.871867pt;}
._15{width:39.919467pt;}
._7{width:42.256000pt;}
._4{width:44.734133pt;}
._17{width:904.405200pt;}
._13{width:3631.653200pt;}
.fs3{font-size:64.000000pt;}
.fs10{font-size:64.133333pt;}
.fsb{font-size:76.000000pt;}
.fs2{font-size:76.133333pt;}
.fse{font-size:84.000000pt;}
.fsc{font-size:84.133333pt;}
.fs6{font-size:96.133333pt;}
.fs7{font-size:108.133333pt;}
.fsa{font-size:108.266667pt;}
.fs1{font-size:112.133333pt;}
.fs9{font-size:128.133333pt;}
.fs5{font-size:148.133333pt;}
.fs4{font-size:148.266667pt;}
.fs8{font-size:172.266667pt;}
.fs0{font-size:192.266667pt;}
.fsd{font-size:236.400000pt;}
.fsf{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:27.133333pt;}
.y19{bottom:27.466667pt;}
.y4f{bottom:34.566667pt;}
.y18{bottom:56.500000pt;}
.y4e{bottom:63.633333pt;}
.y77{bottom:76.366667pt;}
.y39{bottom:80.400000pt;}
.y3{bottom:81.133333pt;}
.y17{bottom:85.533333pt;}
.y3f{bottom:85.800000pt;}
.y76{bottom:102.400000pt;}
.y38{bottom:111.433333pt;}
.y3e{bottom:114.833333pt;}
.y75{bottom:128.433333pt;}
.y29{bottom:138.360000pt;}
.y37{bottom:140.466667pt;}
.y3d{bottom:142.866667pt;}
.y74{bottom:153.466667pt;}
.y28{bottom:167.440000pt;}
.y36{bottom:169.533333pt;}
.y3c{bottom:171.933333pt;}
.y27{bottom:196.466667pt;}
.y35{bottom:197.573333pt;}
.y3b{bottom:200.973333pt;}
.y4d{bottom:201.226667pt;}
.y73{bottom:204.533333pt;}
.y4c{bottom:221.266667pt;}
.y26{bottom:225.506667pt;}
.y34{bottom:226.600000pt;}
.y3a{bottom:230.000000pt;}
.y61{bottom:234.666667pt;}
.y4b{bottom:241.306667pt;}
.y2{bottom:242.466667pt;}
.y11{bottom:247.893333pt;}
.y25{bottom:253.533333pt;}
.y33{bottom:255.626667pt;}
.y72{bottom:256.600000pt;}
.y60{bottom:260.693333pt;}
.y4a{bottom:261.306667pt;}
.y14{bottom:269.506667pt;}
.yd{bottom:272.840000pt;}
.y10{bottom:276.933333pt;}
.y69{bottom:277.733333pt;}
.y24{bottom:282.560000pt;}
.y71{bottom:282.626667pt;}
.y32{bottom:284.666667pt;}
.y5f{bottom:286.733333pt;}
.y1{bottom:289.266667pt;}
.y13{bottom:298.533333pt;}
.y68{bottom:300.773333pt;}
.y49{bottom:301.360000pt;}
.yc{bottom:301.866667pt;}
.ya{bottom:302.973333pt;}
.yf{bottom:305.973333pt;}
.y70{bottom:307.666667pt;}
.y23{bottom:311.640000pt;}
.y5e{bottom:313.760000pt;}
.y48{bottom:321.400000pt;}
.y67{bottom:323.800000pt;}
.y12{bottom:327.600000pt;}
.y7e{bottom:329.026667pt;}
.yb{bottom:330.906667pt;}
.ye{bottom:335.000000pt;}
.y22{bottom:340.666667pt;}
.y5d{bottom:341.800000pt;}
.y9{bottom:344.000000pt;}
.y31{bottom:346.506667pt;}
.y66{bottom:346.840000pt;}
.y6f{bottom:358.733333pt;}
.y47{bottom:361.466667pt;}
.y7d{bottom:363.733333pt;}
.y7f{bottom:367.800000pt;}
.y5c{bottom:367.840000pt;}
.y21{bottom:369.693333pt;}
.y65{bottom:369.866667pt;}
.y30{bottom:375.560000pt;}
.y46{bottom:381.466667pt;}
.y5b{bottom:393.893333pt;}
.y8{bottom:397.106667pt;}
.y7c{bottom:397.693333pt;}
.y20{bottom:397.733333pt;}
.y45{bottom:401.506667pt;}
.y2f{bottom:404.600000pt;}
.y6e{bottom:409.840000pt;}
.y5a{bottom:419.933333pt;}
.y7b{bottom:426.733333pt;}
.y1f{bottom:426.773333pt;}
.y2e{bottom:433.626667pt;}
.y7{bottom:438.133333pt;}
.y44{bottom:441.560000pt;}
.y59{bottom:448.973333pt;}
.y7a{bottom:455.773333pt;}
.y1e{bottom:455.840000pt;}
.y6d{bottom:460.893333pt;}
.y43{bottom:461.600000pt;}
.y2d{bottom:461.666667pt;}
.y64{bottom:467.600000pt;}
.y58{bottom:474.000000pt;}
.y42{bottom:481.626667pt;}
.y79{bottom:484.800000pt;}
.y1d{bottom:484.866667pt;}
.y2c{bottom:490.693333pt;}
.y6{bottom:491.226667pt;}
.y57{bottom:501.026667pt;}
.y52{bottom:504.226667pt;}
.y6c{bottom:516.960000pt;}
.y2b{bottom:519.773333pt;}
.y41{bottom:521.666667pt;}
.y63{bottom:524.306667pt;}
.y51{bottom:531.266667pt;}
.y1b{bottom:533.640000pt;}
.y40{bottom:541.693333pt;}
.y2a{bottom:548.800000pt;}
.y56{bottom:553.733333pt;}
.y1a{bottom:562.666667pt;}
.y6b{bottom:564.440000pt;}
.y54{bottom:567.773333pt;}
.y5{bottom:595.800000pt;}
.y50{bottom:602.226667pt;}
.y78{bottom:604.360000pt;}
.y16{bottom:605.226667pt;}
.y1c{bottom:608.266667pt;}
.y55{bottom:609.600000pt;}
.y15{bottom:611.226667pt;}
.y53{bottom:627.106667pt;}
.y6a{bottom:627.533333pt;}
.y62{bottom:658.733333pt;}
.hb{height:52.960000pt;}
.h4{height:55.468750pt;}
.h1b{height:56.244933pt;}
.h3{height:66.768933pt;}
.h14{height:69.620333pt;}
.h17{height:72.802734pt;}
.h16{height:72.918294pt;}
.h12{height:79.550333pt;}
.ha{height:83.318685pt;}
.hd{height:84.308933pt;}
.h11{height:89.480333pt;}
.h13{height:89.590667pt;}
.hc{height:93.719076pt;}
.h2{height:98.340933pt;}
.h8{height:98.433398pt;}
.h19{height:100.042267pt;}
.h7{height:103.526042pt;}
.h6{height:108.279102pt;}
.h5{height:108.376562pt;}
.h10{height:111.053060pt;}
.hf{height:112.372933pt;}
.he{height:149.303385pt;}
.h18{height:151.077867pt;}
.h9{height:159.965867pt;}
.h1{height:168.617867pt;}
.h15{height:199.808789pt;}
.h1a{height:268.975800pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xe{left:24.133314pt;}
.xc{left:30.599981pt;}
.x6{left:31.833314pt;}
.x1c{left:43.133314pt;}
.xb{left:60.599981pt;}
.x10{left:75.066648pt;}
.x20{left:87.633314pt;}
.x1d{left:91.166648pt;}
.x13{left:92.933314pt;}
.x4{left:97.666648pt;}
.x15{left:110.099981pt;}
.x22{left:118.033314pt;}
.x5{left:121.699981pt;}
.x14{left:124.966648pt;}
.x1{left:169.733314pt;}
.x16{left:174.133314pt;}
.x1a{left:204.173314pt;}
.x7{left:357.306648pt;}
.x21{left:450.559981pt;}
.x19{left:476.066648pt;}
.xd{left:597.599981pt;}
.x1e{left:690.533314pt;}
.x11{left:693.666648pt;}
.x8{left:703.466648pt;}
.x18{left:741.466648pt;}
.x2{left:791.506648pt;}
.x17{left:960.893314pt;}
.x9{left:1005.333314pt;}
.x1b{left:1129.466648pt;}
.x23{left:1166.173314pt;}
.x12{left:1170.773314pt;}
.x1f{left:1172.759981pt;}
.x3{left:1174.666648pt;}
.xa{left:1176.599981pt;}
.xf{left:1178.106648pt;}
}




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