
    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_dfecddfd8346652bbe839995.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_ac6d0e7554e6bb37ded4cacf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_88b626ff991061ebe41bf4d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c46a6deb3c8767fcb143f019.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e978a119889332f31dbb2606.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_039e097c310c3df725f6e3f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765625;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a55e3680546ab7bf6b0ce68e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.592000;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_9cc598f6b84a1f3b90cfb17a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-113.040720px;}
.v5{vertical-align:-95.040000px;}
.v4{vertical-align:-89.280720px;}
.v1{vertical-align:-82.799280px;}
.v3{vertical-align:-30.240060px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.999340px;}
.vc{vertical-align:30.941460px;}
.v6{vertical-align:34.560060px;}
.v9{vertical-align:45.359460px;}
.vb{vertical-align:61.938000px;}
.v7{vertical-align:70.578540px;}
.v8{vertical-align:106.597080px;}
.ls77{letter-spacing:-1.782000px;}
.ls79{letter-spacing:-1.728000px;}
.ls76{letter-spacing:-1.566540px;}
.ls78{letter-spacing:-1.188000px;}
.ls72{letter-spacing:-1.152720px;}
.ls15{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.719280px;}
.ls22{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls4e{letter-spacing:-0.298800px;}
.ls10{letter-spacing:-0.216720px;}
.lse{letter-spacing:-0.168480px;}
.ls74{letter-spacing:-0.162540px;}
.ls11{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072720px;}
.ls17{letter-spacing:-0.060358px;}
.ls75{letter-spacing:-0.054540px;}
.lsf{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.000662px;}
.ls40{letter-spacing:0.059760px;}
.ls19{letter-spacing:0.060358px;}
.ls3f{letter-spacing:0.066902px;}
.ls83{letter-spacing:0.072720px;}
.ls37{letter-spacing:0.119520px;}
.ls30{letter-spacing:0.140400px;}
.ls7f{letter-spacing:0.143280px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.179280px;}
.ls18{letter-spacing:0.179878px;}
.ls4a{letter-spacing:0.199382px;}
.ls24{letter-spacing:0.216000px;}
.ls81{letter-spacing:0.216720px;}
.ls2{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.288720px;}
.ls1{letter-spacing:0.322587px;}
.ls73{letter-spacing:0.324000px;}
.ls41{letter-spacing:0.766066px;}
.ls1c{letter-spacing:0.864720px;}
.ls25{letter-spacing:1.578960px;}
.ls28{letter-spacing:1.583280px;}
.ls20{letter-spacing:1.584000px;}
.ls2b{letter-spacing:2.302560px;}
.ls7e{letter-spacing:2.303280px;}
.ls2c{letter-spacing:2.304000px;}
.ls34{letter-spacing:2.450938px;}
.ls84{letter-spacing:3.024000px;}
.ls2f{letter-spacing:3.024720px;}
.ls32{letter-spacing:3.744000px;}
.ls1f{letter-spacing:3.744720px;}
.ls1a{letter-spacing:4.463280px;}
.ls8{letter-spacing:4.464000px;}
.ls2d{letter-spacing:5.184000px;}
.ls49{letter-spacing:5.192640px;}
.ls4d{letter-spacing:5.904000px;}
.ls9{letter-spacing:6.624720px;}
.ls31{letter-spacing:7.344000px;}
.ls42{letter-spacing:8.064000px;}
.ls5{letter-spacing:8.784000px;}
.ls6{letter-spacing:8.784720px;}
.ls26{letter-spacing:8.786160px;}
.ls3{letter-spacing:9.504000px;}
.ls21{letter-spacing:10.224000px;}
.ls2a{letter-spacing:10.944000px;}
.ls27{letter-spacing:11.664000px;}
.ls4{letter-spacing:12.383280px;}
.lsc{letter-spacing:12.384000px;}
.ls1e{letter-spacing:13.104000px;}
.ls1b{letter-spacing:13.107600px;}
.ls45{letter-spacing:14.543280px;}
.ls33{letter-spacing:15.264000px;}
.ls48{letter-spacing:15.985440px;}
.lsb{letter-spacing:16.704720px;}
.ls2e{letter-spacing:17.424000px;}
.ls80{letter-spacing:18.143280px;}
.ls46{letter-spacing:18.864720px;}
.lsa{letter-spacing:19.584000px;}
.ls29{letter-spacing:20.303280px;}
.ls3c{letter-spacing:21.150817px;}
.ls36{letter-spacing:21.167101px;}
.ls35{letter-spacing:21.170998px;}
.ls3a{letter-spacing:21.175307px;}
.ls3d{letter-spacing:21.181104px;}
.ls39{letter-spacing:21.195461px;}
.ls3b{letter-spacing:21.198006px;}
.ls38{letter-spacing:21.198411px;}
.ls85{letter-spacing:23.904000px;}
.ls44{letter-spacing:60.802560px;}
.ls63{letter-spacing:63.288000px;}
.ls47{letter-spacing:63.650878px;}
.ls43{letter-spacing:68.544060px;}
.ls55{letter-spacing:69.066000px;}
.ls82{letter-spacing:83.664000px;}
.ls56{letter-spacing:84.186000px;}
.ls5b{letter-spacing:84.888540px;}
.ls53{letter-spacing:85.590000px;}
.ls5a{letter-spacing:87.749460px;}
.ls5e{letter-spacing:101.465460px;}
.ls54{letter-spacing:101.466000px;}
.ls5f{letter-spacing:102.167460px;}
.ls62{letter-spacing:102.168000px;}
.ls4c{letter-spacing:102.309820px;}
.ls59{letter-spacing:104.327460px;}
.ls58{letter-spacing:106.488000px;}
.ls51{letter-spacing:107.190000px;}
.ls50{letter-spacing:110.106000px;}
.ls5d{letter-spacing:119.448000px;}
.ls61{letter-spacing:119.448540px;}
.ls52{letter-spacing:124.470540px;}
.ls6a{letter-spacing:129.546000px;}
.ls67{letter-spacing:136.728000px;}
.ls66{letter-spacing:159.786000px;}
.ls65{letter-spacing:160.488000px;}
.ls6d{letter-spacing:160.488540px;}
.ls6f{letter-spacing:162.648540px;}
.ls4f{letter-spacing:169.109940px;}
.ls6c{letter-spacing:277.830000px;}
.ls70{letter-spacing:292.899780px;}
.ls6e{letter-spacing:311.688000px;}
.ls64{letter-spacing:343.386000px;}
.ls4b{letter-spacing:365.790847px;}
.ls7b{letter-spacing:414.666000px;}
.ls69{letter-spacing:453.546000px;}
.ls5c{letter-spacing:490.759560px;}
.ls7c{letter-spacing:516.030480px;}
.ls68{letter-spacing:542.651940px;}
.ls6b{letter-spacing:542.808000px;}
.ls7d{letter-spacing:565.008480px;}
.ls60{letter-spacing:578.670480px;}
.ls57{letter-spacing:583.146000px;}
.ls7a{letter-spacing:588.168000px;}
.ls0{letter-spacing:594.144000px;}
.ls71{letter-spacing:641.361780px;}
.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;}
}
.ws55{word-spacing:-59.760060px;}
.ws2{word-spacing:-16.704000px;}
.ws6a{word-spacing:-16.632720px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.416000px;}
.ws6{word-spacing:-16.343280px;}
.ws27{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.199280px;}
.ws28{word-spacing:-15.984000px;}
.ws5{word-spacing:-15.912000px;}
.ws56{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.696720px;}
.ws85{word-spacing:-15.480000px;}
.ws57{word-spacing:-15.302089px;}
.ws4b{word-spacing:-15.169609px;}
.ws4d{word-spacing:-15.103369px;}
.ws4c{word-spacing:-13.744814px;}
.ws8{word-spacing:-13.566131px;}
.ws4e{word-spacing:-13.564936px;}
.ws59{word-spacing:-13.326493px;}
.ws5d{word-spacing:-12.312000px;}
.ws5e{word-spacing:-12.149460px;}
.ws60{word-spacing:-11.124000px;}
.ws5f{word-spacing:-10.745460px;}
.ws61{word-spacing:-10.584000px;}
.ws7{word-spacing:-8.786880px;}
.ws24{word-spacing:-0.863280px;}
.ws6f{word-spacing:-0.719280px;}
.ws79{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.324000px;}
.wsf{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.216720px;}
.wsb{word-spacing:-0.144000px;}
.ws53{word-spacing:-0.119520px;}
.ws67{word-spacing:-0.072720px;}
.ws51{word-spacing:-0.060358px;}
.wsa{word-spacing:0.000000px;}
.ws64{word-spacing:0.054540px;}
.ws52{word-spacing:0.060358px;}
.ws77{word-spacing:0.072720px;}
.ws63{word-spacing:0.108000px;}
.ws54{word-spacing:0.119520px;}
.ws25{word-spacing:0.132480px;}
.wsc{word-spacing:0.144000px;}
.ws22{word-spacing:0.216720px;}
.ws26{word-spacing:0.239040px;}
.ws5b{word-spacing:0.288000px;}
.ws9{word-spacing:0.421200px;}
.ws16{word-spacing:0.432000px;}
.ws39{word-spacing:0.504000px;}
.ws11{word-spacing:0.576000px;}
.ws2a{word-spacing:0.719280px;}
.ws7a{word-spacing:0.792000px;}
.ws68{word-spacing:0.936000px;}
.ws46{word-spacing:1.008720px;}
.ws7c{word-spacing:1.080000px;}
.wsd{word-spacing:1.296720px;}
.ws6c{word-spacing:1.368000px;}
.ws7f{word-spacing:1.440000px;}
.ws65{word-spacing:1.782000px;}
.ws17{word-spacing:2.016000px;}
.ws70{word-spacing:2.160000px;}
.ws74{word-spacing:2.304000px;}
.ws23{word-spacing:2.735280px;}
.ws30{word-spacing:3.456000px;}
.ws3d{word-spacing:3.600000px;}
.ws19{word-spacing:4.176000px;}
.ws80{word-spacing:4.320000px;}
.ws18{word-spacing:4.608000px;}
.ws6b{word-spacing:4.680000px;}
.ws1b{word-spacing:4.895280px;}
.ws58{word-spacing:5.040720px;}
.ws1a{word-spacing:5.616000px;}
.ws2e{word-spacing:5.831280px;}
.ws1c{word-spacing:6.336000px;}
.ws81{word-spacing:6.480000px;}
.ws82{word-spacing:6.624000px;}
.ws2d{word-spacing:7.056720px;}
.ws44{word-spacing:7.200720px;}
.ws14{word-spacing:7.776000px;}
.ws43{word-spacing:8.064000px;}
.ws45{word-spacing:8.208000px;}
.ws13{word-spacing:8.496000px;}
.wse{word-spacing:9.216720px;}
.ws35{word-spacing:9.936000px;}
.ws29{word-spacing:10.655280px;}
.ws37{word-spacing:10.943280px;}
.ws31{word-spacing:11.376000px;}
.ws84{word-spacing:11.520000px;}
.ws86{word-spacing:11.879280px;}
.ws12{word-spacing:12.096000px;}
.ws2b{word-spacing:12.815280px;}
.ws38{word-spacing:12.959280px;}
.ws34{word-spacing:13.248720px;}
.ws2c{word-spacing:13.536000px;}
.ws10{word-spacing:14.256000px;}
.ws4f{word-spacing:14.975280px;}
.ws2f{word-spacing:15.696000px;}
.ws21{word-spacing:16.416000px;}
.ws7d{word-spacing:16.560000px;}
.ws36{word-spacing:17.136720px;}
.ws66{word-spacing:17.568000px;}
.ws32{word-spacing:17.856000px;}
.ws69{word-spacing:18.144000px;}
.ws1e{word-spacing:18.576000px;}
.ws78{word-spacing:19.080000px;}
.ws1d{word-spacing:19.296720px;}
.ws75{word-spacing:19.440000px;}
.ws1f{word-spacing:19.728000px;}
.ws15{word-spacing:20.016000px;}
.ws20{word-spacing:20.520000px;}
.ws33{word-spacing:21.456000px;}
.ws83{word-spacing:21.600000px;}
.ws41{word-spacing:21.744000px;}
.ws47{word-spacing:21.888000px;}
.ws40{word-spacing:22.176000px;}
.ws42{word-spacing:22.608000px;}
.ws3a{word-spacing:22.895280px;}
.ws3f{word-spacing:23.616000px;}
.ws88{word-spacing:23.760000px;}
.ws5a{word-spacing:25.056720px;}
.ws7e{word-spacing:25.560000px;}
.ws76{word-spacing:25.776000px;}
.ws3c{word-spacing:26.496000px;}
.ws3b{word-spacing:28.655280px;}
.ws48{word-spacing:29.376000px;}
.ws3e{word-spacing:30.096000px;}
.ws50{word-spacing:32.256000px;}
.ws49{word-spacing:32.975280px;}
.ws4a{word-spacing:33.696000px;}
.ws89{word-spacing:35.136720px;}
.ws5c{word-spacing:37.296720px;}
.ws7b{word-spacing:38.735280px;}
.ws72{word-spacing:82.799280px;}
.ws71{word-spacing:83.376000px;}
.ws73{word-spacing:83.808000px;}
.ws6e{word-spacing:155.088720px;}
.ws6d{word-spacing:155.376000px;}
._3{margin-left:-16.415880px;}
._b{margin-left:-11.956967px;}
._13{margin-left:-8.968710px;}
._18{margin-left:-5.214142px;}
._9{margin-left:-2.191690px;}
._1{margin-left:-1.179359px;}
._0{width:1.010879px;}
._2{width:2.269317px;}
._8{width:3.818881px;}
._7{width:5.124951px;}
._d{width:6.132279px;}
._14{width:7.132349px;}
._5{width:8.235359px;}
._4{width:9.302388px;}
._f{width:10.628661px;}
._a{width:12.525001px;}
._c{width:13.875138px;}
._e{width:17.569380px;}
._12{width:19.350718px;}
._6{width:20.460951px;}
._11{width:22.203359px;}
._10{width:27.679690px;}
._16{width:73.316341px;}
._15{width:77.895543px;}
._17{width:83.313400px;}
.fc1{color:rgb(155,187,89);}
.fc2{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.239940px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760060px;}
.fs3{font-size:66.239940px;}
.fs7{font-size:71.999820px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.239940px;}
.y0{bottom:0.000000px;}
.y164{bottom:7.559955px;}
.y135{bottom:7.739970px;}
.y134{bottom:9.899970px;}
.y163{bottom:10.080000px;}
.y142{bottom:10.979910px;}
.y14a{bottom:10.979925px;}
.y13b{bottom:10.980000px;}
.y138{bottom:10.980015px;}
.y145{bottom:10.980105px;}
.y215{bottom:21.833645px;}
.y101{bottom:23.759940px;}
.y118{bottom:23.759985px;}
.y214{bottom:25.327496px;}
.y2a{bottom:27.000000px;}
.y12f{bottom:45.360075px;}
.y12e{bottom:45.539985px;}
.y15e{bottom:45.540030px;}
.y15d{bottom:45.720015px;}
.y29{bottom:110.338722px;}
.y1ee{bottom:110.881620px;}
.yfd{bottom:115.021800px;}
.ya1{bottom:115.743975px;}
.yd2{bottom:116.094403px;}
.y1a3{bottom:120.602535px;}
.y171{bottom:126.170985px;}
.y1dd{bottom:128.161620px;}
.y1c9{bottom:128.163960px;}
.y84{bottom:128.164335px;}
.y212{bottom:128.703735px;}
.y57{bottom:130.864335px;}
.y1ed{bottom:131.581440px;}
.yd1{bottom:133.380911px;}
.yfc{bottom:135.541800px;}
.y28{bottom:136.260000px;}
.ya0{bottom:136.443795px;}
.y1a2{bottom:141.302355px;}
.y170{bottom:141.655485px;}
.y1c8{bottom:148.863780px;}
.y211{bottom:149.403735px;}
.ybf{bottom:151.563975px;}
.y56{bottom:151.564155px;}
.y27{bottom:154.620000px;}
.yfb{bottom:156.241620px;}
.y16f{bottom:157.139985px;}
.y9f{bottom:157.143615px;}
.y12c{bottom:157.501440px;}
.yd0{bottom:160.918570px;}
.y1a1{bottom:161.822355px;}
.y1dc{bottom:169.561260px;}
.y83{bottom:169.563975px;}
.y210{bottom:169.923735px;}
.y55{bottom:172.084155px;}
.ybe{bottom:172.084335px;}
.y26{bottom:172.800015px;}
.y1ec{bottom:172.801440px;}
.y105{bottom:176.400000px;}
.yfa{bottom:176.941440px;}
.y12b{bottom:178.201800px;}
.y16e{bottom:181.620000px;}
.y1a0{bottom:182.522175px;}
.y25{bottom:184.139985px;}
.ycf{bottom:188.633683px;}
.y1db{bottom:190.081440px;}
.y1c7{bottom:190.083600px;}
.y82{bottom:190.084515px;}
.y54{bottom:192.783975px;}
.ybd{bottom:192.784155px;}
.y1eb{bottom:193.501260px;}
.y9e{bottom:198.363615px;}
.y12a{bottom:198.721800px;}
.y19f{bottom:203.221995px;}
.yce{bottom:205.738585px;}
.y16d{bottom:210.240000px;}
.y1da{bottom:210.781260px;}
.y1c6{bottom:210.783600px;}
.y81{bottom:210.784335px;}
.y20f{bottom:211.323555px;}
.ybc{bottom:213.483975px;}
.yf9{bottom:218.161260px;}
.y9d{bottom:219.063615px;}
.y129{bottom:219.421620px;}
.y19e{bottom:223.921815px;}
.y1c5{bottom:231.483420px;}
.y80{bottom:231.484155px;}
.y20e{bottom:232.023375px;}
.ycd{bottom:233.460911px;}
.y53{bottom:234.183615px;}
.ybb{bottom:234.183795px;}
.y1ea{bottom:234.901080px;}
.yf8{bottom:238.861440px;}
.y16c{bottom:239.040000px;}
.y9c{bottom:239.763435px;}
.y128{bottom:240.121440px;}
.y19d{bottom:244.441815px;}
.y24{bottom:245.163195px;}
.y1d9{bottom:252.180900px;}
.y7f{bottom:252.183975px;}
.yba{bottom:254.703795px;}
.y52{bottom:254.704155px;}
.y1e9{bottom:255.421080px;}
.yf7{bottom:259.561260px;}
.y9b{bottom:260.463255px;}
.y127{bottom:260.821260px;}
.ycc{bottom:260.994388px;}
.y16b{bottom:263.519985px;}
.y19c{bottom:265.141635px;}
.y23{bottom:265.863015px;}
.y1d8{bottom:272.701080px;}
.y1c4{bottom:272.703240px;}
.y7e{bottom:272.703975px;}
.y20d{bottom:273.243195px;}
.yb9{bottom:275.403615px;}
.y51{bottom:275.403975px;}
.ycb{bottom:278.280896px;}
.yf6{bottom:280.261080px;}
.y9a{bottom:280.983255px;}
.y126{bottom:281.341260px;}
.y19b{bottom:285.841455px;}
.y16a{bottom:288.000000px;}
.y1d7{bottom:293.400900px;}
.y1c3{bottom:293.403240px;}
.y7d{bottom:293.403795px;}
.y20c{bottom:293.943195px;}
.yb8{bottom:296.103435px;}
.y50{bottom:296.103795px;}
.y1e8{bottom:296.820720px;}
.yf5{bottom:300.781080px;}
.y99{bottom:301.683075px;}
.y125{bottom:302.041080px;}
.yca{bottom:305.814418px;}
.y22{bottom:307.083375px;}
.y169{bottom:312.479985px;}
.y1d6{bottom:314.100720px;}
.y1c2{bottom:314.103060px;}
.y7c{bottom:314.103615px;}
.y20b{bottom:314.643015px;}
.yb7{bottom:316.623435px;}
.y4f{bottom:316.623795px;}
.y1e7{bottom:317.520720px;}
.yf4{bottom:321.480900px;}
.y98{bottom:322.383075px;}
.y124{bottom:322.740900px;}
.yc9{bottom:323.100896px;}
.y19a{bottom:327.061275px;}
.y21{bottom:327.783195px;}
.y7b{bottom:334.623615px;}
.y20a{bottom:335.163015px;}
.y168{bottom:336.960000px;}
.y4e{bottom:337.323615px;}
.yf3{bottom:342.180720px;}
.y123{bottom:343.440720px;}
.y199{bottom:347.761455px;}
.y20{bottom:348.483015px;}
.yc8{bottom:350.638570px;}
.y1d5{bottom:355.320540px;}
.y1c1{bottom:355.322880px;}
.y7a{bottom:355.323435px;}
.y97{bottom:357.843255px;}
.yb6{bottom:358.023255px;}
.y4d{bottom:358.023435px;}
.y1e6{bottom:358.740540px;}
.y167{bottom:361.439985px;}
.yf2{bottom:362.880540px;}
.y122{bottom:363.960720px;}
.y198{bottom:368.461275px;}
.y1f{bottom:369.182835px;}
.y1d4{bottom:376.020540px;}
.y1c0{bottom:376.022880px;}
.y209{bottom:376.562835px;}
.yc7{bottom:378.360926px;}
.yb5{bottom:378.723075px;}
.y4c{bottom:378.723255px;}
.y1e5{bottom:379.440540px;}
.y121{bottom:384.660540px;}
.y166{bottom:385.920000px;}
.y197{bottom:389.161095px;}
.y1e{bottom:389.702835px;}
.y1bf{bottom:396.722700px;}
.y79{bottom:396.723075px;}
.y208{bottom:397.262835px;}
.yb4{bottom:399.243075px;}
.y4b{bottom:399.243255px;}
.yf1{bottom:404.100540px;}
.yc6{bottom:405.900896px;}
.y196{bottom:409.681095px;}
.y1d{bottom:410.402655px;}
.y165{bottom:410.580000px;}
.y1d3{bottom:417.240360px;}
.y1be{bottom:417.242700px;}
.y78{bottom:417.243795px;}
.y207{bottom:417.782835px;}
.y4a{bottom:419.943075px;}
.y1e4{bottom:420.660360px;}
.yf0{bottom:424.800540px;}
.y120{bottom:426.060360px;}
.y162{bottom:428.400015px;}
.y195{bottom:430.380915px;}
.y1c{bottom:431.102475px;}
.yc5{bottom:433.438585px;}
.y1d2{bottom:437.940360px;}
.y77{bottom:437.943615px;}
.y49{bottom:440.642895px;}
.y1e3{bottom:441.360180px;}
.yef{bottom:445.500360px;}
.y11f{bottom:446.580540px;}
.y194{bottom:451.080735px;}
.y15c{bottom:451.439985px;}
.y1b{bottom:451.802295px;}
.y1d1{bottom:458.640180px;}
.y1bd{bottom:458.642520px;}
.y76{bottom:458.643435px;}
.y206{bottom:459.182475px;}
.yc4{bottom:461.160000px;}
.y160{bottom:461.339865px;}
.y48{bottom:461.342715px;}
.yb3{bottom:461.342895px;}
.y1e2{bottom:462.060180px;}
.yee{bottom:466.020360px;}
.y11e{bottom:467.280360px;}
.y161{bottom:470.155365px;}
.y1a{bottom:472.322295px;}
.y15f{bottom:479.160000px;}
.y1bc{bottom:479.342880px;}
.y75{bottom:479.343255px;}
.y205{bottom:479.882295px;}
.y96{bottom:481.862715px;}
.yb2{bottom:481.862895px;}
.y1e1{bottom:482.760000px;}
.yc3{bottom:488.700030px;}
.y193{bottom:492.300555px;}
.y19{bottom:493.022115px;}
.y1d0{bottom:499.862715px;}
.y1bb{bottom:499.862880px;}
.y74{bottom:499.863255px;}
.y204{bottom:500.402295px;}
.y18d{bottom:501.841770px;}
.y1e0{bottom:502.379970px;}
.y47{bottom:502.562535px;}
.yb1{bottom:502.562715px;}
.yed{bottom:507.420000px;}
.y11d{bottom:508.680000px;}
.y192{bottom:513.000735px;}
.y18{bottom:513.721935px;}
.y1cf{bottom:520.562535px;}
.y1ba{bottom:520.562700px;}
.y1df{bottom:520.562715px;}
.y73{bottom:520.563075px;}
.yb0{bottom:523.262535px;}
.y46{bottom:523.262895px;}
.yec{bottom:528.120540px;}
.y11c{bottom:529.200000px;}
.y191{bottom:533.700555px;}
.y18c{bottom:540.542850px;}
.y1b9{bottom:541.262520px;}
.y1ce{bottom:541.262535px;}
.y72{bottom:541.262895px;}
.y203{bottom:541.802115px;}
.y45{bottom:543.962715px;}
.yeb{bottom:548.640540px;}
.y15b{bottom:550.260000px;}
.y190{bottom:554.220555px;}
.y17{bottom:554.941755px;}
.y18b{bottom:561.242670px;}
.y1b8{bottom:561.962340px;}
.yc2{bottom:561.962355px;}
.y71{bottom:561.962715px;}
.y202{bottom:562.501935px;}
.yaf{bottom:564.482355px;}
.y44{bottom:564.482715px;}
.y11b{bottom:567.899820px;}
.yea{bottom:569.340360px;}
.y18f{bottom:574.920375px;}
.y15a{bottom:576.544485px;}
.y18a{bottom:581.942490px;}
.y1b7{bottom:582.482340px;}
.y95{bottom:582.482355px;}
.y70{bottom:582.482715px;}
.y43{bottom:585.182535px;}
.ye9{bottom:590.040180px;}
.y11a{bottom:591.660000px;}
.y159{bottom:598.859985px;}
.y1b6{bottom:603.182160px;}
.y94{bottom:603.182355px;}
.y6f{bottom:603.182535px;}
.y201{bottom:603.721935px;}
.y42{bottom:605.882355px;}
.ye8{bottom:610.740000px;}
.y117{bottom:613.260000px;}
.y18e{bottom:616.320015px;}
.y16{bottom:617.042295px;}
.y119{bottom:619.740000px;}
.y189{bottom:623.162310px;}
.y158{bottom:623.875485px;}
.y1b5{bottom:623.881980px;}
.y93{bottom:623.882175px;}
.y6e{bottom:623.882355px;}
.y200{bottom:624.421755px;}
.y41{bottom:626.582175px;}
.y116{bottom:628.379970px;}
.ye7{bottom:631.260000px;}
.y15{bottom:637.562295px;}
.y157{bottom:639.359985px;}
.y188{bottom:643.862130px;}
.y1b4{bottom:644.581800px;}
.y92{bottom:644.581995px;}
.y6d{bottom:644.582175px;}
.y1cd{bottom:644.582535px;}
.y1ff{bottom:645.121575px;}
.y40{bottom:647.102175px;}
.y104{bottom:651.420000px;}
.ye6{bottom:651.960540px;}
.y156{bottom:656.459970px;}
.y115{bottom:657.901290px;}
.y155{bottom:663.844290px;}
.y187{bottom:664.561950px;}
.y1b3{bottom:665.101800px;}
.y91{bottom:665.101995px;}
.y6c{bottom:665.102175px;}
.y1cc{bottom:665.102535px;}
.y3f{bottom:667.801995px;}
.ye5{bottom:672.660360px;}
.y114{bottom:675.186887px;}
.y14{bottom:678.961935px;}
.y1b2{bottom:685.801620px;}
.y6b{bottom:685.801995px;}
.y90{bottom:685.802355px;}
.y1fe{bottom:686.341575px;}
.y154{bottom:688.319925px;}
.y3e{bottom:688.501815px;}
.ye4{bottom:693.360180px;}
.y113{bottom:695.340818px;}
.y10c{bottom:695.347254px;}
.y13{bottom:699.661755px;}
.y153{bottom:703.804425px;}
.y186{bottom:705.781770px;}
.yc1{bottom:706.501815px;}
.y6a{bottom:706.501995px;}
.y8f{bottom:706.502175px;}
.y1fd{bottom:707.041575px;}
.yae{bottom:709.201635px;}
.y112{bottom:712.626415px;}
.y10b{bottom:712.632852px;}
.ye3{bottom:713.880180px;}
.y12{bottom:720.181755px;}
.y185{bottom:726.481590px;}
.y1b1{bottom:727.201440px;}
.y69{bottom:727.201815px;}
.y8e{bottom:727.201995px;}
.y152{bottom:728.279925px;}
.y3d{bottom:729.721635px;}
.yad{bottom:729.721995px;}
.y111{bottom:732.780495px;}
.y10a{bottom:732.786783px;}
.y11{bottom:740.881575px;}
.y103{bottom:742.859985px;}
.y151{bottom:743.939925px;}
.y184{bottom:747.181410px;}
.y1b0{bottom:747.721620px;}
.y213{bottom:747.721635px;}
.y68{bottom:747.721815px;}
.y8d{bottom:747.721995px;}
.y1fc{bottom:748.261395px;}
.y110{bottom:750.066093px;}
.y109{bottom:750.072380px;}
.yac{bottom:750.421815px;}
.y3c{bottom:750.421995px;}
.ye2{bottom:755.279985px;}
.y10{bottom:761.581395px;}
.y183{bottom:767.701410px;}
.y150{bottom:768.415560px;}
.y1af{bottom:768.421440px;}
.y67{bottom:768.421635px;}
.y8c{bottom:768.421815px;}
.y1fb{bottom:768.961215px;}
.y10f{bottom:770.220173px;}
.y108{bottom:770.226460px;}
.yab{bottom:771.121635px;}
.y3b{bottom:771.121815px;}
.ye1{bottom:775.980570px;}
.yf{bottom:782.281215px;}
.y14f{bottom:783.900060px;}
.y182{bottom:788.401230px;}
.y1ae{bottom:789.121260px;}
.y1de{bottom:789.121455px;}
.y8b{bottom:789.121635px;}
.y1fa{bottom:789.661035px;}
.y10e{bottom:790.553683px;}
.y107{bottom:790.559970px;}
.yaa{bottom:791.821455px;}
.y3a{bottom:791.821635px;}
.ye0{bottom:796.500570px;}
.y14e{bottom:801.000000px;}
.ye{bottom:802.801215px;}
.y10d{bottom:807.660000px;}
.y14d{bottom:808.379970px;}
.y1ad{bottom:809.821080px;}
.y66{bottom:809.821455px;}
.y106{bottom:810.719970px;}
.ya9{bottom:812.341455px;}
.y39{bottom:812.341635px;}
.ydf{bottom:817.200390px;}
.yd{bottom:823.501035px;}
.y14c{bottom:825.480015px;}
.y181{bottom:829.800870px;}
.y8a{bottom:830.341455px;}
.y65{bottom:830.341995px;}
.y1f9{bottom:830.881035px;}
.y14b{bottom:832.859985px;}
.y38{bottom:833.041455px;}
.yde{bottom:837.900210px;}
.y100{bottom:842.400060px;}
.yc{bottom:844.200855px;}
.y102{bottom:848.879970px;}
.y149{bottom:849.960015px;}
.y180{bottom:850.320870px;}
.y1ac{bottom:851.040900px;}
.y89{bottom:851.041455px;}
.y64{bottom:851.041815px;}
.y1f8{bottom:851.580855px;}
.y37{bottom:853.741275px;}
.y148{bottom:857.340000px;}
.yff{bottom:857.519985px;}
.yb{bottom:864.900675px;}
.y17f{bottom:871.020690px;}
.y1ab{bottom:871.741080px;}
.yc0{bottom:871.741095px;}
.y88{bottom:871.741275px;}
.y63{bottom:871.741635px;}
.y147{bottom:874.439940px;}
.y36{bottom:874.441095px;}
.ydd{bottom:879.119940px;}
.y146{bottom:881.820000px;}
.ya{bottom:885.420675px;}
.y17e{bottom:891.720510px;}
.y1aa{bottom:892.440900px;}
.ya8{bottom:892.441095px;}
.y62{bottom:892.441455px;}
.y1f7{bottom:892.800675px;}
.y35{bottom:894.961095px;}
.y144{bottom:898.919955px;}
.ydc{bottom:899.820120px;}
.y143{bottom:906.300015px;}
.y17d{bottom:912.420330px;}
.y1a9{bottom:912.960900px;}
.y87{bottom:912.961095px;}
.ya7{bottom:912.961275px;}
.y61{bottom:912.961455px;}
.y1f6{bottom:913.500675px;}
.ydb{bottom:920.519940px;}
.y141{bottom:923.400060px;}
.y9{bottom:926.820315px;}
.y140{bottom:930.779940px;}
.y17c{bottom:932.940330px;}
.y1a8{bottom:933.660720px;}
.y86{bottom:933.661095px;}
.y60{bottom:933.661275px;}
.y34{bottom:936.360735px;}
.yda{bottom:941.219760px;}
.y8{bottom:947.520135px;}
.y13f{bottom:947.879970px;}
.y17b{bottom:953.640150px;}
.y1a7{bottom:954.360540px;}
.y1cb{bottom:954.360735px;}
.y85{bottom:954.360915px;}
.y5f{bottom:954.361095px;}
.y1f5{bottom:954.900495px;}
.y13e{bottom:955.259955px;}
.y33{bottom:957.061095px;}
.y7{bottom:968.040135px;}
.y13d{bottom:972.359985px;}
.y17a{bottom:974.520150px;}
.y1a6{bottom:975.060360px;}
.ya6{bottom:975.060735px;}
.y5e{bottom:975.060915px;}
.y1f4{bottom:975.420495px;}
.y32{bottom:977.581095px;}
.y13c{bottom:979.739955px;}
.yd9{bottom:985.499760px;}
.y6{bottom:988.740195px;}
.y179{bottom:995.219970px;}
.y1a5{bottom:995.580360px;}
.ya5{bottom:995.580735px;}
.y5d{bottom:995.580915px;}
.y13a{bottom:996.840000px;}
.y31{bottom:998.280915px;}
.y139{bottom:1004.219970px;}
.yd8{bottom:1016.279940px;}
.ya4{bottom:1016.280555px;}
.y5c{bottom:1016.280735px;}
.y1f3{bottom:1016.820135px;}
.y30{bottom:1018.980735px;}
.y178{bottom:1019.515500px;}
.y137{bottom:1021.320000px;}
.y136{bottom:1028.699985px;}
.y5{bottom:1030.140165px;}
.y177{bottom:1035.000000px;}
.y1a4{bottom:1036.980180px;}
.ya3{bottom:1036.980555px;}
.y1f2{bottom:1037.520135px;}
.y2f{bottom:1039.680555px;}
.yd7{bottom:1046.158002px;}
.y133{bottom:1046.519985px;}
.y4{bottom:1050.660165px;}
.y5b{bottom:1057.680375px;}
.yfe{bottom:1057.680555px;}
.y1f1{bottom:1058.040135px;}
.y176{bottom:1059.480015px;}
.y2e{bottom:1060.200555px;}
.yd6{bottom:1064.336380px;}
.y12d{bottom:1069.739955px;}
.y1ca{bottom:1078.200375px;}
.y5a{bottom:1078.200555px;}
.y1f0{bottom:1078.739955px;}
.y131{bottom:1079.635305px;}
.y2d{bottom:1080.900375px;}
.y175{bottom:1083.955440px;}
.y132{bottom:1088.464440px;}
.y3{bottom:1092.059970px;}
.yd5{bottom:1092.233683px;}
.y130{bottom:1097.279940px;}
.ya2{bottom:1098.900195px;}
.y59{bottom:1098.900375px;}
.y174{bottom:1099.439940px;}
.y1ef{bottom:1099.794288px;}
.y2c{bottom:1101.600195px;}
.yd4{bottom:1109.338555px;}
.y2{bottom:1113.306272px;}
.y58{bottom:1119.600195px;}
.y173{bottom:1124.095455px;}
.yd3{bottom:1137.059970px;}
.y1{bottom:1137.419955px;}
.y172{bottom:1139.579955px;}
.y2b{bottom:1140.300015px;}
.h1a{height:22.320000px;}
.h22{height:22.321500px;}
.h1d{height:24.480015px;}
.h1c{height:24.481500px;}
.h5{height:26.938828px;}
.h13{height:37.440015px;}
.h6{height:41.406018px;}
.h4{height:45.895740px;}
.h17{height:52.998047px;}
.h27{height:56.879408px;}
.h18{height:57.618000px;}
.h16{height:57.780000px;}
.h20{height:57.960000px;}
.h1b{height:58.536000px;}
.h26{height:62.327875px;}
.h12{height:63.763984px;}
.h7{height:70.664062px;}
.h9{height:70.678016px;}
.ha{height:70.683616px;}
.hb{height:70.683676px;}
.hf{height:70.683736px;}
.h11{height:70.686009px;}
.hc{height:70.700285px;}
.hd{height:70.700465px;}
.h10{height:70.703105px;}
.he{height:70.703225px;}
.h28{height:75.093562px;}
.h3{height:76.824000px;}
.h25{height:78.047280px;}
.h8{height:78.048000px;}
.h24{height:88.559460px;}
.h2{height:89.884016px;}
.h14{height:98.324044px;}
.h1e{height:102.977460px;}
.h1f{height:102.978000px;}
.h23{height:119.556000px;}
.h21{height:164.160540px;}
.h19{height:164.215080px;}
.h15{height:190.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:42.480015px;}
.wa{width:42.660000px;}
.wb{width:50.941500px;}
.w7{width:55.260000px;}
.w9{width:59.580000px;}
.w6{width:59.581515px;}
.w10{width:70.380000px;}
.w11{width:70.558500px;}
.wf{width:70.559985px;}
.we{width:70.920000px;}
.w12{width:70.921515px;}
.wd{width:141.840000px;}
.w5{width:157.321515px;}
.w13{width:178.451575px;}
.wc{width:186.660000px;}
.w3{width:190.620000px;}
.w4{width:191.160000px;}
.w2{width:194.939985px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:5.939985px;}
.x1b{left:7.739985px;}
.x30{left:10.439985px;}
.x2f{left:12.420000px;}
.xe{left:14.400015px;}
.x2e{left:15.839985px;}
.x26{left:18.180045px;}
.x2b{left:21.420000px;}
.x24{left:24.480000px;}
.x22{left:25.740000px;}
.x32{left:39.959985px;}
.x1e{left:47.879985px;}
.x3c{left:58.725565px;}
.x1c{left:119.520015px;}
.x7{left:127.619805px;}
.x1a{left:135.720000px;}
.x9{left:138.239100px;}
.x10{left:142.020015px;}
.xc{left:143.280000px;}
.x1{left:149.220000px;}
.xb{left:159.659820px;}
.xa{left:181.620360px;}
.xd{left:191.700000px;}
.x13{left:197.819985px;}
.x12{left:208.439985px;}
.x2{left:224.467326px;}
.xf{left:276.660000px;}
.x31{left:306.180000px;}
.x1d{left:310.680000px;}
.x34{left:326.879985px;}
.x33{left:333.359985px;}
.x20{left:339.120015px;}
.x1f{left:345.600015px;}
.x23{left:370.260000px;}
.x36{left:377.100015px;}
.x14{left:387.359985px;}
.x15{left:393.480015px;}
.x16{left:404.102366px;}
.x25{left:425.519985px;}
.x3{left:446.400015px;}
.x37{left:448.379970px;}
.x8{left:460.050015px;}
.x27{left:468.000000px;}
.x38{left:518.939985px;}
.x28{left:527.580000px;}
.x17{left:578.700030px;}
.x29{left:582.840000px;}
.x19{left:584.820000px;}
.x3b{left:588.361488px;}
.x39{left:590.039985px;}
.x18{left:595.439985px;}
.x35{left:602.104485px;}
.x5{left:607.319985px;}
.x6{left:621.180165px;}
.x2a{left:625.500000px;}
.x21{left:641.529000px;}
.x3a{left:660.599985px;}
.x2c{left:676.439985px;}
.x2d{left:731.700030px;}
.x4{left:765.359985px;}
@media print{
.va{vertical-align:-100.480640pt;}
.v5{vertical-align:-84.480000pt;}
.v4{vertical-align:-79.360640pt;}
.v1{vertical-align:-73.599360pt;}
.v3{vertical-align:-26.880053pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.999413pt;}
.vc{vertical-align:27.503520pt;}
.v6{vertical-align:30.720053pt;}
.v9{vertical-align:40.319520pt;}
.vb{vertical-align:55.056000pt;}
.v7{vertical-align:62.736480pt;}
.v8{vertical-align:94.752960pt;}
.ls77{letter-spacing:-1.584000pt;}
.ls79{letter-spacing:-1.536000pt;}
.ls76{letter-spacing:-1.392480pt;}
.ls78{letter-spacing:-1.056000pt;}
.ls72{letter-spacing:-1.024640pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.639360pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls4e{letter-spacing:-0.265600pt;}
.ls10{letter-spacing:-0.192640pt;}
.lse{letter-spacing:-0.149760pt;}
.ls74{letter-spacing:-0.144480pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064640pt;}
.ls17{letter-spacing:-0.053651pt;}
.ls75{letter-spacing:-0.048480pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.000589pt;}
.ls40{letter-spacing:0.053120pt;}
.ls19{letter-spacing:0.053651pt;}
.ls3f{letter-spacing:0.059469pt;}
.ls83{letter-spacing:0.064640pt;}
.ls37{letter-spacing:0.106240pt;}
.ls30{letter-spacing:0.124800pt;}
.ls7f{letter-spacing:0.127360pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.159360pt;}
.ls18{letter-spacing:0.159891pt;}
.ls4a{letter-spacing:0.177229pt;}
.ls24{letter-spacing:0.192000pt;}
.ls81{letter-spacing:0.192640pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.256640pt;}
.ls1{letter-spacing:0.286744pt;}
.ls73{letter-spacing:0.288000pt;}
.ls41{letter-spacing:0.680948pt;}
.ls1c{letter-spacing:0.768640pt;}
.ls25{letter-spacing:1.403520pt;}
.ls28{letter-spacing:1.407360pt;}
.ls20{letter-spacing:1.408000pt;}
.ls2b{letter-spacing:2.046720pt;}
.ls7e{letter-spacing:2.047360pt;}
.ls2c{letter-spacing:2.048000pt;}
.ls34{letter-spacing:2.178611pt;}
.ls84{letter-spacing:2.688000pt;}
.ls2f{letter-spacing:2.688640pt;}
.ls32{letter-spacing:3.328000pt;}
.ls1f{letter-spacing:3.328640pt;}
.ls1a{letter-spacing:3.967360pt;}
.ls8{letter-spacing:3.968000pt;}
.ls2d{letter-spacing:4.608000pt;}
.ls49{letter-spacing:4.615680pt;}
.ls4d{letter-spacing:5.248000pt;}
.ls9{letter-spacing:5.888640pt;}
.ls31{letter-spacing:6.528000pt;}
.ls42{letter-spacing:7.168000pt;}
.ls5{letter-spacing:7.808000pt;}
.ls6{letter-spacing:7.808640pt;}
.ls26{letter-spacing:7.809920pt;}
.ls3{letter-spacing:8.448000pt;}
.ls21{letter-spacing:9.088000pt;}
.ls2a{letter-spacing:9.728000pt;}
.ls27{letter-spacing:10.368000pt;}
.ls4{letter-spacing:11.007360pt;}
.lsc{letter-spacing:11.008000pt;}
.ls1e{letter-spacing:11.648000pt;}
.ls1b{letter-spacing:11.651200pt;}
.ls45{letter-spacing:12.927360pt;}
.ls33{letter-spacing:13.568000pt;}
.ls48{letter-spacing:14.209280pt;}
.lsb{letter-spacing:14.848640pt;}
.ls2e{letter-spacing:15.488000pt;}
.ls80{letter-spacing:16.127360pt;}
.ls46{letter-spacing:16.768640pt;}
.lsa{letter-spacing:17.408000pt;}
.ls29{letter-spacing:18.047360pt;}
.ls3c{letter-spacing:18.800726pt;}
.ls36{letter-spacing:18.815201pt;}
.ls35{letter-spacing:18.818665pt;}
.ls3a{letter-spacing:18.822495pt;}
.ls3d{letter-spacing:18.827648pt;}
.ls39{letter-spacing:18.840410pt;}
.ls3b{letter-spacing:18.842672pt;}
.ls38{letter-spacing:18.843032pt;}
.ls85{letter-spacing:21.248000pt;}
.ls44{letter-spacing:54.046720pt;}
.ls63{letter-spacing:56.256000pt;}
.ls47{letter-spacing:56.578558pt;}
.ls43{letter-spacing:60.928053pt;}
.ls55{letter-spacing:61.392000pt;}
.ls82{letter-spacing:74.368000pt;}
.ls56{letter-spacing:74.832000pt;}
.ls5b{letter-spacing:75.456480pt;}
.ls53{letter-spacing:76.080000pt;}
.ls5a{letter-spacing:77.999520pt;}
.ls5e{letter-spacing:90.191520pt;}
.ls54{letter-spacing:90.192000pt;}
.ls5f{letter-spacing:90.815520pt;}
.ls62{letter-spacing:90.816000pt;}
.ls4c{letter-spacing:90.942063pt;}
.ls59{letter-spacing:92.735520pt;}
.ls58{letter-spacing:94.656000pt;}
.ls51{letter-spacing:95.280000pt;}
.ls50{letter-spacing:97.872000pt;}
.ls5d{letter-spacing:106.176000pt;}
.ls61{letter-spacing:106.176480pt;}
.ls52{letter-spacing:110.640480pt;}
.ls6a{letter-spacing:115.152000pt;}
.ls67{letter-spacing:121.536000pt;}
.ls66{letter-spacing:142.032000pt;}
.ls65{letter-spacing:142.656000pt;}
.ls6d{letter-spacing:142.656480pt;}
.ls6f{letter-spacing:144.576480pt;}
.ls4f{letter-spacing:150.319947pt;}
.ls6c{letter-spacing:246.960000pt;}
.ls70{letter-spacing:260.355360pt;}
.ls6e{letter-spacing:277.056000pt;}
.ls64{letter-spacing:305.232000pt;}
.ls4b{letter-spacing:325.147420pt;}
.ls7b{letter-spacing:368.592000pt;}
.ls69{letter-spacing:403.152000pt;}
.ls5c{letter-spacing:436.230720pt;}
.ls7c{letter-spacing:458.693760pt;}
.ls68{letter-spacing:482.357280pt;}
.ls6b{letter-spacing:482.496000pt;}
.ls7d{letter-spacing:502.229760pt;}
.ls60{letter-spacing:514.373760pt;}
.ls57{letter-spacing:518.352000pt;}
.ls7a{letter-spacing:522.816000pt;}
.ls0{letter-spacing:528.128000pt;}
.ls71{letter-spacing:570.099360pt;}
.ws55{word-spacing:-53.120053pt;}
.ws2{word-spacing:-14.848000pt;}
.ws6a{word-spacing:-14.784640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.592000pt;}
.ws6{word-spacing:-14.527360pt;}
.ws27{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.399360pt;}
.ws28{word-spacing:-14.208000pt;}
.ws5{word-spacing:-14.144000pt;}
.ws56{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.952640pt;}
.ws85{word-spacing:-13.760000pt;}
.ws57{word-spacing:-13.601856pt;}
.ws4b{word-spacing:-13.484097pt;}
.ws4d{word-spacing:-13.425217pt;}
.ws4c{word-spacing:-12.217612pt;}
.ws8{word-spacing:-12.058783pt;}
.ws4e{word-spacing:-12.057721pt;}
.ws59{word-spacing:-11.845772pt;}
.ws5d{word-spacing:-10.944000pt;}
.ws5e{word-spacing:-10.799520pt;}
.ws60{word-spacing:-9.888000pt;}
.ws5f{word-spacing:-9.551520pt;}
.ws61{word-spacing:-9.408000pt;}
.ws7{word-spacing:-7.810560pt;}
.ws24{word-spacing:-0.767360pt;}
.ws6f{word-spacing:-0.639360pt;}
.ws79{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.288000pt;}
.wsf{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.192640pt;}
.wsb{word-spacing:-0.128000pt;}
.ws53{word-spacing:-0.106240pt;}
.ws67{word-spacing:-0.064640pt;}
.ws51{word-spacing:-0.053651pt;}
.wsa{word-spacing:0.000000pt;}
.ws64{word-spacing:0.048480pt;}
.ws52{word-spacing:0.053651pt;}
.ws77{word-spacing:0.064640pt;}
.ws63{word-spacing:0.096000pt;}
.ws54{word-spacing:0.106240pt;}
.ws25{word-spacing:0.117760pt;}
.wsc{word-spacing:0.128000pt;}
.ws22{word-spacing:0.192640pt;}
.ws26{word-spacing:0.212480pt;}
.ws5b{word-spacing:0.256000pt;}
.ws9{word-spacing:0.374400pt;}
.ws16{word-spacing:0.384000pt;}
.ws39{word-spacing:0.448000pt;}
.ws11{word-spacing:0.512000pt;}
.ws2a{word-spacing:0.639360pt;}
.ws7a{word-spacing:0.704000pt;}
.ws68{word-spacing:0.832000pt;}
.ws46{word-spacing:0.896640pt;}
.ws7c{word-spacing:0.960000pt;}
.wsd{word-spacing:1.152640pt;}
.ws6c{word-spacing:1.216000pt;}
.ws7f{word-spacing:1.280000pt;}
.ws65{word-spacing:1.584000pt;}
.ws17{word-spacing:1.792000pt;}
.ws70{word-spacing:1.920000pt;}
.ws74{word-spacing:2.048000pt;}
.ws23{word-spacing:2.431360pt;}
.ws30{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.200000pt;}
.ws19{word-spacing:3.712000pt;}
.ws80{word-spacing:3.840000pt;}
.ws18{word-spacing:4.096000pt;}
.ws6b{word-spacing:4.160000pt;}
.ws1b{word-spacing:4.351360pt;}
.ws58{word-spacing:4.480640pt;}
.ws1a{word-spacing:4.992000pt;}
.ws2e{word-spacing:5.183360pt;}
.ws1c{word-spacing:5.632000pt;}
.ws81{word-spacing:5.760000pt;}
.ws82{word-spacing:5.888000pt;}
.ws2d{word-spacing:6.272640pt;}
.ws44{word-spacing:6.400640pt;}
.ws14{word-spacing:6.912000pt;}
.ws43{word-spacing:7.168000pt;}
.ws45{word-spacing:7.296000pt;}
.ws13{word-spacing:7.552000pt;}
.wse{word-spacing:8.192640pt;}
.ws35{word-spacing:8.832000pt;}
.ws29{word-spacing:9.471360pt;}
.ws37{word-spacing:9.727360pt;}
.ws31{word-spacing:10.112000pt;}
.ws84{word-spacing:10.240000pt;}
.ws86{word-spacing:10.559360pt;}
.ws12{word-spacing:10.752000pt;}
.ws2b{word-spacing:11.391360pt;}
.ws38{word-spacing:11.519360pt;}
.ws34{word-spacing:11.776640pt;}
.ws2c{word-spacing:12.032000pt;}
.ws10{word-spacing:12.672000pt;}
.ws4f{word-spacing:13.311360pt;}
.ws2f{word-spacing:13.952000pt;}
.ws21{word-spacing:14.592000pt;}
.ws7d{word-spacing:14.720000pt;}
.ws36{word-spacing:15.232640pt;}
.ws66{word-spacing:15.616000pt;}
.ws32{word-spacing:15.872000pt;}
.ws69{word-spacing:16.128000pt;}
.ws1e{word-spacing:16.512000pt;}
.ws78{word-spacing:16.960000pt;}
.ws1d{word-spacing:17.152640pt;}
.ws75{word-spacing:17.280000pt;}
.ws1f{word-spacing:17.536000pt;}
.ws15{word-spacing:17.792000pt;}
.ws20{word-spacing:18.240000pt;}
.ws33{word-spacing:19.072000pt;}
.ws83{word-spacing:19.200000pt;}
.ws41{word-spacing:19.328000pt;}
.ws47{word-spacing:19.456000pt;}
.ws40{word-spacing:19.712000pt;}
.ws42{word-spacing:20.096000pt;}
.ws3a{word-spacing:20.351360pt;}
.ws3f{word-spacing:20.992000pt;}
.ws88{word-spacing:21.120000pt;}
.ws5a{word-spacing:22.272640pt;}
.ws7e{word-spacing:22.720000pt;}
.ws76{word-spacing:22.912000pt;}
.ws3c{word-spacing:23.552000pt;}
.ws3b{word-spacing:25.471360pt;}
.ws48{word-spacing:26.112000pt;}
.ws3e{word-spacing:26.752000pt;}
.ws50{word-spacing:28.672000pt;}
.ws49{word-spacing:29.311360pt;}
.ws4a{word-spacing:29.952000pt;}
.ws89{word-spacing:31.232640pt;}
.ws5c{word-spacing:33.152640pt;}
.ws7b{word-spacing:34.431360pt;}
.ws72{word-spacing:73.599360pt;}
.ws71{word-spacing:74.112000pt;}
.ws73{word-spacing:74.496000pt;}
.ws6e{word-spacing:137.856640pt;}
.ws6d{word-spacing:138.112000pt;}
._3{margin-left:-14.591893pt;}
._b{margin-left:-10.628415pt;}
._13{margin-left:-7.972187pt;}
._18{margin-left:-4.634793pt;}
._9{margin-left:-1.948169pt;}
._1{margin-left:-1.048319pt;}
._0{width:0.898559pt;}
._2{width:2.017170pt;}
._8{width:3.394561pt;}
._7{width:4.555512pt;}
._d{width:5.450915pt;}
._14{width:6.339866pt;}
._5{width:7.320319pt;}
._4{width:8.268790pt;}
._f{width:9.447699pt;}
._a{width:11.133334pt;}
._c{width:12.333456pt;}
._e{width:15.617226pt;}
._12{width:17.200639pt;}
._6{width:18.187512pt;}
._11{width:19.736319pt;}
._10{width:24.604169pt;}
._16{width:65.170081pt;}
._15{width:69.240483pt;}
._17{width:74.056356pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.879947pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120053pt;}
.fs3{font-size:58.879947pt;}
.fs7{font-size:63.999840pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.879947pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:6.719960pt;}
.y135{bottom:6.879973pt;}
.y134{bottom:8.799973pt;}
.y163{bottom:8.960000pt;}
.y142{bottom:9.759920pt;}
.y14a{bottom:9.759933pt;}
.y13b{bottom:9.760000pt;}
.y138{bottom:9.760013pt;}
.y145{bottom:9.760093pt;}
.y215{bottom:19.407685pt;}
.y101{bottom:21.119947pt;}
.y118{bottom:21.119987pt;}
.y214{bottom:22.513330pt;}
.y2a{bottom:24.000000pt;}
.y12f{bottom:40.320067pt;}
.y12e{bottom:40.479987pt;}
.y15e{bottom:40.480027pt;}
.y15d{bottom:40.640013pt;}
.y29{bottom:98.078864pt;}
.y1ee{bottom:98.561440pt;}
.yfd{bottom:102.241600pt;}
.ya1{bottom:102.883533pt;}
.yd2{bottom:103.195025pt;}
.y1a3{bottom:107.202253pt;}
.y171{bottom:112.151987pt;}
.y1dd{bottom:113.921440pt;}
.y1c9{bottom:113.923520pt;}
.y84{bottom:113.923853pt;}
.y212{bottom:114.403320pt;}
.y57{bottom:116.323853pt;}
.y1ed{bottom:116.961280pt;}
.yd1{bottom:118.560809pt;}
.yfc{bottom:120.481600pt;}
.y28{bottom:121.120000pt;}
.ya0{bottom:121.283373pt;}
.y1a2{bottom:125.602093pt;}
.y170{bottom:125.915987pt;}
.y1c8{bottom:132.323360pt;}
.y211{bottom:132.803320pt;}
.ybf{bottom:134.723533pt;}
.y56{bottom:134.723693pt;}
.y27{bottom:137.440000pt;}
.yfb{bottom:138.881440pt;}
.y16f{bottom:139.679987pt;}
.y9f{bottom:139.683213pt;}
.y12c{bottom:140.001280pt;}
.yd0{bottom:143.038729pt;}
.y1a1{bottom:143.842093pt;}
.y1dc{bottom:150.721120pt;}
.y83{bottom:150.723533pt;}
.y210{bottom:151.043320pt;}
.y55{bottom:152.963693pt;}
.ybe{bottom:152.963853pt;}
.y26{bottom:153.600013pt;}
.y1ec{bottom:153.601280pt;}
.y105{bottom:156.800000pt;}
.yfa{bottom:157.281280pt;}
.y12b{bottom:158.401600pt;}
.y16e{bottom:161.440000pt;}
.y1a0{bottom:162.241933pt;}
.y25{bottom:163.679987pt;}
.ycf{bottom:167.674385pt;}
.y1db{bottom:168.961280pt;}
.y1c7{bottom:168.963200pt;}
.y82{bottom:168.964013pt;}
.y54{bottom:171.363533pt;}
.ybd{bottom:171.363693pt;}
.y1eb{bottom:172.001120pt;}
.y9e{bottom:176.323213pt;}
.y12a{bottom:176.641600pt;}
.y19f{bottom:180.641773pt;}
.yce{bottom:182.878742pt;}
.y16d{bottom:186.880000pt;}
.y1da{bottom:187.361120pt;}
.y1c6{bottom:187.363200pt;}
.y81{bottom:187.363853pt;}
.y20f{bottom:187.843160pt;}
.ybc{bottom:189.763533pt;}
.yf9{bottom:193.921120pt;}
.y9d{bottom:194.723213pt;}
.y129{bottom:195.041440pt;}
.y19e{bottom:199.041613pt;}
.y1c5{bottom:205.763040pt;}
.y80{bottom:205.763693pt;}
.y20e{bottom:206.243000pt;}
.ycd{bottom:207.520809pt;}
.y53{bottom:208.163213pt;}
.ybb{bottom:208.163373pt;}
.y1ea{bottom:208.800960pt;}
.yf8{bottom:212.321280pt;}
.y16c{bottom:212.480000pt;}
.y9c{bottom:213.123053pt;}
.y128{bottom:213.441280pt;}
.y19d{bottom:217.281613pt;}
.y24{bottom:217.922840pt;}
.y1d9{bottom:224.160800pt;}
.y7f{bottom:224.163533pt;}
.yba{bottom:226.403373pt;}
.y52{bottom:226.403693pt;}
.y1e9{bottom:227.040960pt;}
.yf7{bottom:230.721120pt;}
.y9b{bottom:231.522893pt;}
.y127{bottom:231.841120pt;}
.ycc{bottom:231.995011pt;}
.y16b{bottom:234.239987pt;}
.y19c{bottom:235.681453pt;}
.y23{bottom:236.322680pt;}
.y1d8{bottom:242.400960pt;}
.y1c4{bottom:242.402880pt;}
.y7e{bottom:242.403533pt;}
.y20d{bottom:242.882840pt;}
.yb9{bottom:244.803213pt;}
.y51{bottom:244.803533pt;}
.ycb{bottom:247.360796pt;}
.yf6{bottom:249.120960pt;}
.y9a{bottom:249.762893pt;}
.y126{bottom:250.081120pt;}
.y19b{bottom:254.081293pt;}
.y16a{bottom:256.000000pt;}
.y1d7{bottom:260.800800pt;}
.y1c3{bottom:260.802880pt;}
.y7d{bottom:260.803373pt;}
.y20c{bottom:261.282840pt;}
.yb8{bottom:263.203053pt;}
.y50{bottom:263.203373pt;}
.y1e8{bottom:263.840640pt;}
.yf5{bottom:267.360960pt;}
.y99{bottom:268.162733pt;}
.y125{bottom:268.480960pt;}
.yca{bottom:271.835038pt;}
.y22{bottom:272.963000pt;}
.y169{bottom:277.759987pt;}
.y1d6{bottom:279.200640pt;}
.y1c2{bottom:279.202720pt;}
.y7c{bottom:279.203213pt;}
.y20b{bottom:279.682680pt;}
.yb7{bottom:281.443053pt;}
.y4f{bottom:281.443373pt;}
.y1e7{bottom:282.240640pt;}
.yf4{bottom:285.760800pt;}
.y98{bottom:286.562733pt;}
.y124{bottom:286.880800pt;}
.yc9{bottom:287.200796pt;}
.y19a{bottom:290.721133pt;}
.y21{bottom:291.362840pt;}
.y7b{bottom:297.443213pt;}
.y20a{bottom:297.922680pt;}
.y168{bottom:299.520000pt;}
.y4e{bottom:299.843213pt;}
.yf3{bottom:304.160640pt;}
.y123{bottom:305.280640pt;}
.y199{bottom:309.121293pt;}
.y20{bottom:309.762680pt;}
.yc8{bottom:311.678729pt;}
.y1d5{bottom:315.840480pt;}
.y1c1{bottom:315.842560pt;}
.y7a{bottom:315.843053pt;}
.y97{bottom:318.082893pt;}
.yb6{bottom:318.242893pt;}
.y4d{bottom:318.243053pt;}
.y1e6{bottom:318.880480pt;}
.y167{bottom:321.279987pt;}
.yf2{bottom:322.560480pt;}
.y122{bottom:323.520640pt;}
.y198{bottom:327.521133pt;}
.y1f{bottom:328.162520pt;}
.y1d4{bottom:334.240480pt;}
.y1c0{bottom:334.242560pt;}
.y209{bottom:334.722520pt;}
.yc7{bottom:336.320823pt;}
.yb5{bottom:336.642733pt;}
.y4c{bottom:336.642893pt;}
.y1e5{bottom:337.280480pt;}
.y121{bottom:341.920480pt;}
.y166{bottom:343.040000pt;}
.y197{bottom:345.920973pt;}
.y1e{bottom:346.402520pt;}
.y1bf{bottom:352.642400pt;}
.y79{bottom:352.642733pt;}
.y208{bottom:353.122520pt;}
.yb4{bottom:354.882733pt;}
.y4b{bottom:354.882893pt;}
.yf1{bottom:359.200480pt;}
.yc6{bottom:360.800796pt;}
.y196{bottom:364.160973pt;}
.y1d{bottom:364.802360pt;}
.y165{bottom:364.960000pt;}
.y1d3{bottom:370.880320pt;}
.y1be{bottom:370.882400pt;}
.y78{bottom:370.883373pt;}
.y207{bottom:371.362520pt;}
.y4a{bottom:373.282733pt;}
.y1e4{bottom:373.920320pt;}
.yf0{bottom:377.600480pt;}
.y120{bottom:378.720320pt;}
.y162{bottom:380.800013pt;}
.y195{bottom:382.560813pt;}
.y1c{bottom:383.202200pt;}
.yc5{bottom:385.278742pt;}
.y1d2{bottom:389.280320pt;}
.y77{bottom:389.283213pt;}
.y49{bottom:391.682573pt;}
.y1e3{bottom:392.320160pt;}
.yef{bottom:396.000320pt;}
.y11f{bottom:396.960480pt;}
.y194{bottom:400.960653pt;}
.y15c{bottom:401.279987pt;}
.y1b{bottom:401.602040pt;}
.y1d1{bottom:407.680160pt;}
.y1bd{bottom:407.682240pt;}
.y76{bottom:407.683053pt;}
.y206{bottom:408.162200pt;}
.yc4{bottom:409.920000pt;}
.y160{bottom:410.079880pt;}
.y48{bottom:410.082413pt;}
.yb3{bottom:410.082573pt;}
.y1e2{bottom:410.720160pt;}
.yee{bottom:414.240320pt;}
.y11e{bottom:415.360320pt;}
.y161{bottom:417.915880pt;}
.y1a{bottom:419.842040pt;}
.y15f{bottom:425.920000pt;}
.y1bc{bottom:426.082560pt;}
.y75{bottom:426.082893pt;}
.y205{bottom:426.562040pt;}
.y96{bottom:428.322413pt;}
.yb2{bottom:428.322573pt;}
.y1e1{bottom:429.120000pt;}
.yc3{bottom:434.400027pt;}
.y193{bottom:437.600493pt;}
.y19{bottom:438.241880pt;}
.y1d0{bottom:444.322413pt;}
.y1bb{bottom:444.322560pt;}
.y74{bottom:444.322893pt;}
.y204{bottom:444.802040pt;}
.y18d{bottom:446.081573pt;}
.y1e0{bottom:446.559973pt;}
.y47{bottom:446.722253pt;}
.yb1{bottom:446.722413pt;}
.yed{bottom:451.040000pt;}
.y11d{bottom:452.160000pt;}
.y192{bottom:456.000653pt;}
.y18{bottom:456.641720pt;}
.y1cf{bottom:462.722253pt;}
.y1ba{bottom:462.722400pt;}
.y1df{bottom:462.722413pt;}
.y73{bottom:462.722733pt;}
.yb0{bottom:465.122253pt;}
.y46{bottom:465.122573pt;}
.yec{bottom:469.440480pt;}
.y11c{bottom:470.400000pt;}
.y191{bottom:474.400493pt;}
.y18c{bottom:480.482533pt;}
.y1b9{bottom:481.122240pt;}
.y1ce{bottom:481.122253pt;}
.y72{bottom:481.122573pt;}
.y203{bottom:481.601880pt;}
.y45{bottom:483.522413pt;}
.yeb{bottom:487.680480pt;}
.y15b{bottom:489.120000pt;}
.y190{bottom:492.640493pt;}
.y17{bottom:493.281560pt;}
.y18b{bottom:498.882373pt;}
.y1b8{bottom:499.522080pt;}
.yc2{bottom:499.522093pt;}
.y71{bottom:499.522413pt;}
.y202{bottom:500.001720pt;}
.yaf{bottom:501.762093pt;}
.y44{bottom:501.762413pt;}
.y11b{bottom:504.799840pt;}
.yea{bottom:506.080320pt;}
.y18f{bottom:511.040333pt;}
.y15a{bottom:512.483987pt;}
.y18a{bottom:517.282213pt;}
.y1b7{bottom:517.762080pt;}
.y95{bottom:517.762093pt;}
.y70{bottom:517.762413pt;}
.y43{bottom:520.162253pt;}
.ye9{bottom:524.480160pt;}
.y11a{bottom:525.920000pt;}
.y159{bottom:532.319987pt;}
.y1b6{bottom:536.161920pt;}
.y94{bottom:536.162093pt;}
.y6f{bottom:536.162253pt;}
.y201{bottom:536.641720pt;}
.y42{bottom:538.562093pt;}
.ye8{bottom:542.880000pt;}
.y117{bottom:545.120000pt;}
.y18e{bottom:547.840013pt;}
.y16{bottom:548.482040pt;}
.y119{bottom:550.880000pt;}
.y189{bottom:553.922053pt;}
.y158{bottom:554.555987pt;}
.y1b5{bottom:554.561760pt;}
.y93{bottom:554.561933pt;}
.y6e{bottom:554.562093pt;}
.y200{bottom:555.041560pt;}
.y41{bottom:556.961933pt;}
.y116{bottom:558.559973pt;}
.ye7{bottom:561.120000pt;}
.y15{bottom:566.722040pt;}
.y157{bottom:568.319987pt;}
.y188{bottom:572.321893pt;}
.y1b4{bottom:572.961600pt;}
.y92{bottom:572.961773pt;}
.y6d{bottom:572.961933pt;}
.y1cd{bottom:572.962253pt;}
.y1ff{bottom:573.441400pt;}
.y40{bottom:575.201933pt;}
.y104{bottom:579.040000pt;}
.ye6{bottom:579.520480pt;}
.y156{bottom:583.519973pt;}
.y115{bottom:584.801146pt;}
.y155{bottom:590.083813pt;}
.y187{bottom:590.721733pt;}
.y1b3{bottom:591.201600pt;}
.y91{bottom:591.201773pt;}
.y6c{bottom:591.201933pt;}
.y1cc{bottom:591.202253pt;}
.y3f{bottom:593.601773pt;}
.ye5{bottom:597.920320pt;}
.y114{bottom:600.166122pt;}
.y14{bottom:603.521720pt;}
.y1b2{bottom:609.601440pt;}
.y6b{bottom:609.601773pt;}
.y90{bottom:609.602093pt;}
.y1fe{bottom:610.081400pt;}
.y154{bottom:611.839933pt;}
.y3e{bottom:612.001613pt;}
.ye4{bottom:616.320160pt;}
.y113{bottom:618.080727pt;}
.y10c{bottom:618.086448pt;}
.y13{bottom:621.921560pt;}
.y153{bottom:625.603933pt;}
.y186{bottom:627.361573pt;}
.yc1{bottom:628.001613pt;}
.y6a{bottom:628.001773pt;}
.y8f{bottom:628.001933pt;}
.y1fd{bottom:628.481400pt;}
.yae{bottom:630.401453pt;}
.y112{bottom:633.445702pt;}
.y10b{bottom:633.451424pt;}
.ye3{bottom:634.560160pt;}
.y12{bottom:640.161560pt;}
.y185{bottom:645.761413pt;}
.y1b1{bottom:646.401280pt;}
.y69{bottom:646.401613pt;}
.y8e{bottom:646.401773pt;}
.y152{bottom:647.359933pt;}
.y3d{bottom:648.641453pt;}
.yad{bottom:648.641773pt;}
.y111{bottom:651.360440pt;}
.y10a{bottom:651.366029pt;}
.y11{bottom:658.561400pt;}
.y103{bottom:660.319987pt;}
.y151{bottom:661.279933pt;}
.y184{bottom:664.161253pt;}
.y1b0{bottom:664.641440pt;}
.y213{bottom:664.641453pt;}
.y68{bottom:664.641613pt;}
.y8d{bottom:664.641773pt;}
.y1fc{bottom:665.121240pt;}
.y110{bottom:666.725416pt;}
.y109{bottom:666.731004pt;}
.yac{bottom:667.041613pt;}
.y3c{bottom:667.041773pt;}
.ye2{bottom:671.359987pt;}
.y10{bottom:676.961240pt;}
.y183{bottom:682.401253pt;}
.y150{bottom:683.036053pt;}
.y1af{bottom:683.041280pt;}
.y67{bottom:683.041453pt;}
.y8c{bottom:683.041613pt;}
.y1fb{bottom:683.521080pt;}
.y10f{bottom:684.640154pt;}
.y108{bottom:684.645742pt;}
.yab{bottom:685.441453pt;}
.y3b{bottom:685.441613pt;}
.ye1{bottom:689.760507pt;}
.yf{bottom:695.361080pt;}
.y14f{bottom:696.800053pt;}
.y182{bottom:700.801093pt;}
.y1ae{bottom:701.441120pt;}
.y1de{bottom:701.441293pt;}
.y8b{bottom:701.441453pt;}
.y1fa{bottom:701.920920pt;}
.y10e{bottom:702.714385pt;}
.y107{bottom:702.719973pt;}
.yaa{bottom:703.841293pt;}
.y3a{bottom:703.841453pt;}
.ye0{bottom:708.000507pt;}
.y14e{bottom:712.000000pt;}
.ye{bottom:713.601080pt;}
.y10d{bottom:717.920000pt;}
.y14d{bottom:718.559973pt;}
.y1ad{bottom:719.840960pt;}
.y66{bottom:719.841293pt;}
.y106{bottom:720.639973pt;}
.ya9{bottom:722.081293pt;}
.y39{bottom:722.081453pt;}
.ydf{bottom:726.400347pt;}
.yd{bottom:732.000920pt;}
.y14c{bottom:733.760013pt;}
.y181{bottom:737.600773pt;}
.y8a{bottom:738.081293pt;}
.y65{bottom:738.081773pt;}
.y1f9{bottom:738.560920pt;}
.y14b{bottom:740.319987pt;}
.y38{bottom:740.481293pt;}
.yde{bottom:744.800187pt;}
.y100{bottom:748.800053pt;}
.yc{bottom:750.400760pt;}
.y102{bottom:754.559973pt;}
.y149{bottom:755.520013pt;}
.y180{bottom:755.840773pt;}
.y1ac{bottom:756.480800pt;}
.y89{bottom:756.481293pt;}
.y64{bottom:756.481613pt;}
.y1f8{bottom:756.960760pt;}
.y37{bottom:758.881133pt;}
.y148{bottom:762.080000pt;}
.yff{bottom:762.239987pt;}
.yb{bottom:768.800600pt;}
.y17f{bottom:774.240613pt;}
.y1ab{bottom:774.880960pt;}
.yc0{bottom:774.880973pt;}
.y88{bottom:774.881133pt;}
.y63{bottom:774.881453pt;}
.y147{bottom:777.279947pt;}
.y36{bottom:777.280973pt;}
.ydd{bottom:781.439947pt;}
.y146{bottom:783.840000pt;}
.ya{bottom:787.040600pt;}
.y17e{bottom:792.640453pt;}
.y1aa{bottom:793.280800pt;}
.ya8{bottom:793.280973pt;}
.y62{bottom:793.281293pt;}
.y1f7{bottom:793.600600pt;}
.y35{bottom:795.520973pt;}
.y144{bottom:799.039960pt;}
.ydc{bottom:799.840107pt;}
.y143{bottom:805.600013pt;}
.y17d{bottom:811.040293pt;}
.y1a9{bottom:811.520800pt;}
.y87{bottom:811.520973pt;}
.ya7{bottom:811.521133pt;}
.y61{bottom:811.521293pt;}
.y1f6{bottom:812.000600pt;}
.ydb{bottom:818.239947pt;}
.y141{bottom:820.800053pt;}
.y9{bottom:823.840280pt;}
.y140{bottom:827.359947pt;}
.y17c{bottom:829.280293pt;}
.y1a8{bottom:829.920640pt;}
.y86{bottom:829.920973pt;}
.y60{bottom:829.921133pt;}
.y34{bottom:832.320653pt;}
.yda{bottom:836.639787pt;}
.y8{bottom:842.240120pt;}
.y13f{bottom:842.559973pt;}
.y17b{bottom:847.680133pt;}
.y1a7{bottom:848.320480pt;}
.y1cb{bottom:848.320653pt;}
.y85{bottom:848.320813pt;}
.y5f{bottom:848.320973pt;}
.y1f5{bottom:848.800440pt;}
.y13e{bottom:849.119960pt;}
.y33{bottom:850.720973pt;}
.y7{bottom:860.480120pt;}
.y13d{bottom:864.319987pt;}
.y17a{bottom:866.240133pt;}
.y1a6{bottom:866.720320pt;}
.ya6{bottom:866.720653pt;}
.y5e{bottom:866.720813pt;}
.y1f4{bottom:867.040440pt;}
.y32{bottom:868.960973pt;}
.y13c{bottom:870.879960pt;}
.yd9{bottom:875.999787pt;}
.y6{bottom:878.880173pt;}
.y179{bottom:884.639973pt;}
.y1a5{bottom:884.960320pt;}
.ya5{bottom:884.960653pt;}
.y5d{bottom:884.960813pt;}
.y13a{bottom:886.080000pt;}
.y31{bottom:887.360813pt;}
.y139{bottom:892.639973pt;}
.yd8{bottom:903.359947pt;}
.ya4{bottom:903.360493pt;}
.y5c{bottom:903.360653pt;}
.y1f3{bottom:903.840120pt;}
.y30{bottom:905.760653pt;}
.y178{bottom:906.236000pt;}
.y137{bottom:907.840000pt;}
.y136{bottom:914.399987pt;}
.y5{bottom:915.680147pt;}
.y177{bottom:920.000000pt;}
.y1a4{bottom:921.760160pt;}
.ya3{bottom:921.760493pt;}
.y1f2{bottom:922.240120pt;}
.y2f{bottom:924.160493pt;}
.yd7{bottom:929.918224pt;}
.y133{bottom:930.239987pt;}
.y4{bottom:933.920147pt;}
.y5b{bottom:940.160333pt;}
.yfe{bottom:940.160493pt;}
.y1f1{bottom:940.480120pt;}
.y176{bottom:941.760013pt;}
.y2e{bottom:942.400493pt;}
.yd6{bottom:946.076782pt;}
.y12d{bottom:950.879960pt;}
.y1ca{bottom:958.400333pt;}
.y5a{bottom:958.400493pt;}
.y1f0{bottom:958.879960pt;}
.y131{bottom:959.675827pt;}
.y2d{bottom:960.800333pt;}
.y175{bottom:963.515947pt;}
.y132{bottom:967.523947pt;}
.y3{bottom:970.719973pt;}
.yd5{bottom:970.874385pt;}
.y130{bottom:975.359947pt;}
.ya2{bottom:976.800173pt;}
.y59{bottom:976.800333pt;}
.y174{bottom:977.279947pt;}
.y1ef{bottom:977.594923pt;}
.y2c{bottom:979.200173pt;}
.yd4{bottom:986.078716pt;}
.y2{bottom:989.605575pt;}
.y58{bottom:995.200173pt;}
.y173{bottom:999.195960pt;}
.yd3{bottom:1010.719973pt;}
.y1{bottom:1011.039960pt;}
.y172{bottom:1012.959960pt;}
.y2b{bottom:1013.600013pt;}
.h1a{height:19.840000pt;}
.h22{height:19.841333pt;}
.h1d{height:21.760013pt;}
.h1c{height:21.761333pt;}
.h5{height:23.945625pt;}
.h13{height:33.280013pt;}
.h6{height:36.805349pt;}
.h4{height:40.796213pt;}
.h17{height:47.109375pt;}
.h27{height:50.559473pt;}
.h18{height:51.216000pt;}
.h16{height:51.360000pt;}
.h20{height:51.520000pt;}
.h1b{height:52.032000pt;}
.h26{height:55.402556pt;}
.h12{height:56.679097pt;}
.h7{height:62.812500pt;}
.h9{height:62.824903pt;}
.ha{height:62.829880pt;}
.hb{height:62.829934pt;}
.hf{height:62.829987pt;}
.h11{height:62.832008pt;}
.hc{height:62.844698pt;}
.hd{height:62.844858pt;}
.h10{height:62.847204pt;}
.he{height:62.847311pt;}
.h28{height:66.749833pt;}
.h3{height:68.288000pt;}
.h25{height:69.375360pt;}
.h8{height:69.376000pt;}
.h24{height:78.719520pt;}
.h2{height:79.896903pt;}
.h14{height:87.399150pt;}
.h1e{height:91.535520pt;}
.h1f{height:91.536000pt;}
.h23{height:106.272000pt;}
.h21{height:145.920480pt;}
.h19{height:145.968960pt;}
.h15{height:168.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:37.760013pt;}
.wa{width:37.920000pt;}
.wb{width:45.281333pt;}
.w7{width:49.120000pt;}
.w9{width:52.960000pt;}
.w6{width:52.961347pt;}
.w10{width:62.560000pt;}
.w11{width:62.718667pt;}
.wf{width:62.719987pt;}
.we{width:63.040000pt;}
.w12{width:63.041347pt;}
.wd{width:126.080000pt;}
.w5{width:139.841347pt;}
.w13{width:158.623622pt;}
.wc{width:165.920000pt;}
.w3{width:169.440000pt;}
.w4{width:169.920000pt;}
.w2{width:173.279987pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.279987pt;}
.x1b{left:6.879987pt;}
.x30{left:9.279987pt;}
.x2f{left:11.040000pt;}
.xe{left:12.800013pt;}
.x2e{left:14.079987pt;}
.x26{left:16.160040pt;}
.x2b{left:19.040000pt;}
.x24{left:21.760000pt;}
.x22{left:22.880000pt;}
.x32{left:35.519987pt;}
.x1e{left:42.559987pt;}
.x3c{left:52.200502pt;}
.x1c{left:106.240013pt;}
.x7{left:113.439827pt;}
.x1a{left:120.640000pt;}
.x9{left:122.879200pt;}
.x10{left:126.240013pt;}
.xc{left:127.360000pt;}
.x1{left:132.640000pt;}
.xb{left:141.919840pt;}
.xa{left:161.440320pt;}
.xd{left:170.400000pt;}
.x13{left:175.839987pt;}
.x12{left:185.279987pt;}
.x2{left:199.526512pt;}
.xf{left:245.920000pt;}
.x31{left:272.160000pt;}
.x1d{left:276.160000pt;}
.x34{left:290.559987pt;}
.x33{left:296.319987pt;}
.x20{left:301.440013pt;}
.x1f{left:307.200013pt;}
.x23{left:329.120000pt;}
.x36{left:335.200013pt;}
.x14{left:344.319987pt;}
.x15{left:349.760013pt;}
.x16{left:359.202103pt;}
.x25{left:378.239987pt;}
.x3{left:396.800013pt;}
.x37{left:398.559973pt;}
.x8{left:408.933347pt;}
.x27{left:416.000000pt;}
.x38{left:461.279987pt;}
.x28{left:468.960000pt;}
.x17{left:514.400027pt;}
.x29{left:518.080000pt;}
.x19{left:519.840000pt;}
.x3b{left:522.987989pt;}
.x39{left:524.479987pt;}
.x18{left:529.279987pt;}
.x35{left:535.203987pt;}
.x5{left:539.839987pt;}
.x6{left:552.160147pt;}
.x2a{left:556.000000pt;}
.x21{left:570.248000pt;}
.x3a{left:587.199987pt;}
.x2c{left:601.279987pt;}
.x2d{left:650.400027pt;}
.x4{left:680.319987pt;}
}




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