
    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_8cd4fa765e3198fbd8825a6a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_c470b0c3c2d80922db4a9187.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_defca4745d71b77212ec84c0.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_14ea9f37b9aff624ac53f311.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;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_3a2d29c9395e4fc7c9132ec9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_b09240eb9a4894f6f25128c1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_c95b5d1b2d64aeaa9dea84bb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_bc45af4ce0385bcc5bc3a0c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.928711;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_c15828f2e5af30830f6b2693.woff')format("woff");}.ff9{font-family:ff9;line-height:0.928711;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;}
.ls46{letter-spacing:-1.008000px;}
.ls2a{letter-spacing:-0.864000px;}
.ls48{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.201600px;}
.ls2f{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.000003px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000001px;}
.ls43{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.756000px;}
.ls3e{letter-spacing:0.792000px;}
.ls21{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.368000px;}
.ls25{letter-spacing:2.088000px;}
.ls2e{letter-spacing:2.808000px;}
.ls1b{letter-spacing:3.528000px;}
.ls9{letter-spacing:4.248000px;}
.ls4a{letter-spacing:4.536000px;}
.ls27{letter-spacing:4.968000px;}
.ls49{letter-spacing:5.256000px;}
.ls23{letter-spacing:5.688000px;}
.ls12{letter-spacing:5.976000px;}
.ls13{letter-spacing:6.408000px;}
.ls2d{letter-spacing:6.696000px;}
.ls1d{letter-spacing:7.128000px;}
.ls2c{letter-spacing:7.848000px;}
.ls41{letter-spacing:8.136000px;}
.ls17{letter-spacing:8.496000px;}
.ls45{letter-spacing:8.568000px;}
.ls2{letter-spacing:8.748000px;}
.ls42{letter-spacing:9.288000px;}
.ls40{letter-spacing:9.468000px;}
.ls3{letter-spacing:10.008000px;}
.lsb{letter-spacing:10.728000px;}
.ls47{letter-spacing:12.168000px;}
.ls3f{letter-spacing:12.348000px;}
.lsa{letter-spacing:12.888000px;}
.ls1f{letter-spacing:13.608000px;}
.ls19{letter-spacing:14.328000px;}
.ls26{letter-spacing:15.048000px;}
.ls10{letter-spacing:15.768000px;}
.ls33{letter-spacing:16.488000px;}
.ls38{letter-spacing:17.208000px;}
.ls11{letter-spacing:17.928000px;}
.lse{letter-spacing:19.368000px;}
.ls3b{letter-spacing:19.488000px;}
.ls4b{letter-spacing:19.656000px;}
.ls34{letter-spacing:21.528000px;}
.ls3a{letter-spacing:22.248000px;}
.ls1{letter-spacing:23.146560px;}
.ls1c{letter-spacing:24.528000px;}
.ls44{letter-spacing:25.416000px;}
.ls3d{letter-spacing:26.568000px;}
.ls20{letter-spacing:28.008000px;}
.ls37{letter-spacing:28.128000px;}
.ls15{letter-spacing:29.448000px;}
.ls31{letter-spacing:30.888000px;}
.ls39{letter-spacing:36.648000px;}
.ls36{letter-spacing:40.968000px;}
.ls1a{letter-spacing:46.728000px;}
.ls3c{letter-spacing:49.608000px;}
.ls16{letter-spacing:51.048000px;}
.ls0{letter-spacing:127.927440px;}
.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;}
}
.ws11{word-spacing:-72.288000px;}
.ws0{word-spacing:-23.671440px;}
.wsc{word-spacing:-20.448000px;}
.wsa{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.232001px;}
.ws3{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.231997px;}
.wse{word-spacing:-20.160000px;}
.ws10{word-spacing:-20.088000px;}
.wsd{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.944000px;}
.wsf{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.512000px;}
.ws8{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.613440px;}
.ws2{word-spacing:-18.411840px;}
.ws12{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.792560px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-7.212480px;}
._9{margin-left:-5.184000px;}
._10{margin-left:-4.158720px;}
._b{margin-left:-2.780640px;}
._2{margin-left:-1.179360px;}
._0{width:1.195200px;}
._a{width:2.736000px;}
._11{width:4.248000px;}
._12{width:5.248800px;}
._18{width:6.495360px;}
._3{width:7.948800px;}
._4{width:9.051840px;}
._6{width:10.233120px;}
._5{width:11.592000px;}
._14{width:12.623520px;}
._c{width:13.680000px;}
._d{width:15.459360px;}
._16{width:16.488960px;}
._17{width:17.786880px;}
._15{width:18.792000px;}
._2b{width:20.200800px;}
._13{width:21.312000px;}
._7{width:22.322880px;}
._8{width:24.258720px;}
._19{width:25.704000px;}
._1a{width:27.060000px;}
._25{width:28.152000px;}
._1b{width:29.712000px;}
._22{width:30.810720px;}
._29{width:32.472000px;}
._f{width:33.543360px;}
._e{width:34.704000px;}
._26{width:35.739360px;}
._23{width:36.792000px;}
._28{width:38.286720px;}
._1f{width:39.420000px;}
._1e{width:40.656000px;}
._21{width:42.456960px;}
._24{width:46.584000px;}
._2a{width:48.486720px;}
._1d{width:50.184000px;}
._1c{width:51.192000px;}
._20{width:54.720000px;}
._1{width:493.954080px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:46.836000px;}
.y4{bottom:66.996000px;}
.y3{bottom:86.616000px;}
.y2{bottom:108.216000px;}
.y1{bottom:132.156000px;}
.y53{bottom:156.450000px;}
.y20{bottom:178.230000px;}
.y3d{bottom:182.190000px;}
.y62{bottom:189.210000px;}
.y52{bottom:195.150000px;}
.y1f{bottom:216.930000px;}
.y3c{bottom:220.890000px;}
.y61{bottom:227.910000px;}
.y51{bottom:233.850000px;}
.y1e{bottom:255.630000px;}
.y3b{bottom:259.770000px;}
.y60{bottom:266.610000px;}
.y50{bottom:272.550000px;}
.y1d{bottom:294.555000px;}
.y3a{bottom:298.515000px;}
.y5f{bottom:305.355000px;}
.y4f{bottom:311.295000px;}
.y1c{bottom:333.255000px;}
.y39{bottom:337.215000px;}
.y5e{bottom:344.235000px;}
.y4e{bottom:350.175000px;}
.y1b{bottom:371.955000px;}
.y38{bottom:375.915000px;}
.y5d{bottom:382.935000px;}
.y4d{bottom:388.875000px;}
.y1a{bottom:410.655000px;}
.y37{bottom:414.615000px;}
.y5c{bottom:421.635000px;}
.y4c{bottom:427.575000px;}
.y19{bottom:449.355000px;}
.y36{bottom:453.315000px;}
.y5b{bottom:460.335000px;}
.y4b{bottom:466.275000px;}
.y18{bottom:488.235000px;}
.y35{bottom:492.195000px;}
.y5a{bottom:499.035000px;}
.y4a{bottom:504.975000px;}
.y17{bottom:526.935000px;}
.y34{bottom:530.895000px;}
.y59{bottom:531.975000px;}
.y49{bottom:543.855000px;}
.y58{bottom:563.655000px;}
.y16{bottom:565.665000px;}
.y33{bottom:569.625000px;}
.y48{bottom:582.585000px;}
.y15{bottom:599.865000px;}
.y32{bottom:608.325000px;}
.y47{bottom:621.285000px;}
.y14{bottom:633.525000px;}
.y31{bottom:647.025000px;}
.y46{bottom:659.985000px;}
.y13{bottom:666.285000px;}
.y30{bottom:685.905000px;}
.y12{bottom:692.025000px;}
.y45{bottom:698.685000px;}
.y11{bottom:722.265000px;}
.y2f{bottom:724.605000px;}
.y44{bottom:737.385000px;}
.y10{bottom:757.725000px;}
.y2e{bottom:763.305000px;}
.y57{bottom:770.325000px;}
.y43{bottom:776.265000px;}
.yf{bottom:793.185000px;}
.y2d{bottom:796.065000px;}
.y56{bottom:802.005000px;}
.y42{bottom:814.965000px;}
.y2c{bottom:827.925000px;}
.ye{bottom:828.645000px;}
.y55{bottom:840.705000px;}
.y41{bottom:853.710000px;}
.y2b{bottom:860.730000px;}
.yd{bottom:864.330000px;}
.y54{bottom:879.630000px;}
.y2a{bottom:886.650000px;}
.y40{bottom:892.410000px;}
.yc{bottom:899.790000px;}
.y29{bottom:918.330000px;}
.y3f{bottom:931.110000px;}
.yb{bottom:935.250000px;}
.y28{bottom:957.030000px;}
.y3e{bottom:964.050000px;}
.ya{bottom:972.330000px;}
.y27{bottom:995.730000px;}
.y9{bottom:1013.910000px;}
.y26{bottom:1034.430000px;}
.y8{bottom:1056.390000px;}
.y25{bottom:1073.130000px;}
.y7{bottom:1095.090000px;}
.y24{bottom:1112.010000px;}
.y6{bottom:1133.820000px;}
.y23{bottom:1137.600000px;}
.y22{bottom:1170.360000px;}
.y21{bottom:1202.760000px;}
.h8{height:40.961602px;}
.h9{height:45.852539px;}
.h2{height:50.743477px;}
.h3{height:56.245781px;}
.ha{height:59.439023px;}
.h6{height:61.136719px;}
.h5{height:62.191406px;}
.h4{height:65.884219px;}
.h7{height:71.529961px;}
.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:108.035987px;}
.x6{left:150.509987px;}
.x2{left:161.129987px;}
.xa{left:229.529987px;}
.x5{left:269.309987px;}
.x3{left:276.689987px;}
.xc{left:543.344987px;}
.x4{left:559.724987px;}
.xd{left:579.164987px;}
.xb{left:600.044987px;}
.x9{left:643.964987px;}
.x8{left:654.944987px;}
.x7{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls46{letter-spacing:-0.896000pt;}
.ls2a{letter-spacing:-0.768000pt;}
.ls48{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.179200pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.000003pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000001pt;}
.ls43{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.672000pt;}
.ls3e{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.896000pt;}
.ls24{letter-spacing:1.216000pt;}
.ls25{letter-spacing:1.856000pt;}
.ls2e{letter-spacing:2.496000pt;}
.ls1b{letter-spacing:3.136000pt;}
.ls9{letter-spacing:3.776000pt;}
.ls4a{letter-spacing:4.032000pt;}
.ls27{letter-spacing:4.416000pt;}
.ls49{letter-spacing:4.672000pt;}
.ls23{letter-spacing:5.056000pt;}
.ls12{letter-spacing:5.312000pt;}
.ls13{letter-spacing:5.696000pt;}
.ls2d{letter-spacing:5.952000pt;}
.ls1d{letter-spacing:6.336000pt;}
.ls2c{letter-spacing:6.976000pt;}
.ls41{letter-spacing:7.232000pt;}
.ls17{letter-spacing:7.552000pt;}
.ls45{letter-spacing:7.616000pt;}
.ls2{letter-spacing:7.776000pt;}
.ls42{letter-spacing:8.256000pt;}
.ls40{letter-spacing:8.416000pt;}
.ls3{letter-spacing:8.896000pt;}
.lsb{letter-spacing:9.536000pt;}
.ls47{letter-spacing:10.816000pt;}
.ls3f{letter-spacing:10.976000pt;}
.lsa{letter-spacing:11.456000pt;}
.ls1f{letter-spacing:12.096000pt;}
.ls19{letter-spacing:12.736000pt;}
.ls26{letter-spacing:13.376000pt;}
.ls10{letter-spacing:14.016000pt;}
.ls33{letter-spacing:14.656000pt;}
.ls38{letter-spacing:15.296000pt;}
.ls11{letter-spacing:15.936000pt;}
.lse{letter-spacing:17.216000pt;}
.ls3b{letter-spacing:17.322667pt;}
.ls4b{letter-spacing:17.472000pt;}
.ls34{letter-spacing:19.136000pt;}
.ls3a{letter-spacing:19.776000pt;}
.ls1{letter-spacing:20.574720pt;}
.ls1c{letter-spacing:21.802667pt;}
.ls44{letter-spacing:22.592000pt;}
.ls3d{letter-spacing:23.616000pt;}
.ls20{letter-spacing:24.896000pt;}
.ls37{letter-spacing:25.002667pt;}
.ls15{letter-spacing:26.176000pt;}
.ls31{letter-spacing:27.456000pt;}
.ls39{letter-spacing:32.576000pt;}
.ls36{letter-spacing:36.416000pt;}
.ls1a{letter-spacing:41.536000pt;}
.ls3c{letter-spacing:44.096000pt;}
.ls16{letter-spacing:45.376000pt;}
.ls0{letter-spacing:113.713280pt;}
.ws11{word-spacing:-64.256000pt;}
.ws0{word-spacing:-21.041280pt;}
.wsc{word-spacing:-18.176000pt;}
.wsa{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984001pt;}
.ws3{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.983997pt;}
.wse{word-spacing:-17.920000pt;}
.ws10{word-spacing:-17.856000pt;}
.wsd{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.728000pt;}
.wsf{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.344000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.545280pt;}
.ws2{word-spacing:-16.366080pt;}
.ws12{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.926720pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-6.411093pt;}
._9{margin-left:-4.608000pt;}
._10{margin-left:-3.696640pt;}
._b{margin-left:-2.471680pt;}
._2{margin-left:-1.048320pt;}
._0{width:1.062400pt;}
._a{width:2.432000pt;}
._11{width:3.776000pt;}
._12{width:4.665600pt;}
._18{width:5.773653pt;}
._3{width:7.065600pt;}
._4{width:8.046080pt;}
._6{width:9.096107pt;}
._5{width:10.304000pt;}
._14{width:11.220907pt;}
._c{width:12.160000pt;}
._d{width:13.741653pt;}
._16{width:14.656853pt;}
._17{width:15.810560pt;}
._15{width:16.704000pt;}
._2b{width:17.956267pt;}
._13{width:18.944000pt;}
._7{width:19.842560pt;}
._8{width:21.563307pt;}
._19{width:22.848000pt;}
._1a{width:24.053333pt;}
._25{width:25.024000pt;}
._1b{width:26.410667pt;}
._22{width:27.387307pt;}
._29{width:28.864000pt;}
._f{width:29.816320pt;}
._e{width:30.848000pt;}
._26{width:31.768320pt;}
._23{width:32.704000pt;}
._28{width:34.032640pt;}
._1f{width:35.040000pt;}
._1e{width:36.138667pt;}
._21{width:37.739520pt;}
._24{width:41.408000pt;}
._2a{width:43.099307pt;}
._1d{width:44.608000pt;}
._1c{width:45.504000pt;}
._20{width:48.640000pt;}
._1{width:439.070293pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:41.632000pt;}
.y4{bottom:59.552000pt;}
.y3{bottom:76.992000pt;}
.y2{bottom:96.192000pt;}
.y1{bottom:117.472000pt;}
.y53{bottom:139.066667pt;}
.y20{bottom:158.426667pt;}
.y3d{bottom:161.946667pt;}
.y62{bottom:168.186667pt;}
.y52{bottom:173.466667pt;}
.y1f{bottom:192.826667pt;}
.y3c{bottom:196.346667pt;}
.y61{bottom:202.586667pt;}
.y51{bottom:207.866667pt;}
.y1e{bottom:227.226667pt;}
.y3b{bottom:230.906667pt;}
.y60{bottom:236.986667pt;}
.y50{bottom:242.266667pt;}
.y1d{bottom:261.826667pt;}
.y3a{bottom:265.346667pt;}
.y5f{bottom:271.426667pt;}
.y4f{bottom:276.706667pt;}
.y1c{bottom:296.226667pt;}
.y39{bottom:299.746667pt;}
.y5e{bottom:305.986667pt;}
.y4e{bottom:311.266667pt;}
.y1b{bottom:330.626667pt;}
.y38{bottom:334.146667pt;}
.y5d{bottom:340.386667pt;}
.y4d{bottom:345.666667pt;}
.y1a{bottom:365.026667pt;}
.y37{bottom:368.546667pt;}
.y5c{bottom:374.786667pt;}
.y4c{bottom:380.066667pt;}
.y19{bottom:399.426667pt;}
.y36{bottom:402.946667pt;}
.y5b{bottom:409.186667pt;}
.y4b{bottom:414.466667pt;}
.y18{bottom:433.986667pt;}
.y35{bottom:437.506667pt;}
.y5a{bottom:443.586667pt;}
.y4a{bottom:448.866667pt;}
.y17{bottom:468.386667pt;}
.y34{bottom:471.906667pt;}
.y59{bottom:472.866667pt;}
.y49{bottom:483.426667pt;}
.y58{bottom:501.026667pt;}
.y16{bottom:502.813333pt;}
.y33{bottom:506.333333pt;}
.y48{bottom:517.853333pt;}
.y15{bottom:533.213333pt;}
.y32{bottom:540.733333pt;}
.y47{bottom:552.253333pt;}
.y14{bottom:563.133333pt;}
.y31{bottom:575.133333pt;}
.y46{bottom:586.653333pt;}
.y13{bottom:592.253333pt;}
.y30{bottom:609.693333pt;}
.y12{bottom:615.133333pt;}
.y45{bottom:621.053333pt;}
.y11{bottom:642.013333pt;}
.y2f{bottom:644.093333pt;}
.y44{bottom:655.453333pt;}
.y10{bottom:673.533333pt;}
.y2e{bottom:678.493333pt;}
.y57{bottom:684.733333pt;}
.y43{bottom:690.013333pt;}
.yf{bottom:705.053333pt;}
.y2d{bottom:707.613333pt;}
.y56{bottom:712.893333pt;}
.y42{bottom:724.413333pt;}
.y2c{bottom:735.933333pt;}
.ye{bottom:736.573333pt;}
.y55{bottom:747.293333pt;}
.y41{bottom:758.853333pt;}
.y2b{bottom:765.093333pt;}
.yd{bottom:768.293333pt;}
.y54{bottom:781.893333pt;}
.y2a{bottom:788.133333pt;}
.y40{bottom:793.253333pt;}
.yc{bottom:799.813333pt;}
.y29{bottom:816.293333pt;}
.y3f{bottom:827.653333pt;}
.yb{bottom:831.333333pt;}
.y28{bottom:850.693333pt;}
.y3e{bottom:856.933333pt;}
.ya{bottom:864.293333pt;}
.y27{bottom:885.093333pt;}
.y9{bottom:901.253333pt;}
.y26{bottom:919.493333pt;}
.y8{bottom:939.013333pt;}
.y25{bottom:953.893333pt;}
.y7{bottom:973.413333pt;}
.y24{bottom:988.453333pt;}
.y6{bottom:1007.840000pt;}
.y23{bottom:1011.200000pt;}
.y22{bottom:1040.320000pt;}
.y21{bottom:1069.120000pt;}
.h8{height:36.410312pt;}
.h9{height:40.757812pt;}
.h2{height:45.105313pt;}
.h3{height:49.996250pt;}
.ha{height:52.834688pt;}
.h6{height:54.343750pt;}
.h5{height:55.281250pt;}
.h4{height:58.563750pt;}
.h7{height:63.582187pt;}
.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:96.031988pt;}
.x6{left:133.786655pt;}
.x2{left:143.226655pt;}
.xa{left:204.026655pt;}
.x5{left:239.386655pt;}
.x3{left:245.946655pt;}
.xc{left:482.973322pt;}
.x4{left:497.533322pt;}
.xd{left:514.813322pt;}
.xb{left:533.373322pt;}
.x9{left:572.413322pt;}
.x8{left:582.173322pt;}
.x7{left:697.893322pt;}
}




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