
    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_9bae78e834f44422f9901250.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166504;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_ba86994cde88b9df7aecae8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_243194f90379beef65d3dc95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_f1aa310b5d08fe4b864d9359.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_4e721258dafc85a9d6ea28be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac2957a1a93acfaff6915925.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700195;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_bcdbc2f590f1a5b26c487861.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010254;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_533f98a05a1fd0bf2c9f34fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.991699;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_75b03764f587556772b1a43e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_4ca8751f54d7f00927ac2b9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_d47b3fd4929e4307fe2f5d76.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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_07c77caa6863f7eea8f5169a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.991699;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:ffd;src:url('chunks/assets/font_e36d06ead77ab1b9b0027530.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.034560px;}
.lsb{letter-spacing:-0.017280px;}
.ls13{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.080400px;}
.ls14{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.lse{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls7{letter-spacing:7.200000px;}
.lsc{letter-spacing:14.400000px;}
.ls6{letter-spacing:16.560000px;}
.ls12{letter-spacing:19.440000px;}
.lsf{letter-spacing:25.200000px;}
.ls5{letter-spacing:42.480000px;}
.ls10{letter-spacing:44.640000px;}
.ls4{letter-spacing:132.462720px;}
.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:-19.656000px;}
.ws8{word-spacing:-19.520400px;}
.ws3{word-spacing:-19.448640px;}
.ws4{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.422720px;}
.ws1{word-spacing:-16.272000px;}
.ws0{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.552000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-1.232160px;}
._1{width:1.244160px;}
._3{width:2.305920px;}
._f{width:3.514560px;}
._c{width:4.743360px;}
._b{width:5.754240px;}
._15{width:7.231680px;}
._16{width:8.398080px;}
._27{width:9.797760px;}
._d{width:11.119680px;}
._33{width:12.138720px;}
._9{width:13.141440px;}
._8{width:14.230080px;}
._a{width:15.240960px;}
._1b{width:16.251840px;}
._e{width:17.884800px;}
._1c{width:21.388800px;}
._1d{width:22.550400px;}
._10{width:23.794560px;}
._2{width:25.349760px;}
._0{width:26.438400px;}
._21{width:28.382400px;}
._22{width:29.782080px;}
._23{width:30.870720px;}
._1e{width:31.881600px;}
._13{width:32.970240px;}
._1f{width:34.214400px;}
._25{width:35.711040px;}
._11{width:37.606080px;}
._12{width:38.827200px;}
._2e{width:39.890880px;}
._19{width:41.733120px;}
._1a{width:43.148640px;}
._14{width:44.478720px;}
._28{width:46.189440px;}
._2f{width:48.055680px;}
._18{width:49.066560px;}
._20{width:51.477120px;}
._17{width:68.584320px;}
._24{width:80.792640px;}
._31{width:91.912320px;}
._26{width:93.856320px;}
._2a{width:97.822080px;}
._30{width:119.594880px;}
._2d{width:131.958720px;}
._2c{width:140.978880px;}
._4{width:169.447680px;}
._5{width:194.826240px;}
._2b{width:200.854080px;}
._29{width:233.280000px;}
._32{width:424.258560px;}
._34{width:844.860000px;}
._7{width:2550.120000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs5{font-size:5.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:7.920000px;}
.yb{bottom:8.280000px;}
.y56{bottom:9.180000px;}
.y6{bottom:9.360000px;}
.y7{bottom:11.340000px;}
.y5d{bottom:23.040000px;}
.y5a{bottom:36.900000px;}
.y55{bottom:37.080000px;}
.ya{bottom:48.060000px;}
.y61{bottom:50.970000px;}
.y9{bottom:58.320000px;}
.y62{bottom:64.830000px;}
.y5b{bottom:64.845000px;}
.y58{bottom:64.980000px;}
.y60{bottom:78.870000px;}
.y63{bottom:92.730000px;}
.y74{bottom:94.896000px;}
.y73{bottom:122.796000px;}
.y53{bottom:126.396000px;}
.y2f{bottom:135.576000px;}
.y72{bottom:150.690000px;}
.y52{bottom:154.290000px;}
.y2e{bottom:163.290000px;}
.y71{bottom:178.410000px;}
.y51{bottom:182.010000px;}
.y2d{bottom:191.190000px;}
.y70{bottom:206.310000px;}
.y50{bottom:209.910000px;}
.y2c{bottom:219.090000px;}
.y6f{bottom:234.210000px;}
.y4f{bottom:237.810000px;}
.y2b{bottom:246.990000px;}
.y6e{bottom:262.110000px;}
.y4e{bottom:265.710000px;}
.y2a{bottom:274.890000px;}
.y6d{bottom:289.470000px;}
.y4d{bottom:293.610000px;}
.y29{bottom:302.790000px;}
.y6c{bottom:316.470000px;}
.y4c{bottom:321.330000px;}
.y28{bottom:330.510000px;}
.y6b{bottom:344.055000px;}
.y4b{bottom:349.275000px;}
.y27{bottom:358.455000px;}
.y6a{bottom:371.955000px;}
.y4a{bottom:377.175000px;}
.y26{bottom:386.355000px;}
.y69{bottom:399.855000px;}
.y49{bottom:405.075000px;}
.y25{bottom:414.255000px;}
.y68{bottom:427.755000px;}
.y48{bottom:432.975000px;}
.y24{bottom:442.155000px;}
.y67{bottom:455.475000px;}
.y47{bottom:460.875000px;}
.y23{bottom:469.875000px;}
.y66{bottom:483.375000px;}
.y46{bottom:488.595000px;}
.y22{bottom:497.775000px;}
.y65{bottom:511.275000px;}
.y45{bottom:516.495000px;}
.y21{bottom:525.675000px;}
.y64{bottom:539.175000px;}
.y44{bottom:544.395000px;}
.y20{bottom:553.575000px;}
.y5f{bottom:558.615000px;}
.y43{bottom:572.295000px;}
.y1f{bottom:581.475000px;}
.y42{bottom:600.195000px;}
.y1e{bottom:608.865000px;}
.y41{bottom:627.945000px;}
.y1d{bottom:636.405000px;}
.y40{bottom:655.845000px;}
.y1c{bottom:664.305000px;}
.y5e{bottom:670.785000px;}
.y3f{bottom:683.745000px;}
.y1b{bottom:691.665000px;}
.y3e{bottom:711.645000px;}
.y1a{bottom:719.205000px;}
.y3d{bottom:739.545000px;}
.y19{bottom:746.925000px;}
.y5c{bottom:755.205000px;}
.y3c{bottom:767.445000px;}
.y18{bottom:774.825000px;}
.y3b{bottom:795.165000px;}
.y17{bottom:802.725000px;}
.y59{bottom:811.725000px;}
.y3a{bottom:823.065000px;}
.y16{bottom:830.625000px;}
.y39{bottom:850.965000px;}
.y15{bottom:857.985000px;}
.y38{bottom:878.910000px;}
.y14{bottom:885.030000px;}
.y57{bottom:896.010000px;}
.y37{bottom:906.810000px;}
.y13{bottom:912.390000px;}
.y36{bottom:934.530000px;}
.y12{bottom:939.570000px;}
.y35{bottom:962.430000px;}
.y11{bottom:966.570000px;}
.y54{bottom:980.430000px;}
.y34{bottom:990.330000px;}
.y10{bottom:993.210000px;}
.y33{bottom:1018.230000px;}
.yf{bottom:1020.210000px;}
.y32{bottom:1046.130000px;}
.ye{bottom:1047.210000px;}
.y31{bottom:1074.030000px;}
.yd{bottom:1074.750000px;}
.y30{bottom:1101.750000px;}
.yc{bottom:1102.110000px;}
.y8{bottom:1121.010000px;}
.y4{bottom:1122.990000px;}
.y3{bottom:1153.620000px;}
.y2{bottom:1175.940000px;}
.y1{bottom:1199.700000px;}
.h8{height:3.943125px;}
.ha{height:22.176000px;}
.h4{height:24.870000px;}
.hb{height:43.506914px;}
.h7{height:49.680000px;}
.h9{height:52.417969px;}
.h10{height:55.785000px;}
.h13{height:55.800000px;}
.he{height:56.421563px;}
.hc{height:56.497500px;}
.hd{height:56.611406px;}
.h5{height:63.180000px;}
.h6{height:65.884219px;}
.h3{height:71.613281px;}
.h2{height:79.620469px;}
.hf{height:79.925027px;}
.h12{height:83.542500px;}
.h11{height:83.685000px;}
.h14{height:83.700000px;}
.h15{height:111.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:-252.945000px;}
.w3{width:52.950000px;}
.w7{width:232.770000px;}
.w6{width:232.813500px;}
.w8{width:232.935000px;}
.w5{width:390.690000px;}
.w2{width:762.975000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2{left:77.041500px;}
.x6{left:84.960000px;}
.x9{left:97.230000px;}
.x11{left:138.096000px;}
.xa{left:199.650000px;}
.x1{left:244.470000px;}
.x8{left:270.045000px;}
.xf{left:279.075000px;}
.xc{left:298.875000px;}
.x14{left:301.755000px;}
.x10{left:303.735000px;}
.x12{left:311.115000px;}
.xe{left:366.915000px;}
.xd{left:403.455000px;}
.xb{left:472.965000px;}
.x13{left:544.620000px;}
.x7{left:780.990000px;}
.x4{left:840.030000px;}
.x5{left:1145.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.030720pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls13{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.071467pt;}
.ls14{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.lse{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls7{letter-spacing:6.400000pt;}
.lsc{letter-spacing:12.800000pt;}
.ls6{letter-spacing:14.720000pt;}
.ls12{letter-spacing:17.280000pt;}
.lsf{letter-spacing:22.400000pt;}
.ls5{letter-spacing:37.760000pt;}
.ls10{letter-spacing:39.680000pt;}
.ls4{letter-spacing:117.744640pt;}
.ws7{word-spacing:-17.472000pt;}
.ws8{word-spacing:-17.351467pt;}
.ws3{word-spacing:-17.287680pt;}
.ws4{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.264640pt;}
.ws1{word-spacing:-14.464000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.824000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-1.095253pt;}
._1{width:1.105920pt;}
._3{width:2.049707pt;}
._f{width:3.124053pt;}
._c{width:4.216320pt;}
._b{width:5.114880pt;}
._15{width:6.428160pt;}
._16{width:7.464960pt;}
._27{width:8.709120pt;}
._d{width:9.884160pt;}
._33{width:10.789973pt;}
._9{width:11.681280pt;}
._8{width:12.648960pt;}
._a{width:13.547520pt;}
._1b{width:14.446080pt;}
._e{width:15.897600pt;}
._1c{width:19.012267pt;}
._1d{width:20.044800pt;}
._10{width:21.150720pt;}
._2{width:22.533120pt;}
._0{width:23.500800pt;}
._21{width:25.228800pt;}
._22{width:26.472960pt;}
._23{width:27.440640pt;}
._1e{width:28.339200pt;}
._13{width:29.306880pt;}
._1f{width:30.412800pt;}
._25{width:31.743147pt;}
._11{width:33.427627pt;}
._12{width:34.513067pt;}
._2e{width:35.458560pt;}
._19{width:37.096107pt;}
._1a{width:38.354347pt;}
._14{width:39.536640pt;}
._28{width:41.057280pt;}
._2f{width:42.716160pt;}
._18{width:43.614720pt;}
._20{width:45.757440pt;}
._17{width:60.963840pt;}
._24{width:71.815680pt;}
._31{width:81.699840pt;}
._26{width:83.427840pt;}
._2a{width:86.952960pt;}
._30{width:106.306560pt;}
._2d{width:117.296640pt;}
._2c{width:125.314560pt;}
._4{width:150.620160pt;}
._5{width:173.178880pt;}
._2b{width:178.536960pt;}
._29{width:207.360000pt;}
._32{width:377.118720pt;}
._34{width:750.986667pt;}
._7{width:2266.773333pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:7.040000pt;}
.yb{bottom:7.360000pt;}
.y56{bottom:8.160000pt;}
.y6{bottom:8.320000pt;}
.y7{bottom:10.080000pt;}
.y5d{bottom:20.480000pt;}
.y5a{bottom:32.800000pt;}
.y55{bottom:32.960000pt;}
.ya{bottom:42.720000pt;}
.y61{bottom:45.306667pt;}
.y9{bottom:51.840000pt;}
.y62{bottom:57.626667pt;}
.y5b{bottom:57.640000pt;}
.y58{bottom:57.760000pt;}
.y60{bottom:70.106667pt;}
.y63{bottom:82.426667pt;}
.y74{bottom:84.352000pt;}
.y73{bottom:109.152000pt;}
.y53{bottom:112.352000pt;}
.y2f{bottom:120.512000pt;}
.y72{bottom:133.946667pt;}
.y52{bottom:137.146667pt;}
.y2e{bottom:145.146667pt;}
.y71{bottom:158.586667pt;}
.y51{bottom:161.786667pt;}
.y2d{bottom:169.946667pt;}
.y70{bottom:183.386667pt;}
.y50{bottom:186.586667pt;}
.y2c{bottom:194.746667pt;}
.y6f{bottom:208.186667pt;}
.y4f{bottom:211.386667pt;}
.y2b{bottom:219.546667pt;}
.y6e{bottom:232.986667pt;}
.y4e{bottom:236.186667pt;}
.y2a{bottom:244.346667pt;}
.y6d{bottom:257.306667pt;}
.y4d{bottom:260.986667pt;}
.y29{bottom:269.146667pt;}
.y6c{bottom:281.306667pt;}
.y4c{bottom:285.626667pt;}
.y28{bottom:293.786667pt;}
.y6b{bottom:305.826667pt;}
.y4b{bottom:310.466667pt;}
.y27{bottom:318.626667pt;}
.y6a{bottom:330.626667pt;}
.y4a{bottom:335.266667pt;}
.y26{bottom:343.426667pt;}
.y69{bottom:355.426667pt;}
.y49{bottom:360.066667pt;}
.y25{bottom:368.226667pt;}
.y68{bottom:380.226667pt;}
.y48{bottom:384.866667pt;}
.y24{bottom:393.026667pt;}
.y67{bottom:404.866667pt;}
.y47{bottom:409.666667pt;}
.y23{bottom:417.666667pt;}
.y66{bottom:429.666667pt;}
.y46{bottom:434.306667pt;}
.y22{bottom:442.466667pt;}
.y65{bottom:454.466667pt;}
.y45{bottom:459.106667pt;}
.y21{bottom:467.266667pt;}
.y64{bottom:479.266667pt;}
.y44{bottom:483.906667pt;}
.y20{bottom:492.066667pt;}
.y5f{bottom:496.546667pt;}
.y43{bottom:508.706667pt;}
.y1f{bottom:516.866667pt;}
.y42{bottom:533.506667pt;}
.y1e{bottom:541.213333pt;}
.y41{bottom:558.173333pt;}
.y1d{bottom:565.693333pt;}
.y40{bottom:582.973333pt;}
.y1c{bottom:590.493333pt;}
.y5e{bottom:596.253333pt;}
.y3f{bottom:607.773333pt;}
.y1b{bottom:614.813333pt;}
.y3e{bottom:632.573333pt;}
.y1a{bottom:639.293333pt;}
.y3d{bottom:657.373333pt;}
.y19{bottom:663.933333pt;}
.y5c{bottom:671.293333pt;}
.y3c{bottom:682.173333pt;}
.y18{bottom:688.733333pt;}
.y3b{bottom:706.813333pt;}
.y17{bottom:713.533333pt;}
.y59{bottom:721.533333pt;}
.y3a{bottom:731.613333pt;}
.y16{bottom:738.333333pt;}
.y39{bottom:756.413333pt;}
.y15{bottom:762.653333pt;}
.y38{bottom:781.253333pt;}
.y14{bottom:786.693333pt;}
.y57{bottom:796.453333pt;}
.y37{bottom:806.053333pt;}
.y13{bottom:811.013333pt;}
.y36{bottom:830.693333pt;}
.y12{bottom:835.173333pt;}
.y35{bottom:855.493333pt;}
.y11{bottom:859.173333pt;}
.y54{bottom:871.493333pt;}
.y34{bottom:880.293333pt;}
.y10{bottom:882.853333pt;}
.y33{bottom:905.093333pt;}
.yf{bottom:906.853333pt;}
.y32{bottom:929.893333pt;}
.ye{bottom:930.853333pt;}
.y31{bottom:954.693333pt;}
.yd{bottom:955.333333pt;}
.y30{bottom:979.333333pt;}
.yc{bottom:979.653333pt;}
.y8{bottom:996.453333pt;}
.y4{bottom:998.213333pt;}
.y3{bottom:1025.440000pt;}
.y2{bottom:1045.280000pt;}
.y1{bottom:1066.400000pt;}
.h8{height:3.505000pt;}
.ha{height:19.712000pt;}
.h4{height:22.106667pt;}
.hb{height:38.672812pt;}
.h7{height:44.160000pt;}
.h9{height:46.593750pt;}
.h10{height:49.586667pt;}
.h13{height:49.600000pt;}
.he{height:50.152500pt;}
.hc{height:50.220000pt;}
.hd{height:50.321250pt;}
.h5{height:56.160000pt;}
.h6{height:58.563750pt;}
.h3{height:63.656250pt;}
.h2{height:70.773750pt;}
.hf{height:71.044468pt;}
.h12{height:74.260000pt;}
.h11{height:74.386667pt;}
.h14{height:74.400000pt;}
.h15{height:99.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:-224.840000pt;}
.w3{width:47.066667pt;}
.w7{width:206.906667pt;}
.w6{width:206.945333pt;}
.w8{width:207.053333pt;}
.w5{width:347.280000pt;}
.w2{width:678.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2{left:68.481333pt;}
.x6{left:75.520000pt;}
.x9{left:86.426667pt;}
.x11{left:122.752000pt;}
.xa{left:177.466667pt;}
.x1{left:217.306667pt;}
.x8{left:240.040000pt;}
.xf{left:248.066667pt;}
.xc{left:265.666667pt;}
.x14{left:268.226667pt;}
.x10{left:269.986667pt;}
.x12{left:276.546667pt;}
.xe{left:326.146667pt;}
.xd{left:358.626667pt;}
.xb{left:420.413333pt;}
.x13{left:484.106667pt;}
.x7{left:694.213333pt;}
.x4{left:746.693333pt;}
.x5{left:1018.600000pt;}
}




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