
    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_6254dcb5a03141a216566577.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_02fa763315cc64c2459433e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ff56235a89cb449bc8c96fe5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_544fc756b95169040cd88b08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_7b1c0746c4a579a7471d97bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_8933a93ea1abe88456001ac6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_607014037b4b54f1c071006d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58444be85cca8d7ca565ee65.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2b94cdc351bc1120da727679.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_e95bbde43b7ef1d3adea107e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-92.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls9{letter-spacing:-2.622000px;}
.ls14{letter-spacing:-0.378600px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.180000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.037440px;}
.ls4{letter-spacing:0.148080px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls1d{letter-spacing:0.274800px;}
.ls17{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.369360px;}
.ls13{letter-spacing:0.378600px;}
.ls6{letter-spacing:0.540000px;}
.ls1b{letter-spacing:3.420000px;}
.ls12{letter-spacing:4.500000px;}
.ls19{letter-spacing:4.860000px;}
.lsf{letter-spacing:9.180000px;}
.ls5{letter-spacing:9.900000px;}
.ls15{letter-spacing:33.660000px;}
.ls10{letter-spacing:41.580000px;}
.lse{letter-spacing:50.220000px;}
.ls1c{letter-spacing:169.541280px;}
.ls18{letter-spacing:211.301280px;}
.lsb{letter-spacing:217.980000px;}
.ls3{letter-spacing:303.084000px;}
.ls1{letter-spacing:407.640000px;}
.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;}
}
.wsa{word-spacing:-21.438600px;}
.wse{word-spacing:-21.420000px;}
.wsd{word-spacing:-21.410400px;}
.wsf{word-spacing:-21.334800px;}
.wsb{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.wsc{word-spacing:-20.681400px;}
.ws1{word-spacing:-19.800000px;}
.ws0{word-spacing:-19.620000px;}
.ws2{word-spacing:-14.970240px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.348240px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-4.801680px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.121760px;}
._2{width:1.005840px;}
._3{width:2.245920px;}
._6{width:3.875040px;}
._26{width:5.000160px;}
._4{width:6.149520px;}
._7{width:7.750080px;}
._8{width:9.124560px;}
._13{width:10.698480px;}
._15{width:11.984880px;}
._d{width:13.394160px;}
._11{width:14.489040px;}
._c{width:15.500160px;}
._5{width:17.295840px;}
._b{width:18.812160px;}
._12{width:19.907280px;}
._29{width:22.939920px;}
._a{width:24.961680px;}
._1c{width:26.451360px;}
._2a{width:27.547200px;}
._e{width:28.641600px;}
._f{width:29.763360px;}
._10{width:31.731840px;}
._1d{width:33.722640px;}
._17{width:35.004240px;}
._16{width:36.054720px;}
._30{width:39.539520px;}
._19{width:40.626000px;}
._18{width:41.698800px;}
._2f{width:42.709680px;}
._2b{width:44.057520px;}
._9{width:45.573840px;}
._21{width:46.584720px;}
._24{width:50.138880px;}
._2c{width:51.875760px;}
._23{width:60.652800px;}
._22{width:61.688880px;}
._2e{width:65.929920px;}
._1e{width:71.182800px;}
._1f{width:72.309600px;}
._34{width:80.079840px;}
._27{width:81.207360px;}
._28{width:82.750320px;}
._25{width:86.916000px;}
._31{width:93.027600px;}
._33{width:94.149360px;}
._32{width:95.290320px;}
._35{width:96.312960px;}
._20{width:97.565520px;}
._2d{width:189.928080px;}
._1a{width:217.980000px;}
._14{width:303.084000px;}
.fc4{color:rgb(54,95,145);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y4e{bottom:8.100000px;}
.y63{bottom:8.280000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y60{bottom:35.820000px;}
.y53{bottom:36.000000px;}
.y7f{bottom:38.880000px;}
.y58{bottom:39.420000px;}
.y57{bottom:43.920000px;}
.y30{bottom:46.800000px;}
.y7e{bottom:54.360000px;}
.y56{bottom:55.620000px;}
.y7d{bottom:58.860000px;}
.y55{bottom:60.840000px;}
.y5c{bottom:63.720000px;}
.y52{bottom:63.750000px;}
.y5f{bottom:63.765000px;}
.y89{bottom:65.700000px;}
.y7c{bottom:69.840000px;}
.y2{bottom:72.720000px;}
.y54{bottom:73.260000px;}
.y2f{bottom:74.520000px;}
.y7b{bottom:85.320000px;}
.y7a{bottom:89.820000px;}
.y5b{bottom:91.440000px;}
.y51{bottom:91.470000px;}
.y5e{bottom:91.485000px;}
.y88{bottom:93.600000px;}
.y79{bottom:100.980000px;}
.y2e{bottom:102.420000px;}
.y78{bottom:116.460000px;}
.y5a{bottom:119.160000px;}
.y62{bottom:119.340000px;}
.y50{bottom:119.370000px;}
.y77{bottom:120.960000px;}
.y87{bottom:121.320000px;}
.y2d{bottom:130.140000px;}
.y76{bottom:131.940000px;}
.y75{bottom:136.440000px;}
.y74{bottom:147.420000px;}
.y86{bottom:149.040000px;}
.y73{bottom:151.920000px;}
.y2c{bottom:157.860000px;}
.y72{bottom:163.800000px;}
.y4f{bottom:164.160000px;}
.y85{bottom:176.760000px;}
.y2b{bottom:185.580000px;}
.y71{bottom:200.160000px;}
.y84{bottom:204.660000px;}
.y2a{bottom:213.510000px;}
.y70{bottom:227.910000px;}
.y83{bottom:232.410000px;}
.y29{bottom:241.230000px;}
.y6f{bottom:255.630000px;}
.y82{bottom:260.130000px;}
.y28{bottom:268.950000px;}
.y6e{bottom:283.530000px;}
.y81{bottom:288.030000px;}
.y27{bottom:296.670000px;}
.y4d{bottom:303.870000px;}
.y6d{bottom:311.250000px;}
.y80{bottom:315.750000px;}
.y26{bottom:324.570000px;}
.y6c{bottom:338.970000px;}
.y4b{bottom:343.470000px;}
.y4c{bottom:351.030000px;}
.y25{bottom:352.290000px;}
.y6b{bottom:366.690000px;}
.y4a{bottom:371.190000px;}
.y24{bottom:380.010000px;}
.y6a{bottom:394.590000px;}
.y49{bottom:399.090000px;}
.y23{bottom:407.910000px;}
.y69{bottom:422.310000px;}
.y48{bottom:426.810000px;}
.y22{bottom:435.630000px;}
.y68{bottom:450.075000px;}
.y47{bottom:454.575000px;}
.y21{bottom:463.395000px;}
.y67{bottom:477.975000px;}
.y46{bottom:482.475000px;}
.y20{bottom:491.115000px;}
.y66{bottom:505.695000px;}
.y45{bottom:510.195000px;}
.y1f{bottom:519.015000px;}
.y65{bottom:526.035000px;}
.y44{bottom:537.915000px;}
.y1e{bottom:546.735000px;}
.y43{bottom:565.635000px;}
.y1d{bottom:574.455000px;}
.y42{bottom:593.535000px;}
.y1c{bottom:602.355000px;}
.y64{bottom:610.095000px;}
.y41{bottom:621.255000px;}
.y1b{bottom:630.075000px;}
.y40{bottom:648.975000px;}
.y1a{bottom:657.795000px;}
.y3f{bottom:676.695000px;}
.y19{bottom:685.545000px;}
.y3e{bottom:704.625000px;}
.y18{bottom:713.445000px;}
.y61{bottom:721.905000px;}
.y3d{bottom:732.345000px;}
.y17{bottom:741.165000px;}
.y3c{bottom:760.065000px;}
.y16{bottom:768.885000px;}
.y3b{bottom:787.965000px;}
.y15{bottom:796.605000px;}
.y3a{bottom:815.685000px;}
.y14{bottom:824.505000px;}
.y39{bottom:843.405000px;}
.y13{bottom:852.225000px;}
.y5d{bottom:861.585000px;}
.y38{bottom:871.125000px;}
.y12{bottom:879.945000px;}
.y37{bottom:899.025000px;}
.y11{bottom:907.845000px;}
.y36{bottom:926.790000px;}
.y10{bottom:935.610000px;}
.y35{bottom:954.510000px;}
.yf{bottom:963.330000px;}
.y59{bottom:973.410000px;}
.y34{bottom:982.410000px;}
.ye{bottom:991.050000px;}
.y33{bottom:1010.130000px;}
.yd{bottom:1018.950000px;}
.y32{bottom:1037.850000px;}
.y31{bottom:1065.570000px;}
.yc{bottom:1069.890000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.hf{height:27.720000px;}
.h13{height:35.332031px;}
.h12{height:38.158594px;}
.h3{height:48.224531px;}
.h1a{height:52.998047px;}
.h14{height:53.709961px;}
.he{height:54.421875px;}
.h8{height:58.651172px;}
.hd{height:59.436914px;}
.ha{height:65.010937px;}
.h6{height:65.884219px;}
.hc{height:74.244727px;}
.h4{height:75.849609px;}
.hb{height:82.676953px;}
.h11{height:83.238047px;}
.h19{height:83.340000px;}
.h18{height:83.358047px;}
.h9{height:84.898125px;}
.h1b{height:86.585445px;}
.h2{height:92.340000px;}
.h16{height:111.096000px;}
.h15{height:138.780000px;}
.h17{height:138.960000px;}
.h10{height:138.996000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.800000px;}
.w7{width:158.790000px;}
.w3{width:207.255000px;}
.w8{width:530.745000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w6{width:893.339973px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x13{left:7.740000px;}
.x10{left:33.300000px;}
.x4{left:62.280000px;}
.x7{left:63.899987px;}
.x15{left:68.759987px;}
.x16{left:81.894000px;}
.xa{left:85.175987px;}
.xf{left:96.156000px;}
.x8{left:126.755987px;}
.x1{left:137.736000px;}
.xc{left:224.309987px;}
.x12{left:225.570000px;}
.x11{left:255.675000px;}
.x14{left:279.974987px;}
.x17{left:302.294987px;}
.x2{left:340.269000px;}
.x9{left:371.594987px;}
.xd{left:673.169973px;}
.xe{left:680.009987px;}
.x5{left:752.580000px;}
.xb{left:766.979987px;}
@media print{
.v1{vertical-align:-82.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls9{letter-spacing:-2.330667pt;}
.ls14{letter-spacing:-0.336533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.033280pt;}
.ls4{letter-spacing:0.131627pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls1d{letter-spacing:0.244267pt;}
.ls17{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.328320pt;}
.ls13{letter-spacing:0.336533pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:3.040000pt;}
.ls12{letter-spacing:4.000000pt;}
.ls19{letter-spacing:4.320000pt;}
.lsf{letter-spacing:8.160000pt;}
.ls5{letter-spacing:8.800000pt;}
.ls15{letter-spacing:29.920000pt;}
.ls10{letter-spacing:36.960000pt;}
.lse{letter-spacing:44.640000pt;}
.ls1c{letter-spacing:150.703360pt;}
.ls18{letter-spacing:187.823360pt;}
.lsb{letter-spacing:193.760000pt;}
.ls3{letter-spacing:269.408000pt;}
.ls1{letter-spacing:362.346667pt;}
.wsa{word-spacing:-19.056533pt;}
.wse{word-spacing:-19.040000pt;}
.wsd{word-spacing:-19.031467pt;}
.wsf{word-spacing:-18.964267pt;}
.wsb{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.wsc{word-spacing:-18.383467pt;}
.ws1{word-spacing:-17.600000pt;}
.ws0{word-spacing:-17.440000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.976213pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-4.268160pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-0.997120pt;}
._2{width:0.894080pt;}
._3{width:1.996373pt;}
._6{width:3.444480pt;}
._26{width:4.444587pt;}
._4{width:5.466240pt;}
._7{width:6.888960pt;}
._8{width:8.110720pt;}
._13{width:9.509760pt;}
._15{width:10.653227pt;}
._d{width:11.905920pt;}
._11{width:12.879147pt;}
._c{width:13.777920pt;}
._5{width:15.374080pt;}
._b{width:16.721920pt;}
._12{width:17.695360pt;}
._29{width:20.391040pt;}
._a{width:22.188160pt;}
._1c{width:23.512320pt;}
._2a{width:24.486400pt;}
._e{width:25.459200pt;}
._f{width:26.456320pt;}
._10{width:28.206080pt;}
._1d{width:29.975680pt;}
._17{width:31.114880pt;}
._16{width:32.048640pt;}
._30{width:35.146240pt;}
._19{width:36.112000pt;}
._18{width:37.065600pt;}
._2f{width:37.964160pt;}
._2b{width:39.162240pt;}
._9{width:40.510080pt;}
._21{width:41.408640pt;}
._24{width:44.567893pt;}
._2c{width:46.111787pt;}
._23{width:53.913600pt;}
._22{width:54.834560pt;}
._2e{width:58.604373pt;}
._1e{width:63.273600pt;}
._1f{width:64.275200pt;}
._34{width:71.182080pt;}
._27{width:72.184320pt;}
._28{width:73.555840pt;}
._25{width:77.258667pt;}
._31{width:82.691200pt;}
._33{width:83.688320pt;}
._32{width:84.702507pt;}
._35{width:85.611520pt;}
._20{width:86.724907pt;}
._2d{width:168.824960pt;}
._1a{width:193.760000pt;}
._14{width:269.408000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y4e{bottom:7.200000pt;}
.y63{bottom:7.360000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y60{bottom:31.840000pt;}
.y53{bottom:32.000000pt;}
.y7f{bottom:34.560000pt;}
.y58{bottom:35.040000pt;}
.y57{bottom:39.040000pt;}
.y30{bottom:41.600000pt;}
.y7e{bottom:48.320000pt;}
.y56{bottom:49.440000pt;}
.y7d{bottom:52.320000pt;}
.y55{bottom:54.080000pt;}
.y5c{bottom:56.640000pt;}
.y52{bottom:56.666667pt;}
.y5f{bottom:56.680000pt;}
.y89{bottom:58.400000pt;}
.y7c{bottom:62.080000pt;}
.y2{bottom:64.640000pt;}
.y54{bottom:65.120000pt;}
.y2f{bottom:66.240000pt;}
.y7b{bottom:75.840000pt;}
.y7a{bottom:79.840000pt;}
.y5b{bottom:81.280000pt;}
.y51{bottom:81.306667pt;}
.y5e{bottom:81.320000pt;}
.y88{bottom:83.200000pt;}
.y79{bottom:89.760000pt;}
.y2e{bottom:91.040000pt;}
.y78{bottom:103.520000pt;}
.y5a{bottom:105.920000pt;}
.y62{bottom:106.080000pt;}
.y50{bottom:106.106667pt;}
.y77{bottom:107.520000pt;}
.y87{bottom:107.840000pt;}
.y2d{bottom:115.680000pt;}
.y76{bottom:117.280000pt;}
.y75{bottom:121.280000pt;}
.y74{bottom:131.040000pt;}
.y86{bottom:132.480000pt;}
.y73{bottom:135.040000pt;}
.y2c{bottom:140.320000pt;}
.y72{bottom:145.600000pt;}
.y4f{bottom:145.920000pt;}
.y85{bottom:157.120000pt;}
.y2b{bottom:164.960000pt;}
.y71{bottom:177.920000pt;}
.y84{bottom:181.920000pt;}
.y2a{bottom:189.786667pt;}
.y70{bottom:202.586667pt;}
.y83{bottom:206.586667pt;}
.y29{bottom:214.426667pt;}
.y6f{bottom:227.226667pt;}
.y82{bottom:231.226667pt;}
.y28{bottom:239.066667pt;}
.y6e{bottom:252.026667pt;}
.y81{bottom:256.026667pt;}
.y27{bottom:263.706667pt;}
.y4d{bottom:270.106667pt;}
.y6d{bottom:276.666667pt;}
.y80{bottom:280.666667pt;}
.y26{bottom:288.506667pt;}
.y6c{bottom:301.306667pt;}
.y4b{bottom:305.306667pt;}
.y4c{bottom:312.026667pt;}
.y25{bottom:313.146667pt;}
.y6b{bottom:325.946667pt;}
.y4a{bottom:329.946667pt;}
.y24{bottom:337.786667pt;}
.y6a{bottom:350.746667pt;}
.y49{bottom:354.746667pt;}
.y23{bottom:362.586667pt;}
.y69{bottom:375.386667pt;}
.y48{bottom:379.386667pt;}
.y22{bottom:387.226667pt;}
.y68{bottom:400.066667pt;}
.y47{bottom:404.066667pt;}
.y21{bottom:411.906667pt;}
.y67{bottom:424.866667pt;}
.y46{bottom:428.866667pt;}
.y20{bottom:436.546667pt;}
.y66{bottom:449.506667pt;}
.y45{bottom:453.506667pt;}
.y1f{bottom:461.346667pt;}
.y65{bottom:467.586667pt;}
.y44{bottom:478.146667pt;}
.y1e{bottom:485.986667pt;}
.y43{bottom:502.786667pt;}
.y1d{bottom:510.626667pt;}
.y42{bottom:527.586667pt;}
.y1c{bottom:535.426667pt;}
.y64{bottom:542.306667pt;}
.y41{bottom:552.226667pt;}
.y1b{bottom:560.066667pt;}
.y40{bottom:576.866667pt;}
.y1a{bottom:584.706667pt;}
.y3f{bottom:601.506667pt;}
.y19{bottom:609.373333pt;}
.y3e{bottom:626.333333pt;}
.y18{bottom:634.173333pt;}
.y61{bottom:641.693333pt;}
.y3d{bottom:650.973333pt;}
.y17{bottom:658.813333pt;}
.y3c{bottom:675.613333pt;}
.y16{bottom:683.453333pt;}
.y3b{bottom:700.413333pt;}
.y15{bottom:708.093333pt;}
.y3a{bottom:725.053333pt;}
.y14{bottom:732.893333pt;}
.y39{bottom:749.693333pt;}
.y13{bottom:757.533333pt;}
.y5d{bottom:765.853333pt;}
.y38{bottom:774.333333pt;}
.y12{bottom:782.173333pt;}
.y37{bottom:799.133333pt;}
.y11{bottom:806.973333pt;}
.y36{bottom:823.813333pt;}
.y10{bottom:831.653333pt;}
.y35{bottom:848.453333pt;}
.yf{bottom:856.293333pt;}
.y59{bottom:865.253333pt;}
.y34{bottom:873.253333pt;}
.ye{bottom:880.933333pt;}
.y33{bottom:897.893333pt;}
.yd{bottom:905.733333pt;}
.y32{bottom:922.533333pt;}
.y31{bottom:947.173333pt;}
.yc{bottom:951.013333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.hf{height:24.640000pt;}
.h13{height:31.406250pt;}
.h12{height:33.918750pt;}
.h3{height:42.866250pt;}
.h1a{height:47.109375pt;}
.h14{height:47.742188pt;}
.he{height:48.375000pt;}
.h8{height:52.134375pt;}
.hd{height:52.832812pt;}
.ha{height:57.787500pt;}
.h6{height:58.563750pt;}
.hc{height:65.995312pt;}
.h4{height:67.421875pt;}
.hb{height:73.490625pt;}
.h11{height:73.989375pt;}
.h19{height:74.080000pt;}
.h18{height:74.096042pt;}
.h9{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h2{height:82.080000pt;}
.h16{height:98.752000pt;}
.h15{height:123.360000pt;}
.h17{height:123.520000pt;}
.h10{height:123.552000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.600000pt;}
.w7{width:141.146667pt;}
.w3{width:184.226667pt;}
.w8{width:471.773333pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w6{width:794.079976pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x13{left:6.880000pt;}
.x10{left:29.600000pt;}
.x4{left:55.360000pt;}
.x7{left:56.799988pt;}
.x15{left:61.119988pt;}
.x16{left:72.794667pt;}
.xa{left:75.711988pt;}
.xf{left:85.472000pt;}
.x8{left:112.671988pt;}
.x1{left:122.432000pt;}
.xc{left:199.386655pt;}
.x12{left:200.506667pt;}
.x11{left:227.266667pt;}
.x14{left:248.866655pt;}
.x17{left:268.706655pt;}
.x2{left:302.461333pt;}
.x9{left:330.306655pt;}
.xd{left:598.373310pt;}
.xe{left:604.453322pt;}
.x5{left:668.960000pt;}
.xb{left:681.759988pt;}
}




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