
    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_4b4719db535c100903300174.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_8677ca37d32550c329618bf3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_745e492dda1a5ed3e1a3e440.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_a9d264bacb5fc8ed679cf9aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_23df084809c12bec04b9952a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_8f906d9a36dbc969d78172a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063000;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_b5b3f6a8dc9ab3808d235e9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079000;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_837c93340302708339ca47c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws4{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504681px;}
.ws7{word-spacing:-10.504089px;}
.ws3{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-1.002036px;}
._7{width:1.118972px;}
._a{width:2.475054px;}
._6{width:3.679664px;}
._4{width:5.369576px;}
._d{width:6.636496px;}
._e{width:7.752847px;}
._16{width:8.906127px;}
._1a{width:10.336297px;}
._13{width:11.411671px;}
._0{width:12.676693px;}
._25{width:13.990129px;}
._24{width:15.480893px;}
._14{width:18.016645px;}
._1{width:19.087417px;}
._5{width:20.806942px;}
._9{width:22.743868px;}
._b{width:23.935120px;}
._2d{width:25.363611px;}
._23{width:26.433304px;}
._1b{width:28.172966px;}
._29{width:29.362704px;}
._20{width:30.714556px;}
._1c{width:32.302382px;}
._35{width:33.303946px;}
._19{width:34.449986px;}
._2b{width:35.576619px;}
._1f{width:37.038062px;}
._3{width:38.113378px;}
._c{width:39.284834px;}
._28{width:41.264061px;}
._1d{width:42.898937px;}
._1e{width:44.451265px;}
._18{width:46.428360px;}
._11{width:48.360549px;}
._17{width:49.396173px;}
._36{width:51.060749px;}
._22{width:53.267416px;}
._2e{width:54.997748px;}
._10{width:56.195907px;}
._30{width:58.019779px;}
._8{width:59.546159px;}
._21{width:61.062433px;}
._f{width:63.022840px;}
._15{width:65.616315px;}
._32{width:68.462378px;}
._3c{width:70.548610px;}
._38{width:72.017119px;}
._2c{width:76.268287px;}
._37{width:77.848273px;}
._3a{width:78.911451px;}
._27{width:80.990970px;}
._31{width:82.856158px;}
._12{width:83.922802px;}
._2{width:85.287365px;}
._2f{width:88.903103px;}
._33{width:90.128051px;}
._34{width:96.043528px;}
._26{width:135.204339px;}
._3b{width:299.325485px;}
._39{width:528.875345px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs7{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs8{font-size:29.750527px;}
.fs4{font-size:42.016355px;}
.fs9{font-size:42.018724px;}
.fs2{font-size:54.020354px;}
.fs6{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y106{bottom:5.617766px;}
.y105{bottom:15.534608px;}
.y104{bottom:25.451451px;}
.y101{bottom:29.655019px;}
.y103{bottom:35.368293px;}
.yfd{bottom:35.514983px;}
.y102{bottom:45.285135px;}
.yfc{bottom:53.870950px;}
.y100{bottom:54.744267px;}
.y87{bottom:57.252308px;}
.yfb{bottom:71.009182px;}
.y86{bottom:79.760789px;}
.yf9{bottom:95.616664px;}
.y85{bottom:102.269269px;}
.y53{bottom:106.728611px;}
.y2b{bottom:108.165688px;}
.yf8{bottom:118.125145px;}
.y84{bottom:124.777750px;}
.y52{bottom:129.237092px;}
.y2a{bottom:130.674168px;}
.yd0{bottom:139.426765px;}
.yf7{bottom:140.633626px;}
.y107{bottom:143.875725px;}
.y83{bottom:147.286231px;}
.y51{bottom:151.745572px;}
.y29{bottom:153.182649px;}
.ycf{bottom:161.935246px;}
.yf6{bottom:163.142106px;}
.y82{bottom:169.794711px;}
.y50{bottom:174.254053px;}
.y28{bottom:175.691130px;}
.ya4{bottom:180.419481px;}
.yce{bottom:184.443726px;}
.yf5{bottom:185.650587px;}
.y10a{bottom:188.400212px;}
.y81{bottom:192.303192px;}
.ya3{bottom:194.424932px;}
.y4f{bottom:196.762534px;}
.y27{bottom:198.199610px;}
.y109{bottom:202.405664px;}
.ycd{bottom:206.952207px;}
.yf4{bottom:208.159067px;}
.y80{bottom:214.811673px;}
.y4e{bottom:219.271014px;}
.y26{bottom:220.708091px;}
.yfe{bottom:226.611662px;}
.ycc{bottom:229.460688px;}
.yf3{bottom:230.667548px;}
.y7f{bottom:237.320153px;}
.y4d{bottom:241.779495px;}
.y25{bottom:243.216572px;}
.ycb{bottom:251.969168px;}
.y7e{bottom:259.828634px;}
.y4c{bottom:264.287976px;}
.y24{bottom:265.725052px;}
.yca{bottom:274.477649px;}
.yf2{bottom:275.684509px;}
.y7d{bottom:282.337115px;}
.y108{bottom:282.621509px;}
.y4b{bottom:286.796456px;}
.y23{bottom:288.233533px;}
.yc9{bottom:296.986130px;}
.yf1{bottom:298.192990px;}
.y7c{bottom:304.845595px;}
.yff{bottom:306.827470px;}
.y4a{bottom:309.304937px;}
.y22{bottom:310.742014px;}
.yc8{bottom:319.494610px;}
.yf0{bottom:320.701471px;}
.y7b{bottom:327.354076px;}
.y49{bottom:331.813418px;}
.y21{bottom:333.250494px;}
.yc7{bottom:342.003091px;}
.yef{bottom:343.209951px;}
.y7a{bottom:349.862557px;}
.y48{bottom:354.321898px;}
.y20{bottom:355.758975px;}
.yc6{bottom:364.511572px;}
.yee{bottom:365.718432px;}
.y79{bottom:372.371037px;}
.y47{bottom:376.830379px;}
.y1f{bottom:378.267456px;}
.yc5{bottom:387.020052px;}
.yed{bottom:388.226913px;}
.y78{bottom:394.879518px;}
.y46{bottom:399.338860px;}
.y1e{bottom:400.775936px;}
.yc4{bottom:409.528533px;}
.yec{bottom:410.735393px;}
.y77{bottom:417.387999px;}
.y45{bottom:421.847340px;}
.y1d{bottom:423.284417px;}
.yc3{bottom:432.037014px;}
.yeb{bottom:433.243874px;}
.y76{bottom:439.896479px;}
.y44{bottom:444.355821px;}
.y1c{bottom:445.792898px;}
.yc2{bottom:454.545494px;}
.y75{bottom:462.404960px;}
.y43{bottom:466.864302px;}
.y1b{bottom:468.301378px;}
.yc1{bottom:477.053975px;}
.yea{bottom:478.260835px;}
.y74{bottom:484.913441px;}
.y42{bottom:489.372782px;}
.y1a{bottom:490.809859px;}
.yc0{bottom:499.562456px;}
.ye9{bottom:500.769316px;}
.y73{bottom:507.421921px;}
.y41{bottom:511.881263px;}
.y19{bottom:513.318340px;}
.ybf{bottom:522.070936px;}
.ye8{bottom:523.277797px;}
.y72{bottom:529.930402px;}
.y40{bottom:534.389743px;}
.y18{bottom:535.826820px;}
.ybe{bottom:544.579417px;}
.ye7{bottom:545.786277px;}
.y71{bottom:552.438883px;}
.y3f{bottom:556.898224px;}
.y17{bottom:558.335301px;}
.ybd{bottom:567.087898px;}
.ye6{bottom:568.294758px;}
.y70{bottom:574.947363px;}
.y3e{bottom:579.406705px;}
.y16{bottom:580.843782px;}
.ye5{bottom:590.803239px;}
.y6f{bottom:597.455844px;}
.y3d{bottom:601.915185px;}
.y15{bottom:603.352262px;}
.ybc{bottom:612.104859px;}
.y6e{bottom:619.964325px;}
.y3c{bottom:624.423666px;}
.y14{bottom:625.860743px;}
.ybb{bottom:634.613340px;}
.ye4{bottom:635.820200px;}
.y6d{bottom:642.472805px;}
.y3b{bottom:646.932147px;}
.y13{bottom:648.369224px;}
.ye3{bottom:658.328681px;}
.y6c{bottom:664.981286px;}
.ya0{bottom:665.883500px;}
.y9a{bottom:667.534129px;}
.y3a{bottom:669.440627px;}
.y12{bottom:670.877704px;}
.yba{bottom:679.630301px;}
.ye2{bottom:680.837161px;}
.y6b{bottom:687.489767px;}
.y9f{bottom:688.391981px;}
.y99{bottom:690.042609px;}
.y39{bottom:691.949108px;}
.y11{bottom:693.386185px;}
.yb9{bottom:702.138782px;}
.ye1{bottom:703.345642px;}
.y6a{bottom:709.998247px;}
.y9e{bottom:710.900461px;}
.y38{bottom:714.457589px;}
.y10{bottom:715.894666px;}
.yb8{bottom:724.647262px;}
.ye0{bottom:725.854123px;}
.y69{bottom:732.506728px;}
.y9d{bottom:733.408942px;}
.ya2{bottom:733.484001px;}
.y37{bottom:736.966069px;}
.yf{bottom:738.403146px;}
.yb7{bottom:747.155743px;}
.y68{bottom:755.015209px;}
.y9c{bottom:755.917423px;}
.ya1{bottom:758.243329px;}
.y36{bottom:759.474550px;}
.ye{bottom:760.911627px;}
.yb6{bottom:769.664224px;}
.ydf{bottom:770.871084px;}
.y67{bottom:777.523689px;}
.y9b{bottom:778.425903px;}
.y35{bottom:781.983031px;}
.yd{bottom:783.420108px;}
.yb5{bottom:792.172704px;}
.yde{bottom:793.379565px;}
.y66{bottom:800.032170px;}
.y98{bottom:800.934384px;}
.y34{bottom:804.491511px;}
.yc{bottom:805.928588px;}
.yb4{bottom:814.681185px;}
.ydd{bottom:815.888045px;}
.y65{bottom:822.540651px;}
.y97{bottom:823.442865px;}
.y33{bottom:826.999992px;}
.yb{bottom:828.437069px;}
.yb3{bottom:837.189666px;}
.ydc{bottom:838.396526px;}
.y64{bottom:845.049131px;}
.y96{bottom:845.951345px;}
.y32{bottom:849.508473px;}
.ya{bottom:850.945550px;}
.yb2{bottom:859.698146px;}
.ydb{bottom:860.905007px;}
.y63{bottom:867.557612px;}
.y95{bottom:868.459826px;}
.y31{bottom:872.016953px;}
.y9{bottom:873.454030px;}
.yb1{bottom:882.206627px;}
.yda{bottom:883.413487px;}
.y62{bottom:890.066093px;}
.y94{bottom:890.968307px;}
.y30{bottom:894.525434px;}
.y8{bottom:895.962511px;}
.yb0{bottom:904.715108px;}
.y61{bottom:912.574573px;}
.y93{bottom:913.476787px;}
.y2f{bottom:917.033915px;}
.y7{bottom:918.470991px;}
.yaf{bottom:927.223588px;}
.yd9{bottom:928.430449px;}
.y60{bottom:935.083054px;}
.y92{bottom:935.985268px;}
.y2e{bottom:939.542395px;}
.y6{bottom:940.979472px;}
.yae{bottom:949.732069px;}
.yd8{bottom:950.938929px;}
.y5f{bottom:957.591535px;}
.y91{bottom:958.493749px;}
.y2d{bottom:962.050876px;}
.y5{bottom:963.487953px;}
.yad{bottom:972.240550px;}
.yd7{bottom:973.447410px;}
.y5e{bottom:980.100015px;}
.y90{bottom:981.002229px;}
.y2c{bottom:984.559357px;}
.y4{bottom:985.996433px;}
.yac{bottom:994.749030px;}
.yd6{bottom:995.955891px;}
.y5d{bottom:1002.608496px;}
.y8f{bottom:1003.510710px;}
.yab{bottom:1017.257511px;}
.yd5{bottom:1018.464371px;}
.y56{bottom:1022.748733px;}
.y5c{bottom:1025.116977px;}
.y8e{bottom:1026.019191px;}
.y110{bottom:1026.026869px;}
.yaa{bottom:1039.765992px;}
.yd4{bottom:1040.972852px;}
.y55{bottom:1047.508062px;}
.y5b{bottom:1047.625457px;}
.y8d{bottom:1048.527671px;}
.y10f{bottom:1048.535350px;}
.ya9{bottom:1062.274472px;}
.yd3{bottom:1063.481333px;}
.y5a{bottom:1070.133938px;}
.y8c{bottom:1071.036152px;}
.ya8{bottom:1084.782953px;}
.yd2{bottom:1085.989813px;}
.y59{bottom:1092.642419px;}
.y8b{bottom:1093.544633px;}
.y10e{bottom:1093.552311px;}
.y54{bottom:1099.502641px;}
.ya7{bottom:1107.291434px;}
.yd1{bottom:1108.498294px;}
.y58{bottom:1115.150899px;}
.y8a{bottom:1116.053113px;}
.y10d{bottom:1116.060792px;}
.ya6{bottom:1129.799914px;}
.y57{bottom:1137.659380px;}
.y89{bottom:1138.561594px;}
.y10c{bottom:1138.569273px;}
.y3{bottom:1149.525267px;}
.yfa{bottom:1151.333012px;}
.ya5{bottom:1152.308395px;}
.y88{bottom:1161.070075px;}
.y10b{bottom:1161.077753px;}
.y2{bottom:1178.786292px;}
.hc{height:15.033783px;}
.ha{height:22.751155px;}
.he{height:24.187179px;}
.h8{height:34.159296px;}
.hf{height:34.161222px;}
.h5{height:48.132135px;}
.hb{height:48.786186px;}
.hd{height:53.639998px;}
.h7{height:53.653825px;}
.h9{height:53.719820px;}
.h4{height:58.801424px;}
.h6{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:47.986994px;}
.x8{left:49.025411px;}
.x9{left:50.900892px;}
.xd{left:58.798029px;}
.x1{left:72.690283px;}
.x5{left:78.130732px;}
.x2{left:81.412320px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x4{left:469.237524px;}
.xa{left:496.419632px;}
.x7{left:618.659038px;}
.x6{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws4{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337494pt;}
.ws7{word-spacing:-9.336968pt;}
.ws3{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-0.890698pt;}
._7{width:0.994642pt;}
._a{width:2.200048pt;}
._6{width:3.270813pt;}
._4{width:4.772956pt;}
._d{width:5.899108pt;}
._e{width:6.891420pt;}
._16{width:7.916558pt;}
._1a{width:9.187820pt;}
._13{width:10.143708pt;}
._0{width:11.268172pt;}
._25{width:12.435670pt;}
._24{width:13.760794pt;}
._14{width:16.014796pt;}
._1{width:16.966593pt;}
._5{width:18.495060pt;}
._9{width:20.216772pt;}
._b{width:21.275662pt;}
._2d{width:22.545432pt;}
._23{width:23.496270pt;}
._1b{width:25.042636pt;}
._29{width:26.100182pt;}
._20{width:27.301828pt;}
._1c{width:28.713228pt;}
._35{width:29.603508pt;}
._19{width:30.622210pt;}
._2b{width:31.623661pt;}
._1f{width:32.922722pt;}
._3{width:33.878558pt;}
._c{width:34.919853pt;}
._28{width:36.679165pt;}
._1d{width:38.132388pt;}
._1e{width:39.512236pt;}
._18{width:41.269653pt;}
._11{width:42.987155pt;}
._17{width:43.907709pt;}
._36{width:45.387333pt;}
._22{width:47.348815pt;}
._2e{width:48.886887pt;}
._10{width:49.951918pt;}
._30{width:51.573137pt;}
._8{width:52.929919pt;}
._21{width:54.277718pt;}
._f{width:56.020303pt;}
._15{width:58.325613pt;}
._32{width:60.855447pt;}
._3c{width:62.709876pt;}
._38{width:64.015217pt;}
._2c{width:67.794033pt;}
._37{width:69.198465pt;}
._3a{width:70.143512pt;}
._27{width:71.991973pt;}
._31{width:73.649919pt;}
._12{width:74.598046pt;}
._2{width:75.810991pt;}
._2f{width:79.024981pt;}
._33{width:80.113823pt;}
._34{width:85.372025pt;}
._26{width:120.181634pt;}
._3b{width:266.067098pt;}
._39{width:470.111418pt;}
.fs7{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs8{font-size:26.444913pt;}
.fs4{font-size:37.347871pt;}
.fs9{font-size:37.349977pt;}
.fs2{font-size:48.018092pt;}
.fs6{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y106{bottom:4.993570pt;}
.y105{bottom:13.808541pt;}
.y104{bottom:22.623512pt;}
.y101{bottom:26.360017pt;}
.y103{bottom:31.438483pt;}
.yfd{bottom:31.568874pt;}
.y102{bottom:40.253454pt;}
.yfc{bottom:47.885289pt;}
.y100{bottom:48.661571pt;}
.y87{bottom:50.890941pt;}
.yfb{bottom:63.119273pt;}
.y86{bottom:70.898479pt;}
.yf9{bottom:84.992590pt;}
.y85{bottom:90.906017pt;}
.y53{bottom:94.869876pt;}
.y2b{bottom:96.147278pt;}
.yf8{bottom:105.000129pt;}
.y84{bottom:110.913556pt;}
.y52{bottom:114.877415pt;}
.y2a{bottom:116.154816pt;}
.yd0{bottom:123.934902pt;}
.yf7{bottom:125.007667pt;}
.y107{bottom:127.889533pt;}
.y83{bottom:130.921094pt;}
.y51{bottom:134.884953pt;}
.y29{bottom:136.162355pt;}
.ycf{bottom:143.942441pt;}
.yf6{bottom:145.015205pt;}
.y82{bottom:150.928632pt;}
.y50{bottom:154.892491pt;}
.y28{bottom:156.169893pt;}
.ya4{bottom:160.372872pt;}
.yce{bottom:163.949979pt;}
.yf5{bottom:165.022744pt;}
.y10a{bottom:167.466856pt;}
.y81{bottom:170.936171pt;}
.ya3{bottom:172.822162pt;}
.y4f{bottom:174.900030pt;}
.y27{bottom:176.177431pt;}
.y109{bottom:179.916146pt;}
.ycd{bottom:183.957517pt;}
.yf4{bottom:185.030282pt;}
.y80{bottom:190.943709pt;}
.y4e{bottom:194.907568pt;}
.y26{bottom:196.184970pt;}
.yfe{bottom:201.432588pt;}
.ycc{bottom:203.965056pt;}
.yf3{bottom:205.037821pt;}
.y7f{bottom:210.951248pt;}
.y4d{bottom:214.915107pt;}
.y25{bottom:216.192508pt;}
.ycb{bottom:223.972594pt;}
.y7e{bottom:230.958786pt;}
.y4c{bottom:234.922645pt;}
.y24{bottom:236.200046pt;}
.yca{bottom:243.980133pt;}
.yf2{bottom:245.052897pt;}
.y7d{bottom:250.966324pt;}
.y108{bottom:251.219119pt;}
.y4b{bottom:254.930183pt;}
.y23{bottom:256.207585pt;}
.yc9{bottom:263.987671pt;}
.yf1{bottom:265.060436pt;}
.y7c{bottom:270.973863pt;}
.yff{bottom:272.735529pt;}
.y4a{bottom:274.937722pt;}
.y22{bottom:276.215123pt;}
.yc8{bottom:283.995209pt;}
.yf0{bottom:285.067974pt;}
.y7b{bottom:290.981401pt;}
.y49{bottom:294.945260pt;}
.y21{bottom:296.222662pt;}
.yc7{bottom:304.002748pt;}
.yef{bottom:305.075512pt;}
.y7a{bottom:310.988939pt;}
.y48{bottom:314.952798pt;}
.y20{bottom:316.230200pt;}
.yc6{bottom:324.010286pt;}
.yee{bottom:325.083051pt;}
.y79{bottom:330.996478pt;}
.y47{bottom:334.960337pt;}
.y1f{bottom:336.237738pt;}
.yc5{bottom:344.017824pt;}
.yed{bottom:345.090589pt;}
.y78{bottom:351.004016pt;}
.y46{bottom:354.967875pt;}
.y1e{bottom:356.245277pt;}
.yc4{bottom:364.025363pt;}
.yec{bottom:365.098128pt;}
.y77{bottom:371.011554pt;}
.y45{bottom:374.975413pt;}
.y1d{bottom:376.252815pt;}
.yc3{bottom:384.032901pt;}
.yeb{bottom:385.105666pt;}
.y76{bottom:391.019093pt;}
.y44{bottom:394.982952pt;}
.y1c{bottom:396.260353pt;}
.yc2{bottom:404.040439pt;}
.y75{bottom:411.026631pt;}
.y43{bottom:414.990490pt;}
.y1b{bottom:416.267892pt;}
.yc1{bottom:424.047978pt;}
.yea{bottom:425.120743pt;}
.y74{bottom:431.034170pt;}
.y42{bottom:434.998029pt;}
.y1a{bottom:436.275430pt;}
.yc0{bottom:444.055516pt;}
.ye9{bottom:445.128281pt;}
.y73{bottom:451.041708pt;}
.y41{bottom:455.005567pt;}
.y19{bottom:456.282969pt;}
.ybf{bottom:464.063055pt;}
.ye8{bottom:465.135819pt;}
.y72{bottom:471.049246pt;}
.y40{bottom:475.013105pt;}
.y18{bottom:476.290507pt;}
.ybe{bottom:484.070593pt;}
.ye7{bottom:485.143358pt;}
.y71{bottom:491.056785pt;}
.y3f{bottom:495.020644pt;}
.y17{bottom:496.298045pt;}
.ybd{bottom:504.078131pt;}
.ye6{bottom:505.150896pt;}
.y70{bottom:511.064323pt;}
.y3e{bottom:515.028182pt;}
.y16{bottom:516.305584pt;}
.ye5{bottom:525.158434pt;}
.y6f{bottom:531.071861pt;}
.y3d{bottom:535.035720pt;}
.y15{bottom:536.313122pt;}
.ybc{bottom:544.093208pt;}
.y6e{bottom:551.079400pt;}
.y3c{bottom:555.043259pt;}
.y14{bottom:556.320660pt;}
.ybb{bottom:564.100746pt;}
.ye4{bottom:565.173511pt;}
.y6d{bottom:571.086938pt;}
.y3b{bottom:575.050797pt;}
.y13{bottom:576.328199pt;}
.ye3{bottom:585.181050pt;}
.y6c{bottom:591.094476pt;}
.ya0{bottom:591.896444pt;}
.y9a{bottom:593.363670pt;}
.y3a{bottom:595.058336pt;}
.y12{bottom:596.335737pt;}
.yba{bottom:604.115823pt;}
.ye2{bottom:605.188588pt;}
.y6b{bottom:611.102015pt;}
.y9f{bottom:611.903983pt;}
.y99{bottom:613.371208pt;}
.y39{bottom:615.065874pt;}
.y11{bottom:616.343275pt;}
.yb9{bottom:624.123362pt;}
.ye1{bottom:625.196126pt;}
.y6a{bottom:631.109553pt;}
.y9e{bottom:631.911521pt;}
.y38{bottom:635.073412pt;}
.y10{bottom:636.350814pt;}
.yb8{bottom:644.130900pt;}
.ye0{bottom:645.203665pt;}
.y69{bottom:651.117092pt;}
.y9d{bottom:651.919060pt;}
.ya2{bottom:651.985778pt;}
.y37{bottom:655.080951pt;}
.yf{bottom:656.358352pt;}
.yb7{bottom:664.138438pt;}
.y68{bottom:671.124630pt;}
.y9c{bottom:671.926598pt;}
.ya1{bottom:673.994070pt;}
.y36{bottom:675.088489pt;}
.ye{bottom:676.365891pt;}
.yb6{bottom:684.145977pt;}
.ydf{bottom:685.218741pt;}
.y67{bottom:691.132168pt;}
.y9b{bottom:691.934136pt;}
.y35{bottom:695.096027pt;}
.yd{bottom:696.373429pt;}
.yb5{bottom:704.153515pt;}
.yde{bottom:705.226280pt;}
.y66{bottom:711.139707pt;}
.y98{bottom:711.941675pt;}
.y34{bottom:715.103566pt;}
.yc{bottom:716.380967pt;}
.yb4{bottom:724.161053pt;}
.ydd{bottom:725.233818pt;}
.y65{bottom:731.147245pt;}
.y97{bottom:731.949213pt;}
.y33{bottom:735.111104pt;}
.yb{bottom:736.388506pt;}
.yb3{bottom:744.168592pt;}
.ydc{bottom:745.241356pt;}
.y64{bottom:751.154783pt;}
.y96{bottom:751.956751pt;}
.y32{bottom:755.118642pt;}
.ya{bottom:756.396044pt;}
.yb2{bottom:764.176130pt;}
.ydb{bottom:765.248895pt;}
.y63{bottom:771.162322pt;}
.y95{bottom:771.964290pt;}
.y31{bottom:775.126181pt;}
.y9{bottom:776.403582pt;}
.yb1{bottom:784.183668pt;}
.yda{bottom:785.256433pt;}
.y62{bottom:791.169860pt;}
.y94{bottom:791.971828pt;}
.y30{bottom:795.133719pt;}
.y8{bottom:796.411121pt;}
.yb0{bottom:804.191207pt;}
.y61{bottom:811.177399pt;}
.y93{bottom:811.979366pt;}
.y2f{bottom:815.141258pt;}
.y7{bottom:816.418659pt;}
.yaf{bottom:824.198745pt;}
.yd9{bottom:825.271510pt;}
.y60{bottom:831.184937pt;}
.y92{bottom:831.986905pt;}
.y2e{bottom:835.148796pt;}
.y6{bottom:836.426197pt;}
.yae{bottom:844.206284pt;}
.yd8{bottom:845.279048pt;}
.y5f{bottom:851.192475pt;}
.y91{bottom:851.994443pt;}
.y2d{bottom:855.156334pt;}
.y5{bottom:856.433736pt;}
.yad{bottom:864.213822pt;}
.yd7{bottom:865.286587pt;}
.y5e{bottom:871.200014pt;}
.y90{bottom:872.001982pt;}
.y2c{bottom:875.163873pt;}
.y4{bottom:876.441274pt;}
.yac{bottom:884.221360pt;}
.yd6{bottom:885.294125pt;}
.y5d{bottom:891.207552pt;}
.y8f{bottom:892.009520pt;}
.yab{bottom:904.228899pt;}
.yd5{bottom:905.301663pt;}
.y56{bottom:909.109985pt;}
.y5c{bottom:911.215090pt;}
.y8e{bottom:912.017058pt;}
.y110{bottom:912.023884pt;}
.yaa{bottom:924.236437pt;}
.yd4{bottom:925.309202pt;}
.y55{bottom:931.118277pt;}
.y5b{bottom:931.222629pt;}
.y8d{bottom:932.024597pt;}
.y10f{bottom:932.031422pt;}
.ya9{bottom:944.243975pt;}
.yd3{bottom:945.316740pt;}
.y5a{bottom:951.230167pt;}
.y8c{bottom:952.032135pt;}
.ya8{bottom:964.251514pt;}
.yd2{bottom:965.324278pt;}
.y59{bottom:971.237705pt;}
.y8b{bottom:972.039673pt;}
.y10e{bottom:972.046499pt;}
.y54{bottom:977.335681pt;}
.ya7{bottom:984.259052pt;}
.yd1{bottom:985.331817pt;}
.y58{bottom:991.245244pt;}
.y8a{bottom:992.047212pt;}
.y10d{bottom:992.054037pt;}
.ya6{bottom:1004.266590pt;}
.y57{bottom:1011.252782pt;}
.y89{bottom:1012.054750pt;}
.y10c{bottom:1012.061576pt;}
.y3{bottom:1021.800238pt;}
.yfa{bottom:1023.407122pt;}
.ya5{bottom:1024.274129pt;}
.y88{bottom:1032.062289pt;}
.y10b{bottom:1032.069114pt;}
.y2{bottom:1047.810038pt;}
.hc{height:13.363363pt;}
.ha{height:20.223249pt;}
.he{height:21.499714pt;}
.h8{height:30.363819pt;}
.hf{height:30.365531pt;}
.h5{height:42.784120pt;}
.hb{height:43.365499pt;}
.hd{height:47.679998pt;}
.h7{height:47.692289pt;}
.h9{height:47.750951pt;}
.h4{height:52.267933pt;}
.h6{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:42.655106pt;}
.x8{left:43.578143pt;}
.x9{left:45.245237pt;}
.xd{left:52.264915pt;}
.x1{left:64.613585pt;}
.x5{left:69.449540pt;}
.x2{left:72.366506pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x4{left:417.100021pt;}
.xa{left:441.261895pt;}
.x7{left:549.919145pt;}
.x6{left:551.612297pt;}
}




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