
    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_3764b49f9d14ededfb4fbe72.woff')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_ed18ea76c721a2f6b948a748.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.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_fe01fee2c0ee63f7c76612f5.woff')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_2b354663a37d01e59374f303.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00678adab1b71e753a8d12f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_ecb12ea3913a815b258ba7ed.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_3ec840d2c00204dd37171f3b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_45e41cf77afb8bc3e8aa9076.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls14{letter-spacing:-5.628000px;}
.ls19{letter-spacing:-3.270000px;}
.ls13{letter-spacing:-2.250000px;}
.ls9{letter-spacing:-2.034000px;}
.ls15{letter-spacing:-1.524000px;}
.ls11{letter-spacing:-1.230000px;}
.lsa{letter-spacing:-1.128000px;}
.ls8{letter-spacing:-0.876000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:1.128000px;}
.ls1c{letter-spacing:1.147500px;}
.lsf{letter-spacing:1.230000px;}
.ls16{letter-spacing:1.524000px;}
.ls5{letter-spacing:1.525500px;}
.lsd{letter-spacing:1.645500px;}
.lse{letter-spacing:1.675500px;}
.ls1a{letter-spacing:1.705500px;}
.ls12{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.142000px;}
.lsc{letter-spacing:2.250000px;}
.ls10{letter-spacing:2.370000px;}
.ls17{letter-spacing:3.375000px;}
.ls1d{letter-spacing:3.378000px;}
.ls3{letter-spacing:3.495000px;}
.lsb{letter-spacing:7.875000px;}
.ls0{letter-spacing:12.375000px;}
.ls1{letter-spacing:21.555000px;}
.ls2{letter-spacing:25.875000px;}
.ls1e{letter-spacing:46.203000px;}
.ls18{letter-spacing:48.375000px;}
.ls1b{letter-spacing:71.055000px;}
.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:-21.375000px;}
.ws3{word-spacing:-21.267000px;}
.ws8{word-spacing:-21.159000px;}
.wsc{word-spacing:-20.649000px;}
.ws6{word-spacing:-20.355000px;}
.wsd{word-spacing:-20.272500px;}
.ws1{word-spacing:-19.125000px;}
.ws7{word-spacing:-17.895000px;}
.wsa{word-spacing:-17.601000px;}
.ws2{word-spacing:-17.091000px;}
.ws9{word-spacing:-16.875000px;}
.wsb{word-spacing:-15.855000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._30{margin-left:-10.562100px;}
._31{margin-left:-9.051600px;}
._3{margin-left:-7.879800px;}
._b{margin-left:-6.518700px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._1a{width:5.440650px;}
._c{width:7.176450px;}
._a{width:8.369850px;}
._19{width:9.773100px;}
._9{width:12.252750px;}
._14{width:13.305750px;}
._21{width:14.333700px;}
._1c{width:15.939000px;}
._15{width:17.072550px;}
._1d{width:19.072950px;}
._e{width:20.594100px;}
._8{width:21.841950px;}
._1e{width:22.877850px;}
._26{width:25.169850px;}
._7{width:26.561700px;}
._1f{width:27.601500px;}
._24{width:29.607600px;}
._f{width:30.838950px;}
._2a{width:32.394900px;}
._10{width:34.266300px;}
._11{width:35.395650px;}
._28{width:36.796950px;}
._12{width:38.638500px;}
._13{width:40.091250px;}
._20{width:41.353350px;}
._d{width:43.906050px;}
._2b{width:45.611400px;}
._1b{width:48.601800px;}
._27{width:50.291850px;}
._22{width:53.161050px;}
._23{width:55.061100px;}
._17{width:57.534000px;}
._2f{width:58.962000px;}
._16{width:61.166100px;}
._18{width:62.574900px;}
._25{width:67.539150px;}
._2e{width:71.403900px;}
._2c{width:75.431250px;}
._2d{width:76.476300px;}
._29{width:845.895000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs6{font-size:76.650000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y34{bottom:7.875000px;}
.y37{bottom:7.890000px;}
.y31{bottom:7.905000px;}
.y5{bottom:14.662500px;}
.y38{bottom:20.265000px;}
.y35{bottom:20.295000px;}
.y4a{bottom:21.375000px;}
.y2f{bottom:21.405000px;}
.y41{bottom:21.420000px;}
.y3{bottom:32.662500px;}
.y4c{bottom:33.750000px;}
.y30{bottom:33.780000px;}
.y33{bottom:33.795000px;}
.y49{bottom:46.155000px;}
.y46{bottom:46.170000px;}
.y43{bottom:47.295000px;}
.y4b{bottom:59.655000px;}
.y44{bottom:59.700000px;}
.y4{bottom:61.912500px;}
.y48{bottom:72.045000px;}
.y4d{bottom:85.575000px;}
.y2d{bottom:130.612500px;}
.y58{bottom:132.862500px;}
.y2c{bottom:156.480000px;}
.y57{bottom:158.775000px;}
.y2b{bottom:182.400000px;}
.y56{bottom:184.650000px;}
.y2a{bottom:208.320000px;}
.y55{bottom:210.570000px;}
.y29{bottom:234.195000px;}
.y54{bottom:236.445000px;}
.y28{bottom:260.100000px;}
.y53{bottom:262.350000px;}
.y27{bottom:286.005000px;}
.y52{bottom:287.130000px;}
.y26{bottom:311.895000px;}
.y51{bottom:313.005000px;}
.y59{bottom:324.300000px;}
.y25{bottom:336.675000px;}
.y50{bottom:338.925000px;}
.y24{bottom:362.550000px;}
.y4f{bottom:364.800000px;}
.y23{bottom:388.455000px;}
.y4e{bottom:390.705000px;}
.y47{bottom:412.125000px;}
.y22{bottom:414.375000px;}
.y21{bottom:440.250000px;}
.y20{bottom:466.170000px;}
.y1f{bottom:492.075000px;}
.y1e{bottom:517.950000px;}
.y45{bottom:521.325000px;}
.y1d{bottom:543.870000px;}
.y1c{bottom:569.745000px;}
.y1b{bottom:595.650000px;}
.y42{bottom:604.650000px;}
.y1a{bottom:621.570000px;}
.y19{bottom:646.320000px;}
.y18{bottom:672.225000px;}
.y40{bottom:687.975000px;}
.y17{bottom:698.100000px;}
.y16{bottom:724.005000px;}
.y15{bottom:749.925000px;}
.y3f{bottom:751.050000px;}
.y14{bottom:775.800000px;}
.y3e{bottom:776.925000px;}
.y13{bottom:801.705000px;}
.y3d{bottom:802.830000px;}
.y12{bottom:827.625000px;}
.y3c{bottom:828.750000px;}
.y11{bottom:853.500000px;}
.y3b{bottom:854.625000px;}
.y10{bottom:879.420000px;}
.y3a{bottom:880.545000px;}
.y39{bottom:901.920000px;}
.yf{bottom:905.295000px;}
.ye{bottom:931.200000px;}
.yd{bottom:957.120000px;}
.y36{bottom:959.355000px;}
.yc{bottom:981.870000px;}
.yb{bottom:1007.775000px;}
.y32{bottom:1016.775000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y2e{bottom:1074.195000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h5{height:40.537500px;}
.hd{height:51.787500px;}
.he{height:51.810000px;}
.hc{height:51.825000px;}
.hb{height:53.415527px;}
.h9{height:55.918213px;}
.h12{height:67.137451px;}
.h3{height:68.027344px;}
.h8{height:75.043213px;}
.ha{height:75.080566px;}
.h13{height:75.227783px;}
.h7{height:77.097656px;}
.hf{height:77.700000px;}
.h11{height:78.629945px;}
.h2{height:86.319141px;}
.h4{height:95.389453px;}
.h10{height:103.575000px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w8{width:65.325000px;}
.w2{width:75.487500px;}
.w7{width:101.362500px;}
.w4{width:136.275000px;}
.w9{width:137.400000px;}
.w3{width:141.900000px;}
.wb{width:150.930000px;}
.w5{width:158.850000px;}
.wa{width:210.630000px;}
.w6{width:230.925000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.x24{left:9.000000px;}
.x2d{left:12.375000px;}
.x1f{left:14.655000px;}
.x1e{left:18.000000px;}
.x22{left:21.405000px;}
.x18{left:23.655000px;}
.x29{left:25.912500px;}
.xc{left:28.162500px;}
.x28{left:29.295000px;}
.xe{left:30.405000px;}
.x17{left:31.530000px;}
.xf{left:32.655000px;}
.x20{left:33.787500px;}
.x31{left:34.920000px;}
.x1b{left:36.037500px;}
.x1d{left:38.280000px;}
.x12{left:39.450000px;}
.x19{left:43.905000px;}
.x30{left:45.045000px;}
.x16{left:46.155000px;}
.x15{left:50.655000px;}
.x2b{left:54.075000px;}
.x1c{left:55.155000px;}
.x2a{left:56.325000px;}
.x11{left:58.575000px;}
.x2c{left:61.950000px;}
.x2e{left:63.075000px;}
.x26{left:69.870000px;}
.x2f{left:70.980000px;}
.x1a{left:74.310000px;}
.x14{left:94.605000px;}
.xb{left:107.025000px;}
.x1{left:108.149987px;}
.xa{left:129.524987px;}
.x4{left:166.724987px;}
.x33{left:183.599987px;}
.x8{left:210.644987px;}
.x21{left:212.895000px;}
.xd{left:253.470000px;}
.x23{left:281.625000px;}
.x9{left:310.904987px;}
.x7{left:319.904987px;}
.x32{left:372.869987px;}
.x10{left:393.120000px;}
.x5{left:403.274987px;}
.x25{left:422.400000px;}
.x6{left:457.319987px;}
.x13{left:556.470000px;}
.x27{left:636.450000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-5.002667pt;}
.ls19{letter-spacing:-2.906667pt;}
.ls13{letter-spacing:-2.000000pt;}
.ls9{letter-spacing:-1.808000pt;}
.ls15{letter-spacing:-1.354667pt;}
.ls11{letter-spacing:-1.093333pt;}
.lsa{letter-spacing:-1.002667pt;}
.ls8{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1.002667pt;}
.ls1c{letter-spacing:1.020000pt;}
.lsf{letter-spacing:1.093333pt;}
.ls16{letter-spacing:1.354667pt;}
.ls5{letter-spacing:1.356000pt;}
.lsd{letter-spacing:1.462667pt;}
.lse{letter-spacing:1.489333pt;}
.ls1a{letter-spacing:1.516000pt;}
.ls12{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.904000pt;}
.lsc{letter-spacing:2.000000pt;}
.ls10{letter-spacing:2.106667pt;}
.ls17{letter-spacing:3.000000pt;}
.ls1d{letter-spacing:3.002667pt;}
.ls3{letter-spacing:3.106667pt;}
.lsb{letter-spacing:7.000000pt;}
.ls0{letter-spacing:11.000000pt;}
.ls1{letter-spacing:19.160000pt;}
.ls2{letter-spacing:23.000000pt;}
.ls1e{letter-spacing:41.069333pt;}
.ls18{letter-spacing:43.000000pt;}
.ls1b{letter-spacing:63.160000pt;}
.ws5{word-spacing:-19.000000pt;}
.ws3{word-spacing:-18.904000pt;}
.ws8{word-spacing:-18.808000pt;}
.wsc{word-spacing:-18.354667pt;}
.ws6{word-spacing:-18.093333pt;}
.wsd{word-spacing:-18.020000pt;}
.ws1{word-spacing:-17.000000pt;}
.ws7{word-spacing:-15.906667pt;}
.wsa{word-spacing:-15.645333pt;}
.ws2{word-spacing:-15.192000pt;}
.ws9{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.093333pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._30{margin-left:-9.388533pt;}
._31{margin-left:-8.045867pt;}
._3{margin-left:-7.004267pt;}
._b{margin-left:-5.794400pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._1a{width:4.836133pt;}
._c{width:6.379067pt;}
._a{width:7.439867pt;}
._19{width:8.687200pt;}
._9{width:10.891333pt;}
._14{width:11.827333pt;}
._21{width:12.741067pt;}
._1c{width:14.168000pt;}
._15{width:15.175600pt;}
._1d{width:16.953733pt;}
._e{width:18.305867pt;}
._8{width:19.415067pt;}
._1e{width:20.335867pt;}
._26{width:22.373200pt;}
._7{width:23.610400pt;}
._1f{width:24.534667pt;}
._24{width:26.317867pt;}
._f{width:27.412400pt;}
._2a{width:28.795467pt;}
._10{width:30.458933pt;}
._11{width:31.462800pt;}
._28{width:32.708400pt;}
._12{width:34.345333pt;}
._13{width:35.636667pt;}
._20{width:36.758533pt;}
._d{width:39.027600pt;}
._2b{width:40.543467pt;}
._1b{width:43.201600pt;}
._27{width:44.703867pt;}
._22{width:47.254267pt;}
._23{width:48.943200pt;}
._17{width:51.141333pt;}
._2f{width:52.410667pt;}
._16{width:54.369867pt;}
._18{width:55.622133pt;}
._25{width:60.034800pt;}
._2e{width:63.470133pt;}
._2c{width:67.050000pt;}
._2d{width:67.978933pt;}
._29{width:751.906667pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs6{font-size:68.133333pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:7.000000pt;}
.y37{bottom:7.013333pt;}
.y31{bottom:7.026667pt;}
.y5{bottom:13.033333pt;}
.y38{bottom:18.013333pt;}
.y35{bottom:18.040000pt;}
.y4a{bottom:19.000000pt;}
.y2f{bottom:19.026667pt;}
.y41{bottom:19.040000pt;}
.y3{bottom:29.033333pt;}
.y4c{bottom:30.000000pt;}
.y30{bottom:30.026667pt;}
.y33{bottom:30.040000pt;}
.y49{bottom:41.026667pt;}
.y46{bottom:41.040000pt;}
.y43{bottom:42.040000pt;}
.y4b{bottom:53.026667pt;}
.y44{bottom:53.066667pt;}
.y4{bottom:55.033333pt;}
.y48{bottom:64.040000pt;}
.y4d{bottom:76.066667pt;}
.y2d{bottom:116.100000pt;}
.y58{bottom:118.100000pt;}
.y2c{bottom:139.093333pt;}
.y57{bottom:141.133333pt;}
.y2b{bottom:162.133333pt;}
.y56{bottom:164.133333pt;}
.y2a{bottom:185.173333pt;}
.y55{bottom:187.173333pt;}
.y29{bottom:208.173333pt;}
.y54{bottom:210.173333pt;}
.y28{bottom:231.200000pt;}
.y53{bottom:233.200000pt;}
.y27{bottom:254.226667pt;}
.y52{bottom:255.226667pt;}
.y26{bottom:277.240000pt;}
.y51{bottom:278.226667pt;}
.y59{bottom:288.266667pt;}
.y25{bottom:299.266667pt;}
.y50{bottom:301.266667pt;}
.y24{bottom:322.266667pt;}
.y4f{bottom:324.266667pt;}
.y23{bottom:345.293333pt;}
.y4e{bottom:347.293333pt;}
.y47{bottom:366.333333pt;}
.y22{bottom:368.333333pt;}
.y21{bottom:391.333333pt;}
.y20{bottom:414.373333pt;}
.y1f{bottom:437.400000pt;}
.y1e{bottom:460.400000pt;}
.y45{bottom:463.400000pt;}
.y1d{bottom:483.440000pt;}
.y1c{bottom:506.440000pt;}
.y1b{bottom:529.466667pt;}
.y42{bottom:537.466667pt;}
.y1a{bottom:552.506667pt;}
.y19{bottom:574.506667pt;}
.y18{bottom:597.533333pt;}
.y40{bottom:611.533333pt;}
.y17{bottom:620.533333pt;}
.y16{bottom:643.560000pt;}
.y15{bottom:666.600000pt;}
.y3f{bottom:667.600000pt;}
.y14{bottom:689.600000pt;}
.y3e{bottom:690.600000pt;}
.y13{bottom:712.626667pt;}
.y3d{bottom:713.626667pt;}
.y12{bottom:735.666667pt;}
.y3c{bottom:736.666667pt;}
.y11{bottom:758.666667pt;}
.y3b{bottom:759.666667pt;}
.y10{bottom:781.706667pt;}
.y3a{bottom:782.706667pt;}
.y39{bottom:801.706667pt;}
.yf{bottom:804.706667pt;}
.ye{bottom:827.733333pt;}
.yd{bottom:850.773333pt;}
.y36{bottom:852.760000pt;}
.yc{bottom:872.773333pt;}
.yb{bottom:895.800000pt;}
.y32{bottom:903.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y2e{bottom:954.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h5{height:36.033333pt;}
.hd{height:46.033333pt;}
.he{height:46.053333pt;}
.hc{height:46.066667pt;}
.hb{height:47.480469pt;}
.h9{height:49.705078pt;}
.h12{height:59.677734pt;}
.h3{height:60.468750pt;}
.h8{height:66.705078pt;}
.ha{height:66.738281pt;}
.h13{height:66.869141pt;}
.h7{height:68.531250pt;}
.hf{height:69.066667pt;}
.h11{height:69.893285pt;}
.h2{height:76.728125pt;}
.h4{height:84.790625pt;}
.h10{height:92.066667pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w8{width:58.066667pt;}
.w2{width:67.100000pt;}
.w7{width:90.100000pt;}
.w4{width:121.133333pt;}
.w9{width:122.133333pt;}
.w3{width:126.133333pt;}
.wb{width:134.160000pt;}
.w5{width:141.200000pt;}
.wa{width:187.226667pt;}
.w6{width:205.266667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.x24{left:8.000000pt;}
.x2d{left:11.000000pt;}
.x1f{left:13.026667pt;}
.x1e{left:16.000000pt;}
.x22{left:19.026667pt;}
.x18{left:21.026667pt;}
.x29{left:23.033333pt;}
.xc{left:25.033333pt;}
.x28{left:26.040000pt;}
.xe{left:27.026667pt;}
.x17{left:28.026667pt;}
.xf{left:29.026667pt;}
.x20{left:30.033333pt;}
.x31{left:31.040000pt;}
.x1b{left:32.033333pt;}
.x1d{left:34.026667pt;}
.x12{left:35.066667pt;}
.x19{left:39.026667pt;}
.x30{left:40.040000pt;}
.x16{left:41.026667pt;}
.x15{left:45.026667pt;}
.x2b{left:48.066667pt;}
.x1c{left:49.026667pt;}
.x2a{left:50.066667pt;}
.x11{left:52.066667pt;}
.x2c{left:55.066667pt;}
.x2e{left:56.066667pt;}
.x26{left:62.106667pt;}
.x2f{left:63.093333pt;}
.x1a{left:66.053333pt;}
.x14{left:84.093333pt;}
.xb{left:95.133333pt;}
.x1{left:96.133322pt;}
.xa{left:115.133322pt;}
.x4{left:148.199988pt;}
.x33{left:163.199988pt;}
.x8{left:187.239988pt;}
.x21{left:189.240000pt;}
.xd{left:225.306667pt;}
.x23{left:250.333333pt;}
.x9{left:276.359988pt;}
.x7{left:284.359988pt;}
.x32{left:331.439988pt;}
.x10{left:349.440000pt;}
.x5{left:358.466655pt;}
.x25{left:375.466667pt;}
.x6{left:406.506655pt;}
.x13{left:494.640000pt;}
.x27{left:565.733333pt;}
.x2{left:712.893333pt;}
}




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