
    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_486fb0f3defc4772f4ba38a4.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c4bdd138d7d25d740edafd0b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd9ea798518062cd8660a6cf.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_57f90abf4f425945de15689d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m2{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);}
.m3{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);}
.m4{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);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003606px;}
.ls7{letter-spacing:0.010553px;}
.ls3{letter-spacing:0.010641px;}
.ls5{letter-spacing:0.095400px;}
.ls1{letter-spacing:0.155834px;}
.ls4{letter-spacing:0.311800px;}
.ls6{letter-spacing:0.311844px;}
.ls8{letter-spacing:0.378514px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-20.327792px;}
.ws1{word-spacing:-20.015992px;}
.ws3{word-spacing:-13.410715px;}
.ws4{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-2.618549px;}
._1{margin-left:-1.075138px;}
._2{width:1.091452px;}
._a{width:2.268185px;}
._6{width:3.723609px;}
._5{width:4.899981px;}
._c{width:6.675700px;}
._b{width:7.827750px;}
._11{width:8.976494px;}
._10{width:10.044722px;}
._1c{width:11.237612px;}
._d{width:12.488595px;}
._8{width:13.928944px;}
._16{width:15.120723px;}
._f{width:17.106272px;}
._e{width:18.158177px;}
._18{width:20.854887px;}
._7{width:21.980145px;}
._25{width:22.997380px;}
._1a{width:24.325566px;}
._19{width:25.561788px;}
._28{width:26.819065px;}
._0{width:28.443101px;}
._4{width:29.608834px;}
._3{width:31.173073px;}
._2c{width:32.251107px;}
._21{width:33.316740px;}
._20{width:34.434098px;}
._24{width:35.452471px;}
._22{width:36.549501px;}
._12{width:38.200070px;}
._13{width:39.274020px;}
._1b{width:40.503483px;}
._32{width:41.913514px;}
._23{width:43.295351px;}
._17{width:44.431340px;}
._15{width:45.758823px;}
._14{width:47.181907px;}
._2f{width:48.424373px;}
._31{width:50.468659px;}
._1d{width:52.729594px;}
._2a{width:54.921492px;}
._29{width:56.564062px;}
._30{width:58.813988px;}
._2b{width:60.469608px;}
._1f{width:67.176742px;}
._1e{width:68.458158px;}
._2e{width:81.172825px;}
._2d{width:82.449706px;}
._27{width:84.537877px;}
._26{width:85.647813px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y1{bottom:80.220268px;}
.yc4{bottom:132.239947px;}
.yd5{bottom:134.759946px;}
.yed{bottom:135.660246px;}
.yba{bottom:136.019946px;}
.y55{bottom:139.979944px;}
.yec{bottom:140.880244px;}
.y1e{bottom:148.619941px;}
.y38{bottom:149.159940px;}
.y47{bottom:149.160240px;}
.yc3{bottom:149.879940px;}
.yd4{bottom:152.399939px;}
.yb9{bottom:153.659939px;}
.y46{bottom:154.379938px;}
.y7e{bottom:155.099938px;}
.y54{bottom:157.619937px;}
.y37{bottom:166.799933px;}
.yc2{bottom:167.519933px;}
.yb8{bottom:171.299931px;}
.y36{bottom:172.019931px;}
.yc1{bottom:172.739931px;}
.y53{bottom:175.259930px;}
.yb7{bottom:176.519929px;}
.y67{bottom:184.439926px;}
.y45{bottom:184.799926px;}
.y86{bottom:185.519926px;}
.yd3{bottom:188.759924px;}
.y1d{bottom:190.019924px;}
.y52{bottom:192.899923px;}
.y7d{bottom:196.499921px;}
.y66{bottom:202.079919px;}
.yb4{bottom:202.439919px;}
.y35{bottom:203.159919px;}
.yc0{bottom:203.879918px;}
.y65{bottom:207.299917px;}
.yb3{bottom:207.659917px;}
.yeb{bottom:207.839917px;}
.y51{bottom:210.539916px;}
.y44{bottom:220.439912px;}
.ye7{bottom:221.159912px;}
.y43{bottom:225.659910px;}
.y50{bottom:228.179909px;}
.yd2{bottom:230.339908px;}
.y1c{bottom:231.419907px;}
.y64{bottom:237.719905px;}
.y7c{bottom:237.899905px;}
.yb2{bottom:238.799904px;}
.yfd{bottom:240.959904px;}
.y63{bottom:242.939903px;}
.ybf{bottom:245.459902px;}
.y4f{bottom:245.819902px;}
.yb5{bottom:249.239900px;}
.y4e{bottom:251.039900px;}
.yb6{bottom:255.179898px;}
.y42{bottom:256.079898px;}
.y41{bottom:261.299895px;}
.yd1{bottom:272.999891px;}
.y62{bottom:274.079890px;}
.y1b{bottom:277.679889px;}
.y7b{bottom:279.299888px;}
.ye6{bottom:280.559888px;}
.y4d{bottom:282.179887px;}
.yfc{bottom:282.359887px;}
.y85{bottom:285.239886px;}
.y91{bottom:285.599886px;}
.ybe{bottom:288.119885px;}
.y34{bottom:290.639884px;}
.y40{bottom:291.719883px;}
.yea{bottom:296.579881px;}
.y3f{bottom:296.939881px;}
.y1a{bottom:312.239875px;}
.yd0{bottom:314.399874px;}
.y9d{bottom:316.919873px;}
.yde{bottom:318.179873px;}
.y7a{bottom:320.699872px;}
.ye5{bottom:321.959871px;}
.yb1{bottom:322.859871px;}
.y4b{bottom:323.759870px;}
.y61{bottom:325.739870px;}
.y90{bottom:326.999869px;}
.y3e{bottom:327.359869px;}
.ybd{bottom:329.519868px;}
.y4c{bottom:329.699868px;}
.y33{bottom:332.039867px;}
.y3d{bottom:332.579867px;}
.y19{bottom:343.379863px;}
.ycf{bottom:357.059857px;}
.y9c{bottom:358.319857px;}
.ydd{bottom:359.579856px;}
.y79{bottom:363.359855px;}
.y3c{bottom:363.719855px;}
.y49{bottom:365.159854px;}
.y60{bottom:367.139853px;}
.y8f{bottom:368.399853px;}
.y4a{bottom:371.099852px;}
.ybc{bottom:372.179851px;}
.y32{bottom:373.439851px;}
.y18{bottom:374.519850px;}
.yce{bottom:398.459841px;}
.yb0{bottom:399.719840px;}
.y9b{bottom:400.979840px;}
.ydc{bottom:402.239839px;}
.y78{bottom:404.759838px;}
.y17{bottom:405.659838px;}
.yfb{bottom:406.559837px;}
.y5f{bottom:408.539837px;}
.y8e{bottom:411.059836px;}
.y48{bottom:411.419835px;}
.ybb{bottom:413.579835px;}
.y31{bottom:414.839834px;}
.y16{bottom:436.799825px;}
.ycd{bottom:441.119824px;}
.y9a{bottom:442.379823px;}
.ydb{bottom:444.899822px;}
.y77{bottom:446.159822px;}
.yfa{bottom:447.959821px;}
.y5e{bottom:449.939820px;}
.y8d{bottom:452.459819px;}
.y30{bottom:456.239818px;}
.y3b{bottom:462.179815px;}
.y15{bottom:467.939813px;}
.ycc{bottom:483.779806px;}
.y99{bottom:485.039806px;}
.yda{bottom:487.559805px;}
.y76{bottom:488.819804px;}
.yf9{bottom:489.359804px;}
.ya6{bottom:491.339803px;}
.y5d{bottom:492.599803px;}
.y8c{bottom:495.119802px;}
.y2e{bottom:497.639801px;}
.y14{bottom:499.079800px;}
.y2f{bottom:503.579799px;}
.yaf{bottom:526.439789px;}
.y98{bottom:527.699789px;}
.yd8{bottom:528.959788px;}
.y13{bottom:530.219788px;}
.yf8{bottom:530.759788px;}
.ya5{bottom:532.739787px;}
.y5c{bottom:533.999786px;}
.yd9{bottom:534.899786px;}
.y8b{bottom:536.519785px;}
.y2d{bottom:539.039784px;}
.y3a{bottom:544.979782px;}
.y12{bottom:561.359775px;}
.yae{bottom:569.099772px;}
.y97{bottom:570.359772px;}
.yf7{bottom:572.159771px;}
.y75{bottom:572.879771px;}
.ya4{bottom:574.139770px;}
.y5b{bottom:575.399770px;}
.y8a{bottom:577.919769px;}
.y2c{bottom:580.439768px;}
.y39{bottom:586.379765px;}
.y11{bottom:592.499763px;}
.yad{bottom:611.759755px;}
.y96{bottom:613.019755px;}
.yf6{bottom:613.559755px;}
.y74{bottom:614.279754px;}
.ya3{bottom:615.539754px;}
.ye4{bottom:617.699753px;}
.y5a{bottom:618.059753px;}
.y89{bottom:620.579752px;}
.y2b{bottom:621.839751px;}
.y10{bottom:623.639751px;}
.yac{bottom:653.159739px;}
.ycb{bottom:654.419738px;}
.yf{bottom:654.779738px;}
.yf5{bottom:654.959738px;}
.y73{bottom:655.679738px;}
.y84{bottom:656.939737px;}
.y59{bottom:660.719736px;}
.y88{bottom:661.979735px;}
.y2a{bottom:663.239735px;}
.ye8{bottom:669.179732px;}
.ye{bottom:685.919726px;}
.ye2{bottom:694.559722px;}
.yab{bottom:695.819722px;}
.yf4{bottom:696.359721px;}
.yca{bottom:697.079721px;}
.y72{bottom:698.339721px;}
.ya2{bottom:699.599720px;}
.ye3{bottom:700.499720px;}
.y58{bottom:703.379719px;}
.y29{bottom:704.639718px;}
.ye9{bottom:710.579716px;}
.yd{bottom:717.059713px;}
.yaa{bottom:737.219705px;}
.yf3{bottom:737.759705px;}
.yc9{bottom:738.479705px;}
.y71{bottom:739.739704px;}
.y83{bottom:740.999704px;}
.y57{bottom:744.779702px;}
.y95{bottom:745.679702px;}
.y28{bottom:746.039702px;}
.yc{bottom:748.199701px;}
.y87{bottom:751.979699px;}
.yf2{bottom:779.159688px;}
.yb{bottom:779.339688px;}
.ya9{bottom:779.879688px;}
.y94{bottom:781.139688px;}
.y70{bottom:782.399687px;}
.ya1{bottom:783.659687px;}
.y27{bottom:787.439685px;}
.ya{bottom:810.479676px;}
.yf1{bottom:820.559672px;}
.ye1{bottom:821.279671px;}
.ya8{bottom:822.539671px;}
.y6f{bottom:823.799670px;}
.y82{bottom:825.059670px;}
.ya0{bottom:826.319669px;}
.yd7{bottom:828.479669px;}
.y26{bottom:828.839668px;}
.y56{bottom:834.779666px;}
.y9{bottom:852.419659px;}
.yf0{bottom:861.959655px;}
.ye0{bottom:862.679655px;}
.yc7{bottom:863.939654px;}
.y93{bottom:865.199654px;}
.y6e{bottom:866.459653px;}
.y9f{bottom:868.979652px;}
.yc8{bottom:869.879652px;}
.y25{bottom:870.239652px;}
.y8{bottom:894.359642px;}
.ydf{bottom:905.339638px;}
.yc6{bottom:906.599637px;}
.y6d{bottom:907.859637px;}
.yef{bottom:908.219637px;}
.y81{bottom:909.119636px;}
.y24{bottom:911.639635px;}
.y7{bottom:935.759626px;}
.yd6{bottom:947.999621px;}
.y6c{bottom:949.259620px;}
.y80{bottom:950.519620px;}
.y23{bottom:953.039619px;}
.yee{bottom:958.979616px;}
.y6{bottom:977.159609px;}
.y6b{bottom:990.659604px;}
.y7f{bottom:991.919603px;}
.y22{bottom:994.439602px;}
.y9e{bottom:1000.379600px;}
.y5{bottom:1008.299597px;}
.y6a{bottom:1033.319587px;}
.y92{bottom:1034.579586px;}
.y21{bottom:1035.839586px;}
.y4{bottom:1041.959583px;}
.yc5{bottom:1074.719570px;}
.y69{bottom:1075.979570px;}
.y20{bottom:1077.239569px;}
.y3{bottom:1078.499569px;}
.ya7{bottom:1083.179567px;}
.y2{bottom:1115.219554px;}
.y68{bottom:1117.379553px;}
.y1f{bottom:1118.639553px;}
.h7{height:38.158578px;}
.h5{height:50.312792px;}
.h1{height:58.651148px;}
.h6{height:70.664034px;}
.h4{height:75.093720px;}
.h2{height:84.898091px;}
.h3{height:87.859652px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619949px;}
.x7{left:132.479947px;}
.x18{left:137.339945px;}
.x16{left:149.040845px;}
.x28{left:154.619432px;}
.x34{left:165.599934px;}
.x17{left:170.280148px;}
.x2e{left:174.419892px;}
.x35{left:178.919928px;}
.x29{left:181.619982px;}
.xa{left:185.759926px;}
.x8{left:191.879923px;}
.x9{left:198.539921px;}
.x14{left:209.159916px;}
.x6{left:212.760584px;}
.x15{left:222.479911px;}
.x33{left:228.059909px;}
.x2f{left:241.559903px;}
.x24{left:244.439902px;}
.x38{left:246.959901px;}
.x30{left:254.879898px;}
.x25{left:257.759897px;}
.x39{left:260.279896px;}
.x26{left:319.319872px;}
.xd{left:328.139869px;}
.x27{left:332.639867px;}
.xe{left:334.799866px;}
.x3{left:350.819860px;}
.x22{left:396.899841px;}
.x23{left:410.219836px;}
.x12{left:425.879830px;}
.x1f{left:430.379828px;}
.x13{left:432.539827px;}
.x1{left:434.159826px;}
.x3a{left:437.039825px;}
.x3c{left:438.839824px;}
.x3b{left:450.359820px;}
.x1d{left:460.079816px;}
.x31{left:466.919813px;}
.x1e{left:473.399811px;}
.x32{left:480.239808px;}
.xf{left:483.659807px;}
.x10{left:490.319804px;}
.x2a{left:497.519801px;}
.x2b{left:510.839796px;}
.x19{left:570.419772px;}
.x4{left:573.119771px;}
.x5{left:579.779768px;}
.x1a{left:583.739767px;}
.x1b{left:594.899762px;}
.x11{left:597.419761px;}
.xb{left:604.979758px;}
.x1c{left:608.219757px;}
.xc{left:611.639755px;}
.x36{left:655.559738px;}
.x37{left:668.879732px;}
.x2c{left:710.639716px;}
.x2d{left:723.959710px;}
.x20{left:730.079708px;}
.x21{left:743.399703px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003205pt;}
.ls7{letter-spacing:0.009381pt;}
.ls3{letter-spacing:0.009459pt;}
.ls5{letter-spacing:0.084800pt;}
.ls1{letter-spacing:0.138519pt;}
.ls4{letter-spacing:0.277156pt;}
.ls6{letter-spacing:0.277195pt;}
.ls8{letter-spacing:0.336457pt;}
.ws2{word-spacing:-18.069149pt;}
.ws1{word-spacing:-17.791993pt;}
.ws3{word-spacing:-11.920635pt;}
.ws4{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-2.327599pt;}
._1{margin-left:-0.955678pt;}
._2{width:0.970179pt;}
._a{width:2.016164pt;}
._6{width:3.309875pt;}
._5{width:4.355539pt;}
._c{width:5.933955pt;}
._b{width:6.958000pt;}
._11{width:7.979106pt;}
._10{width:8.928642pt;}
._1c{width:9.988988pt;}
._d{width:11.100973pt;}
._8{width:12.381284pt;}
._16{width:13.440642pt;}
._f{width:15.205575pt;}
._e{width:16.140602pt;}
._18{width:18.537677pt;}
._7{width:19.537907pt;}
._25{width:20.442115pt;}
._1a{width:21.622725pt;}
._19{width:22.721589pt;}
._28{width:23.839169pt;}
._0{width:25.282757pt;}
._4{width:26.318963pt;}
._3{width:27.709398pt;}
._2c{width:28.667651pt;}
._21{width:29.614880pt;}
._20{width:30.608087pt;}
._24{width:31.513308pt;}
._22{width:32.488446pt;}
._12{width:33.955618pt;}
._13{width:34.910240pt;}
._1b{width:36.003096pt;}
._32{width:37.256457pt;}
._23{width:38.484756pt;}
._17{width:39.494525pt;}
._15{width:40.674509pt;}
._14{width:41.939473pt;}
._2f{width:43.043887pt;}
._31{width:44.861030pt;}
._1d{width:46.870750pt;}
._2a{width:48.819104pt;}
._29{width:50.279166pt;}
._30{width:52.279100pt;}
._2b{width:53.750762pt;}
._1f{width:59.712660pt;}
._1e{width:60.851696pt;}
._2e{width:72.153623pt;}
._2d{width:73.288628pt;}
._27{width:75.144780pt;}
._26{width:76.131390pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:71.306905pt;}
.yc4{bottom:117.546620pt;}
.yd5{bottom:119.786619pt;}
.yed{bottom:120.586885pt;}
.yba{bottom:120.906618pt;}
.y55{bottom:124.426617pt;}
.yec{bottom:125.226883pt;}
.y1e{bottom:132.106614pt;}
.y38{bottom:132.586614pt;}
.y47{bottom:132.586880pt;}
.yc3{bottom:133.226613pt;}
.yd4{bottom:135.466612pt;}
.yb9{bottom:136.586612pt;}
.y46{bottom:137.226612pt;}
.y7e{bottom:137.866612pt;}
.y54{bottom:140.106611pt;}
.y37{bottom:148.266607pt;}
.yc2{bottom:148.906607pt;}
.yb8{bottom:152.266606pt;}
.y36{bottom:152.906606pt;}
.yc1{bottom:153.546605pt;}
.y53{bottom:155.786604pt;}
.yb7{bottom:156.906604pt;}
.y67{bottom:163.946601pt;}
.y45{bottom:164.266601pt;}
.y86{bottom:164.906601pt;}
.yd3{bottom:167.786600pt;}
.y1d{bottom:168.906599pt;}
.y52{bottom:171.466598pt;}
.y7d{bottom:174.666597pt;}
.y66{bottom:179.626595pt;}
.yb4{bottom:179.946595pt;}
.y35{bottom:180.586594pt;}
.yc0{bottom:181.226594pt;}
.y65{bottom:184.266593pt;}
.yb3{bottom:184.586593pt;}
.yeb{bottom:184.746593pt;}
.y51{bottom:187.146592pt;}
.y44{bottom:195.946588pt;}
.ye7{bottom:196.586588pt;}
.y43{bottom:200.586586pt;}
.y50{bottom:202.826586pt;}
.yd2{bottom:204.746585pt;}
.y1c{bottom:205.706584pt;}
.y64{bottom:211.306582pt;}
.y7c{bottom:211.466582pt;}
.yb2{bottom:212.266582pt;}
.yfd{bottom:214.186581pt;}
.y63{bottom:215.946580pt;}
.ybf{bottom:218.186579pt;}
.y4f{bottom:218.506579pt;}
.yb5{bottom:221.546578pt;}
.y4e{bottom:223.146577pt;}
.yb6{bottom:226.826576pt;}
.y42{bottom:227.626576pt;}
.y41{bottom:232.266574pt;}
.yd1{bottom:242.666570pt;}
.y62{bottom:243.626569pt;}
.y1b{bottom:246.826568pt;}
.y7b{bottom:248.266567pt;}
.ye6{bottom:249.386567pt;}
.y4d{bottom:250.826566pt;}
.yfc{bottom:250.986566pt;}
.y85{bottom:253.546565pt;}
.y91{bottom:253.866565pt;}
.ybe{bottom:256.106564pt;}
.y34{bottom:258.346563pt;}
.y40{bottom:259.306563pt;}
.yea{bottom:263.626561pt;}
.y3f{bottom:263.946561pt;}
.y1a{bottom:277.546556pt;}
.yd0{bottom:279.466555pt;}
.y9d{bottom:281.706554pt;}
.yde{bottom:282.826554pt;}
.y7a{bottom:285.066553pt;}
.ye5{bottom:286.186552pt;}
.yb1{bottom:286.986552pt;}
.y4b{bottom:287.786552pt;}
.y61{bottom:289.546551pt;}
.y90{bottom:290.666550pt;}
.y3e{bottom:290.986550pt;}
.ybd{bottom:292.906550pt;}
.y4c{bottom:293.066549pt;}
.y33{bottom:295.146549pt;}
.y3d{bottom:295.626548pt;}
.y19{bottom:305.226545pt;}
.ycf{bottom:317.386540pt;}
.y9c{bottom:318.506539pt;}
.ydd{bottom:319.626539pt;}
.y79{bottom:322.986537pt;}
.y3c{bottom:323.306537pt;}
.y49{bottom:324.586537pt;}
.y60{bottom:326.346536pt;}
.y8f{bottom:327.466536pt;}
.y4a{bottom:329.866535pt;}
.ybc{bottom:330.826534pt;}
.y32{bottom:331.946534pt;}
.y18{bottom:332.906534pt;}
.yce{bottom:354.186525pt;}
.yb0{bottom:355.306525pt;}
.y9b{bottom:356.426524pt;}
.ydc{bottom:357.546524pt;}
.y78{bottom:359.786523pt;}
.y17{bottom:360.586522pt;}
.yfb{bottom:361.386522pt;}
.y5f{bottom:363.146521pt;}
.y8e{bottom:365.386521pt;}
.y48{bottom:365.706520pt;}
.ybb{bottom:367.626520pt;}
.y31{bottom:368.746519pt;}
.y16{bottom:388.266511pt;}
.ycd{bottom:392.106510pt;}
.y9a{bottom:393.226509pt;}
.ydb{bottom:395.466508pt;}
.y77{bottom:396.586508pt;}
.yfa{bottom:398.186507pt;}
.y5e{bottom:399.946507pt;}
.y8d{bottom:402.186506pt;}
.y30{bottom:405.546504pt;}
.y3b{bottom:410.826502pt;}
.y15{bottom:415.946500pt;}
.ycc{bottom:430.026495pt;}
.y99{bottom:431.146494pt;}
.yda{bottom:433.386493pt;}
.y76{bottom:434.506493pt;}
.yf9{bottom:434.986493pt;}
.ya6{bottom:436.746492pt;}
.y5d{bottom:437.866492pt;}
.y8c{bottom:440.106491pt;}
.y2e{bottom:442.346490pt;}
.y14{bottom:443.626489pt;}
.y2f{bottom:447.626488pt;}
.yaf{bottom:467.946479pt;}
.y98{bottom:469.066479pt;}
.yd8{bottom:470.186479pt;}
.y13{bottom:471.306478pt;}
.yf8{bottom:471.786478pt;}
.ya5{bottom:473.546477pt;}
.y5c{bottom:474.666477pt;}
.yd9{bottom:475.466476pt;}
.y8b{bottom:476.906476pt;}
.y2d{bottom:479.146475pt;}
.y3a{bottom:484.426473pt;}
.y12{bottom:498.986467pt;}
.yae{bottom:505.866464pt;}
.y97{bottom:506.986464pt;}
.yf7{bottom:508.586463pt;}
.y75{bottom:509.226463pt;}
.ya4{bottom:510.346463pt;}
.y5b{bottom:511.466462pt;}
.y8a{bottom:513.706461pt;}
.y2c{bottom:515.946460pt;}
.y39{bottom:521.226458pt;}
.y11{bottom:526.666456pt;}
.yad{bottom:543.786449pt;}
.y96{bottom:544.906449pt;}
.yf6{bottom:545.386449pt;}
.y74{bottom:546.026448pt;}
.ya3{bottom:547.146448pt;}
.ye4{bottom:549.066447pt;}
.y5a{bottom:549.386447pt;}
.y89{bottom:551.626446pt;}
.y2b{bottom:552.746446pt;}
.y10{bottom:554.346445pt;}
.yac{bottom:580.586434pt;}
.ycb{bottom:581.706434pt;}
.yf{bottom:582.026434pt;}
.yf5{bottom:582.186434pt;}
.y73{bottom:582.826434pt;}
.y84{bottom:583.946433pt;}
.y59{bottom:587.306432pt;}
.y88{bottom:588.426431pt;}
.y2a{bottom:589.546431pt;}
.ye8{bottom:594.826429pt;}
.ye{bottom:609.706423pt;}
.ye2{bottom:617.386420pt;}
.yab{bottom:618.506419pt;}
.yf4{bottom:618.986419pt;}
.yca{bottom:619.626419pt;}
.y72{bottom:620.746418pt;}
.ya2{bottom:621.866418pt;}
.ye3{bottom:622.666418pt;}
.y58{bottom:625.226417pt;}
.y29{bottom:626.346416pt;}
.ye9{bottom:631.626414pt;}
.yd{bottom:637.386412pt;}
.yaa{bottom:655.306405pt;}
.yf3{bottom:655.786404pt;}
.yc9{bottom:656.426404pt;}
.y71{bottom:657.546404pt;}
.y83{bottom:658.666403pt;}
.y57{bottom:662.026402pt;}
.y95{bottom:662.826402pt;}
.y28{bottom:663.146401pt;}
.yc{bottom:665.066401pt;}
.y87{bottom:668.426399pt;}
.yf2{bottom:692.586390pt;}
.yb{bottom:692.746390pt;}
.ya9{bottom:693.226389pt;}
.y94{bottom:694.346389pt;}
.y70{bottom:695.466388pt;}
.ya1{bottom:696.586388pt;}
.y27{bottom:699.946387pt;}
.ya{bottom:720.426378pt;}
.yf1{bottom:729.386375pt;}
.ye1{bottom:730.026375pt;}
.ya8{bottom:731.146374pt;}
.y6f{bottom:732.266374pt;}
.y82{bottom:733.386373pt;}
.ya0{bottom:734.506373pt;}
.yd7{bottom:736.426372pt;}
.y26{bottom:736.746372pt;}
.y56{bottom:742.026370pt;}
.y9{bottom:757.706364pt;}
.yf0{bottom:766.186360pt;}
.ye0{bottom:766.826360pt;}
.yc7{bottom:767.946359pt;}
.y93{bottom:769.066359pt;}
.y6e{bottom:770.186359pt;}
.y9f{bottom:772.426358pt;}
.yc8{bottom:773.226357pt;}
.y25{bottom:773.546357pt;}
.y8{bottom:794.986349pt;}
.ydf{bottom:804.746345pt;}
.yc6{bottom:805.866344pt;}
.y6d{bottom:806.986344pt;}
.yef{bottom:807.306344pt;}
.y81{bottom:808.106343pt;}
.y24{bottom:810.346343pt;}
.y7{bottom:831.786334pt;}
.yd6{bottom:842.666330pt;}
.y6c{bottom:843.786329pt;}
.y80{bottom:844.906329pt;}
.y23{bottom:847.146328pt;}
.yee{bottom:852.426326pt;}
.y6{bottom:868.586319pt;}
.y6b{bottom:880.586314pt;}
.y7f{bottom:881.706314pt;}
.y22{bottom:883.946313pt;}
.y9e{bottom:889.226311pt;}
.y5{bottom:896.266308pt;}
.y6a{bottom:918.506299pt;}
.y92{bottom:919.626299pt;}
.y21{bottom:920.746298pt;}
.y4{bottom:926.186296pt;}
.yc5{bottom:955.306285pt;}
.y69{bottom:956.426284pt;}
.y20{bottom:957.546284pt;}
.y3{bottom:958.666283pt;}
.ya7{bottom:962.826282pt;}
.y2{bottom:991.306270pt;}
.y68{bottom:993.226269pt;}
.y1f{bottom:994.346269pt;}
.h7{height:33.918736pt;}
.h5{height:44.722482pt;}
.h1{height:52.134354pt;}
.h6{height:62.812475pt;}
.h4{height:66.749973pt;}
.h2{height:75.464970pt;}
.h3{height:78.097469pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439955pt;}
.x7{left:117.759953pt;}
.x18{left:122.079951pt;}
.x16{left:132.480751pt;}
.x28{left:137.439495pt;}
.x34{left:147.199941pt;}
.x17{left:151.360132pt;}
.x2e{left:155.039904pt;}
.x35{left:159.039936pt;}
.x29{left:161.439984pt;}
.xa{left:165.119934pt;}
.x8{left:170.559932pt;}
.x9{left:176.479929pt;}
.x14{left:185.919926pt;}
.x6{left:189.120519pt;}
.x15{left:197.759921pt;}
.x33{left:202.719919pt;}
.x2f{left:214.719914pt;}
.x24{left:217.279913pt;}
.x38{left:219.519912pt;}
.x30{left:226.559909pt;}
.x25{left:229.119908pt;}
.x39{left:231.359907pt;}
.x26{left:283.839886pt;}
.xd{left:291.679883pt;}
.x27{left:295.679882pt;}
.xe{left:297.599881pt;}
.x3{left:311.839875pt;}
.x22{left:352.799859pt;}
.x23{left:364.639854pt;}
.x12{left:378.559849pt;}
.x1f{left:382.559847pt;}
.x13{left:384.479846pt;}
.x1{left:385.919846pt;}
.x3a{left:388.479845pt;}
.x3c{left:390.079844pt;}
.x3b{left:400.319840pt;}
.x1d{left:408.959836pt;}
.x31{left:415.039834pt;}
.x1e{left:420.799832pt;}
.x32{left:426.879829pt;}
.xf{left:429.919828pt;}
.x10{left:435.839826pt;}
.x2a{left:442.239823pt;}
.x2b{left:454.079818pt;}
.x19{left:507.039797pt;}
.x4{left:509.439796pt;}
.x5{left:515.359794pt;}
.x1a{left:518.879792pt;}
.x1b{left:528.799788pt;}
.x11{left:531.039788pt;}
.xb{left:537.759785pt;}
.x1c{left:540.639784pt;}
.xc{left:543.679783pt;}
.x36{left:582.719767pt;}
.x37{left:594.559762pt;}
.x2c{left:631.679747pt;}
.x2d{left:643.519743pt;}
.x20{left:648.959740pt;}
.x21{left:660.799736pt;}
}




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