
    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_4b6401503d99691edb707700.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3413118252c41d75f4946a27.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_7c7871fd40130405a58a5d6d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8c88e1eda95137a3ec731f9e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bf3c11fc1e86f8e428edf950.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_64620e05f914142086e25839.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_d9942dd04b67d70c40e4daba.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b00cd81a4660c58a68b165a0.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_bd207ba8d6f7367e03ba8cc0.woff')format("woff");}.ffa{font-family:ffa;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:-96.480000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.125280px;}
.ls4{letter-spacing:0.129600px;}
.ls7{letter-spacing:0.252720px;}
.ls5{letter-spacing:23.357280px;}
.ls0{letter-spacing:43.200000px;}
.ls8{letter-spacing:43.344000px;}
.ls3{letter-spacing:191.484000px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.611840px;}
._3{width:2.960640px;}
._9{width:3.984240px;}
._8{width:5.114160px;}
._18{width:6.233760px;}
._19{width:7.328880px;}
._5{width:8.463840px;}
._4{width:9.480000px;}
._d{width:10.563120px;}
._17{width:12.551760px;}
._7{width:13.761600px;}
._6{width:14.880000px;}
._c{width:16.434000px;}
._1d{width:18.111600px;}
._14{width:19.543680px;}
._1a{width:22.155120px;}
._1b{width:23.250240px;}
._1c{width:24.491280px;}
._f{width:25.945920px;}
._e{width:27.041040px;}
._28{width:30.295440px;}
._12{width:31.926960px;}
._13{width:33.106320px;}
._23{width:34.117200px;}
._a{width:38.076480px;}
._b{width:39.508560px;}
._11{width:41.361840px;}
._10{width:42.456960px;}
._27{width:43.467840px;}
._15{width:44.562960px;}
._16{width:45.829680px;}
._1e{width:49.533120px;}
._26{width:50.544000px;}
._1f{width:52.060320px;}
._20{width:53.071200px;}
._29{width:54.250560px;}
._2{width:56.136000px;}
._2d{width:67.104000px;}
._24{width:72.193680px;}
._25{width:73.566480px;}
._2c{width:85.968000px;}
._22{width:98.400000px;}
._2a{width:102.932160px;}
._2b{width:104.040000px;}
._2e{width:249.120000px;}
._21{width:2159.825280px;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.960000px;}
.y74{bottom:5.400000px;}
.y79{bottom:5.580000px;}
.y51{bottom:5.940000px;}
.y72{bottom:7.740000px;}
.y55{bottom:7.920000px;}
.y71{bottom:9.720000px;}
.y4{bottom:12.240000px;}
.y6f{bottom:13.860000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y6e{bottom:34.560000px;}
.y5f{bottom:36.180000px;}
.y5a{bottom:36.210000px;}
.y53{bottom:40.140000px;}
.y8f{bottom:71.676000px;}
.y2c{bottom:79.236000px;}
.y8e{bottom:99.396000px;}
.y2b{bottom:106.956000px;}
.y4f{bottom:110.556000px;}
.y8d{bottom:127.296000px;}
.y2a{bottom:134.676000px;}
.y4e{bottom:138.276000px;}
.y8c{bottom:155.010000px;}
.y29{bottom:162.390000px;}
.y4d{bottom:166.170000px;}
.y8b{bottom:182.730000px;}
.y28{bottom:190.290000px;}
.y4c{bottom:193.890000px;}
.y8a{bottom:210.450000px;}
.y27{bottom:218.010000px;}
.y4b{bottom:221.610000px;}
.y89{bottom:238.350000px;}
.y26{bottom:245.730000px;}
.y4a{bottom:249.330000px;}
.y88{bottom:262.470000px;}
.y25{bottom:273.630000px;}
.y49{bottom:277.230000px;}
.y87{bottom:286.095000px;}
.y24{bottom:301.395000px;}
.y86{bottom:303.555000px;}
.y48{bottom:304.995000px;}
.y85{bottom:327.855000px;}
.y23{bottom:329.115000px;}
.y47{bottom:332.715000px;}
.y84{bottom:352.335000px;}
.y22{bottom:356.835000px;}
.y46{bottom:360.435000px;}
.y83{bottom:376.635000px;}
.y21{bottom:384.735000px;}
.y45{bottom:388.335000px;}
.y82{bottom:401.115000px;}
.y20{bottom:412.455000px;}
.y44{bottom:416.055000px;}
.y81{bottom:425.415000px;}
.y1f{bottom:440.175000px;}
.y5e{bottom:446.295000px;}
.y80{bottom:449.895000px;}
.y43{bottom:464.295000px;}
.y62{bottom:467.715000px;}
.y1e{bottom:467.895000px;}
.y9f{bottom:469.875000px;}
.y7f{bottom:474.195000px;}
.y42{bottom:488.415000px;}
.y61{bottom:489.135000px;}
.y9e{bottom:490.575000px;}
.y1d{bottom:495.795000px;}
.y7e{bottom:498.495000px;}
.y60{bottom:510.555000px;}
.y9d{bottom:511.275000px;}
.y41{bottom:512.715000px;}
.y7d{bottom:522.975000px;}
.y1c{bottom:523.515000px;}
.y59{bottom:531.975000px;}
.y40{bottom:536.835000px;}
.y7c{bottom:547.275000px;}
.y1b{bottom:551.235000px;}
.y9c{bottom:552.675000px;}
.y5d{bottom:553.575000px;}
.y3f{bottom:560.955000px;}
.y7b{bottom:571.785000px;}
.y9b{bottom:573.405000px;}
.y5c{bottom:575.025000px;}
.y1a{bottom:579.165000px;}
.y3e{bottom:585.105000px;}
.y9a{bottom:594.105000px;}
.y7a{bottom:596.085000px;}
.y5b{bottom:596.445000px;}
.y19{bottom:606.885000px;}
.y3d{bottom:609.225000px;}
.y99{bottom:614.805000px;}
.y52{bottom:617.865000px;}
.y78{bottom:620.385000px;}
.y3c{bottom:633.345000px;}
.y18{bottom:634.605000px;}
.y98{bottom:635.505000px;}
.y58{bottom:639.285000px;}
.y77{bottom:644.865000px;}
.y97{bottom:656.205000px;}
.y56{bottom:660.705000px;}
.y17{bottom:662.325000px;}
.y76{bottom:669.165000px;}
.y96{bottom:676.905000px;}
.y3b{bottom:681.765000px;}
.y54{bottom:682.305000px;}
.y16{bottom:690.225000px;}
.y75{bottom:693.645000px;}
.y95{bottom:697.605000px;}
.y3a{bottom:705.885000px;}
.y50{bottom:711.645000px;}
.y15{bottom:714.345000px;}
.y73{bottom:717.945000px;}
.y94{bottom:718.305000px;}
.y39{bottom:730.005000px;}
.y14{bottom:737.925000px;}
.y93{bottom:739.005000px;}
.y6d{bottom:742.425000px;}
.y38{bottom:753.585000px;}
.y13{bottom:758.625000px;}
.y92{bottom:759.705000px;}
.y70{bottom:771.585000px;}
.y37{bottom:774.825000px;}
.y12{bottom:779.325000px;}
.y91{bottom:780.405000px;}
.y36{bottom:798.945000px;}
.y11{bottom:800.025000px;}
.y90{bottom:802.365000px;}
.y6c{bottom:809.025000px;}
.y10{bottom:820.725000px;}
.y35{bottom:823.065000px;}
.y6b{bottom:833.145000px;}
.yf{bottom:841.425000px;}
.y34{bottom:851.010000px;}
.ye{bottom:862.170000px;}
.y33{bottom:878.730000px;}
.y6a{bottom:881.430000px;}
.yd{bottom:882.870000px;}
.yc{bottom:903.570000px;}
.y69{bottom:905.550000px;}
.y32{bottom:906.450000px;}
.yb{bottom:924.270000px;}
.y68{bottom:929.670000px;}
.y31{bottom:934.350000px;}
.y67{bottom:959.010000px;}
.y30{bottom:962.070000px;}
.ya{bottom:965.670000px;}
.y9{bottom:986.370000px;}
.y66{bottom:986.730000px;}
.y2f{bottom:989.790000px;}
.y8{bottom:1007.070000px;}
.y65{bottom:1014.450000px;}
.y2e{bottom:1017.510000px;}
.y7{bottom:1027.770000px;}
.y64{bottom:1043.790000px;}
.y2d{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y63{bottom:1071.510000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.hd{height:20.700000px;}
.h10{height:20.736000px;}
.h17{height:23.580000px;}
.h19{height:23.616000px;}
.h18{height:23.760000px;}
.ha{height:24.840000px;}
.h16{height:28.260000px;}
.hc{height:28.620000px;}
.h3{height:31.860000px;}
.h15{height:32.040000px;}
.h1c{height:50.484375px;}
.h14{height:50.800781px;}
.h1a{height:54.421875px;}
.h9{height:59.066719px;}
.h5{height:59.436914px;}
.h13{height:61.200000px;}
.h7{height:70.628906px;}
.he{height:70.664062px;}
.h6{height:72.562500px;}
.h1b{height:74.004654px;}
.h8{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h11{height:84.960000px;}
.hf{height:85.176000px;}
.h12{height:86.585445px;}
.hb{height:93.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.wf{width:79.380000px;}
.w10{width:79.416000px;}
.w11{width:83.340000px;}
.w7{width:85.680000px;}
.wd{width:95.976000px;}
.we{width:96.516000px;}
.w5{width:114.336000px;}
.w6{width:115.200000px;}
.wb{width:159.480000px;}
.wc{width:163.290000px;}
.w9{width:177.480000px;}
.wa{width:193.215000px;}
.w8{width:314.175000px;}
.w4{width:400.575000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x19{left:15.300000px;}
.x3{left:22.140000px;}
.x14{left:23.760000px;}
.x27{left:24.840000px;}
.x12{left:26.640000px;}
.x23{left:29.925000px;}
.x29{left:31.140000px;}
.x1c{left:34.380000px;}
.x2c{left:38.745000px;}
.x2a{left:40.140000px;}
.x2b{left:44.100000px;}
.x28{left:47.745000px;}
.x20{left:53.100000px;}
.x22{left:54.225000px;}
.x17{left:57.060000px;}
.x10{left:74.880000px;}
.x18{left:75.960000px;}
.x1e{left:77.625000px;}
.x1{left:84.959987px;}
.x2e{left:87.659987px;}
.x1b{left:98.676000px;}
.x2f{left:117.035987px;}
.x4{left:121.895987px;}
.x9{left:127.475987px;}
.xb{left:135.935987px;}
.xa{left:138.095987px;}
.xd{left:144.935987px;}
.xf{left:160.590000px;}
.x7{left:218.729987px;}
.x8{left:220.169987px;}
.x15{left:246.990000px;}
.x1d{left:276.870000px;}
.x2d{left:308.414987px;}
.x1a{left:321.194987px;}
.x24{left:373.575000px;}
.x5{left:389.774987px;}
.xe{left:392.474987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.x1f{left:470.805000px;}
.x25{left:550.905000px;}
.x11{left:561.885000px;}
.x21{left:631.005000px;}
.x13{left:676.950000px;}
.x26{left:711.150000px;}
.xc{left:739.229987px;}
@media print{
.v2{vertical-align:-85.760000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.111360pt;}
.ls4{letter-spacing:0.115200pt;}
.ls7{letter-spacing:0.224640pt;}
.ls5{letter-spacing:20.762027pt;}
.ls0{letter-spacing:38.400000pt;}
.ls8{letter-spacing:38.528000pt;}
.ls3{letter-spacing:170.208000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.432747pt;}
._3{width:2.631680pt;}
._9{width:3.541547pt;}
._8{width:4.545920pt;}
._18{width:5.541120pt;}
._19{width:6.514560pt;}
._5{width:7.523413pt;}
._4{width:8.426667pt;}
._d{width:9.389440pt;}
._17{width:11.157120pt;}
._7{width:12.232533pt;}
._6{width:13.226667pt;}
._c{width:14.608000pt;}
._1d{width:16.099200pt;}
._14{width:17.372160pt;}
._1a{width:19.693440pt;}
._1b{width:20.666880pt;}
._1c{width:21.770027pt;}
._f{width:23.063040pt;}
._e{width:24.036480pt;}
._28{width:26.929280pt;}
._12{width:28.379520pt;}
._13{width:29.427840pt;}
._23{width:30.326400pt;}
._a{width:33.845760pt;}
._b{width:35.118720pt;}
._11{width:36.766080pt;}
._10{width:37.739520pt;}
._27{width:38.638080pt;}
._15{width:39.611520pt;}
._16{width:40.737493pt;}
._1e{width:44.029440pt;}
._26{width:44.928000pt;}
._1f{width:46.275840pt;}
._20{width:47.174400pt;}
._29{width:48.222720pt;}
._2{width:49.898667pt;}
._2d{width:59.648000pt;}
._24{width:64.172160pt;}
._25{width:65.392427pt;}
._2c{width:76.416000pt;}
._22{width:87.466667pt;}
._2a{width:91.495253pt;}
._2b{width:92.480000pt;}
._2e{width:221.440000pt;}
._21{width:1919.844693pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.520000pt;}
.y74{bottom:4.800000pt;}
.y79{bottom:4.960000pt;}
.y51{bottom:5.280000pt;}
.y72{bottom:6.880000pt;}
.y55{bottom:7.040000pt;}
.y71{bottom:8.640000pt;}
.y4{bottom:10.880000pt;}
.y6f{bottom:12.320000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y6e{bottom:30.720000pt;}
.y5f{bottom:32.160000pt;}
.y5a{bottom:32.186667pt;}
.y53{bottom:35.680000pt;}
.y8f{bottom:63.712000pt;}
.y2c{bottom:70.432000pt;}
.y8e{bottom:88.352000pt;}
.y2b{bottom:95.072000pt;}
.y4f{bottom:98.272000pt;}
.y8d{bottom:113.152000pt;}
.y2a{bottom:119.712000pt;}
.y4e{bottom:122.912000pt;}
.y8c{bottom:137.786667pt;}
.y29{bottom:144.346667pt;}
.y4d{bottom:147.706667pt;}
.y8b{bottom:162.426667pt;}
.y28{bottom:169.146667pt;}
.y4c{bottom:172.346667pt;}
.y8a{bottom:187.066667pt;}
.y27{bottom:193.786667pt;}
.y4b{bottom:196.986667pt;}
.y89{bottom:211.866667pt;}
.y26{bottom:218.426667pt;}
.y4a{bottom:221.626667pt;}
.y88{bottom:233.306667pt;}
.y25{bottom:243.226667pt;}
.y49{bottom:246.426667pt;}
.y87{bottom:254.306667pt;}
.y24{bottom:267.906667pt;}
.y86{bottom:269.826667pt;}
.y48{bottom:271.106667pt;}
.y85{bottom:291.426667pt;}
.y23{bottom:292.546667pt;}
.y47{bottom:295.746667pt;}
.y84{bottom:313.186667pt;}
.y22{bottom:317.186667pt;}
.y46{bottom:320.386667pt;}
.y83{bottom:334.786667pt;}
.y21{bottom:341.986667pt;}
.y45{bottom:345.186667pt;}
.y82{bottom:356.546667pt;}
.y20{bottom:366.626667pt;}
.y44{bottom:369.826667pt;}
.y81{bottom:378.146667pt;}
.y1f{bottom:391.266667pt;}
.y5e{bottom:396.706667pt;}
.y80{bottom:399.906667pt;}
.y43{bottom:412.706667pt;}
.y62{bottom:415.746667pt;}
.y1e{bottom:415.906667pt;}
.y9f{bottom:417.666667pt;}
.y7f{bottom:421.506667pt;}
.y42{bottom:434.146667pt;}
.y61{bottom:434.786667pt;}
.y9e{bottom:436.066667pt;}
.y1d{bottom:440.706667pt;}
.y7e{bottom:443.106667pt;}
.y60{bottom:453.826667pt;}
.y9d{bottom:454.466667pt;}
.y41{bottom:455.746667pt;}
.y7d{bottom:464.866667pt;}
.y1c{bottom:465.346667pt;}
.y59{bottom:472.866667pt;}
.y40{bottom:477.186667pt;}
.y7c{bottom:486.466667pt;}
.y1b{bottom:489.986667pt;}
.y9c{bottom:491.266667pt;}
.y5d{bottom:492.066667pt;}
.y3f{bottom:498.626667pt;}
.y7b{bottom:508.253333pt;}
.y9b{bottom:509.693333pt;}
.y5c{bottom:511.133333pt;}
.y1a{bottom:514.813333pt;}
.y3e{bottom:520.093333pt;}
.y9a{bottom:528.093333pt;}
.y7a{bottom:529.853333pt;}
.y5b{bottom:530.173333pt;}
.y19{bottom:539.453333pt;}
.y3d{bottom:541.533333pt;}
.y99{bottom:546.493333pt;}
.y52{bottom:549.213333pt;}
.y78{bottom:551.453333pt;}
.y3c{bottom:562.973333pt;}
.y18{bottom:564.093333pt;}
.y98{bottom:564.893333pt;}
.y58{bottom:568.253333pt;}
.y77{bottom:573.213333pt;}
.y97{bottom:583.293333pt;}
.y56{bottom:587.293333pt;}
.y17{bottom:588.733333pt;}
.y76{bottom:594.813333pt;}
.y96{bottom:601.693333pt;}
.y3b{bottom:606.013333pt;}
.y54{bottom:606.493333pt;}
.y16{bottom:613.533333pt;}
.y75{bottom:616.573333pt;}
.y95{bottom:620.093333pt;}
.y3a{bottom:627.453333pt;}
.y50{bottom:632.573333pt;}
.y15{bottom:634.973333pt;}
.y73{bottom:638.173333pt;}
.y94{bottom:638.493333pt;}
.y39{bottom:648.893333pt;}
.y14{bottom:655.933333pt;}
.y93{bottom:656.893333pt;}
.y6d{bottom:659.933333pt;}
.y38{bottom:669.853333pt;}
.y13{bottom:674.333333pt;}
.y92{bottom:675.293333pt;}
.y70{bottom:685.853333pt;}
.y37{bottom:688.733333pt;}
.y12{bottom:692.733333pt;}
.y91{bottom:693.693333pt;}
.y36{bottom:710.173333pt;}
.y11{bottom:711.133333pt;}
.y90{bottom:713.213333pt;}
.y6c{bottom:719.133333pt;}
.y10{bottom:729.533333pt;}
.y35{bottom:731.613333pt;}
.y6b{bottom:740.573333pt;}
.yf{bottom:747.933333pt;}
.y34{bottom:756.453333pt;}
.ye{bottom:766.373333pt;}
.y33{bottom:781.093333pt;}
.y6a{bottom:783.493333pt;}
.yd{bottom:784.773333pt;}
.yc{bottom:803.173333pt;}
.y69{bottom:804.933333pt;}
.y32{bottom:805.733333pt;}
.yb{bottom:821.573333pt;}
.y68{bottom:826.373333pt;}
.y31{bottom:830.533333pt;}
.y67{bottom:852.453333pt;}
.y30{bottom:855.173333pt;}
.ya{bottom:858.373333pt;}
.y9{bottom:876.773333pt;}
.y66{bottom:877.093333pt;}
.y2f{bottom:879.813333pt;}
.y8{bottom:895.173333pt;}
.y65{bottom:901.733333pt;}
.y2e{bottom:904.453333pt;}
.y7{bottom:913.573333pt;}
.y64{bottom:927.813333pt;}
.y2d{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y63{bottom:952.453333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.hd{height:18.400000pt;}
.h10{height:18.432000pt;}
.h17{height:20.960000pt;}
.h19{height:20.992000pt;}
.h18{height:21.120000pt;}
.ha{height:22.080000pt;}
.h16{height:25.120000pt;}
.hc{height:25.440000pt;}
.h3{height:28.320000pt;}
.h15{height:28.480000pt;}
.h1c{height:44.875000pt;}
.h14{height:45.156250pt;}
.h1a{height:48.375000pt;}
.h9{height:52.503750pt;}
.h5{height:52.832812pt;}
.h13{height:54.400000pt;}
.h7{height:62.781250pt;}
.he{height:62.812500pt;}
.h6{height:64.500000pt;}
.h1b{height:65.781915pt;}
.h8{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h11{height:75.520000pt;}
.hf{height:75.712000pt;}
.h12{height:76.964840pt;}
.hb{height:82.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.wf{width:70.560000pt;}
.w10{width:70.592000pt;}
.w11{width:74.080000pt;}
.w7{width:76.160000pt;}
.wd{width:85.312000pt;}
.we{width:85.792000pt;}
.w5{width:101.632000pt;}
.w6{width:102.400000pt;}
.wb{width:141.760000pt;}
.wc{width:145.146667pt;}
.w9{width:157.760000pt;}
.wa{width:171.746667pt;}
.w8{width:279.266667pt;}
.w4{width:356.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x19{left:13.600000pt;}
.x3{left:19.680000pt;}
.x14{left:21.120000pt;}
.x27{left:22.080000pt;}
.x12{left:23.680000pt;}
.x23{left:26.600000pt;}
.x29{left:27.680000pt;}
.x1c{left:30.560000pt;}
.x2c{left:34.440000pt;}
.x2a{left:35.680000pt;}
.x2b{left:39.200000pt;}
.x28{left:42.440000pt;}
.x20{left:47.200000pt;}
.x22{left:48.200000pt;}
.x17{left:50.720000pt;}
.x10{left:66.560000pt;}
.x18{left:67.520000pt;}
.x1e{left:69.000000pt;}
.x1{left:75.519988pt;}
.x2e{left:77.919988pt;}
.x1b{left:87.712000pt;}
.x2f{left:104.031988pt;}
.x4{left:108.351988pt;}
.x9{left:113.311988pt;}
.xb{left:120.831988pt;}
.xa{left:122.751988pt;}
.xd{left:128.831988pt;}
.xf{left:142.746667pt;}
.x7{left:194.426655pt;}
.x8{left:195.706655pt;}
.x15{left:219.546667pt;}
.x1d{left:246.106667pt;}
.x2d{left:274.146655pt;}
.x1a{left:285.506655pt;}
.x24{left:332.066667pt;}
.x5{left:346.466655pt;}
.xe{left:348.866655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.x1f{left:418.493333pt;}
.x25{left:489.693333pt;}
.x11{left:499.453333pt;}
.x21{left:560.893333pt;}
.x13{left:601.733333pt;}
.x26{left:632.133333pt;}
.xc{left:657.093322pt;}
}




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