
    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_fde710da380fdc9de6cee131.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f8b6fb2139ae9650a6e9b57d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_6dcb2e92a76462c6d68264d3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b0340da99c06ec333a0f0771.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5cd4d64da8586a172ede4a05.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aff9791fea1308470dcc7ce5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_3f5fde5ed303dbe42d439051.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_1daeeff09f13a8ddd4c4f489.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_eb47149e601009dea432b7c3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_90929d71b2f0961961e84ce2.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_09ea1481a8eaffcea6d5ae5d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_6b2aeefb18ce0b285ab6b9a1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_8ead252489ac964239a89fb5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.761719;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_59c71926368a6a3dadbdbd6e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_7b66220661ef67134e150883.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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_f2cd7191d04bb4cd4b8419db.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_37abb314c6b57ccb4353b85d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5{letter-spacing:-2.622000px;}
.lsd{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187200px;}
.ls8{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls1{letter-spacing:10.620000px;}
.ls7{letter-spacing:17.820000px;}
.ls6{letter-spacing:23.580000px;}
.lsb{letter-spacing:168.821280px;}
.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;}
}
.ws0{word-spacing:-21.795720px;}
.ws8{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.620000px;}
.ws7{word-spacing:-16.272000px;}
.ws3{word-spacing:-14.970240px;}
.ws4{word-spacing:-12.348240px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-5.559840px;}
._f{margin-left:-4.492320px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.657200px;}
._2{width:1.336560px;}
._23{width:2.358720px;}
._a{width:3.361200px;}
._17{width:4.375680px;}
._5{width:5.644080px;}
._6{width:7.132800px;}
._24{width:8.146320px;}
._e{width:9.266400px;}
._4{width:10.324800px;}
._3{width:11.850240px;}
._d{width:13.703520px;}
._c{width:14.742000px;}
._18{width:16.483440px;}
._13{width:18.189600px;}
._9{width:19.274640px;}
._16{width:22.211760px;}
._1a{width:23.250240px;}
._1b{width:24.846720px;}
._b{width:30.720000px;}
._1e{width:32.657520px;}
._1f{width:33.948720px;}
._20{width:35.016240px;}
._19{width:36.560160px;}
._11{width:38.666160px;}
._10{width:40.154880px;}
._15{width:41.614560px;}
._14{width:42.682080px;}
._7{width:43.804800px;}
._8{width:45.209280px;}
._27{width:46.921680px;}
._22{width:53.688480px;}
._21{width:54.812640px;}
._1d{width:61.214880px;}
._1c{width:62.899680px;}
._26{width:76.237200px;}
._25{width:77.557440px;}
.fc6{color:rgb(41,100,170);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y3b{bottom:8.100000px;}
.y45{bottom:8.280000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.y3f{bottom:21.960000px;}
.y49{bottom:22.140000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y4d{bottom:35.820000px;}
.y3e{bottom:36.000000px;}
.y39{bottom:40.680000px;}
.y48{bottom:49.860000px;}
.y38{bottom:62.640000px;}
.y44{bottom:63.720000px;}
.y37{bottom:69.480000px;}
.y2{bottom:72.720000px;}
.y47{bottom:77.580000px;}
.y36{bottom:84.816000px;}
.y4c{bottom:91.440000px;}
.y43{bottom:91.470000px;}
.y56{bottom:91.656000px;}
.y51{bottom:105.480000px;}
.y46{bottom:105.510000px;}
.y55{bottom:105.516000px;}
.y35{bottom:106.776000px;}
.y34{bottom:113.616000px;}
.y50{bottom:119.340000px;}
.y42{bottom:119.370000px;}
.y2e{bottom:121.356000px;}
.y33{bottom:128.736000px;}
.y32{bottom:135.576000px;}
.y2d{bottom:149.076000px;}
.y31{bottom:149.436000px;}
.y53{bottom:154.290000px;}
.y54{bottom:161.850000px;}
.y2c{bottom:176.790000px;}
.y52{bottom:182.190000px;}
.y4f{bottom:203.970000px;}
.y2b{bottom:204.690000px;}
.y2a{bottom:232.410000px;}
.y30{bottom:239.970000px;}
.y29{bottom:260.130000px;}
.y28{bottom:288.030000px;}
.y27{bottom:315.750000px;}
.y26{bottom:343.515000px;}
.y4e{bottom:345.135000px;}
.y25{bottom:371.235000px;}
.y4b{bottom:375.195000px;}
.y24{bottom:399.135000px;}
.y23{bottom:426.855000px;}
.y22{bottom:454.575000px;}
.y21{bottom:482.475000px;}
.y4a{bottom:488.595000px;}
.y20{bottom:510.195000px;}
.y41{bottom:518.475000px;}
.y1f{bottom:537.915000px;}
.y1e{bottom:565.635000px;}
.y1d{bottom:593.535000px;}
.y1c{bottom:621.285000px;}
.y2f{bottom:628.845000px;}
.y1b{bottom:649.005000px;}
.y40{bottom:659.625000px;}
.y1a{bottom:676.725000px;}
.y3d{bottom:689.685000px;}
.y19{bottom:704.625000px;}
.y18{bottom:732.345000px;}
.y3c{bottom:747.465000px;}
.y17{bottom:760.065000px;}
.y3a{bottom:777.525000px;}
.y16{bottom:787.965000px;}
.y15{bottom:815.685000px;}
.y14{bottom:843.405000px;}
.y13{bottom:871.125000px;}
.y12{bottom:899.070000px;}
.y11{bottom:926.790000px;}
.y10{bottom:954.510000px;}
.yf{bottom:982.410000px;}
.ye{bottom:1010.130000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h10{height:27.720000px;}
.he{height:47.344922px;}
.h3{height:48.224531px;}
.hc{height:52.998047px;}
.h16{height:54.421875px;}
.h11{height:55.620000px;}
.h8{height:58.651172px;}
.hb{height:58.819922px;}
.h12{height:58.984453px;}
.hd{height:65.010937px;}
.h6{height:65.884219px;}
.hf{height:71.613281px;}
.h4{height:75.849609px;}
.h13{height:82.635820px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h17{height:86.585445px;}
.h2{height:92.340000px;}
.h15{height:111.060000px;}
.h14{height:138.996000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:30.960000px;}
.we{width:32.040000px;}
.w16{width:33.300000px;}
.w4{width:64.836000px;}
.wd{width:80.820000px;}
.wa{width:81.936000px;}
.wb{width:82.080000px;}
.wf{width:82.116000px;}
.wc{width:89.856000px;}
.w11{width:97.416000px;}
.w10{width:106.740000px;}
.w12{width:163.980000px;}
.w14{width:164.010000px;}
.w13{width:171.930000px;}
.w15{width:204.330000px;}
.w3{width:207.255000px;}
.w7{width:338.070000px;}
.w9{width:370.515000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w6{width:893.339973px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x34{left:6.840000px;}
.x38{left:8.280000px;}
.x2f{left:11.340000px;}
.x33{left:13.365000px;}
.x18{left:15.300000px;}
.x2d{left:16.560000px;}
.x26{left:19.800000px;}
.x37{left:20.880000px;}
.x29{left:22.725000px;}
.x2e{left:24.120000px;}
.x30{left:25.380000px;}
.x31{left:31.185000px;}
.x35{left:32.220000px;}
.x36{left:34.380000px;}
.x3b{left:35.820000px;}
.x3c{left:36.900000px;}
.x2b{left:38.700000px;}
.x1c{left:41.436000px;}
.x1f{left:45.585000px;}
.x25{left:48.090000px;}
.x32{left:49.185000px;}
.x27{left:50.400000px;}
.x39{left:52.740000px;}
.x23{left:54.000000px;}
.x3a{left:55.080000px;}
.x4{left:62.280000px;}
.x7{left:63.719987px;}
.x3d{left:67.680000px;}
.x14{left:69.839987px;}
.x3e{left:74.879987px;}
.x1b{left:78.840000px;}
.x15{left:79.956000px;}
.x8{left:97.415987px;}
.x16{left:102.774000px;}
.x1a{left:126.360000px;}
.x1{left:137.736000px;}
.xd{left:143.135973px;}
.xe{left:149.975987px;}
.x1d{left:162.930000px;}
.x1e{left:245.010000px;}
.x28{left:246.090000px;}
.xc{left:264.854987px;}
.xa{left:275.834987px;}
.x13{left:279.794987px;}
.xb{left:286.634987px;}
.x41{left:294.914987px;}
.x20{left:337.215000px;}
.x2{left:340.269000px;}
.xf{left:379.334973px;}
.x10{left:389.954987px;}
.x2c{left:419.145000px;}
.x17{left:420.405000px;}
.x11{left:435.524973px;}
.x12{left:442.364987px;}
.x9{left:451.904987px;}
.x19{left:453.705000px;}
.x3f{left:476.564973px;}
.x40{left:483.404987px;}
.x21{left:536.685000px;}
.x22{left:618.810000px;}
.x2a{left:619.890000px;}
.x24{left:727.890000px;}
.x5{left:752.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-2.330667pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls8{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls1{letter-spacing:9.440000pt;}
.ls7{letter-spacing:15.840000pt;}
.ls6{letter-spacing:20.960000pt;}
.lsb{letter-spacing:150.063360pt;}
.ws0{word-spacing:-19.373973pt;}
.ws8{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws4{word-spacing:-10.976213pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.942080pt;}
._f{margin-left:-3.993173pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.473067pt;}
._2{width:1.188053pt;}
._23{width:2.096640pt;}
._a{width:2.987733pt;}
._17{width:3.889493pt;}
._5{width:5.016960pt;}
._6{width:6.340267pt;}
._24{width:7.241173pt;}
._e{width:8.236800pt;}
._4{width:9.177600pt;}
._3{width:10.533547pt;}
._d{width:12.180907pt;}
._c{width:13.104000pt;}
._18{width:14.651947pt;}
._13{width:16.168533pt;}
._9{width:17.133013pt;}
._16{width:19.743787pt;}
._1a{width:20.666880pt;}
._1b{width:22.085973pt;}
._b{width:27.306667pt;}
._1e{width:29.028907pt;}
._1f{width:30.176640pt;}
._20{width:31.125547pt;}
._19{width:32.497920pt;}
._11{width:34.369920pt;}
._10{width:35.693227pt;}
._15{width:36.990720pt;}
._14{width:37.939627pt;}
._7{width:38.937600pt;}
._8{width:40.186027pt;}
._27{width:41.708160pt;}
._22{width:47.723093pt;}
._21{width:48.722347pt;}
._1d{width:54.413227pt;}
._1c{width:55.910827pt;}
._26{width:67.766400pt;}
._25{width:68.939947pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y3b{bottom:7.200000pt;}
.y45{bottom:7.360000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.y3f{bottom:19.520000pt;}
.y49{bottom:19.680000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y4d{bottom:31.840000pt;}
.y3e{bottom:32.000000pt;}
.y39{bottom:36.160000pt;}
.y48{bottom:44.320000pt;}
.y38{bottom:55.680000pt;}
.y44{bottom:56.640000pt;}
.y37{bottom:61.760000pt;}
.y2{bottom:64.640000pt;}
.y47{bottom:68.960000pt;}
.y36{bottom:75.392000pt;}
.y4c{bottom:81.280000pt;}
.y43{bottom:81.306667pt;}
.y56{bottom:81.472000pt;}
.y51{bottom:93.760000pt;}
.y46{bottom:93.786667pt;}
.y55{bottom:93.792000pt;}
.y35{bottom:94.912000pt;}
.y34{bottom:100.992000pt;}
.y50{bottom:106.080000pt;}
.y42{bottom:106.106667pt;}
.y2e{bottom:107.872000pt;}
.y33{bottom:114.432000pt;}
.y32{bottom:120.512000pt;}
.y2d{bottom:132.512000pt;}
.y31{bottom:132.832000pt;}
.y53{bottom:137.146667pt;}
.y54{bottom:143.866667pt;}
.y2c{bottom:157.146667pt;}
.y52{bottom:161.946667pt;}
.y4f{bottom:181.306667pt;}
.y2b{bottom:181.946667pt;}
.y2a{bottom:206.586667pt;}
.y30{bottom:213.306667pt;}
.y29{bottom:231.226667pt;}
.y28{bottom:256.026667pt;}
.y27{bottom:280.666667pt;}
.y26{bottom:305.346667pt;}
.y4e{bottom:306.786667pt;}
.y25{bottom:329.986667pt;}
.y4b{bottom:333.506667pt;}
.y24{bottom:354.786667pt;}
.y23{bottom:379.426667pt;}
.y22{bottom:404.066667pt;}
.y21{bottom:428.866667pt;}
.y4a{bottom:434.306667pt;}
.y20{bottom:453.506667pt;}
.y41{bottom:460.866667pt;}
.y1f{bottom:478.146667pt;}
.y1e{bottom:502.786667pt;}
.y1d{bottom:527.586667pt;}
.y1c{bottom:552.253333pt;}
.y2f{bottom:558.973333pt;}
.y1b{bottom:576.893333pt;}
.y40{bottom:586.333333pt;}
.y1a{bottom:601.533333pt;}
.y3d{bottom:613.053333pt;}
.y19{bottom:626.333333pt;}
.y18{bottom:650.973333pt;}
.y3c{bottom:664.413333pt;}
.y17{bottom:675.613333pt;}
.y3a{bottom:691.133333pt;}
.y16{bottom:700.413333pt;}
.y15{bottom:725.053333pt;}
.y14{bottom:749.693333pt;}
.y13{bottom:774.333333pt;}
.y12{bottom:799.173333pt;}
.y11{bottom:823.813333pt;}
.y10{bottom:848.453333pt;}
.yf{bottom:873.253333pt;}
.ye{bottom:897.893333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h10{height:24.640000pt;}
.he{height:42.084375pt;}
.h3{height:42.866250pt;}
.hc{height:47.109375pt;}
.h16{height:48.375000pt;}
.h11{height:49.440000pt;}
.h8{height:52.134375pt;}
.hb{height:52.284375pt;}
.h12{height:52.430625pt;}
.hd{height:57.787500pt;}
.h6{height:58.563750pt;}
.hf{height:63.656250pt;}
.h4{height:67.421875pt;}
.h13{height:73.454062pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h17{height:76.964840pt;}
.h2{height:82.080000pt;}
.h15{height:98.720000pt;}
.h14{height:123.552000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:27.520000pt;}
.we{width:28.480000pt;}
.w16{width:29.600000pt;}
.w4{width:57.632000pt;}
.wd{width:71.840000pt;}
.wa{width:72.832000pt;}
.wb{width:72.960000pt;}
.wf{width:72.992000pt;}
.wc{width:79.872000pt;}
.w11{width:86.592000pt;}
.w10{width:94.880000pt;}
.w12{width:145.760000pt;}
.w14{width:145.786667pt;}
.w13{width:152.826667pt;}
.w15{width:181.626667pt;}
.w3{width:184.226667pt;}
.w7{width:300.506667pt;}
.w9{width:329.346667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w6{width:794.079976pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x34{left:6.080000pt;}
.x38{left:7.360000pt;}
.x2f{left:10.080000pt;}
.x33{left:11.880000pt;}
.x18{left:13.600000pt;}
.x2d{left:14.720000pt;}
.x26{left:17.600000pt;}
.x37{left:18.560000pt;}
.x29{left:20.200000pt;}
.x2e{left:21.440000pt;}
.x30{left:22.560000pt;}
.x31{left:27.720000pt;}
.x35{left:28.640000pt;}
.x36{left:30.560000pt;}
.x3b{left:31.840000pt;}
.x3c{left:32.800000pt;}
.x2b{left:34.400000pt;}
.x1c{left:36.832000pt;}
.x1f{left:40.520000pt;}
.x25{left:42.746667pt;}
.x32{left:43.720000pt;}
.x27{left:44.800000pt;}
.x39{left:46.880000pt;}
.x23{left:48.000000pt;}
.x3a{left:48.960000pt;}
.x4{left:55.360000pt;}
.x7{left:56.639988pt;}
.x3d{left:60.160000pt;}
.x14{left:62.079988pt;}
.x3e{left:66.559988pt;}
.x1b{left:70.080000pt;}
.x15{left:71.072000pt;}
.x8{left:86.591988pt;}
.x16{left:91.354667pt;}
.x1a{left:112.320000pt;}
.x1{left:122.432000pt;}
.xd{left:127.231976pt;}
.xe{left:133.311988pt;}
.x1d{left:144.826667pt;}
.x1e{left:217.786667pt;}
.x28{left:218.746667pt;}
.xc{left:235.426655pt;}
.xa{left:245.186655pt;}
.x13{left:248.706655pt;}
.xb{left:254.786655pt;}
.x41{left:262.146655pt;}
.x20{left:299.746667pt;}
.x2{left:302.461333pt;}
.xf{left:337.186643pt;}
.x10{left:346.626655pt;}
.x2c{left:372.573333pt;}
.x17{left:373.693333pt;}
.x11{left:387.133310pt;}
.x12{left:393.213321pt;}
.x9{left:401.693321pt;}
.x19{left:403.293333pt;}
.x3f{left:423.613310pt;}
.x40{left:429.693321pt;}
.x21{left:477.053333pt;}
.x22{left:550.053333pt;}
.x2a{left:551.013333pt;}
.x24{left:647.013333pt;}
.x5{left:668.933333pt;}
}




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