
    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_7d0813f8b6f6d641706b643d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_721b91b0fda4dc35831c429d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_0bb66a4a980511ead71306eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_154ec96fdf94bd9248dbc4aa.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_6c719a2952b51b93221dafca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_b662e10dfab7f257092c3aff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ce077cb5119d08755c2f660.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_e8ec2a07121e4f794aaf73f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9e500b24f1f8b651d0058354.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f4601421596973b888255cfb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_65bc313d6b1ad6ca976fbbac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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:ffd;src:url('chunks/assets/font_06d942251254cd20f6358e7a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.872000;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:ffe;src:url('chunks/assets/font_51bbb84a1eb001320ce4eae2.woff2')format("woff");}.ffe{font-family:ffe;line-height:3.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dd002c624a862703da692b6b.woff2')format("woff");}.fff{font-family:fff;line-height:1.735000;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:ff10;src:url('chunks/assets/font_5bb023dfa171f360b7b230b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.890000;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:ff11;src:url('chunks/assets/font_a0a7c62ae57020f41f0caa97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.v1d{vertical-align:-61.782000px;}
.v5{vertical-align:-51.108000px;}
.v2{vertical-align:-8.964000px;}
.v3{vertical-align:-1.830000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.814000px;}
.vc{vertical-align:7.500000px;}
.v18{vertical-align:11.352000px;}
.v7{vertical-align:14.778000px;}
.vb{vertical-align:16.464000px;}
.v14{vertical-align:20.592000px;}
.va{vertical-align:21.690000px;}
.v6{vertical-align:24.684000px;}
.v17{vertical-align:26.898000px;}
.vf{vertical-align:31.470000px;}
.v16{vertical-align:35.862000px;}
.v4{vertical-align:40.440000px;}
.v8{vertical-align:48.420000px;}
.v19{vertical-align:50.808000px;}
.v10{vertical-align:62.130000px;}
.v15{vertical-align:66.354000px;}
.v1{vertical-align:78.906000px;}
.v1a{vertical-align:81.444000px;}
.vd{vertical-align:84.282000px;}
.v11{vertical-align:87.252000px;}
.v1b{vertical-align:92.598000px;}
.v12{vertical-align:96.222000px;}
.v13{vertical-align:117.912000px;}
.ve{vertical-align:125.286000px;}
.v1c{vertical-align:143.220000px;}
.ls49{letter-spacing:-0.721343px;}
.ls3{letter-spacing:0.000000px;}
.ls88{letter-spacing:0.000052px;}
.ls7a{letter-spacing:0.000065px;}
.ls82{letter-spacing:0.000422px;}
.ls6b{letter-spacing:0.000843px;}
.ls5d{letter-spacing:0.000993px;}
.ls78{letter-spacing:0.001116px;}
.ls29{letter-spacing:0.002023px;}
.lsd{letter-spacing:0.002245px;}
.ls95{letter-spacing:0.002338px;}
.ls31{letter-spacing:0.002498px;}
.ls67{letter-spacing:0.003175px;}
.ls7d{letter-spacing:0.003181px;}
.ls8e{letter-spacing:0.003652px;}
.ls2d{letter-spacing:0.005654px;}
.ls5c{letter-spacing:0.005870px;}
.ls93{letter-spacing:0.006065px;}
.ls1e{letter-spacing:0.006843px;}
.ls5f{letter-spacing:0.006993px;}
.ls9b{letter-spacing:0.007507px;}
.ls8c{letter-spacing:0.009292px;}
.ls96{letter-spacing:0.010130px;}
.ls26{letter-spacing:0.010600px;}
.ls2e{letter-spacing:0.011531px;}
.ls63{letter-spacing:0.011874px;}
.ls21{letter-spacing:0.015264px;}
.ls76{letter-spacing:0.019252px;}
.ls72{letter-spacing:0.021052px;}
.ls44{letter-spacing:0.021238px;}
.ls27{letter-spacing:0.021264px;}
.ls33{letter-spacing:0.021699px;}
.ls99{letter-spacing:0.021808px;}
.ls4a{letter-spacing:0.026028px;}
.ls6c{letter-spacing:0.028853px;}
.ls4{letter-spacing:0.607686px;}
.ls47{letter-spacing:0.645572px;}
.ls10{letter-spacing:1.004227px;}
.ls48{letter-spacing:1.136570px;}
.ls36{letter-spacing:2.128945px;}
.ls58{letter-spacing:2.144222px;}
.ls5b{letter-spacing:2.150222px;}
.ls38{letter-spacing:2.152378px;}
.ls4c{letter-spacing:2.175641px;}
.ls9f{letter-spacing:2.371909px;}
.ls40{letter-spacing:2.391030px;}
.ls9e{letter-spacing:2.410166px;}
.ls0{letter-spacing:2.964877px;}
.ls9{letter-spacing:2.970839px;}
.lsb{letter-spacing:2.980094px;}
.ls3b{letter-spacing:2.984525px;}
.lsa0{letter-spacing:2.985089px;}
.ls1f{letter-spacing:2.988615px;}
.ls2{letter-spacing:2.988780px;}
.ls8{letter-spacing:2.989409px;}
.ls6{letter-spacing:2.990525px;}
.lsa{letter-spacing:3.012682px;}
.ls9d{letter-spacing:3.012698px;}
.ls5e{letter-spacing:3.347434px;}
.ls4f{letter-spacing:3.466985px;}
.ls4b{letter-spacing:4.000868px;}
.ls50{letter-spacing:4.477180px;}
.ls6d{letter-spacing:5.556700px;}
.ls4d{letter-spacing:6.241481px;}
.ls3a{letter-spacing:6.515540px;}
.ls91{letter-spacing:6.520960px;}
.ls89{letter-spacing:6.523690px;}
.ls11{letter-spacing:7.170206px;}
.ls51{letter-spacing:7.173181px;}
.ls70{letter-spacing:7.179181px;}
.ls7{letter-spacing:7.472450px;}
.ls1{letter-spacing:8.961342px;}
.ls19{letter-spacing:9.922750px;}
.ls7c{letter-spacing:9.949122px;}
.ls65{letter-spacing:9.962012px;}
.ls80{letter-spacing:9.963181px;}
.ls18{letter-spacing:9.982525px;}
.ls97{letter-spacing:10.160525px;}
.ls83{letter-spacing:10.164615px;}
.ls57{letter-spacing:12.948615px;}
.ls25{letter-spacing:13.270183px;}
.ls24{letter-spacing:13.284843px;}
.ls6a{letter-spacing:13.298912px;}
.ls69{letter-spacing:13.329959px;}
.ls15{letter-spacing:13.509286px;}
.ls74{letter-spacing:13.617181px;}
.ls7f{letter-spacing:13.693690px;}
.ls8a{letter-spacing:16.268525px;}
.ls2c{letter-spacing:16.272648px;}
.ls62{letter-spacing:16.557841px;}
.ls86{letter-spacing:16.589722px;}
.ls68{letter-spacing:16.604012px;}
.ls53{letter-spacing:16.605181px;}
.ls2b{letter-spacing:16.617617px;}
.ls14{letter-spacing:17.155597px;}
.ls3c{letter-spacing:17.334924px;}
.ls1c{letter-spacing:17.574026px;}
.ls1a{letter-spacing:17.633802px;}
.ls8f{letter-spacing:19.588362px;}
.lse{letter-spacing:19.590615px;}
.ls2a{letter-spacing:19.590648px;}
.ls7b{letter-spacing:19.594362px;}
.ls35{letter-spacing:19.596615px;}
.ls20{letter-spacing:19.905275px;}
.ls12{letter-spacing:19.976540px;}
.ls61{letter-spacing:20.084602px;}
.ls5{letter-spacing:20.602868px;}
.ls59{letter-spacing:20.861684px;}
.ls92{letter-spacing:20.921460px;}
.ls42{letter-spacing:21.041011px;}
.ls16{letter-spacing:21.220338px;}
.ls3f{letter-spacing:21.997421px;}
.ls56{letter-spacing:23.772538px;}
.ls79{letter-spacing:23.908362px;}
.lsa1{letter-spacing:23.970016px;}
.ls90{letter-spacing:24.702538px;}
.ls9a{letter-spacing:25.244525px;}
.ls37{letter-spacing:25.566615px;}
.ls4e{letter-spacing:25.608615px;}
.ls1d{letter-spacing:26.736615px;}
.ls1b{letter-spacing:26.779469px;}
.ls23{letter-spacing:27.402615px;}
.ls17{letter-spacing:27.437000px;}
.ls85{letter-spacing:28.632512px;}
.ls8d{letter-spacing:29.002362px;}
.ls45{letter-spacing:29.050942px;}
.ls3d{letter-spacing:29.708473px;}
.ls43{letter-spacing:29.828024px;}
.ls3e{letter-spacing:30.126902px;}
.ls5a{letter-spacing:30.244029px;}
.ls32{letter-spacing:30.288648px;}
.ls41{letter-spacing:32.458151px;}
.ls46{letter-spacing:34.191643px;}
.ls30{letter-spacing:35.207828px;}
.ls9c{letter-spacing:36.700868px;}
.ls34{letter-spacing:37.548648px;}
.ls7e{letter-spacing:37.776555px;}
.ls87{letter-spacing:39.584400px;}
.ls81{letter-spacing:39.909181px;}
.ls94{letter-spacing:45.632400px;}
.ls66{letter-spacing:50.808615px;}
.ls52{letter-spacing:53.910305px;}
.lsf{letter-spacing:93.390538px;}
.ls60{letter-spacing:103.292237px;}
.ls55{letter-spacing:130.712338px;}
.ls98{letter-spacing:156.147657px;}
.ls77{letter-spacing:182.054450px;}
.ls73{letter-spacing:207.794450px;}
.ls13{letter-spacing:227.505934px;}
.ls6e{letter-spacing:242.402450px;}
.lsc{letter-spacing:265.284113px;}
.ls71{letter-spacing:292.541786px;}
.ls84{letter-spacing:298.869181px;}
.ls75{letter-spacing:329.841761px;}
.ls28{letter-spacing:415.278843px;}
.ls64{letter-spacing:436.548700px;}
.ls2f{letter-spacing:439.182648px;}
.ls54{letter-spacing:441.861235px;}
.ls22{letter-spacing:452.142843px;}
.ls6f{letter-spacing:455.362200px;}
.ls8b{letter-spacing:471.168555px;}
.ls39{letter-spacing:517.650615px;}
.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;}
}
.ws6a{word-spacing:-47.324343px;}
.ws66{word-spacing:-38.937826px;}
.ws6b{word-spacing:-31.633157px;}
.ws6e{word-spacing:-29.971486px;}
.ws68{word-spacing:-28.955301px;}
.ws1{word-spacing:-26.899200px;}
.wsb1{word-spacing:-25.667643px;}
.wsb0{word-spacing:-25.607867px;}
.wsa0{word-spacing:-25.231208px;}
.ws9c{word-spacing:-25.189366px;}
.wsb7{word-spacing:-22.379985px;}
.wsb6{word-spacing:-22.320209px;}
.wsa3{word-spacing:-22.214740px;}
.wsda{word-spacing:-21.842004px;}
.ws48{word-spacing:-17.932680px;}
.ws89{word-spacing:-15.804669px;}
.ws5e{word-spacing:-14.943900px;}
.ws1a{word-spacing:-14.920027px;}
.wsb5{word-spacing:-14.202439px;}
.wsd7{word-spacing:-14.071176px;}
.wsdf{word-spacing:-14.011401px;}
.ws63{word-spacing:-11.955150px;}
.wscc{word-spacing:-9.564150px;}
.ws5f{word-spacing:-9.092407px;}
.ws60{word-spacing:-8.446835px;}
.ws61{word-spacing:-7.725492px;}
.ws84{word-spacing:-2.988780px;}
.ws46{word-spacing:-2.988735px;}
.ws94{word-spacing:-2.391030px;}
.wscf{word-spacing:-0.956410px;}
.ws78{word-spacing:-0.836858px;}
.ws18{word-spacing:-0.591782px;}
.ws69{word-spacing:-0.298878px;}
.wse4{word-spacing:-0.239102px;}
.ws30{word-spacing:-0.179327px;}
.wsb2{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.wsb3{word-spacing:-0.041843px;}
.wsc8{word-spacing:-0.012000px;}
.wscb{word-spacing:-0.009609px;}
.ws47{word-spacing:0.000000px;}
.wsbc{word-spacing:0.059776px;}
.wsff{word-spacing:0.286924px;}
.wse2{word-spacing:0.298878px;}
.ws4{word-spacing:0.376589px;}
.ws86{word-spacing:0.478205px;}
.ws8c{word-spacing:0.514070px;}
.ws92{word-spacing:0.537980px;}
.ws77{word-spacing:0.597756px;}
.ws13{word-spacing:0.753178px;}
.ws115{word-spacing:0.765130px;}
.wse6{word-spacing:0.777083px;}
.ws10c{word-spacing:0.812950px;}
.wse3{word-spacing:0.956410px;}
.ws14{word-spacing:0.968371px;}
.ws1d{word-spacing:1.075961px;}
.ws2c{word-spacing:1.315063px;}
.ws103{word-spacing:1.338977px;}
.ws65{word-spacing:1.434614px;}
.wsfc{word-spacing:1.530259px;}
.wsce{word-spacing:1.554166px;}
.ws9b{word-spacing:1.673717px;}
.wsfa{word-spacing:1.673721px;}
.wsb8{word-spacing:1.793268px;}
.ws73{word-spacing:1.853044px;}
.wsc6{word-spacing:1.912819px;}
.ws37{word-spacing:1.972595px;}
.wsd8{word-spacing:2.008465px;}
.ws102{word-spacing:2.056286px;}
.ws56{word-spacing:2.092146px;}
.ws101{word-spacing:2.104106px;}
.ws110{word-spacing:2.199748px;}
.wsf5{word-spacing:2.247568px;}
.ws87{word-spacing:2.271473px;}
.ws88{word-spacing:2.391024px;}
.ws35{word-spacing:2.510575px;}
.wsaf{word-spacing:2.570351px;}
.wsfe{word-spacing:2.582312px;}
.ws9d{word-spacing:2.630126px;}
.ws91{word-spacing:2.689902px;}
.wse7{word-spacing:2.988780px;}
.ws82{word-spacing:3.048556px;}
.wsef{word-spacing:3.443083px;}
.wsfb{word-spacing:3.490904px;}
.wsd6{word-spacing:3.526760px;}
.ws26{word-spacing:3.586536px;}
.ws5a{word-spacing:3.646312px;}
.wse0{word-spacing:3.706087px;}
.ws62{word-spacing:3.777827px;}
.ws93{word-spacing:3.885414px;}
.wsd4{word-spacing:3.969110px;}
.ws52{word-spacing:4.004965px;}
.ws23{word-spacing:4.124516px;}
.ws10d{word-spacing:4.160392px;}
.wsa8{word-spacing:4.244068px;}
.ws64{word-spacing:4.602721px;}
.ws7e{word-spacing:4.722272px;}
.ws32{word-spacing:4.782060px;}
.wsc7{word-spacing:4.841824px;}
.ws4f{word-spacing:4.961375px;}
.wsd0{word-spacing:5.021150px;}
.wsb4{word-spacing:5.080926px;}
.wsf0{word-spacing:5.164625px;}
.wsd9{word-spacing:5.200477px;}
.ws114{word-spacing:5.260266px;}
.ws10e{word-spacing:5.308087px;}
.ws28{word-spacing:5.320028px;}
.wsd5{word-spacing:5.355907px;}
.wsa7{word-spacing:5.439580px;}
.ws79{word-spacing:5.499355px;}
.ws43{word-spacing:5.559131px;}
.wsfd{word-spacing:5.690651px;}
.ws6{word-spacing:5.702630px;}
.ws9{word-spacing:5.756429px;}
.ws96{word-spacing:5.774362px;}
.wsa{word-spacing:5.810227px;}
.wsf7{word-spacing:5.834113px;}
.ws5c{word-spacing:5.929754px;}
.ws45{word-spacing:5.977560px;}
.ws42{word-spacing:6.037336px;}
.ws81{word-spacing:6.097111px;}
.ws111{word-spacing:6.121037px;}
.ws24{word-spacing:6.216662px;}
.ws6c{word-spacing:6.276438px;}
.wsb{word-spacing:6.348211px;}
.ws49{word-spacing:6.395989px;}
.ws100{word-spacing:6.407960px;}
.wsaa{word-spacing:6.455765px;}
.wsed{word-spacing:6.515540px;}
.ws54{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws108{word-spacing:6.647063px;}
.wsa9{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.wsbe{word-spacing:6.814418px;}
.wsbf{word-spacing:6.874194px;}
.wsa5{word-spacing:6.879260px;}
.ws3b{word-spacing:7.053521px;}
.ws50{word-spacing:7.113296px;}
.ws109{word-spacing:7.268731px;}
.wsc4{word-spacing:7.292623px;}
.wse5{word-spacing:7.352399px;}
.ws12{word-spacing:7.370381px;}
.ws27{word-spacing:7.412174px;}
.ws2a{word-spacing:7.591501px;}
.ws70{word-spacing:7.651277px;}
.ws113{word-spacing:7.651296px;}
.ws80{word-spacing:7.711052px;}
.ws38{word-spacing:7.770828px;}
.wsd1{word-spacing:7.830604px;}
.ws10f{word-spacing:7.938220px;}
.ws8e{word-spacing:7.950155px;}
.ws22{word-spacing:8.308808px;}
.ws9f{word-spacing:8.368584px;}
.ws25{word-spacing:8.428360px;}
.ws5{word-spacing:8.446349px;}
.ws1e{word-spacing:8.607686px;}
.ws76{word-spacing:8.846789px;}
.wsee{word-spacing:8.942452px;}
.ws1c{word-spacing:8.966340px;}
.ws3f{word-spacing:9.145667px;}
.wsf6{word-spacing:9.325017px;}
.ws20{word-spacing:9.384769px;}
.ws10a{word-spacing:9.516299px;}
.wse{word-spacing:9.576115px;}
.ws44{word-spacing:9.623872px;}
.ws1f{word-spacing:9.683647px;}
.ws4d{word-spacing:9.743423px;}
.wse9{word-spacing:9.803198px;}
.wsc0{word-spacing:9.862974px;}
.ws74{word-spacing:9.888777px;}
.ws75{word-spacing:9.894777px;}
.wsba{word-spacing:9.903205px;}
.ws59{word-spacing:9.922750px;}
.ws72{word-spacing:10.102076px;}
.wsa2{word-spacing:10.221628px;}
.wsf8{word-spacing:10.377070px;}
.ws31{word-spacing:10.400954px;}
.ws3c{word-spacing:10.699832px;}
.ws116{word-spacing:10.759635px;}
.ws0{word-spacing:10.759680px;}
.ws10b{word-spacing:10.807456px;}
.ws2e{word-spacing:10.879159px;}
.ws4e{word-spacing:10.938935px;}
.ws8f{word-spacing:10.998710px;}
.ws4c{word-spacing:11.058486px;}
.wse1{word-spacing:11.357364px;}
.ws107{word-spacing:11.381303px;}
.wsd3{word-spacing:11.476915px;}
.ws6f{word-spacing:11.775793px;}
.wsd2{word-spacing:11.895344px;}
.ws5b{word-spacing:11.955120px;}
.ws2f{word-spacing:12.014896px;}
.ws36{word-spacing:12.074671px;}
.wsec{word-spacing:12.194222px;}
.ws71{word-spacing:12.313774px;}
.wsf1{word-spacing:12.337715px;}
.ws7c{word-spacing:12.373549px;}
.wsa4{word-spacing:12.732203px;}
.ws11{word-spacing:12.750221px;}
.ws17{word-spacing:12.804019px;}
.ws15{word-spacing:13.126810px;}
.ws7{word-spacing:13.180608px;}
.wsbb{word-spacing:13.210408px;}
.ws90{word-spacing:13.270183px;}
.wsdd{word-spacing:13.329959px;}
.wsea{word-spacing:13.569061px;}
.wsc2{word-spacing:13.688612px;}
.wsdc{word-spacing:13.748388px;}
.ws53{word-spacing:13.987490px;}
.wsf2{word-spacing:14.011436px;}
.ws10{word-spacing:14.417971px;}
.ws2d{word-spacing:14.525471px;}
.wsf4{word-spacing:14.537462px;}
.ws3a{word-spacing:14.585246px;}
.ws7f{word-spacing:14.704798px;}
.ws8b{word-spacing:14.764573px;}
.ws104{word-spacing:14.872207px;}
.ws51{word-spacing:15.003676px;}
.wsf3{word-spacing:15.159130px;}
.ws9e{word-spacing:15.242778px;}
.wsc{word-spacing:15.278746px;}
.ws58{word-spacing:15.481880px;}
.wseb{word-spacing:15.661207px;}
.wsbd{word-spacing:15.689166px;}
.wsd{word-spacing:15.924326px;}
.ws57{word-spacing:16.019861px;}
.ws40{word-spacing:16.139412px;}
.ws9a{word-spacing:16.318739px;}
.ws4b{word-spacing:16.378514px;}
.ws21{word-spacing:16.498066px;}
.ws67{word-spacing:16.557841px;}
.wsf9{word-spacing:16.641569px;}
.wsf{word-spacing:16.677504px;}
.ws5d{word-spacing:16.856719px;}
.ws41{word-spacing:16.976270px;}
.ws8a{word-spacing:17.036046px;}
.wse8{word-spacing:17.394700px;}
.ws85{word-spacing:17.693578px;}
.wsc5{word-spacing:17.753353px;}
.ws8d{word-spacing:17.872904px;}
.ws19{word-spacing:17.932680px;}
.ws112{word-spacing:18.076187px;}
.ws99{word-spacing:18.112007px;}
.ws4a{word-spacing:18.470660px;}
.ws39{word-spacing:18.649987px;}
.ws105{word-spacing:18.745675px;}
.ws106{word-spacing:18.793496px;}
.wsca{word-spacing:18.829314px;}
.wsde{word-spacing:18.889090px;}
.wsc9{word-spacing:19.187968px;}
.ws2b{word-spacing:19.307519px;}
.ws29{word-spacing:19.367294px;}
.ws55{word-spacing:19.486846px;}
.ws7d{word-spacing:19.606397px;}
.ws83{word-spacing:19.725948px;}
.ws7b{word-spacing:20.263928px;}
.ws7a{word-spacing:20.323704px;}
.ws1b{word-spacing:20.622582px;}
.wsa1{word-spacing:20.981236px;}
.ws3e{word-spacing:21.758318px;}
.wsdb{word-spacing:21.937645px;}
.ws8{word-spacing:22.003546px;}
.ws3d{word-spacing:22.296299px;}
.wsc1{word-spacing:24.533166px;}
.ws33{word-spacing:26.636074px;}
.ws34{word-spacing:26.779536px;}
.ws6d{word-spacing:27.377225px;}
.wsa6{word-spacing:29.050942px;}
.wsb9{word-spacing:46.266314px;}
.ws97{word-spacing:62.167650px;}
.wsab{word-spacing:68.143950px;}
.wsac{word-spacing:80.098800px;}
.ws98{word-spacing:82.879014px;}
.ws95{word-spacing:86.071950px;}
.wsae{word-spacing:98.036550px;}
.wsad{word-spacing:100.819014px;}
.wscd{word-spacing:398.747233px;}
.wsc3{word-spacing:421.417980px;}
._3{margin-left:-6.993792px;}
._10{margin-left:-5.977535px;}
._4{margin-left:-4.949453px;}
._1{margin-left:-3.765888px;}
._6{margin-left:-2.689891px;}
._0{margin-left:-1.613952px;}
._a{width:1.028150px;}
._5{width:2.988780px;}
._14{width:4.726463px;}
._1d{width:7.172400px;}
._1a{width:8.787013px;}
._b{width:9.982525px;}
._9{width:16.019882px;}
._1c{width:17.601646px;}
._8{width:18.889100px;}
._1b{width:20.861684px;}
._2{width:22.003546px;}
._c{width:24.615582px;}
._e{width:26.301253px;}
._27{width:27.879410px;}
._f{width:29.170540px;}
._7{width:30.903985px;}
._26{width:31.944161px;}
._d{width:34.550297px;}
._13{width:85.929500px;}
._16{width:98.030250px;}
._17{width:115.810100px;}
._18{width:121.940250px;}
._12{width:182.891143px;}
._24{width:249.261461px;}
._21{width:287.245216px;}
._1f{width:301.005260px;}
._20{width:331.190010px;}
._19{width:360.387092px;}
._15{width:367.323487px;}
._11{width:377.295527px;}
._23{width:404.355758px;}
._1e{width:410.893061px;}
._22{width:465.468012px;}
._25{width:517.486696px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:19.753140px;}
.fsb{font-size:30.384298px;}
.fsa{font-size:33.415151px;}
.fsc{font-size:35.865600px;}
.fsd{font-size:38.256600px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:107.596800px;}
.fs6{font-size:172.461000px;}
.y9c{bottom:-16.707576px;}
.y80{bottom:-14.055579px;}
.yaa{bottom:-7.217218px;}
.y9b{bottom:-7.213429px;}
.y0{bottom:0.000000px;}
.y63{bottom:0.448935px;}
.y78{bottom:1.515426px;}
.y8b{bottom:1.534369px;}
.yb3{bottom:1.538158px;}
.y9a{bottom:1.894283px;}
.ya9{bottom:2.273140px;}
.y75{bottom:2.418469px;}
.yb1{bottom:2.651996px;}
.y95{bottom:3.030853px;}
.y90{bottom:3.053584px;}
.y82{bottom:3.409709px;}
.y93{bottom:3.803720px;}
.yac{bottom:3.807509px;}
.ya4{bottom:3.811297px;}
.y9e{bottom:4.167422px;}
.y8e{bottom:9.107712px;}
.y8a{bottom:11.005784px;}
.y77{bottom:11.009572px;}
.y99{bottom:11.365698px;}
.ya8{bottom:11.763497px;}
.yb0{bottom:12.142505px;}
.y92{bottom:13.275135px;}
.ya3{bottom:13.297866px;}
.y86{bottom:13.657780px;}
.y7b{bottom:13.676723px;}
.y84{bottom:14.036637px;}
.y7a{bottom:14.055579px;}
.y88{bottom:17.067489px;}
.y7e{bottom:17.086432px;}
.y8d{bottom:18.601858px;}
.y74{bottom:19.486110px;}
.ya7{bottom:20.854540px;}
.y98{bottom:20.859844px;}
.yaf{bottom:21.632863px;}
.ya1{bottom:22.769281px;}
.y7c{bottom:23.148138px;}
.y61{bottom:27.000000px;}
.y97{bottom:30.346413px;}
.ya6{bottom:30.348686px;}
.y73{bottom:35.795886px;}
.y60{bottom:45.000000px;}
.y72{bottom:52.503461px;}
.y71{bottom:68.813238px;}
.y5f{bottom:69.175500px;}
.y70{bottom:85.121498px;}
.y5e{bottom:87.108000px;}
.y35{bottom:92.488500px;}
.y142{bottom:100.995000px;}
.y6f{bottom:101.829074px;}
.y5d{bottom:105.040500px;}
.y141{bottom:105.387000px;}
.y34{bottom:105.937500px;}
.y108{bottom:110.226000px;}
.y13f{bottom:115.638000px;}
.y6e{bottom:118.142639px;}
.y33{bottom:119.386500px;}
.y140{bottom:122.053500px;}
.yd6{bottom:122.973000px;}
.y16f{bottom:122.974500px;}
.y186{bottom:124.386000px;}
.y5c{bottom:132.225000px;}
.y32{bottom:132.837000px;}
.y6d{bottom:134.448626px;}
.yd5{bottom:140.907000px;}
.y185{bottom:142.320000px;}
.y6c{bottom:151.156202px;}
.y107{bottom:152.857500px;}
.y13e{bottom:157.230000px;}
.y16e{bottom:157.564500px;}
.yd4{bottom:158.839500px;}
.y184{bottom:160.252500px;}
.y31{bottom:162.064500px;}
.y6b{bottom:167.469766px;}
.y106{bottom:170.790000px;}
.y16d{bottom:171.610500px;}
.y13d{bottom:175.279500px;}
.y5b{bottom:176.772000px;}
.y183{bottom:178.185000px;}
.y30{bottom:179.997000px;}
.y6a{bottom:183.798485px;}
.y13c{bottom:185.530500px;}
.y16c{bottom:185.658000px;}
.y105{bottom:188.722500px;}
.y5a{bottom:194.704500px;}
.y182{bottom:196.117500px;}
.y2f{bottom:197.929500px;}
.y16b{bottom:199.705500px;}
.y69{bottom:200.104473px;}
.yd3{bottom:204.388500px;}
.y104{bottom:206.656500px;}
.y59{bottom:212.637000px;}
.y16a{bottom:213.753000px;}
.y181{bottom:214.050000px;}
.y2e{bottom:215.862000px;}
.y68{bottom:216.796894px;}
.y13b{bottom:223.485000px;}
.y103{bottom:224.589000px;}
.y169{bottom:227.800500px;}
.y58{bottom:230.569500px;}
.y196{bottom:230.571000px;}
.y180{bottom:231.984000px;}
.y67{bottom:233.125613px;}
.y2d{bottom:233.796000px;}
.yd2{bottom:240.180000px;}
.y13a{bottom:241.417500px;}
.y168{bottom:241.848000px;}
.y102{bottom:242.521500px;}
.y57{bottom:248.502000px;}
.y195{bottom:248.503500px;}
.y17f{bottom:249.916500px;}
.y66{bottom:250.189314px;}
.y2c{bottom:251.728500px;}
.y167{bottom:255.895500px;}
.yd1{bottom:258.114000px;}
.y139{bottom:259.350000px;}
.y101{bottom:260.454000px;}
.y56{bottom:266.436000px;}
.y65{bottom:267.260592px;}
.y17e{bottom:267.849000px;}
.y2b{bottom:269.661000px;}
.y166{bottom:269.943000px;}
.yd0{bottom:276.046500px;}
.y100{bottom:278.386500px;}
.y138{bottom:283.956000px;}
.y165{bottom:283.989000px;}
.y55{bottom:284.368500px;}
.y17d{bottom:285.781500px;}
.y2a{bottom:287.593500px;}
.y137{bottom:287.650500px;}
.ycf{bottom:293.979000px;}
.yff{bottom:296.320500px;}
.y54{bottom:302.301000px;}
.y1d0{bottom:302.526000px;}
.y17c{bottom:303.714000px;}
.y29{bottom:305.526000px;}
.y164{bottom:309.843000px;}
.yce{bottom:311.911500px;}
.yfe{bottom:314.253000px;}
.y1cf{bottom:315.975000px;}
.y53{bottom:320.233500px;}
.y17b{bottom:323.059500px;}
.y163{bottom:323.292000px;}
.y28{bottom:323.458500px;}
.y136{bottom:323.796000px;}
.y1ce{bottom:329.425500px;}
.yfd{bottom:332.185500px;}
.ycd{bottom:335.835000px;}
.y52{bottom:338.166000px;}
.ycc{bottom:339.529500px;}
.y17a{bottom:340.993500px;}
.y27{bottom:341.392500px;}
.y135{bottom:341.730000px;}
.y194{bottom:342.762000px;}
.y1cd{bottom:342.874500px;}
.yfc{bottom:350.118000px;}
.y51{bottom:356.098500px;}
.y1cc{bottom:356.323500px;}
.y179{bottom:358.926000px;}
.y26{bottom:359.325000px;}
.y134{bottom:359.713500px;}
.y162{bottom:359.719500px;}
.yfb{bottom:368.050500px;}
.y1cb{bottom:369.774000px;}
.y133{bottom:371.400000px;}
.y50{bottom:374.032500px;}
.y25{bottom:377.257500px;}
.y161{bottom:377.652000px;}
.y193{bottom:379.077000px;}
.y132{bottom:380.365500px;}
.ycb{bottom:381.384000px;}
.y1ca{bottom:383.223000px;}
.yca{bottom:385.078500px;}
.yfa{bottom:385.983000px;}
.y4f{bottom:391.965000px;}
.y24{bottom:395.190000px;}
.y178{bottom:395.221500px;}
.y160{bottom:395.586000px;}
.y1c9{bottom:396.673500px;}
.y192{bottom:397.009500px;}
.yf9{bottom:403.917000px;}
.y177{bottom:408.672000px;}
.y4e{bottom:409.897500px;}
.y1c8{bottom:410.122500px;}
.y23{bottom:413.122500px;}
.y15f{bottom:413.518500px;}
.y191{bottom:414.942000px;}
.yc9{bottom:420.870000px;}
.y176{bottom:422.121000px;}
.y1c7{bottom:423.571500px;}
.y131{bottom:426.600000px;}
.yf8{bottom:427.035000px;}
.y4d{bottom:427.830000px;}
.y22{bottom:431.055000px;}
.y15e{bottom:431.451000px;}
.y190{bottom:432.876000px;}
.y1c6{bottom:437.022000px;}
.yc8{bottom:438.802500px;}
.y130{bottom:444.532500px;}
.y4c{bottom:445.762500px;}
.y21{bottom:448.989000px;}
.y1c5{bottom:450.471000px;}
.y18f{bottom:450.808500px;}
.y15d{bottom:454.129500px;}
.yc7{bottom:456.736500px;}
.y4b{bottom:463.695000px;}
.y1c4{bottom:463.920000px;}
.y20{bottom:466.921500px;}
.y12f{bottom:472.833000px;}
.yc6{bottom:474.669000px;}
.y1c3{bottom:477.370500px;}
.y4a{bottom:481.629000px;}
.y18e{bottom:482.739000px;}
.y1f{bottom:484.854000px;}
.yf7{bottom:486.534000px;}
.y1c2{bottom:490.819500px;}
.y15c{bottom:492.289500px;}
.yc5{bottom:492.601500px;}
.y18d{bottom:496.189500px;}
.y49{bottom:499.561500px;}
.yf6{bottom:500.581500px;}
.y1e{bottom:502.786500px;}
.y1c1{bottom:504.270000px;}
.y12e{bottom:508.978500px;}
.y18c{bottom:509.638500px;}
.y15b{bottom:510.222000px;}
.yc4{bottom:510.534000px;}
.yf5{bottom:514.629000px;}
.y48{bottom:517.494000px;}
.y1c0{bottom:517.719000px;}
.y1d{bottom:520.719000px;}
.y12d{bottom:526.912500px;}
.y15a{bottom:528.154500px;}
.yc3{bottom:528.466500px;}
.y1bf{bottom:531.168000px;}
.y1b{bottom:536.859000px;}
.y1c{bottom:538.651500px;}
.yf4{bottom:540.481500px;}
.y1be{bottom:544.618500px;}
.y47{bottom:544.678500px;}
.y159{bottom:546.088500px;}
.yc2{bottom:546.399000px;}
.yf3{bottom:553.930500px;}
.y12c{bottom:555.213000px;}
.y1bd{bottom:558.067500px;}
.y158{bottom:564.021000px;}
.yf2{bottom:567.379500px;}
.yc0{bottom:568.786500px;}
.y1bc{bottom:571.516500px;}
.yc1{bottom:576.510000px;}
.y1a{bottom:579.718500px;}
.yf1{bottom:580.830000px;}
.y1bb{bottom:584.967000px;}
.ybc{bottom:586.761000px;}
.ybd{bottom:587.209500px;}
.y46{bottom:589.225500px;}
.y12b{bottom:591.358500px;}
.y157{bottom:592.783500px;}
.y1ba{bottom:598.416000px;}
.ybf{bottom:600.957000px;}
.y156{bottom:603.034500px;}
.ybe{bottom:606.727500px;}
.y45{bottom:607.158000px;}
.y1b9{bottom:611.866500px;}
.y12a{bottom:611.917500px;}
.y129{bottom:616.309500px;}
.yf0{bottom:617.605500px;}
.y19{bottom:622.678500px;}
.y44{bottom:625.090500px;}
.y1b8{bottom:625.315500px;}
.y127{bottom:626.560500px;}
.y128{bottom:632.976000px;}
.ybb{bottom:633.927000px;}
.yef{bottom:635.538000px;}
.y18{bottom:637.621500px;}
.y1b7{bottom:638.764500px;}
.y43{bottom:643.023000px;}
.y155{bottom:649.083000px;}
.yba{bottom:651.859500px;}
.y1b6{bottom:652.215000px;}
.yee{bottom:653.470500px;}
.y42{bottom:660.955500px;}
.y17{bottom:660.957000px;}
.y1b5{bottom:665.664000px;}
.y126{bottom:667.048500px;}
.y154{bottom:669.582000px;}
.yed{bottom:671.403000px;}
.y16{bottom:675.900000px;}
.y41{bottom:678.889500px;}
.y1b4{bottom:679.113000px;}
.yb9{bottom:679.476000px;}
.y153{bottom:679.833000px;}
.y125{bottom:687.607500px;}
.y124{bottom:688.305000px;}
.y175{bottom:689.268000px;}
.yec{bottom:689.335500px;}
.y15{bottom:690.844500px;}
.y123{bottom:691.999500px;}
.y1b3{bottom:692.563500px;}
.y40{bottom:696.822000px;}
.y121{bottom:702.250500px;}
.y14{bottom:705.787500px;}
.y1b2{bottom:706.012500px;}
.y174{bottom:707.202000px;}
.yeb{bottom:707.269500px;}
.y122{bottom:708.666000px;}
.y3f{bottom:714.754500px;}
.yb8{bottom:715.267500px;}
.y1b1{bottom:719.461500px;}
.y152{bottom:720.073500px;}
.y13{bottom:720.732000px;}
.yea{bottom:725.202000px;}
.y3e{bottom:732.687000px;}
.y1b0{bottom:732.912000px;}
.yb7{bottom:733.200000px;}
.y12{bottom:735.676500px;}
.y151{bottom:738.006000px;}
.y120{bottom:742.738500px;}
.ye9{bottom:743.134500px;}
.y173{bottom:743.497500px;}
.y1af{bottom:746.361000px;}
.y11{bottom:750.619500px;}
.yb6{bottom:751.134000px;}
.y172{bottom:756.948000px;}
.y1ae{bottom:759.811500px;}
.y150{bottom:760.207500px;}
.y11f{bottom:760.671000px;}
.ye8{bottom:761.067000px;}
.y10{bottom:765.564000px;}
.y3d{bottom:768.552000px;}
.y171{bottom:770.397000px;}
.y14f{bottom:770.458500px;}
.y18b{bottom:772.420500px;}
.y1ad{bottom:773.260500px;}
.ye7{bottom:778.999500px;}
.yf{bottom:780.508500px;}
.y11e{bottom:785.277000px;}
.y3c{bottom:786.486000px;}
.y1ac{bottom:786.709500px;}
.y11c{bottom:788.971500px;}
.y18a{bottom:790.353000px;}
.ye{bottom:795.451500px;}
.yb5{bottom:796.210500px;}
.ye6{bottom:796.932000px;}
.y11d{bottom:798.148500px;}
.y1ab{bottom:800.160000px;}
.y3b{bottom:804.418500px;}
.yb4{bottom:809.659500px;}
.yd{bottom:810.396000px;}
.y14e{bottom:812.770500px;}
.y1aa{bottom:813.609000px;}
.ye5{bottom:814.866000px;}
.y3a{bottom:822.351000px;}
.y11b{bottom:825.117000px;}
.yc{bottom:825.340500px;}
.y1a9{bottom:827.058000px;}
.y14d{bottom:830.703000px;}
.ye4{bottom:832.798500px;}
.y62{bottom:836.559000px;}
.y64{bottom:837.299788px;}
.y189{bottom:837.475500px;}
.yb{bottom:840.283500px;}
.yae{bottom:840.475970px;}
.y1a8{bottom:840.508500px;}
.y119{bottom:847.171500px;}
.yad{bottom:848.432110px;}
.ye3{bottom:850.731000px;}
.y188{bottom:850.924500px;}
.y1a7{bottom:853.957500px;}
.y116{bottom:854.895000px;}
.y14c{bottom:855.148500px;}
.ya{bottom:855.228000px;}
.y39{bottom:858.216000px;}
.y187{bottom:864.373500px;}
.y11a{bottom:865.146000px;}
.y14b{bottom:865.399500px;}
.y1a6{bottom:867.408000px;}
.ye2{bottom:868.663500px;}
.y9{bottom:870.172500px;}
.yab{bottom:871.201391px;}
.y9f{bottom:874.630043px;}
.y115{bottom:875.256000px;}
.y87{bottom:875.766612px;}
.ya0{bottom:876.145469px;}
.y38{bottom:876.148500px;}
.y83{bottom:878.039752px;}
.y85{bottom:878.797465px;}
.y118{bottom:879.342000px;}
.y1a5{bottom:880.857000px;}
.y117{bottom:883.825500px;}
.y89{bottom:884.859171px;}
.y8{bottom:885.115500px;}
.ye1{bottom:886.596000px;}
.y37{bottom:894.082500px;}
.y1a4{bottom:894.306000px;}
.ya5{bottom:900.051320px;}
.y7{bottom:900.060000px;}
.y14a{bottom:905.035500px;}
.y114{bottom:906.565500px;}
.y1a3{bottom:907.756500px;}
.ye0{bottom:909.715500px;}
.y113{bottom:910.681500px;}
.y36{bottom:912.015000px;}
.y6{bottom:915.003000px;}
.y1a2{bottom:921.205500px;}
.ya2{bottom:922.042429px;}
.y149{bottom:927.697500px;}
.y112{bottom:928.614000px;}
.y5{bottom:929.947500px;}
.ydf{bottom:933.175500px;}
.y1a1{bottom:934.654500px;}
.y111{bottom:942.432000px;}
.y110{bottom:946.548000px;}
.yb2{bottom:947.463706px;}
.y1a0{bottom:948.105000px;}
.yde{bottom:951.108000px;}
.y19f{bottom:961.554000px;}
.y148{bottom:965.526000px;}
.y81{bottom:966.823278px;}
.y147{bottom:969.220500px;}
.y19e{bottom:975.004500px;}
.y7f{bottom:985.425137px;}
.y19d{bottom:988.453500px;}
.ydd{bottom:990.376500px;}
.y10f{bottom:997.045500px;}
.y146{bottom:1000.593000px;}
.y19c{bottom:1001.902500px;}
.y4{bottom:1002.163500px;}
.y145{bottom:1004.985000px;}
.y91{bottom:1007.042693px;}
.ydc{bottom:1008.309000px;}
.y10e{bottom:1011.093000px;}
.y94{bottom:1011.604127px;}
.y9d{bottom:1011.982983px;}
.y143{bottom:1015.236000px;}
.y19b{bottom:1015.353000px;}
.y144{bottom:1021.651500px;}
.y10d{bottom:1025.140500px;}
.y19a{bottom:1028.802000px;}
.y7d{bottom:1029.054261px;}
.y8c{bottom:1032.085114px;}
.y79{bottom:1032.463971px;}
.ydb{bottom:1033.242000px;}
.yda{bottom:1036.936500px;}
.y3{bottom:1037.131500px;}
.y170{bottom:1037.544000px;}
.y76{bottom:1038.540830px;}
.y199{bottom:1042.251000px;}
.y10c{bottom:1050.994500px;}
.yd9{bottom:1055.476500px;}
.y198{bottom:1055.701500px;}
.y96{bottom:1058.279259px;}
.y10b{bottom:1064.443500px;}
.y197{bottom:1069.150500px;}
.y8f{bottom:1069.266100px;}
.yd8{bottom:1073.409000px;}
.y10a{bottom:1077.892500px;}
.y2{bottom:1078.975500px;}
.yd7{bottom:1091.341500px;}
.y109{bottom:1091.343000px;}
.y1{bottom:1141.168500px;}
.h26{height:2.391024px;}
.h16{height:8.713702px;}
.h23{height:8.732644px;}
.h1c{height:10.248071px;}
.h17{height:10.626927px;}
.h21{height:11.005784px;}
.h1f{height:11.384640px;}
.h10{height:18.204059px;}
.h1b{height:18.223002px;}
.hc{height:19.647044px;}
.h1d{height:20.496141px;}
.h19{height:26.178990px;}
.h13{height:26.197933px;}
.h12{height:26.576790px;}
.h18{height:26.936703px;}
.h1{height:28.787846px;}
.h22{height:28.830986px;}
.h20{height:29.986499px;}
.h27{height:31.382100px;}
.h11{height:31.689874px;}
.h8{height:32.900573px;}
.he{height:33.235675px;}
.h1a{height:33.377265px;}
.h15{height:33.396208px;}
.hf{height:34.345510px;}
.h14{height:35.669348px;}
.h5{height:37.336090px;}
.h1e{height:37.563631px;}
.h4{height:37.605082px;}
.h31{height:40.826735px;}
.h6{height:41.125613px;}
.h24{height:44.831700px;}
.h3{height:45.238339px;}
.h29{height:46.326090px;}
.ha{height:47.109375px;}
.h3a{height:48.650100px;}
.h45{height:51.968100px;}
.h3c{height:51.974100px;}
.h9{height:52.998047px;}
.h32{height:53.072100px;}
.h34{height:53.078100px;}
.h2c{height:53.340318px;}
.h30{height:55.903613px;}
.h2e{height:56.060100px;}
.h2a{height:56.066100px;}
.h40{height:57.452100px;}
.h33{height:57.589613px;}
.h38{height:59.609700px;}
.h35{height:61.295700px;}
.h2d{height:65.583024px;}
.h2b{height:65.589024px;}
.h2f{height:68.118318px;}
.h3e{height:68.745024px;}
.h2{height:74.026598px;}
.h42{height:82.129613px;}
.h41{height:82.190100px;}
.h25{height:85.271700px;}
.h28{height:85.835700px;}
.h3d{height:86.484090px;}
.h44{height:86.490090px;}
.h36{height:86.673024px;}
.h43{height:86.679024px;}
.h39{height:93.512100px;}
.h47{height:94.989024px;}
.h48{height:97.064100px;}
.h46{height:101.268090px;}
.h7{height:120.031613px;}
.h3f{height:122.352090px;}
.h37{height:127.677024px;}
.h4a{height:145.611024px;}
.h3b{height:149.294100px;}
.h49{height:150.939024px;}
.hd{height:263.411409px;}
.hb{height:267.340792px;}
.h0{height:1188.000000px;}
.wf{width:10.609472px;}
.wd{width:10.988382px;}
.w7{width:12.901876px;}
.w10{width:20.480071px;}
.w13{width:20.499016px;}
.w3{width:22.772474px;}
.w6{width:26.542626px;}
.wb{width:26.940481px;}
.w15{width:28.456120px;}
.we{width:28.816085px;}
.w14{width:29.213940px;}
.w4{width:31.866308px;}
.w11{width:32.245218px;}
.w8{width:32.624127px;}
.wc{width:36.034315px;}
.w5{width:39.065593px;}
.wa{width:40.581231px;}
.w12{width:45.507058px;}
.w9{width:58.030024px;}
.w2{width:350.470086px;}
.w1{width:378.003264px;}
.w0{width:918.000000px;}
.x13{left:-21.616800px;}
.x0{left:0.000000px;}
.x15{left:1.894549px;}
.x16{left:3.410188px;}
.x2a{left:4.546917px;}
.x1a{left:5.683646px;}
.x18{left:9.870598px;}
.x27{left:12.140268px;}
.x1c{left:13.261840px;}
.x2c{left:14.421304px;}
.x1f{left:16.308275px;}
.x6{left:73.446000px;}
.x5c{left:77.767500px;}
.x11{left:83.008315px;}
.x9{left:85.401000px;}
.x14{left:86.418502px;}
.x5{left:88.390500px;}
.x2{left:94.197000px;}
.x46{left:101.947500px;}
.x8{left:109.230000px;}
.x17{left:119.421539px;}
.x22{left:123.968456px;}
.x49{left:133.663500px;}
.x47{left:137.866500px;}
.x52{left:144.852000px;}
.x31{left:147.741000px;}
.x30{left:157.185000px;}
.x12{left:163.855720px;}
.x19{left:164.943753px;}
.x21{left:166.080483px;}
.x60{left:171.484500px;}
.x48{left:180.510000px;}
.x4c{left:182.767500px;}
.x32{left:186.135000px;}
.x38{left:194.689500px;}
.x39{left:199.918500px;}
.x4f{left:201.330000px;}
.x7{left:203.428500px;}
.xe{left:205.500000px;}
.x5e{left:210.388500px;}
.x37{left:212.446500px;}
.x1b{left:218.051740px;}
.x20{left:219.188470px;}
.x50{left:222.157500px;}
.x5d{left:223.582500px;}
.x4d{left:229.062000px;}
.x33{left:232.696500px;}
.x51{left:234.216000px;}
.x45{left:236.962500px;}
.x61{left:238.191000px;}
.x4a{left:242.616000px;}
.x34{left:245.074500px;}
.x4b{left:249.129000px;}
.x62{left:252.270000px;}
.x1d{left:256.738423px;}
.x54{left:259.191000px;}
.x59{left:267.387000px;}
.x5a{left:275.926500px;}
.x58{left:277.540500px;}
.x4e{left:278.623500px;}
.x23{left:279.867073px;}
.x35{left:281.526000px;}
.x53{left:290.076000px;}
.x2e{left:299.214204px;}
.x5f{left:303.825000px;}
.x29{left:305.678403px;}
.x24{left:319.334309px;}
.x36{left:337.593000px;}
.x2f{left:338.681441px;}
.x26{left:345.880725px;}
.x56{left:347.868000px;}
.x25{left:356.505353px;}
.x10{left:360.256864px;}
.x2b{left:363.325729px;}
.x55{left:368.700000px;}
.x4{left:373.119000px;}
.x28{left:375.852484px;}
.x1e{left:387.598685px;}
.x2d{left:389.114325px;}
.x3{left:402.700500px;}
.x5b{left:425.137500px;}
.x57{left:432.609000px;}
.xa{left:467.967000px;}
.x3f{left:470.215500px;}
.xc{left:482.910000px;}
.x40{left:489.061500px;}
.x44{left:494.259000px;}
.x75{left:502.840500px;}
.x76{left:513.438000px;}
.x43{left:519.217500px;}
.x73{left:521.389500px;}
.x77{left:523.510500px;}
.xb{left:524.620500px;}
.x74{left:530.253000px;}
.x41{left:532.387500px;}
.x68{left:536.508000px;}
.xd{left:538.443000px;}
.x42{left:567.063000px;}
.x71{left:573.994500px;}
.x63{left:575.331000px;}
.x69{left:579.264000px;}
.x3d{left:582.505500px;}
.x72{left:587.476500px;}
.x78{left:590.140500px;}
.x6d{left:598.227000px;}
.x65{left:604.149000px;}
.x6c{left:608.859000px;}
.x3a{left:611.568000px;}
.x66{left:612.687000px;}
.x64{left:614.301000px;}
.x6f{left:616.300500px;}
.x67{left:629.992500px;}
.x3e{left:633.474000px;}
.x6e{left:637.365000px;}
.x6a{left:651.981000px;}
.x3b{left:654.280500px;}
.x70{left:688.093500px;}
.x3c{left:690.330000px;}
.xf{left:706.500000px;}
.x6b{left:708.000000px;}
.x1{left:839.323500px;}
@media print{
.v1d{vertical-align:-54.917333pt;}
.v5{vertical-align:-45.429333pt;}
.v2{vertical-align:-7.968000pt;}
.v3{vertical-align:-1.626667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.168000pt;}
.vc{vertical-align:6.666667pt;}
.v18{vertical-align:10.090667pt;}
.v7{vertical-align:13.136000pt;}
.vb{vertical-align:14.634667pt;}
.v14{vertical-align:18.304000pt;}
.va{vertical-align:19.280000pt;}
.v6{vertical-align:21.941333pt;}
.v17{vertical-align:23.909333pt;}
.vf{vertical-align:27.973333pt;}
.v16{vertical-align:31.877333pt;}
.v4{vertical-align:35.946667pt;}
.v8{vertical-align:43.040000pt;}
.v19{vertical-align:45.162667pt;}
.v10{vertical-align:55.226667pt;}
.v15{vertical-align:58.981333pt;}
.v1{vertical-align:70.138667pt;}
.v1a{vertical-align:72.394667pt;}
.vd{vertical-align:74.917333pt;}
.v11{vertical-align:77.557333pt;}
.v1b{vertical-align:82.309333pt;}
.v12{vertical-align:85.530667pt;}
.v13{vertical-align:104.810667pt;}
.ve{vertical-align:111.365333pt;}
.v1c{vertical-align:127.306667pt;}
.ls49{letter-spacing:-0.641194pt;}
.ls3{letter-spacing:0.000000pt;}
.ls88{letter-spacing:0.000046pt;}
.ls7a{letter-spacing:0.000058pt;}
.ls82{letter-spacing:0.000375pt;}
.ls6b{letter-spacing:0.000749pt;}
.ls5d{letter-spacing:0.000882pt;}
.ls78{letter-spacing:0.000992pt;}
.ls29{letter-spacing:0.001799pt;}
.lsd{letter-spacing:0.001995pt;}
.ls95{letter-spacing:0.002079pt;}
.ls31{letter-spacing:0.002220pt;}
.ls67{letter-spacing:0.002823pt;}
.ls7d{letter-spacing:0.002827pt;}
.ls8e{letter-spacing:0.003246pt;}
.ls2d{letter-spacing:0.005026pt;}
.ls5c{letter-spacing:0.005218pt;}
.ls93{letter-spacing:0.005391pt;}
.ls1e{letter-spacing:0.006082pt;}
.ls5f{letter-spacing:0.006216pt;}
.ls9b{letter-spacing:0.006673pt;}
.ls8c{letter-spacing:0.008260pt;}
.ls96{letter-spacing:0.009004pt;}
.ls26{letter-spacing:0.009422pt;}
.ls2e{letter-spacing:0.010249pt;}
.ls63{letter-spacing:0.010555pt;}
.ls21{letter-spacing:0.013568pt;}
.ls76{letter-spacing:0.017113pt;}
.ls72{letter-spacing:0.018713pt;}
.ls44{letter-spacing:0.018878pt;}
.ls27{letter-spacing:0.018901pt;}
.ls33{letter-spacing:0.019288pt;}
.ls99{letter-spacing:0.019385pt;}
.ls4a{letter-spacing:0.023136pt;}
.ls6c{letter-spacing:0.025647pt;}
.ls4{letter-spacing:0.540165pt;}
.ls47{letter-spacing:0.573841pt;}
.ls10{letter-spacing:0.892646pt;}
.ls48{letter-spacing:1.010284pt;}
.ls36{letter-spacing:1.892395pt;}
.ls58{letter-spacing:1.905975pt;}
.ls5b{letter-spacing:1.911309pt;}
.ls38{letter-spacing:1.913225pt;}
.ls4c{letter-spacing:1.933903pt;}
.ls9f{letter-spacing:2.108364pt;}
.ls40{letter-spacing:2.125360pt;}
.ls9e{letter-spacing:2.142370pt;}
.ls0{letter-spacing:2.635446pt;}
.ls9{letter-spacing:2.640746pt;}
.lsb{letter-spacing:2.648973pt;}
.ls3b{letter-spacing:2.652911pt;}
.lsa0{letter-spacing:2.653413pt;}
.ls1f{letter-spacing:2.656546pt;}
.ls2{letter-spacing:2.656693pt;}
.ls8{letter-spacing:2.657253pt;}
.ls6{letter-spacing:2.658245pt;}
.lsa{letter-spacing:2.677939pt;}
.ls9d{letter-spacing:2.677954pt;}
.ls5e{letter-spacing:2.975497pt;}
.ls4f{letter-spacing:3.081764pt;}
.ls4b{letter-spacing:3.556327pt;}
.ls50{letter-spacing:3.979715pt;}
.ls6d{letter-spacing:4.939289pt;}
.ls4d{letter-spacing:5.547983pt;}
.ls3a{letter-spacing:5.791591pt;}
.ls91{letter-spacing:5.796409pt;}
.ls89{letter-spacing:5.798836pt;}
.ls11{letter-spacing:6.373516pt;}
.ls51{letter-spacing:6.376161pt;}
.ls70{letter-spacing:6.381494pt;}
.ls7{letter-spacing:6.642178pt;}
.ls1{letter-spacing:7.965637pt;}
.ls19{letter-spacing:8.820222pt;}
.ls7c{letter-spacing:8.843664pt;}
.ls65{letter-spacing:8.855121pt;}
.ls80{letter-spacing:8.856161pt;}
.ls18{letter-spacing:8.873356pt;}
.ls97{letter-spacing:9.031578pt;}
.ls83{letter-spacing:9.035213pt;}
.ls57{letter-spacing:11.509880pt;}
.ls25{letter-spacing:11.795718pt;}
.ls24{letter-spacing:11.808749pt;}
.ls6a{letter-spacing:11.821255pt;}
.ls69{letter-spacing:11.848852pt;}
.ls15{letter-spacing:12.008254pt;}
.ls74{letter-spacing:12.104161pt;}
.ls7f{letter-spacing:12.172169pt;}
.ls8a{letter-spacing:14.460911pt;}
.ls2c{letter-spacing:14.464576pt;}
.ls62{letter-spacing:14.718081pt;}
.ls86{letter-spacing:14.746419pt;}
.ls68{letter-spacing:14.759121pt;}
.ls53{letter-spacing:14.760161pt;}
.ls2b{letter-spacing:14.771215pt;}
.ls14{letter-spacing:15.249420pt;}
.ls3c{letter-spacing:15.408821pt;}
.ls1c{letter-spacing:15.621357pt;}
.ls1a{letter-spacing:15.674491pt;}
.ls8f{letter-spacing:17.411878pt;}
.lse{letter-spacing:17.413880pt;}
.ls2a{letter-spacing:17.413909pt;}
.ls7b{letter-spacing:17.417211pt;}
.ls35{letter-spacing:17.419213pt;}
.ls20{letter-spacing:17.693578pt;}
.ls12{letter-spacing:17.756924pt;}
.ls61{letter-spacing:17.852979pt;}
.ls5{letter-spacing:18.313660pt;}
.ls59{letter-spacing:18.543719pt;}
.ls92{letter-spacing:18.596853pt;}
.ls42{letter-spacing:18.703121pt;}
.ls16{letter-spacing:18.862523pt;}
.ls3f{letter-spacing:19.553263pt;}
.ls56{letter-spacing:21.131145pt;}
.ls79{letter-spacing:21.251878pt;}
.lsa1{letter-spacing:21.306681pt;}
.ls90{letter-spacing:21.957812pt;}
.ls9a{letter-spacing:22.439578pt;}
.ls37{letter-spacing:22.725880pt;}
.ls4e{letter-spacing:22.763213pt;}
.ls1d{letter-spacing:23.765880pt;}
.ls1b{letter-spacing:23.803972pt;}
.ls23{letter-spacing:24.357880pt;}
.ls17{letter-spacing:24.388445pt;}
.ls85{letter-spacing:25.451122pt;}
.ls8d{letter-spacing:25.779878pt;}
.ls45{letter-spacing:25.823059pt;}
.ls3d{letter-spacing:26.407532pt;}
.ls43{letter-spacing:26.513799pt;}
.ls3e{letter-spacing:26.779469pt;}
.ls5a{letter-spacing:26.883582pt;}
.ls32{letter-spacing:26.923242pt;}
.ls41{letter-spacing:28.851690pt;}
.ls46{letter-spacing:30.392572pt;}
.ls30{letter-spacing:31.295847pt;}
.ls9c{letter-spacing:32.622993pt;}
.ls34{letter-spacing:33.376576pt;}
.ls7e{letter-spacing:33.579160pt;}
.ls87{letter-spacing:35.186133pt;}
.ls81{letter-spacing:35.474827pt;}
.ls94{letter-spacing:40.562133pt;}
.ls66{letter-spacing:45.163213pt;}
.ls52{letter-spacing:47.920271pt;}
.lsf{letter-spacing:83.013812pt;}
.ls60{letter-spacing:91.815322pt;}
.ls55{letter-spacing:116.188745pt;}
.ls98{letter-spacing:138.797918pt;}
.ls77{letter-spacing:161.826178pt;}
.ls73{letter-spacing:184.706178pt;}
.ls13{letter-spacing:202.227497pt;}
.ls6e{letter-spacing:215.468845pt;}
.lsc{letter-spacing:235.808100pt;}
.ls71{letter-spacing:260.037143pt;}
.ls84{letter-spacing:265.661494pt;}
.ls75{letter-spacing:293.192676pt;}
.ls28{letter-spacing:369.136749pt;}
.ls64{letter-spacing:388.043289pt;}
.ls2f{letter-spacing:390.384576pt;}
.ls54{letter-spacing:392.765542pt;}
.ls22{letter-spacing:401.904749pt;}
.ls6f{letter-spacing:404.766400pt;}
.ls8b{letter-spacing:418.816493pt;}
.ls39{letter-spacing:460.133880pt;}
.ws6a{word-spacing:-42.066082pt;}
.ws66{word-spacing:-34.611401pt;}
.ws6b{word-spacing:-28.118362pt;}
.ws6e{word-spacing:-26.641321pt;}
.ws68{word-spacing:-25.738045pt;}
.ws1{word-spacing:-23.910400pt;}
.wsb1{word-spacing:-22.815682pt;}
.wsb0{word-spacing:-22.762548pt;}
.wsa0{word-spacing:-22.427741pt;}
.ws9c{word-spacing:-22.390547pt;}
.wsb7{word-spacing:-19.893320pt;}
.wsb6{word-spacing:-19.840186pt;}
.wsa3{word-spacing:-19.746435pt;}
.wsda{word-spacing:-19.415115pt;}
.ws48{word-spacing:-15.940160pt;}
.ws89{word-spacing:-14.048594pt;}
.ws5e{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-13.262246pt;}
.wsb5{word-spacing:-12.624390pt;}
.wsd7{word-spacing:-12.507712pt;}
.wsdf{word-spacing:-12.454578pt;}
.ws63{word-spacing:-10.626800pt;}
.wscc{word-spacing:-8.501467pt;}
.ws5f{word-spacing:-8.082139pt;}
.ws60{word-spacing:-7.508298pt;}
.ws61{word-spacing:-6.867104pt;}
.ws84{word-spacing:-2.656693pt;}
.ws46{word-spacing:-2.656653pt;}
.ws94{word-spacing:-2.125360pt;}
.wscf{word-spacing:-0.850142pt;}
.ws78{word-spacing:-0.743874pt;}
.ws18{word-spacing:-0.526029pt;}
.ws69{word-spacing:-0.265669pt;}
.wse4{word-spacing:-0.212535pt;}
.ws30{word-spacing:-0.159402pt;}
.wsb2{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.wsb3{word-spacing:-0.037194pt;}
.wsc8{word-spacing:-0.010667pt;}
.wscb{word-spacing:-0.008541pt;}
.ws47{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.053134pt;}
.wsff{word-spacing:0.255043pt;}
.wse2{word-spacing:0.265669pt;}
.ws4{word-spacing:0.334746pt;}
.ws86{word-spacing:0.425071pt;}
.ws8c{word-spacing:0.456951pt;}
.ws92{word-spacing:0.478205pt;}
.ws77{word-spacing:0.531339pt;}
.ws13{word-spacing:0.669491pt;}
.ws115{word-spacing:0.680115pt;}
.wse6{word-spacing:0.690740pt;}
.ws10c{word-spacing:0.722622pt;}
.wse3{word-spacing:0.850142pt;}
.ws14{word-spacing:0.860774pt;}
.ws1d{word-spacing:0.956410pt;}
.ws2c{word-spacing:1.168945pt;}
.ws103{word-spacing:1.190202pt;}
.ws65{word-spacing:1.275213pt;}
.wsfc{word-spacing:1.360230pt;}
.wsce{word-spacing:1.381481pt;}
.ws9b{word-spacing:1.487748pt;}
.wsfa{word-spacing:1.487752pt;}
.wsb8{word-spacing:1.594016pt;}
.ws73{word-spacing:1.647150pt;}
.wsc6{word-spacing:1.700284pt;}
.ws37{word-spacing:1.753418pt;}
.wsd8{word-spacing:1.785302pt;}
.ws102{word-spacing:1.827810pt;}
.ws56{word-spacing:1.859685pt;}
.ws101{word-spacing:1.870317pt;}
.ws110{word-spacing:1.955331pt;}
.wsf5{word-spacing:1.997838pt;}
.ws87{word-spacing:2.019087pt;}
.ws88{word-spacing:2.125355pt;}
.ws35{word-spacing:2.231622pt;}
.wsaf{word-spacing:2.284756pt;}
.wsfe{word-spacing:2.295389pt;}
.ws9d{word-spacing:2.337890pt;}
.ws91{word-spacing:2.391024pt;}
.wse7{word-spacing:2.656693pt;}
.ws82{word-spacing:2.709827pt;}
.wsef{word-spacing:3.060518pt;}
.wsfb{word-spacing:3.103026pt;}
.wsd6{word-spacing:3.134898pt;}
.ws26{word-spacing:3.188032pt;}
.ws5a{word-spacing:3.241166pt;}
.wse0{word-spacing:3.294300pt;}
.ws62{word-spacing:3.358069pt;}
.ws93{word-spacing:3.453701pt;}
.wsd4{word-spacing:3.528098pt;}
.ws52{word-spacing:3.559969pt;}
.ws23{word-spacing:3.666237pt;}
.ws10d{word-spacing:3.698126pt;}
.wsa8{word-spacing:3.772505pt;}
.ws64{word-spacing:4.091308pt;}
.ws7e{word-spacing:4.197575pt;}
.ws32{word-spacing:4.250720pt;}
.wsc7{word-spacing:4.303843pt;}
.ws4f{word-spacing:4.410111pt;}
.wsd0{word-spacing:4.463245pt;}
.wsb4{word-spacing:4.516379pt;}
.wsf0{word-spacing:4.590778pt;}
.wsd9{word-spacing:4.622646pt;}
.ws114{word-spacing:4.675792pt;}
.ws10e{word-spacing:4.718299pt;}
.ws28{word-spacing:4.728914pt;}
.wsd5{word-spacing:4.760806pt;}
.wsa7{word-spacing:4.835182pt;}
.ws79{word-spacing:4.888316pt;}
.ws43{word-spacing:4.941450pt;}
.wsfd{word-spacing:5.058357pt;}
.ws6{word-spacing:5.069005pt;}
.ws9{word-spacing:5.116826pt;}
.ws96{word-spacing:5.132766pt;}
.wsa{word-spacing:5.164646pt;}
.wsf7{word-spacing:5.185878pt;}
.ws5c{word-spacing:5.270893pt;}
.ws45{word-spacing:5.313387pt;}
.ws42{word-spacing:5.366521pt;}
.ws81{word-spacing:5.419654pt;}
.ws111{word-spacing:5.440922pt;}
.ws24{word-spacing:5.525922pt;}
.ws6c{word-spacing:5.579056pt;}
.wsb{word-spacing:5.642854pt;}
.ws49{word-spacing:5.685324pt;}
.ws100{word-spacing:5.695965pt;}
.wsaa{word-spacing:5.738458pt;}
.wsed{word-spacing:5.791591pt;}
.ws54{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws108{word-spacing:5.908501pt;}
.wsa9{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.wsbe{word-spacing:6.057261pt;}
.wsbf{word-spacing:6.110395pt;}
.wsa5{word-spacing:6.114898pt;}
.ws3b{word-spacing:6.269796pt;}
.ws50{word-spacing:6.322930pt;}
.ws109{word-spacing:6.461094pt;}
.wsc4{word-spacing:6.482332pt;}
.wse5{word-spacing:6.535466pt;}
.ws12{word-spacing:6.551450pt;}
.ws27{word-spacing:6.588599pt;}
.ws2a{word-spacing:6.748001pt;}
.ws70{word-spacing:6.801135pt;}
.ws113{word-spacing:6.801152pt;}
.ws80{word-spacing:6.854269pt;}
.ws38{word-spacing:6.907403pt;}
.wsd1{word-spacing:6.960537pt;}
.ws10f{word-spacing:7.056195pt;}
.ws8e{word-spacing:7.066804pt;}
.ws22{word-spacing:7.385607pt;}
.ws9f{word-spacing:7.438741pt;}
.ws25{word-spacing:7.491875pt;}
.ws5{word-spacing:7.507866pt;}
.ws1e{word-spacing:7.651277pt;}
.ws76{word-spacing:7.863812pt;}
.wsee{word-spacing:7.948846pt;}
.ws1c{word-spacing:7.970080pt;}
.ws3f{word-spacing:8.129482pt;}
.wsf6{word-spacing:8.288904pt;}
.ws20{word-spacing:8.342017pt;}
.ws10a{word-spacing:8.458933pt;}
.wse{word-spacing:8.512102pt;}
.ws44{word-spacing:8.554553pt;}
.ws1f{word-spacing:8.607686pt;}
.ws4d{word-spacing:8.660820pt;}
.wse9{word-spacing:8.713954pt;}
.wsc0{word-spacing:8.767088pt;}
.ws74{word-spacing:8.790024pt;}
.ws75{word-spacing:8.795357pt;}
.wsba{word-spacing:8.802849pt;}
.ws59{word-spacing:8.820222pt;}
.ws72{word-spacing:8.979623pt;}
.wsa2{word-spacing:9.085891pt;}
.wsf8{word-spacing:9.224062pt;}
.ws31{word-spacing:9.245293pt;}
.ws3c{word-spacing:9.510962pt;}
.ws116{word-spacing:9.564120pt;}
.ws0{word-spacing:9.564160pt;}
.ws10b{word-spacing:9.606627pt;}
.ws2e{word-spacing:9.670364pt;}
.ws4e{word-spacing:9.723498pt;}
.ws8f{word-spacing:9.776631pt;}
.ws4c{word-spacing:9.829765pt;}
.wse1{word-spacing:10.095435pt;}
.ws107{word-spacing:10.116714pt;}
.wsd3{word-spacing:10.201702pt;}
.ws6f{word-spacing:10.467372pt;}
.wsd2{word-spacing:10.573639pt;}
.ws5b{word-spacing:10.626773pt;}
.ws2f{word-spacing:10.679907pt;}
.ws36{word-spacing:10.733041pt;}
.wsec{word-spacing:10.839309pt;}
.ws71{word-spacing:10.945577pt;}
.wsf1{word-spacing:10.966858pt;}
.ws7c{word-spacing:10.998710pt;}
.wsa4{word-spacing:11.317514pt;}
.ws11{word-spacing:11.333530pt;}
.ws17{word-spacing:11.381350pt;}
.ws15{word-spacing:11.668275pt;}
.ws7{word-spacing:11.716096pt;}
.wsbb{word-spacing:11.742585pt;}
.ws90{word-spacing:11.795718pt;}
.wsdd{word-spacing:11.848852pt;}
.wsea{word-spacing:12.061388pt;}
.wsc2{word-spacing:12.167655pt;}
.wsdc{word-spacing:12.220789pt;}
.ws53{word-spacing:12.433325pt;}
.wsf2{word-spacing:12.454610pt;}
.ws10{word-spacing:12.815974pt;}
.ws2d{word-spacing:12.911530pt;}
.wsf4{word-spacing:12.922189pt;}
.ws3a{word-spacing:12.964663pt;}
.ws7f{word-spacing:13.070931pt;}
.ws8b{word-spacing:13.124065pt;}
.ws104{word-spacing:13.219739pt;}
.ws51{word-spacing:13.336601pt;}
.wsf3{word-spacing:13.474782pt;}
.ws9e{word-spacing:13.549136pt;}
.wsc{word-spacing:13.581107pt;}
.ws58{word-spacing:13.761671pt;}
.wseb{word-spacing:13.921073pt;}
.wsbd{word-spacing:13.945926pt;}
.wsd{word-spacing:14.154957pt;}
.ws57{word-spacing:14.239876pt;}
.ws40{word-spacing:14.346144pt;}
.ws9a{word-spacing:14.505546pt;}
.ws4b{word-spacing:14.558679pt;}
.ws21{word-spacing:14.664947pt;}
.ws67{word-spacing:14.718081pt;}
.wsf9{word-spacing:14.792506pt;}
.wsf{word-spacing:14.824448pt;}
.ws5d{word-spacing:14.983750pt;}
.ws41{word-spacing:15.090018pt;}
.ws8a{word-spacing:15.143152pt;}
.wse8{word-spacing:15.461955pt;}
.ws85{word-spacing:15.727625pt;}
.wsc5{word-spacing:15.780758pt;}
.ws8d{word-spacing:15.887026pt;}
.ws19{word-spacing:15.940160pt;}
.ws112{word-spacing:16.067722pt;}
.ws99{word-spacing:16.099562pt;}
.ws4a{word-spacing:16.418365pt;}
.ws39{word-spacing:16.577766pt;}
.ws105{word-spacing:16.662822pt;}
.ws106{word-spacing:16.705330pt;}
.wsca{word-spacing:16.737168pt;}
.wsde{word-spacing:16.790302pt;}
.wsc9{word-spacing:17.055971pt;}
.ws2b{word-spacing:17.162239pt;}
.ws29{word-spacing:17.215373pt;}
.ws55{word-spacing:17.321641pt;}
.ws7d{word-spacing:17.427908pt;}
.ws83{word-spacing:17.534176pt;}
.ws7b{word-spacing:18.012381pt;}
.ws7a{word-spacing:18.065515pt;}
.ws1b{word-spacing:18.331184pt;}
.wsa1{word-spacing:18.649987pt;}
.ws3e{word-spacing:19.340727pt;}
.wsdb{word-spacing:19.500129pt;}
.ws8{word-spacing:19.558707pt;}
.ws3d{word-spacing:19.818932pt;}
.wsc1{word-spacing:21.807259pt;}
.ws33{word-spacing:23.676510pt;}
.ws34{word-spacing:23.804032pt;}
.ws6d{word-spacing:24.335311pt;}
.wsa6{word-spacing:25.823059pt;}
.wsb9{word-spacing:41.125613pt;}
.ws97{word-spacing:55.260133pt;}
.wsab{word-spacing:60.572400pt;}
.wsac{word-spacing:71.198933pt;}
.ws98{word-spacing:73.670234pt;}
.ws95{word-spacing:76.508400pt;}
.wsae{word-spacing:87.143600pt;}
.wsad{word-spacing:89.616901pt;}
.wscd{word-spacing:354.441985pt;}
.wsc3{word-spacing:374.593760pt;}
._3{margin-left:-6.216704pt;}
._10{margin-left:-5.313364pt;}
._4{margin-left:-4.399514pt;}
._1{margin-left:-3.347456pt;}
._6{margin-left:-2.391014pt;}
._0{margin-left:-1.434624pt;}
._a{width:0.913911pt;}
._5{width:2.656693pt;}
._14{width:4.201300pt;}
._1d{width:6.375467pt;}
._1a{width:7.810678pt;}
._b{width:8.873356pt;}
._9{width:14.239895pt;}
._1c{width:15.645907pt;}
._8{width:16.790311pt;}
._1b{width:18.543719pt;}
._2{width:19.558707pt;}
._c{width:21.880517pt;}
._e{width:23.378892pt;}
._27{width:24.781698pt;}
._f{width:25.929369pt;}
._7{width:27.470209pt;}
._26{width:28.394810pt;}
._d{width:30.711375pt;}
._13{width:76.381778pt;}
._16{width:87.138000pt;}
._17{width:102.942311pt;}
._18{width:108.391333pt;}
._12{width:162.569905pt;}
._24{width:221.565743pt;}
._21{width:255.329081pt;}
._1f{width:267.560231pt;}
._20{width:294.391120pt;}
._19{width:320.344082pt;}
._15{width:326.509766pt;}
._11{width:335.373802pt;}
._23{width:359.427341pt;}
._1e{width:365.238277pt;}
._22{width:413.749344pt;}
._25{width:459.988174pt;}
.fs9{font-size:17.558347pt;}
.fsb{font-size:27.008265pt;}
.fsa{font-size:29.702357pt;}
.fsc{font-size:31.880533pt;}
.fsd{font-size:34.005867pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:95.641600pt;}
.fs6{font-size:153.298667pt;}
.y9c{bottom:-14.851178pt;}
.y80{bottom:-12.493848pt;}
.yaa{bottom:-6.415305pt;}
.y9b{bottom:-6.411937pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:0.399053pt;}
.y78{bottom:1.347046pt;}
.y8b{bottom:1.363884pt;}
.yb3{bottom:1.367251pt;}
.y9a{bottom:1.683807pt;}
.ya9{bottom:2.020568pt;}
.y75{bottom:2.149750pt;}
.yb1{bottom:2.357330pt;}
.y95{bottom:2.694091pt;}
.y90{bottom:2.714297pt;}
.y82{bottom:3.030853pt;}
.y93{bottom:3.381085pt;}
.yac{bottom:3.384452pt;}
.ya4{bottom:3.387820pt;}
.y9e{bottom:3.704376pt;}
.y8e{bottom:8.095744pt;}
.y8a{bottom:9.782919pt;}
.y77{bottom:9.786287pt;}
.y99{bottom:10.102842pt;}
.ya8{bottom:10.456442pt;}
.yb0{bottom:10.793338pt;}
.y92{bottom:11.800120pt;}
.ya3{bottom:11.820326pt;}
.y86{bottom:12.140249pt;}
.y7b{bottom:12.157087pt;}
.y84{bottom:12.477010pt;}
.y7a{bottom:12.493848pt;}
.y88{bottom:15.171102pt;}
.y7e{bottom:15.187940pt;}
.y8d{bottom:16.534985pt;}
.y74{bottom:17.320986pt;}
.ya7{bottom:18.537369pt;}
.y98{bottom:18.542083pt;}
.yaf{bottom:19.229211pt;}
.ya1{bottom:20.239361pt;}
.y7c{bottom:20.576122pt;}
.y61{bottom:24.000000pt;}
.y97{bottom:26.974589pt;}
.ya6{bottom:26.976610pt;}
.y73{bottom:31.818565pt;}
.y60{bottom:40.000000pt;}
.y72{bottom:46.669744pt;}
.y71{bottom:61.167322pt;}
.y5f{bottom:61.489333pt;}
.y70{bottom:75.663554pt;}
.y5e{bottom:77.429333pt;}
.y35{bottom:82.212000pt;}
.y142{bottom:89.773333pt;}
.y6f{bottom:90.514732pt;}
.y5d{bottom:93.369333pt;}
.y141{bottom:93.677333pt;}
.y34{bottom:94.166667pt;}
.y108{bottom:97.978667pt;}
.y13f{bottom:102.789333pt;}
.y6e{bottom:105.015679pt;}
.y33{bottom:106.121333pt;}
.y140{bottom:108.492000pt;}
.yd6{bottom:109.309333pt;}
.y16f{bottom:109.310667pt;}
.y186{bottom:110.565333pt;}
.y5c{bottom:117.533333pt;}
.y32{bottom:118.077333pt;}
.y6d{bottom:119.509890pt;}
.yd5{bottom:125.250667pt;}
.y185{bottom:126.506667pt;}
.y6c{bottom:134.361068pt;}
.y107{bottom:135.873333pt;}
.y13e{bottom:139.760000pt;}
.y16e{bottom:140.057333pt;}
.yd4{bottom:141.190667pt;}
.y184{bottom:142.446667pt;}
.y31{bottom:144.057333pt;}
.y6b{bottom:148.862015pt;}
.y106{bottom:151.813333pt;}
.y16d{bottom:152.542667pt;}
.y13d{bottom:155.804000pt;}
.y5b{bottom:157.130667pt;}
.y183{bottom:158.386667pt;}
.y30{bottom:159.997333pt;}
.y6a{bottom:163.376431pt;}
.y13c{bottom:164.916000pt;}
.y16c{bottom:165.029333pt;}
.y105{bottom:167.753333pt;}
.y5a{bottom:173.070667pt;}
.y182{bottom:174.326667pt;}
.y2f{bottom:175.937333pt;}
.y16b{bottom:177.516000pt;}
.y69{bottom:177.870643pt;}
.yd3{bottom:181.678667pt;}
.y104{bottom:183.694667pt;}
.y59{bottom:189.010667pt;}
.y16a{bottom:190.002667pt;}
.y181{bottom:190.266667pt;}
.y2e{bottom:191.877333pt;}
.y68{bottom:192.708350pt;}
.y13b{bottom:198.653333pt;}
.y103{bottom:199.634667pt;}
.y169{bottom:202.489333pt;}
.y58{bottom:204.950667pt;}
.y196{bottom:204.952000pt;}
.y180{bottom:206.208000pt;}
.y67{bottom:207.222767pt;}
.y2d{bottom:207.818667pt;}
.yd2{bottom:213.493333pt;}
.y13a{bottom:214.593333pt;}
.y168{bottom:214.976000pt;}
.y102{bottom:215.574667pt;}
.y57{bottom:220.890667pt;}
.y195{bottom:220.892000pt;}
.y17f{bottom:222.148000pt;}
.y66{bottom:222.390501pt;}
.y2c{bottom:223.758667pt;}
.y167{bottom:227.462667pt;}
.yd1{bottom:229.434667pt;}
.y139{bottom:230.533333pt;}
.y101{bottom:231.514667pt;}
.y56{bottom:236.832000pt;}
.y65{bottom:237.564970pt;}
.y17e{bottom:238.088000pt;}
.y2b{bottom:239.698667pt;}
.y166{bottom:239.949333pt;}
.yd0{bottom:245.374667pt;}
.y100{bottom:247.454667pt;}
.y138{bottom:252.405333pt;}
.y165{bottom:252.434667pt;}
.y55{bottom:252.772000pt;}
.y17d{bottom:254.028000pt;}
.y2a{bottom:255.638667pt;}
.y137{bottom:255.689333pt;}
.ycf{bottom:261.314667pt;}
.yff{bottom:263.396000pt;}
.y54{bottom:268.712000pt;}
.y1d0{bottom:268.912000pt;}
.y17c{bottom:269.968000pt;}
.y29{bottom:271.578667pt;}
.y164{bottom:275.416000pt;}
.yce{bottom:277.254667pt;}
.yfe{bottom:279.336000pt;}
.y1cf{bottom:280.866667pt;}
.y53{bottom:284.652000pt;}
.y17b{bottom:287.164000pt;}
.y163{bottom:287.370667pt;}
.y28{bottom:287.518667pt;}
.y136{bottom:287.818667pt;}
.y1ce{bottom:292.822667pt;}
.yfd{bottom:295.276000pt;}
.ycd{bottom:298.520000pt;}
.y52{bottom:300.592000pt;}
.ycc{bottom:301.804000pt;}
.y17a{bottom:303.105333pt;}
.y27{bottom:303.460000pt;}
.y135{bottom:303.760000pt;}
.y194{bottom:304.677333pt;}
.y1cd{bottom:304.777333pt;}
.yfc{bottom:311.216000pt;}
.y51{bottom:316.532000pt;}
.y1cc{bottom:316.732000pt;}
.y179{bottom:319.045333pt;}
.y26{bottom:319.400000pt;}
.y134{bottom:319.745333pt;}
.y162{bottom:319.750667pt;}
.yfb{bottom:327.156000pt;}
.y1cb{bottom:328.688000pt;}
.y133{bottom:330.133333pt;}
.y50{bottom:332.473333pt;}
.y25{bottom:335.340000pt;}
.y161{bottom:335.690667pt;}
.y193{bottom:336.957333pt;}
.y132{bottom:338.102667pt;}
.ycb{bottom:339.008000pt;}
.y1ca{bottom:340.642667pt;}
.yca{bottom:342.292000pt;}
.yfa{bottom:343.096000pt;}
.y4f{bottom:348.413333pt;}
.y24{bottom:351.280000pt;}
.y178{bottom:351.308000pt;}
.y160{bottom:351.632000pt;}
.y1c9{bottom:352.598667pt;}
.y192{bottom:352.897333pt;}
.yf9{bottom:359.037333pt;}
.y177{bottom:363.264000pt;}
.y4e{bottom:364.353333pt;}
.y1c8{bottom:364.553333pt;}
.y23{bottom:367.220000pt;}
.y15f{bottom:367.572000pt;}
.y191{bottom:368.837333pt;}
.yc9{bottom:374.106667pt;}
.y176{bottom:375.218667pt;}
.y1c7{bottom:376.508000pt;}
.y131{bottom:379.200000pt;}
.yf8{bottom:379.586667pt;}
.y4d{bottom:380.293333pt;}
.y22{bottom:383.160000pt;}
.y15e{bottom:383.512000pt;}
.y190{bottom:384.778667pt;}
.y1c6{bottom:388.464000pt;}
.yc8{bottom:390.046667pt;}
.y130{bottom:395.140000pt;}
.y4c{bottom:396.233333pt;}
.y21{bottom:399.101333pt;}
.y1c5{bottom:400.418667pt;}
.y18f{bottom:400.718667pt;}
.y15d{bottom:403.670667pt;}
.yc7{bottom:405.988000pt;}
.y4b{bottom:412.173333pt;}
.y1c4{bottom:412.373333pt;}
.y20{bottom:415.041333pt;}
.y12f{bottom:420.296000pt;}
.yc6{bottom:421.928000pt;}
.y1c3{bottom:424.329333pt;}
.y4a{bottom:428.114667pt;}
.y18e{bottom:429.101333pt;}
.y1f{bottom:430.981333pt;}
.yf7{bottom:432.474667pt;}
.y1c2{bottom:436.284000pt;}
.y15c{bottom:437.590667pt;}
.yc5{bottom:437.868000pt;}
.y18d{bottom:441.057333pt;}
.y49{bottom:444.054667pt;}
.yf6{bottom:444.961333pt;}
.y1e{bottom:446.921333pt;}
.y1c1{bottom:448.240000pt;}
.y12e{bottom:452.425333pt;}
.y18c{bottom:453.012000pt;}
.y15b{bottom:453.530667pt;}
.yc4{bottom:453.808000pt;}
.yf5{bottom:457.448000pt;}
.y48{bottom:459.994667pt;}
.y1c0{bottom:460.194667pt;}
.y1d{bottom:462.861333pt;}
.y12d{bottom:468.366667pt;}
.y15a{bottom:469.470667pt;}
.yc3{bottom:469.748000pt;}
.y1bf{bottom:472.149333pt;}
.y1b{bottom:477.208000pt;}
.y1c{bottom:478.801333pt;}
.yf4{bottom:480.428000pt;}
.y1be{bottom:484.105333pt;}
.y47{bottom:484.158667pt;}
.y159{bottom:485.412000pt;}
.yc2{bottom:485.688000pt;}
.yf3{bottom:492.382667pt;}
.y12c{bottom:493.522667pt;}
.y1bd{bottom:496.060000pt;}
.y158{bottom:501.352000pt;}
.yf2{bottom:504.337333pt;}
.yc0{bottom:505.588000pt;}
.y1bc{bottom:508.014667pt;}
.yc1{bottom:512.453333pt;}
.y1a{bottom:515.305333pt;}
.yf1{bottom:516.293333pt;}
.y1bb{bottom:519.970667pt;}
.ybc{bottom:521.565333pt;}
.ybd{bottom:521.964000pt;}
.y46{bottom:523.756000pt;}
.y12b{bottom:525.652000pt;}
.y157{bottom:526.918667pt;}
.y1ba{bottom:531.925333pt;}
.ybf{bottom:534.184000pt;}
.y156{bottom:536.030667pt;}
.ybe{bottom:539.313333pt;}
.y45{bottom:539.696000pt;}
.y1b9{bottom:543.881333pt;}
.y12a{bottom:543.926667pt;}
.y129{bottom:547.830667pt;}
.yf0{bottom:548.982667pt;}
.y19{bottom:553.492000pt;}
.y44{bottom:555.636000pt;}
.y1b8{bottom:555.836000pt;}
.y127{bottom:556.942667pt;}
.y128{bottom:562.645333pt;}
.ybb{bottom:563.490667pt;}
.yef{bottom:564.922667pt;}
.y18{bottom:566.774667pt;}
.y1b7{bottom:567.790667pt;}
.y43{bottom:571.576000pt;}
.y155{bottom:576.962667pt;}
.yba{bottom:579.430667pt;}
.y1b6{bottom:579.746667pt;}
.yee{bottom:580.862667pt;}
.y42{bottom:587.516000pt;}
.y17{bottom:587.517333pt;}
.y1b5{bottom:591.701333pt;}
.y126{bottom:592.932000pt;}
.y154{bottom:595.184000pt;}
.yed{bottom:596.802667pt;}
.y16{bottom:600.800000pt;}
.y41{bottom:603.457333pt;}
.y1b4{bottom:603.656000pt;}
.yb9{bottom:603.978667pt;}
.y153{bottom:604.296000pt;}
.y125{bottom:611.206667pt;}
.y124{bottom:611.826667pt;}
.y175{bottom:612.682667pt;}
.yec{bottom:612.742667pt;}
.y15{bottom:614.084000pt;}
.y123{bottom:615.110667pt;}
.y1b3{bottom:615.612000pt;}
.y40{bottom:619.397333pt;}
.y121{bottom:624.222667pt;}
.y14{bottom:627.366667pt;}
.y1b2{bottom:627.566667pt;}
.y174{bottom:628.624000pt;}
.yeb{bottom:628.684000pt;}
.y122{bottom:629.925333pt;}
.y3f{bottom:635.337333pt;}
.yb8{bottom:635.793333pt;}
.y1b1{bottom:639.521333pt;}
.y152{bottom:640.065333pt;}
.y13{bottom:640.650667pt;}
.yea{bottom:644.624000pt;}
.y3e{bottom:651.277333pt;}
.y1b0{bottom:651.477333pt;}
.yb7{bottom:651.733333pt;}
.y12{bottom:653.934667pt;}
.y151{bottom:656.005333pt;}
.y120{bottom:660.212000pt;}
.ye9{bottom:660.564000pt;}
.y173{bottom:660.886667pt;}
.y1af{bottom:663.432000pt;}
.y11{bottom:667.217333pt;}
.yb6{bottom:667.674667pt;}
.y172{bottom:672.842667pt;}
.y1ae{bottom:675.388000pt;}
.y150{bottom:675.740000pt;}
.y11f{bottom:676.152000pt;}
.ye8{bottom:676.504000pt;}
.y10{bottom:680.501333pt;}
.y3d{bottom:683.157333pt;}
.y171{bottom:684.797333pt;}
.y14f{bottom:684.852000pt;}
.y18b{bottom:686.596000pt;}
.y1ad{bottom:687.342667pt;}
.ye7{bottom:692.444000pt;}
.yf{bottom:693.785333pt;}
.y11e{bottom:698.024000pt;}
.y3c{bottom:699.098667pt;}
.y1ac{bottom:699.297333pt;}
.y11c{bottom:701.308000pt;}
.y18a{bottom:702.536000pt;}
.ye{bottom:707.068000pt;}
.yb5{bottom:707.742667pt;}
.ye6{bottom:708.384000pt;}
.y11d{bottom:709.465333pt;}
.y1ab{bottom:711.253333pt;}
.y3b{bottom:715.038667pt;}
.yb4{bottom:719.697333pt;}
.yd{bottom:720.352000pt;}
.y14e{bottom:722.462667pt;}
.y1aa{bottom:723.208000pt;}
.ye5{bottom:724.325333pt;}
.y3a{bottom:730.978667pt;}
.y11b{bottom:733.437333pt;}
.yc{bottom:733.636000pt;}
.y1a9{bottom:735.162667pt;}
.y14d{bottom:738.402667pt;}
.ye4{bottom:740.265333pt;}
.y62{bottom:743.608000pt;}
.y64{bottom:744.266478pt;}
.y189{bottom:744.422667pt;}
.yb{bottom:746.918667pt;}
.yae{bottom:747.089751pt;}
.y1a8{bottom:747.118667pt;}
.y119{bottom:753.041333pt;}
.yad{bottom:754.161875pt;}
.ye3{bottom:756.205333pt;}
.y188{bottom:756.377333pt;}
.y1a7{bottom:759.073333pt;}
.y116{bottom:759.906667pt;}
.y14c{bottom:760.132000pt;}
.ya{bottom:760.202667pt;}
.y39{bottom:762.858667pt;}
.y187{bottom:768.332000pt;}
.y11a{bottom:769.018667pt;}
.y14b{bottom:769.244000pt;}
.y1a6{bottom:771.029333pt;}
.ye2{bottom:772.145333pt;}
.y9{bottom:773.486667pt;}
.yab{bottom:774.401236pt;}
.y9f{bottom:777.448927pt;}
.y115{bottom:778.005333pt;}
.y87{bottom:778.459211pt;}
.ya0{bottom:778.795973pt;}
.y38{bottom:778.798667pt;}
.y83{bottom:780.479780pt;}
.y85{bottom:781.153302pt;}
.y118{bottom:781.637333pt;}
.y1a5{bottom:782.984000pt;}
.y117{bottom:785.622667pt;}
.y89{bottom:786.541485pt;}
.y8{bottom:786.769333pt;}
.ye1{bottom:788.085333pt;}
.y37{bottom:794.740000pt;}
.y1a4{bottom:794.938667pt;}
.ya5{bottom:800.045618pt;}
.y7{bottom:800.053333pt;}
.y14a{bottom:804.476000pt;}
.y114{bottom:805.836000pt;}
.y1a3{bottom:806.894667pt;}
.ye0{bottom:808.636000pt;}
.y113{bottom:809.494667pt;}
.y36{bottom:810.680000pt;}
.y6{bottom:813.336000pt;}
.y1a2{bottom:818.849333pt;}
.ya2{bottom:819.593271pt;}
.y149{bottom:824.620000pt;}
.y112{bottom:825.434667pt;}
.y5{bottom:826.620000pt;}
.ydf{bottom:829.489333pt;}
.y1a1{bottom:830.804000pt;}
.y111{bottom:837.717333pt;}
.y110{bottom:841.376000pt;}
.yb2{bottom:842.189961pt;}
.y1a0{bottom:842.760000pt;}
.yde{bottom:845.429333pt;}
.y19f{bottom:854.714667pt;}
.y148{bottom:858.245333pt;}
.y81{bottom:859.398469pt;}
.y147{bottom:861.529333pt;}
.y19e{bottom:866.670667pt;}
.y7f{bottom:875.933455pt;}
.y19d{bottom:878.625333pt;}
.ydd{bottom:880.334667pt;}
.y10f{bottom:886.262667pt;}
.y146{bottom:889.416000pt;}
.y19c{bottom:890.580000pt;}
.y4{bottom:890.812000pt;}
.y145{bottom:893.320000pt;}
.y91{bottom:895.149061pt;}
.ydc{bottom:896.274667pt;}
.y10e{bottom:898.749333pt;}
.y94{bottom:899.203668pt;}
.y9d{bottom:899.540430pt;}
.y143{bottom:902.432000pt;}
.y19b{bottom:902.536000pt;}
.y144{bottom:908.134667pt;}
.y10d{bottom:911.236000pt;}
.y19a{bottom:914.490667pt;}
.y7d{bottom:914.714899pt;}
.y8c{bottom:917.408990pt;}
.y79{bottom:917.745752pt;}
.ydb{bottom:918.437333pt;}
.yda{bottom:921.721333pt;}
.y3{bottom:921.894667pt;}
.y170{bottom:922.261333pt;}
.y76{bottom:923.147405pt;}
.y199{bottom:926.445333pt;}
.y10c{bottom:934.217333pt;}
.yd9{bottom:938.201333pt;}
.y198{bottom:938.401333pt;}
.y96{bottom:940.692674pt;}
.y10b{bottom:946.172000pt;}
.y197{bottom:950.356000pt;}
.y8f{bottom:950.458755pt;}
.yd8{bottom:954.141333pt;}
.y10a{bottom:958.126667pt;}
.y2{bottom:959.089333pt;}
.yd7{bottom:970.081333pt;}
.y109{bottom:970.082667pt;}
.y1{bottom:1014.372000pt;}
.h26{height:2.125355pt;}
.h16{height:7.745512pt;}
.h23{height:7.762351pt;}
.h1c{height:9.109396pt;}
.h17{height:9.446158pt;}
.h21{height:9.782919pt;}
.h1f{height:10.119680pt;}
.h10{height:16.181386pt;}
.h1b{height:16.198224pt;}
.hc{height:17.464039pt;}
.h1d{height:18.218792pt;}
.h19{height:23.270214pt;}
.h13{height:23.287052pt;}
.h12{height:23.623813pt;}
.h18{height:23.943736pt;}
.h1{height:25.589197pt;}
.h22{height:25.627543pt;}
.h20{height:26.654666pt;}
.h27{height:27.895200pt;}
.h11{height:28.168777pt;}
.h8{height:29.244954pt;}
.he{height:29.542822pt;}
.h1a{height:29.668680pt;}
.h15{height:29.685518pt;}
.hf{height:30.529342pt;}
.h14{height:31.706087pt;}
.h5{height:33.187635pt;}
.h1e{height:33.389894pt;}
.h4{height:33.426739pt;}
.h31{height:36.290431pt;}
.h6{height:36.556100pt;}
.h24{height:39.850400pt;}
.h3{height:40.211857pt;}
.h29{height:41.178747pt;}
.ha{height:41.875000pt;}
.h3a{height:43.244533pt;}
.h45{height:46.193867pt;}
.h3c{height:46.199200pt;}
.h9{height:47.109375pt;}
.h32{height:47.175200pt;}
.h34{height:47.180533pt;}
.h2c{height:47.413616pt;}
.h30{height:49.692100pt;}
.h2e{height:49.831200pt;}
.h2a{height:49.836533pt;}
.h40{height:51.068533pt;}
.h33{height:51.190767pt;}
.h38{height:52.986400pt;}
.h35{height:54.485067pt;}
.h2d{height:58.296021pt;}
.h2b{height:58.301355pt;}
.h2f{height:60.549616pt;}
.h3e{height:61.106688pt;}
.h2{height:65.801421pt;}
.h42{height:73.004100pt;}
.h41{height:73.057867pt;}
.h25{height:75.797067pt;}
.h28{height:76.298400pt;}
.h3d{height:76.874747pt;}
.h44{height:76.880080pt;}
.h36{height:77.042688pt;}
.h43{height:77.048021pt;}
.h39{height:83.121867pt;}
.h47{height:84.434688pt;}
.h48{height:86.279200pt;}
.h46{height:90.016080pt;}
.h7{height:106.694767pt;}
.h3f{height:108.757413pt;}
.h37{height:113.490688pt;}
.h4a{height:129.432021pt;}
.h3b{height:132.705867pt;}
.h49{height:134.168021pt;}
.hd{height:234.143474pt;}
.hb{height:237.636260pt;}
.h0{height:1056.000000pt;}
.wf{width:9.430642pt;}
.wd{width:9.767451pt;}
.w7{width:11.468334pt;}
.w10{width:18.204507pt;}
.w13{width:18.221348pt;}
.w3{width:20.242200pt;}
.w6{width:23.593446pt;}
.wb{width:23.947095pt;}
.w15{width:25.294329pt;}
.we{width:25.614297pt;}
.w14{width:25.967946pt;}
.w4{width:28.325607pt;}
.w11{width:28.662416pt;}
.w8{width:28.999224pt;}
.wc{width:32.030502pt;}
.w5{width:34.724971pt;}
.wa{width:36.072206pt;}
.w12{width:40.450718pt;}
.w9{width:51.582244pt;}
.w2{width:311.528966pt;}
.w1{width:336.002902pt;}
.w0{width:816.000000pt;}
.x13{left:-19.214934pt;}
.x0{left:0.000000pt;}
.x15{left:1.684043pt;}
.x16{left:3.031278pt;}
.x2a{left:4.041704pt;}
.x1a{left:5.052130pt;}
.x18{left:8.773865pt;}
.x27{left:10.791349pt;}
.x1c{left:11.788303pt;}
.x2c{left:12.818937pt;}
.x1f{left:14.496244pt;}
.x6{left:65.285333pt;}
.x5c{left:69.126667pt;}
.x11{left:73.785169pt;}
.x9{left:75.912000pt;}
.x14{left:76.816447pt;}
.x5{left:78.569333pt;}
.x2{left:83.730667pt;}
.x46{left:90.620000pt;}
.x8{left:97.093333pt;}
.x17{left:106.152479pt;}
.x22{left:110.194183pt;}
.x49{left:118.812000pt;}
.x47{left:122.548000pt;}
.x52{left:128.757333pt;}
.x31{left:131.325333pt;}
.x30{left:139.720000pt;}
.x12{left:145.649529pt;}
.x19{left:146.616670pt;}
.x21{left:147.627096pt;}
.x60{left:152.430667pt;}
.x48{left:160.453333pt;}
.x4c{left:162.460000pt;}
.x32{left:165.453333pt;}
.x38{left:173.057333pt;}
.x39{left:177.705333pt;}
.x4f{left:178.960000pt;}
.x7{left:180.825333pt;}
.xe{left:182.666667pt;}
.x5e{left:187.012000pt;}
.x37{left:188.841333pt;}
.x1b{left:193.823769pt;}
.x20{left:194.834196pt;}
.x50{left:197.473333pt;}
.x5d{left:198.740000pt;}
.x4d{left:203.610667pt;}
.x33{left:206.841333pt;}
.x51{left:208.192000pt;}
.x45{left:210.633333pt;}
.x61{left:211.725333pt;}
.x4a{left:215.658667pt;}
.x34{left:217.844000pt;}
.x4b{left:221.448000pt;}
.x62{left:224.240000pt;}
.x1d{left:228.211932pt;}
.x54{left:230.392000pt;}
.x59{left:237.677333pt;}
.x5a{left:245.268000pt;}
.x58{left:246.702667pt;}
.x4e{left:247.665333pt;}
.x23{left:248.770731pt;}
.x35{left:250.245333pt;}
.x53{left:257.845333pt;}
.x2e{left:265.968181pt;}
.x5f{left:270.066667pt;}
.x29{left:271.714136pt;}
.x24{left:283.852719pt;}
.x36{left:300.082667pt;}
.x2f{left:301.050169pt;}
.x26{left:307.449533pt;}
.x56{left:309.216000pt;}
.x25{left:316.893648pt;}
.x10{left:320.228323pt;}
.x2b{left:322.956203pt;}
.x55{left:327.733333pt;}
.x4{left:331.661333pt;}
.x28{left:334.091097pt;}
.x1e{left:344.532165pt;}
.x2d{left:345.879400pt;}
.x3{left:357.956000pt;}
.x5b{left:377.900000pt;}
.x57{left:384.541333pt;}
.xa{left:415.970667pt;}
.x3f{left:417.969333pt;}
.xc{left:429.253333pt;}
.x40{left:434.721333pt;}
.x44{left:439.341333pt;}
.x75{left:446.969333pt;}
.x76{left:456.389333pt;}
.x43{left:461.526667pt;}
.x73{left:463.457333pt;}
.x77{left:465.342667pt;}
.xb{left:466.329333pt;}
.x74{left:471.336000pt;}
.x41{left:473.233333pt;}
.x68{left:476.896000pt;}
.xd{left:478.616000pt;}
.x42{left:504.056000pt;}
.x71{left:510.217333pt;}
.x63{left:511.405333pt;}
.x69{left:514.901333pt;}
.x3d{left:517.782667pt;}
.x72{left:522.201333pt;}
.x78{left:524.569333pt;}
.x6d{left:531.757333pt;}
.x65{left:537.021333pt;}
.x6c{left:541.208000pt;}
.x3a{left:543.616000pt;}
.x66{left:544.610667pt;}
.x64{left:546.045333pt;}
.x6f{left:547.822667pt;}
.x67{left:559.993333pt;}
.x3e{left:563.088000pt;}
.x6e{left:566.546667pt;}
.x6a{left:579.538667pt;}
.x3b{left:581.582667pt;}
.x70{left:611.638667pt;}
.x3c{left:613.626667pt;}
.xf{left:628.000000pt;}
.x6b{left:629.333333pt;}
.x1{left:746.065333pt;}
}




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