
    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_5ae6efd423eccc83d5d33a7b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.096191;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_56715194ef92b6a7176659a5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83bd17539d2a38953f7ef90c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_d290ad23cda2aca84376790a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e8c63fb77a8e95d86f155c89.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_d7f9147d3e0c1f63cba9b0ba.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_38c213fd098632b4f61b6d69.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f8b901e8787207b424f27e1c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d5196acedfe8c3821248e4fd.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6cde217dc7e4094f08578fae.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bfd8bce2425ff0f68e8fdd4b.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d4bd059e3d35b7e13537237b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.816406;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;}
.m1{transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243420,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,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;}
.ls1d{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.237600px;}
.ls15{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.174000px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.174240px;}
.ls1b{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.360000px;}
.ls6{letter-spacing:5.040000px;}
.ls5{letter-spacing:6.480000px;}
.ls4{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.640000px;}
.ls18{letter-spacing:10.080000px;}
.ls13{letter-spacing:13.140000px;}
.ls17{letter-spacing:13.680000px;}
.lse{letter-spacing:16.560000px;}
.ls1{letter-spacing:21.600000px;}
.ls2{letter-spacing:23.760000px;}
.lsc{letter-spacing:28.080000px;}
.ls3{letter-spacing:30.240000px;}
.ls19{letter-spacing:40.661280px;}
.lsf{letter-spacing:160.865280px;}
.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;}
}
.wsc{word-spacing:-21.420000px;}
.wse{word-spacing:-21.222960px;}
.ws0{word-spacing:-21.159360px;}
.wsd{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.280000px;}
.ws8{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-16.440000px;}
._15{margin-left:-14.916000px;}
._18{margin-left:-8.124000px;}
._1f{margin-left:-6.816000px;}
._22{margin-left:-4.761120px;}
._14{margin-left:-3.348000px;}
._12{margin-left:-2.220000px;}
._1{margin-left:-1.080000px;}
._0{width:1.128000px;}
._1c{width:2.328000px;}
._d{width:3.504000px;}
._16{width:4.536000px;}
._7{width:5.832000px;}
._6{width:6.996000px;}
._5{width:8.208000px;}
._e{width:9.660000px;}
._c{width:10.872000px;}
._29{width:11.892000px;}
._b{width:13.008000px;}
._a{width:14.316000px;}
._3{width:15.576000px;}
._1a{width:16.596000px;}
._20{width:18.482400px;}
._2{width:19.632000px;}
._30{width:20.649600px;}
._9{width:23.028000px;}
._8{width:24.600000px;}
._26{width:26.136000px;}
._1b{width:27.720000px;}
._4{width:29.088000px;}
._17{width:30.864000px;}
._21{width:31.927440px;}
._f{width:32.988000px;}
._13{width:35.364000px;}
._11{width:36.396000px;}
._10{width:37.872000px;}
._1e{width:41.052000px;}
._1d{width:42.204000px;}
._2b{width:45.228000px;}
._23{width:47.088000px;}
._24{width:49.212000px;}
._28{width:50.460000px;}
._19{width:53.436000px;}
._2a{width:54.504000px;}
._2f{width:79.872000px;}
._2c{width:80.916000px;}
._25{width:82.800000px;}
._2e{width:88.464000px;}
._2d{width:89.712000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc5{color:rgb(35,31,32);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:48.240000px;}
.y6{bottom:68.580000px;}
.y5{bottom:92.340000px;}
.y3b{bottom:111.600000px;}
.y3a{bottom:128.880000px;}
.y4b{bottom:129.060000px;}
.y4a{bottom:134.280000px;}
.y39{bottom:146.016000px;}
.y49{bottom:151.050000px;}
.y38{bottom:163.650000px;}
.y37{bottom:168.870000px;}
.y48{bottom:177.150000px;}
.y36{bottom:185.610000px;}
.y47{bottom:203.610000px;}
.y35{bottom:226.650000px;}
.y46{bottom:227.370000px;}
.y34{bottom:250.590000px;}
.y45{bottom:251.310000px;}
.y33{bottom:274.350000px;}
.y44{bottom:277.410000px;}
.y32{bottom:298.110000px;}
.y43{bottom:301.710000px;}
.y31{bottom:321.870000px;}
.y42{bottom:325.470000px;}
.y30{bottom:345.810000px;}
.y41{bottom:349.230000px;}
.y2f{bottom:369.570000px;}
.y40{bottom:372.990000px;}
.y2e{bottom:393.375000px;}
.y3f{bottom:396.975000px;}
.y2d{bottom:417.135000px;}
.y3e{bottom:420.735000px;}
.y2c{bottom:441.075000px;}
.y3d{bottom:444.495000px;}
.y2b{bottom:464.835000px;}
.y23{bottom:468.255000px;}
.y2a{bottom:488.595000px;}
.y22{bottom:492.195000px;}
.y29{bottom:512.355000px;}
.y21{bottom:515.955000px;}
.y28{bottom:536.295000px;}
.y20{bottom:539.715000px;}
.y1f{bottom:563.475000px;}
.y1e{bottom:587.235000px;}
.y1d{bottom:611.175000px;}
.y1c{bottom:634.935000px;}
.y3c{bottom:641.805000px;}
.y5a{bottom:647.565000px;}
.y1b{bottom:658.725000px;}
.y59{bottom:671.325000px;}
.y1a{bottom:682.485000px;}
.y58{bottom:695.085000px;}
.y19{bottom:706.425000px;}
.y57{bottom:719.025000px;}
.y18{bottom:730.185000px;}
.y56{bottom:745.485000px;}
.y17{bottom:753.945000px;}
.y55{bottom:769.425000px;}
.y16{bottom:777.705000px;}
.y54{bottom:793.185000px;}
.y15{bottom:801.645000px;}
.y53{bottom:819.825000px;}
.y14{bottom:825.405000px;}
.y52{bottom:843.585000px;}
.y13{bottom:849.165000px;}
.y51{bottom:867.345000px;}
.y12{bottom:872.925000px;}
.y50{bottom:891.105000px;}
.y11{bottom:896.910000px;}
.y4f{bottom:915.090000px;}
.y10{bottom:920.670000px;}
.y4e{bottom:941.550000px;}
.yf{bottom:944.430000px;}
.y4d{bottom:965.490000px;}
.ye{bottom:968.190000px;}
.y4c{bottom:989.430000px;}
.yd{bottom:992.130000px;}
.yc{bottom:1015.890000px;}
.yb{bottom:1039.290000px;}
.y26{bottom:1039.650000px;}
.y27{bottom:1046.490000px;}
.ya{bottom:1063.410000px;}
.y9{bottom:1086.810000px;}
.y25{bottom:1087.170000px;}
.y8{bottom:1110.750000px;}
.y24{bottom:1111.110000px;}
.y4{bottom:1131.630000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.h8{height:38.671172px;}
.h7{height:47.344922px;}
.hb{height:53.043750px;}
.ha{height:58.651172px;}
.h9{height:59.439023px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.hc{height:68.084282px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:101.015987px;}
.x1{left:117.035987px;}
.xd{left:122.255987px;}
.x14{left:138.275987px;}
.x10{left:154.109987px;}
.x5{left:169.229987px;}
.xe{left:178.229987px;}
.xf{left:179.309987px;}
.x2{left:185.249987px;}
.x12{left:221.609973px;}
.x13{left:227.729987px;}
.x7{left:288.434987px;}
.x8{left:320.474987px;}
.xc{left:333.074987px;}
.x6{left:356.834987px;}
.x15{left:427.394987px;}
.x9{left:429.014987px;}
.x4{left:430.274987px;}
.x3{left:473.144987px;}
.xa{left:635.549973px;}
.xb{left:642.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.211200pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.154667pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.154880pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.320000pt;}
.ls6{letter-spacing:4.480000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls4{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls18{letter-spacing:8.960000pt;}
.ls13{letter-spacing:11.680000pt;}
.ls17{letter-spacing:12.160000pt;}
.lse{letter-spacing:14.720000pt;}
.ls1{letter-spacing:19.200000pt;}
.ls2{letter-spacing:21.120000pt;}
.lsc{letter-spacing:24.960000pt;}
.ls3{letter-spacing:26.880000pt;}
.ls19{letter-spacing:36.143360pt;}
.lsf{letter-spacing:142.991360pt;}
.wsc{word-spacing:-19.040000pt;}
.wse{word-spacing:-18.864853pt;}
.ws0{word-spacing:-18.808320pt;}
.wsd{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws8{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-14.613333pt;}
._15{margin-left:-13.258667pt;}
._18{margin-left:-7.221333pt;}
._1f{margin-left:-6.058667pt;}
._22{margin-left:-4.232107pt;}
._14{margin-left:-2.976000pt;}
._12{margin-left:-1.973333pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.002667pt;}
._1c{width:2.069333pt;}
._d{width:3.114667pt;}
._16{width:4.032000pt;}
._7{width:5.184000pt;}
._6{width:6.218667pt;}
._5{width:7.296000pt;}
._e{width:8.586667pt;}
._c{width:9.664000pt;}
._29{width:10.570667pt;}
._b{width:11.562667pt;}
._a{width:12.725333pt;}
._3{width:13.845333pt;}
._1a{width:14.752000pt;}
._20{width:16.428800pt;}
._2{width:17.450667pt;}
._30{width:18.355200pt;}
._9{width:20.469333pt;}
._8{width:21.866667pt;}
._26{width:23.232000pt;}
._1b{width:24.640000pt;}
._4{width:25.856000pt;}
._17{width:27.434667pt;}
._21{width:28.379947pt;}
._f{width:29.322667pt;}
._13{width:31.434667pt;}
._11{width:32.352000pt;}
._10{width:33.664000pt;}
._1e{width:36.490667pt;}
._1d{width:37.514667pt;}
._2b{width:40.202667pt;}
._23{width:41.856000pt;}
._24{width:43.744000pt;}
._28{width:44.853333pt;}
._19{width:47.498667pt;}
._2a{width:48.448000pt;}
._2f{width:70.997333pt;}
._2c{width:71.925333pt;}
._25{width:73.600000pt;}
._2e{width:78.634667pt;}
._2d{width:79.744000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:42.880000pt;}
.y6{bottom:60.960000pt;}
.y5{bottom:82.080000pt;}
.y3b{bottom:99.200000pt;}
.y3a{bottom:114.560000pt;}
.y4b{bottom:114.720000pt;}
.y4a{bottom:119.360000pt;}
.y39{bottom:129.792000pt;}
.y49{bottom:134.266667pt;}
.y38{bottom:145.466667pt;}
.y37{bottom:150.106667pt;}
.y48{bottom:157.466667pt;}
.y36{bottom:164.986667pt;}
.y47{bottom:180.986667pt;}
.y35{bottom:201.466667pt;}
.y46{bottom:202.106667pt;}
.y34{bottom:222.746667pt;}
.y45{bottom:223.386667pt;}
.y33{bottom:243.866667pt;}
.y44{bottom:246.586667pt;}
.y32{bottom:264.986667pt;}
.y43{bottom:268.186667pt;}
.y31{bottom:286.106667pt;}
.y42{bottom:289.306667pt;}
.y30{bottom:307.386667pt;}
.y41{bottom:310.426667pt;}
.y2f{bottom:328.506667pt;}
.y40{bottom:331.546667pt;}
.y2e{bottom:349.666667pt;}
.y3f{bottom:352.866667pt;}
.y2d{bottom:370.786667pt;}
.y3e{bottom:373.986667pt;}
.y2c{bottom:392.066667pt;}
.y3d{bottom:395.106667pt;}
.y2b{bottom:413.186667pt;}
.y23{bottom:416.226667pt;}
.y2a{bottom:434.306667pt;}
.y22{bottom:437.506667pt;}
.y29{bottom:455.426667pt;}
.y21{bottom:458.626667pt;}
.y28{bottom:476.706667pt;}
.y20{bottom:479.746667pt;}
.y1f{bottom:500.866667pt;}
.y1e{bottom:521.986667pt;}
.y1d{bottom:543.266667pt;}
.y1c{bottom:564.386667pt;}
.y3c{bottom:570.493333pt;}
.y5a{bottom:575.613333pt;}
.y1b{bottom:585.533333pt;}
.y59{bottom:596.733333pt;}
.y1a{bottom:606.653333pt;}
.y58{bottom:617.853333pt;}
.y19{bottom:627.933333pt;}
.y57{bottom:639.133333pt;}
.y18{bottom:649.053333pt;}
.y56{bottom:662.653333pt;}
.y17{bottom:670.173333pt;}
.y55{bottom:683.933333pt;}
.y16{bottom:691.293333pt;}
.y54{bottom:705.053333pt;}
.y15{bottom:712.573333pt;}
.y53{bottom:728.733333pt;}
.y14{bottom:733.693333pt;}
.y52{bottom:749.853333pt;}
.y13{bottom:754.813333pt;}
.y51{bottom:770.973333pt;}
.y12{bottom:775.933333pt;}
.y50{bottom:792.093333pt;}
.y11{bottom:797.253333pt;}
.y4f{bottom:813.413333pt;}
.y10{bottom:818.373333pt;}
.y4e{bottom:836.933333pt;}
.yf{bottom:839.493333pt;}
.y4d{bottom:858.213333pt;}
.ye{bottom:860.613333pt;}
.y4c{bottom:879.493333pt;}
.yd{bottom:881.893333pt;}
.yc{bottom:903.013333pt;}
.yb{bottom:923.813333pt;}
.y26{bottom:924.133333pt;}
.y27{bottom:930.213333pt;}
.ya{bottom:945.253333pt;}
.y9{bottom:966.053333pt;}
.y25{bottom:966.373333pt;}
.y8{bottom:987.333333pt;}
.y24{bottom:987.653333pt;}
.y4{bottom:1005.893333pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.h8{height:34.374375pt;}
.h7{height:42.084375pt;}
.hb{height:47.150000pt;}
.ha{height:52.134375pt;}
.h9{height:52.834688pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.hc{height:60.519362pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:89.791988pt;}
.x1{left:104.031988pt;}
.xd{left:108.671988pt;}
.x14{left:122.911988pt;}
.x10{left:136.986655pt;}
.x5{left:150.426655pt;}
.xe{left:158.426655pt;}
.xf{left:159.386655pt;}
.x2{left:164.666655pt;}
.x12{left:196.986643pt;}
.x13{left:202.426655pt;}
.x7{left:256.386655pt;}
.x8{left:284.866655pt;}
.xc{left:296.066655pt;}
.x6{left:317.186655pt;}
.x15{left:379.906655pt;}
.x9{left:381.346655pt;}
.x4{left:382.466655pt;}
.x3{left:420.573322pt;}
.xa{left:564.933310pt;}
.xb{left:571.333322pt;}
}




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