
    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_172837200728b8ef9d6a1a98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_2d483ffee546ec907a507fd0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7bc7d84253ed8f64a48eed65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_0bcb2e6965f2c9c7ea2aa63e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_82fed2fc333fb38557ef06ea.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f99892f665f30bdb381cbdbf.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94af71736149f6e652ee040f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.804291;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.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.m0{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.041498px;}
.lsa{letter-spacing:0.042673px;}
.ls6{letter-spacing:0.198298px;}
.ls4{letter-spacing:0.301773px;}
.ls9{letter-spacing:8.187734px;}
.ls8{letter-spacing:8.909113px;}
.ls3{letter-spacing:10.351753px;}
.ls7{letter-spacing:14.679791px;}
.ls5{letter-spacing:16.843810px;}
.ls2{letter-spacing:19.729209px;}
.ls0{letter-spacing:28.387565px;}
.lsc{letter-spacing:35.723669px;}
.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;}
}
.ws4{word-spacing:-33.902925px;}
.ws5{word-spacing:-33.704627px;}
.ws1{word-spacing:-14.043594px;}
.ws0{word-spacing:-12.689995px;}
.ws3{word-spacing:-11.336395px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-3.881091px;}
._9{margin-left:-2.591878px;}
._0{margin-left:-1.357757px;}
._1{width:1.002548px;}
._3{width:2.246545px;}
._4{width:3.455180px;}
._2{width:4.794384px;}
._7{width:6.456872px;}
._8{width:7.506271px;}
._17{width:8.588176px;}
._c{width:9.697119px;}
._d{width:11.530914px;}
._e{width:12.669523px;}
._2c{width:13.897184px;}
._a{width:14.917582px;}
._19{width:16.059491px;}
._6{width:17.105381px;}
._5{width:18.417671px;}
._b{width:19.708976px;}
._18{width:20.916589px;}
._11{width:22.164860px;}
._29{width:23.462559px;}
._1a{width:24.582862px;}
._1b{width:25.885775px;}
._f{width:27.400654px;}
._10{width:28.613942px;}
._12{width:30.415717px;}
._13{width:31.807945px;}
._24{width:33.081772px;}
._2a{width:34.185815px;}
._1e{width:35.595798px;}
._1f{width:36.691329px;}
._20{width:37.752747px;}
._14{width:39.252735px;}
._15{width:40.692629px;}
._16{width:41.752734px;}
._28{width:43.201522px;}
._26{width:47.385869px;}
._27{width:48.844906px;}
._25{width:49.904427px;}
._1c{width:59.401264px;}
._1d{width:60.411623px;}
._21{width:65.116032px;}
._22{width:66.732746px;}
._2d{width:74.453656px;}
._2b{width:957.689617px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:45.343422px;}
.fs5{font-size:45.345582px;}
.fs3{font-size:50.759980px;}
.fs1{font-size:56.174378px;}
.fs4{font-size:62.263175px;}
.fs2{font-size:135.359946px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.999978px;}
.y41{bottom:107.639957px;}
.ya5{bottom:115.019954px;}
.y102{bottom:115.739954px;}
.y5f{bottom:117.719953px;}
.yc9{bottom:118.259953px;}
.y40{bottom:123.839950px;}
.y83{bottom:125.279950px;}
.ya4{bottom:131.399947px;}
.y101{bottom:132.659947px;}
.yc8{bottom:133.739947px;}
.y5e{bottom:134.099946px;}
.y3f{bottom:140.219944px;}
.y82{bottom:140.579944px;}
.ya3{bottom:147.599941px;}
.y167{bottom:148.679941px;}
.yc7{bottom:149.039940px;}
.y100{bottom:149.579940px;}
.y5d{bottom:150.299940px;}
.y81{bottom:156.059938px;}
.ya2{bottom:163.799934px;}
.yc6{bottom:164.519934px;}
.y3e{bottom:164.699934px;}
.y12b{bottom:165.059934px;}
.y5c{bottom:166.499933px;}
.y166{bottom:168.659933px;}
.y80{bottom:171.359931px;}
.yc5{bottom:179.819928px;}
.ya1{bottom:179.999928px;}
.y3d{bottom:180.899928px;}
.y12a{bottom:181.259927px;}
.y165{bottom:181.439927px;}
.yff{bottom:183.419927px;}
.y7f{bottom:186.839925px;}
.y5b{bottom:191.159924px;}
.y164{bottom:194.039922px;}
.yc4{bottom:195.299922px;}
.ya0{bottom:196.199922px;}
.y3c{bottom:197.099921px;}
.y129{bottom:197.279921px;}
.yfe{bottom:200.339920px;}
.y7e{bottom:202.139919px;}
.y163{bottom:206.819917px;}
.y5a{bottom:207.539917px;}
.y9f{bottom:212.399915px;}
.y3b{bottom:213.479915px;}
.yc3{bottom:215.099914px;}
.yfd{bottom:217.259913px;}
.y7d{bottom:217.619913px;}
.y162{bottom:223.019911px;}
.y59{bottom:223.559911px;}
.y9e{bottom:228.599909px;}
.y3a{bottom:229.679908px;}
.y128{bottom:229.859908px;}
.y7c{bottom:233.099907px;}
.yfc{bottom:234.179906px;}
.y161{bottom:235.799906px;}
.y58{bottom:239.759904px;}
.y9d{bottom:244.799902px;}
.y39{bottom:245.879902px;}
.y127{bottom:246.059902px;}
.y160{bottom:248.399901px;}
.yfb{bottom:251.099900px;}
.yc2{bottom:255.779898px;}
.y57{bottom:255.959898px;}
.y7b{bottom:256.859897px;}
.y9c{bottom:261.179896px;}
.y38{bottom:262.079895px;}
.y126{bottom:262.259895px;}
.yfa{bottom:268.019893px;}
.yc1{bottom:272.159891px;}
.y56{bottom:272.339891px;}
.y15f{bottom:273.779890px;}
.y9b{bottom:277.379889px;}
.y37{bottom:278.279889px;}
.y125{bottom:278.459889px;}
.yf9{bottom:284.939886px;}
.y7a{bottom:287.639885px;}
.yc0{bottom:288.359885px;}
.y55{bottom:288.539885px;}
.y15e{bottom:289.979884px;}
.y9a{bottom:293.399883px;}
.y36{bottom:294.479882px;}
.y124{bottom:294.659882px;}
.yf8{bottom:301.859879px;}
.y15d{bottom:302.759879px;}
.y79{bottom:303.119879px;}
.ybf{bottom:304.559878px;}
.y54{bottom:304.739878px;}
.y35{bottom:310.679876px;}
.y123{bottom:310.859876px;}
.y99{bottom:313.919874px;}
.y15c{bottom:315.359874px;}
.y78{bottom:318.419873px;}
.yf7{bottom:318.779872px;}
.y53{bottom:320.759872px;}
.y34{bottom:326.879869px;}
.y122{bottom:327.059869px;}
.y15b{bottom:328.139869px;}
.y77{bottom:333.899866px;}
.yf6{bottom:335.699866px;}
.ybe{bottom:336.959865px;}
.y52{bottom:337.139865px;}
.y98{bottom:338.399865px;}
.y33{bottom:343.259863px;}
.y15a{bottom:344.339862px;}
.y76{bottom:349.379860px;}
.yf5{bottom:352.619859px;}
.ybd{bottom:353.159859px;}
.y51{bottom:353.339859px;}
.y97{bottom:353.879858px;}
.y159{bottom:357.119857px;}
.y32{bottom:359.459856px;}
.y75{bottom:364.859854px;}
.y96{bottom:369.179852px;}
.ybc{bottom:369.359852px;}
.y50{bottom:369.539852px;}
.y158{bottom:369.719852px;}
.y168{bottom:372.239851px;}
.y31{bottom:375.479850px;}
.y74{bottom:380.159848px;}
.y157{bottom:382.499847px;}
.y95{bottom:384.659846px;}
.ybb{bottom:385.559846px;}
.y4f{bottom:385.739846px;}
.y30{bottom:391.679843px;}
.yf4{bottom:394.379842px;}
.y73{bottom:395.639842px;}
.y156{bottom:398.699841px;}
.y94{bottom:399.959840px;}
.yba{bottom:401.939839px;}
.y2f{bottom:408.059837px;}
.yf3{bottom:409.859836px;}
.y4e{bottom:410.399836px;}
.y72{bottom:410.939836px;}
.y155{bottom:411.299835px;}
.y93{bottom:415.439834px;}
.yb9{bottom:418.139833px;}
.y154{bottom:424.079830px;}
.y2e{bottom:424.259830px;}
.y4d{bottom:426.599829px;}
.y71{bottom:431.999827px;}
.yf2{bottom:433.619827px;}
.y92{bottom:436.499825px;}
.y153{bottom:440.279824px;}
.y2d{bottom:440.459824px;}
.y104{bottom:441.719823px;}
.y4c{bottom:442.799823px;}
.yf1{bottom:449.099820px;}
.y103{bottom:452.339819px;}
.y152{bottom:453.059819px;}
.y2c{bottom:456.479817px;}
.y4b{bottom:458.999816px;}
.y70{bottom:459.539816px;}
.y91{bottom:464.039814px;}
.yf0{bottom:464.579814px;}
.y151{bottom:465.659814px;}
.y2b{bottom:472.859811px;}
.y4a{bottom:475.379810px;}
.y6f{bottom:475.919810px;}
.y150{bottom:478.439809px;}
.y90{bottom:479.339808px;}
.yef{bottom:479.879808px;}
.y2a{bottom:489.059804px;}
.y14f{bottom:491.039804px;}
.y49{bottom:491.579803px;}
.y6e{bottom:492.119803px;}
.y8f{bottom:494.819802px;}
.yee{bottom:495.359802px;}
.y14e{bottom:507.059797px;}
.y48{bottom:507.599797px;}
.y6d{bottom:508.319797px;}
.y8e{bottom:510.119796px;}
.yed{bottom:510.659796px;}
.y29{bottom:510.839796px;}
.y14d{bottom:519.839792px;}
.y47{bottom:523.799790px;}
.y6c{bottom:524.519790px;}
.y8d{bottom:525.599790px;}
.yec{bottom:526.139790px;}
.y14c{bottom:532.439787px;}
.y28{bottom:538.019785px;}
.y46{bottom:540.179784px;}
.y6b{bottom:540.899784px;}
.y14b{bottom:545.219782px;}
.yeb{bottom:549.899780px;}
.y27{bottom:552.599779px;}
.y45{bottom:556.379777px;}
.y6a{bottom:556.919777px;}
.yea{bottom:565.379774px;}
.y14a{bottom:566.819773px;}
.y8c{bottom:571.859771px;}
.y44{bottom:572.579771px;}
.y69{bottom:573.119771px;}
.ye9{bottom:580.679768px;}
.y26{bottom:581.219768px;}
.y8b{bottom:587.159765px;}
.y43{bottom:588.779764px;}
.y68{bottom:589.319764px;}
.y149{bottom:594.359762px;}
.y25{bottom:595.979762px;}
.ye8{bottom:596.159762px;}
.y8a{bottom:602.639759px;}
.y42{bottom:604.979758px;}
.y67{bottom:605.699758px;}
.y148{bottom:609.659756px;}
.y24{bottom:610.559756px;}
.ye7{bottom:611.459755px;}
.y89{bottom:617.939753px;}
.y66{bottom:621.899751px;}
.y147{bottom:625.139750px;}
.y23{bottom:625.319750px;}
.ye6{bottom:626.939749px;}
.y60{bottom:628.919748px;}
.y88{bottom:633.599747px;}
.y65{bottom:638.099745px;}
.y22{bottom:639.719744px;}
.y146{bottom:640.439744px;}
.y121{bottom:641.339743px;}
.ye5{bottom:642.419743px;}
.y87{bottom:648.899740px;}
.yb8{bottom:649.979740px;}
.y64{bottom:654.119738px;}
.y21{bottom:654.299738px;}
.y145{bottom:655.919738px;}
.ye4{bottom:657.719737px;}
.y120{bottom:658.259737px;}
.y86{bottom:664.379734px;}
.yb7{bottom:666.179734px;}
.y20{bottom:668.879732px;}
.y63{bottom:670.499732px;}
.y144{bottom:671.219732px;}
.ye3{bottom:673.199731px;}
.y11f{bottom:675.179730px;}
.yb6{bottom:682.379727px;}
.y1f{bottom:683.639727px;}
.y62{bottom:686.699725px;}
.y85{bottom:688.139725px;}
.ye2{bottom:688.499725px;}
.y11e{bottom:692.099723px;}
.y143{bottom:692.459723px;}
.y1e{bottom:698.219721px;}
.yb5{bottom:698.759720px;}
.y61{bottom:702.899719px;}
.y84{bottom:703.619719px;}
.ye1{bottom:703.979718px;}
.y11d{bottom:709.019716px;}
.y1d{bottom:712.799715px;}
.yb4{bottom:714.959714px;}
.ye0{bottom:719.279712px;}
.y142{bottom:719.999712px;}
.y11c{bottom:725.939710px;}
.y1c{bottom:727.199709px;}
.ya7{bottom:733.859706px;}
.ydf{bottom:734.759706px;}
.y141{bottom:736.199706px;}
.y106{bottom:741.059704px;}
.y1b{bottom:741.959703px;}
.y11b{bottom:742.859703px;}
.yde{bottom:750.059700px;}
.y105{bottom:751.679699px;}
.y140{bottom:752.399699px;}
.ya6{bottom:752.939699px;}
.y1a{bottom:756.539697px;}
.y11a{bottom:759.779696px;}
.ydd{bottom:765.719694px;}
.y13f{bottom:768.599693px;}
.y19{bottom:771.119692px;}
.y119{bottom:776.699689px;}
.ydc{bottom:781.019688px;}
.y13e{bottom:784.799686px;}
.y18{bottom:785.699686px;}
.y118{bottom:793.619683px;}
.y17{bottom:800.099680px;}
.ydb{bottom:800.639680px;}
.y13d{bottom:800.999680px;}
.y117{bottom:810.539676px;}
.y16{bottom:814.859674px;}
.y13c{bottom:817.379673px;}
.yda{bottom:825.299670px;}
.y116{bottom:827.459669px;}
.y15{bottom:829.439668px;}
.y13b{bottom:833.579667px;}
.yd9{bottom:840.599664px;}
.y14{bottom:844.019662px;}
.y115{bottom:844.379662px;}
.y13a{bottom:849.599660px;}
.yd8{bottom:856.079658px;}
.y13{bottom:858.599657px;}
.y114{bottom:861.299655px;}
.y139{bottom:865.799654px;}
.yd7{bottom:871.559651px;}
.y12{bottom:873.359651px;}
.y113{bottom:878.219649px;}
.y138{bottom:882.179647px;}
.yd6{bottom:887.039645px;}
.y11{bottom:887.759645px;}
.y112{bottom:895.139642px;}
.y137{bottom:898.379641px;}
.yd5{bottom:902.339639px;}
.y111{bottom:912.059635px;}
.y136{bottom:914.579634px;}
.yd4{bottom:917.819633px;}
.yb3{bottom:920.159632px;}
.y110{bottom:928.979628px;}
.y135{bottom:930.779628px;}
.yd{bottom:933.119627px;}
.y10{bottom:933.659627px;}
.ya{bottom:935.999626px;}
.yb2{bottom:936.359625px;}
.y10f{bottom:945.899622px;}
.y134{bottom:946.979621px;}
.yc{bottom:947.699621px;}
.yf{bottom:948.239621px;}
.y9{bottom:950.579620px;}
.yb1{bottom:952.739619px;}
.yd3{bottom:957.059617px;}
.yb{bottom:962.459615px;}
.ye{bottom:962.819615px;}
.y133{bottom:963.179615px;}
.y8{bottom:965.159614px;}
.yb0{bottom:968.939612px;}
.yd2{bottom:972.539611px;}
.y132{bottom:979.379608px;}
.y10e{bottom:979.739608px;}
.yaf{bottom:984.959606px;}
.yd1{bottom:987.839605px;}
.y131{bottom:995.579602px;}
.y10d{bottom:996.659601px;}
.y7{bottom:996.839601px;}
.yae{bottom:1001.159600px;}
.yd0{bottom:1004.399598px;}
.y6{bottom:1011.419595px;}
.y130{bottom:1011.959595px;}
.y10c{bottom:1013.579595px;}
.yad{bottom:1017.539593px;}
.ycf{bottom:1020.959592px;}
.y5{bottom:1025.819590px;}
.y12f{bottom:1028.159589px;}
.y10b{bottom:1030.499588px;}
.yac{bottom:1033.739587px;}
.yce{bottom:1036.439585px;}
.y4{bottom:1040.399584px;}
.y12e{bottom:1044.179582px;}
.y10a{bottom:1047.419581px;}
.yab{bottom:1049.939580px;}
.ycd{bottom:1051.739579px;}
.y12d{bottom:1060.379576px;}
.y109{bottom:1064.339574px;}
.yaa{bottom:1066.139574px;}
.ycc{bottom:1067.219573px;}
.y12c{bottom:1076.759569px;}
.y3{bottom:1079.279568px;}
.y108{bottom:1081.259567px;}
.ya9{bottom:1082.339567px;}
.ycb{bottom:1082.699567px;}
.y107{bottom:1098.179561px;}
.ya8{bottom:1098.539561px;}
.yca{bottom:1099.259560px;}
.y2{bottom:1118.339553px;}
.h9{height:31.196274px;}
.hb{height:31.197760px;}
.h1{height:34.007566px;}
.h6{height:34.821346px;}
.h4{height:34.922866px;}
.h8{height:35.481226px;}
.h7{height:38.069985px;}
.ha{height:38.535623px;}
.h2{height:38.647972px;}
.h5{height:42.837064px;}
.h3{height:93.127643px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:101.879959px;}
.x1b{left:102.959959px;}
.x6{left:107.099906px;}
.x23{left:111.419955px;}
.x8{left:115.919954px;}
.x15{left:122.040107px;}
.x1d{left:123.120422px;}
.xa{left:131.399882px;}
.x5{left:149.219940px;}
.x9{left:167.579933px;}
.x7{left:177.660362px;}
.x22{left:186.839925px;}
.x1c{left:196.739954px;}
.x24{left:199.619920px;}
.x29{left:211.859915px;}
.x16{left:219.599912px;}
.x3{left:223.739911px;}
.x17{left:243.539903px;}
.x20{left:262.619895px;}
.x2{left:302.399879px;}
.x4{left:328.499794px;}
.xf{left:397.079156px;}
.xb{left:401.759642px;}
.x21{left:412.019835px;}
.x28{left:413.279835px;}
.xd{left:421.919687px;}
.xc{left:448.379614px;}
.xe{left:458.459637px;}
.x1e{left:469.799823px;}
.x18{left:471.237727px;}
.x19{left:491.217734px;}
.x27{left:496.079793px;}
.x1a{left:517.139793px;}
.x25{left:585.719419px;}
.x26{left:606.419725px;}
.x11{left:640.979288px;}
.x10{left:674.639295px;}
.x13{left:675.899392px;}
.x12{left:687.059261px;}
.x14{left:698.399380px;}
.x1f{left:794.879682px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.036887pt;}
.lsa{letter-spacing:0.037932pt;}
.ls6{letter-spacing:0.176265pt;}
.ls4{letter-spacing:0.268243pt;}
.ls9{letter-spacing:7.277985pt;}
.ls8{letter-spacing:7.919212pt;}
.ls3{letter-spacing:9.201558pt;}
.ls7{letter-spacing:13.048703pt;}
.ls5{letter-spacing:14.972276pt;}
.ls2{letter-spacing:17.537075pt;}
.ls0{letter-spacing:25.233392pt;}
.lsc{letter-spacing:31.754372pt;}
.ws4{word-spacing:-30.135933pt;}
.ws5{word-spacing:-29.959668pt;}
.ws1{word-spacing:-12.483195pt;}
.ws0{word-spacing:-11.279995pt;}
.ws3{word-spacing:-10.076796pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-3.449859pt;}
._9{margin-left:-2.303891pt;}
._0{margin-left:-1.206895pt;}
._1{width:0.891154pt;}
._3{width:1.996929pt;}
._4{width:3.071271pt;}
._2{width:4.261675pt;}
._7{width:5.739442pt;}
._8{width:6.672241pt;}
._17{width:7.633934pt;}
._c{width:8.619661pt;}
._d{width:10.249701pt;}
._e{width:11.261798pt;}
._2c{width:12.353052pt;}
._a{width:13.260073pt;}
._19{width:14.275103pt;}
._6{width:15.204783pt;}
._5{width:16.371263pt;}
._b{width:17.519090pt;}
._18{width:18.592523pt;}
._11{width:19.702098pt;}
._29{width:20.855608pt;}
._1a{width:21.851433pt;}
._1b{width:23.009578pt;}
._f{width:24.356137pt;}
._10{width:25.434615pt;}
._12{width:27.036193pt;}
._13{width:28.273729pt;}
._24{width:29.406019pt;}
._2a{width:30.387391pt;}
._1e{width:31.640710pt;}
._1f{width:32.614515pt;}
._20{width:33.557997pt;}
._14{width:34.891320pt;}
._15{width:36.171225pt;}
._16{width:37.113541pt;}
._28{width:38.401353pt;}
._26{width:42.120773pt;}
._27{width:43.417695pt;}
._25{width:44.359490pt;}
._1c{width:52.801123pt;}
._1d{width:53.699220pt;}
._21{width:57.880918pt;}
._22{width:59.317997pt;}
._2d{width:66.181028pt;}
._2b{width:851.279659pt;}
.fs0{font-size:40.305264pt;}
.fs5{font-size:40.307184pt;}
.fs3{font-size:45.119982pt;}
.fs1{font-size:49.932780pt;}
.fs4{font-size:55.345045pt;}
.fs2{font-size:120.319952pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.999981pt;}
.y41{bottom:95.679962pt;}
.ya5{bottom:102.239959pt;}
.y102{bottom:102.879959pt;}
.y5f{bottom:104.639958pt;}
.yc9{bottom:105.119958pt;}
.y40{bottom:110.079956pt;}
.y83{bottom:111.359955pt;}
.ya4{bottom:116.799953pt;}
.y101{bottom:117.919953pt;}
.yc8{bottom:118.879952pt;}
.y5e{bottom:119.199952pt;}
.y3f{bottom:124.639950pt;}
.y82{bottom:124.959950pt;}
.ya3{bottom:131.199948pt;}
.y167{bottom:132.159947pt;}
.yc7{bottom:132.479947pt;}
.y100{bottom:132.959947pt;}
.y5d{bottom:133.599947pt;}
.y81{bottom:138.719945pt;}
.ya2{bottom:145.599942pt;}
.yc6{bottom:146.239942pt;}
.y3e{bottom:146.399941pt;}
.y12b{bottom:146.719941pt;}
.y5c{bottom:147.999941pt;}
.y166{bottom:149.919940pt;}
.y80{bottom:152.319939pt;}
.yc5{bottom:159.839936pt;}
.ya1{bottom:159.999936pt;}
.y3d{bottom:160.799936pt;}
.y12a{bottom:161.119936pt;}
.y165{bottom:161.279935pt;}
.yff{bottom:163.039935pt;}
.y7f{bottom:166.079934pt;}
.y5b{bottom:169.919932pt;}
.y164{bottom:172.479931pt;}
.yc4{bottom:173.599931pt;}
.ya0{bottom:174.399930pt;}
.y3c{bottom:175.199930pt;}
.y129{bottom:175.359930pt;}
.yfe{bottom:178.079929pt;}
.y7e{bottom:179.679928pt;}
.y163{bottom:183.839926pt;}
.y5a{bottom:184.479926pt;}
.y9f{bottom:188.799924pt;}
.y3b{bottom:189.759924pt;}
.yc3{bottom:191.199924pt;}
.yfd{bottom:193.119923pt;}
.y7d{bottom:193.439923pt;}
.y162{bottom:198.239921pt;}
.y59{bottom:198.719921pt;}
.y9e{bottom:203.199919pt;}
.y3a{bottom:204.159918pt;}
.y128{bottom:204.319918pt;}
.y7c{bottom:207.199917pt;}
.yfc{bottom:208.159917pt;}
.y161{bottom:209.599916pt;}
.y58{bottom:213.119915pt;}
.y9d{bottom:217.599913pt;}
.y39{bottom:218.559913pt;}
.y127{bottom:218.719913pt;}
.y160{bottom:220.799912pt;}
.yfb{bottom:223.199911pt;}
.yc2{bottom:227.359909pt;}
.y57{bottom:227.519909pt;}
.y7b{bottom:228.319909pt;}
.y9c{bottom:232.159907pt;}
.y38{bottom:232.959907pt;}
.y126{bottom:233.119907pt;}
.yfa{bottom:238.239905pt;}
.yc1{bottom:241.919903pt;}
.y56{bottom:242.079903pt;}
.y15f{bottom:243.359903pt;}
.y9b{bottom:246.559901pt;}
.y37{bottom:247.359901pt;}
.y125{bottom:247.519901pt;}
.yf9{bottom:253.279899pt;}
.y7a{bottom:255.679898pt;}
.yc0{bottom:256.319897pt;}
.y55{bottom:256.479897pt;}
.y15e{bottom:257.759897pt;}
.y9a{bottom:260.799896pt;}
.y36{bottom:261.759895pt;}
.y124{bottom:261.919895pt;}
.yf8{bottom:268.319893pt;}
.y15d{bottom:269.119892pt;}
.y79{bottom:269.439892pt;}
.ybf{bottom:270.719892pt;}
.y54{bottom:270.879892pt;}
.y35{bottom:276.159890pt;}
.y123{bottom:276.319889pt;}
.y99{bottom:279.039888pt;}
.y15c{bottom:280.319888pt;}
.y78{bottom:283.039887pt;}
.yf7{bottom:283.359887pt;}
.y53{bottom:285.119886pt;}
.y34{bottom:290.559884pt;}
.y122{bottom:290.719884pt;}
.y15b{bottom:291.679883pt;}
.y77{bottom:296.799881pt;}
.yf6{bottom:298.399881pt;}
.ybe{bottom:299.519880pt;}
.y52{bottom:299.679880pt;}
.y98{bottom:300.799880pt;}
.y33{bottom:305.119878pt;}
.y15a{bottom:306.079878pt;}
.y76{bottom:310.559876pt;}
.yf5{bottom:313.439875pt;}
.ybd{bottom:313.919874pt;}
.y51{bottom:314.079874pt;}
.y97{bottom:314.559874pt;}
.y159{bottom:317.439873pt;}
.y32{bottom:319.519872pt;}
.y75{bottom:324.319870pt;}
.y96{bottom:328.159869pt;}
.ybc{bottom:328.319869pt;}
.y50{bottom:328.479869pt;}
.y158{bottom:328.639869pt;}
.y168{bottom:330.879868pt;}
.y31{bottom:333.759866pt;}
.y74{bottom:337.919865pt;}
.y157{bottom:339.999864pt;}
.y95{bottom:341.919863pt;}
.ybb{bottom:342.719863pt;}
.y4f{bottom:342.879863pt;}
.y30{bottom:348.159861pt;}
.yf4{bottom:350.559860pt;}
.y73{bottom:351.679859pt;}
.y156{bottom:354.399858pt;}
.y94{bottom:355.519858pt;}
.yba{bottom:357.279857pt;}
.y2f{bottom:362.719855pt;}
.yf3{bottom:364.319854pt;}
.y4e{bottom:364.799854pt;}
.y72{bottom:365.279854pt;}
.y155{bottom:365.599854pt;}
.y93{bottom:369.279852pt;}
.yb9{bottom:371.679851pt;}
.y154{bottom:376.959849pt;}
.y2e{bottom:377.119849pt;}
.y4d{bottom:379.199848pt;}
.y71{bottom:383.999846pt;}
.yf2{bottom:385.439846pt;}
.y92{bottom:387.999845pt;}
.y153{bottom:391.359843pt;}
.y2d{bottom:391.519843pt;}
.y104{bottom:392.639843pt;}
.y4c{bottom:393.599843pt;}
.yf1{bottom:399.199840pt;}
.y103{bottom:402.079839pt;}
.y152{bottom:402.719839pt;}
.y2c{bottom:405.759838pt;}
.y4b{bottom:407.999837pt;}
.y70{bottom:408.479837pt;}
.y91{bottom:412.479835pt;}
.yf0{bottom:412.959835pt;}
.y151{bottom:413.919834pt;}
.y2b{bottom:420.319832pt;}
.y4a{bottom:422.559831pt;}
.y6f{bottom:423.039831pt;}
.y150{bottom:425.279830pt;}
.y90{bottom:426.079830pt;}
.yef{bottom:426.559829pt;}
.y2a{bottom:434.719826pt;}
.y14f{bottom:436.479825pt;}
.y49{bottom:436.959825pt;}
.y6e{bottom:437.439825pt;}
.y8f{bottom:439.839824pt;}
.yee{bottom:440.319824pt;}
.y14e{bottom:450.719820pt;}
.y48{bottom:451.199820pt;}
.y6d{bottom:451.839819pt;}
.y8e{bottom:453.439819pt;}
.yed{bottom:453.919818pt;}
.y29{bottom:454.079818pt;}
.y14d{bottom:462.079815pt;}
.y47{bottom:465.599814pt;}
.y6c{bottom:466.239814pt;}
.y8d{bottom:467.199813pt;}
.yec{bottom:467.679813pt;}
.y14c{bottom:473.279811pt;}
.y28{bottom:478.239809pt;}
.y46{bottom:480.159808pt;}
.y6b{bottom:480.799808pt;}
.y14b{bottom:484.639806pt;}
.yeb{bottom:488.799804pt;}
.y27{bottom:491.199804pt;}
.y45{bottom:494.559802pt;}
.y6a{bottom:495.039802pt;}
.yea{bottom:502.559799pt;}
.y14a{bottom:503.839798pt;}
.y8c{bottom:508.319797pt;}
.y44{bottom:508.959796pt;}
.y69{bottom:509.439796pt;}
.ye9{bottom:516.159794pt;}
.y26{bottom:516.639793pt;}
.y8b{bottom:521.919791pt;}
.y43{bottom:523.359791pt;}
.y68{bottom:523.839790pt;}
.y149{bottom:528.319789pt;}
.y25{bottom:529.759788pt;}
.ye8{bottom:529.919788pt;}
.y8a{bottom:535.679786pt;}
.y42{bottom:537.759785pt;}
.y67{bottom:538.399785pt;}
.y148{bottom:541.919783pt;}
.y24{bottom:542.719783pt;}
.ye7{bottom:543.519783pt;}
.y89{bottom:549.279780pt;}
.y66{bottom:552.799779pt;}
.y147{bottom:555.679778pt;}
.y23{bottom:555.839778pt;}
.ye6{bottom:557.279777pt;}
.y60{bottom:559.039776pt;}
.y88{bottom:563.199775pt;}
.y65{bottom:567.199773pt;}
.y22{bottom:568.639773pt;}
.y146{bottom:569.279772pt;}
.y121{bottom:570.079772pt;}
.ye5{bottom:571.039772pt;}
.y87{bottom:576.799769pt;}
.yb8{bottom:577.759769pt;}
.y64{bottom:581.439767pt;}
.y21{bottom:581.599767pt;}
.y145{bottom:583.039767pt;}
.ye4{bottom:584.639766pt;}
.y120{bottom:585.119766pt;}
.y86{bottom:590.559764pt;}
.yb7{bottom:592.159763pt;}
.y20{bottom:594.559762pt;}
.y63{bottom:595.999762pt;}
.y144{bottom:596.639761pt;}
.ye3{bottom:598.399761pt;}
.y11f{bottom:600.159760pt;}
.yb6{bottom:606.559757pt;}
.y1f{bottom:607.679757pt;}
.y62{bottom:610.399756pt;}
.y85{bottom:611.679755pt;}
.ye2{bottom:611.999755pt;}
.y11e{bottom:615.199754pt;}
.y143{bottom:615.519754pt;}
.y1e{bottom:620.639752pt;}
.yb5{bottom:621.119752pt;}
.y61{bottom:624.799750pt;}
.y84{bottom:625.439750pt;}
.ye1{bottom:625.759750pt;}
.y11d{bottom:630.239748pt;}
.y1d{bottom:633.599747pt;}
.yb4{bottom:635.519746pt;}
.ye0{bottom:639.359744pt;}
.y142{bottom:639.999744pt;}
.y11c{bottom:645.279742pt;}
.y1c{bottom:646.399741pt;}
.ya7{bottom:652.319739pt;}
.ydf{bottom:653.119739pt;}
.y141{bottom:654.399738pt;}
.y106{bottom:658.719737pt;}
.y1b{bottom:659.519736pt;}
.y11b{bottom:660.319736pt;}
.yde{bottom:666.719733pt;}
.y105{bottom:668.159733pt;}
.y140{bottom:668.799732pt;}
.ya6{bottom:669.279732pt;}
.y1a{bottom:672.479731pt;}
.y11a{bottom:675.359730pt;}
.ydd{bottom:680.639728pt;}
.y13f{bottom:683.199727pt;}
.y19{bottom:685.439726pt;}
.y119{bottom:690.399724pt;}
.ydc{bottom:694.239722pt;}
.y13e{bottom:697.599721pt;}
.y18{bottom:698.399721pt;}
.y118{bottom:705.439718pt;}
.y17{bottom:711.199716pt;}
.ydb{bottom:711.679715pt;}
.y13d{bottom:711.999715pt;}
.y117{bottom:720.479712pt;}
.y16{bottom:724.319710pt;}
.y13c{bottom:726.559709pt;}
.yda{bottom:733.599707pt;}
.y116{bottom:735.519706pt;}
.y15{bottom:737.279705pt;}
.y13b{bottom:740.959704pt;}
.yd9{bottom:747.199701pt;}
.y14{bottom:750.239700pt;}
.y115{bottom:750.559700pt;}
.y13a{bottom:755.199698pt;}
.yd8{bottom:760.959696pt;}
.y13{bottom:763.199695pt;}
.y114{bottom:765.599694pt;}
.y139{bottom:769.599692pt;}
.yd7{bottom:774.719690pt;}
.y12{bottom:776.319689pt;}
.y113{bottom:780.639688pt;}
.y138{bottom:784.159686pt;}
.yd6{bottom:788.479685pt;}
.y11{bottom:789.119684pt;}
.y112{bottom:795.679682pt;}
.y137{bottom:798.559681pt;}
.yd5{bottom:802.079679pt;}
.y111{bottom:810.719676pt;}
.y136{bottom:812.959675pt;}
.yd4{bottom:815.839674pt;}
.yb3{bottom:817.919673pt;}
.y110{bottom:825.759670pt;}
.y135{bottom:827.359669pt;}
.yd{bottom:829.439668pt;}
.y10{bottom:829.919668pt;}
.ya{bottom:831.999667pt;}
.yb2{bottom:832.319667pt;}
.y10f{bottom:840.799664pt;}
.y134{bottom:841.759663pt;}
.yc{bottom:842.399663pt;}
.yf{bottom:842.879663pt;}
.y9{bottom:844.959662pt;}
.yb1{bottom:846.879661pt;}
.yd3{bottom:850.719660pt;}
.yb{bottom:855.519658pt;}
.ye{bottom:855.839658pt;}
.y133{bottom:856.159658pt;}
.y8{bottom:857.919657pt;}
.yb0{bottom:861.279655pt;}
.yd2{bottom:864.479654pt;}
.y132{bottom:870.559652pt;}
.y10e{bottom:870.879652pt;}
.yaf{bottom:875.519650pt;}
.yd1{bottom:878.079649pt;}
.y131{bottom:884.959646pt;}
.y10d{bottom:885.919646pt;}
.y7{bottom:886.079646pt;}
.yae{bottom:889.919644pt;}
.yd0{bottom:892.799643pt;}
.y6{bottom:899.039640pt;}
.y130{bottom:899.519640pt;}
.y10c{bottom:900.959640pt;}
.yad{bottom:904.479638pt;}
.ycf{bottom:907.519637pt;}
.y5{bottom:911.839635pt;}
.y12f{bottom:913.919634pt;}
.y10b{bottom:915.999634pt;}
.yac{bottom:918.879632pt;}
.yce{bottom:921.279631pt;}
.y4{bottom:924.799630pt;}
.y12e{bottom:928.159629pt;}
.y10a{bottom:931.039628pt;}
.yab{bottom:933.279627pt;}
.ycd{bottom:934.879626pt;}
.y12d{bottom:942.559623pt;}
.y109{bottom:946.079622pt;}
.yaa{bottom:947.679621pt;}
.ycc{bottom:948.639621pt;}
.y12c{bottom:957.119617pt;}
.y3{bottom:959.359616pt;}
.y108{bottom:961.119616pt;}
.ya9{bottom:962.079615pt;}
.ycb{bottom:962.399615pt;}
.y107{bottom:976.159610pt;}
.ya8{bottom:976.479609pt;}
.yca{bottom:977.119609pt;}
.y2{bottom:994.079602pt;}
.h9{height:27.730022pt;}
.hb{height:27.731343pt;}
.h1{height:30.228948pt;}
.h6{height:30.952308pt;}
.h4{height:31.042548pt;}
.h8{height:31.538867pt;}
.h7{height:33.839986pt;}
.ha{height:34.253887pt;}
.h2{height:34.353753pt;}
.h5{height:38.077391pt;}
.h3{height:82.780127pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.559964pt;}
.x1b{left:91.519963pt;}
.x6{left:95.199916pt;}
.x23{left:99.039960pt;}
.x8{left:103.039959pt;}
.x15{left:108.480095pt;}
.x1d{left:109.440375pt;}
.xa{left:116.799895pt;}
.x5{left:132.639947pt;}
.x9{left:148.959940pt;}
.x7{left:157.920321pt;}
.x22{left:166.079934pt;}
.x1c{left:174.879959pt;}
.x24{left:177.439929pt;}
.x29{left:188.319925pt;}
.x16{left:195.199922pt;}
.x3{left:198.879920pt;}
.x17{left:216.479913pt;}
.x20{left:233.439907pt;}
.x2{left:268.799892pt;}
.x4{left:291.999817pt;}
.xf{left:352.959250pt;}
.xb{left:357.119682pt;}
.x21{left:366.239854pt;}
.x28{left:367.359853pt;}
.xd{left:375.039722pt;}
.xc{left:398.559657pt;}
.xe{left:407.519677pt;}
.x1e{left:417.599843pt;}
.x18{left:418.877980pt;}
.x19{left:436.637986pt;}
.x27{left:440.959816pt;}
.x1a{left:459.679816pt;}
.x25{left:520.639483pt;}
.x26{left:539.039756pt;}
.x11{left:569.759367pt;}
.x10{left:599.679374pt;}
.x13{left:600.799459pt;}
.x12{left:610.719344pt;}
.x14{left:620.799449pt;}
.x1f{left:706.559717pt;}
}




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