
    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_c88a26bb07ae4c95060f0028.woff')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_1c84248a06980b69258d6cd0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877000;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_65194aba6cba43c2fefa6887.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_d6c28f9dd2a4c87cdd58d881.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ed17f9c7999ccaaae970fd8a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_09fcc2dbef79442e8198dff9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_28b577ac970e460edd45fe7a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_6eb6f50835862462c8e98700.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972656;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_75f71d796a94f76e2e546f7b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.160000px;}
.ls9{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.039600px;}
.ls3{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.080400px;}
.ls10{letter-spacing:0.103800px;}
.lsc{letter-spacing:0.121200px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.208200px;}
.lse{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.253200px;}
.ls5{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.432000px;}
.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;}
}
.wsa{word-spacing:-84.384000px;}
.ws19{word-spacing:-72.144000px;}
.ws11{word-spacing:-72.000000px;}
.ws30{word-spacing:-57.628800px;}
.ws1{word-spacing:-57.600000px;}
.ws34{word-spacing:-30.624480px;}
.ws33{word-spacing:-24.540720px;}
.ws35{word-spacing:-24.419520px;}
.ws9{word-spacing:-23.418720px;}
.ws40{word-spacing:-20.232000px;}
.ws26{word-spacing:-20.160000px;}
.ws45{word-spacing:-20.056032px;}
.ws12{word-spacing:-20.016000px;}
.ws2f{word-spacing:-16.848000px;}
.wsd{word-spacing:-2.728800px;}
.ws37{word-spacing:-2.448000px;}
.wsf{word-spacing:-2.445840px;}
.ws7{word-spacing:-2.440800px;}
.ws39{word-spacing:-2.391984px;}
.wsb{word-spacing:-2.389680px;}
.ws29{word-spacing:-2.376000px;}
.ws2{word-spacing:-2.325840px;}
.ws2a{word-spacing:-2.304000px;}
.ws27{word-spacing:-2.232000px;}
.ws10{word-spacing:-2.194080px;}
.ws1e{word-spacing:-2.160000px;}
.ws13{word-spacing:-2.016000px;}
.ws44{word-spacing:-2.000928px;}
.ws1a{word-spacing:-1.968000px;}
.ws3d{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.896000px;}
.ws3a{word-spacing:-1.872000px;}
.ws8{word-spacing:-1.776960px;}
.ws23{word-spacing:-1.692000px;}
.ws3f{word-spacing:-1.656000px;}
.ws18{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.545024px;}
.ws21{word-spacing:-1.512000px;}
.ws3c{word-spacing:-1.472544px;}
.ws5{word-spacing:-1.416240px;}
.ws16{word-spacing:-1.368000px;}
.ws31{word-spacing:-1.341504px;}
.ws38{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.152000px;}
.ws6{word-spacing:-1.061280px;}
.ws4{word-spacing:-1.049040px;}
.ws22{word-spacing:-1.032000px;}
.ws20{word-spacing:-1.008000px;}
.ws3{word-spacing:-1.005120px;}
.ws2e{word-spacing:-0.991968px;}
.ws42{word-spacing:-0.928728px;}
.ws17{word-spacing:-0.900000px;}
.ws41{word-spacing:-0.865152px;}
.ws15{word-spacing:-0.792000px;}
.wsc{word-spacing:-0.694560px;}
.wse{word-spacing:-0.663840px;}
.ws47{word-spacing:-0.623808px;}
.ws3e{word-spacing:-0.576000px;}
.ws1c{word-spacing:-0.504000px;}
.ws2c{word-spacing:-0.477264px;}
.ws46{word-spacing:-0.413280px;}
.ws2d{word-spacing:-0.376560px;}
.ws43{word-spacing:-0.312624px;}
.ws14{word-spacing:-0.312000px;}
.ws1b{word-spacing:-0.288000px;}
.ws28{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:0.144000px;}
.ws2b{word-spacing:0.432000px;}
.ws32{word-spacing:0.464832px;}
.ws1d{word-spacing:0.504000px;}
.ws25{word-spacing:0.560016px;}
.ws36{word-spacing:0.576000px;}
._4{margin-left:-2.964864px;}
._1{margin-left:-1.152576px;}
._0{width:1.738800px;}
._d{width:3.171456px;}
._e{width:4.209744px;}
._5{width:18.458976px;}
._3{width:19.824096px;}
._2{width:21.834000px;}
._f{width:23.040000px;}
._8{width:217.918080px;}
._6{width:228.561360px;}
._7{width:268.101936px;}
._9{width:374.603376px;}
._a{width:503.410368px;}
._c{width:558.317088px;}
._b{width:583.009920px;}
.fc9{color:rgb(58,56,56);}
.fc5{color:rgb(75,74,74);}
.fc8{color:rgb(215,63,62);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(0,103,71);}
.fc3{color:rgb(43,47,56);}
.fc7{color:transparent;}
.fc2{color:rgb(240,239,238);}
.fc1{color:rgb(117,112,112);}
.fc0{color:rgb(247,248,253);}
.fsc{font-size:63.360000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs2{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fsa{font-size:87.840000px;}
.fsb{font-size:87.984000px;}
.fsd{font-size:95.760000px;}
.fs9{font-size:110.160000px;}
.fsf{font-size:167.760000px;}
.fse{font-size:192.384000px;}
.fs4{font-size:288.000000px;}
.fs3{font-size:288.144000px;}
.fs0{font-size:347.760000px;}
.fs1{font-size:347.904000px;}
.y0{bottom:0.000000px;}
.y56{bottom:22.716000px;}
.y64{bottom:23.616000px;}
.y5{bottom:36.972000px;}
.y55{bottom:55.116000px;}
.y54{bottom:87.516000px;}
.y34{bottom:89.424000px;}
.y2c{bottom:98.964000px;}
.y53{bottom:119.916000px;}
.y33{bottom:125.424000px;}
.y31{bottom:134.676000px;}
.y2b{bottom:134.964000px;}
.y29{bottom:143.388000px;}
.y52{bottom:152.355000px;}
.y30{bottom:170.715000px;}
.y27{bottom:181.830000px;}
.y2a{bottom:184.320000px;}
.y51{bottom:184.755000px;}
.y28{bottom:188.385000px;}
.y50{bottom:217.155000px;}
.y2f{bottom:228.990000px;}
.y26{bottom:231.405000px;}
.y3b{bottom:256.350000px;}
.y61{bottom:271.905000px;}
.y4c{bottom:284.790000px;}
.y3a{bottom:292.350000px;}
.y60{bottom:304.305000px;}
.y4b{bottom:320.790000px;}
.y63{bottom:322.170000px;}
.y39{bottom:328.350000px;}
.y5f{bottom:336.705000px;}
.y12{bottom:348.450000px;}
.y25{bottom:350.970000px;}
.y4a{bottom:356.790000px;}
.y23{bottom:358.230000px;}
.y38{bottom:364.395000px;}
.yc{bottom:367.380000px;}
.y46{bottom:368.565000px;}
.y5e{bottom:369.150000px;}
.y22{bottom:379.830000px;}
.y1a{bottom:380.850000px;}
.y49{bottom:392.790000px;}
.y2e{bottom:393.150000px;}
.y11{bottom:398.850000px;}
.y37{bottom:400.395000px;}
.y21{bottom:401.430000px;}
.y5d{bottom:401.550000px;}
.y19{bottom:402.450000px;}
.y45{bottom:404.610000px;}
.yb{bottom:417.780000px;}
.y48{bottom:428.835000px;}
.y2d{bottom:429.150000px;}
.y62{bottom:433.800000px;}
.y5c{bottom:433.950000px;}
.y4{bottom:435.345000px;}
.y44{bottom:440.610000px;}
.y40{bottom:442.230000px;}
.y20{bottom:444.630000px;}
.y18{bottom:445.650000px;}
.y10{bottom:449.280000px;}
.y36{bottom:450.255000px;}
.y3f{bottom:464.730000px;}
.y47{bottom:464.835000px;}
.y1f{bottom:466.275000px;}
.y5b{bottom:466.350000px;}
.y17{bottom:467.280000px;}
.ya{bottom:468.210000px;}
.y32{bottom:476.280000px;}
.y43{bottom:476.610000px;}
.y35{bottom:484.635000px;}
.y3e{bottom:487.230000px;}
.y5a{bottom:498.750000px;}
.yf{bottom:499.680000px;}
.y1e{bottom:509.475000px;}
.y16{bottom:510.480000px;}
.y4f{bottom:513.690000px;}
.y9{bottom:518.610000px;}
.y3d{bottom:523.515000px;}
.ye{bottom:524.880000px;}
.y3{bottom:529.305000px;}
.y1d{bottom:531.075000px;}
.y59{bottom:531.180000px;}
.y15{bottom:532.080000px;}
.y42{bottom:538.530000px;}
.y4e{bottom:549.690000px;}
.y58{bottom:563.580000px;}
.y8{bottom:569.010000px;}
.y3c{bottom:573.630000px;}
.y1c{bottom:574.275000px;}
.y41{bottom:574.530000px;}
.y14{bottom:575.280000px;}
.yd{bottom:575.310000px;}
.y4d{bottom:585.690000px;}
.y1b{bottom:595.875000px;}
.y57{bottom:595.980000px;}
.y13{bottom:596.880000px;}
.y2{bottom:623.310000px;}
.y24{bottom:716.400000px;}
.y1{bottom:717.270000px;}
.y6{bottom:718.050000px;}
.y7{bottom:721.830000px;}
.h15{height:62.424000px;}
.h11{height:66.082500px;}
.h3{height:67.417920px;}
.hc{height:67.476240px;}
.hb{height:67.591584px;}
.h8{height:75.093750px;}
.h9{height:75.243937px;}
.ha{height:85.391250px;}
.h6{height:87.859687px;}
.h7{height:88.009875px;}
.hf{height:91.614375px;}
.h10{height:91.764562px;}
.hd{height:93.811584px;}
.h12{height:99.874688px;}
.he{height:114.893437px;}
.h14{height:127.785937px;}
.h13{height:146.542500px;}
.h5{height:230.688000px;}
.h4{height:230.803344px;}
.h1{height:264.895312px;}
.h2{height:265.005000px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x25{left:20.915979px;}
.x15{left:30.095979px;}
.x26{left:31.859979px;}
.xb{left:33.299979px;}
.x20{left:42.299979px;}
.x9{left:44.567979px;}
.x18{left:49.931979px;}
.x1b{left:69.515979px;}
.x1{left:74.843979px;}
.x4{left:81.323979px;}
.x3{left:88.703979px;}
.xd{left:122.471979px;}
.x7{left:155.489979px;}
.xa{left:168.989979px;}
.x2{left:179.819979px;}
.x17{left:212.504979px;}
.x1a{left:219.704979px;}
.x10{left:230.969979px;}
.xe{left:232.304979px;}
.x14{left:236.264979px;}
.x1c{left:249.224979px;}
.xf{left:252.029979px;}
.x1f{left:351.464979px;}
.x29{left:391.319979px;}
.x24{left:403.634979px;}
.x11{left:423.389979px;}
.x27{left:443.414979px;}
.x28{left:587.879979px;}
.x16{left:686.009979px;}
.x1d{left:700.709979px;}
.x13{left:713.729979px;}
.x12{left:715.529979px;}
.xc{left:717.404979px;}
.x21{left:731.804979px;}
.x19{left:753.914979px;}
.x8{left:768.854979px;}
.x6{left:911.009979px;}
.x1e{left:957.929979px;}
.x22{left:1409.474979px;}
.x2a{left:1410.914979px;}
.x23{left:1413.074979px;}
.x5{left:1415.414979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.253333pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.035200pt;}
.ls3{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.071467pt;}
.ls10{letter-spacing:0.092267pt;}
.lsc{letter-spacing:0.107733pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.185067pt;}
.lse{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.225067pt;}
.ls5{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.384000pt;}
.wsa{word-spacing:-75.008000pt;}
.ws19{word-spacing:-64.128000pt;}
.ws11{word-spacing:-64.000000pt;}
.ws30{word-spacing:-51.225600pt;}
.ws1{word-spacing:-51.200000pt;}
.ws34{word-spacing:-27.221760pt;}
.ws33{word-spacing:-21.813973pt;}
.ws35{word-spacing:-21.706240pt;}
.ws9{word-spacing:-20.816640pt;}
.ws40{word-spacing:-17.984000pt;}
.ws26{word-spacing:-17.920000pt;}
.ws45{word-spacing:-17.827584pt;}
.ws12{word-spacing:-17.792000pt;}
.ws2f{word-spacing:-14.976000pt;}
.wsd{word-spacing:-2.425600pt;}
.ws37{word-spacing:-2.176000pt;}
.wsf{word-spacing:-2.174080pt;}
.ws7{word-spacing:-2.169600pt;}
.ws39{word-spacing:-2.126208pt;}
.wsb{word-spacing:-2.124160pt;}
.ws29{word-spacing:-2.112000pt;}
.ws2{word-spacing:-2.067413pt;}
.ws2a{word-spacing:-2.048000pt;}
.ws27{word-spacing:-1.984000pt;}
.ws10{word-spacing:-1.950293pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.792000pt;}
.ws44{word-spacing:-1.778603pt;}
.ws1a{word-spacing:-1.749333pt;}
.ws3d{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.685333pt;}
.ws3a{word-spacing:-1.664000pt;}
.ws8{word-spacing:-1.579520pt;}
.ws23{word-spacing:-1.504000pt;}
.ws3f{word-spacing:-1.472000pt;}
.ws18{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.373355pt;}
.ws21{word-spacing:-1.344000pt;}
.ws3c{word-spacing:-1.308928pt;}
.ws5{word-spacing:-1.258880pt;}
.ws16{word-spacing:-1.216000pt;}
.ws31{word-spacing:-1.192448pt;}
.ws38{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.024000pt;}
.ws6{word-spacing:-0.943360pt;}
.ws4{word-spacing:-0.932480pt;}
.ws22{word-spacing:-0.917333pt;}
.ws20{word-spacing:-0.896000pt;}
.ws3{word-spacing:-0.893440pt;}
.ws2e{word-spacing:-0.881749pt;}
.ws42{word-spacing:-0.825536pt;}
.ws17{word-spacing:-0.800000pt;}
.ws41{word-spacing:-0.769024pt;}
.ws15{word-spacing:-0.704000pt;}
.wsc{word-spacing:-0.617387pt;}
.wse{word-spacing:-0.590080pt;}
.ws47{word-spacing:-0.554496pt;}
.ws3e{word-spacing:-0.512000pt;}
.ws1c{word-spacing:-0.448000pt;}
.ws2c{word-spacing:-0.424235pt;}
.ws46{word-spacing:-0.367360pt;}
.ws2d{word-spacing:-0.334720pt;}
.ws43{word-spacing:-0.277888pt;}
.ws14{word-spacing:-0.277333pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws28{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.384000pt;}
.ws32{word-spacing:0.413184pt;}
.ws1d{word-spacing:0.448000pt;}
.ws25{word-spacing:0.497792pt;}
.ws36{word-spacing:0.512000pt;}
._4{margin-left:-2.635435pt;}
._1{margin-left:-1.024512pt;}
._0{width:1.545600pt;}
._d{width:2.819072pt;}
._e{width:3.741995pt;}
._5{width:16.407979pt;}
._3{width:17.621419pt;}
._2{width:19.408000pt;}
._f{width:20.480000pt;}
._8{width:193.704960pt;}
._6{width:203.165653pt;}
._7{width:238.312832pt;}
._9{width:332.980779pt;}
._a{width:447.475883pt;}
._c{width:496.281856pt;}
._b{width:518.231040pt;}
.fsc{font-size:56.320000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs2{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fsa{font-size:78.080000pt;}
.fsb{font-size:78.208000pt;}
.fsd{font-size:85.120000pt;}
.fs9{font-size:97.920000pt;}
.fsf{font-size:149.120000pt;}
.fse{font-size:171.008000pt;}
.fs4{font-size:256.000000pt;}
.fs3{font-size:256.128000pt;}
.fs0{font-size:309.120000pt;}
.fs1{font-size:309.248000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:20.192000pt;}
.y64{bottom:20.992000pt;}
.y5{bottom:32.864000pt;}
.y55{bottom:48.992000pt;}
.y54{bottom:77.792000pt;}
.y34{bottom:79.488000pt;}
.y2c{bottom:87.968000pt;}
.y53{bottom:106.592000pt;}
.y33{bottom:111.488000pt;}
.y31{bottom:119.712000pt;}
.y2b{bottom:119.968000pt;}
.y29{bottom:127.456000pt;}
.y52{bottom:135.426667pt;}
.y30{bottom:151.746667pt;}
.y27{bottom:161.626667pt;}
.y2a{bottom:163.840000pt;}
.y51{bottom:164.226667pt;}
.y28{bottom:167.453333pt;}
.y50{bottom:193.026667pt;}
.y2f{bottom:203.546667pt;}
.y26{bottom:205.693333pt;}
.y3b{bottom:227.866667pt;}
.y61{bottom:241.693333pt;}
.y4c{bottom:253.146667pt;}
.y3a{bottom:259.866667pt;}
.y60{bottom:270.493333pt;}
.y4b{bottom:285.146667pt;}
.y63{bottom:286.373333pt;}
.y39{bottom:291.866667pt;}
.y5f{bottom:299.293333pt;}
.y12{bottom:309.733333pt;}
.y25{bottom:311.973333pt;}
.y4a{bottom:317.146667pt;}
.y23{bottom:318.426667pt;}
.y38{bottom:323.906667pt;}
.yc{bottom:326.560000pt;}
.y46{bottom:327.613333pt;}
.y5e{bottom:328.133333pt;}
.y22{bottom:337.626667pt;}
.y1a{bottom:338.533333pt;}
.y49{bottom:349.146667pt;}
.y2e{bottom:349.466667pt;}
.y11{bottom:354.533333pt;}
.y37{bottom:355.906667pt;}
.y21{bottom:356.826667pt;}
.y5d{bottom:356.933333pt;}
.y19{bottom:357.733333pt;}
.y45{bottom:359.653333pt;}
.yb{bottom:371.360000pt;}
.y48{bottom:381.186667pt;}
.y2d{bottom:381.466667pt;}
.y62{bottom:385.600000pt;}
.y5c{bottom:385.733333pt;}
.y4{bottom:386.973333pt;}
.y44{bottom:391.653333pt;}
.y40{bottom:393.093333pt;}
.y20{bottom:395.226667pt;}
.y18{bottom:396.133333pt;}
.y10{bottom:399.360000pt;}
.y36{bottom:400.226667pt;}
.y3f{bottom:413.093333pt;}
.y47{bottom:413.186667pt;}
.y1f{bottom:414.466667pt;}
.y5b{bottom:414.533333pt;}
.y17{bottom:415.360000pt;}
.ya{bottom:416.186667pt;}
.y32{bottom:423.360000pt;}
.y43{bottom:423.653333pt;}
.y35{bottom:430.786667pt;}
.y3e{bottom:433.093333pt;}
.y5a{bottom:443.333333pt;}
.yf{bottom:444.160000pt;}
.y1e{bottom:452.866667pt;}
.y16{bottom:453.760000pt;}
.y4f{bottom:456.613333pt;}
.y9{bottom:460.986667pt;}
.y3d{bottom:465.346667pt;}
.ye{bottom:466.560000pt;}
.y3{bottom:470.493333pt;}
.y1d{bottom:472.066667pt;}
.y59{bottom:472.160000pt;}
.y15{bottom:472.960000pt;}
.y42{bottom:478.693333pt;}
.y4e{bottom:488.613333pt;}
.y58{bottom:500.960000pt;}
.y8{bottom:505.786667pt;}
.y3c{bottom:509.893333pt;}
.y1c{bottom:510.466667pt;}
.y41{bottom:510.693333pt;}
.y14{bottom:511.360000pt;}
.yd{bottom:511.386667pt;}
.y4d{bottom:520.613333pt;}
.y1b{bottom:529.666667pt;}
.y57{bottom:529.760000pt;}
.y13{bottom:530.560000pt;}
.y2{bottom:554.053333pt;}
.y24{bottom:636.800000pt;}
.y1{bottom:637.573333pt;}
.y6{bottom:638.266667pt;}
.y7{bottom:641.626667pt;}
.h15{height:55.488000pt;}
.h11{height:58.740000pt;}
.h3{height:59.927040pt;}
.hc{height:59.978880pt;}
.hb{height:60.081408pt;}
.h8{height:66.750000pt;}
.h9{height:66.883500pt;}
.ha{height:75.903333pt;}
.h6{height:78.097500pt;}
.h7{height:78.231000pt;}
.hf{height:81.435000pt;}
.h10{height:81.568500pt;}
.hd{height:83.388075pt;}
.h12{height:88.777500pt;}
.he{height:102.127500pt;}
.h14{height:113.587500pt;}
.h13{height:130.260000pt;}
.h5{height:205.056000pt;}
.h4{height:205.158528pt;}
.h1{height:235.462500pt;}
.h2{height:235.560000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x25{left:18.591981pt;}
.x15{left:26.751981pt;}
.x26{left:28.319981pt;}
.xb{left:29.599981pt;}
.x20{left:37.599981pt;}
.x9{left:39.615981pt;}
.x18{left:44.383981pt;}
.x1b{left:61.791981pt;}
.x1{left:66.527981pt;}
.x4{left:72.287981pt;}
.x3{left:78.847981pt;}
.xd{left:108.863981pt;}
.x7{left:138.213314pt;}
.xa{left:150.213314pt;}
.x2{left:159.839981pt;}
.x17{left:188.893314pt;}
.x1a{left:195.293314pt;}
.x10{left:205.306648pt;}
.xe{left:206.493314pt;}
.x14{left:210.013314pt;}
.x1c{left:221.533314pt;}
.xf{left:224.026648pt;}
.x1f{left:312.413314pt;}
.x29{left:347.839981pt;}
.x24{left:358.786648pt;}
.x11{left:376.346648pt;}
.x27{left:394.146648pt;}
.x28{left:522.559981pt;}
.x16{left:609.786648pt;}
.x1d{left:622.853314pt;}
.x13{left:634.426648pt;}
.x12{left:636.026648pt;}
.xc{left:637.693314pt;}
.x21{left:650.493314pt;}
.x19{left:670.146648pt;}
.x8{left:683.426648pt;}
.x6{left:809.786648pt;}
.x1e{left:851.493314pt;}
.x22{left:1252.866648pt;}
.x2a{left:1254.146648pt;}
.x23{left:1256.066648pt;}
.x5{left:1258.146648pt;}
}




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