
    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_dff69e4a8dee56166a866ca8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d619e53006347bd0b550900.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0b54a18180239b8b58183699.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1ab4481a9c036422f0204bff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_338daf970f7bfe5811811f7b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a803da13bf0b30dd6ed9fdf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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_f31964174f1a858e5cf1aba5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.189257px;}
.ls1{letter-spacing:0.311803px;}
.ls7{letter-spacing:12.978295px;}
.ls0{letter-spacing:32.575007px;}
.ls5{letter-spacing:34.015846px;}
.ls6{letter-spacing:46.065102px;}
.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.021275px;}
.ws0{word-spacing:-17.999993px;}
.ws4{word-spacing:-14.939994px;}
.ws5{word-spacing:-14.219994px;}
.ws3{word-spacing:-13.505755px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-12.966075px;}
._11{margin-left:-2.087202px;}
._1{margin-left:-1.035787px;}
._0{width:1.272008px;}
._10{width:2.537788px;}
._a{width:4.272266px;}
._9{width:5.450452px;}
._13{width:6.558237px;}
._6{width:8.046221px;}
._5{width:9.280553px;}
._d{width:10.425931px;}
._7{width:11.512576px;}
._8{width:12.916992px;}
._3{width:14.416778px;}
._4{width:15.639193px;}
._14{width:16.766862px;}
._2{width:19.033307px;}
._c{width:20.726710px;}
._b{width:21.938832px;}
._1e{width:23.773978px;}
._1f{width:24.777889px;}
._20{width:26.666356px;}
._1d{width:27.859207px;}
._26{width:28.958715px;}
._25{width:30.396015px;}
._e{width:31.437666px;}
._f{width:33.072320px;}
._21{width:35.858265px;}
._22{width:37.008555px;}
._29{width:38.140169px;}
._23{width:50.174689px;}
._24{width:51.228592px;}
._2a{width:52.554449px;}
._27{width:57.844165px;}
._28{width:59.021802px;}
._18{width:248.141726px;}
._15{width:263.271009px;}
._19{width:315.656786px;}
._1b{width:328.720596px;}
._1c{width:331.489844px;}
._1a{width:343.754026px;}
._16{width:345.955094px;}
._17{width:358.923051px;}
.fc5{color:rgb(78,78,78);}
.fc4{color:rgb(23,23,23);}
.fc3{color:rgb(58,58,58);}
.fc2{color:rgb(40,40,40);}
.fc1{color:rgb(226,107,10);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs4{font-size:56.879977px;}
.fs2{font-size:59.759976px;}
.fs5{font-size:63.359975px;}
.fs6{font-size:69.119972px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.959020px;}
.y8d{bottom:3.959031px;}
.y45{bottom:3.959188px;}
.y51{bottom:3.959287px;}
.y2a{bottom:110.100256px;}
.y5c{bottom:111.000256px;}
.y7e{bottom:114.779954px;}
.y5b{bottom:117.840253px;}
.ybf{bottom:126.299949px;}
.y29{bottom:127.380249px;}
.ydf{bottom:128.820248px;}
.y5a{bottom:130.800248px;}
.y28{bottom:134.220246px;}
.y7d{bottom:135.479946px;}
.y59{bottom:137.640245px;}
.y27{bottom:144.660242px;}
.ybe{bottom:146.999941px;}
.y57{bottom:148.079941px;}
.y58{bottom:148.080241px;}
.ydd{bottom:149.519940px;}
.yde{bottom:149.520240px;}
.y26{bottom:151.499939px;}
.y7c{bottom:156.179938px;}
.y25{bottom:161.939935px;}
.ybd{bottom:167.699933px;}
.ydc{bottom:170.219932px;}
.y56{bottom:173.999930px;}
.y7b{bottom:176.879929px;}
.y24{bottom:179.219928px;}
.y23{bottom:186.059926px;}
.ybc{bottom:188.399925px;}
.ydb{bottom:190.919924px;}
.y55{bottom:193.799922px;}
.y22{bottom:196.499921px;}
.y7a{bottom:197.579921px;}
.ybb{bottom:209.099916px;}
.yda{bottom:211.619915px;}
.y54{bottom:213.599915px;}
.y79{bottom:218.279913px;}
.y21{bottom:228.179909px;}
.yba{bottom:229.799908px;}
.yd9{bottom:232.319907px;}
.y78{bottom:238.979904px;}
.y53{bottom:239.339904px;}
.yb9{bottom:250.499900px;}
.yd8{bottom:253.019899px;}
.y20{bottom:259.139896px;}
.y77{bottom:259.679896px;}
.y52{bottom:260.039896px;}
.yb8{bottom:271.199892px;}
.yd7{bottom:273.719891px;}
.y50{bottom:278.580600px;}
.y76{bottom:280.379888px;}
.y4f{bottom:282.539887px;}
.y1f{bottom:290.279884px;}
.yb7{bottom:291.899883px;}
.yd6{bottom:294.419882px;}
.y75{bottom:301.079880px;}
.y4e{bottom:305.039878px;}
.yb6{bottom:312.599875px;}
.yd5{bottom:315.119874px;}
.y1e{bottom:321.239872px;}
.y74{bottom:321.779871px;}
.y4d{bottom:327.539869px;}
.yb5{bottom:333.299867px;}
.yd4{bottom:335.819866px;}
.y73{bottom:342.479863px;}
.y4c{bottom:350.039860px;}
.y1d{bottom:352.379859px;}
.yb4{bottom:353.999858px;}
.yd3{bottom:356.519857px;}
.y72{bottom:363.179855px;}
.y4b{bottom:372.539851px;}
.yb3{bottom:374.699850px;}
.yd2{bottom:377.219849px;}
.y1b{bottom:383.339847px;}
.y71{bottom:383.879846px;}
.y1c{bottom:391.619843px;}
.y4a{bottom:395.039842px;}
.yb2{bottom:395.399842px;}
.yd1{bottom:397.919841px;}
.y70{bottom:404.579838px;}
.y1a{bottom:414.479834px;}
.yb1{bottom:416.099834px;}
.y49{bottom:417.539833px;}
.yd0{bottom:418.619833px;}
.y6f{bottom:425.279830px;}
.yb0{bottom:436.799825px;}
.ycf{bottom:439.319824px;}
.y48{bottom:440.039824px;}
.y19{bottom:445.439822px;}
.y6e{bottom:445.979822px;}
.yaf{bottom:457.499817px;}
.yce{bottom:460.019816px;}
.y47{bottom:462.539815px;}
.y6d{bottom:466.679813px;}
.y18{bottom:476.579809px;}
.yae{bottom:478.199809px;}
.ycd{bottom:480.719808px;}
.y46{bottom:485.039806px;}
.y6c{bottom:488.999804px;}
.yad{bottom:498.899800px;}
.ycc{bottom:501.419799px;}
.y17{bottom:507.539797px;}
.y6b{bottom:508.979796px;}
.yac{bottom:519.599792px;}
.ycb{bottom:522.119791px;}
.y44{bottom:526.800600px;}
.y41{bottom:529.679788px;}
.y6a{bottom:530.039788px;}
.y43{bottom:530.759788px;}
.y16{bottom:538.679785px;}
.yab{bottom:540.299784px;}
.yca{bottom:542.819783px;}
.y40{bottom:549.659780px;}
.y42{bottom:551.819779px;}
.y69{bottom:553.799778px;}
.yaa{bottom:560.999776px;}
.yc9{bottom:563.519775px;}
.y14{bottom:569.639772px;}
.y68{bottom:577.559769px;}
.y15{bottom:577.919769px;}
.y3f{bottom:578.819768px;}
.ya9{bottom:581.699767px;}
.yc8{bottom:584.219766px;}
.y13{bottom:600.599760px;}
.y67{bottom:601.499759px;}
.ya8{bottom:602.399759px;}
.yc7{bottom:604.919758px;}
.y3e{bottom:605.099758px;}
.y3d{bottom:622.739751px;}
.ya7{bottom:623.099751px;}
.y66{bottom:625.259750px;}
.yc6{bottom:625.619750px;}
.y12{bottom:631.739747px;}
.y3c{bottom:643.439743px;}
.ya6{bottom:643.799742px;}
.yc5{bottom:646.319741px;}
.y65{bottom:649.019740px;}
.y11{bottom:662.699735px;}
.ya5{bottom:664.499734px;}
.yc4{bottom:667.019733px;}
.y64{bottom:672.779731px;}
.y3b{bottom:674.579730px;}
.ya4{bottom:685.199726px;}
.yc3{bottom:687.719725px;}
.y10{bottom:693.839722px;}
.y63{bottom:696.719721px;}
.y39{bottom:705.719718px;}
.ya3{bottom:705.899718px;}
.yc2{bottom:708.419717px;}
.y3a{bottom:713.999714px;}
.y62{bottom:720.479712px;}
.yf{bottom:724.799710px;}
.ya2{bottom:726.599709px;}
.yc1{bottom:728.579709px;}
.y38{bottom:736.679705px;}
.y61{bottom:744.239702px;}
.ya1{bottom:747.299701px;}
.ye{bottom:755.939698px;}
.y37{bottom:767.819693px;}
.y60{bottom:767.999693px;}
.ye0{bottom:770.519692px;}
.yd{bottom:786.899685px;}
.ya0{bottom:788.699685px;}
.y5f{bottom:793.199683px;}
.y36{bottom:798.779680px;}
.y9f{bottom:809.399676px;}
.yc{bottom:818.039673px;}
.y35{bottom:829.919668px;}
.y9e{bottom:830.099668px;}
.yc0{bottom:838.379665px;}
.y9d{bottom:850.799660px;}
.yb{bottom:858.539657px;}
.y34{bottom:860.879656px;}
.y9c{bottom:871.499651px;}
.y7f{bottom:880.859648px;}
.y33{bottom:892.019643px;}
.y9b{bottom:892.199643px;}
.ya{bottom:896.159642px;}
.y8e{bottom:896.519641px;}
.y80{bottom:907.679637px;}
.y9a{bottom:912.899635px;}
.y8c{bottom:919.740600px;}
.y31{bottom:922.979631px;}
.y9{bottom:927.119629px;}
.y32{bottom:931.259627px;}
.y99{bottom:933.599627px;}
.y81{bottom:934.679626px;}
.y8a{bottom:946.920600px;}
.y30{bottom:954.119618px;}
.y98{bottom:954.299618px;}
.y8{bottom:958.259617px;}
.y82{bottom:961.499615px;}
.y97{bottom:974.999610px;}
.y89{bottom:977.879609px;}
.y2f{bottom:985.079606px;}
.y83{bottom:988.499605px;}
.y7{bottom:988.859604px;}
.y96{bottom:995.699602px;}
.y88{bottom:1005.059598px;}
.y84{bottom:1015.319594px;}
.y2e{bottom:1016.219594px;}
.y95{bottom:1016.399593px;}
.y6{bottom:1020.359592px;}
.y94{bottom:1037.099585px;}
.y5{bottom:1041.239584px;}
.y85{bottom:1042.319583px;}
.y2d{bottom:1046.819581px;}
.y93{bottom:1057.799577px;}
.y4{bottom:1061.939575px;}
.y86{bottom:1069.319572px;}
.y2c{bottom:1077.959569px;}
.y92{bottom:1078.499569px;}
.y3{bottom:1092.719563px;}
.y87{bottom:1096.139562px;}
.y91{bottom:1099.199560px;}
.y2b{bottom:1109.279556px;}
.y2{bottom:1116.479553px;}
.y90{bottom:1119.899552px;}
.y5e{bottom:1123.139551px;}
.y1{bottom:1140.419544px;}
.y8f{bottom:1140.599544px;}
.y5d{bottom:1143.119543px;}
.hc{height:18.000000px;}
.h9{height:18.180000px;}
.h5{height:38.158578px;}
.ha{height:40.909906px;}
.h8{height:40.968265px;}
.h3{height:47.344903px;}
.he{height:55.824587px;}
.h4{height:58.651148px;}
.h7{height:60.226851px;}
.hf{height:62.184350px;}
.hb{height:62.327788px;}
.h10{height:67.803723px;}
.hd{height:70.628878px;}
.h1{height:70.664034px;}
.h6{height:72.562471px;}
.h2{height:75.093720px;}
.h0{height:1263.000000px;}
.w2{width:7.200000px;}
.w1{width:48.420000px;}
.w3{width:82.620000px;}
.w4{width:115.740000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x23{left:127.619949px;}
.x3c{left:139.679944px;}
.x3{left:154.438846px;}
.xa{left:159.299936px;}
.x3d{left:170.819932px;}
.x1{left:171.899931px;}
.x41{left:177.659929px;}
.xb{left:181.439888px;}
.x3e{left:183.779926px;}
.x42{left:190.619924px;}
.x10{left:208.439919px;}
.x19{left:227.340000px;}
.x27{left:228.419909px;}
.x26{left:235.979906px;}
.xe{left:247.499901px;}
.x12{left:251.099896px;}
.xf{left:253.619899px;}
.x11{left:260.639896px;}
.x3f{left:264.779894px;}
.x43{left:267.299893px;}
.x44{left:278.279889px;}
.x1a{left:292.859883px;}
.x8{left:300.419880px;}
.x9{left:306.539877px;}
.x45{left:312.659875px;}
.x25{left:322.919871px;}
.x40{left:330.659868px;}
.x13{left:337.139950px;}
.x2a{left:346.499861px;}
.x4{left:350.999860px;}
.x2b{left:354.599858px;}
.x5{left:357.119857px;}
.x35{left:363.059855px;}
.x46{left:365.579854px;}
.x1d{left:370.439852px;}
.x47{left:371.519851px;}
.x21{left:402.659855px;}
.x2c{left:407.519837px;}
.x2d{left:415.619834px;}
.x2{left:420.119396px;}
.x14{left:429.480000px;}
.x2e{left:449.279820px;}
.x20{left:450.539820px;}
.x1b{left:454.139818px;}
.x2f{left:456.119818px;}
.x32{left:461.519815px;}
.x1c{left:473.399828px;}
.x15{left:477.899809px;}
.x36{left:493.019803px;}
.x37{left:499.139800px;}
.x30{left:509.219796px;}
.x39{left:511.739795px;}
.x33{left:514.619794px;}
.x31{left:516.059794px;}
.x1e{left:520.379792px;}
.x34{left:522.359791px;}
.x16{left:538.379827px;}
.x24{left:551.699779px;}
.x1f{left:557.819777px;}
.x28{left:593.819762px;}
.x29{left:597.060000px;}
.xc{left:603.359759px;}
.xd{left:609.479756px;}
.x18{left:635.939834px;}
.x17{left:637.919832px;}
.x3a{left:672.119731px;}
.x3b{left:700.559720px;}
.x6{left:736.559705px;}
.x7{left:742.679703px;}
.x38{left:745.739702px;}
.x22{left:752.940511px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.168228pt;}
.ls1{letter-spacing:0.277158pt;}
.ls7{letter-spacing:11.536262pt;}
.ls0{letter-spacing:28.955562pt;}
.ls5{letter-spacing:30.236308pt;}
.ls6{letter-spacing:40.946757pt;}
.ws1{word-spacing:-16.018911pt;}
.ws0{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.279995pt;}
.ws5{word-spacing:-12.639995pt;}
.ws3{word-spacing:-12.005115pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-11.525400pt;}
._11{margin-left:-1.855290pt;}
._1{margin-left:-0.920699pt;}
._0{width:1.130674pt;}
._10{width:2.255812pt;}
._a{width:3.797570pt;}
._9{width:4.844846pt;}
._13{width:5.829544pt;}
._6{width:7.152196pt;}
._5{width:8.249380pt;}
._d{width:9.267495pt;}
._7{width:10.233401pt;}
._8{width:11.481771pt;}
._3{width:12.814914pt;}
._4{width:13.901504pt;}
._14{width:14.903877pt;}
._2{width:16.918495pt;}
._c{width:18.423742pt;}
._b{width:19.501184pt;}
._1e{width:21.132425pt;}
._1f{width:22.024790pt;}
._20{width:23.703428pt;}
._1d{width:24.763740pt;}
._26{width:25.741080pt;}
._25{width:27.018680pt;}
._e{width:27.944592pt;}
._f{width:29.397617pt;}
._21{width:31.874013pt;}
._22{width:32.896494pt;}
._29{width:33.902373pt;}
._23{width:44.599724pt;}
._24{width:45.536526pt;}
._2a{width:46.715066pt;}
._27{width:51.417036pt;}
._28{width:52.463824pt;}
._18{width:220.570423pt;}
._15{width:234.018675pt;}
._19{width:280.583810pt;}
._1b{width:292.196086pt;}
._1c{width:294.657639pt;}
._1a{width:305.559135pt;}
._16{width:307.515639pt;}
._17{width:319.042712pt;}
.fs3{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs4{font-size:50.559980pt;}
.fs2{font-size:53.119979pt;}
.fs5{font-size:56.319977pt;}
.fs6{font-size:61.439975pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.519129pt;}
.y8d{bottom:3.519138pt;}
.y45{bottom:3.519278pt;}
.y51{bottom:3.519366pt;}
.y2a{bottom:97.866894pt;}
.y5c{bottom:98.666894pt;}
.y7e{bottom:102.026626pt;}
.y5b{bottom:104.746891pt;}
.ybf{bottom:112.266622pt;}
.y29{bottom:113.226888pt;}
.ydf{bottom:114.506888pt;}
.y5a{bottom:116.266887pt;}
.y28{bottom:119.306886pt;}
.y7d{bottom:120.426618pt;}
.y59{bottom:122.346884pt;}
.y27{bottom:128.586882pt;}
.ybe{bottom:130.666614pt;}
.y57{bottom:131.626614pt;}
.y58{bottom:131.626881pt;}
.ydd{bottom:132.906614pt;}
.yde{bottom:132.906880pt;}
.y26{bottom:134.666613pt;}
.y7c{bottom:138.826611pt;}
.y25{bottom:143.946609pt;}
.ybd{bottom:149.066607pt;}
.ydc{bottom:151.306606pt;}
.y56{bottom:154.666605pt;}
.y7b{bottom:157.226604pt;}
.y24{bottom:159.306603pt;}
.y23{bottom:165.386601pt;}
.ybc{bottom:167.466600pt;}
.ydb{bottom:169.706599pt;}
.y55{bottom:172.266598pt;}
.y22{bottom:174.666597pt;}
.y7a{bottom:175.626596pt;}
.ybb{bottom:185.866592pt;}
.yda{bottom:188.106591pt;}
.y54{bottom:189.866591pt;}
.y79{bottom:194.026589pt;}
.y21{bottom:202.826586pt;}
.yba{bottom:204.266585pt;}
.yd9{bottom:206.506584pt;}
.y78{bottom:212.426582pt;}
.y53{bottom:212.746582pt;}
.yb9{bottom:222.666578pt;}
.yd8{bottom:224.906577pt;}
.y20{bottom:230.346575pt;}
.y77{bottom:230.826574pt;}
.y52{bottom:231.146574pt;}
.yb8{bottom:241.066570pt;}
.yd7{bottom:243.306569pt;}
.y50{bottom:247.627200pt;}
.y76{bottom:249.226567pt;}
.y4f{bottom:251.146566pt;}
.y1f{bottom:258.026563pt;}
.yb7{bottom:259.466563pt;}
.yd6{bottom:261.706562pt;}
.y75{bottom:267.626560pt;}
.y4e{bottom:271.146558pt;}
.yb6{bottom:277.866556pt;}
.yd5{bottom:280.106555pt;}
.y1e{bottom:285.546552pt;}
.y74{bottom:286.026552pt;}
.y4d{bottom:291.146550pt;}
.yb5{bottom:296.266548pt;}
.yd4{bottom:298.506547pt;}
.y73{bottom:304.426545pt;}
.y4c{bottom:311.146542pt;}
.y1d{bottom:313.226541pt;}
.yb4{bottom:314.666541pt;}
.yd3{bottom:316.906540pt;}
.y72{bottom:322.826538pt;}
.y4b{bottom:331.146534pt;}
.yb3{bottom:333.066533pt;}
.yd2{bottom:335.306533pt;}
.y1b{bottom:340.746530pt;}
.y71{bottom:341.226530pt;}
.y1c{bottom:348.106527pt;}
.y4a{bottom:351.146526pt;}
.yb2{bottom:351.466526pt;}
.yd1{bottom:353.706525pt;}
.y70{bottom:359.626523pt;}
.y1a{bottom:368.426519pt;}
.yb1{bottom:369.866519pt;}
.y49{bottom:371.146518pt;}
.yd0{bottom:372.106518pt;}
.y6f{bottom:378.026515pt;}
.yb0{bottom:388.266511pt;}
.ycf{bottom:390.506510pt;}
.y48{bottom:391.146510pt;}
.y19{bottom:395.946508pt;}
.y6e{bottom:396.426508pt;}
.yaf{bottom:406.666504pt;}
.yce{bottom:408.906503pt;}
.y47{bottom:411.146502pt;}
.y6d{bottom:414.826501pt;}
.y18{bottom:423.626497pt;}
.yae{bottom:425.066497pt;}
.ycd{bottom:427.306496pt;}
.y46{bottom:431.146494pt;}
.y6c{bottom:434.666493pt;}
.yad{bottom:443.466489pt;}
.ycc{bottom:445.706488pt;}
.y17{bottom:451.146486pt;}
.y6b{bottom:452.426486pt;}
.yac{bottom:461.866482pt;}
.ycb{bottom:464.106481pt;}
.y44{bottom:468.267200pt;}
.y41{bottom:470.826478pt;}
.y6a{bottom:471.146478pt;}
.y43{bottom:471.786478pt;}
.y16{bottom:478.826475pt;}
.yab{bottom:480.266475pt;}
.yca{bottom:482.506474pt;}
.y40{bottom:488.586471pt;}
.y42{bottom:490.506470pt;}
.y69{bottom:492.266470pt;}
.yaa{bottom:498.666467pt;}
.yc9{bottom:500.906466pt;}
.y14{bottom:506.346464pt;}
.y68{bottom:513.386461pt;}
.y15{bottom:513.706461pt;}
.y3f{bottom:514.506461pt;}
.ya9{bottom:517.066460pt;}
.yc8{bottom:519.306459pt;}
.y13{bottom:533.866453pt;}
.y67{bottom:534.666453pt;}
.ya8{bottom:535.466452pt;}
.yc7{bottom:537.706452pt;}
.y3e{bottom:537.866452pt;}
.y3d{bottom:553.546445pt;}
.ya7{bottom:553.866445pt;}
.y66{bottom:555.786444pt;}
.yc6{bottom:556.106444pt;}
.y12{bottom:561.546442pt;}
.y3c{bottom:571.946438pt;}
.ya6{bottom:572.266438pt;}
.yc5{bottom:574.506437pt;}
.y65{bottom:576.906436pt;}
.y11{bottom:589.066431pt;}
.ya5{bottom:590.666430pt;}
.yc4{bottom:592.906430pt;}
.y64{bottom:598.026427pt;}
.y3b{bottom:599.626427pt;}
.ya4{bottom:609.066423pt;}
.yc3{bottom:611.306422pt;}
.y10{bottom:616.746420pt;}
.y63{bottom:619.306419pt;}
.y39{bottom:627.306416pt;}
.ya3{bottom:627.466416pt;}
.yc2{bottom:629.706415pt;}
.y3a{bottom:634.666413pt;}
.y62{bottom:640.426410pt;}
.yf{bottom:644.266409pt;}
.ya2{bottom:645.866408pt;}
.yc1{bottom:647.626408pt;}
.y38{bottom:654.826405pt;}
.y61{bottom:661.546402pt;}
.ya1{bottom:664.266401pt;}
.ye{bottom:671.946398pt;}
.y37{bottom:682.506394pt;}
.y60{bottom:682.666394pt;}
.ye0{bottom:684.906393pt;}
.yd{bottom:699.466387pt;}
.ya0{bottom:701.066386pt;}
.y5f{bottom:705.066385pt;}
.y36{bottom:710.026383pt;}
.y9f{bottom:719.466379pt;}
.yc{bottom:727.146376pt;}
.y35{bottom:737.706372pt;}
.y9e{bottom:737.866372pt;}
.yc0{bottom:745.226369pt;}
.y9d{bottom:756.266364pt;}
.yb{bottom:763.146361pt;}
.y34{bottom:765.226361pt;}
.y9c{bottom:774.666357pt;}
.y7f{bottom:782.986353pt;}
.y33{bottom:792.906350pt;}
.y9b{bottom:793.066349pt;}
.ya{bottom:796.586348pt;}
.y8e{bottom:796.906348pt;}
.y80{bottom:806.826344pt;}
.y9a{bottom:811.466342pt;}
.y8c{bottom:817.547200pt;}
.y31{bottom:820.426338pt;}
.y9{bottom:824.106337pt;}
.y32{bottom:827.786336pt;}
.y99{bottom:829.866335pt;}
.y81{bottom:830.826334pt;}
.y8a{bottom:841.707200pt;}
.y30{bottom:848.106327pt;}
.y98{bottom:848.266327pt;}
.y8{bottom:851.786326pt;}
.y82{bottom:854.666325pt;}
.y97{bottom:866.666320pt;}
.y89{bottom:869.226319pt;}
.y2f{bottom:875.626316pt;}
.y83{bottom:878.666315pt;}
.y7{bottom:878.986315pt;}
.y96{bottom:885.066313pt;}
.y88{bottom:893.386309pt;}
.y84{bottom:902.506306pt;}
.y2e{bottom:903.306305pt;}
.y95{bottom:903.466305pt;}
.y6{bottom:906.986304pt;}
.y94{bottom:921.866298pt;}
.y5{bottom:925.546296pt;}
.y85{bottom:926.506296pt;}
.y2d{bottom:930.506294pt;}
.y93{bottom:940.266291pt;}
.y4{bottom:943.946289pt;}
.y86{bottom:950.506286pt;}
.y2c{bottom:958.186283pt;}
.y92{bottom:958.666283pt;}
.y3{bottom:971.306278pt;}
.y87{bottom:974.346277pt;}
.y91{bottom:977.066276pt;}
.y2b{bottom:986.026272pt;}
.y2{bottom:992.426270pt;}
.y90{bottom:995.466268pt;}
.y5e{bottom:998.346267pt;}
.y1{bottom:1013.706261pt;}
.y8f{bottom:1013.866261pt;}
.y5d{bottom:1016.106260pt;}
.hc{height:16.000000pt;}
.h9{height:16.160000pt;}
.h5{height:33.918736pt;}
.ha{height:36.364360pt;}
.h8{height:36.416235pt;}
.h3{height:42.084358pt;}
.he{height:49.621855pt;}
.h4{height:52.134354pt;}
.h7{height:53.534979pt;}
.hf{height:55.274978pt;}
.hb{height:55.402478pt;}
.h10{height:60.269976pt;}
.hd{height:62.781225pt;}
.h1{height:62.812475pt;}
.h6{height:64.499974pt;}
.h2{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w2{width:6.400000pt;}
.w1{width:43.040000pt;}
.w3{width:73.440000pt;}
.w4{width:102.880000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x23{left:113.439955pt;}
.x3c{left:124.159950pt;}
.x3{left:137.278975pt;}
.xa{left:141.599943pt;}
.x3d{left:151.839939pt;}
.x1{left:152.799939pt;}
.x41{left:157.919937pt;}
.xb{left:161.279900pt;}
.x3e{left:163.359935pt;}
.x42{left:169.439932pt;}
.x10{left:185.279928pt;}
.x19{left:202.080000pt;}
.x27{left:203.039919pt;}
.x26{left:209.759916pt;}
.xe{left:219.999912pt;}
.x12{left:223.199907pt;}
.xf{left:225.439910pt;}
.x11{left:231.679907pt;}
.x3f{left:235.359906pt;}
.x43{left:237.599905pt;}
.x44{left:247.359901pt;}
.x1a{left:260.319896pt;}
.x8{left:267.039893pt;}
.x9{left:272.479891pt;}
.x45{left:277.919889pt;}
.x25{left:287.039885pt;}
.x40{left:293.919882pt;}
.x13{left:299.679956pt;}
.x2a{left:307.999877pt;}
.x4{left:311.999875pt;}
.x2b{left:315.199874pt;}
.x5{left:317.439873pt;}
.x35{left:322.719871pt;}
.x46{left:324.959870pt;}
.x1d{left:329.279868pt;}
.x47{left:330.239868pt;}
.x21{left:357.919871pt;}
.x2c{left:362.239855pt;}
.x2d{left:369.439852pt;}
.x2{left:373.439463pt;}
.x14{left:381.760000pt;}
.x2e{left:399.359840pt;}
.x20{left:400.479840pt;}
.x1b{left:403.679839pt;}
.x2f{left:405.439838pt;}
.x32{left:410.239836pt;}
.x1c{left:420.799847pt;}
.x15{left:424.799830pt;}
.x36{left:438.239825pt;}
.x37{left:443.679823pt;}
.x30{left:452.639819pt;}
.x39{left:454.879818pt;}
.x33{left:457.439817pt;}
.x31{left:458.719817pt;}
.x1e{left:462.559815pt;}
.x34{left:464.319814pt;}
.x16{left:478.559846pt;}
.x24{left:490.399804pt;}
.x1f{left:495.839802pt;}
.x28{left:527.839789pt;}
.x29{left:530.720000pt;}
.xc{left:536.319785pt;}
.xd{left:541.759783pt;}
.x18{left:565.279853pt;}
.x17{left:567.039851pt;}
.x3a{left:597.439761pt;}
.x3b{left:622.719751pt;}
.x6{left:654.719738pt;}
.x7{left:660.159736pt;}
.x38{left:662.879735pt;}
.x22{left:669.280454pt;}
}




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