
    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_c46b991ebe72c2ba2d2051c4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.119629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e57f7d89f92c387592de66c3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_adab1ce40b63b80b24efa007.woff')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_9795c16a003dcd518de97a48.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_f027d463e5c07f0e4369612f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_75e15ae09249cdaa40e82b1e.woff')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_709dc4f1aa93f46675b7a073.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca22baa2ec0bb98ff7f1af5b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_ba442ff99a4e39a65a7bf191.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_52d2d9735c5def6c866f5d05.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_21695eaab9546cec0020d5f7.woff')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);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls12{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.690000px;}
.ls11{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.028080px;}
.ls26{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.106560px;}
.ls1a{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.107280px;}
.lsa{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.217440px;}
.ls1b{letter-spacing:0.286560px;}
.ls2a{letter-spacing:0.321600px;}
.ls2b{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.360720px;}
.ls10{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.666000px;}
.ls23{letter-spacing:1.260000px;}
.ls22{letter-spacing:1.980000px;}
.ls1f{letter-spacing:2.309760px;}
.lsf{letter-spacing:2.700000px;}
.ls4{letter-spacing:5.580000px;}
.ls24{letter-spacing:5.700000px;}
.ls1c{letter-spacing:7.349760px;}
.ls25{letter-spacing:7.740000px;}
.ls1e{letter-spacing:8.100000px;}
.ls8{letter-spacing:8.460000px;}
.ls17{letter-spacing:8.789760px;}
.ls2{letter-spacing:12.060000px;}
.ls16{letter-spacing:12.420000px;}
.ls9{letter-spacing:14.940000px;}
.ls21{letter-spacing:19.980000px;}
.lsd{letter-spacing:20.700000px;}
.ls15{letter-spacing:21.221280px;}
.lsc{letter-spacing:22.140000px;}
.lse{letter-spacing:24.300000px;}
.ls7{letter-spacing:46.740000px;}
.ls3{letter-spacing:55.980000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.381600px;}
.ws10{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.606000px;}
.wsb{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.437760px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._32{margin-left:-19.630800px;}
._21{margin-left:-12.817920px;}
._4{margin-left:-2.167920px;}
._1{margin-left:-1.126080px;}
._3{width:1.999440px;}
._6{width:3.139200px;}
._5{width:4.476000px;}
._10{width:6.094080px;}
._11{width:7.126800px;}
._1a{width:8.879280px;}
._9{width:10.642080px;}
._a{width:11.793600px;}
._c{width:12.919680px;}
._b{width:14.099040px;}
._1e{width:15.726000px;}
._23{width:17.174880px;}
._12{width:18.386640px;}
._d{width:20.004480px;}
._19{width:22.278960px;}
._22{width:24.021120px;}
._17{width:25.693200px;}
._18{width:27.187200px;}
._27{width:28.725840px;}
._28{width:30.082800px;}
._13{width:31.505760px;}
._14{width:33.084000px;}
._7{width:34.653600px;}
._8{width:35.821920px;}
._24{width:37.493040px;}
._29{width:38.587920px;}
._2a{width:39.755280px;}
._20{width:41.143440px;}
._1f{width:42.403680px;}
._25{width:44.815680px;}
._26{width:46.203120px;}
._e{width:47.205360px;}
._1d{width:49.090080px;}
._2c{width:51.133680px;}
._2b{width:52.175520px;}
._f{width:54.924480px;}
._2d{width:62.421840px;}
._2e{width:63.747360px;}
._2f{width:64.864800px;}
._30{width:66.664800px;}
._31{width:67.706640px;}
._1c{width:85.933440px;}
._1b{width:87.609600px;}
._15{width:188.460000px;}
._16{width:191.316000px;}
._2{width:638.842080px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y2e{bottom:78.120000px;}
.y24{bottom:82.440000px;}
.y30{bottom:84.960000px;}
.y2d{bottom:95.400000px;}
.y2f{bottom:96.300000px;}
.y3d{bottom:103.860000px;}
.y3c{bottom:115.380000px;}
.y23{bottom:118.620000px;}
.y2c{bottom:119.340000px;}
.y2b{bottom:130.716000px;}
.y3b{bottom:141.156000px;}
.y3a{bottom:152.850000px;}
.y22{bottom:155.010000px;}
.y39{bottom:178.590000px;}
.y38{bottom:190.290000px;}
.y21{bottom:191.190000px;}
.y37{bottom:216.030000px;}
.y20{bottom:227.370000px;}
.y36{bottom:227.730000px;}
.y35{bottom:251.670000px;}
.y1f{bottom:263.550000px;}
.y34{bottom:268.950000px;}
.y33{bottom:280.290000px;}
.y1e{bottom:299.910000px;}
.y32{bottom:311.970000px;}
.y1d{bottom:336.090000px;}
.y31{bottom:371.910000px;}
.y1c{bottom:372.270000px;}
.y53{bottom:396.435000px;}
.y1b{bottom:408.495000px;}
.y52{bottom:420.555000px;}
.y1a{bottom:444.855000px;}
.y51{bottom:468.975000px;}
.y19{bottom:481.035000px;}
.y50{bottom:493.095000px;}
.y18{bottom:517.215000px;}
.y4f{bottom:541.335000px;}
.y17{bottom:553.395000px;}
.y4e{bottom:565.455000px;}
.y16{bottom:589.755000px;}
.y4d{bottom:613.875000px;}
.y15{bottom:625.935000px;}
.y4c{bottom:638.025000px;}
.y14{bottom:662.145000px;}
.y4b{bottom:686.265000px;}
.y13{bottom:698.325000px;}
.y4a{bottom:710.385000px;}
.y12{bottom:734.505000px;}
.y49{bottom:758.805000px;}
.y11{bottom:770.865000px;}
.y48{bottom:782.925000px;}
.y10{bottom:807.045000px;}
.y47{bottom:831.165000px;}
.yf{bottom:842.865000px;}
.y2a{bottom:843.225000px;}
.y46{bottom:855.285000px;}
.ye{bottom:879.405000px;}
.y45{bottom:903.750000px;}
.yd{bottom:915.810000px;}
.y44{bottom:927.870000px;}
.yc{bottom:951.630000px;}
.y29{bottom:951.990000px;}
.y43{bottom:976.110000px;}
.yb{bottom:987.810000px;}
.y28{bottom:988.170000px;}
.y42{bottom:1000.230000px;}
.ya{bottom:1023.990000px;}
.y27{bottom:1024.350000px;}
.y41{bottom:1048.470000px;}
.y9{bottom:1060.710000px;}
.y40{bottom:1072.770000px;}
.y8{bottom:1096.890000px;}
.y3f{bottom:1121.010000px;}
.y7{bottom:1132.710000px;}
.y26{bottom:1133.070000px;}
.y3e{bottom:1145.160000px;}
.y6{bottom:1168.920000px;}
.y25{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.ha{height:38.158594px;}
.hf{height:41.535703px;}
.hb{height:58.651172px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h7{height:74.244727px;}
.h8{height:82.635820px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.he{height:86.585445px;}
.h9{height:91.878047px;}
.hc{height:91.998047px;}
.hd{height:92.058047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x10{left:94.716000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.x11{left:121.716000px;}
.xe{left:148.896000px;}
.xf{left:308.235000px;}
.x3{left:438.915000px;}
.xb{left:473.685000px;}
.xa{left:475.125000px;}
.x6{left:489.885000px;}
.x5{left:503.205000px;}
.x7{left:510.225000px;}
.xc{left:512.745000px;}
.x8{left:532.185000px;}
.xd{left:546.945000px;}
.x9{left:611.565000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.613333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.024960pt;}
.ls26{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.094720pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.095360pt;}
.lsa{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.193280pt;}
.ls1b{letter-spacing:0.254720pt;}
.ls2a{letter-spacing:0.285867pt;}
.ls2b{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.320640pt;}
.ls10{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls22{letter-spacing:1.760000pt;}
.ls1f{letter-spacing:2.053120pt;}
.lsf{letter-spacing:2.400000pt;}
.ls4{letter-spacing:4.960000pt;}
.ls24{letter-spacing:5.066667pt;}
.ls1c{letter-spacing:6.533120pt;}
.ls25{letter-spacing:6.880000pt;}
.ls1e{letter-spacing:7.200000pt;}
.ls8{letter-spacing:7.520000pt;}
.ls17{letter-spacing:7.813120pt;}
.ls2{letter-spacing:10.720000pt;}
.ls16{letter-spacing:11.040000pt;}
.ls9{letter-spacing:13.280000pt;}
.ls21{letter-spacing:17.760000pt;}
.lsd{letter-spacing:18.400000pt;}
.ls15{letter-spacing:18.863360pt;}
.lsc{letter-spacing:19.680000pt;}
.lse{letter-spacing:21.600000pt;}
.ls7{letter-spacing:41.546667pt;}
.ls3{letter-spacing:49.760000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws7{word-spacing:-19.040000pt;}
.ws11{word-spacing:-19.023467pt;}
.wsf{word-spacing:-19.005867pt;}
.ws10{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.872000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.389120pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._32{margin-left:-17.449600pt;}
._21{margin-left:-11.393707pt;}
._4{margin-left:-1.927040pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.777280pt;}
._6{width:2.790400pt;}
._5{width:3.978667pt;}
._10{width:5.416960pt;}
._11{width:6.334933pt;}
._1a{width:7.892693pt;}
._9{width:9.459627pt;}
._a{width:10.483200pt;}
._c{width:11.484160pt;}
._b{width:12.532480pt;}
._1e{width:13.978667pt;}
._23{width:15.266560pt;}
._12{width:16.343680pt;}
._d{width:17.781760pt;}
._19{width:19.803520pt;}
._22{width:21.352107pt;}
._17{width:22.838400pt;}
._18{width:24.166400pt;}
._27{width:25.534080pt;}
._28{width:26.740267pt;}
._13{width:28.005120pt;}
._14{width:29.408000pt;}
._7{width:30.803200pt;}
._8{width:31.841707pt;}
._24{width:33.327147pt;}
._29{width:34.300373pt;}
._2a{width:35.338027pt;}
._20{width:36.571947pt;}
._1f{width:37.692160pt;}
._25{width:39.836160pt;}
._26{width:41.069440pt;}
._e{width:41.960320pt;}
._1d{width:43.635627pt;}
._2c{width:45.452160pt;}
._2b{width:46.378240pt;}
._f{width:48.821760pt;}
._2d{width:55.486080pt;}
._2e{width:56.664320pt;}
._2f{width:57.657600pt;}
._30{width:59.257600pt;}
._31{width:60.183680pt;}
._1c{width:76.385280pt;}
._1b{width:77.875200pt;}
._15{width:167.520000pt;}
._16{width:170.058667pt;}
._2{width:567.859627pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y2e{bottom:69.440000pt;}
.y24{bottom:73.280000pt;}
.y30{bottom:75.520000pt;}
.y2d{bottom:84.800000pt;}
.y2f{bottom:85.600000pt;}
.y3d{bottom:92.320000pt;}
.y3c{bottom:102.560000pt;}
.y23{bottom:105.440000pt;}
.y2c{bottom:106.080000pt;}
.y2b{bottom:116.192000pt;}
.y3b{bottom:125.472000pt;}
.y3a{bottom:135.866667pt;}
.y22{bottom:137.786667pt;}
.y39{bottom:158.746667pt;}
.y38{bottom:169.146667pt;}
.y21{bottom:169.946667pt;}
.y37{bottom:192.026667pt;}
.y20{bottom:202.106667pt;}
.y36{bottom:202.426667pt;}
.y35{bottom:223.706667pt;}
.y1f{bottom:234.266667pt;}
.y34{bottom:239.066667pt;}
.y33{bottom:249.146667pt;}
.y1e{bottom:266.586667pt;}
.y32{bottom:277.306667pt;}
.y1d{bottom:298.746667pt;}
.y31{bottom:330.586667pt;}
.y1c{bottom:330.906667pt;}
.y53{bottom:352.386667pt;}
.y1b{bottom:363.106667pt;}
.y52{bottom:373.826667pt;}
.y1a{bottom:395.426667pt;}
.y51{bottom:416.866667pt;}
.y19{bottom:427.586667pt;}
.y50{bottom:438.306667pt;}
.y18{bottom:459.746667pt;}
.y4f{bottom:481.186667pt;}
.y17{bottom:491.906667pt;}
.y4e{bottom:502.626667pt;}
.y16{bottom:524.226667pt;}
.y4d{bottom:545.666667pt;}
.y15{bottom:556.386667pt;}
.y4c{bottom:567.133333pt;}
.y14{bottom:588.573333pt;}
.y4b{bottom:610.013333pt;}
.y13{bottom:620.733333pt;}
.y4a{bottom:631.453333pt;}
.y12{bottom:652.893333pt;}
.y49{bottom:674.493333pt;}
.y11{bottom:685.213333pt;}
.y48{bottom:695.933333pt;}
.y10{bottom:717.373333pt;}
.y47{bottom:738.813333pt;}
.yf{bottom:749.213333pt;}
.y2a{bottom:749.533333pt;}
.y46{bottom:760.253333pt;}
.ye{bottom:781.693333pt;}
.y45{bottom:803.333333pt;}
.yd{bottom:814.053333pt;}
.y44{bottom:824.773333pt;}
.yc{bottom:845.893333pt;}
.y29{bottom:846.213333pt;}
.y43{bottom:867.653333pt;}
.yb{bottom:878.053333pt;}
.y28{bottom:878.373333pt;}
.y42{bottom:889.093333pt;}
.ya{bottom:910.213333pt;}
.y27{bottom:910.533333pt;}
.y41{bottom:931.973333pt;}
.y9{bottom:942.853333pt;}
.y40{bottom:953.573333pt;}
.y8{bottom:975.013333pt;}
.y3f{bottom:996.453333pt;}
.y7{bottom:1006.853333pt;}
.y26{bottom:1007.173333pt;}
.y3e{bottom:1017.920000pt;}
.y6{bottom:1039.040000pt;}
.y25{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.ha{height:33.918750pt;}
.hf{height:36.920625pt;}
.hb{height:52.134375pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h7{height:65.995312pt;}
.h8{height:73.454062pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.he{height:76.964840pt;}
.h9{height:81.669375pt;}
.hc{height:81.776042pt;}
.hd{height:81.829375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x10{left:84.192000pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.x11{left:108.192000pt;}
.xe{left:132.352000pt;}
.xf{left:273.986667pt;}
.x3{left:390.146667pt;}
.xb{left:421.053333pt;}
.xa{left:422.333333pt;}
.x6{left:435.453333pt;}
.x5{left:447.293333pt;}
.x7{left:453.533333pt;}
.xc{left:455.773333pt;}
.x8{left:473.053333pt;}
.xd{left:486.173333pt;}
.x9{left:543.613333pt;}
}




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