
    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_e4a01b0c8b60c6ab5ae4f099.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_f4191e8828f270751f40a01e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_a02fd3ddff96e90e1db3f8ae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_ef44da51c3e6671dd7d34a24.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_84a8f4d25a5b799248a7446f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_5d123772bb4c8abe91c34807.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_dfa5e749991da7ff7e54d589.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_993e09ff35d599fcb36e882e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.368400px;}
.ls1b{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.179400px;}
.ls14{letter-spacing:-0.160800px;}
.ls1f{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls1a{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.084000px;}
.ls18{letter-spacing:-0.063600px;}
.ls1d{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.013320px;}
.ls22{letter-spacing:-0.011160px;}
.ls19{letter-spacing:-0.003240px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.006840px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls16{letter-spacing:0.053280px;}
.ls23{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.116400px;}
.ls24{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180600px;}
.ls20{letter-spacing:0.199200px;}
.ls2{letter-spacing:0.374760px;}
.ls0{letter-spacing:13.347360px;}
.ls11{letter-spacing:63.566640px;}
.ls21{letter-spacing:80.846640px;}
.ls3{letter-spacing:189.366840px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.407000px;}
.ws8{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.344600px;}
.ws16{word-spacing:-13.342800px;}
.ws6{word-spacing:-13.300800px;}
.ws1a{word-spacing:-13.287000px;}
.wse{word-spacing:-13.279680px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.223160px;}
.ws19{word-spacing:-13.215240px;}
.ws14{word-spacing:-13.213080px;}
.ws15{word-spacing:-13.211640px;}
.ws10{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.101000px;}
.ws17{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.047000px;}
.ws2{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.wsf{word-spacing:-12.858000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._c{margin-left:-13.241537px;}
._8{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._2{width:2.440835px;}
._3{width:3.655556px;}
._5{width:4.772889px;}
._7{width:5.911513px;}
._4{width:7.094400px;}
._6{width:8.114998px;}
._b{width:9.739440px;}
._d{width:10.881720px;}
._e{width:11.946720px;}
._9{width:14.304000px;}
._12{width:15.712202px;}
._11{width:16.772040px;}
._10{width:20.029188px;}
._f{width:24.186987px;}
._a{width:176.133600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:7.830000px;}
.y32{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y54{bottom:116.130000px;}
.y7c{bottom:127.020000px;}
.y26{bottom:130.620000px;}
.ya0{bottom:131.160000px;}
.y53{bottom:134.580000px;}
.y7b{bottom:144.570000px;}
.y52{bottom:152.940000px;}
.y9f{bottom:157.710000px;}
.y7a{bottom:162.120000px;}
.y25{bottom:166.260000px;}
.y51{bottom:171.390000px;}
.y9e{bottom:175.260000px;}
.y79{bottom:179.760000px;}
.y24{bottom:183.810000px;}
.y50{bottom:189.750000px;}
.y23{bottom:201.450000px;}
.y9d{bottom:201.900000px;}
.y78{bottom:206.310000px;}
.y4f{bottom:208.200000px;}
.y22{bottom:219.000000px;}
.y9c{bottom:219.450000px;}
.y4e{bottom:226.560000px;}
.y77{bottom:236.280000px;}
.y21{bottom:236.550000px;}
.y4d{bottom:245.010000px;}
.y9b{bottom:246.360000px;}
.y4c{bottom:263.460000px;}
.y76{bottom:263.640000px;}
.y20{bottom:272.190000px;}
.y4b{bottom:281.820000px;}
.y1f{bottom:289.740000px;}
.y75{bottom:291.000000px;}
.y9a{bottom:294.690000px;}
.y4a{bottom:300.270000px;}
.y1e{bottom:307.380000px;}
.y74{bottom:318.270000px;}
.y49{bottom:318.630000px;}
.y99{bottom:321.510000px;}
.y48{bottom:337.080000px;}
.y1d{bottom:342.930000px;}
.y47{bottom:355.530000px;}
.y98{bottom:358.860000px;}
.y1c{bottom:360.480000px;}
.y73{bottom:367.050000px;}
.y46{bottom:373.890000px;}
.y1b{bottom:378.120000px;}
.y72{bottom:384.600000px;}
.y45{bottom:392.340000px;}
.y1a{bottom:395.670000px;}
.y71{bottom:402.150000px;}
.y97{bottom:407.190000px;}
.y44{bottom:410.700000px;}
.y19{bottom:413.310000px;}
.y70{bottom:419.790000px;}
.y96{bottom:424.740000px;}
.y6f{bottom:437.340000px;}
.y43{bottom:438.150000px;}
.y95{bottom:442.380000px;}
.y18{bottom:448.860000px;}
.y94{bottom:459.930000px;}
.y6e{bottom:463.980000px;}
.y17{bottom:466.410000px;}
.y42{bottom:471.210000px;}
.y93{bottom:477.510000px;}
.y16{bottom:484.080000px;}
.y92{bottom:495.150000px;}
.y41{bottom:498.480000px;}
.y6d{bottom:499.560000px;}
.y15{bottom:501.630000px;}
.y91{bottom:512.700000px;}
.y6c{bottom:517.110000px;}
.y14{bottom:519.270000px;}
.y40{bottom:525.840000px;}
.y90{bottom:530.340000px;}
.y6b{bottom:534.750000px;}
.y13{bottom:536.820000px;}
.y8f{bottom:547.890000px;}
.y3f{bottom:553.200000px;}
.y6a{bottom:561.300000px;}
.y12{bottom:563.730000px;}
.y8e{bottom:574.800000px;}
.y3e{bottom:580.560000px;}
.y69{bottom:596.940000px;}
.y3d{bottom:607.830000px;}
.y11{bottom:612.330000px;}
.y68{bottom:614.490000px;}
.y8d{bottom:620.430000px;}
.y3c{bottom:635.190000px;}
.y67{bottom:641.040000px;}
.y8c{bottom:647.790000px;}
.y10{bottom:649.320000px;}
.y3b{bottom:662.550000px;}
.yf{bottom:666.960000px;}
.y8b{bottom:675.150000px;}
.y66{bottom:676.680000px;}
.ye{bottom:684.510000px;}
.y3a{bottom:689.820000px;}
.y65{bottom:694.230000px;}
.yd{bottom:702.060000px;}
.y8a{bottom:702.420000px;}
.y64{bottom:711.780000px;}
.y39{bottom:717.180000px;}
.yc{bottom:719.700000px;}
.y89{bottom:729.780000px;}
.yb{bottom:737.250000px;}
.y63{bottom:738.420000px;}
.y38{bottom:744.540000px;}
.ya{bottom:754.890000px;}
.y88{bottom:757.140000px;}
.y37{bottom:771.900000px;}
.y62{bottom:773.970000px;}
.y9{bottom:781.800000px;}
.y87{bottom:784.500000px;}
.y36{bottom:799.170000px;}
.y61{bottom:809.610000px;}
.y86{bottom:811.770000px;}
.y35{bottom:826.530000px;}
.y60{bottom:827.160000px;}
.y8{bottom:830.040000px;}
.y5f{bottom:844.710000px;}
.y34{bottom:853.890000px;}
.y85{bottom:860.460000px;}
.y7{bottom:865.860000px;}
.y5e{bottom:871.350000px;}
.y33{bottom:881.250000px;}
.y84{bottom:896.100000px;}
.y6{bottom:901.860000px;}
.y5d{bottom:906.900000px;}
.y31{bottom:908.520000px;}
.y83{bottom:913.650000px;}
.y82{bottom:931.290000px;}
.y30{bottom:935.880000px;}
.y5{bottom:937.860000px;}
.y5c{bottom:942.540000px;}
.y81{bottom:948.840000px;}
.y5b{bottom:960.090000px;}
.y2e{bottom:963.240000px;}
.y4{bottom:973.950000px;}
.y5a{bottom:977.640000px;}
.y80{bottom:981.060000px;}
.y59{bottom:1004.190000px;}
.y2d{bottom:1011.960000px;}
.y3{bottom:1012.230000px;}
.y58{bottom:1036.890000px;}
.y2c{bottom:1038.510000px;}
.y7f{bottom:1069.920000px;}
.y57{bottom:1072.800000px;}
.y2b{bottom:1074.420000px;}
.ya2{bottom:1078.560000px;}
.y7e{bottom:1087.560000px;}
.ya1{bottom:1096.110000px;}
.y7d{bottom:1105.110000px;}
.y56{bottom:1121.040000px;}
.y2a{bottom:1122.750000px;}
.y55{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h9{height:26.550000px;}
.ha{height:26.640000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:39.420000px;}
.w8{width:47.790000px;}
.w4{width:50.760000px;}
.we{width:52.110000px;}
.wd{width:96.930000px;}
.wa{width:116.490000px;}
.w10{width:127.560000px;}
.wf{width:132.570000px;}
.w7{width:133.020000px;}
.wb{width:137.070000px;}
.w6{width:142.050000px;}
.w5{width:163.080000px;}
.w9{width:254.280000px;}
.w3{width:491.070000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.x11{left:111.239987px;}
.xa{left:117.270000px;}
.x2{left:192.719987px;}
.x4{left:201.090000px;}
.xb{left:234.480000px;}
.x6{left:252.570000px;}
.xc{left:274.620000px;}
.xe{left:289.830000px;}
.xf{left:342.660000px;}
.x7{left:416.370000px;}
.x10{left:475.950000px;}
.xd{left:502.859987px;}
.x8{left:559.140000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.327467pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.159467pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls1f{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls1a{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.074667pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls1d{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls22{letter-spacing:-0.009920pt;}
.ls19{letter-spacing:-0.002880pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.006080pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls16{letter-spacing:0.047360pt;}
.ls23{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.103467pt;}
.ls24{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160533pt;}
.ls20{letter-spacing:0.177067pt;}
.ls2{letter-spacing:0.333120pt;}
.ls0{letter-spacing:11.864320pt;}
.ls11{letter-spacing:56.503680pt;}
.ls21{letter-spacing:71.863680pt;}
.ls3{letter-spacing:168.326080pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.917333pt;}
.ws8{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.861867pt;}
.ws16{word-spacing:-11.860267pt;}
.ws6{word-spacing:-11.822933pt;}
.ws1a{word-spacing:-11.810667pt;}
.wse{word-spacing:-11.804160pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.753920pt;}
.ws19{word-spacing:-11.746880pt;}
.ws14{word-spacing:-11.744960pt;}
.ws15{word-spacing:-11.743680pt;}
.ws10{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.645333pt;}
.ws17{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.597333pt;}
.ws2{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.wsf{word-spacing:-11.429333pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._c{margin-left:-11.770255pt;}
._8{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._2{width:2.169631pt;}
._3{width:3.249383pt;}
._5{width:4.242568pt;}
._7{width:5.254679pt;}
._4{width:6.306134pt;}
._6{width:7.213331pt;}
._b{width:8.657280pt;}
._d{width:9.672640pt;}
._e{width:10.619307pt;}
._9{width:12.714666pt;}
._12{width:13.966402pt;}
._11{width:14.908480pt;}
._10{width:17.803723pt;}
._f{width:21.499544pt;}
._a{width:156.563200pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:6.960000pt;}
.y32{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y54{bottom:103.226667pt;}
.y7c{bottom:112.906667pt;}
.y26{bottom:116.106667pt;}
.ya0{bottom:116.586667pt;}
.y53{bottom:119.626667pt;}
.y7b{bottom:128.506667pt;}
.y52{bottom:135.946667pt;}
.y9f{bottom:140.186667pt;}
.y7a{bottom:144.106667pt;}
.y25{bottom:147.786667pt;}
.y51{bottom:152.346667pt;}
.y9e{bottom:155.786667pt;}
.y79{bottom:159.786667pt;}
.y24{bottom:163.386667pt;}
.y50{bottom:168.666667pt;}
.y23{bottom:179.066667pt;}
.y9d{bottom:179.466667pt;}
.y78{bottom:183.386667pt;}
.y4f{bottom:185.066667pt;}
.y22{bottom:194.666667pt;}
.y9c{bottom:195.066667pt;}
.y4e{bottom:201.386667pt;}
.y77{bottom:210.026667pt;}
.y21{bottom:210.266667pt;}
.y4d{bottom:217.786667pt;}
.y9b{bottom:218.986667pt;}
.y4c{bottom:234.186667pt;}
.y76{bottom:234.346667pt;}
.y20{bottom:241.946667pt;}
.y4b{bottom:250.506667pt;}
.y1f{bottom:257.546667pt;}
.y75{bottom:258.666667pt;}
.y9a{bottom:261.946667pt;}
.y4a{bottom:266.906667pt;}
.y1e{bottom:273.226667pt;}
.y74{bottom:282.906667pt;}
.y49{bottom:283.226667pt;}
.y99{bottom:285.786667pt;}
.y48{bottom:299.626667pt;}
.y1d{bottom:304.826667pt;}
.y47{bottom:316.026667pt;}
.y98{bottom:318.986667pt;}
.y1c{bottom:320.426667pt;}
.y73{bottom:326.266667pt;}
.y46{bottom:332.346667pt;}
.y1b{bottom:336.106667pt;}
.y72{bottom:341.866667pt;}
.y45{bottom:348.746667pt;}
.y1a{bottom:351.706667pt;}
.y71{bottom:357.466667pt;}
.y97{bottom:361.946667pt;}
.y44{bottom:365.066667pt;}
.y19{bottom:367.386667pt;}
.y70{bottom:373.146667pt;}
.y96{bottom:377.546667pt;}
.y6f{bottom:388.746667pt;}
.y43{bottom:389.466667pt;}
.y95{bottom:393.226667pt;}
.y18{bottom:398.986667pt;}
.y94{bottom:408.826667pt;}
.y6e{bottom:412.426667pt;}
.y17{bottom:414.586667pt;}
.y42{bottom:418.853333pt;}
.y93{bottom:424.453333pt;}
.y16{bottom:430.293333pt;}
.y92{bottom:440.133333pt;}
.y41{bottom:443.093333pt;}
.y6d{bottom:444.053333pt;}
.y15{bottom:445.893333pt;}
.y91{bottom:455.733333pt;}
.y6c{bottom:459.653333pt;}
.y14{bottom:461.573333pt;}
.y40{bottom:467.413333pt;}
.y90{bottom:471.413333pt;}
.y6b{bottom:475.333333pt;}
.y13{bottom:477.173333pt;}
.y8f{bottom:487.013333pt;}
.y3f{bottom:491.733333pt;}
.y6a{bottom:498.933333pt;}
.y12{bottom:501.093333pt;}
.y8e{bottom:510.933333pt;}
.y3e{bottom:516.053333pt;}
.y69{bottom:530.613333pt;}
.y3d{bottom:540.293333pt;}
.y11{bottom:544.293333pt;}
.y68{bottom:546.213333pt;}
.y8d{bottom:551.493333pt;}
.y3c{bottom:564.613333pt;}
.y67{bottom:569.813333pt;}
.y8c{bottom:575.813333pt;}
.y10{bottom:577.173333pt;}
.y3b{bottom:588.933333pt;}
.yf{bottom:592.853333pt;}
.y8b{bottom:600.133333pt;}
.y66{bottom:601.493333pt;}
.ye{bottom:608.453333pt;}
.y3a{bottom:613.173333pt;}
.y65{bottom:617.093333pt;}
.yd{bottom:624.053333pt;}
.y8a{bottom:624.373333pt;}
.y64{bottom:632.693333pt;}
.y39{bottom:637.493333pt;}
.yc{bottom:639.733333pt;}
.y89{bottom:648.693333pt;}
.yb{bottom:655.333333pt;}
.y63{bottom:656.373333pt;}
.y38{bottom:661.813333pt;}
.ya{bottom:671.013333pt;}
.y88{bottom:673.013333pt;}
.y37{bottom:686.133333pt;}
.y62{bottom:687.973333pt;}
.y9{bottom:694.933333pt;}
.y87{bottom:697.333333pt;}
.y36{bottom:710.373333pt;}
.y61{bottom:719.653333pt;}
.y86{bottom:721.573333pt;}
.y35{bottom:734.693333pt;}
.y60{bottom:735.253333pt;}
.y8{bottom:737.813333pt;}
.y5f{bottom:750.853333pt;}
.y34{bottom:759.013333pt;}
.y85{bottom:764.853333pt;}
.y7{bottom:769.653333pt;}
.y5e{bottom:774.533333pt;}
.y33{bottom:783.333333pt;}
.y84{bottom:796.533333pt;}
.y6{bottom:801.653333pt;}
.y5d{bottom:806.133333pt;}
.y31{bottom:807.573333pt;}
.y83{bottom:812.133333pt;}
.y82{bottom:827.813333pt;}
.y30{bottom:831.893333pt;}
.y5{bottom:833.653333pt;}
.y5c{bottom:837.813333pt;}
.y81{bottom:843.413333pt;}
.y5b{bottom:853.413333pt;}
.y2e{bottom:856.213333pt;}
.y4{bottom:865.733333pt;}
.y5a{bottom:869.013333pt;}
.y80{bottom:872.053333pt;}
.y59{bottom:892.613333pt;}
.y2d{bottom:899.520000pt;}
.y3{bottom:899.760000pt;}
.y58{bottom:921.680000pt;}
.y2c{bottom:923.120000pt;}
.y7f{bottom:951.040000pt;}
.y57{bottom:953.600000pt;}
.y2b{bottom:955.040000pt;}
.ya2{bottom:958.720000pt;}
.y7e{bottom:966.720000pt;}
.ya1{bottom:974.320000pt;}
.y7d{bottom:982.320000pt;}
.y56{bottom:996.480000pt;}
.y2a{bottom:998.000000pt;}
.y55{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.ha{height:23.680000pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:35.040000pt;}
.w8{width:42.480000pt;}
.w4{width:45.120000pt;}
.we{width:46.320000pt;}
.wd{width:86.160000pt;}
.wa{width:103.546667pt;}
.w10{width:113.386667pt;}
.wf{width:117.840000pt;}
.w7{width:118.240000pt;}
.wb{width:121.840000pt;}
.w6{width:126.266667pt;}
.w5{width:144.960000pt;}
.w9{width:226.026667pt;}
.w3{width:436.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.x11{left:98.879988pt;}
.xa{left:104.240000pt;}
.x2{left:171.306655pt;}
.x4{left:178.746667pt;}
.xb{left:208.426667pt;}
.x6{left:224.506667pt;}
.xc{left:244.106667pt;}
.xe{left:257.626667pt;}
.xf{left:304.586667pt;}
.x7{left:370.106667pt;}
.x10{left:423.066667pt;}
.xd{left:446.986655pt;}
.x8{left:497.013333pt;}
.x3{left:711.413322pt;}
}




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