
    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_20756b760c9d5036362003ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_d98ef537aa0506507f320c1d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_76b4e2f7722371d40ce4bc75.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923000;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_3fa9e239c9216af95cb61d13.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_9b4e70d38f69d3babf5c8a79.woff')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_77f7bb6d894d42d54346449a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4033041b054e53b78c32d81a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_66f3a86ccbfc9c3d2ec4c2d3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_4146cfc51183d16298401d1e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.730000;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_454250eb93f9c66dfa2b78c0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_6641dc7b46f67f72bf53a798.woff')format("woff");}.ffb{font-family:ffb;line-height:1.626000;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_1c2ed75c4b599caf5be63b73.woff')format("woff");}.ffc{font-family:ffc;line-height:0.898000;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_daa13a39ca111f6fa1706bfb.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_53ab78449aec6a06deae4a18.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_133f74fb3987c0a026240bb7.woff')format("woff");}.fff{font-family:fff;line-height:0.383000;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_d0c71c768fa49768b8b17dee.woff')format("woff");}.ff10{font-family:ff10;line-height:0.694000;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_c68ee6b54be450dcd43ce9dd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921000;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_344e05640aa7b45ce6ee4325.woff')format("woff");}.ff12{font-family:ff12;line-height:0.923000;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:ff13;src:url('chunks/assets/font_02ed4e4671c5e0a0dac702c2.woff')format("woff");}.ff13{font-family:ff13;line-height:2.399000;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:ff14;src:url('chunks/assets/font_1f7d5255c97686987b08e6ab.woff')format("woff");}.ff14{font-family:ff14;line-height:0.704000;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(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);}
.v7{vertical-align:-72.798000px;}
.v6{vertical-align:-64.758000px;}
.v4{vertical-align:-21.696000px;}
.v13{vertical-align:-18.486000px;}
.v14{vertical-align:-12.906000px;}
.v2{vertical-align:-9.816000px;}
.v12{vertical-align:-7.722000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:17.736000px;}
.ve{vertical-align:20.724000px;}
.v1{vertical-align:23.754000px;}
.v3{vertical-align:26.028000px;}
.v10{vertical-align:29.622000px;}
.v11{vertical-align:37.764000px;}
.vd{vertical-align:43.764000px;}
.v9{vertical-align:48.528000px;}
.vf{vertical-align:60.732000px;}
.v15{vertical-align:64.230000px;}
.vb{vertical-align:74.556000px;}
.v5{vertical-align:97.632000px;}
.v8{vertical-align:101.142000px;}
.va{vertical-align:150.348000px;}
.lsd{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000122px;}
.ls4b{letter-spacing:0.000141px;}
.ls11{letter-spacing:0.000413px;}
.ls1a{letter-spacing:0.000440px;}
.ls1e{letter-spacing:0.001114px;}
.ls10{letter-spacing:0.001150px;}
.ls5d{letter-spacing:0.001288px;}
.ls32{letter-spacing:0.001473px;}
.ls1f{letter-spacing:0.002523px;}
.ls29{letter-spacing:0.002657px;}
.ls6a{letter-spacing:0.002759px;}
.ls4a{letter-spacing:0.002915px;}
.ls37{letter-spacing:0.003056px;}
.ls6{letter-spacing:0.003791px;}
.ls3b{letter-spacing:0.004391px;}
.ls27{letter-spacing:0.005831px;}
.ls4c{letter-spacing:0.006141px;}
.ls20{letter-spacing:0.006440px;}
.ls6f{letter-spacing:0.006679px;}
.ls55{letter-spacing:0.007288px;}
.ls76{letter-spacing:0.592737px;}
.ls73{letter-spacing:2.573587px;}
.ls40{letter-spacing:2.579587px;}
.ls13{letter-spacing:2.984525px;}
.lsf{letter-spacing:2.984915px;}
.ls51{letter-spacing:2.988960px;}
.ls4f{letter-spacing:2.989739px;}
.ls3{letter-spacing:2.990915px;}
.ls61{letter-spacing:2.991543px;}
.ls75{letter-spacing:2.992059px;}
.ls14{letter-spacing:3.156921px;}
.ls9{letter-spacing:3.454878px;}
.lsa{letter-spacing:3.972993px;}
.ls74{letter-spacing:6.367460px;}
.ls18{letter-spacing:6.641075px;}
.ls23{letter-spacing:7.174664px;}
.ls39{letter-spacing:9.755464px;}
.ls2b{letter-spacing:9.756440px;}
.ls2d{letter-spacing:9.762440px;}
.ls79{letter-spacing:13.174059px;}
.ls5c{letter-spacing:14.949543px;}
.ls6b{letter-spacing:15.605831px;}
.ls17{letter-spacing:15.611831px;}
.ls7d{letter-spacing:15.934404px;}
.ls5f{letter-spacing:15.935073px;}
.ls2c{letter-spacing:15.937473px;}
.ls70{letter-spacing:15.940404px;}
.ls6d{letter-spacing:15.940664px;}
.ls78{letter-spacing:15.941073px;}
.ls6c{letter-spacing:15.943473px;}
.ls3d{letter-spacing:16.351114px;}
.ls2{letter-spacing:18.479412px;}
.ls3e{letter-spacing:19.919518px;}
.ls21{letter-spacing:19.921473px;}
.ls5b{letter-spacing:19.925518px;}
.ls2f{letter-spacing:19.927473px;}
.ls5{letter-spacing:20.330915px;}
.ls4{letter-spacing:20.800878px;}
.ls1{letter-spacing:20.823791px;}
.ls8{letter-spacing:20.911460px;}
.ls30{letter-spacing:21.271473px;}
.ls38{letter-spacing:22.370915px;}
.ls24{letter-spacing:22.587848px;}
.ls5a{letter-spacing:22.910915px;}
.ls5e{letter-spacing:22.911543px;}
.ls77{letter-spacing:22.912059px;}
.ls46{letter-spacing:22.915739px;}
.ls33{letter-spacing:23.110800px;}
.ls28{letter-spacing:23.407114px;}
.ls43{letter-spacing:23.410800px;}
.ls7{letter-spacing:23.507412px;}
.ls25{letter-spacing:23.914664px;}
.ls7c{letter-spacing:23.998737px;}
.ls67{letter-spacing:24.241473px;}
.ls31{letter-spacing:24.265739px;}
.ls0{letter-spacing:24.448878px;}
.ls44{letter-spacing:24.789750px;}
.ls63{letter-spacing:24.998915px;}
.ls64{letter-spacing:25.003739px;}
.ls6e{letter-spacing:25.382915px;}
.ls62{letter-spacing:25.401543px;}
.ls81{letter-spacing:25.516800px;}
.ls41{letter-spacing:25.754915px;}
.ls60{letter-spacing:26.090915px;}
.ls54{letter-spacing:26.396915px;}
.ls7b{letter-spacing:26.398059px;}
.ls66{letter-spacing:26.403543px;}
.ls7a{letter-spacing:26.404059px;}
.ls69{letter-spacing:27.095518px;}
.ls2e{letter-spacing:27.313114px;}
.ls1b{letter-spacing:27.384993px;}
.ls3f{letter-spacing:27.413566px;}
.ls1c{letter-spacing:27.446915px;}
.ls53{letter-spacing:28.653750px;}
.ls42{letter-spacing:28.909473px;}
.ls57{letter-spacing:29.330915px;}
.ls58{letter-spacing:29.336915px;}
.ls56{letter-spacing:29.339518px;}
.ls68{letter-spacing:29.437114px;}
.ls52{letter-spacing:29.779460px;}
.ls34{letter-spacing:30.188915px;}
.ls49{letter-spacing:30.625114px;}
.ls1d{letter-spacing:31.357460px;}
.ls47{letter-spacing:31.710993px;}
.lsb{letter-spacing:31.995056px;}
.ls48{letter-spacing:32.179739px;}
.ls45{letter-spacing:32.567831px;}
.ls26{letter-spacing:33.083831px;}
.ls50{letter-spacing:33.097114px;}
.ls4e{letter-spacing:33.109473px;}
.ls59{letter-spacing:33.161464px;}
.ls16{letter-spacing:33.510993px;}
.ls12{letter-spacing:34.668993px;}
.lse{letter-spacing:35.117578px;}
.ls80{letter-spacing:35.537831px;}
.ls15{letter-spacing:36.378993px;}
.ls3a{letter-spacing:37.513473px;}
.ls3c{letter-spacing:37.517518px;}
.lsc{letter-spacing:38.076993px;}
.ls4d{letter-spacing:38.468915px;}
.ls19{letter-spacing:39.023831px;}
.ls35{letter-spacing:39.579750px;}
.ls65{letter-spacing:45.111543px;}
.ls2a{letter-spacing:47.021518px;}
.ls36{letter-spacing:50.039831px;}
.ls7f{letter-spacing:74.714915px;}
.ls7e{letter-spacing:108.572915px;}
.ls72{letter-spacing:463.670915px;}
.ls71{letter-spacing:481.226915px;}
.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;}
}
.ws66{word-spacing:-71.731200px;}
.ws83{word-spacing:-56.789591px;}
.wsa{word-spacing:-50.809387px;}
.ws52{word-spacing:-45.664082px;}
.ws17{word-spacing:-42.637126px;}
.wsd6{word-spacing:-32.278875px;}
.ws11a{word-spacing:-26.899125px;}
.ws75{word-spacing:-22.416000px;}
.ws103{word-spacing:-21.777592px;}
.ws3e{word-spacing:-19.510886px;}
.ws9{word-spacing:-18.183288px;}
.ws9d{word-spacing:-15.495155px;}
.ws77{word-spacing:-7.818701px;}
.ws92{word-spacing:-4.483200px;}
.ws123{word-spacing:-3.945216px;}
.ws93{word-spacing:-3.873485px;}
.ws138{word-spacing:-3.837619px;}
.ws16{word-spacing:-3.652367px;}
.ws7c{word-spacing:-3.622426px;}
.ws12c{word-spacing:-3.570914px;}
.wsd3{word-spacing:-3.514829px;}
.ws6f{word-spacing:-3.443098px;}
.ws139{word-spacing:-3.299635px;}
.wsae{word-spacing:-3.227904px;}
.ws7d{word-spacing:-3.156173px;}
.ws29{word-spacing:-3.012710px;}
.wsf9{word-spacing:-2.593715px;}
.ws2a{word-spacing:-2.582323px;}
.wsea{word-spacing:-2.438861px;}
.ws89{word-spacing:-2.331264px;}
.ws6c{word-spacing:-2.259533px;}
.ws38{word-spacing:-2.116070px;}
.ws8b{word-spacing:-2.080205px;}
.ws8a{word-spacing:-2.059386px;}
.ws6d{word-spacing:-1.936742px;}
.ws39{word-spacing:-1.865011px;}
.ws64{word-spacing:-1.757414px;}
.wsaf{word-spacing:-1.721549px;}
.ws30{word-spacing:-1.578086px;}
.wscb{word-spacing:-1.506355px;}
.ws3a{word-spacing:-1.434624px;}
.ws3b{word-spacing:-1.362893px;}
.ws46{word-spacing:-1.303108px;}
.ws9a{word-spacing:-1.291162px;}
.wse2{word-spacing:-1.219430px;}
.ws4{word-spacing:-0.903273px;}
.wsf{word-spacing:-0.843399px;}
.ws10{word-spacing:-0.837819px;}
.wsc4{word-spacing:-0.645581px;}
.wsca{word-spacing:-0.430387px;}
.ws73{word-spacing:-0.286925px;}
.wsac{word-spacing:-0.143462px;}
.wsad{word-spacing:-0.128077px;}
.wsdb{word-spacing:-0.071731px;}
.ws4b{word-spacing:-0.059776px;}
.ws53{word-spacing:-0.047821px;}
.ws84{word-spacing:-0.035866px;}
.ws27{word-spacing:0.000000px;}
.wsd1{word-spacing:0.035866px;}
.ws2c{word-spacing:0.071731px;}
.wsfe{word-spacing:0.107597px;}
.wsc2{word-spacing:0.143462px;}
.wsa4{word-spacing:0.286925px;}
.wsa3{word-spacing:0.322790px;}
.ws5b{word-spacing:0.358656px;}
.ws111{word-spacing:0.396117px;}
.ws86{word-spacing:0.430387px;}
.ws7e{word-spacing:0.573850px;}
.ws113{word-spacing:0.620909px;}
.ws7f{word-spacing:0.645581px;}
.ws7b{word-spacing:0.717312px;}
.ws2b{word-spacing:1.219430px;}
.ws15{word-spacing:1.256728px;}
.wsec{word-spacing:1.362893px;}
.ws5{word-spacing:1.453092px;}
.ws10a{word-spacing:1.506355px;}
.wsba{word-spacing:1.578086px;}
.wsd5{word-spacing:1.601032px;}
.wsd9{word-spacing:1.649818px;}
.ws51{word-spacing:1.865011px;}
.ws131{word-spacing:1.972608px;}
.ws3{word-spacing:2.173093px;}
.ws50{word-spacing:2.187802px;}
.ws106{word-spacing:2.223667px;}
.ws80{word-spacing:2.438861px;}
.ws100{word-spacing:2.495643px;}
.wsff{word-spacing:2.510592px;}
.wsb9{word-spacing:2.725786px;}
.ws6{word-spacing:2.827639px;}
.ws117{word-spacing:2.869248px;}
.ws65{word-spacing:2.940979px;}
.ws67{word-spacing:2.946732px;}
.ws9c{word-spacing:3.012710px;}
.ws58{word-spacing:3.084442px;}
.wsf1{word-spacing:3.156173px;}
.wsbc{word-spacing:3.227904px;}
.ws48{word-spacing:3.299613px;}
.ws116{word-spacing:3.335501px;}
.wse9{word-spacing:3.443098px;}
.ws104{word-spacing:3.532316px;}
.ws57{word-spacing:3.550694px;}
.wsfa{word-spacing:3.586335px;}
.wsa5{word-spacing:3.586560px;}
.wsb{word-spacing:3.613094px;}
.wse5{word-spacing:3.801754px;}
.ws8{word-spacing:3.809458px;}
.ws127{word-spacing:3.867660px;}
.ws125{word-spacing:3.868635px;}
.wsfd{word-spacing:3.870211px;}
.ws99{word-spacing:3.871344px;}
.ws115{word-spacing:3.873252px;}
.ws23{word-spacing:3.873485px;}
.ws11d{word-spacing:3.878709px;}
.ws101{word-spacing:3.887211px;}
.ws8c{word-spacing:3.888275px;}
.ws9e{word-spacing:3.891516px;}
.wsda{word-spacing:3.891972px;}
.ws6b{word-spacing:3.893136px;}
.ws68{word-spacing:3.894150px;}
.ws13b{word-spacing:3.894806px;}
.wsb3{word-spacing:3.895263px;}
.ws105{word-spacing:3.896269px;}
.ws94{word-spacing:3.896277px;}
.ws121{word-spacing:3.896327px;}
.ws12b{word-spacing:3.896851px;}
.ws120{word-spacing:3.897923px;}
.ws69{word-spacing:3.897972px;}
.wsf7{word-spacing:3.899036px;}
.ws124{word-spacing:3.900019px;}
.ws126{word-spacing:3.903840px;}
.ws102{word-spacing:3.909600px;}
.ws12d{word-spacing:3.933107px;}
.wsc9{word-spacing:3.933391px;}
.ws41{word-spacing:3.945216px;}
.wsf3{word-spacing:3.952760px;}
.wse3{word-spacing:4.016947px;}
.ws76{word-spacing:4.160410px;}
.ws4c{word-spacing:4.196247px;}
.ws12{word-spacing:4.202185px;}
.wse1{word-spacing:4.232141px;}
.wsd8{word-spacing:4.375603px;}
.wse4{word-spacing:4.411469px;}
.ws8d{word-spacing:4.483200px;}
.ws2{word-spacing:4.648169px;}
.ws98{word-spacing:4.662528px;}
.ws96{word-spacing:4.734259px;}
.ws6e{word-spacing:4.949453px;}
.wsbb{word-spacing:5.021184px;}
.wsf5{word-spacing:5.061923px;}
.ws49{word-spacing:5.092881px;}
.wsf6{word-spacing:5.092915px;}
.ws7{word-spacing:5.118550px;}
.ws95{word-spacing:5.343974px;}
.ws1{word-spacing:5.379825px;}
.ws118{word-spacing:5.387582px;}
.ws72{word-spacing:5.451571px;}
.wse0{word-spacing:5.523302px;}
.ws81{word-spacing:5.810227px;}
.ws85{word-spacing:5.942193px;}
.ws13a{word-spacing:6.006697px;}
.wsfc{word-spacing:6.025421px;}
.wsd4{word-spacing:6.384077px;}
.ws31{word-spacing:6.455775px;}
.wsa0{word-spacing:6.455808px;}
.ws19{word-spacing:6.493096px;}
.ws10f{word-spacing:6.527539px;}
.wse{word-spacing:6.689460px;}
.ws45{word-spacing:6.742733px;}
.wsf2{word-spacing:6.814464px;}
.ws13{word-spacing:6.820369px;}
.wsfb{word-spacing:6.922061px;}
.ws1c{word-spacing:6.951279px;}
.ws1b{word-spacing:7.016733px;}
.ws2e{word-spacing:7.101389px;}
.wsb5{word-spacing:7.173120px;}
.wsb7{word-spacing:7.244851px;}
.ws133{word-spacing:7.316582px;}
.ws1a{word-spacing:7.409461px;}
.ws10e{word-spacing:7.495910px;}
.ws35{word-spacing:7.531776px;}
.ws9f{word-spacing:7.603507px;}
.wsa8{word-spacing:7.675238px;}
.ws44{word-spacing:7.711104px;}
.ws9b{word-spacing:7.737840px;}
.wse7{word-spacing:7.746970px;}
.wsf4{word-spacing:7.854566px;}
.wsd{word-spacing:7.933098px;}
.wsb1{word-spacing:7.962163px;}
.ws43{word-spacing:8.249088px;}
.wsb6{word-spacing:8.284954px;}
.ws24{word-spacing:8.320819px;}
.ws132{word-spacing:8.428416px;}
.ws32{word-spacing:8.536013px;}
.ws34{word-spacing:8.643610px;}
.ws10d{word-spacing:8.679475px;}
.ws74{word-spacing:8.710320px;}
.ws10c{word-spacing:8.715846px;}
.wsa7{word-spacing:8.858803px;}
.wse6{word-spacing:8.930534px;}
.ws5f{word-spacing:8.966400px;}
.wsb0{word-spacing:9.145728px;}
.wsc1{word-spacing:9.168380px;}
.wsbf{word-spacing:9.177840px;}
.wsbd{word-spacing:9.179061px;}
.ws22{word-spacing:9.181594px;}
.ws18{word-spacing:9.242190px;}
.wsa6{word-spacing:9.253325px;}
.ws40{word-spacing:9.325056px;}
.wsed{word-spacing:9.396787px;}
.wsf0{word-spacing:9.412888px;}
.ws1e{word-spacing:9.468518px;}
.ws2f{word-spacing:9.540250px;}
.ws134{word-spacing:9.565060px;}
.ws140{word-spacing:9.611981px;}
.wsd0{word-spacing:9.671645px;}
.wsab{word-spacing:9.683712px;}
.ws56{word-spacing:9.827174px;}
.ws13e{word-spacing:9.898906px;}
.ws10b{word-spacing:10.006502px;}
.ws60{word-spacing:10.018072px;}
.ws61{word-spacing:10.042368px;}
.ws78{word-spacing:10.185830px;}
.ws13d{word-spacing:10.401024px;}
.ws28{word-spacing:10.472755px;}
.ws55{word-spacing:10.544486px;}
.ws3f{word-spacing:10.723814px;}
.ws11{word-spacing:10.747645px;}
.ws109{word-spacing:10.759680px;}
.ws4e{word-spacing:10.771563px;}
.ws21{word-spacing:10.831411px;}
.wscc{word-spacing:10.976241px;}
.ws141{word-spacing:11.010739px;}
.wsaa{word-spacing:11.082470px;}
.wscf{word-spacing:11.083158px;}
.ws42{word-spacing:11.155480px;}
.ws20{word-spacing:11.190067px;}
.wsce{word-spacing:11.261798px;}
.ws36{word-spacing:11.333530px;}
.ws37{word-spacing:11.405261px;}
.ws2d{word-spacing:11.476992px;}
.ws5d{word-spacing:11.548723px;}
.wsde{word-spacing:11.620454px;}
.wsb8{word-spacing:11.679903px;}
.ws90{word-spacing:11.692186px;}
.ws13c{word-spacing:12.014976px;}
.ws54{word-spacing:12.158438px;}
.ws108{word-spacing:12.373632px;}
.ws63{word-spacing:12.409498px;}
.ws62{word-spacing:12.430531px;}
.ws135{word-spacing:12.481229px;}
.ws4f{word-spacing:12.624607px;}
.ws5a{word-spacing:12.839885px;}
.ws59{word-spacing:12.911616px;}
.wsb4{word-spacing:12.915840px;}
.wscd{word-spacing:12.947482px;}
.ws12a{word-spacing:13.342003px;}
.ws130{word-spacing:13.377869px;}
.ws7a{word-spacing:13.413734px;}
.wsd2{word-spacing:13.485466px;}
.wsdf{word-spacing:13.557197px;}
.ws71{word-spacing:13.772390px;}
.ws1f{word-spacing:13.844122px;}
.ws3d{word-spacing:13.987584px;}
.ws5c{word-spacing:14.059315px;}
.ws5e{word-spacing:14.202778px;}
.ws137{word-spacing:14.346240px;}
.wsd7{word-spacing:14.489702px;}
.ws26{word-spacing:14.561434px;}
.ws25{word-spacing:14.591543px;}
.wsa9{word-spacing:14.920090px;}
.wsc{word-spacing:15.067649px;}
.ws33{word-spacing:15.350477px;}
.ws129{word-spacing:15.386342px;}
.ws11b{word-spacing:15.422208px;}
.ws79{word-spacing:15.458074px;}
.ws11c{word-spacing:15.493939px;}
.ws107{word-spacing:15.600632px;}
.wsa2{word-spacing:15.606632px;}
.wsc5{word-spacing:15.637402px;}
.ws88{word-spacing:15.780864px;}
.ws70{word-spacing:15.816730px;}
.wsdc{word-spacing:15.924326px;}
.wsdd{word-spacing:15.996058px;}
.ws3c{word-spacing:16.103654px;}
.ws136{word-spacing:16.906044px;}
.wsc3{word-spacing:17.502413px;}
.ws119{word-spacing:18.657415px;}
.wseb{word-spacing:20.016292px;}
.ws13f{word-spacing:20.243725px;}
.ws47{word-spacing:21.339889px;}
.ws4d{word-spacing:22.176748px;}
.ws114{word-spacing:22.861707px;}
.ws82{word-spacing:22.866292px;}
.wsc6{word-spacing:22.866923px;}
.wsc7{word-spacing:22.866943px;}
.ws91{word-spacing:22.872923px;}
.ws110{word-spacing:22.875658px;}
.ws87{word-spacing:22.884292px;}
.ws4a{word-spacing:22.953830px;}
.wse8{word-spacing:23.384371px;}
.ws97{word-spacing:24.210943px;}
.wsa1{word-spacing:26.349123px;}
.ws11e{word-spacing:26.352292px;}
.ws6a{word-spacing:26.352943px;}
.wsc8{word-spacing:26.358292px;}
.ws14{word-spacing:26.454923px;}
.wsb2{word-spacing:29.808923px;}
.wsbe{word-spacing:31.632943px;}
.wsc0{word-spacing:31.638292px;}
.wsef{word-spacing:31.888735px;}
.wsee{word-spacing:32.286292px;}
.ws112{word-spacing:33.090903px;}
.ws0{word-spacing:37.316475px;}
.ws8e{word-spacing:42.792923px;}
.ws128{word-spacing:47.813036px;}
.ws122{word-spacing:47.813455px;}
.ws11f{word-spacing:74.098330px;}
.ws1d{word-spacing:83.925075px;}
.wsf8{word-spacing:106.764718px;}
.ws12e{word-spacing:115.073036px;}
.ws8f{word-spacing:115.308943px;}
.ws12f{word-spacing:178.724640px;}
._0{margin-left:-9.670050px;}
._1e{margin-left:-8.091257px;}
._1a{margin-left:-6.742733px;}
._6{margin-left:-5.432732px;}
._23{margin-left:-4.262849px;}
._1{margin-left:-3.223350px;}
._5{margin-left:-1.832729px;}
._4{width:1.832729px;}
._2{width:3.099375px;}
._24{width:5.021184px;}
._25{width:8.219543px;}
._c{width:16.036377px;}
._2f{width:17.073068px;}
._13{width:18.077833px;}
._22{width:19.505093px;}
._21{width:21.329074px;}
._1c{width:22.714728px;}
._20{width:24.465153px;}
._d{width:26.050931px;}
._a{width:27.229114px;}
._7{width:28.341842px;}
._1f{width:29.437776px;}
._b{width:30.698207px;}
._11{width:32.045007px;}
._8{width:33.512755px;}
._28{width:34.566553px;}
._f{width:35.869121px;}
._17{width:37.249102px;}
._18{width:39.057901px;}
._e{width:40.385488px;}
._9{width:42.021853px;}
._27{width:43.038600px;}
._29{width:44.938057px;}
._1d{width:46.481818px;}
._14{width:47.812428px;}
._3{width:50.457825px;}
._16{width:51.646200px;}
._10{width:53.081088px;}
._1b{width:54.730906px;}
._12{width:63.306367px;}
._26{width:64.511513px;}
._2a{width:70.584547px;}
._19{width:71.726646px;}
._31{width:105.660058px;}
._32{width:108.529306px;}
._15{width:116.203950px;}
._2e{width:143.390669px;}
._2c{width:161.395200px;}
._2b{width:178.538957px;}
._30{width:215.623987px;}
._2d{width:293.524070px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y28{bottom:61.467000px;}
.y27{bottom:106.299000px;}
.ye6{bottom:114.430500px;}
.y109{bottom:125.950500px;}
.y26{bottom:127.968000px;}
.y4f{bottom:129.655500px;}
.y108{bottom:130.383000px;}
.ye5{bottom:136.099500px;}
.y144{bottom:138.979500px;}
.y4e{bottom:142.164000px;}
.y143{bottom:143.413500px;}
.y25{bottom:149.637000px;}
.y107{bottom:162.562500px;}
.y93{bottom:164.296500px;}
.y4d{bottom:165.520500px;}
.y106{bottom:166.996500px;}
.y24{bottom:171.306000px;}
.ye4{bottom:172.713000px;}
.y4c{bottom:178.030500px;}
.y163{bottom:182.649000px;}
.y128{bottom:182.887500px;}
.y142{bottom:183.015000px;}
.y70{bottom:184.662000px;}
.y92{bottom:185.965500px;}
.yb0{bottom:185.988000px;}
.y105{bottom:188.665500px;}
.y23{bottom:192.975000px;}
.y165{bottom:193.708500px;}
.y4b{bottom:201.385500px;}
.y162{bottom:204.318000px;}
.y141{bottom:204.684000px;}
.y6f{bottom:206.331000px;}
.y91{bottom:207.634500px;}
.yaf{bottom:207.657000px;}
.ye3{bottom:209.325000px;}
.y104{bottom:210.334500px;}
.y4a{bottom:213.895500px;}
.y22{bottom:214.642500px;}
.y161{bottom:225.987000px;}
.yae{bottom:229.324500px;}
.y127{bottom:234.253500px;}
.y21{bottom:236.311500px;}
.y49{bottom:237.252000px;}
.y140{bottom:237.933000px;}
.y6e{bottom:241.356000px;}
.y103{bottom:242.512500px;}
.y90{bottom:243.963000px;}
.ye2{bottom:245.937000px;}
.y102{bottom:246.946500px;}
.y126{bottom:255.921000px;}
.y20{bottom:257.980500px;}
.yad{bottom:262.575000px;}
.y6d{bottom:263.025000px;}
.y48{bottom:263.290500px;}
.y8f{bottom:265.632000px;}
.y101{bottom:268.615500px;}
.y160{bottom:272.749500px;}
.ye1{bottom:279.187500px;}
.y6c{bottom:284.694000px;}
.y47{bottom:284.958000px;}
.y13f{bottom:289.926000px;}
.y15f{bottom:294.417000px;}
.y1f{bottom:297.408000px;}
.y8e{bottom:301.962000px;}
.y125{bottom:302.058000px;}
.y100{bottom:305.227500px;}
.y13e{bottom:311.595000px;}
.yac{bottom:314.568000px;}
.y6b{bottom:317.944500px;}
.y46{bottom:323.182500px;}
.y8d{bottom:323.631000px;}
.y124{bottom:323.725500px;}
.ye0{bottom:331.180500px;}
.yab{bottom:336.237000px;}
.y15e{bottom:341.179500px;}
.y8c{bottom:345.298500px;}
.yff{bottom:351.990000px;}
.ydf{bottom:352.849500px;}
.y1e{bottom:356.421000px;}
.yaa{bottom:357.906000px;}
.y13d{bottom:358.357500px;}
.y45{bottom:362.610000px;}
.y15d{bottom:362.848500px;}
.y121{bottom:368.398500px;}
.y6a{bottom:369.117000px;}
.y123{bottom:370.329000px;}
.yfe{bottom:373.659000px;}
.y1d{bottom:376.744500px;}
.y8b{bottom:378.549000px;}
.ya9{bottom:379.573500px;}
.y122{bottom:384.396000px;}
.yde{bottom:389.461500px;}
.y69{bottom:390.786000px;}
.y13c{bottom:394.969500px;}
.y1c{bottom:397.068000px;}
.yfd{bottom:405.040500px;}
.yc7{bottom:405.327000px;}
.y15c{bottom:409.611000px;}
.y167{bottom:410.133000px;}
.y68{bottom:412.455000px;}
.ya8{bottom:412.824000px;}
.y120{bottom:414.066000px;}
.y1b{bottom:417.391500px;}
.y44{bottom:422.139000px;}
.ydd{bottom:426.075000px;}
.yc6{bottom:426.996000px;}
.y8a{bottom:430.395000px;}
.y13b{bottom:431.583000px;}
.y166{bottom:431.802000px;}
.y67{bottom:434.122500px;}
.y1a{bottom:437.716500px;}
.y15b{bottom:442.861500px;}
.y43{bottom:443.808000px;}
.ydc{bottom:447.744000px;}
.yfc{bottom:448.378500px;}
.yc5{bottom:448.665000px;}
.y89{bottom:452.064000px;}
.y11f{bottom:454.059000px;}
.y19{bottom:458.040000px;}
.y11e{bottom:458.491500px;}
.ya7{bottom:464.817000px;}
.y42{bottom:465.477000px;}
.y13a{bottom:468.195000px;}
.y66{bottom:469.149000px;}
.yfb{bottom:470.047500px;}
.yc4{bottom:470.334000px;}
.y11c{bottom:470.793000px;}
.y88{bottom:473.733000px;}
.y18{bottom:478.363500px;}
.y11d{bottom:478.491000px;}
.ydb{bottom:484.356000px;}
.ya6{bottom:486.486000px;}
.y41{bottom:487.146000px;}
.y65{bottom:490.818000px;}
.yc3{bottom:492.003000px;}
.y15a{bottom:494.853000px;}
.y17{bottom:498.687000px;}
.yfa{bottom:503.298000px;}
.y139{bottom:504.808500px;}
.ya5{bottom:508.155000px;}
.y87{bottom:510.061500px;}
.y64{bottom:512.485500px;}
.yc2{bottom:513.670500px;}
.y11b{bottom:516.270000px;}
.y159{bottom:516.522000px;}
.y16{bottom:519.010500px;}
.y40{bottom:525.369000px;}
.ya4{bottom:529.822500px;}
.yda{bottom:531.118500px;}
.y86{bottom:531.730500px;}
.y63{bottom:534.154500px;}
.yc1{bottom:535.339500px;}
.y15{bottom:539.335500px;}
.y138{bottom:541.420500px;}
.y3f{bottom:547.038000px;}
.ya3{bottom:551.491500px;}
.yd9{bottom:552.787500px;}
.y158{bottom:553.135500px;}
.y85{bottom:553.399500px;}
.yf9{bottom:555.289500px;}
.yc0{bottom:557.008500px;}
.y14{bottom:559.659000px;}
.y11a{bottom:562.405500px;}
.y62{bottom:569.181000px;}
.yd8{bottom:574.455000px;}
.yf8{bottom:576.958500px;}
.y137{bottom:578.034000px;}
.y13{bottom:579.982500px;}
.y3e{bottom:582.933000px;}
.ya2{bottom:584.742000px;}
.y157{bottom:586.384500px;}
.y84{bottom:586.650000px;}
.y61{bottom:590.848500px;}
.ybf{bottom:596.436000px;}
.y119{bottom:597.805500px;}
.y12{bottom:600.306000px;}
.y3d{bottom:604.602000px;}
.yd7{bottom:611.068500px;}
.y60{bottom:612.517500px;}
.yf7{bottom:613.572000px;}
.y118{bottom:619.474500px;}
.y11{bottom:620.629500px;}
.y136{bottom:624.795000px;}
.yd6{bottom:632.737500px;}
.yf6{bottom:635.241000px;}
.ya1{bottom:636.735000px;}
.y156{bottom:638.377500px;}
.y83{bottom:638.496000px;}
.y3c{bottom:640.497000px;}
.y10{bottom:640.954500px;}
.y5f{bottom:645.768000px;}
.y135{bottom:646.464000px;}
.y117{bottom:652.449000px;}
.ybe{bottom:656.335500px;}
.ya0{bottom:658.404000px;}
.y155{bottom:660.046500px;}
.y82{bottom:660.165000px;}
.yf{bottom:661.278000px;}
.y3b{bottom:662.164500px;}
.yd5{bottom:669.349500px;}
.yf5{bottom:671.853000px;}
.y116{bottom:674.118000px;}
.ybd{bottom:678.004500px;}
.y134{bottom:679.714500px;}
.ye{bottom:681.601500px;}
.y3a{bottom:683.833500px;}
.y164{bottom:690.028500px;}
.yd4{bottom:691.018500px;}
.yf4{bottom:693.522000px;}
.y9f{bottom:695.016000px;}
.y81{bottom:696.493500px;}
.y154{bottom:696.658500px;}
.y5e{bottom:696.940500px;}
.ybc{bottom:699.673500px;}
.yd{bottom:701.925000px;}
.y115{bottom:707.368500px;}
.y9e{bottom:716.685000px;}
.y80{bottom:718.162500px;}
.y153{bottom:718.327500px;}
.y5d{bottom:718.609500px;}
.y39{bottom:719.728500px;}
.yc{bottom:722.248500px;}
.yf3{bottom:726.772500px;}
.yd3{bottom:727.632000px;}
.ybb{bottom:736.285500px;}
.y5c{bottom:740.278500px;}
.y38{bottom:741.397500px;}
.yb{bottom:742.573500px;}
.y9d{bottom:753.297000px;}
.y152{bottom:754.941000px;}
.y7f{bottom:757.377000px;}
.yba{bottom:757.954500px;}
.y114{bottom:758.734500px;}
.y7e{bottom:761.809500px;}
.y5b{bottom:761.947500px;}
.ya{bottom:762.897000px;}
.y37{bottom:763.066500px;}
.y133{bottom:763.623000px;}
.y7c{bottom:774.111000px;}
.yd2{bottom:774.393000px;}
.y9c{bottom:774.966000px;}
.y151{bottom:776.610000px;}
.yf2{bottom:778.764000px;}
.yb9{bottom:779.623500px;}
.y7d{bottom:781.809000px;}
.y9{bottom:783.220500px;}
.y5a{bottom:783.615000px;}
.y132{bottom:785.290500px;}
.y113{bottom:794.134500px;}
.yf1{bottom:800.433000px;}
.y36{bottom:801.289500px;}
.y8{bottom:803.544000px;}
.y131{bottom:806.959500px;}
.yd1{bottom:811.006500px;}
.y9b{bottom:811.579500px;}
.y150{bottom:813.222000px;}
.yb8{bottom:816.237000px;}
.y35{bottom:822.958500px;}
.y59{bottom:823.042500px;}
.y7b{bottom:823.837500px;}
.y7{bottom:823.867500px;}
.y112{bottom:829.534500px;}
.yd0{bottom:832.675500px;}
.y14f{bottom:834.891000px;}
.yf0{bottom:837.046500px;}
.y130{bottom:837.613500px;}
.yb7{bottom:837.906000px;}
.y34{bottom:844.627500px;}
.y9a{bottom:844.830000px;}
.y6{bottom:847.341000px;}
.yef{bottom:858.715500px;}
.y12f{bottom:859.282500px;}
.yb6{bottom:859.573500px;}
.y7a{bottom:860.166000px;}
.y111{bottom:862.509000px;}
.ycf{bottom:869.287500px;}
.y14e{bottom:871.503000px;}
.y12e{bottom:880.951500px;}
.y79{bottom:881.835000px;}
.y58{bottom:882.123000px;}
.y33{bottom:884.055000px;}
.y14d{bottom:893.172000px;}
.yee{bottom:895.327500px;}
.yb5{bottom:896.187000px;}
.y99{bottom:896.821500px;}
.y57{bottom:903.792000px;}
.y5{bottom:906.561000px;}
.y110{bottom:908.644500px;}
.y12d{bottom:911.604000px;}
.y78{bottom:915.085500px;}
.yce{bottom:916.050000px;}
.yed{bottom:916.996500px;}
.y98{bottom:918.490500px;}
.y56{bottom:925.461000px;}
.y14c{bottom:926.422500px;}
.y10f{bottom:930.312000px;}
.y12c{bottom:933.273000px;}
.yb4{bottom:935.614500px;}
.y32{bottom:943.584000px;}
.y4{bottom:948.628500px;}
.ycd{bottom:949.300500px;}
.yec{bottom:953.608500px;}
.y12b{bottom:954.942000px;}
.y97{bottom:955.104000px;}
.y10e{bottom:958.240500px;}
.y55{bottom:960.208500px;}
.y31{bottom:965.253000px;}
.y77{bottom:966.931500px;}
.y3{bottom:975.528000px;}
.y96{bottom:976.771500px;}
.y10d{bottom:979.909500px;}
.y54{bottom:981.876000px;}
.y14b{bottom:985.237500px;}
.y12a{bottom:985.596000px;}
.y30{bottom:986.922000px;}
.y76{bottom:988.600500px;}
.yb3{bottom:995.514000px;}
.yeb{bottom:1000.371000px;}
.ycc{bottom:1001.292000px;}
.y53{bottom:1003.545000px;}
.y14a{bottom:1006.905000px;}
.y2f{bottom:1008.591000px;}
.y95{bottom:1010.022000px;}
.y75{bottom:1010.269500px;}
.y129{bottom:1013.695500px;}
.y10c{bottom:1015.309500px;}
.yea{bottom:1022.040000px;}
.ycb{bottom:1022.961000px;}
.y149{bottom:1028.574000px;}
.y2{bottom:1028.764500px;}
.y2e{bottom:1030.258500px;}
.yb2{bottom:1032.127500px;}
.y52{bottom:1038.571500px;}
.y74{bottom:1040.398500px;}
.ye9{bottom:1043.709000px;}
.yca{bottom:1044.630000px;}
.y148{bottom:1050.243000px;}
.y10b{bottom:1050.709500px;}
.y2d{bottom:1051.927500px;}
.y73{bottom:1052.700000px;}
.y51{bottom:1060.239000px;}
.y94{bottom:1062.015000px;}
.y1{bottom:1066.125000px;}
.yc9{bottom:1066.299000px;}
.yb1{bottom:1068.739500px;}
.y147{bottom:1071.912000px;}
.y10a{bottom:1072.378500px;}
.y2c{bottom:1073.596500px;}
.ye8{bottom:1080.321000px;}
.y50{bottom:1081.908000px;}
.y72{bottom:1083.684000px;}
.y2b{bottom:1095.265500px;}
.ye7{bottom:1101.990000px;}
.y146{bottom:1102.566000px;}
.y71{bottom:1105.353000px;}
.yc8{bottom:1105.726500px;}
.y2a{bottom:1116.934500px;}
.y145{bottom:1129.138500px;}
.y29{bottom:1138.602000px;}
.hd{height:28.202047px;}
.h14{height:33.187496px;}
.h1c{height:33.665702px;}
.hf{height:41.484266px;}
.he{height:44.831700px;}
.h5{height:45.687311px;}
.h6{height:49.090950px;}
.h1f{height:49.781453px;}
.ha{height:53.798400px;}
.h15{height:53.911496px;}
.h7{height:56.941496px;}
.h9{height:58.689470px;}
.h17{height:58.695470px;}
.hb{height:59.215496px;}
.hc{height:59.221496px;}
.h4{height:59.737577px;}
.h18{height:62.809496px;}
.h3{height:64.557900px;}
.h1a{height:71.528400px;}
.h19{height:71.534400px;}
.h13{height:76.951496px;}
.h8{height:77.469300px;}
.h2{height:86.038650px;}
.h1d{height:96.289248px;}
.h1b{height:102.326400px;}
.h10{height:104.011248px;}
.h12{height:107.743496px;}
.h16{height:108.504979px;}
.h1e{height:112.002979px;}
.h11{height:153.217248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299000px;}
.x2a{left:110.653500px;}
.x28{left:113.410500px;}
.x2{left:127.290000px;}
.xa{left:132.637500px;}
.x24{left:148.212000px;}
.x8{left:150.196500px;}
.x19{left:166.390500px;}
.x7{left:174.742500px;}
.x1{left:188.415000px;}
.xe{left:205.087500px;}
.x16{left:226.150500px;}
.x25{left:243.195000px;}
.x29{left:258.433500px;}
.x1a{left:284.727000px;}
.xf{left:289.948500px;}
.x26{left:302.191500px;}
.x14{left:304.587000px;}
.x11{left:319.495500px;}
.x12{left:330.814500px;}
.x21{left:331.828500px;}
.x17{left:339.337500px;}
.xc{left:342.501000px;}
.x4{left:352.332000px;}
.x5{left:356.320500px;}
.x1b{left:359.625000px;}
.x3{left:364.047000px;}
.x10{left:371.679000px;}
.x18{left:373.044000px;}
.x1c{left:389.172000px;}
.x1d{left:400.491000px;}
.x6{left:410.455500px;}
.x13{left:432.979500px;}
.x23{left:434.545500px;}
.x22{left:438.285000px;}
.xb{left:442.066500px;}
.x1e{left:467.538000px;}
.xd{left:483.646500px;}
.x27{left:552.552000px;}
.x1f{left:567.750000px;}
.x20{left:603.309000px;}
.x15{left:628.240500px;}
@media print{
.v7{vertical-align:-64.709333pt;}
.v6{vertical-align:-57.562667pt;}
.v4{vertical-align:-19.285333pt;}
.v13{vertical-align:-16.432000pt;}
.v14{vertical-align:-11.472000pt;}
.v2{vertical-align:-8.725333pt;}
.v12{vertical-align:-6.864000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:15.765333pt;}
.ve{vertical-align:18.421333pt;}
.v1{vertical-align:21.114667pt;}
.v3{vertical-align:23.136000pt;}
.v10{vertical-align:26.330667pt;}
.v11{vertical-align:33.568000pt;}
.vd{vertical-align:38.901333pt;}
.v9{vertical-align:43.136000pt;}
.vf{vertical-align:53.984000pt;}
.v15{vertical-align:57.093333pt;}
.vb{vertical-align:66.272000pt;}
.v5{vertical-align:86.784000pt;}
.v8{vertical-align:89.904000pt;}
.va{vertical-align:133.642667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000109pt;}
.ls4b{letter-spacing:0.000125pt;}
.ls11{letter-spacing:0.000367pt;}
.ls1a{letter-spacing:0.000391pt;}
.ls1e{letter-spacing:0.000990pt;}
.ls10{letter-spacing:0.001022pt;}
.ls5d{letter-spacing:0.001145pt;}
.ls32{letter-spacing:0.001309pt;}
.ls1f{letter-spacing:0.002243pt;}
.ls29{letter-spacing:0.002362pt;}
.ls6a{letter-spacing:0.002452pt;}
.ls4a{letter-spacing:0.002591pt;}
.ls37{letter-spacing:0.002717pt;}
.ls6{letter-spacing:0.003370pt;}
.ls3b{letter-spacing:0.003903pt;}
.ls27{letter-spacing:0.005183pt;}
.ls4c{letter-spacing:0.005459pt;}
.ls20{letter-spacing:0.005724pt;}
.ls6f{letter-spacing:0.005937pt;}
.ls55{letter-spacing:0.006479pt;}
.ls76{letter-spacing:0.526877pt;}
.ls73{letter-spacing:2.287633pt;}
.ls40{letter-spacing:2.292966pt;}
.ls13{letter-spacing:2.652911pt;}
.lsf{letter-spacing:2.653258pt;}
.ls51{letter-spacing:2.656853pt;}
.ls4f{letter-spacing:2.657546pt;}
.ls3{letter-spacing:2.658591pt;}
.ls61{letter-spacing:2.659149pt;}
.ls75{letter-spacing:2.659608pt;}
.ls14{letter-spacing:2.806152pt;}
.ls9{letter-spacing:3.071003pt;}
.lsa{letter-spacing:3.531549pt;}
.ls74{letter-spacing:5.659964pt;}
.ls18{letter-spacing:5.903177pt;}
.ls23{letter-spacing:6.377479pt;}
.ls39{letter-spacing:8.671524pt;}
.ls2b{letter-spacing:8.672391pt;}
.ls2d{letter-spacing:8.677724pt;}
.ls79{letter-spacing:11.710275pt;}
.ls5c{letter-spacing:13.288483pt;}
.ls6b{letter-spacing:13.871850pt;}
.ls17{letter-spacing:13.877183pt;}
.ls7d{letter-spacing:14.163915pt;}
.ls5f{letter-spacing:14.164509pt;}
.ls2c{letter-spacing:14.166642pt;}
.ls70{letter-spacing:14.169248pt;}
.ls6d{letter-spacing:14.169479pt;}
.ls78{letter-spacing:14.169842pt;}
.ls6c{letter-spacing:14.171976pt;}
.ls3d{letter-spacing:14.534323pt;}
.ls2{letter-spacing:16.426144pt;}
.ls3e{letter-spacing:17.706238pt;}
.ls21{letter-spacing:17.707976pt;}
.ls5b{letter-spacing:17.711572pt;}
.ls2f{letter-spacing:17.713309pt;}
.ls5{letter-spacing:18.071925pt;}
.ls4{letter-spacing:18.489670pt;}
.ls1{letter-spacing:18.510037pt;}
.ls8{letter-spacing:18.587964pt;}
.ls30{letter-spacing:18.907976pt;}
.ls38{letter-spacing:19.885258pt;}
.ls24{letter-spacing:20.078087pt;}
.ls5a{letter-spacing:20.365258pt;}
.ls5e{letter-spacing:20.365816pt;}
.ls77{letter-spacing:20.366275pt;}
.ls46{letter-spacing:20.369546pt;}
.ls33{letter-spacing:20.542933pt;}
.ls28{letter-spacing:20.806323pt;}
.ls43{letter-spacing:20.809600pt;}
.ls7{letter-spacing:20.895477pt;}
.ls25{letter-spacing:21.257479pt;}
.ls7c{letter-spacing:21.332210pt;}
.ls67{letter-spacing:21.547976pt;}
.ls31{letter-spacing:21.569546pt;}
.ls0{letter-spacing:21.732336pt;}
.ls44{letter-spacing:22.035333pt;}
.ls63{letter-spacing:22.221258pt;}
.ls64{letter-spacing:22.225546pt;}
.ls6e{letter-spacing:22.562591pt;}
.ls62{letter-spacing:22.579149pt;}
.ls81{letter-spacing:22.681600pt;}
.ls41{letter-spacing:22.893258pt;}
.ls60{letter-spacing:23.191925pt;}
.ls54{letter-spacing:23.463925pt;}
.ls7b{letter-spacing:23.464941pt;}
.ls66{letter-spacing:23.469816pt;}
.ls7a{letter-spacing:23.470275pt;}
.ls69{letter-spacing:24.084905pt;}
.ls2e{letter-spacing:24.278323pt;}
.ls1b{letter-spacing:24.342216pt;}
.ls3f{letter-spacing:24.367614pt;}
.ls1c{letter-spacing:24.397258pt;}
.ls53{letter-spacing:25.470000pt;}
.ls42{letter-spacing:25.697309pt;}
.ls57{letter-spacing:26.071925pt;}
.ls58{letter-spacing:26.077258pt;}
.ls56{letter-spacing:26.079572pt;}
.ls68{letter-spacing:26.166323pt;}
.ls52{letter-spacing:26.470631pt;}
.ls34{letter-spacing:26.834591pt;}
.ls49{letter-spacing:27.222323pt;}
.ls1d{letter-spacing:27.873297pt;}
.ls47{letter-spacing:28.187549pt;}
.lsb{letter-spacing:28.440050pt;}
.ls48{letter-spacing:28.604213pt;}
.ls45{letter-spacing:28.949183pt;}
.ls26{letter-spacing:29.407850pt;}
.ls50{letter-spacing:29.419657pt;}
.ls4e{letter-spacing:29.430642pt;}
.ls59{letter-spacing:29.476857pt;}
.ls16{letter-spacing:29.787549pt;}
.ls12{letter-spacing:30.816882pt;}
.lse{letter-spacing:31.215625pt;}
.ls80{letter-spacing:31.589183pt;}
.ls15{letter-spacing:32.336882pt;}
.ls3a{letter-spacing:33.345309pt;}
.ls3c{letter-spacing:33.348905pt;}
.lsc{letter-spacing:33.846216pt;}
.ls4d{letter-spacing:34.194591pt;}
.ls19{letter-spacing:34.687850pt;}
.ls35{letter-spacing:35.182000pt;}
.ls65{letter-spacing:40.099149pt;}
.ls2a{letter-spacing:41.796905pt;}
.ls36{letter-spacing:44.479850pt;}
.ls7f{letter-spacing:66.413258pt;}
.ls7e{letter-spacing:96.509258pt;}
.ls72{letter-spacing:412.151925pt;}
.ls71{letter-spacing:427.757258pt;}
.ws66{word-spacing:-63.761067pt;}
.ws83{word-spacing:-50.479636pt;}
.wsa{word-spacing:-45.163900pt;}
.ws52{word-spacing:-40.590295pt;}
.ws17{word-spacing:-37.899668pt;}
.wsd6{word-spacing:-28.692333pt;}
.ws11a{word-spacing:-23.910333pt;}
.ws75{word-spacing:-19.925333pt;}
.ws103{word-spacing:-19.357860pt;}
.ws3e{word-spacing:-17.343010pt;}
.ws9{word-spacing:-16.162923pt;}
.ws9d{word-spacing:-13.773471pt;}
.ws77{word-spacing:-6.949956pt;}
.ws92{word-spacing:-3.985067pt;}
.ws123{word-spacing:-3.506859pt;}
.ws93{word-spacing:-3.443098pt;}
.ws138{word-spacing:-3.411217pt;}
.ws16{word-spacing:-3.246548pt;}
.ws7c{word-spacing:-3.219934pt;}
.ws12c{word-spacing:-3.174146pt;}
.wsd3{word-spacing:-3.124292pt;}
.ws6f{word-spacing:-3.060531pt;}
.ws139{word-spacing:-2.933009pt;}
.wsae{word-spacing:-2.869248pt;}
.ws7d{word-spacing:-2.805487pt;}
.ws29{word-spacing:-2.677965pt;}
.wsf9{word-spacing:-2.305524pt;}
.ws2a{word-spacing:-2.295398pt;}
.wsea{word-spacing:-2.167876pt;}
.ws89{word-spacing:-2.072235pt;}
.ws6c{word-spacing:-2.008474pt;}
.ws38{word-spacing:-1.880951pt;}
.ws8b{word-spacing:-1.849071pt;}
.ws8a{word-spacing:-1.830566pt;}
.ws6d{word-spacing:-1.721549pt;}
.ws39{word-spacing:-1.657788pt;}
.ws64{word-spacing:-1.562146pt;}
.wsaf{word-spacing:-1.530266pt;}
.ws30{word-spacing:-1.402743pt;}
.wscb{word-spacing:-1.338982pt;}
.ws3a{word-spacing:-1.275221pt;}
.ws3b{word-spacing:-1.211460pt;}
.ws46{word-spacing:-1.158318pt;}
.ws9a{word-spacing:-1.147699pt;}
.wse2{word-spacing:-1.083938pt;}
.ws4{word-spacing:-0.802910pt;}
.wsf{word-spacing:-0.749688pt;}
.ws10{word-spacing:-0.744728pt;}
.wsc4{word-spacing:-0.573850pt;}
.wsca{word-spacing:-0.382566pt;}
.ws73{word-spacing:-0.255044pt;}
.wsac{word-spacing:-0.127522pt;}
.wsad{word-spacing:-0.113847pt;}
.wsdb{word-spacing:-0.063761pt;}
.ws4b{word-spacing:-0.053134pt;}
.ws53{word-spacing:-0.042507pt;}
.ws84{word-spacing:-0.031881pt;}
.ws27{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.031881pt;}
.ws2c{word-spacing:0.063761pt;}
.wsfe{word-spacing:0.095642pt;}
.wsc2{word-spacing:0.127522pt;}
.wsa4{word-spacing:0.255044pt;}
.wsa3{word-spacing:0.286925pt;}
.ws5b{word-spacing:0.318805pt;}
.ws111{word-spacing:0.352104pt;}
.ws86{word-spacing:0.382566pt;}
.ws7e{word-spacing:0.510089pt;}
.ws113{word-spacing:0.551919pt;}
.ws7f{word-spacing:0.573850pt;}
.ws7b{word-spacing:0.637611pt;}
.ws2b{word-spacing:1.083938pt;}
.ws15{word-spacing:1.117092pt;}
.wsec{word-spacing:1.211460pt;}
.ws5{word-spacing:1.291637pt;}
.ws10a{word-spacing:1.338982pt;}
.wsba{word-spacing:1.402743pt;}
.wsd5{word-spacing:1.423140pt;}
.wsd9{word-spacing:1.466505pt;}
.ws51{word-spacing:1.657788pt;}
.ws131{word-spacing:1.753429pt;}
.ws3{word-spacing:1.931638pt;}
.ws50{word-spacing:1.944713pt;}
.ws106{word-spacing:1.976593pt;}
.ws80{word-spacing:2.167876pt;}
.ws100{word-spacing:2.218349pt;}
.wsff{word-spacing:2.231637pt;}
.wsb9{word-spacing:2.422921pt;}
.ws6{word-spacing:2.513457pt;}
.ws117{word-spacing:2.550443pt;}
.ws65{word-spacing:2.614204pt;}
.ws67{word-spacing:2.619317pt;}
.ws9c{word-spacing:2.677965pt;}
.ws58{word-spacing:2.741726pt;}
.wsf1{word-spacing:2.805487pt;}
.wsbc{word-spacing:2.869248pt;}
.ws48{word-spacing:2.932989pt;}
.ws116{word-spacing:2.964890pt;}
.wse9{word-spacing:3.060531pt;}
.ws104{word-spacing:3.139837pt;}
.ws57{word-spacing:3.156173pt;}
.wsfa{word-spacing:3.187854pt;}
.wsa5{word-spacing:3.188053pt;}
.wsb{word-spacing:3.211639pt;}
.wse5{word-spacing:3.379337pt;}
.ws8{word-spacing:3.386185pt;}
.ws127{word-spacing:3.437920pt;}
.ws125{word-spacing:3.438787pt;}
.wsfd{word-spacing:3.440188pt;}
.ws99{word-spacing:3.441195pt;}
.ws115{word-spacing:3.442891pt;}
.ws23{word-spacing:3.443098pt;}
.ws11d{word-spacing:3.447741pt;}
.ws101{word-spacing:3.455299pt;}
.ws8c{word-spacing:3.456244pt;}
.ws9e{word-spacing:3.459125pt;}
.wsda{word-spacing:3.459531pt;}
.ws6b{word-spacing:3.460565pt;}
.ws68{word-spacing:3.461466pt;}
.ws13b{word-spacing:3.462050pt;}
.wsb3{word-spacing:3.462456pt;}
.ws105{word-spacing:3.463351pt;}
.ws94{word-spacing:3.463357pt;}
.ws121{word-spacing:3.463402pt;}
.ws12b{word-spacing:3.463868pt;}
.ws120{word-spacing:3.464820pt;}
.ws69{word-spacing:3.464864pt;}
.wsf7{word-spacing:3.465810pt;}
.ws124{word-spacing:3.466684pt;}
.ws126{word-spacing:3.470080pt;}
.ws102{word-spacing:3.475200pt;}
.ws12d{word-spacing:3.496095pt;}
.wsc9{word-spacing:3.496347pt;}
.ws41{word-spacing:3.506859pt;}
.wsf3{word-spacing:3.513564pt;}
.wse3{word-spacing:3.570620pt;}
.ws76{word-spacing:3.698142pt;}
.ws4c{word-spacing:3.729997pt;}
.ws12{word-spacing:3.735276pt;}
.wse1{word-spacing:3.761903pt;}
.wsd8{word-spacing:3.889425pt;}
.wse4{word-spacing:3.921306pt;}
.ws8d{word-spacing:3.985067pt;}
.ws2{word-spacing:4.131706pt;}
.ws98{word-spacing:4.144469pt;}
.ws96{word-spacing:4.208230pt;}
.ws6e{word-spacing:4.399514pt;}
.wsbb{word-spacing:4.463275pt;}
.wsf5{word-spacing:4.499487pt;}
.ws49{word-spacing:4.527005pt;}
.wsf6{word-spacing:4.527036pt;}
.ws7{word-spacing:4.549822pt;}
.ws95{word-spacing:4.750199pt;}
.ws1{word-spacing:4.782067pt;}
.ws118{word-spacing:4.788962pt;}
.ws72{word-spacing:4.845841pt;}
.wse0{word-spacing:4.909602pt;}
.ws81{word-spacing:5.164646pt;}
.ws85{word-spacing:5.281949pt;}
.ws13a{word-spacing:5.339286pt;}
.wsfc{word-spacing:5.355930pt;}
.wsd4{word-spacing:5.674735pt;}
.ws31{word-spacing:5.738467pt;}
.wsa0{word-spacing:5.738496pt;}
.ws19{word-spacing:5.771641pt;}
.ws10f{word-spacing:5.802257pt;}
.wse{word-spacing:5.946187pt;}
.ws45{word-spacing:5.993540pt;}
.wsf2{word-spacing:6.057301pt;}
.ws13{word-spacing:6.062551pt;}
.wsfb{word-spacing:6.152943pt;}
.ws1c{word-spacing:6.178914pt;}
.ws1b{word-spacing:6.237096pt;}
.ws2e{word-spacing:6.312346pt;}
.wsb5{word-spacing:6.376107pt;}
.wsb7{word-spacing:6.439868pt;}
.ws133{word-spacing:6.503629pt;}
.ws1a{word-spacing:6.586187pt;}
.ws10e{word-spacing:6.663031pt;}
.ws35{word-spacing:6.694912pt;}
.ws9f{word-spacing:6.758673pt;}
.wsa8{word-spacing:6.822434pt;}
.ws44{word-spacing:6.854315pt;}
.ws9b{word-spacing:6.878080pt;}
.wse7{word-spacing:6.886195pt;}
.wsf4{word-spacing:6.981837pt;}
.wsd{word-spacing:7.051642pt;}
.wsb1{word-spacing:7.077478pt;}
.ws43{word-spacing:7.332523pt;}
.wsb6{word-spacing:7.364403pt;}
.ws24{word-spacing:7.396284pt;}
.ws132{word-spacing:7.491925pt;}
.ws32{word-spacing:7.587567pt;}
.ws34{word-spacing:7.683209pt;}
.ws10d{word-spacing:7.715089pt;}
.ws74{word-spacing:7.742507pt;}
.ws10c{word-spacing:7.747418pt;}
.wsa7{word-spacing:7.874492pt;}
.wse6{word-spacing:7.938253pt;}
.ws5f{word-spacing:7.970133pt;}
.wsb0{word-spacing:8.129536pt;}
.wsc1{word-spacing:8.149671pt;}
.wsbf{word-spacing:8.158080pt;}
.wsbd{word-spacing:8.159165pt;}
.ws22{word-spacing:8.161417pt;}
.ws18{word-spacing:8.215280pt;}
.wsa6{word-spacing:8.225178pt;}
.ws40{word-spacing:8.288939pt;}
.wsed{word-spacing:8.352700pt;}
.wsf0{word-spacing:8.367012pt;}
.ws1e{word-spacing:8.416461pt;}
.ws2f{word-spacing:8.480222pt;}
.ws134{word-spacing:8.502275pt;}
.ws140{word-spacing:8.543983pt;}
.wsd0{word-spacing:8.597018pt;}
.wsab{word-spacing:8.607744pt;}
.ws56{word-spacing:8.735266pt;}
.ws13e{word-spacing:8.799027pt;}
.ws10b{word-spacing:8.894669pt;}
.ws60{word-spacing:8.904953pt;}
.ws61{word-spacing:8.926549pt;}
.ws78{word-spacing:9.054071pt;}
.ws13d{word-spacing:9.245355pt;}
.ws28{word-spacing:9.309116pt;}
.ws55{word-spacing:9.372877pt;}
.ws3f{word-spacing:9.532279pt;}
.ws11{word-spacing:9.553463pt;}
.ws109{word-spacing:9.564160pt;}
.ws4e{word-spacing:9.574723pt;}
.ws21{word-spacing:9.627921pt;}
.wscc{word-spacing:9.756658pt;}
.ws141{word-spacing:9.787324pt;}
.wsaa{word-spacing:9.851085pt;}
.wscf{word-spacing:9.851696pt;}
.ws42{word-spacing:9.915983pt;}
.ws20{word-spacing:9.946726pt;}
.wsce{word-spacing:10.010487pt;}
.ws36{word-spacing:10.074249pt;}
.ws37{word-spacing:10.138010pt;}
.ws2d{word-spacing:10.201771pt;}
.ws5d{word-spacing:10.265532pt;}
.wsde{word-spacing:10.329293pt;}
.wsb8{word-spacing:10.382136pt;}
.ws90{word-spacing:10.393054pt;}
.ws13c{word-spacing:10.679979pt;}
.ws54{word-spacing:10.807501pt;}
.ws108{word-spacing:10.998784pt;}
.ws63{word-spacing:11.030665pt;}
.ws62{word-spacing:11.049361pt;}
.ws135{word-spacing:11.094426pt;}
.ws4f{word-spacing:11.221873pt;}
.ws5a{word-spacing:11.413231pt;}
.ws59{word-spacing:11.476992pt;}
.wsb4{word-spacing:11.480747pt;}
.wscd{word-spacing:11.508873pt;}
.ws12a{word-spacing:11.859558pt;}
.ws130{word-spacing:11.891439pt;}
.ws7a{word-spacing:11.923319pt;}
.wsd2{word-spacing:11.987081pt;}
.wsdf{word-spacing:12.050842pt;}
.ws71{word-spacing:12.242125pt;}
.ws1f{word-spacing:12.305886pt;}
.ws3d{word-spacing:12.433408pt;}
.ws5c{word-spacing:12.497169pt;}
.ws5e{word-spacing:12.624691pt;}
.ws137{word-spacing:12.752213pt;}
.wsd7{word-spacing:12.879735pt;}
.ws26{word-spacing:12.943497pt;}
.ws25{word-spacing:12.970260pt;}
.wsa9{word-spacing:13.262302pt;}
.wsc{word-spacing:13.393466pt;}
.ws33{word-spacing:13.644868pt;}
.ws129{word-spacing:13.676749pt;}
.ws11b{word-spacing:13.708629pt;}
.ws79{word-spacing:13.740510pt;}
.ws11c{word-spacing:13.772390pt;}
.ws107{word-spacing:13.867228pt;}
.wsa2{word-spacing:13.872561pt;}
.wsc5{word-spacing:13.899913pt;}
.ws88{word-spacing:14.027435pt;}
.ws70{word-spacing:14.059315pt;}
.wsdc{word-spacing:14.154957pt;}
.wsdd{word-spacing:14.218718pt;}
.ws3c{word-spacing:14.314359pt;}
.ws136{word-spacing:15.027594pt;}
.wsc3{word-spacing:15.557700pt;}
.ws119{word-spacing:16.584369pt;}
.wseb{word-spacing:17.792259pt;}
.ws13f{word-spacing:17.994423pt;}
.ws47{word-spacing:18.968790pt;}
.ws4d{word-spacing:19.712665pt;}
.ws114{word-spacing:20.321517pt;}
.ws82{word-spacing:20.325593pt;}
.wsc6{word-spacing:20.326153pt;}
.wsc7{word-spacing:20.326171pt;}
.ws91{word-spacing:20.331487pt;}
.ws110{word-spacing:20.333919pt;}
.ws87{word-spacing:20.341593pt;}
.ws4a{word-spacing:20.403405pt;}
.wse8{word-spacing:20.786108pt;}
.ws97{word-spacing:21.520838pt;}
.wsa1{word-spacing:23.421442pt;}
.ws11e{word-spacing:23.424259pt;}
.ws6a{word-spacing:23.424838pt;}
.wsc8{word-spacing:23.429593pt;}
.ws14{word-spacing:23.515487pt;}
.wsb2{word-spacing:26.496820pt;}
.wsbe{word-spacing:28.118171pt;}
.wsc0{word-spacing:28.122926pt;}
.wsef{word-spacing:28.345543pt;}
.wsee{word-spacing:28.698926pt;}
.ws112{word-spacing:29.414136pt;}
.ws0{word-spacing:33.170200pt;}
.ws8e{word-spacing:38.038153pt;}
.ws128{word-spacing:42.500477pt;}
.ws122{word-spacing:42.500849pt;}
.ws11f{word-spacing:65.865182pt;}
.ws1d{word-spacing:74.600067pt;}
.wsf8{word-spacing:94.901972pt;}
.ws12e{word-spacing:102.287143pt;}
.ws8f{word-spacing:102.496838pt;}
.ws12f{word-spacing:158.866347pt;}
._0{margin-left:-8.595600pt;}
._1e{margin-left:-7.192228pt;}
._1a{margin-left:-5.993540pt;}
._6{margin-left:-4.829095pt;}
._23{margin-left:-3.789199pt;}
._1{margin-left:-2.865200pt;}
._5{margin-left:-1.629092pt;}
._4{width:1.629092pt;}
._2{width:2.755000pt;}
._24{width:4.463275pt;}
._25{width:7.306260pt;}
._c{width:14.254557pt;}
._2f{width:15.176061pt;}
._13{width:16.069185pt;}
._22{width:17.337860pt;}
._21{width:18.959177pt;}
._1c{width:20.190869pt;}
._20{width:21.746803pt;}
._d{width:23.156383pt;}
._a{width:24.203657pt;}
._7{width:25.192748pt;}
._1f{width:26.166912pt;}
._b{width:27.287295pt;}
._11{width:28.484451pt;}
._8{width:29.789116pt;}
._28{width:30.725825pt;}
._f{width:31.883663pt;}
._17{width:33.110313pt;}
._18{width:34.718134pt;}
._e{width:35.898212pt;}
._9{width:37.352758pt;}
._27{width:38.256533pt;}
._29{width:39.944940pt;}
._1d{width:41.317171pt;}
._14{width:42.499936pt;}
._3{width:44.851400pt;}
._16{width:45.907733pt;}
._10{width:47.183189pt;}
._1b{width:48.649694pt;}
._12{width:56.272326pt;}
._26{width:57.343567pt;}
._2a{width:62.741819pt;}
._19{width:63.757019pt;}
._31{width:93.920051pt;}
._32{width:96.470494pt;}
._15{width:103.292400pt;}
._2e{width:127.458372pt;}
._2c{width:143.462400pt;}
._2b{width:158.701295pt;}
._30{width:191.665766pt;}
._2d{width:260.910285pt;}
.fs8{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:54.637333pt;}
.y27{bottom:94.488000pt;}
.ye6{bottom:101.716000pt;}
.y109{bottom:111.956000pt;}
.y26{bottom:113.749333pt;}
.y4f{bottom:115.249333pt;}
.y108{bottom:115.896000pt;}
.ye5{bottom:120.977333pt;}
.y144{bottom:123.537333pt;}
.y4e{bottom:126.368000pt;}
.y143{bottom:127.478667pt;}
.y25{bottom:133.010667pt;}
.y107{bottom:144.500000pt;}
.y93{bottom:146.041333pt;}
.y4d{bottom:147.129333pt;}
.y106{bottom:148.441333pt;}
.y24{bottom:152.272000pt;}
.ye4{bottom:153.522667pt;}
.y4c{bottom:158.249333pt;}
.y163{bottom:162.354667pt;}
.y128{bottom:162.566667pt;}
.y142{bottom:162.680000pt;}
.y70{bottom:164.144000pt;}
.y92{bottom:165.302667pt;}
.yb0{bottom:165.322667pt;}
.y105{bottom:167.702667pt;}
.y23{bottom:171.533333pt;}
.y165{bottom:172.185333pt;}
.y4b{bottom:179.009333pt;}
.y162{bottom:181.616000pt;}
.y141{bottom:181.941333pt;}
.y6f{bottom:183.405333pt;}
.y91{bottom:184.564000pt;}
.yaf{bottom:184.584000pt;}
.ye3{bottom:186.066667pt;}
.y104{bottom:186.964000pt;}
.y4a{bottom:190.129333pt;}
.y22{bottom:190.793333pt;}
.y161{bottom:200.877333pt;}
.yae{bottom:203.844000pt;}
.y127{bottom:208.225333pt;}
.y21{bottom:210.054667pt;}
.y49{bottom:210.890667pt;}
.y140{bottom:211.496000pt;}
.y6e{bottom:214.538667pt;}
.y103{bottom:215.566667pt;}
.y90{bottom:216.856000pt;}
.ye2{bottom:218.610667pt;}
.y102{bottom:219.508000pt;}
.y126{bottom:227.485333pt;}
.y20{bottom:229.316000pt;}
.yad{bottom:233.400000pt;}
.y6d{bottom:233.800000pt;}
.y48{bottom:234.036000pt;}
.y8f{bottom:236.117333pt;}
.y101{bottom:238.769333pt;}
.y160{bottom:242.444000pt;}
.ye1{bottom:248.166667pt;}
.y6c{bottom:253.061333pt;}
.y47{bottom:253.296000pt;}
.y13f{bottom:257.712000pt;}
.y15f{bottom:261.704000pt;}
.y1f{bottom:264.362667pt;}
.y8e{bottom:268.410667pt;}
.y125{bottom:268.496000pt;}
.y100{bottom:271.313333pt;}
.y13e{bottom:276.973333pt;}
.yac{bottom:279.616000pt;}
.y6b{bottom:282.617333pt;}
.y46{bottom:287.273333pt;}
.y8d{bottom:287.672000pt;}
.y124{bottom:287.756000pt;}
.ye0{bottom:294.382667pt;}
.yab{bottom:298.877333pt;}
.y15e{bottom:303.270667pt;}
.y8c{bottom:306.932000pt;}
.yff{bottom:312.880000pt;}
.ydf{bottom:313.644000pt;}
.y1e{bottom:316.818667pt;}
.yaa{bottom:318.138667pt;}
.y13d{bottom:318.540000pt;}
.y45{bottom:322.320000pt;}
.y15d{bottom:322.532000pt;}
.y121{bottom:327.465333pt;}
.y6a{bottom:328.104000pt;}
.y123{bottom:329.181333pt;}
.yfe{bottom:332.141333pt;}
.y1d{bottom:334.884000pt;}
.y8b{bottom:336.488000pt;}
.ya9{bottom:337.398667pt;}
.y122{bottom:341.685333pt;}
.yde{bottom:346.188000pt;}
.y69{bottom:347.365333pt;}
.y13c{bottom:351.084000pt;}
.y1c{bottom:352.949333pt;}
.yfd{bottom:360.036000pt;}
.yc7{bottom:360.290667pt;}
.y15c{bottom:364.098667pt;}
.y167{bottom:364.562667pt;}
.y68{bottom:366.626667pt;}
.ya8{bottom:366.954667pt;}
.y120{bottom:368.058667pt;}
.y1b{bottom:371.014667pt;}
.y44{bottom:375.234667pt;}
.ydd{bottom:378.733333pt;}
.yc6{bottom:379.552000pt;}
.y8a{bottom:382.573333pt;}
.y13b{bottom:383.629333pt;}
.y166{bottom:383.824000pt;}
.y67{bottom:385.886667pt;}
.y1a{bottom:389.081333pt;}
.y15b{bottom:393.654667pt;}
.y43{bottom:394.496000pt;}
.ydc{bottom:397.994667pt;}
.yfc{bottom:398.558667pt;}
.yc5{bottom:398.813333pt;}
.y89{bottom:401.834667pt;}
.y11f{bottom:403.608000pt;}
.y19{bottom:407.146667pt;}
.y11e{bottom:407.548000pt;}
.ya7{bottom:413.170667pt;}
.y42{bottom:413.757333pt;}
.y13a{bottom:416.173333pt;}
.y66{bottom:417.021333pt;}
.yfb{bottom:417.820000pt;}
.yc4{bottom:418.074667pt;}
.y11c{bottom:418.482667pt;}
.y88{bottom:421.096000pt;}
.y18{bottom:425.212000pt;}
.y11d{bottom:425.325333pt;}
.ydb{bottom:430.538667pt;}
.ya6{bottom:432.432000pt;}
.y41{bottom:433.018667pt;}
.y65{bottom:436.282667pt;}
.yc3{bottom:437.336000pt;}
.y15a{bottom:439.869333pt;}
.y17{bottom:443.277333pt;}
.yfa{bottom:447.376000pt;}
.y139{bottom:448.718667pt;}
.ya5{bottom:451.693333pt;}
.y87{bottom:453.388000pt;}
.y64{bottom:455.542667pt;}
.yc2{bottom:456.596000pt;}
.y11b{bottom:458.906667pt;}
.y159{bottom:459.130667pt;}
.y16{bottom:461.342667pt;}
.y40{bottom:466.994667pt;}
.ya4{bottom:470.953333pt;}
.yda{bottom:472.105333pt;}
.y86{bottom:472.649333pt;}
.y63{bottom:474.804000pt;}
.yc1{bottom:475.857333pt;}
.y15{bottom:479.409333pt;}
.y138{bottom:481.262667pt;}
.y3f{bottom:486.256000pt;}
.ya3{bottom:490.214667pt;}
.yd9{bottom:491.366667pt;}
.y158{bottom:491.676000pt;}
.y85{bottom:491.910667pt;}
.yf9{bottom:493.590667pt;}
.yc0{bottom:495.118667pt;}
.y14{bottom:497.474667pt;}
.y11a{bottom:499.916000pt;}
.y62{bottom:505.938667pt;}
.yd8{bottom:510.626667pt;}
.yf8{bottom:512.852000pt;}
.y137{bottom:513.808000pt;}
.y13{bottom:515.540000pt;}
.y3e{bottom:518.162667pt;}
.ya2{bottom:519.770667pt;}
.y157{bottom:521.230667pt;}
.y84{bottom:521.466667pt;}
.y61{bottom:525.198667pt;}
.ybf{bottom:530.165333pt;}
.y119{bottom:531.382667pt;}
.y12{bottom:533.605333pt;}
.y3d{bottom:537.424000pt;}
.yd7{bottom:543.172000pt;}
.y60{bottom:544.460000pt;}
.yf7{bottom:545.397333pt;}
.y118{bottom:550.644000pt;}
.y11{bottom:551.670667pt;}
.y136{bottom:555.373333pt;}
.yd6{bottom:562.433333pt;}
.yf6{bottom:564.658667pt;}
.ya1{bottom:565.986667pt;}
.y156{bottom:567.446667pt;}
.y83{bottom:567.552000pt;}
.y3c{bottom:569.330667pt;}
.y10{bottom:569.737333pt;}
.y5f{bottom:574.016000pt;}
.y135{bottom:574.634667pt;}
.y117{bottom:579.954667pt;}
.ybe{bottom:583.409333pt;}
.ya0{bottom:585.248000pt;}
.y155{bottom:586.708000pt;}
.y82{bottom:586.813333pt;}
.yf{bottom:587.802667pt;}
.y3b{bottom:588.590667pt;}
.yd5{bottom:594.977333pt;}
.yf5{bottom:597.202667pt;}
.y116{bottom:599.216000pt;}
.ybd{bottom:602.670667pt;}
.y134{bottom:604.190667pt;}
.ye{bottom:605.868000pt;}
.y3a{bottom:607.852000pt;}
.y164{bottom:613.358667pt;}
.yd4{bottom:614.238667pt;}
.yf4{bottom:616.464000pt;}
.y9f{bottom:617.792000pt;}
.y81{bottom:619.105333pt;}
.y154{bottom:619.252000pt;}
.y5e{bottom:619.502667pt;}
.ybc{bottom:621.932000pt;}
.yd{bottom:623.933333pt;}
.y115{bottom:628.772000pt;}
.y9e{bottom:637.053333pt;}
.y80{bottom:638.366667pt;}
.y153{bottom:638.513333pt;}
.y5d{bottom:638.764000pt;}
.y39{bottom:639.758667pt;}
.yc{bottom:641.998667pt;}
.yf3{bottom:646.020000pt;}
.yd3{bottom:646.784000pt;}
.ybb{bottom:654.476000pt;}
.y5c{bottom:658.025333pt;}
.y38{bottom:659.020000pt;}
.yb{bottom:660.065333pt;}
.y9d{bottom:669.597333pt;}
.y152{bottom:671.058667pt;}
.y7f{bottom:673.224000pt;}
.yba{bottom:673.737333pt;}
.y114{bottom:674.430667pt;}
.y7e{bottom:677.164000pt;}
.y5b{bottom:677.286667pt;}
.ya{bottom:678.130667pt;}
.y37{bottom:678.281333pt;}
.y133{bottom:678.776000pt;}
.y7c{bottom:688.098667pt;}
.yd2{bottom:688.349333pt;}
.y9c{bottom:688.858667pt;}
.y151{bottom:690.320000pt;}
.yf2{bottom:692.234667pt;}
.yb9{bottom:692.998667pt;}
.y7d{bottom:694.941333pt;}
.y9{bottom:696.196000pt;}
.y5a{bottom:696.546667pt;}
.y132{bottom:698.036000pt;}
.y113{bottom:705.897333pt;}
.yf1{bottom:711.496000pt;}
.y36{bottom:712.257333pt;}
.y8{bottom:714.261333pt;}
.y131{bottom:717.297333pt;}
.yd1{bottom:720.894667pt;}
.y9b{bottom:721.404000pt;}
.y150{bottom:722.864000pt;}
.yb8{bottom:725.544000pt;}
.y35{bottom:731.518667pt;}
.y59{bottom:731.593333pt;}
.y7b{bottom:732.300000pt;}
.y7{bottom:732.326667pt;}
.y112{bottom:737.364000pt;}
.yd0{bottom:740.156000pt;}
.y14f{bottom:742.125333pt;}
.yf0{bottom:744.041333pt;}
.y130{bottom:744.545333pt;}
.yb7{bottom:744.805333pt;}
.y34{bottom:750.780000pt;}
.y9a{bottom:750.960000pt;}
.y6{bottom:753.192000pt;}
.yef{bottom:763.302667pt;}
.y12f{bottom:763.806667pt;}
.yb6{bottom:764.065333pt;}
.y7a{bottom:764.592000pt;}
.y111{bottom:766.674667pt;}
.ycf{bottom:772.700000pt;}
.y14e{bottom:774.669333pt;}
.y12e{bottom:783.068000pt;}
.y79{bottom:783.853333pt;}
.y58{bottom:784.109333pt;}
.y33{bottom:785.826667pt;}
.y14d{bottom:793.930667pt;}
.yee{bottom:795.846667pt;}
.yb5{bottom:796.610667pt;}
.y99{bottom:797.174667pt;}
.y57{bottom:803.370667pt;}
.y5{bottom:805.832000pt;}
.y110{bottom:807.684000pt;}
.y12d{bottom:810.314667pt;}
.y78{bottom:813.409333pt;}
.yce{bottom:814.266667pt;}
.yed{bottom:815.108000pt;}
.y98{bottom:816.436000pt;}
.y56{bottom:822.632000pt;}
.y14c{bottom:823.486667pt;}
.y10f{bottom:826.944000pt;}
.y12c{bottom:829.576000pt;}
.yb4{bottom:831.657333pt;}
.y32{bottom:838.741333pt;}
.y4{bottom:843.225333pt;}
.ycd{bottom:843.822667pt;}
.yec{bottom:847.652000pt;}
.y12b{bottom:848.837333pt;}
.y97{bottom:848.981333pt;}
.y10e{bottom:851.769333pt;}
.y55{bottom:853.518667pt;}
.y31{bottom:858.002667pt;}
.y77{bottom:859.494667pt;}
.y3{bottom:867.136000pt;}
.y96{bottom:868.241333pt;}
.y10d{bottom:871.030667pt;}
.y54{bottom:872.778667pt;}
.y14b{bottom:875.766667pt;}
.y12a{bottom:876.085333pt;}
.y30{bottom:877.264000pt;}
.y76{bottom:878.756000pt;}
.yb3{bottom:884.901333pt;}
.yeb{bottom:889.218667pt;}
.ycc{bottom:890.037333pt;}
.y53{bottom:892.040000pt;}
.y14a{bottom:895.026667pt;}
.y2f{bottom:896.525333pt;}
.y95{bottom:897.797333pt;}
.y75{bottom:898.017333pt;}
.y129{bottom:901.062667pt;}
.y10c{bottom:902.497333pt;}
.yea{bottom:908.480000pt;}
.ycb{bottom:909.298667pt;}
.y149{bottom:914.288000pt;}
.y2{bottom:914.457333pt;}
.y2e{bottom:915.785333pt;}
.yb2{bottom:917.446667pt;}
.y52{bottom:923.174667pt;}
.y74{bottom:924.798667pt;}
.ye9{bottom:927.741333pt;}
.yca{bottom:928.560000pt;}
.y148{bottom:933.549333pt;}
.y10b{bottom:933.964000pt;}
.y2d{bottom:935.046667pt;}
.y73{bottom:935.733333pt;}
.y51{bottom:942.434667pt;}
.y94{bottom:944.013333pt;}
.y1{bottom:947.666667pt;}
.yc9{bottom:947.821333pt;}
.yb1{bottom:949.990667pt;}
.y147{bottom:952.810667pt;}
.y10a{bottom:953.225333pt;}
.y2c{bottom:954.308000pt;}
.ye8{bottom:960.285333pt;}
.y50{bottom:961.696000pt;}
.y72{bottom:963.274667pt;}
.y2b{bottom:973.569333pt;}
.ye7{bottom:979.546667pt;}
.y146{bottom:980.058667pt;}
.y71{bottom:982.536000pt;}
.yc8{bottom:982.868000pt;}
.y2a{bottom:992.830667pt;}
.y145{bottom:1003.678667pt;}
.y29{bottom:1012.090667pt;}
.hd{height:25.068486pt;}
.h14{height:29.499997pt;}
.h1c{height:29.925069pt;}
.hf{height:36.874903pt;}
.he{height:39.850400pt;}
.h5{height:40.610943pt;}
.h6{height:43.636400pt;}
.h1f{height:44.250180pt;}
.ha{height:47.820800pt;}
.h15{height:47.921330pt;}
.h7{height:50.614663pt;}
.h9{height:52.168418pt;}
.h17{height:52.173751pt;}
.hb{height:52.635997pt;}
.hc{height:52.641330pt;}
.h4{height:53.100068pt;}
.h18{height:55.830663pt;}
.h3{height:57.384800pt;}
.h1a{height:63.580800pt;}
.h19{height:63.586133pt;}
.h13{height:68.401330pt;}
.h8{height:68.861600pt;}
.h2{height:76.478800pt;}
.h1d{height:85.590443pt;}
.h1b{height:90.956800pt;}
.h10{height:92.454443pt;}
.h12{height:95.771997pt;}
.h16{height:96.448870pt;}
.h1e{height:99.558204pt;}
.h11{height:136.193109pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488000pt;}
.x2a{left:98.358667pt;}
.x28{left:100.809333pt;}
.x2{left:113.146667pt;}
.xa{left:117.900000pt;}
.x24{left:131.744000pt;}
.x8{left:133.508000pt;}
.x19{left:147.902667pt;}
.x7{left:155.326667pt;}
.x1{left:167.480000pt;}
.xe{left:182.300000pt;}
.x16{left:201.022667pt;}
.x25{left:216.173333pt;}
.x29{left:229.718667pt;}
.x1a{left:253.090667pt;}
.xf{left:257.732000pt;}
.x26{left:268.614667pt;}
.x14{left:270.744000pt;}
.x11{left:283.996000pt;}
.x12{left:294.057333pt;}
.x21{left:294.958667pt;}
.x17{left:301.633333pt;}
.xc{left:304.445333pt;}
.x4{left:313.184000pt;}
.x5{left:316.729333pt;}
.x1b{left:319.666667pt;}
.x3{left:323.597333pt;}
.x10{left:330.381333pt;}
.x18{left:331.594667pt;}
.x1c{left:345.930667pt;}
.x1d{left:355.992000pt;}
.x6{left:364.849333pt;}
.x13{left:384.870667pt;}
.x23{left:386.262667pt;}
.x22{left:389.586667pt;}
.xb{left:392.948000pt;}
.x1e{left:415.589333pt;}
.xd{left:429.908000pt;}
.x27{left:491.157333pt;}
.x1f{left:504.666667pt;}
.x20{left:536.274667pt;}
.x15{left:558.436000pt;}
}




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