
    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_9f8a4ebb2c0480a2103df1c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_38d8ff85ea0234abefd71795.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_d35469d37bf55365963dd5d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_1da081c6dc4f39bfdbd09f32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_531ab9b5bf9f26f92788802e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_3d96fa699a6014f1138ee6ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_e34325f0605bb1abe713fd5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_c9e921c1b949ab0e4183e7b4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9f09a1e12a7e7a2248667ca9.woff2')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_67c7ea807d5fd6579559df29.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3e6d4558988871be36554eba.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.720000px;}
.v5{vertical-align:-15.840000px;}
.v6{vertical-align:-10.080000px;}
.v7{vertical-align:-8.640000px;}
.v1{vertical-align:-2.880000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.840000px;}
.v8{vertical-align:23.040000px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.695507px;}
.ls9{letter-spacing:0.978049px;}
.ls1{letter-spacing:1.693441px;}
.ls2{letter-spacing:1.901665px;}
.ls0{letter-spacing:2.727649px;}
.ls7{letter-spacing:2.813186px;}
.ls4{letter-spacing:2.942785px;}
.ls5{letter-spacing:3.004994px;}
.ls8{letter-spacing:3.302209px;}
.ls3{letter-spacing:10.822739px;}
.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;}
}
.wsd{word-spacing:-38.880000px;}
.ws4{word-spacing:-22.982400px;}
.ws1b{word-spacing:-17.072640px;}
.ws2{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.408320px;}
.ws10{word-spacing:-8.279850px;}
.ws0{word-spacing:-7.223040px;}
.ws20{word-spacing:-0.824542px;}
.ws23{word-spacing:0.000000px;}
.ws22{word-spacing:0.940033px;}
.ws17{word-spacing:1.075083px;}
.ws21{word-spacing:1.369443px;}
.wse{word-spacing:2.232323px;}
.wsc{word-spacing:2.270605px;}
.ws5{word-spacing:2.858995px;}
.wsb{word-spacing:2.912280px;}
.wsa{word-spacing:2.976485px;}
.ws9{word-spacing:2.976784px;}
.ws1e{word-spacing:3.071236px;}
.ws1d{word-spacing:3.390635px;}
.ws3{word-spacing:4.258662px;}
.ws1c{word-spacing:4.572580px;}
.ws1f{word-spacing:4.722340px;}
.wsf{word-spacing:5.116355px;}
.ws16{word-spacing:5.273860px;}
.ws1{word-spacing:5.698950px;}
.ws7{word-spacing:6.179619px;}
.ws11{word-spacing:42.849930px;}
.ws13{word-spacing:57.252811px;}
.ws8{word-spacing:57.636019px;}
.ws18{word-spacing:58.872415px;}
.ws15{word-spacing:66.203818px;}
.ws12{word-spacing:78.955598px;}
.ws14{word-spacing:96.239055px;}
.ws19{word-spacing:118.003291px;}
.ws1a{word-spacing:148.507802px;}
._6{margin-left:-2.729396px;}
._2{margin-left:-1.511110px;}
._9{width:1.132753px;}
._0{width:2.138400px;}
._a{width:3.843887px;}
._5{width:5.015520px;}
._b{width:6.308475px;}
._d{width:7.894130px;}
._c{width:9.331200px;}
._22{width:11.124585px;}
._1{width:12.243754px;}
._8{width:13.512141px;}
._3{width:14.530739px;}
._4{width:16.543874px;}
._7{width:17.880546px;}
._e{width:19.998083px;}
._f{width:26.514318px;}
._12{width:54.506672px;}
._10{width:59.738445px;}
._1b{width:63.519694px;}
._11{width:70.186794px;}
._23{width:86.020674px;}
._2f{width:89.364514px;}
._24{width:95.064950px;}
._25{width:97.007295px;}
._2d{width:104.873650px;}
._19{width:107.445639px;}
._29{width:108.448434px;}
._15{width:111.048297px;}
._2a{width:114.290751px;}
._13{width:118.264188px;}
._18{width:119.511241px;}
._1e{width:122.077057px;}
._1c{width:124.025340px;}
._21{width:127.429213px;}
._28{width:128.679181px;}
._16{width:129.772042px;}
._26{width:132.406216px;}
._2e{width:139.588451px;}
._1f{width:140.800802px;}
._14{width:142.734634px;}
._17{width:146.713021px;}
._33{width:148.380599px;}
._1a{width:150.672007px;}
._1d{width:153.763394px;}
._30{width:155.450825px;}
._2b{width:156.883887px;}
._20{width:159.313735px;}
._27{width:171.425208px;}
._32{width:173.887534px;}
._2c{width:178.964823px;}
._34{width:182.554058px;}
._31{width:194.932432px;}
.fc5{color:rgb(255,192,0);}
.fc4{color:rgb(255,1,1);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:14.400000px;}
.fs8{font-size:23.040000px;}
.fs3{font-size:27.359400px;}
.fs1{font-size:31.680000px;}
.fs6{font-size:33.119400px;}
.fs5{font-size:37.440000px;}
.fs0{font-size:38.880000px;}
.fsa{font-size:44.640000px;}
.fs7{font-size:50.400000px;}
.fs4{font-size:56.160000px;}
.fs9{font-size:74.880000px;}
.fs2{font-size:100.800000px;}
.y0{bottom:0.000000px;}
.y62{bottom:60.840000px;}
.y61{bottom:65.160000px;}
.y60{bottom:69.120000px;}
.y5f{bottom:73.440000px;}
.y5e{bottom:77.760000px;}
.y6{bottom:81.720000px;}
.y3f{bottom:109.080000px;}
.y4d{bottom:113.400000px;}
.y3e{bottom:126.720000px;}
.y4b{bottom:129.600000px;}
.y3d{bottom:144.360000px;}
.y4a{bottom:147.960000px;}
.y49{bottom:162.000000px;}
.y3c{bottom:168.480000px;}
.y48{bottom:180.360000px;}
.y3b{bottom:186.120000px;}
.y47{bottom:194.400000px;}
.y3a{bottom:203.760000px;}
.y46{bottom:213.120000px;}
.y39{bottom:221.400000px;}
.y45{bottom:226.800000px;}
.y38{bottom:239.400000px;}
.y44{bottom:245.520000px;}
.y42{bottom:262.080000px;}
.y37{bottom:267.120000px;}
.y43{bottom:273.240000px;}
.y41{bottom:273.600000px;}
.y36{bottom:284.760000px;}
.y40{bottom:285.120000px;}
.y4c{bottom:299.520000px;}
.y35{bottom:302.400000px;}
.y34{bottom:320.040000px;}
.y33{bottom:337.680000px;}
.y59{bottom:346.320000px;}
.y32{bottom:355.320000px;}
.y58{bottom:357.840000px;}
.y57{bottom:378.360000px;}
.y31{bottom:387.360000px;}
.y56{bottom:395.640000px;}
.y30{bottom:405.000000px;}
.y55{bottom:412.920000px;}
.y2f{bottom:422.640000px;}
.y54{bottom:429.840000px;}
.y2e{bottom:440.280000px;}
.y53{bottom:447.120000px;}
.y2d{bottom:457.920000px;}
.y52{bottom:463.320000px;}
.y2c{bottom:475.560000px;}
.y51{bottom:479.160000px;}
.y2b{bottom:493.200000px;}
.y4f{bottom:499.680000px;}
.y2a{bottom:510.840000px;}
.y50{bottom:511.200000px;}
.y4e{bottom:511.560000px;}
.y29{bottom:528.480000px;}
.ye{bottom:531.000000px;}
.y28{bottom:546.120000px;}
.yf{bottom:564.120000px;}
.y10{bottom:564.840000px;}
.y27{bottom:601.920000px;}
.y26{bottom:619.560000px;}
.y25{bottom:637.200000px;}
.y24{bottom:654.840000px;}
.y23{bottom:672.480000px;}
.y22{bottom:690.120000px;}
.y21{bottom:707.760000px;}
.y20{bottom:725.400000px;}
.y1f{bottom:743.040000px;}
.y1e{bottom:760.680000px;}
.y1d{bottom:778.680000px;}
.y1b{bottom:797.400000px;}
.y1c{bottom:798.120000px;}
.yb{bottom:831.240000px;}
.ya{bottom:848.880000px;}
.y9{bottom:866.520000px;}
.y8{bottom:884.160000px;}
.y7{bottom:901.800000px;}
.yc{bottom:923.400000px;}
.yd{bottom:924.120000px;}
.y5{bottom:951.120000px;}
.y4{bottom:968.760000px;}
.y3{bottom:986.400000px;}
.y2{bottom:1004.040000px;}
.y1{bottom:1021.680000px;}
.y17{bottom:1045.440000px;}
.y18{bottom:1046.160000px;}
.y5c{bottom:1048.680000px;}
.y5d{bottom:1049.040000px;}
.y5a{bottom:1063.440000px;}
.y5b{bottom:1064.160000px;}
.y16{bottom:1091.160000px;}
.y15{bottom:1110.240000px;}
.y14{bottom:1125.360000px;}
.y11{bottom:1136.520000px;}
.y12{bottom:1136.880000px;}
.y13{bottom:1141.200000px;}
.y19{bottom:1181.160000px;}
.y1a{bottom:1181.880000px;}
.h14{height:15.018750px;}
.he{height:24.030000px;}
.h4{height:28.534999px;}
.hd{height:32.488708px;}
.hc{height:32.504880px;}
.h10{height:33.378145px;}
.h2{height:33.802560px;}
.h8{height:37.936800px;}
.h7{height:39.048750px;}
.h6{height:39.853125px;}
.h1{height:40.550625px;}
.hb{height:41.484960px;}
.h13{height:46.558125px;}
.h9{height:53.776800px;}
.h11{height:55.544880px;}
.h5{height:58.573125px;}
.hf{height:78.584880px;}
.h12{height:79.896960px;}
.h3{height:107.553600px;}
.ha{height:109.267200px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x28{left:37.800000px;}
.x4c{left:39.240000px;}
.x40{left:41.400000px;}
.x1{left:45.000000px;}
.x2{left:47.520000px;}
.x27{left:48.600000px;}
.x3{left:51.120000px;}
.x41{left:63.719850px;}
.x19{left:99.720000px;}
.x42{left:101.520000px;}
.x43{left:110.880000px;}
.x1a{left:119.520000px;}
.x44{left:137.880000px;}
.x45{left:206.640000px;}
.x4a{left:213.840000px;}
.x4b{left:217.440000px;}
.x1b{left:221.760000px;}
.x46{left:228.960000px;}
.x1c{left:264.240000px;}
.x12{left:284.760000px;}
.x13{left:286.560000px;}
.x1d{left:296.280000px;}
.x47{left:304.920000px;}
.x1e{left:307.800000px;}
.x48{left:327.240000px;}
.x1f{left:337.680000px;}
.x49{left:354.240000px;}
.xc{left:358.920000px;}
.x20{left:367.560000px;}
.xd{left:426.600000px;}
.xe{left:443.160000px;}
.x34{left:513.720000px;}
.x21{left:515.160000px;}
.x7{left:517.680000px;}
.x2f{left:519.120000px;}
.x31{left:521.280000px;}
.x3a{left:522.360000px;}
.x33{left:524.160000px;}
.x3b{left:525.240000px;}
.x3c{left:532.080000px;}
.x3d{left:533.160000px;}
.x3f{left:539.640000px;}
.x3e{left:542.160000px;}
.x29{left:544.320000px;}
.x22{left:546.120000px;}
.xf{left:550.080000px;}
.x10{left:558.720000px;}
.x2a{left:559.800000px;}
.x11{left:566.640000px;}
.x35{left:574.200000px;}
.x8{left:578.520000px;}
.x9{left:597.240000px;}
.x2b{left:599.040000px;}
.xa{left:604.080000px;}
.x36{left:605.520000px;}
.x30{left:610.920000px;}
.x32{left:612.000000px;}
.x23{left:629.640000px;}
.x24{left:672.480000px;}
.x25{left:711.000000px;}
.xb{left:721.080000px;}
.x26{left:727.560000px;}
.x4{left:734.760000px;}
.x14{left:738.360000px;}
.x15{left:743.400000px;}
.x5{left:745.560000px;}
.x16{left:750.240000px;}
.x6{left:752.400000px;}
.x37{left:773.280000px;}
.x38{left:775.800000px;}
.x2d{left:796.320000px;}
.x2e{left:802.800000px;}
.x2c{left:806.040000px;}
.x39{left:817.560000px;}
.x17{left:821.160000px;}
.x18{left:832.680000px;}
@media print{
.v3{vertical-align:-16.640000pt;}
.v5{vertical-align:-14.080000pt;}
.v6{vertical-align:-8.960000pt;}
.v7{vertical-align:-7.680000pt;}
.v1{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.080000pt;}
.v8{vertical-align:20.480000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.618229pt;}
.ls9{letter-spacing:0.869377pt;}
.ls1{letter-spacing:1.505281pt;}
.ls2{letter-spacing:1.690369pt;}
.ls0{letter-spacing:2.424577pt;}
.ls7{letter-spacing:2.500609pt;}
.ls4{letter-spacing:2.615809pt;}
.ls5{letter-spacing:2.671106pt;}
.ls8{letter-spacing:2.935297pt;}
.ls3{letter-spacing:9.620212pt;}
.wsd{word-spacing:-34.560000pt;}
.ws4{word-spacing:-20.428800pt;}
.ws1b{word-spacing:-15.175680pt;}
.ws2{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.251840pt;}
.ws10{word-spacing:-7.359867pt;}
.ws0{word-spacing:-6.420480pt;}
.ws20{word-spacing:-0.732926pt;}
.ws23{word-spacing:0.000000pt;}
.ws22{word-spacing:0.835585pt;}
.ws17{word-spacing:0.955629pt;}
.ws21{word-spacing:1.217283pt;}
.wse{word-spacing:1.984287pt;}
.wsc{word-spacing:2.018316pt;}
.ws5{word-spacing:2.541329pt;}
.wsb{word-spacing:2.588693pt;}
.wsa{word-spacing:2.645764pt;}
.ws9{word-spacing:2.646031pt;}
.ws1e{word-spacing:2.729987pt;}
.ws1d{word-spacing:3.013898pt;}
.ws3{word-spacing:3.785477pt;}
.ws1c{word-spacing:4.064516pt;}
.ws1f{word-spacing:4.197636pt;}
.wsf{word-spacing:4.547871pt;}
.ws16{word-spacing:4.687876pt;}
.ws1{word-spacing:5.065733pt;}
.ws7{word-spacing:5.492994pt;}
.ws11{word-spacing:38.088827pt;}
.ws13{word-spacing:50.891387pt;}
.ws8{word-spacing:51.232017pt;}
.ws18{word-spacing:52.331035pt;}
.ws15{word-spacing:58.847838pt;}
.ws12{word-spacing:70.182754pt;}
.ws14{word-spacing:85.545827pt;}
.ws19{word-spacing:104.891814pt;}
.ws1a{word-spacing:132.006935pt;}
._6{margin-left:-2.426130pt;}
._2{margin-left:-1.343209pt;}
._9{width:1.006892pt;}
._0{width:1.900800pt;}
._a{width:3.416788pt;}
._5{width:4.458240pt;}
._b{width:5.607533pt;}
._d{width:7.017004pt;}
._c{width:8.294400pt;}
._22{width:9.888520pt;}
._1{width:10.883337pt;}
._8{width:12.010792pt;}
._3{width:12.916212pt;}
._4{width:14.705666pt;}
._7{width:15.893819pt;}
._e{width:17.776073pt;}
._f{width:23.568283pt;}
._12{width:48.450375pt;}
._10{width:53.100840pt;}
._1b{width:56.461951pt;}
._11{width:62.388261pt;}
._23{width:76.462821pt;}
._2f{width:79.435124pt;}
._24{width:84.502178pt;}
._25{width:86.228706pt;}
._2d{width:93.221022pt;}
._19{width:95.507234pt;}
._29{width:96.398608pt;}
._15{width:98.709597pt;}
._2a{width:101.591779pt;}
._13{width:105.123723pt;}
._18{width:106.232214pt;}
._1e{width:108.512940pt;}
._1c{width:110.244747pt;}
._21{width:113.270411pt;}
._28{width:114.381495pt;}
._16{width:115.352926pt;}
._26{width:117.694414pt;}
._2e{width:124.078623pt;}
._1f{width:125.156268pt;}
._14{width:126.875230pt;}
._17{width:130.411574pt;}
._33{width:131.893866pt;}
._1a{width:133.930672pt;}
._1d{width:136.678573pt;}
._30{width:138.178511pt;}
._2b{width:139.452344pt;}
._20{width:141.612209pt;}
._27{width:152.377962pt;}
._32{width:154.566697pt;}
._2c{width:159.079843pt;}
._34{width:162.270274pt;}
._31{width:173.273273pt;}
.fsb{font-size:12.800000pt;}
.fs8{font-size:20.480000pt;}
.fs3{font-size:24.319467pt;}
.fs1{font-size:28.160000pt;}
.fs6{font-size:29.439467pt;}
.fs5{font-size:33.280000pt;}
.fs0{font-size:34.560000pt;}
.fsa{font-size:39.680000pt;}
.fs7{font-size:44.800000pt;}
.fs4{font-size:49.920000pt;}
.fs9{font-size:66.560000pt;}
.fs2{font-size:89.600000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:54.080000pt;}
.y61{bottom:57.920000pt;}
.y60{bottom:61.440000pt;}
.y5f{bottom:65.280000pt;}
.y5e{bottom:69.120000pt;}
.y6{bottom:72.640000pt;}
.y3f{bottom:96.960000pt;}
.y4d{bottom:100.800000pt;}
.y3e{bottom:112.640000pt;}
.y4b{bottom:115.200000pt;}
.y3d{bottom:128.320000pt;}
.y4a{bottom:131.520000pt;}
.y49{bottom:144.000000pt;}
.y3c{bottom:149.760000pt;}
.y48{bottom:160.320000pt;}
.y3b{bottom:165.440000pt;}
.y47{bottom:172.800000pt;}
.y3a{bottom:181.120000pt;}
.y46{bottom:189.440000pt;}
.y39{bottom:196.800000pt;}
.y45{bottom:201.600000pt;}
.y38{bottom:212.800000pt;}
.y44{bottom:218.240000pt;}
.y42{bottom:232.960000pt;}
.y37{bottom:237.440000pt;}
.y43{bottom:242.880000pt;}
.y41{bottom:243.200000pt;}
.y36{bottom:253.120000pt;}
.y40{bottom:253.440000pt;}
.y4c{bottom:266.240000pt;}
.y35{bottom:268.800000pt;}
.y34{bottom:284.480000pt;}
.y33{bottom:300.160000pt;}
.y59{bottom:307.840000pt;}
.y32{bottom:315.840000pt;}
.y58{bottom:318.080000pt;}
.y57{bottom:336.320000pt;}
.y31{bottom:344.320000pt;}
.y56{bottom:351.680000pt;}
.y30{bottom:360.000000pt;}
.y55{bottom:367.040000pt;}
.y2f{bottom:375.680000pt;}
.y54{bottom:382.080000pt;}
.y2e{bottom:391.360000pt;}
.y53{bottom:397.440000pt;}
.y2d{bottom:407.040000pt;}
.y52{bottom:411.840000pt;}
.y2c{bottom:422.720000pt;}
.y51{bottom:425.920000pt;}
.y2b{bottom:438.400000pt;}
.y4f{bottom:444.160000pt;}
.y2a{bottom:454.080000pt;}
.y50{bottom:454.400000pt;}
.y4e{bottom:454.720000pt;}
.y29{bottom:469.760000pt;}
.ye{bottom:472.000000pt;}
.y28{bottom:485.440000pt;}
.yf{bottom:501.440000pt;}
.y10{bottom:502.080000pt;}
.y27{bottom:535.040000pt;}
.y26{bottom:550.720000pt;}
.y25{bottom:566.400000pt;}
.y24{bottom:582.080000pt;}
.y23{bottom:597.760000pt;}
.y22{bottom:613.440000pt;}
.y21{bottom:629.120000pt;}
.y20{bottom:644.800000pt;}
.y1f{bottom:660.480000pt;}
.y1e{bottom:676.160000pt;}
.y1d{bottom:692.160000pt;}
.y1b{bottom:708.800000pt;}
.y1c{bottom:709.440000pt;}
.yb{bottom:738.880000pt;}
.ya{bottom:754.560000pt;}
.y9{bottom:770.240000pt;}
.y8{bottom:785.920000pt;}
.y7{bottom:801.600000pt;}
.yc{bottom:820.800000pt;}
.yd{bottom:821.440000pt;}
.y5{bottom:845.440000pt;}
.y4{bottom:861.120000pt;}
.y3{bottom:876.800000pt;}
.y2{bottom:892.480000pt;}
.y1{bottom:908.160000pt;}
.y17{bottom:929.280000pt;}
.y18{bottom:929.920000pt;}
.y5c{bottom:932.160000pt;}
.y5d{bottom:932.480000pt;}
.y5a{bottom:945.280000pt;}
.y5b{bottom:945.920000pt;}
.y16{bottom:969.920000pt;}
.y15{bottom:986.880000pt;}
.y14{bottom:1000.320000pt;}
.y11{bottom:1010.240000pt;}
.y12{bottom:1010.560000pt;}
.y13{bottom:1014.400000pt;}
.y19{bottom:1049.920000pt;}
.y1a{bottom:1050.560000pt;}
.h14{height:13.350000pt;}
.he{height:21.360000pt;}
.h4{height:25.364444pt;}
.hd{height:28.878852pt;}
.hc{height:28.893227pt;}
.h10{height:29.669462pt;}
.h2{height:30.046720pt;}
.h8{height:33.721600pt;}
.h7{height:34.710000pt;}
.h6{height:35.425000pt;}
.h1{height:36.045000pt;}
.hb{height:36.875520pt;}
.h13{height:41.385000pt;}
.h9{height:47.801600pt;}
.h11{height:49.373227pt;}
.h5{height:52.065000pt;}
.hf{height:69.853227pt;}
.h12{height:71.019520pt;}
.h3{height:95.603200pt;}
.ha{height:97.126400pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x28{left:33.600000pt;}
.x4c{left:34.880000pt;}
.x40{left:36.800000pt;}
.x1{left:40.000000pt;}
.x2{left:42.240000pt;}
.x27{left:43.200000pt;}
.x3{left:45.440000pt;}
.x41{left:56.639867pt;}
.x19{left:88.640000pt;}
.x42{left:90.240000pt;}
.x43{left:98.560000pt;}
.x1a{left:106.240000pt;}
.x44{left:122.560000pt;}
.x45{left:183.680000pt;}
.x4a{left:190.080000pt;}
.x4b{left:193.280000pt;}
.x1b{left:197.120000pt;}
.x46{left:203.520000pt;}
.x1c{left:234.880000pt;}
.x12{left:253.120000pt;}
.x13{left:254.720000pt;}
.x1d{left:263.360000pt;}
.x47{left:271.040000pt;}
.x1e{left:273.600000pt;}
.x48{left:290.880000pt;}
.x1f{left:300.160000pt;}
.x49{left:314.880000pt;}
.xc{left:319.040000pt;}
.x20{left:326.720000pt;}
.xd{left:379.200000pt;}
.xe{left:393.920000pt;}
.x34{left:456.640000pt;}
.x21{left:457.920000pt;}
.x7{left:460.160000pt;}
.x2f{left:461.440000pt;}
.x31{left:463.360000pt;}
.x3a{left:464.320000pt;}
.x33{left:465.920000pt;}
.x3b{left:466.880000pt;}
.x3c{left:472.960000pt;}
.x3d{left:473.920000pt;}
.x3f{left:479.680000pt;}
.x3e{left:481.920000pt;}
.x29{left:483.840000pt;}
.x22{left:485.440000pt;}
.xf{left:488.960000pt;}
.x10{left:496.640000pt;}
.x2a{left:497.600000pt;}
.x11{left:503.680000pt;}
.x35{left:510.400000pt;}
.x8{left:514.240000pt;}
.x9{left:530.880000pt;}
.x2b{left:532.480000pt;}
.xa{left:536.960000pt;}
.x36{left:538.240000pt;}
.x30{left:543.040000pt;}
.x32{left:544.000000pt;}
.x23{left:559.680000pt;}
.x24{left:597.760000pt;}
.x25{left:632.000000pt;}
.xb{left:640.960000pt;}
.x26{left:646.720000pt;}
.x4{left:653.120000pt;}
.x14{left:656.320000pt;}
.x15{left:660.800000pt;}
.x5{left:662.720000pt;}
.x16{left:666.880000pt;}
.x6{left:668.800000pt;}
.x37{left:687.360000pt;}
.x38{left:689.600000pt;}
.x2d{left:707.840000pt;}
.x2e{left:713.600000pt;}
.x2c{left:716.480000pt;}
.x39{left:726.720000pt;}
.x17{left:729.920000pt;}
.x18{left:740.160000pt;}
}




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