
    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_a3ce854ca55cd8f012f59eeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_42af41f89f7644de8590fddd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.242676;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_373b7380ff3e4b01deece46f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_f8934521b38542ee4e36cf22.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0022d5c45e8f57f0b4d105bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_96ce958398f2d1ee37d95358.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694824;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_360bc143d2e068b2a724935d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994141;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_976b21ec5861c2241c681f50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_bdc556d844e747bcc1ccae8d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2e2387a593f86e682638d13.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774000;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_c6d17740bd63541927eabfc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_b4b38b1bf8ac6161804d7e7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_87574140b2e7d20200d9242b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.187500;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_3520465e916beeb63ecc4479.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_7f943d9f5900b311f729c1d8.woff2')format("woff");}.fff{font-family:fff;line-height:0.708496;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_9521cfd32193516daf0a3690.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.694336;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_f7809c26957d01fda2a2c699.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.030762;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:ff12;src:url('chunks/assets/font_8e16c497b0bd62714fe54aae.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m2{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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.147720px;}
.ls94{letter-spacing:-18.288000px;}
.ls97{letter-spacing:-17.928000px;}
.ls9b{letter-spacing:-16.128000px;}
.ls9c{letter-spacing:-15.768000px;}
.ls8f{letter-spacing:-15.745320px;}
.ls95{letter-spacing:-15.048000px;}
.ls90{letter-spacing:-14.625360px;}
.ls98{letter-spacing:-13.968000px;}
.ls9a{letter-spacing:-12.168000px;}
.ls99{letter-spacing:-11.808000px;}
.ls91{letter-spacing:-11.204329px;}
.ls96{letter-spacing:-11.088000px;}
.ls25{letter-spacing:-1.197000px;}
.ls47{letter-spacing:-1.185840px;}
.ls23{letter-spacing:-0.922680px;}
.ls48{letter-spacing:-0.922320px;}
.ls21{letter-spacing:-0.861840px;}
.ls20{letter-spacing:-0.813960px;}
.ls49{letter-spacing:-0.790560px;}
.ls86{letter-spacing:-0.781560px;}
.ls31{letter-spacing:-0.724680px;}
.ls85{letter-spacing:-0.721440px;}
.ls87{letter-spacing:-0.661320px;}
.ls2f{letter-spacing:-0.658800px;}
.ls9f{letter-spacing:-0.648000px;}
.ls88{letter-spacing:-0.601200px;}
.ls4a{letter-spacing:-0.592920px;}
.ls7a{letter-spacing:-0.541080px;}
.ls30{letter-spacing:-0.527040px;}
.ls1f{letter-spacing:-0.526680px;}
.ls92{letter-spacing:-0.486000px;}
.ls84{letter-spacing:-0.480960px;}
.ls55{letter-spacing:-0.461160px;}
.ls9e{letter-spacing:-0.432000px;}
.ls76{letter-spacing:-0.420840px;}
.ls78{letter-spacing:-0.360720px;}
.ls9d{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.335160px;}
.ls56{letter-spacing:-0.329400px;}
.ls79{letter-spacing:-0.300600px;}
.lsa0{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.263520px;}
.ls28{letter-spacing:-0.240480px;}
.ls6c{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.197640px;}
.ls29{letter-spacing:-0.180360px;}
.ls1c{letter-spacing:-0.168480px;}
.ls2c{letter-spacing:-0.162000px;}
.ls93{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.143640px;}
.ls2d{letter-spacing:-0.131760px;}
.ls26{letter-spacing:-0.120240px;}
.ls2b{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.095760px;}
.ls8e{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.065880px;}
.ls27{letter-spacing:-0.060120px;}
.ls6b{letter-spacing:-0.054000px;}
.ls17{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.047880px;}
.ls89{letter-spacing:0.048096px;}
.ls69{letter-spacing:0.054000px;}
.ls77{letter-spacing:0.060120px;}
.lsa{letter-spacing:0.065880px;}
.ls8c{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.090000px;}
.ls7c{letter-spacing:0.090180px;}
.ls22{letter-spacing:0.095760px;}
.ls6a{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120240px;}
.ls15{letter-spacing:0.131760px;}
.ls8d{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.167760px;}
.ls74{letter-spacing:0.168336px;}
.ls1{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.180360px;}
.ls0{letter-spacing:0.191520px;}
.ls81{letter-spacing:0.192384px;}
.ls2e{letter-spacing:0.197640px;}
.ls8a{letter-spacing:0.198396px;}
.ls3d{letter-spacing:0.223992px;}
.ls3b{letter-spacing:0.263520px;}
.ls6{letter-spacing:0.287280px;}
.ls3e{letter-spacing:0.303048px;}
.ls3f{letter-spacing:0.322812px;}
.ls1a{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.395280px;}
.ls43{letter-spacing:0.447984px;}
.ls46{letter-spacing:0.461160px;}
.ls34{letter-spacing:0.474336px;}
.ls2{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.622440px;}
.ls1b{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.724680px;}
.ls7b{letter-spacing:0.781560px;}
.ls40{letter-spacing:0.790560px;}
.ls62{letter-spacing:1.001376px;}
.ls7f{letter-spacing:1.142280px;}
.ls5b{letter-spacing:1.185840px;}
.ls80{letter-spacing:1.202400px;}
.ls6f{letter-spacing:1.503000px;}
.ls4{letter-spacing:1.635660px;}
.ls6e{letter-spacing:1.863720px;}
.ls42{letter-spacing:1.910520px;}
.ls66{letter-spacing:2.022516px;}
.ls36{letter-spacing:2.226744px;}
.ls4e{letter-spacing:2.239920px;}
.ls83{letter-spacing:2.585160px;}
.lse{letter-spacing:2.610000px;}
.ls7e{letter-spacing:2.945880px;}
.ls16{letter-spacing:2.964600px;}
.ls58{letter-spacing:3.359880px;}
.ls75{letter-spacing:3.667320px;}
.ls5a{letter-spacing:3.676104px;}
.ls37{letter-spacing:3.689280px;}
.ls3a{letter-spacing:3.715632px;}
.ls63{letter-spacing:3.801276px;}
.ls33{letter-spacing:4.005504px;}
.lsf{letter-spacing:4.388760px;}
.ls5d{letter-spacing:4.413960px;}
.ls51{letter-spacing:4.743360px;}
.ls5e{letter-spacing:4.855356px;}
.ls61{letter-spacing:5.099112px;}
.ls60{letter-spacing:5.118876px;}
.ls13{letter-spacing:5.138640px;}
.ls12{letter-spacing:5.238000px;}
.ls59{letter-spacing:5.863320px;}
.ls7d{letter-spacing:6.192360px;}
.ls57{letter-spacing:6.192720px;}
.ls8b{letter-spacing:6.300576px;}
.ls65{letter-spacing:6.528708px;}
.ls73{letter-spacing:6.553080px;}
.ls3{letter-spacing:6.751080px;}
.ls70{letter-spacing:6.913800px;}
.ls54{letter-spacing:6.917400px;}
.ls53{letter-spacing:7.312680px;}
.ls52{letter-spacing:7.332444px;}
.ls4d{letter-spacing:8.366760px;}
.ls4c{letter-spacing:8.551224px;}
.ls5f{letter-spacing:9.038736px;}
.ls4f{letter-spacing:10.870200px;}
.ls50{letter-spacing:10.949256px;}
.ls5c{letter-spacing:11.265480px;}
.ls82{letter-spacing:11.963880px;}
.ls72{letter-spacing:12.685320px;}
.ls35{letter-spacing:12.695076px;}
.ls71{letter-spacing:13.046040px;}
.ls41{letter-spacing:13.426344px;}
.ls39{letter-spacing:16.338240px;}
.ls64{letter-spacing:19.131552px;}
.ls4b{letter-spacing:19.171080px;}
.ls67{letter-spacing:19.500480px;}
.ls3c{letter-spacing:22.399200px;}
.ls6d{letter-spacing:24.177960px;}
.ls7{letter-spacing:156.816000px;}
.lsd{letter-spacing:165.147120px;}
.ls9{letter-spacing:183.485160px;}
.lsc{letter-spacing:221.645520px;}
.lsb{letter-spacing:240.031440px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10e{word-spacing:-60.120000px;}
.ws148{word-spacing:-54.000000px;}
.ws8{word-spacing:-20.047320px;}
.ws144{word-spacing:-18.072000px;}
.ws143{word-spacing:-17.928000px;}
.ws14d{word-spacing:-17.712000px;}
.ws150{word-spacing:-17.640000px;}
.ws14f{word-spacing:-17.568000px;}
.ws151{word-spacing:-17.496000px;}
.ws14e{word-spacing:-17.424000px;}
.ws152{word-spacing:-17.352000px;}
.ws156{word-spacing:-17.280000px;}
.ws153{word-spacing:-17.208000px;}
.ws154{word-spacing:-17.136000px;}
.ws155{word-spacing:-16.920000px;}
.ws45{word-spacing:-16.667640px;}
.ws47{word-spacing:-16.601760px;}
.ws2{word-spacing:-16.578000px;}
.wsf{word-spacing:-16.535880px;}
.ws12{word-spacing:-16.470000px;}
.ws46{word-spacing:-16.404120px;}
.wse{word-spacing:-16.338240px;}
.ws44{word-spacing:-16.272360px;}
.ws4a{word-spacing:-16.206480px;}
.ws147{word-spacing:-16.074720px;}
.ws92{word-spacing:-16.008840px;}
.ws10{word-spacing:-15.942960px;}
.ws48{word-spacing:-15.877080px;}
.ws49{word-spacing:-15.811200px;}
.ws11{word-spacing:-15.745320px;}
.ws81{word-spacing:-15.679440px;}
.ws145{word-spacing:-15.408000px;}
.ws141{word-spacing:-15.390720px;}
.ws14c{word-spacing:-15.336000px;}
.wsdf{word-spacing:-15.210360px;}
.wsb{word-spacing:-15.150240px;}
.ws10c{word-spacing:-15.090120px;}
.wsc{word-spacing:-15.030000px;}
.wsde{word-spacing:-14.969880px;}
.wsa{word-spacing:-14.909760px;}
.wsdd{word-spacing:-14.849640px;}
.wse0{word-spacing:-14.729400px;}
.ws10d{word-spacing:-14.669280px;}
.ws10f{word-spacing:-14.488920px;}
.ws138{word-spacing:-14.248440px;}
.wsc2{word-spacing:-13.662000px;}
.wsc4{word-spacing:-13.608000px;}
.wsc6{word-spacing:-13.554000px;}
.wsc3{word-spacing:-13.500000px;}
.wsc1{word-spacing:-13.446000px;}
.wsd{word-spacing:-13.392000px;}
.wsc0{word-spacing:-13.338000px;}
.wsc5{word-spacing:-13.284000px;}
.ws14b{word-spacing:-13.068000px;}
.ws14a{word-spacing:-13.014000px;}
.ws149{word-spacing:-12.690000px;}
.ws1{word-spacing:-12.592440px;}
.ws0{word-spacing:-12.161520px;}
.ws4{word-spacing:-11.970000px;}
.ws3{word-spacing:-11.874240px;}
.ws7a{word-spacing:-11.826360px;}
.ws6{word-spacing:-11.634840px;}
.ws7{word-spacing:-11.156040px;}
.ws9{word-spacing:-10.773000px;}
.ws5{word-spacing:-10.361520px;}
.ws146{word-spacing:-10.294200px;}
.ws136{word-spacing:-3.126240px;}
.ws5e{word-spacing:-0.461160px;}
.wsf7{word-spacing:-0.420840px;}
.ws107{word-spacing:-0.360720px;}
.ws17{word-spacing:-0.287280px;}
.ws65{word-spacing:-0.263520px;}
.ws22{word-spacing:-0.251640px;}
.wsfe{word-spacing:-0.240480px;}
.wsdb{word-spacing:-0.216000px;}
.ws42{word-spacing:-0.197640px;}
.ws20{word-spacing:-0.191520px;}
.wsfb{word-spacing:-0.180360px;}
.ws158{word-spacing:-0.167760px;}
.wsd6{word-spacing:-0.162000px;}
.ws165{word-spacing:-0.144000px;}
.ws69{word-spacing:-0.131760px;}
.wse9{word-spacing:-0.120240px;}
.wsda{word-spacing:-0.108000px;}
.ws23{word-spacing:-0.095760px;}
.ws159{word-spacing:-0.072000px;}
.ws38{word-spacing:-0.065880px;}
.wsf1{word-spacing:-0.060120px;}
.wsd9{word-spacing:-0.054000px;}
.ws13{word-spacing:0.000000px;}
.ws18{word-spacing:0.047880px;}
.wsd8{word-spacing:0.054000px;}
.wsf0{word-spacing:0.060120px;}
.ws6a{word-spacing:0.065880px;}
.ws157{word-spacing:0.072000px;}
.ws15{word-spacing:0.095760px;}
.ws16{word-spacing:0.108000px;}
.ws34{word-spacing:0.120240px;}
.ws24{word-spacing:0.131760px;}
.ws168{word-spacing:0.144000px;}
.ws37{word-spacing:0.162000px;}
.ws33{word-spacing:0.180360px;}
.ws7b{word-spacing:0.191520px;}
.ws72{word-spacing:0.197640px;}
.ws26{word-spacing:0.240480px;}
.ws4c{word-spacing:0.263520px;}
.wsd7{word-spacing:0.270000px;}
.ws14{word-spacing:0.287280px;}
.ws100{word-spacing:0.300600px;}
.wsdc{word-spacing:0.324000px;}
.ws3e{word-spacing:0.329400px;}
.wsf6{word-spacing:0.360720px;}
.ws104{word-spacing:0.420840px;}
.wsf8{word-spacing:0.480960px;}
.ws84{word-spacing:0.527040px;}
.ws128{word-spacing:0.541080px;}
.ws60{word-spacing:0.592920px;}
.ws3b{word-spacing:0.658800px;}
.ws137{word-spacing:0.661320px;}
.ws111{word-spacing:0.721440px;}
.ws6e{word-spacing:0.724680px;}
.ws6d{word-spacing:0.790560px;}
.ws1a{word-spacing:0.813960px;}
.ws2f{word-spacing:0.841680px;}
.wsa5{word-spacing:0.856440px;}
.ws6c{word-spacing:0.922320px;}
.ws5f{word-spacing:0.988200px;}
.ws85{word-spacing:1.054080px;}
.wseb{word-spacing:1.082160px;}
.ws1e{word-spacing:1.101240px;}
.wsad{word-spacing:1.119960px;}
.ws1f{word-spacing:1.149120px;}
.ws36{word-spacing:1.242000px;}
.ws1d{word-spacing:1.244880px;}
.ws9c{word-spacing:1.251720px;}
.wsfa{word-spacing:1.262520px;}
.ws71{word-spacing:1.317600px;}
.ws127{word-spacing:1.382760px;}
.ws40{word-spacing:1.383480px;}
.wsed{word-spacing:1.442880px;}
.wsae{word-spacing:1.449360px;}
.wsec{word-spacing:1.503000px;}
.wse5{word-spacing:1.563120px;}
.wsd4{word-spacing:1.581120px;}
.ws13f{word-spacing:1.623240px;}
.ws6b{word-spacing:1.647000px;}
.ws70{word-spacing:1.712880px;}
.ws112{word-spacing:1.743480px;}
.ws9a{word-spacing:1.778760px;}
.ws88{word-spacing:1.844640px;}
.wse3{word-spacing:1.923840px;}
.wse1{word-spacing:1.976400px;}
.wse4{word-spacing:1.983960px;}
.ws86{word-spacing:2.042280px;}
.ws67{word-spacing:2.108160px;}
.ws87{word-spacing:2.174040px;}
.ws13b{word-spacing:2.284560px;}
.ws68{word-spacing:2.305800px;}
.ws13a{word-spacing:2.344680px;}
.ws57{word-spacing:2.437560px;}
.ws11b{word-spacing:2.464920px;}
.ws54{word-spacing:2.503440px;}
.ws56{word-spacing:2.569320px;}
.ws11c{word-spacing:2.585160px;}
.ws25{word-spacing:2.645280px;}
.ws55{word-spacing:2.701080px;}
.wsa2{word-spacing:2.766960px;}
.ws11d{word-spacing:2.825640px;}
.wsa0{word-spacing:2.832840px;}
.ws125{word-spacing:2.945880px;}
.wsa3{word-spacing:2.964600px;}
.ws21{word-spacing:3.019680px;}
.ws76{word-spacing:3.030480px;}
.ws96{word-spacing:3.162240px;}
.ws4d{word-spacing:3.228120px;}
.ws5a{word-spacing:3.294000px;}
.wsfd{word-spacing:3.306600px;}
.ws97{word-spacing:3.359880px;}
.ws3c{word-spacing:3.491640px;}
.ws108{word-spacing:3.547080px;}
.ws61{word-spacing:3.557520px;}
.ws59{word-spacing:3.623400px;}
.wsfc{word-spacing:3.667320px;}
.ws105{word-spacing:3.727440px;}
.wsba{word-spacing:3.821040px;}
.ws106{word-spacing:3.847680px;}
.wsbf{word-spacing:3.886920px;}
.wsf9{word-spacing:3.907800px;}
.ws4b{word-spacing:3.952800px;}
.wsac{word-spacing:4.018680px;}
.ws9f{word-spacing:4.150440px;}
.ws139{word-spacing:4.208400px;}
.ws4e{word-spacing:4.216320px;}
.ws4f{word-spacing:4.282200px;}
.wsb5{word-spacing:4.348080px;}
.ws29{word-spacing:4.388760px;}
.ws118{word-spacing:4.448880px;}
.ws8c{word-spacing:4.479840px;}
.ws117{word-spacing:4.509000px;}
.wsb3{word-spacing:4.611600px;}
.wsb4{word-spacing:4.677480px;}
.wsb6{word-spacing:4.809240px;}
.ws27{word-spacing:4.809600px;}
.ws28{word-spacing:4.929840px;}
.ws39{word-spacing:4.941000px;}
.ws110{word-spacing:4.989960px;}
.ws3a{word-spacing:5.006880px;}
.wsb9{word-spacing:5.072760px;}
.ws2e{word-spacing:5.110200px;}
.ws35{word-spacing:5.238000px;}
.wsab{word-spacing:5.336280px;}
.wsa9{word-spacing:5.402160px;}
.wsaa{word-spacing:5.468040px;}
.ws12b{word-spacing:5.470920px;}
.ws12c{word-spacing:5.531040px;}
.ws102{word-spacing:5.651280px;}
.ws114{word-spacing:5.711400px;}
.ws3f{word-spacing:5.731560px;}
.wsa1{word-spacing:5.797440px;}
.ws103{word-spacing:5.831640px;}
.ws142{word-spacing:5.891760px;}
.ws115{word-spacing:6.012000px;}
.ws83{word-spacing:6.060960px;}
.ws101{word-spacing:6.072120px;}
.ws82{word-spacing:6.126840px;}
.ws113{word-spacing:6.192360px;}
.wsff{word-spacing:6.432840px;}
.ws93{word-spacing:6.456240px;}
.ws95{word-spacing:6.522120px;}
.wsee{word-spacing:6.553080px;}
.ws94{word-spacing:6.653880px;}
.ws12a{word-spacing:6.733440px;}
.ws63{word-spacing:6.785640px;}
.ws160{word-spacing:6.793560px;}
.wsd2{word-spacing:6.851520px;}
.ws11a{word-spacing:6.913800px;}
.ws19{word-spacing:6.942600px;}
.wsef{word-spacing:6.973920px;}
.wsd1{word-spacing:6.983280px;}
.wsce{word-spacing:7.115040px;}
.ws134{word-spacing:7.154280px;}
.ws90{word-spacing:7.180920px;}
.ws8e{word-spacing:7.246800px;}
.ws119{word-spacing:7.274520px;}
.ws1c{word-spacing:7.277760px;}
.ws91{word-spacing:7.312680px;}
.ws8f{word-spacing:7.378560px;}
.ws9b{word-spacing:7.444440px;}
.ws32{word-spacing:7.454880px;}
.ws58{word-spacing:7.510320px;}
.ws1b{word-spacing:7.612920px;}
.wsd3{word-spacing:7.642080px;}
.ws30{word-spacing:7.695360px;}
.wsbd{word-spacing:7.905600px;}
.ws129{word-spacing:8.056080px;}
.ws78{word-spacing:8.169120px;}
.ws53{word-spacing:8.235000px;}
.ws77{word-spacing:8.300880px;}
.ws79{word-spacing:8.432640px;}
.ws2c{word-spacing:8.537040px;}
.ws64{word-spacing:8.630280px;}
.wsb8{word-spacing:8.893800px;}
.wsb7{word-spacing:8.959680px;}
.wsc8{word-spacing:9.289080px;}
.wsc7{word-spacing:9.486720px;}
.ws31{word-spacing:9.498960px;}
.ws2d{word-spacing:9.679320px;}
.ws73{word-spacing:9.684360px;}
.wsd0{word-spacing:9.947880px;}
.ws74{word-spacing:10.013760px;}
.ws75{word-spacing:10.409040px;}
.wscf{word-spacing:10.474920px;}
.ws8a{word-spacing:10.738440px;}
.ws140{word-spacing:10.761480px;}
.ws8b{word-spacing:10.804320px;}
.ws126{word-spacing:10.881720px;}
.ws89{word-spacing:10.936080px;}
.ws15f{word-spacing:11.088000px;}
.wsaf{word-spacing:11.133720px;}
.wsb1{word-spacing:11.199600px;}
.ws15c{word-spacing:11.204329px;}
.ws11f{word-spacing:11.242440px;}
.wsb0{word-spacing:11.265480px;}
.ws11e{word-spacing:11.302560px;}
.wsb2{word-spacing:11.331360px;}
.ws12d{word-spacing:11.482920px;}
.ws163{word-spacing:11.808000px;}
.ws12e{word-spacing:11.843640px;}
.wsa4{word-spacing:11.858400px;}
.ws135{word-spacing:12.144240px;}
.ws164{word-spacing:12.168000px;}
.ws8d{word-spacing:12.187800px;}
.ws10b{word-spacing:12.204360px;}
.ws10a{word-spacing:12.324600px;}
.ws99{word-spacing:12.385440px;}
.ws109{word-spacing:12.504960px;}
.ws52{word-spacing:12.517200px;}
.wsf2{word-spacing:12.565080px;}
.ws50{word-spacing:12.583080px;}
.ws51{word-spacing:12.780720px;}
.ws3d{word-spacing:12.912480px;}
.wsbe{word-spacing:12.978360px;}
.wsf3{word-spacing:13.046040px;}
.wsf5{word-spacing:13.106160px;}
.ws5b{word-spacing:13.307760px;}
.wsf4{word-spacing:13.406760px;}
.ws6f{word-spacing:13.571280px;}
.ws162{word-spacing:13.968000px;}
.ws98{word-spacing:14.032440px;}
.wsbb{word-spacing:14.361840px;}
.ws13e{word-spacing:14.549040px;}
.ws15b{word-spacing:14.625360px;}
.ws13c{word-spacing:14.729400px;}
.ws13d{word-spacing:14.969880px;}
.ws15e{word-spacing:15.048000px;}
.ws9e{word-spacing:15.086520px;}
.ws2b{word-spacing:15.631200px;}
.ws15a{word-spacing:15.745320px;}
.ws167{word-spacing:15.768000px;}
.ws5d{word-spacing:16.074720px;}
.ws166{word-spacing:16.128000px;}
.ws5c{word-spacing:16.140600px;}
.wsca{word-spacing:16.535880px;}
.wsa8{word-spacing:16.865280px;}
.wsa7{word-spacing:17.062920px;}
.wscc{word-spacing:17.589960px;}
.ws161{word-spacing:17.928000px;}
.wsea{word-spacing:17.975880px;}
.ws2a{word-spacing:18.096120px;}
.wse8{word-spacing:18.156240px;}
.ws15d{word-spacing:18.288000px;}
.wse7{word-spacing:18.336600px;}
.wse6{word-spacing:18.516960px;}
.wsbc{word-spacing:18.709920px;}
.wscb{word-spacing:18.775800px;}
.ws7e{word-spacing:18.973440px;}
.ws7f{word-spacing:19.039320px;}
.ws7c{word-spacing:19.105200px;}
.ws7d{word-spacing:19.236960px;}
.ws80{word-spacing:19.302840px;}
.ws41{word-spacing:19.368720px;}
.ws120{word-spacing:19.418760px;}
.ws43{word-spacing:19.434600px;}
.ws9d{word-spacing:19.500480px;}
.ws121{word-spacing:19.539000px;}
.wsd5{word-spacing:19.632240px;}
.ws66{word-spacing:22.267440px;}
.ws124{word-spacing:23.025960px;}
.ws123{word-spacing:23.146200px;}
.ws122{word-spacing:23.386680px;}
.ws116{word-spacing:23.747400px;}
.wse2{word-spacing:24.112080px;}
.ws62{word-spacing:25.166160px;}
.wsc9{word-spacing:25.890840px;}
.ws131{word-spacing:26.633160px;}
.ws130{word-spacing:26.753400px;}
.ws12f{word-spacing:26.873640px;}
.wsa6{word-spacing:27.669600px;}
.ws132{word-spacing:28.076040px;}
.ws133{word-spacing:28.557000px;}
.wscd{word-spacing:33.071760px;}
._51{margin-left:-2215.440000px;}
._40{margin-left:-2079.254484px;}
._4f{margin-left:-1853.087580px;}
._16{margin-left:-1737.676908px;}
._27{margin-left:-1477.293120px;}
._28{margin-left:-1474.117164px;}
._81{margin-left:-1394.496000px;}
._82{margin-left:-1383.891012px;}
._41{margin-left:-1351.848960px;}
._2a{margin-left:-1307.437668px;}
._42{margin-left:-1234.195236px;}
._2b{margin-left:-1149.402420px;}
._4b{margin-left:-955.288152px;}
._49{margin-left:-896.182308px;}
._17{margin-left:-873.864000px;}
._1a{margin-left:-794.800188px;}
._19{margin-left:-792.443880px;}
._4c{margin-left:-704.489868px;}
._48{margin-left:-679.392000px;}
._4e{margin-left:-674.332488px;}
._4d{margin-left:-653.832000px;}
._4a{margin-left:-600.308316px;}
._31{margin-left:-545.147028px;}
._44{margin-left:-513.936000px;}
._45{margin-left:-511.056000px;}
._20{margin-left:-444.528000px;}
._50{margin-left:-441.576000px;}
._80{margin-left:-401.400000px;}
._46{margin-left:-395.629920px;}
._7d{margin-left:-334.140552px;}
._30{margin-left:-318.990960px;}
._24{margin-left:-313.110828px;}
._34{margin-left:-295.380000px;}
._7e{margin-left:-282.006324px;}
._38{margin-left:-268.272000px;}
._7f{margin-left:-257.055840px;}
._1e{margin-left:-249.400404px;}
._1c{margin-left:-248.033160px;}
._6a{margin-left:-244.029636px;}
._6d{margin-left:-240.207840px;}
._3e{margin-left:-232.704000px;}
._2e{margin-left:-218.062800px;}
._65{margin-left:-209.642580px;}
._75{margin-left:-206.678160px;}
._67{margin-left:-204.730740px;}
._61{margin-left:-200.558160px;}
._62{margin-left:-195.302484px;}
._71{margin-left:-192.837708px;}
._79{margin-left:-189.127224px;}
._76{margin-left:-187.975548px;}
._63{margin-left:-186.751548px;}
._23{margin-left:-185.649840px;}
._2f{margin-left:-176.031360px;}
._59{margin-left:-174.562632px;}
._6f{margin-left:-172.503072px;}
._6e{margin-left:-170.038296px;}
._70{margin-left:-168.480000px;}
._2d{margin-left:-167.466960px;}
._5a{margin-left:-165.071124px;}
._3d{margin-left:-161.838000px;}
._52{margin-left:-160.488000px;}
._26{margin-left:-158.671980px;}
._43{margin-left:-155.520000px;}
._78{margin-left:-153.635796px;}
._7a{margin-left:-152.462628px;}
._54{margin-left:-149.211972px;}
._3a{margin-left:-147.445812px;}
._5d{margin-left:-143.808552px;}
._47{margin-left:-142.238160px;}
._64{margin-left:-140.040000px;}
._56{margin-left:-137.232000px;}
._7b{margin-left:-135.231912px;}
._6c{margin-left:-130.824000px;}
._6b{margin-left:-129.416256px;}
._5e{margin-left:-127.032696px;}
._5f{margin-left:-123.061464px;}
._53{margin-left:-119.558160px;}
._3f{margin-left:-115.022484px;}
._37{margin-left:-113.994000px;}
._58{margin-left:-111.942000px;}
._66{margin-left:-108.757260px;}
._73{margin-left:-104.710212px;}
._72{margin-left:-101.706084px;}
._77{margin-left:-100.238760px;}
._5b{margin-left:-96.518484px;}
._57{margin-left:-94.502160px;}
._69{margin-left:-83.930364px;}
._68{margin-left:-75.333636px;}
._3c{margin-left:-73.895004px;}
._39{margin-left:-63.802188px;}
._35{margin-left:-62.316000px;}
._36{margin-left:-60.966000px;}
._7c{margin-left:-58.763448px;}
._55{margin-left:-56.558160px;}
._22{margin-left:-47.104200px;}
._1b{margin-left:-45.462960px;}
._18{margin-left:-42.527160px;}
._74{margin-left:-38.088000px;}
._60{margin-left:-35.802000px;}
._21{margin-left:-28.823760px;}
._33{margin-left:-24.462000px;}
._3b{margin-left:-23.194188px;}
._5c{margin-left:-18.848160px;}
._1d{margin-left:-17.673516px;}
._1f{margin-left:-15.840000px;}
._25{margin-left:-14.592420px;}
._2c{margin-left:-13.274820px;}
._29{margin-left:-11.697840px;}
._32{margin-left:-10.680536px;}
._a{margin-left:-2.244816px;}
._1{margin-left:-1.038996px;}
._0{width:1.000188px;}
._4{width:2.868480px;}
._6{width:4.341636px;}
._10{width:5.533920px;}
._2{width:6.865992px;}
._9{width:8.037972px;}
._c{width:9.947880px;}
._d{width:11.463120px;}
._b{width:13.758732px;}
._8{width:15.442092px;}
._f{width:17.904276px;}
._5{width:19.191708px;}
._e{width:28.316412px;}
._15{width:65.731536px;}
._3{width:92.955132px;}
._14{width:111.501288px;}
._13{width:194.078232px;}
._12{width:240.282000px;}
._11{width:558.414000px;}
._7{width:668.208852px;}
.fcb{color:rgb(31,73,125);}
.fca{color:rgb(0,112,192);}
.fc9{color:transparent;}
.fc7{color:rgb(196,89,17);}
.fcc{color:rgb(193,126,36);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(20,112,134);}
.fc6{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(191,191,191);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.880000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:47.880000px;}
.fs6{font-size:50.469951px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:83.880000px;}
.fs9{font-size:88.417283px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.090000px;}
.y7{bottom:2.700000px;}
.ya{bottom:2.880000px;}
.yf{bottom:3.330000px;}
.yb{bottom:3.420000px;}
.ye5{bottom:3.600000px;}
.ye7{bottom:3.780000px;}
.y9{bottom:3.870000px;}
.ye{bottom:4.590000px;}
.yd{bottom:5.310000px;}
.y2{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y4e{bottom:6.390000px;}
.yf2{bottom:6.570000px;}
.y50{bottom:7.380000px;}
.ye4{bottom:19.890000px;}
.yee{bottom:20.520000px;}
.ye9{bottom:20.610000px;}
.yf0{bottom:21.060000px;}
.y52{bottom:56.520000px;}
.y14{bottom:56.522880px;}
.y6{bottom:60.570000px;}
.y13{bottom:71.461440px;}
.y12{bottom:86.400000px;}
.y95{bottom:90.725040px;}
.y7f{bottom:93.032280px;}
.y154{bottom:93.186270px;}
.y11f{bottom:98.074350px;}
.y82{bottom:99.353970px;}
.y11{bottom:101.250000px;}
.yf6{bottom:101.790000px;}
.yc8{bottom:104.926140px;}
.y94{bottom:111.147840px;}
.y153{bottom:111.913650px;}
.y7e{bottom:113.109210px;}
.y11e{bottom:116.350830px;}
.y81{bottom:119.875590px;}
.yc7{bottom:125.003070px;}
.y4c{bottom:129.373110px;}
.y93{bottom:133.020000px;}
.y7d{bottom:133.186140px;}
.y152{bottom:133.511760px;}
.yf5{bottom:136.080000px;}
.y29{bottom:137.520000px;}
.y11d{bottom:137.588220px;}
.y80{bottom:144.630000px;}
.yc6{bottom:144.898020px;}
.y4b{bottom:149.450040px;}
.y151{bottom:152.148960px;}
.y7c{bottom:153.263070px;}
.y11c{bottom:155.864700px;}
.yc5{bottom:164.974950px;}
.y4a{bottom:169.526970px;}
.yf4{bottom:170.370000px;}
.y150{bottom:170.786160px;}
.y7b{bottom:173.340000px;}
.y11b{bottom:177.102090px;}
.yc4{bottom:185.051880px;}
.yf3{bottom:187.380000px;}
.y49{bottom:189.603900px;}
.y14f{bottom:192.474450px;}
.y37{bottom:192.960000px;}
.y11a{bottom:198.339480px;}
.y7a{bottom:199.433070px;}
.yc3{bottom:205.128810px;}
.y48{bottom:209.680830px;}
.y14e{bottom:211.111650px;}
.y36{bottom:211.590000px;}
.y119{bottom:216.615960px;}
.y79{bottom:219.510000px;}
.yf1{bottom:221.670000px;}
.yc2{bottom:225.205740px;}
.y47{bottom:229.757760px;}
.y14d{bottom:232.709760px;}
.y118{bottom:234.802260px;}
.y78{bottom:239.573070px;}
.yef{bottom:241.920000px;}
.yc1{bottom:245.282670px;}
.y46{bottom:249.834690px;}
.y14c{bottom:251.346960px;}
.y117{bottom:256.039650px;}
.y77{bottom:259.650000px;}
.yc0{bottom:265.359600px;}
.y32{bottom:267.660000px;}
.y45{bottom:269.911620px;}
.y14b{bottom:270.074340px;}
.y116{bottom:274.316130px;}
.yed{bottom:276.300000px;}
.y76{bottom:279.720000px;}
.ybf{bottom:285.518880px;}
.y14a{bottom:291.672450px;}
.y115{bottom:295.553520px;}
.y44{bottom:298.800000px;}
.y75{bottom:299.790000px;}
.ybe{bottom:305.595810px;}
.y149{bottom:310.309650px;}
.yec{bottom:310.590000px;}
.y114{bottom:313.830000px;}
.y175{bottom:314.460000px;}
.ybd{bottom:325.672740px;}
.y74{bottom:325.911780px;}
.yeb{bottom:327.600000px;}
.y148{bottom:331.997940px;}
.y113{bottom:338.220000px;}
.y43{bottom:346.590000px;}
.y147{bottom:350.635140px;}
.ybc{bottom:351.678870px;}
.y73{bottom:351.917910px;}
.yea{bottom:361.890000px;}
.y42{bottom:363.420000px;}
.ybb{bottom:371.838150px;}
.y146{bottom:372.233250px;}
.y72{bottom:377.380530px;}
.y41{bottom:380.160000px;}
.y112{bottom:384.495840px;}
.y145{bottom:390.870450px;}
.yba{bottom:391.915080px;}
.ye8{bottom:396.180000px;}
.y111{bottom:402.772320px;}
.y71{bottom:402.843150px;}
.y28{bottom:402.930000px;}
.yb9{bottom:411.992010px;}
.y31{bottom:412.283070px;}
.y144{bottom:412.558740px;}
.y40{bottom:413.100000px;}
.y110{bottom:421.048800px;}
.y30{bottom:426.682980px;}
.y70{bottom:428.305770px;}
.ye6{bottom:430.470000px;}
.yb8{bottom:432.068940px;}
.y143{bottom:434.156850px;}
.y10f{bottom:439.325280px;}
.y3f{bottom:446.760000px;}
.ye3{bottom:447.480000px;}
.y2f{bottom:450.084330px;}
.yb7{bottom:452.145870px;}
.y142{bottom:452.794050px;}
.y6f{bottom:454.048380px;}
.ye2{bottom:459.270000px;}
.y10e{bottom:463.358250px;}
.y2e{bottom:464.580000px;}
.y3e{bottom:465.390000px;}
.y141{bottom:471.431250px;}
.yb6{bottom:472.222800px;}
.y183{bottom:483.300000px;}
.y3d{bottom:484.020000px;}
.y2c{bottom:488.062980px;}
.y2d{bottom:488.070000px;}
.y6e{bottom:491.583510px;}
.yb5{bottom:492.299730px;}
.y140{bottom:493.119540px;}
.ye1{bottom:494.283420px;}
.y92{bottom:497.360790px;}
.y2b{bottom:502.558650px;}
.y3c{bottom:502.650000px;}
.y10d{bottom:508.267890px;}
.y182{bottom:508.860000px;}
.y6d{bottom:511.742790px;}
.y13f{bottom:511.756740px;}
.yb4{bottom:512.376660px;}
.ye0{bottom:514.805040px;}
.y91{bottom:517.437720px;}
.y3b{bottom:521.370000px;}
.y2a{bottom:525.960000px;}
.y10c{bottom:532.300860px;}
.yb3{bottom:532.453590px;}
.y13e{bottom:533.354850px;}
.y181{bottom:534.780000px;}
.y3a{bottom:540.000000px;}
.y27{bottom:540.450000px;}
.y90{bottom:543.542670px;}
.y174{bottom:550.800000px;}
.y13d{bottom:551.992050px;}
.yb2{bottom:552.530520px;}
.y39{bottom:558.630000px;}
.y8f{bottom:563.619600px;}
.ydf{bottom:571.231260px;}
.yb1{bottom:572.607450px;}
.y13c{bottom:573.680340px;}
.y10b{bottom:577.210500px;}
.y38{bottom:577.260000px;}
.y180{bottom:578.610000px;}
.y8e{bottom:583.696530px;}
.y6c{bottom:590.220000px;}
.yde{bottom:591.308190px;}
.y13b{bottom:592.317540px;}
.yb0{bottom:592.684380px;}
.y10a{bottom:601.243470px;}
.y8d{bottom:603.773460px;}
.y6b{bottom:610.290720px;}
.ydd{bottom:611.385120px;}
.yaf{bottom:612.761310px;}
.y13a{bottom:613.915650px;}
.y35{bottom:614.520000px;}
.y17f{bottom:624.600000px;}
.y8c{bottom:629.878410px;}
.y6a{bottom:630.450000px;}
.ydc{bottom:631.462050px;}
.y139{bottom:632.628000px;}
.yae{bottom:632.920590px;}
.y34{bottom:633.150000px;}
.y109{bottom:646.153110px;}
.y8b{bottom:649.955340px;}
.y69{bottom:650.520000px;}
.y17e{bottom:651.240000px;}
.ydb{bottom:651.538980px;}
.y33{bottom:651.780000px;}
.yad{bottom:652.997520px;}
.y138{bottom:654.226110px;}
.y108{bottom:664.429590px;}
.y8a{bottom:670.032270px;}
.y68{bottom:670.576140px;}
.yda{bottom:671.698260px;}
.y137{bottom:672.863310px;}
.yac{bottom:673.074450px;}
.y17d{bottom:677.970000px;}
.y107{bottom:682.706070px;}
.y16b{bottom:684.871020px;}
.y89{bottom:690.109200px;}
.y67{bottom:690.653070px;}
.yd9{bottom:691.775190px;}
.yab{bottom:693.151380px;}
.y136{bottom:694.551600px;}
.y26{bottom:699.210000px;}
.y16a{bottom:703.598400px;}
.y17c{bottom:704.610000px;}
.y106{bottom:706.739040px;}
.y88{bottom:710.268480px;}
.y66{bottom:710.723070px;}
.yd8{bottom:711.852120px;}
.yaa{bottom:713.228310px;}
.y25{bottom:715.770000px;}
.y135{bottom:716.149710px;}
.y169{bottom:722.235600px;}
.y87{bottom:730.345410px;}
.y65{bottom:730.800000px;}
.y24{bottom:731.250000px;}
.yd7{bottom:731.929050px;}
.ya9{bottom:733.305240px;}
.y134{bottom:734.786910px;}
.y168{bottom:740.872800px;}
.y86{bottom:750.422340px;}
.y105{bottom:751.648680px;}
.yd6{bottom:752.005980px;}
.ya8{bottom:753.382170px;}
.y133{bottom:756.475200px;}
.y17b{bottom:757.980000px;}
.y23{bottom:759.060000px;}
.y64{bottom:759.401010px;}
.y167{bottom:759.510000px;}
.y104{bottom:769.925160px;}
.yd5{bottom:772.082910px;}
.ya7{bottom:773.459100px;}
.y132{bottom:775.112400px;}
.y22{bottom:775.620000px;}
.y166{bottom:781.034220px;}
.y17a{bottom:784.620000px;}
.y21{bottom:791.190000px;}
.yd4{bottom:792.159840px;}
.ya6{bottom:793.536030px;}
.y103{bottom:793.958130px;}
.y131{bottom:796.710510px;}
.y165{bottom:799.671420px;}
.y63{bottom:806.208750px;}
.y85{bottom:806.486220px;}
.y179{bottom:811.350000px;}
.yd3{bottom:812.236770px;}
.y130{bottom:815.347710px;}
.y20{bottom:819.000000px;}
.ya5{bottom:819.723330px;}
.y164{bottom:821.359710px;}
.y62{bottom:826.285680px;}
.y84{bottom:827.007840px;}
.yd2{bottom:832.313700px;}
.y12f{bottom:833.984910px;}
.y1f{bottom:835.560000px;}
.y178{bottom:837.990000px;}
.y177{bottom:837.995580px;}
.y102{bottom:838.867770px;}
.y163{bottom:839.996910px;}
.ya4{bottom:840.244950px;}
.y61{bottom:846.444960px;}
.y83{bottom:848.880000px;}
.y1e{bottom:851.130000px;}
.yd1{bottom:852.390630px;}
.y12e{bottom:855.673200px;}
.ya3{bottom:860.766570px;}
.y162{bottom:861.595020px;}
.y101{bottom:862.900740px;}
.y176{bottom:865.260000px;}
.y60{bottom:866.521890px;}
.yd0{bottom:872.467560px;}
.y12d{bottom:874.310400px;}
.y1d{bottom:878.940000px;}
.y161{bottom:880.322400px;}
.ya2{bottom:881.189370px;}
.y5f{bottom:886.598820px;}
.ycf{bottom:892.544490px;}
.y173{bottom:892.890000px;}
.y1c{bottom:895.500000px;}
.y12c{bottom:895.908510px;}
.y160{bottom:898.959600px;}
.ya1{bottom:901.710990px;}
.y5e{bottom:906.675750px;}
.y100{bottom:907.810380px;}
.y1b{bottom:911.070000px;}
.yce{bottom:912.621420px;}
.y12b{bottom:914.545710px;}
.y172{bottom:918.810000px;}
.y15f{bottom:920.557710px;}
.ya0{bottom:922.232610px;}
.yff{bottom:926.086860px;}
.y5d{bottom:926.752680px;}
.ycd{bottom:932.780700px;}
.y12a{bottom:933.273090px;}
.y1a{bottom:938.790000px;}
.y15e{bottom:939.194910px;}
.y9f{bottom:942.754230px;}
.yfe{bottom:944.363340px;}
.y5c{bottom:946.829610px;}
.y171{bottom:950.310000px;}
.ycc{bottom:952.857630px;}
.y129{bottom:954.871200px;}
.y19{bottom:955.350000px;}
.y15d{bottom:957.832110px;}
.yfd{bottom:962.639820px;}
.y9e{bottom:963.275850px;}
.y5b{bottom:966.906540px;}
.y18{bottom:970.920000px;}
.ycb{bottom:972.934560px;}
.y128{bottom:973.508400px;}
.y15c{bottom:979.520400px;}
.yfc{bottom:980.826120px;}
.y9d{bottom:983.698650px;}
.y5a{bottom:986.983470px;}
.y170{bottom:992.790000px;}
.yca{bottom:993.011490px;}
.y127{bottom:995.196690px;}
.y15b{bottom:998.157600px;}
.y9c{bottom:1004.220270px;}
.y59{bottom:1007.060400px;}
.yfb{bottom:1007.820000px;}
.yc9{bottom:1013.088420px;}
.y126{bottom:1013.833890px;}
.y17{bottom:1016.010000px;}
.y16{bottom:1016.013690px;}
.y15a{bottom:1016.794800px;}
.y16f{bottom:1017.270000px;}
.y9b{bottom:1024.741890px;}
.y125{bottom:1032.471090px;}
.y58{bottom:1033.165350px;}
.y159{bottom:1038.392910px;}
.y15{bottom:1041.660000px;}
.y9a{bottom:1045.263510px;}
.yfa{bottom:1053.234990px;}
.y57{bottom:1053.242280px;}
.y124{bottom:1054.069200px;}
.y158{bottom:1057.120290px;}
.y99{bottom:1065.785130px;}
.y16d{bottom:1070.100000px;}
.y123{bottom:1072.706400px;}
.yf9{bottom:1073.311920px;}
.y56{bottom:1073.319210px;}
.y157{bottom:1075.757490px;}
.y16e{bottom:1076.130000px;}
.y10{bottom:1081.530000px;}
.y98{bottom:1086.306750px;}
.yc{bottom:1088.460000px;}
.yf8{bottom:1093.388850px;}
.y55{bottom:1093.396140px;}
.y122{bottom:1094.394690px;}
.y156{bottom:1097.355600px;}
.y8{bottom:1103.670000px;}
.y97{bottom:1106.729550px;}
.y121{bottom:1113.031890px;}
.yf7{bottom:1113.465780px;}
.y54{bottom:1113.473070px;}
.y155{bottom:1115.992800px;}
.y4{bottom:1119.330000px;}
.y16c{bottom:1127.250000px;}
.y96{bottom:1133.542710px;}
.y53{bottom:1133.550000px;}
.y120{bottom:1134.630000px;}
.y51{bottom:1171.260000px;}
.y4d{bottom:1186.830000px;}
.y1{bottom:1192.410000px;}
.y4f{bottom:1194.210000px;}
.hc{height:14.398500px;}
.ha{height:14.940000px;}
.h24{height:16.200000px;}
.h22{height:16.288500px;}
.h28{height:16.290000px;}
.h2{height:17.280000px;}
.h27{height:19.530000px;}
.hf{height:21.680508px;}
.h1a{height:22.861500px;}
.hb{height:26.350313px;}
.hd{height:28.546172px;}
.h9{height:31.912207px;}
.h21{height:32.580000px;}
.h25{height:33.480000px;}
.h23{height:33.568500px;}
.h26{height:33.570000px;}
.h17{height:33.638420px;}
.h1c{height:34.600781px;}
.he{height:34.741055px;}
.h4{height:34.904707px;}
.h35{height:35.991211px;}
.h30{height:36.003516px;}
.h10{height:36.472426px;}
.h5{height:36.597656px;}
.h8{height:39.181641px;}
.h20{height:39.366211px;}
.h33{height:40.908261px;}
.h19{height:43.622227px;}
.h34{height:43.769531px;}
.h29{height:43.827715px;}
.h1e{height:43.909277px;}
.h3{height:45.986309px;}
.h14{height:48.026777px;}
.h1b{height:50.832000px;}
.h7{height:51.864258px;}
.h31{height:53.398828px;}
.h2f{height:54.140625px;}
.h2c{height:54.425039px;}
.h18{height:57.742207px;}
.h2a{height:57.844807px;}
.h2d{height:58.045327px;}
.h2b{height:58.317127px;}
.h32{height:58.359375px;}
.h13{height:58.930465px;}
.h12{height:61.148848px;}
.h2e{height:63.073828px;}
.h11{height:63.262875px;}
.h15{height:63.274395px;}
.h1d{height:63.302115px;}
.h1f{height:64.002315px;}
.h37{height:69.152344px;}
.h6{height:73.081500px;}
.h16{height:283.140000px;}
.h36{height:333.180000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:86.670000px;}
.w10{width:87.390000px;}
.w13{width:105.481500px;}
.w14{width:116.100000px;}
.wa{width:138.328500px;}
.w7{width:145.711500px;}
.w5{width:146.160000px;}
.w8{width:149.490000px;}
.wc{width:153.540000px;}
.w4{width:159.030000px;}
.wf{width:161.550000px;}
.w16{width:209.520000px;}
.w12{width:244.260000px;}
.w2{width:296.010000px;}
.w3{width:323.100000px;}
.w6{width:472.950000px;}
.w9{width:482.130000px;}
.we{width:603.450000px;}
.wd{width:615.690000px;}
.wb{width:635.130000px;}
.w17{width:642.148500px;}
.w11{width:765.090000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x7{left:-1.215000px;}
.x0{left:0.000000px;}
.x2{left:2.070000px;}
.x4{left:6.390000px;}
.x19{left:8.100000px;}
.xa{left:24.210000px;}
.x6{left:29.970000px;}
.x2b{left:39.240000px;}
.x2d{left:41.130000px;}
.xc{left:55.890000px;}
.x1{left:57.420000px;}
.x15{left:59.760000px;}
.xe{left:63.810000px;}
.x14{left:67.860000px;}
.xb{left:69.660000px;}
.x26{left:71.910000px;}
.x1b{left:84.870000px;}
.x21{left:95.761800px;}
.x2e{left:106.374960px;}
.x23{left:126.540000px;}
.x17{left:138.870000px;}
.x16{left:145.080000px;}
.x9{left:152.730000px;}
.xd{left:170.190000px;}
.x18{left:198.090000px;}
.x11{left:202.050000px;}
.x8{left:203.580000px;}
.x1a{left:206.190000px;}
.x13{left:215.640000px;}
.x1d{left:217.350000px;}
.x38{left:273.060000px;}
.x37{left:277.200000px;}
.x29{left:308.790000px;}
.xf{left:327.060000px;}
.x10{left:340.650000px;}
.x3{left:353.430000px;}
.x36{left:387.540000px;}
.x35{left:391.680000px;}
.x2a{left:415.080000px;}
.x3c{left:466.312500px;}
.x3b{left:470.520000px;}
.x34{left:472.680000px;}
.x33{left:478.530000px;}
.x27{left:531.630000px;}
.x20{left:536.940000px;}
.x12{left:569.520000px;}
.x32{left:571.590000px;}
.x31{left:575.730000px;}
.x3e{left:580.050000px;}
.x40{left:591.840000px;}
.x45{left:597.060000px;}
.x1f{left:604.147500px;}
.x1c{left:607.230000px;}
.x1e{left:609.750000px;}
.x42{left:613.530000px;}
.x2c{left:619.380000px;}
.x28{left:627.120000px;}
.x44{left:653.670000px;}
.x3f{left:654.834510px;}
.x22{left:667.710000px;}
.x43{left:668.880000px;}
.x5{left:676.530000px;}
.x41{left:684.810000px;}
.x30{left:714.060000px;}
.x2f{left:740.790000px;}
.x3a{left:791.550000px;}
.x25{left:798.030000px;}
.x24{left:818.460000px;}
.x39{left:821.520000px;}
.x46{left:825.148950px;}
.x3d{left:826.560000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.464640pt;}
.ls94{letter-spacing:-16.256000pt;}
.ls97{letter-spacing:-15.936000pt;}
.ls9b{letter-spacing:-14.336000pt;}
.ls9c{letter-spacing:-14.016000pt;}
.ls8f{letter-spacing:-13.995840pt;}
.ls95{letter-spacing:-13.376000pt;}
.ls90{letter-spacing:-13.000320pt;}
.ls98{letter-spacing:-12.416000pt;}
.ls9a{letter-spacing:-10.816000pt;}
.ls99{letter-spacing:-10.496000pt;}
.ls91{letter-spacing:-9.959404pt;}
.ls96{letter-spacing:-9.856000pt;}
.ls25{letter-spacing:-1.064000pt;}
.ls47{letter-spacing:-1.054080pt;}
.ls23{letter-spacing:-0.820160pt;}
.ls48{letter-spacing:-0.819840pt;}
.ls21{letter-spacing:-0.766080pt;}
.ls20{letter-spacing:-0.723520pt;}
.ls49{letter-spacing:-0.702720pt;}
.ls86{letter-spacing:-0.694720pt;}
.ls31{letter-spacing:-0.644160pt;}
.ls85{letter-spacing:-0.641280pt;}
.ls87{letter-spacing:-0.587840pt;}
.ls2f{letter-spacing:-0.585600pt;}
.ls9f{letter-spacing:-0.576000pt;}
.ls88{letter-spacing:-0.534400pt;}
.ls4a{letter-spacing:-0.527040pt;}
.ls7a{letter-spacing:-0.480960pt;}
.ls30{letter-spacing:-0.468480pt;}
.ls1f{letter-spacing:-0.468160pt;}
.ls92{letter-spacing:-0.432000pt;}
.ls84{letter-spacing:-0.427520pt;}
.ls55{letter-spacing:-0.409920pt;}
.ls9e{letter-spacing:-0.384000pt;}
.ls76{letter-spacing:-0.374080pt;}
.ls78{letter-spacing:-0.320640pt;}
.ls9d{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.297920pt;}
.ls56{letter-spacing:-0.292800pt;}
.ls79{letter-spacing:-0.267200pt;}
.lsa0{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.234240pt;}
.ls28{letter-spacing:-0.213760pt;}
.ls6c{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.175680pt;}
.ls29{letter-spacing:-0.160320pt;}
.ls1c{letter-spacing:-0.149760pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls93{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.127680pt;}
.ls2d{letter-spacing:-0.117120pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls2b{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.085120pt;}
.ls8e{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.058560pt;}
.ls27{letter-spacing:-0.053440pt;}
.ls6b{letter-spacing:-0.048000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.042560pt;}
.ls89{letter-spacing:0.042752pt;}
.ls69{letter-spacing:0.048000pt;}
.ls77{letter-spacing:0.053440pt;}
.lsa{letter-spacing:0.058560pt;}
.ls8c{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.080000pt;}
.ls7c{letter-spacing:0.080160pt;}
.ls22{letter-spacing:0.085120pt;}
.ls6a{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106880pt;}
.ls15{letter-spacing:0.117120pt;}
.ls8d{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.149120pt;}
.ls74{letter-spacing:0.149632pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.160320pt;}
.ls0{letter-spacing:0.170240pt;}
.ls81{letter-spacing:0.171008pt;}
.ls2e{letter-spacing:0.175680pt;}
.ls8a{letter-spacing:0.176352pt;}
.ls3d{letter-spacing:0.199104pt;}
.ls3b{letter-spacing:0.234240pt;}
.ls6{letter-spacing:0.255360pt;}
.ls3e{letter-spacing:0.269376pt;}
.ls3f{letter-spacing:0.286944pt;}
.ls1a{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.351360pt;}
.ls43{letter-spacing:0.398208pt;}
.ls46{letter-spacing:0.409920pt;}
.ls34{letter-spacing:0.421632pt;}
.ls2{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.553280pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.644160pt;}
.ls7b{letter-spacing:0.694720pt;}
.ls40{letter-spacing:0.702720pt;}
.ls62{letter-spacing:0.890112pt;}
.ls7f{letter-spacing:1.015360pt;}
.ls5b{letter-spacing:1.054080pt;}
.ls80{letter-spacing:1.068800pt;}
.ls6f{letter-spacing:1.336000pt;}
.ls4{letter-spacing:1.453920pt;}
.ls6e{letter-spacing:1.656640pt;}
.ls42{letter-spacing:1.698240pt;}
.ls66{letter-spacing:1.797792pt;}
.ls36{letter-spacing:1.979328pt;}
.ls4e{letter-spacing:1.991040pt;}
.ls83{letter-spacing:2.297920pt;}
.lse{letter-spacing:2.320000pt;}
.ls7e{letter-spacing:2.618560pt;}
.ls16{letter-spacing:2.635200pt;}
.ls58{letter-spacing:2.986560pt;}
.ls75{letter-spacing:3.259840pt;}
.ls5a{letter-spacing:3.267648pt;}
.ls37{letter-spacing:3.279360pt;}
.ls3a{letter-spacing:3.302784pt;}
.ls63{letter-spacing:3.378912pt;}
.ls33{letter-spacing:3.560448pt;}
.lsf{letter-spacing:3.901120pt;}
.ls5d{letter-spacing:3.923520pt;}
.ls51{letter-spacing:4.216320pt;}
.ls5e{letter-spacing:4.315872pt;}
.ls61{letter-spacing:4.532544pt;}
.ls60{letter-spacing:4.550112pt;}
.ls13{letter-spacing:4.567680pt;}
.ls12{letter-spacing:4.656000pt;}
.ls59{letter-spacing:5.211840pt;}
.ls7d{letter-spacing:5.504320pt;}
.ls57{letter-spacing:5.504640pt;}
.ls8b{letter-spacing:5.600512pt;}
.ls65{letter-spacing:5.803296pt;}
.ls73{letter-spacing:5.824960pt;}
.ls3{letter-spacing:6.000960pt;}
.ls70{letter-spacing:6.145600pt;}
.ls54{letter-spacing:6.148800pt;}
.ls53{letter-spacing:6.500160pt;}
.ls52{letter-spacing:6.517728pt;}
.ls4d{letter-spacing:7.437120pt;}
.ls4c{letter-spacing:7.601088pt;}
.ls5f{letter-spacing:8.034432pt;}
.ls4f{letter-spacing:9.662400pt;}
.ls50{letter-spacing:9.732672pt;}
.ls5c{letter-spacing:10.013760pt;}
.ls82{letter-spacing:10.634560pt;}
.ls72{letter-spacing:11.275840pt;}
.ls35{letter-spacing:11.284512pt;}
.ls71{letter-spacing:11.596480pt;}
.ls41{letter-spacing:11.934528pt;}
.ls39{letter-spacing:14.522880pt;}
.ls64{letter-spacing:17.005824pt;}
.ls4b{letter-spacing:17.040960pt;}
.ls67{letter-spacing:17.333760pt;}
.ls3c{letter-spacing:19.910400pt;}
.ls6d{letter-spacing:21.491520pt;}
.ls7{letter-spacing:139.392000pt;}
.lsd{letter-spacing:146.797440pt;}
.ls9{letter-spacing:163.097920pt;}
.lsc{letter-spacing:197.018240pt;}
.lsb{letter-spacing:213.361280pt;}
.ws10e{word-spacing:-53.440000pt;}
.ws148{word-spacing:-48.000000pt;}
.ws8{word-spacing:-17.819840pt;}
.ws144{word-spacing:-16.064000pt;}
.ws143{word-spacing:-15.936000pt;}
.ws14d{word-spacing:-15.744000pt;}
.ws150{word-spacing:-15.680000pt;}
.ws14f{word-spacing:-15.616000pt;}
.ws151{word-spacing:-15.552000pt;}
.ws14e{word-spacing:-15.488000pt;}
.ws152{word-spacing:-15.424000pt;}
.ws156{word-spacing:-15.360000pt;}
.ws153{word-spacing:-15.296000pt;}
.ws154{word-spacing:-15.232000pt;}
.ws155{word-spacing:-15.040000pt;}
.ws45{word-spacing:-14.815680pt;}
.ws47{word-spacing:-14.757120pt;}
.ws2{word-spacing:-14.736000pt;}
.wsf{word-spacing:-14.698560pt;}
.ws12{word-spacing:-14.640000pt;}
.ws46{word-spacing:-14.581440pt;}
.wse{word-spacing:-14.522880pt;}
.ws44{word-spacing:-14.464320pt;}
.ws4a{word-spacing:-14.405760pt;}
.ws147{word-spacing:-14.288640pt;}
.ws92{word-spacing:-14.230080pt;}
.ws10{word-spacing:-14.171520pt;}
.ws48{word-spacing:-14.112960pt;}
.ws49{word-spacing:-14.054400pt;}
.ws11{word-spacing:-13.995840pt;}
.ws81{word-spacing:-13.937280pt;}
.ws145{word-spacing:-13.696000pt;}
.ws141{word-spacing:-13.680640pt;}
.ws14c{word-spacing:-13.632000pt;}
.wsdf{word-spacing:-13.520320pt;}
.wsb{word-spacing:-13.466880pt;}
.ws10c{word-spacing:-13.413440pt;}
.wsc{word-spacing:-13.360000pt;}
.wsde{word-spacing:-13.306560pt;}
.wsa{word-spacing:-13.253120pt;}
.wsdd{word-spacing:-13.199680pt;}
.wse0{word-spacing:-13.092800pt;}
.ws10d{word-spacing:-13.039360pt;}
.ws10f{word-spacing:-12.879040pt;}
.ws138{word-spacing:-12.665280pt;}
.wsc2{word-spacing:-12.144000pt;}
.wsc4{word-spacing:-12.096000pt;}
.wsc6{word-spacing:-12.048000pt;}
.wsc3{word-spacing:-12.000000pt;}
.wsc1{word-spacing:-11.952000pt;}
.wsd{word-spacing:-11.904000pt;}
.wsc0{word-spacing:-11.856000pt;}
.wsc5{word-spacing:-11.808000pt;}
.ws14b{word-spacing:-11.616000pt;}
.ws14a{word-spacing:-11.568000pt;}
.ws149{word-spacing:-11.280000pt;}
.ws1{word-spacing:-11.193280pt;}
.ws0{word-spacing:-10.810240pt;}
.ws4{word-spacing:-10.640000pt;}
.ws3{word-spacing:-10.554880pt;}
.ws7a{word-spacing:-10.512320pt;}
.ws6{word-spacing:-10.342080pt;}
.ws7{word-spacing:-9.916480pt;}
.ws9{word-spacing:-9.576000pt;}
.ws5{word-spacing:-9.210240pt;}
.ws146{word-spacing:-9.150400pt;}
.ws136{word-spacing:-2.778880pt;}
.ws5e{word-spacing:-0.409920pt;}
.wsf7{word-spacing:-0.374080pt;}
.ws107{word-spacing:-0.320640pt;}
.ws17{word-spacing:-0.255360pt;}
.ws65{word-spacing:-0.234240pt;}
.ws22{word-spacing:-0.223680pt;}
.wsfe{word-spacing:-0.213760pt;}
.wsdb{word-spacing:-0.192000pt;}
.ws42{word-spacing:-0.175680pt;}
.ws20{word-spacing:-0.170240pt;}
.wsfb{word-spacing:-0.160320pt;}
.ws158{word-spacing:-0.149120pt;}
.wsd6{word-spacing:-0.144000pt;}
.ws165{word-spacing:-0.128000pt;}
.ws69{word-spacing:-0.117120pt;}
.wse9{word-spacing:-0.106880pt;}
.wsda{word-spacing:-0.096000pt;}
.ws23{word-spacing:-0.085120pt;}
.ws159{word-spacing:-0.064000pt;}
.ws38{word-spacing:-0.058560pt;}
.wsf1{word-spacing:-0.053440pt;}
.wsd9{word-spacing:-0.048000pt;}
.ws13{word-spacing:0.000000pt;}
.ws18{word-spacing:0.042560pt;}
.wsd8{word-spacing:0.048000pt;}
.wsf0{word-spacing:0.053440pt;}
.ws6a{word-spacing:0.058560pt;}
.ws157{word-spacing:0.064000pt;}
.ws15{word-spacing:0.085120pt;}
.ws16{word-spacing:0.096000pt;}
.ws34{word-spacing:0.106880pt;}
.ws24{word-spacing:0.117120pt;}
.ws168{word-spacing:0.128000pt;}
.ws37{word-spacing:0.144000pt;}
.ws33{word-spacing:0.160320pt;}
.ws7b{word-spacing:0.170240pt;}
.ws72{word-spacing:0.175680pt;}
.ws26{word-spacing:0.213760pt;}
.ws4c{word-spacing:0.234240pt;}
.wsd7{word-spacing:0.240000pt;}
.ws14{word-spacing:0.255360pt;}
.ws100{word-spacing:0.267200pt;}
.wsdc{word-spacing:0.288000pt;}
.ws3e{word-spacing:0.292800pt;}
.wsf6{word-spacing:0.320640pt;}
.ws104{word-spacing:0.374080pt;}
.wsf8{word-spacing:0.427520pt;}
.ws84{word-spacing:0.468480pt;}
.ws128{word-spacing:0.480960pt;}
.ws60{word-spacing:0.527040pt;}
.ws3b{word-spacing:0.585600pt;}
.ws137{word-spacing:0.587840pt;}
.ws111{word-spacing:0.641280pt;}
.ws6e{word-spacing:0.644160pt;}
.ws6d{word-spacing:0.702720pt;}
.ws1a{word-spacing:0.723520pt;}
.ws2f{word-spacing:0.748160pt;}
.wsa5{word-spacing:0.761280pt;}
.ws6c{word-spacing:0.819840pt;}
.ws5f{word-spacing:0.878400pt;}
.ws85{word-spacing:0.936960pt;}
.wseb{word-spacing:0.961920pt;}
.ws1e{word-spacing:0.978880pt;}
.wsad{word-spacing:0.995520pt;}
.ws1f{word-spacing:1.021440pt;}
.ws36{word-spacing:1.104000pt;}
.ws1d{word-spacing:1.106560pt;}
.ws9c{word-spacing:1.112640pt;}
.wsfa{word-spacing:1.122240pt;}
.ws71{word-spacing:1.171200pt;}
.ws127{word-spacing:1.229120pt;}
.ws40{word-spacing:1.229760pt;}
.wsed{word-spacing:1.282560pt;}
.wsae{word-spacing:1.288320pt;}
.wsec{word-spacing:1.336000pt;}
.wse5{word-spacing:1.389440pt;}
.wsd4{word-spacing:1.405440pt;}
.ws13f{word-spacing:1.442880pt;}
.ws6b{word-spacing:1.464000pt;}
.ws70{word-spacing:1.522560pt;}
.ws112{word-spacing:1.549760pt;}
.ws9a{word-spacing:1.581120pt;}
.ws88{word-spacing:1.639680pt;}
.wse3{word-spacing:1.710080pt;}
.wse1{word-spacing:1.756800pt;}
.wse4{word-spacing:1.763520pt;}
.ws86{word-spacing:1.815360pt;}
.ws67{word-spacing:1.873920pt;}
.ws87{word-spacing:1.932480pt;}
.ws13b{word-spacing:2.030720pt;}
.ws68{word-spacing:2.049600pt;}
.ws13a{word-spacing:2.084160pt;}
.ws57{word-spacing:2.166720pt;}
.ws11b{word-spacing:2.191040pt;}
.ws54{word-spacing:2.225280pt;}
.ws56{word-spacing:2.283840pt;}
.ws11c{word-spacing:2.297920pt;}
.ws25{word-spacing:2.351360pt;}
.ws55{word-spacing:2.400960pt;}
.wsa2{word-spacing:2.459520pt;}
.ws11d{word-spacing:2.511680pt;}
.wsa0{word-spacing:2.518080pt;}
.ws125{word-spacing:2.618560pt;}
.wsa3{word-spacing:2.635200pt;}
.ws21{word-spacing:2.684160pt;}
.ws76{word-spacing:2.693760pt;}
.ws96{word-spacing:2.810880pt;}
.ws4d{word-spacing:2.869440pt;}
.ws5a{word-spacing:2.928000pt;}
.wsfd{word-spacing:2.939200pt;}
.ws97{word-spacing:2.986560pt;}
.ws3c{word-spacing:3.103680pt;}
.ws108{word-spacing:3.152960pt;}
.ws61{word-spacing:3.162240pt;}
.ws59{word-spacing:3.220800pt;}
.wsfc{word-spacing:3.259840pt;}
.ws105{word-spacing:3.313280pt;}
.wsba{word-spacing:3.396480pt;}
.ws106{word-spacing:3.420160pt;}
.wsbf{word-spacing:3.455040pt;}
.wsf9{word-spacing:3.473600pt;}
.ws4b{word-spacing:3.513600pt;}
.wsac{word-spacing:3.572160pt;}
.ws9f{word-spacing:3.689280pt;}
.ws139{word-spacing:3.740800pt;}
.ws4e{word-spacing:3.747840pt;}
.ws4f{word-spacing:3.806400pt;}
.wsb5{word-spacing:3.864960pt;}
.ws29{word-spacing:3.901120pt;}
.ws118{word-spacing:3.954560pt;}
.ws8c{word-spacing:3.982080pt;}
.ws117{word-spacing:4.008000pt;}
.wsb3{word-spacing:4.099200pt;}
.wsb4{word-spacing:4.157760pt;}
.wsb6{word-spacing:4.274880pt;}
.ws27{word-spacing:4.275200pt;}
.ws28{word-spacing:4.382080pt;}
.ws39{word-spacing:4.392000pt;}
.ws110{word-spacing:4.435520pt;}
.ws3a{word-spacing:4.450560pt;}
.wsb9{word-spacing:4.509120pt;}
.ws2e{word-spacing:4.542400pt;}
.ws35{word-spacing:4.656000pt;}
.wsab{word-spacing:4.743360pt;}
.wsa9{word-spacing:4.801920pt;}
.wsaa{word-spacing:4.860480pt;}
.ws12b{word-spacing:4.863040pt;}
.ws12c{word-spacing:4.916480pt;}
.ws102{word-spacing:5.023360pt;}
.ws114{word-spacing:5.076800pt;}
.ws3f{word-spacing:5.094720pt;}
.wsa1{word-spacing:5.153280pt;}
.ws103{word-spacing:5.183680pt;}
.ws142{word-spacing:5.237120pt;}
.ws115{word-spacing:5.344000pt;}
.ws83{word-spacing:5.387520pt;}
.ws101{word-spacing:5.397440pt;}
.ws82{word-spacing:5.446080pt;}
.ws113{word-spacing:5.504320pt;}
.wsff{word-spacing:5.718080pt;}
.ws93{word-spacing:5.738880pt;}
.ws95{word-spacing:5.797440pt;}
.wsee{word-spacing:5.824960pt;}
.ws94{word-spacing:5.914560pt;}
.ws12a{word-spacing:5.985280pt;}
.ws63{word-spacing:6.031680pt;}
.ws160{word-spacing:6.038720pt;}
.wsd2{word-spacing:6.090240pt;}
.ws11a{word-spacing:6.145600pt;}
.ws19{word-spacing:6.171200pt;}
.wsef{word-spacing:6.199040pt;}
.wsd1{word-spacing:6.207360pt;}
.wsce{word-spacing:6.324480pt;}
.ws134{word-spacing:6.359360pt;}
.ws90{word-spacing:6.383040pt;}
.ws8e{word-spacing:6.441600pt;}
.ws119{word-spacing:6.466240pt;}
.ws1c{word-spacing:6.469120pt;}
.ws91{word-spacing:6.500160pt;}
.ws8f{word-spacing:6.558720pt;}
.ws9b{word-spacing:6.617280pt;}
.ws32{word-spacing:6.626560pt;}
.ws58{word-spacing:6.675840pt;}
.ws1b{word-spacing:6.767040pt;}
.wsd3{word-spacing:6.792960pt;}
.ws30{word-spacing:6.840320pt;}
.wsbd{word-spacing:7.027200pt;}
.ws129{word-spacing:7.160960pt;}
.ws78{word-spacing:7.261440pt;}
.ws53{word-spacing:7.320000pt;}
.ws77{word-spacing:7.378560pt;}
.ws79{word-spacing:7.495680pt;}
.ws2c{word-spacing:7.588480pt;}
.ws64{word-spacing:7.671360pt;}
.wsb8{word-spacing:7.905600pt;}
.wsb7{word-spacing:7.964160pt;}
.wsc8{word-spacing:8.256960pt;}
.wsc7{word-spacing:8.432640pt;}
.ws31{word-spacing:8.443520pt;}
.ws2d{word-spacing:8.603840pt;}
.ws73{word-spacing:8.608320pt;}
.wsd0{word-spacing:8.842560pt;}
.ws74{word-spacing:8.901120pt;}
.ws75{word-spacing:9.252480pt;}
.wscf{word-spacing:9.311040pt;}
.ws8a{word-spacing:9.545280pt;}
.ws140{word-spacing:9.565760pt;}
.ws8b{word-spacing:9.603840pt;}
.ws126{word-spacing:9.672640pt;}
.ws89{word-spacing:9.720960pt;}
.ws15f{word-spacing:9.856000pt;}
.wsaf{word-spacing:9.896640pt;}
.wsb1{word-spacing:9.955200pt;}
.ws15c{word-spacing:9.959404pt;}
.ws11f{word-spacing:9.993280pt;}
.wsb0{word-spacing:10.013760pt;}
.ws11e{word-spacing:10.046720pt;}
.wsb2{word-spacing:10.072320pt;}
.ws12d{word-spacing:10.207040pt;}
.ws163{word-spacing:10.496000pt;}
.ws12e{word-spacing:10.527680pt;}
.wsa4{word-spacing:10.540800pt;}
.ws135{word-spacing:10.794880pt;}
.ws164{word-spacing:10.816000pt;}
.ws8d{word-spacing:10.833600pt;}
.ws10b{word-spacing:10.848320pt;}
.ws10a{word-spacing:10.955200pt;}
.ws99{word-spacing:11.009280pt;}
.ws109{word-spacing:11.115520pt;}
.ws52{word-spacing:11.126400pt;}
.wsf2{word-spacing:11.168960pt;}
.ws50{word-spacing:11.184960pt;}
.ws51{word-spacing:11.360640pt;}
.ws3d{word-spacing:11.477760pt;}
.wsbe{word-spacing:11.536320pt;}
.wsf3{word-spacing:11.596480pt;}
.wsf5{word-spacing:11.649920pt;}
.ws5b{word-spacing:11.829120pt;}
.wsf4{word-spacing:11.917120pt;}
.ws6f{word-spacing:12.063360pt;}
.ws162{word-spacing:12.416000pt;}
.ws98{word-spacing:12.473280pt;}
.wsbb{word-spacing:12.766080pt;}
.ws13e{word-spacing:12.932480pt;}
.ws15b{word-spacing:13.000320pt;}
.ws13c{word-spacing:13.092800pt;}
.ws13d{word-spacing:13.306560pt;}
.ws15e{word-spacing:13.376000pt;}
.ws9e{word-spacing:13.410240pt;}
.ws2b{word-spacing:13.894400pt;}
.ws15a{word-spacing:13.995840pt;}
.ws167{word-spacing:14.016000pt;}
.ws5d{word-spacing:14.288640pt;}
.ws166{word-spacing:14.336000pt;}
.ws5c{word-spacing:14.347200pt;}
.wsca{word-spacing:14.698560pt;}
.wsa8{word-spacing:14.991360pt;}
.wsa7{word-spacing:15.167040pt;}
.wscc{word-spacing:15.635520pt;}
.ws161{word-spacing:15.936000pt;}
.wsea{word-spacing:15.978560pt;}
.ws2a{word-spacing:16.085440pt;}
.wse8{word-spacing:16.138880pt;}
.ws15d{word-spacing:16.256000pt;}
.wse7{word-spacing:16.299200pt;}
.wse6{word-spacing:16.459520pt;}
.wsbc{word-spacing:16.631040pt;}
.wscb{word-spacing:16.689600pt;}
.ws7e{word-spacing:16.865280pt;}
.ws7f{word-spacing:16.923840pt;}
.ws7c{word-spacing:16.982400pt;}
.ws7d{word-spacing:17.099520pt;}
.ws80{word-spacing:17.158080pt;}
.ws41{word-spacing:17.216640pt;}
.ws120{word-spacing:17.261120pt;}
.ws43{word-spacing:17.275200pt;}
.ws9d{word-spacing:17.333760pt;}
.ws121{word-spacing:17.368000pt;}
.wsd5{word-spacing:17.450880pt;}
.ws66{word-spacing:19.793280pt;}
.ws124{word-spacing:20.467520pt;}
.ws123{word-spacing:20.574400pt;}
.ws122{word-spacing:20.788160pt;}
.ws116{word-spacing:21.108800pt;}
.wse2{word-spacing:21.432960pt;}
.ws62{word-spacing:22.369920pt;}
.wsc9{word-spacing:23.014080pt;}
.ws131{word-spacing:23.673920pt;}
.ws130{word-spacing:23.780800pt;}
.ws12f{word-spacing:23.887680pt;}
.wsa6{word-spacing:24.595200pt;}
.ws132{word-spacing:24.956480pt;}
.ws133{word-spacing:25.384000pt;}
.wscd{word-spacing:29.397120pt;}
._51{margin-left:-1969.280000pt;}
._40{margin-left:-1848.226208pt;}
._4f{margin-left:-1647.188960pt;}
._16{margin-left:-1544.601696pt;}
._27{margin-left:-1313.149440pt;}
._28{margin-left:-1310.326368pt;}
._81{margin-left:-1239.552000pt;}
._82{margin-left:-1230.125344pt;}
._41{margin-left:-1201.643520pt;}
._2a{margin-left:-1162.166816pt;}
._42{margin-left:-1097.062432pt;}
._2b{margin-left:-1021.691040pt;}
._4b{margin-left:-849.145024pt;}
._49{margin-left:-796.606496pt;}
._17{margin-left:-776.768000pt;}
._1a{margin-left:-706.489056pt;}
._19{margin-left:-704.394560pt;}
._4c{margin-left:-626.213216pt;}
._48{margin-left:-603.904000pt;}
._4e{margin-left:-599.406656pt;}
._4d{margin-left:-581.184000pt;}
._4a{margin-left:-533.607392pt;}
._31{margin-left:-484.575136pt;}
._44{margin-left:-456.832000pt;}
._45{margin-left:-454.272000pt;}
._20{margin-left:-395.136000pt;}
._50{margin-left:-392.512000pt;}
._80{margin-left:-356.800000pt;}
._46{margin-left:-351.671040pt;}
._7d{margin-left:-297.013824pt;}
._30{margin-left:-283.547520pt;}
._24{margin-left:-278.320736pt;}
._34{margin-left:-262.560000pt;}
._7e{margin-left:-250.672288pt;}
._38{margin-left:-238.464000pt;}
._7f{margin-left:-228.494080pt;}
._1e{margin-left:-221.689248pt;}
._1c{margin-left:-220.473920pt;}
._6a{margin-left:-216.915232pt;}
._6d{margin-left:-213.518080pt;}
._3e{margin-left:-206.848000pt;}
._2e{margin-left:-193.833600pt;}
._65{margin-left:-186.348960pt;}
._75{margin-left:-183.713920pt;}
._67{margin-left:-181.982880pt;}
._61{margin-left:-178.273920pt;}
._62{margin-left:-173.602208pt;}
._71{margin-left:-171.411296pt;}
._79{margin-left:-168.113088pt;}
._76{margin-left:-167.089376pt;}
._63{margin-left:-166.001376pt;}
._23{margin-left:-165.022080pt;}
._2f{margin-left:-156.472320pt;}
._59{margin-left:-155.166784pt;}
._6f{margin-left:-153.336064pt;}
._6e{margin-left:-151.145152pt;}
._70{margin-left:-149.760000pt;}
._2d{margin-left:-148.859520pt;}
._5a{margin-left:-146.729888pt;}
._3d{margin-left:-143.856000pt;}
._52{margin-left:-142.656000pt;}
._26{margin-left:-141.041760pt;}
._43{margin-left:-138.240000pt;}
._78{margin-left:-136.565152pt;}
._7a{margin-left:-135.522336pt;}
._54{margin-left:-132.632864pt;}
._3a{margin-left:-131.062944pt;}
._5d{margin-left:-127.829824pt;}
._47{margin-left:-126.433920pt;}
._64{margin-left:-124.480000pt;}
._56{margin-left:-121.984000pt;}
._7b{margin-left:-120.206144pt;}
._6c{margin-left:-116.288000pt;}
._6b{margin-left:-115.036672pt;}
._5e{margin-left:-112.917952pt;}
._5f{margin-left:-109.387968pt;}
._53{margin-left:-106.273920pt;}
._3f{margin-left:-102.242208pt;}
._37{margin-left:-101.328000pt;}
._58{margin-left:-99.504000pt;}
._66{margin-left:-96.673120pt;}
._73{margin-left:-93.075744pt;}
._72{margin-left:-90.405408pt;}
._77{margin-left:-89.101120pt;}
._5b{margin-left:-85.794208pt;}
._57{margin-left:-84.001920pt;}
._69{margin-left:-74.604768pt;}
._68{margin-left:-66.963232pt;}
._3c{margin-left:-65.684448pt;}
._39{margin-left:-56.713056pt;}
._35{margin-left:-55.392000pt;}
._36{margin-left:-54.192000pt;}
._7c{margin-left:-52.234176pt;}
._55{margin-left:-50.273920pt;}
._22{margin-left:-41.870400pt;}
._1b{margin-left:-40.411520pt;}
._18{margin-left:-37.801920pt;}
._74{margin-left:-33.856000pt;}
._60{margin-left:-31.824000pt;}
._21{margin-left:-25.621120pt;}
._33{margin-left:-21.744000pt;}
._3b{margin-left:-20.617056pt;}
._5c{margin-left:-16.753920pt;}
._1d{margin-left:-15.709792pt;}
._1f{margin-left:-14.080000pt;}
._25{margin-left:-12.971040pt;}
._2c{margin-left:-11.799840pt;}
._29{margin-left:-10.398080pt;}
._32{margin-left:-9.493810pt;}
._a{margin-left:-1.995392pt;}
._1{margin-left:-0.923552pt;}
._0{width:0.889056pt;}
._4{width:2.549760pt;}
._6{width:3.859232pt;}
._10{width:4.919040pt;}
._2{width:6.103104pt;}
._9{width:7.144864pt;}
._c{width:8.842560pt;}
._d{width:10.189440pt;}
._b{width:12.229984pt;}
._8{width:13.726304pt;}
._f{width:15.914912pt;}
._5{width:17.059296pt;}
._e{width:25.170144pt;}
._15{width:58.428032pt;}
._3{width:82.626784pt;}
._14{width:99.112256pt;}
._13{width:172.513984pt;}
._12{width:213.584000pt;}
._11{width:496.368000pt;}
._7{width:593.963424pt;}
.fs5{font-size:26.560000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:42.560000pt;}
.fs6{font-size:44.862179pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:74.560000pt;}
.fs9{font-size:78.593141pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.080000pt;}
.y7{bottom:2.400000pt;}
.ya{bottom:2.560000pt;}
.yf{bottom:2.960000pt;}
.yb{bottom:3.040000pt;}
.ye5{bottom:3.200000pt;}
.ye7{bottom:3.360000pt;}
.y9{bottom:3.440000pt;}
.ye{bottom:4.080000pt;}
.yd{bottom:4.720000pt;}
.y2{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y4e{bottom:5.680000pt;}
.yf2{bottom:5.840000pt;}
.y50{bottom:6.560000pt;}
.ye4{bottom:17.680000pt;}
.yee{bottom:18.240000pt;}
.ye9{bottom:18.320000pt;}
.yf0{bottom:18.720000pt;}
.y52{bottom:50.240000pt;}
.y14{bottom:50.242560pt;}
.y6{bottom:53.840000pt;}
.y13{bottom:63.521280pt;}
.y12{bottom:76.800000pt;}
.y95{bottom:80.644480pt;}
.y7f{bottom:82.695360pt;}
.y154{bottom:82.832240pt;}
.y11f{bottom:87.177200pt;}
.y82{bottom:88.314640pt;}
.y11{bottom:90.000000pt;}
.yf6{bottom:90.480000pt;}
.yc8{bottom:93.267680pt;}
.y94{bottom:98.798080pt;}
.y153{bottom:99.478800pt;}
.y7e{bottom:100.541520pt;}
.y11e{bottom:103.422960pt;}
.y81{bottom:106.556080pt;}
.yc7{bottom:111.113840pt;}
.y4c{bottom:114.998320pt;}
.y93{bottom:118.240000pt;}
.y7d{bottom:118.387680pt;}
.y152{bottom:118.677120pt;}
.yf5{bottom:120.960000pt;}
.y29{bottom:122.240000pt;}
.y11d{bottom:122.300640pt;}
.y80{bottom:128.560000pt;}
.yc6{bottom:128.798240pt;}
.y4b{bottom:132.844480pt;}
.y151{bottom:135.243520pt;}
.y7c{bottom:136.233840pt;}
.y11c{bottom:138.546400pt;}
.yc5{bottom:146.644400pt;}
.y4a{bottom:150.690640pt;}
.yf4{bottom:151.440000pt;}
.y150{bottom:151.809920pt;}
.y7b{bottom:154.080000pt;}
.y11b{bottom:157.424080pt;}
.yc4{bottom:164.490560pt;}
.yf3{bottom:166.560000pt;}
.y49{bottom:168.536800pt;}
.y14f{bottom:171.088400pt;}
.y37{bottom:171.520000pt;}
.y11a{bottom:176.301760pt;}
.y7a{bottom:177.273840pt;}
.yc3{bottom:182.336720pt;}
.y48{bottom:186.382960pt;}
.y14e{bottom:187.654800pt;}
.y36{bottom:188.080000pt;}
.y119{bottom:192.547520pt;}
.y79{bottom:195.120000pt;}
.yf1{bottom:197.040000pt;}
.yc2{bottom:200.182880pt;}
.y47{bottom:204.229120pt;}
.y14d{bottom:206.853120pt;}
.y118{bottom:208.713120pt;}
.y78{bottom:212.953840pt;}
.yef{bottom:215.040000pt;}
.yc1{bottom:218.029040pt;}
.y46{bottom:222.075280pt;}
.y14c{bottom:223.419520pt;}
.y117{bottom:227.590800pt;}
.y77{bottom:230.800000pt;}
.yc0{bottom:235.875200pt;}
.y32{bottom:237.920000pt;}
.y45{bottom:239.921440pt;}
.y14b{bottom:240.066080pt;}
.y116{bottom:243.836560pt;}
.yed{bottom:245.600000pt;}
.y76{bottom:248.640000pt;}
.ybf{bottom:253.794560pt;}
.y14a{bottom:259.264400pt;}
.y115{bottom:262.714240pt;}
.y44{bottom:265.600000pt;}
.y75{bottom:266.480000pt;}
.ybe{bottom:271.640720pt;}
.y149{bottom:275.830800pt;}
.yec{bottom:276.080000pt;}
.y114{bottom:278.960000pt;}
.y175{bottom:279.520000pt;}
.ybd{bottom:289.486880pt;}
.y74{bottom:289.699360pt;}
.yeb{bottom:291.200000pt;}
.y148{bottom:295.109280pt;}
.y113{bottom:300.640000pt;}
.y43{bottom:308.080000pt;}
.y147{bottom:311.675680pt;}
.ybc{bottom:312.603440pt;}
.y73{bottom:312.815920pt;}
.yea{bottom:321.680000pt;}
.y42{bottom:323.040000pt;}
.ybb{bottom:330.522800pt;}
.y146{bottom:330.874000pt;}
.y72{bottom:335.449360pt;}
.y41{bottom:337.920000pt;}
.y112{bottom:341.774080pt;}
.y145{bottom:347.440400pt;}
.yba{bottom:348.368960pt;}
.ye8{bottom:352.160000pt;}
.y111{bottom:358.019840pt;}
.y71{bottom:358.082800pt;}
.y28{bottom:358.160000pt;}
.yb9{bottom:366.215120pt;}
.y31{bottom:366.473840pt;}
.y144{bottom:366.718880pt;}
.y40{bottom:367.200000pt;}
.y110{bottom:374.265600pt;}
.y30{bottom:379.273760pt;}
.y70{bottom:380.716240pt;}
.ye6{bottom:382.640000pt;}
.yb8{bottom:384.061280pt;}
.y143{bottom:385.917200pt;}
.y10f{bottom:390.511360pt;}
.y3f{bottom:397.120000pt;}
.ye3{bottom:397.760000pt;}
.y2f{bottom:400.074960pt;}
.yb7{bottom:401.907440pt;}
.y142{bottom:402.483600pt;}
.y6f{bottom:403.598560pt;}
.ye2{bottom:408.240000pt;}
.y10e{bottom:411.874000pt;}
.y2e{bottom:412.960000pt;}
.y3e{bottom:413.680000pt;}
.y141{bottom:419.050000pt;}
.yb6{bottom:419.753600pt;}
.y183{bottom:429.600000pt;}
.y3d{bottom:430.240000pt;}
.y2c{bottom:433.833760pt;}
.y2d{bottom:433.840000pt;}
.y6e{bottom:436.963120pt;}
.yb5{bottom:437.599760pt;}
.y140{bottom:438.328480pt;}
.ye1{bottom:439.363040pt;}
.y92{bottom:442.098480pt;}
.y2b{bottom:446.718800pt;}
.y3c{bottom:446.800000pt;}
.y10d{bottom:451.793680pt;}
.y182{bottom:452.320000pt;}
.y6d{bottom:454.882480pt;}
.y13f{bottom:454.894880pt;}
.yb4{bottom:455.445920pt;}
.ye0{bottom:457.604480pt;}
.y91{bottom:459.944640pt;}
.y3b{bottom:463.440000pt;}
.y2a{bottom:467.520000pt;}
.y10c{bottom:473.156320pt;}
.yb3{bottom:473.292080pt;}
.y13e{bottom:474.093200pt;}
.y181{bottom:475.360000pt;}
.y3a{bottom:480.000000pt;}
.y27{bottom:480.400000pt;}
.y90{bottom:483.149040pt;}
.y174{bottom:489.600000pt;}
.y13d{bottom:490.659600pt;}
.yb2{bottom:491.138240pt;}
.y39{bottom:496.560000pt;}
.y8f{bottom:500.995200pt;}
.ydf{bottom:507.761120pt;}
.yb1{bottom:508.984400pt;}
.y13c{bottom:509.938080pt;}
.y10b{bottom:513.076000pt;}
.y38{bottom:513.120000pt;}
.y180{bottom:514.320000pt;}
.y8e{bottom:518.841360pt;}
.y6c{bottom:524.640000pt;}
.yde{bottom:525.607280pt;}
.y13b{bottom:526.504480pt;}
.yb0{bottom:526.830560pt;}
.y10a{bottom:534.438640pt;}
.y8d{bottom:536.687520pt;}
.y6b{bottom:542.480640pt;}
.ydd{bottom:543.453440pt;}
.yaf{bottom:544.676720pt;}
.y13a{bottom:545.702800pt;}
.y35{bottom:546.240000pt;}
.y17f{bottom:555.200000pt;}
.y8c{bottom:559.891920pt;}
.y6a{bottom:560.400000pt;}
.ydc{bottom:561.299600pt;}
.y139{bottom:562.336000pt;}
.yae{bottom:562.596080pt;}
.y34{bottom:562.800000pt;}
.y109{bottom:574.358320pt;}
.y8b{bottom:577.738080pt;}
.y69{bottom:578.240000pt;}
.y17e{bottom:578.880000pt;}
.ydb{bottom:579.145760pt;}
.y33{bottom:579.360000pt;}
.yad{bottom:580.442240pt;}
.y138{bottom:581.534320pt;}
.y108{bottom:590.604080pt;}
.y8a{bottom:595.584240pt;}
.y68{bottom:596.067680pt;}
.yda{bottom:597.065120pt;}
.y137{bottom:598.100720pt;}
.yac{bottom:598.288400pt;}
.y17d{bottom:602.640000pt;}
.y107{bottom:606.849840pt;}
.y16b{bottom:608.774240pt;}
.y89{bottom:613.430400pt;}
.y67{bottom:613.913840pt;}
.yd9{bottom:614.911280pt;}
.yab{bottom:616.134560pt;}
.y136{bottom:617.379200pt;}
.y26{bottom:621.520000pt;}
.y16a{bottom:625.420800pt;}
.y17c{bottom:626.320000pt;}
.y106{bottom:628.212480pt;}
.y88{bottom:631.349760pt;}
.y66{bottom:631.753840pt;}
.yd8{bottom:632.757440pt;}
.yaa{bottom:633.980720pt;}
.y25{bottom:636.240000pt;}
.y135{bottom:636.577520pt;}
.y169{bottom:641.987200pt;}
.y87{bottom:649.195920pt;}
.y65{bottom:649.600000pt;}
.y24{bottom:650.000000pt;}
.yd7{bottom:650.603600pt;}
.ya9{bottom:651.826880pt;}
.y134{bottom:653.143920pt;}
.y168{bottom:658.553600pt;}
.y86{bottom:667.042080pt;}
.y105{bottom:668.132160pt;}
.yd6{bottom:668.449760pt;}
.ya8{bottom:669.673040pt;}
.y133{bottom:672.422400pt;}
.y17b{bottom:673.760000pt;}
.y23{bottom:674.720000pt;}
.y64{bottom:675.023120pt;}
.y167{bottom:675.120000pt;}
.y104{bottom:684.377920pt;}
.yd5{bottom:686.295920pt;}
.ya7{bottom:687.519200pt;}
.y132{bottom:688.988800pt;}
.y22{bottom:689.440000pt;}
.y166{bottom:694.252640pt;}
.y17a{bottom:697.440000pt;}
.y21{bottom:703.280000pt;}
.yd4{bottom:704.142080pt;}
.ya6{bottom:705.365360pt;}
.y103{bottom:705.740560pt;}
.y131{bottom:708.187120pt;}
.y165{bottom:710.819040pt;}
.y63{bottom:716.630000pt;}
.y85{bottom:716.876640pt;}
.y179{bottom:721.200000pt;}
.yd3{bottom:721.988240pt;}
.y130{bottom:724.753520pt;}
.y20{bottom:728.000000pt;}
.ya5{bottom:728.642960pt;}
.y164{bottom:730.097520pt;}
.y62{bottom:734.476160pt;}
.y84{bottom:735.118080pt;}
.yd2{bottom:739.834400pt;}
.y12f{bottom:741.319920pt;}
.y1f{bottom:742.720000pt;}
.y178{bottom:744.880000pt;}
.y177{bottom:744.884960pt;}
.y102{bottom:745.660240pt;}
.y163{bottom:746.663920pt;}
.ya4{bottom:746.884400pt;}
.y61{bottom:752.395520pt;}
.y83{bottom:754.560000pt;}
.y1e{bottom:756.560000pt;}
.yd1{bottom:757.680560pt;}
.y12e{bottom:760.598400pt;}
.ya3{bottom:765.125840pt;}
.y162{bottom:765.862240pt;}
.y101{bottom:767.022880pt;}
.y176{bottom:769.120000pt;}
.y60{bottom:770.241680pt;}
.yd0{bottom:775.526720pt;}
.y12d{bottom:777.164800pt;}
.y1d{bottom:781.280000pt;}
.y161{bottom:782.508800pt;}
.ya2{bottom:783.279440pt;}
.y5f{bottom:788.087840pt;}
.ycf{bottom:793.372880pt;}
.y173{bottom:793.680000pt;}
.y1c{bottom:796.000000pt;}
.y12c{bottom:796.363120pt;}
.y160{bottom:799.075200pt;}
.ya1{bottom:801.520880pt;}
.y5e{bottom:805.934000pt;}
.y100{bottom:806.942560pt;}
.y1b{bottom:809.840000pt;}
.yce{bottom:811.219040pt;}
.y12b{bottom:812.929520pt;}
.y172{bottom:816.720000pt;}
.y15f{bottom:818.273520pt;}
.ya0{bottom:819.762320pt;}
.yff{bottom:823.188320pt;}
.y5d{bottom:823.780160pt;}
.ycd{bottom:829.138400pt;}
.y12a{bottom:829.576080pt;}
.y1a{bottom:834.480000pt;}
.y15e{bottom:834.839920pt;}
.y9f{bottom:838.003760pt;}
.yfe{bottom:839.434080pt;}
.y5c{bottom:841.626320pt;}
.y171{bottom:844.720000pt;}
.ycc{bottom:846.984560pt;}
.y129{bottom:848.774400pt;}
.y19{bottom:849.200000pt;}
.y15d{bottom:851.406320pt;}
.yfd{bottom:855.679840pt;}
.y9e{bottom:856.245200pt;}
.y5b{bottom:859.472480pt;}
.y18{bottom:863.040000pt;}
.ycb{bottom:864.830720pt;}
.y128{bottom:865.340800pt;}
.y15c{bottom:870.684800pt;}
.yfc{bottom:871.845440pt;}
.y9d{bottom:874.398800pt;}
.y5a{bottom:877.318640pt;}
.y170{bottom:882.480000pt;}
.yca{bottom:882.676880pt;}
.y127{bottom:884.619280pt;}
.y15b{bottom:887.251200pt;}
.y9c{bottom:892.640240pt;}
.y59{bottom:895.164800pt;}
.yfb{bottom:895.840000pt;}
.yc9{bottom:900.523040pt;}
.y126{bottom:901.185680pt;}
.y17{bottom:903.120000pt;}
.y16{bottom:903.123280pt;}
.y15a{bottom:903.817600pt;}
.y16f{bottom:904.240000pt;}
.y9b{bottom:910.881680pt;}
.y125{bottom:917.752080pt;}
.y58{bottom:918.369200pt;}
.y159{bottom:923.015920pt;}
.y15{bottom:925.920000pt;}
.y9a{bottom:929.123120pt;}
.yfa{bottom:936.208880pt;}
.y57{bottom:936.215360pt;}
.y124{bottom:936.950400pt;}
.y158{bottom:939.662480pt;}
.y99{bottom:947.364560pt;}
.y16d{bottom:951.200000pt;}
.y123{bottom:953.516800pt;}
.yf9{bottom:954.055040pt;}
.y56{bottom:954.061520pt;}
.y157{bottom:956.228880pt;}
.y16e{bottom:956.560000pt;}
.y10{bottom:961.360000pt;}
.y98{bottom:965.606000pt;}
.yc{bottom:967.520000pt;}
.yf8{bottom:971.901200pt;}
.y55{bottom:971.907680pt;}
.y122{bottom:972.795280pt;}
.y156{bottom:975.427200pt;}
.y8{bottom:981.040000pt;}
.y97{bottom:983.759600pt;}
.y121{bottom:989.361680pt;}
.yf7{bottom:989.747360pt;}
.y54{bottom:989.753840pt;}
.y155{bottom:991.993600pt;}
.y4{bottom:994.960000pt;}
.y16c{bottom:1002.000000pt;}
.y96{bottom:1007.593520pt;}
.y53{bottom:1007.600000pt;}
.y120{bottom:1008.560000pt;}
.y51{bottom:1041.120000pt;}
.y4d{bottom:1054.960000pt;}
.y1{bottom:1059.920000pt;}
.y4f{bottom:1061.520000pt;}
.hc{height:12.798667pt;}
.ha{height:13.280000pt;}
.h24{height:14.400000pt;}
.h22{height:14.478667pt;}
.h28{height:14.480000pt;}
.h2{height:15.360000pt;}
.h27{height:17.360000pt;}
.hf{height:19.271562pt;}
.h1a{height:20.321333pt;}
.hb{height:23.422500pt;}
.hd{height:25.374375pt;}
.h9{height:28.366406pt;}
.h21{height:28.960000pt;}
.h25{height:29.760000pt;}
.h23{height:29.838667pt;}
.h26{height:29.840000pt;}
.h17{height:29.900818pt;}
.h1c{height:30.756250pt;}
.he{height:30.880938pt;}
.h4{height:31.026406pt;}
.h35{height:31.992188pt;}
.h30{height:32.003125pt;}
.h10{height:32.419934pt;}
.h5{height:32.531250pt;}
.h8{height:34.828125pt;}
.h20{height:34.992188pt;}
.h33{height:36.362899pt;}
.h19{height:38.775312pt;}
.h34{height:38.906250pt;}
.h29{height:38.957969pt;}
.h1e{height:39.030469pt;}
.h3{height:40.876719pt;}
.h14{height:42.690469pt;}
.h1b{height:45.184000pt;}
.h7{height:46.101562pt;}
.h31{height:47.465625pt;}
.h2f{height:48.125000pt;}
.h2c{height:48.377812pt;}
.h18{height:51.326406pt;}
.h2a{height:51.417606pt;}
.h2d{height:51.595846pt;}
.h2b{height:51.837446pt;}
.h32{height:51.875000pt;}
.h13{height:52.382635pt;}
.h12{height:54.354531pt;}
.h2e{height:56.065625pt;}
.h11{height:56.233666pt;}
.h15{height:56.243906pt;}
.h1d{height:56.268546pt;}
.h1f{height:56.890946pt;}
.h37{height:61.468750pt;}
.h6{height:64.961333pt;}
.h16{height:251.680000pt;}
.h36{height:296.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:77.040000pt;}
.w10{width:77.680000pt;}
.w13{width:93.761333pt;}
.w14{width:103.200000pt;}
.wa{width:122.958667pt;}
.w7{width:129.521333pt;}
.w5{width:129.920000pt;}
.w8{width:132.880000pt;}
.wc{width:136.480000pt;}
.w4{width:141.360000pt;}
.wf{width:143.600000pt;}
.w16{width:186.240000pt;}
.w12{width:217.120000pt;}
.w2{width:263.120000pt;}
.w3{width:287.200000pt;}
.w6{width:420.400000pt;}
.w9{width:428.560000pt;}
.we{width:536.400000pt;}
.wd{width:547.280000pt;}
.wb{width:564.560000pt;}
.w17{width:570.798667pt;}
.w11{width:680.080000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x7{left:-1.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.840000pt;}
.x4{left:5.680000pt;}
.x19{left:7.200000pt;}
.xa{left:21.520000pt;}
.x6{left:26.640000pt;}
.x2b{left:34.880000pt;}
.x2d{left:36.560000pt;}
.xc{left:49.680000pt;}
.x1{left:51.040000pt;}
.x15{left:53.120000pt;}
.xe{left:56.720000pt;}
.x14{left:60.320000pt;}
.xb{left:61.920000pt;}
.x26{left:63.920000pt;}
.x1b{left:75.440000pt;}
.x21{left:85.121600pt;}
.x2e{left:94.555520pt;}
.x23{left:112.480000pt;}
.x17{left:123.440000pt;}
.x16{left:128.960000pt;}
.x9{left:135.760000pt;}
.xd{left:151.280000pt;}
.x18{left:176.080000pt;}
.x11{left:179.600000pt;}
.x8{left:180.960000pt;}
.x1a{left:183.280000pt;}
.x13{left:191.680000pt;}
.x1d{left:193.200000pt;}
.x38{left:242.720000pt;}
.x37{left:246.400000pt;}
.x29{left:274.480000pt;}
.xf{left:290.720000pt;}
.x10{left:302.800000pt;}
.x3{left:314.160000pt;}
.x36{left:344.480000pt;}
.x35{left:348.160000pt;}
.x2a{left:368.960000pt;}
.x3c{left:414.500000pt;}
.x3b{left:418.240000pt;}
.x34{left:420.160000pt;}
.x33{left:425.360000pt;}
.x27{left:472.560000pt;}
.x20{left:477.280000pt;}
.x12{left:506.240000pt;}
.x32{left:508.080000pt;}
.x31{left:511.760000pt;}
.x3e{left:515.600000pt;}
.x40{left:526.080000pt;}
.x45{left:530.720000pt;}
.x1f{left:537.020000pt;}
.x1c{left:539.760000pt;}
.x1e{left:542.000000pt;}
.x42{left:545.360000pt;}
.x2c{left:550.560000pt;}
.x28{left:557.440000pt;}
.x44{left:581.040000pt;}
.x3f{left:582.075120pt;}
.x22{left:593.520000pt;}
.x43{left:594.560000pt;}
.x5{left:601.360000pt;}
.x41{left:608.720000pt;}
.x30{left:634.720000pt;}
.x2f{left:658.480000pt;}
.x3a{left:703.600000pt;}
.x25{left:709.360000pt;}
.x24{left:727.520000pt;}
.x39{left:730.240000pt;}
.x46{left:733.465733pt;}
.x3d{left:734.720000pt;}
}




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