
    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_be78c4efedbbcbec0eb56bfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_bf3f7237eea520c525f3c85e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f386f9cd73b67d65bfafa9c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_b60f5e233450fbfb25be8843.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_85beda24a55567617a59b258.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_19af7f169564dbfe3895b2eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_c9c57785e9af66f2e83967ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_f2256ac907a3ba1748458aa6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_0fd00d3e16bf09930a68ef7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_91671c4eca000f2bb24f5a74.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8f6cf6258df524ac2e400e6f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.772949;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v6{vertical-align:-32.400000px;}
.v9{vertical-align:-29.520000px;}
.v2{vertical-align:-19.440000px;}
.v4{vertical-align:-10.800000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v7{vertical-align:32.400000px;}
.v5{vertical-align:35.280000px;}
.v8{vertical-align:39.600000px;}
.ls16{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.261600px;}
.ls15{letter-spacing:-0.134400px;}
.ls19{letter-spacing:-0.026640px;}
.ls12{letter-spacing:-0.018720px;}
.ls11{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.002160px;}
.lsb{letter-spacing:0.074160px;}
.ls10{letter-spacing:0.093360px;}
.ls0{letter-spacing:0.094320px;}
.ls3{letter-spacing:0.134400px;}
.ls8{letter-spacing:0.134640px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.225360px;}
.ls17{letter-spacing:0.295800px;}
.lsd{letter-spacing:0.306600px;}
.lse{letter-spacing:0.306720px;}
.ls1{letter-spacing:0.350640px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.575712px;}
.ls5{letter-spacing:0.683280px;}
.lsc{letter-spacing:0.693360px;}
.ls4{letter-spacing:0.854640px;}
.ls2{letter-spacing:4.039200px;}
.lsf{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc1{text-shadow:-0.015em 0 rgb(23,55,94),0 0.015em rgb(23,55,94),0.015em 0 rgb(23,55,94),0 -0.015em  rgb(23,55,94);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(23,55,94);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-192.240000px;}
.ws16{word-spacing:-131.760000px;}
.ws4{word-spacing:-74.524320px;}
.ws3{word-spacing:-73.707120px;}
.ws5{word-spacing:-69.840000px;}
.ws12{word-spacing:-48.060000px;}
.ws15{word-spacing:-37.946304px;}
.wsd{word-spacing:-33.074400px;}
.wsf{word-spacing:-32.940000px;}
.wse{word-spacing:-32.805600px;}
.ws19{word-spacing:-30.366600px;}
.ws18{word-spacing:-30.060000px;}
.ws1{word-spacing:-23.940000px;}
.ws10{word-spacing:-21.960000px;}
.ws2{word-spacing:-16.020000px;}
.ws1b{word-spacing:0.000000px;}
.ws1a{word-spacing:0.028800px;}
.ws11{word-spacing:0.313920px;}
.ws14{word-spacing:0.489600px;}
.ws17{word-spacing:0.777600px;}
.wsc{word-spacing:118.883760px;}
.wsb{word-spacing:120.592080px;}
.ws8{word-spacing:123.411600px;}
.ws6{word-spacing:153.366720px;}
.ws9{word-spacing:201.965520px;}
.ws0{word-spacing:320.791920px;}
.wsa{word-spacing:360.806640px;}
.ws7{word-spacing:433.080000px;}
._3{margin-left:-23.176800px;}
._10{margin-left:-19.553760px;}
._11{margin-left:-15.325920px;}
._15{margin-left:-12.935040px;}
._f{margin-left:-11.353968px;}
._6{margin-left:-10.303488px;}
._5{margin-left:-7.727616px;}
._13{margin-left:-5.933520px;}
._4{margin-left:-4.557312px;}
._16{margin-left:-3.518640px;}
._12{margin-left:-2.512080px;}
._0{margin-left:-1.440720px;}
._1{width:1.980720px;}
._2{width:3.125520px;}
._7{width:5.253120px;}
._1c{width:26.478000px;}
._1b{width:28.271280px;}
._19{width:31.950480px;}
._14{width:35.007360px;}
._1a{width:37.695216px;}
._18{width:40.433520px;}
._17{width:43.621200px;}
._e{width:144.658080px;}
._c{width:177.881280px;}
._b{width:180.041280px;}
._8{width:211.713840px;}
._9{width:291.881280px;}
._a{width:383.819280px;}
._d{width:385.704240px;}
.fc9{color:transparent;}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(73,170,226);}
.fc5{color:rgb(60,111,226);}
.fc8{color:rgb(204,0,153);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(23,55,94);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:64.080000px;}
.fs4{font-size:69.840000px;}
.fsf{font-size:79.920000px;}
.fs8{font-size:87.840000px;}
.fs3{font-size:95.760000px;}
.fsd{font-size:120.240000px;}
.fse{font-size:126.742821px;}
.fs7{font-size:131.760000px;}
.fsc{font-size:131.904000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fs9{font-size:192.240000px;}
.fs2{font-size:198.144000px;}
.fs6{font-size:264.240000px;}
.fs1{font-size:282.960000px;}
.fs0{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:93.810000px;}
.y2f{bottom:158.430000px;}
.y2e{bottom:292.530000px;}
.y2d{bottom:359.130000px;}
.y2c{bottom:425.730000px;}
.y2b{bottom:494.130000px;}
.y2a{bottom:568.290000px;}
.y43{bottom:1103.430000px;}
.y3f{bottom:1139.250000px;}
.y42{bottom:1139.430000px;}
.y3e{bottom:1175.430000px;}
.y3d{bottom:1211.430000px;}
.y3c{bottom:1247.250000px;}
.y41{bottom:1247.430000px;}
.y3b{bottom:1283.250000px;}
.y40{bottom:1283.430000px;}
.y1d{bottom:1376.280000px;}
.y22{bottom:2032.230000px;}
.y21{bottom:2071.830000px;}
.y20{bottom:2111.430000px;}
.y1f{bottom:2151.030000px;}
.y1e{bottom:2190.630000px;}
.y1c{bottom:2320.380000px;}
.y3a{bottom:2508.045000px;}
.y39{bottom:2547.645000px;}
.y38{bottom:2587.245000px;}
.y37{bottom:2644.890000px;}
.y36{bottom:2684.490000px;}
.y35{bottom:2724.090000px;}
.y34{bottom:2763.690000px;}
.y33{bottom:2803.290000px;}
.y32{bottom:2842.890000px;}
.y31{bottom:2882.490000px;}
.y30{bottom:2922.090000px;}
.y1b{bottom:2998.110000px;}
.y1a{bottom:3030.270000px;}
.y19{bottom:3062.445000px;}
.y18{bottom:3094.590000px;}
.y17{bottom:3126.750000px;}
.y16{bottom:3158.925000px;}
.y15{bottom:3191.070000px;}
.y14{bottom:3223.230000px;}
.y13{bottom:3255.405000px;}
.y12{bottom:3287.550000px;}
.y11{bottom:3319.740000px;}
.y10{bottom:3351.885000px;}
.yf{bottom:3384.030000px;}
.ye{bottom:3416.220000px;}
.yd{bottom:3448.365000px;}
.yc{bottom:3480.510000px;}
.yb{bottom:3512.700000px;}
.ya{bottom:3544.845000px;}
.y5{bottom:3576.960000px;}
.y9{bottom:3577.035000px;}
.y8{bottom:3609.180000px;}
.y7{bottom:3641.970000px;}
.y4{bottom:3670.770000px;}
.y45{bottom:3703.680000px;}
.y44{bottom:3979.290000px;}
.y29{bottom:4049.925000px;}
.y28{bottom:4107.525000px;}
.y27{bottom:4165.125000px;}
.y26{bottom:4222.725000px;}
.y25{bottom:4280.325000px;}
.y24{bottom:4337.925000px;}
.y23{bottom:4395.525000px;}
.y3{bottom:4583.670000px;}
.y2{bottom:4648.110000px;}
.y1{bottom:4778.610000px;}
.h6{height:69.341836px;}
.h8{height:74.943984px;}
.h9{height:83.339297px;}
.h15{height:87.068320px;}
.h16{height:88.002096px;}
.h17{height:90.590977px;}
.hb{height:95.410195px;}
.h13{height:95.514469px;}
.h14{height:99.270352px;}
.hc{height:103.206797px;}
.h12{height:111.043828px;}
.hf{height:124.263633px;}
.h10{height:124.370297px;}
.hd{height:139.205039px;}
.h5{height:150.736500px;}
.he{height:162.014766px;}
.h11{height:171.921234px;}
.ha{height:191.341758px;}
.h7{height:201.780000px;}
.h4{height:204.620977px;}
.h3{height:347.751914px;}
.h2{height:5017.319634px;}
.h0{height:5017.320000px;}
.h1{height:5017.500000px;}
.w3{width:92.160000px;}
.w1{width:3571.500000px;}
.w2{width:3571.739947px;}
.w0{width:3571.740000px;}
.x0{left:0.000000px;}
.x4{left:8.850000px;}
.x1{left:181.289947px;}
.x10{left:308.309947px;}
.x19{left:340.709947px;}
.x1a{left:366.449947px;}
.x13{left:699.509947px;}
.xd{left:770.939947px;}
.x12{left:776.084947px;}
.x14{left:877.349947px;}
.xe{left:903.674947px;}
.x17{left:1255.499947px;}
.x18{left:1273.859947px;}
.xf{left:1356.269947px;}
.x15{left:1396.259947px;}
.x16{left:1414.439947px;}
.x11{left:1481.189947px;}
.xc{left:1572.089947px;}
.x1c{left:1575.569947px;}
.xb{left:1580.729947px;}
.x2{left:1585.589947px;}
.x1d{left:1682.789947px;}
.x1b{left:1779.764947px;}
.x3{left:1783.980000px;}
.x6{left:1921.424947px;}
.x5{left:1933.484947px;}
.x8{left:2032.889947px;}
.x7{left:2062.409947px;}
.xa{left:2203.274947px;}
.x9{left:2215.874947px;}
@media print{
.v6{vertical-align:-28.800000pt;}
.v9{vertical-align:-26.240000pt;}
.v2{vertical-align:-17.280000pt;}
.v4{vertical-align:-9.600000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v7{vertical-align:28.800000pt;}
.v5{vertical-align:31.360000pt;}
.v8{vertical-align:35.200000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.232533pt;}
.ls15{letter-spacing:-0.119467pt;}
.ls19{letter-spacing:-0.023680pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls11{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.001920pt;}
.lsb{letter-spacing:0.065920pt;}
.ls10{letter-spacing:0.082987pt;}
.ls0{letter-spacing:0.083840pt;}
.ls3{letter-spacing:0.119467pt;}
.ls8{letter-spacing:0.119680pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.200320pt;}
.ls17{letter-spacing:0.262933pt;}
.lsd{letter-spacing:0.272533pt;}
.lse{letter-spacing:0.272640pt;}
.ls1{letter-spacing:0.311680pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.511744pt;}
.ls5{letter-spacing:0.607360pt;}
.lsc{letter-spacing:0.616320pt;}
.ls4{letter-spacing:0.759680pt;}
.ls2{letter-spacing:3.590400pt;}
.lsf{letter-spacing:17.600000pt;}
.ws13{word-spacing:-170.880000pt;}
.ws16{word-spacing:-117.120000pt;}
.ws4{word-spacing:-66.243840pt;}
.ws3{word-spacing:-65.517440pt;}
.ws5{word-spacing:-62.080000pt;}
.ws12{word-spacing:-42.720000pt;}
.ws15{word-spacing:-33.730048pt;}
.wsd{word-spacing:-29.399467pt;}
.wsf{word-spacing:-29.280000pt;}
.wse{word-spacing:-29.160533pt;}
.ws19{word-spacing:-26.992533pt;}
.ws18{word-spacing:-26.720000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws10{word-spacing:-19.520000pt;}
.ws2{word-spacing:-14.240000pt;}
.ws1b{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.025600pt;}
.ws11{word-spacing:0.279040pt;}
.ws14{word-spacing:0.435200pt;}
.ws17{word-spacing:0.691200pt;}
.wsc{word-spacing:105.674453pt;}
.wsb{word-spacing:107.192960pt;}
.ws8{word-spacing:109.699200pt;}
.ws6{word-spacing:136.325973pt;}
.ws9{word-spacing:179.524907pt;}
.ws0{word-spacing:285.148373pt;}
.wsa{word-spacing:320.717013pt;}
.ws7{word-spacing:384.960000pt;}
._3{margin-left:-20.601600pt;}
._10{margin-left:-17.381120pt;}
._11{margin-left:-13.623040pt;}
._15{margin-left:-11.497813pt;}
._f{margin-left:-10.092416pt;}
._6{margin-left:-9.158656pt;}
._5{margin-left:-6.868992pt;}
._13{margin-left:-5.274240pt;}
._4{margin-left:-4.050944pt;}
._16{margin-left:-3.127680pt;}
._12{margin-left:-2.232960pt;}
._0{margin-left:-1.280640pt;}
._1{width:1.760640pt;}
._2{width:2.778240pt;}
._7{width:4.669440pt;}
._1c{width:23.536000pt;}
._1b{width:25.130027pt;}
._19{width:28.400427pt;}
._14{width:31.117653pt;}
._1a{width:33.506859pt;}
._18{width:35.940907pt;}
._17{width:38.774400pt;}
._e{width:128.584960pt;}
._c{width:158.116693pt;}
._b{width:160.036693pt;}
._8{width:188.190080pt;}
._9{width:259.450027pt;}
._a{width:341.172693pt;}
._d{width:342.848213pt;}
.fs5{font-size:56.960000pt;}
.fs4{font-size:62.080000pt;}
.fsf{font-size:71.040000pt;}
.fs8{font-size:78.080000pt;}
.fs3{font-size:85.120000pt;}
.fsd{font-size:106.880000pt;}
.fse{font-size:112.660286pt;}
.fs7{font-size:117.120000pt;}
.fsc{font-size:117.248000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fs9{font-size:170.880000pt;}
.fs2{font-size:176.128000pt;}
.fs6{font-size:234.880000pt;}
.fs1{font-size:251.520000pt;}
.fs0{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:83.386667pt;}
.y2f{bottom:140.826667pt;}
.y2e{bottom:260.026667pt;}
.y2d{bottom:319.226667pt;}
.y2c{bottom:378.426667pt;}
.y2b{bottom:439.226667pt;}
.y2a{bottom:505.146667pt;}
.y43{bottom:980.826667pt;}
.y3f{bottom:1012.666667pt;}
.y42{bottom:1012.826667pt;}
.y3e{bottom:1044.826667pt;}
.y3d{bottom:1076.826667pt;}
.y3c{bottom:1108.666667pt;}
.y41{bottom:1108.826667pt;}
.y3b{bottom:1140.666667pt;}
.y40{bottom:1140.826667pt;}
.y1d{bottom:1223.360000pt;}
.y22{bottom:1806.426667pt;}
.y21{bottom:1841.626667pt;}
.y20{bottom:1876.826667pt;}
.y1f{bottom:1912.026667pt;}
.y1e{bottom:1947.226667pt;}
.y1c{bottom:2062.560000pt;}
.y3a{bottom:2229.373333pt;}
.y39{bottom:2264.573333pt;}
.y38{bottom:2299.773333pt;}
.y37{bottom:2351.013333pt;}
.y36{bottom:2386.213333pt;}
.y35{bottom:2421.413333pt;}
.y34{bottom:2456.613333pt;}
.y33{bottom:2491.813333pt;}
.y32{bottom:2527.013333pt;}
.y31{bottom:2562.213333pt;}
.y30{bottom:2597.413333pt;}
.y1b{bottom:2664.986667pt;}
.y1a{bottom:2693.573333pt;}
.y19{bottom:2722.173333pt;}
.y18{bottom:2750.746667pt;}
.y17{bottom:2779.333333pt;}
.y16{bottom:2807.933333pt;}
.y15{bottom:2836.506667pt;}
.y14{bottom:2865.093333pt;}
.y13{bottom:2893.693333pt;}
.y12{bottom:2922.266667pt;}
.y11{bottom:2950.880000pt;}
.y10{bottom:2979.453333pt;}
.yf{bottom:3008.026667pt;}
.ye{bottom:3036.640000pt;}
.yd{bottom:3065.213333pt;}
.yc{bottom:3093.786667pt;}
.yb{bottom:3122.400000pt;}
.ya{bottom:3150.973333pt;}
.y5{bottom:3179.520000pt;}
.y9{bottom:3179.586667pt;}
.y8{bottom:3208.160000pt;}
.y7{bottom:3237.306667pt;}
.y4{bottom:3262.906667pt;}
.y45{bottom:3292.160000pt;}
.y44{bottom:3537.146667pt;}
.y29{bottom:3599.933333pt;}
.y28{bottom:3651.133333pt;}
.y27{bottom:3702.333333pt;}
.y26{bottom:3753.533333pt;}
.y25{bottom:3804.733333pt;}
.y24{bottom:3855.933333pt;}
.y23{bottom:3907.133333pt;}
.y3{bottom:4074.373333pt;}
.y2{bottom:4131.653333pt;}
.y1{bottom:4247.653333pt;}
.h6{height:61.637188pt;}
.h8{height:66.616875pt;}
.h9{height:74.079375pt;}
.h15{height:77.394062pt;}
.h16{height:78.224085pt;}
.h17{height:80.525312pt;}
.hb{height:84.809062pt;}
.h13{height:84.901750pt;}
.h14{height:88.240312pt;}
.hc{height:91.739375pt;}
.h12{height:98.705625pt;}
.hf{height:110.456562pt;}
.h10{height:110.551375pt;}
.hd{height:123.737813pt;}
.h5{height:133.988000pt;}
.he{height:144.013125pt;}
.h11{height:152.818875pt;}
.ha{height:170.081563pt;}
.h7{height:179.360000pt;}
.h4{height:181.885313pt;}
.h3{height:309.112813pt;}
.h2{height:4459.839674pt;}
.h0{height:4459.840000pt;}
.h1{height:4460.000000pt;}
.w3{width:81.920000pt;}
.w1{width:3174.666667pt;}
.w2{width:3174.879953pt;}
.w0{width:3174.880000pt;}
.x0{left:0.000000pt;}
.x4{left:7.866667pt;}
.x1{left:161.146619pt;}
.x10{left:274.053286pt;}
.x19{left:302.853286pt;}
.x1a{left:325.733286pt;}
.x13{left:621.786619pt;}
.xd{left:685.279953pt;}
.x12{left:689.853286pt;}
.x14{left:779.866619pt;}
.xe{left:803.266619pt;}
.x17{left:1115.999953pt;}
.x18{left:1132.319953pt;}
.xf{left:1205.573286pt;}
.x15{left:1241.119953pt;}
.x16{left:1257.279953pt;}
.x11{left:1316.613286pt;}
.xc{left:1397.413286pt;}
.x1c{left:1400.506619pt;}
.xb{left:1405.093286pt;}
.x2{left:1409.413286pt;}
.x1d{left:1495.813286pt;}
.x1b{left:1582.013286pt;}
.x3{left:1585.760000pt;}
.x6{left:1707.933286pt;}
.x5{left:1718.653286pt;}
.x8{left:1807.013286pt;}
.x7{left:1833.253286pt;}
.xa{left:1958.466619pt;}
.x9{left:1969.666619pt;}
}




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