
    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_4771b67f7b3ede57c084b42c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_32796a7c71c9b3e6da3d7750.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6bfd3b9d43e024bc8c6f9c3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_d69a1d1fb02d01ea35b04289.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7114a24d1080cb39ccb10e0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_bf4c872497dd9f0b72876420.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_4948df689efeee9f767e9219.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_fde05260cfe56607a650ff7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_867690ff0d451e5de3adf22b.woff2')format("woff");}.ff9{font-family:ff9;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.260000px;}
.ls22{letter-spacing:-0.291600px;}
.ls1f{letter-spacing:-0.243600px;}
.lse{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.033120px;}
.ls10{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.331800px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.439920px;}
.ls25{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.900000px;}
.ls1b{letter-spacing:1.620000px;}
.ls29{letter-spacing:2.106720px;}
.ls6{letter-spacing:2.340000px;}
.ls13{letter-spacing:3.060000px;}
.ls15{letter-spacing:3.780000px;}
.ls1c{letter-spacing:5.940000px;}
.ls16{letter-spacing:8.100000px;}
.lsc{letter-spacing:9.540000px;}
.ls5{letter-spacing:10.260000px;}
.lsd{letter-spacing:10.980000px;}
.ls9{letter-spacing:11.700000px;}
.ls17{letter-spacing:13.140000px;}
.ls26{letter-spacing:13.860000px;}
.ls11{letter-spacing:14.580000px;}
.ls21{letter-spacing:15.300000px;}
.ls8{letter-spacing:16.740000px;}
.ls19{letter-spacing:17.460000px;}
.lsa{letter-spacing:18.180000px;}
.lsb{letter-spacing:18.900000px;}
.ls20{letter-spacing:20.520000px;}
.ls7{letter-spacing:21.060000px;}
.ls12{letter-spacing:22.500000px;}
.ls14{letter-spacing:23.940000px;}
.ls18{letter-spacing:24.660000px;}
.ls28{letter-spacing:52.020000px;}
.ls24{letter-spacing:257.196000px;}
.ls2a{letter-spacing:849.216000px;}
.ls3{letter-spacing:1009.800000px;}
.ls1{letter-spacing:1067.400000px;}
.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:-15.300000px;}
.ws1{word-spacing:-14.973120px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.696400px;}
.ws4{word-spacing:-14.648400px;}
.ws2{word-spacing:0.000000px;}
._35{margin-left:-11.033280px;}
._2a{margin-left:-9.086400px;}
._6{margin-left:-3.227040px;}
._8{margin-left:-2.094000px;}
._7{margin-left:-1.015920px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._17{width:3.944160px;}
._d{width:5.856480px;}
._e{width:7.206240px;}
._16{width:8.366400px;}
._b{width:9.501840px;}
._c{width:10.697040px;}
._f{width:12.619920px;}
._13{width:13.864320px;}
._1c{width:16.553520px;}
._5{width:17.559360px;}
._3{width:18.645120px;}
._4{width:19.673040px;}
._10{width:21.334320px;}
._3f{width:22.339440px;}
._11{width:23.366160px;}
._12{width:24.680880px;}
._18{width:25.696800px;}
._1b{width:26.832240px;}
._23{width:28.087200px;}
._1a{width:29.222640px;}
._25{width:30.298320px;}
._22{width:31.732560px;}
._9{width:32.927760px;}
._a{width:33.949200px;}
._1d{width:35.013840px;}
._15{width:36.035280px;}
._26{width:38.246400px;}
._2f{width:39.680640px;}
._2d{width:40.816080px;}
._33{width:42.419520px;}
._29{width:43.810320px;}
._1e{width:45.357840px;}
._1f{width:46.553040px;}
._2b{width:47.568960px;}
._2c{width:48.969360px;}
._30{width:50.052960px;}
._14{width:51.572880px;}
._31{width:53.007120px;}
._24{width:54.142560px;}
._2e{width:56.218320px;}
._27{width:58.026960px;}
._21{width:59.102640px;}
._20{width:60.238080px;}
._34{width:61.313760px;}
._3b{width:62.987040px;}
._37{width:65.138400px;}
._39{width:67.050720px;}
._28{width:68.484960px;}
._3a{width:79.856640px;}
._3e{width:87.298560px;}
._32{width:89.231040px;}
._3d{width:90.979920px;}
._36{width:132.368400px;}
._3c{width:140.854320px;}
._19{width:148.569600px;}
._38{width:413.406720px;}
._0{width:798.090240px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.800000px;}
.y7d{bottom:104.760000px;}
.y3e{bottom:105.300000px;}
.y7c{bottom:122.040000px;}
.y3d{bottom:122.400000px;}
.y7b{bottom:139.356000px;}
.y3c{bottom:139.716000px;}
.y7a{bottom:156.630000px;}
.y3b{bottom:156.990000px;}
.y79{bottom:173.910000px;}
.y3a{bottom:174.270000px;}
.y78{bottom:191.010000px;}
.y39{bottom:191.550000px;}
.y77{bottom:208.290000px;}
.y38{bottom:208.830000px;}
.y76{bottom:225.570000px;}
.y37{bottom:225.930000px;}
.y7e{bottom:232.410000px;}
.y75{bottom:242.850000px;}
.y36{bottom:243.210000px;}
.y74{bottom:260.130000px;}
.y35{bottom:260.490000px;}
.y73{bottom:277.410000px;}
.y34{bottom:277.770000px;}
.y72{bottom:294.510000px;}
.y33{bottom:295.050000px;}
.y71{bottom:311.790000px;}
.y32{bottom:312.330000px;}
.y70{bottom:329.070000px;}
.y31{bottom:329.430000px;}
.y6f{bottom:346.350000px;}
.y30{bottom:346.710000px;}
.y6e{bottom:363.630000px;}
.y2f{bottom:363.990000px;}
.y6d{bottom:380.730000px;}
.y2e{bottom:381.990000px;}
.y6c{bottom:398.055000px;}
.y2d{bottom:402.015000px;}
.y6b{bottom:415.335000px;}
.y2c{bottom:419.295000px;}
.y6a{bottom:432.615000px;}
.y2b{bottom:436.395000px;}
.y69{bottom:449.895000px;}
.y2a{bottom:453.675000px;}
.y68{bottom:467.175000px;}
.y29{bottom:470.955000px;}
.y67{bottom:484.275000px;}
.y28{bottom:488.235000px;}
.y66{bottom:501.555000px;}
.y27{bottom:505.515000px;}
.y65{bottom:518.835000px;}
.y26{bottom:522.795000px;}
.y64{bottom:536.115000px;}
.y25{bottom:539.895000px;}
.y63{bottom:553.395000px;}
.y24{bottom:557.175000px;}
.y62{bottom:570.675000px;}
.y23{bottom:574.455000px;}
.y61{bottom:587.775000px;}
.y22{bottom:591.735000px;}
.y60{bottom:605.055000px;}
.y21{bottom:609.015000px;}
.y5f{bottom:622.335000px;}
.y20{bottom:626.295000px;}
.y5e{bottom:639.615000px;}
.y1f{bottom:643.425000px;}
.y5d{bottom:656.925000px;}
.y1e{bottom:660.705000px;}
.y5c{bottom:674.025000px;}
.y1d{bottom:677.985000px;}
.y5b{bottom:691.305000px;}
.y1c{bottom:695.265000px;}
.y5a{bottom:708.585000px;}
.y1b{bottom:712.545000px;}
.y59{bottom:725.865000px;}
.y1a{bottom:729.645000px;}
.y58{bottom:743.145000px;}
.y19{bottom:746.925000px;}
.y57{bottom:760.425000px;}
.y18{bottom:764.205000px;}
.y56{bottom:777.525000px;}
.y17{bottom:781.485000px;}
.y55{bottom:794.805000px;}
.y16{bottom:798.765000px;}
.y54{bottom:812.085000px;}
.y15{bottom:816.045000px;}
.y53{bottom:829.365000px;}
.y14{bottom:833.145000px;}
.y52{bottom:846.645000px;}
.y13{bottom:850.425000px;}
.y51{bottom:863.925000px;}
.y12{bottom:867.705000px;}
.y50{bottom:881.025000px;}
.y11{bottom:884.985000px;}
.y4f{bottom:898.350000px;}
.y10{bottom:902.310000px;}
.y4e{bottom:915.630000px;}
.yf{bottom:919.590000px;}
.y4d{bottom:932.910000px;}
.y4c{bottom:950.190000px;}
.ye{bottom:953.970000px;}
.y4b{bottom:967.470000px;}
.yd{bottom:971.250000px;}
.y4a{bottom:984.570000px;}
.yc{bottom:988.530000px;}
.y49{bottom:1001.850000px;}
.yb{bottom:1005.810000px;}
.y48{bottom:1019.130000px;}
.ya{bottom:1023.090000px;}
.y47{bottom:1036.410000px;}
.y9{bottom:1040.190000px;}
.y46{bottom:1053.690000px;}
.y8{bottom:1057.470000px;}
.y45{bottom:1070.790000px;}
.y7{bottom:1074.750000px;}
.y44{bottom:1088.070000px;}
.y43{bottom:1105.350000px;}
.y6{bottom:1109.310000px;}
.y42{bottom:1122.630000px;}
.y5{bottom:1126.410000px;}
.y41{bottom:1139.910000px;}
.y4{bottom:1143.690000px;}
.y40{bottom:1157.220000px;}
.y3{bottom:1163.880000px;}
.y3f{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.hb{height:50.218242px;}
.h3{height:52.998047px;}
.h8{height:53.573906px;}
.h6{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h9{height:72.562500px;}
.h4{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x4{left:113.075987px;}
.xc{left:115.235987px;}
.x13{left:136.115987px;}
.x14{left:159.509987px;}
.x2{left:343.874987px;}
.xd{left:362.594987px;}
.x5{left:376.994987px;}
.x3{left:446.504987px;}
.x10{left:448.484987px;}
.x15{left:457.304987px;}
.x16{left:487.004987px;}
.x7{left:508.784987px;}
.xf{left:536.324987px;}
.x12{left:537.944987px;}
.xa{left:548.924987px;}
.x11{left:599.144987px;}
.x9{left:630.869987px;}
.x8{left:639.689987px;}
.x6{left:699.269987px;}
.xe{left:701.069987px;}
.xb{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.120000pt;}
.ls22{letter-spacing:-0.259200pt;}
.ls1f{letter-spacing:-0.216533pt;}
.lse{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.029440pt;}
.ls10{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.294933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.391040pt;}
.ls25{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls29{letter-spacing:1.872640pt;}
.ls6{letter-spacing:2.080000pt;}
.ls13{letter-spacing:2.720000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:5.280000pt;}
.ls16{letter-spacing:7.200000pt;}
.lsc{letter-spacing:8.480000pt;}
.ls5{letter-spacing:9.120000pt;}
.lsd{letter-spacing:9.760000pt;}
.ls9{letter-spacing:10.400000pt;}
.ls17{letter-spacing:11.680000pt;}
.ls26{letter-spacing:12.320000pt;}
.ls11{letter-spacing:12.960000pt;}
.ls21{letter-spacing:13.600000pt;}
.ls8{letter-spacing:14.880000pt;}
.ls19{letter-spacing:15.520000pt;}
.lsa{letter-spacing:16.160000pt;}
.lsb{letter-spacing:16.800000pt;}
.ls20{letter-spacing:18.240000pt;}
.ls7{letter-spacing:18.720000pt;}
.ls12{letter-spacing:20.000000pt;}
.ls14{letter-spacing:21.280000pt;}
.ls18{letter-spacing:21.920000pt;}
.ls28{letter-spacing:46.240000pt;}
.ls24{letter-spacing:228.618667pt;}
.ls2a{letter-spacing:754.858667pt;}
.ls3{letter-spacing:897.600000pt;}
.ls1{letter-spacing:948.800000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.309440pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.063467pt;}
.ws4{word-spacing:-13.020800pt;}
.ws2{word-spacing:0.000000pt;}
._35{margin-left:-9.807360pt;}
._2a{margin-left:-8.076800pt;}
._6{margin-left:-2.868480pt;}
._8{margin-left:-1.861333pt;}
._7{margin-left:-0.903040pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._17{width:3.505920pt;}
._d{width:5.205760pt;}
._e{width:6.405547pt;}
._16{width:7.436800pt;}
._b{width:8.446080pt;}
._c{width:9.508480pt;}
._f{width:11.217707pt;}
._13{width:12.323840pt;}
._1c{width:14.714240pt;}
._5{width:15.608320pt;}
._3{width:16.573440pt;}
._4{width:17.487147pt;}
._10{width:18.963840pt;}
._3f{width:19.857280pt;}
._11{width:20.769920pt;}
._12{width:21.938560pt;}
._18{width:22.841600pt;}
._1b{width:23.850880pt;}
._23{width:24.966400pt;}
._1a{width:25.975680pt;}
._25{width:26.931840pt;}
._22{width:28.206720pt;}
._9{width:29.269120pt;}
._a{width:30.177067pt;}
._1d{width:31.123413pt;}
._15{width:32.031360pt;}
._26{width:33.996800pt;}
._2f{width:35.271680pt;}
._2d{width:36.280960pt;}
._33{width:37.706240pt;}
._29{width:38.942507pt;}
._1e{width:40.318080pt;}
._1f{width:41.380480pt;}
._2b{width:42.283520pt;}
._2c{width:43.528320pt;}
._30{width:44.491520pt;}
._14{width:45.842560pt;}
._31{width:47.117440pt;}
._24{width:48.126720pt;}
._2e{width:49.971840pt;}
._27{width:51.579520pt;}
._21{width:52.535680pt;}
._20{width:53.544960pt;}
._34{width:54.501120pt;}
._3b{width:55.988480pt;}
._37{width:57.900800pt;}
._39{width:59.600640pt;}
._28{width:60.875520pt;}
._3a{width:70.983680pt;}
._3e{width:77.598720pt;}
._32{width:79.316480pt;}
._3d{width:80.871040pt;}
._36{width:117.660800pt;}
._3c{width:125.203840pt;}
._19{width:132.061867pt;}
._38{width:367.472640pt;}
._0{width:709.413547pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.600000pt;}
.y7d{bottom:93.120000pt;}
.y3e{bottom:93.600000pt;}
.y7c{bottom:108.480000pt;}
.y3d{bottom:108.800000pt;}
.y7b{bottom:123.872000pt;}
.y3c{bottom:124.192000pt;}
.y7a{bottom:139.226667pt;}
.y3b{bottom:139.546667pt;}
.y79{bottom:154.586667pt;}
.y3a{bottom:154.906667pt;}
.y78{bottom:169.786667pt;}
.y39{bottom:170.266667pt;}
.y77{bottom:185.146667pt;}
.y38{bottom:185.626667pt;}
.y76{bottom:200.506667pt;}
.y37{bottom:200.826667pt;}
.y7e{bottom:206.586667pt;}
.y75{bottom:215.866667pt;}
.y36{bottom:216.186667pt;}
.y74{bottom:231.226667pt;}
.y35{bottom:231.546667pt;}
.y73{bottom:246.586667pt;}
.y34{bottom:246.906667pt;}
.y72{bottom:261.786667pt;}
.y33{bottom:262.266667pt;}
.y71{bottom:277.146667pt;}
.y32{bottom:277.626667pt;}
.y70{bottom:292.506667pt;}
.y31{bottom:292.826667pt;}
.y6f{bottom:307.866667pt;}
.y30{bottom:308.186667pt;}
.y6e{bottom:323.226667pt;}
.y2f{bottom:323.546667pt;}
.y6d{bottom:338.426667pt;}
.y2e{bottom:339.546667pt;}
.y6c{bottom:353.826667pt;}
.y2d{bottom:357.346667pt;}
.y6b{bottom:369.186667pt;}
.y2c{bottom:372.706667pt;}
.y6a{bottom:384.546667pt;}
.y2b{bottom:387.906667pt;}
.y69{bottom:399.906667pt;}
.y2a{bottom:403.266667pt;}
.y68{bottom:415.266667pt;}
.y29{bottom:418.626667pt;}
.y67{bottom:430.466667pt;}
.y28{bottom:433.986667pt;}
.y66{bottom:445.826667pt;}
.y27{bottom:449.346667pt;}
.y65{bottom:461.186667pt;}
.y26{bottom:464.706667pt;}
.y64{bottom:476.546667pt;}
.y25{bottom:479.906667pt;}
.y63{bottom:491.906667pt;}
.y24{bottom:495.266667pt;}
.y62{bottom:507.266667pt;}
.y23{bottom:510.626667pt;}
.y61{bottom:522.466667pt;}
.y22{bottom:525.986667pt;}
.y60{bottom:537.826667pt;}
.y21{bottom:541.346667pt;}
.y5f{bottom:553.186667pt;}
.y20{bottom:556.706667pt;}
.y5e{bottom:568.546667pt;}
.y1f{bottom:571.933333pt;}
.y5d{bottom:583.933333pt;}
.y1e{bottom:587.293333pt;}
.y5c{bottom:599.133333pt;}
.y1d{bottom:602.653333pt;}
.y5b{bottom:614.493333pt;}
.y1c{bottom:618.013333pt;}
.y5a{bottom:629.853333pt;}
.y1b{bottom:633.373333pt;}
.y59{bottom:645.213333pt;}
.y1a{bottom:648.573333pt;}
.y58{bottom:660.573333pt;}
.y19{bottom:663.933333pt;}
.y57{bottom:675.933333pt;}
.y18{bottom:679.293333pt;}
.y56{bottom:691.133333pt;}
.y17{bottom:694.653333pt;}
.y55{bottom:706.493333pt;}
.y16{bottom:710.013333pt;}
.y54{bottom:721.853333pt;}
.y15{bottom:725.373333pt;}
.y53{bottom:737.213333pt;}
.y14{bottom:740.573333pt;}
.y52{bottom:752.573333pt;}
.y13{bottom:755.933333pt;}
.y51{bottom:767.933333pt;}
.y12{bottom:771.293333pt;}
.y50{bottom:783.133333pt;}
.y11{bottom:786.653333pt;}
.y4f{bottom:798.533333pt;}
.y10{bottom:802.053333pt;}
.y4e{bottom:813.893333pt;}
.yf{bottom:817.413333pt;}
.y4d{bottom:829.253333pt;}
.y4c{bottom:844.613333pt;}
.ye{bottom:847.973333pt;}
.y4b{bottom:859.973333pt;}
.yd{bottom:863.333333pt;}
.y4a{bottom:875.173333pt;}
.yc{bottom:878.693333pt;}
.y49{bottom:890.533333pt;}
.yb{bottom:894.053333pt;}
.y48{bottom:905.893333pt;}
.ya{bottom:909.413333pt;}
.y47{bottom:921.253333pt;}
.y9{bottom:924.613333pt;}
.y46{bottom:936.613333pt;}
.y8{bottom:939.973333pt;}
.y45{bottom:951.813333pt;}
.y7{bottom:955.333333pt;}
.y44{bottom:967.173333pt;}
.y43{bottom:982.533333pt;}
.y6{bottom:986.053333pt;}
.y42{bottom:997.893333pt;}
.y5{bottom:1001.253333pt;}
.y41{bottom:1013.253333pt;}
.y4{bottom:1016.613333pt;}
.y40{bottom:1028.640000pt;}
.y3{bottom:1034.560000pt;}
.y3f{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.hb{height:44.638438pt;}
.h3{height:47.109375pt;}
.h8{height:47.621250pt;}
.h6{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h9{height:64.500000pt;}
.h4{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x4{left:100.511988pt;}
.xc{left:102.431988pt;}
.x13{left:120.991988pt;}
.x14{left:141.786655pt;}
.x2{left:305.666655pt;}
.xd{left:322.306655pt;}
.x5{left:335.106655pt;}
.x3{left:396.893322pt;}
.x10{left:398.653322pt;}
.x15{left:406.493322pt;}
.x16{left:432.893322pt;}
.x7{left:452.253322pt;}
.xf{left:476.733322pt;}
.x12{left:478.173322pt;}
.xa{left:487.933322pt;}
.x11{left:532.573322pt;}
.x9{left:560.773322pt;}
.x8{left:568.613322pt;}
.x6{left:621.573322pt;}
.xe{left:623.173322pt;}
.xb{left:699.333322pt;}
}




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