
    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_0ab5e687ce3f9600075d6bba.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e17726d08bc1f82aa5565180.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e48e4d5f43bd5ec814783a46.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b17e44fbcfcc3f3cc55b3b77.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_8f4a58119dd2ef1ce7e9d76e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e3df71cc9ff027323f099e7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_1f6aca0df023c03d6cc09d89.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7a1f43981dd95a5260d38edf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_fa3f9d3d8f8e71391a37f5e5.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:5.040000px;}
.ls6{letter-spacing:7.344000px;}
.ls4{letter-spacing:10.800000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws4{word-spacing:-19.457280px;}
.ws2{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-12.096000px;}
._1{margin-left:-1.224000px;}
._0{width:1.416000px;}
._2{width:2.568000px;}
._a{width:4.368000px;}
._9{width:5.688000px;}
._8{width:6.984000px;}
._c{width:8.748000px;}
._7{width:10.104000px;}
._6{width:11.448000px;}
._4{width:12.960000px;}
._5{width:14.208000px;}
._f{width:15.624000px;}
._e{width:16.776000px;}
._25{width:21.444000px;}
._24{width:23.112000px;}
._12{width:24.552000px;}
._13{width:25.800000px;}
._1a{width:28.056000px;}
._23{width:29.448000px;}
._d{width:32.328000px;}
._1f{width:33.708000px;}
._22{width:34.800000px;}
._1e{width:37.440000px;}
._1c{width:38.904000px;}
._1d{width:39.960000px;}
._b{width:41.700000px;}
._21{width:51.000000px;}
._15{width:52.776000px;}
._1b{width:56.448000px;}
._3{width:58.260000px;}
._14{width:88.080000px;}
._17{width:92.208000px;}
._16{width:94.248000px;}
._19{width:96.444000px;}
._18{width:97.920000px;}
._11{width:102.096000px;}
._10{width:103.536000px;}
.fc7{color:rgb(32,33,34);}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:83.520000px;}
.y6b{bottom:-109.800000px;}
.y6a{bottom:-89.640000px;}
.y69{bottom:-65.520000px;}
.y64{bottom:-41.760000px;}
.y6e{bottom:-39.960000px;}
.y5b{bottom:-37.440000px;}
.y60{bottom:-35.640000px;}
.y63{bottom:-21.600000px;}
.y6d{bottom:-20.160000px;}
.y68{bottom:-19.080000px;}
.y5a{bottom:-17.280000px;}
.y5f{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y62{bottom:2.160000px;}
.y31{bottom:3.960000px;}
.y39{bottom:3.990000px;}
.y33{bottom:4.320000px;}
.y67{bottom:5.400000px;}
.y59{bottom:6.870000px;}
.y5e{bottom:8.310000px;}
.y56{bottom:12.960000px;}
.y36{bottom:24.840000px;}
.y6c{bottom:26.310000px;}
.y5d{bottom:26.670000px;}
.y66{bottom:29.190000px;}
.y58{bottom:30.630000px;}
.y5{bottom:57.276000px;}
.y1{bottom:68.796000px;}
.y4{bottom:77.436000px;}
.y51{bottom:110.556000px;}
.y54{bottom:113.076000px;}
.y50{bottom:134.316000px;}
.y53{bottom:137.196000px;}
.y4f{bottom:158.115000px;}
.y52{bottom:160.995000px;}
.y4e{bottom:182.235000px;}
.y2f{bottom:184.755000px;}
.y4d{bottom:205.995000px;}
.y2e{bottom:208.515000px;}
.y4c{bottom:229.755000px;}
.y2d{bottom:232.275000px;}
.y4b{bottom:253.515000px;}
.y2c{bottom:256.035000px;}
.y4a{bottom:277.275000px;}
.y2b{bottom:279.795000px;}
.y49{bottom:301.065000px;}
.y2a{bottom:303.585000px;}
.y48{bottom:324.825000px;}
.y29{bottom:327.705000px;}
.y47{bottom:348.585000px;}
.y28{bottom:351.465000px;}
.y46{bottom:372.705000px;}
.y27{bottom:375.225000px;}
.y45{bottom:396.465000px;}
.y26{bottom:398.985000px;}
.y44{bottom:420.270000px;}
.y25{bottom:422.790000px;}
.y43{bottom:444.030000px;}
.y24{bottom:446.550000px;}
.y42{bottom:467.790000px;}
.y23{bottom:470.310000px;}
.y41{bottom:491.550000px;}
.y22{bottom:494.070000px;}
.y40{bottom:515.310000px;}
.y21{bottom:518.190000px;}
.y65{bottom:524.670000px;}
.y3f{bottom:539.070000px;}
.y20{bottom:541.950000px;}
.y3e{bottom:563.220000px;}
.y1f{bottom:565.740000px;}
.y3d{bottom:586.980000px;}
.y1e{bottom:589.500000px;}
.y61{bottom:595.980000px;}
.y3c{bottom:610.740000px;}
.y1d{bottom:613.260000px;}
.y3b{bottom:634.500000px;}
.y1c{bottom:637.020000px;}
.y3a{bottom:652.140000px;}
.y1b{bottom:660.780000px;}
.y57{bottom:670.860000px;}
.y5c{bottom:673.380000px;}
.y38{bottom:673.740000px;}
.y1a{bottom:684.570000px;}
.y37{bottom:695.010000px;}
.y19{bottom:708.330000px;}
.y35{bottom:716.610000px;}
.y18{bottom:732.450000px;}
.y55{bottom:752.970000px;}
.y17{bottom:756.210000px;}
.y34{bottom:758.730000px;}
.y16{bottom:779.970000px;}
.y32{bottom:801.570000px;}
.y15{bottom:803.730000px;}
.y30{bottom:823.215000px;}
.y14{bottom:827.535000px;}
.y13{bottom:851.295000px;}
.y12{bottom:875.055000px;}
.y11{bottom:898.815000px;}
.y10{bottom:922.935000px;}
.yf{bottom:946.725000px;}
.ye{bottom:970.485000px;}
.yd{bottom:994.245000px;}
.yc{bottom:1018.005000px;}
.yb{bottom:1041.765000px;}
.ya{bottom:1065.525000px;}
.y9{bottom:1089.330000px;}
.y8{bottom:1113.450000px;}
.y7{bottom:1137.210000px;}
.y6f{bottom:1138.650000px;}
.y6{bottom:1160.970000px;}
.y3{bottom:1193.370000px;}
.h2{height:16.920000px;}
.hb{height:20.520000px;}
.hc{height:20.556000px;}
.hd{height:20.880000px;}
.hf{height:32.400000px;}
.he{height:41.400000px;}
.h16{height:44.280000px;}
.h19{height:44.316000px;}
.h14{height:44.676000px;}
.h17{height:47.196000px;}
.h11{height:48.636000px;}
.ha{height:50.484375px;}
.h6{height:50.800781px;}
.h15{height:54.523125px;}
.h18{height:58.561875px;}
.h9{height:59.343750px;}
.h10{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h1a{height:74.004654px;}
.h12{height:76.317188px;}
.h13{height:81.970312px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.200000px;}
.wc{width:184.035000px;}
.w9{width:195.195000px;}
.w8{width:207.795000px;}
.we{width:222.945000px;}
.wd{width:234.075000px;}
.w7{width:235.155000px;}
.wa{width:263.985000px;}
.wb{width:275.505000px;}
.w5{width:331.350000px;}
.w6{width:331.710000px;}
.w4{width:663.765000px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:7.560000px;}
.x2{left:9.000000px;}
.x17{left:10.800000px;}
.x19{left:11.880000px;}
.x1e{left:15.840000px;}
.x24{left:18.765000px;}
.x1a{left:30.600000px;}
.x21{left:33.120000px;}
.x2b{left:35.280000px;}
.x26{left:38.925000px;}
.x29{left:69.159000px;}
.x1b{left:81.000000px;}
.x2a{left:91.839000px;}
.x1f{left:97.599000px;}
.x1d{left:100.836000px;}
.x1c{left:103.710000px;}
.x2c{left:105.150000px;}
.x28{left:111.996000px;}
.x2d{left:117.030000px;}
.x12{left:119.916000px;}
.x25{left:125.715000px;}
.xe{left:127.475987px;}
.x22{left:132.165000px;}
.x27{left:137.595000px;}
.x7{left:154.514987px;}
.x2f{left:159.554987px;}
.x3{left:163.514987px;}
.x6{left:165.314987px;}
.x30{left:169.994987px;}
.xd{left:180.794987px;}
.xb{left:296.024987px;}
.x23{left:317.265000px;}
.x18{left:318.750000px;}
.xc{left:327.749987px;}
.x16{left:329.190000px;}
.x9{left:347.549987px;}
.x8{left:382.109987px;}
.xa{left:413.459987px;}
.xf{left:425.339987px;}
.x1{left:439.740000px;}
.x14{left:451.980000px;}
.x11{left:453.779987px;}
.x5{left:478.259987px;}
.x15{left:504.929987px;}
.x10{left:507.089987px;}
.x20{left:539.490000px;}
.x2e{left:578.010000px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:4.480000pt;}
.ls6{letter-spacing:6.528000pt;}
.ls4{letter-spacing:9.600000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws2{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-10.752000pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.258667pt;}
._2{width:2.282667pt;}
._a{width:3.882667pt;}
._9{width:5.056000pt;}
._8{width:6.208000pt;}
._c{width:7.776000pt;}
._7{width:8.981333pt;}
._6{width:10.176000pt;}
._4{width:11.520000pt;}
._5{width:12.629333pt;}
._f{width:13.888000pt;}
._e{width:14.912000pt;}
._25{width:19.061333pt;}
._24{width:20.544000pt;}
._12{width:21.824000pt;}
._13{width:22.933333pt;}
._1a{width:24.938667pt;}
._23{width:26.176000pt;}
._d{width:28.736000pt;}
._1f{width:29.962667pt;}
._22{width:30.933333pt;}
._1e{width:33.280000pt;}
._1c{width:34.581333pt;}
._1d{width:35.520000pt;}
._b{width:37.066667pt;}
._21{width:45.333333pt;}
._15{width:46.912000pt;}
._1b{width:50.176000pt;}
._3{width:51.786667pt;}
._14{width:78.293333pt;}
._17{width:81.962667pt;}
._16{width:83.776000pt;}
._19{width:85.728000pt;}
._18{width:87.040000pt;}
._11{width:90.752000pt;}
._10{width:92.032000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.240000pt;}
.y6b{bottom:-97.600000pt;}
.y6a{bottom:-79.680000pt;}
.y69{bottom:-58.240000pt;}
.y64{bottom:-37.120000pt;}
.y6e{bottom:-35.520000pt;}
.y5b{bottom:-33.280000pt;}
.y60{bottom:-31.680000pt;}
.y63{bottom:-19.200000pt;}
.y6d{bottom:-17.920000pt;}
.y68{bottom:-16.960000pt;}
.y5a{bottom:-15.360000pt;}
.y5f{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y62{bottom:1.920000pt;}
.y31{bottom:3.520000pt;}
.y39{bottom:3.546667pt;}
.y33{bottom:3.840000pt;}
.y67{bottom:4.800000pt;}
.y59{bottom:6.106667pt;}
.y5e{bottom:7.386667pt;}
.y56{bottom:11.520000pt;}
.y36{bottom:22.080000pt;}
.y6c{bottom:23.386667pt;}
.y5d{bottom:23.706667pt;}
.y66{bottom:25.946667pt;}
.y58{bottom:27.226667pt;}
.y5{bottom:50.912000pt;}
.y1{bottom:61.152000pt;}
.y4{bottom:68.832000pt;}
.y51{bottom:98.272000pt;}
.y54{bottom:100.512000pt;}
.y50{bottom:119.392000pt;}
.y53{bottom:121.952000pt;}
.y4f{bottom:140.546667pt;}
.y52{bottom:143.106667pt;}
.y4e{bottom:161.986667pt;}
.y2f{bottom:164.226667pt;}
.y4d{bottom:183.106667pt;}
.y2e{bottom:185.346667pt;}
.y4c{bottom:204.226667pt;}
.y2d{bottom:206.466667pt;}
.y4b{bottom:225.346667pt;}
.y2c{bottom:227.586667pt;}
.y4a{bottom:246.466667pt;}
.y2b{bottom:248.706667pt;}
.y49{bottom:267.613333pt;}
.y2a{bottom:269.853333pt;}
.y48{bottom:288.733333pt;}
.y29{bottom:291.293333pt;}
.y47{bottom:309.853333pt;}
.y28{bottom:312.413333pt;}
.y46{bottom:331.293333pt;}
.y27{bottom:333.533333pt;}
.y45{bottom:352.413333pt;}
.y26{bottom:354.653333pt;}
.y44{bottom:373.573333pt;}
.y25{bottom:375.813333pt;}
.y43{bottom:394.693333pt;}
.y24{bottom:396.933333pt;}
.y42{bottom:415.813333pt;}
.y23{bottom:418.053333pt;}
.y41{bottom:436.933333pt;}
.y22{bottom:439.173333pt;}
.y40{bottom:458.053333pt;}
.y21{bottom:460.613333pt;}
.y65{bottom:466.373333pt;}
.y3f{bottom:479.173333pt;}
.y20{bottom:481.733333pt;}
.y3e{bottom:500.640000pt;}
.y1f{bottom:502.880000pt;}
.y3d{bottom:521.760000pt;}
.y1e{bottom:524.000000pt;}
.y61{bottom:529.760000pt;}
.y3c{bottom:542.880000pt;}
.y1d{bottom:545.120000pt;}
.y3b{bottom:564.000000pt;}
.y1c{bottom:566.240000pt;}
.y3a{bottom:579.680000pt;}
.y1b{bottom:587.360000pt;}
.y57{bottom:596.320000pt;}
.y5c{bottom:598.560000pt;}
.y38{bottom:598.880000pt;}
.y1a{bottom:608.506667pt;}
.y37{bottom:617.786667pt;}
.y19{bottom:629.626667pt;}
.y35{bottom:636.986667pt;}
.y18{bottom:651.066667pt;}
.y55{bottom:669.306667pt;}
.y17{bottom:672.186667pt;}
.y34{bottom:674.426667pt;}
.y16{bottom:693.306667pt;}
.y32{bottom:712.506667pt;}
.y15{bottom:714.426667pt;}
.y30{bottom:731.746667pt;}
.y14{bottom:735.586667pt;}
.y13{bottom:756.706667pt;}
.y12{bottom:777.826667pt;}
.y11{bottom:798.946667pt;}
.y10{bottom:820.386667pt;}
.yf{bottom:841.533333pt;}
.ye{bottom:862.653333pt;}
.yd{bottom:883.773333pt;}
.yc{bottom:904.893333pt;}
.yb{bottom:926.013333pt;}
.ya{bottom:947.133333pt;}
.y9{bottom:968.293333pt;}
.y8{bottom:989.733333pt;}
.y7{bottom:1010.853333pt;}
.y6f{bottom:1012.133333pt;}
.y6{bottom:1031.973333pt;}
.y3{bottom:1060.773333pt;}
.h2{height:15.040000pt;}
.hb{height:18.240000pt;}
.hc{height:18.272000pt;}
.hd{height:18.560000pt;}
.hf{height:28.800000pt;}
.he{height:36.800000pt;}
.h16{height:39.360000pt;}
.h19{height:39.392000pt;}
.h14{height:39.712000pt;}
.h17{height:41.952000pt;}
.h11{height:43.232000pt;}
.ha{height:44.875000pt;}
.h6{height:45.156250pt;}
.h15{height:48.465000pt;}
.h18{height:52.055000pt;}
.h9{height:52.750000pt;}
.h10{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h12{height:67.837500pt;}
.h13{height:72.862500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.400000pt;}
.wc{width:163.586667pt;}
.w9{width:173.506667pt;}
.w8{width:184.706667pt;}
.we{width:198.173333pt;}
.wd{width:208.066667pt;}
.w7{width:209.026667pt;}
.wa{width:234.653333pt;}
.wb{width:244.893333pt;}
.w5{width:294.533333pt;}
.w6{width:294.853333pt;}
.w4{width:590.013333pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:6.720000pt;}
.x2{left:8.000000pt;}
.x17{left:9.600000pt;}
.x19{left:10.560000pt;}
.x1e{left:14.080000pt;}
.x24{left:16.680000pt;}
.x1a{left:27.200000pt;}
.x21{left:29.440000pt;}
.x2b{left:31.360000pt;}
.x26{left:34.600000pt;}
.x29{left:61.474667pt;}
.x1b{left:72.000000pt;}
.x2a{left:81.634667pt;}
.x1f{left:86.754667pt;}
.x1d{left:89.632000pt;}
.x1c{left:92.186667pt;}
.x2c{left:93.466667pt;}
.x28{left:99.552000pt;}
.x2d{left:104.026667pt;}
.x12{left:106.592000pt;}
.x25{left:111.746667pt;}
.xe{left:113.311988pt;}
.x22{left:117.480000pt;}
.x27{left:122.306667pt;}
.x7{left:137.346655pt;}
.x2f{left:141.826655pt;}
.x3{left:145.346655pt;}
.x6{left:146.946655pt;}
.x30{left:151.106655pt;}
.xd{left:160.706655pt;}
.xb{left:263.133322pt;}
.x23{left:282.013333pt;}
.x18{left:283.333333pt;}
.xc{left:291.333322pt;}
.x16{left:292.613333pt;}
.x9{left:308.933322pt;}
.x8{left:339.653322pt;}
.xa{left:367.519988pt;}
.xf{left:378.079988pt;}
.x1{left:390.880000pt;}
.x14{left:401.760000pt;}
.x11{left:403.359988pt;}
.x5{left:425.119988pt;}
.x15{left:448.826655pt;}
.x10{left:450.746655pt;}
.x20{left:479.546667pt;}
.x2e{left:513.786667pt;}
.x4{left:737.253322pt;}
}




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