
    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_c0849260fcf779ff14f1522e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_dd945cdba12040cf6c8eaeee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_0b82fb72426b4ca29f455a15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_334abfea498fa10278df8760.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e38fe4a21a806941196305da.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_38fe8e2f13aee53de15fef63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_362cee042a2aef41dd09cc14.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_27c6dd484e5c14f536f2944e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_80f4ee8f1c0f0df7b4cb5809.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_0ce7120c7e167fc7c8da9822.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.701660;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:ffb;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_073ad41e2f24e3110820c696.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.416000px;}
.ls11{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.102000px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls6{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.358560px;}
.ls4{letter-spacing:0.360000px;}
.lse{letter-spacing:2.880000px;}
.ls12{letter-spacing:4.320000px;}
.ls13{letter-spacing:48.906720px;}
.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:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.450800px;}
.wse{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.924560px;}
.ws4{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.486240px;}
.ws8{word-spacing:-9.000000px;}
.wsf{word-spacing:-0.419760px;}
.wsb{word-spacing:0.000000px;}
._19{margin-left:-4.816320px;}
._c{margin-left:-3.611520px;}
._7{margin-left:-2.603520px;}
._0{margin-left:-1.523520px;}
._2{width:1.254960px;}
._8{width:2.273520px;}
._6{width:3.286800px;}
._f{width:4.482000px;}
._9{width:5.856480px;}
._3{width:7.589520px;}
._11{width:8.794800px;}
._5{width:9.800640px;}
._4{width:10.816560px;}
._1a{width:11.864880px;}
._15{width:12.916800px;}
._14{width:14.307840px;}
._a{width:16.135200px;}
._b{width:17.445360px;}
._d{width:18.764640px;}
._e{width:20.557440px;}
._18{width:21.991680px;}
._17{width:23.051520px;}
._16{width:24.575040px;}
._1d{width:25.634880px;}
._1e{width:27.555840px;}
._12{width:29.609280px;}
._1c{width:31.066560px;}
._1b{width:32.126400px;}
._21{width:33.248640px;}
._20{width:49.017600px;}
._1f{width:80.680320px;}
._24{width:89.424000px;}
._25{width:91.416240px;}
._22{width:114.661440px;}
._23{width:115.920000px;}
._10{width:155.704800px;}
._26{width:838.956000px;}
._13{width:1296.718080px;}
._1{width:1303.723680px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:6.300000px;}
.y70{bottom:6.480000px;}
.y2{bottom:7.920000px;}
.y6f{bottom:24.660000px;}
.y3f{bottom:69.480000px;}
.y4{bottom:70.200000px;}
.y3d{bottom:125.280000px;}
.y83{bottom:129.420000px;}
.y6d{bottom:131.040000px;}
.y3c{bottom:147.096000px;}
.y82{bottom:151.230000px;}
.y6c{bottom:152.850000px;}
.y3b{bottom:168.870000px;}
.y81{bottom:173.010000px;}
.y6b{bottom:174.810000px;}
.y3a{bottom:190.650000px;}
.y80{bottom:194.790000px;}
.y6a{bottom:196.590000px;}
.y39{bottom:212.430000px;}
.y7f{bottom:216.750000px;}
.y69{bottom:218.370000px;}
.y38{bottom:234.390000px;}
.y7e{bottom:238.530000px;}
.y68{bottom:240.150000px;}
.y7d{bottom:254.010000px;}
.y37{bottom:256.170000px;}
.y67{bottom:262.110000px;}
.y36{bottom:277.950000px;}
.y66{bottom:283.890000px;}
.y35{bottom:299.730000px;}
.y65{bottom:305.670000px;}
.y34{bottom:321.690000px;}
.y64{bottom:327.450000px;}
.y33{bottom:340.410000px;}
.y63{bottom:349.230000px;}
.y32{bottom:354.990000px;}
.y62{bottom:371.190000px;}
.y31{bottom:372.810000px;}
.y30{bottom:391.575000px;}
.y61{bottom:393.015000px;}
.y2f{bottom:408.675000px;}
.y60{bottom:414.795000px;}
.y2e{bottom:425.955000px;}
.y5f{bottom:436.575000px;}
.y2d{bottom:443.235000px;}
.y5e{bottom:458.535000px;}
.y2c{bottom:460.515000px;}
.y2b{bottom:477.795000px;}
.y5d{bottom:480.315000px;}
.y2a{bottom:495.075000px;}
.y7c{bottom:501.015000px;}
.y5c{bottom:502.095000px;}
.y29{bottom:512.175000px;}
.y7b{bottom:522.795000px;}
.y5b{bottom:523.875000px;}
.y28{bottom:529.455000px;}
.y7a{bottom:544.575000px;}
.y5a{bottom:545.655000px;}
.y27{bottom:546.735000px;}
.y26{bottom:564.015000px;}
.y79{bottom:566.535000px;}
.y59{bottom:567.615000px;}
.y25{bottom:581.295000px;}
.y78{bottom:588.315000px;}
.y58{bottom:589.395000px;}
.y24{bottom:598.395000px;}
.y76{bottom:603.795000px;}
.y57{bottom:611.175000px;}
.y23{bottom:615.675000px;}
.y22{bottom:632.955000px;}
.y21{bottom:650.265000px;}
.y56{bottom:654.945000px;}
.y20{bottom:667.545000px;}
.y55{bottom:676.725000px;}
.y1f{bottom:684.825000px;}
.y54{bottom:698.505000px;}
.y1e{bottom:701.925000px;}
.y1d{bottom:719.205000px;}
.y53{bottom:720.285000px;}
.y1c{bottom:736.485000px;}
.y52{bottom:742.065000px;}
.y1b{bottom:753.765000px;}
.y51{bottom:764.025000px;}
.y1a{bottom:771.045000px;}
.y50{bottom:785.805000px;}
.y19{bottom:788.325000px;}
.y18{bottom:805.425000px;}
.y4f{bottom:807.585000px;}
.y75{bottom:811.365000px;}
.y17{bottom:822.705000px;}
.y4e{bottom:829.365000px;}
.y74{bottom:833.325000px;}
.y16{bottom:839.985000px;}
.y4d{bottom:851.145000px;}
.y73{bottom:855.105000px;}
.y15{bottom:857.265000px;}
.y4c{bottom:873.105000px;}
.y72{bottom:876.885000px;}
.y14{bottom:877.065000px;}
.y13{bottom:894.030000px;}
.y4b{bottom:894.930000px;}
.y71{bottom:898.710000px;}
.y12{bottom:909.510000px;}
.y6e{bottom:914.190000px;}
.y4a{bottom:916.710000px;}
.y11{bottom:925.170000px;}
.y49{bottom:938.490000px;}
.y10{bottom:945.150000px;}
.yf{bottom:956.850000px;}
.y48{bottom:960.450000px;}
.ye{bottom:975.930000px;}
.y47{bottom:982.230000px;}
.yd{bottom:994.830000px;}
.y46{bottom:1004.010000px;}
.yc{bottom:1013.730000px;}
.y45{bottom:1025.790000px;}
.yb{bottom:1033.170000px;}
.y44{bottom:1047.570000px;}
.ya{bottom:1054.770000px;}
.y43{bottom:1069.530000px;}
.y9{bottom:1072.050000px;}
.y8{bottom:1089.330000px;}
.y42{bottom:1091.310000px;}
.y7{bottom:1106.610000px;}
.y41{bottom:1113.090000px;}
.y6{bottom:1123.710000px;}
.y40{bottom:1134.870000px;}
.y5{bottom:1140.990000px;}
.y3e{bottom:1166.940000px;}
.y3{bottom:1168.560000px;}
.y1{bottom:1182.600000px;}
.ha{height:25.136719px;}
.h2{height:26.460000px;}
.h10{height:36.768867px;}
.hb{height:37.705078px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:45.549492px;}
.hd{height:46.251562px;}
.h3{height:46.380937px;}
.h8{height:46.736719px;}
.h5{height:47.980898px;}
.he{height:49.394180px;}
.h11{height:50.488594px;}
.h9{height:53.224453px;}
.h7{height:54.864844px;}
.hf{height:65.884219px;}
.h13{height:201.270000px;}
.h12{height:236.190000px;}
.h14{height:240.690000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:53.100000px;}
.w5{width:338.475000px;}
.w6{width:350.535000px;}
.w7{width:446.685000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:10.080000px;}
.x17{left:71.145000px;}
.x13{left:101.555987px;}
.x1{left:108.036000px;}
.x8{left:109.115987px;}
.xb{left:113.795987px;}
.x7{left:124.235987px;}
.xc{left:127.835987px;}
.x10{left:129.275987px;}
.x11{left:135.035987px;}
.x12{left:140.075987px;}
.xd{left:156.449987px;}
.x3{left:161.130000px;}
.x1a{left:223.230000px;}
.xa{left:229.709987px;}
.x5{left:250.409987px;}
.x18{left:271.290000px;}
.x15{left:277.410000px;}
.x16{left:330.375000px;}
.x19{left:342.255000px;}
.x14{left:348.914987px;}
.x9{left:416.414987px;}
.xe{left:418.574987px;}
.xf{left:420.194987px;}
.x6{left:446.474987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.258667pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.090667pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls6{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.318720pt;}
.ls4{letter-spacing:0.320000pt;}
.lse{letter-spacing:2.560000pt;}
.ls12{letter-spacing:3.840000pt;}
.ls13{letter-spacing:43.472640pt;}
.ws5{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.622933pt;}
.wse{word-spacing:-14.448533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws4{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.432213pt;}
.ws8{word-spacing:-8.000000pt;}
.wsf{word-spacing:-0.373120pt;}
.wsb{word-spacing:0.000000pt;}
._19{margin-left:-4.281173pt;}
._c{margin-left:-3.210240pt;}
._7{margin-left:-2.314240pt;}
._0{margin-left:-1.354240pt;}
._2{width:1.115520pt;}
._8{width:2.020907pt;}
._6{width:2.921600pt;}
._f{width:3.984000pt;}
._9{width:5.205760pt;}
._3{width:6.746240pt;}
._11{width:7.817600pt;}
._5{width:8.711680pt;}
._4{width:9.614720pt;}
._1a{width:10.546560pt;}
._15{width:11.481600pt;}
._14{width:12.718080pt;}
._a{width:14.342400pt;}
._b{width:15.506987pt;}
._d{width:16.679680pt;}
._e{width:18.273280pt;}
._18{width:19.548160pt;}
._17{width:20.490240pt;}
._16{width:21.844480pt;}
._1d{width:22.786560pt;}
._1e{width:24.494080pt;}
._12{width:26.319360pt;}
._1c{width:27.614720pt;}
._1b{width:28.556800pt;}
._21{width:29.554347pt;}
._20{width:43.571200pt;}
._1f{width:71.715840pt;}
._24{width:79.488000pt;}
._25{width:81.258880pt;}
._22{width:101.921280pt;}
._23{width:103.040000pt;}
._10{width:138.404267pt;}
._26{width:745.738667pt;}
._13{width:1152.638293pt;}
._1{width:1158.865493pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.600000pt;}
.y70{bottom:5.760000pt;}
.y2{bottom:7.040000pt;}
.y6f{bottom:21.920000pt;}
.y3f{bottom:61.760000pt;}
.y4{bottom:62.400000pt;}
.y3d{bottom:111.360000pt;}
.y83{bottom:115.040000pt;}
.y6d{bottom:116.480000pt;}
.y3c{bottom:130.752000pt;}
.y82{bottom:134.426667pt;}
.y6c{bottom:135.866667pt;}
.y3b{bottom:150.106667pt;}
.y81{bottom:153.786667pt;}
.y6b{bottom:155.386667pt;}
.y3a{bottom:169.466667pt;}
.y80{bottom:173.146667pt;}
.y6a{bottom:174.746667pt;}
.y39{bottom:188.826667pt;}
.y7f{bottom:192.666667pt;}
.y69{bottom:194.106667pt;}
.y38{bottom:208.346667pt;}
.y7e{bottom:212.026667pt;}
.y68{bottom:213.466667pt;}
.y7d{bottom:225.786667pt;}
.y37{bottom:227.706667pt;}
.y67{bottom:232.986667pt;}
.y36{bottom:247.066667pt;}
.y66{bottom:252.346667pt;}
.y35{bottom:266.426667pt;}
.y65{bottom:271.706667pt;}
.y34{bottom:285.946667pt;}
.y64{bottom:291.066667pt;}
.y33{bottom:302.586667pt;}
.y63{bottom:310.426667pt;}
.y32{bottom:315.546667pt;}
.y62{bottom:329.946667pt;}
.y31{bottom:331.386667pt;}
.y30{bottom:348.066667pt;}
.y61{bottom:349.346667pt;}
.y2f{bottom:363.266667pt;}
.y60{bottom:368.706667pt;}
.y2e{bottom:378.626667pt;}
.y5f{bottom:388.066667pt;}
.y2d{bottom:393.986667pt;}
.y5e{bottom:407.586667pt;}
.y2c{bottom:409.346667pt;}
.y2b{bottom:424.706667pt;}
.y5d{bottom:426.946667pt;}
.y2a{bottom:440.066667pt;}
.y7c{bottom:445.346667pt;}
.y5c{bottom:446.306667pt;}
.y29{bottom:455.266667pt;}
.y7b{bottom:464.706667pt;}
.y5b{bottom:465.666667pt;}
.y28{bottom:470.626667pt;}
.y7a{bottom:484.066667pt;}
.y5a{bottom:485.026667pt;}
.y27{bottom:485.986667pt;}
.y26{bottom:501.346667pt;}
.y79{bottom:503.586667pt;}
.y59{bottom:504.546667pt;}
.y25{bottom:516.706667pt;}
.y78{bottom:522.946667pt;}
.y58{bottom:523.906667pt;}
.y24{bottom:531.906667pt;}
.y76{bottom:536.706667pt;}
.y57{bottom:543.266667pt;}
.y23{bottom:547.266667pt;}
.y22{bottom:562.626667pt;}
.y21{bottom:578.013333pt;}
.y56{bottom:582.173333pt;}
.y20{bottom:593.373333pt;}
.y55{bottom:601.533333pt;}
.y1f{bottom:608.733333pt;}
.y54{bottom:620.893333pt;}
.y1e{bottom:623.933333pt;}
.y1d{bottom:639.293333pt;}
.y53{bottom:640.253333pt;}
.y1c{bottom:654.653333pt;}
.y52{bottom:659.613333pt;}
.y1b{bottom:670.013333pt;}
.y51{bottom:679.133333pt;}
.y1a{bottom:685.373333pt;}
.y50{bottom:698.493333pt;}
.y19{bottom:700.733333pt;}
.y18{bottom:715.933333pt;}
.y4f{bottom:717.853333pt;}
.y75{bottom:721.213333pt;}
.y17{bottom:731.293333pt;}
.y4e{bottom:737.213333pt;}
.y74{bottom:740.733333pt;}
.y16{bottom:746.653333pt;}
.y4d{bottom:756.573333pt;}
.y73{bottom:760.093333pt;}
.y15{bottom:762.013333pt;}
.y4c{bottom:776.093333pt;}
.y72{bottom:779.453333pt;}
.y14{bottom:779.613333pt;}
.y13{bottom:794.693333pt;}
.y4b{bottom:795.493333pt;}
.y71{bottom:798.853333pt;}
.y12{bottom:808.453333pt;}
.y6e{bottom:812.613333pt;}
.y4a{bottom:814.853333pt;}
.y11{bottom:822.373333pt;}
.y49{bottom:834.213333pt;}
.y10{bottom:840.133333pt;}
.yf{bottom:850.533333pt;}
.y48{bottom:853.733333pt;}
.ye{bottom:867.493333pt;}
.y47{bottom:873.093333pt;}
.yd{bottom:884.293333pt;}
.y46{bottom:892.453333pt;}
.yc{bottom:901.093333pt;}
.y45{bottom:911.813333pt;}
.yb{bottom:918.373333pt;}
.y44{bottom:931.173333pt;}
.ya{bottom:937.573333pt;}
.y43{bottom:950.693333pt;}
.y9{bottom:952.933333pt;}
.y8{bottom:968.293333pt;}
.y42{bottom:970.053333pt;}
.y7{bottom:983.653333pt;}
.y41{bottom:989.413333pt;}
.y6{bottom:998.853333pt;}
.y40{bottom:1008.773333pt;}
.y5{bottom:1014.213333pt;}
.y3e{bottom:1037.280000pt;}
.y3{bottom:1038.720000pt;}
.y1{bottom:1051.200000pt;}
.ha{height:22.343750pt;}
.h2{height:23.520000pt;}
.h10{height:32.683437pt;}
.hb{height:33.515625pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:40.488438pt;}
.hd{height:41.112500pt;}
.h3{height:41.227500pt;}
.h8{height:41.543750pt;}
.h5{height:42.649687pt;}
.he{height:43.905937pt;}
.h11{height:44.878750pt;}
.h9{height:47.310625pt;}
.h7{height:48.768750pt;}
.hf{height:58.563750pt;}
.h13{height:178.906667pt;}
.h12{height:209.946667pt;}
.h14{height:213.946667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:47.200000pt;}
.w5{width:300.866667pt;}
.w6{width:311.586667pt;}
.w7{width:397.053333pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.960000pt;}
.x17{left:63.240000pt;}
.x13{left:90.271988pt;}
.x1{left:96.032000pt;}
.x8{left:96.991988pt;}
.xb{left:101.151988pt;}
.x7{left:110.431988pt;}
.xc{left:113.631988pt;}
.x10{left:114.911988pt;}
.x11{left:120.031988pt;}
.x12{left:124.511988pt;}
.xd{left:139.066655pt;}
.x3{left:143.226667pt;}
.x1a{left:198.426667pt;}
.xa{left:204.186655pt;}
.x5{left:222.586655pt;}
.x18{left:241.146667pt;}
.x15{left:246.586667pt;}
.x16{left:293.666667pt;}
.x19{left:304.226667pt;}
.x14{left:310.146655pt;}
.x9{left:370.146655pt;}
.xe{left:372.066655pt;}
.xf{left:373.506655pt;}
.x6{left:396.866655pt;}
}




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