
    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_32ac88c86f53bfe75082caa8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_1fd75eac354a9c08adb16130.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d5478b2e236d7886ea3a3de6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_15dac031a4275f1ac9a9c3a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_382025ebd00da8255a9129a5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_ac954106d8d77d20efbde9b8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_6990faefc29fe7502d7d4724.woff')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_358f40de2d7475126771995f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.101562;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_008a3bf677374b52440415d2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.924805;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_ba3288aada1773d5f8ed01c2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_45951eec192083bd64165a2b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.120117;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_cba3d2ffff094352353a7f3f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.119629;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_09ec5b7553edb8f04250908b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.776855;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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);}
.m1{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;}
.ls9{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.190200px;}
.ls15{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.037440px;}
.ls11{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.054720px;}
.ls12{letter-spacing:0.112200px;}
.ls4{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.243360px;}
.lsf{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.253200px;}
.lsb{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.295200px;}
.ls14{letter-spacing:0.738000px;}
.lsd{letter-spacing:24.465600px;}
.lsc{letter-spacing:24.516000px;}
.ls17{letter-spacing:40.000896px;}
.ls5{letter-spacing:57.549600px;}
.ls6{letter-spacing:57.600000px;}
.ls18{letter-spacing:68.976000px;}
.ls1a{letter-spacing:70.200000px;}
.ls1b{letter-spacing:78.249600px;}
.ls1c{letter-spacing:78.336000px;}
.ls7{letter-spacing:124.149600px;}
.ls8{letter-spacing:124.200000px;}
.lsa{letter-spacing:124.344000px;}
.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;}
}
.ws6{word-spacing:-73.872000px;}
.ws4{word-spacing:-41.633280px;}
.ws10{word-spacing:-40.032000px;}
.ws1{word-spacing:-39.759552px;}
.ws11{word-spacing:-39.536520px;}
.wsa{word-spacing:-30.064032px;}
.wsf{word-spacing:-30.024000px;}
.wsd{word-spacing:-26.658720px;}
.ws9{word-spacing:-26.621280px;}
.wsb{word-spacing:-23.671440px;}
.wsc{word-spacing:-23.458752px;}
.ws8{word-spacing:-23.418720px;}
.ws15{word-spacing:-18.454752px;}
.ws14{word-spacing:-18.414720px;}
.ws12{word-spacing:-11.609280px;}
.ws7{word-spacing:-1.627200px;}
.ws13{word-spacing:-0.341280px;}
.ws5{word-spacing:-0.174384px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:48.707280px;}
.ws3{word-spacing:48.786552px;}
.wse{word-spacing:1167.276000px;}
._3{margin-left:-750.539520px;}
._8{margin-left:-16.519968px;}
._6{margin-left:-10.391040px;}
._7{margin-left:-7.920000px;}
._1{margin-left:-3.810240px;}
._2{margin-left:-2.721600px;}
._4{margin-left:-1.065600px;}
._0{width:1.321920px;}
._5{width:3.327840px;}
.fca{color:rgb(72,105,92);}
.fc8{color:rgb(68,124,89);}
.fc9{color:rgb(192,0,0);}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(47,106,91);}
.fc3{color:transparent;}
.fc5{color:rgb(0,176,80);}
.fc2{color:rgb(29,29,29);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:7.200000px;}
.fs16{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs17{font-size:66.240000px;}
.fs18{font-size:66.384000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs14{font-size:84.240000px;}
.fs15{font-size:84.384000px;}
.fs12{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fse{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs8{font-size:149.760000px;}
.fs9{font-size:149.904000px;}
.fsb{font-size:174.240000px;}
.fs7{font-size:174.384000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:192.384000px;}
.fs10{font-size:216.144000px;}
.fs11{font-size:239.904000px;}
.fsf{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.600000px;}
.yf{bottom:4.284000px;}
.y2{bottom:15.300000px;}
.y1b{bottom:19.260000px;}
.y39{bottom:20.340000px;}
.ye{bottom:22.284000px;}
.y34{bottom:23.400000px;}
.y37{bottom:23.940000px;}
.y15{bottom:27.900000px;}
.y1a{bottom:33.660000px;}
.yd{bottom:40.284000px;}
.y3{bottom:48.636000px;}
.yc{bottom:58.284000px;}
.yb{bottom:64.116000px;}
.y28{bottom:77.220000px;}
.y71{bottom:86.832000px;}
.y90{bottom:88.488000px;}
.y69{bottom:103.245000px;}
.y6e{bottom:104.760000px;}
.y62{bottom:113.400000px;}
.y65{bottom:115.128000px;}
.y21{bottom:115.524000px;}
.y70{bottom:115.560000px;}
.y44{bottom:117.288000px;}
.y27{bottom:124.596000px;}
.y8f{bottom:131.364000px;}
.y43{bottom:139.068000px;}
.y6d{bottom:139.140000px;}
.y53{bottom:143.208000px;}
.y5b{bottom:143.748000px;}
.y61{bottom:144.900000px;}
.y2b{bottom:145.485000px;}
.y2f{bottom:147.024000px;}
.y6f{bottom:147.960000px;}
.y2a{bottom:149.805000px;}
.y77{bottom:156.525000px;}
.y42{bottom:160.845000px;}
.y7e{bottom:164.055000px;}
.y52{bottom:164.985000px;}
.y5a{bottom:165.525000px;}
.y26{bottom:172.110000px;}
.y8e{bottom:174.210000px;}
.y68{bottom:182.520000px;}
.y4b{bottom:184.530000px;}
.y41{bottom:186.225000px;}
.y64{bottom:186.630000px;}
.y59{bottom:187.305000px;}
.y51{bottom:190.365000px;}
.y6c{bottom:191.160000px;}
.y9{bottom:192.315000px;}
.y86{bottom:193.755000px;}
.y2e{bottom:194.370000px;}
.y20{bottom:195.300000px;}
.y76{bottom:199.725000px;}
.y25{bottom:204.510000px;}
.y31{bottom:204.915000px;}
.y4a{bottom:206.310000px;}
.y40{bottom:208.050000px;}
.y58{bottom:209.085000px;}
.y50{bottom:212.145000px;}
.y8d{bottom:217.050000px;}
.y2c{bottom:219.450000px;}
.y14{bottom:219.885000px;}
.y36{bottom:223.455000px;}
.y6b{bottom:223.590000px;}
.y84{bottom:226.230000px;}
.y3a{bottom:229.215000px;}
.y85{bottom:230.070000px;}
.y57{bottom:230.685000px;}
.y49{bottom:231.510000px;}
.y8{bottom:232.275000px;}
.y3f{bottom:233.250000px;}
.y60{bottom:234.720000px;}
.y4f{bottom:237.345000px;}
.y75{bottom:242.925000px;}
.y24{bottom:251.895000px;}
.y56{bottom:252.510000px;}
.y48{bottom:253.290000px;}
.y7d{bottom:254.085000px;}
.y38{bottom:254.595000px;}
.y3e{bottom:255.030000px;}
.y4e{bottom:259.125000px;}
.y8c{bottom:262.980000px;}
.y5f{bottom:263.160000px;}
.y13{bottom:264.930000px;}
.y83{bottom:269.460000px;}
.y7{bottom:272.085000px;}
.y55{bottom:274.290000px;}
.y1f{bottom:275.040000px;}
.y47{bottom:275.070000px;}
.y30{bottom:275.655000px;}
.y3d{bottom:276.810000px;}
.y4d{bottom:280.950000px;}
.y32{bottom:280.980000px;}
.y6a{bottom:285.765000px;}
.y74{bottom:286.170000px;}
.y7a{bottom:287.310000px;}
.y94{bottom:293.505000px;}
.y82{bottom:312.660000px;}
.y8b{bottom:315.000000px;}
.y29{bottom:320.325000px;}
.y92{bottom:321.195000px;}
.y12{bottom:324.870000px;}
.y73{bottom:329.370000px;}
.y67{bottom:329.580000px;}
.y35{bottom:331.305000px;}
.y46{bottom:333.750000px;}
.y3c{bottom:336.390000px;}
.y79{bottom:338.295000px;}
.y93{bottom:341.175000px;}
.y54{bottom:341.355000px;}
.y4c{bottom:352.110000px;}
.y6{bottom:352.410000px;}
.y1e{bottom:354.990000px;}
.y81{bottom:355.860000px;}
.y33{bottom:356.145000px;}
.y5e{bottom:357.735000px;}
.y8a{bottom:357.870000px;}
.y45{bottom:358.590000px;}
.y91{bottom:361.110000px;}
.y3b{bottom:361.230000px;}
.y7c{bottom:374.190000px;}
.y78{bottom:383.295000px;}
.y11{bottom:384.810000px;}
.y89{bottom:403.770000px;}
.y5{bottom:410.400000px;}
.y66{bottom:428.250000px;}
.y7b{bottom:434.130000px;}
.y1d{bottom:434.775000px;}
.y5d{bottom:453.210000px;}
.y5c{bottom:457.530000px;}
.y88{bottom:458.850000px;}
.y4{bottom:468.000000px;}
.y17{bottom:482.220000px;}
.y63{bottom:487.470000px;}
.y10{bottom:507.165000px;}
.y2d{bottom:517.935000px;}
.y1c{bottom:525.345000px;}
.y87{bottom:530.175000px;}
.y16{bottom:534.450000px;}
.y80{bottom:535.680000px;}
.y72{bottom:535.935000px;}
.y22{bottom:537.945000px;}
.y23{bottom:546.015000px;}
.y7f{bottom:550.410000px;}
.y1{bottom:566.100000px;}
.y19{bottom:601.560000px;}
.y18{bottom:605.880000px;}
.h3{height:7.161328px;}
.h1b{height:21.960000px;}
.h19{height:25.020000px;}
.h1a{height:25.560000px;}
.h2b{height:37.437188px;}
.h10{height:43.246406px;}
.h2{height:50.256000px;}
.h9{height:53.865703px;}
.h2c{height:59.383125px;}
.h2d{height:59.512219px;}
.hd{height:64.546875px;}
.h8{height:65.736000px;}
.h1{height:70.090313px;}
.h1e{height:75.519844px;}
.h1f{height:75.648938px;}
.h22{height:85.847344px;}
.h1c{height:86.642227px;}
.h1d{height:86.772516px;}
.h14{height:96.820312px;}
.h13{height:96.949406px;}
.h7{height:97.347656px;}
.h6{height:97.477453px;}
.h23{height:97.716797px;}
.h20{height:97.847086px;}
.h12{height:129.093750px;}
.h11{height:129.222844px;}
.h27{height:130.289062px;}
.h29{height:130.992188px;}
.hb{height:134.257500px;}
.hc{height:134.386594px;}
.h2a{height:135.500625px;}
.h15{height:151.410000px;}
.hf{height:158.500547px;}
.ha{height:158.631539px;}
.he{height:159.057281px;}
.h2e{height:175.005563px;}
.h17{height:196.619273px;}
.h4{height:196.839492px;}
.h5{height:196.986938px;}
.h18{height:218.232984px;}
.h24{height:226.980000px;}
.h16{height:294.732422px;}
.h28{height:368.820000px;}
.h26{height:401.220000px;}
.h25{height:444.420000px;}
.h21{height:459.150000px;}
.h0{height:607.500000px;}
.w7{width:46.980000px;}
.wa{width:50.400000px;}
.w8{width:61.920000px;}
.w6{width:90.936000px;}
.w9{width:156.960000px;}
.w2{width:218.550000px;}
.w3{width:285.870000px;}
.wc{width:360.000000px;}
.w5{width:450.975000px;}
.wb{width:524.265000px;}
.w4{width:1020.030000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2d{left:10.830000px;}
.x11{left:26.855984px;}
.xa{left:32.903984px;}
.xe{left:39.060000px;}
.x39{left:44.459984px;}
.x12{left:46.655984px;}
.x19{left:52.740000px;}
.x38{left:58.067984px;}
.x9{left:62.423984px;}
.x2{left:67.860000px;}
.x10{left:71.927984px;}
.x1c{left:76.715984px;}
.xd{left:78.479984px;}
.x3a{left:80.495984px;}
.x33{left:83.447984px;}
.xb{left:86.903984px;}
.x1d{left:90.215984px;}
.x37{left:105.479984px;}
.x2c{left:180.000000px;}
.x31{left:212.789984px;}
.x28{left:235.694984px;}
.x29{left:242.354984px;}
.x35{left:249.194984px;}
.x4{left:278.130000px;}
.x18{left:285.914984px;}
.x3c{left:295.169984px;}
.x15{left:298.544984px;}
.x1e{left:322.589984px;}
.x3e{left:329.039984px;}
.x2b{left:330.764984px;}
.x1f{left:369.149984px;}
.x27{left:370.724984px;}
.x16{left:373.964984px;}
.x20{left:382.649984px;}
.x3d{left:385.994984px;}
.x1a{left:389.595000px;}
.x3f{left:413.609984px;}
.x2e{left:415.334984px;}
.x36{left:420.014984px;}
.x2a{left:428.114984px;}
.x34{left:488.129984px;}
.x2f{left:540.000000px;}
.xf{left:559.874984px;}
.x13{left:567.149984px;}
.x14{left:607.649984px;}
.x3{left:609.509984px;}
.x5{left:622.829984px;}
.x25{left:624.449984px;}
.x6{left:628.229984px;}
.x21{left:630.074984px;}
.x26{left:632.234984px;}
.x1b{left:643.425000px;}
.x7{left:682.229984px;}
.x8{left:715.394984px;}
.x32{left:719.639984px;}
.x30{left:770.864984px;}
.x3b{left:788.069984px;}
.x1{left:862.559984px;}
.x22{left:888.329984px;}
.x23{left:919.184984px;}
.x24{left:932.684984px;}
.x17{left:1027.799984px;}
.xc{left:1037.879984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.169067pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.033280pt;}
.ls11{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.048640pt;}
.ls12{letter-spacing:0.099733pt;}
.ls4{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.216320pt;}
.lsf{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.225067pt;}
.lsb{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.262400pt;}
.ls14{letter-spacing:0.656000pt;}
.lsd{letter-spacing:21.747200pt;}
.lsc{letter-spacing:21.792000pt;}
.ls17{letter-spacing:35.556352pt;}
.ls5{letter-spacing:51.155200pt;}
.ls6{letter-spacing:51.200000pt;}
.ls18{letter-spacing:61.312000pt;}
.ls1a{letter-spacing:62.400000pt;}
.ls1b{letter-spacing:69.555200pt;}
.ls1c{letter-spacing:69.632000pt;}
.ls7{letter-spacing:110.355200pt;}
.ls8{letter-spacing:110.400000pt;}
.lsa{letter-spacing:110.528000pt;}
.ws6{word-spacing:-65.664000pt;}
.ws4{word-spacing:-37.007360pt;}
.ws10{word-spacing:-35.584000pt;}
.ws1{word-spacing:-35.341824pt;}
.ws11{word-spacing:-35.143573pt;}
.wsa{word-spacing:-26.723584pt;}
.wsf{word-spacing:-26.688000pt;}
.wsd{word-spacing:-23.696640pt;}
.ws9{word-spacing:-23.663360pt;}
.wsb{word-spacing:-21.041280pt;}
.wsc{word-spacing:-20.852224pt;}
.ws8{word-spacing:-20.816640pt;}
.ws15{word-spacing:-16.404224pt;}
.ws14{word-spacing:-16.368640pt;}
.ws12{word-spacing:-10.319360pt;}
.ws7{word-spacing:-1.446400pt;}
.ws13{word-spacing:-0.303360pt;}
.ws5{word-spacing:-0.155008pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:43.295360pt;}
.ws3{word-spacing:43.365824pt;}
.wse{word-spacing:1037.578667pt;}
._3{margin-left:-667.146240pt;}
._8{margin-left:-14.684416pt;}
._6{margin-left:-9.236480pt;}
._7{margin-left:-7.040000pt;}
._1{margin-left:-3.386880pt;}
._2{margin-left:-2.419200pt;}
._4{margin-left:-0.947200pt;}
._0{width:1.175040pt;}
._5{width:2.958080pt;}
.fs1{font-size:6.400000pt;}
.fs16{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs17{font-size:58.880000pt;}
.fs18{font-size:59.008000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs14{font-size:74.880000pt;}
.fs15{font-size:75.008000pt;}
.fs12{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fse{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs8{font-size:133.120000pt;}
.fs9{font-size:133.248000pt;}
.fsb{font-size:154.880000pt;}
.fs7{font-size:155.008000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:171.008000pt;}
.fs10{font-size:192.128000pt;}
.fs11{font-size:213.248000pt;}
.fsf{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.200000pt;}
.yf{bottom:3.808000pt;}
.y2{bottom:13.600000pt;}
.y1b{bottom:17.120000pt;}
.y39{bottom:18.080000pt;}
.ye{bottom:19.808000pt;}
.y34{bottom:20.800000pt;}
.y37{bottom:21.280000pt;}
.y15{bottom:24.800000pt;}
.y1a{bottom:29.920000pt;}
.yd{bottom:35.808000pt;}
.y3{bottom:43.232000pt;}
.yc{bottom:51.808000pt;}
.yb{bottom:56.992000pt;}
.y28{bottom:68.640000pt;}
.y71{bottom:77.184000pt;}
.y90{bottom:78.656000pt;}
.y69{bottom:91.773333pt;}
.y6e{bottom:93.120000pt;}
.y62{bottom:100.800000pt;}
.y65{bottom:102.336000pt;}
.y21{bottom:102.688000pt;}
.y70{bottom:102.720000pt;}
.y44{bottom:104.256000pt;}
.y27{bottom:110.752000pt;}
.y8f{bottom:116.768000pt;}
.y43{bottom:123.616000pt;}
.y6d{bottom:123.680000pt;}
.y53{bottom:127.296000pt;}
.y5b{bottom:127.776000pt;}
.y61{bottom:128.800000pt;}
.y2b{bottom:129.320000pt;}
.y2f{bottom:130.688000pt;}
.y6f{bottom:131.520000pt;}
.y2a{bottom:133.160000pt;}
.y77{bottom:139.133333pt;}
.y42{bottom:142.973333pt;}
.y7e{bottom:145.826667pt;}
.y52{bottom:146.653333pt;}
.y5a{bottom:147.133333pt;}
.y26{bottom:152.986667pt;}
.y8e{bottom:154.853333pt;}
.y68{bottom:162.240000pt;}
.y4b{bottom:164.026667pt;}
.y41{bottom:165.533333pt;}
.y64{bottom:165.893333pt;}
.y59{bottom:166.493333pt;}
.y51{bottom:169.213333pt;}
.y6c{bottom:169.920000pt;}
.y9{bottom:170.946667pt;}
.y86{bottom:172.226667pt;}
.y2e{bottom:172.773333pt;}
.y20{bottom:173.600000pt;}
.y76{bottom:177.533333pt;}
.y25{bottom:181.786667pt;}
.y31{bottom:182.146667pt;}
.y4a{bottom:183.386667pt;}
.y40{bottom:184.933333pt;}
.y58{bottom:185.853333pt;}
.y50{bottom:188.573333pt;}
.y8d{bottom:192.933333pt;}
.y2c{bottom:195.066667pt;}
.y14{bottom:195.453333pt;}
.y36{bottom:198.626667pt;}
.y6b{bottom:198.746667pt;}
.y84{bottom:201.093333pt;}
.y3a{bottom:203.746667pt;}
.y85{bottom:204.506667pt;}
.y57{bottom:205.053333pt;}
.y49{bottom:205.786667pt;}
.y8{bottom:206.466667pt;}
.y3f{bottom:207.333333pt;}
.y60{bottom:208.640000pt;}
.y4f{bottom:210.973333pt;}
.y75{bottom:215.933333pt;}
.y24{bottom:223.906667pt;}
.y56{bottom:224.453333pt;}
.y48{bottom:225.146667pt;}
.y7d{bottom:225.853333pt;}
.y38{bottom:226.306667pt;}
.y3e{bottom:226.693333pt;}
.y4e{bottom:230.333333pt;}
.y8c{bottom:233.760000pt;}
.y5f{bottom:233.920000pt;}
.y13{bottom:235.493333pt;}
.y83{bottom:239.520000pt;}
.y7{bottom:241.853333pt;}
.y55{bottom:243.813333pt;}
.y1f{bottom:244.480000pt;}
.y47{bottom:244.506667pt;}
.y30{bottom:245.026667pt;}
.y3d{bottom:246.053333pt;}
.y4d{bottom:249.733333pt;}
.y32{bottom:249.760000pt;}
.y6a{bottom:254.013333pt;}
.y74{bottom:254.373333pt;}
.y7a{bottom:255.386667pt;}
.y94{bottom:260.893333pt;}
.y82{bottom:277.920000pt;}
.y8b{bottom:280.000000pt;}
.y29{bottom:284.733333pt;}
.y92{bottom:285.506667pt;}
.y12{bottom:288.773333pt;}
.y73{bottom:292.773333pt;}
.y67{bottom:292.960000pt;}
.y35{bottom:294.493333pt;}
.y46{bottom:296.666667pt;}
.y3c{bottom:299.013333pt;}
.y79{bottom:300.706667pt;}
.y93{bottom:303.266667pt;}
.y54{bottom:303.426667pt;}
.y4c{bottom:312.986667pt;}
.y6{bottom:313.253333pt;}
.y1e{bottom:315.546667pt;}
.y81{bottom:316.320000pt;}
.y33{bottom:316.573333pt;}
.y5e{bottom:317.986667pt;}
.y8a{bottom:318.106667pt;}
.y45{bottom:318.746667pt;}
.y91{bottom:320.986667pt;}
.y3b{bottom:321.093333pt;}
.y7c{bottom:332.613333pt;}
.y78{bottom:340.706667pt;}
.y11{bottom:342.053333pt;}
.y89{bottom:358.906667pt;}
.y5{bottom:364.800000pt;}
.y66{bottom:380.666667pt;}
.y7b{bottom:385.893333pt;}
.y1d{bottom:386.466667pt;}
.y5d{bottom:402.853333pt;}
.y5c{bottom:406.693333pt;}
.y88{bottom:407.866667pt;}
.y4{bottom:416.000000pt;}
.y17{bottom:428.640000pt;}
.y63{bottom:433.306667pt;}
.y10{bottom:450.813333pt;}
.y2d{bottom:460.386667pt;}
.y1c{bottom:466.973333pt;}
.y87{bottom:471.266667pt;}
.y16{bottom:475.066667pt;}
.y80{bottom:476.160000pt;}
.y72{bottom:476.386667pt;}
.y22{bottom:478.173333pt;}
.y23{bottom:485.346667pt;}
.y7f{bottom:489.253333pt;}
.y1{bottom:503.200000pt;}
.y19{bottom:534.720000pt;}
.y18{bottom:538.560000pt;}
.h3{height:6.365625pt;}
.h1b{height:19.520000pt;}
.h19{height:22.240000pt;}
.h1a{height:22.720000pt;}
.h2b{height:33.277500pt;}
.h10{height:38.441250pt;}
.h2{height:44.672000pt;}
.h9{height:47.880625pt;}
.h2c{height:52.785000pt;}
.h2d{height:52.899750pt;}
.hd{height:57.375000pt;}
.h8{height:58.432000pt;}
.h1{height:62.302500pt;}
.h1e{height:67.128750pt;}
.h1f{height:67.243500pt;}
.h22{height:76.308750pt;}
.h1c{height:77.015312pt;}
.h1d{height:77.131125pt;}
.h14{height:86.062500pt;}
.h13{height:86.177250pt;}
.h7{height:86.531250pt;}
.h6{height:86.646625pt;}
.h23{height:86.859375pt;}
.h20{height:86.975188pt;}
.h12{height:114.750000pt;}
.h11{height:114.864750pt;}
.h27{height:115.812500pt;}
.h29{height:116.437500pt;}
.hb{height:119.340000pt;}
.hc{height:119.454750pt;}
.h2a{height:120.445000pt;}
.h15{height:134.586667pt;}
.hf{height:140.889375pt;}
.ha{height:141.005813pt;}
.he{height:141.384250pt;}
.h2e{height:155.560500pt;}
.h17{height:174.772687pt;}
.h4{height:174.968437pt;}
.h5{height:175.099500pt;}
.h18{height:193.984875pt;}
.h24{height:201.760000pt;}
.h16{height:261.984375pt;}
.h28{height:327.840000pt;}
.h26{height:356.640000pt;}
.h25{height:395.040000pt;}
.h21{height:408.133333pt;}
.h0{height:540.000000pt;}
.w7{width:41.760000pt;}
.wa{width:44.800000pt;}
.w8{width:55.040000pt;}
.w6{width:80.832000pt;}
.w9{width:139.520000pt;}
.w2{width:194.266667pt;}
.w3{width:254.106667pt;}
.wc{width:320.000000pt;}
.w5{width:400.866667pt;}
.wb{width:466.013333pt;}
.w4{width:906.693333pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:9.626667pt;}
.x11{left:23.871986pt;}
.xa{left:29.247986pt;}
.xe{left:34.720000pt;}
.x39{left:39.519986pt;}
.x12{left:41.471986pt;}
.x19{left:46.880000pt;}
.x38{left:51.615986pt;}
.x9{left:55.487986pt;}
.x2{left:60.320000pt;}
.x10{left:63.935986pt;}
.x1c{left:68.191986pt;}
.xd{left:69.759986pt;}
.x3a{left:71.551986pt;}
.x33{left:74.175986pt;}
.xb{left:77.247986pt;}
.x1d{left:80.191986pt;}
.x37{left:93.759986pt;}
.x2c{left:160.000000pt;}
.x31{left:189.146652pt;}
.x28{left:209.506652pt;}
.x29{left:215.426652pt;}
.x35{left:221.506652pt;}
.x4{left:247.226667pt;}
.x18{left:254.146652pt;}
.x3c{left:262.373319pt;}
.x15{left:265.373319pt;}
.x1e{left:286.746652pt;}
.x3e{left:292.479986pt;}
.x2b{left:294.013319pt;}
.x1f{left:328.133319pt;}
.x27{left:329.533319pt;}
.x16{left:332.413319pt;}
.x20{left:340.133319pt;}
.x3d{left:343.106652pt;}
.x1a{left:346.306667pt;}
.x3f{left:367.653319pt;}
.x2e{left:369.186652pt;}
.x36{left:373.346652pt;}
.x2a{left:380.546652pt;}
.x34{left:433.893319pt;}
.x2f{left:480.000000pt;}
.xf{left:497.666652pt;}
.x13{left:504.133319pt;}
.x14{left:540.133319pt;}
.x3{left:541.786652pt;}
.x5{left:553.626652pt;}
.x25{left:555.066652pt;}
.x6{left:558.426652pt;}
.x21{left:560.066652pt;}
.x26{left:561.986652pt;}
.x1b{left:571.933333pt;}
.x7{left:606.426652pt;}
.x8{left:635.906652pt;}
.x32{left:639.679986pt;}
.x30{left:685.213319pt;}
.x3b{left:700.506652pt;}
.x1{left:766.719986pt;}
.x22{left:789.626652pt;}
.x23{left:817.053319pt;}
.x24{left:829.053319pt;}
.x17{left:913.599986pt;}
.xc{left:922.559986pt;}
}




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