
    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_527f79f4ed2d9ff4a42054dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_9dbba26f198d5a1ff547af09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_52a9e88f0e6266eca7f9c821.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_7e0ea9ba1fbb3bf47c370b85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_41b2a6c891893e850ff17fe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_9f0cd8db9e0aae513fb97bb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_f5aa29d9c5496a772d464c6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700195;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;}
.m7{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m0{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:37.439985px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls7{letter-spacing:0.378514px;}
.ls6{letter-spacing:37.419885px;}
.ls1{letter-spacing:46.065102px;}
.ls5{letter-spacing:64.076494px;}
.ls2{letter-spacing:100.098680px;}
.ls4{letter-spacing:102.259879px;}
.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;}
}
.ws3{word-spacing:-35.855986px;}
.ws1{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-3.880577px;}
._d{margin-left:-2.880091px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._7{width:2.352342px;}
._8{width:3.518650px;}
._5{width:5.505946px;}
._6{width:7.227967px;}
._a{width:8.946455px;}
._e{width:10.067314px;}
._14{width:11.099290px;}
._12{width:12.491031px;}
._17{width:13.862038px;}
._18{width:16.637767px;}
._15{width:17.719395px;}
._13{width:19.107438px;}
._10{width:20.927155px;}
._b{width:22.454419px;}
._30{width:24.699964px;}
._9{width:25.813569px;}
._c{width:27.593929px;}
._2f{width:31.914708px;}
._11{width:43.852441px;}
._31{width:57.112276px;}
._32{width:58.479413px;}
._1{width:100.137638px;}
._1b{width:161.886226px;}
._1f{width:176.441684px;}
._2c{width:178.233581px;}
._2e{width:193.518612px;}
._f{width:211.638515px;}
._3{width:231.194081px;}
._1e{width:256.068343px;}
._2d{width:336.225435px;}
._2b{width:346.205351px;}
._22{width:357.646740px;}
._20{width:365.953405px;}
._1d{width:423.892953px;}
._21{width:491.526745px;}
._2a{width:515.489767px;}
._25{width:535.537692px;}
._1c{width:537.662736px;}
._28{width:549.282767px;}
._27{width:550.551194px;}
._24{width:560.073270px;}
._19{width:626.527252px;}
._29{width:635.041051px;}
._26{width:661.080204px;}
._1a{width:727.099969px;}
._23{width:992.513843px;}
._4{width:1036.867572px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.239995px;}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs8{font-size:30.239988px;}
.fs7{font-size:38.879984px;}
.fs5{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.058928px;}
.y9a{bottom:4.139162px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.y7d{bottom:131.880247px;}
.ye4{bottom:136.380245px;}
.y7c{bottom:141.779943px;}
.y45{bottom:150.779940px;}
.yb3{bottom:151.859939px;}
.ye3{bottom:156.719937px;}
.y7b{bottom:160.499936px;}
.y44{bottom:169.319932px;}
.yb2{bottom:170.579932px;}
.ye2{bottom:175.259930px;}
.y7a{bottom:179.219928px;}
.y43{bottom:188.039925px;}
.yb1{bottom:189.119924px;}
.ye1{bottom:194.519922px;}
.y79{bottom:197.759921px;}
.y42{bottom:206.579917px;}
.yb0{bottom:207.839917px;}
.ye0{bottom:213.959914px;}
.y78{bottom:216.479913px;}
.y41{bottom:225.299910px;}
.yaf{bottom:226.379909px;}
.ydf{bottom:233.219907px;}
.y77{bottom:235.019906px;}
.y40{bottom:243.839902px;}
.yae{bottom:245.099902px;}
.y76{bottom:250.859900px;}
.yde{bottom:252.479899px;}
.y75{bottom:260.939896px;}
.y3f{bottom:262.559895px;}
.yad{bottom:263.639895px;}
.ydd{bottom:271.199892px;}
.y74{bottom:279.659888px;}
.y3e{bottom:281.279887px;}
.yac{bottom:282.359887px;}
.ydc{bottom:290.459884px;}
.yab{bottom:297.839881px;}
.y73{bottom:298.199881px;}
.y3d{bottom:299.819880px;}
.yaa{bottom:304.679878px;}
.ydb{bottom:309.179876px;}
.y72{bottom:316.919873px;}
.y3c{bottom:318.539873px;}
.ya9{bottom:319.979872px;}
.yda{bottom:328.439869px;}
.ya8{bottom:328.799868px;}
.y71{bottom:335.459866px;}
.y3b{bottom:337.079865px;}
.yd9{bottom:346.979861px;}
.ya7{bottom:350.399860px;}
.y70{bottom:350.939860px;}
.y3a{bottom:355.799858px;}
.y6f{bottom:359.399856px;}
.yd8{bottom:366.419853px;}
.ya6{bottom:372.179851px;}
.y39{bottom:374.339850px;}
.y6e{bottom:375.419850px;}
.yd7{bottom:385.679846px;}
.y6d{bottom:386.759845px;}
.y38{bottom:393.059843px;}
.ya5{bottom:393.779842px;}
.yd6{bottom:404.399838px;}
.y6c{bottom:405.299838px;}
.y37{bottom:411.599835px;}
.ya4{bottom:415.379834px;}
.yd5{bottom:423.659831px;}
.y6b{bottom:424.559830px;}
.y36{bottom:430.139828px;}
.ya3{bottom:436.799825px;}
.yd4{bottom:442.919823px;}
.y6a{bottom:443.999822px;}
.y35{bottom:445.439822px;}
.y34{bottom:452.819819px;}
.ya2{bottom:454.259818px;}
.yd3{bottom:461.639815px;}
.y69{bottom:462.539815px;}
.ya1{bottom:464.159814px;}
.y33{bottom:464.519814px;}
.y32{bottom:474.599810px;}
.ya0{bottom:480.719808px;}
.yd2{bottom:480.899808px;}
.y68{bottom:481.799807px;}
.y31{bottom:490.619804px;}
.y9f{bottom:493.859802px;}
.y67{bottom:497.099801px;}
.yd1{bottom:499.619800px;}
.y30{bottom:501.779799px;}
.y9e{bottom:503.039799px;}
.y66{bottom:505.559798px;}
.yd0{bottom:518.699793px;}
.y2f{bottom:520.499792px;}
.y65{bottom:524.279790px;}
.y9d{bottom:533.999786px;}
.ycf{bottom:534.719786px;}
.y2e{bottom:539.219784px;}
.y64{bottom:542.819783px;}
.y9c{bottom:543.359783px;}
.yce{bottom:546.059782px;}
.y2d{bottom:557.759777px;}
.y63{bottom:561.539775px;}
.ycd{bottom:564.599774px;}
.y9b{bottom:574.319770px;}
.y2c{bottom:576.479769px;}
.y62{bottom:580.079768px;}
.ycc{bottom:583.319767px;}
.y99{bottom:591.780600px;}
.y2b{bottom:595.019762px;}
.y98{bottom:595.919762px;}
.y61{bottom:598.799760px;}
.ycb{bottom:602.039759px;}
.y2a{bottom:613.739755px;}
.y60{bottom:617.339753px;}
.y97{bottom:617.699753px;}
.yca{bottom:620.579752px;}
.y29{bottom:632.279747px;}
.y5f{bottom:636.059746px;}
.y96{bottom:639.119744px;}
.yc9{bottom:639.299744px;}
.y28{bottom:650.999740px;}
.y5e{bottom:654.779738px;}
.yc8{bottom:657.839737px;}
.y95{bottom:659.099736px;}
.y27{bottom:669.539732px;}
.y5d{bottom:673.319731px;}
.y94{bottom:674.399730px;}
.yc7{bottom:676.379729px;}
.y93{bottom:682.679727px;}
.y26{bottom:688.259725px;}
.yc6{bottom:691.679723px;}
.y5c{bottom:692.039723px;}
.y92{bottom:697.979721px;}
.yc5{bottom:702.119719px;}
.y91{bottom:706.439717px;}
.y25{bottom:706.979717px;}
.y5b{bottom:710.579716px;}
.yc4{bottom:723.719711px;}
.y90{bottom:725.159710px;}
.y24{bottom:725.519710px;}
.y5a{bottom:729.299708px;}
.y8f{bottom:743.699703px;}
.y23{bottom:744.239702px;}
.yc3{bottom:745.319702px;}
.y59{bottom:747.839701px;}
.y8e{bottom:762.419695px;}
.y22{bottom:762.779695px;}
.y58{bottom:766.559693px;}
.yc2{bottom:766.919693px;}
.y8d{bottom:781.139688px;}
.y21{bottom:781.499687px;}
.y57{bottom:785.099686px;}
.yc1{bottom:788.519685px;}
.y8c{bottom:799.679680px;}
.y20{bottom:800.039680px;}
.y56{bottom:803.819678px;}
.yc0{bottom:805.979678px;}
.ybf{bottom:816.059674px;}
.y1f{bottom:816.239674px;}
.y8b{bottom:818.399673px;}
.y55{bottom:822.539671px;}
.y1e{bottom:825.959670px;}
.ybe{bottom:834.599666px;}
.y8a{bottom:836.939665px;}
.y54{bottom:841.079664px;}
.y1d{bottom:843.599663px;}
.ybd{bottom:854.039658px;}
.y89{bottom:855.659658px;}
.y1c{bottom:858.539657px;}
.y53{bottom:859.799656px;}
.ybc{bottom:872.579651px;}
.y1b{bottom:874.019650px;}
.y52{bottom:878.339649px;}
.y88{bottom:890.039644px;}
.ybb{bottom:892.019643px;}
.y1a{bottom:892.739643px;}
.y51{bottom:897.059641px;}
.y87{bottom:901.379639px;}
.yba{bottom:910.559636px;}
.y19{bottom:911.459635px;}
.y50{bottom:915.599634px;}
.y86{bottom:920.639632px;}
.yb9{bottom:929.099628px;}
.y18{bottom:929.999628px;}
.y4f{bottom:934.319626px;}
.y85{bottom:939.899624px;}
.yb8{bottom:948.539621px;}
.y17{bottom:948.719621px;}
.y4e{bottom:952.859619px;}
.y84{bottom:959.159616px;}
.y16{bottom:964.199614px;}
.yb7{bottom:967.079613px;}
.y4d{bottom:971.579611px;}
.y14{bottom:972.479611px;}
.y83{bottom:974.639610px;}
.y15{bottom:976.259609px;}
.y82{bottom:984.719606px;}
.yb6{bottom:986.339605px;}
.y13{bottom:989.399604px;}
.y4c{bottom:990.299604px;}
.y12{bottom:1001.999599px;}
.y81{bottom:1003.259599px;}
.y4b{bottom:1008.839596px;}
.yb5{bottom:1012.079595px;}
.y11{bottom:1018.379593px;}
.y80{bottom:1021.979591px;}
.y4a{bottom:1027.379589px;}
.yb4{bottom:1030.619588px;}
.y7f{bottom:1040.339584px;}
.y49{bottom:1042.319583px;}
.y10{bottom:1047.179581px;}
.y48{bottom:1049.339580px;}
.y7e{bottom:1056.539577px;}
.y47{bottom:1067.879573px;}
.yf{bottom:1073.099571px;}
.y46{bottom:1086.599565px;}
.ye{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yd{bottom:1154.999538px;}
.y2{bottom:1163.639535px;}
.yc{bottom:1167.599533px;}
.ya{bottom:1177.680600px;}
.y1{bottom:1196.039522px;}
.h10{height:8.911051px;}
.h17{height:8.923004px;}
.h13{height:11.997066px;}
.h6{height:12.960000px;}
.h2{height:13.104487px;}
.hc{height:13.122065px;}
.h5{height:15.836126px;}
.he{height:17.297923px;}
.h11{height:17.321126px;}
.h14{height:18.360000px;}
.h12{height:22.015538px;}
.hf{height:22.045069px;}
.hb{height:28.343661px;}
.h7{height:30.402410px;}
.h8{height:30.443191px;}
.hd{height:35.120025px;}
.h3{height:35.167134px;}
.h1{height:39.313461px;}
.h18{height:41.843655px;}
.h4{height:43.506897px;}
.ha{height:43.565256px;}
.h9{height:69.809386px;}
.h16{height:80.226882px;}
.h15{height:80.946882px;}
.h0{height:1263.000000px;}
.w2{width:6.660000px;}
.w3{width:7.560000px;}
.w1{width:185.760000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x22{left:114.839952px;}
.x17{left:115.919954px;}
.xd{left:133.199895px;}
.x13{left:134.999933px;}
.x23{left:141.840003px;}
.x1e{left:148.499883px;}
.x16{left:149.579940px;}
.x14{left:154.793938px;}
.x4{left:160.019662px;}
.x15{left:161.999984px;}
.x1f{left:168.839874px;}
.x21{left:191.339923px;}
.x5{left:206.459917px;}
.x1b{left:216.719913px;}
.x20{left:217.979913px;}
.xc{left:225.719910px;}
.x1d{left:228.419909px;}
.x18{left:283.320000px;}
.x19{left:298.799880px;}
.xb{left:313.559875px;}
.xe{left:314.819874px;}
.x1c{left:343.799862px;}
.x2{left:353.160301px;}
.xf{left:413.639835px;}
.x10{left:418.499833px;}
.x6{left:428.399829px;}
.x3{left:446.400357px;}
.x9{left:510.479796px;}
.x11{left:572.939771px;}
.x12{left:577.979769px;}
.x7{left:588.780000px;}
.xa{left:602.099979px;}
.x1a{left:613.979758px;}
.x8{left:774.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:33.279987pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls7{letter-spacing:0.336457pt;}
.ls6{letter-spacing:33.262120pt;}
.ls1{letter-spacing:40.946757pt;}
.ls5{letter-spacing:56.956884pt;}
.ls2{letter-spacing:88.976604pt;}
.ls4{letter-spacing:90.897670pt;}
.ws3{word-spacing:-31.871987pt;}
.ws1{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-3.449402pt;}
._d{margin-left:-2.560081pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._7{width:2.090971pt;}
._8{width:3.127688pt;}
._5{width:4.894174pt;}
._6{width:6.424860pt;}
._a{width:7.952404pt;}
._e{width:8.948724pt;}
._14{width:9.866035pt;}
._12{width:11.103139pt;}
._17{width:12.321812pt;}
._18{width:14.789126pt;}
._15{width:15.750574pt;}
._13{width:16.984390pt;}
._10{width:18.601916pt;}
._b{width:19.959484pt;}
._30{width:21.955524pt;}
._9{width:22.945395pt;}
._c{width:24.527937pt;}
._2f{width:28.368629pt;}
._11{width:38.979948pt;}
._31{width:50.766468pt;}
._32{width:51.981700pt;}
._1{width:89.011234pt;}
._1b{width:143.898868pt;}
._1f{width:156.837052pt;}
._2c{width:158.429850pt;}
._2e{width:172.016544pt;}
._f{width:188.123125pt;}
._3{width:205.505850pt;}
._1e{width:227.616305pt;}
._2d{width:298.867053pt;}
._2b{width:307.738089pt;}
._22{width:317.908213pt;}
._20{width:325.291915pt;}
._1d{width:376.793736pt;}
._21{width:436.912663pt;}
._2a{width:458.213126pt;}
._25{width:476.033504pt;}
._1c{width:477.922432pt;}
._28{width:488.251349pt;}
._27{width:489.378839pt;}
._24{width:497.842906pt;}
._19{width:556.913113pt;}
._29{width:564.480934pt;}
._26{width:587.626848pt;}
._1a{width:646.311084pt;}
._23{width:882.234527pt;}
._4{width:921.660064pt;}
.fs9{font-size:10.879996pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs8{font-size:26.879989pt;}
.fs7{font-size:34.559986pt;}
.fs5{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.719047pt;}
.y9a{bottom:3.679255pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.y7d{bottom:117.226886pt;}
.ye4{bottom:121.226885pt;}
.y7c{bottom:126.026616pt;}
.y45{bottom:134.026613pt;}
.yb3{bottom:134.986613pt;}
.ye3{bottom:139.306611pt;}
.y7b{bottom:142.666610pt;}
.y44{bottom:150.506606pt;}
.yb2{bottom:151.626606pt;}
.ye2{bottom:155.786604pt;}
.y7a{bottom:159.306603pt;}
.y43{bottom:167.146600pt;}
.yb1{bottom:168.106599pt;}
.ye1{bottom:172.906598pt;}
.y79{bottom:175.786596pt;}
.y42{bottom:183.626593pt;}
.yb0{bottom:184.746593pt;}
.ye0{bottom:190.186591pt;}
.y78{bottom:192.426590pt;}
.y41{bottom:200.266587pt;}
.yaf{bottom:201.226586pt;}
.ydf{bottom:207.306584pt;}
.y77{bottom:208.906583pt;}
.y40{bottom:216.746580pt;}
.yae{bottom:217.866580pt;}
.y76{bottom:222.986577pt;}
.yde{bottom:224.426577pt;}
.y75{bottom:231.946574pt;}
.y3f{bottom:233.386573pt;}
.yad{bottom:234.346573pt;}
.ydd{bottom:241.066570pt;}
.y74{bottom:248.586567pt;}
.y3e{bottom:250.026567pt;}
.yac{bottom:250.986566pt;}
.ydc{bottom:258.186563pt;}
.yab{bottom:264.746561pt;}
.y73{bottom:265.066561pt;}
.y3d{bottom:266.506560pt;}
.yaa{bottom:270.826558pt;}
.ydb{bottom:274.826557pt;}
.y72{bottom:281.706554pt;}
.y3c{bottom:283.146553pt;}
.ya9{bottom:284.426553pt;}
.yda{bottom:291.946550pt;}
.ya8{bottom:292.266550pt;}
.y71{bottom:298.186547pt;}
.y3b{bottom:299.626547pt;}
.yd9{bottom:308.426543pt;}
.ya7{bottom:311.466542pt;}
.y70{bottom:311.946542pt;}
.y3a{bottom:316.266540pt;}
.y6f{bottom:319.466539pt;}
.yd8{bottom:325.706536pt;}
.ya6{bottom:330.826534pt;}
.y39{bottom:332.746534pt;}
.y6e{bottom:333.706533pt;}
.yd7{bottom:342.826530pt;}
.y6d{bottom:343.786529pt;}
.y38{bottom:349.386527pt;}
.ya5{bottom:350.026527pt;}
.yd6{bottom:359.466523pt;}
.y6c{bottom:360.266523pt;}
.y37{bottom:365.866520pt;}
.ya4{bottom:369.226519pt;}
.yd5{bottom:376.586516pt;}
.y6b{bottom:377.386516pt;}
.y36{bottom:382.346514pt;}
.ya3{bottom:388.266511pt;}
.yd4{bottom:393.706509pt;}
.y6a{bottom:394.666509pt;}
.y35{bottom:395.946508pt;}
.y34{bottom:402.506506pt;}
.ya2{bottom:403.786505pt;}
.yd3{bottom:410.346503pt;}
.y69{bottom:411.146502pt;}
.ya1{bottom:412.586502pt;}
.y33{bottom:412.906502pt;}
.y32{bottom:421.866498pt;}
.ya0{bottom:427.306496pt;}
.yd2{bottom:427.466496pt;}
.y68{bottom:428.266495pt;}
.y31{bottom:436.106492pt;}
.y9f{bottom:438.986491pt;}
.y67{bottom:441.866490pt;}
.yd1{bottom:444.106489pt;}
.y30{bottom:446.026488pt;}
.y9e{bottom:447.146488pt;}
.y66{bottom:449.386487pt;}
.yd0{bottom:461.066482pt;}
.y2f{bottom:462.666482pt;}
.y65{bottom:466.026480pt;}
.y9d{bottom:474.666477pt;}
.ycf{bottom:475.306477pt;}
.y2e{bottom:479.306475pt;}
.y64{bottom:482.506474pt;}
.y9c{bottom:482.986473pt;}
.yce{bottom:485.386473pt;}
.y2d{bottom:495.786468pt;}
.y63{bottom:499.146467pt;}
.ycd{bottom:501.866466pt;}
.y9b{bottom:510.506462pt;}
.y2c{bottom:512.426462pt;}
.y62{bottom:515.626460pt;}
.ycc{bottom:518.506459pt;}
.y99{bottom:526.027200pt;}
.y2b{bottom:528.906455pt;}
.y98{bottom:529.706455pt;}
.y61{bottom:532.266454pt;}
.ycb{bottom:535.146453pt;}
.y2a{bottom:545.546448pt;}
.y60{bottom:548.746447pt;}
.y97{bottom:549.066447pt;}
.yca{bottom:551.626446pt;}
.y29{bottom:562.026442pt;}
.y5f{bottom:565.386441pt;}
.y96{bottom:568.106439pt;}
.yc9{bottom:568.266439pt;}
.y28{bottom:578.666435pt;}
.y5e{bottom:582.026434pt;}
.yc8{bottom:584.746433pt;}
.y95{bottom:585.866432pt;}
.y27{bottom:595.146429pt;}
.y5d{bottom:598.506427pt;}
.y94{bottom:599.466427pt;}
.yc7{bottom:601.226426pt;}
.y93{bottom:606.826424pt;}
.y26{bottom:611.786422pt;}
.yc6{bottom:614.826421pt;}
.y5c{bottom:615.146421pt;}
.y92{bottom:620.426418pt;}
.yc5{bottom:624.106417pt;}
.y91{bottom:627.946415pt;}
.y25{bottom:628.426415pt;}
.y5b{bottom:631.626414pt;}
.yc4{bottom:643.306409pt;}
.y90{bottom:644.586409pt;}
.y24{bottom:644.906409pt;}
.y5a{bottom:648.266407pt;}
.y8f{bottom:661.066402pt;}
.y23{bottom:661.546402pt;}
.yc3{bottom:662.506402pt;}
.y59{bottom:664.746401pt;}
.y8e{bottom:677.706396pt;}
.y22{bottom:678.026395pt;}
.y58{bottom:681.386394pt;}
.yc2{bottom:681.706394pt;}
.y8d{bottom:694.346389pt;}
.y21{bottom:694.666389pt;}
.y57{bottom:697.866388pt;}
.yc1{bottom:700.906386pt;}
.y8c{bottom:710.826382pt;}
.y20{bottom:711.146382pt;}
.y56{bottom:714.506381pt;}
.yc0{bottom:716.426380pt;}
.ybf{bottom:725.386377pt;}
.y1f{bottom:725.546376pt;}
.y8b{bottom:727.466376pt;}
.y55{bottom:731.146374pt;}
.y1e{bottom:734.186373pt;}
.ybe{bottom:741.866370pt;}
.y8a{bottom:743.946369pt;}
.y54{bottom:747.626368pt;}
.y1d{bottom:749.866367pt;}
.ybd{bottom:759.146363pt;}
.y89{bottom:760.586362pt;}
.y1c{bottom:763.146361pt;}
.y53{bottom:764.266361pt;}
.ybc{bottom:775.626356pt;}
.y1b{bottom:776.906356pt;}
.y52{bottom:780.746354pt;}
.y88{bottom:791.146350pt;}
.ybb{bottom:792.906350pt;}
.y1a{bottom:793.546349pt;}
.y51{bottom:797.386348pt;}
.y87{bottom:801.226346pt;}
.yba{bottom:809.386343pt;}
.y19{bottom:810.186343pt;}
.y50{bottom:813.866341pt;}
.y86{bottom:818.346339pt;}
.yb9{bottom:825.866336pt;}
.y18{bottom:826.666336pt;}
.y4f{bottom:830.506334pt;}
.y85{bottom:835.466332pt;}
.yb8{bottom:843.146329pt;}
.y17{bottom:843.306329pt;}
.y4e{bottom:846.986328pt;}
.y84{bottom:852.586326pt;}
.y16{bottom:857.066324pt;}
.yb7{bottom:859.626323pt;}
.y4d{bottom:863.626321pt;}
.y14{bottom:864.426321pt;}
.y83{bottom:866.346320pt;}
.y15{bottom:867.786320pt;}
.y82{bottom:875.306317pt;}
.yb6{bottom:876.746316pt;}
.y13{bottom:879.466315pt;}
.y4c{bottom:880.266315pt;}
.y12{bottom:890.666310pt;}
.y81{bottom:891.786310pt;}
.y4b{bottom:896.746308pt;}
.yb5{bottom:899.626307pt;}
.y11{bottom:905.226305pt;}
.y80{bottom:908.426303pt;}
.y4a{bottom:913.226301pt;}
.yb4{bottom:916.106300pt;}
.y7f{bottom:924.746297pt;}
.y49{bottom:926.506296pt;}
.y10{bottom:930.826294pt;}
.y48{bottom:932.746294pt;}
.y7e{bottom:939.146291pt;}
.y47{bottom:949.226287pt;}
.yf{bottom:953.866285pt;}
.y46{bottom:965.866280pt;}
.ye{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yd{bottom:1026.666256pt;}
.y2{bottom:1034.346253pt;}
.yc{bottom:1037.866252pt;}
.ya{bottom:1046.827200pt;}
.y1{bottom:1063.146241pt;}
.h10{height:7.920934pt;}
.h17{height:7.931559pt;}
.h13{height:10.664058pt;}
.h6{height:11.520000pt;}
.h2{height:11.648433pt;}
.hc{height:11.664058pt;}
.h5{height:14.076557pt;}
.he{height:15.375931pt;}
.h11{height:15.396556pt;}
.h14{height:16.320000pt;}
.h12{height:19.569367pt;}
.hf{height:19.595617pt;}
.hb{height:25.194365pt;}
.h7{height:27.024364pt;}
.h8{height:27.060614pt;}
.hd{height:31.217800pt;}
.h3{height:31.259675pt;}
.h1{height:34.945299pt;}
.h18{height:37.194360pt;}
.h4{height:38.672797pt;}
.ha{height:38.724672pt;}
.h9{height:62.052788pt;}
.h16{height:71.312784pt;}
.h15{height:71.952784pt;}
.h0{height:1122.666667pt;}
.w2{width:5.920000pt;}
.w3{width:6.720000pt;}
.w1{width:165.120000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x22{left:102.079957pt;}
.x17{left:103.039959pt;}
.xd{left:118.399907pt;}
.x13{left:119.999940pt;}
.x23{left:126.080002pt;}
.x1e{left:131.999896pt;}
.x16{left:132.959947pt;}
.x14{left:137.594612pt;}
.x4{left:142.239699pt;}
.x15{left:143.999986pt;}
.x1f{left:150.079888pt;}
.x21{left:170.079932pt;}
.x5{left:183.519927pt;}
.x1b{left:192.639923pt;}
.x20{left:193.759922pt;}
.xc{left:200.639920pt;}
.x1d{left:203.039919pt;}
.x18{left:251.840000pt;}
.x19{left:265.599894pt;}
.xb{left:278.719889pt;}
.xe{left:279.839888pt;}
.x1c{left:305.599878pt;}
.x2{left:313.920268pt;}
.xf{left:367.679853pt;}
.x10{left:371.999851pt;}
.x6{left:380.799848pt;}
.x3{left:396.800317pt;}
.x9{left:453.759818pt;}
.x11{left:509.279796pt;}
.x12{left:513.759794pt;}
.x7{left:523.360000pt;}
.xa{left:535.199981pt;}
.x1a{left:545.759785pt;}
.x8{left:688.480000pt;}
}




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