
    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_c5f62c3fa72ecc6f1affdac6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_398c1259543520a6c4265c3d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_5044f41a56b8029dc62b64f7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_61ee2ec36a22ca7aef3adbc3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_89872bedee0988b22cc4d217.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca047dad65e685186bcf6cd5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_b8347ba384633fc7a95fe3c9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_a1e56f8641379c76e0d99e73.woff')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_99e0a26ff4c14a4f817ae5c1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.122400px;}
.ls4{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.288000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-48.240000px;}
.ws7{word-spacing:-23.940000px;}
.ws0{word-spacing:-21.031920px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws6{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.317600px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-4.824000px;}
._b{margin-left:-3.384000px;}
._e{margin-left:-2.232000px;}
._2{margin-left:-1.080000px;}
._0{width:1.185840px;}
._4{width:2.400720px;}
._1d{width:3.744000px;}
._3{width:4.752000px;}
._1{width:5.760000px;}
._6{width:7.246080px;}
._f{width:8.521920px;}
._11{width:9.792000px;}
._1a{width:11.280000px;}
._8{width:12.936000px;}
._7{width:14.112000px;}
._d{width:15.168000px;}
._19{width:16.920000px;}
._14{width:19.728000px;}
._a{width:20.880000px;}
._9{width:21.960000px;}
._1c{width:23.544000px;}
._1b{width:24.840000px;}
._16{width:26.184000px;}
._15{width:27.768000px;}
._25{width:28.886160px;}
._2c{width:29.904000px;}
._10{width:31.104000px;}
._28{width:32.112000px;}
._29{width:33.480000px;}
._2a{width:34.632000px;}
._22{width:37.872000px;}
._23{width:39.096000px;}
._24{width:40.680000px;}
._13{width:43.920000px;}
._12{width:44.928000px;}
._26{width:53.856000px;}
._27{width:54.864000px;}
._21{width:58.896000px;}
._20{width:59.976000px;}
._2f{width:62.208000px;}
._2d{width:67.464000px;}
._2e{width:68.544000px;}
._2b{width:97.128000px;}
._1e{width:108.144000px;}
._1f{width:109.440000px;}
._18{width:133.920000px;}
._17{width:135.144000px;}
._5{width:663.150000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc4{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(180,44,26);}
.fc0{color:rgb(89,89,89);}
.fs6{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.ya{bottom:-23.400000px;}
.y9{bottom:-6.660000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.420000px;}
.y29{bottom:4.680000px;}
.y52{bottom:4.860000px;}
.y8{bottom:10.260000px;}
.y6{bottom:14.580000px;}
.y60{bottom:17.640000px;}
.y9c{bottom:19.620000px;}
.y37{bottom:24.840000px;}
.y34{bottom:24.885000px;}
.y51{bottom:25.560000px;}
.ya2{bottom:26.820000px;}
.y32{bottom:31.680000px;}
.y5f{bottom:37.980000px;}
.y8f{bottom:44.640000px;}
.y7c{bottom:45.180000px;}
.y50{bottom:45.765000px;}
.ya1{bottom:48.780000px;}
.y9a{bottom:49.680000px;}
.y5{bottom:50.400000px;}
.y31{bottom:51.840000px;}
.y5e{bottom:58.140000px;}
.y21{bottom:62.460000px;}
.y2{bottom:62.820000px;}
.y8e{bottom:64.800000px;}
.y7b{bottom:65.340000px;}
.y4f{bottom:66.105000px;}
.y99{bottom:69.840000px;}
.ya0{bottom:70.740000px;}
.y30{bottom:72.180000px;}
.y20{bottom:76.896000px;}
.y5d{bottom:78.480000px;}
.y8d{bottom:85.140000px;}
.y7a{bottom:85.680000px;}
.y4e{bottom:86.265000px;}
.y98{bottom:90.180000px;}
.y1f{bottom:90.396000px;}
.y2f{bottom:92.340000px;}
.y9f{bottom:92.700000px;}
.y5c{bottom:98.670000px;}
.y1e{bottom:105.156000px;}
.y8c{bottom:105.300000px;}
.y79{bottom:105.840000px;}
.y4d{bottom:106.605000px;}
.y97{bottom:110.340000px;}
.y83{bottom:112.680000px;}
.y27{bottom:115.020000px;}
.y5b{bottom:119.010000px;}
.y1d{bottom:120.276000px;}
.y8b{bottom:125.640000px;}
.y78{bottom:126.180000px;}
.y4c{bottom:126.765000px;}
.y96{bottom:130.680000px;}
.y82{bottom:132.840000px;}
.y5a{bottom:139.170000px;}
.y35{bottom:144.000000px;}
.y8a{bottom:145.800000px;}
.y77{bottom:146.340000px;}
.y4b{bottom:147.105000px;}
.yab{bottom:150.150000px;}
.y95{bottom:150.840000px;}
.y81{bottom:153.180000px;}
.y7d{bottom:157.350000px;}
.y59{bottom:159.510000px;}
.y89{bottom:166.140000px;}
.y76{bottom:166.680000px;}
.y4a{bottom:167.265000px;}
.y94{bottom:171.180000px;}
.y80{bottom:173.385000px;}
.y58{bottom:179.670000px;}
.y1c{bottom:179.850000px;}
.y88{bottom:186.300000px;}
.y75{bottom:186.870000px;}
.y49{bottom:187.605000px;}
.yaa{bottom:188.310000px;}
.y93{bottom:191.340000px;}
.y7f{bottom:193.725000px;}
.y57{bottom:200.010000px;}
.y6c{bottom:204.510000px;}
.y87{bottom:206.640000px;}
.y74{bottom:207.210000px;}
.y48{bottom:207.765000px;}
.y92{bottom:211.680000px;}
.ya9{bottom:211.890000px;}
.y7e{bottom:213.885000px;}
.y56{bottom:220.170000px;}
.y1b{bottom:222.150000px;}
.y86{bottom:226.800000px;}
.y73{bottom:227.370000px;}
.y47{bottom:228.105000px;}
.y6b{bottom:228.810000px;}
.y91{bottom:231.840000px;}
.y2e{bottom:234.225000px;}
.y55{bottom:240.510000px;}
.y71{bottom:246.090000px;}
.y1a{bottom:246.450000px;}
.y85{bottom:247.170000px;}
.y72{bottom:247.710000px;}
.y46{bottom:248.265000px;}
.ya8{bottom:249.870000px;}
.y6a{bottom:253.110000px;}
.y2d{bottom:254.385000px;}
.y54{bottom:260.670000px;}
.y45{bottom:268.605000px;}
.y19{bottom:270.750000px;}
.ya7{bottom:273.450000px;}
.y2c{bottom:274.725000px;}
.y69{bottom:277.410000px;}
.y53{bottom:281.010000px;}
.y44{bottom:288.975000px;}
.y2b{bottom:294.885000px;}
.y18{bottom:295.050000px;}
.y68{bottom:301.710000px;}
.ya6{bottom:316.110000px;}
.y42{bottom:317.415000px;}
.y17{bottom:319.395000px;}
.y67{bottom:326.055000px;}
.y41{bottom:341.715000px;}
.y16{bottom:343.695000px;}
.y66{bottom:350.355000px;}
.ya5{bottom:360.615000px;}
.y40{bottom:366.015000px;}
.y15{bottom:373.215000px;}
.y65{bottom:374.655000px;}
.ya4{bottom:384.195000px;}
.y70{bottom:386.895000px;}
.y3f{bottom:390.315000px;}
.y14{bottom:396.615000px;}
.y64{bottom:398.955000px;}
.y3e{bottom:414.615000px;}
.ya3{bottom:416.235000px;}
.y63{bottom:423.255000px;}
.y13{bottom:423.615000px;}
.y9e{bottom:433.335000px;}
.y3d{bottom:438.915000px;}
.y62{bottom:447.555000px;}
.y3c{bottom:463.215000px;}
.y61{bottom:471.855000px;}
.y3b{bottom:487.515000px;}
.y3a{bottom:512.355000px;}
.y39{bottom:535.755000px;}
.y9b{bottom:543.135000px;}
.y90{bottom:579.885000px;}
.y38{bottom:583.845000px;}
.y36{bottom:600.945000px;}
.y2a{bottom:641.445000px;}
.y6f{bottom:659.445000px;}
.y6e{bottom:682.845000px;}
.y6d{bottom:730.185000px;}
.y12{bottom:755.565000px;}
.y11{bottom:780.405000px;}
.y43{bottom:784.005000px;}
.y33{bottom:801.105000px;}
.y10{bottom:803.805000px;}
.yf{bottom:827.070000px;}
.y84{bottom:827.430000px;}
.y26{bottom:841.650000px;}
.ye{bottom:850.470000px;}
.yd{bottom:874.950000px;}
.yc{bottom:899.790000px;}
.yb{bottom:925.170000px;}
.y7{bottom:942.270000px;}
.y28{bottom:951.990000px;}
.y4{bottom:966.930000px;}
.y25{bottom:998.790000px;}
.y24{bottom:1023.090000px;}
.y23{bottom:1047.390000px;}
.y22{bottom:1069.350000px;}
.y3{bottom:1072.980000px;}
.y1{bottom:1094.040000px;}
.hc{height:20.160000px;}
.h7{height:23.220000px;}
.ha{height:33.588984px;}
.h19{height:36.756000px;}
.h2{height:37.599609px;}
.h10{height:40.500000px;}
.he{height:40.536000px;}
.h1{height:41.610234px;}
.h1a{height:45.931641px;}
.h13{height:48.761719px;}
.h8{height:50.132812px;}
.h15{height:56.437031px;}
.h6{height:58.655391px;}
.h9{height:66.676641px;}
.h3{height:68.554688px;}
.h4{height:78.840000px;}
.h5{height:91.743047px;}
.h1c{height:98.051133px;}
.h1b{height:109.800000px;}
.hb{height:130.500000px;}
.hf{height:159.660000px;}
.h16{height:229.530000px;}
.h18{height:247.530000px;}
.h17{height:262.650000px;}
.h14{height:263.190000px;}
.h12{height:296.490000px;}
.h11{height:306.075000px;}
.hd{height:310.530000px;}
.h0{height:1188.000000px;}
.w5{width:240.510000px;}
.w4{width:243.390000px;}
.w3{width:264.270000px;}
.w6{width:355.890000px;}
.w9{width:365.115000px;}
.w8{width:383.070000px;}
.w7{width:392.295000px;}
.w2{width:406.905000px;}
.wa{width:748.185000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.920000px;}
.x3{left:10.836000px;}
.x25{left:21.450000px;}
.x10{left:23.040000px;}
.x12{left:30.600000px;}
.x11{left:34.020000px;}
.x19{left:40.140000px;}
.x16{left:45.720000px;}
.x14{left:49.680000px;}
.xf{left:50.940000px;}
.x17{left:53.280000px;}
.x22{left:60.294000px;}
.x2{left:81.000000px;}
.x1{left:91.835986px;}
.x13{left:93.780000px;}
.x7{left:103.175986px;}
.x4{left:104.435986px;}
.x6{left:107.135986px;}
.x18{left:108.714000px;}
.x24{left:109.794000px;}
.x15{left:114.834000px;}
.xe{left:121.500000px;}
.x8{left:128.915986px;}
.x23{left:191.514000px;}
.x20{left:194.259000px;}
.xa{left:220.719000px;}
.x5{left:250.409986px;}
.x9{left:326.594986px;}
.x1d{left:331.599000px;}
.x1f{left:338.655000px;}
.xb{left:356.115000px;}
.x1c{left:370.334986px;}
.x21{left:374.079000px;}
.x1b{left:401.835000px;}
.x1a{left:447.735000px;}
.x1e{left:474.915000px;}
.xd{left:599.505000px;}
.x26{left:662.324986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.108800pt;}
.ls4{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.256000pt;}
.ws5{word-spacing:-42.880000pt;}
.ws7{word-spacing:-21.280000pt;}
.ws0{word-spacing:-18.695040pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.171200pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-4.288000pt;}
._b{margin-left:-3.008000pt;}
._e{margin-left:-1.984000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.054080pt;}
._4{width:2.133973pt;}
._1d{width:3.328000pt;}
._3{width:4.224000pt;}
._1{width:5.120000pt;}
._6{width:6.440960pt;}
._f{width:7.575040pt;}
._11{width:8.704000pt;}
._1a{width:10.026667pt;}
._8{width:11.498667pt;}
._7{width:12.544000pt;}
._d{width:13.482667pt;}
._19{width:15.040000pt;}
._14{width:17.536000pt;}
._a{width:18.560000pt;}
._9{width:19.520000pt;}
._1c{width:20.928000pt;}
._1b{width:22.080000pt;}
._16{width:23.274667pt;}
._15{width:24.682667pt;}
._25{width:25.676587pt;}
._2c{width:26.581333pt;}
._10{width:27.648000pt;}
._28{width:28.544000pt;}
._29{width:29.760000pt;}
._2a{width:30.784000pt;}
._22{width:33.664000pt;}
._23{width:34.752000pt;}
._24{width:36.160000pt;}
._13{width:39.040000pt;}
._12{width:39.936000pt;}
._26{width:47.872000pt;}
._27{width:48.768000pt;}
._21{width:52.352000pt;}
._20{width:53.312000pt;}
._2f{width:55.296000pt;}
._2d{width:59.968000pt;}
._2e{width:60.928000pt;}
._2b{width:86.336000pt;}
._1e{width:96.128000pt;}
._1f{width:97.280000pt;}
._18{width:119.040000pt;}
._17{width:120.128000pt;}
._5{width:589.466667pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.ya{bottom:-20.800000pt;}
.y9{bottom:-5.920000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.040000pt;}
.y29{bottom:4.160000pt;}
.y52{bottom:4.320000pt;}
.y8{bottom:9.120000pt;}
.y6{bottom:12.960000pt;}
.y60{bottom:15.680000pt;}
.y9c{bottom:17.440000pt;}
.y37{bottom:22.080000pt;}
.y34{bottom:22.120000pt;}
.y51{bottom:22.720000pt;}
.ya2{bottom:23.840000pt;}
.y32{bottom:28.160000pt;}
.y5f{bottom:33.760000pt;}
.y8f{bottom:39.680000pt;}
.y7c{bottom:40.160000pt;}
.y50{bottom:40.680000pt;}
.ya1{bottom:43.360000pt;}
.y9a{bottom:44.160000pt;}
.y5{bottom:44.800000pt;}
.y31{bottom:46.080000pt;}
.y5e{bottom:51.680000pt;}
.y21{bottom:55.520000pt;}
.y2{bottom:55.840000pt;}
.y8e{bottom:57.600000pt;}
.y7b{bottom:58.080000pt;}
.y4f{bottom:58.760000pt;}
.y99{bottom:62.080000pt;}
.ya0{bottom:62.880000pt;}
.y30{bottom:64.160000pt;}
.y20{bottom:68.352000pt;}
.y5d{bottom:69.760000pt;}
.y8d{bottom:75.680000pt;}
.y7a{bottom:76.160000pt;}
.y4e{bottom:76.680000pt;}
.y98{bottom:80.160000pt;}
.y1f{bottom:80.352000pt;}
.y2f{bottom:82.080000pt;}
.y9f{bottom:82.400000pt;}
.y5c{bottom:87.706667pt;}
.y1e{bottom:93.472000pt;}
.y8c{bottom:93.600000pt;}
.y79{bottom:94.080000pt;}
.y4d{bottom:94.760000pt;}
.y97{bottom:98.080000pt;}
.y83{bottom:100.160000pt;}
.y27{bottom:102.240000pt;}
.y5b{bottom:105.786667pt;}
.y1d{bottom:106.912000pt;}
.y8b{bottom:111.680000pt;}
.y78{bottom:112.160000pt;}
.y4c{bottom:112.680000pt;}
.y96{bottom:116.160000pt;}
.y82{bottom:118.080000pt;}
.y5a{bottom:123.706667pt;}
.y35{bottom:128.000000pt;}
.y8a{bottom:129.600000pt;}
.y77{bottom:130.080000pt;}
.y4b{bottom:130.760000pt;}
.yab{bottom:133.466667pt;}
.y95{bottom:134.080000pt;}
.y81{bottom:136.160000pt;}
.y7d{bottom:139.866667pt;}
.y59{bottom:141.786667pt;}
.y89{bottom:147.680000pt;}
.y76{bottom:148.160000pt;}
.y4a{bottom:148.680000pt;}
.y94{bottom:152.160000pt;}
.y80{bottom:154.120000pt;}
.y58{bottom:159.706667pt;}
.y1c{bottom:159.866667pt;}
.y88{bottom:165.600000pt;}
.y75{bottom:166.106667pt;}
.y49{bottom:166.760000pt;}
.yaa{bottom:167.386667pt;}
.y93{bottom:170.080000pt;}
.y7f{bottom:172.200000pt;}
.y57{bottom:177.786667pt;}
.y6c{bottom:181.786667pt;}
.y87{bottom:183.680000pt;}
.y74{bottom:184.186667pt;}
.y48{bottom:184.680000pt;}
.y92{bottom:188.160000pt;}
.ya9{bottom:188.346667pt;}
.y7e{bottom:190.120000pt;}
.y56{bottom:195.706667pt;}
.y1b{bottom:197.466667pt;}
.y86{bottom:201.600000pt;}
.y73{bottom:202.106667pt;}
.y47{bottom:202.760000pt;}
.y6b{bottom:203.386667pt;}
.y91{bottom:206.080000pt;}
.y2e{bottom:208.200000pt;}
.y55{bottom:213.786667pt;}
.y71{bottom:218.746667pt;}
.y1a{bottom:219.066667pt;}
.y85{bottom:219.706667pt;}
.y72{bottom:220.186667pt;}
.y46{bottom:220.680000pt;}
.ya8{bottom:222.106667pt;}
.y6a{bottom:224.986667pt;}
.y2d{bottom:226.120000pt;}
.y54{bottom:231.706667pt;}
.y45{bottom:238.760000pt;}
.y19{bottom:240.666667pt;}
.ya7{bottom:243.066667pt;}
.y2c{bottom:244.200000pt;}
.y69{bottom:246.586667pt;}
.y53{bottom:249.786667pt;}
.y44{bottom:256.866667pt;}
.y2b{bottom:262.120000pt;}
.y18{bottom:262.266667pt;}
.y68{bottom:268.186667pt;}
.ya6{bottom:280.986667pt;}
.y42{bottom:282.146667pt;}
.y17{bottom:283.906667pt;}
.y67{bottom:289.826667pt;}
.y41{bottom:303.746667pt;}
.y16{bottom:305.506667pt;}
.y66{bottom:311.426667pt;}
.ya5{bottom:320.546667pt;}
.y40{bottom:325.346667pt;}
.y15{bottom:331.746667pt;}
.y65{bottom:333.026667pt;}
.ya4{bottom:341.506667pt;}
.y70{bottom:343.906667pt;}
.y3f{bottom:346.946667pt;}
.y14{bottom:352.546667pt;}
.y64{bottom:354.626667pt;}
.y3e{bottom:368.546667pt;}
.ya3{bottom:369.986667pt;}
.y63{bottom:376.226667pt;}
.y13{bottom:376.546667pt;}
.y9e{bottom:385.186667pt;}
.y3d{bottom:390.146667pt;}
.y62{bottom:397.826667pt;}
.y3c{bottom:411.746667pt;}
.y61{bottom:419.426667pt;}
.y3b{bottom:433.346667pt;}
.y3a{bottom:455.426667pt;}
.y39{bottom:476.226667pt;}
.y9b{bottom:482.786667pt;}
.y90{bottom:515.453333pt;}
.y38{bottom:518.973333pt;}
.y36{bottom:534.173333pt;}
.y2a{bottom:570.173333pt;}
.y6f{bottom:586.173333pt;}
.y6e{bottom:606.973333pt;}
.y6d{bottom:649.053333pt;}
.y12{bottom:671.613333pt;}
.y11{bottom:693.693333pt;}
.y43{bottom:696.893333pt;}
.y33{bottom:712.093333pt;}
.y10{bottom:714.493333pt;}
.yf{bottom:735.173333pt;}
.y84{bottom:735.493333pt;}
.y26{bottom:748.133333pt;}
.ye{bottom:755.973333pt;}
.yd{bottom:777.733333pt;}
.yc{bottom:799.813333pt;}
.yb{bottom:822.373333pt;}
.y7{bottom:837.573333pt;}
.y28{bottom:846.213333pt;}
.y4{bottom:859.493333pt;}
.y25{bottom:887.813333pt;}
.y24{bottom:909.413333pt;}
.y23{bottom:931.013333pt;}
.y22{bottom:950.533333pt;}
.y3{bottom:953.760000pt;}
.y1{bottom:972.480000pt;}
.hc{height:17.920000pt;}
.h7{height:20.640000pt;}
.ha{height:29.856875pt;}
.h19{height:32.672000pt;}
.h2{height:33.421875pt;}
.h10{height:36.000000pt;}
.he{height:36.032000pt;}
.h1{height:36.986875pt;}
.h1a{height:40.828125pt;}
.h13{height:43.343750pt;}
.h8{height:44.562500pt;}
.h15{height:50.166250pt;}
.h6{height:52.138125pt;}
.h9{height:59.268125pt;}
.h3{height:60.937500pt;}
.h4{height:70.080000pt;}
.h5{height:81.549375pt;}
.h1c{height:87.156562pt;}
.h1b{height:97.600000pt;}
.hb{height:116.000000pt;}
.hf{height:141.920000pt;}
.h16{height:204.026667pt;}
.h18{height:220.026667pt;}
.h17{height:233.466667pt;}
.h14{height:233.946667pt;}
.h12{height:263.546667pt;}
.h11{height:272.066667pt;}
.hd{height:276.026667pt;}
.h0{height:1056.000000pt;}
.w5{width:213.786667pt;}
.w4{width:216.346667pt;}
.w3{width:234.906667pt;}
.w6{width:316.346667pt;}
.w9{width:324.546667pt;}
.w8{width:340.506667pt;}
.w7{width:348.706667pt;}
.w2{width:361.693333pt;}
.wa{width:665.053333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.040000pt;}
.x3{left:9.632000pt;}
.x25{left:19.066667pt;}
.x10{left:20.480000pt;}
.x12{left:27.200000pt;}
.x11{left:30.240000pt;}
.x19{left:35.680000pt;}
.x16{left:40.640000pt;}
.x14{left:44.160000pt;}
.xf{left:45.280000pt;}
.x17{left:47.360000pt;}
.x22{left:53.594667pt;}
.x2{left:72.000000pt;}
.x1{left:81.631988pt;}
.x13{left:83.360000pt;}
.x7{left:91.711988pt;}
.x4{left:92.831988pt;}
.x6{left:95.231988pt;}
.x18{left:96.634667pt;}
.x24{left:97.594667pt;}
.x15{left:102.074667pt;}
.xe{left:108.000000pt;}
.x8{left:114.591988pt;}
.x23{left:170.234667pt;}
.x20{left:172.674667pt;}
.xa{left:196.194667pt;}
.x5{left:222.586655pt;}
.x9{left:290.306655pt;}
.x1d{left:294.754667pt;}
.x1f{left:301.026667pt;}
.xb{left:316.546667pt;}
.x1c{left:329.186655pt;}
.x21{left:332.514667pt;}
.x1b{left:357.186667pt;}
.x1a{left:397.986667pt;}
.x1e{left:422.146667pt;}
.xd{left:532.893333pt;}
.x26{left:588.733321pt;}
}




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