
    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_ecb97da884318270b895fe88.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_238730d2313df6e83fba9b78.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0cde21dfe68a878e7fe986cf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_becf1079e5d0557ec3eb8eee.woff')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_cd947309fe6279862f2cfd4e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a99277237b968cc564261fd8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82a417cf15c98b785dcbd2d6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v1{vertical-align:-90.720000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.357000px;}
.ls7{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.178800px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.357120px;}
.ls2{letter-spacing:0.501120px;}
.ls0{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls8{letter-spacing:6.480000px;}
.ls1{letter-spacing:201.036000px;}
.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;}
}
.ws3{word-spacing:-21.600000px;}
.ws0{word-spacing:-20.880000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-16.018560px;}
._18{margin-left:-2.183040px;}
._1{margin-left:-1.085760px;}
._0{width:1.252800px;}
._3{width:2.658240px;}
._2{width:4.463520px;}
._e{width:6.186720px;}
._f{width:7.740000px;}
._6{width:8.874720px;}
._5{width:10.237920px;}
._4{width:11.525760px;}
._16{width:13.095360px;}
._15{width:14.198400px;}
._14{width:16.035840px;}
._13{width:17.205120px;}
._21{width:18.457920px;}
._1a{width:19.627200px;}
._19{width:21.594240px;}
._1b{width:23.005440px;}
._1d{width:24.490560px;}
._1c{width:25.788480px;}
._8{width:27.098880px;}
._7{width:28.419360px;}
._17{width:29.566080px;}
._9{width:30.948960px;}
._a{width:32.489280px;}
._b{width:33.976320px;}
._1f{width:38.669760px;}
._20{width:40.173120px;}
._1e{width:45.267840px;}
._c{width:55.797600px;}
._10{width:63.480480px;}
._d{width:79.016160px;}
._22{width:93.036000px;}
._11{width:192.781440px;}
._23{width:195.120000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.800000px;}
.y2c{bottom:74.196000px;}
.ybc{bottom:77.076000px;}
.y57{bottom:81.036000px;}
.y2b{bottom:93.276000px;}
.y56{bottom:94.356000px;}
.ybb{bottom:101.196000px;}
.y2a{bottom:112.356000px;}
.yaf{bottom:119.196000px;}
.y55{bottom:120.276000px;}
.yba{bottom:125.316000px;}
.y29{bottom:131.076000px;}
.yae{bottom:132.516000px;}
.y79{bottom:137.916000px;}
.y54{bottom:144.396000px;}
.yb9{bottom:149.436000px;}
.y28{bottom:150.150000px;}
.y78{bottom:154.470000px;}
.y27{bottom:156.990000px;}
.y77{bottom:161.310000px;}
.y53{bottom:168.510000px;}
.y9f{bottom:169.230000px;}
.y26{bottom:173.550000px;}
.y9e{bottom:176.070000px;}
.y76{bottom:178.230000px;}
.y25{bottom:180.390000px;}
.y75{bottom:185.070000px;}
.yad{bottom:190.155000px;}
.y9d{bottom:192.675000px;}
.y24{bottom:193.755000px;}
.y9c{bottom:199.515000px;}
.y74{bottom:201.675000px;}
.y52{bottom:202.035000px;}
.y73{bottom:208.515000px;}
.yb8{bottom:215.355000px;}
.y9b{bottom:216.075000px;}
.y72{bottom:221.835000px;}
.y51{bottom:226.155000px;}
.y23{bottom:227.955000px;}
.y9a{bottom:235.155000px;}
.yb7{bottom:239.475000px;}
.y50{bottom:250.275000px;}
.y22{bottom:252.075000px;}
.y99{bottom:254.235000px;}
.y71{bottom:257.835000px;}
.yac{bottom:262.515000px;}
.yb6{bottom:263.595000px;}
.y98{bottom:272.955000px;}
.y4f{bottom:274.395000px;}
.y21{bottom:276.555000px;}
.y97{bottom:279.795000px;}
.y96{bottom:296.355000px;}
.y4e{bottom:298.515000px;}
.y20{bottom:300.675000px;}
.y95{bottom:303.195000px;}
.yb5{bottom:306.435000px;}
.y70{bottom:310.395000px;}
.y94{bottom:320.145000px;}
.y4d{bottom:322.665000px;}
.y1f{bottom:324.825000px;}
.y6f{bottom:334.545000px;}
.yab{bottom:334.905000px;}
.y93{bottom:339.225000px;}
.yb4{bottom:343.545000px;}
.y4c{bottom:355.785000px;}
.y92{bottom:357.945000px;}
.y6e{bottom:358.665000px;}
.y1d{bottom:360.825000px;}
.y1e{bottom:368.385000px;}
.yaa{bottom:370.905000px;}
.y91{bottom:377.025000px;}
.y4b{bottom:379.905000px;}
.y6d{bottom:382.785000px;}
.y90{bottom:383.865000px;}
.y1b{bottom:384.945000px;}
.y1c{bottom:392.505000px;}
.y8f{bottom:400.425000px;}
.y4a{bottom:404.025000px;}
.y6c{bottom:406.905000px;}
.y1a{bottom:409.065000px;}
.y8e{bottom:419.505000px;}
.y6b{bottom:431.385000px;}
.y8d{bottom:438.585000px;}
.y49{bottom:440.430000px;}
.y19{bottom:445.470000px;}
.y6a{bottom:455.550000px;}
.y8c{bottom:457.350000px;}
.y48{bottom:464.550000px;}
.y8b{bottom:476.430000px;}
.y69{bottom:479.670000px;}
.y18{bottom:481.470000px;}
.y47{bottom:488.670000px;}
.y8a{bottom:495.510000px;}
.y89{bottom:502.350000px;}
.y68{bottom:503.790000px;}
.y17{bottom:505.590000px;}
.y46{bottom:512.790000px;}
.y88{bottom:515.310000px;}
.y67{bottom:527.910000px;}
.y16{bottom:529.710000px;}
.y45{bottom:536.910000px;}
.ya9{bottom:539.790000px;}
.y66{bottom:552.030000px;}
.y15{bottom:553.830000px;}
.y87{bottom:559.590000px;}
.y44{bottom:561.030000px;}
.ya8{bottom:563.910000px;}
.y65{bottom:576.180000px;}
.y86{bottom:583.740000px;}
.y43{bottom:585.180000px;}
.y14{bottom:590.220000px;}
.y64{bottom:600.300000px;}
.y85{bottom:612.180000px;}
.y42{bottom:618.300000px;}
.y63{bottom:624.420000px;}
.y84{bottom:636.300000px;}
.y41{bottom:642.420000px;}
.y62{bottom:648.540000px;}
.y13{bottom:648.900000px;}
.ya7{bottom:660.420000px;}
.y82{bottom:660.780000px;}
.y40{bottom:666.540000px;}
.y83{bottom:668.340000px;}
.y12{bottom:675.900000px;}
.ya6{bottom:684.540000px;}
.y61{bottom:684.900000px;}
.y3f{bottom:690.660000px;}
.y81{bottom:696.810000px;}
.y11{bottom:697.170000px;}
.ya5{bottom:708.690000px;}
.y60{bottom:709.050000px;}
.y80{bottom:720.930000px;}
.y10{bottom:721.290000px;}
.y3e{bottom:723.810000px;}
.ya4{bottom:732.810000px;}
.y5f{bottom:745.050000px;}
.yf{bottom:745.410000px;}
.y3d{bottom:747.930000px;}
.ya3{bottom:756.930000px;}
.y5e{bottom:769.170000px;}
.y3c{bottom:772.410000px;}
.y7f{bottom:776.730000px;}
.ya2{bottom:781.410000px;}
.y5d{bottom:793.290000px;}
.y3b{bottom:796.530000px;}
.ye{bottom:796.890000px;}
.ya1{bottom:805.530000px;}
.y7e{bottom:817.410000px;}
.yd{bottom:829.695000px;}
.y3a{bottom:853.815000px;}
.yc{bottom:871.815000px;}
.y39{bottom:877.935000px;}
.y38{bottom:902.055000px;}
.yb{bottom:913.935000px;}
.y7d{bottom:926.175000px;}
.y37{bottom:938.055000px;}
.ya{bottom:956.445000px;}
.y36{bottom:962.205000px;}
.ya0{bottom:974.445000px;}
.y35{bottom:986.325000px;}
.y9{bottom:992.805000px;}
.y5c{bottom:998.565000px;}
.y34{bottom:1010.805000px;}
.y8{bottom:1016.925000px;}
.y5b{bottom:1022.685000px;}
.y7c{bottom:1034.925000px;}
.y7{bottom:1041.045000px;}
.yb3{bottom:1046.445000px;}
.y33{bottom:1046.805000px;}
.y7a{bottom:1059.045000px;}
.y6{bottom:1065.165000px;}
.y7b{bottom:1066.605000px;}
.y32{bottom:1070.925000px;}
.yb2{bottom:1088.610000px;}
.y5{bottom:1089.330000px;}
.y31{bottom:1095.090000px;}
.y5a{bottom:1102.650000px;}
.yb1{bottom:1113.090000px;}
.y4{bottom:1113.450000px;}
.y2f{bottom:1119.210000px;}
.y30{bottom:1126.770000px;}
.y58{bottom:1131.450000px;}
.yb0{bottom:1137.210000px;}
.y59{bottom:1139.010000px;}
.y3{bottom:1149.450000px;}
.y2e{bottom:1155.570000px;}
.y2{bottom:1175.010000px;}
.y2d{bottom:1179.690000px;}
.h6{height:40.985156px;}
.h5{height:53.704687px;}
.h4{height:59.357813px;}
.h9{height:59.383125px;}
.h7{height:65.010937px;}
.h8{height:74.874375px;}
.h2{height:81.970312px;}
.h3{height:87.108750px;}
.hb{height:1233.750000px;}
.ha{height:1233.899964px;}
.hd{height:1235.250000px;}
.hc{height:1235.519990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x4{left:107.315987px;}
.xd{left:111.635987px;}
.x23{left:117.035987px;}
.x6{left:131.795987px;}
.x26{left:139.751987px;}
.x3{left:148.751987px;}
.x28{left:160.274987px;}
.x7{left:185.834987px;}
.x1f{left:204.194973px;}
.x5{left:212.474987px;}
.x20{left:217.874987px;}
.x21{left:221.114973px;}
.x22{left:234.824987px;}
.x11{left:278.024973px;}
.x12{left:284.864987px;}
.x10{left:316.184973px;}
.xc{left:322.304987px;}
.x15{left:341.069973px;}
.x16{left:347.909987px;}
.x24{left:363.389973px;}
.x25{left:377.069987px;}
.x1b{left:391.109973px;}
.x1c{left:404.789987px;}
.x1{left:441.179987px;}
.x17{left:495.539973px;}
.x18{left:502.379987px;}
.xa{left:509.939973px;}
.xb{left:516.779987px;}
.x1d{left:543.449973px;}
.x8{left:547.769973px;}
.x9{left:554.609987px;}
.x1e{left:557.129987px;}
.x13{left:650.774973px;}
.x14{left:657.614987px;}
.x19{left:706.604973px;}
.x1a{left:713.444987px;}
.xe{left:775.004973px;}
.xf{left:781.844987px;}
.x27{left:786.524987px;}
@media print{
.v1{vertical-align:-80.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.317333pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.317440pt;}
.ls2{letter-spacing:0.445440pt;}
.ls0{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls1{letter-spacing:178.698667pt;}
.ws3{word-spacing:-19.200000pt;}
.ws0{word-spacing:-18.560000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-14.238720pt;}
._18{margin-left:-1.940480pt;}
._1{margin-left:-0.965120pt;}
._0{width:1.113600pt;}
._3{width:2.362880pt;}
._2{width:3.967573pt;}
._e{width:5.499307pt;}
._f{width:6.880000pt;}
._6{width:7.888640pt;}
._5{width:9.100373pt;}
._4{width:10.245120pt;}
._16{width:11.640320pt;}
._15{width:12.620800pt;}
._14{width:14.254080pt;}
._13{width:15.293440pt;}
._21{width:16.407040pt;}
._1a{width:17.446400pt;}
._19{width:19.194880pt;}
._1b{width:20.449280pt;}
._1d{width:21.769387pt;}
._1c{width:22.923093pt;}
._8{width:24.087893pt;}
._7{width:25.261653pt;}
._17{width:26.280960pt;}
._9{width:27.510187pt;}
._a{width:28.879360pt;}
._b{width:30.201173pt;}
._1f{width:34.373120pt;}
._20{width:35.709440pt;}
._1e{width:40.238080pt;}
._c{width:49.597867pt;}
._10{width:56.427093pt;}
._d{width:70.236587pt;}
._22{width:82.698667pt;}
._11{width:171.361280pt;}
._23{width:173.440000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.600000pt;}
.y2c{bottom:65.952000pt;}
.ybc{bottom:68.512000pt;}
.y57{bottom:72.032000pt;}
.y2b{bottom:82.912000pt;}
.y56{bottom:83.872000pt;}
.ybb{bottom:89.952000pt;}
.y2a{bottom:99.872000pt;}
.yaf{bottom:105.952000pt;}
.y55{bottom:106.912000pt;}
.yba{bottom:111.392000pt;}
.y29{bottom:116.512000pt;}
.yae{bottom:117.792000pt;}
.y79{bottom:122.592000pt;}
.y54{bottom:128.352000pt;}
.yb9{bottom:132.832000pt;}
.y28{bottom:133.466667pt;}
.y78{bottom:137.306667pt;}
.y27{bottom:139.546667pt;}
.y77{bottom:143.386667pt;}
.y53{bottom:149.786667pt;}
.y9f{bottom:150.426667pt;}
.y26{bottom:154.266667pt;}
.y9e{bottom:156.506667pt;}
.y76{bottom:158.426667pt;}
.y25{bottom:160.346667pt;}
.y75{bottom:164.506667pt;}
.yad{bottom:169.026667pt;}
.y9d{bottom:171.266667pt;}
.y24{bottom:172.226667pt;}
.y9c{bottom:177.346667pt;}
.y74{bottom:179.266667pt;}
.y52{bottom:179.586667pt;}
.y73{bottom:185.346667pt;}
.yb8{bottom:191.426667pt;}
.y9b{bottom:192.066667pt;}
.y72{bottom:197.186667pt;}
.y51{bottom:201.026667pt;}
.y23{bottom:202.626667pt;}
.y9a{bottom:209.026667pt;}
.yb7{bottom:212.866667pt;}
.y50{bottom:222.466667pt;}
.y22{bottom:224.066667pt;}
.y99{bottom:225.986667pt;}
.y71{bottom:229.186667pt;}
.yac{bottom:233.346667pt;}
.yb6{bottom:234.306667pt;}
.y98{bottom:242.626667pt;}
.y4f{bottom:243.906667pt;}
.y21{bottom:245.826667pt;}
.y97{bottom:248.706667pt;}
.y96{bottom:263.426667pt;}
.y4e{bottom:265.346667pt;}
.y20{bottom:267.266667pt;}
.y95{bottom:269.506667pt;}
.yb5{bottom:272.386667pt;}
.y70{bottom:275.906667pt;}
.y94{bottom:284.573333pt;}
.y4d{bottom:286.813333pt;}
.y1f{bottom:288.733333pt;}
.y6f{bottom:297.373333pt;}
.yab{bottom:297.693333pt;}
.y93{bottom:301.533333pt;}
.yb4{bottom:305.373333pt;}
.y4c{bottom:316.253333pt;}
.y92{bottom:318.173333pt;}
.y6e{bottom:318.813333pt;}
.y1d{bottom:320.733333pt;}
.y1e{bottom:327.453333pt;}
.yaa{bottom:329.693333pt;}
.y91{bottom:335.133333pt;}
.y4b{bottom:337.693333pt;}
.y6d{bottom:340.253333pt;}
.y90{bottom:341.213333pt;}
.y1b{bottom:342.173333pt;}
.y1c{bottom:348.893333pt;}
.y8f{bottom:355.933333pt;}
.y4a{bottom:359.133333pt;}
.y6c{bottom:361.693333pt;}
.y1a{bottom:363.613333pt;}
.y8e{bottom:372.893333pt;}
.y6b{bottom:383.453333pt;}
.y8d{bottom:389.853333pt;}
.y49{bottom:391.493333pt;}
.y19{bottom:395.973333pt;}
.y6a{bottom:404.933333pt;}
.y8c{bottom:406.533333pt;}
.y48{bottom:412.933333pt;}
.y8b{bottom:423.493333pt;}
.y69{bottom:426.373333pt;}
.y18{bottom:427.973333pt;}
.y47{bottom:434.373333pt;}
.y8a{bottom:440.453333pt;}
.y89{bottom:446.533333pt;}
.y68{bottom:447.813333pt;}
.y17{bottom:449.413333pt;}
.y46{bottom:455.813333pt;}
.y88{bottom:458.053333pt;}
.y67{bottom:469.253333pt;}
.y16{bottom:470.853333pt;}
.y45{bottom:477.253333pt;}
.ya9{bottom:479.813333pt;}
.y66{bottom:490.693333pt;}
.y15{bottom:492.293333pt;}
.y87{bottom:497.413333pt;}
.y44{bottom:498.693333pt;}
.ya8{bottom:501.253333pt;}
.y65{bottom:512.160000pt;}
.y86{bottom:518.880000pt;}
.y43{bottom:520.160000pt;}
.y14{bottom:524.640000pt;}
.y64{bottom:533.600000pt;}
.y85{bottom:544.160000pt;}
.y42{bottom:549.600000pt;}
.y63{bottom:555.040000pt;}
.y84{bottom:565.600000pt;}
.y41{bottom:571.040000pt;}
.y62{bottom:576.480000pt;}
.y13{bottom:576.800000pt;}
.ya7{bottom:587.040000pt;}
.y82{bottom:587.360000pt;}
.y40{bottom:592.480000pt;}
.y83{bottom:594.080000pt;}
.y12{bottom:600.800000pt;}
.ya6{bottom:608.480000pt;}
.y61{bottom:608.800000pt;}
.y3f{bottom:613.920000pt;}
.y81{bottom:619.386667pt;}
.y11{bottom:619.706667pt;}
.ya5{bottom:629.946667pt;}
.y60{bottom:630.266667pt;}
.y80{bottom:640.826667pt;}
.y10{bottom:641.146667pt;}
.y3e{bottom:643.386667pt;}
.ya4{bottom:651.386667pt;}
.y5f{bottom:662.266667pt;}
.yf{bottom:662.586667pt;}
.y3d{bottom:664.826667pt;}
.ya3{bottom:672.826667pt;}
.y5e{bottom:683.706667pt;}
.y3c{bottom:686.586667pt;}
.y7f{bottom:690.426667pt;}
.ya2{bottom:694.586667pt;}
.y5d{bottom:705.146667pt;}
.y3b{bottom:708.026667pt;}
.ye{bottom:708.346667pt;}
.ya1{bottom:716.026667pt;}
.y7e{bottom:726.586667pt;}
.yd{bottom:737.506667pt;}
.y3a{bottom:758.946667pt;}
.yc{bottom:774.946667pt;}
.y39{bottom:780.386667pt;}
.y38{bottom:801.826667pt;}
.yb{bottom:812.386667pt;}
.y7d{bottom:823.266667pt;}
.y37{bottom:833.826667pt;}
.ya{bottom:850.173333pt;}
.y36{bottom:855.293333pt;}
.ya0{bottom:866.173333pt;}
.y35{bottom:876.733333pt;}
.y9{bottom:882.493333pt;}
.y5c{bottom:887.613333pt;}
.y34{bottom:898.493333pt;}
.y8{bottom:903.933333pt;}
.y5b{bottom:909.053333pt;}
.y7c{bottom:919.933333pt;}
.y7{bottom:925.373333pt;}
.yb3{bottom:930.173333pt;}
.y33{bottom:930.493333pt;}
.y7a{bottom:941.373333pt;}
.y6{bottom:946.813333pt;}
.y7b{bottom:948.093333pt;}
.y32{bottom:951.933333pt;}
.yb2{bottom:967.653333pt;}
.y5{bottom:968.293333pt;}
.y31{bottom:973.413333pt;}
.y5a{bottom:980.133333pt;}
.yb1{bottom:989.413333pt;}
.y4{bottom:989.733333pt;}
.y2f{bottom:994.853333pt;}
.y30{bottom:1001.573333pt;}
.y58{bottom:1005.733333pt;}
.yb0{bottom:1010.853333pt;}
.y59{bottom:1012.453333pt;}
.y3{bottom:1021.733333pt;}
.y2e{bottom:1027.173333pt;}
.y2{bottom:1044.453333pt;}
.y2d{bottom:1048.613333pt;}
.h6{height:36.431250pt;}
.h5{height:47.737500pt;}
.h4{height:52.762500pt;}
.h9{height:52.785000pt;}
.h7{height:57.787500pt;}
.h8{height:66.555000pt;}
.h2{height:72.862500pt;}
.h3{height:77.430000pt;}
.hb{height:1096.666667pt;}
.ha{height:1096.799968pt;}
.hd{height:1098.000000pt;}
.hc{height:1098.239991pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x4{left:95.391988pt;}
.xd{left:99.231988pt;}
.x23{left:104.031988pt;}
.x6{left:117.151988pt;}
.x26{left:124.223988pt;}
.x3{left:132.223988pt;}
.x28{left:142.466655pt;}
.x7{left:165.186655pt;}
.x1f{left:181.506643pt;}
.x5{left:188.866655pt;}
.x20{left:193.666655pt;}
.x21{left:196.546643pt;}
.x22{left:208.733322pt;}
.x11{left:247.133310pt;}
.x12{left:253.213322pt;}
.x10{left:281.053310pt;}
.xc{left:286.493322pt;}
.x15{left:303.173310pt;}
.x16{left:309.253322pt;}
.x24{left:323.013310pt;}
.x25{left:335.173322pt;}
.x1b{left:347.653310pt;}
.x1c{left:359.813322pt;}
.x1{left:392.159988pt;}
.x17{left:440.479976pt;}
.x18{left:446.559988pt;}
.xa{left:453.279976pt;}
.xb{left:459.359988pt;}
.x1d{left:483.066643pt;}
.x8{left:486.906643pt;}
.x9{left:492.986655pt;}
.x1e{left:495.226655pt;}
.x13{left:578.466643pt;}
.x14{left:584.546655pt;}
.x19{left:628.093310pt;}
.x1a{left:634.173322pt;}
.xe{left:688.893310pt;}
.xf{left:694.973322pt;}
.x27{left:699.133322pt;}
}




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