
    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_a882838d436cbfddd6633235.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ae6823b3452e10f0cb39558c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_f5b88c1086646438d9d3df7f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_3177d3b6cdfb6a903fda14b5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9da60cb356f07877983a02f.woff')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_1962db4f8d8ea697fccd1769.woff')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_0b19e46df0fb7d12b10cd168.woff')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_d53c7caabc91de0ef0cac206.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dcf2c360736dfbb15f2b5f29.woff')format("woff");}.ff9{font-family:ff9;line-height:0.774414;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_aeb7607a062b17c3352b4d7e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f4733e499c4a6f6da4c6bd58.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m4{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);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m6{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);}
.v1{vertical-align:-7.919997px;}
.v2{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.031745px;}
.ls2{letter-spacing:0.034431px;}
.lsa{letter-spacing:0.034440px;}
.lsb{letter-spacing:0.034446px;}
.lsc{letter-spacing:0.035310px;}
.lsd{letter-spacing:0.035439px;}
.ls6{letter-spacing:0.062743px;}
.ls11{letter-spacing:0.068862px;}
.ls10{letter-spacing:0.068906px;}
.ls7{letter-spacing:0.209220px;}
.ls1{letter-spacing:0.286367px;}
.ls8{letter-spacing:3.086219px;}
.lsf{letter-spacing:34.052206px;}
.lse{letter-spacing:34.087306px;}
.ls4{letter-spacing:68.562813px;}
.ls5{letter-spacing:112.566975px;}
.ls0{letter-spacing:1373.101155px;}
.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;}
}
.ws6{word-spacing:-46.439981px;}
.ws4{word-spacing:-46.433501px;}
.ws3{word-spacing:-32.462730px;}
.ws9{word-spacing:-21.059992px;}
.wsa{word-spacing:-18.068899px;}
.ws1{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.558360px;}
.ws2{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-99.643415px;}
._10{margin-left:-98.462233px;}
._1{margin-left:-8.345046px;}
._4{margin-left:-6.764586px;}
._19{margin-left:-5.707941px;}
._2{margin-left:-4.191630px;}
._5{margin-left:-2.461401px;}
._3{margin-left:-1.237605px;}
._0{width:1.127437px;}
._12{width:2.358098px;}
._7{width:3.426529px;}
._6{width:4.670049px;}
._c{width:5.941024px;}
._a{width:7.918226px;}
._b{width:8.946375px;}
._13{width:10.254481px;}
._9{width:11.563757px;}
._8{width:13.184720px;}
._18{width:14.879079px;}
._d{width:16.314373px;}
._16{width:19.642500px;}
._1a{width:21.577304px;}
._f{width:22.789684px;}
._e{width:23.960244px;}
._17{width:24.974526px;}
._25{width:29.132130px;}
._14{width:31.873616px;}
._15{width:32.948228px;}
._24{width:34.424483px;}
._21{width:44.881599px;}
._1b{width:70.814494px;}
._1e{width:82.393224px;}
._1c{width:86.417649px;}
._23{width:103.993158px;}
._22{width:110.527216px;}
._20{width:157.549377px;}
._1f{width:158.567248px;}
._1d{width:235.479282px;}
.fc10{color:rgb(0,176,80);}
.fce{color:rgb(153,142,164);}
.fcd{color:rgb(225,216,236);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(83,129,53);}
.fc13{color:rgb(0,0,255);}
.fc12{color:transparent;}
.fc11{color:rgb(112,48,160);}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fcf{color:rgb(243,238,248);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcb{color:rgb(180,172,188);}
.fc5{color:rgb(0,112,192);}
.fcc{color:rgb(205,196,214);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs6{font-size:81.359967px;}
.fs3{font-size:84.239966px;}
.fs7{font-size:95.759962px;}
.fs9{font-size:107.999957px;}
.fs8{font-size:143.999942px;}
.y23{bottom:-0.000066px;}
.y0{bottom:0.000000px;}
.y3c{bottom:3.239597px;}
.y38{bottom:4.319607px;}
.y9{bottom:4.859983px;}
.ya{bottom:20.879992px;}
.y8{bottom:37.260000px;}
.y6{bottom:42.119983px;}
.y7{bottom:44.099982px;}
.yc7{bottom:116.999953px;}
.y106{bottom:125.459950px;}
.y120{bottom:125.639950px;}
.yac{bottom:128.159949px;}
.y111{bottom:128.879948px;}
.yea{bottom:129.059948px;}
.y148{bottom:136.979945px;}
.y66{bottom:139.679944px;}
.y36{bottom:144.359942px;}
.y105{bottom:146.159942px;}
.y11f{bottom:146.339941px;}
.yab{bottom:148.859940px;}
.ye9{bottom:149.759940px;}
.y147{bottom:157.679937px;}
.yc6{bottom:158.579937px;}
.y65{bottom:160.379936px;}
.y22{bottom:164.520000px;}
.y11e{bottom:167.039933px;}
.y8a{bottom:168.299933px;}
.yaa{bottom:169.559932px;}
.ye8{bottom:170.459932px;}
.y146{bottom:178.379929px;}
.y11d{bottom:187.739925px;}
.y104{bottom:188.279925px;}
.ye7{bottom:191.159924px;}
.y145{bottom:199.079920px;}
.yc5{bottom:200.339920px;}
.y64{bottom:202.139919px;}
.y11c{bottom:208.439917px;}
.y89{bottom:209.879916px;}
.ya9{bottom:211.319915px;}
.y144{bottom:219.779912px;}
.y63{bottom:222.839911px;}
.y35{bottom:225.359910px;}
.y11b{bottom:229.139908px;}
.y88{bottom:230.579908px;}
.ya8{bottom:232.019907px;}
.y103{bottom:232.919907px;}
.ye6{bottom:233.459907px;}
.y143{bottom:240.479904px;}
.yc4{bottom:242.099903px;}
.y62{bottom:243.539903px;}
.y11a{bottom:249.839900px;}
.y87{bottom:251.279899px;}
.y102{bottom:253.619899px;}
.ye5{bottom:257.579897px;}
.y43{bottom:258.479897px;}
.y142{bottom:261.179896px;}
.yc3{bottom:262.799895px;}
.y119{bottom:270.539892px;}
.y86{bottom:271.979891px;}
.ya7{bottom:273.779890px;}
.y101{bottom:274.319890px;}
.y42{bottom:278.459889px;}
.y141{bottom:281.879887px;}
.y61{bottom:285.119886px;}
.ya6{bottom:294.479882px;}
.y100{bottom:295.019882px;}
.y41{bottom:298.439881px;}
.ye4{bottom:302.219879px;}
.y140{bottom:302.579879px;}
.yc2{bottom:304.379878px;}
.y60{bottom:305.819878px;}
.y118{bottom:312.839875px;}
.y21{bottom:313.019875px;}
.y85{bottom:313.739875px;}
.yff{bottom:315.719874px;}
.y40{bottom:318.419873px;}
.ye3{bottom:322.919871px;}
.y13f{bottom:323.279871px;}
.y5f{bottom:326.519869px;}
.y84{bottom:334.439866px;}
.ya5{bottom:336.059866px;}
.yfe{bottom:336.419865px;}
.y3f{bottom:339.299864px;}
.ye2{bottom:343.619863px;}
.y13e{bottom:343.979862px;}
.yc1{bottom:346.139862px;}
.y5e{bottom:347.219861px;}
.y83{bottom:355.139858px;}
.ya4{bottom:356.759857px;}
.yfd{bottom:357.119857px;}
.y110{bottom:357.479857px;}
.y162{bottom:359.099856px;}
.ye1{bottom:364.319854px;}
.y13d{bottom:364.679854px;}
.yc0{bottom:366.839853px;}
.y5d{bottom:367.919853px;}
.y82{bottom:375.839850px;}
.ya3{bottom:377.459849px;}
.yfc{bottom:377.819849px;}
.y10f{bottom:378.179849px;}
.y34{bottom:382.139847px;}
.y13c{bottom:385.379846px;}
.y81{bottom:396.539841px;}
.y117{bottom:398.879840px;}
.y33{bottom:399.419840px;}
.y161{bottom:400.859840px;}
.ye0{bottom:405.899838px;}
.y13b{bottom:406.079838px;}
.ybf{bottom:408.599837px;}
.y20{bottom:408.959836px;}
.y5c{bottom:409.679836px;}
.y80{bottom:417.239833px;}
.ya2{bottom:419.219832px;}
.yfb{bottom:419.579832px;}
.y10e{bottom:419.759832px;}
.y160{bottom:421.559831px;}
.ydf{bottom:426.599829px;}
.y13a{bottom:426.779829px;}
.y5b{bottom:430.379828px;}
.y32{bottom:437.579825px;}
.y116{bottom:440.279824px;}
.y10d{bottom:440.459824px;}
.y15f{bottom:442.259823px;}
.yde{bottom:447.299821px;}
.y139{bottom:447.479821px;}
.ybe{bottom:450.179820px;}
.y5a{bottom:451.079820px;}
.y1f{bottom:452.699819px;}
.y31{bottom:454.859818px;}
.y7f{bottom:458.999816px;}
.ya1{bottom:460.979816px;}
.yfa{bottom:461.159816px;}
.y15e{bottom:462.959815px;}
.y1e{bottom:467.999813px;}
.y138{bottom:468.179813px;}
.ybd{bottom:470.879812px;}
.y59{bottom:471.779811px;}
.y30{bottom:472.139811px;}
.y7e{bottom:479.699808px;}
.ya0{bottom:481.679807px;}
.yf9{bottom:481.859807px;}
.y1d{bottom:483.299807px;}
.y15d{bottom:483.659807px;}
.ydd{bottom:488.699805px;}
.y137{bottom:488.879804px;}
.y2f{bottom:489.419804px;}
.ybc{bottom:491.579803px;}
.y58{bottom:492.479803px;}
.y1c{bottom:497.339801px;}
.y7d{bottom:500.399800px;}
.y9f{bottom:502.379799px;}
.yf8{bottom:502.559799px;}
.y15c{bottom:504.359798px;}
.y2e{bottom:506.699797px;}
.ydc{bottom:509.399796px;}
.y136{bottom:509.579796px;}
.y7c{bottom:521.099792px;}
.y115{bottom:523.259791px;}
.y2d{bottom:523.799790px;}
.y15b{bottom:525.059790px;}
.ydb{bottom:530.099788px;}
.y135{bottom:530.279788px;}
.ybb{bottom:533.339787px;}
.y57{bottom:534.059786px;}
.y1b{bottom:539.819784px;}
.y2c{bottom:541.079784px;}
.y7b{bottom:541.619783px;}
.y9e{bottom:543.959782px;}
.yf7{bottom:544.319782px;}
.y15a{bottom:545.759782px;}
.y134{bottom:550.979780px;}
.y56{bottom:554.759778px;}
.y2b{bottom:558.359777px;}
.y9d{bottom:564.659774px;}
.yf6{bottom:565.019774px;}
.y159{bottom:566.459773px;}
.y133{bottom:571.679771px;}
.yda{bottom:571.859771px;}
.yba{bottom:575.099770px;}
.y55{bottom:575.459770px;}
.y2a{bottom:575.639770px;}
.y1a{bottom:582.479767px;}
.y7a{bottom:583.379767px;}
.y9c{bottom:585.359766px;}
.yf5{bottom:585.719766px;}
.y158{bottom:587.159765px;}
.y132{bottom:592.379763px;}
.yd9{bottom:592.559763px;}
.y29{bottom:592.919763px;}
.yb9{bottom:595.799762px;}
.y54{bottom:596.159762px;}
.y79{bottom:604.079758px;}
.yf4{bottom:606.419757px;}
.y10c{bottom:606.779757px;}
.y157{bottom:607.859757px;}
.y28{bottom:610.019756px;}
.y131{bottom:613.079755px;}
.yd8{bottom:613.259755px;}
.yb8{bottom:616.499753px;}
.y78{bottom:624.779750px;}
.y19{bottom:624.959750px;}
.y9b{bottom:627.119749px;}
.y27{bottom:627.299749px;}
.y10b{bottom:627.479749px;}
.y156{bottom:628.559749px;}
.y130{bottom:633.779746px;}
.yd7{bottom:633.959746px;}
.y53{bottom:637.919745px;}
.y18{bottom:640.439744px;}
.y26{bottom:644.579742px;}
.y77{bottom:645.479742px;}
.y9a{bottom:647.819741px;}
.y10a{bottom:647.999741px;}
.y155{bottom:649.259740px;}
.y12f{bottom:654.479738px;}
.yd6{bottom:654.659738px;}
.yb7{bottom:658.079737px;}
.y24{bottom:660.599736px;}
.y25{bottom:661.859735px;}
.y17{bottom:664.559734px;}
.y76{bottom:666.179734px;}
.y99{bottom:668.519733px;}
.yf3{bottom:668.699733px;}
.y154{bottom:669.959732px;}
.y12e{bottom:675.179730px;}
.y52{bottom:679.679728px;}
.y75{bottom:686.879725px;}
.y16{bottom:688.679725px;}
.yf2{bottom:689.399724px;}
.y153{bottom:690.659724px;}
.y12d{bottom:695.879722px;}
.yd5{bottom:696.779721px;}
.yb6{bottom:699.839720px;}
.y51{bottom:700.379720px;}
.y98{bottom:710.099716px;}
.y152{bottom:711.359715px;}
.y12c{bottom:716.579713px;}
.yd4{bottom:719.999712px;}
.yb5{bottom:720.539712px;}
.y15{bottom:723.959710px;}
.y74{bottom:728.639709px;}
.y97{bottom:730.799708px;}
.y109{bottom:731.159708px;}
.y151{bottom:732.059707px;}
.y12b{bottom:737.279705px;}
.yb4{bottom:741.239704px;}
.y50{bottom:742.499703px;}
.y14{bottom:746.639701px;}
.y73{bottom:749.339700px;}
.y96{bottom:751.499699px;}
.yd3{bottom:751.859699px;}
.y150{bottom:752.759699px;}
.y12a{bottom:757.979697px;}
.yb3{bottom:761.939695px;}
.y13{bottom:766.619693px;}
.y72{bottom:770.039692px;}
.yd2{bottom:772.559691px;}
.y14f{bottom:773.459691px;}
.y129{bottom:778.679689px;}
.y4f{bottom:786.239686px;}
.y12{bottom:786.599685px;}
.y71{bottom:790.739684px;}
.y95{bottom:793.259683px;}
.y108{bottom:793.619683px;}
.y14e{bottom:794.159682px;}
.y128{bottom:799.379680px;}
.yd1{bottom:802.259679px;}
.yb2{bottom:803.699679px;}
.y11{bottom:806.579677px;}
.y4e{bottom:806.939677px;}
.y70{bottom:811.439675px;}
.yf1{bottom:813.959674px;}
.y107{bottom:814.319674px;}
.y14d{bottom:814.859674px;}
.y127{bottom:820.079672px;}
.y10{bottom:826.559669px;}
.y4d{bottom:827.639669px;}
.yd0{bottom:831.959667px;}
.y6f{bottom:832.139667px;}
.yf0{bottom:834.659666px;}
.y94{bottom:835.019666px;}
.y14c{bottom:835.559666px;}
.y126{bottom:840.779664px;}
.yb1{bottom:845.279662px;}
.y4c{bottom:848.339661px;}
.ycf{bottom:852.659659px;}
.yef{bottom:855.359658px;}
.y93{bottom:855.719658px;}
.y14b{bottom:856.259657px;}
.ye{bottom:859.679656px;}
.yf{bottom:865.619654px;}
.yb0{bottom:865.979654px;}
.y4b{bottom:869.039652px;}
.y6e{bottom:873.719651px;}
.y92{bottom:876.419649px;}
.y125{bottom:876.599649px;}
.y14a{bottom:876.959649px;}
.yce{bottom:882.359647px;}
.yaf{bottom:886.679645px;}
.y4a{bottom:889.739644px;}
.yc{bottom:895.679642px;}
.yee{bottom:897.119641px;}
.y114{bottom:897.299641px;}
.y149{bottom:897.659641px;}
.yd{bottom:901.619639px;}
.ycd{bottom:903.059639px;}
.yae{bottom:907.379637px;}
.y6d{bottom:915.479634px;}
.yed{bottom:917.819633px;}
.y91{bottom:917.999633px;}
.y124{bottom:918.359633px;}
.y49{bottom:931.499627px;}
.ycc{bottom:932.759627px;}
.y6c{bottom:936.179626px;}
.yb{bottom:937.979625px;}
.yec{bottom:938.519625px;}
.y90{bottom:938.699625px;}
.y123{bottom:939.059624px;}
.yad{bottom:950.939620px;}
.y48{bottom:952.199619px;}
.y6b{bottom:956.879617px;}
.y8f{bottom:959.399616px;}
.y122{bottom:959.759616px;}
.ycb{bottom:962.459615px;}
.y47{bottom:972.899611px;}
.y6a{bottom:977.579609px;}
.y37{bottom:978.480000px;}
.yeb{bottom:980.099608px;}
.y121{bottom:980.459608px;}
.yca{bottom:983.159607px;}
.y3d{bottom:986.759605px;}
.y46{bottom:993.599603px;}
.y69{bottom:998.279601px;}
.y113{bottom:1000.799600px;}
.y8e{bottom:1001.159600px;}
.y3b{bottom:1003.500000px;}
.yc9{bottom:1012.859595px;}
.y45{bottom:1014.299594px;}
.y68{bottom:1018.979592px;}
.y112{bottom:1021.499591px;}
.y8d{bottom:1021.859591px;}
.y3a{bottom:1026.719589px;}
.yc8{bottom:1033.559587px;}
.y8c{bottom:1042.559583px;}
.y3e{bottom:1056.059578px;}
.y39{bottom:1058.759576px;}
.y44{bottom:1060.379576px;}
.y67{bottom:1061.099576px;}
.y8b{bottom:1063.259575px;}
.y4{bottom:1085.219566px;}
.y5{bottom:1113.479555px;}
.y3{bottom:1118.159553px;}
.y2{bottom:1135.439546px;}
.y1{bottom:1152.719539px;}
.h10{height:14.760000px;}
.h14{height:16.740000px;}
.h12{height:20.520000px;}
.h5{height:21.960000px;}
.h9{height:32.693893px;}
.hc{height:33.518307px;}
.he{height:36.624009px;}
.h3{height:36.703110px;}
.h4{height:36.914048px;}
.hf{height:37.520493px;}
.hd{height:39.339828px;}
.h13{height:40.501390px;}
.h6{height:40.851546px;}
.h1{height:41.522679px;}
.h15{height:43.536076px;}
.hb{height:46.025138px;}
.h8{height:48.796855px;}
.h2{height:49.218730px;}
.ha{height:50.027324px;}
.h1b{height:52.453104px;}
.h11{height:53.261697px;}
.h17{height:55.140447px;}
.h16{height:57.092321px;}
.h7{height:58.531969px;}
.h18{height:64.899818px;}
.h1a{height:73.195283px;}
.h19{height:97.593711px;}
.h0{height:1188.000000px;}
.w1{width:3.960000px;}
.w2{width:8.280000px;}
.w3{width:8.640000px;}
.w4{width:365.940000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:99.359960px;}
.x17{left:102.239959px;}
.x1b{left:103.859958px;}
.x1{left:107.999957px;}
.x2b{left:112.499955px;}
.x19{left:116.639953px;}
.x18{left:117.899953px;}
.x1a{left:119.339966px;}
.x13{left:125.999986px;}
.x14{left:130.500291px;}
.x4{left:133.199947px;}
.x30{left:134.999946px;}
.x16{left:141.842377px;}
.x1e{left:147.959941px;}
.x1c{left:158.039937px;}
.x31{left:161.999927px;}
.x12{left:170.279932px;}
.x2d{left:176.939929px;}
.x15{left:188.101498px;}
.x7{left:215.279914px;}
.x24{left:231.840000px;}
.x1f{left:241.919969px;}
.x20{left:243.000000px;}
.x21{left:263.339895px;}
.x22{left:295.559882px;}
.x2a{left:300.059880px;}
.x2{left:302.579879px;}
.x25{left:305.279878px;}
.x23{left:306.358924px;}
.xd{left:332.459307px;}
.x27{left:348.659861px;}
.x8{left:386.819845px;}
.x9{left:392.939843px;}
.x26{left:419.939832px;}
.x2c{left:429.479828px;}
.x5{left:431.639827px;}
.xe{left:437.939825px;}
.xf{left:444.059822px;}
.x2e{left:455.219818px;}
.xa{left:508.139797px;}
.x2f{left:509.219796px;}
.xb{left:514.259794px;}
.x10{left:575.099770px;}
.x11{left:581.219768px;}
.x28{left:613.259755px;}
.x3{left:691.199724px;}
.xc{left:698.219721px;}
.x29{left:707.399716px;}
.x6{left:805.680000px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v2{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.028218pt;}
.ls2{letter-spacing:0.030605pt;}
.lsa{letter-spacing:0.030613pt;}
.lsb{letter-spacing:0.030618pt;}
.lsc{letter-spacing:0.031387pt;}
.lsd{letter-spacing:0.031501pt;}
.ls6{letter-spacing:0.055772pt;}
.ls11{letter-spacing:0.061211pt;}
.ls10{letter-spacing:0.061250pt;}
.ls7{letter-spacing:0.185973pt;}
.ls1{letter-spacing:0.254548pt;}
.ls8{letter-spacing:2.743306pt;}
.lsf{letter-spacing:30.268628pt;}
.lse{letter-spacing:30.299828pt;}
.ls4{letter-spacing:60.944722pt;}
.ls5{letter-spacing:100.059533pt;}
.ls0{letter-spacing:1220.534360pt;}
.ws6{word-spacing:-41.279983pt;}
.ws4{word-spacing:-41.274223pt;}
.ws3{word-spacing:-28.855760pt;}
.ws9{word-spacing:-18.719993pt;}
.wsa{word-spacing:-16.061243pt;}
.ws1{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.718543pt;}
.ws2{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-88.571924pt;}
._10{margin-left:-87.521985pt;}
._1{margin-left:-7.417818pt;}
._4{margin-left:-6.012966pt;}
._19{margin-left:-5.073726pt;}
._2{margin-left:-3.725894pt;}
._5{margin-left:-2.187912pt;}
._3{margin-left:-1.100094pt;}
._0{width:1.002166pt;}
._12{width:2.096087pt;}
._7{width:3.045804pt;}
._6{width:4.151154pt;}
._c{width:5.280910pt;}
._a{width:7.038423pt;}
._b{width:7.952333pt;}
._13{width:9.115094pt;}
._9{width:10.278895pt;}
._8{width:11.719751pt;}
._18{width:13.225848pt;}
._d{width:14.501665pt;}
._16{width:17.460000pt;}
._1a{width:19.179826pt;}
._f{width:20.257497pt;}
._e{width:21.297994pt;}
._17{width:22.199579pt;}
._25{width:25.895226pt;}
._14{width:28.332103pt;}
._15{width:29.287314pt;}
._24{width:30.599541pt;}
._21{width:39.894755pt;}
._1b{width:62.946217pt;}
._1e{width:73.238421pt;}
._1c{width:76.815688pt;}
._23{width:92.438362pt;}
._22{width:98.246414pt;}
._20{width:140.043890pt;}
._1f{width:140.948665pt;}
._1d{width:209.314917pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs6{font-size:72.319971pt;}
.fs3{font-size:74.879970pt;}
.fs7{font-size:85.119966pt;}
.fs9{font-size:95.999962pt;}
.fs8{font-size:127.999949pt;}
.y23{bottom:-0.000058pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.879642pt;}
.y38{bottom:3.839651pt;}
.y9{bottom:4.319985pt;}
.ya{bottom:18.559993pt;}
.y8{bottom:33.120000pt;}
.y6{bottom:37.439985pt;}
.y7{bottom:39.199984pt;}
.yc7{bottom:103.999958pt;}
.y106{bottom:111.519955pt;}
.y120{bottom:111.679955pt;}
.yac{bottom:113.919954pt;}
.y111{bottom:114.559954pt;}
.yea{bottom:114.719954pt;}
.y148{bottom:121.759951pt;}
.y66{bottom:124.159950pt;}
.y36{bottom:128.319949pt;}
.y105{bottom:129.919948pt;}
.y11f{bottom:130.079948pt;}
.yab{bottom:132.319947pt;}
.ye9{bottom:133.119947pt;}
.y147{bottom:140.159944pt;}
.yc6{bottom:140.959944pt;}
.y65{bottom:142.559943pt;}
.y22{bottom:146.240000pt;}
.y11e{bottom:148.479941pt;}
.y8a{bottom:149.599940pt;}
.yaa{bottom:150.719940pt;}
.ye8{bottom:151.519939pt;}
.y146{bottom:158.559937pt;}
.y11d{bottom:166.879933pt;}
.y104{bottom:167.359933pt;}
.ye7{bottom:169.919932pt;}
.y145{bottom:176.959929pt;}
.yc5{bottom:178.079929pt;}
.y64{bottom:179.679928pt;}
.y11c{bottom:185.279926pt;}
.y89{bottom:186.559925pt;}
.ya9{bottom:187.839925pt;}
.y144{bottom:195.359922pt;}
.y63{bottom:198.079921pt;}
.y35{bottom:200.319920pt;}
.y11b{bottom:203.679919pt;}
.y88{bottom:204.959918pt;}
.ya8{bottom:206.239918pt;}
.y103{bottom:207.039917pt;}
.ye6{bottom:207.519917pt;}
.y143{bottom:213.759914pt;}
.yc4{bottom:215.199914pt;}
.y62{bottom:216.479913pt;}
.y11a{bottom:222.079911pt;}
.y87{bottom:223.359911pt;}
.y102{bottom:225.439910pt;}
.ye5{bottom:228.959908pt;}
.y43{bottom:229.759908pt;}
.y142{bottom:232.159907pt;}
.yc3{bottom:233.599907pt;}
.y119{bottom:240.479904pt;}
.y86{bottom:241.759903pt;}
.ya7{bottom:243.359903pt;}
.y101{bottom:243.839902pt;}
.y42{bottom:247.519901pt;}
.y141{bottom:250.559900pt;}
.y61{bottom:253.439899pt;}
.ya6{bottom:261.759895pt;}
.y100{bottom:262.239895pt;}
.y41{bottom:265.279894pt;}
.ye4{bottom:268.639893pt;}
.y140{bottom:268.959892pt;}
.yc2{bottom:270.559892pt;}
.y60{bottom:271.839891pt;}
.y118{bottom:278.079889pt;}
.y21{bottom:278.239889pt;}
.y85{bottom:278.879888pt;}
.yff{bottom:280.639888pt;}
.y40{bottom:283.039887pt;}
.ye3{bottom:287.039885pt;}
.y13f{bottom:287.359885pt;}
.y5f{bottom:290.239884pt;}
.y84{bottom:297.279881pt;}
.ya5{bottom:298.719881pt;}
.yfe{bottom:299.039880pt;}
.y3f{bottom:301.599879pt;}
.ye2{bottom:305.439878pt;}
.y13e{bottom:305.759878pt;}
.yc1{bottom:307.679877pt;}
.y5e{bottom:308.639877pt;}
.y83{bottom:315.679874pt;}
.ya4{bottom:317.119873pt;}
.yfd{bottom:317.439873pt;}
.y110{bottom:317.759873pt;}
.y162{bottom:319.199872pt;}
.ye1{bottom:323.839870pt;}
.y13d{bottom:324.159870pt;}
.yc0{bottom:326.079870pt;}
.y5d{bottom:327.039869pt;}
.y82{bottom:334.079866pt;}
.ya3{bottom:335.519866pt;}
.yfc{bottom:335.839866pt;}
.y10f{bottom:336.159866pt;}
.y34{bottom:339.679864pt;}
.y13c{bottom:342.559863pt;}
.y81{bottom:352.479859pt;}
.y117{bottom:354.559858pt;}
.y33{bottom:355.039858pt;}
.y161{bottom:356.319857pt;}
.ye0{bottom:360.799856pt;}
.y13b{bottom:360.959856pt;}
.ybf{bottom:363.199855pt;}
.y20{bottom:363.519855pt;}
.y5c{bottom:364.159854pt;}
.y80{bottom:370.879852pt;}
.ya2{bottom:372.639851pt;}
.yfb{bottom:372.959851pt;}
.y10e{bottom:373.119851pt;}
.y160{bottom:374.719850pt;}
.ydf{bottom:379.199848pt;}
.y13a{bottom:379.359848pt;}
.y5b{bottom:382.559847pt;}
.y32{bottom:388.959844pt;}
.y116{bottom:391.359843pt;}
.y10d{bottom:391.519843pt;}
.y15f{bottom:393.119843pt;}
.yde{bottom:397.599841pt;}
.y139{bottom:397.759841pt;}
.ybe{bottom:400.159840pt;}
.y5a{bottom:400.959840pt;}
.y1f{bottom:402.399839pt;}
.y31{bottom:404.319838pt;}
.y7f{bottom:407.999837pt;}
.ya1{bottom:409.759836pt;}
.yfa{bottom:409.919836pt;}
.y15e{bottom:411.519835pt;}
.y1e{bottom:415.999834pt;}
.y138{bottom:416.159834pt;}
.ybd{bottom:418.559833pt;}
.y59{bottom:419.359832pt;}
.y30{bottom:419.679832pt;}
.y7e{bottom:426.399829pt;}
.ya0{bottom:428.159829pt;}
.yf9{bottom:428.319829pt;}
.y1d{bottom:429.599828pt;}
.y15d{bottom:429.919828pt;}
.ydd{bottom:434.399826pt;}
.y137{bottom:434.559826pt;}
.y2f{bottom:435.039826pt;}
.ybc{bottom:436.959825pt;}
.y58{bottom:437.759825pt;}
.y1c{bottom:442.079823pt;}
.y7d{bottom:444.799822pt;}
.y9f{bottom:446.559821pt;}
.yf8{bottom:446.719821pt;}
.y15c{bottom:448.319821pt;}
.y2e{bottom:450.399820pt;}
.ydc{bottom:452.799819pt;}
.y136{bottom:452.959819pt;}
.y7c{bottom:463.199815pt;}
.y115{bottom:465.119814pt;}
.y2d{bottom:465.599814pt;}
.y15b{bottom:466.719813pt;}
.ydb{bottom:471.199812pt;}
.y135{bottom:471.359811pt;}
.ybb{bottom:474.079810pt;}
.y57{bottom:474.719810pt;}
.y1b{bottom:479.839808pt;}
.y2c{bottom:480.959808pt;}
.y7b{bottom:481.439807pt;}
.y9e{bottom:483.519807pt;}
.yf7{bottom:483.839806pt;}
.y15a{bottom:485.119806pt;}
.y134{bottom:489.759804pt;}
.y56{bottom:493.119803pt;}
.y2b{bottom:496.319801pt;}
.y9d{bottom:501.919799pt;}
.yf6{bottom:502.239799pt;}
.y159{bottom:503.519799pt;}
.y133{bottom:508.159797pt;}
.yda{bottom:508.319797pt;}
.yba{bottom:511.199796pt;}
.y55{bottom:511.519795pt;}
.y2a{bottom:511.679795pt;}
.y1a{bottom:517.759793pt;}
.y7a{bottom:518.559793pt;}
.y9c{bottom:520.319792pt;}
.yf5{bottom:520.639792pt;}
.y158{bottom:521.919791pt;}
.y132{bottom:526.559789pt;}
.yd9{bottom:526.719789pt;}
.y29{bottom:527.039789pt;}
.yb9{bottom:529.599788pt;}
.y54{bottom:529.919788pt;}
.y79{bottom:536.959785pt;}
.yf4{bottom:539.039784pt;}
.y10c{bottom:539.359784pt;}
.y157{bottom:540.319784pt;}
.y28{bottom:542.239783pt;}
.y131{bottom:544.959782pt;}
.yd8{bottom:545.119782pt;}
.yb8{bottom:547.999781pt;}
.y78{bottom:555.359778pt;}
.y19{bottom:555.519778pt;}
.y9b{bottom:557.439777pt;}
.y27{bottom:557.599777pt;}
.y10b{bottom:557.759777pt;}
.y156{bottom:558.719777pt;}
.y130{bottom:563.359775pt;}
.yd7{bottom:563.519775pt;}
.y53{bottom:567.039773pt;}
.y18{bottom:569.279772pt;}
.y26{bottom:572.959771pt;}
.y77{bottom:573.759770pt;}
.y9a{bottom:575.839770pt;}
.y10a{bottom:575.999770pt;}
.y155{bottom:577.119769pt;}
.y12f{bottom:581.759767pt;}
.yd6{bottom:581.919767pt;}
.yb7{bottom:584.959766pt;}
.y24{bottom:587.199765pt;}
.y25{bottom:588.319765pt;}
.y17{bottom:590.719764pt;}
.y76{bottom:592.159763pt;}
.y99{bottom:594.239762pt;}
.yf3{bottom:594.399762pt;}
.y154{bottom:595.519762pt;}
.y12e{bottom:600.159760pt;}
.y52{bottom:604.159758pt;}
.y75{bottom:610.559756pt;}
.y16{bottom:612.159755pt;}
.yf2{bottom:612.799755pt;}
.y153{bottom:613.919754pt;}
.y12d{bottom:618.559753pt;}
.yd5{bottom:619.359752pt;}
.yb6{bottom:622.079751pt;}
.y51{bottom:622.559751pt;}
.y98{bottom:631.199748pt;}
.y152{bottom:632.319747pt;}
.y12c{bottom:636.959745pt;}
.yd4{bottom:639.999744pt;}
.yb5{bottom:640.479744pt;}
.y15{bottom:643.519743pt;}
.y74{bottom:647.679741pt;}
.y97{bottom:649.599740pt;}
.y109{bottom:649.919740pt;}
.y151{bottom:650.719740pt;}
.y12b{bottom:655.359738pt;}
.yb4{bottom:658.879736pt;}
.y50{bottom:659.999736pt;}
.y14{bottom:663.679735pt;}
.y73{bottom:666.079734pt;}
.y96{bottom:667.999733pt;}
.yd3{bottom:668.319733pt;}
.y150{bottom:669.119732pt;}
.y12a{bottom:673.759730pt;}
.yb3{bottom:677.279729pt;}
.y13{bottom:681.439727pt;}
.y72{bottom:684.479726pt;}
.yd2{bottom:686.719725pt;}
.y14f{bottom:687.519725pt;}
.y129{bottom:692.159723pt;}
.y4f{bottom:698.879720pt;}
.y12{bottom:699.199720pt;}
.y71{bottom:702.879719pt;}
.y95{bottom:705.119718pt;}
.y108{bottom:705.439718pt;}
.y14e{bottom:705.919718pt;}
.y128{bottom:710.559716pt;}
.yd1{bottom:713.119715pt;}
.yb2{bottom:714.399714pt;}
.y11{bottom:716.959713pt;}
.y4e{bottom:717.279713pt;}
.y70{bottom:721.279711pt;}
.yf1{bottom:723.519711pt;}
.y107{bottom:723.839710pt;}
.y14d{bottom:724.319710pt;}
.y127{bottom:728.959708pt;}
.y10{bottom:734.719706pt;}
.y4d{bottom:735.679706pt;}
.yd0{bottom:739.519704pt;}
.y6f{bottom:739.679704pt;}
.yf0{bottom:741.919703pt;}
.y94{bottom:742.239703pt;}
.y14c{bottom:742.719703pt;}
.y126{bottom:747.359701pt;}
.yb1{bottom:751.359699pt;}
.y4c{bottom:754.079698pt;}
.ycf{bottom:757.919697pt;}
.yef{bottom:760.319696pt;}
.y93{bottom:760.639696pt;}
.y14b{bottom:761.119696pt;}
.ye{bottom:764.159694pt;}
.yf{bottom:769.439692pt;}
.yb0{bottom:769.759692pt;}
.y4b{bottom:772.479691pt;}
.y6e{bottom:776.639689pt;}
.y92{bottom:779.039688pt;}
.y125{bottom:779.199688pt;}
.y14a{bottom:779.519688pt;}
.yce{bottom:784.319686pt;}
.yaf{bottom:788.159685pt;}
.y4a{bottom:790.879684pt;}
.yc{bottom:796.159682pt;}
.yee{bottom:797.439681pt;}
.y114{bottom:797.599681pt;}
.y149{bottom:797.919681pt;}
.yd{bottom:801.439679pt;}
.ycd{bottom:802.719679pt;}
.yae{bottom:806.559677pt;}
.y6d{bottom:813.759674pt;}
.yed{bottom:815.839674pt;}
.y91{bottom:815.999674pt;}
.y124{bottom:816.319673pt;}
.y49{bottom:827.999669pt;}
.ycc{bottom:829.119668pt;}
.y6c{bottom:832.159667pt;}
.yb{bottom:833.759666pt;}
.yec{bottom:834.239666pt;}
.y90{bottom:834.399666pt;}
.y123{bottom:834.719666pt;}
.yad{bottom:845.279662pt;}
.y48{bottom:846.399661pt;}
.y6b{bottom:850.559660pt;}
.y8f{bottom:852.799659pt;}
.y122{bottom:853.119659pt;}
.ycb{bottom:855.519658pt;}
.y47{bottom:864.799654pt;}
.y6a{bottom:868.959652pt;}
.y37{bottom:869.760000pt;}
.yeb{bottom:871.199652pt;}
.y121{bottom:871.519651pt;}
.yca{bottom:873.919650pt;}
.y3d{bottom:877.119649pt;}
.y46{bottom:883.199647pt;}
.y69{bottom:887.359645pt;}
.y113{bottom:889.599644pt;}
.y8e{bottom:889.919644pt;}
.y3b{bottom:892.000000pt;}
.yc9{bottom:900.319640pt;}
.y45{bottom:901.599639pt;}
.y68{bottom:905.759638pt;}
.y112{bottom:907.999637pt;}
.y8d{bottom:908.319637pt;}
.y3a{bottom:912.639635pt;}
.yc8{bottom:918.719633pt;}
.y8c{bottom:926.719629pt;}
.y3e{bottom:938.719625pt;}
.y39{bottom:941.119624pt;}
.y44{bottom:942.559623pt;}
.y67{bottom:943.199623pt;}
.y8b{bottom:945.119622pt;}
.y4{bottom:964.639614pt;}
.y5{bottom:989.759604pt;}
.y3{bottom:993.919602pt;}
.y2{bottom:1009.279596pt;}
.y1{bottom:1024.639590pt;}
.h10{height:13.120000pt;}
.h14{height:14.880000pt;}
.h12{height:18.240000pt;}
.h5{height:19.520000pt;}
.h9{height:29.061238pt;}
.hc{height:29.794051pt;}
.he{height:32.554674pt;}
.h3{height:32.624987pt;}
.h4{height:32.812487pt;}
.hf{height:33.351549pt;}
.hd{height:34.968736pt;}
.h13{height:36.001236pt;}
.h6{height:36.312485pt;}
.h1{height:36.909048pt;}
.h15{height:38.698735pt;}
.hb{height:40.911234pt;}
.h8{height:43.374983pt;}
.h2{height:43.749982pt;}
.ha{height:44.468732pt;}
.h1b{height:46.624981pt;}
.h11{height:47.343731pt;}
.h17{height:49.013730pt;}
.h16{height:50.748730pt;}
.h7{height:52.028417pt;}
.h18{height:57.688727pt;}
.h1a{height:65.062474pt;}
.h19{height:86.749965pt;}
.h0{height:1056.000000pt;}
.w1{width:3.520000pt;}
.w2{width:7.360000pt;}
.w3{width:7.680000pt;}
.w4{width:325.280000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:88.319965pt;}
.x17{left:90.879964pt;}
.x1b{left:92.319963pt;}
.x1{left:95.999962pt;}
.x2b{left:99.999960pt;}
.x19{left:103.679959pt;}
.x18{left:104.799958pt;}
.x1a{left:106.079969pt;}
.x13{left:111.999988pt;}
.x14{left:116.000259pt;}
.x4{left:118.399953pt;}
.x30{left:119.999952pt;}
.x16{left:126.082113pt;}
.x1e{left:131.519947pt;}
.x1c{left:140.479944pt;}
.x31{left:143.999935pt;}
.x12{left:151.359939pt;}
.x2d{left:157.279937pt;}
.x15{left:167.201332pt;}
.x7{left:191.359923pt;}
.x24{left:206.080000pt;}
.x1f{left:215.039972pt;}
.x20{left:216.000000pt;}
.x21{left:234.079906pt;}
.x22{left:262.719895pt;}
.x2a{left:266.719893pt;}
.x2{left:268.959892pt;}
.x25{left:271.359891pt;}
.x23{left:272.319044pt;}
.xd{left:295.519384pt;}
.x27{left:309.919876pt;}
.x8{left:343.839862pt;}
.x9{left:349.279860pt;}
.x26{left:373.279851pt;}
.x2c{left:381.759847pt;}
.x5{left:383.679847pt;}
.xe{left:389.279844pt;}
.xf{left:394.719842pt;}
.x2e{left:404.639838pt;}
.xa{left:451.679819pt;}
.x2f{left:452.639819pt;}
.xb{left:457.119817pt;}
.x10{left:511.199796pt;}
.x11{left:516.639793pt;}
.x28{left:545.119782pt;}
.x3{left:614.399754pt;}
.xc{left:620.639752pt;}
.x29{left:628.799747pt;}
.x6{left:716.160000pt;}
}




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