
    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_c35f98e16b384ad1c02fd277.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_dbf5214f904d3b8639183930.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_5b297331853d31fcb6c0c6cf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bc0dc724f76dbe39941121d6.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_6e6ec898913068ddfece8c62.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1c1d7dddfc04149195a0fabf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_22b999398cdae45af20fc28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_aec2b44f0954d72f766cab53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_7be549b125f3b8db812d968d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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:ffa;src:url('chunks/assets/font_34096026055d92571956ee30.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ee84701bc99bae1bf5d84c20.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,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);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.034440px;}
.ls4{letter-spacing:0.063360px;}
.ls9{letter-spacing:0.068906px;}
.ls0{letter-spacing:0.418320px;}
.ls1{letter-spacing:0.418463px;}
.lsb{letter-spacing:3.641504px;}
.ls7{letter-spacing:5.805478px;}
.lsa{letter-spacing:18.791426px;}
.ls8{letter-spacing:34.087306px;}
.ls5{letter-spacing:55.007378px;}
.ls2{letter-spacing:58.466027px;}
.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;}
}
.ws5{word-spacing:-28.943988px;}
.ws8{word-spacing:-18.068899px;}
.ws3{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.358457px;}
.ws1{word-spacing:-15.358314px;}
.ws0{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.410715px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-4.092497px;}
._3{margin-left:-2.935393px;}
._1{margin-left:-1.369955px;}
._0{width:1.152880px;}
._7{width:2.267834px;}
._12{width:3.530667px;}
._1c{width:4.544034px;}
._13{width:5.545325px;}
._c{width:6.590462px;}
._17{width:8.041944px;}
._18{width:9.221164px;}
._a{width:10.577912px;}
._b{width:12.449219px;}
._d{width:14.121164px;}
._19{width:15.182757px;}
._16{width:16.536533px;}
._6{width:19.060294px;}
._1b{width:20.145463px;}
._5{width:21.205775px;}
._10{width:22.250705px;}
._11{width:23.348719px;}
._8{width:24.579770px;}
._1e{width:26.265137px;}
._9{width:27.471668px;}
._f{width:29.269784px;}
._e{width:30.537566px;}
._1a{width:31.641585px;}
._14{width:33.190051px;}
._20{width:36.447835px;}
._21{width:37.541139px;}
._1f{width:43.939669px;}
._2b{width:48.661664px;}
._2e{width:53.759364px;}
._2f{width:54.905656px;}
._1d{width:56.818574px;}
._2{width:58.465993px;}
._4{width:60.711279px;}
._29{width:69.953099px;}
._2a{width:70.958501px;}
._27{width:88.116318px;}
._26{width:89.373206px;}
._23{width:94.453158px;}
._25{width:97.390808px;}
._28{width:105.678046px;}
._2d{width:120.700855px;}
._22{width:173.213331px;}
._24{width:198.413201px;}
._2c{width:223.832737px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fcd{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(0,101,204);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs4{font-size:107.999957px;}
.y4{bottom:-15.119994px;}
.y48{bottom:-3.420081px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.059937px;}
.ya{bottom:3.599980px;}
.y28{bottom:3.959760px;}
.y24{bottom:4.319583px;}
.yb{bottom:28.619989px;}
.y9{bottom:47.520000px;}
.y6{bottom:50.039980px;}
.y8{bottom:51.119980px;}
.y7{bottom:52.199979px;}
.yaa{bottom:132.119947px;}
.y8e{bottom:134.279946px;}
.y127{bottom:135.359946px;}
.y1c{bottom:136.439945px;}
.ybe{bottom:138.059945px;}
.yff{bottom:144.719942px;}
.y96{bottom:145.979942px;}
.ya9{bottom:152.819939px;}
.y33{bottom:153.900000px;}
.y163{bottom:154.619938px;}
.y8d{bottom:154.979938px;}
.y126{bottom:156.419937px;}
.y73{bottom:157.499937px;}
.yd1{bottom:157.679937px;}
.ybd{bottom:158.759936px;}
.y114{bottom:159.299936px;}
.ye2{bottom:160.019936px;}
.y95{bottom:162.719935px;}
.y83{bottom:164.879934px;}
.yfe{bottom:165.419934px;}
.ya8{bottom:173.519931px;}
.y162{bottom:175.319930px;}
.y8c{bottom:175.679930px;}
.y125{bottom:177.659929px;}
.y144{bottom:178.019929px;}
.y72{bottom:178.199929px;}
.y32{bottom:178.379929px;}
.ybc{bottom:179.459928px;}
.y113{bottom:179.999928px;}
.ye1{bottom:180.719928px;}
.y82{bottom:185.579926px;}
.yfd{bottom:186.119926px;}
.ya7{bottom:194.219922px;}
.y161{bottom:196.019922px;}
.y8b{bottom:196.379921px;}
.y124{bottom:198.719921px;}
.y71{bottom:198.899920px;}
.yd0{bottom:199.079920px;}
.ybb{bottom:200.159920px;}
.y112{bottom:200.699920px;}
.ye0{bottom:201.419919px;}
.y81{bottom:202.319919px;}
.y47{bottom:206.460000px;}
.yfc{bottom:206.819917px;}
.ya6{bottom:210.959916px;}
.y160{bottom:216.719913px;}
.y8a{bottom:217.079913px;}
.y46{bottom:219.239912px;}
.y143{bottom:219.419912px;}
.y70{bottom:219.599912px;}
.ycf{bottom:219.779912px;}
.y123{bottom:219.959912px;}
.yba{bottom:220.859912px;}
.y111{bottom:221.399911px;}
.ydf{bottom:222.119911px;}
.yfb{bottom:227.519909px;}
.y45{bottom:236.519905px;}
.y15f{bottom:237.419905px;}
.y89{bottom:237.779905px;}
.y6f{bottom:240.299904px;}
.yce{bottom:240.479904px;}
.y122{bottom:241.019904px;}
.yb9{bottom:241.559903px;}
.y110{bottom:242.099903px;}
.yde{bottom:242.819903px;}
.yfa{bottom:248.219901px;}
.y44{bottom:253.799898px;}
.y142{bottom:258.119897px;}
.y88{bottom:258.479897px;}
.y6e{bottom:260.999896px;}
.ycd{bottom:261.179896px;}
.yb8{bottom:262.259895px;}
.y10f{bottom:262.799895px;}
.ydd{bottom:263.519895px;}
.y43{bottom:271.619891px;}
.y141{bottom:278.819888px;}
.y87{bottom:279.179888px;}
.yf9{bottom:280.799888px;}
.y6d{bottom:281.699887px;}
.ycc{bottom:281.879887px;}
.yb7{bottom:282.959887px;}
.y121{bottom:283.319887px;}
.y10e{bottom:283.499887px;}
.ydc{bottom:284.219886px;}
.y86{bottom:295.919882px;}
.yf8{bottom:301.499879px;}
.y6c{bottom:302.399879px;}
.ycb{bottom:302.579879px;}
.yb6{bottom:303.659879px;}
.y10d{bottom:304.199878px;}
.y120{bottom:304.559878px;}
.ydb{bottom:304.919878px;}
.y42{bottom:305.639878px;}
.y15e{bottom:308.519877px;}
.y140{bottom:317.519873px;}
.y41{bottom:322.199871px;}
.y6b{bottom:323.099871px;}
.yb5{bottom:324.359870px;}
.y10c{bottom:324.899870px;}
.yda{bottom:325.619870px;}
.y15d{bottom:329.219868px;}
.yca{bottom:335.339866px;}
.y13f{bottom:338.219865px;}
.y40{bottom:342.899863px;}
.y6a{bottom:343.799862px;}
.yb4{bottom:345.059862px;}
.y10b{bottom:345.599862px;}
.yd9{bottom:346.319861px;}
.y11f{bottom:346.859861px;}
.y15c{bottom:349.919860px;}
.yc9{bottom:356.039858px;}
.yf7{bottom:363.599855px;}
.y69{bottom:364.499854px;}
.y31{bottom:365.399854px;}
.yb3{bottom:365.759854px;}
.yd8{bottom:367.019853px;}
.y11e{bottom:367.919853px;}
.y15b{bottom:370.619852px;}
.y3f{bottom:372.599851px;}
.yc8{bottom:372.779851px;}
.y13e{bottom:376.919849px;}
.y10a{bottom:378.359849px;}
.yf6{bottom:384.299846px;}
.y68{bottom:385.199846px;}
.yb2{bottom:386.459845px;}
.yd7{bottom:387.719845px;}
.y11d{bottom:389.159844px;}
.y15a{bottom:391.319843px;}
.y3e{bottom:393.299843px;}
.y13d{bottom:397.619841px;}
.yf5{bottom:404.999838px;}
.y67{bottom:405.899838px;}
.yb1{bottom:407.159837px;}
.y30{bottom:407.339837px;}
.yd6{bottom:408.419837px;}
.y11c{bottom:410.219836px;}
.y3d{bottom:413.999834px;}
.y109{bottom:417.059833px;}
.y159{bottom:420.839832px;}
.y2f{bottom:421.019832px;}
.yf4{bottom:425.699830px;}
.y66{bottom:426.599829px;}
.yb0{bottom:427.859829px;}
.yd5{bottom:429.119828px;}
.y11b{bottom:431.459827px;}
.y2e{bottom:434.519826px;}
.y3c{bottom:434.699826px;}
.y13c{bottom:436.139826px;}
.y108{bottom:437.759825px;}
.y158{bottom:441.539823px;}
.yf3{bottom:446.399821px;}
.y2d{bottom:447.119821px;}
.y65{bottom:447.299821px;}
.yaf{bottom:448.559821px;}
.yd4{bottom:449.819820px;}
.y11a{bottom:452.519819px;}
.y3b{bottom:455.399818px;}
.y13b{bottom:456.839817px;}
.y107{bottom:458.459817px;}
.y157{bottom:462.239815px;}
.yf2{bottom:467.099813px;}
.y64{bottom:467.999813px;}
.yae{bottom:469.259812px;}
.y94{bottom:470.339812px;}
.yd3{bottom:470.519812px;}
.y3a{bottom:476.099810px;}
.y106{bottom:479.159808px;}
.y119{bottom:482.219807px;}
.y156{bottom:482.939807px;}
.y2c{bottom:487.799805px;}
.y63{bottom:488.699805px;}
.yad{bottom:489.959804px;}
.y93{bottom:491.039804px;}
.yd2{bottom:491.219804px;}
.y13a{bottom:495.539802px;}
.y39{bottom:496.799801px;}
.y105{bottom:499.859800px;}
.y118{bottom:502.919799px;}
.y155{bottom:503.639799px;}
.y92{bottom:507.779797px;}
.yf1{bottom:508.499797px;}
.y62{bottom:509.399796px;}
.yac{bottom:510.659796px;}
.ya5{bottom:511.919795px;}
.y139{bottom:516.239794px;}
.y38{bottom:517.499793px;}
.y104{bottom:520.559792px;}
.y117{bottom:523.619791px;}
.yab{bottom:527.399789px;}
.y2b{bottom:528.659789px;}
.yf0{bottom:529.199788px;}
.y61{bottom:530.099788px;}
.ya4{bottom:532.619787px;}
.y154{bottom:533.339787px;}
.y138{bottom:536.939785px;}
.y37{bottom:538.199785px;}
.y103{bottom:541.259783px;}
.y2a{bottom:542.519783px;}
.y116{bottom:544.319782px;}
.yef{bottom:549.899780px;}
.y60{bottom:550.799780px;}
.ya3{bottom:553.319779px;}
.y153{bottom:554.039778px;}
.y36{bottom:558.899776px;}
.y102{bottom:561.959775px;}
.y115{bottom:565.019774px;}
.yee{bottom:570.599772px;}
.y5f{bottom:572.759771px;}
.ya2{bottom:574.019770px;}
.y29{bottom:574.739770px;}
.y137{bottom:575.639770px;}
.y35{bottom:579.599768px;}
.y101{bottom:582.659767px;}
.y85{bottom:585.539766px;}
.yed{bottom:591.299763px;}
.y152{bottom:592.739763px;}
.ya1{bottom:594.539762px;}
.y5e{bottom:594.719762px;}
.y136{bottom:596.339761px;}
.y27{bottom:596.340000px;}
.y26{bottom:600.299760px;}
.y100{bottom:603.359759px;}
.y84{bottom:606.239758px;}
.y151{bottom:613.439755px;}
.ya0{bottom:615.239754px;}
.y5d{bottom:616.679753px;}
.y25{bottom:620.999752px;}
.yec{bottom:624.059750px;}
.y80{bottom:626.939749px;}
.y135{bottom:635.039746px;}
.y9f{bottom:635.939746px;}
.y5c{bottom:637.379745px;}
.yeb{bottom:644.759742px;}
.y7f{bottom:647.639741px;}
.y150{bottom:652.139739px;}
.y1b{bottom:653.399739px;}
.y134{bottom:655.739738px;}
.y9e{bottom:656.639737px;}
.y5b{bottom:659.339736px;}
.yea{bottom:665.459734px;}
.y7e{bottom:668.339733px;}
.y1a{bottom:674.099730px;}
.y133{bottom:676.439729px;}
.y9d{bottom:677.339729px;}
.y5a{bottom:680.039728px;}
.ye9{bottom:686.159726px;}
.y7d{bottom:689.039724px;}
.y14f{bottom:690.839724px;}
.y19{bottom:694.799722px;}
.y9c{bottom:698.039721px;}
.y59{bottom:700.739720px;}
.ye8{bottom:706.859717px;}
.y7c{bottom:709.739716px;}
.y14e{bottom:711.539715px;}
.y132{bottom:715.139714px;}
.y18{bottom:715.499714px;}
.y9b{bottom:718.739713px;}
.y17{bottom:722.339711px;}
.ye7{bottom:727.559709px;}
.y58{bottom:730.439708px;}
.y131{bottom:735.839706px;}
.y9a{bottom:739.439704px;}
.y16{bottom:745.199702px;}
.ye6{bottom:748.259701px;}
.y14d{bottom:750.239700px;}
.y57{bottom:751.139700px;}
.y99{bottom:760.139696px;}
.y15{bottom:765.899694px;}
.yc7{bottom:768.959692px;}
.y14c{bottom:770.939692px;}
.y56{bottom:771.839691px;}
.y130{bottom:774.539690px;}
.y98{bottom:780.839688px;}
.y14{bottom:786.599685px;}
.yc6{bottom:789.659684px;}
.y55{bottom:792.539683px;}
.y13{bottom:793.439683px;}
.y12f{bottom:795.239682px;}
.y97{bottom:801.539679px;}
.y14b{bottom:809.639676px;}
.yc5{bottom:810.359676px;}
.y54{bottom:813.239675px;}
.y12{bottom:816.299673px;}
.y91{bottom:822.239671px;}
.y14a{bottom:830.339668px;}
.yc4{bottom:831.059668px;}
.y53{bottom:833.939666px;}
.y11{bottom:836.999665px;}
.y90{bottom:842.939663px;}
.yc3{bottom:851.759659px;}
.y52{bottom:854.639658px;}
.y10{bottom:857.699657px;}
.y8f{bottom:863.639655px;}
.yf{bottom:864.539654px;}
.y149{bottom:869.039652px;}
.yc2{bottom:872.459651px;}
.y51{bottom:875.339650px;}
.y7b{bottom:884.339646px;}
.yd{bottom:887.399645px;}
.y148{bottom:889.739644px;}
.yc1{bottom:893.159643px;}
.ye{bottom:893.339643px;}
.y50{bottom:896.039642px;}
.y7a{bottom:905.039638px;}
.yc0{bottom:913.859634px;}
.y4f{bottom:916.739633px;}
.yc{bottom:918.899632px;}
.y12e{bottom:923.039631px;}
.y79{bottom:925.739630px;}
.y147{bottom:928.439629px;}
.ybf{bottom:934.559626px;}
.y4e{bottom:937.439625px;}
.y12d{bottom:944.279622px;}
.y78{bottom:946.439621px;}
.y146{bottom:949.139620px;}
.ye5{bottom:955.259618px;}
.y4d{bottom:958.139617px;}
.y22{bottom:959.939616px;}
.y1d{bottom:964.439614px;}
.y12c{bottom:965.519614px;}
.y77{bottom:967.139613px;}
.y145{bottom:969.839612px;}
.ye4{bottom:975.959610px;}
.y21{bottom:977.219609px;}
.y4c{bottom:978.839608px;}
.y12b{bottom:986.579605px;}
.y76{bottom:987.839605px;}
.y20{bottom:994.499602px;}
.ye3{bottom:996.659601px;}
.y4b{bottom:999.539600px;}
.y12a{bottom:1007.819597px;}
.y75{bottom:1008.539597px;}
.y4a{bottom:1020.239592px;}
.y1f{bottom:1021.499591px;}
.y129{bottom:1028.879588px;}
.y74{bottom:1029.239588px;}
.y23{bottom:1037.880000px;}
.y1e{bottom:1042.199583px;}
.y49{bottom:1049.939580px;}
.y128{bottom:1050.119580px;}
.y5{bottom:1106.459557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.080000px;}
.h13{height:9.360000px;}
.h11{height:15.120000px;}
.h6{height:16.920000px;}
.he{height:20.160000px;}
.hc{height:20.520000px;}
.ha{height:32.693893px;}
.h10{height:32.717448px;}
.hf{height:35.143580px;}
.h14{height:35.991197px;}
.h4{height:36.597642px;}
.h7{height:39.830258px;}
.hb{height:40.501390px;}
.h5{height:42.233538px;}
.h12{height:43.536076px;}
.hd{height:47.276348px;}
.h9{height:48.796855px;}
.h1{height:52.319159px;}
.h2{height:63.035131px;}
.h8{height:73.195283px;}
.h0{height:1188.000000px;}
.w3{width:4.320000px;}
.w5{width:6.840000px;}
.w2{width:7.200000px;}
.w6{width:7.920000px;}
.w1{width:8.100000px;}
.w4{width:9.000000px;}
.w0{width:918.000000px;}
.x24{left:-4.680252px;}
.x0{left:0.000000px;}
.x5{left:75.599970px;}
.x2d{left:90.899964px;}
.x2a{left:92.879963px;}
.x6{left:101.159960px;}
.x30{left:104.219958px;}
.x2c{left:106.199871px;}
.x2b{left:109.799956px;}
.x25{left:112.859955px;}
.x2f{left:125.099950px;}
.x26{left:132.119990px;}
.x1{left:134.999946px;}
.x2e{left:141.119944px;}
.x32{left:153.900000px;}
.x35{left:161.999867px;}
.x2{left:165.779934px;}
.x3{left:170.279932px;}
.x27{left:175.679930px;}
.x28{left:179.280000px;}
.x36{left:188.999877px;}
.x1b{left:215.819312px;}
.x31{left:216.899913px;}
.x3b{left:222.118406px;}
.x29{left:234.179906px;}
.xb{left:235.619906px;}
.x1d{left:243.539903px;}
.x14{left:246.059902px;}
.x15{left:252.179899px;}
.x33{left:253.260884px;}
.x34{left:256.679897px;}
.x20{left:319.499831px;}
.xa{left:321.659871px;}
.x1e{left:325.439867px;}
.x41{left:326.519367px;}
.x11{left:328.139869px;}
.x37{left:331.379065px;}
.x3e{left:339.298075px;}
.x3d{left:340.917668px;}
.x39{left:341.999902px;}
.x12{left:349.199909px;}
.x17{left:360.539493px;}
.x7{left:368.279853px;}
.x18{left:369.899852px;}
.x13{left:371.879848px;}
.x19{left:376.019850px;}
.x16{left:387.179502px;}
.x1a{left:389.519840px;}
.x1f{left:393.479843px;}
.x21{left:404.099838px;}
.xc{left:408.239837px;}
.xd{left:414.359834px;}
.x1c{left:458.999153px;}
.x22{left:506.159798px;}
.xe{left:508.679797px;}
.xf{left:514.799794px;}
.x23{left:633.960000px;}
.x4{left:657.899737px;}
.x10{left:676.259729px;}
.x3a{left:768.058946px;}
.x3c{left:775.077662px;}
.x40{left:776.159730px;}
.x38{left:780.660281px;}
.x8{left:784.619686px;}
.x3f{left:792.360222px;}
.x9{left:807.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.030613pt;}
.ls4{letter-spacing:0.056320pt;}
.ls9{letter-spacing:0.061250pt;}
.ls0{letter-spacing:0.371840pt;}
.ls1{letter-spacing:0.371967pt;}
.lsb{letter-spacing:3.236893pt;}
.ls7{letter-spacing:5.160425pt;}
.lsa{letter-spacing:16.703490pt;}
.ls8{letter-spacing:30.299828pt;}
.ls5{letter-spacing:48.895447pt;}
.ls2{letter-spacing:51.969802pt;}
.ws5{word-spacing:-25.727990pt;}
.ws8{word-spacing:-16.061243pt;}
.ws3{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.651961pt;}
.ws1{word-spacing:-13.651835pt;}
.ws0{word-spacing:-13.279995pt;}
.ws4{word-spacing:-11.920635pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-3.637775pt;}
._3{margin-left:-2.609238pt;}
._1{margin-left:-1.217738pt;}
._0{width:1.024783pt;}
._7{width:2.015852pt;}
._12{width:3.138371pt;}
._1c{width:4.039142pt;}
._13{width:4.929178pt;}
._c{width:5.858189pt;}
._17{width:7.148395pt;}
._18{width:8.196590pt;}
._a{width:9.402588pt;}
._b{width:11.065972pt;}
._d{width:12.552145pt;}
._19{width:13.495784pt;}
._16{width:14.699141pt;}
._6{width:16.942484pt;}
._1b{width:17.907078pt;}
._5{width:18.849578pt;}
._10{width:19.778405pt;}
._11{width:20.754417pt;}
._8{width:21.848684pt;}
._1e{width:23.346788pt;}
._9{width:24.419261pt;}
._f{width:26.017586pt;}
._e{width:27.144503pt;}
._1a{width:28.125853pt;}
._14{width:29.502268pt;}
._20{width:32.398075pt;}
._21{width:33.369902pt;}
._1f{width:39.057484pt;}
._2b{width:43.254812pt;}
._2e{width:47.786101pt;}
._2f{width:48.805027pt;}
._1d{width:50.505399pt;}
._2{width:51.969771pt;}
._4{width:53.965582pt;}
._29{width:62.180533pt;}
._2a{width:63.074223pt;}
._27{width:78.325616pt;}
._26{width:79.442850pt;}
._23{width:83.958363pt;}
._25{width:86.569607pt;}
._28{width:93.936041pt;}
._2d{width:107.289649pt;}
._22{width:153.967405pt;}
._24{width:176.367289pt;}
._2c{width:198.962432pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs4{font-size:95.999962pt;}
.y4{bottom:-13.439995pt;}
.y48{bottom:-3.040072pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.719944pt;}
.ya{bottom:3.199982pt;}
.y28{bottom:3.519787pt;}
.y24{bottom:3.839629pt;}
.yb{bottom:25.439990pt;}
.y9{bottom:42.240000pt;}
.y6{bottom:44.479982pt;}
.y8{bottom:45.439982pt;}
.y7{bottom:46.399981pt;}
.yaa{bottom:117.439953pt;}
.y8e{bottom:119.359952pt;}
.y127{bottom:120.319952pt;}
.y1c{bottom:121.279951pt;}
.ybe{bottom:122.719951pt;}
.yff{bottom:128.639949pt;}
.y96{bottom:129.759948pt;}
.ya9{bottom:135.839946pt;}
.y33{bottom:136.800000pt;}
.y163{bottom:137.439945pt;}
.y8d{bottom:137.759945pt;}
.y126{bottom:139.039944pt;}
.y73{bottom:139.999944pt;}
.yd1{bottom:140.159944pt;}
.ybd{bottom:141.119944pt;}
.y114{bottom:141.599943pt;}
.ye2{bottom:142.239943pt;}
.y95{bottom:144.639942pt;}
.y83{bottom:146.559941pt;}
.yfe{bottom:147.039941pt;}
.ya8{bottom:154.239938pt;}
.y162{bottom:155.839938pt;}
.y8c{bottom:156.159938pt;}
.y125{bottom:157.919937pt;}
.y144{bottom:158.239937pt;}
.y72{bottom:158.399937pt;}
.y32{bottom:158.559937pt;}
.ybc{bottom:159.519936pt;}
.y113{bottom:159.999936pt;}
.ye1{bottom:160.639936pt;}
.y82{bottom:164.959934pt;}
.yfd{bottom:165.439934pt;}
.ya7{bottom:172.639931pt;}
.y161{bottom:174.239930pt;}
.y8b{bottom:174.559930pt;}
.y124{bottom:176.639929pt;}
.y71{bottom:176.799929pt;}
.yd0{bottom:176.959929pt;}
.ybb{bottom:177.919929pt;}
.y112{bottom:178.399929pt;}
.ye0{bottom:179.039928pt;}
.y81{bottom:179.839928pt;}
.y47{bottom:183.520000pt;}
.yfc{bottom:183.839926pt;}
.ya6{bottom:187.519925pt;}
.y160{bottom:192.639923pt;}
.y8a{bottom:192.959923pt;}
.y46{bottom:194.879922pt;}
.y143{bottom:195.039922pt;}
.y70{bottom:195.199922pt;}
.ycf{bottom:195.359922pt;}
.y123{bottom:195.519922pt;}
.yba{bottom:196.319921pt;}
.y111{bottom:196.799921pt;}
.ydf{bottom:197.439921pt;}
.yfb{bottom:202.239919pt;}
.y45{bottom:210.239916pt;}
.y15f{bottom:211.039916pt;}
.y89{bottom:211.359915pt;}
.y6f{bottom:213.599915pt;}
.yce{bottom:213.759914pt;}
.y122{bottom:214.239914pt;}
.yb9{bottom:214.719914pt;}
.y110{bottom:215.199914pt;}
.yde{bottom:215.839914pt;}
.yfa{bottom:220.639912pt;}
.y44{bottom:225.599910pt;}
.y142{bottom:229.439908pt;}
.y88{bottom:229.759908pt;}
.y6e{bottom:231.999907pt;}
.ycd{bottom:232.159907pt;}
.yb8{bottom:233.119907pt;}
.y10f{bottom:233.599907pt;}
.ydd{bottom:234.239906pt;}
.y43{bottom:241.439903pt;}
.y141{bottom:247.839901pt;}
.y87{bottom:248.159901pt;}
.yf9{bottom:249.599900pt;}
.y6d{bottom:250.399900pt;}
.ycc{bottom:250.559900pt;}
.yb7{bottom:251.519899pt;}
.y121{bottom:251.839899pt;}
.y10e{bottom:251.999899pt;}
.ydc{bottom:252.639899pt;}
.y86{bottom:263.039895pt;}
.yf8{bottom:267.999893pt;}
.y6c{bottom:268.799892pt;}
.ycb{bottom:268.959892pt;}
.yb6{bottom:269.919892pt;}
.y10d{bottom:270.399892pt;}
.y120{bottom:270.719892pt;}
.ydb{bottom:271.039892pt;}
.y42{bottom:271.679891pt;}
.y15e{bottom:274.239890pt;}
.y140{bottom:282.239887pt;}
.y41{bottom:286.399885pt;}
.y6b{bottom:287.199885pt;}
.yb5{bottom:288.319885pt;}
.y10c{bottom:288.799884pt;}
.yda{bottom:289.439884pt;}
.y15d{bottom:292.639883pt;}
.yca{bottom:298.079881pt;}
.y13f{bottom:300.639880pt;}
.y40{bottom:304.799878pt;}
.y6a{bottom:305.599878pt;}
.yb4{bottom:306.719877pt;}
.y10b{bottom:307.199877pt;}
.yd9{bottom:307.839877pt;}
.y11f{bottom:308.319877pt;}
.y15c{bottom:311.039876pt;}
.yc9{bottom:316.479873pt;}
.yf7{bottom:323.199871pt;}
.y69{bottom:323.999870pt;}
.y31{bottom:324.799870pt;}
.yb3{bottom:325.119870pt;}
.yd8{bottom:326.239870pt;}
.y11e{bottom:327.039869pt;}
.y15b{bottom:329.439868pt;}
.y3f{bottom:331.199868pt;}
.yc8{bottom:331.359867pt;}
.y13e{bottom:335.039866pt;}
.y10a{bottom:336.319865pt;}
.yf6{bottom:341.599863pt;}
.y68{bottom:342.399863pt;}
.yb2{bottom:343.519863pt;}
.yd7{bottom:344.639862pt;}
.y11d{bottom:345.919862pt;}
.y15a{bottom:347.839861pt;}
.y3e{bottom:349.599860pt;}
.y13d{bottom:353.439859pt;}
.yf5{bottom:359.999856pt;}
.y67{bottom:360.799856pt;}
.yb1{bottom:361.919855pt;}
.y30{bottom:362.079855pt;}
.yd6{bottom:363.039855pt;}
.y11c{bottom:364.639854pt;}
.y3d{bottom:367.999853pt;}
.y109{bottom:370.719852pt;}
.y159{bottom:374.079850pt;}
.y2f{bottom:374.239850pt;}
.yf4{bottom:378.399849pt;}
.y66{bottom:379.199848pt;}
.yb0{bottom:380.319848pt;}
.yd5{bottom:381.439847pt;}
.y11b{bottom:383.519847pt;}
.y2e{bottom:386.239846pt;}
.y3c{bottom:386.399845pt;}
.y13c{bottom:387.679845pt;}
.y108{bottom:389.119844pt;}
.y158{bottom:392.479843pt;}
.yf3{bottom:396.799841pt;}
.y2d{bottom:397.439841pt;}
.y65{bottom:397.599841pt;}
.yaf{bottom:398.719841pt;}
.yd4{bottom:399.839840pt;}
.y11a{bottom:402.239839pt;}
.y3b{bottom:404.799838pt;}
.y13b{bottom:406.079838pt;}
.y107{bottom:407.519837pt;}
.y157{bottom:410.879836pt;}
.yf2{bottom:415.199834pt;}
.y64{bottom:415.999834pt;}
.yae{bottom:417.119833pt;}
.y94{bottom:418.079833pt;}
.yd3{bottom:418.239833pt;}
.y3a{bottom:423.199831pt;}
.y106{bottom:425.919830pt;}
.y119{bottom:428.639829pt;}
.y156{bottom:429.279828pt;}
.y2c{bottom:433.599827pt;}
.y63{bottom:434.399826pt;}
.yad{bottom:435.519826pt;}
.y93{bottom:436.479825pt;}
.yd2{bottom:436.639825pt;}
.y13a{bottom:440.479824pt;}
.y39{bottom:441.599823pt;}
.y105{bottom:444.319822pt;}
.y118{bottom:447.039821pt;}
.y155{bottom:447.679821pt;}
.y92{bottom:451.359819pt;}
.yf1{bottom:451.999819pt;}
.y62{bottom:452.799819pt;}
.yac{bottom:453.919818pt;}
.ya5{bottom:455.039818pt;}
.y139{bottom:458.879816pt;}
.y38{bottom:459.999816pt;}
.y104{bottom:462.719815pt;}
.y117{bottom:465.439814pt;}
.yab{bottom:468.799812pt;}
.y2b{bottom:469.919812pt;}
.yf0{bottom:470.399812pt;}
.y61{bottom:471.199812pt;}
.ya4{bottom:473.439811pt;}
.y154{bottom:474.079810pt;}
.y138{bottom:477.279809pt;}
.y37{bottom:478.399809pt;}
.y103{bottom:481.119808pt;}
.y2a{bottom:482.239807pt;}
.y116{bottom:483.839806pt;}
.yef{bottom:488.799804pt;}
.y60{bottom:489.599804pt;}
.ya3{bottom:491.839803pt;}
.y153{bottom:492.479803pt;}
.y36{bottom:496.799801pt;}
.y102{bottom:499.519800pt;}
.y115{bottom:502.239799pt;}
.yee{bottom:507.199797pt;}
.y5f{bottom:509.119796pt;}
.ya2{bottom:510.239796pt;}
.y29{bottom:510.879796pt;}
.y137{bottom:511.679795pt;}
.y35{bottom:515.199794pt;}
.y101{bottom:517.919793pt;}
.y85{bottom:520.479792pt;}
.yed{bottom:525.599790pt;}
.y152{bottom:526.879789pt;}
.ya1{bottom:528.479789pt;}
.y5e{bottom:528.639789pt;}
.y136{bottom:530.079788pt;}
.y27{bottom:530.080000pt;}
.y26{bottom:533.599787pt;}
.y100{bottom:536.319785pt;}
.y84{bottom:538.879784pt;}
.y151{bottom:545.279782pt;}
.ya0{bottom:546.879781pt;}
.y5d{bottom:548.159781pt;}
.y25{bottom:551.999779pt;}
.yec{bottom:554.719778pt;}
.y80{bottom:557.279777pt;}
.y135{bottom:564.479774pt;}
.y9f{bottom:565.279774pt;}
.y5c{bottom:566.559773pt;}
.yeb{bottom:573.119771pt;}
.y7f{bottom:575.679770pt;}
.y150{bottom:579.679768pt;}
.y1b{bottom:580.799768pt;}
.y134{bottom:582.879767pt;}
.y9e{bottom:583.679767pt;}
.y5b{bottom:586.079766pt;}
.yea{bottom:591.519763pt;}
.y7e{bottom:594.079762pt;}
.y1a{bottom:599.199760pt;}
.y133{bottom:601.279759pt;}
.y9d{bottom:602.079759pt;}
.y5a{bottom:604.479758pt;}
.ye9{bottom:609.919756pt;}
.y7d{bottom:612.479755pt;}
.y14f{bottom:614.079754pt;}
.y19{bottom:617.599753pt;}
.y9c{bottom:620.479752pt;}
.y59{bottom:622.879751pt;}
.ye8{bottom:628.319749pt;}
.y7c{bottom:630.879748pt;}
.y14e{bottom:632.479747pt;}
.y132{bottom:635.679746pt;}
.y18{bottom:635.999746pt;}
.y9b{bottom:638.879744pt;}
.y17{bottom:642.079743pt;}
.ye7{bottom:646.719741pt;}
.y58{bottom:649.279740pt;}
.y131{bottom:654.079738pt;}
.y9a{bottom:657.279737pt;}
.y16{bottom:662.399735pt;}
.ye6{bottom:665.119734pt;}
.y14d{bottom:666.879733pt;}
.y57{bottom:667.679733pt;}
.y99{bottom:675.679730pt;}
.y15{bottom:680.799728pt;}
.yc7{bottom:683.519727pt;}
.y14c{bottom:685.279726pt;}
.y56{bottom:686.079726pt;}
.y130{bottom:688.479725pt;}
.y98{bottom:694.079722pt;}
.y14{bottom:699.199720pt;}
.yc6{bottom:701.919719pt;}
.y55{bottom:704.479718pt;}
.y13{bottom:705.279718pt;}
.y12f{bottom:706.879717pt;}
.y97{bottom:712.479715pt;}
.y14b{bottom:719.679712pt;}
.yc5{bottom:720.319712pt;}
.y54{bottom:722.879711pt;}
.y12{bottom:725.599710pt;}
.y91{bottom:730.879708pt;}
.y14a{bottom:738.079705pt;}
.yc4{bottom:738.719705pt;}
.y53{bottom:741.279703pt;}
.y11{bottom:743.999702pt;}
.y90{bottom:749.279700pt;}
.yc3{bottom:757.119697pt;}
.y52{bottom:759.679696pt;}
.y10{bottom:762.399695pt;}
.y8f{bottom:767.679693pt;}
.yf{bottom:768.479693pt;}
.y149{bottom:772.479691pt;}
.yc2{bottom:775.519690pt;}
.y51{bottom:778.079689pt;}
.y7b{bottom:786.079686pt;}
.yd{bottom:788.799684pt;}
.y148{bottom:790.879684pt;}
.yc1{bottom:793.919682pt;}
.ye{bottom:794.079682pt;}
.y50{bottom:796.479681pt;}
.y7a{bottom:804.479678pt;}
.yc0{bottom:812.319675pt;}
.y4f{bottom:814.879674pt;}
.yc{bottom:816.799673pt;}
.y12e{bottom:820.479672pt;}
.y79{bottom:822.879671pt;}
.y147{bottom:825.279670pt;}
.ybf{bottom:830.719668pt;}
.y4e{bottom:833.279667pt;}
.y12d{bottom:839.359664pt;}
.y78{bottom:841.279663pt;}
.y146{bottom:843.679663pt;}
.ye5{bottom:849.119660pt;}
.y4d{bottom:851.679659pt;}
.y22{bottom:853.279659pt;}
.y1d{bottom:857.279657pt;}
.y12c{bottom:858.239657pt;}
.y77{bottom:859.679656pt;}
.y145{bottom:862.079655pt;}
.ye4{bottom:867.519653pt;}
.y21{bottom:868.639653pt;}
.y4c{bottom:870.079652pt;}
.y12b{bottom:876.959649pt;}
.y76{bottom:878.079649pt;}
.y20{bottom:883.999646pt;}
.ye3{bottom:885.919646pt;}
.y4b{bottom:888.479645pt;}
.y12a{bottom:895.839642pt;}
.y75{bottom:896.479641pt;}
.y4a{bottom:906.879637pt;}
.y1f{bottom:907.999637pt;}
.y129{bottom:914.559634pt;}
.y74{bottom:914.879634pt;}
.y23{bottom:922.560000pt;}
.y1e{bottom:926.399629pt;}
.y49{bottom:933.279627pt;}
.y128{bottom:933.439627pt;}
.y5{bottom:983.519607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.960000pt;}
.h13{height:8.320000pt;}
.h11{height:13.440000pt;}
.h6{height:15.040000pt;}
.he{height:17.920000pt;}
.hc{height:18.240000pt;}
.ha{height:29.061238pt;}
.h10{height:29.082176pt;}
.hf{height:31.238738pt;}
.h14{height:31.992175pt;}
.h4{height:32.531237pt;}
.h7{height:35.404673pt;}
.hb{height:36.001236pt;}
.h5{height:37.540922pt;}
.h12{height:38.698735pt;}
.hd{height:42.023421pt;}
.h9{height:43.374983pt;}
.h1{height:46.505919pt;}
.h2{height:56.031228pt;}
.h8{height:65.062474pt;}
.h0{height:1056.000000pt;}
.w3{width:3.840000pt;}
.w5{width:6.080000pt;}
.w2{width:6.400000pt;}
.w6{width:7.040000pt;}
.w1{width:7.200000pt;}
.w4{width:8.000000pt;}
.w0{width:816.000000pt;}
.x24{left:-4.160224pt;}
.x0{left:0.000000pt;}
.x5{left:67.199973pt;}
.x2d{left:80.799968pt;}
.x2a{left:82.559967pt;}
.x6{left:89.919964pt;}
.x30{left:92.639963pt;}
.x2c{left:94.399886pt;}
.x2b{left:97.599961pt;}
.x25{left:100.319960pt;}
.x2f{left:111.199956pt;}
.x26{left:117.439991pt;}
.x1{left:119.999952pt;}
.x2e{left:125.439950pt;}
.x32{left:136.800000pt;}
.x35{left:143.999881pt;}
.x2{left:147.359941pt;}
.x3{left:151.359939pt;}
.x27{left:156.159938pt;}
.x28{left:159.360000pt;}
.x36{left:167.999891pt;}
.x1b{left:191.839389pt;}
.x31{left:192.799923pt;}
.x3b{left:197.438583pt;}
.x29{left:208.159917pt;}
.xb{left:209.439916pt;}
.x1d{left:216.479913pt;}
.x14{left:218.719913pt;}
.x15{left:224.159910pt;}
.x33{left:225.120786pt;}
.x34{left:228.159909pt;}
.x20{left:283.999850pt;}
.xa{left:285.919886pt;}
.x1e{left:289.279882pt;}
.x41{left:290.239437pt;}
.x11{left:291.679883pt;}
.x37{left:294.559169pt;}
.x3e{left:301.598289pt;}
.x3d{left:303.037927pt;}
.x39{left:303.999912pt;}
.x12{left:310.399919pt;}
.x17{left:320.479549pt;}
.x7{left:327.359869pt;}
.x18{left:328.799868pt;}
.x13{left:330.559865pt;}
.x19{left:334.239866pt;}
.x16{left:344.159558pt;}
.x1a{left:346.239858pt;}
.x1f{left:349.759860pt;}
.x21{left:359.199856pt;}
.xc{left:362.879855pt;}
.xd{left:368.319853pt;}
.x1c{left:407.999247pt;}
.x22{left:449.919820pt;}
.xe{left:452.159819pt;}
.xf{left:457.599817pt;}
.x23{left:563.520000pt;}
.x4{left:584.799766pt;}
.x10{left:601.119760pt;}
.x3a{left:682.719063pt;}
.x3c{left:688.957921pt;}
.x40{left:689.919760pt;}
.x38{left:693.920250pt;}
.x8{left:697.439721pt;}
.x3f{left:704.320197pt;}
.x9{left:717.440000pt;}
}




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