
    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_76a6fcba35b2121793722cfd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50dc02961daa182c27b62959.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_53c09f8f8c164778b376f761.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738000;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_47f14eaafe0a74af662348fa.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_c05e3028a9d08337100309ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00193138598b3c8a054cb7c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738000;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_e8b2a01ded949659255c9828.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_507b59ed9db71f35c6f25ec0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a116985bc6deff06a73434c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914000;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_1388bc2b3792d1f28605a83b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_31324a609e286d68644a3ae7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4e7828408d031b679c3530a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.839000;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_d285266cff04116a5ddb92ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b8a8e666776ef602e1be2091.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687000;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_27cedc0dd6a65a0121c5be37.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e93987653643e56ffabd4934.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v19{vertical-align:-172.278000px;}
.v27{vertical-align:-101.142000px;}
.v1e{vertical-align:-79.626000px;}
.vf{vertical-align:-58.104000px;}
.v3{vertical-align:-52.614000px;}
.v25{vertical-align:-21.516000px;}
.v16{vertical-align:-18.930000px;}
.v2c{vertical-align:-16.062000px;}
.v1b{vertical-align:-12.288000px;}
.v2b{vertical-align:-11.160000px;}
.v20{vertical-align:-4.302000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.796000px;}
.va{vertical-align:20.922000px;}
.v18{vertical-align:24.738000px;}
.v7{vertical-align:26.034000px;}
.v1{vertical-align:29.622000px;}
.vc{vertical-align:32.070000px;}
.v9{vertical-align:34.872000px;}
.vb{vertical-align:46.956000px;}
.v5{vertical-align:49.206000px;}
.v17{vertical-align:50.772000px;}
.v15{vertical-align:52.752000px;}
.v8{vertical-align:53.802000px;}
.v14{vertical-align:55.794000px;}
.v1a{vertical-align:58.104000px;}
.v1f{vertical-align:59.604000px;}
.v2a{vertical-align:68.142000px;}
.v13{vertical-align:74.724000px;}
.v6{vertical-align:78.822000px;}
.ve{vertical-align:82.836000px;}
.v21{vertical-align:84.618000px;}
.v24{vertical-align:89.664000px;}
.v11{vertical-align:97.734000px;}
.v10{vertical-align:101.142000px;}
.v22{vertical-align:114.234000px;}
.v1c{vertical-align:122.664000px;}
.v26{vertical-align:133.146000px;}
.v23{vertical-align:138.870000px;}
.v4{vertical-align:150.348000px;}
.v1d{vertical-align:171.864000px;}
.v29{vertical-align:174.276000px;}
.v2{vertical-align:184.164000px;}
.v12{vertical-align:185.760000px;}
.v28{vertical-align:207.276000px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000102px;}
.ls2a{letter-spacing:0.000273px;}
.lsab{letter-spacing:0.000278px;}
.ls4f{letter-spacing:0.000545px;}
.lsaf{letter-spacing:0.000760px;}
.ls9{letter-spacing:0.001114px;}
.ls1{letter-spacing:0.001695px;}
.lsc4{letter-spacing:0.003055px;}
.ls3e{letter-spacing:0.003191px;}
.ls81{letter-spacing:0.003600px;}
.ls2e{letter-spacing:0.003848px;}
.ls90{letter-spacing:0.004391px;}
.ls50{letter-spacing:0.004527px;}
.ls10{letter-spacing:0.004664px;}
.lsbf{letter-spacing:0.005053px;}
.ls15{letter-spacing:0.005591px;}
.ls9f{letter-spacing:0.007665px;}
.ls97{letter-spacing:0.007914px;}
.lsa6{letter-spacing:0.010932px;}
.lsa2{letter-spacing:0.013665px;}
.ls68{letter-spacing:0.014824px;}
.lsa9{letter-spacing:0.017119px;}
.ls93{letter-spacing:0.025494px;}
.lsad{letter-spacing:1.012664px;}
.lsd3{letter-spacing:1.243336px;}
.ls13{letter-spacing:1.291156px;}
.lsa{letter-spacing:1.386797px;}
.ls6a{letter-spacing:1.434618px;}
.ls66{letter-spacing:1.936742px;}
.ls7f{letter-spacing:2.367130px;}
.ls7e{letter-spacing:2.379178px;}
.ls5c{letter-spacing:2.401300px;}
.ls5a{letter-spacing:2.407300px;}
.ls19{letter-spacing:2.438861px;}
.lsb8{letter-spacing:2.688179px;}
.lse{letter-spacing:2.773595px;}
.ls8a{letter-spacing:2.825644px;}
.ls61{letter-spacing:2.968660px;}
.ls75{letter-spacing:2.974660px;}
.ls79{letter-spacing:2.974689px;}
.ls59{letter-spacing:2.984915px;}
.lsaa{letter-spacing:2.986059px;}
.ls98{letter-spacing:2.986200px;}
.ls43{letter-spacing:2.987236px;}
.lsa8{letter-spacing:2.989115px;}
.ls5e{letter-spacing:2.990915px;}
.ls6d{letter-spacing:2.992146px;}
.ls58{letter-spacing:2.992200px;}
.ls7a{letter-spacing:3.280664px;}
.ls1b{letter-spacing:3.400404px;}
.ls1d{letter-spacing:3.406404px;}
.ls17{letter-spacing:4.016947px;}
.lsbe{letter-spacing:4.050837px;}
.ls8f{letter-spacing:4.058738px;}
.ls8d{letter-spacing:4.064738px;}
.lsb9{letter-spacing:4.262559px;}
.ls12{letter-spacing:4.265644px;}
.lsd8{letter-spacing:4.876664px;}
.ls25{letter-spacing:4.882664px;}
.ls16{letter-spacing:4.963488px;}
.ls3f{letter-spacing:4.969488px;}
.ls99{letter-spacing:5.260266px;}
.ls14{letter-spacing:5.727032px;}
.ls11{letter-spacing:5.743488px;}
.ls60{letter-spacing:5.749488px;}
.ls32{letter-spacing:6.671518px;}
.ls31{letter-spacing:6.683591px;}
.ls7d{letter-spacing:6.790664px;}
.ls3d{letter-spacing:6.959691px;}
.lsba{letter-spacing:7.139553px;}
.lsd{letter-spacing:7.675238px;}
.lsb7{letter-spacing:9.575704px;}
.lsb3{letter-spacing:9.755443px;}
.ls38{letter-spacing:11.907379px;}
.lsc3{letter-spacing:11.942916px;}
.ls86{letter-spacing:11.955191px;}
.lsa3{letter-spacing:11.962932px;}
.ls3b{letter-spacing:11.973857px;}
.ls37{letter-spacing:11.979110px;}
.ls42{letter-spacing:13.573488px;}
.ls8c{letter-spacing:13.651300px;}
.ls88{letter-spacing:13.657300px;}
.ls94{letter-spacing:14.561434px;}
.ls6b{letter-spacing:14.917376px;}
.ls84{letter-spacing:14.922200px;}
.lsd9{letter-spacing:14.928780px;}
.ls8{letter-spacing:14.936915px;}
.ls2{letter-spacing:14.942915px;}
.ls29{letter-spacing:14.944200px;}
.ls49{letter-spacing:14.950200px;}
.ls6c{letter-spacing:14.959196px;}
.ls92{letter-spacing:14.964020px;}
.ls63{letter-spacing:14.970020px;}
.ls7{letter-spacing:15.924326px;}
.ls27{letter-spacing:15.935518px;}
.ls77{letter-spacing:15.936409px;}
.ls48{letter-spacing:15.937473px;}
.ls1c{letter-spacing:15.940664px;}
.ls46{letter-spacing:15.941518px;}
.ls64{letter-spacing:15.942409px;}
.ls47{letter-spacing:15.943473px;}
.ls55{letter-spacing:15.946664px;}
.ls4e{letter-spacing:15.948305px;}
.ls53{letter-spacing:15.950260px;}
.ls56{letter-spacing:15.954305px;}
.ls54{letter-spacing:15.956260px;}
.ls26{letter-spacing:15.996058px;}
.lsc{letter-spacing:16.352022px;}
.lsb{letter-spacing:16.358022px;}
.lsa4{letter-spacing:16.915009px;}
.ls3c{letter-spacing:17.861069px;}
.ls4a{letter-spacing:18.363187px;}
.ls33{letter-spacing:18.881591px;}
.ls4c{letter-spacing:18.926915px;}
.ls6{letter-spacing:18.928200px;}
.ls5{letter-spacing:18.934200px;}
.ls39{letter-spacing:19.869542px;}
.lsdd{letter-spacing:19.905275px;}
.ls70{letter-spacing:19.919518px;}
.ls24{letter-spacing:19.924664px;}
.ls4d{letter-spacing:19.925518px;}
.ls51{letter-spacing:19.925591px;}
.lscf{letter-spacing:19.930664px;}
.ls30{letter-spacing:19.931591px;}
.ls4{letter-spacing:19.941274px;}
.ls2b{letter-spacing:20.013005px;}
.lsda{letter-spacing:20.940780px;}
.lsc9{letter-spacing:20.946780px;}
.ls9c{letter-spacing:21.806285px;}
.ls9b{letter-spacing:21.839591px;}
.lsc8{letter-spacing:22.715591px;}
.lsb2{letter-spacing:22.909087px;}
.ls1a{letter-spacing:22.910915px;}
.lsbb{letter-spacing:22.912059px;}
.ls20{letter-spacing:22.912200px;}
.ls35{letter-spacing:22.916915px;}
.ls3{letter-spacing:22.918200px;}
.lsc2{letter-spacing:23.025715px;}
.lsc5{letter-spacing:23.130305px;}
.lsdc{letter-spacing:23.384371px;}
.ls52{letter-spacing:23.411591px;}
.ls8b{letter-spacing:23.416527px;}
.lsca{letter-spacing:23.417591px;}
.ls3a{letter-spacing:24.185644px;}
.lsc6{letter-spacing:24.272915px;}
.lsd2{letter-spacing:24.727488px;}
.lsbd{letter-spacing:25.018404px;}
.ls18{letter-spacing:25.105920px;}
.ls67{letter-spacing:25.679770px;}
.lsa1{letter-spacing:25.823232px;}
.lsc1{letter-spacing:25.996770px;}
.ls5d{letter-spacing:26.402915px;}
.lsb6{letter-spacing:26.638664px;}
.ls6f{letter-spacing:27.042662px;}
.lsa0{letter-spacing:27.903437px;}
.lscb{letter-spacing:28.067691px;}
.ls69{letter-spacing:28.096200px;}
.lsc0{letter-spacing:28.204770px;}
.ls96{letter-spacing:28.354200px;}
.ls28{letter-spacing:28.477286px;}
.ls82{letter-spacing:29.122867px;}
.ls34{letter-spacing:29.194598px;}
.ls80{letter-spacing:29.624986px;}
.ls5f{letter-spacing:29.840179px;}
.ls23{letter-spacing:29.911910px;}
.ls1f{letter-spacing:30.270566px;}
.ls7c{letter-spacing:30.414029px;}
.ls8e{letter-spacing:30.557491px;}
.lsdb{letter-spacing:31.203072px;}
.ls78{letter-spacing:31.561728px;}
.ls4b{letter-spacing:31.848653px;}
.ls57{letter-spacing:33.641933px;}
.ls74{letter-spacing:34.646170px;}
.lsd0{letter-spacing:34.853691px;}
.ls44{letter-spacing:35.148288px;}
.ls91{letter-spacing:35.220019px;}
.ls72{letter-spacing:36.379488px;}
.ls9a{letter-spacing:37.421644px;}
.lsbc{letter-spacing:38.759518px;}
.ls40{letter-spacing:39.068022px;}
.ls89{letter-spacing:44.684227px;}
.lsa5{letter-spacing:47.935300px;}
.ls5b{letter-spacing:48.346664px;}
.lsb4{letter-spacing:48.625955px;}
.lsb5{letter-spacing:48.631955px;}
.ls9d{letter-spacing:51.173644px;}
.ls9e{letter-spacing:52.351300px;}
.lsb0{letter-spacing:53.006227px;}
.ls2f{letter-spacing:53.659488px;}
.lsc7{letter-spacing:53.665488px;}
.ls2d{letter-spacing:57.485518px;}
.ls62{letter-spacing:57.507448px;}
.ls83{letter-spacing:57.513448px;}
.ls6e{letter-spacing:59.198899px;}
.ls21{letter-spacing:60.415300px;}
.ls2c{letter-spacing:60.478200px;}
.lsac{letter-spacing:60.560227px;}
.ls65{letter-spacing:62.852899px;}
.ls85{letter-spacing:62.858899px;}
.ls7b{letter-spacing:64.216163px;}
.ls36{letter-spacing:64.216404px;}
.ls45{letter-spacing:64.792404px;}
.ls1e{letter-spacing:64.798404px;}
.lsd7{letter-spacing:66.755691px;}
.lsd4{letter-spacing:68.845488px;}
.ls87{letter-spacing:69.044022px;}
.lsf{letter-spacing:69.713691px;}
.lscc{letter-spacing:88.877691px;}
.lsae{letter-spacing:89.359114px;}
.ls22{letter-spacing:90.785691px;}
.lsd5{letter-spacing:96.245691px;}
.lsd1{letter-spacing:96.251691px;}
.lsa7{letter-spacing:112.411300px;}
.lsd6{letter-spacing:122.975691px;}
.lsb1{letter-spacing:124.603114px;}
.ls76{letter-spacing:125.584938px;}
.ls71{letter-spacing:127.555021px;}
.lsce{letter-spacing:145.391691px;}
.lscd{letter-spacing:145.397691px;}
.ls73{letter-spacing:1105.951642px;}
.ls95{letter-spacing:2574.583114px;}
.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;}
}
.ws95{word-spacing:-83.710310px;}
.ws92{word-spacing:-71.802931px;}
.ws1a{word-spacing:-59.823821px;}
.ws1e{word-spacing:-56.789591px;}
.ws16{word-spacing:-45.664082px;}
.ws26{word-spacing:-33.756703px;}
.ws24{word-spacing:-33.684972px;}
.ws93{word-spacing:-25.794540px;}
.ws18{word-spacing:-19.510886px;}
.ws80{word-spacing:-17.932800px;}
.wsc{word-spacing:-15.278643px;}
.ws61{word-spacing:-8.235327px;}
.ws4d{word-spacing:-7.579428px;}
.ws41{word-spacing:-7.577833px;}
.ws3f{word-spacing:-7.576237px;}
.ws4e{word-spacing:-7.549290px;}
.ws42{word-spacing:-7.544886px;}
.ws40{word-spacing:-7.543290px;}
.ws7a{word-spacing:-5.021184px;}
.ws19{word-spacing:-3.586560px;}
.ws27{word-spacing:-3.514829px;}
.ws73{word-spacing:-2.869248px;}
.ws96{word-spacing:-1.936742px;}
.ws59{word-spacing:-1.649818px;}
.ws83{word-spacing:-1.291162px;}
.ws88{word-spacing:-1.219430px;}
.ws14{word-spacing:-1.075968px;}
.ws91{word-spacing:-0.932506px;}
.ws56{word-spacing:-0.860774px;}
.ws32{word-spacing:-0.645581px;}
.ws54{word-spacing:-0.573850px;}
.ws69{word-spacing:-0.358656px;}
.ws8a{word-spacing:-0.215194px;}
.wsa2{word-spacing:-0.107596px;}
.ws9c{word-spacing:-0.071731px;}
.wsa9{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.wsb1{word-spacing:0.251058px;}
.wsae{word-spacing:0.310833px;}
.ws34{word-spacing:0.358656px;}
.ws1f{word-spacing:0.382921px;}
.ws4b{word-spacing:0.405218px;}
.ws17{word-spacing:0.430387px;}
.ws65{word-spacing:1.004237px;}
.ws3{word-spacing:1.028140px;}
.ws7c{word-spacing:1.434624px;}
.ws9e{word-spacing:1.506355px;}
.wsad{word-spacing:1.805223px;}
.ws29{word-spacing:2.080205px;}
.ws82{word-spacing:2.295398px;}
.ws89{word-spacing:2.438861px;}
.wsb0{word-spacing:2.701857px;}
.ws9d{word-spacing:2.797517px;}
.wsaa{word-spacing:2.821408px;}
.wsac{word-spacing:2.940960px;}
.ws36{word-spacing:2.940979px;}
.wsa3{word-spacing:2.952915px;}
.ws35{word-spacing:3.012710px;}
.ws99{word-spacing:3.084442px;}
.ws79{word-spacing:3.156173px;}
.ws78{word-spacing:3.227904px;}
.wsb2{word-spacing:3.251793px;}
.ws1{word-spacing:3.299613px;}
.ws6a{word-spacing:3.371366px;}
.ws63{word-spacing:3.443098px;}
.ws85{word-spacing:3.801754px;}
.ws94{word-spacing:3.863351px;}
.ws5{word-spacing:3.873485px;}
.ws6d{word-spacing:3.890959px;}
.ws52{word-spacing:3.891972px;}
.ws6{word-spacing:3.945216px;}
.ws9b{word-spacing:4.016947px;}
.ws22{word-spacing:4.590797px;}
.wsd{word-spacing:4.794003px;}
.ws6b{word-spacing:4.877722px;}
.ws5f{word-spacing:5.021184px;}
.ws9a{word-spacing:5.092915px;}
.ws71{word-spacing:5.164646px;}
.ws9f{word-spacing:5.331984px;}
.ws38{word-spacing:5.379840px;}
.ws2a{word-spacing:5.451571px;}
.wsab{word-spacing:5.642817px;}
.ws8c{word-spacing:5.666765px;}
.ws81{word-spacing:5.738496px;}
.ws7f{word-spacing:5.810227px;}
.wsa1{word-spacing:5.869964px;}
.ws7e{word-spacing:5.881958px;}
.wse{word-spacing:6.121021px;}
.ws68{word-spacing:6.312346px;}
.ws84{word-spacing:6.455808px;}
.ws8e{word-spacing:6.671002px;}
.ws64{word-spacing:6.742733px;}
.ws74{word-spacing:6.814464px;}
.ws15{word-spacing:7.173120px;}
.ws86{word-spacing:7.603507px;}
.ws3d{word-spacing:7.746970px;}
.ws23{word-spacing:7.818701px;}
.wsa0{word-spacing:7.974065px;}
.ws60{word-spacing:8.177357px;}
.ws72{word-spacing:8.249088px;}
.ws11{word-spacing:8.260988px;}
.wsaf{word-spacing:8.452270px;}
.wsa8{word-spacing:8.559866px;}
.ws4{word-spacing:8.739193px;}
.wsa5{word-spacing:8.918520px;}
.ws33{word-spacing:9.325056px;}
.ws47{word-spacing:9.898906px;}
.ws10{word-spacing:9.934705px;}
.ws6c{word-spacing:10.042368px;}
.wsb3{word-spacing:10.054256px;}
.wsa4{word-spacing:10.114032px;}
.ws5d{word-spacing:10.185830px;}
.wsb{word-spacing:10.401024px;}
.ws49{word-spacing:10.759680px;}
.wsbc{word-spacing:10.831411px;}
.wsa7{word-spacing:10.962845px;}
.ws50{word-spacing:11.190067px;}
.wsa6{word-spacing:11.261723px;}
.ws98{word-spacing:11.548723px;}
.ws53{word-spacing:11.692186px;}
.ws8f{word-spacing:11.763917px;}
.ws2b{word-spacing:11.979110px;}
.ws97{word-spacing:12.050842px;}
.wsf{word-spacing:12.158357px;}
.wsb4{word-spacing:12.337684px;}
.ws87{word-spacing:12.624691px;}
.ws43{word-spacing:12.696422px;}
.ws44{word-spacing:12.768154px;}
.ws3e{word-spacing:12.839885px;}
.ws5b{word-spacing:13.126810px;}
.ws51{word-spacing:13.844122px;}
.ws76{word-spacing:14.346240px;}
.ws7d{word-spacing:14.633165px;}
.ws90{word-spacing:14.872639px;}
.ws2d{word-spacing:14.874044px;}
.ws2e{word-spacing:14.878639px;}
.ws1b{word-spacing:14.917376px;}
.ws3c{word-spacing:15.135283px;}
.ws3b{word-spacing:15.146959px;}
.ws9{word-spacing:15.637402px;}
.ws3a{word-spacing:16.282982px;}
.ws77{word-spacing:16.785101px;}
.ws6f{word-spacing:17.362639px;}
.ws25{word-spacing:17.368639px;}
.ws8b{word-spacing:19.302044px;}
.ws1d{word-spacing:19.578044px;}
.wsb5{word-spacing:19.618352px;}
.ws58{word-spacing:20.443392px;}
.wsbf{word-spacing:22.535401px;}
.ws37{word-spacing:23.312640px;}
.ws13{word-spacing:23.886490px;}
.ws28{word-spacing:24.675533px;}
.ws39{word-spacing:24.890726px;}
.ws8d{word-spacing:25.177651px;}
.ws67{word-spacing:25.751501px;}
.ws2c{word-spacing:25.966694px;}
.ws55{word-spacing:26.038426px;}
.ws62{word-spacing:26.325350px;}
.ws1c{word-spacing:26.827469px;}
.ws7b{word-spacing:26.970931px;}
.wsa{word-spacing:27.042662px;}
.ws6e{word-spacing:27.544781px;}
.ws21{word-spacing:27.616512px;}
.ws5e{word-spacing:28.046899px;}
.ws70{word-spacing:28.190362px;}
.ws30{word-spacing:28.866044px;}
.ws2{word-spacing:29.828024px;}
.ws5c{word-spacing:30.557491px;}
.ws4a{word-spacing:31.080044px;}
.wsba{word-spacing:31.131341px;}
.wsb9{word-spacing:31.203072px;}
.ws48{word-spacing:31.274803px;}
.ws2f{word-spacing:31.489997px;}
.ws45{word-spacing:32.207309px;}
.ws31{word-spacing:32.628044px;}
.ws0{word-spacing:34.861363px;}
.ws4f{word-spacing:35.148288px;}
.wsbb{word-spacing:36.869837px;}
.ws5a{word-spacing:37.443686px;}
.ws46{word-spacing:38.232730px;}
.ws75{word-spacing:38.806579px;}
.ws7{word-spacing:50.713958px;}
.wsbd{word-spacing:59.752090px;}
.wsb7{word-spacing:124.524530px;}
.wsb6{word-spacing:140.544391px;}
.wsb8{word-spacing:162.123382px;}
.wsbe{word-spacing:170.433331px;}
.ws4c{word-spacing:329.389670px;}
.ws66{word-spacing:1664.737690px;}
.ws57{word-spacing:2144.117299px;}
.ws8{word-spacing:2323.230106px;}
._2f{margin-left:-30.760813px;}
._2e{margin-left:-28.226053px;}
._0{margin-left:-6.671002px;}
._6{margin-left:-4.961375px;}
._14{margin-left:-3.933220px;}
._1{margin-left:-2.223667px;}
._2{margin-left:-1.063991px;}
._4{width:1.673717px;}
._17{width:2.917080px;}
._13{width:4.483170px;}
._28{width:7.168788px;}
._20{width:11.679110px;}
._22{width:15.256337px;}
._3{width:16.605721px;}
._29{width:17.693614px;}
._2c{width:18.876819px;}
._1b{width:20.036782px;}
._1a{width:23.288863px;}
._12{width:24.436440px;}
._26{width:25.464576px;}
._7{width:26.659918px;}
._21{width:28.812043px;}
._15{width:29.887800px;}
._1d{width:31.178894px;}
._11{width:32.279040px;}
._2b{width:34.155796px;}
._1c{width:35.363693px;}
._1e{width:37.491518px;}
._27{width:39.622788px;}
._5{width:42.620003px;}
._23{width:44.736370px;}
._10{width:51.407371px;}
._2d{width:54.922200px;}
._19{width:56.490282px;}
._24{width:59.412282px;}
._18{width:60.906282px;}
._1f{width:65.028282px;}
._8{width:70.224845px;}
._31{width:171.436421px;}
._30{width:191.521022px;}
._33{width:391.867546px;}
._2a{width:441.648943px;}
._16{width:469.301321px;}
._25{width:676.042884px;}
._32{width:1031.925043px;}
._c{width:1283.342878px;}
._9{width:1657.253746px;}
._a{width:1795.503667px;}
._f{width:1828.715213px;}
._e{width:1962.135245px;}
._b{width:2100.707946px;}
._d{width:2177.472307px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y18{bottom:90.067500px;}
.y124{bottom:108.000000px;}
.yf9{bottom:109.111500px;}
.y144{bottom:111.810000px;}
.y145{bottom:112.119000px;}
.y41{bottom:112.735500px;}
.yd0{bottom:119.515500px;}
.y1b9{bottom:120.051000px;}
.y146{bottom:120.663000px;}
.y42{bottom:121.588500px;}
.y199{bottom:124.374000px;}
.ycf{bottom:131.815500px;}
.y143{bottom:132.963000px;}
.y19a{bottom:133.227000px;}
.y17{bottom:134.329500px;}
.y123{bottom:143.566500px;}
.yf8{bottom:144.678000px;}
.yb7{bottom:146.598000px;}
.y1b8{bottom:150.535500px;}
.y40{bottom:150.925500px;}
.y3f{bottom:156.306000px;}
.y198{bottom:162.564000px;}
.y16{bottom:164.815500px;}
.y197{bottom:167.944500px;}
.yce{bottom:172.939500px;}
.y120{bottom:174.678000px;}
.y142{bottom:174.795000px;}
.y11f{bottom:175.077000px;}
.y121{bottom:175.209000px;}
.yb5{bottom:175.783500px;}
.yf6{bottom:175.789500px;}
.yf5{bottom:176.188500px;}
.y16b{bottom:179.133000px;}
.y141{bottom:180.978000px;}
.y1b7{bottom:181.021500px;}
.y3e{bottom:181.905000px;}
.y122{bottom:183.531000px;}
.yb6{bottom:184.636500px;}
.yf7{bottom:184.642500px;}
.ycd{bottom:185.241000px;}
.y196{bottom:193.543500px;}
.y15{bottom:195.300000px;}
.y11c{bottom:195.832500px;}
.yf2{bottom:196.944000px;}
.y16a{bottom:208.515000px;}
.y169{bottom:209.469000px;}
.y8c{bottom:210.345000px;}
.y1b6{bottom:211.507500px;}
.y11e{bottom:212.868000px;}
.y66{bottom:213.052500px;}
.yb4{bottom:213.973500px;}
.yf4{bottom:213.979500px;}
.y168{bottom:214.699500px;}
.y8b{bottom:216.528000px;}
.y140{bottom:216.544500px;}
.y14{bottom:216.610500px;}
.y11d{bottom:218.248500px;}
.y3b{bottom:218.350500px;}
.y3c{bottom:218.749500px;}
.y65{bottom:219.237000px;}
.yb3{bottom:219.354000px;}
.yf3{bottom:219.360000px;}
.y194{bottom:221.733000px;}
.ycb{bottom:225.747000px;}
.y3d{bottom:227.203500px;}
.y195{bottom:230.586000px;}
.ycc{bottom:234.202500px;}
.y38{bottom:239.505000px;}
.yb2{bottom:240.237000px;}
.y1b5{bottom:241.993500px;}
.y11b{bottom:244.644000px;}
.y13e{bottom:244.734000px;}
.yf1{bottom:244.957500px;}
.yb1{bottom:245.467500px;}
.y8a{bottom:245.911500px;}
.yc8{bottom:246.502500px;}
.y89{bottom:246.864000px;}
.y13{bottom:247.096500px;}
.y167{bottom:251.439000px;}
.y88{bottom:252.094500px;}
.y13f{bottom:253.587000px;}
.y64{bottom:254.803500px;}
.y3a{bottom:256.540500px;}
.y193{bottom:259.923000px;}
.y39{bottom:261.921000px;}
.yca{bottom:263.539500px;}
.y192{bottom:265.302000px;}
.y13d{bottom:265.888500px;}
.yc9{bottom:268.918500px;}
.y1b4{bottom:272.478000px;}
.y164{bottom:272.593500px;}
.y1d0{bottom:276.808500px;}
.yb0{bottom:277.341000px;}
.yae{bottom:277.740000px;}
.y11a{bottom:280.210500px;}
.yf0{bottom:280.524000px;}
.y63{bottom:284.187000px;}
.yaf{bottom:286.194000px;}
.y12{bottom:286.657500px;}
.y37{bottom:287.520000px;}
.y166{bottom:289.630500px;}
.y62{bottom:290.370000px;}
.y191{bottom:290.716500px;}
.y86{bottom:290.778000px;}
.y190{bottom:291.670500px;}
.yc7{bottom:294.517500px;}
.y165{bottom:295.009500px;}
.y18f{bottom:296.901000px;}
.yab{bottom:298.495500px;}
.y87{bottom:299.232000px;}
.y1b3{bottom:302.964000px;}
.y83{bottom:311.533500px;}
.y13c{bottom:313.903500px;}
.yad{bottom:315.532500px;}
.y163{bottom:320.608500px;}
.yac{bottom:320.911500px;}
.y35{bottom:321.043500px;}
.y11{bottom:322.224000px;}
.y1cf{bottom:322.836000px;}
.y60{bottom:324.690000px;}
.y18e{bottom:326.283000px;}
.y18d{bottom:327.237000px;}
.y85{bottom:328.569000px;}
.y36{bottom:329.896500px;}
.yc6{bottom:330.084000px;}
.y18c{bottom:332.467500px;}
.y119{bottom:332.910000px;}
.y61{bottom:333.144000px;}
.y1b2{bottom:333.450000px;}
.yef{bottom:333.874500px;}
.y84{bottom:333.949500px;}
.y32{bottom:342.198000px;}
.ya9{bottom:343.983000px;}
.ya8{bottom:344.382000px;}
.y5d{bottom:345.445500px;}
.y13b{bottom:349.470000px;}
.yaa{bottom:352.836000px;}
.y10{bottom:357.790500px;}
.y34{bottom:359.233500px;}
.y82{bottom:359.548500px;}
.y5f{bottom:362.482500px;}
.y1b1{bottom:363.936000px;}
.y18a{bottom:364.462500px;}
.y33{bottom:364.614000px;}
.ya5{bottom:365.137500px;}
.y117{bottom:365.782500px;}
.yed{bottom:367.398000px;}
.y5e{bottom:367.861500px;}
.y162{bottom:372.607500px;}
.y1ce{bottom:373.047000px;}
.y18b{bottom:373.315500px;}
.y118{bottom:374.635500px;}
.yee{bottom:376.252500px;}
.y13a{bottom:378.852000px;}
.ya7{bottom:382.174500px;}
.yc5{bottom:383.434500px;}
.y139{bottom:385.036500px;}
.y114{bottom:386.937000px;}
.ya6{bottom:387.553500px;}
.yea{bottom:388.552500px;}
.y31{bottom:390.213000px;}
.y1b0{bottom:394.420500px;}
.y81{bottom:395.115000px;}
.y5c{bottom:396.382500px;}
.y189{bottom:402.652500px;}
.yf{bottom:403.818000px;}
.y116{bottom:403.972500px;}
.yec{bottom:405.589500px;}
.y188{bottom:408.033000px;}
.y161{bottom:408.174000px;}
.y115{bottom:409.353000px;}
.yeb{bottom:410.968500px;}
.ya4{bottom:413.152500px;}
.y1cd{bottom:413.881500px;}
.y138{bottom:420.603000px;}
.y30{bottom:425.779500px;}
.y5b{bottom:431.949000px;}
.y187{bottom:433.630500px;}
.y113{bottom:434.952000px;}
.y1af{bottom:435.367500px;}
.ye9{bottom:436.567500px;}
.yc4{bottom:436.783500px;}
.y160{bottom:443.740500px;}
.y80{bottom:448.464000px;}
.ya3{bottom:449.664000px;}
.y1cc{bottom:454.716000px;}
.y137{bottom:456.169500px;}
.ya2{bottom:461.964000px;}
.y2f{bottom:466.828500px;}
.y5a{bottom:467.664000px;}
.y186{bottom:469.345500px;}
.y112{bottom:470.518500px;}
.ye8{bottom:472.134000px;}
.yc3{bottom:472.350000px;}
.y15f{bottom:475.251000px;}
.y7f{bottom:478.579500px;}
.y7d{bottom:478.978500px;}
.y2e{bottom:479.128500px;}
.y59{bottom:479.964000px;}
.y15c{bottom:483.705000px;}
.y1ae{bottom:485.578500px;}
.ye{bottom:487.206000px;}
.y7e{bottom:487.432500px;}
.y136{bottom:491.736000px;}
.y1cb{bottom:495.550500px;}
.y15b{bottom:496.006500px;}
.y7a{bottom:499.734000px;}
.y185{bottom:506.931000px;}
.ya0{bottom:507.850500px;}
.y15e{bottom:513.043500px;}
.ya1{bottom:516.306000px;}
.y7c{bottom:516.769500px;}
.y111{bottom:517.033500px;}
.y15d{bottom:518.422500px;}
.y2d{bottom:520.254000px;}
.yc0{bottom:521.001000px;}
.y58{bottom:521.088000px;}
.yc1{bottom:521.134500px;}
.y1ad{bottom:521.146500px;}
.y7b{bottom:522.150000px;}
.yd{bottom:522.772500px;}
.y110{bottom:523.216500px;}
.y184{bottom:523.915500px;}
.ye7{bottom:525.484500px;}
.y135{bottom:527.302500px;}
.y9d{bottom:528.606000px;}
.yc2{bottom:529.456500px;}
.y183{bottom:530.100000px;}
.y2c{bottom:532.554000px;}
.y57{bottom:533.389500px;}
.y1ca{bottom:536.385000px;}
.ybd{bottom:541.756500px;}
.y9f{bottom:545.643000px;}
.y15a{bottom:546.943500px;}
.y79{bottom:548.545500px;}
.y9e{bottom:551.022000px;}
.y1ac{bottom:556.713000px;}
.yc{bottom:558.339000px;}
.ybf{bottom:558.793500px;}
.y10e{bottom:558.880500px;}
.ye4{bottom:561.333000px;}
.ye5{bottom:561.465000px;}
.y181{bottom:562.095000px;}
.y134{bottom:562.869000px;}
.ybe{bottom:564.172500px;}
.y10f{bottom:567.733500px;}
.ye6{bottom:569.787000px;}
.y182{bottom:570.948000px;}
.y2b{bottom:573.678000px;}
.y1c9{bottom:577.285500px;}
.y9c{bottom:577.419000px;}
.y77{bottom:578.661000px;}
.y76{bottom:579.058500px;}
.y10b{bottom:580.035000px;}
.y56{bottom:581.404500px;}
.ye1{bottom:582.088500px;}
.y159{bottom:582.510000px;}
.y2a{bottom:585.979500px;}
.y78{bottom:587.514000px;}
.ybc{bottom:590.569500px;}
.yb{bottom:593.905500px;}
.y10d{bottom:597.070500px;}
.ye3{bottom:599.124000px;}
.y73{bottom:599.814000px;}
.y180{bottom:600.285000px;}
.y10c{bottom:602.451000px;}
.y1ab{bottom:602.739000px;}
.ye2{bottom:604.504500px;}
.y17f{bottom:605.665500px;}
.y1c8{bottom:607.771500px;}
.y133{bottom:608.896500px;}
.y9b{bottom:612.985500px;}
.y157{bottom:615.681000px;}
.y75{bottom:616.851000px;}
.y55{bottom:616.971000px;}
.y74{bottom:622.230000px;}
.y158{bottom:624.534000px;}
.ybb{bottom:626.136000px;}
.y10a{bottom:628.048500px;}
.ya{bottom:629.472000px;}
.y17e{bottom:631.264500px;}
.ye0{bottom:631.431000px;}
.y29{bottom:633.994500px;}
.y154{bottom:636.835500px;}
.y1c7{bottom:638.257500px;}
.y72{bottom:648.627000px;}
.y54{bottom:652.537500px;}
.y1aa{bottom:652.951500px;}
.y156{bottom:653.871000px;}
.y155{bottom:659.251500px;}
.y132{bottom:661.578000px;}
.y9{bottom:665.038500px;}
.y9a{bottom:666.334500px;}
.y17d{bottom:666.978000px;}
.ydf{bottom:666.997500px;}
.y1c6{bottom:668.743500px;}
.y152{bottom:678.370500px;}
.y17c{bottom:679.278000px;}
.y109{bottom:680.748000px;}
.y28{bottom:681.160500px;}
.y27{bottom:682.113000px;}
.y71{bottom:684.193500px;}
.y153{bottom:687.223500px;}
.y26{bottom:687.343500px;}
.y53{bottom:688.251000px;}
.y1a9{bottom:688.518000px;}
.y131{bottom:697.144500px;}
.y1c5{bottom:699.228000px;}
.y14f{bottom:699.525000px;}
.y52{bottom:700.552500px;}
.y8{bottom:700.605000px;}
.y99{bottom:701.901000px;}
.ydc{bottom:703.843500px;}
.ydd{bottom:703.975500px;}
.yde{bottom:712.297500px;}
.y108{bottom:716.314500px;}
.y151{bottom:716.560500px;}
.y17a{bottom:717.460500px;}
.y70{bottom:719.760000px;}
.y150{bottom:721.941000px;}
.y24{bottom:722.424000px;}
.y1a8{bottom:724.084500px;}
.yd9{bottom:724.599000px;}
.y17b{bottom:726.313500px;}
.y12e{bottom:729.616500px;}
.y1c4{bottom:729.714000px;}
.y12f{bottom:729.748500px;}
.y25{bottom:730.878000px;}
.y7{bottom:736.171500px;}
.yba{bottom:737.614500px;}
.y98{bottom:737.616000px;}
.y130{bottom:738.070500px;}
.ydb{bottom:741.634500px;}
.y21{bottom:743.179500px;}
.y107{bottom:745.696500px;}
.yda{bottom:747.015000px;}
.y14e{bottom:747.540000px;}
.y51{bottom:748.567500px;}
.y97{bottom:749.916000px;}
.y12b{bottom:750.372000px;}
.y106{bottom:751.881000px;}
.y6f{bottom:755.473500px;}
.y179{bottom:755.650500px;}
.y1a7{bottom:759.651000px;}
.y1c3{bottom:760.200000px;}
.y23{bottom:760.215000px;}
.y178{bottom:761.031000px;}
.y1d7{bottom:761.722500px;}
.y22{bottom:765.595500px;}
.y12d{bottom:767.407500px;}
.y6e{bottom:767.775000px;}
.y12c{bottom:772.788000px;}
.yd8{bottom:773.410500px;}
.y6{bottom:782.199000px;}
.y50{bottom:784.134000px;}
.y177{bottom:786.795000px;}
.y105{bottom:787.447500px;}
.y176{bottom:787.749000px;}
.y1c2{bottom:790.686000px;}
.y96{bottom:791.040000px;}
.y20{bottom:791.194500px;}
.y1d6{bottom:792.208500px;}
.y175{bottom:792.979500px;}
.y1a6{bottom:795.217500px;}
.y12a{bottom:799.183500px;}
.y14d{bottom:799.539000px;}
.y95{bottom:803.341500px;}
.y6d{bottom:808.899000px;}
.yd7{bottom:808.977000px;}
.y1c1{bottom:821.170500px;}
.y6c{bottom:821.199000px;}
.y174{bottom:828.546000px;}
.y1a5{bottom:830.784000px;}
.y4f{bottom:831.298500px;}
.y4e{bottom:832.252500px;}
.y129{bottom:834.750000px;}
.y14c{bottom:835.105500px;}
.y104{bottom:840.147000px;}
.y94{bottom:844.465500px;}
.y1f{bottom:844.543500px;}
.y5{bottom:846.927000px;}
.y1d5{bottom:847.279500px;}
.y4d{bottom:850.933500px;}
.y1c0{bottom:851.656500px;}
.yb9{bottom:856.765500px;}
.y93{bottom:856.767000px;}
.y172{bottom:857.731500px;}
.y6b{bottom:862.323000px;}
.yd6{bottom:862.327500px;}
.y1a4{bottom:866.350500px;}
.y173{bottom:866.584500px;}
.y4c{bottom:866.865000px;}
.y4b{bottom:867.819000px;}
.y14b{bottom:870.819000px;}
.y4a{bottom:873.049500px;}
.y6a{bottom:874.624500px;}
.y103{bottom:875.713500px;}
.y4{bottom:877.413000px;}
.y1bf{bottom:882.142500px;}
.y128{bottom:887.433000px;}
.y1e{bottom:892.558500px;}
.y1d4{bottom:893.517000px;}
.y14a{bottom:895.252500px;}
.y171{bottom:895.921500px;}
.yb8{bottom:897.889500px;}
.y92{bottom:897.891000px;}
.y170{bottom:901.302000px;}
.y100{bottom:906.825000px;}
.yff{bottom:907.222500px;}
.y101{bottom:907.356000px;}
.y48{bottom:907.369500px;}
.y3{bottom:907.899000px;}
.yd5{bottom:909.492000px;}
.y91{bottom:910.191000px;}
.yd4{bottom:910.446000px;}
.y1a3{bottom:912.378000px;}
.y1be{bottom:912.628500px;}
.yd3{bottom:915.676500px;}
.y102{bottom:915.678000px;}
.y69{bottom:915.748500px;}
.y49{bottom:915.823500px;}
.y16f{bottom:927.066000px;}
.yfc{bottom:927.978000px;}
.y16e{bottom:928.020000px;}
.y68{bottom:928.050000px;}
.y45{bottom:928.125000px;}
.y149{bottom:931.135500px;}
.y16d{bottom:933.250500px;}
.y127{bottom:935.448000px;}
.y1d{bottom:937.017000px;}
.y1d3{bottom:939.753000px;}
.y1bd{bottom:943.113000px;}
.yfe{bottom:945.015000px;}
.y47{bottom:945.160500px;}
.yfd{bottom:950.394000px;}
.y46{bottom:950.541000px;}
.y90{bottom:951.315000px;}
.yd2{bottom:951.390000px;}
.y1a2{bottom:962.589000px;}
.y8f{bottom:963.616500px;}
.yd1{bottom:963.691500px;}
.y148{bottom:966.702000px;}
.y67{bottom:969.174000px;}
.y2{bottom:972.403500px;}
.y1bc{bottom:973.599000px;}
.y44{bottom:976.140000px;}
.yfb{bottom:976.791000px;}
.y16c{bottom:979.278000px;}
.y1c{bottom:981.474000px;}
.y126{bottom:983.461500px;}
.y1d2{bottom:985.989000px;}
.y1a0{bottom:990.778500px;}
.y147{bottom:995.887500px;}
.y1a1{bottom:999.631500px;}
.y1bb{bottom:1004.085000px;}
.y8e{bottom:1004.740500px;}
.y43{bottom:1011.706500px;}
.yfa{bottom:1012.357500px;}
.y8d{bottom:1017.040500px;}
.y1{bottom:1017.235500px;}
.y125{bottom:1019.028000px;}
.y19f{bottom:1028.968500px;}
.y1b{bottom:1029.489000px;}
.y19e{bottom:1034.349000px;}
.y1ba{bottom:1034.571000px;}
.y1d1{bottom:1041.211500px;}
.y19d{bottom:1057.557000px;}
.y19c{bottom:1058.509500px;}
.y19b{bottom:1063.740000px;}
.y1a{bottom:1065.055500px;}
.y19{bottom:1100.922000px;}
.h8{height:2.869248px;}
.h17{height:14.735702px;}
.h7{height:31.991981px;}
.h11{height:33.665702px;}
.h13{height:35.865450px;}
.h4{height:38.519654px;}
.h37{height:42.799330px;}
.h2{height:44.831700px;}
.h3{height:51.359539px;}
.h1{height:53.798400px;}
.h2b{height:59.693702px;}
.h27{height:59.699702px;}
.h10{height:63.281702px;}
.h28{height:63.287702px;}
.h6{height:65.481450px;}
.h5{height:65.487450px;}
.h19{height:65.495702px;}
.h21{height:67.695450px;}
.h35{height:68.531702px;}
.hb{height:68.537702px;}
.h33{height:70.737450px;}
.h2c{height:71.011248px;}
.h2d{height:71.017248px;}
.h26{height:82.821450px;}
.h34{height:82.829702px;}
.hd{height:85.705248px;}
.h16{height:85.711248px;}
.hc{height:86.417702px;}
.h36{height:88.611450px;}
.h15{height:88.617450px;}
.h14{height:89.459702px;}
.h22{height:92.427450px;}
.h18{height:92.433450px;}
.h1f{height:93.269702px;}
.h30{height:102.326400px;}
.h1e{height:103.417248px;}
.h23{height:104.005248px;}
.he{height:104.011248px;}
.h20{height:107.227248px;}
.h2f{height:114.687450px;}
.h1d{height:125.527248px;}
.h29{height:125.529450px;}
.h1a{height:125.533248px;}
.h31{height:151.532400px;}
.hf{height:153.211248px;}
.ha{height:153.217248px;}
.h32{height:167.951702px;}
.h24{height:172.535702px;}
.h1c{height:174.733248px;}
.h25{height:174.739248px;}
.h9{height:187.033248px;}
.h2e{height:187.387248px;}
.h1b{height:188.623248px;}
.h12{height:188.629248px;}
.h2a{height:210.145248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.xf6{left:115.471500px;}
.x8a{left:124.426500px;}
.x5{left:125.932500px;}
.x1{left:128.425500px;}
.xf8{left:136.852500px;}
.xf7{left:138.718500px;}
.xa6{left:139.942500px;}
.xb0{left:144.955500px;}
.x4e{left:148.239000px;}
.x8f{left:149.968500px;}
.x6a{left:151.560000px;}
.x8e{left:155.379000px;}
.xd7{left:158.749500px;}
.x3{left:161.799000px;}
.x4c{left:172.554000px;}
.x3b{left:174.774000px;}
.x90{left:176.937000px;}
.xc2{left:178.509000px;}
.xa4{left:180.936000px;}
.x73{left:182.641500px;}
.xc1{left:183.919500px;}
.xcc{left:185.514000px;}
.x58{left:192.573000px;}
.x8c{left:195.202500px;}
.xcf{left:197.737500px;}
.x8b{left:200.613000px;}
.xc3{left:205.477500px;}
.x97{left:207.402000px;}
.xa8{left:208.528500px;}
.xa9{left:210.451500px;}
.xb1{left:213.543000px;}
.xa7{left:215.862000px;}
.x7f{left:217.230000px;}
.x6c{left:220.413000px;}
.x5a{left:221.659500px;}
.xb5{left:222.760500px;}
.x9d{left:223.872000px;}
.xd1{left:226.629000px;}
.x6b{left:227.746500px;}
.xd8{left:229.258500px;}
.x9a{left:230.319000px;}
.x9{left:232.075500px;}
.xd0{left:233.962500px;}
.x1e{left:235.906500px;}
.xaa{left:237.420000px;}
.x99{left:239.416500px;}
.x3d{left:242.439000px;}
.x13{left:244.462500px;}
.xbc{left:246.421500px;}
.x6d{left:249.304500px;}
.x86{left:251.583000px;}
.x32{left:252.669000px;}
.xbb{left:253.755000px;}
.x11{left:256.605000px;}
.x85{left:258.916500px;}
.xc4{left:260.926500px;}
.x59{left:264.583500px;}
.x4f{left:266.577000px;}
.xa1{left:268.206000px;}
.x8d{left:273.786000px;}
.x52{left:275.356500px;}
.xbd{left:276.682500px;}
.xa5{left:278.415000px;}
.x2d{left:281.113500px;}
.x2e{left:282.483000px;}
.x3c{left:283.575000px;}
.xc5{left:284.929500px;}
.x9b{left:287.271000px;}
.xec{left:288.955500px;}
.x2c{left:290.211000px;}
.x74{left:291.234000px;}
.x5c{left:292.435500px;}
.x5b{left:297.846000px;}
.x7a{left:300.013500px;}
.x64{left:301.212000px;}
.x65{left:303.135000px;}
.x20{left:304.758000px;}
.x6{left:306.262500px;}
.xb{left:307.542000px;}
.x48{left:309.195000px;}
.xb2{left:311.509500px;}
.x1f{left:313.857000px;}
.x47{left:316.756500px;}
.x5d{left:319.404000px;}
.x34{left:321.520500px;}
.xa{left:323.506500px;}
.xac{left:324.634500px;}
.x33{left:328.855500px;}
.x66{left:330.103500px;}
.xb8{left:332.560500px;}
.x22{left:333.651000px;}
.x23{left:335.574000px;}
.x40{left:338.847000px;}
.x21{left:340.984500px;}
.x9e{left:342.208500px;}
.x2f{left:344.893500px;}
.x12{left:347.952000px;}
.x35{left:350.413500px;}
.xc{left:354.559500px;}
.xab{left:355.705500px;}
.xe2{left:358.477500px;}
.xf2{left:361.206000px;}
.x80{left:362.248500px;}
.x75{left:364.240500px;}
.xf5{left:365.403000px;}
.xe8{left:366.985500px;}
.x1d{left:368.623500px;}
.x91{left:370.572000px;}
.x6e{left:371.575500px;}
.x7b{left:373.020000px;}
.x98{left:374.026500px;}
.x14{left:375.781500px;}
.xad{left:378.345000px;}
.xe0{left:380.725500px;}
.x81{left:381.799500px;}
.xbe{left:383.956500px;}
.xd6{left:385.473000px;}
.xc6{left:387.456000px;}
.xf1{left:389.062500px;}
.x49{left:391.231500px;}
.x2{left:392.583000px;}
.xd9{left:393.681000px;}
.xba{left:395.709000px;}
.x24{left:397.431000px;}
.x87{left:400.752000px;}
.xb9{left:403.042500px;}
.x41{left:406.135500px;}
.xd2{left:408.607500px;}
.xe{left:412.384500px;}
.xf{left:414.307500px;}
.x4{left:415.548000px;}
.xd{left:418.984500px;}
.xce{left:420.394500px;}
.x17{left:421.827000px;}
.xa2{left:423.996000px;}
.xe7{left:425.314500px;}
.xcd{left:426.357000px;}
.x5e{left:427.426500px;}
.xed{left:428.805000px;}
.x1a{left:430.606500px;}
.x76{left:431.820000px;}
.xe3{left:433.659000px;}
.xf0{left:435.331500px;}
.xef{left:436.504500px;}
.x83{left:438.607500px;}
.x7c{left:440.599500px;}
.x15{left:443.070000px;}
.xdf{left:448.281000px;}
.x82{left:449.379000px;}
.x50{left:450.760500px;}
.x67{left:453.370500px;}
.x8{left:455.544000px;}
.xca{left:457.498500px;}
.x53{left:459.540000px;}
.xe4{left:462.537000px;}
.x9c{left:464.148000px;}
.x30{left:467.833500px;}
.x10{left:470.896500px;}
.x36{left:472.683000px;}
.x5f{left:474.550500px;}
.xaf{left:477.178500px;}
.xe5{left:478.954500px;}
.x42{left:482.205000px;}
.xae{left:486.651000px;}
.xeb{left:489.472500px;}
.x44{left:490.984500px;}
.x89{left:492.528000px;}
.xf3{left:493.632000px;}
.xda{left:496.207500px;}
.xbf{left:500.026500px;}
.xdd{left:501.109500px;}
.x25{left:503.742000px;}
.x26{left:505.665000px;}
.xcb{left:507.867000px;}
.x16{left:510.358500px;}
.x9f{left:512.662500px;}
.xe1{left:514.476000px;}
.xa3{left:521.442000px;}
.x51{left:524.058000px;}
.xb6{left:525.753000px;}
.x18{left:528.592500px;}
.x27{left:532.633500px;}
.xf4{left:534.589500px;}
.xe6{left:535.843500px;}
.x1b{left:537.372000px;}
.x3e{left:539.832000px;}
.x55{left:541.617000px;}
.x77{left:542.997000px;}
.xe9{left:544.192500px;}
.xb3{left:548.397000px;}
.x43{left:549.493500px;}
.x4a{left:552.319500px;}
.xde{left:553.339500px;}
.x6f{left:556.210500px;}
.x68{left:560.586000px;}
.x61{left:562.186500px;}
.x62{left:563.557500px;}
.x45{left:567.052500px;}
.x31{left:569.773500px;}
.x60{left:571.285500px;}
.xc7{left:573.304500px;}
.x29{left:575.151000px;}
.x2a{left:576.522000px;}
.x28{left:584.250000px;}
.x38{left:585.643500px;}
.xee{left:587.425500px;}
.x37{left:588.753000px;}
.x92{left:592.069500px;}
.x93{left:593.439000px;}
.xd3{left:594.456000px;}
.xea{left:598.875000px;}
.x69{left:608.440500px;}
.xa0{left:609.819000px;}
.x88{left:615.255000px;}
.x78{left:616.294500px;}
.x63{left:619.138500px;}
.x94{left:620.961000px;}
.x84{left:623.082000px;}
.x19{left:626.578500px;}
.xc0{left:629.178000px;}
.x7d{left:633.853500px;}
.x1c{left:635.358000px;}
.x3f{left:637.527000px;}
.x2b{left:638.932500px;}
.x46{left:643.120500px;}
.x4b{left:645.991500px;}
.x96{left:659.421000px;}
.x56{left:661.573500px;}
.xc8{left:666.690000px;}
.x95{left:668.518500px;}
.x39{left:672.883500px;}
.xdb{left:682.056000px;}
.x79{left:683.584500px;}
.xb7{left:688.552500px;}
.x70{left:689.860500px;}
.xd4{left:690.901500px;}
.xb4{left:695.848500px;}
.x4d{left:697.311000px;}
.x7e{left:701.143500px;}
.xc9{left:703.074000px;}
.x71{left:710.394000px;}
.x54{left:717.021000px;}
.x3a{left:720.729000px;}
.xd5{left:730.099500px;}
.x57{left:734.580000px;}
.x72{left:753.298500px;}
.xdc{left:754.366500px;}
@media print{
.v19{vertical-align:-153.136000pt;}
.v27{vertical-align:-89.904000pt;}
.v1e{vertical-align:-70.778667pt;}
.vf{vertical-align:-51.648000pt;}
.v3{vertical-align:-46.768000pt;}
.v25{vertical-align:-19.125333pt;}
.v16{vertical-align:-16.826667pt;}
.v2c{vertical-align:-14.277333pt;}
.v1b{vertical-align:-10.922667pt;}
.v2b{vertical-align:-9.920000pt;}
.v20{vertical-align:-3.824000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.152000pt;}
.va{vertical-align:18.597333pt;}
.v18{vertical-align:21.989333pt;}
.v7{vertical-align:23.141333pt;}
.v1{vertical-align:26.330667pt;}
.vc{vertical-align:28.506667pt;}
.v9{vertical-align:30.997333pt;}
.vb{vertical-align:41.738667pt;}
.v5{vertical-align:43.738667pt;}
.v17{vertical-align:45.130667pt;}
.v15{vertical-align:46.890667pt;}
.v8{vertical-align:47.824000pt;}
.v14{vertical-align:49.594667pt;}
.v1a{vertical-align:51.648000pt;}
.v1f{vertical-align:52.981333pt;}
.v2a{vertical-align:60.570667pt;}
.v13{vertical-align:66.421333pt;}
.v6{vertical-align:70.064000pt;}
.ve{vertical-align:73.632000pt;}
.v21{vertical-align:75.216000pt;}
.v24{vertical-align:79.701333pt;}
.v11{vertical-align:86.874667pt;}
.v10{vertical-align:89.904000pt;}
.v22{vertical-align:101.541333pt;}
.v1c{vertical-align:109.034667pt;}
.v26{vertical-align:118.352000pt;}
.v23{vertical-align:123.440000pt;}
.v4{vertical-align:133.642667pt;}
.v1d{vertical-align:152.768000pt;}
.v29{vertical-align:154.912000pt;}
.v2{vertical-align:163.701333pt;}
.v12{vertical-align:165.120000pt;}
.v28{vertical-align:184.245333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000090pt;}
.ls2a{letter-spacing:0.000242pt;}
.lsab{letter-spacing:0.000247pt;}
.ls4f{letter-spacing:0.000485pt;}
.lsaf{letter-spacing:0.000676pt;}
.ls9{letter-spacing:0.000990pt;}
.ls1{letter-spacing:0.001507pt;}
.lsc4{letter-spacing:0.002715pt;}
.ls3e{letter-spacing:0.002836pt;}
.ls81{letter-spacing:0.003200pt;}
.ls2e{letter-spacing:0.003420pt;}
.ls90{letter-spacing:0.003903pt;}
.ls50{letter-spacing:0.004024pt;}
.ls10{letter-spacing:0.004145pt;}
.lsbf{letter-spacing:0.004492pt;}
.ls15{letter-spacing:0.004970pt;}
.ls9f{letter-spacing:0.006813pt;}
.ls97{letter-spacing:0.007035pt;}
.lsa6{letter-spacing:0.009718pt;}
.lsa2{letter-spacing:0.012146pt;}
.ls68{letter-spacing:0.013177pt;}
.lsa9{letter-spacing:0.015217pt;}
.ls93{letter-spacing:0.022661pt;}
.lsad{letter-spacing:0.900145pt;}
.lsd3{letter-spacing:1.105187pt;}
.ls13{letter-spacing:1.147694pt;}
.lsa{letter-spacing:1.232709pt;}
.ls6a{letter-spacing:1.275216pt;}
.ls66{letter-spacing:1.721549pt;}
.ls7f{letter-spacing:2.104115pt;}
.ls7e{letter-spacing:2.114825pt;}
.ls5c{letter-spacing:2.134489pt;}
.ls5a{letter-spacing:2.139822pt;}
.ls19{letter-spacing:2.167876pt;}
.lsb8{letter-spacing:2.389492pt;}
.lse{letter-spacing:2.465418pt;}
.ls8a{letter-spacing:2.511684pt;}
.ls61{letter-spacing:2.638809pt;}
.ls75{letter-spacing:2.644142pt;}
.ls79{letter-spacing:2.644168pt;}
.ls59{letter-spacing:2.653258pt;}
.lsaa{letter-spacing:2.654275pt;}
.ls98{letter-spacing:2.654400pt;}
.ls43{letter-spacing:2.655321pt;}
.lsa8{letter-spacing:2.656991pt;}
.ls5e{letter-spacing:2.658591pt;}
.ls6d{letter-spacing:2.659685pt;}
.ls58{letter-spacing:2.659733pt;}
.ls7a{letter-spacing:2.916145pt;}
.ls1b{letter-spacing:3.022582pt;}
.ls1d{letter-spacing:3.027915pt;}
.ls17{letter-spacing:3.570620pt;}
.lsbe{letter-spacing:3.600744pt;}
.ls8f{letter-spacing:3.607767pt;}
.ls8d{letter-spacing:3.613100pt;}
.lsb9{letter-spacing:3.788942pt;}
.ls12{letter-spacing:3.791684pt;}
.lsd8{letter-spacing:4.334812pt;}
.ls25{letter-spacing:4.340145pt;}
.ls16{letter-spacing:4.411989pt;}
.ls3f{letter-spacing:4.417323pt;}
.ls99{letter-spacing:4.675792pt;}
.ls14{letter-spacing:5.090695pt;}
.ls11{letter-spacing:5.105323pt;}
.ls60{letter-spacing:5.110656pt;}
.ls32{letter-spacing:5.930238pt;}
.ls31{letter-spacing:5.940970pt;}
.ls7d{letter-spacing:6.036145pt;}
.ls3d{letter-spacing:6.186392pt;}
.lsba{letter-spacing:6.346269pt;}
.lsd{letter-spacing:6.822434pt;}
.lsb7{letter-spacing:8.511737pt;}
.lsb3{letter-spacing:8.671505pt;}
.ls38{letter-spacing:10.584337pt;}
.lsc3{letter-spacing:10.615926pt;}
.ls86{letter-spacing:10.626836pt;}
.lsa3{letter-spacing:10.633718pt;}
.ls3b{letter-spacing:10.643429pt;}
.ls37{letter-spacing:10.648098pt;}
.ls42{letter-spacing:12.065323pt;}
.ls8c{letter-spacing:12.134489pt;}
.ls88{letter-spacing:12.139822pt;}
.ls94{letter-spacing:12.943497pt;}
.ls6b{letter-spacing:13.259889pt;}
.ls84{letter-spacing:13.264177pt;}
.lsd9{letter-spacing:13.270027pt;}
.ls8{letter-spacing:13.277258pt;}
.ls2{letter-spacing:13.282591pt;}
.ls29{letter-spacing:13.283733pt;}
.ls49{letter-spacing:13.289067pt;}
.ls6c{letter-spacing:13.297063pt;}
.ls92{letter-spacing:13.301351pt;}
.ls63{letter-spacing:13.306685pt;}
.ls7{letter-spacing:14.154957pt;}
.ls27{letter-spacing:14.164905pt;}
.ls77{letter-spacing:14.165697pt;}
.ls48{letter-spacing:14.166642pt;}
.ls1c{letter-spacing:14.169479pt;}
.ls46{letter-spacing:14.170238pt;}
.ls64{letter-spacing:14.171030pt;}
.ls47{letter-spacing:14.171976pt;}
.ls55{letter-spacing:14.174812pt;}
.ls4e{letter-spacing:14.176271pt;}
.ls53{letter-spacing:14.178009pt;}
.ls56{letter-spacing:14.181605pt;}
.ls54{letter-spacing:14.183342pt;}
.ls26{letter-spacing:14.218718pt;}
.lsc{letter-spacing:14.535131pt;}
.lsb{letter-spacing:14.540464pt;}
.lsa4{letter-spacing:15.035563pt;}
.ls3c{letter-spacing:15.876506pt;}
.ls4a{letter-spacing:16.322833pt;}
.ls33{letter-spacing:16.783636pt;}
.ls4c{letter-spacing:16.823925pt;}
.ls6{letter-spacing:16.825067pt;}
.ls5{letter-spacing:16.830400pt;}
.ls39{letter-spacing:17.661815pt;}
.lsdd{letter-spacing:17.693578pt;}
.ls70{letter-spacing:17.706238pt;}
.ls24{letter-spacing:17.710812pt;}
.ls4d{letter-spacing:17.711572pt;}
.ls51{letter-spacing:17.711636pt;}
.lscf{letter-spacing:17.716145pt;}
.ls30{letter-spacing:17.716970pt;}
.ls4{letter-spacing:17.725577pt;}
.ls2b{letter-spacing:17.789338pt;}
.lsda{letter-spacing:18.614027pt;}
.lsc9{letter-spacing:18.619360pt;}
.ls9c{letter-spacing:19.383364pt;}
.ls9b{letter-spacing:19.412970pt;}
.lsc8{letter-spacing:20.191636pt;}
.lsb2{letter-spacing:20.363633pt;}
.ls1a{letter-spacing:20.365258pt;}
.lsbb{letter-spacing:20.366275pt;}
.ls20{letter-spacing:20.366400pt;}
.ls35{letter-spacing:20.370591pt;}
.ls3{letter-spacing:20.371733pt;}
.lsc2{letter-spacing:20.467302pt;}
.lsc5{letter-spacing:20.560271pt;}
.lsdc{letter-spacing:20.786108pt;}
.ls52{letter-spacing:20.810303pt;}
.ls8b{letter-spacing:20.814691pt;}
.lsca{letter-spacing:20.815636pt;}
.ls3a{letter-spacing:21.498350pt;}
.lsc6{letter-spacing:21.575925pt;}
.lsd2{letter-spacing:21.979989pt;}
.lsbd{letter-spacing:22.238582pt;}
.ls18{letter-spacing:22.316373pt;}
.ls67{letter-spacing:22.826462pt;}
.lsa1{letter-spacing:22.953984pt;}
.lsc1{letter-spacing:23.108240pt;}
.ls5d{letter-spacing:23.469258pt;}
.lsb6{letter-spacing:23.678812pt;}
.ls6f{letter-spacing:24.037922pt;}
.lsa0{letter-spacing:24.803055pt;}
.lscb{letter-spacing:24.949059pt;}
.ls69{letter-spacing:24.974400pt;}
.lsc0{letter-spacing:25.070906pt;}
.ls96{letter-spacing:25.203733pt;}
.ls28{letter-spacing:25.313143pt;}
.ls82{letter-spacing:25.886993pt;}
.ls34{letter-spacing:25.950754pt;}
.ls80{letter-spacing:26.333321pt;}
.ls5f{letter-spacing:26.524604pt;}
.ls23{letter-spacing:26.588365pt;}
.ls1f{letter-spacing:26.907170pt;}
.ls7c{letter-spacing:27.034692pt;}
.ls8e{letter-spacing:27.162214pt;}
.lsdb{letter-spacing:27.736064pt;}
.ls78{letter-spacing:28.054869pt;}
.ls4b{letter-spacing:28.309914pt;}
.ls57{letter-spacing:29.903940pt;}
.ls74{letter-spacing:30.796595pt;}
.lsd0{letter-spacing:30.981059pt;}
.ls44{letter-spacing:31.242923pt;}
.ls91{letter-spacing:31.306684pt;}
.ls72{letter-spacing:32.337323pt;}
.ls9a{letter-spacing:33.263684pt;}
.lsbc{letter-spacing:34.452905pt;}
.ls40{letter-spacing:34.727131pt;}
.ls89{letter-spacing:39.719313pt;}
.lsa5{letter-spacing:42.609155pt;}
.ls5b{letter-spacing:42.974812pt;}
.lsb4{letter-spacing:43.223071pt;}
.lsb5{letter-spacing:43.228404pt;}
.ls9d{letter-spacing:45.487684pt;}
.ls9e{letter-spacing:46.534489pt;}
.lsb0{letter-spacing:47.116646pt;}
.ls2f{letter-spacing:47.697323pt;}
.lsc7{letter-spacing:47.702656pt;}
.ls2d{letter-spacing:51.098238pt;}
.ls62{letter-spacing:51.117732pt;}
.ls83{letter-spacing:51.123065pt;}
.ls6e{letter-spacing:52.621244pt;}
.ls21{letter-spacing:53.702489pt;}
.ls2c{letter-spacing:53.758400pt;}
.lsac{letter-spacing:53.831313pt;}
.ls65{letter-spacing:55.869244pt;}
.ls85{letter-spacing:55.874577pt;}
.ls7b{letter-spacing:57.081033pt;}
.ls36{letter-spacing:57.081248pt;}
.ls45{letter-spacing:57.593248pt;}
.ls1e{letter-spacing:57.598582pt;}
.lsd7{letter-spacing:59.338392pt;}
.lsd4{letter-spacing:61.195989pt;}
.ls87{letter-spacing:61.372464pt;}
.lsf{letter-spacing:61.967725pt;}
.lscc{letter-spacing:79.002392pt;}
.lsae{letter-spacing:79.430323pt;}
.ls22{letter-spacing:80.698392pt;}
.lsd5{letter-spacing:85.551725pt;}
.lsd1{letter-spacing:85.557059pt;}
.lsa7{letter-spacing:99.921155pt;}
.lsd6{letter-spacing:109.311725pt;}
.lsb1{letter-spacing:110.758323pt;}
.ls76{letter-spacing:111.631056pt;}
.ls71{letter-spacing:113.382241pt;}
.lsce{letter-spacing:129.237059pt;}
.lscd{letter-spacing:129.242392pt;}
.ls73{letter-spacing:983.068126pt;}
.ls95{letter-spacing:2288.518323pt;}
.ws95{word-spacing:-74.409165pt;}
.ws92{word-spacing:-63.824828pt;}
.ws1a{word-spacing:-53.176730pt;}
.ws1e{word-spacing:-50.479636pt;}
.ws16{word-spacing:-40.590295pt;}
.ws26{word-spacing:-30.005958pt;}
.ws24{word-spacing:-29.942197pt;}
.ws93{word-spacing:-22.928480pt;}
.ws18{word-spacing:-17.343010pt;}
.ws80{word-spacing:-15.940267pt;}
.wsc{word-spacing:-13.581016pt;}
.ws61{word-spacing:-7.320291pt;}
.ws4d{word-spacing:-6.737270pt;}
.ws41{word-spacing:-6.735852pt;}
.ws3f{word-spacing:-6.734433pt;}
.ws4e{word-spacing:-6.710480pt;}
.ws42{word-spacing:-6.706565pt;}
.ws40{word-spacing:-6.705147pt;}
.ws7a{word-spacing:-4.463275pt;}
.ws19{word-spacing:-3.188053pt;}
.ws27{word-spacing:-3.124292pt;}
.ws73{word-spacing:-2.550443pt;}
.ws96{word-spacing:-1.721549pt;}
.ws59{word-spacing:-1.466505pt;}
.ws83{word-spacing:-1.147699pt;}
.ws88{word-spacing:-1.083938pt;}
.ws14{word-spacing:-0.956416pt;}
.ws91{word-spacing:-0.828894pt;}
.ws56{word-spacing:-0.765133pt;}
.ws32{word-spacing:-0.573850pt;}
.ws54{word-spacing:-0.510089pt;}
.ws69{word-spacing:-0.318805pt;}
.ws8a{word-spacing:-0.191283pt;}
.wsa2{word-spacing:-0.095641pt;}
.ws9c{word-spacing:-0.063761pt;}
.wsa9{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.223162pt;}
.wsae{word-spacing:0.276296pt;}
.ws34{word-spacing:0.318805pt;}
.ws1f{word-spacing:0.340374pt;}
.ws4b{word-spacing:0.360194pt;}
.ws17{word-spacing:0.382566pt;}
.ws65{word-spacing:0.892655pt;}
.ws3{word-spacing:0.913903pt;}
.ws7c{word-spacing:1.275221pt;}
.ws9e{word-spacing:1.338982pt;}
.wsad{word-spacing:1.604643pt;}
.ws29{word-spacing:1.849071pt;}
.ws82{word-spacing:2.040354pt;}
.ws89{word-spacing:2.167876pt;}
.wsb0{word-spacing:2.401651pt;}
.ws9d{word-spacing:2.486682pt;}
.wsaa{word-spacing:2.507919pt;}
.wsac{word-spacing:2.614186pt;}
.ws36{word-spacing:2.614204pt;}
.wsa3{word-spacing:2.624813pt;}
.ws35{word-spacing:2.677965pt;}
.ws99{word-spacing:2.741726pt;}
.ws79{word-spacing:2.805487pt;}
.ws78{word-spacing:2.869248pt;}
.wsb2{word-spacing:2.890482pt;}
.ws1{word-spacing:2.932989pt;}
.ws6a{word-spacing:2.996770pt;}
.ws63{word-spacing:3.060531pt;}
.ws85{word-spacing:3.379337pt;}
.ws94{word-spacing:3.434090pt;}
.ws5{word-spacing:3.443098pt;}
.ws6d{word-spacing:3.458630pt;}
.ws52{word-spacing:3.459531pt;}
.ws6{word-spacing:3.506859pt;}
.ws9b{word-spacing:3.570620pt;}
.ws22{word-spacing:4.080708pt;}
.wsd{word-spacing:4.261336pt;}
.ws6b{word-spacing:4.335753pt;}
.ws5f{word-spacing:4.463275pt;}
.ws9a{word-spacing:4.527036pt;}
.ws71{word-spacing:4.590797pt;}
.ws9f{word-spacing:4.739541pt;}
.ws38{word-spacing:4.782080pt;}
.ws2a{word-spacing:4.845841pt;}
.wsab{word-spacing:5.015837pt;}
.ws8c{word-spacing:5.037124pt;}
.ws81{word-spacing:5.100885pt;}
.ws7f{word-spacing:5.164646pt;}
.wsa1{word-spacing:5.217746pt;}
.ws7e{word-spacing:5.228407pt;}
.wse{word-spacing:5.440908pt;}
.ws68{word-spacing:5.610974pt;}
.ws84{word-spacing:5.738496pt;}
.ws8e{word-spacing:5.929779pt;}
.ws64{word-spacing:5.993540pt;}
.ws74{word-spacing:6.057301pt;}
.ws15{word-spacing:6.376107pt;}
.ws86{word-spacing:6.758673pt;}
.ws3d{word-spacing:6.886195pt;}
.ws23{word-spacing:6.949956pt;}
.wsa0{word-spacing:7.088058pt;}
.ws60{word-spacing:7.268762pt;}
.ws72{word-spacing:7.332523pt;}
.ws11{word-spacing:7.343100pt;}
.wsaf{word-spacing:7.513129pt;}
.wsa8{word-spacing:7.608770pt;}
.ws4{word-spacing:7.768171pt;}
.wsa5{word-spacing:7.927573pt;}
.ws33{word-spacing:8.288939pt;}
.ws47{word-spacing:8.799027pt;}
.ws10{word-spacing:8.830849pt;}
.ws6c{word-spacing:8.926549pt;}
.wsb3{word-spacing:8.937116pt;}
.wsa4{word-spacing:8.990250pt;}
.ws5d{word-spacing:9.054071pt;}
.wsb{word-spacing:9.245355pt;}
.ws49{word-spacing:9.564160pt;}
.wsbc{word-spacing:9.627921pt;}
.wsa7{word-spacing:9.744751pt;}
.ws50{word-spacing:9.946726pt;}
.wsa6{word-spacing:10.010420pt;}
.ws98{word-spacing:10.265532pt;}
.ws53{word-spacing:10.393054pt;}
.ws8f{word-spacing:10.456815pt;}
.ws2b{word-spacing:10.648098pt;}
.ws97{word-spacing:10.711859pt;}
.wsf{word-spacing:10.807428pt;}
.wsb4{word-spacing:10.966830pt;}
.ws87{word-spacing:11.221948pt;}
.ws43{word-spacing:11.285709pt;}
.ws44{word-spacing:11.349470pt;}
.ws3e{word-spacing:11.413231pt;}
.ws5b{word-spacing:11.668275pt;}
.ws51{word-spacing:12.305886pt;}
.ws76{word-spacing:12.752213pt;}
.ws7d{word-spacing:13.007258pt;}
.ws90{word-spacing:13.220123pt;}
.ws2d{word-spacing:13.221373pt;}
.ws2e{word-spacing:13.225457pt;}
.ws1b{word-spacing:13.259889pt;}
.ws3c{word-spacing:13.453585pt;}
.ws3b{word-spacing:13.463963pt;}
.ws9{word-spacing:13.899913pt;}
.ws3a{word-spacing:14.473762pt;}
.ws77{word-spacing:14.920090pt;}
.ws6f{word-spacing:15.433457pt;}
.ws25{word-spacing:15.438790pt;}
.ws8b{word-spacing:17.157373pt;}
.ws1d{word-spacing:17.402706pt;}
.wsb5{word-spacing:17.438535pt;}
.ws58{word-spacing:18.171904pt;}
.wsbf{word-spacing:20.031468pt;}
.ws37{word-spacing:20.722347pt;}
.ws13{word-spacing:21.232435pt;}
.ws28{word-spacing:21.933807pt;}
.ws39{word-spacing:22.125090pt;}
.ws8d{word-spacing:22.380134pt;}
.ws67{word-spacing:22.890223pt;}
.ws2c{word-spacing:23.081506pt;}
.ws55{word-spacing:23.145267pt;}
.ws62{word-spacing:23.400311pt;}
.ws1c{word-spacing:23.846639pt;}
.ws7b{word-spacing:23.974161pt;}
.wsa{word-spacing:24.037922pt;}
.ws6e{word-spacing:24.484250pt;}
.ws21{word-spacing:24.548011pt;}
.ws5e{word-spacing:24.930577pt;}
.ws70{word-spacing:25.058099pt;}
.ws30{word-spacing:25.658706pt;}
.ws2{word-spacing:26.513799pt;}
.ws5c{word-spacing:27.162214pt;}
.ws4a{word-spacing:27.626706pt;}
.wsba{word-spacing:27.672303pt;}
.wsb9{word-spacing:27.736064pt;}
.ws48{word-spacing:27.799825pt;}
.ws2f{word-spacing:27.991108pt;}
.ws45{word-spacing:28.628719pt;}
.ws31{word-spacing:29.002706pt;}
.ws0{word-spacing:30.987878pt;}
.ws4f{word-spacing:31.242923pt;}
.wsbb{word-spacing:32.773188pt;}
.ws5a{word-spacing:33.283277pt;}
.ws46{word-spacing:33.984649pt;}
.ws75{word-spacing:34.494737pt;}
.ws7{word-spacing:45.079074pt;}
.wsbd{word-spacing:53.112969pt;}
.wsb7{word-spacing:110.688471pt;}
.wsb6{word-spacing:124.928347pt;}
.wsb8{word-spacing:144.109673pt;}
.wsbe{word-spacing:151.496294pt;}
.ws4c{word-spacing:292.790818pt;}
.ws66{word-spacing:1479.766835pt;}
.ws57{word-spacing:1905.882044pt;}
.ws8{word-spacing:2065.093427pt;}
._2f{margin-left:-27.342945pt;}
._2e{margin-left:-25.089825pt;}
._0{margin-left:-5.929779pt;}
._6{margin-left:-4.410111pt;}
._14{margin-left:-3.496195pt;}
._1{margin-left:-1.976593pt;}
._2{margin-left:-0.945770pt;}
._4{width:1.487748pt;}
._17{width:2.592960pt;}
._13{width:3.985040pt;}
._28{width:6.372256pt;}
._20{width:10.381431pt;}
._22{width:13.561188pt;}
._3{width:14.760641pt;}
._29{width:15.727657pt;}
._2c{width:16.779394pt;}
._1b{width:17.810473pt;}
._1a{width:20.701212pt;}
._12{width:21.721280pt;}
._26{width:22.635179pt;}
._7{width:23.697705pt;}
._21{width:25.610705pt;}
._15{width:26.566933pt;}
._1d{width:27.714573pt;}
._11{width:28.692480pt;}
._2b{width:30.360707pt;}
._1c{width:31.434394pt;}
._1e{width:33.325794pt;}
._27{width:35.220256pt;}
._5{width:37.884447pt;}
._23{width:39.765662pt;}
._10{width:45.695441pt;}
._2d{width:48.819733pt;}
._19{width:50.213584pt;}
._24{width:52.810918pt;}
._18{width:54.138918pt;}
._1f{width:57.802918pt;}
._8{width:62.422084pt;}
._31{width:152.387930pt;}
._30{width:170.240909pt;}
._33{width:348.326707pt;}
._2a{width:392.576838pt;}
._16{width:417.156730pt;}
._25{width:600.927008pt;}
._32{width:917.266705pt;}
._c{width:1140.749225pt;}
._9{width:1473.114441pt;}
._a{width:1596.003260pt;}
._f{width:1625.524634pt;}
._e{width:1744.120218pt;}
._b{width:1867.295952pt;}
._d{width:1935.530940pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:80.060000pt;}
.y124{bottom:96.000000pt;}
.yf9{bottom:96.988000pt;}
.y144{bottom:99.386667pt;}
.y145{bottom:99.661333pt;}
.y41{bottom:100.209333pt;}
.yd0{bottom:106.236000pt;}
.y1b9{bottom:106.712000pt;}
.y146{bottom:107.256000pt;}
.y42{bottom:108.078667pt;}
.y199{bottom:110.554667pt;}
.ycf{bottom:117.169333pt;}
.y143{bottom:118.189333pt;}
.y19a{bottom:118.424000pt;}
.y17{bottom:119.404000pt;}
.y123{bottom:127.614667pt;}
.yf8{bottom:128.602667pt;}
.yb7{bottom:130.309333pt;}
.y1b8{bottom:133.809333pt;}
.y40{bottom:134.156000pt;}
.y3f{bottom:138.938667pt;}
.y198{bottom:144.501333pt;}
.y16{bottom:146.502667pt;}
.y197{bottom:149.284000pt;}
.yce{bottom:153.724000pt;}
.y120{bottom:155.269333pt;}
.y142{bottom:155.373333pt;}
.y11f{bottom:155.624000pt;}
.y121{bottom:155.741333pt;}
.yb5{bottom:156.252000pt;}
.yf6{bottom:156.257333pt;}
.yf5{bottom:156.612000pt;}
.y16b{bottom:159.229333pt;}
.y141{bottom:160.869333pt;}
.y1b7{bottom:160.908000pt;}
.y3e{bottom:161.693333pt;}
.y122{bottom:163.138667pt;}
.yb6{bottom:164.121333pt;}
.yf7{bottom:164.126667pt;}
.ycd{bottom:164.658667pt;}
.y196{bottom:172.038667pt;}
.y15{bottom:173.600000pt;}
.y11c{bottom:174.073333pt;}
.yf2{bottom:175.061333pt;}
.y16a{bottom:185.346667pt;}
.y169{bottom:186.194667pt;}
.y8c{bottom:186.973333pt;}
.y1b6{bottom:188.006667pt;}
.y11e{bottom:189.216000pt;}
.y66{bottom:189.380000pt;}
.yb4{bottom:190.198667pt;}
.yf4{bottom:190.204000pt;}
.y168{bottom:190.844000pt;}
.y8b{bottom:192.469333pt;}
.y140{bottom:192.484000pt;}
.y14{bottom:192.542667pt;}
.y11d{bottom:193.998667pt;}
.y3b{bottom:194.089333pt;}
.y3c{bottom:194.444000pt;}
.y65{bottom:194.877333pt;}
.yb3{bottom:194.981333pt;}
.yf3{bottom:194.986667pt;}
.y194{bottom:197.096000pt;}
.ycb{bottom:200.664000pt;}
.y3d{bottom:201.958667pt;}
.y195{bottom:204.965333pt;}
.ycc{bottom:208.180000pt;}
.y38{bottom:212.893333pt;}
.yb2{bottom:213.544000pt;}
.y1b5{bottom:215.105333pt;}
.y11b{bottom:217.461333pt;}
.y13e{bottom:217.541333pt;}
.yf1{bottom:217.740000pt;}
.yb1{bottom:218.193333pt;}
.y8a{bottom:218.588000pt;}
.yc8{bottom:219.113333pt;}
.y89{bottom:219.434667pt;}
.y13{bottom:219.641333pt;}
.y167{bottom:223.501333pt;}
.y88{bottom:224.084000pt;}
.y13f{bottom:225.410667pt;}
.y64{bottom:226.492000pt;}
.y3a{bottom:228.036000pt;}
.y193{bottom:231.042667pt;}
.y39{bottom:232.818667pt;}
.yca{bottom:234.257333pt;}
.y192{bottom:235.824000pt;}
.y13d{bottom:236.345333pt;}
.yc9{bottom:239.038667pt;}
.y1b4{bottom:242.202667pt;}
.y164{bottom:242.305333pt;}
.y1d0{bottom:246.052000pt;}
.yb0{bottom:246.525333pt;}
.yae{bottom:246.880000pt;}
.y11a{bottom:249.076000pt;}
.yf0{bottom:249.354667pt;}
.y63{bottom:252.610667pt;}
.yaf{bottom:254.394667pt;}
.y12{bottom:254.806667pt;}
.y37{bottom:255.573333pt;}
.y166{bottom:257.449333pt;}
.y62{bottom:258.106667pt;}
.y191{bottom:258.414667pt;}
.y86{bottom:258.469333pt;}
.y190{bottom:259.262667pt;}
.yc7{bottom:261.793333pt;}
.y165{bottom:262.230667pt;}
.y18f{bottom:263.912000pt;}
.yab{bottom:265.329333pt;}
.y87{bottom:265.984000pt;}
.y1b3{bottom:269.301333pt;}
.y83{bottom:276.918667pt;}
.y13c{bottom:279.025333pt;}
.yad{bottom:280.473333pt;}
.y163{bottom:284.985333pt;}
.yac{bottom:285.254667pt;}
.y35{bottom:285.372000pt;}
.y11{bottom:286.421333pt;}
.y1cf{bottom:286.965333pt;}
.y60{bottom:288.613333pt;}
.y18e{bottom:290.029333pt;}
.y18d{bottom:290.877333pt;}
.y85{bottom:292.061333pt;}
.y36{bottom:293.241333pt;}
.yc6{bottom:293.408000pt;}
.y18c{bottom:295.526667pt;}
.y119{bottom:295.920000pt;}
.y61{bottom:296.128000pt;}
.y1b2{bottom:296.400000pt;}
.yef{bottom:296.777333pt;}
.y84{bottom:296.844000pt;}
.y32{bottom:304.176000pt;}
.ya9{bottom:305.762667pt;}
.ya8{bottom:306.117333pt;}
.y5d{bottom:307.062667pt;}
.y13b{bottom:310.640000pt;}
.yaa{bottom:313.632000pt;}
.y10{bottom:318.036000pt;}
.y34{bottom:319.318667pt;}
.y82{bottom:319.598667pt;}
.y5f{bottom:322.206667pt;}
.y1b1{bottom:323.498667pt;}
.y18a{bottom:323.966667pt;}
.y33{bottom:324.101333pt;}
.ya5{bottom:324.566667pt;}
.y117{bottom:325.140000pt;}
.yed{bottom:326.576000pt;}
.y5e{bottom:326.988000pt;}
.y162{bottom:331.206667pt;}
.y1ce{bottom:331.597333pt;}
.y18b{bottom:331.836000pt;}
.y118{bottom:333.009333pt;}
.yee{bottom:334.446667pt;}
.y13a{bottom:336.757333pt;}
.ya7{bottom:339.710667pt;}
.yc5{bottom:340.830667pt;}
.y139{bottom:342.254667pt;}
.y114{bottom:343.944000pt;}
.ya6{bottom:344.492000pt;}
.yea{bottom:345.380000pt;}
.y31{bottom:346.856000pt;}
.y1b0{bottom:350.596000pt;}
.y81{bottom:351.213333pt;}
.y5c{bottom:352.340000pt;}
.y189{bottom:357.913333pt;}
.yf{bottom:358.949333pt;}
.y116{bottom:359.086667pt;}
.yec{bottom:360.524000pt;}
.y188{bottom:362.696000pt;}
.y161{bottom:362.821333pt;}
.y115{bottom:363.869333pt;}
.yeb{bottom:365.305333pt;}
.ya4{bottom:367.246667pt;}
.y1cd{bottom:367.894667pt;}
.y138{bottom:373.869333pt;}
.y30{bottom:378.470667pt;}
.y5b{bottom:383.954667pt;}
.y187{bottom:385.449333pt;}
.y113{bottom:386.624000pt;}
.y1af{bottom:386.993333pt;}
.ye9{bottom:388.060000pt;}
.yc4{bottom:388.252000pt;}
.y160{bottom:394.436000pt;}
.y80{bottom:398.634667pt;}
.ya3{bottom:399.701333pt;}
.y1cc{bottom:404.192000pt;}
.y137{bottom:405.484000pt;}
.ya2{bottom:410.634667pt;}
.y2f{bottom:414.958667pt;}
.y5a{bottom:415.701333pt;}
.y186{bottom:417.196000pt;}
.y112{bottom:418.238667pt;}
.ye8{bottom:419.674667pt;}
.yc3{bottom:419.866667pt;}
.y15f{bottom:422.445333pt;}
.y7f{bottom:425.404000pt;}
.y7d{bottom:425.758667pt;}
.y2e{bottom:425.892000pt;}
.y59{bottom:426.634667pt;}
.y15c{bottom:429.960000pt;}
.y1ae{bottom:431.625333pt;}
.ye{bottom:433.072000pt;}
.y7e{bottom:433.273333pt;}
.y136{bottom:437.098667pt;}
.y1cb{bottom:440.489333pt;}
.y15b{bottom:440.894667pt;}
.y7a{bottom:444.208000pt;}
.y185{bottom:450.605333pt;}
.ya0{bottom:451.422667pt;}
.y15e{bottom:456.038667pt;}
.ya1{bottom:458.938667pt;}
.y7c{bottom:459.350667pt;}
.y111{bottom:459.585333pt;}
.y15d{bottom:460.820000pt;}
.y2d{bottom:462.448000pt;}
.yc0{bottom:463.112000pt;}
.y58{bottom:463.189333pt;}
.yc1{bottom:463.230667pt;}
.y1ad{bottom:463.241333pt;}
.y7b{bottom:464.133333pt;}
.yd{bottom:464.686667pt;}
.y110{bottom:465.081333pt;}
.y184{bottom:465.702667pt;}
.ye7{bottom:467.097333pt;}
.y135{bottom:468.713333pt;}
.y9d{bottom:469.872000pt;}
.yc2{bottom:470.628000pt;}
.y183{bottom:471.200000pt;}
.y2c{bottom:473.381333pt;}
.y57{bottom:474.124000pt;}
.y1ca{bottom:476.786667pt;}
.ybd{bottom:481.561333pt;}
.y9f{bottom:485.016000pt;}
.y15a{bottom:486.172000pt;}
.y79{bottom:487.596000pt;}
.y9e{bottom:489.797333pt;}
.y1ac{bottom:494.856000pt;}
.yc{bottom:496.301333pt;}
.ybf{bottom:496.705333pt;}
.y10e{bottom:496.782667pt;}
.ye4{bottom:498.962667pt;}
.ye5{bottom:499.080000pt;}
.y181{bottom:499.640000pt;}
.y134{bottom:500.328000pt;}
.ybe{bottom:501.486667pt;}
.y10f{bottom:504.652000pt;}
.ye6{bottom:506.477333pt;}
.y182{bottom:507.509333pt;}
.y2b{bottom:509.936000pt;}
.y1c9{bottom:513.142667pt;}
.y9c{bottom:513.261333pt;}
.y77{bottom:514.365333pt;}
.y76{bottom:514.718667pt;}
.y10b{bottom:515.586667pt;}
.y56{bottom:516.804000pt;}
.ye1{bottom:517.412000pt;}
.y159{bottom:517.786667pt;}
.y2a{bottom:520.870667pt;}
.y78{bottom:522.234667pt;}
.ybc{bottom:524.950667pt;}
.yb{bottom:527.916000pt;}
.y10d{bottom:530.729333pt;}
.ye3{bottom:532.554667pt;}
.y73{bottom:533.168000pt;}
.y180{bottom:533.586667pt;}
.y10c{bottom:535.512000pt;}
.y1ab{bottom:535.768000pt;}
.ye2{bottom:537.337333pt;}
.y17f{bottom:538.369333pt;}
.y1c8{bottom:540.241333pt;}
.y133{bottom:541.241333pt;}
.y9b{bottom:544.876000pt;}
.y157{bottom:547.272000pt;}
.y75{bottom:548.312000pt;}
.y55{bottom:548.418667pt;}
.y74{bottom:553.093333pt;}
.y158{bottom:555.141333pt;}
.ybb{bottom:556.565333pt;}
.y10a{bottom:558.265333pt;}
.ya{bottom:559.530667pt;}
.y17e{bottom:561.124000pt;}
.ye0{bottom:561.272000pt;}
.y29{bottom:563.550667pt;}
.y154{bottom:566.076000pt;}
.y1c7{bottom:567.340000pt;}
.y72{bottom:576.557333pt;}
.y54{bottom:580.033333pt;}
.y1aa{bottom:580.401333pt;}
.y156{bottom:581.218667pt;}
.y155{bottom:586.001333pt;}
.y132{bottom:588.069333pt;}
.y9{bottom:591.145333pt;}
.y9a{bottom:592.297333pt;}
.y17d{bottom:592.869333pt;}
.ydf{bottom:592.886667pt;}
.y1c6{bottom:594.438667pt;}
.y152{bottom:602.996000pt;}
.y17c{bottom:603.802667pt;}
.y109{bottom:605.109333pt;}
.y28{bottom:605.476000pt;}
.y27{bottom:606.322667pt;}
.y71{bottom:608.172000pt;}
.y153{bottom:610.865333pt;}
.y26{bottom:610.972000pt;}
.y53{bottom:611.778667pt;}
.y1a9{bottom:612.016000pt;}
.y131{bottom:619.684000pt;}
.y1c5{bottom:621.536000pt;}
.y14f{bottom:621.800000pt;}
.y52{bottom:622.713333pt;}
.y8{bottom:622.760000pt;}
.y99{bottom:623.912000pt;}
.ydc{bottom:625.638667pt;}
.ydd{bottom:625.756000pt;}
.yde{bottom:633.153333pt;}
.y108{bottom:636.724000pt;}
.y151{bottom:636.942667pt;}
.y17a{bottom:637.742667pt;}
.y70{bottom:639.786667pt;}
.y150{bottom:641.725333pt;}
.y24{bottom:642.154667pt;}
.y1a8{bottom:643.630667pt;}
.yd9{bottom:644.088000pt;}
.y17b{bottom:645.612000pt;}
.y12e{bottom:648.548000pt;}
.y1c4{bottom:648.634667pt;}
.y12f{bottom:648.665333pt;}
.y25{bottom:649.669333pt;}
.y7{bottom:654.374667pt;}
.yba{bottom:655.657333pt;}
.y98{bottom:655.658667pt;}
.y130{bottom:656.062667pt;}
.ydb{bottom:659.230667pt;}
.y21{bottom:660.604000pt;}
.y107{bottom:662.841333pt;}
.yda{bottom:664.013333pt;}
.y14e{bottom:664.480000pt;}
.y51{bottom:665.393333pt;}
.y97{bottom:666.592000pt;}
.y12b{bottom:666.997333pt;}
.y106{bottom:668.338667pt;}
.y6f{bottom:671.532000pt;}
.y179{bottom:671.689333pt;}
.y1a7{bottom:675.245333pt;}
.y1c3{bottom:675.733333pt;}
.y23{bottom:675.746667pt;}
.y178{bottom:676.472000pt;}
.y1d7{bottom:677.086667pt;}
.y22{bottom:680.529333pt;}
.y12d{bottom:682.140000pt;}
.y6e{bottom:682.466667pt;}
.y12c{bottom:686.922667pt;}
.yd8{bottom:687.476000pt;}
.y6{bottom:695.288000pt;}
.y50{bottom:697.008000pt;}
.y177{bottom:699.373333pt;}
.y105{bottom:699.953333pt;}
.y176{bottom:700.221333pt;}
.y1c2{bottom:702.832000pt;}
.y96{bottom:703.146667pt;}
.y20{bottom:703.284000pt;}
.y1d6{bottom:704.185333pt;}
.y175{bottom:704.870667pt;}
.y1a6{bottom:706.860000pt;}
.y12a{bottom:710.385333pt;}
.y14d{bottom:710.701333pt;}
.y95{bottom:714.081333pt;}
.y6d{bottom:719.021333pt;}
.yd7{bottom:719.090667pt;}
.y1c1{bottom:729.929333pt;}
.y6c{bottom:729.954667pt;}
.y174{bottom:736.485333pt;}
.y1a5{bottom:738.474667pt;}
.y4f{bottom:738.932000pt;}
.y4e{bottom:739.780000pt;}
.y129{bottom:742.000000pt;}
.y14c{bottom:742.316000pt;}
.y104{bottom:746.797333pt;}
.y94{bottom:750.636000pt;}
.y1f{bottom:750.705333pt;}
.y5{bottom:752.824000pt;}
.y1d5{bottom:753.137333pt;}
.y4d{bottom:756.385333pt;}
.y1c0{bottom:757.028000pt;}
.yb9{bottom:761.569333pt;}
.y93{bottom:761.570667pt;}
.y172{bottom:762.428000pt;}
.y6b{bottom:766.509333pt;}
.yd6{bottom:766.513333pt;}
.y1a4{bottom:770.089333pt;}
.y173{bottom:770.297333pt;}
.y4c{bottom:770.546667pt;}
.y4b{bottom:771.394667pt;}
.y14b{bottom:774.061333pt;}
.y4a{bottom:776.044000pt;}
.y6a{bottom:777.444000pt;}
.y103{bottom:778.412000pt;}
.y4{bottom:779.922667pt;}
.y1bf{bottom:784.126667pt;}
.y128{bottom:788.829333pt;}
.y1e{bottom:793.385333pt;}
.y1d4{bottom:794.237333pt;}
.y14a{bottom:795.780000pt;}
.y171{bottom:796.374667pt;}
.yb8{bottom:798.124000pt;}
.y92{bottom:798.125333pt;}
.y170{bottom:801.157333pt;}
.y100{bottom:806.066667pt;}
.yff{bottom:806.420000pt;}
.y101{bottom:806.538667pt;}
.y48{bottom:806.550667pt;}
.y3{bottom:807.021333pt;}
.yd5{bottom:808.437333pt;}
.y91{bottom:809.058667pt;}
.yd4{bottom:809.285333pt;}
.y1a3{bottom:811.002667pt;}
.y1be{bottom:811.225333pt;}
.yd3{bottom:813.934667pt;}
.y102{bottom:813.936000pt;}
.y69{bottom:813.998667pt;}
.y49{bottom:814.065333pt;}
.y16f{bottom:824.058667pt;}
.yfc{bottom:824.869333pt;}
.y16e{bottom:824.906667pt;}
.y68{bottom:824.933333pt;}
.y45{bottom:825.000000pt;}
.y149{bottom:827.676000pt;}
.y16d{bottom:829.556000pt;}
.y127{bottom:831.509333pt;}
.y1d{bottom:832.904000pt;}
.y1d3{bottom:835.336000pt;}
.y1bd{bottom:838.322667pt;}
.yfe{bottom:840.013333pt;}
.y47{bottom:840.142667pt;}
.yfd{bottom:844.794667pt;}
.y46{bottom:844.925333pt;}
.y90{bottom:845.613333pt;}
.yd2{bottom:845.680000pt;}
.y1a2{bottom:855.634667pt;}
.y8f{bottom:856.548000pt;}
.yd1{bottom:856.614667pt;}
.y148{bottom:859.290667pt;}
.y67{bottom:861.488000pt;}
.y2{bottom:864.358667pt;}
.y1bc{bottom:865.421333pt;}
.y44{bottom:867.680000pt;}
.yfb{bottom:868.258667pt;}
.y16c{bottom:870.469333pt;}
.y1c{bottom:872.421333pt;}
.y126{bottom:874.188000pt;}
.y1d2{bottom:876.434667pt;}
.y1a0{bottom:880.692000pt;}
.y147{bottom:885.233333pt;}
.y1a1{bottom:888.561333pt;}
.y1bb{bottom:892.520000pt;}
.y8e{bottom:893.102667pt;}
.y43{bottom:899.294667pt;}
.yfa{bottom:899.873333pt;}
.y8d{bottom:904.036000pt;}
.y1{bottom:904.209333pt;}
.y125{bottom:905.802667pt;}
.y19f{bottom:914.638667pt;}
.y1b{bottom:915.101333pt;}
.y19e{bottom:919.421333pt;}
.y1ba{bottom:919.618667pt;}
.y1d1{bottom:925.521333pt;}
.y19d{bottom:940.050667pt;}
.y19c{bottom:940.897333pt;}
.y19b{bottom:945.546667pt;}
.y1a{bottom:946.716000pt;}
.y19{bottom:978.597333pt;}
.h8{height:2.550443pt;}
.h17{height:13.098402pt;}
.h7{height:28.437317pt;}
.h11{height:29.925069pt;}
.h13{height:31.880400pt;}
.h4{height:34.239693pt;}
.h37{height:38.043849pt;}
.h2{height:39.850400pt;}
.h3{height:45.652924pt;}
.h1{height:47.820800pt;}
.h2b{height:53.061069pt;}
.h27{height:53.066402pt;}
.h10{height:56.250402pt;}
.h28{height:56.255735pt;}
.h6{height:58.205733pt;}
.h5{height:58.211067pt;}
.h19{height:58.218402pt;}
.h21{height:60.173733pt;}
.h35{height:60.917069pt;}
.hb{height:60.922402pt;}
.h33{height:62.877733pt;}
.h2c{height:63.121109pt;}
.h2d{height:63.126443pt;}
.h26{height:73.619067pt;}
.h34{height:73.626402pt;}
.hd{height:76.182443pt;}
.h16{height:76.187776pt;}
.hc{height:76.815735pt;}
.h36{height:78.765733pt;}
.h15{height:78.771067pt;}
.h14{height:79.519735pt;}
.h22{height:82.157733pt;}
.h18{height:82.163067pt;}
.h1f{height:82.906402pt;}
.h30{height:90.956800pt;}
.h1e{height:91.926443pt;}
.h23{height:92.449109pt;}
.he{height:92.454443pt;}
.h20{height:95.313109pt;}
.h2f{height:101.944400pt;}
.h1d{height:111.579776pt;}
.h29{height:111.581733pt;}
.h1a{height:111.585109pt;}
.h31{height:134.695467pt;}
.hf{height:136.187776pt;}
.ha{height:136.193109pt;}
.h32{height:149.290402pt;}
.h24{height:153.365069pt;}
.h1c{height:155.318443pt;}
.h25{height:155.323776pt;}
.h9{height:166.251776pt;}
.h2e{height:166.566443pt;}
.h1b{height:167.665109pt;}
.h12{height:167.670443pt;}
.h2a{height:186.795776pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.xf6{left:102.641333pt;}
.x8a{left:110.601333pt;}
.x5{left:111.940000pt;}
.x1{left:114.156000pt;}
.xf8{left:121.646667pt;}
.xf7{left:123.305333pt;}
.xa6{left:124.393333pt;}
.xb0{left:128.849333pt;}
.x4e{left:131.768000pt;}
.x8f{left:133.305333pt;}
.x6a{left:134.720000pt;}
.x8e{left:138.114667pt;}
.xd7{left:141.110667pt;}
.x3{left:143.821333pt;}
.x4c{left:153.381333pt;}
.x3b{left:155.354667pt;}
.x90{left:157.277333pt;}
.xc2{left:158.674667pt;}
.xa4{left:160.832000pt;}
.x73{left:162.348000pt;}
.xc1{left:163.484000pt;}
.xcc{left:164.901333pt;}
.x58{left:171.176000pt;}
.x8c{left:173.513333pt;}
.xcf{left:175.766667pt;}
.x8b{left:178.322667pt;}
.xc3{left:182.646667pt;}
.x97{left:184.357333pt;}
.xa8{left:185.358667pt;}
.xa9{left:187.068000pt;}
.xb1{left:189.816000pt;}
.xa7{left:191.877333pt;}
.x7f{left:193.093333pt;}
.x6c{left:195.922667pt;}
.x5a{left:197.030667pt;}
.xb5{left:198.009333pt;}
.x9d{left:198.997333pt;}
.xd1{left:201.448000pt;}
.x6b{left:202.441333pt;}
.xd8{left:203.785333pt;}
.x9a{left:204.728000pt;}
.x9{left:206.289333pt;}
.xd0{left:207.966667pt;}
.x1e{left:209.694667pt;}
.xaa{left:211.040000pt;}
.x99{left:212.814667pt;}
.x3d{left:215.501333pt;}
.x13{left:217.300000pt;}
.xbc{left:219.041333pt;}
.x6d{left:221.604000pt;}
.x86{left:223.629333pt;}
.x32{left:224.594667pt;}
.xbb{left:225.560000pt;}
.x11{left:228.093333pt;}
.x85{left:230.148000pt;}
.xc4{left:231.934667pt;}
.x59{left:235.185333pt;}
.x4f{left:236.957333pt;}
.xa1{left:238.405333pt;}
.x8d{left:243.365333pt;}
.x52{left:244.761333pt;}
.xbd{left:245.940000pt;}
.xa5{left:247.480000pt;}
.x2d{left:249.878667pt;}
.x2e{left:251.096000pt;}
.x3c{left:252.066667pt;}
.xc5{left:253.270667pt;}
.x9b{left:255.352000pt;}
.xec{left:256.849333pt;}
.x2c{left:257.965333pt;}
.x74{left:258.874667pt;}
.x5c{left:259.942667pt;}
.x5b{left:264.752000pt;}
.x7a{left:266.678667pt;}
.x64{left:267.744000pt;}
.x65{left:269.453333pt;}
.x20{left:270.896000pt;}
.x6{left:272.233333pt;}
.xb{left:273.370667pt;}
.x48{left:274.840000pt;}
.xb2{left:276.897333pt;}
.x1f{left:278.984000pt;}
.x47{left:281.561333pt;}
.x5d{left:283.914667pt;}
.x34{left:285.796000pt;}
.xa{left:287.561333pt;}
.xac{left:288.564000pt;}
.x33{left:292.316000pt;}
.x66{left:293.425333pt;}
.xb8{left:295.609333pt;}
.x22{left:296.578667pt;}
.x23{left:298.288000pt;}
.x40{left:301.197333pt;}
.x21{left:303.097333pt;}
.x9e{left:304.185333pt;}
.x2f{left:306.572000pt;}
.x12{left:309.290667pt;}
.x35{left:311.478667pt;}
.xc{left:315.164000pt;}
.xab{left:316.182667pt;}
.xe2{left:318.646667pt;}
.xf2{left:321.072000pt;}
.x80{left:321.998667pt;}
.x75{left:323.769333pt;}
.xf5{left:324.802667pt;}
.xe8{left:326.209333pt;}
.x1d{left:327.665333pt;}
.x91{left:329.397333pt;}
.x6e{left:330.289333pt;}
.x7b{left:331.573333pt;}
.x98{left:332.468000pt;}
.x14{left:334.028000pt;}
.xad{left:336.306667pt;}
.xe0{left:338.422667pt;}
.x81{left:339.377333pt;}
.xbe{left:341.294667pt;}
.xd6{left:342.642667pt;}
.xc6{left:344.405333pt;}
.xf1{left:345.833333pt;}
.x49{left:347.761333pt;}
.x2{left:348.962667pt;}
.xd9{left:349.938667pt;}
.xba{left:351.741333pt;}
.x24{left:353.272000pt;}
.x87{left:356.224000pt;}
.xb9{left:358.260000pt;}
.x41{left:361.009333pt;}
.xd2{left:363.206667pt;}
.xe{left:366.564000pt;}
.xf{left:368.273333pt;}
.x4{left:369.376000pt;}
.xd{left:372.430667pt;}
.xce{left:373.684000pt;}
.x17{left:374.957333pt;}
.xa2{left:376.885333pt;}
.xe7{left:378.057333pt;}
.xcd{left:378.984000pt;}
.x5e{left:379.934667pt;}
.xed{left:381.160000pt;}
.x1a{left:382.761333pt;}
.x76{left:383.840000pt;}
.xe3{left:385.474667pt;}
.xf0{left:386.961333pt;}
.xef{left:388.004000pt;}
.x83{left:389.873333pt;}
.x7c{left:391.644000pt;}
.x15{left:393.840000pt;}
.xdf{left:398.472000pt;}
.x82{left:399.448000pt;}
.x50{left:400.676000pt;}
.x67{left:402.996000pt;}
.x8{left:404.928000pt;}
.xca{left:406.665333pt;}
.x53{left:408.480000pt;}
.xe4{left:411.144000pt;}
.x9c{left:412.576000pt;}
.x30{left:415.852000pt;}
.x10{left:418.574667pt;}
.x36{left:420.162667pt;}
.x5f{left:421.822667pt;}
.xaf{left:424.158667pt;}
.xe5{left:425.737333pt;}
.x42{left:428.626667pt;}
.xae{left:432.578667pt;}
.xeb{left:435.086667pt;}
.x44{left:436.430667pt;}
.x89{left:437.802667pt;}
.xf3{left:438.784000pt;}
.xda{left:441.073333pt;}
.xbf{left:444.468000pt;}
.xdd{left:445.430667pt;}
.x25{left:447.770667pt;}
.x26{left:449.480000pt;}
.xcb{left:451.437333pt;}
.x16{left:453.652000pt;}
.x9f{left:455.700000pt;}
.xe1{left:457.312000pt;}
.xa3{left:463.504000pt;}
.x51{left:465.829333pt;}
.xb6{left:467.336000pt;}
.x18{left:469.860000pt;}
.x27{left:473.452000pt;}
.xf4{left:475.190667pt;}
.xe6{left:476.305333pt;}
.x1b{left:477.664000pt;}
.x3e{left:479.850667pt;}
.x55{left:481.437333pt;}
.x77{left:482.664000pt;}
.xe9{left:483.726667pt;}
.xb3{left:487.464000pt;}
.x43{left:488.438667pt;}
.x4a{left:490.950667pt;}
.xde{left:491.857333pt;}
.x6f{left:494.409333pt;}
.x68{left:498.298667pt;}
.x61{left:499.721333pt;}
.x62{left:500.940000pt;}
.x45{left:504.046667pt;}
.x31{left:506.465333pt;}
.x60{left:507.809333pt;}
.xc7{left:509.604000pt;}
.x29{left:511.245333pt;}
.x2a{left:512.464000pt;}
.x28{left:519.333333pt;}
.x38{left:520.572000pt;}
.xee{left:522.156000pt;}
.x37{left:523.336000pt;}
.x92{left:526.284000pt;}
.x93{left:527.501333pt;}
.xd3{left:528.405333pt;}
.xea{left:532.333333pt;}
.x69{left:540.836000pt;}
.xa0{left:542.061333pt;}
.x88{left:546.893333pt;}
.x78{left:547.817333pt;}
.x63{left:550.345333pt;}
.x94{left:551.965333pt;}
.x84{left:553.850667pt;}
.x19{left:556.958667pt;}
.xc0{left:559.269333pt;}
.x7d{left:563.425333pt;}
.x1c{left:564.762667pt;}
.x3f{left:566.690667pt;}
.x2b{left:567.940000pt;}
.x46{left:571.662667pt;}
.x4b{left:574.214667pt;}
.x96{left:586.152000pt;}
.x56{left:588.065333pt;}
.xc8{left:592.613333pt;}
.x95{left:594.238667pt;}
.x39{left:598.118667pt;}
.xdb{left:606.272000pt;}
.x79{left:607.630667pt;}
.xb7{left:612.046667pt;}
.x70{left:613.209333pt;}
.xd4{left:614.134667pt;}
.xb4{left:618.532000pt;}
.x4d{left:619.832000pt;}
.x7e{left:623.238667pt;}
.xc9{left:624.954667pt;}
.x71{left:631.461333pt;}
.x54{left:637.352000pt;}
.x3a{left:640.648000pt;}
.xd5{left:648.977333pt;}
.x57{left:652.960000pt;}
.x72{left:669.598667pt;}
.xdc{left:670.548000pt;}
}




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