
    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_9cc716225a84330dee00ba16.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_aa85de96f00840fdf29977bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_52f61eb7cefde459cae9fbe2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f7cd03b6d76dfa7d62e54f52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_b36b8fce2a14e234dd6a3245.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_08ba7fe2e7c44bd581c5f61b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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_7660a03480f794b91c3ed51d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls9{letter-spacing:33.984000px;}
.ls5{letter-spacing:46.026720px;}
.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;}
}
.ws6{word-spacing:-60.120000px;}
.ws3{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.568000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._26{margin-left:-5.726160px;}
._2a{margin-left:-4.368480px;}
._2{margin-left:-3.240000px;}
._0{margin-left:-1.235760px;}
._1{width:1.451760px;}
._19{width:2.520000px;}
._b{width:3.732240px;}
._7{width:5.328000px;}
._a{width:6.912000px;}
._4{width:8.219760px;}
._d{width:9.480240px;}
._9{width:10.691520px;}
._3{width:11.880000px;}
._14{width:13.464000px;}
._15{width:14.472000px;}
._21{width:15.540240px;}
._8{width:16.848000px;}
._3f{width:19.008000px;}
._16{width:20.016000px;}
._1a{width:21.024000px;}
._1b{width:22.320000px;}
._1c{width:23.484240px;}
._18{width:24.611760px;}
._17{width:25.968000px;}
._33{width:28.080000px;}
._1e{width:29.448000px;}
._5{width:31.392000px;}
._6{width:32.976000px;}
._c{width:34.488000px;}
._27{width:35.894160px;}
._32{width:36.969840px;}
._22{width:38.160000px;}
._23{width:39.456000px;}
._e{width:40.907760px;}
._f{width:41.915760px;}
._1d{width:43.464480px;}
._25{width:45.432000px;}
._1f{width:47.520000px;}
._20{width:48.888000px;}
._13{width:50.904000px;}
._12{width:52.283760px;}
._2e{width:53.448480px;}
._3d{width:55.512000px;}
._34{width:56.664000px;}
._35{width:57.815760px;}
._11{width:62.640000px;}
._10{width:63.659760px;}
._2d{width:65.029200px;}
._24{width:66.528000px;}
._31{width:71.064000px;}
._39{width:73.944000px;}
._29{width:82.247520px;}
._28{width:83.592000px;}
._3c{width:84.612000px;}
._3b{width:85.752000px;}
._36{width:92.088000px;}
._3e{width:136.296000px;}
._38{width:181.944000px;}
._37{width:183.312000px;}
._2c{width:195.840000px;}
._30{width:203.976000px;}
._2f{width:259.200000px;}
._2b{width:266.400000px;}
._3a{width:1171.584000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:5.400000px;}
.y99{bottom:5.430000px;}
.y43{bottom:29.520000px;}
.y46{bottom:29.700000px;}
.y93{bottom:29.745000px;}
.y3e{bottom:30.420000px;}
.y9e{bottom:31.140000px;}
.y45{bottom:53.820000px;}
.y5c{bottom:54.045000px;}
.y7b{bottom:55.440000px;}
.y3{bottom:57.456000px;}
.y2{bottom:77.616000px;}
.y5a{bottom:79.734000px;}
.y7a{bottom:79.740000px;}
.y91{bottom:79.785000px;}
.y58{bottom:102.276000px;}
.y59{bottom:104.079000px;}
.y8f{bottom:106.056000px;}
.y3d{bottom:107.496000px;}
.yab{bottom:108.396000px;}
.y78{bottom:109.116000px;}
.y3c{bottom:114.336000px;}
.y1f{bottom:120.996000px;}
.y5d{bottom:127.296000px;}
.y8e{bottom:130.356000px;}
.y3f{bottom:132.516000px;}
.yaa{bottom:132.696000px;}
.y77{bottom:133.416000px;}
.y3b{bottom:138.636000px;}
.y1e{bottom:145.296000px;}
.y5b{bottom:152.310000px;}
.y8d{bottom:154.650000px;}
.ya9{bottom:156.990000px;}
.y76{bottom:157.710000px;}
.y3a{bottom:162.930000px;}
.y1d{bottom:169.590000px;}
.y8c{bottom:178.950000px;}
.ya8{bottom:181.290000px;}
.y75{bottom:182.010000px;}
.y39{bottom:187.230000px;}
.y1c{bottom:193.890000px;}
.y8b{bottom:203.295000px;}
.ya7{bottom:205.455000px;}
.y74{bottom:206.355000px;}
.y38{bottom:211.575000px;}
.y1b{bottom:218.235000px;}
.y8a{bottom:227.595000px;}
.ya6{bottom:229.755000px;}
.y73{bottom:230.655000px;}
.y57{bottom:231.375000px;}
.y37{bottom:235.875000px;}
.y1a{bottom:242.535000px;}
.y89{bottom:251.895000px;}
.ya5{bottom:254.055000px;}
.y72{bottom:254.775000px;}
.y56{bottom:255.675000px;}
.y36{bottom:260.175000px;}
.y19{bottom:266.835000px;}
.y88{bottom:276.195000px;}
.ya4{bottom:278.355000px;}
.y71{bottom:279.075000px;}
.y55{bottom:279.975000px;}
.y35{bottom:284.475000px;}
.y18{bottom:290.955000px;}
.ya3{bottom:297.975000px;}
.y87{bottom:300.495000px;}
.y70{bottom:303.375000px;}
.y54{bottom:304.095000px;}
.y34{bottom:308.595000px;}
.y17{bottom:315.255000px;}
.y9c{bottom:320.115000px;}
.ya2{bottom:322.995000px;}
.y86{bottom:324.795000px;}
.y6f{bottom:327.675000px;}
.y53{bottom:328.395000px;}
.y33{bottom:332.895000px;}
.y16{bottom:339.555000px;}
.y9b{bottom:345.135000px;}
.ya1{bottom:348.015000px;}
.y85{bottom:348.915000px;}
.y6e{bottom:351.975000px;}
.y52{bottom:352.695000px;}
.y32{bottom:357.195000px;}
.y15{bottom:363.855000px;}
.y9a{bottom:370.155000px;}
.y84{bottom:373.215000px;}
.y6d{bottom:376.275000px;}
.y51{bottom:376.995000px;}
.y31{bottom:381.495000px;}
.y14{bottom:388.155000px;}
.y98{bottom:395.175000px;}
.y83{bottom:397.515000px;}
.y9d{bottom:398.265000px;}
.y6c{bottom:400.605000px;}
.y50{bottom:401.325000px;}
.y30{bottom:405.825000px;}
.y13{bottom:412.485000px;}
.y82{bottom:417.165000px;}
.y97{bottom:420.225000px;}
.ya0{bottom:423.285000px;}
.y6b{bottom:424.905000px;}
.y4f{bottom:425.625000px;}
.y2f{bottom:430.125000px;}
.y12{bottom:436.785000px;}
.y81{bottom:442.185000px;}
.y9f{bottom:448.305000px;}
.y6a{bottom:449.205000px;}
.y4e{bottom:449.925000px;}
.y2e{bottom:454.425000px;}
.y11{bottom:461.085000px;}
.y96{bottom:469.545000px;}
.yad{bottom:473.145000px;}
.y69{bottom:473.505000px;}
.y4d{bottom:474.225000px;}
.y2d{bottom:478.725000px;}
.y10{bottom:485.385000px;}
.y80{bottom:491.505000px;}
.y95{bottom:494.565000px;}
.y68{bottom:497.805000px;}
.y4c{bottom:498.525000px;}
.y2c{bottom:503.025000px;}
.yf{bottom:509.685000px;}
.y90{bottom:519.585000px;}
.y67{bottom:521.925000px;}
.y4b{bottom:522.825000px;}
.y2b{bottom:527.325000px;}
.yac{bottom:530.385000px;}
.ye{bottom:535.785000px;}
.y7f{bottom:540.825000px;}
.y94{bottom:544.605000px;}
.y66{bottom:546.225000px;}
.y4a{bottom:547.125000px;}
.y2a{bottom:551.625000px;}
.yd{bottom:560.085000px;}
.y7e{bottom:565.845000px;}
.y92{bottom:569.625000px;}
.y65{bottom:570.525000px;}
.y49{bottom:571.245000px;}
.y29{bottom:575.745000px;}
.yc{bottom:589.245000px;}
.y48{bottom:591.045000px;}
.y64{bottom:594.825000px;}
.y28{bottom:600.090000px;}
.yb{bottom:613.590000px;}
.y47{bottom:616.110000px;}
.y63{bottom:619.170000px;}
.y27{bottom:624.390000px;}
.ya{bottom:637.890000px;}
.y62{bottom:638.790000px;}
.y79{bottom:641.130000px;}
.y26{bottom:648.690000px;}
.y9{bottom:662.190000px;}
.y61{bottom:663.810000px;}
.y44{bottom:665.430000px;}
.y7d{bottom:666.150000px;}
.y25{bottom:672.990000px;}
.y8{bottom:686.490000px;}
.y60{bottom:688.830000px;}
.y7c{bottom:691.170000px;}
.y24{bottom:697.290000px;}
.y5f{bottom:713.850000px;}
.y7{bottom:715.650000px;}
.y23{bottom:721.590000px;}
.y42{bottom:739.050000px;}
.y6{bottom:739.950000px;}
.y22{bottom:745.890000px;}
.y5e{bottom:763.170000px;}
.y5{bottom:764.250000px;}
.y21{bottom:770.190000px;}
.y41{bottom:788.370000px;}
.y4{bottom:789.450000px;}
.y20{bottom:794.490000px;}
.y1{bottom:820.980000px;}
.h14{height:24.120000px;}
.ha{height:24.156000px;}
.h9{height:24.300000px;}
.h13{height:24.336000px;}
.hb{height:48.420000px;}
.hf{height:48.600000px;}
.h12{height:48.636000px;}
.h8{height:49.320000px;}
.h7{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.hc{height:72.720000px;}
.he{height:72.936000px;}
.h10{height:98.640000px;}
.h11{height:98.676000px;}
.hd{height:122.976000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w12{width:43.380000px;}
.w14{width:44.100000px;}
.w10{width:46.800000px;}
.w9{width:49.320000px;}
.w7{width:52.920000px;}
.w8{width:58.356000px;}
.w11{width:59.616000px;}
.w15{width:60.516000px;}
.w13{width:60.696000px;}
.wa{width:61.956000px;}
.w1c{width:78.516000px;}
.w24{width:79.596000px;}
.w22{width:81.216000px;}
.w23{width:81.540000px;}
.w1d{width:82.296000px;}
.w1a{width:86.616000px;}
.w2b{width:88.056000px;}
.w1b{width:89.820000px;}
.w25{width:91.116000px;}
.w2a{width:95.220000px;}
.w2c{width:95.256000px;}
.w2d{width:102.456000px;}
.we{width:104.796000px;}
.wf{width:105.336000px;}
.wd{width:107.136000px;}
.w5{width:108.576000px;}
.w4{width:112.176000px;}
.w26{width:114.336000px;}
.w6{width:115.596000px;}
.w16{width:158.070000px;}
.w3{width:160.230000px;}
.w19{width:161.715000px;}
.w1e{width:161.850000px;}
.w20{width:163.470000px;}
.w21{width:171.435000px;}
.w18{width:177.150000px;}
.wb{width:178.770000px;}
.w28{width:183.990000px;}
.w29{width:198.435000px;}
.wc{width:210.855000px;}
.w1f{width:335.805000px;}
.w17{width:339.585000px;}
.w27{width:383.325000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x3{left:64.835991px;}
.x6{left:71.855991px;}
.x5{left:77.975991px;}
.xf{left:91.835991px;}
.xa{left:93.815991px;}
.x10{left:118.835991px;}
.xd{left:134.855991px;}
.xc{left:147.635991px;}
.x26{left:180.615000px;}
.xb{left:195.734991px;}
.x1e{left:224.355000px;}
.x12{left:226.155000px;}
.x22{left:228.135000px;}
.x7{left:235.154991px;}
.x18{left:245.055000px;}
.x9{left:257.294991px;}
.x4{left:262.154991px;}
.x28{left:276.555000px;}
.x15{left:279.975000px;}
.x1c{left:289.155000px;}
.x2a{left:290.234991px;}
.xe{left:302.144991px;}
.x2{left:306.284991px;}
.x24{left:310.065000px;}
.x20{left:311.685000px;}
.x8{left:314.744991px;}
.x13{left:339.045000px;}
.x1a{left:350.565000px;}
.x27{left:365.505000px;}
.x1{left:373.604991px;}
.x16{left:389.265000px;}
.x23{left:392.505000px;}
.x1d{left:395.385000px;}
.x1f{left:402.225000px;}
.x14{left:448.350000px;}
.x19{left:456.810000px;}
.x29{left:461.490000px;}
.x25{left:472.830000px;}
.x21{left:481.650000px;}
.x17{left:501.990000px;}
.x1b{left:504.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls5{letter-spacing:40.912640pt;}
.ws6{word-spacing:-53.440000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.616000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._26{margin-left:-5.089920pt;}
._2a{margin-left:-3.883093pt;}
._2{margin-left:-2.880000pt;}
._0{margin-left:-1.098453pt;}
._1{width:1.290453pt;}
._19{width:2.240000pt;}
._b{width:3.317547pt;}
._7{width:4.736000pt;}
._a{width:6.144000pt;}
._4{width:7.306453pt;}
._d{width:8.426880pt;}
._9{width:9.503573pt;}
._3{width:10.560000pt;}
._14{width:11.968000pt;}
._15{width:12.864000pt;}
._21{width:13.813547pt;}
._8{width:14.976000pt;}
._3f{width:16.896000pt;}
._16{width:17.792000pt;}
._1a{width:18.688000pt;}
._1b{width:19.840000pt;}
._1c{width:20.874880pt;}
._18{width:21.877120pt;}
._17{width:23.082667pt;}
._33{width:24.960000pt;}
._1e{width:26.176000pt;}
._5{width:27.904000pt;}
._6{width:29.312000pt;}
._c{width:30.656000pt;}
._27{width:31.905920pt;}
._32{width:32.862080pt;}
._22{width:33.920000pt;}
._23{width:35.072000pt;}
._e{width:36.362453pt;}
._f{width:37.258453pt;}
._1d{width:38.635093pt;}
._25{width:40.384000pt;}
._1f{width:42.240000pt;}
._20{width:43.456000pt;}
._13{width:45.248000pt;}
._12{width:46.474453pt;}
._2e{width:47.509760pt;}
._3d{width:49.344000pt;}
._34{width:50.368000pt;}
._35{width:51.391787pt;}
._11{width:55.680000pt;}
._10{width:56.586453pt;}
._2d{width:57.803733pt;}
._24{width:59.136000pt;}
._31{width:63.168000pt;}
._39{width:65.728000pt;}
._29{width:73.108907pt;}
._28{width:74.304000pt;}
._3c{width:75.210667pt;}
._3b{width:76.224000pt;}
._36{width:81.856000pt;}
._3e{width:121.152000pt;}
._38{width:161.728000pt;}
._37{width:162.944000pt;}
._2c{width:174.080000pt;}
._30{width:181.312000pt;}
._2f{width:230.400000pt;}
._2b{width:236.800000pt;}
._3a{width:1041.408000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:4.800000pt;}
.y99{bottom:4.826667pt;}
.y43{bottom:26.240000pt;}
.y46{bottom:26.400000pt;}
.y93{bottom:26.440000pt;}
.y3e{bottom:27.040000pt;}
.y9e{bottom:27.680000pt;}
.y45{bottom:47.840000pt;}
.y5c{bottom:48.040000pt;}
.y7b{bottom:49.280000pt;}
.y3{bottom:51.072000pt;}
.y2{bottom:68.992000pt;}
.y5a{bottom:70.874667pt;}
.y7a{bottom:70.880000pt;}
.y91{bottom:70.920000pt;}
.y58{bottom:90.912000pt;}
.y59{bottom:92.514667pt;}
.y8f{bottom:94.272000pt;}
.y3d{bottom:95.552000pt;}
.yab{bottom:96.352000pt;}
.y78{bottom:96.992000pt;}
.y3c{bottom:101.632000pt;}
.y1f{bottom:107.552000pt;}
.y5d{bottom:113.152000pt;}
.y8e{bottom:115.872000pt;}
.y3f{bottom:117.792000pt;}
.yaa{bottom:117.952000pt;}
.y77{bottom:118.592000pt;}
.y3b{bottom:123.232000pt;}
.y1e{bottom:129.152000pt;}
.y5b{bottom:135.386667pt;}
.y8d{bottom:137.466667pt;}
.ya9{bottom:139.546667pt;}
.y76{bottom:140.186667pt;}
.y3a{bottom:144.826667pt;}
.y1d{bottom:150.746667pt;}
.y8c{bottom:159.066667pt;}
.ya8{bottom:161.146667pt;}
.y75{bottom:161.786667pt;}
.y39{bottom:166.426667pt;}
.y1c{bottom:172.346667pt;}
.y8b{bottom:180.706667pt;}
.ya7{bottom:182.626667pt;}
.y74{bottom:183.426667pt;}
.y38{bottom:188.066667pt;}
.y1b{bottom:193.986667pt;}
.y8a{bottom:202.306667pt;}
.ya6{bottom:204.226667pt;}
.y73{bottom:205.026667pt;}
.y57{bottom:205.666667pt;}
.y37{bottom:209.666667pt;}
.y1a{bottom:215.586667pt;}
.y89{bottom:223.906667pt;}
.ya5{bottom:225.826667pt;}
.y72{bottom:226.466667pt;}
.y56{bottom:227.266667pt;}
.y36{bottom:231.266667pt;}
.y19{bottom:237.186667pt;}
.y88{bottom:245.506667pt;}
.ya4{bottom:247.426667pt;}
.y71{bottom:248.066667pt;}
.y55{bottom:248.866667pt;}
.y35{bottom:252.866667pt;}
.y18{bottom:258.626667pt;}
.ya3{bottom:264.866667pt;}
.y87{bottom:267.106667pt;}
.y70{bottom:269.666667pt;}
.y54{bottom:270.306667pt;}
.y34{bottom:274.306667pt;}
.y17{bottom:280.226667pt;}
.y9c{bottom:284.546667pt;}
.ya2{bottom:287.106667pt;}
.y86{bottom:288.706667pt;}
.y6f{bottom:291.266667pt;}
.y53{bottom:291.906667pt;}
.y33{bottom:295.906667pt;}
.y16{bottom:301.826667pt;}
.y9b{bottom:306.786667pt;}
.ya1{bottom:309.346667pt;}
.y85{bottom:310.146667pt;}
.y6e{bottom:312.866667pt;}
.y52{bottom:313.506667pt;}
.y32{bottom:317.506667pt;}
.y15{bottom:323.426667pt;}
.y9a{bottom:329.026667pt;}
.y84{bottom:331.746667pt;}
.y6d{bottom:334.466667pt;}
.y51{bottom:335.106667pt;}
.y31{bottom:339.106667pt;}
.y14{bottom:345.026667pt;}
.y98{bottom:351.266667pt;}
.y83{bottom:353.346667pt;}
.y9d{bottom:354.013333pt;}
.y6c{bottom:356.093333pt;}
.y50{bottom:356.733333pt;}
.y30{bottom:360.733333pt;}
.y13{bottom:366.653333pt;}
.y82{bottom:370.813333pt;}
.y97{bottom:373.533333pt;}
.ya0{bottom:376.253333pt;}
.y6b{bottom:377.693333pt;}
.y4f{bottom:378.333333pt;}
.y2f{bottom:382.333333pt;}
.y12{bottom:388.253333pt;}
.y81{bottom:393.053333pt;}
.y9f{bottom:398.493333pt;}
.y6a{bottom:399.293333pt;}
.y4e{bottom:399.933333pt;}
.y2e{bottom:403.933333pt;}
.y11{bottom:409.853333pt;}
.y96{bottom:417.373333pt;}
.yad{bottom:420.573333pt;}
.y69{bottom:420.893333pt;}
.y4d{bottom:421.533333pt;}
.y2d{bottom:425.533333pt;}
.y10{bottom:431.453333pt;}
.y80{bottom:436.893333pt;}
.y95{bottom:439.613333pt;}
.y68{bottom:442.493333pt;}
.y4c{bottom:443.133333pt;}
.y2c{bottom:447.133333pt;}
.yf{bottom:453.053333pt;}
.y90{bottom:461.853333pt;}
.y67{bottom:463.933333pt;}
.y4b{bottom:464.733333pt;}
.y2b{bottom:468.733333pt;}
.yac{bottom:471.453333pt;}
.ye{bottom:476.253333pt;}
.y7f{bottom:480.733333pt;}
.y94{bottom:484.093333pt;}
.y66{bottom:485.533333pt;}
.y4a{bottom:486.333333pt;}
.y2a{bottom:490.333333pt;}
.yd{bottom:497.853333pt;}
.y7e{bottom:502.973333pt;}
.y92{bottom:506.333333pt;}
.y65{bottom:507.133333pt;}
.y49{bottom:507.773333pt;}
.y29{bottom:511.773333pt;}
.yc{bottom:523.773333pt;}
.y48{bottom:525.373333pt;}
.y64{bottom:528.733333pt;}
.y28{bottom:533.413333pt;}
.yb{bottom:545.413333pt;}
.y47{bottom:547.653333pt;}
.y63{bottom:550.373333pt;}
.y27{bottom:555.013333pt;}
.ya{bottom:567.013333pt;}
.y62{bottom:567.813333pt;}
.y79{bottom:569.893333pt;}
.y26{bottom:576.613333pt;}
.y9{bottom:588.613333pt;}
.y61{bottom:590.053333pt;}
.y44{bottom:591.493333pt;}
.y7d{bottom:592.133333pt;}
.y25{bottom:598.213333pt;}
.y8{bottom:610.213333pt;}
.y60{bottom:612.293333pt;}
.y7c{bottom:614.373333pt;}
.y24{bottom:619.813333pt;}
.y5f{bottom:634.533333pt;}
.y7{bottom:636.133333pt;}
.y23{bottom:641.413333pt;}
.y42{bottom:656.933333pt;}
.y6{bottom:657.733333pt;}
.y22{bottom:663.013333pt;}
.y5e{bottom:678.373333pt;}
.y5{bottom:679.333333pt;}
.y21{bottom:684.613333pt;}
.y41{bottom:700.773333pt;}
.y4{bottom:701.733333pt;}
.y20{bottom:706.213333pt;}
.y1{bottom:729.760000pt;}
.h14{height:21.440000pt;}
.ha{height:21.472000pt;}
.h9{height:21.600000pt;}
.h13{height:21.632000pt;}
.hb{height:43.040000pt;}
.hf{height:43.200000pt;}
.h12{height:43.232000pt;}
.h8{height:43.840000pt;}
.h7{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.hc{height:64.640000pt;}
.he{height:64.832000pt;}
.h10{height:87.680000pt;}
.h11{height:87.712000pt;}
.hd{height:109.312000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w12{width:38.560000pt;}
.w14{width:39.200000pt;}
.w10{width:41.600000pt;}
.w9{width:43.840000pt;}
.w7{width:47.040000pt;}
.w8{width:51.872000pt;}
.w11{width:52.992000pt;}
.w15{width:53.792000pt;}
.w13{width:53.952000pt;}
.wa{width:55.072000pt;}
.w1c{width:69.792000pt;}
.w24{width:70.752000pt;}
.w22{width:72.192000pt;}
.w23{width:72.480000pt;}
.w1d{width:73.152000pt;}
.w1a{width:76.992000pt;}
.w2b{width:78.272000pt;}
.w1b{width:79.840000pt;}
.w25{width:80.992000pt;}
.w2a{width:84.640000pt;}
.w2c{width:84.672000pt;}
.w2d{width:91.072000pt;}
.we{width:93.152000pt;}
.wf{width:93.632000pt;}
.wd{width:95.232000pt;}
.w5{width:96.512000pt;}
.w4{width:99.712000pt;}
.w26{width:101.632000pt;}
.w6{width:102.752000pt;}
.w16{width:140.506667pt;}
.w3{width:142.426667pt;}
.w19{width:143.746667pt;}
.w1e{width:143.866667pt;}
.w20{width:145.306667pt;}
.w21{width:152.386667pt;}
.w18{width:157.466667pt;}
.wb{width:158.906667pt;}
.w28{width:163.546667pt;}
.w29{width:176.386667pt;}
.wc{width:187.426667pt;}
.w1f{width:298.493333pt;}
.w17{width:301.853333pt;}
.w27{width:340.733333pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x3{left:57.631992pt;}
.x6{left:63.871992pt;}
.x5{left:69.311992pt;}
.xf{left:81.631992pt;}
.xa{left:83.391992pt;}
.x10{left:105.631992pt;}
.xd{left:119.871992pt;}
.xc{left:131.231992pt;}
.x26{left:160.546667pt;}
.xb{left:173.986658pt;}
.x1e{left:199.426667pt;}
.x12{left:201.026667pt;}
.x22{left:202.786667pt;}
.x7{left:209.026658pt;}
.x18{left:217.826667pt;}
.x9{left:228.706658pt;}
.x4{left:233.026658pt;}
.x28{left:245.826667pt;}
.x15{left:248.866667pt;}
.x1c{left:257.026667pt;}
.x2a{left:257.986658pt;}
.xe{left:268.573325pt;}
.x2{left:272.253325pt;}
.x24{left:275.613333pt;}
.x20{left:277.053333pt;}
.x8{left:279.773325pt;}
.x13{left:301.373333pt;}
.x1a{left:311.613333pt;}
.x27{left:324.893333pt;}
.x1{left:332.093325pt;}
.x16{left:346.013333pt;}
.x23{left:348.893333pt;}
.x1d{left:351.453333pt;}
.x1f{left:357.533333pt;}
.x14{left:398.533333pt;}
.x19{left:406.053333pt;}
.x29{left:410.213333pt;}
.x25{left:420.293333pt;}
.x21{left:428.133333pt;}
.x17{left:446.213333pt;}
.x1b{left:448.293333pt;}
}




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