
    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_7ed1ba892660345d9e70f0ca.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_62881e84e725c5781040c413.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c08610b6c5b58b15d31b821f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_84c2f018205be23a28f87b39.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_8efe4ccb08098b09512ee275.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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);}
.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;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.386720px;}
.ls6{letter-spacing:16.740000px;}
.ls7{letter-spacing:21.546720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._37{margin-left:-8.197440px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._f{width:2.553360px;}
._2{width:4.140960px;}
._7{width:5.472240px;}
._b{width:7.283040px;}
._d{width:8.657520px;}
._c{width:9.681120px;}
._10{width:11.167440px;}
._13{width:12.301680px;}
._12{width:13.685040px;}
._11{width:16.015680px;}
._a{width:17.262960px;}
._9{width:18.286560px;}
._28{width:19.466400px;}
._e{width:21.147360px;}
._14{width:23.115840px;}
._6{width:24.126480px;}
._5{width:25.278480px;}
._8{width:26.296800px;}
._1c{width:27.907920px;}
._32{width:30.888240px;}
._1f{width:32.150880px;}
._26{width:36.154800px;}
._25{width:37.648800px;}
._16{width:39.142800px;}
._36{width:40.338000px;}
._33{width:42.840240px;}
._3d{width:44.640720px;}
._3c{width:46.194480px;}
._29{width:51.274080px;}
._24{width:55.158480px;}
._23{width:56.532960px;}
._19{width:58.564800px;}
._34{width:62.987040px;}
._15{width:66.094560px;}
._3b{width:69.162960px;}
._3a{width:70.277760px;}
._17{width:75.536640px;}
._27{width:76.970880px;}
._39{width:78.703920px;}
._1a{width:79.719840px;}
._22{width:81.632160px;}
._3f{width:90.947040px;}
._1e{width:96.146160px;}
._2d{width:99.918720px;}
._3e{width:113.469360px;}
._2f{width:114.731520px;}
._31{width:126.205440px;}
._38{width:128.916480px;}
._21{width:130.269120px;}
._4{width:136.056000px;}
._2c{width:159.260400px;}
._18{width:170.248560px;}
._1b{width:174.969600px;}
._2e{width:176.889600px;}
._35{width:178.801920px;}
._1d{width:189.909600px;}
._20{width:205.753680px;}
._2b{width:232.458720px;}
._30{width:243.522000px;}
._2a{width:247.167360px;}
._3{width:636.906000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(115,115,115);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:3.240000px;}
.yaa{bottom:20.340000px;}
.y79{bottom:20.520000px;}
.y7f{bottom:20.550000px;}
.yc{bottom:36.720000px;}
.y81{bottom:37.620000px;}
.y7c{bottom:37.800000px;}
.y7e{bottom:37.830000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.740000px;}
.yab{bottom:110.880000px;}
.ya5{bottom:111.060000px;}
.yce{bottom:115.560000px;}
.y77{bottom:117.900000px;}
.y41{bottom:120.240000px;}
.y87{bottom:120.780000px;}
.y9b{bottom:126.000000px;}
.ya4{bottom:128.340000px;}
.ycd{bottom:132.840000px;}
.y76{bottom:135.000000px;}
.y40{bottom:137.520000px;}
.y86{bottom:138.060000px;}
.ya3{bottom:142.380000px;}
.y9a{bottom:143.280000px;}
.ya9{bottom:146.160000px;}
.ycc{bottom:150.120000px;}
.y75{bottom:152.280000px;}
.y3f{bottom:154.620000px;}
.y85{bottom:155.340000px;}
.y99{bottom:160.560000px;}
.ycb{bottom:167.220000px;}
.y84{bottom:169.200000px;}
.y74{bottom:169.560000px;}
.y3e{bottom:171.900000px;}
.y98{bottom:177.840000px;}
.yca{bottom:184.500000px;}
.y73{bottom:186.840000px;}
.y3d{bottom:189.180000px;}
.y97{bottom:194.940000px;}
.ya8{bottom:198.540000px;}
.yc9{bottom:201.780000px;}
.y72{bottom:204.120000px;}
.y3c{bottom:206.460000px;}
.y96{bottom:212.220000px;}
.yc8{bottom:219.090000px;}
.y71{bottom:221.250000px;}
.y3b{bottom:223.770000px;}
.y95{bottom:229.530000px;}
.yc7{bottom:236.370000px;}
.y70{bottom:238.530000px;}
.y3a{bottom:241.050000px;}
.y94{bottom:246.810000px;}
.ya7{bottom:251.130000px;}
.yc6{bottom:253.470000px;}
.y6f{bottom:255.810000px;}
.y39{bottom:258.150000px;}
.y93{bottom:264.090000px;}
.yc5{bottom:270.750000px;}
.y6e{bottom:273.090000px;}
.y38{bottom:275.430000px;}
.y92{bottom:281.370000px;}
.yc4{bottom:288.030000px;}
.y6d{bottom:290.370000px;}
.y37{bottom:292.710000px;}
.y91{bottom:298.470000px;}
.ya6{bottom:303.510000px;}
.yc3{bottom:305.310000px;}
.y6c{bottom:307.650000px;}
.y36{bottom:309.990000px;}
.y90{bottom:315.750000px;}
.yc2{bottom:322.590000px;}
.y6b{bottom:324.750000px;}
.y35{bottom:327.270000px;}
.y8f{bottom:333.030000px;}
.yc1{bottom:339.870000px;}
.y6a{bottom:342.030000px;}
.y34{bottom:344.550000px;}
.y8e{bottom:350.310000px;}
.yc0{bottom:356.970000px;}
.y69{bottom:359.310000px;}
.y33{bottom:361.650000px;}
.y8d{bottom:367.590000px;}
.ybf{bottom:374.250000px;}
.y68{bottom:376.590000px;}
.y32{bottom:378.930000px;}
.y8c{bottom:384.870000px;}
.ybe{bottom:391.530000px;}
.y67{bottom:393.870000px;}
.y31{bottom:396.210000px;}
.y8b{bottom:401.970000px;}
.ybd{bottom:408.810000px;}
.y66{bottom:411.150000px;}
.y30{bottom:413.490000px;}
.y8a{bottom:419.250000px;}
.ybc{bottom:426.090000px;}
.y65{bottom:428.250000px;}
.y2f{bottom:430.770000px;}
.y89{bottom:436.530000px;}
.ybb{bottom:443.370000px;}
.y64{bottom:445.530000px;}
.y2e{bottom:448.095000px;}
.y88{bottom:450.615000px;}
.yba{bottom:460.515000px;}
.y63{bottom:462.855000px;}
.y2d{bottom:465.195000px;}
.yb9{bottom:477.795000px;}
.y62{bottom:480.135000px;}
.y2c{bottom:482.475000px;}
.ya2{bottom:492.195000px;}
.yb8{bottom:495.075000px;}
.y61{bottom:497.415000px;}
.y2b{bottom:499.755000px;}
.ya1{bottom:506.775000px;}
.yb7{bottom:512.355000px;}
.y60{bottom:514.515000px;}
.y2a{bottom:517.035000px;}
.yb6{bottom:529.635000px;}
.y5f{bottom:531.795000px;}
.y29{bottom:534.315000px;}
.ya0{bottom:542.055000px;}
.yb5{bottom:546.735000px;}
.y5e{bottom:549.075000px;}
.y28{bottom:551.415000px;}
.yb4{bottom:564.015000px;}
.y5d{bottom:566.355000px;}
.y27{bottom:568.695000px;}
.y9f{bottom:577.335000px;}
.y83{bottom:579.855000px;}
.yb3{bottom:581.295000px;}
.y5c{bottom:583.635000px;}
.y26{bottom:585.975000px;}
.y9e{bottom:595.335000px;}
.y82{bottom:597.135000px;}
.yb2{bottom:598.575000px;}
.y5b{bottom:600.915000px;}
.y25{bottom:603.255000px;}
.y80{bottom:611.895000px;}
.yb1{bottom:615.855000px;}
.y5a{bottom:618.015000px;}
.y24{bottom:622.695000px;}
.y9d{bottom:630.615000px;}
.yb0{bottom:633.135000px;}
.y59{bottom:635.295000px;}
.y23{bottom:639.975000px;}
.yaf{bottom:646.995000px;}
.y58{bottom:652.575000px;}
.y22{bottom:657.255000px;}
.y7d{bottom:664.275000px;}
.y9c{bottom:665.895000px;}
.y57{bottom:669.855000px;}
.y21{bottom:674.535000px;}
.y56{bottom:687.165000px;}
.y20{bottom:691.845000px;}
.y55{bottom:704.445000px;}
.y1f{bottom:708.945000px;}
.y7b{bottom:716.865000px;}
.y54{bottom:721.545000px;}
.y1e{bottom:726.225000px;}
.y53{bottom:738.825000px;}
.y1d{bottom:743.505000px;}
.y52{bottom:756.105000px;}
.y1c{bottom:760.785000px;}
.y78{bottom:769.425000px;}
.y51{bottom:773.385000px;}
.y1b{bottom:778.065000px;}
.y50{bottom:790.665000px;}
.y1a{bottom:795.345000px;}
.y4f{bottom:807.945000px;}
.y19{bottom:812.445000px;}
.y4e{bottom:825.045000px;}
.y18{bottom:829.725000px;}
.y4d{bottom:842.325000px;}
.y17{bottom:847.005000px;}
.y4c{bottom:859.605000px;}
.y16{bottom:864.285000px;}
.y4b{bottom:876.885000px;}
.y15{bottom:881.565000px;}
.y4a{bottom:894.165000px;}
.y14{bottom:898.665000px;}
.y49{bottom:911.265000px;}
.y13{bottom:915.945000px;}
.y48{bottom:928.590000px;}
.y12{bottom:935.430000px;}
.y47{bottom:945.870000px;}
.y11{bottom:953.250000px;}
.y46{bottom:963.150000px;}
.y10{bottom:972.150000px;}
.yae{bottom:978.810000px;}
.y45{bottom:980.430000px;}
.yf{bottom:990.690000px;}
.yad{bottom:996.090000px;}
.y44{bottom:997.710000px;}
.ye{bottom:1008.690000px;}
.yac{bottom:1010.850000px;}
.y43{bottom:1014.810000px;}
.yd{bottom:1029.390000px;}
.y42{bottom:1032.090000px;}
.y9{bottom:1050.630000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h10{height:17.280000px;}
.he{height:17.316000px;}
.ha{height:34.380000px;}
.hf{height:34.560000px;}
.h5{height:42.164648px;}
.h9{height:43.302656px;}
.h11{height:43.506914px;}
.h8{height:46.736719px;}
.h7{height:47.276367px;}
.h4{height:50.800781px;}
.hd{height:51.660000px;}
.hb{height:51.840000px;}
.hc{height:51.876000px;}
.h2{height:52.319180px;}
.h3{height:57.992344px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:101.700000px;}
.we{width:122.796000px;}
.wb{width:135.756000px;}
.w7{width:138.960000px;}
.wd{width:162.570000px;}
.w4{width:165.090000px;}
.wc{width:166.890000px;}
.w6{width:168.870000px;}
.w3{width:173.910000px;}
.w5{width:182.550000px;}
.w8{width:255.315000px;}
.w9{width:296.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.xf{left:100.296000px;}
.x2{left:108.035987px;}
.x26{left:114.695987px;}
.x15{left:117.755987px;}
.x1{left:128.015987px;}
.x2a{left:135.035987px;}
.x8{left:149.255987px;}
.x18{left:153.389987px;}
.x5{left:157.169987px;}
.xc{left:162.029987px;}
.x21{left:202.710000px;}
.x1b{left:239.970000px;}
.xe{left:245.369987px;}
.x29{left:258.329987px;}
.x1a{left:262.334987px;}
.xd{left:264.134987px;}
.x11{left:274.935000px;}
.x20{left:278.534987px;}
.x9{left:287.174987px;}
.xb{left:305.354987px;}
.x22{left:339.195000px;}
.x16{left:363.854987px;}
.x19{left:384.374987px;}
.x7{left:386.354987px;}
.x1f{left:392.474987px;}
.x1e{left:395.534987px;}
.x27{left:396.794987px;}
.x28{left:400.754987px;}
.xa{left:409.214987px;}
.x6{left:412.274987px;}
.x12{left:440.745000px;}
.x3{left:446.504987px;}
.x1c{left:496.005000px;}
.x23{left:506.805000px;}
.x4{left:518.504987px;}
.x13{left:624.030000px;}
.x17{left:626.549987px;}
.x14{left:634.469987px;}
.x25{left:640.049987px;}
.x1d{left:665.969987px;}
.x24{left:670.110000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.232640pt;}
.ls6{letter-spacing:14.880000pt;}
.ls7{letter-spacing:19.152640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._37{margin-left:-7.286613pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._f{width:2.269653pt;}
._2{width:3.680853pt;}
._7{width:4.864213pt;}
._b{width:6.473813pt;}
._d{width:7.695573pt;}
._c{width:8.605440pt;}
._10{width:9.926613pt;}
._13{width:10.934827pt;}
._12{width:12.164480pt;}
._11{width:14.236160pt;}
._a{width:15.344853pt;}
._9{width:16.254720pt;}
._28{width:17.303467pt;}
._e{width:18.797653pt;}
._14{width:20.547413pt;}
._6{width:21.445760pt;}
._5{width:22.469760pt;}
._8{width:23.374933pt;}
._1c{width:24.807040pt;}
._32{width:27.456213pt;}
._1f{width:28.578560pt;}
._26{width:32.137600pt;}
._25{width:33.465600pt;}
._16{width:34.793600pt;}
._36{width:35.856000pt;}
._33{width:38.080213pt;}
._3d{width:39.680640pt;}
._3c{width:41.061760pt;}
._29{width:45.576960pt;}
._24{width:49.029760pt;}
._23{width:50.251520pt;}
._19{width:52.057600pt;}
._34{width:55.988480pt;}
._15{width:58.750720pt;}
._3b{width:61.478187pt;}
._3a{width:62.469120pt;}
._17{width:67.143680pt;}
._27{width:68.418560pt;}
._39{width:69.959040pt;}
._1a{width:70.862080pt;}
._22{width:72.561920pt;}
._3f{width:80.841813pt;}
._1e{width:85.463253pt;}
._2d{width:88.816640pt;}
._3e{width:100.861653pt;}
._2f{width:101.983573pt;}
._31{width:112.182613pt;}
._38{width:114.592427pt;}
._21{width:115.794773pt;}
._4{width:120.938667pt;}
._2c{width:141.564800pt;}
._18{width:151.332053pt;}
._1b{width:155.528533pt;}
._2e{width:157.235200pt;}
._35{width:158.935040pt;}
._1d{width:168.808533pt;}
._20{width:182.892160pt;}
._2b{width:206.629973pt;}
._30{width:216.464000pt;}
._2a{width:219.704320pt;}
._3{width:566.138667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:2.880000pt;}
.yaa{bottom:18.080000pt;}
.y79{bottom:18.240000pt;}
.y7f{bottom:18.266667pt;}
.yc{bottom:32.640000pt;}
.y81{bottom:33.440000pt;}
.y7c{bottom:33.600000pt;}
.y7e{bottom:33.626667pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.880000pt;}
.yab{bottom:98.560000pt;}
.ya5{bottom:98.720000pt;}
.yce{bottom:102.720000pt;}
.y77{bottom:104.800000pt;}
.y41{bottom:106.880000pt;}
.y87{bottom:107.360000pt;}
.y9b{bottom:112.000000pt;}
.ya4{bottom:114.080000pt;}
.ycd{bottom:118.080000pt;}
.y76{bottom:120.000000pt;}
.y40{bottom:122.240000pt;}
.y86{bottom:122.720000pt;}
.ya3{bottom:126.560000pt;}
.y9a{bottom:127.360000pt;}
.ya9{bottom:129.920000pt;}
.ycc{bottom:133.440000pt;}
.y75{bottom:135.360000pt;}
.y3f{bottom:137.440000pt;}
.y85{bottom:138.080000pt;}
.y99{bottom:142.720000pt;}
.ycb{bottom:148.640000pt;}
.y84{bottom:150.400000pt;}
.y74{bottom:150.720000pt;}
.y3e{bottom:152.800000pt;}
.y98{bottom:158.080000pt;}
.yca{bottom:164.000000pt;}
.y73{bottom:166.080000pt;}
.y3d{bottom:168.160000pt;}
.y97{bottom:173.280000pt;}
.ya8{bottom:176.480000pt;}
.yc9{bottom:179.360000pt;}
.y72{bottom:181.440000pt;}
.y3c{bottom:183.520000pt;}
.y96{bottom:188.640000pt;}
.yc8{bottom:194.746667pt;}
.y71{bottom:196.666667pt;}
.y3b{bottom:198.906667pt;}
.y95{bottom:204.026667pt;}
.yc7{bottom:210.106667pt;}
.y70{bottom:212.026667pt;}
.y3a{bottom:214.266667pt;}
.y94{bottom:219.386667pt;}
.ya7{bottom:223.226667pt;}
.yc6{bottom:225.306667pt;}
.y6f{bottom:227.386667pt;}
.y39{bottom:229.466667pt;}
.y93{bottom:234.746667pt;}
.yc5{bottom:240.666667pt;}
.y6e{bottom:242.746667pt;}
.y38{bottom:244.826667pt;}
.y92{bottom:250.106667pt;}
.yc4{bottom:256.026667pt;}
.y6d{bottom:258.106667pt;}
.y37{bottom:260.186667pt;}
.y91{bottom:265.306667pt;}
.ya6{bottom:269.786667pt;}
.yc3{bottom:271.386667pt;}
.y6c{bottom:273.466667pt;}
.y36{bottom:275.546667pt;}
.y90{bottom:280.666667pt;}
.yc2{bottom:286.746667pt;}
.y6b{bottom:288.666667pt;}
.y35{bottom:290.906667pt;}
.y8f{bottom:296.026667pt;}
.yc1{bottom:302.106667pt;}
.y6a{bottom:304.026667pt;}
.y34{bottom:306.266667pt;}
.y8e{bottom:311.386667pt;}
.yc0{bottom:317.306667pt;}
.y69{bottom:319.386667pt;}
.y33{bottom:321.466667pt;}
.y8d{bottom:326.746667pt;}
.ybf{bottom:332.666667pt;}
.y68{bottom:334.746667pt;}
.y32{bottom:336.826667pt;}
.y8c{bottom:342.106667pt;}
.ybe{bottom:348.026667pt;}
.y67{bottom:350.106667pt;}
.y31{bottom:352.186667pt;}
.y8b{bottom:357.306667pt;}
.ybd{bottom:363.386667pt;}
.y66{bottom:365.466667pt;}
.y30{bottom:367.546667pt;}
.y8a{bottom:372.666667pt;}
.ybc{bottom:378.746667pt;}
.y65{bottom:380.666667pt;}
.y2f{bottom:382.906667pt;}
.y89{bottom:388.026667pt;}
.ybb{bottom:394.106667pt;}
.y64{bottom:396.026667pt;}
.y2e{bottom:398.306667pt;}
.y88{bottom:400.546667pt;}
.yba{bottom:409.346667pt;}
.y63{bottom:411.426667pt;}
.y2d{bottom:413.506667pt;}
.yb9{bottom:424.706667pt;}
.y62{bottom:426.786667pt;}
.y2c{bottom:428.866667pt;}
.ya2{bottom:437.506667pt;}
.yb8{bottom:440.066667pt;}
.y61{bottom:442.146667pt;}
.y2b{bottom:444.226667pt;}
.ya1{bottom:450.466667pt;}
.yb7{bottom:455.426667pt;}
.y60{bottom:457.346667pt;}
.y2a{bottom:459.586667pt;}
.yb6{bottom:470.786667pt;}
.y5f{bottom:472.706667pt;}
.y29{bottom:474.946667pt;}
.ya0{bottom:481.826667pt;}
.yb5{bottom:485.986667pt;}
.y5e{bottom:488.066667pt;}
.y28{bottom:490.146667pt;}
.yb4{bottom:501.346667pt;}
.y5d{bottom:503.426667pt;}
.y27{bottom:505.506667pt;}
.y9f{bottom:513.186667pt;}
.y83{bottom:515.426667pt;}
.yb3{bottom:516.706667pt;}
.y5c{bottom:518.786667pt;}
.y26{bottom:520.866667pt;}
.y9e{bottom:529.186667pt;}
.y82{bottom:530.786667pt;}
.yb2{bottom:532.066667pt;}
.y5b{bottom:534.146667pt;}
.y25{bottom:536.226667pt;}
.y80{bottom:543.906667pt;}
.yb1{bottom:547.426667pt;}
.y5a{bottom:549.346667pt;}
.y24{bottom:553.506667pt;}
.y9d{bottom:560.546667pt;}
.yb0{bottom:562.786667pt;}
.y59{bottom:564.706667pt;}
.y23{bottom:568.866667pt;}
.yaf{bottom:575.106667pt;}
.y58{bottom:580.066667pt;}
.y22{bottom:584.226667pt;}
.y7d{bottom:590.466667pt;}
.y9c{bottom:591.906667pt;}
.y57{bottom:595.426667pt;}
.y21{bottom:599.586667pt;}
.y56{bottom:610.813333pt;}
.y20{bottom:614.973333pt;}
.y55{bottom:626.173333pt;}
.y1f{bottom:630.173333pt;}
.y7b{bottom:637.213333pt;}
.y54{bottom:641.373333pt;}
.y1e{bottom:645.533333pt;}
.y53{bottom:656.733333pt;}
.y1d{bottom:660.893333pt;}
.y52{bottom:672.093333pt;}
.y1c{bottom:676.253333pt;}
.y78{bottom:683.933333pt;}
.y51{bottom:687.453333pt;}
.y1b{bottom:691.613333pt;}
.y50{bottom:702.813333pt;}
.y1a{bottom:706.973333pt;}
.y4f{bottom:718.173333pt;}
.y19{bottom:722.173333pt;}
.y4e{bottom:733.373333pt;}
.y18{bottom:737.533333pt;}
.y4d{bottom:748.733333pt;}
.y17{bottom:752.893333pt;}
.y4c{bottom:764.093333pt;}
.y16{bottom:768.253333pt;}
.y4b{bottom:779.453333pt;}
.y15{bottom:783.613333pt;}
.y4a{bottom:794.813333pt;}
.y14{bottom:798.813333pt;}
.y49{bottom:810.013333pt;}
.y13{bottom:814.173333pt;}
.y48{bottom:825.413333pt;}
.y12{bottom:831.493333pt;}
.y47{bottom:840.773333pt;}
.y11{bottom:847.333333pt;}
.y46{bottom:856.133333pt;}
.y10{bottom:864.133333pt;}
.yae{bottom:870.053333pt;}
.y45{bottom:871.493333pt;}
.yf{bottom:880.613333pt;}
.yad{bottom:885.413333pt;}
.y44{bottom:886.853333pt;}
.ye{bottom:896.613333pt;}
.yac{bottom:898.533333pt;}
.y43{bottom:902.053333pt;}
.yd{bottom:915.013333pt;}
.y42{bottom:917.413333pt;}
.y9{bottom:933.893333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h10{height:15.360000pt;}
.he{height:15.392000pt;}
.ha{height:30.560000pt;}
.hf{height:30.720000pt;}
.h5{height:37.479688pt;}
.h9{height:38.491250pt;}
.h11{height:38.672812pt;}
.h8{height:41.543750pt;}
.h7{height:42.023438pt;}
.h4{height:45.156250pt;}
.hd{height:45.920000pt;}
.hb{height:46.080000pt;}
.hc{height:46.112000pt;}
.h2{height:46.505938pt;}
.h3{height:51.548750pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:90.400000pt;}
.we{width:109.152000pt;}
.wb{width:120.672000pt;}
.w7{width:123.520000pt;}
.wd{width:144.506667pt;}
.w4{width:146.746667pt;}
.wc{width:148.346667pt;}
.w6{width:150.106667pt;}
.w3{width:154.586667pt;}
.w5{width:162.266667pt;}
.w8{width:226.946667pt;}
.w9{width:263.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.xf{left:89.152000pt;}
.x2{left:96.031988pt;}
.x26{left:101.951988pt;}
.x15{left:104.671988pt;}
.x1{left:113.791988pt;}
.x2a{left:120.031988pt;}
.x8{left:132.671988pt;}
.x18{left:136.346655pt;}
.x5{left:139.706655pt;}
.xc{left:144.026655pt;}
.x21{left:180.186667pt;}
.x1b{left:213.306667pt;}
.xe{left:218.106655pt;}
.x29{left:229.626655pt;}
.x1a{left:233.186655pt;}
.xd{left:234.786655pt;}
.x11{left:244.386667pt;}
.x20{left:247.586655pt;}
.x9{left:255.266655pt;}
.xb{left:271.426655pt;}
.x22{left:301.506667pt;}
.x16{left:323.426655pt;}
.x19{left:341.666655pt;}
.x7{left:343.426655pt;}
.x1f{left:348.866655pt;}
.x1e{left:351.586655pt;}
.x27{left:352.706655pt;}
.x28{left:356.226655pt;}
.xa{left:363.746655pt;}
.x6{left:366.466655pt;}
.x12{left:391.773333pt;}
.x3{left:396.893322pt;}
.x1c{left:440.893333pt;}
.x23{left:450.493333pt;}
.x4{left:460.893322pt;}
.x13{left:554.693333pt;}
.x17{left:556.933322pt;}
.x14{left:563.973322pt;}
.x25{left:568.933322pt;}
.x1d{left:591.973322pt;}
.x24{left:595.653333pt;}
}




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