
    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_60094db6ddd75a12a50fe943.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_14642b6ddbae70d19a5f7452.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_54f5e880d99b5704f9049222.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_04390533640c9df2b4c4ed4b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_c98e2ef2295f24ca87efce03.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1f974356df39a149ca3d6d4.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_8a3bbb99b19d686ec971d433.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_db721e763c9c139e34c330c4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8249f19d9df18dbaaad6043e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7ecd0f75a34851b0d462fbed.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_211d285cff0a8bab6668a9b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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_bfac30ad4ed7b24f2834a0d5.woff')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.600000px;}
.v1{vertical-align:30.000000px;}
.ls14{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.552000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.156000px;}
.lse{letter-spacing:0.372000px;}
.ls1{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.768000px;}
.ls13{letter-spacing:1.200000px;}
.ls11{letter-spacing:3.000000px;}
.lsa{letter-spacing:4.200000px;}
.lsf{letter-spacing:9.000000px;}
.ls5{letter-spacing:18.600000px;}
.ls16{letter-spacing:21.228000px;}
.ls2{letter-spacing:25.800000px;}
.ls10{letter-spacing:27.000000px;}
.ls3{letter-spacing:42.780000px;}
.lsb{letter-spacing:58.140000px;}
.lsc{letter-spacing:58.200000px;}
.ls9{letter-spacing:72.660000px;}
.ls4{letter-spacing:82.380000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-22.200000px;}
.ws6{word-spacing:-21.372000px;}
.ws2{word-spacing:-21.156000px;}
.ws7{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws1{word-spacing:-20.448000px;}
.ws5{word-spacing:-19.800000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.152800px;}
._1{margin-left:-1.074000px;}
._0{width:1.008000px;}
._3{width:2.722800px;}
._a{width:3.894000px;}
._1f{width:4.954800px;}
._7{width:5.964000px;}
._8{width:7.528800px;}
._20{width:9.439200px;}
._21{width:11.011200px;}
._13{width:12.988800px;}
._14{width:14.107200px;}
._d{width:15.172800px;}
._e{width:17.052000px;}
._12{width:18.444000px;}
._b{width:19.708800px;}
._c{width:22.455600px;}
._23{width:23.739600px;}
._38{width:24.746400px;}
._6{width:25.987200px;}
._5{width:27.255600px;}
._9{width:28.864800px;}
._29{width:30.084000px;}
._17{width:31.257600px;}
._16{width:32.697600px;}
._1e{width:34.063200px;}
._1a{width:35.182800px;}
._1b{width:36.270000px;}
._2a{width:38.272800px;}
._22{width:40.540800px;}
._32{width:41.704800px;}
._f{width:42.724800px;}
._26{width:43.837200px;}
._2f{width:45.213600px;}
._28{width:46.620000px;}
._15{width:47.680800px;}
._27{width:49.258800px;}
._2d{width:50.284800px;}
._2e{width:51.628800px;}
._31{width:54.820800px;}
._30{width:56.364000px;}
._1d{width:58.425600px;}
._1c{width:59.577600px;}
._34{width:64.596000px;}
._35{width:66.448800px;}
._2b{width:67.756800px;}
._2c{width:68.764800px;}
._4{width:72.552000px;}
._18{width:75.166800px;}
._19{width:76.873200px;}
._3b{width:78.960000px;}
._3c{width:80.137200px;}
._10{width:81.472800px;}
._11{width:83.136000px;}
._3a{width:87.844800px;}
._39{width:89.176800px;}
._25{width:90.786000px;}
._24{width:91.948800px;}
._33{width:114.912000px;}
._37{width:121.012800px;}
._36{width:122.104800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.937500px;}
.y48{bottom:16.800000px;}
.y4a{bottom:17.400000px;}
.y4{bottom:49.200000px;}
.y47{bottom:53.100000px;}
.y46{bottom:89.100000px;}
.y3{bottom:97.837500px;}
.y45{bottom:125.400000px;}
.y2e{bottom:130.237500px;}
.y4b{bottom:149.137500px;}
.y21{bottom:151.230000px;}
.y44{bottom:161.745000px;}
.y2d{bottom:166.545000px;}
.y49{bottom:168.675000px;}
.y20{bottom:187.575000px;}
.y2c{bottom:202.875000px;}
.y43{bottom:205.575000px;}
.y5c{bottom:221.475000px;}
.y1f{bottom:223.875000px;}
.y2b{bottom:238.875000px;}
.y5b{bottom:257.775000px;}
.y1e{bottom:259.875000px;}
.y2a{bottom:275.175000px;}
.y5a{bottom:293.775000px;}
.y1d{bottom:296.175000px;}
.y29{bottom:311.475000px;}
.y59{bottom:330.075000px;}
.y5e{bottom:331.875000px;}
.y1c{bottom:332.475000px;}
.y28{bottom:347.505000px;}
.y58{bottom:366.405000px;}
.y1b{bottom:368.505000px;}
.y27{bottom:383.820000px;}
.y57{bottom:402.705000px;}
.y42{bottom:404.205000px;}
.y1a{bottom:404.820000px;}
.y26{bottom:420.120000px;}
.y56{bottom:438.705000px;}
.y41{bottom:440.505000px;}
.y19{bottom:441.120000px;}
.y25{bottom:456.420000px;}
.y55{bottom:475.005000px;}
.y40{bottom:476.820000px;}
.y18{bottom:477.405000px;}
.y3e{bottom:492.405000px;}
.y54{bottom:511.350000px;}
.y17{bottom:513.450000px;}
.y3d{bottom:528.750000px;}
.y53{bottom:547.650000px;}
.y16{bottom:549.750000px;}
.y3c{bottom:565.050000px;}
.y52{bottom:583.650000px;}
.y15{bottom:586.050000px;}
.y3b{bottom:601.350000px;}
.y51{bottom:619.950000px;}
.y14{bottom:622.350000px;}
.y3a{bottom:637.350000px;}
.y50{bottom:656.250000px;}
.y13{bottom:658.350000px;}
.y39{bottom:673.650000px;}
.y4f{bottom:692.580000px;}
.y5d{bottom:694.080000px;}
.y12{bottom:694.680000px;}
.y38{bottom:709.995000px;}
.y4e{bottom:712.080000px;}
.y11{bottom:730.980000px;}
.y37{bottom:746.280000px;}
.y4d{bottom:748.980000px;}
.y10{bottom:767.280000px;}
.y36{bottom:782.280000px;}
.yf{bottom:803.295000px;}
.y35{bottom:818.580000px;}
.y4c{bottom:838.980000px;}
.ye{bottom:839.580000px;}
.y34{bottom:854.925000px;}
.yd{bottom:875.325000px;}
.y3f{bottom:875.925000px;}
.y33{bottom:891.225000px;}
.yc{bottom:912.225000px;}
.y32{bottom:927.225000px;}
.yb{bottom:948.225000px;}
.y31{bottom:963.525000px;}
.ya{bottom:984.525000px;}
.y30{bottom:999.825000px;}
.y9{bottom:1020.855000px;}
.y2f{bottom:1036.170000px;}
.y8{bottom:1056.570000px;}
.y24{bottom:1057.155000px;}
.y7{bottom:1092.570000px;}
.y23{bottom:1093.155000px;}
.y6{bottom:1128.870000px;}
.y22{bottom:1129.455000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.h4{height:32.400000px;}
.hd{height:36.300000px;}
.h8{height:58.898438px;}
.ha{height:61.400391px;}
.hc{height:63.287109px;}
.h5{height:68.947266px;}
.he{height:72.600000px;}
.h3{height:79.980469px;}
.h9{height:82.400391px;}
.h6{height:82.441406px;}
.h7{height:82.998047px;}
.h2{height:84.656250px;}
.hf{height:86.338763px;}
.hb{height:181.245000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:45.300000px;}
.w3{width:96.337500px;}
.w5{width:186.345000px;}
.w6{width:215.475000px;}
.w4{width:216.975000px;}
.w8{width:264.975000px;}
.w7{width:318.420000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:61.537500px;}
.x12{left:66.300000px;}
.x16{left:68.100000px;}
.x25{left:69.637500px;}
.x22{left:78.345000px;}
.x1a{left:87.630000px;}
.x1e{left:95.700000px;}
.x1f{left:108.630000px;}
.x1d{left:111.045000px;}
.x14{left:116.430000px;}
.x10{left:120.037500px;}
.x18{left:123.345000px;}
.x3{left:127.537500px;}
.x1c{left:129.330000px;}
.x1b{left:134.430000px;}
.x13{left:137.430000px;}
.x1{left:139.537500px;}
.x15{left:149.745000px;}
.x2c{left:154.530000px;}
.x26{left:172.245000px;}
.xc{left:180.675000px;}
.x29{left:182.775000px;}
.x23{left:193.845000px;}
.x6{left:199.875000px;}
.x5{left:216.075000px;}
.x7{left:227.775000px;}
.xe{left:235.575000px;}
.xd{left:288.675000px;}
.x9{left:312.720000px;}
.xb{left:322.320000px;}
.x2a{left:323.505000px;}
.x2b{left:355.920000px;}
.xa{left:399.405000px;}
.x2{left:414.105000px;}
.x17{left:434.550000px;}
.x20{left:438.150000px;}
.x8{left:478.350000px;}
.x24{left:535.995000px;}
.x21{left:558.780000px;}
.x27{left:570.495000px;}
.x19{left:621.495000px;}
.x28{left:623.580000px;}
.xf{left:753.825000px;}
.x4{left:831.900000px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.533333pt;}
.v1{vertical-align:26.666667pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.490667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.138667pt;}
.lse{letter-spacing:0.330667pt;}
.ls1{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.682667pt;}
.ls13{letter-spacing:1.066667pt;}
.ls11{letter-spacing:2.666667pt;}
.lsa{letter-spacing:3.733333pt;}
.lsf{letter-spacing:8.000000pt;}
.ls5{letter-spacing:16.533333pt;}
.ls16{letter-spacing:18.869333pt;}
.ls2{letter-spacing:22.933333pt;}
.ls10{letter-spacing:24.000000pt;}
.ls3{letter-spacing:38.026667pt;}
.lsb{letter-spacing:51.680000pt;}
.lsc{letter-spacing:51.733333pt;}
.ls9{letter-spacing:64.586667pt;}
.ls4{letter-spacing:73.226667pt;}
.ws4{word-spacing:-19.733333pt;}
.ws6{word-spacing:-18.997333pt;}
.ws2{word-spacing:-18.805333pt;}
.ws7{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws1{word-spacing:-18.176000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.913600pt;}
._1{margin-left:-0.954667pt;}
._0{width:0.896000pt;}
._3{width:2.420267pt;}
._a{width:3.461333pt;}
._1f{width:4.404267pt;}
._7{width:5.301333pt;}
._8{width:6.692267pt;}
._20{width:8.390400pt;}
._21{width:9.787733pt;}
._13{width:11.545600pt;}
._14{width:12.539733pt;}
._d{width:13.486933pt;}
._e{width:15.157333pt;}
._12{width:16.394667pt;}
._b{width:17.518933pt;}
._c{width:19.960533pt;}
._23{width:21.101867pt;}
._38{width:21.996800pt;}
._6{width:23.099733pt;}
._5{width:24.227200pt;}
._9{width:25.657600pt;}
._29{width:26.741333pt;}
._17{width:27.784533pt;}
._16{width:29.064533pt;}
._1e{width:30.278400pt;}
._1a{width:31.273600pt;}
._1b{width:32.240000pt;}
._2a{width:34.020267pt;}
._22{width:36.036267pt;}
._32{width:37.070933pt;}
._f{width:37.977600pt;}
._26{width:38.966400pt;}
._2f{width:40.189867pt;}
._28{width:41.440000pt;}
._15{width:42.382933pt;}
._27{width:43.785600pt;}
._2d{width:44.697600pt;}
._2e{width:45.892267pt;}
._31{width:48.729600pt;}
._30{width:50.101333pt;}
._1d{width:51.933867pt;}
._1c{width:52.957867pt;}
._34{width:57.418667pt;}
._35{width:59.065600pt;}
._2b{width:60.228267pt;}
._2c{width:61.124267pt;}
._4{width:64.490667pt;}
._18{width:66.814933pt;}
._19{width:68.331733pt;}
._3b{width:70.186667pt;}
._3c{width:71.233067pt;}
._10{width:72.420267pt;}
._11{width:73.898667pt;}
._3a{width:78.084267pt;}
._39{width:79.268267pt;}
._25{width:80.698667pt;}
._24{width:81.732267pt;}
._33{width:102.144000pt;}
._37{width:107.566933pt;}
._36{width:108.537600pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.166667pt;}
.y48{bottom:14.933333pt;}
.y4a{bottom:15.466667pt;}
.y4{bottom:43.733333pt;}
.y47{bottom:47.200000pt;}
.y46{bottom:79.200000pt;}
.y3{bottom:86.966667pt;}
.y45{bottom:111.466667pt;}
.y2e{bottom:115.766667pt;}
.y4b{bottom:132.566667pt;}
.y21{bottom:134.426667pt;}
.y44{bottom:143.773333pt;}
.y2d{bottom:148.040000pt;}
.y49{bottom:149.933333pt;}
.y20{bottom:166.733333pt;}
.y2c{bottom:180.333333pt;}
.y43{bottom:182.733333pt;}
.y5c{bottom:196.866667pt;}
.y1f{bottom:199.000000pt;}
.y2b{bottom:212.333333pt;}
.y5b{bottom:229.133333pt;}
.y1e{bottom:231.000000pt;}
.y2a{bottom:244.600000pt;}
.y5a{bottom:261.133333pt;}
.y1d{bottom:263.266667pt;}
.y29{bottom:276.866667pt;}
.y59{bottom:293.400000pt;}
.y5e{bottom:295.000000pt;}
.y1c{bottom:295.533333pt;}
.y28{bottom:308.893333pt;}
.y58{bottom:325.693333pt;}
.y1b{bottom:327.560000pt;}
.y27{bottom:341.173333pt;}
.y57{bottom:357.960000pt;}
.y42{bottom:359.293333pt;}
.y1a{bottom:359.840000pt;}
.y26{bottom:373.440000pt;}
.y56{bottom:389.960000pt;}
.y41{bottom:391.560000pt;}
.y19{bottom:392.106667pt;}
.y25{bottom:405.706667pt;}
.y55{bottom:422.226667pt;}
.y40{bottom:423.840000pt;}
.y18{bottom:424.360000pt;}
.y3e{bottom:437.693333pt;}
.y54{bottom:454.533333pt;}
.y17{bottom:456.400000pt;}
.y3d{bottom:470.000000pt;}
.y53{bottom:486.800000pt;}
.y16{bottom:488.666667pt;}
.y3c{bottom:502.266667pt;}
.y52{bottom:518.800000pt;}
.y15{bottom:520.933333pt;}
.y3b{bottom:534.533333pt;}
.y51{bottom:551.066667pt;}
.y14{bottom:553.200000pt;}
.y3a{bottom:566.533333pt;}
.y50{bottom:583.333333pt;}
.y13{bottom:585.200000pt;}
.y39{bottom:598.800000pt;}
.y4f{bottom:615.626667pt;}
.y5d{bottom:616.960000pt;}
.y12{bottom:617.493333pt;}
.y38{bottom:631.106667pt;}
.y4e{bottom:632.960000pt;}
.y11{bottom:649.760000pt;}
.y37{bottom:663.360000pt;}
.y4d{bottom:665.760000pt;}
.y10{bottom:682.026667pt;}
.y36{bottom:695.360000pt;}
.yf{bottom:714.040000pt;}
.y35{bottom:727.626667pt;}
.y4c{bottom:745.760000pt;}
.ye{bottom:746.293333pt;}
.y34{bottom:759.933333pt;}
.yd{bottom:778.066667pt;}
.y3f{bottom:778.600000pt;}
.y33{bottom:792.200000pt;}
.yc{bottom:810.866667pt;}
.y32{bottom:824.200000pt;}
.yb{bottom:842.866667pt;}
.y31{bottom:856.466667pt;}
.ya{bottom:875.133333pt;}
.y30{bottom:888.733333pt;}
.y9{bottom:907.426667pt;}
.y2f{bottom:921.040000pt;}
.y8{bottom:939.173333pt;}
.y24{bottom:939.693333pt;}
.y7{bottom:971.173333pt;}
.y23{bottom:971.693333pt;}
.y6{bottom:1003.440000pt;}
.y22{bottom:1003.960000pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.h4{height:28.800000pt;}
.hd{height:32.266667pt;}
.h8{height:52.354167pt;}
.ha{height:54.578125pt;}
.hc{height:56.255208pt;}
.h5{height:61.286458pt;}
.he{height:64.533333pt;}
.h3{height:71.093750pt;}
.h9{height:73.244792pt;}
.h6{height:73.281250pt;}
.h7{height:73.776042pt;}
.h2{height:75.250000pt;}
.hf{height:76.745567pt;}
.hb{height:161.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.266667pt;}
.w3{width:85.633333pt;}
.w5{width:165.640000pt;}
.w6{width:191.533333pt;}
.w4{width:192.866667pt;}
.w8{width:235.533333pt;}
.w7{width:283.040000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:54.700000pt;}
.x12{left:58.933333pt;}
.x16{left:60.533333pt;}
.x25{left:61.900000pt;}
.x22{left:69.640000pt;}
.x1a{left:77.893333pt;}
.x1e{left:85.066667pt;}
.x1f{left:96.560000pt;}
.x1d{left:98.706667pt;}
.x14{left:103.493333pt;}
.x10{left:106.700000pt;}
.x18{left:109.640000pt;}
.x3{left:113.366667pt;}
.x1c{left:114.960000pt;}
.x1b{left:119.493333pt;}
.x13{left:122.160000pt;}
.x1{left:124.033333pt;}
.x15{left:133.106667pt;}
.x2c{left:137.360000pt;}
.x26{left:153.106667pt;}
.xc{left:160.600000pt;}
.x29{left:162.466667pt;}
.x23{left:172.306667pt;}
.x6{left:177.666667pt;}
.x5{left:192.066667pt;}
.x7{left:202.466667pt;}
.xe{left:209.400000pt;}
.xd{left:256.600000pt;}
.x9{left:277.973333pt;}
.xb{left:286.506667pt;}
.x2a{left:287.560000pt;}
.x2b{left:316.373333pt;}
.xa{left:355.026667pt;}
.x2{left:368.093333pt;}
.x17{left:386.266667pt;}
.x20{left:389.466667pt;}
.x8{left:425.200000pt;}
.x24{left:476.440000pt;}
.x21{left:496.693333pt;}
.x27{left:507.106667pt;}
.x19{left:552.440000pt;}
.x28{left:554.293333pt;}
.xf{left:670.066667pt;}
.x4{left:739.466667pt;}
}




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