
    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_4e4700143e2e7f3eb9723f04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_e6bfe0ad5511c7a08499b585.woff2')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_e14286009e145cc46a0b20b5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_40bed41777dcdbbb8a951e4a.woff2')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_dac1c0223a4cfea087b99371.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.780000;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_7b89e9b2cbc28372ec9fc649.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fd07039b9b60062c477d7d98.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce9f7bad696fde360552d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.046000;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_fdb308bd9d17f87cc89a8d77.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3c04f77c90dbc75aea3a3f36.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_67f889d187f769207c02120f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffb4b96eedb954046e944733.woff2')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_747a7c9f6a5558cab079e4d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.665000;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_32dcd638657bf1fd959472ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.451000;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_bcd25cf7f22ebb064ad86397.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8f4617779a56cf6ccb5b34e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;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_6ebdc8e86b25f421563321ac.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690000;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);}
.v1c{vertical-align:-101.142000px;}
.v2{vertical-align:-26.028000px;}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.978000px;}
.vd{vertical-align:11.952000px;}
.vc{vertical-align:13.620000px;}
.v7{vertical-align:17.736000px;}
.vf{vertical-align:20.724000px;}
.v3{vertical-align:26.034000px;}
.v11{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:38.448000px;}
.v8{vertical-align:43.764000px;}
.v12{vertical-align:47.346000px;}
.v4{vertical-align:49.206000px;}
.v17{vertical-align:56.178000px;}
.v10{vertical-align:58.104000px;}
.vb{vertical-align:66.150000px;}
.v13{vertical-align:74.556000px;}
.va{vertical-align:79.620000px;}
.v16{vertical-align:86.970000px;}
.v1d{vertical-align:96.552000px;}
.v15{vertical-align:97.734000px;}
.v1a{vertical-align:101.142000px;}
.v18{vertical-align:104.700000px;}
.ve{vertical-align:116.310000px;}
.v19{vertical-align:141.492000px;}
.v14{vertical-align:150.348000px;}
.v1b{vertical-align:168.078000px;}
.ls1{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000273px;}
.ls25{letter-spacing:0.000440px;}
.lse{letter-spacing:0.000472px;}
.ls32{letter-spacing:0.000499px;}
.ls16{letter-spacing:0.000760px;}
.ls1f{letter-spacing:0.000993px;}
.ls6{letter-spacing:0.001114px;}
.ls6d{letter-spacing:0.001139px;}
.ls3b{letter-spacing:0.001165px;}
.ls8a{letter-spacing:0.001200px;}
.ls74{letter-spacing:0.001227px;}
.ls17{letter-spacing:0.001288px;}
.ls10{letter-spacing:0.001473px;}
.ls3e{letter-spacing:0.001609px;}
.ls1c{letter-spacing:0.001809px;}
.ls2f{letter-spacing:0.002044px;}
.ls2b{letter-spacing:0.002127px;}
.ls11{letter-spacing:0.002759px;}
.ls2{letter-spacing:0.003056px;}
.ls39{letter-spacing:0.003543px;}
.ls77{letter-spacing:0.003848px;}
.ls81{letter-spacing:0.004381px;}
.ls7b{letter-spacing:0.005727px;}
.ls35{letter-spacing:0.006440px;}
.ls52{letter-spacing:0.006760px;}
.ls5c{letter-spacing:0.007288px;}
.ls21{letter-spacing:0.457809px;}
.ls23{letter-spacing:0.586737px;}
.ls4{letter-spacing:0.592737px;}
.ls0{letter-spacing:2.984915px;}
.ls28{letter-spacing:2.986200px;}
.ls2e{letter-spacing:2.988532px;}
.ls31{letter-spacing:2.989793px;}
.ls9{letter-spacing:2.990915px;}
.ls24{letter-spacing:2.992200px;}
.ls4e{letter-spacing:4.394022px;}
.ls26{letter-spacing:4.400022px;}
.ls6e{letter-spacing:4.524445px;}
.ls18{letter-spacing:5.641227px;}
.ls8d{letter-spacing:6.565473px;}
.ls6c{letter-spacing:6.602915px;}
.ls59{letter-spacing:6.823473px;}
.ls5e{letter-spacing:6.827518px;}
.ls30{letter-spacing:7.058044px;}
.ls4d{letter-spacing:7.175518px;}
.ls7f{letter-spacing:7.658523px;}
.lsa6{letter-spacing:8.389473px;}
.ls19{letter-spacing:9.756440px;}
.ls27{letter-spacing:9.762440px;}
.ls5a{letter-spacing:9.818915px;}
.ls33{letter-spacing:10.164532px;}
.ls82{letter-spacing:11.953114px;}
.ls3f{letter-spacing:11.953609px;}
.ls4a{letter-spacing:11.956664px;}
.ls72{letter-spacing:11.959114px;}
.ls8c{letter-spacing:12.487473px;}
.ls41{letter-spacing:12.544737px;}
.ls7e{letter-spacing:12.801848px;}
.ls7d{letter-spacing:12.807848px;}
.ls5b{letter-spacing:13.997518px;}
.ls40{letter-spacing:15.218022px;}
.ls79{letter-spacing:15.519848px;}
.ls96{letter-spacing:15.751473px;}
.ls55{letter-spacing:15.934404px;}
.ls48{letter-spacing:15.935073px;}
.lsd{letter-spacing:15.935518px;}
.ls62{letter-spacing:15.936273px;}
.ls12{letter-spacing:15.936760px;}
.ls36{letter-spacing:15.937114px;}
.ls2a{letter-spacing:15.937473px;}
.ls42{letter-spacing:15.937609px;}
.lsa{letter-spacing:15.938759px;}
.ls2c{letter-spacing:15.940404px;}
.lsb{letter-spacing:15.941073px;}
.ls13{letter-spacing:15.941518px;}
.ls58{letter-spacing:15.942273px;}
.lsc{letter-spacing:15.943288px;}
.ls51{letter-spacing:15.943473px;}
.ls47{letter-spacing:16.528737px;}
.ls83{letter-spacing:17.407473px;}
.lsa7{letter-spacing:17.473473px;}
.lsa9{letter-spacing:17.533473px;}
.ls7{letter-spacing:18.121473px;}
.ls78{letter-spacing:18.201848px;}
.ls1d{letter-spacing:18.577114px;}
.ls1e{letter-spacing:18.583114px;}
.ls34{letter-spacing:18.926915px;}
.ls80{letter-spacing:18.930499px;}
.lsa4{letter-spacing:19.243473px;}
.ls8e{letter-spacing:19.651473px;}
.lsf{letter-spacing:19.919518px;}
.ls6f{letter-spacing:19.924454px;}
.ls43{letter-spacing:19.925518px;}
.ls6b{letter-spacing:20.249518px;}
.ls6a{letter-spacing:20.254454px;}
.ls37{letter-spacing:20.336022px;}
.ls29{letter-spacing:20.342022px;}
.ls20{letter-spacing:20.360915px;}
.ls9d{letter-spacing:20.893114px;}
.ls9e{letter-spacing:20.899114px;}
.ls8{letter-spacing:21.008915px;}
.ls84{letter-spacing:21.247473px;}
.ls15{letter-spacing:21.583227px;}
.ls45{letter-spacing:22.112915px;}
.ls22{letter-spacing:22.910915px;}
.ls85{letter-spacing:22.916915px;}
.ls66{letter-spacing:22.918200px;}
.ls60{letter-spacing:23.105518px;}
.ls56{letter-spacing:23.111518px;}
.ls46{letter-spacing:23.113473px;}
.ls7a{letter-spacing:23.211848px;}
.ls1b{letter-spacing:23.492915px;}
.lsa2{letter-spacing:23.791473px;}
.ls69{letter-spacing:24.320022px;}
.ls86{letter-spacing:24.373809px;}
.ls95{letter-spacing:24.654760px;}
.ls68{letter-spacing:25.115518px;}
.ls14{letter-spacing:25.692440px;}
.ls3c{letter-spacing:26.396915px;}
.ls3d{letter-spacing:26.402915px;}
.ls8f{letter-spacing:26.418760px;}
.ls90{letter-spacing:26.419288px;}
.ls50{letter-spacing:27.095518px;}
.ls2d{letter-spacing:27.133473px;}
.ls91{letter-spacing:27.421114px;}
.ls92{letter-spacing:27.427114px;}
.lsa8{letter-spacing:28.652915px;}
.ls38{letter-spacing:28.747473px;}
.ls3{letter-spacing:29.186915px;}
.ls67{letter-spacing:29.516022px;}
.ls5{letter-spacing:29.606915px;}
.ls71{letter-spacing:31.034809px;}
.ls70{letter-spacing:31.035848px;}
.lsa5{letter-spacing:31.250915px;}
.ls94{letter-spacing:31.441227px;}
.ls7c{letter-spacing:31.456059px;}
.ls76{letter-spacing:32.746737px;}
.ls9f{letter-spacing:33.168440px;}
.ls87{letter-spacing:33.973150px;}
.ls1a{letter-spacing:34.190915px;}
.ls65{letter-spacing:34.523518px;}
.ls63{letter-spacing:35.120400px;}
.ls75{letter-spacing:35.144915px;}
.ls73{letter-spacing:35.150915px;}
.ls93{letter-spacing:36.378440px;}
.ls88{letter-spacing:36.539587px;}
.ls64{letter-spacing:37.516200px;}
.lsa3{letter-spacing:37.928915px;}
.ls49{letter-spacing:57.236915px;}
.ls99{letter-spacing:74.714915px;}
.ls98{letter-spacing:74.720915px;}
.ls8b{letter-spacing:125.293883px;}
.ls61{letter-spacing:143.300915px;}
.ls57{letter-spacing:147.746915px;}
.ls4f{letter-spacing:147.752915px;}
.ls5d{letter-spacing:150.122915px;}
.ls89{letter-spacing:165.788915px;}
.ls3a{letter-spacing:266.047114px;}
.ls9b{letter-spacing:305.551227px;}
.ls9c{letter-spacing:318.570440px;}
.ls97{letter-spacing:323.928760px;}
.ls9a{letter-spacing:328.591288px;}
.ls4b{letter-spacing:498.599518px;}
.ls44{letter-spacing:507.713518px;}
.ls4c{letter-spacing:511.051114px;}
.ls5f{letter-spacing:576.176915px;}
.ls53{letter-spacing:585.290915px;}
.lsa1{letter-spacing:625.285882px;}
.lsa0{letter-spacing:665.786915px;}
.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;}
}
.wsbb{word-spacing:-71.731200px;}
.ws77{word-spacing:-56.789591px;}
.ws62{word-spacing:-45.664082px;}
.wsbe{word-spacing:-33.756703px;}
.ws63{word-spacing:-33.684972px;}
.wsde{word-spacing:-22.416000px;}
.ws1d{word-spacing:-19.510886px;}
.ws12{word-spacing:-18.183288px;}
.ws7b{word-spacing:-13.743698px;}
.ws64{word-spacing:-13.619069px;}
.ws60{word-spacing:-11.291069px;}
.ws75{word-spacing:-7.561014px;}
.ws76{word-spacing:-7.555014px;}
.ws74{word-spacing:-7.531776px;}
.wse0{word-spacing:-7.025268px;}
.wsb5{word-spacing:-6.742733px;}
.wsb7{word-spacing:-6.671002px;}
.wsfa{word-spacing:-6.481200px;}
.wsdd{word-spacing:-6.475200px;}
.ws9c{word-spacing:-4.016947px;}
.wsf0{word-spacing:-3.755268px;}
.ws66{word-spacing:-3.731069px;}
.ws73{word-spacing:-3.586560px;}
.wsdb{word-spacing:-3.581268px;}
.ws7c{word-spacing:-3.578609px;}
.wsdc{word-spacing:-3.575268px;}
.ws7a{word-spacing:-3.573723px;}
.ws7d{word-spacing:-3.572609px;}
.wse5{word-spacing:-3.443098px;}
.ws147{word-spacing:-3.371366px;}
.ws50{word-spacing:-3.227904px;}
.ws3c{word-spacing:-3.084442px;}
.wsa0{word-spacing:-3.012710px;}
.wsbf{word-spacing:-2.725786px;}
.wsf9{word-spacing:-2.438861px;}
.wsa{word-spacing:-2.408729px;}
.ws68{word-spacing:-2.223667px;}
.ws67{word-spacing:-2.223041px;}
.ws6e{word-spacing:-2.151936px;}
.ws6f{word-spacing:-2.145295px;}
.wsf{word-spacing:-2.081456px;}
.ws91{word-spacing:-2.080205px;}
.ws105{word-spacing:-2.045268px;}
.ws3d{word-spacing:-2.008474px;}
.ws10d{word-spacing:-1.979268px;}
.ws20{word-spacing:-1.865011px;}
.ws41{word-spacing:-1.793280px;}
.ws8e{word-spacing:-1.721549px;}
.wsf1{word-spacing:-1.649818px;}
.ws10e{word-spacing:-1.578086px;}
.ws56{word-spacing:-1.506355px;}
.wsb2{word-spacing:-1.434624px;}
.ws37{word-spacing:-1.389673px;}
.ws9b{word-spacing:-1.291162px;}
.wsc6{word-spacing:-1.147699px;}
.wsc9{word-spacing:-0.860774px;}
.wse1{word-spacing:-0.717312px;}
.ws86{word-spacing:-0.645581px;}
.wsda{word-spacing:-0.573850px;}
.wsea{word-spacing:-0.502118px;}
.ws1c{word-spacing:-0.430387px;}
.ws5e{word-spacing:-0.286925px;}
.ws101{word-spacing:-0.281268px;}
.wsc5{word-spacing:-0.215194px;}
.wsc8{word-spacing:-0.074778px;}
.wsc3{word-spacing:-0.071731px;}
.ws28{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws8d{word-spacing:0.071731px;}
.wse4{word-spacing:0.138732px;}
.wsba{word-spacing:0.143462px;}
.wsd1{word-spacing:0.215194px;}
.ws3b{word-spacing:0.286925px;}
.ws1f{word-spacing:0.358656px;}
.wsbd{word-spacing:0.396117px;}
.ws61{word-spacing:0.430387px;}
.wscb{word-spacing:0.502118px;}
.ws4b{word-spacing:0.573850px;}
.ws33{word-spacing:0.717312px;}
.ws65{word-spacing:0.720931px;}
.ws7e{word-spacing:0.789043px;}
.ws38{word-spacing:0.860774px;}
.wsbc{word-spacing:0.996964px;}
.ws6b{word-spacing:1.004237px;}
.wsd{word-spacing:1.060365px;}
.wsca{word-spacing:1.075968px;}
.ws11{word-spacing:1.191274px;}
.ws145{word-spacing:1.219430px;}
.ws88{word-spacing:1.291162px;}
.ws90{word-spacing:1.362893px;}
.ws110{word-spacing:1.434624px;}
.ws52{word-spacing:1.506355px;}
.ws2a{word-spacing:1.649818px;}
.wsa5{word-spacing:1.721549px;}
.wsc{word-spacing:1.911274px;}
.wsd7{word-spacing:1.936742px;}
.ws29{word-spacing:2.008474px;}
.wsc2{word-spacing:2.080205px;}
.wse{word-spacing:2.173093px;}
.ws44{word-spacing:2.223667px;}
.ws57{word-spacing:2.295398px;}
.wsb4{word-spacing:2.367130px;}
.wsb8{word-spacing:2.382904px;}
.ws1b{word-spacing:2.438861px;}
.ws30{word-spacing:2.510592px;}
.ws4f{word-spacing:2.582323px;}
.ws10c{word-spacing:2.654054px;}
.wsb6{word-spacing:2.668986px;}
.wsb{word-spacing:2.696730px;}
.ws2d{word-spacing:2.725786px;}
.wsd8{word-spacing:2.797517px;}
.ws31{word-spacing:2.940979px;}
.wsd5{word-spacing:3.012710px;}
.wse3{word-spacing:3.084442px;}
.wsdf{word-spacing:3.227904px;}
.ws58{word-spacing:3.299635px;}
.ws92{word-spacing:3.371366px;}
.ws9d{word-spacing:3.658291px;}
.ws9e{word-spacing:3.730022px;}
.wsc7{word-spacing:3.801754px;}
.ws81{word-spacing:3.870657px;}
.ws15{word-spacing:3.873485px;}
.ws149{word-spacing:3.884074px;}
.ws83{word-spacing:3.897333px;}
.ws79{word-spacing:3.897972px;}
.ws3a{word-spacing:3.945216px;}
.ws51{word-spacing:4.016947px;}
.ws84{word-spacing:4.088678px;}
.ws124{word-spacing:4.160410px;}
.ws48{word-spacing:4.232141px;}
.ws6d{word-spacing:4.253541px;}
.ws100{word-spacing:4.272732px;}
.ws72{word-spacing:4.303872px;}
.ws6c{word-spacing:4.325036px;}
.ws71{word-spacing:4.375603px;}
.wsce{word-spacing:4.447334px;}
.wsb9{word-spacing:4.483200px;}
.wsd6{word-spacing:4.519066px;}
.ws8c{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws109{word-spacing:4.662528px;}
.ws24{word-spacing:4.734259px;}
.ws1a{word-spacing:4.805990px;}
.ws2e{word-spacing:4.877722px;}
.ws42{word-spacing:4.949453px;}
.ws5f{word-spacing:5.021184px;}
.wsef{word-spacing:5.139972px;}
.ws8a{word-spacing:5.164646px;}
.ws148{word-spacing:5.236378px;}
.ws39{word-spacing:5.308109px;}
.ws1{word-spacing:5.379825px;}
.ws2c{word-spacing:5.379840px;}
.ws138{word-spacing:5.442824px;}
.wsa8{word-spacing:5.451571px;}
.wsf3{word-spacing:5.523302px;}
.ws103{word-spacing:5.595034px;}
.wscf{word-spacing:5.666765px;}
.ws21{word-spacing:5.738496px;}
.ws93{word-spacing:5.810227px;}
.wscc{word-spacing:5.881958px;}
.ws5{word-spacing:5.904005px;}
.ws47{word-spacing:6.025421px;}
.ws10{word-spacing:6.034914px;}
.wsa7{word-spacing:6.097152px;}
.ws107{word-spacing:6.168883px;}
.ws85{word-spacing:6.240614px;}
.wsee{word-spacing:6.285972px;}
.wsed{word-spacing:6.312346px;}
.ws2f{word-spacing:6.384077px;}
.ws5b{word-spacing:6.455775px;}
.ws43{word-spacing:6.455808px;}
.ws130{word-spacing:6.527539px;}
.ws4d{word-spacing:6.599270px;}
.ws22{word-spacing:6.671002px;}
.wse2{word-spacing:6.742733px;}
.ws23{word-spacing:6.814464px;}
.wse6{word-spacing:6.886195px;}
.wse7{word-spacing:6.903972px;}
.ws82{word-spacing:6.957926px;}
.ws78{word-spacing:7.006548px;}
.wsaa{word-spacing:7.029658px;}
.ws36{word-spacing:7.101389px;}
.wse9{word-spacing:7.127768px;}
.ws123{word-spacing:7.136239px;}
.ws2b{word-spacing:7.173120px;}
.ws9a{word-spacing:7.244851px;}
.wsc4{word-spacing:7.316582px;}
.ws53{word-spacing:7.388314px;}
.ws46{word-spacing:7.603507px;}
.ws59{word-spacing:7.675238px;}
.wsf7{word-spacing:7.746970px;}
.ws25{word-spacing:7.818701px;}
.wsc1{word-spacing:7.962163px;}
.ws32{word-spacing:8.033894px;}
.ws131{word-spacing:8.129570px;}
.ws5a{word-spacing:8.177357px;}
.wsac{word-spacing:8.249088px;}
.wsf4{word-spacing:8.320819px;}
.ws9{word-spacing:8.325825px;}
.ws5c{word-spacing:8.392550px;}
.ws10a{word-spacing:8.536013px;}
.wseb{word-spacing:8.607744px;}
.ws27{word-spacing:8.679475px;}
.ws89{word-spacing:8.751206px;}
.ws55{word-spacing:8.894669px;}
.wsa4{word-spacing:8.966400px;}
.ws70{word-spacing:9.038131px;}
.wsf5{word-spacing:9.109862px;}
.ws4a{word-spacing:9.181594px;}
.ws17{word-spacing:9.253325px;}
.ws4c{word-spacing:9.325056px;}
.ws108{word-spacing:9.396787px;}
.ws5d{word-spacing:9.468518px;}
.ws6{word-spacing:9.504008px;}
.ws102{word-spacing:9.540250px;}
.ws104{word-spacing:9.611981px;}
.wse8{word-spacing:9.827174px;}
.ws4{word-spacing:9.896736px;}
.ws87{word-spacing:9.970637px;}
.ws8b{word-spacing:10.114099px;}
.wsb3{word-spacing:10.185830px;}
.ws26{word-spacing:10.257562px;}
.wsa3{word-spacing:10.329293px;}
.ws95{word-spacing:10.401024px;}
.ws69{word-spacing:10.521972px;}
.ws6a{word-spacing:10.544486px;}
.ws10f{word-spacing:10.616218px;}
.ws116{word-spacing:10.667084px;}
.wsa1{word-spacing:10.687949px;}
.wsd0{word-spacing:10.759680px;}
.wsa9{word-spacing:10.831411px;}
.ws11f{word-spacing:10.903142px;}
.ws19{word-spacing:11.046605px;}
.ws98{word-spacing:11.057864px;}
.ws99{word-spacing:11.118336px;}
.ws3f{word-spacing:11.261798px;}
.ws11d{word-spacing:11.333530px;}
.ws126{word-spacing:11.348909px;}
.ws125{word-spacing:11.405261px;}
.wsf6{word-spacing:11.548723px;}
.wsa2{word-spacing:11.620454px;}
.ws40{word-spacing:11.692186px;}
.ws12e{word-spacing:11.835648px;}
.ws3e{word-spacing:11.907379px;}
.wsab{word-spacing:12.050842px;}
.ws7{word-spacing:12.056737px;}
.ws45{word-spacing:12.122573px;}
.ws14{word-spacing:12.194304px;}
.wsa6{word-spacing:12.337766px;}
.ws80{word-spacing:12.481229px;}
.ws35{word-spacing:12.624691px;}
.ws7f{word-spacing:12.696422px;}
.ws97{word-spacing:12.881036px;}
.ws96{word-spacing:12.882632px;}
.ws8{word-spacing:12.907647px;}
.ws12d{word-spacing:12.911616px;}
.wsd9{word-spacing:12.983347px;}
.ws9f{word-spacing:13.055078px;}
.wsb1{word-spacing:13.126810px;}
.wscd{word-spacing:13.198541px;}
.wsaf{word-spacing:13.270272px;}
.wsae{word-spacing:13.285557px;}
.ws49{word-spacing:13.485466px;}
.wsb0{word-spacing:13.557197px;}
.ws4e{word-spacing:13.628928px;}
.ws18{word-spacing:13.915853px;}
.wsec{word-spacing:14.202778px;}
.wsc0{word-spacing:14.274509px;}
.wsd4{word-spacing:14.417971px;}
.wsd3{word-spacing:14.444959px;}
.wsad{word-spacing:14.842986px;}
.ws10b{word-spacing:14.848358px;}
.ws54{word-spacing:14.991821px;}
.ws8f{word-spacing:15.063552px;}
.wsff{word-spacing:15.422208px;}
.ws11c{word-spacing:15.637402px;}
.ws137{word-spacing:16.139520px;}
.ws34{word-spacing:16.354714px;}
.ws128{word-spacing:18.291456px;}
.ws106{word-spacing:18.434918px;}
.wsfe{word-spacing:18.578381px;}
.ws114{word-spacing:20.371661px;}
.ws129{word-spacing:21.232435px;}
.ws121{word-spacing:22.093210px;}
.ws146{word-spacing:22.595328px;}
.wsd2{word-spacing:22.863725px;}
.ws12c{word-spacing:23.312640px;}
.ws13e{word-spacing:24.101683px;}
.ws3{word-spacing:25.034189px;}
.ws13{word-spacing:25.437195px;}
.ws12b{word-spacing:25.608038px;}
.ws120{word-spacing:25.966694px;}
.ws139{word-spacing:26.468813px;}
.ws94{word-spacing:26.557016px;}
.ws122{word-spacing:26.612275px;}
.ws115{word-spacing:27.329587px;}
.ws113{word-spacing:28.764211px;}
.ws132{word-spacing:28.979405px;}
.ws13b{word-spacing:29.553254px;}
.ws111{word-spacing:30.127104px;}
.ws11e{word-spacing:30.198835px;}
.ws117{word-spacing:31.274803px;}
.ws112{word-spacing:31.418266px;}
.ws127{word-spacing:31.848653px;}
.ws12f{word-spacing:32.279040px;}
.ws13d{word-spacing:35.937331px;}
.ws0{word-spacing:37.316475px;}
.ws13a{word-spacing:37.802342px;}
.ws12a{word-spacing:40.958515px;}
.ws133{word-spacing:41.245440px;}
.ws13c{word-spacing:48.633754px;}
.ws118{word-spacing:51.861658px;}
.ws142{word-spacing:55.376486px;}
.wsfc{word-spacing:59.967283px;}
.ws13f{word-spacing:63.266918px;}
.ws134{word-spacing:63.553843px;}
.wsf8{word-spacing:69.328205px;}
.ws119{word-spacing:71.051499px;}
.ws141{word-spacing:75.604685px;}
.ws140{word-spacing:77.756621px;}
.ws136{word-spacing:78.473933px;}
.ws135{word-spacing:79.908557px;}
.ws16{word-spacing:83.925075px;}
.ws11a{word-spacing:86.723021px;}
.ws143{word-spacing:87.081677px;}
.ws11b{word-spacing:87.798989px;}
.ws144{word-spacing:88.229376px;}
.wsfd{word-spacing:89.735731px;}
.wsfb{word-spacing:127.394611px;}
.wsf2{word-spacing:172.615380px;}
._41{margin-left:-40.810499px;}
._16{margin-left:-34.785078px;}
._42{margin-left:-32.991798px;}
._2c{margin-left:-8.091257px;}
._9{margin-left:-6.425086px;}
._b{margin-left:-4.654300px;}
._0{margin-left:-3.223350px;}
._2{margin-left:-2.156490px;}
._4{margin-left:-1.054297px;}
._7{width:1.767274px;}
._1{width:3.223350px;}
._24{width:4.519066px;}
._20{width:5.611799px;}
._23{width:6.810215px;}
._2b{width:8.175372px;}
._1f{width:9.702061px;}
._a{width:14.716750px;}
._22{width:15.924326px;}
._46{width:17.722160px;}
._19{width:19.039328px;}
._d{width:20.287414px;}
._1e{width:21.559028px;}
._37{width:23.102000px;}
._12{width:24.208528px;}
._14{width:26.052088px;}
._e{width:27.229114px;}
._c{width:28.665603px;}
._6{width:29.840274px;}
._18{width:31.090075px;}
._3{width:32.279040px;}
._1a{width:33.570040px;}
._f{width:34.928540px;}
._10{width:36.546295px;}
._15{width:37.982422px;}
._13{width:40.039672px;}
._25{width:41.101512px;}
._8{width:43.069127px;}
._17{width:44.232298px;}
._1d{width:45.512695px;}
._5{width:46.669130px;}
._11{width:48.171303px;}
._2d{width:49.925010px;}
._21{width:51.702190px;}
._40{width:53.634199px;}
._1b{width:55.237578px;}
._28{width:59.604547px;}
._29{width:61.015742px;}
._2a{width:62.267236px;}
._27{width:64.947296px;}
._43{width:65.997258px;}
._3e{width:71.649772px;}
._3f{width:83.719418px;}
._45{width:88.018736px;}
._33{width:92.949942px;}
._26{width:96.836850px;}
._44{width:97.993927px;}
._2e{width:109.736436px;}
._1c{width:116.203950px;}
._30{width:126.804382px;}
._34{width:128.357937px;}
._3b{width:131.491104px;}
._32{width:148.607937px;}
._2f{width:166.093473px;}
._31{width:173.680404px;}
._38{width:253.307057px;}
._36{width:256.663668px;}
._35{width:287.897672px;}
._3a{width:368.534028px;}
._3c{width:469.954182px;}
._3d{width:773.341622px;}
._39{width:978.879867px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:44.442000px;}
.ya1{bottom:80.610000px;}
.ya0{bottom:85.042500px;}
.y1ae{bottom:89.274000px;}
.y20{bottom:91.879500px;}
.y13d{bottom:94.587000px;}
.y167{bottom:95.532000px;}
.y4e{bottom:95.869500px;}
.y9f{bottom:97.344000px;}
.yea{bottom:98.734500px;}
.y151{bottom:99.577500px;}
.ycb{bottom:100.122000px;}
.y18e{bottom:101.661000px;}
.y1ef{bottom:105.858000px;}
.y1ad{bottom:110.943000px;}
.y108{bottom:111.442500px;}
.y1f{bottom:113.548500px;}
.y13c{bottom:116.256000px;}
.y166{bottom:117.201000px;}
.y4d{bottom:117.538500px;}
.y1cf{bottom:119.779500px;}
.ye9{bottom:120.402000px;}
.y116{bottom:120.441000px;}
.y150{bottom:121.246500px;}
.yca{bottom:121.789500px;}
.y18d{bottom:123.330000px;}
.y57{bottom:126.555000px;}
.y1ee{bottom:127.527000px;}
.y1ac{bottom:132.612000px;}
.y107{bottom:133.111500px;}
.y1e{bottom:135.217500px;}
.y13b{bottom:137.925000px;}
.y165{bottom:138.870000px;}
.y4c{bottom:139.207500px;}
.y9d{bottom:140.356500px;}
.y1ce{bottom:141.448500px;}
.ye8{bottom:142.071000px;}
.y115{bottom:142.110000px;}
.y14f{bottom:142.915500px;}
.yc9{bottom:143.458500px;}
.y9c{bottom:144.789000px;}
.y18c{bottom:144.999000px;}
.y56{bottom:148.224000px;}
.y106{bottom:154.780500px;}
.y1d{bottom:156.886500px;}
.y9b{bottom:157.090500px;}
.y13a{bottom:159.594000px;}
.y164{bottom:160.539000px;}
.y4b{bottom:160.876500px;}
.y1cd{bottom:163.117500px;}
.y1ed{bottom:163.428000px;}
.ye7{bottom:163.740000px;}
.y114{bottom:163.777500px;}
.y14e{bottom:164.583000px;}
.y9e{bottom:164.788500px;}
.yc8{bottom:165.127500px;}
.y18b{bottom:166.666500px;}
.y1ab{bottom:169.222500px;}
.y55{bottom:169.891500px;}
.y105{bottom:176.448000px;}
.y1c{bottom:178.555500px;}
.y139{bottom:181.261500px;}
.y163{bottom:182.208000px;}
.y4a{bottom:182.544000px;}
.y1cc{bottom:184.786500px;}
.y1ec{bottom:185.097000px;}
.ye6{bottom:185.409000px;}
.y113{bottom:185.446500px;}
.y14d{bottom:186.252000px;}
.yc7{bottom:186.796500px;}
.y18a{bottom:188.335500px;}
.y1aa{bottom:190.890000px;}
.y54{bottom:191.560500px;}
.y9a{bottom:200.101500px;}
.y1b{bottom:200.223000px;}
.y138{bottom:202.930500px;}
.y162{bottom:203.875500px;}
.y49{bottom:204.213000px;}
.y1eb{bottom:206.766000px;}
.ye5{bottom:207.078000px;}
.y112{bottom:207.115500px;}
.y14c{bottom:207.921000px;}
.yc6{bottom:208.465500px;}
.y104{bottom:209.698500px;}
.y53{bottom:213.229500px;}
.y1cb{bottom:221.398500px;}
.y189{bottom:221.586000px;}
.y1a{bottom:221.892000px;}
.y137{bottom:224.599500px;}
.y48{bottom:225.882000px;}
.y99{bottom:227.316000px;}
.ye4{bottom:228.747000px;}
.y111{bottom:228.784500px;}
.y14b{bottom:229.590000px;}
.yc5{bottom:230.134500px;}
.y1a9{bottom:230.317500px;}
.y52{bottom:234.898500px;}
.y97{bottom:239.617500px;}
.y1ea{bottom:242.668500px;}
.y1ca{bottom:243.067500px;}
.y161{bottom:243.303000px;}
.y19{bottom:243.561000px;}
.y136{bottom:246.268500px;}
.y98{bottom:247.315500px;}
.y47{bottom:247.551000px;}
.ye3{bottom:250.414500px;}
.y14a{bottom:251.259000px;}
.yc4{bottom:251.802000px;}
.y110{bottom:252.445500px;}
.y51{bottom:256.567500px;}
.y103{bottom:261.691500px;}
.y1e9{bottom:264.336000px;}
.y1c9{bottom:264.736500px;}
.y10f{bottom:264.747000px;}
.y135{bottom:267.937500px;}
.y46{bottom:269.220000px;}
.ye2{bottom:272.083500px;}
.y149{bottom:272.928000px;}
.y188{bottom:273.579000px;}
.y50{bottom:278.236500px;}
.y18{bottom:282.988500px;}
.y102{bottom:283.360500px;}
.y96{bottom:287.364000px;}
.y134{bottom:289.606500px;}
.y1a8{bottom:290.217000px;}
.y45{bottom:290.889000px;}
.yc3{bottom:291.229500px;}
.y10e{bottom:292.320000px;}
.ye1{bottom:293.752500px;}
.y148{bottom:294.595500px;}
.y187{bottom:295.248000px;}
.y94{bottom:299.665500px;}
.y1e8{bottom:300.238500px;}
.y1c8{bottom:301.348500px;}
.y160{bottom:303.204000px;}
.y101{bottom:305.029500px;}
.y95{bottom:307.363500px;}
.y133{bottom:311.274000px;}
.y1a7{bottom:311.886000px;}
.y44{bottom:312.556500px;}
.y10d{bottom:313.989000px;}
.ye0{bottom:315.421500px;}
.y147{bottom:316.264500px;}
.y186{bottom:316.915500px;}
.y4f{bottom:317.662500px;}
.y1e7{bottom:321.907500px;}
.y1c7{bottom:323.017500px;}
.y15f{bottom:324.873000px;}
.y100{bottom:326.697000px;}
.y132{bottom:332.943000px;}
.y1a6{bottom:333.553500px;}
.y43{bottom:334.225500px;}
.y10c{bottom:335.658000px;}
.y146{bottom:337.933500px;}
.y185{bottom:338.584500px;}
.y17{bottom:342.888000px;}
.y93{bottom:346.164000px;}
.y15e{bottom:346.540500px;}
.yff{bottom:348.366000px;}
.ydf{bottom:348.672000px;}
.yc2{bottom:351.130500px;}
.y131{bottom:354.612000px;}
.y1a5{bottom:355.222500px;}
.y42{bottom:355.894500px;}
.y10b{bottom:357.327000px;}
.y1e6{bottom:357.808500px;}
.y145{bottom:359.602500px;}
.y1c6{bottom:359.631000px;}
.y184{bottom:360.253500px;}
.y16{bottom:364.557000px;}
.y15d{bottom:368.209500px;}
.yfe{bottom:370.035000px;}
.y92{bottom:371.929500px;}
.yc1{bottom:372.799500px;}
.y91{bottom:376.363500px;}
.y1a4{bottom:376.891500px;}
.y41{bottom:377.563500px;}
.y10a{bottom:378.996000px;}
.y1e5{bottom:379.477500px;}
.y1c5{bottom:381.300000px;}
.y183{bottom:381.922500px;}
.y130{bottom:387.862500px;}
.y15c{bottom:389.878500px;}
.yfd{bottom:391.704000px;}
.y144{bottom:392.853000px;}
.yc0{bottom:394.467000px;}
.y1a3{bottom:398.560500px;}
.y40{bottom:399.232500px;}
.yde{bottom:400.663500px;}
.y90{bottom:402.130500px;}
.y1c4{bottom:402.967500px;}
.y182{bottom:403.591500px;}
.y15{bottom:404.158500px;}
.y8f{bottom:406.563000px;}
.yfc{bottom:413.373000px;}
.y1e4{bottom:415.380000px;}
.ybf{bottom:416.136000px;}
.y3f{bottom:420.901500px;}
.ydd{bottom:422.332500px;}
.y14{bottom:424.482000px;}
.y181{bottom:425.260500px;}
.y8e{bottom:432.330000px;}
.yfb{bottom:435.042000px;}
.y1a2{bottom:435.165000px;}
.y8d{bottom:436.762500px;}
.y1e3{bottom:437.049000px;}
.y15b{bottom:437.700000px;}
.ybe{bottom:437.805000px;}
.y1c3{bottom:439.581000px;}
.y12f{bottom:439.855500px;}
.y3e{bottom:442.569000px;}
.ydc{bottom:444.001500px;}
.y13{bottom:444.807000px;}
.y143{bottom:444.844500px;}
.y180{bottom:446.928000px;}
.yfa{bottom:456.709500px;}
.y1a1{bottom:456.834000px;}
.y1e2{bottom:458.716500px;}
.y15a{bottom:459.367500px;}
.ybd{bottom:459.474000px;}
.y1c2{bottom:461.250000px;}
.y12e{bottom:461.523000px;}
.y3d{bottom:464.238000px;}
.y12{bottom:465.130500px;}
.ydb{bottom:465.670500px;}
.y142{bottom:466.513500px;}
.y17f{bottom:468.597000px;}
.y8c{bottom:469.173000px;}
.y8b{bottom:473.605500px;}
.yf9{bottom:478.378500px;}
.y1a0{bottom:478.503000px;}
.y159{bottom:481.036500px;}
.ybc{bottom:481.143000px;}
.y1c1{bottom:482.917500px;}
.y12d{bottom:483.192000px;}
.y11{bottom:485.454000px;}
.y3c{bottom:485.907000px;}
.yda{bottom:487.339500px;}
.y17e{bottom:490.266000px;}
.y1e1{bottom:494.619000px;}
.y158{bottom:502.705500px;}
.ybb{bottom:502.812000px;}
.y1c0{bottom:504.586500px;}
.y12c{bottom:504.861000px;}
.y10{bottom:505.777500px;}
.y3b{bottom:507.576000px;}
.yd9{bottom:509.008500px;}
.y8a{bottom:510.448500px;}
.yf8{bottom:511.629000px;}
.y17d{bottom:511.935000px;}
.y19f{bottom:515.112000px;}
.y1e0{bottom:516.288000px;}
.y141{bottom:517.821000px;}
.yba{bottom:524.479500px;}
.yf{bottom:526.101000px;}
.y12b{bottom:526.530000px;}
.y3a{bottom:529.245000px;}
.yd8{bottom:530.676000px;}
.y17c{bottom:533.604000px;}
.y19e{bottom:536.781000px;}
.y89{bottom:537.409500px;}
.y140{bottom:539.490000px;}
.y1bf{bottom:541.200000px;}
.yb9{bottom:546.148500px;}
.ye{bottom:546.426000px;}
.y12a{bottom:548.199000px;}
.y84{bottom:549.711000px;}
.y39{bottom:550.914000px;}
.y1df{bottom:552.189000px;}
.yd7{bottom:552.345000px;}
.y17b{bottom:555.271500px;}
.y19d{bottom:558.450000px;}
.y88{bottom:559.188000px;}
.y13f{bottom:561.159000px;}
.y87{bottom:562.177500px;}
.y1be{bottom:562.869000px;}
.yf7{bottom:563.622000px;}
.y86{bottom:563.928000px;}
.yd{bottom:566.749500px;}
.yb8{bottom:567.817500px;}
.y85{bottom:568.362000px;}
.y38{bottom:572.581500px;}
.y1de{bottom:573.858000px;}
.yd6{bottom:574.014000px;}
.y17a{bottom:576.940500px;}
.y13e{bottom:582.828000px;}
.y1bd{bottom:584.536500px;}
.yf6{bottom:585.291000px;}
.yc{bottom:587.073000px;}
.yb7{bottom:589.486500px;}
.y37{bottom:594.250500px;}
.y129{bottom:594.400500px;}
.y19c{bottom:595.060500px;}
.y1dd{bottom:595.527000px;}
.yd5{bottom:595.683000px;}
.y179{bottom:598.609500px;}
.yf5{bottom:606.958500px;}
.y109{bottom:607.264500px;}
.yb{bottom:607.396500px;}
.y83{bottom:610.135500px;}
.yb6{bottom:611.155500px;}
.y36{bottom:615.919500px;}
.y128{bottom:616.666500px;}
.y19b{bottom:616.728000px;}
.yd4{bottom:617.352000px;}
.y178{bottom:620.278500px;}
.y1bc{bottom:621.150000px;}
.y7e{bottom:622.437000px;}
.ya{bottom:627.720000px;}
.y1dc{bottom:631.429500px;}
.y82{bottom:631.914000px;}
.yb5{bottom:632.824500px;}
.y81{bottom:634.902000px;}
.y80{bottom:636.652500px;}
.y35{bottom:637.588500px;}
.y19a{bottom:638.397000px;}
.y127{bottom:638.934000px;}
.yd3{bottom:639.021000px;}
.y7f{bottom:641.086500px;}
.y1bb{bottom:642.819000px;}
.yf4{bottom:646.560000px;}
.y9{bottom:648.045000px;}
.y1db{bottom:653.097000px;}
.y177{bottom:653.529000px;}
.yb4{bottom:654.492000px;}
.y34{bottom:659.257500px;}
.yd2{bottom:660.688500px;}
.y126{bottom:661.200000px;}
.y1ba{bottom:664.488000px;}
.y8{bottom:668.368500px;}
.y199{bottom:675.007500px;}
.y33{bottom:680.925000px;}
.y7d{bottom:681.864000px;}
.yd1{bottom:682.357500px;}
.y125{bottom:683.466000px;}
.y1b9{bottom:686.155500px;}
.yf3{bottom:686.161500px;}
.y7{bottom:688.692000px;}
.y1da{bottom:688.999500px;}
.yb3{bottom:691.105500px;}
.y198{bottom:696.676500px;}
.y32{bottom:702.594000px;}
.y7c{bottom:703.533000px;}
.yd0{bottom:704.026500px;}
.y124{bottom:704.214000px;}
.yb2{bottom:708.340500px;}
.y176{bottom:709.942500px;}
.y1d9{bottom:710.668500px;}
.yb1{bottom:712.774500px;}
.y197{bottom:718.345500px;}
.y6{bottom:719.034000px;}
.y1b8{bottom:722.769000px;}
.yf2{bottom:722.775000px;}
.y31{bottom:724.263000px;}
.y7b{bottom:725.202000px;}
.ycf{bottom:725.695500px;}
.y175{bottom:731.611500px;}
.y1b7{bottom:744.438000px;}
.yf1{bottom:744.444000px;}
.y30{bottom:745.932000px;}
.y1d8{bottom:746.569500px;}
.y7a{bottom:746.871000px;}
.yce{bottom:747.364500px;}
.yb0{bottom:749.386500px;}
.y174{bottom:753.877500px;}
.y196{bottom:754.950000px;}
.y123{bottom:756.019500px;}
.y1b6{bottom:766.107000px;}
.yf0{bottom:766.113000px;}
.y2f{bottom:767.601000px;}
.y1d7{bottom:768.238500px;}
.y79{bottom:768.538500px;}
.ycd{bottom:769.033500px;}
.yaf{bottom:771.055500px;}
.y173{bottom:776.143500px;}
.y195{bottom:776.617500px;}
.y122{bottom:777.688500px;}
.y5{bottom:783.225000px;}
.y2e{bottom:789.270000px;}
.y1d6{bottom:789.907500px;}
.y78{bottom:790.207500px;}
.y172{bottom:797.812500px;}
.y194{bottom:798.286500px;}
.y121{bottom:799.356000px;}
.yef{bottom:800.359500px;}
.ycc{bottom:802.282500px;}
.y1b5{bottom:802.719000px;}
.yae{bottom:807.667500px;}
.y2d{bottom:810.937500px;}
.y77{bottom:811.876500px;}
.yee{bottom:812.659500px;}
.y193{bottom:819.955500px;}
.y171{bottom:820.078500px;}
.y120{bottom:821.025000px;}
.y1b4{bottom:824.388000px;}
.y1d5{bottom:825.810000px;}
.yad{bottom:829.336500px;}
.y2c{bottom:832.606500px;}
.y76{bottom:833.545500px;}
.y192{bottom:841.624500px;}
.y170{bottom:841.747500px;}
.y11f{bottom:842.694000px;}
.y4{bottom:844.152000px;}
.y1b3{bottom:846.057000px;}
.y1d4{bottom:847.477500px;}
.y2b{bottom:854.275500px;}
.yed{bottom:862.432500px;}
.y191{bottom:863.293500px;}
.y74{bottom:863.662500px;}
.y16f{bottom:864.015000px;}
.y11e{bottom:864.363000px;}
.yac{bottom:865.950000px;}
.y1b2{bottom:867.724500px;}
.y1d3{bottom:869.146500px;}
.y2a{bottom:875.944500px;}
.y6c{bottom:881.842500px;}
.y190{bottom:884.962500px;}
.y11d{bottom:886.032000px;}
.y3{bottom:886.219500px;}
.y16e{bottom:886.281000px;}
.y6b{bottom:887.223000px;}
.yab{bottom:887.619000px;}
.y73{bottom:888.096000px;}
.y6a{bottom:892.602000px;}
.y29{bottom:897.613500px;}
.y69{bottom:897.982500px;}
.yec{bottom:899.044500px;}
.y68{bottom:903.361500px;}
.y1b1{bottom:904.338000px;}
.y1d2{bottom:905.049000px;}
.y72{bottom:906.526500px;}
.y11c{bottom:907.701000px;}
.y16d{bottom:908.547000px;}
.y67{bottom:908.742000px;}
.y66{bottom:914.122500px;}
.y28{bottom:919.282500px;}
.y65{bottom:919.501500px;}
.yaa{bottom:924.231000px;}
.y18f{bottom:924.388500px;}
.y64{bottom:924.882000px;}
.y1b0{bottom:926.007000px;}
.y1d1{bottom:926.718000px;}
.y157{bottom:928.024500px;}
.y11b{bottom:929.368500px;}
.y63{bottom:930.261000px;}
.y16c{bottom:930.813000px;}
.y71{bottom:930.958500px;}
.yeb{bottom:932.295000px;}
.y2{bottom:939.456000px;}
.y27{bottom:940.950000px;}
.y75{bottom:941.917500px;}
.ya9{bottom:945.900000px;}
.y1af{bottom:947.676000px;}
.y1d0{bottom:948.385500px;}
.y70{bottom:949.390500px;}
.y156{bottom:950.290500px;}
.y11a{bottom:951.037500px;}
.y16b{bottom:952.482000px;}
.y62{bottom:962.541000px;}
.y26{bottom:962.619000px;}
.y61{bottom:967.920000px;}
.ya8{bottom:969.862500px;}
.y155{bottom:972.556500px;}
.y119{bottom:972.706500px;}
.y60{bottom:973.300500px;}
.y6f{bottom:973.822500px;}
.ya7{bottom:974.296500px;}
.y16a{bottom:974.749500px;}
.y1{bottom:976.816500px;}
.y5f{bottom:978.681000px;}
.y5e{bottom:984.060000px;}
.y25{bottom:984.288000px;}
.ya6{bottom:986.598000px;}
.y5d{bottom:989.440500px;}
.y6e{bottom:992.253000px;}
.y118{bottom:994.375500px;}
.y5c{bottom:994.819500px;}
.y154{bottom:994.824000px;}
.y169{bottom:996.417000px;}
.y5b{bottom:1000.200000px;}
.y5a{bottom:1005.580500px;}
.y24{bottom:1005.957000px;}
.y59{bottom:1010.959500px;}
.y117{bottom:1016.044500px;}
.y6d{bottom:1016.686500px;}
.y153{bottom:1017.090000px;}
.y168{bottom:1017.165000px;}
.ya4{bottom:1024.149000px;}
.y58{bottom:1027.099500px;}
.y23{bottom:1027.626000px;}
.ya3{bottom:1028.583000px;}
.y152{bottom:1038.834000px;}
.ya2{bottom:1040.883000px;}
.ya5{bottom:1048.581000px;}
.y22{bottom:1049.295000px;}
.hb{height:2.869248px;}
.h4{height:32.326726px;}
.h19{height:33.665702px;}
.h12{height:37.464624px;}
.h10{height:37.470624px;}
.h5{height:45.687311px;}
.h6{height:49.090950px;}
.h23{height:49.781453px;}
.h7{height:53.798400px;}
.h20{height:54.383702px;}
.ha{height:58.354726px;}
.h9{height:58.360726px;}
.h1e{height:59.699702px;}
.h14{height:61.942726px;}
.h16{height:61.948726px;}
.h3{height:64.557900px;}
.h22{height:71.930400px;}
.h2{height:76.067700px;}
.he{height:76.090726px;}
.h8{height:77.469300px;}
.h15{height:79.672726px;}
.h17{height:79.678726px;}
.h1{height:87.650325px;}
.hf{height:100.225248px;}
.h21{height:102.326400px;}
.hd{height:102.998400px;}
.hc{height:103.004400px;}
.h18{height:106.882726px;}
.h1f{height:108.221702px;}
.h11{height:119.179248px;}
.h13{height:119.185248px;}
.h1c{height:120.734400px;}
.h1a{height:153.217248px;}
.h1d{height:170.947248px;}
.h1b{height:173.818726px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:95.244000px;}
.x47{left:104.211000px;}
.x45{left:111.069000px;}
.x4a{left:116.704500px;}
.x5{left:121.582500px;}
.x1{left:122.934000px;}
.x4b{left:131.337000px;}
.x8{left:139.141500px;}
.x41{left:143.673000px;}
.x7{left:163.687500px;}
.x11{left:181.536000px;}
.x19{left:184.192500px;}
.x2{left:199.945500px;}
.x23{left:210.403500px;}
.x4c{left:212.551500px;}
.x27{left:213.847500px;}
.x3c{left:219.042000px;}
.x42{left:220.927500px;}
.x12{left:225.216000px;}
.x1a{left:227.872500px;}
.x43{left:232.270500px;}
.x46{left:235.404000px;}
.x2a{left:243.165000px;}
.x2e{left:245.443500px;}
.x21{left:248.142000px;}
.x25{left:251.004000px;}
.x36{left:252.375000px;}
.x2c{left:285.589500px;}
.x13{left:287.281500px;}
.x33{left:288.811500px;}
.x1b{left:289.938000px;}
.x3b{left:291.090000px;}
.x37{left:294.099000px;}
.x48{left:302.851500px;}
.x4d{left:311.230500px;}
.x17{left:318.012000px;}
.x1f{left:320.290500px;}
.xb{left:349.009500px;}
.xe{left:366.742500px;}
.x4{left:369.600000px;}
.xf{left:371.563500px;}
.xc{left:372.747000px;}
.xd{left:374.566500px;}
.x24{left:384.946500px;}
.x28{left:387.225000px;}
.x3{left:392.788500px;}
.x3f{left:401.994000px;}
.x2b{left:417.063000px;}
.x6{left:420.660000px;}
.x14{left:441.802500px;}
.x1c{left:443.293500px;}
.x3e{left:444.709500px;}
.x44{left:447.882000px;}
.x4e{left:450.975000px;}
.xa{left:452.271000px;}
.x34{left:460.956000px;}
.x40{left:482.994000px;}
.x35{left:502.680000px;}
.x3d{left:516.919500px;}
.x49{left:573.781500px;}
.x31{left:588.097500px;}
.x39{left:591.505500px;}
.x2f{left:609.165000px;}
.x2d{left:611.443500px;}
.x26{left:616.386000px;}
.x22{left:618.081000px;}
.x32{left:629.821500px;}
.x3a{left:633.229500px;}
.x29{left:659.875500px;}
.x1d{left:662.497500px;}
.x15{left:664.398000px;}
.x1e{left:686.781000px;}
.x16{left:688.681500px;}
.x20{left:724.252500px;}
.x18{left:726.909000px;}
.x30{left:769.222500px;}
.x38{left:770.352000px;}
.x10{left:795.642000px;}
@media print{
.v1c{vertical-align:-89.904000pt;}
.v2{vertical-align:-23.136000pt;}
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.202667pt;}
.vd{vertical-align:10.624000pt;}
.vc{vertical-align:12.106667pt;}
.v7{vertical-align:15.765333pt;}
.vf{vertical-align:18.421333pt;}
.v3{vertical-align:23.141333pt;}
.v11{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:34.176000pt;}
.v8{vertical-align:38.901333pt;}
.v12{vertical-align:42.085333pt;}
.v4{vertical-align:43.738667pt;}
.v17{vertical-align:49.936000pt;}
.v10{vertical-align:51.648000pt;}
.vb{vertical-align:58.800000pt;}
.v13{vertical-align:66.272000pt;}
.va{vertical-align:70.773333pt;}
.v16{vertical-align:77.306667pt;}
.v1d{vertical-align:85.824000pt;}
.v15{vertical-align:86.874667pt;}
.v1a{vertical-align:89.904000pt;}
.v18{vertical-align:93.066667pt;}
.ve{vertical-align:103.386667pt;}
.v19{vertical-align:125.770667pt;}
.v14{vertical-align:133.642667pt;}
.v1b{vertical-align:149.402667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000242pt;}
.ls25{letter-spacing:0.000391pt;}
.lse{letter-spacing:0.000420pt;}
.ls32{letter-spacing:0.000444pt;}
.ls16{letter-spacing:0.000676pt;}
.ls1f{letter-spacing:0.000882pt;}
.ls6{letter-spacing:0.000990pt;}
.ls6d{letter-spacing:0.001012pt;}
.ls3b{letter-spacing:0.001036pt;}
.ls8a{letter-spacing:0.001067pt;}
.ls74{letter-spacing:0.001091pt;}
.ls17{letter-spacing:0.001145pt;}
.ls10{letter-spacing:0.001309pt;}
.ls3e{letter-spacing:0.001430pt;}
.ls1c{letter-spacing:0.001608pt;}
.ls2f{letter-spacing:0.001817pt;}
.ls2b{letter-spacing:0.001891pt;}
.ls11{letter-spacing:0.002452pt;}
.ls2{letter-spacing:0.002717pt;}
.ls39{letter-spacing:0.003149pt;}
.ls77{letter-spacing:0.003420pt;}
.ls81{letter-spacing:0.003895pt;}
.ls7b{letter-spacing:0.005091pt;}
.ls35{letter-spacing:0.005724pt;}
.ls52{letter-spacing:0.006009pt;}
.ls5c{letter-spacing:0.006479pt;}
.ls21{letter-spacing:0.406941pt;}
.ls23{letter-spacing:0.521544pt;}
.ls4{letter-spacing:0.526877pt;}
.ls0{letter-spacing:2.653258pt;}
.ls28{letter-spacing:2.654400pt;}
.ls2e{letter-spacing:2.656473pt;}
.ls31{letter-spacing:2.657594pt;}
.ls9{letter-spacing:2.658591pt;}
.ls24{letter-spacing:2.659733pt;}
.ls4e{letter-spacing:3.905798pt;}
.ls26{letter-spacing:3.911131pt;}
.ls6e{letter-spacing:4.021729pt;}
.ls18{letter-spacing:5.014424pt;}
.ls8d{letter-spacing:5.835976pt;}
.ls6c{letter-spacing:5.869258pt;}
.ls59{letter-spacing:6.065309pt;}
.ls5e{letter-spacing:6.068905pt;}
.ls30{letter-spacing:6.273817pt;}
.ls4d{letter-spacing:6.378238pt;}
.ls7f{letter-spacing:6.807576pt;}
.lsa6{letter-spacing:7.457309pt;}
.ls19{letter-spacing:8.672391pt;}
.ls27{letter-spacing:8.677724pt;}
.ls5a{letter-spacing:8.727925pt;}
.ls33{letter-spacing:9.035139pt;}
.ls82{letter-spacing:10.624990pt;}
.ls3f{letter-spacing:10.625430pt;}
.ls4a{letter-spacing:10.628145pt;}
.ls72{letter-spacing:10.630323pt;}
.ls8c{letter-spacing:11.099976pt;}
.ls41{letter-spacing:11.150877pt;}
.ls7e{letter-spacing:11.379420pt;}
.ls7d{letter-spacing:11.384753pt;}
.ls5b{letter-spacing:12.442238pt;}
.ls40{letter-spacing:13.527131pt;}
.ls79{letter-spacing:13.795420pt;}
.ls96{letter-spacing:14.001309pt;}
.ls55{letter-spacing:14.163915pt;}
.ls48{letter-spacing:14.164509pt;}
.lsd{letter-spacing:14.164905pt;}
.ls62{letter-spacing:14.165576pt;}
.ls12{letter-spacing:14.166009pt;}
.ls36{letter-spacing:14.166323pt;}
.ls2a{letter-spacing:14.166642pt;}
.ls42{letter-spacing:14.166764pt;}
.lsa{letter-spacing:14.167786pt;}
.ls2c{letter-spacing:14.169248pt;}
.lsb{letter-spacing:14.169842pt;}
.ls13{letter-spacing:14.170238pt;}
.ls58{letter-spacing:14.170909pt;}
.lsc{letter-spacing:14.171812pt;}
.ls51{letter-spacing:14.171976pt;}
.ls47{letter-spacing:14.692210pt;}
.ls83{letter-spacing:15.473309pt;}
.lsa7{letter-spacing:15.531976pt;}
.lsa9{letter-spacing:15.585309pt;}
.ls7{letter-spacing:16.107976pt;}
.ls78{letter-spacing:16.179420pt;}
.ls1d{letter-spacing:16.512990pt;}
.ls1e{letter-spacing:16.518323pt;}
.ls34{letter-spacing:16.823925pt;}
.ls80{letter-spacing:16.827110pt;}
.lsa4{letter-spacing:17.105309pt;}
.ls8e{letter-spacing:17.467976pt;}
.lsf{letter-spacing:17.706238pt;}
.ls6f{letter-spacing:17.710626pt;}
.ls43{letter-spacing:17.711572pt;}
.ls6b{letter-spacing:17.999572pt;}
.ls6a{letter-spacing:18.003959pt;}
.ls37{letter-spacing:18.076464pt;}
.ls29{letter-spacing:18.081798pt;}
.ls20{letter-spacing:18.098591pt;}
.ls9d{letter-spacing:18.571657pt;}
.ls9e{letter-spacing:18.576990pt;}
.ls8{letter-spacing:18.674591pt;}
.ls84{letter-spacing:18.886642pt;}
.ls15{letter-spacing:19.185091pt;}
.ls45{letter-spacing:19.655925pt;}
.ls22{letter-spacing:20.365258pt;}
.ls85{letter-spacing:20.370591pt;}
.ls66{letter-spacing:20.371733pt;}
.ls60{letter-spacing:20.538238pt;}
.ls56{letter-spacing:20.543572pt;}
.ls46{letter-spacing:20.545309pt;}
.ls7a{letter-spacing:20.632753pt;}
.ls1b{letter-spacing:20.882591pt;}
.lsa2{letter-spacing:21.147976pt;}
.ls69{letter-spacing:21.617798pt;}
.ls86{letter-spacing:21.665608pt;}
.ls95{letter-spacing:21.915343pt;}
.ls68{letter-spacing:22.324905pt;}
.ls14{letter-spacing:22.837724pt;}
.ls3c{letter-spacing:23.463925pt;}
.ls3d{letter-spacing:23.469258pt;}
.ls8f{letter-spacing:23.483343pt;}
.ls90{letter-spacing:23.483812pt;}
.ls50{letter-spacing:24.084905pt;}
.ls2d{letter-spacing:24.118642pt;}
.ls91{letter-spacing:24.374323pt;}
.ls92{letter-spacing:24.379657pt;}
.lsa8{letter-spacing:25.469258pt;}
.ls38{letter-spacing:25.553309pt;}
.ls3{letter-spacing:25.943925pt;}
.ls67{letter-spacing:26.236464pt;}
.ls5{letter-spacing:26.317258pt;}
.ls71{letter-spacing:27.586497pt;}
.ls70{letter-spacing:27.587420pt;}
.lsa5{letter-spacing:27.778591pt;}
.ls94{letter-spacing:27.947757pt;}
.ls7c{letter-spacing:27.960941pt;}
.ls76{letter-spacing:29.108210pt;}
.ls9f{letter-spacing:29.483057pt;}
.ls87{letter-spacing:30.198356pt;}
.ls1a{letter-spacing:30.391925pt;}
.ls65{letter-spacing:30.687572pt;}
.ls63{letter-spacing:31.218133pt;}
.ls75{letter-spacing:31.239925pt;}
.ls73{letter-spacing:31.245258pt;}
.ls93{letter-spacing:32.336391pt;}
.ls88{letter-spacing:32.479633pt;}
.ls64{letter-spacing:33.347733pt;}
.lsa3{letter-spacing:33.714591pt;}
.ls49{letter-spacing:50.877258pt;}
.ls99{letter-spacing:66.413258pt;}
.ls98{letter-spacing:66.418591pt;}
.ls8b{letter-spacing:111.372340pt;}
.ls61{letter-spacing:127.378591pt;}
.ls57{letter-spacing:131.330591pt;}
.ls4f{letter-spacing:131.335925pt;}
.ls5d{letter-spacing:133.442591pt;}
.ls89{letter-spacing:147.367925pt;}
.ls3a{letter-spacing:236.486323pt;}
.ls9b{letter-spacing:271.601091pt;}
.ls9c{letter-spacing:283.173724pt;}
.ls97{letter-spacing:287.936676pt;}
.ls9a{letter-spacing:292.081145pt;}
.ls4b{letter-spacing:443.199572pt;}
.ls44{letter-spacing:451.300905pt;}
.ls4c{letter-spacing:454.267657pt;}
.ls5f{letter-spacing:512.157258pt;}
.ls53{letter-spacing:520.258591pt;}
.lsa1{letter-spacing:555.809673pt;}
.lsa0{letter-spacing:591.810591pt;}
.wsbb{word-spacing:-63.761067pt;}
.ws77{word-spacing:-50.479636pt;}
.ws62{word-spacing:-40.590295pt;}
.wsbe{word-spacing:-30.005958pt;}
.ws63{word-spacing:-29.942197pt;}
.wsde{word-spacing:-19.925333pt;}
.ws1d{word-spacing:-17.343010pt;}
.ws12{word-spacing:-16.162923pt;}
.ws7b{word-spacing:-12.216620pt;}
.ws64{word-spacing:-12.105839pt;}
.ws60{word-spacing:-10.036506pt;}
.ws75{word-spacing:-6.720901pt;}
.ws76{word-spacing:-6.715568pt;}
.ws74{word-spacing:-6.694912pt;}
.wse0{word-spacing:-6.244683pt;}
.wsb5{word-spacing:-5.993540pt;}
.wsb7{word-spacing:-5.929779pt;}
.wsfa{word-spacing:-5.761067pt;}
.wsdd{word-spacing:-5.755733pt;}
.ws9c{word-spacing:-3.570620pt;}
.wsf0{word-spacing:-3.338016pt;}
.ws66{word-spacing:-3.316506pt;}
.ws73{word-spacing:-3.188053pt;}
.wsdb{word-spacing:-3.183350pt;}
.ws7c{word-spacing:-3.180986pt;}
.wsdc{word-spacing:-3.178016pt;}
.ws7a{word-spacing:-3.176643pt;}
.ws7d{word-spacing:-3.175653pt;}
.wse5{word-spacing:-3.060531pt;}
.ws147{word-spacing:-2.996770pt;}
.ws50{word-spacing:-2.869248pt;}
.ws3c{word-spacing:-2.741726pt;}
.wsa0{word-spacing:-2.677965pt;}
.wsbf{word-spacing:-2.422921pt;}
.wsf9{word-spacing:-2.167876pt;}
.wsa{word-spacing:-2.141093pt;}
.ws68{word-spacing:-1.976593pt;}
.ws67{word-spacing:-1.976037pt;}
.ws6e{word-spacing:-1.912832pt;}
.ws6f{word-spacing:-1.906929pt;}
.wsf{word-spacing:-1.850183pt;}
.ws91{word-spacing:-1.849071pt;}
.ws105{word-spacing:-1.818016pt;}
.ws3d{word-spacing:-1.785310pt;}
.ws10d{word-spacing:-1.759350pt;}
.ws20{word-spacing:-1.657788pt;}
.ws41{word-spacing:-1.594027pt;}
.ws8e{word-spacing:-1.530266pt;}
.wsf1{word-spacing:-1.466505pt;}
.ws10e{word-spacing:-1.402743pt;}
.ws56{word-spacing:-1.338982pt;}
.wsb2{word-spacing:-1.275221pt;}
.ws37{word-spacing:-1.235265pt;}
.ws9b{word-spacing:-1.147699pt;}
.wsc6{word-spacing:-1.020177pt;}
.wsc9{word-spacing:-0.765133pt;}
.wse1{word-spacing:-0.637611pt;}
.ws86{word-spacing:-0.573850pt;}
.wsda{word-spacing:-0.510089pt;}
.wsea{word-spacing:-0.446327pt;}
.ws1c{word-spacing:-0.382566pt;}
.ws5e{word-spacing:-0.255044pt;}
.ws101{word-spacing:-0.250016pt;}
.wsc5{word-spacing:-0.191283pt;}
.wsc8{word-spacing:-0.066470pt;}
.wsc3{word-spacing:-0.063761pt;}
.ws28{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.063761pt;}
.wse4{word-spacing:0.123317pt;}
.wsba{word-spacing:0.127522pt;}
.wsd1{word-spacing:0.191283pt;}
.ws3b{word-spacing:0.255044pt;}
.ws1f{word-spacing:0.318805pt;}
.wsbd{word-spacing:0.352104pt;}
.ws61{word-spacing:0.382566pt;}
.wscb{word-spacing:0.446327pt;}
.ws4b{word-spacing:0.510089pt;}
.ws33{word-spacing:0.637611pt;}
.ws65{word-spacing:0.640828pt;}
.ws7e{word-spacing:0.701372pt;}
.ws38{word-spacing:0.765133pt;}
.wsbc{word-spacing:0.886190pt;}
.ws6b{word-spacing:0.892655pt;}
.wsd{word-spacing:0.942546pt;}
.wsca{word-spacing:0.956416pt;}
.ws11{word-spacing:1.058910pt;}
.ws145{word-spacing:1.083938pt;}
.ws88{word-spacing:1.147699pt;}
.ws90{word-spacing:1.211460pt;}
.ws110{word-spacing:1.275221pt;}
.ws52{word-spacing:1.338982pt;}
.ws2a{word-spacing:1.466505pt;}
.wsa5{word-spacing:1.530266pt;}
.wsc{word-spacing:1.698911pt;}
.wsd7{word-spacing:1.721549pt;}
.ws29{word-spacing:1.785310pt;}
.wsc2{word-spacing:1.849071pt;}
.wse{word-spacing:1.931638pt;}
.ws44{word-spacing:1.976593pt;}
.ws57{word-spacing:2.040354pt;}
.wsb4{word-spacing:2.104115pt;}
.wsb8{word-spacing:2.118137pt;}
.ws1b{word-spacing:2.167876pt;}
.ws30{word-spacing:2.231637pt;}
.ws4f{word-spacing:2.295398pt;}
.ws10c{word-spacing:2.359159pt;}
.wsb6{word-spacing:2.372432pt;}
.wsb{word-spacing:2.397093pt;}
.ws2d{word-spacing:2.422921pt;}
.wsd8{word-spacing:2.486682pt;}
.ws31{word-spacing:2.614204pt;}
.wsd5{word-spacing:2.677965pt;}
.wse3{word-spacing:2.741726pt;}
.wsdf{word-spacing:2.869248pt;}
.ws58{word-spacing:2.933009pt;}
.ws92{word-spacing:2.996770pt;}
.ws9d{word-spacing:3.251814pt;}
.ws9e{word-spacing:3.315575pt;}
.wsc7{word-spacing:3.379337pt;}
.ws81{word-spacing:3.440584pt;}
.ws15{word-spacing:3.443098pt;}
.ws149{word-spacing:3.452510pt;}
.ws83{word-spacing:3.464296pt;}
.ws79{word-spacing:3.464864pt;}
.ws3a{word-spacing:3.506859pt;}
.ws51{word-spacing:3.570620pt;}
.ws84{word-spacing:3.634381pt;}
.ws124{word-spacing:3.698142pt;}
.ws48{word-spacing:3.761903pt;}
.ws6d{word-spacing:3.780925pt;}
.ws100{word-spacing:3.797984pt;}
.ws72{word-spacing:3.825664pt;}
.ws6c{word-spacing:3.844477pt;}
.ws71{word-spacing:3.889425pt;}
.wsce{word-spacing:3.953186pt;}
.wsb9{word-spacing:3.985067pt;}
.wsd6{word-spacing:4.016947pt;}
.ws8c{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws109{word-spacing:4.144469pt;}
.ws24{word-spacing:4.208230pt;}
.ws1a{word-spacing:4.271991pt;}
.ws2e{word-spacing:4.335753pt;}
.ws42{word-spacing:4.399514pt;}
.ws5f{word-spacing:4.463275pt;}
.wsef{word-spacing:4.568864pt;}
.ws8a{word-spacing:4.590797pt;}
.ws148{word-spacing:4.654558pt;}
.ws39{word-spacing:4.718319pt;}
.ws1{word-spacing:4.782067pt;}
.ws2c{word-spacing:4.782080pt;}
.ws138{word-spacing:4.838065pt;}
.wsa8{word-spacing:4.845841pt;}
.wsf3{word-spacing:4.909602pt;}
.ws103{word-spacing:4.973363pt;}
.wscf{word-spacing:5.037124pt;}
.ws21{word-spacing:5.100885pt;}
.ws93{word-spacing:5.164646pt;}
.wscc{word-spacing:5.228407pt;}
.ws5{word-spacing:5.248004pt;}
.ws47{word-spacing:5.355930pt;}
.ws10{word-spacing:5.364368pt;}
.wsa7{word-spacing:5.419691pt;}
.ws107{word-spacing:5.483452pt;}
.ws85{word-spacing:5.547213pt;}
.wsee{word-spacing:5.587531pt;}
.wsed{word-spacing:5.610974pt;}
.ws2f{word-spacing:5.674735pt;}
.ws5b{word-spacing:5.738467pt;}
.ws43{word-spacing:5.738496pt;}
.ws130{word-spacing:5.802257pt;}
.ws4d{word-spacing:5.866018pt;}
.ws22{word-spacing:5.929779pt;}
.wse2{word-spacing:5.993540pt;}
.ws23{word-spacing:6.057301pt;}
.wse6{word-spacing:6.121062pt;}
.wse7{word-spacing:6.136864pt;}
.ws82{word-spacing:6.184823pt;}
.ws78{word-spacing:6.228043pt;}
.wsaa{word-spacing:6.248585pt;}
.ws36{word-spacing:6.312346pt;}
.wse9{word-spacing:6.335793pt;}
.ws123{word-spacing:6.343323pt;}
.ws2b{word-spacing:6.376107pt;}
.ws9a{word-spacing:6.439868pt;}
.wsc4{word-spacing:6.503629pt;}
.ws53{word-spacing:6.567390pt;}
.ws46{word-spacing:6.758673pt;}
.ws59{word-spacing:6.822434pt;}
.wsf7{word-spacing:6.886195pt;}
.ws25{word-spacing:6.949956pt;}
.wsc1{word-spacing:7.077478pt;}
.ws32{word-spacing:7.141239pt;}
.ws131{word-spacing:7.226284pt;}
.ws5a{word-spacing:7.268762pt;}
.wsac{word-spacing:7.332523pt;}
.wsf4{word-spacing:7.396284pt;}
.ws9{word-spacing:7.400733pt;}
.ws5c{word-spacing:7.460045pt;}
.ws10a{word-spacing:7.587567pt;}
.wseb{word-spacing:7.651328pt;}
.ws27{word-spacing:7.715089pt;}
.ws89{word-spacing:7.778850pt;}
.ws55{word-spacing:7.906372pt;}
.wsa4{word-spacing:7.970133pt;}
.ws70{word-spacing:8.033894pt;}
.wsf5{word-spacing:8.097655pt;}
.ws4a{word-spacing:8.161417pt;}
.ws17{word-spacing:8.225178pt;}
.ws4c{word-spacing:8.288939pt;}
.ws108{word-spacing:8.352700pt;}
.ws5d{word-spacing:8.416461pt;}
.ws6{word-spacing:8.448007pt;}
.ws102{word-spacing:8.480222pt;}
.ws104{word-spacing:8.543983pt;}
.wse8{word-spacing:8.735266pt;}
.ws4{word-spacing:8.797098pt;}
.ws87{word-spacing:8.862788pt;}
.ws8b{word-spacing:8.990310pt;}
.wsb3{word-spacing:9.054071pt;}
.ws26{word-spacing:9.117833pt;}
.wsa3{word-spacing:9.181594pt;}
.ws95{word-spacing:9.245355pt;}
.ws69{word-spacing:9.352864pt;}
.ws6a{word-spacing:9.372877pt;}
.ws10f{word-spacing:9.436638pt;}
.ws116{word-spacing:9.481853pt;}
.wsa1{word-spacing:9.500399pt;}
.wsd0{word-spacing:9.564160pt;}
.wsa9{word-spacing:9.627921pt;}
.ws11f{word-spacing:9.691682pt;}
.ws19{word-spacing:9.819204pt;}
.ws98{word-spacing:9.829212pt;}
.ws99{word-spacing:9.882965pt;}
.ws3f{word-spacing:10.010487pt;}
.ws11d{word-spacing:10.074249pt;}
.ws126{word-spacing:10.087919pt;}
.ws125{word-spacing:10.138010pt;}
.wsf6{word-spacing:10.265532pt;}
.wsa2{word-spacing:10.329293pt;}
.ws40{word-spacing:10.393054pt;}
.ws12e{word-spacing:10.520576pt;}
.ws3e{word-spacing:10.584337pt;}
.wsab{word-spacing:10.711859pt;}
.ws7{word-spacing:10.717100pt;}
.ws45{word-spacing:10.775620pt;}
.ws14{word-spacing:10.839381pt;}
.wsa6{word-spacing:10.966903pt;}
.ws80{word-spacing:11.094426pt;}
.ws35{word-spacing:11.221948pt;}
.ws7f{word-spacing:11.285709pt;}
.ws97{word-spacing:11.449810pt;}
.ws96{word-spacing:11.451228pt;}
.ws8{word-spacing:11.473464pt;}
.ws12d{word-spacing:11.476992pt;}
.wsd9{word-spacing:11.540753pt;}
.ws9f{word-spacing:11.604514pt;}
.wsb1{word-spacing:11.668275pt;}
.wscd{word-spacing:11.732036pt;}
.wsaf{word-spacing:11.795797pt;}
.wsae{word-spacing:11.809384pt;}
.ws49{word-spacing:11.987081pt;}
.wsb0{word-spacing:12.050842pt;}
.ws4e{word-spacing:12.114603pt;}
.ws18{word-spacing:12.369647pt;}
.wsec{word-spacing:12.624691pt;}
.wsc0{word-spacing:12.688452pt;}
.wsd4{word-spacing:12.815974pt;}
.wsd3{word-spacing:12.839963pt;}
.wsad{word-spacing:13.193766pt;}
.ws10b{word-spacing:13.198541pt;}
.ws54{word-spacing:13.326063pt;}
.ws8f{word-spacing:13.389824pt;}
.wsff{word-spacing:13.708629pt;}
.ws11c{word-spacing:13.899913pt;}
.ws137{word-spacing:14.346240pt;}
.ws34{word-spacing:14.537523pt;}
.ws128{word-spacing:16.259072pt;}
.ws106{word-spacing:16.386594pt;}
.wsfe{word-spacing:16.514116pt;}
.ws114{word-spacing:18.108143pt;}
.ws129{word-spacing:18.873276pt;}
.ws121{word-spacing:19.638409pt;}
.ws146{word-spacing:20.084736pt;}
.wsd2{word-spacing:20.323311pt;}
.ws12c{word-spacing:20.722347pt;}
.ws13e{word-spacing:21.423718pt;}
.ws3{word-spacing:22.252612pt;}
.ws13{word-spacing:22.610840pt;}
.ws12b{word-spacing:22.762701pt;}
.ws120{word-spacing:23.081506pt;}
.ws139{word-spacing:23.527834pt;}
.ws94{word-spacing:23.606236pt;}
.ws122{word-spacing:23.655356pt;}
.ws115{word-spacing:24.292966pt;}
.ws113{word-spacing:25.568188pt;}
.ws132{word-spacing:25.759471pt;}
.ws13b{word-spacing:26.269559pt;}
.ws111{word-spacing:26.779648pt;}
.ws11e{word-spacing:26.843409pt;}
.ws117{word-spacing:27.799825pt;}
.ws112{word-spacing:27.927347pt;}
.ws127{word-spacing:28.309914pt;}
.ws12f{word-spacing:28.692480pt;}
.ws13d{word-spacing:31.944294pt;}
.ws0{word-spacing:33.170200pt;}
.ws13a{word-spacing:33.602082pt;}
.ws12a{word-spacing:36.407569pt;}
.ws133{word-spacing:36.662613pt;}
.ws13c{word-spacing:43.230003pt;}
.ws118{word-spacing:46.099251pt;}
.ws142{word-spacing:49.223543pt;}
.wsfc{word-spacing:53.304252pt;}
.ws13f{word-spacing:56.237261pt;}
.ws134{word-spacing:56.492305pt;}
.wsf8{word-spacing:61.625071pt;}
.ws119{word-spacing:63.156888pt;}
.ws141{word-spacing:67.204164pt;}
.ws140{word-spacing:69.116996pt;}
.ws136{word-spacing:69.754607pt;}
.ws135{word-spacing:71.029828pt;}
.ws16{word-spacing:74.600067pt;}
.ws11a{word-spacing:77.087130pt;}
.ws143{word-spacing:77.405935pt;}
.ws11b{word-spacing:78.043546pt;}
.ws144{word-spacing:78.426112pt;}
.wsfd{word-spacing:79.765094pt;}
.wsfb{word-spacing:113.239654pt;}
.wsf2{word-spacing:153.435894pt;}
._41{margin-left:-36.275999pt;}
._16{margin-left:-30.920069pt;}
._42{margin-left:-29.326043pt;}
._2c{margin-left:-7.192228pt;}
._9{margin-left:-5.711188pt;}
._b{margin-left:-4.137156pt;}
._0{margin-left:-2.865200pt;}
._2{margin-left:-1.916880pt;}
._4{margin-left:-0.937153pt;}
._7{width:1.570910pt;}
._1{width:2.865200pt;}
._24{width:4.016947pt;}
._20{width:4.988266pt;}
._23{width:6.053524pt;}
._2b{width:7.266997pt;}
._1f{width:8.624055pt;}
._a{width:13.081555pt;}
._22{width:14.154957pt;}
._46{width:15.753031pt;}
._19{width:16.923847pt;}
._d{width:18.033257pt;}
._1e{width:19.163580pt;}
._37{width:20.535111pt;}
._12{width:21.518692pt;}
._14{width:23.157411pt;}
._e{width:24.203657pt;}
._c{width:25.480536pt;}
._6{width:26.524688pt;}
._18{width:27.635622pt;}
._3{width:28.692480pt;}
._1a{width:29.840035pt;}
._f{width:31.047591pt;}
._10{width:32.485595pt;}
._15{width:33.762153pt;}
._13{width:35.590819pt;}
._25{width:36.534677pt;}
._8{width:38.283668pt;}
._17{width:39.317598pt;}
._1d{width:40.455729pt;}
._5{width:41.483671pt;}
._11{width:42.818936pt;}
._2d{width:44.377787pt;}
._21{width:45.957503pt;}
._40{width:47.674843pt;}
._1b{width:49.100069pt;}
._28{width:52.981820pt;}
._29{width:54.236215pt;}
._2a{width:55.348654pt;}
._27{width:57.730930pt;}
._43{width:58.664229pt;}
._3e{width:63.688686pt;}
._3f{width:74.417261pt;}
._45{width:78.238877pt;}
._33{width:82.622171pt;}
._26{width:86.077200pt;}
._44{width:87.105713pt;}
._2e{width:97.543499pt;}
._1c{width:103.292400pt;}
._30{width:112.715006pt;}
._34{width:114.095944pt;}
._3b{width:116.880981pt;}
._32{width:132.095944pt;}
._2f{width:147.638643pt;}
._31{width:154.382582pt;}
._38{width:225.161829pt;}
._36{width:228.145483pt;}
._35{width:255.909042pt;}
._3a{width:327.585802pt;}
._3c{width:417.737050pt;}
._3d{width:687.414775pt;}
._39{width:870.115437pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:39.504000pt;}
.ya1{bottom:71.653333pt;}
.ya0{bottom:75.593333pt;}
.y1ae{bottom:79.354667pt;}
.y20{bottom:81.670667pt;}
.y13d{bottom:84.077333pt;}
.y167{bottom:84.917333pt;}
.y4e{bottom:85.217333pt;}
.y9f{bottom:86.528000pt;}
.yea{bottom:87.764000pt;}
.y151{bottom:88.513333pt;}
.ycb{bottom:88.997333pt;}
.y18e{bottom:90.365333pt;}
.y1ef{bottom:94.096000pt;}
.y1ad{bottom:98.616000pt;}
.y108{bottom:99.060000pt;}
.y1f{bottom:100.932000pt;}
.y13c{bottom:103.338667pt;}
.y166{bottom:104.178667pt;}
.y4d{bottom:104.478667pt;}
.y1cf{bottom:106.470667pt;}
.ye9{bottom:107.024000pt;}
.y116{bottom:107.058667pt;}
.y150{bottom:107.774667pt;}
.yca{bottom:108.257333pt;}
.y18d{bottom:109.626667pt;}
.y57{bottom:112.493333pt;}
.y1ee{bottom:113.357333pt;}
.y1ac{bottom:117.877333pt;}
.y107{bottom:118.321333pt;}
.y1e{bottom:120.193333pt;}
.y13b{bottom:122.600000pt;}
.y165{bottom:123.440000pt;}
.y4c{bottom:123.740000pt;}
.y9d{bottom:124.761333pt;}
.y1ce{bottom:125.732000pt;}
.ye8{bottom:126.285333pt;}
.y115{bottom:126.320000pt;}
.y14f{bottom:127.036000pt;}
.yc9{bottom:127.518667pt;}
.y9c{bottom:128.701333pt;}
.y18c{bottom:128.888000pt;}
.y56{bottom:131.754667pt;}
.y106{bottom:137.582667pt;}
.y1d{bottom:139.454667pt;}
.y9b{bottom:139.636000pt;}
.y13a{bottom:141.861333pt;}
.y164{bottom:142.701333pt;}
.y4b{bottom:143.001333pt;}
.y1cd{bottom:144.993333pt;}
.y1ed{bottom:145.269333pt;}
.ye7{bottom:145.546667pt;}
.y114{bottom:145.580000pt;}
.y14e{bottom:146.296000pt;}
.y9e{bottom:146.478667pt;}
.yc8{bottom:146.780000pt;}
.y18b{bottom:148.148000pt;}
.y1ab{bottom:150.420000pt;}
.y55{bottom:151.014667pt;}
.y105{bottom:156.842667pt;}
.y1c{bottom:158.716000pt;}
.y139{bottom:161.121333pt;}
.y163{bottom:161.962667pt;}
.y4a{bottom:162.261333pt;}
.y1cc{bottom:164.254667pt;}
.y1ec{bottom:164.530667pt;}
.ye6{bottom:164.808000pt;}
.y113{bottom:164.841333pt;}
.y14d{bottom:165.557333pt;}
.yc7{bottom:166.041333pt;}
.y18a{bottom:167.409333pt;}
.y1aa{bottom:169.680000pt;}
.y54{bottom:170.276000pt;}
.y9a{bottom:177.868000pt;}
.y1b{bottom:177.976000pt;}
.y138{bottom:180.382667pt;}
.y162{bottom:181.222667pt;}
.y49{bottom:181.522667pt;}
.y1eb{bottom:183.792000pt;}
.ye5{bottom:184.069333pt;}
.y112{bottom:184.102667pt;}
.y14c{bottom:184.818667pt;}
.yc6{bottom:185.302667pt;}
.y104{bottom:186.398667pt;}
.y53{bottom:189.537333pt;}
.y1cb{bottom:196.798667pt;}
.y189{bottom:196.965333pt;}
.y1a{bottom:197.237333pt;}
.y137{bottom:199.644000pt;}
.y48{bottom:200.784000pt;}
.y99{bottom:202.058667pt;}
.ye4{bottom:203.330667pt;}
.y111{bottom:203.364000pt;}
.y14b{bottom:204.080000pt;}
.yc5{bottom:204.564000pt;}
.y1a9{bottom:204.726667pt;}
.y52{bottom:208.798667pt;}
.y97{bottom:212.993333pt;}
.y1ea{bottom:215.705333pt;}
.y1ca{bottom:216.060000pt;}
.y161{bottom:216.269333pt;}
.y19{bottom:216.498667pt;}
.y136{bottom:218.905333pt;}
.y98{bottom:219.836000pt;}
.y47{bottom:220.045333pt;}
.ye3{bottom:222.590667pt;}
.y14a{bottom:223.341333pt;}
.yc4{bottom:223.824000pt;}
.y110{bottom:224.396000pt;}
.y51{bottom:228.060000pt;}
.y103{bottom:232.614667pt;}
.y1e9{bottom:234.965333pt;}
.y1c9{bottom:235.321333pt;}
.y10f{bottom:235.330667pt;}
.y135{bottom:238.166667pt;}
.y46{bottom:239.306667pt;}
.ye2{bottom:241.852000pt;}
.y149{bottom:242.602667pt;}
.y188{bottom:243.181333pt;}
.y50{bottom:247.321333pt;}
.y18{bottom:251.545333pt;}
.y102{bottom:251.876000pt;}
.y96{bottom:255.434667pt;}
.y134{bottom:257.428000pt;}
.y1a8{bottom:257.970667pt;}
.y45{bottom:258.568000pt;}
.yc3{bottom:258.870667pt;}
.y10e{bottom:259.840000pt;}
.ye1{bottom:261.113333pt;}
.y148{bottom:261.862667pt;}
.y187{bottom:262.442667pt;}
.y94{bottom:266.369333pt;}
.y1e8{bottom:266.878667pt;}
.y1c8{bottom:267.865333pt;}
.y160{bottom:269.514667pt;}
.y101{bottom:271.137333pt;}
.y95{bottom:273.212000pt;}
.y133{bottom:276.688000pt;}
.y1a7{bottom:277.232000pt;}
.y44{bottom:277.828000pt;}
.y10d{bottom:279.101333pt;}
.ye0{bottom:280.374667pt;}
.y147{bottom:281.124000pt;}
.y186{bottom:281.702667pt;}
.y4f{bottom:282.366667pt;}
.y1e7{bottom:286.140000pt;}
.y1c7{bottom:287.126667pt;}
.y15f{bottom:288.776000pt;}
.y100{bottom:290.397333pt;}
.y132{bottom:295.949333pt;}
.y1a6{bottom:296.492000pt;}
.y43{bottom:297.089333pt;}
.y10c{bottom:298.362667pt;}
.y146{bottom:300.385333pt;}
.y185{bottom:300.964000pt;}
.y17{bottom:304.789333pt;}
.y93{bottom:307.701333pt;}
.y15e{bottom:308.036000pt;}
.yff{bottom:309.658667pt;}
.ydf{bottom:309.930667pt;}
.yc2{bottom:312.116000pt;}
.y131{bottom:315.210667pt;}
.y1a5{bottom:315.753333pt;}
.y42{bottom:316.350667pt;}
.y10b{bottom:317.624000pt;}
.y1e6{bottom:318.052000pt;}
.y145{bottom:319.646667pt;}
.y1c6{bottom:319.672000pt;}
.y184{bottom:320.225333pt;}
.y16{bottom:324.050667pt;}
.y15d{bottom:327.297333pt;}
.yfe{bottom:328.920000pt;}
.y92{bottom:330.604000pt;}
.yc1{bottom:331.377333pt;}
.y91{bottom:334.545333pt;}
.y1a4{bottom:335.014667pt;}
.y41{bottom:335.612000pt;}
.y10a{bottom:336.885333pt;}
.y1e5{bottom:337.313333pt;}
.y1c5{bottom:338.933333pt;}
.y183{bottom:339.486667pt;}
.y130{bottom:344.766667pt;}
.y15c{bottom:346.558667pt;}
.yfd{bottom:348.181333pt;}
.y144{bottom:349.202667pt;}
.yc0{bottom:350.637333pt;}
.y1a3{bottom:354.276000pt;}
.y40{bottom:354.873333pt;}
.yde{bottom:356.145333pt;}
.y90{bottom:357.449333pt;}
.y1c4{bottom:358.193333pt;}
.y182{bottom:358.748000pt;}
.y15{bottom:359.252000pt;}
.y8f{bottom:361.389333pt;}
.yfc{bottom:367.442667pt;}
.y1e4{bottom:369.226667pt;}
.ybf{bottom:369.898667pt;}
.y3f{bottom:374.134667pt;}
.ydd{bottom:375.406667pt;}
.y14{bottom:377.317333pt;}
.y181{bottom:378.009333pt;}
.y8e{bottom:384.293333pt;}
.yfb{bottom:386.704000pt;}
.y1a2{bottom:386.813333pt;}
.y8d{bottom:388.233333pt;}
.y1e3{bottom:388.488000pt;}
.y15b{bottom:389.066667pt;}
.ybe{bottom:389.160000pt;}
.y1c3{bottom:390.738667pt;}
.y12f{bottom:390.982667pt;}
.y3e{bottom:393.394667pt;}
.ydc{bottom:394.668000pt;}
.y13{bottom:395.384000pt;}
.y143{bottom:395.417333pt;}
.y180{bottom:397.269333pt;}
.yfa{bottom:405.964000pt;}
.y1a1{bottom:406.074667pt;}
.y1e2{bottom:407.748000pt;}
.y15a{bottom:408.326667pt;}
.ybd{bottom:408.421333pt;}
.y1c2{bottom:410.000000pt;}
.y12e{bottom:410.242667pt;}
.y3d{bottom:412.656000pt;}
.y12{bottom:413.449333pt;}
.ydb{bottom:413.929333pt;}
.y142{bottom:414.678667pt;}
.y17f{bottom:416.530667pt;}
.y8c{bottom:417.042667pt;}
.y8b{bottom:420.982667pt;}
.yf9{bottom:425.225333pt;}
.y1a0{bottom:425.336000pt;}
.y159{bottom:427.588000pt;}
.ybc{bottom:427.682667pt;}
.y1c1{bottom:429.260000pt;}
.y12d{bottom:429.504000pt;}
.y11{bottom:431.514667pt;}
.y3c{bottom:431.917333pt;}
.yda{bottom:433.190667pt;}
.y17e{bottom:435.792000pt;}
.y1e1{bottom:439.661333pt;}
.y158{bottom:446.849333pt;}
.ybb{bottom:446.944000pt;}
.y1c0{bottom:448.521333pt;}
.y12c{bottom:448.765333pt;}
.y10{bottom:449.580000pt;}
.y3b{bottom:451.178667pt;}
.yd9{bottom:452.452000pt;}
.y8a{bottom:453.732000pt;}
.yf8{bottom:454.781333pt;}
.y17d{bottom:455.053333pt;}
.y19f{bottom:457.877333pt;}
.y1e0{bottom:458.922667pt;}
.y141{bottom:460.285333pt;}
.yba{bottom:466.204000pt;}
.yf{bottom:467.645333pt;}
.y12b{bottom:468.026667pt;}
.y3a{bottom:470.440000pt;}
.yd8{bottom:471.712000pt;}
.y17c{bottom:474.314667pt;}
.y19e{bottom:477.138667pt;}
.y89{bottom:477.697333pt;}
.y140{bottom:479.546667pt;}
.y1bf{bottom:481.066667pt;}
.yb9{bottom:485.465333pt;}
.ye{bottom:485.712000pt;}
.y12a{bottom:487.288000pt;}
.y84{bottom:488.632000pt;}
.y39{bottom:489.701333pt;}
.y1df{bottom:490.834667pt;}
.yd7{bottom:490.973333pt;}
.y17b{bottom:493.574667pt;}
.y19d{bottom:496.400000pt;}
.y88{bottom:497.056000pt;}
.y13f{bottom:498.808000pt;}
.y87{bottom:499.713333pt;}
.y1be{bottom:500.328000pt;}
.yf7{bottom:500.997333pt;}
.y86{bottom:501.269333pt;}
.yd{bottom:503.777333pt;}
.yb8{bottom:504.726667pt;}
.y85{bottom:505.210667pt;}
.y38{bottom:508.961333pt;}
.y1de{bottom:510.096000pt;}
.yd6{bottom:510.234667pt;}
.y17a{bottom:512.836000pt;}
.y13e{bottom:518.069333pt;}
.y1bd{bottom:519.588000pt;}
.yf6{bottom:520.258667pt;}
.yc{bottom:521.842667pt;}
.yb7{bottom:523.988000pt;}
.y37{bottom:528.222667pt;}
.y129{bottom:528.356000pt;}
.y19c{bottom:528.942667pt;}
.y1dd{bottom:529.357333pt;}
.yd5{bottom:529.496000pt;}
.y179{bottom:532.097333pt;}
.yf5{bottom:539.518667pt;}
.y109{bottom:539.790667pt;}
.yb{bottom:539.908000pt;}
.y83{bottom:542.342667pt;}
.yb6{bottom:543.249333pt;}
.y36{bottom:547.484000pt;}
.y128{bottom:548.148000pt;}
.y19b{bottom:548.202667pt;}
.yd4{bottom:548.757333pt;}
.y178{bottom:551.358667pt;}
.y1bc{bottom:552.133333pt;}
.y7e{bottom:553.277333pt;}
.ya{bottom:557.973333pt;}
.y1dc{bottom:561.270667pt;}
.y82{bottom:561.701333pt;}
.yb5{bottom:562.510667pt;}
.y81{bottom:564.357333pt;}
.y80{bottom:565.913333pt;}
.y35{bottom:566.745333pt;}
.y19a{bottom:567.464000pt;}
.y127{bottom:567.941333pt;}
.yd3{bottom:568.018667pt;}
.y7f{bottom:569.854667pt;}
.y1bb{bottom:571.394667pt;}
.yf4{bottom:574.720000pt;}
.y9{bottom:576.040000pt;}
.y1db{bottom:580.530667pt;}
.y177{bottom:580.914667pt;}
.yb4{bottom:581.770667pt;}
.y34{bottom:586.006667pt;}
.yd2{bottom:587.278667pt;}
.y126{bottom:587.733333pt;}
.y1ba{bottom:590.656000pt;}
.y8{bottom:594.105333pt;}
.y199{bottom:600.006667pt;}
.y33{bottom:605.266667pt;}
.y7d{bottom:606.101333pt;}
.yd1{bottom:606.540000pt;}
.y125{bottom:607.525333pt;}
.y1b9{bottom:609.916000pt;}
.yf3{bottom:609.921333pt;}
.y7{bottom:612.170667pt;}
.y1da{bottom:612.444000pt;}
.yb3{bottom:614.316000pt;}
.y198{bottom:619.268000pt;}
.y32{bottom:624.528000pt;}
.y7c{bottom:625.362667pt;}
.yd0{bottom:625.801333pt;}
.y124{bottom:625.968000pt;}
.yb2{bottom:629.636000pt;}
.y176{bottom:631.060000pt;}
.y1d9{bottom:631.705333pt;}
.yb1{bottom:633.577333pt;}
.y197{bottom:638.529333pt;}
.y6{bottom:639.141333pt;}
.y1b8{bottom:642.461333pt;}
.yf2{bottom:642.466667pt;}
.y31{bottom:643.789333pt;}
.y7b{bottom:644.624000pt;}
.ycf{bottom:645.062667pt;}
.y175{bottom:650.321333pt;}
.y1b7{bottom:661.722667pt;}
.yf1{bottom:661.728000pt;}
.y30{bottom:663.050667pt;}
.y1d8{bottom:663.617333pt;}
.y7a{bottom:663.885333pt;}
.yce{bottom:664.324000pt;}
.yb0{bottom:666.121333pt;}
.y174{bottom:670.113333pt;}
.y196{bottom:671.066667pt;}
.y123{bottom:672.017333pt;}
.y1b6{bottom:680.984000pt;}
.yf0{bottom:680.989333pt;}
.y2f{bottom:682.312000pt;}
.y1d7{bottom:682.878667pt;}
.y79{bottom:683.145333pt;}
.ycd{bottom:683.585333pt;}
.yaf{bottom:685.382667pt;}
.y173{bottom:689.905333pt;}
.y195{bottom:690.326667pt;}
.y122{bottom:691.278667pt;}
.y5{bottom:696.200000pt;}
.y2e{bottom:701.573333pt;}
.y1d6{bottom:702.140000pt;}
.y78{bottom:702.406667pt;}
.y172{bottom:709.166667pt;}
.y194{bottom:709.588000pt;}
.y121{bottom:710.538667pt;}
.yef{bottom:711.430667pt;}
.ycc{bottom:713.140000pt;}
.y1b5{bottom:713.528000pt;}
.yae{bottom:717.926667pt;}
.y2d{bottom:720.833333pt;}
.y77{bottom:721.668000pt;}
.yee{bottom:722.364000pt;}
.y193{bottom:728.849333pt;}
.y171{bottom:728.958667pt;}
.y120{bottom:729.800000pt;}
.y1b4{bottom:732.789333pt;}
.y1d5{bottom:734.053333pt;}
.yad{bottom:737.188000pt;}
.y2c{bottom:740.094667pt;}
.y76{bottom:740.929333pt;}
.y192{bottom:748.110667pt;}
.y170{bottom:748.220000pt;}
.y11f{bottom:749.061333pt;}
.y4{bottom:750.357333pt;}
.y1b3{bottom:752.050667pt;}
.y1d4{bottom:753.313333pt;}
.y2b{bottom:759.356000pt;}
.yed{bottom:766.606667pt;}
.y191{bottom:767.372000pt;}
.y74{bottom:767.700000pt;}
.y16f{bottom:768.013333pt;}
.y11e{bottom:768.322667pt;}
.yac{bottom:769.733333pt;}
.y1b2{bottom:771.310667pt;}
.y1d3{bottom:772.574667pt;}
.y2a{bottom:778.617333pt;}
.y6c{bottom:783.860000pt;}
.y190{bottom:786.633333pt;}
.y11d{bottom:787.584000pt;}
.y3{bottom:787.750667pt;}
.y16e{bottom:787.805333pt;}
.y6b{bottom:788.642667pt;}
.yab{bottom:788.994667pt;}
.y73{bottom:789.418667pt;}
.y6a{bottom:793.424000pt;}
.y29{bottom:797.878667pt;}
.y69{bottom:798.206667pt;}
.yec{bottom:799.150667pt;}
.y68{bottom:802.988000pt;}
.y1b1{bottom:803.856000pt;}
.y1d2{bottom:804.488000pt;}
.y72{bottom:805.801333pt;}
.y11c{bottom:806.845333pt;}
.y16d{bottom:807.597333pt;}
.y67{bottom:807.770667pt;}
.y66{bottom:812.553333pt;}
.y28{bottom:817.140000pt;}
.y65{bottom:817.334667pt;}
.yaa{bottom:821.538667pt;}
.y18f{bottom:821.678667pt;}
.y64{bottom:822.117333pt;}
.y1b0{bottom:823.117333pt;}
.y1d1{bottom:823.749333pt;}
.y157{bottom:824.910667pt;}
.y11b{bottom:826.105333pt;}
.y63{bottom:826.898667pt;}
.y16c{bottom:827.389333pt;}
.y71{bottom:827.518667pt;}
.yeb{bottom:828.706667pt;}
.y2{bottom:835.072000pt;}
.y27{bottom:836.400000pt;}
.y75{bottom:837.260000pt;}
.ya9{bottom:840.800000pt;}
.y1af{bottom:842.378667pt;}
.y1d0{bottom:843.009333pt;}
.y70{bottom:843.902667pt;}
.y156{bottom:844.702667pt;}
.y11a{bottom:845.366667pt;}
.y16b{bottom:846.650667pt;}
.y62{bottom:855.592000pt;}
.y26{bottom:855.661333pt;}
.y61{bottom:860.373333pt;}
.ya8{bottom:862.100000pt;}
.y155{bottom:864.494667pt;}
.y119{bottom:864.628000pt;}
.y60{bottom:865.156000pt;}
.y6f{bottom:865.620000pt;}
.ya7{bottom:866.041333pt;}
.y16a{bottom:866.444000pt;}
.y1{bottom:868.281333pt;}
.y5f{bottom:869.938667pt;}
.y5e{bottom:874.720000pt;}
.y25{bottom:874.922667pt;}
.ya6{bottom:876.976000pt;}
.y5d{bottom:879.502667pt;}
.y6e{bottom:882.002667pt;}
.y118{bottom:883.889333pt;}
.y5c{bottom:884.284000pt;}
.y154{bottom:884.288000pt;}
.y169{bottom:885.704000pt;}
.y5b{bottom:889.066667pt;}
.y5a{bottom:893.849333pt;}
.y24{bottom:894.184000pt;}
.y59{bottom:898.630667pt;}
.y117{bottom:903.150667pt;}
.y6d{bottom:903.721333pt;}
.y153{bottom:904.080000pt;}
.y168{bottom:904.146667pt;}
.ya4{bottom:910.354667pt;}
.y58{bottom:912.977333pt;}
.y23{bottom:913.445333pt;}
.ya3{bottom:914.296000pt;}
.y152{bottom:923.408000pt;}
.ya2{bottom:925.229333pt;}
.ya5{bottom:932.072000pt;}
.y22{bottom:932.706667pt;}
.hb{height:2.550443pt;}
.h4{height:28.734867pt;}
.h19{height:29.925069pt;}
.h12{height:33.301888pt;}
.h10{height:33.307221pt;}
.h5{height:40.610943pt;}
.h6{height:43.636400pt;}
.h23{height:44.250180pt;}
.h7{height:47.820800pt;}
.h20{height:48.341069pt;}
.ha{height:51.870867pt;}
.h9{height:51.876201pt;}
.h1e{height:53.066402pt;}
.h14{height:55.060201pt;}
.h16{height:55.065534pt;}
.h3{height:57.384800pt;}
.h22{height:63.938133pt;}
.h2{height:67.615733pt;}
.he{height:67.636201pt;}
.h8{height:68.861600pt;}
.h15{height:70.820201pt;}
.h17{height:70.825534pt;}
.h1{height:77.911400pt;}
.hf{height:89.089109pt;}
.h21{height:90.956800pt;}
.hd{height:91.554133pt;}
.hc{height:91.559467pt;}
.h18{height:95.006867pt;}
.h1f{height:96.197069pt;}
.h11{height:105.937109pt;}
.h13{height:105.942443pt;}
.h1c{height:107.319467pt;}
.h1a{height:136.193109pt;}
.h1d{height:151.953109pt;}
.h1b{height:154.505534pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:84.661333pt;}
.x47{left:92.632000pt;}
.x45{left:98.728000pt;}
.x4a{left:103.737333pt;}
.x5{left:108.073333pt;}
.x1{left:109.274667pt;}
.x4b{left:116.744000pt;}
.x8{left:123.681333pt;}
.x41{left:127.709333pt;}
.x7{left:145.500000pt;}
.x11{left:161.365333pt;}
.x19{left:163.726667pt;}
.x2{left:177.729333pt;}
.x23{left:187.025333pt;}
.x4c{left:188.934667pt;}
.x27{left:190.086667pt;}
.x3c{left:194.704000pt;}
.x42{left:196.380000pt;}
.x12{left:200.192000pt;}
.x1a{left:202.553333pt;}
.x43{left:206.462667pt;}
.x46{left:209.248000pt;}
.x2a{left:216.146667pt;}
.x2e{left:218.172000pt;}
.x21{left:220.570667pt;}
.x25{left:223.114667pt;}
.x36{left:224.333333pt;}
.x2c{left:253.857333pt;}
.x13{left:255.361333pt;}
.x33{left:256.721333pt;}
.x1b{left:257.722667pt;}
.x3b{left:258.746667pt;}
.x37{left:261.421333pt;}
.x48{left:269.201333pt;}
.x4d{left:276.649333pt;}
.x17{left:282.677333pt;}
.x1f{left:284.702667pt;}
.xb{left:310.230667pt;}
.xe{left:325.993333pt;}
.x4{left:328.533333pt;}
.xf{left:330.278667pt;}
.xc{left:331.330667pt;}
.xd{left:332.948000pt;}
.x24{left:342.174667pt;}
.x28{left:344.200000pt;}
.x3{left:349.145333pt;}
.x3f{left:357.328000pt;}
.x2b{left:370.722667pt;}
.x6{left:373.920000pt;}
.x14{left:392.713333pt;}
.x1c{left:394.038667pt;}
.x3e{left:395.297333pt;}
.x44{left:398.117333pt;}
.x4e{left:400.866667pt;}
.xa{left:402.018667pt;}
.x34{left:409.738667pt;}
.x40{left:429.328000pt;}
.x35{left:446.826667pt;}
.x3d{left:459.484000pt;}
.x49{left:510.028000pt;}
.x31{left:522.753333pt;}
.x39{left:525.782667pt;}
.x2f{left:541.480000pt;}
.x2d{left:543.505333pt;}
.x26{left:547.898667pt;}
.x22{left:549.405333pt;}
.x32{left:559.841333pt;}
.x3a{left:562.870667pt;}
.x29{left:586.556000pt;}
.x1d{left:588.886667pt;}
.x15{left:590.576000pt;}
.x1e{left:610.472000pt;}
.x16{left:612.161333pt;}
.x20{left:643.780000pt;}
.x18{left:646.141333pt;}
.x30{left:683.753333pt;}
.x38{left:684.757333pt;}
.x10{left:707.237333pt;}
}




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