
    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_ad001e9e0c7200c54dc47c75.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_dd1143a2476c6849ed8a1f07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_211abd92b372967bec889456.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_7b19960f613ee5161b65539c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_d281f02a486695f560ff667b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.905762;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_38ccf5b232120c31259428a3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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;}
.ls2{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.014400px;}
.ls4{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007200px;}
.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;}
}
.ws2{word-spacing:-25.344000px;}
.ws3{word-spacing:-24.624000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-10.800000px;}
._5{margin-left:-7.326000px;}
._9{margin-left:-6.303600px;}
._6{margin-left:-4.910400px;}
._3{margin-left:-3.754800px;}
._7{margin-left:-2.707200px;}
._1{margin-left:-1.436400px;}
._2{width:1.272600px;}
._8{width:2.896200px;}
._0{width:4.019400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:99.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:0.450000px;}
.y96{bottom:0.487500px;}
.y20{bottom:0.750000px;}
.y55{bottom:0.825000px;}
.y5e{bottom:0.862500px;}
.y53{bottom:1.200000px;}
.y37{bottom:1.237500px;}
.y82{bottom:1.237515px;}
.y21{bottom:1.500000px;}
.y84{bottom:1.575000px;}
.y89{bottom:1.612500px;}
.yb6{bottom:1.612515px;}
.y22{bottom:2.250000px;}
.y1f{bottom:3.000000px;}
.y66{bottom:3.487500px;}
.y3d{bottom:3.487515px;}
.y1e{bottom:3.750000px;}
.y8{bottom:3.862500px;}
.y3f{bottom:3.862515px;}
.ya{bottom:4.237500px;}
.y1a{bottom:4.237515px;}
.y24{bottom:4.612500px;}
.y41{bottom:4.612515px;}
.yc{bottom:4.987500px;}
.y1c{bottom:4.987515px;}
.y8b{bottom:5.737500px;}
.y6{bottom:6.487500px;}
.y4{bottom:6.862500px;}
.y2{bottom:7.612500px;}
.yab{bottom:28.500000px;}
.y81{bottom:39.000000px;}
.y42{bottom:42.000000px;}
.ya5{bottom:43.500000px;}
.yc8{bottom:45.000000px;}
.yb7{bottom:54.000000px;}
.y40{bottom:66.000000px;}
.y64{bottom:67.500000px;}
.ya4{bottom:69.000000px;}
.y80{bottom:78.000000px;}
.y94{bottom:88.500000px;}
.y3e{bottom:91.500000px;}
.ya3{bottom:93.000000px;}
.yc7{bottom:94.500000px;}
.y7f{bottom:102.000000px;}
.y93{bottom:114.000000px;}
.y63{bottom:117.000000px;}
.y1b{bottom:118.500000px;}
.yb5{bottom:123.000000px;}
.y7e{bottom:127.500000px;}
.y3c{bottom:133.500000px;}
.y92{bottom:138.000000px;}
.y62{bottom:141.000000px;}
.ya2{bottom:142.500000px;}
.y19{bottom:144.000000px;}
.y7d{bottom:151.500000px;}
.y3b{bottom:157.500000px;}
.y91{bottom:163.500000px;}
.y61{bottom:166.500000px;}
.y18{bottom:168.000000px;}
.y7c{bottom:177.000000px;}
.y3a{bottom:181.500000px;}
.y90{bottom:187.500000px;}
.y60{bottom:190.500000px;}
.ya1{bottom:192.000000px;}
.y17{bottom:193.500000px;}
.y7b{bottom:201.000000px;}
.yb4{bottom:204.000000px;}
.y39{bottom:207.000000px;}
.y8f{bottom:213.000000px;}
.y5f{bottom:216.000000px;}
.y16{bottom:217.500000px;}
.y7a{bottom:226.500000px;}
.yb3{bottom:228.000000px;}
.y38{bottom:231.000000px;}
.y8e{bottom:237.000000px;}
.ya0{bottom:241.500000px;}
.y15{bottom:243.000000px;}
.y79{bottom:250.500000px;}
.yb2{bottom:253.500000px;}
.y36{bottom:259.500000px;}
.y5d{bottom:261.000000px;}
.y8d{bottom:262.500000px;}
.y14{bottom:267.000000px;}
.y78{bottom:276.000000px;}
.yb1{bottom:277.500000px;}
.y35{bottom:280.500000px;}
.y5c{bottom:282.000000px;}
.yc6{bottom:285.000000px;}
.y8c{bottom:286.500000px;}
.y9f{bottom:291.000000px;}
.y13{bottom:292.500000px;}
.y77{bottom:300.000000px;}
.yb0{bottom:303.000000px;}
.y5b{bottom:307.500000px;}
.yc5{bottom:309.000000px;}
.y12{bottom:316.500000px;}
.y34{bottom:322.500000px;}
.y76{bottom:325.500000px;}
.y5a{bottom:331.500000px;}
.ya9{bottom:334.500000px;}
.y9e{bottom:340.500000px;}
.y11{bottom:342.000000px;}
.y75{bottom:349.500000px;}
.y8a{bottom:354.000000px;}
.y59{bottom:357.000000px;}
.yc4{bottom:358.500000px;}
.y10{bottom:366.000000px;}
.y74{bottom:375.000000px;}
.y58{bottom:381.000000px;}
.yc3{bottom:384.000000px;}
.y9d{bottom:390.000000px;}
.yf{bottom:391.500000px;}
.y73{bottom:399.000000px;}
.y33{bottom:406.500000px;}
.yc2{bottom:408.000000px;}
.ye{bottom:415.500000px;}
.y72{bottom:424.500000px;}
.y32{bottom:430.500000px;}
.yc1{bottom:433.500000px;}
.y9c{bottom:439.500000px;}
.yd{bottom:441.000000px;}
.y88{bottom:447.000000px;}
.y71{bottom:448.500000px;}
.y31{bottom:456.000000px;}
.yc0{bottom:457.500000px;}
.yb{bottom:465.000000px;}
.y87{bottom:469.500000px;}
.y70{bottom:474.000000px;}
.y30{bottom:480.000000px;}
.ybf{bottom:483.000000px;}
.y9b{bottom:489.000000px;}
.y9{bottom:490.500000px;}
.y86{bottom:493.500000px;}
.y6f{bottom:498.000000px;}
.y2f{bottom:505.500000px;}
.ybe{bottom:507.000000px;}
.y9a{bottom:514.500000px;}
.y85{bottom:519.000000px;}
.y6e{bottom:523.500000px;}
.y2e{bottom:529.500000px;}
.y7{bottom:532.500000px;}
.y99{bottom:538.500000px;}
.y2d{bottom:555.000000px;}
.ybd{bottom:556.500000px;}
.y6d{bottom:564.000000px;}
.yd1{bottom:565.500000px;}
.y52{bottom:570.000000px;}
.y57{bottom:571.500000px;}
.y2c{bottom:579.000000px;}
.ybc{bottom:582.000000px;}
.y98{bottom:588.000000px;}
.yd0{bottom:591.000000px;}
.y2b{bottom:604.500000px;}
.ybb{bottom:606.000000px;}
.y5{bottom:609.000000px;}
.y97{bottom:613.500000px;}
.y2a{bottom:628.500000px;}
.ycf{bottom:630.000000px;}
.yba{bottom:631.500000px;}
.y6c{bottom:648.000000px;}
.yce{bottom:651.000000px;}
.y29{bottom:654.000000px;}
.yb9{bottom:655.500000px;}
.y95{bottom:658.500000px;}
.y6b{bottom:672.000000px;}
.y28{bottom:678.000000px;}
.y56{bottom:679.500000px;}
.ycd{bottom:691.500000px;}
.y6a{bottom:697.500000px;}
.y27{bottom:703.500000px;}
.ycc{bottom:712.500000px;}
.y69{bottom:721.500000px;}
.y26{bottom:727.500000px;}
.yb8{bottom:747.000000px;}
.y68{bottom:750.000000px;}
.ycb{bottom:751.500000px;}
.y25{bottom:753.000000px;}
.y67{bottom:771.000000px;}
.yca{bottom:772.500000px;}
.y23{bottom:777.000000px;}
.y51{bottom:796.500000px;}
.yc9{bottom:801.000000px;}
.y50{bottom:820.500000px;}
.y4f{bottom:846.000000px;}
.y83{bottom:856.500000px;}
.y4e{bottom:870.000000px;}
.ya8{bottom:891.000000px;}
.y4d{bottom:895.500000px;}
.y4c{bottom:919.500000px;}
.y4b{bottom:945.000000px;}
.y54{bottom:958.500000px;}
.y4a{bottom:969.000000px;}
.y65{bottom:970.500000px;}
.y49{bottom:994.500000px;}
.yaf{bottom:1009.500000px;}
.y48{bottom:1018.500000px;}
.y3{bottom:1023.000000px;}
.yae{bottom:1035.000000px;}
.y47{bottom:1044.000000px;}
.y46{bottom:1068.000000px;}
.yad{bottom:1077.000000px;}
.y45{bottom:1093.500000px;}
.yac{bottom:1101.000000px;}
.ya7{bottom:1104.000000px;}
.y1{bottom:1105.500000px;}
.y44{bottom:1117.500000px;}
.y43{bottom:1143.000000px;}
.ya6{bottom:1146.000000px;}
.y1d{bottom:1173.000000px;}
.h10{height:10.500000px;}
.hb{height:12.000000px;}
.hc{height:13.500000px;}
.h9{height:15.000000px;}
.hd{height:16.500000px;}
.h6{height:18.000000px;}
.h8{height:19.500000px;}
.he{height:24.000000px;}
.h11{height:25.500000px;}
.h4{height:27.000000px;}
.h3{height:28.500000px;}
.h1{height:31.500000px;}
.ha{height:41.220703px;}
.h7{height:55.054688px;}
.hf{height:71.379000px;}
.h5{height:77.868000px;}
.h2{height:90.846000px;}
.h0{height:1188.000000px;}
.w22{width:6.000000px;}
.w49{width:15.000000px;}
.w34{width:16.500000px;}
.w33{width:24.000000px;}
.w4b{width:25.500000px;}
.w24{width:30.000000px;}
.w16{width:40.500000px;}
.w2a{width:42.000000px;}
.w54{width:48.000000px;}
.w6c{width:49.500000px;}
.w64{width:78.000000px;}
.w6a{width:94.500000px;}
.w17{width:109.500000px;}
.w6b{width:111.000000px;}
.w69{width:123.000000px;}
.w62{width:126.000000px;}
.w67{width:135.000000px;}
.w65{width:141.000000px;}
.w3b{width:177.000000px;}
.w63{width:193.500000px;}
.w66{width:202.500000px;}
.w2{width:207.000000px;}
.w36{width:247.500000px;}
.w4f{width:280.500000px;}
.w14{width:285.000000px;}
.w25{width:339.000000px;}
.w61{width:349.500000px;}
.w1{width:352.500000px;}
.w57{width:357.000000px;}
.w4c{width:366.000000px;}
.w68{width:373.500000px;}
.w23{width:376.500000px;}
.w13{width:378.000000px;}
.w41{width:426.000000px;}
.w4{width:438.000000px;}
.w15{width:445.500000px;}
.w29{width:522.000000px;}
.w58{width:528.000000px;}
.w48{width:535.500000px;}
.w21{width:565.500000px;}
.w55{width:570.000000px;}
.w53{width:598.500000px;}
.w5f{width:609.000000px;}
.w3{width:622.500000px;}
.w35{width:648.000000px;}
.w32{width:654.000000px;}
.w4e{width:657.000000px;}
.w56{width:675.000000px;}
.w5d{width:699.000000px;}
.wc{width:720.000000px;}
.w52{width:724.500000px;}
.w5b{width:729.000000px;}
.w28{width:732.000000px;}
.w3c{width:736.500000px;}
.w5e{width:738.000000px;}
.w5a{width:747.000000px;}
.w1e{width:748.500000px;}
.w47{width:750.000000px;}
.w59{width:751.500000px;}
.w51{width:754.500000px;}
.w5{width:756.000000px;}
.w39{width:757.500000px;}
.w5c{width:760.500000px;}
.w44{width:763.500000px;}
.w3a{width:765.000000px;}
.w26{width:766.500000px;}
.w2b{width:769.500000px;}
.w3e{width:771.000000px;}
.w11{width:772.500000px;}
.w1a{width:774.000000px;}
.w43{width:775.500000px;}
.w4a{width:777.000000px;}
.w37{width:778.500000px;}
.w50{width:780.000000px;}
.w18{width:781.500000px;}
.w8{width:783.000000px;}
.w30{width:784.500000px;}
.w2c{width:786.000000px;}
.w1d{width:787.500000px;}
.w7{width:789.000000px;}
.w38{width:790.500000px;}
.wb{width:792.000000px;}
.w42{width:793.500000px;}
.wa{width:795.000000px;}
.w31{width:796.500000px;}
.w10{width:798.000000px;}
.we{width:799.500000px;}
.w6{width:801.000000px;}
.wd{width:802.500000px;}
.w60{width:804.000000px;}
.w2d{width:805.500000px;}
.w9{width:807.000000px;}
.w1b{width:808.500000px;}
.w2f{width:810.000000px;}
.wf{width:811.500000px;}
.w46{width:813.000000px;}
.w1f{width:814.500000px;}
.w40{width:816.000000px;}
.w19{width:817.500000px;}
.w3d{width:819.000000px;}
.w20{width:820.500000px;}
.w3f{width:822.000000px;}
.w1c{width:823.500000px;}
.w2e{width:825.000000px;}
.w27{width:826.500000px;}
.w45{width:828.000000px;}
.w12{width:829.500000px;}
.w4d{width:831.000000px;}
.w0{width:918.000000px;}
.x2{left:-1.237500px;}
.x0{left:0.000000px;}
.x5{left:1.500000px;}
.x9{left:42.000000px;}
.x3{left:43.500000px;}
.x1{left:45.000000px;}
.x7{left:52.500000px;}
.x8{left:444.000000px;}
.x4{left:472.500000px;}
.x6{left:808.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006400pt;}
.ws2{word-spacing:-22.528000pt;}
.ws3{word-spacing:-21.888000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-9.600000pt;}
._5{margin-left:-6.512000pt;}
._9{margin-left:-5.603200pt;}
._6{margin-left:-4.364800pt;}
._3{margin-left:-3.337600pt;}
._7{margin-left:-2.406400pt;}
._1{margin-left:-1.276800pt;}
._2{width:1.131200pt;}
._8{width:2.574400pt;}
._0{width:3.572800pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:88.000000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:0.400000pt;}
.y96{bottom:0.433333pt;}
.y20{bottom:0.666667pt;}
.y55{bottom:0.733333pt;}
.y5e{bottom:0.766667pt;}
.y53{bottom:1.066667pt;}
.y37{bottom:1.100000pt;}
.y82{bottom:1.100013pt;}
.y21{bottom:1.333333pt;}
.y84{bottom:1.400000pt;}
.y89{bottom:1.433333pt;}
.yb6{bottom:1.433347pt;}
.y22{bottom:2.000000pt;}
.y1f{bottom:2.666667pt;}
.y66{bottom:3.100000pt;}
.y3d{bottom:3.100013pt;}
.y1e{bottom:3.333333pt;}
.y8{bottom:3.433333pt;}
.y3f{bottom:3.433347pt;}
.ya{bottom:3.766667pt;}
.y1a{bottom:3.766680pt;}
.y24{bottom:4.100000pt;}
.y41{bottom:4.100013pt;}
.yc{bottom:4.433333pt;}
.y1c{bottom:4.433347pt;}
.y8b{bottom:5.100000pt;}
.y6{bottom:5.766667pt;}
.y4{bottom:6.100000pt;}
.y2{bottom:6.766667pt;}
.yab{bottom:25.333333pt;}
.y81{bottom:34.666667pt;}
.y42{bottom:37.333333pt;}
.ya5{bottom:38.666667pt;}
.yc8{bottom:40.000000pt;}
.yb7{bottom:48.000000pt;}
.y40{bottom:58.666667pt;}
.y64{bottom:60.000000pt;}
.ya4{bottom:61.333333pt;}
.y80{bottom:69.333333pt;}
.y94{bottom:78.666667pt;}
.y3e{bottom:81.333333pt;}
.ya3{bottom:82.666667pt;}
.yc7{bottom:84.000000pt;}
.y7f{bottom:90.666667pt;}
.y93{bottom:101.333333pt;}
.y63{bottom:104.000000pt;}
.y1b{bottom:105.333333pt;}
.yb5{bottom:109.333333pt;}
.y7e{bottom:113.333333pt;}
.y3c{bottom:118.666667pt;}
.y92{bottom:122.666667pt;}
.y62{bottom:125.333333pt;}
.ya2{bottom:126.666667pt;}
.y19{bottom:128.000000pt;}
.y7d{bottom:134.666667pt;}
.y3b{bottom:140.000000pt;}
.y91{bottom:145.333333pt;}
.y61{bottom:148.000000pt;}
.y18{bottom:149.333333pt;}
.y7c{bottom:157.333333pt;}
.y3a{bottom:161.333333pt;}
.y90{bottom:166.666667pt;}
.y60{bottom:169.333333pt;}
.ya1{bottom:170.666667pt;}
.y17{bottom:172.000000pt;}
.y7b{bottom:178.666667pt;}
.yb4{bottom:181.333333pt;}
.y39{bottom:184.000000pt;}
.y8f{bottom:189.333333pt;}
.y5f{bottom:192.000000pt;}
.y16{bottom:193.333333pt;}
.y7a{bottom:201.333333pt;}
.yb3{bottom:202.666667pt;}
.y38{bottom:205.333333pt;}
.y8e{bottom:210.666667pt;}
.ya0{bottom:214.666667pt;}
.y15{bottom:216.000000pt;}
.y79{bottom:222.666667pt;}
.yb2{bottom:225.333333pt;}
.y36{bottom:230.666667pt;}
.y5d{bottom:232.000000pt;}
.y8d{bottom:233.333333pt;}
.y14{bottom:237.333333pt;}
.y78{bottom:245.333333pt;}
.yb1{bottom:246.666667pt;}
.y35{bottom:249.333333pt;}
.y5c{bottom:250.666667pt;}
.yc6{bottom:253.333333pt;}
.y8c{bottom:254.666667pt;}
.y9f{bottom:258.666667pt;}
.y13{bottom:260.000000pt;}
.y77{bottom:266.666667pt;}
.yb0{bottom:269.333333pt;}
.y5b{bottom:273.333333pt;}
.yc5{bottom:274.666667pt;}
.y12{bottom:281.333333pt;}
.y34{bottom:286.666667pt;}
.y76{bottom:289.333333pt;}
.y5a{bottom:294.666667pt;}
.ya9{bottom:297.333333pt;}
.y9e{bottom:302.666667pt;}
.y11{bottom:304.000000pt;}
.y75{bottom:310.666667pt;}
.y8a{bottom:314.666667pt;}
.y59{bottom:317.333333pt;}
.yc4{bottom:318.666667pt;}
.y10{bottom:325.333333pt;}
.y74{bottom:333.333333pt;}
.y58{bottom:338.666667pt;}
.yc3{bottom:341.333333pt;}
.y9d{bottom:346.666667pt;}
.yf{bottom:348.000000pt;}
.y73{bottom:354.666667pt;}
.y33{bottom:361.333333pt;}
.yc2{bottom:362.666667pt;}
.ye{bottom:369.333333pt;}
.y72{bottom:377.333333pt;}
.y32{bottom:382.666667pt;}
.yc1{bottom:385.333333pt;}
.y9c{bottom:390.666667pt;}
.yd{bottom:392.000000pt;}
.y88{bottom:397.333333pt;}
.y71{bottom:398.666667pt;}
.y31{bottom:405.333333pt;}
.yc0{bottom:406.666667pt;}
.yb{bottom:413.333333pt;}
.y87{bottom:417.333333pt;}
.y70{bottom:421.333333pt;}
.y30{bottom:426.666667pt;}
.ybf{bottom:429.333333pt;}
.y9b{bottom:434.666667pt;}
.y9{bottom:436.000000pt;}
.y86{bottom:438.666667pt;}
.y6f{bottom:442.666667pt;}
.y2f{bottom:449.333333pt;}
.ybe{bottom:450.666667pt;}
.y9a{bottom:457.333333pt;}
.y85{bottom:461.333333pt;}
.y6e{bottom:465.333333pt;}
.y2e{bottom:470.666667pt;}
.y7{bottom:473.333333pt;}
.y99{bottom:478.666667pt;}
.y2d{bottom:493.333333pt;}
.ybd{bottom:494.666667pt;}
.y6d{bottom:501.333333pt;}
.yd1{bottom:502.666667pt;}
.y52{bottom:506.666667pt;}
.y57{bottom:508.000000pt;}
.y2c{bottom:514.666667pt;}
.ybc{bottom:517.333333pt;}
.y98{bottom:522.666667pt;}
.yd0{bottom:525.333333pt;}
.y2b{bottom:537.333333pt;}
.ybb{bottom:538.666667pt;}
.y5{bottom:541.333333pt;}
.y97{bottom:545.333333pt;}
.y2a{bottom:558.666667pt;}
.ycf{bottom:560.000000pt;}
.yba{bottom:561.333333pt;}
.y6c{bottom:576.000000pt;}
.yce{bottom:578.666667pt;}
.y29{bottom:581.333333pt;}
.yb9{bottom:582.666667pt;}
.y95{bottom:585.333333pt;}
.y6b{bottom:597.333333pt;}
.y28{bottom:602.666667pt;}
.y56{bottom:604.000000pt;}
.ycd{bottom:614.666667pt;}
.y6a{bottom:620.000000pt;}
.y27{bottom:625.333333pt;}
.ycc{bottom:633.333333pt;}
.y69{bottom:641.333333pt;}
.y26{bottom:646.666667pt;}
.yb8{bottom:664.000000pt;}
.y68{bottom:666.666667pt;}
.ycb{bottom:668.000000pt;}
.y25{bottom:669.333333pt;}
.y67{bottom:685.333333pt;}
.yca{bottom:686.666667pt;}
.y23{bottom:690.666667pt;}
.y51{bottom:708.000000pt;}
.yc9{bottom:712.000000pt;}
.y50{bottom:729.333333pt;}
.y4f{bottom:752.000000pt;}
.y83{bottom:761.333333pt;}
.y4e{bottom:773.333333pt;}
.ya8{bottom:792.000000pt;}
.y4d{bottom:796.000000pt;}
.y4c{bottom:817.333333pt;}
.y4b{bottom:840.000000pt;}
.y54{bottom:852.000000pt;}
.y4a{bottom:861.333333pt;}
.y65{bottom:862.666667pt;}
.y49{bottom:884.000000pt;}
.yaf{bottom:897.333333pt;}
.y48{bottom:905.333333pt;}
.y3{bottom:909.333333pt;}
.yae{bottom:920.000000pt;}
.y47{bottom:928.000000pt;}
.y46{bottom:949.333333pt;}
.yad{bottom:957.333333pt;}
.y45{bottom:972.000000pt;}
.yac{bottom:978.666667pt;}
.ya7{bottom:981.333333pt;}
.y1{bottom:982.666667pt;}
.y44{bottom:993.333333pt;}
.y43{bottom:1016.000000pt;}
.ya6{bottom:1018.666667pt;}
.y1d{bottom:1042.666667pt;}
.h10{height:9.333333pt;}
.hb{height:10.666667pt;}
.hc{height:12.000000pt;}
.h9{height:13.333333pt;}
.hd{height:14.666667pt;}
.h6{height:16.000000pt;}
.h8{height:17.333333pt;}
.he{height:21.333333pt;}
.h11{height:22.666667pt;}
.h4{height:24.000000pt;}
.h3{height:25.333333pt;}
.h1{height:28.000000pt;}
.ha{height:36.640625pt;}
.h7{height:48.937500pt;}
.hf{height:63.448000pt;}
.h5{height:69.216000pt;}
.h2{height:80.752000pt;}
.h0{height:1056.000000pt;}
.w22{width:5.333333pt;}
.w49{width:13.333333pt;}
.w34{width:14.666667pt;}
.w33{width:21.333333pt;}
.w4b{width:22.666667pt;}
.w24{width:26.666667pt;}
.w16{width:36.000000pt;}
.w2a{width:37.333333pt;}
.w54{width:42.666667pt;}
.w6c{width:44.000000pt;}
.w64{width:69.333333pt;}
.w6a{width:84.000000pt;}
.w17{width:97.333333pt;}
.w6b{width:98.666667pt;}
.w69{width:109.333333pt;}
.w62{width:112.000000pt;}
.w67{width:120.000000pt;}
.w65{width:125.333333pt;}
.w3b{width:157.333333pt;}
.w63{width:172.000000pt;}
.w66{width:180.000000pt;}
.w2{width:184.000000pt;}
.w36{width:220.000000pt;}
.w4f{width:249.333333pt;}
.w14{width:253.333333pt;}
.w25{width:301.333333pt;}
.w61{width:310.666667pt;}
.w1{width:313.333333pt;}
.w57{width:317.333333pt;}
.w4c{width:325.333333pt;}
.w68{width:332.000000pt;}
.w23{width:334.666667pt;}
.w13{width:336.000000pt;}
.w41{width:378.666667pt;}
.w4{width:389.333333pt;}
.w15{width:396.000000pt;}
.w29{width:464.000000pt;}
.w58{width:469.333333pt;}
.w48{width:476.000000pt;}
.w21{width:502.666667pt;}
.w55{width:506.666667pt;}
.w53{width:532.000000pt;}
.w5f{width:541.333333pt;}
.w3{width:553.333333pt;}
.w35{width:576.000000pt;}
.w32{width:581.333333pt;}
.w4e{width:584.000000pt;}
.w56{width:600.000000pt;}
.w5d{width:621.333333pt;}
.wc{width:640.000000pt;}
.w52{width:644.000000pt;}
.w5b{width:648.000000pt;}
.w28{width:650.666667pt;}
.w3c{width:654.666667pt;}
.w5e{width:656.000000pt;}
.w5a{width:664.000000pt;}
.w1e{width:665.333333pt;}
.w47{width:666.666667pt;}
.w59{width:668.000000pt;}
.w51{width:670.666667pt;}
.w5{width:672.000000pt;}
.w39{width:673.333333pt;}
.w5c{width:676.000000pt;}
.w44{width:678.666667pt;}
.w3a{width:680.000000pt;}
.w26{width:681.333333pt;}
.w2b{width:684.000000pt;}
.w3e{width:685.333333pt;}
.w11{width:686.666667pt;}
.w1a{width:688.000000pt;}
.w43{width:689.333333pt;}
.w4a{width:690.666667pt;}
.w37{width:692.000000pt;}
.w50{width:693.333333pt;}
.w18{width:694.666667pt;}
.w8{width:696.000000pt;}
.w30{width:697.333333pt;}
.w2c{width:698.666667pt;}
.w1d{width:700.000000pt;}
.w7{width:701.333333pt;}
.w38{width:702.666667pt;}
.wb{width:704.000000pt;}
.w42{width:705.333333pt;}
.wa{width:706.666667pt;}
.w31{width:708.000000pt;}
.w10{width:709.333333pt;}
.we{width:710.666667pt;}
.w6{width:712.000000pt;}
.wd{width:713.333333pt;}
.w60{width:714.666667pt;}
.w2d{width:716.000000pt;}
.w9{width:717.333333pt;}
.w1b{width:718.666667pt;}
.w2f{width:720.000000pt;}
.wf{width:721.333333pt;}
.w46{width:722.666667pt;}
.w1f{width:724.000000pt;}
.w40{width:725.333333pt;}
.w19{width:726.666667pt;}
.w3d{width:728.000000pt;}
.w20{width:729.333333pt;}
.w3f{width:730.666667pt;}
.w1c{width:732.000000pt;}
.w2e{width:733.333333pt;}
.w27{width:734.666667pt;}
.w45{width:736.000000pt;}
.w12{width:737.333333pt;}
.w4d{width:738.666667pt;}
.w0{width:816.000000pt;}
.x2{left:-1.100000pt;}
.x0{left:0.000000pt;}
.x5{left:1.333333pt;}
.x9{left:37.333333pt;}
.x3{left:38.666667pt;}
.x1{left:40.000000pt;}
.x7{left:46.666667pt;}
.x8{left:394.666667pt;}
.x4{left:420.000000pt;}
.x6{left:718.666667pt;}
}




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