
    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_d31825ed07911199a52bc7bf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c2dc7ad5db6233f129cd4e8d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e7ce14b4843dccd2302692bc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_41f4846210eeb34b390e49c1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_16bdda188da9cde7d08c8293.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_a8bec16aa88808333a77c996.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26a7fa164c21b1a6a840a54d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_f0e7b9d84e17174730e2f821.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_6cb2ebc32ac96e6a761b3dca.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e721ce3c258f102799d2f960.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.034560px;}
.ls11{letter-spacing:0.175800px;}
.lsd{letter-spacing:0.205920px;}
.ls0{letter-spacing:0.745920px;}
.ls8{letter-spacing:8.640000px;}
.ls7{letter-spacing:17.280000px;}
.ls6{letter-spacing:25.200000px;}
.lsc{letter-spacing:32.400000px;}
.lsb{letter-spacing:38.160000px;}
.ls5{letter-spacing:40.320000px;}
.ls9{letter-spacing:42.480000px;}
.lsf{letter-spacing:48.960000px;}
.lse{letter-spacing:56.880000px;}
.ls12{letter-spacing:142.542720px;}
.ls10{letter-spacing:182.118720px;}
.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;}
}
.ws0{word-spacing:-21.617280px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws6{word-spacing:-17.749560px;}
.ws7{word-spacing:-17.573760px;}
.ws1{word-spacing:-0.077760px;}
.ws5{word-spacing:0.000000px;}
._2c{margin-left:-2.875680px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._33{width:2.940480px;}
._19{width:4.072800px;}
._18{width:5.537280px;}
._34{width:6.699840px;}
._14{width:7.776480px;}
._15{width:8.787360px;}
._2e{width:10.285440px;}
._20{width:11.409600px;}
._e{width:12.674880px;}
._f{width:13.764000px;}
._12{width:14.929920px;}
._13{width:15.940800px;}
._27{width:17.496960px;}
._1e{width:20.528640px;}
._28{width:21.597600px;}
._2b{width:23.154240px;}
._4{width:24.494880px;}
._6{width:26.516640px;}
._5{width:27.682560px;}
._35{width:28.771200px;}
._36{width:29.783520px;}
._b{width:31.804320px;}
._a{width:32.970240px;}
._26{width:34.661280px;}
._3b{width:35.769120px;}
._1c{width:36.780960px;}
._1b{width:37.791360px;}
._1d{width:39.015360px;}
._8{width:40.591200px;}
._9{width:42.068160px;}
._38{width:43.195680px;}
._32{width:44.245440px;}
._2a{width:45.672000px;}
._29{width:46.944000px;}
._25{width:48.289920px;}
._24{width:49.688640px;}
._1a{width:50.932800px;}
._11{width:53.188320px;}
._10{width:54.276480px;}
._1f{width:56.258880px;}
._2d{width:57.775680px;}
._37{width:58.864320px;}
._22{width:61.080480px;}
._21{width:62.285760px;}
._23{width:63.452160px;}
._3a{width:67.418400px;}
._39{width:68.739840px;}
._7{width:71.072640px;}
._31{width:76.340640px;}
._2f{width:77.604480px;}
._30{width:78.848640px;}
._3e{width:80.637600px;}
._3c{width:81.803520px;}
._3d{width:82.892160px;}
._d{width:142.690080px;}
._c{width:143.933760px;}
._16{width:188.956800px;}
._3{width:197.355360px;}
._2{width:198.676800px;}
._17{width:262.673760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y17{bottom:4.320000px;}
.y3d{bottom:4.680000px;}
.y19{bottom:5.040000px;}
.ya1{bottom:7.545000px;}
.y31{bottom:7.560000px;}
.ya3{bottom:8.085000px;}
.y8c{bottom:8.100000px;}
.y88{bottom:8.280000px;}
.y9f{bottom:20.505000px;}
.y84{bottom:20.520000px;}
.y86{bottom:21.060000px;}
.y8e{bottom:21.105000px;}
.y16{bottom:26.640000px;}
.y3c{bottom:27.180000px;}
.y30{bottom:33.300000px;}
.y83{bottom:33.480000px;}
.ya0{bottom:33.510000px;}
.ya6{bottom:33.840000px;}
.y87{bottom:34.020000px;}
.y8b{bottom:34.065000px;}
.y2e{bottom:34.200000px;}
.y90{bottom:46.800000px;}
.y8d{bottom:46.845000px;}
.y3b{bottom:49.500000px;}
.y2d{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y91{bottom:59.760000px;}
.y8a{bottom:59.805000px;}
.y3a{bottom:72.000000px;}
.y2c{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y39{bottom:94.320000px;}
.y2a{bottom:105.840000px;}
.yb{bottom:106.416000px;}
.y38{bottom:116.820000px;}
.y29{bottom:128.340000px;}
.ya{bottom:130.536000px;}
.y37{bottom:139.320000px;}
.y28{bottom:150.840000px;}
.y9{bottom:154.470000px;}
.y36{bottom:161.640000px;}
.y27{bottom:173.160000px;}
.y8{bottom:176.250000px;}
.y35{bottom:184.140000px;}
.y26{bottom:195.690000px;}
.y7{bottom:198.750000px;}
.y34{bottom:206.490000px;}
.y25{bottom:218.010000px;}
.y6{bottom:221.250000px;}
.y33{bottom:228.990000px;}
.y24{bottom:240.510000px;}
.ybf{bottom:246.450000px;}
.y32{bottom:251.310000px;}
.y64{bottom:252.930000px;}
.y23{bottom:262.830000px;}
.y43{bottom:263.370000px;}
.y81{bottom:269.670000px;}
.ybe{bottom:272.190000px;}
.ya2{bottom:273.825000px;}
.y63{bottom:278.670000px;}
.y22{bottom:285.330000px;}
.yd5{bottom:287.850000px;}
.y42{bottom:289.110000px;}
.y80{bottom:295.410000px;}
.ybd{bottom:297.930000px;}
.y62{bottom:304.410000px;}
.y9e{bottom:305.505000px;}
.y21{bottom:307.830000px;}
.yd4{bottom:314.130000px;}
.y41{bottom:315.030000px;}
.y7f{bottom:321.330000px;}
.ybc{bottom:323.850000px;}
.y20{bottom:330.150000px;}
.y61{bottom:330.375000px;}
.y40{bottom:340.815000px;}
.y7e{bottom:347.115000px;}
.yd3{bottom:349.275000px;}
.ybb{bottom:349.635000px;}
.y1f{bottom:352.650000px;}
.y60{bottom:356.115000px;}
.y3f{bottom:366.555000px;}
.y9d{bottom:369.435000px;}
.y7d{bottom:372.855000px;}
.y1e{bottom:374.970000px;}
.yba{bottom:375.375000px;}
.y5f{bottom:381.855000px;}
.y3e{bottom:391.935000px;}
.y9c{bottom:395.175000px;}
.yd2{bottom:396.615000px;}
.y1d{bottom:397.470000px;}
.y7c{bottom:398.595000px;}
.yb9{bottom:401.115000px;}
.y5e{bottom:407.595000px;}
.y1a{bottom:410.115000px;}
.y1c{bottom:419.790000px;}
.yd1{bottom:420.555000px;}
.y9b{bottom:420.915000px;}
.y7b{bottom:424.515000px;}
.yb8{bottom:427.035000px;}
.y5d{bottom:433.515000px;}
.y1b{bottom:442.290000px;}
.yd0{bottom:444.315000px;}
.y9a{bottom:446.835000px;}
.y7a{bottom:450.255000px;}
.yb7{bottom:452.775000px;}
.y5c{bottom:459.255000px;}
.ycf{bottom:468.075000px;}
.y99{bottom:472.575000px;}
.y79{bottom:475.995000px;}
.yb6{bottom:478.515000px;}
.y5b{bottom:484.995000px;}
.yce{bottom:491.835000px;}
.y98{bottom:498.315000px;}
.y78{bottom:501.735000px;}
.yb5{bottom:504.435000px;}
.y5a{bottom:510.735000px;}
.ycd{bottom:515.775000px;}
.y97{bottom:524.055000px;}
.y77{bottom:527.655000px;}
.yb4{bottom:530.175000px;}
.y59{bottom:536.655000px;}
.ycc{bottom:539.535000px;}
.y96{bottom:549.975000px;}
.y76{bottom:553.395000px;}
.yb3{bottom:555.915000px;}
.y58{bottom:562.395000px;}
.ycb{bottom:563.295000px;}
.y95{bottom:575.715000px;}
.y75{bottom:579.135000px;}
.yb2{bottom:581.655000px;}
.yca{bottom:587.055000px;}
.y57{bottom:588.135000px;}
.y94{bottom:601.485000px;}
.y74{bottom:604.905000px;}
.yb1{bottom:607.605000px;}
.yc9{bottom:611.025000px;}
.y56{bottom:613.905000px;}
.y93{bottom:623.265000px;}
.y73{bottom:630.825000px;}
.yb0{bottom:633.345000px;}
.yc8{bottom:634.785000px;}
.y55{bottom:639.825000px;}
.y72{bottom:656.565000px;}
.yc7{bottom:658.545000px;}
.yaf{bottom:659.085000px;}
.y54{bottom:665.565000px;}
.y2f{bottom:679.965000px;}
.y71{bottom:682.305000px;}
.yae{bottom:684.825000px;}
.y53{bottom:691.305000px;}
.yc6{bottom:706.245000px;}
.y92{bottom:706.605000px;}
.y70{bottom:708.225000px;}
.yad{bottom:710.745000px;}
.y52{bottom:717.225000px;}
.yc5{bottom:730.005000px;}
.y6f{bottom:733.965000px;}
.yac{bottom:736.485000px;}
.y51{bottom:742.965000px;}
.y2b{bottom:749.445000px;}
.yc4{bottom:753.765000px;}
.y6e{bottom:759.705000px;}
.yab{bottom:762.225000px;}
.y8f{bottom:764.205000px;}
.y50{bottom:768.705000px;}
.yc3{bottom:777.525000px;}
.y6d{bottom:785.445000px;}
.yaa{bottom:787.965000px;}
.y4f{bottom:794.445000px;}
.yc2{bottom:801.465000px;}
.ya9{bottom:809.745000px;}
.y6c{bottom:811.365000px;}
.y4e{bottom:820.365000px;}
.yc1{bottom:836.565000px;}
.y6b{bottom:837.105000px;}
.y4d{bottom:846.105000px;}
.y18{bottom:846.825000px;}
.y89{bottom:847.545000px;}
.y6a{bottom:862.890000px;}
.ya8{bottom:867.390000px;}
.yc0{bottom:871.350000px;}
.y4c{bottom:871.890000px;}
.y15{bottom:879.810000px;}
.y69{bottom:888.630000px;}
.y4b{bottom:897.630000px;}
.y68{bottom:914.550000px;}
.y4a{bottom:923.550000px;}
.ya7{bottom:924.990000px;}
.y85{bottom:930.930000px;}
.y14{bottom:938.850000px;}
.y67{bottom:940.290000px;}
.y49{bottom:949.290000px;}
.y13{bottom:962.970000px;}
.y66{bottom:966.030000px;}
.y48{bottom:975.030000px;}
.ya5{bottom:982.590000px;}
.y12{bottom:987.090000px;}
.y82{bottom:988.530000px;}
.y65{bottom:991.770000px;}
.y47{bottom:1000.770000px;}
.y11{bottom:1010.310000px;}
.y46{bottom:1026.690000px;}
.y10{bottom:1032.810000px;}
.ya4{bottom:1040.190000px;}
.y45{bottom:1052.430000px;}
.yf{bottom:1055.310000px;}
.ye{bottom:1077.630000px;}
.y44{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.h19{height:25.725000px;}
.hc{height:32.242500px;}
.h1a{height:51.465000px;}
.h14{height:51.645000px;}
.h17{height:51.660000px;}
.h18{height:51.681000px;}
.hb{height:53.805000px;}
.h13{height:54.523125px;}
.he{height:64.091250px;}
.h9{height:67.242656px;}
.h11{height:69.480000px;}
.h2{height:72.562500px;}
.hf{height:76.279219px;}
.h8{height:76.317188px;}
.h1b{height:77.342344px;}
.h16{height:77.400000px;}
.h15{height:77.422500px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.h10{height:96.660000px;}
.h12{height:268.950000px;}
.hd{height:468.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:187.590000px;}
.w4{width:215.353500px;}
.w9{width:217.815000px;}
.w2{width:237.439500px;}
.w6{width:242.655000px;}
.w5{width:259.770000px;}
.w7{width:281.953500px;}
.w3{width:404.895000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x2d{left:11.340000px;}
.x1d{left:17.629500px;}
.x2a{left:18.900000px;}
.x18{left:21.049500px;}
.x1a{left:23.209500px;}
.x17{left:27.703500px;}
.x10{left:29.340000px;}
.xf{left:33.283500px;}
.x35{left:35.085000px;}
.x38{left:37.114500px;}
.x1b{left:39.943500px;}
.x27{left:42.105000px;}
.xb{left:43.723500px;}
.x2e{left:48.405000px;}
.x23{left:49.894500px;}
.x16{left:51.823500px;}
.x1c{left:59.383500px;}
.x14{left:61.723500px;}
.x15{left:62.983500px;}
.x26{left:66.225000px;}
.x12{left:67.843500px;}
.x19{left:69.463500px;}
.x2c{left:71.625000px;}
.x29{left:74.520000px;}
.x28{left:76.348500px;}
.x33{left:77.580000px;}
.xc{left:78.643500px;}
.x13{left:79.903500px;}
.x2b{left:81.525000px;}
.x22{left:83.881500px;}
.x1{left:84.960000px;}
.x31{left:89.848500px;}
.x1e{left:91.783500px;}
.x2f{left:97.740000px;}
.x36{left:100.980000px;}
.x2{left:103.356000px;}
.x5{left:105.696000px;}
.x39{left:108.388500px;}
.x37{left:116.130000px;}
.x1f{left:118.836000px;}
.x3a{left:120.990000px;}
.xa{left:125.326500px;}
.x4{left:129.996000px;}
.xe{left:144.210000px;}
.x30{left:148.896000px;}
.x20{left:155.010000px;}
.x8{left:247.170000px;}
.x7{left:289.515000px;}
.x24{left:303.015000px;}
.x21{left:328.035000px;}
.xd{left:362.775000px;}
.x32{left:369.615000px;}
.x9{left:397.695000px;}
.x6{left:457.095000px;}
.x3b{left:463.395000px;}
.x34{left:561.000000px;}
.x25{left:566.580000px;}
.x3{left:788.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.030720pt;}
.ls11{letter-spacing:0.156267pt;}
.lsd{letter-spacing:0.183040pt;}
.ls0{letter-spacing:0.663040pt;}
.ls8{letter-spacing:7.680000pt;}
.ls7{letter-spacing:15.360000pt;}
.ls6{letter-spacing:22.400000pt;}
.lsc{letter-spacing:28.800000pt;}
.lsb{letter-spacing:33.920000pt;}
.ls5{letter-spacing:35.840000pt;}
.ls9{letter-spacing:37.760000pt;}
.lsf{letter-spacing:43.520000pt;}
.lse{letter-spacing:50.560000pt;}
.ls12{letter-spacing:126.704640pt;}
.ls10{letter-spacing:161.883307pt;}
.ws0{word-spacing:-19.215360pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws6{word-spacing:-15.777387pt;}
.ws7{word-spacing:-15.621120pt;}
.ws1{word-spacing:-0.069120pt;}
.ws5{word-spacing:0.000000pt;}
._2c{margin-left:-2.556160pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._33{width:2.613760pt;}
._19{width:3.620267pt;}
._18{width:4.922027pt;}
._34{width:5.955413pt;}
._14{width:6.912427pt;}
._15{width:7.810987pt;}
._2e{width:9.142613pt;}
._20{width:10.141867pt;}
._e{width:11.266560pt;}
._f{width:12.234667pt;}
._12{width:13.271040pt;}
._13{width:14.169600pt;}
._27{width:15.552853pt;}
._1e{width:18.247680pt;}
._28{width:19.197867pt;}
._2b{width:20.581547pt;}
._4{width:21.773227pt;}
._6{width:23.570347pt;}
._5{width:24.606720pt;}
._35{width:25.574400pt;}
._36{width:26.474240pt;}
._b{width:28.270507pt;}
._a{width:29.306880pt;}
._26{width:30.810027pt;}
._3b{width:31.794773pt;}
._1c{width:32.694187pt;}
._1b{width:33.592320pt;}
._1d{width:34.680320pt;}
._8{width:36.081067pt;}
._9{width:37.393920pt;}
._38{width:38.396160pt;}
._32{width:39.329280pt;}
._2a{width:40.597333pt;}
._29{width:41.728000pt;}
._25{width:42.924373pt;}
._24{width:44.167680pt;}
._1a{width:45.273600pt;}
._11{width:47.278507pt;}
._10{width:48.245760pt;}
._1f{width:50.007893pt;}
._2d{width:51.356160pt;}
._37{width:52.323840pt;}
._22{width:54.293760pt;}
._21{width:55.365120pt;}
._23{width:56.401920pt;}
._3a{width:59.927467pt;}
._39{width:61.102080pt;}
._7{width:63.175680pt;}
._31{width:67.858347pt;}
._2f{width:68.981760pt;}
._30{width:70.087680pt;}
._3e{width:71.677867pt;}
._3c{width:72.714240pt;}
._3d{width:73.681920pt;}
._d{width:126.835627pt;}
._c{width:127.941120pt;}
._16{width:167.961600pt;}
._3{width:175.426987pt;}
._2{width:176.601600pt;}
._17{width:233.487787pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:3.840000pt;}
.y3d{bottom:4.160000pt;}
.y19{bottom:4.480000pt;}
.ya1{bottom:6.706667pt;}
.y31{bottom:6.720000pt;}
.ya3{bottom:7.186667pt;}
.y8c{bottom:7.200000pt;}
.y88{bottom:7.360000pt;}
.y9f{bottom:18.226667pt;}
.y84{bottom:18.240000pt;}
.y86{bottom:18.720000pt;}
.y8e{bottom:18.760000pt;}
.y16{bottom:23.680000pt;}
.y3c{bottom:24.160000pt;}
.y30{bottom:29.600000pt;}
.y83{bottom:29.760000pt;}
.ya0{bottom:29.786667pt;}
.ya6{bottom:30.080000pt;}
.y87{bottom:30.240000pt;}
.y8b{bottom:30.280000pt;}
.y2e{bottom:30.400000pt;}
.y90{bottom:41.600000pt;}
.y8d{bottom:41.640000pt;}
.y3b{bottom:44.000000pt;}
.y2d{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y91{bottom:53.120000pt;}
.y8a{bottom:53.160000pt;}
.y3a{bottom:64.000000pt;}
.y2c{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y39{bottom:83.840000pt;}
.y2a{bottom:94.080000pt;}
.yb{bottom:94.592000pt;}
.y38{bottom:103.840000pt;}
.y29{bottom:114.080000pt;}
.ya{bottom:116.032000pt;}
.y37{bottom:123.840000pt;}
.y28{bottom:134.080000pt;}
.y9{bottom:137.306667pt;}
.y36{bottom:143.680000pt;}
.y27{bottom:153.920000pt;}
.y8{bottom:156.666667pt;}
.y35{bottom:163.680000pt;}
.y26{bottom:173.946667pt;}
.y7{bottom:176.666667pt;}
.y34{bottom:183.546667pt;}
.y25{bottom:193.786667pt;}
.y6{bottom:196.666667pt;}
.y33{bottom:203.546667pt;}
.y24{bottom:213.786667pt;}
.ybf{bottom:219.066667pt;}
.y32{bottom:223.386667pt;}
.y64{bottom:224.826667pt;}
.y23{bottom:233.626667pt;}
.y43{bottom:234.106667pt;}
.y81{bottom:239.706667pt;}
.ybe{bottom:241.946667pt;}
.ya2{bottom:243.400000pt;}
.y63{bottom:247.706667pt;}
.y22{bottom:253.626667pt;}
.yd5{bottom:255.866667pt;}
.y42{bottom:256.986667pt;}
.y80{bottom:262.586667pt;}
.ybd{bottom:264.826667pt;}
.y62{bottom:270.586667pt;}
.y9e{bottom:271.560000pt;}
.y21{bottom:273.626667pt;}
.yd4{bottom:279.226667pt;}
.y41{bottom:280.026667pt;}
.y7f{bottom:285.626667pt;}
.ybc{bottom:287.866667pt;}
.y20{bottom:293.466667pt;}
.y61{bottom:293.666667pt;}
.y40{bottom:302.946667pt;}
.y7e{bottom:308.546667pt;}
.yd3{bottom:310.466667pt;}
.ybb{bottom:310.786667pt;}
.y1f{bottom:313.466667pt;}
.y60{bottom:316.546667pt;}
.y3f{bottom:325.826667pt;}
.y9d{bottom:328.386667pt;}
.y7d{bottom:331.426667pt;}
.y1e{bottom:333.306667pt;}
.yba{bottom:333.666667pt;}
.y5f{bottom:339.426667pt;}
.y3e{bottom:348.386667pt;}
.y9c{bottom:351.266667pt;}
.yd2{bottom:352.546667pt;}
.y1d{bottom:353.306667pt;}
.y7c{bottom:354.306667pt;}
.yb9{bottom:356.546667pt;}
.y5e{bottom:362.306667pt;}
.y1a{bottom:364.546667pt;}
.y1c{bottom:373.146667pt;}
.yd1{bottom:373.826667pt;}
.y9b{bottom:374.146667pt;}
.y7b{bottom:377.346667pt;}
.yb8{bottom:379.586667pt;}
.y5d{bottom:385.346667pt;}
.y1b{bottom:393.146667pt;}
.yd0{bottom:394.946667pt;}
.y9a{bottom:397.186667pt;}
.y7a{bottom:400.226667pt;}
.yb7{bottom:402.466667pt;}
.y5c{bottom:408.226667pt;}
.ycf{bottom:416.066667pt;}
.y99{bottom:420.066667pt;}
.y79{bottom:423.106667pt;}
.yb6{bottom:425.346667pt;}
.y5b{bottom:431.106667pt;}
.yce{bottom:437.186667pt;}
.y98{bottom:442.946667pt;}
.y78{bottom:445.986667pt;}
.yb5{bottom:448.386667pt;}
.y5a{bottom:453.986667pt;}
.ycd{bottom:458.466667pt;}
.y97{bottom:465.826667pt;}
.y77{bottom:469.026667pt;}
.yb4{bottom:471.266667pt;}
.y59{bottom:477.026667pt;}
.ycc{bottom:479.586667pt;}
.y96{bottom:488.866667pt;}
.y76{bottom:491.906667pt;}
.yb3{bottom:494.146667pt;}
.y58{bottom:499.906667pt;}
.ycb{bottom:500.706667pt;}
.y95{bottom:511.746667pt;}
.y75{bottom:514.786667pt;}
.yb2{bottom:517.026667pt;}
.yca{bottom:521.826667pt;}
.y57{bottom:522.786667pt;}
.y94{bottom:534.653333pt;}
.y74{bottom:537.693333pt;}
.yb1{bottom:540.093333pt;}
.yc9{bottom:543.133333pt;}
.y56{bottom:545.693333pt;}
.y93{bottom:554.013333pt;}
.y73{bottom:560.733333pt;}
.yb0{bottom:562.973333pt;}
.yc8{bottom:564.253333pt;}
.y55{bottom:568.733333pt;}
.y72{bottom:583.613333pt;}
.yc7{bottom:585.373333pt;}
.yaf{bottom:585.853333pt;}
.y54{bottom:591.613333pt;}
.y2f{bottom:604.413333pt;}
.y71{bottom:606.493333pt;}
.yae{bottom:608.733333pt;}
.y53{bottom:614.493333pt;}
.yc6{bottom:627.773333pt;}
.y92{bottom:628.093333pt;}
.y70{bottom:629.533333pt;}
.yad{bottom:631.773333pt;}
.y52{bottom:637.533333pt;}
.yc5{bottom:648.893333pt;}
.y6f{bottom:652.413333pt;}
.yac{bottom:654.653333pt;}
.y51{bottom:660.413333pt;}
.y2b{bottom:666.173333pt;}
.yc4{bottom:670.013333pt;}
.y6e{bottom:675.293333pt;}
.yab{bottom:677.533333pt;}
.y8f{bottom:679.293333pt;}
.y50{bottom:683.293333pt;}
.yc3{bottom:691.133333pt;}
.y6d{bottom:698.173333pt;}
.yaa{bottom:700.413333pt;}
.y4f{bottom:706.173333pt;}
.yc2{bottom:712.413333pt;}
.ya9{bottom:719.773333pt;}
.y6c{bottom:721.213333pt;}
.y4e{bottom:729.213333pt;}
.yc1{bottom:743.613333pt;}
.y6b{bottom:744.093333pt;}
.y4d{bottom:752.093333pt;}
.y18{bottom:752.733333pt;}
.y89{bottom:753.373333pt;}
.y6a{bottom:767.013333pt;}
.ya8{bottom:771.013333pt;}
.yc0{bottom:774.533333pt;}
.y4c{bottom:775.013333pt;}
.y15{bottom:782.053333pt;}
.y69{bottom:789.893333pt;}
.y4b{bottom:797.893333pt;}
.y68{bottom:812.933333pt;}
.y4a{bottom:820.933333pt;}
.ya7{bottom:822.213333pt;}
.y85{bottom:827.493333pt;}
.y14{bottom:834.533333pt;}
.y67{bottom:835.813333pt;}
.y49{bottom:843.813333pt;}
.y13{bottom:855.973333pt;}
.y66{bottom:858.693333pt;}
.y48{bottom:866.693333pt;}
.ya5{bottom:873.413333pt;}
.y12{bottom:877.413333pt;}
.y82{bottom:878.693333pt;}
.y65{bottom:881.573333pt;}
.y47{bottom:889.573333pt;}
.y11{bottom:898.053333pt;}
.y46{bottom:912.613333pt;}
.y10{bottom:918.053333pt;}
.ya4{bottom:924.613333pt;}
.y45{bottom:935.493333pt;}
.yf{bottom:938.053333pt;}
.ye{bottom:957.893333pt;}
.y44{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.h19{height:22.866667pt;}
.hc{height:28.660000pt;}
.h1a{height:45.746667pt;}
.h14{height:45.906667pt;}
.h17{height:45.920000pt;}
.h18{height:45.938667pt;}
.hb{height:47.826667pt;}
.h13{height:48.465000pt;}
.he{height:56.970000pt;}
.h9{height:59.771250pt;}
.h11{height:61.760000pt;}
.h2{height:64.500000pt;}
.hf{height:67.803750pt;}
.h8{height:67.837500pt;}
.h1b{height:68.748750pt;}
.h16{height:68.800000pt;}
.h15{height:68.820000pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.h10{height:85.920000pt;}
.h12{height:239.066667pt;}
.hd{height:416.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:166.746667pt;}
.w4{width:191.425333pt;}
.w9{width:193.613333pt;}
.w2{width:211.057333pt;}
.w6{width:215.693333pt;}
.w5{width:230.906667pt;}
.w7{width:250.625333pt;}
.w3{width:359.906667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x2d{left:10.080000pt;}
.x1d{left:15.670667pt;}
.x2a{left:16.800000pt;}
.x18{left:18.710667pt;}
.x1a{left:20.630667pt;}
.x17{left:24.625333pt;}
.x10{left:26.080000pt;}
.xf{left:29.585333pt;}
.x35{left:31.186667pt;}
.x38{left:32.990667pt;}
.x1b{left:35.505333pt;}
.x27{left:37.426667pt;}
.xb{left:38.865333pt;}
.x2e{left:43.026667pt;}
.x23{left:44.350667pt;}
.x16{left:46.065333pt;}
.x1c{left:52.785333pt;}
.x14{left:54.865333pt;}
.x15{left:55.985333pt;}
.x26{left:58.866667pt;}
.x12{left:60.305333pt;}
.x19{left:61.745333pt;}
.x2c{left:63.666667pt;}
.x29{left:66.240000pt;}
.x28{left:67.865333pt;}
.x33{left:68.960000pt;}
.xc{left:69.905333pt;}
.x13{left:71.025333pt;}
.x2b{left:72.466667pt;}
.x22{left:74.561333pt;}
.x1{left:75.520000pt;}
.x31{left:79.865333pt;}
.x1e{left:81.585333pt;}
.x2f{left:86.880000pt;}
.x36{left:89.760000pt;}
.x2{left:91.872000pt;}
.x5{left:93.952000pt;}
.x39{left:96.345333pt;}
.x37{left:103.226667pt;}
.x1f{left:105.632000pt;}
.x3a{left:107.546667pt;}
.xa{left:111.401333pt;}
.x4{left:115.552000pt;}
.xe{left:128.186667pt;}
.x30{left:132.352000pt;}
.x20{left:137.786667pt;}
.x8{left:219.706667pt;}
.x7{left:257.346667pt;}
.x24{left:269.346667pt;}
.x21{left:291.586667pt;}
.xd{left:322.466667pt;}
.x32{left:328.546667pt;}
.x9{left:353.506667pt;}
.x6{left:406.306667pt;}
.x3b{left:411.906667pt;}
.x34{left:498.666667pt;}
.x25{left:503.626667pt;}
.x3{left:700.933333pt;}
}




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