
    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_7cad8d8c32d2a31a40a2fa27.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_c3dd30407b89895a3b8acfdf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.835938;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_3d745fb088e74fc81fbd5c4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_b6eda9d101b78252e1bd4c30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_7250a13823720e9fec8c034d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711000;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_0b44aef508e46b00201cb442.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.363000;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_2f8c251598df73c983048763.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.213648px;}
.ls2{letter-spacing:55.548808px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-28.255789px;}
.ws1{word-spacing:-22.503591px;}
.ws3{word-spacing:-19.795792px;}
.ws4{word-spacing:-15.565794px;}
.ws2{word-spacing:-14.889414px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-8.879672px;}
._1{margin-left:-1.326245px;}
._0{width:1.162194px;}
._a{width:2.310404px;}
._8{width:3.712599px;}
._4{width:5.613197px;}
._3{width:6.972594px;}
._7{width:8.107552px;}
._9{width:9.178652px;}
._5{width:10.594404px;}
._6{width:11.974418px;}
._b{width:13.125078px;}
._11{width:14.268496px;}
._19{width:15.934090px;}
._14{width:17.121979px;}
._15{width:18.578902px;}
._c{width:20.342281px;}
._d{width:21.490045px;}
._12{width:23.345006px;}
._13{width:24.365227px;}
._e{width:30.638365px;}
._f{width:31.689062px;}
._10{width:58.949057px;}
._18{width:94.635902px;}
._17{width:122.887229px;}
._16{width:941.793895px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:45.343422px;}
.fs4{font-size:48.051341px;}
.fs0{font-size:56.174378px;}
.fs6{font-size:59.557656px;}
.fs8{font-size:62.263175px;}
.fs5{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs7{font-size:79.183168px;}
.fs2{font-size:90.014364px;}
.fs1{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y2{bottom:115.919954px;}
.y63{bottom:133.199947px;}
.y8d{bottom:134.459946px;}
.y2b{bottom:137.519945px;}
.yc5{bottom:150.479940px;}
.y54{bottom:151.199940px;}
.y8c{bottom:152.099939px;}
.y2a{bottom:155.519938px;}
.yab{bottom:158.399937px;}
.ye6{bottom:168.659933px;}
.y53{bottom:168.839932px;}
.y8b{bottom:169.019932px;}
.y29{bottom:173.339931px;}
.y8a{bottom:182.879927px;}
.yc4{bottom:185.399926px;}
.y52{bottom:186.659925px;}
.y28{bottom:191.159924px;}
.ye5{bottom:193.499923px;}
.yaa{bottom:194.759922px;}
.y89{bottom:200.879920px;}
.yc3{bottom:203.039919px;}
.y51{bottom:204.659918px;}
.yb3{bottom:208.259917px;}
.ye4{bottom:209.699916px;}
.y88{bottom:218.699913px;}
.yc2{bottom:221.039912px;}
.y62{bottom:221.579911px;}
.y50{bottom:222.299911px;}
.y27{bottom:225.899910px;}
.y10d{bottom:228.419909px;}
.ya9{bottom:231.119908px;}
.ye3{bottom:235.079906px;}
.y87{bottom:235.619906px;}
.yb2{bottom:237.959905px;}
.y61{bottom:239.219904px;}
.y26{bottom:243.719903px;}
.y86{bottom:249.479900px;}
.y10c{bottom:253.079899px;}
.yc1{bottom:255.779898px;}
.y4f{bottom:257.219897px;}
.y25{bottom:261.539895px;}
.y85{bottom:267.299893px;}
.ya8{bottom:267.479893px;}
.yc0{bottom:273.419891px;}
.ye2{bottom:274.139890px;}
.y4e{bottom:275.039890px;}
.y10b{bottom:277.739889px;}
.y24{bottom:279.359888px;}
.y84{bottom:285.119886px;}
.ybf{bottom:291.419883px;}
.ye1{bottom:291.959883px;}
.y4d{bottom:292.679883px;}
.y10a{bottom:293.939882px;}
.y83{bottom:302.939879px;}
.ya7{bottom:303.839878px;}
.y23{bottom:306.359877px;}
.ye0{bottom:309.599876px;}
.y4c{bottom:310.679876px;}
.y109{bottom:318.599873px;}
.y82{bottom:320.759872px;}
.ybe{bottom:326.159870px;}
.y60{bottom:327.599869px;}
.y4b{bottom:328.499869px;}
.y108{bottom:334.799866px;}
.ya6{bottom:339.659864px;}
.y22{bottom:345.419862px;}
.y107{bottom:351.179860px;}
.ybd{bottom:355.499858px;}
.y81{bottom:356.219858px;}
.ya5{bottom:357.479857px;}
.ydf{bottom:362.339855px;}
.y21{bottom:363.059855px;}
.y4a{bottom:363.239855px;}
.y106{bottom:375.839850px;}
.y80{bottom:378.179849px;}
.yde{bottom:380.159848px;}
.y20{bottom:381.059848px;}
.y105{bottom:391.859843px;}
.ya4{bottom:392.219843px;}
.y7f{bottom:396.179842px;}
.ydd{bottom:397.979841px;}
.y1f{bottom:398.879840px;}
.ya3{bottom:410.039836px;}
.y7e{bottom:415.079834px;}
.ydc{bottom:415.979834px;}
.y1e{bottom:416.699833px;}
.ya2{bottom:427.859829px;}
.y104{bottom:432.899827px;}
.y49{bottom:433.619827px;}
.y7d{bottom:433.979826px;}
.y1d{bottom:434.519826px;}
.y103{bottom:449.099820px;}
.ydb{bottom:450.539820px;}
.y48{bottom:451.439819px;}
.y1c{bottom:452.339819px;}
.y7c{bottom:453.059819px;}
.ya1{bottom:462.599815px;}
.yda{bottom:468.359813px;}
.y47{bottom:469.439812px;}
.y1b{bottom:470.159812px;}
.y7b{bottom:471.959811px;}
.y102{bottom:473.759810px;}
.ya0{bottom:480.599808px;}
.y46{bottom:487.079805px;}
.y101{bottom:489.959804px;}
.y7a{bottom:490.859804px;}
.y1a{bottom:496.439801px;}
.y9f{bottom:498.419801px;}
.yd9{bottom:503.279799px;}
.yb1{bottom:504.179798px;}
.y79{bottom:509.759796px;}
.y19{bottom:514.259794px;}
.y100{bottom:514.619794px;}
.y9e{bottom:516.059794px;}
.yd8{bottom:520.919792px;}
.y45{bottom:521.819791px;}
.y78{bottom:528.839788px;}
.yff{bottom:530.819788px;}
.y18{bottom:532.259787px;}
.yb0{bottom:533.879786px;}
.yd7{bottom:538.919784px;}
.y44{bottom:539.819784px;}
.y77{bottom:546.659781px;}
.yfe{bottom:547.019781px;}
.y17{bottom:549.899780px;}
.y9d{bottom:551.519779px;}
.yd6{bottom:556.739777px;}
.y43{bottom:557.639777px;}
.y76{bottom:565.739774px;}
.yfd{bottom:571.679771px;}
.y42{bottom:575.459770px;}
.y16{bottom:576.899769px;}
.y75{bottom:584.459766px;}
.yfc{bottom:588.059765px;}
.y9c{bottom:590.579764px;}
.yd5{bottom:592.019763px;}
.y5f{bottom:593.279763px;}
.y74{bottom:602.279759px;}
.y9b{bottom:608.399757px;}
.y41{bottom:610.199756px;}
.y5e{bottom:611.279755px;}
.yfb{bottom:612.719755px;}
.y73{bottom:620.099752px;}
.y15{bottom:624.239750px;}
.y9a{bottom:626.219750px;}
.y40{bottom:628.199749px;}
.yfa{bottom:628.739749px;}
.yd4{bottom:631.079748px;}
.y14{bottom:640.439744px;}
.y99{bottom:644.039742px;}
.y3f{bottom:645.839742px;}
.yd3{bottom:648.899740px;}
.ybc{bottom:651.779739px;}
.yf9{bottom:653.579739px;}
.y72{bottom:654.839738px;}
.y98{bottom:662.039735px;}
.y3e{bottom:663.659735px;}
.y13{bottom:665.459734px;}
.yd2{bottom:666.719733px;}
.ybb{bottom:669.599732px;}
.yf8{bottom:669.779732px;}
.y71{bottom:672.839731px;}
.y97{bottom:679.679728px;}
.y3d{bottom:681.659727px;}
.yba{bottom:687.419725px;}
.y70{bottom:690.479724px;}
.yf7{bottom:694.439722px;}
.y96{bottom:697.499721px;}
.y5d{bottom:699.299720px;}
.yd1{bottom:701.459719px;}
.y12{bottom:703.079719px;}
.yb9{bottom:705.239718px;}
.yf6{bottom:710.639716px;}
.y95{bottom:715.499714px;}
.y3c{bottom:716.219714px;}
.y6f{bottom:717.479713px;}
.y11{bottom:719.279712px;}
.yf5{bottom:726.839709px;}
.y94{bottom:733.139707px;}
.y3b{bottom:734.219706px;}
.y10{bottom:735.479706px;}
.yd0{bottom:737.279705px;}
.yb8{bottom:739.979704px;}
.y93{bottom:751.139700px;}
.yf4{bottom:751.499699px;}
.yf{bottom:751.859699px;}
.y3a{bottom:752.039699px;}
.y6e{bottom:756.539697px;}
.yb7{bottom:757.799697px;}
.yaf{bottom:761.219696px;}
.ye{bottom:768.059693px;}
.y92{bottom:768.959692px;}
.y39{bottom:769.679692px;}
.ycf{bottom:772.019691px;}
.y6d{bottom:774.359690px;}
.yb6{bottom:775.619690px;}
.yf3{bottom:776.159690px;}
.yd{bottom:784.259686px;}
.y91{bottom:786.599685px;}
.y38{bottom:787.679685px;}
.yce{bottom:789.659684px;}
.yae{bottom:790.919684px;}
.y6c{bottom:791.999683px;}
.yf2{bottom:792.359683px;}
.y5c{bottom:804.599678px;}
.y37{bottom:805.499678px;}
.yc{bottom:809.099676px;}
.y6b{bottom:809.999676px;}
.yb5{bottom:810.359676px;}
.yf1{bottom:817.019673px;}
.y90{bottom:821.519671px;}
.y5b{bottom:822.419671px;}
.ycd{bottom:824.579670px;}
.yb{bottom:830.699668px;}
.yf0{bottom:833.399667px;}
.y8f{bottom:839.339664px;}
.yb4{bottom:839.879664px;}
.y36{bottom:840.239664px;}
.ycc{bottom:842.399663px;}
.y6a{bottom:844.739662px;}
.ya{bottom:850.139660px;}
.y8e{bottom:857.159657px;}
.yef{bottom:857.879657px;}
.y35{bottom:858.059657px;}
.ycb{bottom:860.219656px;}
.y69{bottom:862.559655px;}
.y9{bottom:869.579652px;}
.yee{bottom:874.079650px;}
.y5a{bottom:874.979650px;}
.y34{bottom:875.879650px;}
.yca{bottom:878.039649px;}
.y68{bottom:880.379648px;}
.yed{bottom:890.459644px;}
.y59{bottom:892.799643px;}
.y33{bottom:893.699643px;}
.y7{bottom:906.119638px;}
.y58{bottom:910.619636px;}
.yc9{bottom:912.779635px;}
.y8{bottom:914.579634px;}
.y67{bottom:915.119634px;}
.y32{bottom:928.439629px;}
.yc8{bottom:930.599628px;}
.y66{bottom:932.939627px;}
.yec{bottom:939.779624px;}
.y31{bottom:946.439621px;}
.y6{bottom:946.799621px;}
.y65{bottom:950.759620px;}
.yeb{bottom:955.979618px;}
.yc7{bottom:961.739615px;}
.y30{bottom:964.079614px;}
.y64{bottom:977.759609px;}
.y5{bottom:978.659609px;}
.yea{bottom:980.639608px;}
.y57{bottom:980.999608px;}
.y2f{bottom:981.899607px;}
.ye9{bottom:996.839601px;}
.y56{bottom:998.819600px;}
.y2e{bottom:999.899600px;}
.y4{bottom:1010.339596px;}
.yad{bottom:1015.019594px;}
.y55{bottom:1016.819593px;}
.ye8{bottom:1021.499591px;}
.y2d{bottom:1034.459586px;}
.ye7{bottom:1037.699585px;}
.y3{bottom:1042.199583px;}
.yac{bottom:1051.379579px;}
.y2c{bottom:1052.459579px;}
.yc6{bottom:1053.899578px;}
.y1{bottom:1080.179568px;}
.hd{height:31.196274px;}
.h5{height:33.059322px;}
.h9{height:38.367100px;}
.h1{height:38.647972px;}
.h8{height:40.796994px;}
.hc{height:42.837064px;}
.hb{height:43.086117px;}
.h6{height:46.563821px;}
.h7{height:50.069644px;}
.h4{height:50.288927px;}
.ha{height:54.794752px;}
.h3{height:74.059670px;}
.h2{height:92.990242px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.759540px;}
.x1b{left:168.839932px;}
.x1d{left:170.999932px;}
.x20{left:173.699931px;}
.x21{left:177.659929px;}
.x4{left:181.080120px;}
.x2c{left:184.139865px;}
.x22{left:185.399926px;}
.x27{left:189.719924px;}
.x2a{left:191.879923px;}
.x2e{left:196.379921px;}
.x1{left:200.879920px;}
.xe{left:202.500553px;}
.x2d{left:209.519853px;}
.x2b{left:224.459910px;}
.x1e{left:236.879905px;}
.x1f{left:242.639903px;}
.x5{left:244.619902px;}
.x6{left:250.379900px;}
.xf{left:256.139898px;}
.x28{left:262.259895px;}
.x3b{left:266.039894px;}
.x7{left:269.639892px;}
.x10{left:275.579890px;}
.x1c{left:290.881226px;}
.x1a{left:297.179881px;}
.x23{left:303.299879px;}
.x24{left:308.159877px;}
.x25{left:311.939875px;}
.x11{left:342.719863px;}
.x12{left:360.179856px;}
.x29{left:363.239855px;}
.x37{left:365.579854px;}
.x39{left:376.918971px;}
.x33{left:378.179849px;}
.x30{left:382.319847px;}
.x35{left:385.379846px;}
.x17{left:403.919838px;}
.x18{left:423.719831px;}
.x8{left:446.399821px;}
.x3{left:463.679815px;}
.x9{left:469.249312px;}
.x19{left:523.619791px;}
.xa{left:528.659789px;}
.x13{left:534.959786px;}
.x31{left:545.039782px;}
.xb{left:547.909281px;}
.x14{left:549.709280px;}
.x15{left:589.319764px;}
.x16{left:606.599757px;}
.xc{left:610.919756px;}
.xd{left:630.359748px;}
.x38{left:636.119746px;}
.x36{left:640.979744px;}
.x34{left:642.419743px;}
.x2f{left:653.759738px;}
.x32{left:656.999737px;}
.x3a{left:695.699722px;}
.x26{left:761.579210px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.189909pt;}
.ls2{letter-spacing:49.376718pt;}
.ws0{word-spacing:-25.116257pt;}
.ws1{word-spacing:-20.003192pt;}
.ws3{word-spacing:-17.596260pt;}
.ws4{word-spacing:-13.836261pt;}
.ws2{word-spacing:-13.235035pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-7.893042pt;}
._1{margin-left:-1.178885pt;}
._0{width:1.033061pt;}
._a{width:2.053692pt;}
._8{width:3.300088pt;}
._4{width:4.989509pt;}
._3{width:6.197861pt;}
._7{width:7.206713pt;}
._9{width:8.158802pt;}
._5{width:9.417248pt;}
._6{width:10.643927pt;}
._b{width:11.666736pt;}
._11{width:12.683108pt;}
._19{width:14.163636pt;}
._14{width:15.219537pt;}
._15{width:16.514580pt;}
._c{width:18.082027pt;}
._d{width:19.102262pt;}
._12{width:20.751116pt;}
._13{width:21.657980pt;}
._e{width:27.234103pt;}
._f{width:28.168055pt;}
._10{width:52.399162pt;}
._18{width:84.120802pt;}
._17{width:109.233093pt;}
._16{width:837.150129pt;}
.fs9{font-size:40.305264pt;}
.fs4{font-size:42.712303pt;}
.fs0{font-size:49.932780pt;}
.fs6{font-size:52.940139pt;}
.fs8{font-size:55.345045pt;}
.fs5{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs7{font-size:70.385039pt;}
.fs2{font-size:80.012768pt;}
.fs1{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:103.039959pt;}
.y63{bottom:118.399953pt;}
.y8d{bottom:119.519952pt;}
.y2b{bottom:122.239951pt;}
.yc5{bottom:133.759946pt;}
.y54{bottom:134.399946pt;}
.y8c{bottom:135.199946pt;}
.y2a{bottom:138.239945pt;}
.yab{bottom:140.799944pt;}
.ye6{bottom:149.919940pt;}
.y53{bottom:150.079940pt;}
.y8b{bottom:150.239940pt;}
.y29{bottom:154.079938pt;}
.y8a{bottom:162.559935pt;}
.yc4{bottom:164.799934pt;}
.y52{bottom:165.919934pt;}
.y28{bottom:169.919932pt;}
.ye5{bottom:171.999931pt;}
.yaa{bottom:173.119931pt;}
.y89{bottom:178.559929pt;}
.yc3{bottom:180.479928pt;}
.y51{bottom:181.919927pt;}
.yb3{bottom:185.119926pt;}
.ye4{bottom:186.399925pt;}
.y88{bottom:194.399922pt;}
.yc2{bottom:196.479921pt;}
.y62{bottom:196.959921pt;}
.y50{bottom:197.599921pt;}
.y27{bottom:200.799920pt;}
.y10d{bottom:203.039919pt;}
.ya9{bottom:205.439918pt;}
.ye3{bottom:208.959916pt;}
.y87{bottom:209.439916pt;}
.yb2{bottom:211.519915pt;}
.y61{bottom:212.639915pt;}
.y26{bottom:216.639913pt;}
.y86{bottom:221.759911pt;}
.y10c{bottom:224.959910pt;}
.yc1{bottom:227.359909pt;}
.y4f{bottom:228.639909pt;}
.y25{bottom:232.479907pt;}
.y85{bottom:237.599905pt;}
.ya8{bottom:237.759905pt;}
.yc0{bottom:243.039903pt;}
.ye2{bottom:243.679903pt;}
.y4e{bottom:244.479902pt;}
.y10b{bottom:246.879901pt;}
.y24{bottom:248.319901pt;}
.y84{bottom:253.439899pt;}
.ybf{bottom:259.039896pt;}
.ye1{bottom:259.519896pt;}
.y4d{bottom:260.159896pt;}
.y10a{bottom:261.279895pt;}
.y83{bottom:269.279892pt;}
.ya7{bottom:270.079892pt;}
.y23{bottom:272.319891pt;}
.ye0{bottom:275.199890pt;}
.y4c{bottom:276.159890pt;}
.y109{bottom:283.199887pt;}
.y82{bottom:285.119886pt;}
.ybe{bottom:289.919884pt;}
.y60{bottom:291.199884pt;}
.y4b{bottom:291.999883pt;}
.y108{bottom:297.599881pt;}
.ya6{bottom:301.919879pt;}
.y22{bottom:307.039877pt;}
.y107{bottom:312.159875pt;}
.ybd{bottom:315.999874pt;}
.y81{bottom:316.639873pt;}
.ya5{bottom:317.759873pt;}
.ydf{bottom:322.079871pt;}
.y21{bottom:322.719871pt;}
.y4a{bottom:322.879871pt;}
.y106{bottom:334.079866pt;}
.y80{bottom:336.159866pt;}
.yde{bottom:337.919865pt;}
.y20{bottom:338.719865pt;}
.y105{bottom:348.319861pt;}
.ya4{bottom:348.639861pt;}
.y7f{bottom:352.159859pt;}
.ydd{bottom:353.759858pt;}
.y1f{bottom:354.559858pt;}
.ya3{bottom:364.479854pt;}
.y7e{bottom:368.959852pt;}
.ydc{bottom:369.759852pt;}
.y1e{bottom:370.399852pt;}
.ya2{bottom:380.319848pt;}
.y104{bottom:384.799846pt;}
.y49{bottom:385.439846pt;}
.y7d{bottom:385.759846pt;}
.y1d{bottom:386.239846pt;}
.y103{bottom:399.199840pt;}
.ydb{bottom:400.479840pt;}
.y48{bottom:401.279839pt;}
.y1c{bottom:402.079839pt;}
.y7c{bottom:402.719839pt;}
.ya1{bottom:411.199836pt;}
.yda{bottom:416.319833pt;}
.y47{bottom:417.279833pt;}
.y1b{bottom:417.919833pt;}
.y7b{bottom:419.519832pt;}
.y102{bottom:421.119832pt;}
.ya0{bottom:427.199829pt;}
.y46{bottom:432.959827pt;}
.y101{bottom:435.519826pt;}
.y7a{bottom:436.319825pt;}
.y1a{bottom:441.279823pt;}
.y9f{bottom:443.039823pt;}
.yd9{bottom:447.359821pt;}
.yb1{bottom:448.159821pt;}
.y79{bottom:453.119819pt;}
.y19{bottom:457.119817pt;}
.y100{bottom:457.439817pt;}
.y9e{bottom:458.719817pt;}
.yd8{bottom:463.039815pt;}
.y45{bottom:463.839814pt;}
.y78{bottom:470.079812pt;}
.yff{bottom:471.839811pt;}
.y18{bottom:473.119811pt;}
.yb0{bottom:474.559810pt;}
.yd7{bottom:479.039808pt;}
.y44{bottom:479.839808pt;}
.y77{bottom:485.919806pt;}
.yfe{bottom:486.239806pt;}
.y17{bottom:488.799804pt;}
.y9d{bottom:490.239804pt;}
.yd6{bottom:494.879802pt;}
.y43{bottom:495.679802pt;}
.y76{bottom:502.879799pt;}
.yfd{bottom:508.159797pt;}
.y42{bottom:511.519795pt;}
.y16{bottom:512.799795pt;}
.y75{bottom:519.519792pt;}
.yfc{bottom:522.719791pt;}
.y9c{bottom:524.959790pt;}
.yd5{bottom:526.239790pt;}
.y5f{bottom:527.359789pt;}
.y74{bottom:535.359786pt;}
.y9b{bottom:540.799784pt;}
.y41{bottom:542.399783pt;}
.y5e{bottom:543.359783pt;}
.yfb{bottom:544.639782pt;}
.y73{bottom:551.199780pt;}
.y15{bottom:554.879778pt;}
.y9a{bottom:556.639777pt;}
.y40{bottom:558.399777pt;}
.yfa{bottom:558.879776pt;}
.yd4{bottom:560.959776pt;}
.y14{bottom:569.279772pt;}
.y99{bottom:572.479771pt;}
.y3f{bottom:574.079770pt;}
.yd3{bottom:576.799769pt;}
.ybc{bottom:579.359768pt;}
.yf9{bottom:580.959768pt;}
.y72{bottom:582.079767pt;}
.y98{bottom:588.479765pt;}
.y3e{bottom:589.919764pt;}
.y13{bottom:591.519763pt;}
.yd2{bottom:592.639763pt;}
.ybb{bottom:595.199762pt;}
.yf8{bottom:595.359762pt;}
.y71{bottom:598.079761pt;}
.y97{bottom:604.159758pt;}
.y3d{bottom:605.919758pt;}
.yba{bottom:611.039756pt;}
.y70{bottom:613.759754pt;}
.yf7{bottom:617.279753pt;}
.y96{bottom:619.999752pt;}
.y5d{bottom:621.599751pt;}
.yd1{bottom:623.519751pt;}
.y12{bottom:624.959750pt;}
.yb9{bottom:626.879749pt;}
.yf6{bottom:631.679747pt;}
.y95{bottom:635.999746pt;}
.y3c{bottom:636.639745pt;}
.y6f{bottom:637.759745pt;}
.y11{bottom:639.359744pt;}
.yf5{bottom:646.079742pt;}
.y94{bottom:651.679739pt;}
.y3b{bottom:652.639739pt;}
.y10{bottom:653.759738pt;}
.yd0{bottom:655.359738pt;}
.yb8{bottom:657.759737pt;}
.y93{bottom:667.679733pt;}
.yf4{bottom:667.999733pt;}
.yf{bottom:668.319733pt;}
.y3a{bottom:668.479733pt;}
.y6e{bottom:672.479731pt;}
.yb7{bottom:673.599731pt;}
.yaf{bottom:676.639729pt;}
.ye{bottom:682.719727pt;}
.y92{bottom:683.519727pt;}
.y39{bottom:684.159726pt;}
.ycf{bottom:686.239726pt;}
.y6d{bottom:688.319725pt;}
.yb6{bottom:689.439724pt;}
.yf3{bottom:689.919724pt;}
.yd{bottom:697.119721pt;}
.y91{bottom:699.199720pt;}
.y38{bottom:700.159720pt;}
.yce{bottom:701.919719pt;}
.yae{bottom:703.039719pt;}
.y6c{bottom:703.999718pt;}
.yf2{bottom:704.319718pt;}
.y5c{bottom:715.199714pt;}
.y37{bottom:715.999714pt;}
.yc{bottom:719.199712pt;}
.y6b{bottom:719.999712pt;}
.yb5{bottom:720.319712pt;}
.yf1{bottom:726.239710pt;}
.y90{bottom:730.239708pt;}
.y5b{bottom:731.039708pt;}
.ycd{bottom:732.959707pt;}
.yb{bottom:738.399705pt;}
.yf0{bottom:740.799704pt;}
.y8f{bottom:746.079702pt;}
.yb4{bottom:746.559701pt;}
.y36{bottom:746.879701pt;}
.ycc{bottom:748.799700pt;}
.y6a{bottom:750.879700pt;}
.ya{bottom:755.679698pt;}
.y8e{bottom:761.919695pt;}
.yef{bottom:762.559695pt;}
.y35{bottom:762.719695pt;}
.ycb{bottom:764.639694pt;}
.y69{bottom:766.719693pt;}
.y9{bottom:772.959691pt;}
.yee{bottom:776.959689pt;}
.y5a{bottom:777.759689pt;}
.y34{bottom:778.559689pt;}
.yca{bottom:780.479688pt;}
.y68{bottom:782.559687pt;}
.yed{bottom:791.519683pt;}
.y59{bottom:793.599683pt;}
.y33{bottom:794.399682pt;}
.y7{bottom:805.439678pt;}
.y58{bottom:809.439676pt;}
.yc9{bottom:811.359675pt;}
.y8{bottom:812.959675pt;}
.y67{bottom:813.439675pt;}
.y32{bottom:825.279670pt;}
.yc8{bottom:827.199669pt;}
.y66{bottom:829.279668pt;}
.yec{bottom:835.359666pt;}
.y31{bottom:841.279663pt;}
.y6{bottom:841.599663pt;}
.y65{bottom:845.119662pt;}
.yeb{bottom:849.759660pt;}
.yc7{bottom:854.879658pt;}
.y30{bottom:856.959657pt;}
.y64{bottom:869.119652pt;}
.y5{bottom:869.919652pt;}
.yea{bottom:871.679651pt;}
.y57{bottom:871.999651pt;}
.y2f{bottom:872.799651pt;}
.ye9{bottom:886.079646pt;}
.y56{bottom:887.839645pt;}
.y2e{bottom:888.799644pt;}
.y4{bottom:898.079641pt;}
.yad{bottom:902.239639pt;}
.y55{bottom:903.839638pt;}
.ye8{bottom:907.999637pt;}
.y2d{bottom:919.519632pt;}
.ye7{bottom:922.399631pt;}
.y3{bottom:926.399629pt;}
.yac{bottom:934.559626pt;}
.y2c{bottom:935.519626pt;}
.yc6{bottom:936.799625pt;}
.y1{bottom:960.159616pt;}
.hd{height:27.730022pt;}
.h5{height:29.386064pt;}
.h9{height:34.104089pt;}
.h1{height:34.353753pt;}
.h8{height:36.263995pt;}
.hc{height:38.077391pt;}
.hb{height:38.298771pt;}
.h6{height:41.390063pt;}
.h7{height:44.506350pt;}
.h4{height:44.701269pt;}
.ha{height:48.706447pt;}
.h3{height:65.830817pt;}
.h2{height:82.657993pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.119591pt;}
.x1b{left:150.079940pt;}
.x1d{left:151.999939pt;}
.x20{left:154.399938pt;}
.x21{left:157.919937pt;}
.x4{left:160.960107pt;}
.x2c{left:163.679880pt;}
.x22{left:164.799934pt;}
.x27{left:168.639933pt;}
.x2a{left:170.559932pt;}
.x2e{left:174.559930pt;}
.x1{left:178.559929pt;}
.xe{left:180.000492pt;}
.x2d{left:186.239869pt;}
.x2b{left:199.519920pt;}
.x1e{left:210.559916pt;}
.x1f{left:215.679914pt;}
.x5{left:217.439913pt;}
.x6{left:222.559911pt;}
.xf{left:227.679909pt;}
.x28{left:233.119907pt;}
.x3b{left:236.479905pt;}
.x7{left:239.679904pt;}
.x10{left:244.959902pt;}
.x1c{left:258.561090pt;}
.x1a{left:264.159894pt;}
.x23{left:269.599892pt;}
.x24{left:273.919890pt;}
.x25{left:277.279889pt;}
.x11{left:304.639878pt;}
.x12{left:320.159872pt;}
.x29{left:322.879871pt;}
.x37{left:324.959870pt;}
.x39{left:335.039085pt;}
.x33{left:336.159866pt;}
.x30{left:339.839864pt;}
.x35{left:342.559863pt;}
.x17{left:359.039856pt;}
.x18{left:376.639849pt;}
.x8{left:396.799841pt;}
.x3{left:412.159835pt;}
.x9{left:417.110500pt;}
.x19{left:465.439814pt;}
.xa{left:469.919812pt;}
.x13{left:475.519810pt;}
.x31{left:484.479806pt;}
.xb{left:487.030472pt;}
.x14{left:488.630471pt;}
.x15{left:523.839790pt;}
.x16{left:539.199784pt;}
.xc{left:543.039783pt;}
.xd{left:560.319776pt;}
.x38{left:565.439774pt;}
.x36{left:569.759772pt;}
.x34{left:571.039772pt;}
.x2f{left:581.119768pt;}
.x32{left:583.999766pt;}
.x3a{left:618.399753pt;}
.x26{left:676.959298pt;}
}




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