
    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_07e8c8eb04b11af9d7900622.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_d5300e43c55c179291305fde.woff')format("woff");}.ff2{font-family:ff2;line-height:0.925781;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_263b8c0d8de1f31e7f974192.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_1947705929d738997f5ac2b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_1d20b56ae29f4d3815cbffaa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_7146aa1662f00245496e52f3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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_a42b3414da61a10c3b0752f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_50f5fcf90bc0efa553509b16.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_f8d44c124c71d4b4fe4dded0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_5cbcf3698b67be8b951bf023.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_fdbc93149c216d07b59427d7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d19ea87d70f443db1ecbdc0f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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_79be606e553908d6fd7719a4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_acf349a7ef2ca9da2cfe3048.woff')format("woff");}.ffe{font-family:ffe;line-height:0.922852;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_e466bc83171176e02637f207.woff')format("woff");}.fff{font-family:fff;line-height:0.883789;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_8279d3bb53a0dacbd74650c9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.902344;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_357768c827f9098ba335e2f1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.883789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f8e5aa28962bcc1d8a9f9a08.woff')format("woff");}.ff12{font-family:ff12;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_163c19fa1e8daddbcf8de213.woff')format("woff");}.ff13{font-family:ff13;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_163c19fa1e8daddbcf8de213.woff')format("woff");}.ff14{font-family:ff14;line-height:1.037000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.179449,-0.174064,0.179449,0.174064,0,0);-ms-transform:matrix(0.179449,-0.174064,0.179449,0.174064,0,0);-webkit-transform:matrix(0.179449,-0.174064,0.179449,0.174064,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257731,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);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls22{letter-spacing:-3.672000px;}
.ls2d{letter-spacing:-3.456000px;}
.ls1e{letter-spacing:-3.384000px;}
.ls95{letter-spacing:-3.168000px;}
.ls26{letter-spacing:-3.096000px;}
.ls4d{letter-spacing:-2.754000px;}
.ls3a{letter-spacing:-2.700000px;}
.ls3d{letter-spacing:-2.640000px;}
.ls94{letter-spacing:-2.592000px;}
.ls41{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-2.304000px;}
.ls4a{letter-spacing:-2.268000px;}
.ls8b{letter-spacing:-2.232000px;}
.ls25{letter-spacing:-2.160000px;}
.ls4b{letter-spacing:-2.106000px;}
.ls21{letter-spacing:-2.088000px;}
.ls38{letter-spacing:-2.040000px;}
.ls14{letter-spacing:-2.016000px;}
.ls5c{letter-spacing:-1.998000px;}
.ls18{letter-spacing:-1.944000px;}
.ls23{letter-spacing:-1.872000px;}
.ls20{letter-spacing:-1.800000px;}
.ls59{letter-spacing:-1.782000px;}
.lsb{letter-spacing:-1.728000px;}
.ls40{letter-spacing:-1.680000px;}
.ls92{letter-spacing:-1.656000px;}
.ls67{letter-spacing:-1.620000px;}
.ls8d{letter-spacing:-1.584000px;}
.ls57{letter-spacing:-1.566000px;}
.ls3f{letter-spacing:-1.560000px;}
.ls16{letter-spacing:-1.512000px;}
.ls69{letter-spacing:-1.458000px;}
.ls27{letter-spacing:-1.440000px;}
.ls37{letter-spacing:-1.380000px;}
.ls1b{letter-spacing:-1.368000px;}
.ls50{letter-spacing:-1.350000px;}
.ls91{letter-spacing:-1.296000px;}
.ls9b{letter-spacing:-1.248000px;}
.ls54{letter-spacing:-1.242000px;}
.ls29{letter-spacing:-1.224000px;}
.ls39{letter-spacing:-1.200000px;}
.ls70{letter-spacing:-1.188000px;}
.ls2f{letter-spacing:-1.152000px;}
.ls88{letter-spacing:-1.130850px;}
.lsc{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-1.077984px;}
.ls96{letter-spacing:-1.049400px;}
.ls6b{letter-spacing:-1.026000px;}
.ls32{letter-spacing:-1.020000px;}
.ls19{letter-spacing:-1.008000px;}
.ls87{letter-spacing:-0.995148px;}
.ls4c{letter-spacing:-0.972000px;}
.ls34{letter-spacing:-0.960000px;}
.ls93{letter-spacing:-0.936000px;}
.ls5a{letter-spacing:-0.918000px;}
.ls1d{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls3c{letter-spacing:-0.840000px;}
.ls63{letter-spacing:-0.810000px;}
.ls17{letter-spacing:-0.792000px;}
.ls5b{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.702000px;}
.ls10{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.600000px;}
.ls55{letter-spacing:-0.594000px;}
.ls81{letter-spacing:-0.588042px;}
.lsf{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.540000px;}
.ls6a{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.480000px;}
.ls85{letter-spacing:-0.452340px;}
.ls62{letter-spacing:-0.432000px;}
.ls83{letter-spacing:-0.407106px;}
.ls53{letter-spacing:-0.378000px;}
.ls84{letter-spacing:-0.361872px;}
.ls24{letter-spacing:-0.360000px;}
.ls8e{letter-spacing:-0.300000px;}
.ls8a{letter-spacing:-0.293832px;}
.ls7c{letter-spacing:-0.271404px;}
.ls42{letter-spacing:-0.240000px;}
.ls7d{letter-spacing:-0.226170px;}
.ls4f{letter-spacing:-0.216000px;}
.ls9e{letter-spacing:-0.192000px;}
.ls7b{letter-spacing:-0.180936px;}
.ls3b{letter-spacing:-0.180000px;}
.ls60{letter-spacing:-0.162000px;}
.ls97{letter-spacing:-0.144000px;}
.ls7e{letter-spacing:-0.135702px;}
.ls7a{letter-spacing:-0.109514px;}
.ls1f{letter-spacing:-0.072000px;}
.ls7f{letter-spacing:-0.054757px;}
.ls80{letter-spacing:-0.045234px;}
.ls0{letter-spacing:0.000000px;}
.ls9d{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.072000px;}
.ls74{letter-spacing:0.114990px;}
.ls90{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.162000px;}
.ls82{letter-spacing:0.180936px;}
.ls9c{letter-spacing:0.192000px;}
.ls68{letter-spacing:0.216000px;}
.ls78{letter-spacing:0.226170px;}
.ls4{letter-spacing:0.240000px;}
.ls58{letter-spacing:0.270000px;}
.lse{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.303000px;}
.ls8c{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.486000px;}
.ls31{letter-spacing:0.540000px;}
.ls5e{letter-spacing:0.594000px;}
.ls79{letter-spacing:0.633276px;}
.ls73{letter-spacing:0.646800px;}
.ls44{letter-spacing:0.648000px;}
.ls71{letter-spacing:0.702000px;}
.ls8f{letter-spacing:0.720000px;}
.ls6f{letter-spacing:0.756000px;}
.ls86{letter-spacing:0.768978px;}
.ls15{letter-spacing:0.864000px;}
.ls3e{letter-spacing:0.900000px;}
.ls47{letter-spacing:0.918000px;}
.ls2e{letter-spacing:0.952800px;}
.lsa{letter-spacing:1.008000px;}
.ls43{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.026000px;}
.ls61{letter-spacing:1.080000px;}
.ls66{letter-spacing:1.134000px;}
.ls49{letter-spacing:1.188000px;}
.ls35{letter-spacing:1.260000px;}
.ls5d{letter-spacing:1.296000px;}
.lsa1{letter-spacing:1.320000px;}
.ls51{letter-spacing:1.350000px;}
.ls65{letter-spacing:1.404000px;}
.ls6d{letter-spacing:1.458000px;}
.lsd{letter-spacing:1.553400px;}
.ls2c{letter-spacing:1.584000px;}
.ls5f{letter-spacing:1.728000px;}
.ls33{letter-spacing:1.740000px;}
.ls72{letter-spacing:1.782000px;}
.ls6c{letter-spacing:1.944000px;}
.ls99{letter-spacing:2.232000px;}
.ls9f{letter-spacing:4.080000px;}
.ls9a{letter-spacing:4.848000px;}
.lsa0{letter-spacing:5.460000px;}
.ls5{letter-spacing:5.568000px;}
.ls7{letter-spacing:5.664000px;}
.ls9{letter-spacing:6.000000px;}
.ls77{letter-spacing:6.128086px;}
.ls98{letter-spacing:6.480000px;}
.ls13{letter-spacing:7.800000px;}
.ls75{letter-spacing:10.118196px;}
.ls6{letter-spacing:10.962000px;}
.ls89{letter-spacing:11.232000px;}
.ls2{letter-spacing:11.682000px;}
.ls3{letter-spacing:12.474000px;}
.ls76{letter-spacing:16.141499px;}
.ls2a{letter-spacing:18.648000px;}
.ls46{letter-spacing:105.000000px;}
.ls45{letter-spacing:135.000000px;}
.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;}
}
.wscf{word-spacing:-150.174000px;}
.wsc3{word-spacing:-90.174000px;}
.wsf4{word-spacing:-54.757200px;}
.ws117{word-spacing:-29.016000px;}
.ws2{word-spacing:-27.648000px;}
.ws4{word-spacing:-26.136000px;}
.ws130{word-spacing:-23.340000px;}
.ws13a{word-spacing:-22.320000px;}
.wsf{word-spacing:-21.240000px;}
.ws32{word-spacing:-20.304000px;}
.ws11{word-spacing:-19.584000px;}
.ws3d{word-spacing:-19.080000px;}
.ws36{word-spacing:-19.008000px;}
.ws38{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.546000px;}
.ws54{word-spacing:-17.400000px;}
.ws44{word-spacing:-17.160000px;}
.ws3{word-spacing:-17.100000px;}
.wsf0{word-spacing:-17.064000px;}
.ws17{word-spacing:-16.992000px;}
.wse3{word-spacing:-16.956000px;}
.wsf1{word-spacing:-16.860000px;}
.ws129{word-spacing:-16.776000px;}
.ws18{word-spacing:-16.704000px;}
.wse1{word-spacing:-16.632000px;}
.ws6b{word-spacing:-16.524000px;}
.ws6a{word-spacing:-16.362000px;}
.ws11e{word-spacing:-16.344000px;}
.ws16{word-spacing:-16.272000px;}
.wsb0{word-spacing:-16.092000px;}
.wsc{word-spacing:-16.056000px;}
.ws4a{word-spacing:-16.020000px;}
.ws2a{word-spacing:-15.984000px;}
.ws1a{word-spacing:-15.960000px;}
.ws2c{word-spacing:-15.912000px;}
.ws42{word-spacing:-15.900000px;}
.ws40{word-spacing:-15.840000px;}
.ws5e{word-spacing:-15.822000px;}
.ws57{word-spacing:-15.780000px;}
.ws15{word-spacing:-15.768000px;}
.ws2b{word-spacing:-15.696000px;}
.ws30{word-spacing:-15.624000px;}
.ws119{word-spacing:-15.552000px;}
.ws4c{word-spacing:-15.480000px;}
.ws4f{word-spacing:-15.420000px;}
.wsbb{word-spacing:-15.336000px;}
.ws51{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.228000px;}
.ws55{word-spacing:-15.180000px;}
.ws60{word-spacing:-15.174000px;}
.wsce{word-spacing:-15.012000px;}
.wsbf{word-spacing:-14.958000px;}
.ws46{word-spacing:-14.820000px;}
.wsc8{word-spacing:-14.796000px;}
.ws9b{word-spacing:-14.742000px;}
.wsf5{word-spacing:-14.729687px;}
.ws31{word-spacing:-14.688000px;}
.wsf6{word-spacing:-14.674930px;}
.wsc7{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.400000px;}
.ws58{word-spacing:-14.340000px;}
.ws80{word-spacing:-14.256000px;}
.ws93{word-spacing:-14.202000px;}
.ws48{word-spacing:-14.160000px;}
.wsb8{word-spacing:-14.148000px;}
.wsd4{word-spacing:-13.932000px;}
.ws136{word-spacing:-13.680000px;}
.wsa9{word-spacing:-13.608000px;}
.ws37{word-spacing:-13.488000px;}
.wscd{word-spacing:-13.392000px;}
.ws8a{word-spacing:-13.230000px;}
.ws5f{word-spacing:-13.068000px;}
.ws76{word-spacing:-13.014000px;}
.ws5c{word-spacing:-12.906000px;}
.wsf3{word-spacing:-12.575052px;}
.wsf2{word-spacing:-12.484584px;}
.ws5d{word-spacing:-12.474000px;}
.ws134{word-spacing:-12.432000px;}
.ws135{word-spacing:-12.048000px;}
.ws138{word-spacing:-11.904000px;}
.ws3a{word-spacing:-11.856000px;}
.ws10{word-spacing:-11.795256px;}
.ws139{word-spacing:-11.664000px;}
.ws137{word-spacing:-11.616000px;}
.ws118{word-spacing:-11.501424px;}
.ws12f{word-spacing:-10.745856px;}
.wsfa{word-spacing:-8.413524px;}
.wsf8{word-spacing:-8.277822px;}
.wsfb{word-spacing:-7.870716px;}
.wsa{word-spacing:-6.000000px;}
.ws8{word-spacing:-5.664000px;}
.ws121{word-spacing:-4.104000px;}
.ws101{word-spacing:-3.392572px;}
.ws104{word-spacing:-3.333053px;}
.ws133{word-spacing:-2.232000px;}
.wsda{word-spacing:-1.944000px;}
.ws5a{word-spacing:-1.740000px;}
.ws3b{word-spacing:-1.584000px;}
.wse6{word-spacing:-1.458000px;}
.wsd6{word-spacing:-1.350000px;}
.ws13e{word-spacing:-1.320000px;}
.ws112{word-spacing:-1.311786px;}
.ws6{word-spacing:-1.122000px;}
.ws116{word-spacing:-1.080000px;}
.wsdb{word-spacing:-1.026000px;}
.ws5b{word-spacing:-1.020000px;}
.wsd{word-spacing:-1.008000px;}
.ws1b{word-spacing:-0.864000px;}
.ws7{word-spacing:-0.768000px;}
.wse8{word-spacing:-0.702000px;}
.ws120{word-spacing:-0.648000px;}
.wsd8{word-spacing:-0.594000px;}
.ws109{word-spacing:-0.535669px;}
.wsd9{word-spacing:-0.486000px;}
.wsdc{word-spacing:-0.432000px;}
.ws11a{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.288000px;}
.wsed{word-spacing:-0.270000px;}
.ws13d{word-spacing:-0.240000px;}
.wseb{word-spacing:-0.216000px;}
.ws13c{word-spacing:-0.192000px;}
.ws10f{word-spacing:-0.180936px;}
.ws122{word-spacing:-0.144000px;}
.ws110{word-spacing:-0.135702px;}
.wsec{word-spacing:-0.054000px;}
.wsf9{word-spacing:-0.045234px;}
.ws3e{word-spacing:-0.036493px;}
.ws5{word-spacing:0.000000px;}
.ws10e{word-spacing:0.045234px;}
.ws105{word-spacing:0.054757px;}
.ws2d{word-spacing:0.072000px;}
.wsfc{word-spacing:0.109514px;}
.wsfd{word-spacing:0.135702px;}
.ws132{word-spacing:0.144000px;}
.wsef{word-spacing:0.162000px;}
.ws1c{word-spacing:0.216000px;}
.ws23{word-spacing:0.288000px;}
.ws11f{word-spacing:0.300000px;}
.ws33{word-spacing:0.360000px;}
.wse7{word-spacing:0.378000px;}
.wse9{word-spacing:0.432000px;}
.ws113{word-spacing:0.452340px;}
.ws39{word-spacing:0.480000px;}
.ws13{word-spacing:0.576000px;}
.ws114{word-spacing:0.588042px;}
.ws9{word-spacing:0.600000px;}
.ws125{word-spacing:0.648000px;}
.ws14{word-spacing:0.720000px;}
.ws24{word-spacing:0.792000px;}
.wsd7{word-spacing:0.810000px;}
.ws28{word-spacing:0.864000px;}
.ws127{word-spacing:0.936000px;}
.ws25{word-spacing:1.008000px;}
.ws111{word-spacing:1.040382px;}
.ws3f{word-spacing:1.077984px;}
.ws1d{word-spacing:1.080000px;}
.ws11b{word-spacing:1.152000px;}
.wse5{word-spacing:1.188000px;}
.ws128{word-spacing:1.224000px;}
.wsee{word-spacing:1.242000px;}
.ws13b{word-spacing:1.248000px;}
.ws123{word-spacing:1.296000px;}
.wsea{word-spacing:1.350000px;}
.ws27{word-spacing:1.368000px;}
.ws35{word-spacing:1.440000px;}
.ws22{word-spacing:1.512000px;}
.ws11c{word-spacing:1.584000px;}
.ws124{word-spacing:1.656000px;}
.ws115{word-spacing:1.673658px;}
.ws20{word-spacing:1.728000px;}
.ws19{word-spacing:1.872000px;}
.ws126{word-spacing:1.944000px;}
.ws12a{word-spacing:2.160000px;}
.ws26{word-spacing:2.304000px;}
.ws10a{word-spacing:2.380752px;}
.ws12c{word-spacing:2.448000px;}
.ws12d{word-spacing:2.592000px;}
.ws1e{word-spacing:2.664000px;}
.ws12b{word-spacing:3.096000px;}
.ws12e{word-spacing:3.168000px;}
.ws34{word-spacing:3.312000px;}
.ws3c{word-spacing:3.456000px;}
.ws2e{word-spacing:3.672000px;}
.wsff{word-spacing:4.880542px;}
.ws21{word-spacing:5.832000px;}
.ws1f{word-spacing:6.840000px;}
.wse{word-spacing:7.200000px;}
.ws131{word-spacing:7.488000px;}
.ws2f{word-spacing:7.848000px;}
.ws102{word-spacing:8.094557px;}
.ws11d{word-spacing:8.280000px;}
.wsfe{word-spacing:8.392151px;}
.ws108{word-spacing:9.880121px;}
.ws106{word-spacing:10.118196px;}
.ws100{word-spacing:10.653865px;}
.ws103{word-spacing:12.320392px;}
.ws10d{word-spacing:13.510768px;}
.ws107{word-spacing:15.534407px;}
.ws10b{word-spacing:16.010557px;}
.ws10c{word-spacing:20.414948px;}
.ws61{word-spacing:32.899200px;}
.ws67{word-spacing:33.099000px;}
.ws77{word-spacing:34.152000px;}
.ws7c{word-spacing:34.605600px;}
.ws90{word-spacing:34.794600px;}
.ws85{word-spacing:35.086200px;}
.wsa2{word-spacing:35.145600px;}
.ws68{word-spacing:36.436200px;}
.ws62{word-spacing:36.741600px;}
.ws73{word-spacing:36.862800px;}
.ws91{word-spacing:36.992400px;}
.ws6c{word-spacing:38.515200px;}
.ws63{word-spacing:38.545200px;}
.ws69{word-spacing:39.406200px;}
.wsd0{word-spacing:40.362000px;}
.ws65{word-spacing:40.494600px;}
.ws7d{word-spacing:41.474400px;}
.ws7a{word-spacing:41.960400px;}
.ws64{word-spacing:42.694800px;}
.ws70{word-spacing:42.889200px;}
.ws92{word-spacing:43.137600px;}
.ws89{word-spacing:43.440000px;}
.ws66{word-spacing:43.467000px;}
.ws8f{word-spacing:57.669000px;}
.wsa5{word-spacing:58.614000px;}
.ws8b{word-spacing:58.776000px;}
.wsa3{word-spacing:58.965000px;}
.wsa1{word-spacing:59.262000px;}
.wsa8{word-spacing:59.424000px;}
.wsa4{word-spacing:59.748000px;}
.ws74{word-spacing:60.072000px;}
.ws9a{word-spacing:60.234000px;}
.wse2{word-spacing:60.558000px;}
.wsd3{word-spacing:60.882000px;}
.wsc9{word-spacing:61.206000px;}
.wsf7{word-spacing:61.987943px;}
.ws7e{word-spacing:62.016000px;}
.wsbe{word-spacing:62.178000px;}
.wsaf{word-spacing:62.340000px;}
.ws94{word-spacing:62.664000px;}
.ws9c{word-spacing:62.826000px;}
.ws98{word-spacing:63.312000px;}
.wsdf{word-spacing:63.501000px;}
.wsb5{word-spacing:64.122000px;}
.ws75{word-spacing:64.446000px;}
.ws82{word-spacing:64.470600px;}
.ws72{word-spacing:64.608000px;}
.ws87{word-spacing:64.770000px;}
.wsae{word-spacing:64.932000px;}
.ws81{word-spacing:65.094000px;}
.ws71{word-spacing:65.145600px;}
.wsb3{word-spacing:65.580000px;}
.ws79{word-spacing:65.593800px;}
.wsad{word-spacing:65.742000px;}
.ws6d{word-spacing:66.225600px;}
.wsc4{word-spacing:66.552000px;}
.wsdd{word-spacing:67.200000px;}
.ws6e{word-spacing:67.203000px;}
.ws7b{word-spacing:67.397400px;}
.wsb6{word-spacing:67.524000px;}
.ws83{word-spacing:67.672800px;}
.ws86{word-spacing:67.851000px;}
.ws6f{word-spacing:68.131800px;}
.ws7f{word-spacing:68.199000px;}
.wscb{word-spacing:68.658000px;}
.ws88{word-spacing:68.820000px;}
.wsc0{word-spacing:69.306000px;}
.ws8d{word-spacing:70.556400px;}
.ws96{word-spacing:70.961400px;}
.ws9f{word-spacing:71.115000px;}
.ws78{word-spacing:71.496000px;}
.wsa7{word-spacing:87.669000px;}
.wsc5{word-spacing:88.452000px;}
.wsba{word-spacing:88.776000px;}
.ws8c{word-spacing:88.938000px;}
.ws84{word-spacing:89.262000px;}
.ws99{word-spacing:89.586000px;}
.wsbc{word-spacing:89.748000px;}
.wsd5{word-spacing:89.826000px;}
.wsb4{word-spacing:90.072000px;}
.wsde{word-spacing:90.558000px;}
.ws97{word-spacing:90.882000px;}
.ws8e{word-spacing:91.044000px;}
.wsc1{word-spacing:91.206000px;}
.wsd1{word-spacing:92.016000px;}
.wsab{word-spacing:92.178000px;}
.wsa6{word-spacing:92.664000px;}
.wsb1{word-spacing:92.826000px;}
.wsd2{word-spacing:93.312000px;}
.wsbd{word-spacing:93.960000px;}
.wsa0{word-spacing:94.122000px;}
.wsb7{word-spacing:94.608000px;}
.ws9d{word-spacing:94.770000px;}
.wse0{word-spacing:94.932000px;}
.ws95{word-spacing:95.580000px;}
.ws9e{word-spacing:95.742000px;}
.wsac{word-spacing:96.552000px;}
.wsc2{word-spacing:96.876000px;}
.wsb2{word-spacing:97.200000px;}
.wsaa{word-spacing:97.686000px;}
.wsc6{word-spacing:98.010000px;}
.wse4{word-spacing:98.658000px;}
.wsca{word-spacing:98.820000px;}
.wscc{word-spacing:99.306000px;}
.wsb9{word-spacing:101.115000px;}
.ws0{word-spacing:674.346000px;}
.ws4d{word-spacing:1025.346000px;}
.ws4b{word-spacing:1112.274000px;}
.ws49{word-spacing:1113.510000px;}
.ws47{word-spacing:1133.616000px;}
.ws56{word-spacing:1164.672000px;}
.ws41{word-spacing:1184.658000px;}
.ws45{word-spacing:1194.192000px;}
.ws43{word-spacing:1198.008000px;}
.ws52{word-spacing:1204.836000px;}
.ws4e{word-spacing:1206.078000px;}
.ws53{word-spacing:1211.136000px;}
.ws50{word-spacing:1269.636000px;}
.ws59{word-spacing:1295.400000px;}
._1d{margin-left:-867.331800px;}
._15{margin-left:-865.107600px;}
._12{margin-left:-862.784400px;}
._a{margin-left:-861.583200px;}
._16{margin-left:-860.401800px;}
._1{margin-left:-713.326800px;}
._31{margin-left:-105.000000px;}
._30{margin-left:-30.000000px;}
._1b{margin-left:-23.184600px;}
._10{margin-left:-20.683800px;}
._19{margin-left:-18.987600px;}
._1c{margin-left:-17.952600px;}
._1a{margin-left:-16.869600px;}
._36{margin-left:-14.820000px;}
._5{margin-left:-7.911000px;}
._e{margin-left:-6.872400px;}
._6{margin-left:-5.529600px;}
._7{margin-left:-3.915000px;}
._3{margin-left:-2.506800px;}
._2{margin-left:-1.382400px;}
._0{width:1.479600px;}
._4{width:2.865600px;}
._8{width:4.568400px;}
._9{width:5.739000px;}
._b{width:7.327200px;}
._f{width:9.246000px;}
._c{width:10.469400px;}
._d{width:11.591400px;}
._13{width:12.888000px;}
._14{width:14.029200px;}
._18{width:16.057200px;}
._17{width:19.199400px;}
._11{width:27.198000px;}
._2a{width:79.677000px;}
._28{width:86.378400px;}
._27{width:99.705600px;}
._2b{width:107.433000px;}
._2f{width:112.320000px;}
._29{width:121.930800px;}
._2d{width:135.000000px;}
._2c{width:142.930800px;}
._2e{width:195.606000px;}
._34{width:197.055648px;}
._20{width:262.989600px;}
._35{width:400.740108px;}
._32{width:405.818574px;}
._26{width:414.241200px;}
._33{width:468.829536px;}
._1e{width:520.480800px;}
._22{width:696.526800px;}
._25{width:835.257600px;}
._24{width:851.800200px;}
._21{width:907.402800px;}
._23{width:947.642400px;}
._1f{width:963.742800px;}
.fc4{color:transparent;}
.fc1{color:rgb(81,82,84);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fsa{font-size:35.932800px;}
.fsb{font-size:36.492640px;}
.fsf{font-size:39.282600px;}
.fs7{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fsd{font-size:45.234000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:54.757200px;}
.fse{font-size:59.518800px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:120.000000px;}
.yd4{bottom:-278.784856px;}
.yd3{bottom:-262.124978px;}
.yd2{bottom:-245.465100px;}
.yf0{bottom:-160.650924px;}
.yef{bottom:-142.795284px;}
.yee{bottom:-124.939644px;}
.yed{bottom:-107.084004px;}
.yec{bottom:-89.228364px;}
.yeb{bottom:-71.075130px;}
.yea{bottom:-53.219490px;}
.ye9{bottom:-35.363850px;}
.ye8{bottom:-17.813717px;}
.ye7{bottom:-5.014222px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.620250px;}
.y72{bottom:6.478200px;}
.yda{bottom:7.885500px;}
.yd7{bottom:16.119150px;}
.y6a{bottom:26.594550px;}
.yd6{bottom:28.915650px;}
.y2{bottom:55.521900px;}
.y6b{bottom:60.847492px;}
.y1{bottom:72.000000px;}
.y6c{bottom:95.091450px;}
.y20{bottom:117.000000px;}
.y52{bottom:117.000150px;}
.y1a6{bottom:127.500000px;}
.y6d{bottom:129.344392px;}
.y5e{bottom:132.000150px;}
.y152{bottom:132.750000px;}
.y1f{bottom:139.500000px;}
.y51{bottom:139.500300px;}
.y1a5{bottom:146.250000px;}
.y67{bottom:147.000150px;}
.yaf{bottom:147.545550px;}
.y151{bottom:150.750000px;}
.y50{bottom:154.500300px;}
.y1e{bottom:162.000000px;}
.y66{bottom:162.000150px;}
.y6e{bottom:163.139190px;}
.yae{bottom:164.045550px;}
.y1a4{bottom:165.000000px;}
.y150{bottom:168.750000px;}
.y4f{bottom:169.500300px;}
.y65{bottom:177.000150px;}
.yd0{bottom:177.750000px;}
.yad{bottom:180.545550px;}
.y1a3{bottom:183.750000px;}
.y40{bottom:184.500000px;}
.y4e{bottom:184.500300px;}
.y14f{bottom:186.750000px;}
.y1d{bottom:192.000000px;}
.y64{bottom:192.000150px;}
.ycf{bottom:195.750000px;}
.y5c{bottom:196.500000px;}
.yac{bottom:197.045550px;}
.y6f{bottom:197.392132px;}
.y4d{bottom:199.500300px;}
.y17b{bottom:200.250000px;}
.y1a2{bottom:202.500000px;}
.y14e{bottom:204.750000px;}
.y3f{bottom:207.000000px;}
.y63{bottom:207.000150px;}
.y5b{bottom:213.300000px;}
.yab{bottom:213.545550px;}
.y4c{bottom:214.500300px;}
.y17a{bottom:218.250000px;}
.y1a1{bottom:221.250000px;}
.y62{bottom:222.000150px;}
.y14d{bottom:222.750000px;}
.yce{bottom:225.000000px;}
.y3e{bottom:229.500000px;}
.y4b{bottom:229.500300px;}
.y5a{bottom:230.100000px;}
.y70{bottom:231.645073px;}
.yaa{bottom:234.523500px;}
.y179{bottom:236.250000px;}
.y61{bottom:237.000150px;}
.y1a0{bottom:240.000000px;}
.ycd{bottom:243.000000px;}
.y4a{bottom:244.500300px;}
.y164{bottom:245.250000px;}
.y1c{bottom:247.500000px;}
.ya9{bottom:251.023500px;}
.y3d{bottom:252.000000px;}
.y60{bottom:252.000150px;}
.y178{bottom:254.250000px;}
.y139{bottom:258.000000px;}
.y59{bottom:258.150000px;}
.y19f{bottom:258.750000px;}
.y49{bottom:259.500300px;}
.y163{bottom:263.250000px;}
.y71{bottom:265.439872px;}
.y1b{bottom:266.250000px;}
.ya8{bottom:272.001600px;}
.ycc{bottom:272.250000px;}
.y3c{bottom:274.500000px;}
.y48{bottom:274.500300px;}
.y58{bottom:274.950000px;}
.y5f{bottom:276.000000px;}
.y162{bottom:281.250000px;}
.y11e{bottom:287.024400px;}
.ya7{bottom:288.501600px;}
.y47{bottom:289.500300px;}
.ycb{bottom:290.250000px;}
.y19e{bottom:291.000000px;}
.y1a{bottom:294.000000px;}
.y3b{bottom:297.000000px;}
.y161{bottom:299.250000px;}
.y177{bottom:301.500000px;}
.y57{bottom:303.000000px;}
.y46{bottom:304.500300px;}
.y11d{bottom:305.024400px;}
.ya6{bottom:309.479550px;}
.y19{bottom:312.750000px;}
.y3a{bottom:319.500000px;}
.y45{bottom:319.500300px;}
.y56{bottom:319.800000px;}
.y19d{bottom:321.000000px;}
.y11c{bottom:323.024400px;}
.ya5{bottom:325.979550px;}
.y160{bottom:328.500000px;}
.y18{bottom:331.500000px;}
.y44{bottom:334.500300px;}
.y176{bottom:337.500000px;}
.ye6{bottom:339.600216px;}
.y39{bottom:342.000000px;}
.ya4{bottom:342.479550px;}
.y15f{bottom:346.500000px;}
.y55{bottom:347.850000px;}
.y43{bottom:349.500300px;}
.y17{bottom:350.250000px;}
.y11b{bottom:352.274400px;}
.y175{bottom:355.500000px;}
.ye5{bottom:355.972619px;}
.ya3{bottom:363.457650px;}
.y38{bottom:364.500000px;}
.y54{bottom:364.650000px;}
.y16{bottom:369.000000px;}
.y11a{bottom:370.274400px;}
.ya2{bottom:379.957650px;}
.y53{bottom:381.450000px;}
.ye4{bottom:382.160250px;}
.y15e{bottom:382.500000px;}
.y19c{bottom:384.000000px;}
.y174{bottom:384.750000px;}
.y37{bottom:387.000000px;}
.y15{bottom:387.750000px;}
.y119{bottom:388.274400px;}
.ye3{bottom:398.825520px;}
.y19b{bottom:399.000000px;}
.y12f{bottom:400.500000px;}
.ya1{bottom:400.935600px;}
.y173{bottom:402.750000px;}
.y118{bottom:406.274400px;}
.y36{bottom:409.500000px;}
.y19a{bottom:414.000000px;}
.y14{bottom:415.500000px;}
.ye2{bottom:416.681160px;}
.ya0{bottom:417.435600px;}
.yca{bottom:418.441650px;}
.y12e{bottom:418.500000px;}
.y172{bottom:420.750000px;}
.y14c{bottom:427.500000px;}
.y199{bottom:429.000000px;}
.y35{bottom:432.000000px;}
.ye1{bottom:434.536800px;}
.yc9{bottom:434.941650px;}
.y117{bottom:435.524400px;}
.y12d{bottom:436.500000px;}
.y9f{bottom:438.413700px;}
.y171{bottom:438.750000px;}
.y198{bottom:444.000000px;}
.y14b{bottom:445.500000px;}
.y1ba{bottom:447.000000px;}
.ye0{bottom:452.392440px;}
.y116{bottom:453.524400px;}
.y88{bottom:453.962700px;}
.y34{bottom:454.500000px;}
.y9e{bottom:454.913700px;}
.yc8{bottom:455.919750px;}
.y170{bottom:456.750000px;}
.y13{bottom:459.000000px;}
.y14a{bottom:463.500000px;}
.y12c{bottom:465.750000px;}
.ydf{bottom:470.248080px;}
.y115{bottom:471.524400px;}
.yc7{bottom:472.419750px;}
.y197{bottom:474.000000px;}
.y9d{bottom:475.891650px;}
.y87{bottom:475.938300px;}
.y33{bottom:477.000000px;}
.y12{bottom:477.750000px;}
.y149{bottom:481.500000px;}
.y12b{bottom:483.750000px;}
.y1b9{bottom:484.500000px;}
.y16f{bottom:486.000000px;}
.yde{bottom:488.103720px;}
.yc6{bottom:488.919750px;}
.y196{bottom:489.000000px;}
.y9c{bottom:492.391650px;}
.y86{bottom:497.913900px;}
.y32{bottom:499.500000px;}
.y114{bottom:500.774400px;}
.y12a{bottom:501.750000px;}
.y1b8{bottom:503.250000px;}
.y16e{bottom:504.000000px;}
.yc5{bottom:505.419750px;}
.y11{bottom:505.500000px;}
.ydd{bottom:505.959360px;}
.y9b{bottom:513.369750px;}
.y113{bottom:518.774400px;}
.y195{bottom:519.000000px;}
.y129{bottom:519.750000px;}
.y85{bottom:519.889500px;}
.y31{bottom:522.000000px;}
.ydc{bottom:523.815000px;}
.y10{bottom:524.250000px;}
.yc4{bottom:526.397700px;}
.y148{bottom:528.750000px;}
.y1b7{bottom:533.250000px;}
.y194{bottom:534.000000px;}
.y9a{bottom:534.347700px;}
.y112{bottom:536.774400px;}
.y128{bottom:537.750000px;}
.y16d{bottom:540.000000px;}
.ydb{bottom:541.372950px;}
.y84{bottom:541.864950px;}
.yc3{bottom:542.897700px;}
.yf{bottom:543.000000px;}
.y30{bottom:544.500000px;}
.y147{bottom:546.750000px;}
.y193{bottom:549.000000px;}
.y17c{bottom:550.500000px;}
.y99{bottom:555.325800px;}
.y127{bottom:555.750000px;}
.y16c{bottom:558.000000px;}
.ye{bottom:561.750000px;}
.y83{bottom:563.840550px;}
.yc2{bottom:563.875800px;}
.y192{bottom:564.000000px;}
.y146{bottom:564.750000px;}
.y111{bottom:566.024400px;}
.yff{bottom:566.250000px;}
.y2f{bottom:567.000000px;}
.y98{bottom:571.825800px;}
.y126{bottom:573.750000px;}
.y1b6{bottom:574.500000px;}
.y16b{bottom:576.000000px;}
.y191{bottom:579.000000px;}
.yc1{bottom:580.375800px;}
.yd{bottom:580.500000px;}
.y145{bottom:582.750000px;}
.y110{bottom:584.024400px;}
.y15d{bottom:585.000000px;}
.yfe{bottom:585.750000px;}
.y82{bottom:585.816150px;}
.y2e{bottom:589.500000px;}
.y125{bottom:591.750000px;}
.y97{bottom:592.803750px;}
.y1b5{bottom:593.250000px;}
.y190{bottom:594.000000px;}
.yc{bottom:599.250000px;}
.y144{bottom:600.750000px;}
.yc0{bottom:601.353750px;}
.y10f{bottom:602.024400px;}
.y15c{bottom:603.000000px;}
.y16a{bottom:605.250000px;}
.y81{bottom:607.791750px;}
.y18f{bottom:609.000000px;}
.y96{bottom:609.303750px;}
.y124{bottom:609.750000px;}
.y42{bottom:612.000000px;}
.yd1{bottom:617.187000px;}
.ybf{bottom:617.853750px;}
.y2d{bottom:618.000000px;}
.y143{bottom:618.750000px;}
.y15b{bottom:621.000000px;}
.y169{bottom:623.250000px;}
.yfd{bottom:623.784000px;}
.y18e{bottom:624.000000px;}
.yb{bottom:627.000000px;}
.y80{bottom:629.767350px;}
.y95{bottom:630.281850px;}
.y1b4{bottom:630.750000px;}
.y10e{bottom:631.274400px;}
.ybe{bottom:634.353750px;}
.y41{bottom:634.500000px;}
.y142{bottom:636.750000px;}
.y123{bottom:639.000000px;}
.y168{bottom:641.250000px;}
.yfc{bottom:641.341950px;}
.y68{bottom:645.750000px;}
.y94{bottom:646.781850px;}
.y10d{bottom:649.274400px;}
.y1b3{bottom:649.500000px;}
.y7f{bottom:651.742950px;}
.y18d{bottom:654.000000px;}
.y141{bottom:654.750000px;}
.ybd{bottom:655.331850px;}
.y2c{bottom:657.000000px;}
.yfb{bottom:658.900050px;}
.y167{bottom:659.250000px;}
.y10c{bottom:667.274400px;}
.y93{bottom:667.759800px;}
.y1b2{bottom:668.250000px;}
.y18c{bottom:669.000000px;}
.ya{bottom:670.500000px;}
.y69{bottom:671.671500px;}
.ybc{bottom:671.831850px;}
.y140{bottom:672.750000px;}
.y7e{bottom:673.718550px;}
.y122{bottom:675.000000px;}
.yfa{bottom:676.458000px;}
.y166{bottom:677.250000px;}
.y2b{bottom:679.500000px;}
.y18b{bottom:684.000000px;}
.y92{bottom:684.259800px;}
.y1b1{bottom:687.000000px;}
.y9{bottom:690.000000px;}
.ybb{bottom:692.809800px;}
.y15a{bottom:693.000000px;}
.y165{bottom:695.250000px;}
.y7d{bottom:695.694150px;}
.y10b{bottom:696.524400px;}
.y18a{bottom:699.000000px;}
.y91{bottom:700.759800px;}
.y2a{bottom:702.000000px;}
.yf9{bottom:703.539000px;}
.y121{bottom:704.250000px;}
.y1b0{bottom:705.750000px;}
.yba{bottom:709.309800px;}
.y159{bottom:711.000000px;}
.y189{bottom:714.000000px;}
.y10a{bottom:714.524400px;}
.yf1{bottom:715.442850px;}
.y7c{bottom:717.669750px;}
.y8{bottom:720.000000px;}
.y90{bottom:721.737900px;}
.y120{bottom:722.250000px;}
.y29{bottom:724.500000px;}
.y188{bottom:729.000000px;}
.yb9{bottom:730.287900px;}
.y73{bottom:730.500000px;}
.y109{bottom:732.524400px;}
.y8f{bottom:738.237900px;}
.y7b{bottom:739.645350px;}
.y11f{bottom:740.250000px;}
.y1af{bottom:743.250000px;}
.y187{bottom:744.000000px;}
.yb8{bottom:746.787900px;}
.yf2{bottom:746.982256px;}
.y28{bottom:747.000000px;}
.y13f{bottom:756.000000px;}
.y158{bottom:758.250000px;}
.y186{bottom:759.000000px;}
.y7a{bottom:761.620950px;}
.y108{bottom:761.774400px;}
.y1ae{bottom:762.000000px;}
.y138{bottom:765.000000px;}
.yb7{bottom:767.765850px;}
.y27{bottom:769.500000px;}
.y8e{bottom:770.037900px;}
.y13e{bottom:774.000000px;}
.y157{bottom:776.250000px;}
.yf3{bottom:778.521663px;}
.y107{bottom:779.774400px;}
.y1ad{bottom:780.750000px;}
.y137{bottom:783.000000px;}
.y79{bottom:783.596400px;}
.y7{bottom:787.500000px;}
.yb6{bottom:788.743950px;}
.y185{bottom:789.000000px;}
.y8d{bottom:791.015850px;}
.y26{bottom:792.000000px;}
.y156{bottom:794.250000px;}
.y106{bottom:797.774400px;}
.y1ac{bottom:799.500000px;}
.y184{bottom:804.000000px;}
.yb5{bottom:805.243950px;}
.y78{bottom:805.572000px;}
.y13d{bottom:810.000000px;}
.yf4{bottom:810.061070px;}
.y6{bottom:811.500000px;}
.y8c{bottom:811.993950px;}
.y136{bottom:812.250000px;}
.y25{bottom:814.500000px;}
.y105{bottom:815.774400px;}
.y1ab{bottom:818.250000px;}
.y183{bottom:819.000000px;}
.y5d{bottom:820.500000px;}
.yb4{bottom:821.743950px;}
.y155{bottom:823.500000px;}
.y77{bottom:827.547600px;}
.y8b{bottom:828.493950px;}
.y135{bottom:830.250000px;}
.y182{bottom:834.000000px;}
.y24{bottom:837.000000px;}
.yb3{bottom:838.243950px;}
.y13c{bottom:839.250000px;}
.yf5{bottom:841.306455px;}
.y154{bottom:841.500000px;}
.y5{bottom:844.500000px;}
.y104{bottom:845.024400px;}
.y134{bottom:848.250000px;}
.y181{bottom:849.000000px;}
.y8a{bottom:849.471900px;}
.y76{bottom:849.523200px;}
.y1aa{bottom:855.750000px;}
.y13b{bottom:857.250000px;}
.yb2{bottom:859.221900px;}
.y23{bottom:859.500000px;}
.y103{bottom:863.024400px;}
.y180{bottom:864.000000px;}
.y133{bottom:866.250000px;}
.y89{bottom:870.450000px;}
.y75{bottom:871.498800px;}
.yf6{bottom:872.845861px;}
.y4{bottom:874.500000px;}
.y13a{bottom:875.250000px;}
.yb1{bottom:875.721900px;}
.y153{bottom:877.500000px;}
.y17f{bottom:879.000000px;}
.y22{bottom:882.000000px;}
.y102{bottom:892.274400px;}
.y1a9{bottom:893.250000px;}
.y74{bottom:893.474400px;}
.y17e{bottom:894.000000px;}
.y132{bottom:895.500000px;}
.yb0{bottom:896.700000px;}
.yf7{bottom:904.385268px;}
.y21{bottom:904.500000px;}
.y17d{bottom:909.000000px;}
.y101{bottom:910.274400px;}
.y1a8{bottom:912.000000px;}
.y131{bottom:913.500000px;}
.y3{bottom:927.000000px;}
.y1a7{bottom:930.750000px;}
.y130{bottom:931.500000px;}
.yf8{bottom:935.630654px;}
.y100{bottom:939.524400px;}
.yd9{bottom:1170.018000px;}
.yd5{bottom:1187.377500px;}
.h13{height:-237.877500px;}
.h15{height:-220.518000px;}
.hf{height:25.152960px;}
.h10{height:25.544848px;}
.h14{height:30.148638px;}
.h18{height:32.172449px;}
.h1a{height:33.117188px;}
.h1b{height:33.600000px;}
.h12{height:36.495888px;}
.h17{height:37.046646px;}
.h2{height:37.256836px;}
.h19{height:39.072000px;}
.hb{height:40.757812px;}
.h16{height:41.064485px;}
.h9{height:41.396484px;}
.h1{height:45.536133px;}
.h7{height:45.852539px;}
.h5{height:46.200000px;}
.hd{height:48.840000px;}
.h6{height:49.675781px;}
.h8{height:50.947266px;}
.hc{height:56.041992px;}
.ha{height:61.136719px;}
.h4{height:76.420898px;}
.h3{height:101.894531px;}
.he{height:277.828500px;}
.h11{height:332.313000px;}
.h0{height:1017.000000px;}
.wb{width:-96.649500px;}
.wa{width:-58.210500px;}
.w9{width:-19.771500px;}
.w8{width:19.908000px;}
.w7{width:39.679500px;}
.w6{width:43.399500px;}
.w4{width:50.839500px;}
.w5{width:59.518500px;}
.w3{width:123.514500px;}
.w1{width:388.500000px;}
.w2{width:459.616500px;}
.w0{width:720.000000px;}
.x40{left:-3.009426px;}
.x0{left:0.000000px;}
.xf{left:3.596415px;}
.xe{left:7.624950px;}
.x10{left:17.938500px;}
.x4c{left:32.141250px;}
.x11{left:34.519429px;}
.x12{left:51.100357px;}
.x3e{left:62.691000px;}
.x3{left:67.500000px;}
.x4{left:69.164850px;}
.x31{left:73.800000px;}
.x4e{left:78.452250px;}
.x9{left:82.500000px;}
.x13{left:84.262214px;}
.x8{left:90.000000px;}
.x5{left:99.000000px;}
.x14{left:100.843143px;}
.x7{left:112.500000px;}
.x3d{left:115.500000px;}
.x15{left:117.424072px;}
.x24{left:118.800000px;}
.xd{left:127.500000px;}
.xa{left:135.000000px;}
.x1{left:141.829500px;}
.x16{left:150.585929px;}
.xb{left:160.499850px;}
.x17{left:167.166857px;}
.x4f{left:181.500000px;}
.x18{left:183.747786px;}
.x41{left:184.966500px;}
.x19{left:200.328715px;}
.x32{left:213.300000px;}
.x1a{left:216.909643px;}
.x25{left:222.277950px;}
.x1b{left:233.490572px;}
.x42{left:235.804500px;}
.x1c{left:250.071500px;}
.x26{left:255.277950px;}
.x3c{left:258.300000px;}
.x2{left:263.250000px;}
.x1d{left:266.652429px;}
.x1e{left:283.233358px;}
.x43{left:285.403500px;}
.x3f{left:288.846450px;}
.x27{left:295.777950px;}
.x1f{left:299.814286px;}
.x20{left:316.395215px;}
.x21{left:332.976143px;}
.x28{left:336.277950px;}
.x33{left:340.777950px;}
.x44{left:343.683000px;}
.x22{left:349.557072px;}
.x23{left:366.138001px;}
.x29{left:376.777950px;}
.x34{left:381.277950px;}
.x45{left:387.081000px;}
.x2a{left:409.778100px;}
.x35{left:421.778100px;}
.x46{left:425.521500px;}
.x2b{left:450.278100px;}
.x36{left:454.778100px;}
.x4d{left:461.821721px;}
.x47{left:463.960500px;}
.x2c{left:483.278100px;}
.x37{left:495.278100px;}
.x48{left:502.399500px;}
.x2d{left:516.278100px;}
.x38{left:528.278100px;}
.x49{left:542.079000px;}
.x2e{left:549.278100px;}
.x39{left:561.278100px;}
.x4a{left:580.518000px;}
.x2f{left:582.278100px;}
.x3a{left:594.278100px;}
.x30{left:600.278100px;}
.x4b{left:618.957000px;}
.x6{left:627.952950px;}
.xc{left:629.390100px;}
.x3b{left:645.278100px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls22{letter-spacing:-3.264000pt;}
.ls2d{letter-spacing:-3.072000pt;}
.ls1e{letter-spacing:-3.008000pt;}
.ls95{letter-spacing:-2.816000pt;}
.ls26{letter-spacing:-2.752000pt;}
.ls4d{letter-spacing:-2.448000pt;}
.ls3a{letter-spacing:-2.400000pt;}
.ls3d{letter-spacing:-2.346667pt;}
.ls94{letter-spacing:-2.304000pt;}
.ls41{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-2.048000pt;}
.ls4a{letter-spacing:-2.016000pt;}
.ls8b{letter-spacing:-1.984000pt;}
.ls25{letter-spacing:-1.920000pt;}
.ls4b{letter-spacing:-1.872000pt;}
.ls21{letter-spacing:-1.856000pt;}
.ls38{letter-spacing:-1.813333pt;}
.ls14{letter-spacing:-1.792000pt;}
.ls5c{letter-spacing:-1.776000pt;}
.ls18{letter-spacing:-1.728000pt;}
.ls23{letter-spacing:-1.664000pt;}
.ls20{letter-spacing:-1.600000pt;}
.ls59{letter-spacing:-1.584000pt;}
.lsb{letter-spacing:-1.536000pt;}
.ls40{letter-spacing:-1.493333pt;}
.ls92{letter-spacing:-1.472000pt;}
.ls67{letter-spacing:-1.440000pt;}
.ls8d{letter-spacing:-1.408000pt;}
.ls57{letter-spacing:-1.392000pt;}
.ls3f{letter-spacing:-1.386667pt;}
.ls16{letter-spacing:-1.344000pt;}
.ls69{letter-spacing:-1.296000pt;}
.ls27{letter-spacing:-1.280000pt;}
.ls37{letter-spacing:-1.226667pt;}
.ls1b{letter-spacing:-1.216000pt;}
.ls50{letter-spacing:-1.200000pt;}
.ls91{letter-spacing:-1.152000pt;}
.ls9b{letter-spacing:-1.109333pt;}
.ls54{letter-spacing:-1.104000pt;}
.ls29{letter-spacing:-1.088000pt;}
.ls39{letter-spacing:-1.066667pt;}
.ls70{letter-spacing:-1.056000pt;}
.ls2f{letter-spacing:-1.024000pt;}
.ls88{letter-spacing:-1.005200pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.958208pt;}
.ls96{letter-spacing:-0.932800pt;}
.ls6b{letter-spacing:-0.912000pt;}
.ls32{letter-spacing:-0.906667pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls87{letter-spacing:-0.884576pt;}
.ls4c{letter-spacing:-0.864000pt;}
.ls34{letter-spacing:-0.853333pt;}
.ls93{letter-spacing:-0.832000pt;}
.ls5a{letter-spacing:-0.816000pt;}
.ls1d{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls3c{letter-spacing:-0.746667pt;}
.ls63{letter-spacing:-0.720000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls5b{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.624000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls55{letter-spacing:-0.528000pt;}
.ls81{letter-spacing:-0.522704pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls6a{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.426667pt;}
.ls85{letter-spacing:-0.402080pt;}
.ls62{letter-spacing:-0.384000pt;}
.ls83{letter-spacing:-0.361872pt;}
.ls53{letter-spacing:-0.336000pt;}
.ls84{letter-spacing:-0.321664pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls8e{letter-spacing:-0.266667pt;}
.ls8a{letter-spacing:-0.261184pt;}
.ls7c{letter-spacing:-0.241248pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls7d{letter-spacing:-0.201040pt;}
.ls4f{letter-spacing:-0.192000pt;}
.ls9e{letter-spacing:-0.170667pt;}
.ls7b{letter-spacing:-0.160832pt;}
.ls3b{letter-spacing:-0.160000pt;}
.ls60{letter-spacing:-0.144000pt;}
.ls97{letter-spacing:-0.128000pt;}
.ls7e{letter-spacing:-0.120624pt;}
.ls7a{letter-spacing:-0.097346pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls7f{letter-spacing:-0.048673pt;}
.ls80{letter-spacing:-0.040208pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9d{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.064000pt;}
.ls74{letter-spacing:0.102213pt;}
.ls90{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.144000pt;}
.ls82{letter-spacing:0.160832pt;}
.ls9c{letter-spacing:0.170667pt;}
.ls68{letter-spacing:0.192000pt;}
.ls78{letter-spacing:0.201040pt;}
.ls4{letter-spacing:0.213333pt;}
.ls58{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.269333pt;}
.ls8c{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.432000pt;}
.ls31{letter-spacing:0.480000pt;}
.ls5e{letter-spacing:0.528000pt;}
.ls79{letter-spacing:0.562912pt;}
.ls73{letter-spacing:0.574933pt;}
.ls44{letter-spacing:0.576000pt;}
.ls71{letter-spacing:0.624000pt;}
.ls8f{letter-spacing:0.640000pt;}
.ls6f{letter-spacing:0.672000pt;}
.ls86{letter-spacing:0.683536pt;}
.ls15{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:0.800000pt;}
.ls47{letter-spacing:0.816000pt;}
.ls2e{letter-spacing:0.846933pt;}
.lsa{letter-spacing:0.896000pt;}
.ls43{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.912000pt;}
.ls61{letter-spacing:0.960000pt;}
.ls66{letter-spacing:1.008000pt;}
.ls49{letter-spacing:1.056000pt;}
.ls35{letter-spacing:1.120000pt;}
.ls5d{letter-spacing:1.152000pt;}
.lsa1{letter-spacing:1.173333pt;}
.ls51{letter-spacing:1.200000pt;}
.ls65{letter-spacing:1.248000pt;}
.ls6d{letter-spacing:1.296000pt;}
.lsd{letter-spacing:1.380800pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls5f{letter-spacing:1.536000pt;}
.ls33{letter-spacing:1.546667pt;}
.ls72{letter-spacing:1.584000pt;}
.ls6c{letter-spacing:1.728000pt;}
.ls99{letter-spacing:1.984000pt;}
.ls9f{letter-spacing:3.626667pt;}
.ls9a{letter-spacing:4.309333pt;}
.lsa0{letter-spacing:4.853333pt;}
.ls5{letter-spacing:4.949333pt;}
.ls7{letter-spacing:5.034667pt;}
.ls9{letter-spacing:5.333333pt;}
.ls77{letter-spacing:5.447187pt;}
.ls98{letter-spacing:5.760000pt;}
.ls13{letter-spacing:6.933333pt;}
.ls75{letter-spacing:8.993952pt;}
.ls6{letter-spacing:9.744000pt;}
.ls89{letter-spacing:9.984000pt;}
.ls2{letter-spacing:10.384000pt;}
.ls3{letter-spacing:11.088000pt;}
.ls76{letter-spacing:14.347999pt;}
.ls2a{letter-spacing:16.576000pt;}
.ls46{letter-spacing:93.333333pt;}
.ls45{letter-spacing:120.000000pt;}
.wscf{word-spacing:-133.488000pt;}
.wsc3{word-spacing:-80.154667pt;}
.wsf4{word-spacing:-48.673067pt;}
.ws117{word-spacing:-25.792000pt;}
.ws2{word-spacing:-24.576000pt;}
.ws4{word-spacing:-23.232000pt;}
.ws130{word-spacing:-20.746667pt;}
.ws13a{word-spacing:-19.840000pt;}
.wsf{word-spacing:-18.880000pt;}
.ws32{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.408000pt;}
.ws3d{word-spacing:-16.960000pt;}
.ws36{word-spacing:-16.896000pt;}
.ws38{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.485333pt;}
.ws54{word-spacing:-15.466667pt;}
.ws44{word-spacing:-15.253333pt;}
.ws3{word-spacing:-15.200000pt;}
.wsf0{word-spacing:-15.168000pt;}
.ws17{word-spacing:-15.104000pt;}
.wse3{word-spacing:-15.072000pt;}
.wsf1{word-spacing:-14.986667pt;}
.ws129{word-spacing:-14.912000pt;}
.ws18{word-spacing:-14.848000pt;}
.wse1{word-spacing:-14.784000pt;}
.ws6b{word-spacing:-14.688000pt;}
.ws6a{word-spacing:-14.544000pt;}
.ws11e{word-spacing:-14.528000pt;}
.ws16{word-spacing:-14.464000pt;}
.wsb0{word-spacing:-14.304000pt;}
.wsc{word-spacing:-14.272000pt;}
.ws4a{word-spacing:-14.240000pt;}
.ws2a{word-spacing:-14.208000pt;}
.ws1a{word-spacing:-14.186667pt;}
.ws2c{word-spacing:-14.144000pt;}
.ws42{word-spacing:-14.133333pt;}
.ws40{word-spacing:-14.080000pt;}
.ws5e{word-spacing:-14.064000pt;}
.ws57{word-spacing:-14.026667pt;}
.ws15{word-spacing:-14.016000pt;}
.ws2b{word-spacing:-13.952000pt;}
.ws30{word-spacing:-13.888000pt;}
.ws119{word-spacing:-13.824000pt;}
.ws4c{word-spacing:-13.760000pt;}
.ws4f{word-spacing:-13.706667pt;}
.wsbb{word-spacing:-13.632000pt;}
.ws51{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws55{word-spacing:-13.493333pt;}
.ws60{word-spacing:-13.488000pt;}
.wsce{word-spacing:-13.344000pt;}
.wsbf{word-spacing:-13.296000pt;}
.ws46{word-spacing:-13.173333pt;}
.wsc8{word-spacing:-13.152000pt;}
.ws9b{word-spacing:-13.104000pt;}
.wsf5{word-spacing:-13.093055pt;}
.ws31{word-spacing:-13.056000pt;}
.wsf6{word-spacing:-13.044382pt;}
.wsc7{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.800000pt;}
.ws58{word-spacing:-12.746667pt;}
.ws80{word-spacing:-12.672000pt;}
.ws93{word-spacing:-12.624000pt;}
.ws48{word-spacing:-12.586667pt;}
.wsb8{word-spacing:-12.576000pt;}
.wsd4{word-spacing:-12.384000pt;}
.ws136{word-spacing:-12.160000pt;}
.wsa9{word-spacing:-12.096000pt;}
.ws37{word-spacing:-11.989333pt;}
.wscd{word-spacing:-11.904000pt;}
.ws8a{word-spacing:-11.760000pt;}
.ws5f{word-spacing:-11.616000pt;}
.ws76{word-spacing:-11.568000pt;}
.ws5c{word-spacing:-11.472000pt;}
.wsf3{word-spacing:-11.177824pt;}
.wsf2{word-spacing:-11.097408pt;}
.ws5d{word-spacing:-11.088000pt;}
.ws134{word-spacing:-11.050667pt;}
.ws135{word-spacing:-10.709333pt;}
.ws138{word-spacing:-10.581333pt;}
.ws3a{word-spacing:-10.538667pt;}
.ws10{word-spacing:-10.484672pt;}
.ws139{word-spacing:-10.368000pt;}
.ws137{word-spacing:-10.325333pt;}
.ws118{word-spacing:-10.223488pt;}
.ws12f{word-spacing:-9.551872pt;}
.wsfa{word-spacing:-7.478688pt;}
.wsf8{word-spacing:-7.358064pt;}
.wsfb{word-spacing:-6.996192pt;}
.wsa{word-spacing:-5.333333pt;}
.ws8{word-spacing:-5.034667pt;}
.ws121{word-spacing:-3.648000pt;}
.ws101{word-spacing:-3.015619pt;}
.ws104{word-spacing:-2.962714pt;}
.ws133{word-spacing:-1.984000pt;}
.wsda{word-spacing:-1.728000pt;}
.ws5a{word-spacing:-1.546667pt;}
.ws3b{word-spacing:-1.408000pt;}
.wse6{word-spacing:-1.296000pt;}
.wsd6{word-spacing:-1.200000pt;}
.ws13e{word-spacing:-1.173333pt;}
.ws112{word-spacing:-1.166032pt;}
.ws6{word-spacing:-0.997333pt;}
.ws116{word-spacing:-0.960000pt;}
.wsdb{word-spacing:-0.912000pt;}
.ws5b{word-spacing:-0.906667pt;}
.wsd{word-spacing:-0.896000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws7{word-spacing:-0.682667pt;}
.wse8{word-spacing:-0.624000pt;}
.ws120{word-spacing:-0.576000pt;}
.wsd8{word-spacing:-0.528000pt;}
.ws109{word-spacing:-0.476150pt;}
.wsd9{word-spacing:-0.432000pt;}
.wsdc{word-spacing:-0.384000pt;}
.ws11a{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.256000pt;}
.wsed{word-spacing:-0.240000pt;}
.ws13d{word-spacing:-0.213333pt;}
.wseb{word-spacing:-0.192000pt;}
.ws13c{word-spacing:-0.170667pt;}
.ws10f{word-spacing:-0.160832pt;}
.ws122{word-spacing:-0.128000pt;}
.ws110{word-spacing:-0.120624pt;}
.wsec{word-spacing:-0.048000pt;}
.wsf9{word-spacing:-0.040208pt;}
.ws3e{word-spacing:-0.032438pt;}
.ws5{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.040208pt;}
.ws105{word-spacing:0.048673pt;}
.ws2d{word-spacing:0.064000pt;}
.wsfc{word-spacing:0.097346pt;}
.wsfd{word-spacing:0.120624pt;}
.ws132{word-spacing:0.128000pt;}
.wsef{word-spacing:0.144000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws23{word-spacing:0.256000pt;}
.ws11f{word-spacing:0.266667pt;}
.ws33{word-spacing:0.320000pt;}
.wse7{word-spacing:0.336000pt;}
.wse9{word-spacing:0.384000pt;}
.ws113{word-spacing:0.402080pt;}
.ws39{word-spacing:0.426667pt;}
.ws13{word-spacing:0.512000pt;}
.ws114{word-spacing:0.522704pt;}
.ws9{word-spacing:0.533333pt;}
.ws125{word-spacing:0.576000pt;}
.ws14{word-spacing:0.640000pt;}
.ws24{word-spacing:0.704000pt;}
.wsd7{word-spacing:0.720000pt;}
.ws28{word-spacing:0.768000pt;}
.ws127{word-spacing:0.832000pt;}
.ws25{word-spacing:0.896000pt;}
.ws111{word-spacing:0.924784pt;}
.ws3f{word-spacing:0.958208pt;}
.ws1d{word-spacing:0.960000pt;}
.ws11b{word-spacing:1.024000pt;}
.wse5{word-spacing:1.056000pt;}
.ws128{word-spacing:1.088000pt;}
.wsee{word-spacing:1.104000pt;}
.ws13b{word-spacing:1.109333pt;}
.ws123{word-spacing:1.152000pt;}
.wsea{word-spacing:1.200000pt;}
.ws27{word-spacing:1.216000pt;}
.ws35{word-spacing:1.280000pt;}
.ws22{word-spacing:1.344000pt;}
.ws11c{word-spacing:1.408000pt;}
.ws124{word-spacing:1.472000pt;}
.ws115{word-spacing:1.487696pt;}
.ws20{word-spacing:1.536000pt;}
.ws19{word-spacing:1.664000pt;}
.ws126{word-spacing:1.728000pt;}
.ws12a{word-spacing:1.920000pt;}
.ws26{word-spacing:2.048000pt;}
.ws10a{word-spacing:2.116224pt;}
.ws12c{word-spacing:2.176000pt;}
.ws12d{word-spacing:2.304000pt;}
.ws1e{word-spacing:2.368000pt;}
.ws12b{word-spacing:2.752000pt;}
.ws12e{word-spacing:2.816000pt;}
.ws34{word-spacing:2.944000pt;}
.ws3c{word-spacing:3.072000pt;}
.ws2e{word-spacing:3.264000pt;}
.wsff{word-spacing:4.338259pt;}
.ws21{word-spacing:5.184000pt;}
.ws1f{word-spacing:6.080000pt;}
.wse{word-spacing:6.400000pt;}
.ws131{word-spacing:6.656000pt;}
.ws2f{word-spacing:6.976000pt;}
.ws102{word-spacing:7.195162pt;}
.ws11d{word-spacing:7.360000pt;}
.wsfe{word-spacing:7.459690pt;}
.ws108{word-spacing:8.782330pt;}
.ws106{word-spacing:8.993952pt;}
.ws100{word-spacing:9.470102pt;}
.ws103{word-spacing:10.951459pt;}
.ws10d{word-spacing:12.009571pt;}
.ws107{word-spacing:13.808362pt;}
.ws10b{word-spacing:14.231606pt;}
.ws10c{word-spacing:18.146621pt;}
.ws61{word-spacing:29.243733pt;}
.ws67{word-spacing:29.421333pt;}
.ws77{word-spacing:30.357333pt;}
.ws7c{word-spacing:30.760533pt;}
.ws90{word-spacing:30.928533pt;}
.ws85{word-spacing:31.187733pt;}
.wsa2{word-spacing:31.240533pt;}
.ws68{word-spacing:32.387733pt;}
.ws62{word-spacing:32.659200pt;}
.ws73{word-spacing:32.766933pt;}
.ws91{word-spacing:32.882133pt;}
.ws6c{word-spacing:34.235733pt;}
.ws63{word-spacing:34.262400pt;}
.ws69{word-spacing:35.027733pt;}
.wsd0{word-spacing:35.877333pt;}
.ws65{word-spacing:35.995200pt;}
.ws7d{word-spacing:36.866133pt;}
.ws7a{word-spacing:37.298133pt;}
.ws64{word-spacing:37.950933pt;}
.ws70{word-spacing:38.123733pt;}
.ws92{word-spacing:38.344533pt;}
.ws89{word-spacing:38.613333pt;}
.ws66{word-spacing:38.637333pt;}
.ws8f{word-spacing:51.261333pt;}
.wsa5{word-spacing:52.101333pt;}
.ws8b{word-spacing:52.245333pt;}
.wsa3{word-spacing:52.413333pt;}
.wsa1{word-spacing:52.677333pt;}
.wsa8{word-spacing:52.821333pt;}
.wsa4{word-spacing:53.109333pt;}
.ws74{word-spacing:53.397333pt;}
.ws9a{word-spacing:53.541333pt;}
.wse2{word-spacing:53.829333pt;}
.wsd3{word-spacing:54.117333pt;}
.wsc9{word-spacing:54.405333pt;}
.wsf7{word-spacing:55.100394pt;}
.ws7e{word-spacing:55.125333pt;}
.wsbe{word-spacing:55.269333pt;}
.wsaf{word-spacing:55.413333pt;}
.ws94{word-spacing:55.701333pt;}
.ws9c{word-spacing:55.845333pt;}
.ws98{word-spacing:56.277333pt;}
.wsdf{word-spacing:56.445333pt;}
.wsb5{word-spacing:56.997333pt;}
.ws75{word-spacing:57.285333pt;}
.ws82{word-spacing:57.307200pt;}
.ws72{word-spacing:57.429333pt;}
.ws87{word-spacing:57.573333pt;}
.wsae{word-spacing:57.717333pt;}
.ws81{word-spacing:57.861333pt;}
.ws71{word-spacing:57.907200pt;}
.wsb3{word-spacing:58.293333pt;}
.ws79{word-spacing:58.305600pt;}
.wsad{word-spacing:58.437333pt;}
.ws6d{word-spacing:58.867200pt;}
.wsc4{word-spacing:59.157333pt;}
.wsdd{word-spacing:59.733333pt;}
.ws6e{word-spacing:59.736000pt;}
.ws7b{word-spacing:59.908800pt;}
.wsb6{word-spacing:60.021333pt;}
.ws83{word-spacing:60.153600pt;}
.ws86{word-spacing:60.312000pt;}
.ws6f{word-spacing:60.561600pt;}
.ws7f{word-spacing:60.621333pt;}
.wscb{word-spacing:61.029333pt;}
.ws88{word-spacing:61.173333pt;}
.wsc0{word-spacing:61.605333pt;}
.ws8d{word-spacing:62.716800pt;}
.ws96{word-spacing:63.076800pt;}
.ws9f{word-spacing:63.213333pt;}
.ws78{word-spacing:63.552000pt;}
.wsa7{word-spacing:77.928000pt;}
.wsc5{word-spacing:78.624000pt;}
.wsba{word-spacing:78.912000pt;}
.ws8c{word-spacing:79.056000pt;}
.ws84{word-spacing:79.344000pt;}
.ws99{word-spacing:79.632000pt;}
.wsbc{word-spacing:79.776000pt;}
.wsd5{word-spacing:79.845333pt;}
.wsb4{word-spacing:80.064000pt;}
.wsde{word-spacing:80.496000pt;}
.ws97{word-spacing:80.784000pt;}
.ws8e{word-spacing:80.928000pt;}
.wsc1{word-spacing:81.072000pt;}
.wsd1{word-spacing:81.792000pt;}
.wsab{word-spacing:81.936000pt;}
.wsa6{word-spacing:82.368000pt;}
.wsb1{word-spacing:82.512000pt;}
.wsd2{word-spacing:82.944000pt;}
.wsbd{word-spacing:83.520000pt;}
.wsa0{word-spacing:83.664000pt;}
.wsb7{word-spacing:84.096000pt;}
.ws9d{word-spacing:84.240000pt;}
.wse0{word-spacing:84.384000pt;}
.ws95{word-spacing:84.960000pt;}
.ws9e{word-spacing:85.104000pt;}
.wsac{word-spacing:85.824000pt;}
.wsc2{word-spacing:86.112000pt;}
.wsb2{word-spacing:86.400000pt;}
.wsaa{word-spacing:86.832000pt;}
.wsc6{word-spacing:87.120000pt;}
.wse4{word-spacing:87.696000pt;}
.wsca{word-spacing:87.840000pt;}
.wscc{word-spacing:88.272000pt;}
.wsb9{word-spacing:89.880000pt;}
.ws0{word-spacing:599.418667pt;}
.ws4d{word-spacing:911.418667pt;}
.ws4b{word-spacing:988.688000pt;}
.ws49{word-spacing:989.786667pt;}
.ws47{word-spacing:1007.658667pt;}
.ws56{word-spacing:1035.264000pt;}
.ws41{word-spacing:1053.029333pt;}
.ws45{word-spacing:1061.504000pt;}
.ws43{word-spacing:1064.896000pt;}
.ws52{word-spacing:1070.965333pt;}
.ws4e{word-spacing:1072.069333pt;}
.ws53{word-spacing:1076.565333pt;}
.ws50{word-spacing:1128.565333pt;}
.ws59{word-spacing:1151.466667pt;}
._1d{margin-left:-770.961600pt;}
._15{margin-left:-768.984533pt;}
._12{margin-left:-766.919467pt;}
._a{margin-left:-765.851733pt;}
._16{margin-left:-764.801600pt;}
._1{margin-left:-634.068267pt;}
._31{margin-left:-93.333333pt;}
._30{margin-left:-26.666667pt;}
._1b{margin-left:-20.608533pt;}
._10{margin-left:-18.385600pt;}
._19{margin-left:-16.877867pt;}
._1c{margin-left:-15.957867pt;}
._1a{margin-left:-14.995200pt;}
._36{margin-left:-13.173333pt;}
._5{margin-left:-7.032000pt;}
._e{margin-left:-6.108800pt;}
._6{margin-left:-4.915200pt;}
._7{margin-left:-3.480000pt;}
._3{margin-left:-2.228267pt;}
._2{margin-left:-1.228800pt;}
._0{width:1.315200pt;}
._4{width:2.547200pt;}
._8{width:4.060800pt;}
._9{width:5.101333pt;}
._b{width:6.513067pt;}
._f{width:8.218667pt;}
._c{width:9.306133pt;}
._d{width:10.303467pt;}
._13{width:11.456000pt;}
._14{width:12.470400pt;}
._18{width:14.273067pt;}
._17{width:17.066133pt;}
._11{width:24.176000pt;}
._2a{width:70.824000pt;}
._28{width:76.780800pt;}
._27{width:88.627200pt;}
._2b{width:95.496000pt;}
._2f{width:99.840000pt;}
._29{width:108.382933pt;}
._2d{width:120.000000pt;}
._2c{width:127.049600pt;}
._2e{width:173.872000pt;}
._34{width:175.160576pt;}
._20{width:233.768533pt;}
._35{width:356.213429pt;}
._32{width:360.727621pt;}
._26{width:368.214400pt;}
._33{width:416.737365pt;}
._1e{width:462.649600pt;}
._22{width:619.134933pt;}
._25{width:742.451200pt;}
._24{width:757.155733pt;}
._21{width:806.580267pt;}
._23{width:842.348800pt;}
._1f{width:856.660267pt;}
.fs9{font-size:31.093333pt;}
.fsa{font-size:31.940267pt;}
.fsb{font-size:32.437902pt;}
.fsf{font-size:34.917867pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fsd{font-size:40.208000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:48.673067pt;}
.fse{font-size:52.905600pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:106.666667pt;}
.yd4{bottom:-247.808761pt;}
.yd3{bottom:-232.999981pt;}
.yd2{bottom:-218.191200pt;}
.yf0{bottom:-142.800821pt;}
.yef{bottom:-126.929141pt;}
.yee{bottom:-111.057461pt;}
.yed{bottom:-95.185781pt;}
.yec{bottom:-79.314101pt;}
.yeb{bottom:-63.177893pt;}
.yea{bottom:-47.306213pt;}
.ye9{bottom:-31.434533pt;}
.ye8{bottom:-15.834415pt;}
.ye7{bottom:-4.457086pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.218000pt;}
.y72{bottom:5.758400pt;}
.yda{bottom:7.009333pt;}
.yd7{bottom:14.328133pt;}
.y6a{bottom:23.639600pt;}
.yd6{bottom:25.702800pt;}
.y2{bottom:49.352800pt;}
.y6b{bottom:54.086659pt;}
.y1{bottom:64.000000pt;}
.y6c{bottom:84.525733pt;}
.y20{bottom:104.000000pt;}
.y52{bottom:104.000133pt;}
.y1a6{bottom:113.333333pt;}
.y6d{bottom:114.972793pt;}
.y5e{bottom:117.333467pt;}
.y152{bottom:118.000000pt;}
.y1f{bottom:124.000000pt;}
.y51{bottom:124.000267pt;}
.y1a5{bottom:130.000000pt;}
.y67{bottom:130.666800pt;}
.yaf{bottom:131.151600pt;}
.y151{bottom:134.000000pt;}
.y50{bottom:137.333600pt;}
.y1e{bottom:144.000000pt;}
.y66{bottom:144.000133pt;}
.y6e{bottom:145.012613pt;}
.yae{bottom:145.818267pt;}
.y1a4{bottom:146.666667pt;}
.y150{bottom:150.000000pt;}
.y4f{bottom:150.666933pt;}
.y65{bottom:157.333467pt;}
.yd0{bottom:158.000000pt;}
.yad{bottom:160.484933pt;}
.y1a3{bottom:163.333333pt;}
.y40{bottom:164.000000pt;}
.y4e{bottom:164.000267pt;}
.y14f{bottom:166.000000pt;}
.y1d{bottom:170.666667pt;}
.y64{bottom:170.666800pt;}
.ycf{bottom:174.000000pt;}
.y5c{bottom:174.666667pt;}
.yac{bottom:175.151600pt;}
.y6f{bottom:175.459673pt;}
.y4d{bottom:177.333600pt;}
.y17b{bottom:178.000000pt;}
.y1a2{bottom:180.000000pt;}
.y14e{bottom:182.000000pt;}
.y3f{bottom:184.000000pt;}
.y63{bottom:184.000133pt;}
.y5b{bottom:189.600000pt;}
.yab{bottom:189.818267pt;}
.y4c{bottom:190.666933pt;}
.y17a{bottom:194.000000pt;}
.y1a1{bottom:196.666667pt;}
.y62{bottom:197.333467pt;}
.y14d{bottom:198.000000pt;}
.yce{bottom:200.000000pt;}
.y3e{bottom:204.000000pt;}
.y4b{bottom:204.000267pt;}
.y5a{bottom:204.533333pt;}
.y70{bottom:205.906732pt;}
.yaa{bottom:208.465333pt;}
.y179{bottom:210.000000pt;}
.y61{bottom:210.666800pt;}
.y1a0{bottom:213.333333pt;}
.ycd{bottom:216.000000pt;}
.y4a{bottom:217.333600pt;}
.y164{bottom:218.000000pt;}
.y1c{bottom:220.000000pt;}
.ya9{bottom:223.132000pt;}
.y3d{bottom:224.000000pt;}
.y60{bottom:224.000133pt;}
.y178{bottom:226.000000pt;}
.y139{bottom:229.333333pt;}
.y59{bottom:229.466667pt;}
.y19f{bottom:230.000000pt;}
.y49{bottom:230.666933pt;}
.y163{bottom:234.000000pt;}
.y71{bottom:235.946553pt;}
.y1b{bottom:236.666667pt;}
.ya8{bottom:241.779200pt;}
.ycc{bottom:242.000000pt;}
.y3c{bottom:244.000000pt;}
.y48{bottom:244.000267pt;}
.y58{bottom:244.400000pt;}
.y5f{bottom:245.333333pt;}
.y162{bottom:250.000000pt;}
.y11e{bottom:255.132800pt;}
.ya7{bottom:256.445867pt;}
.y47{bottom:257.333600pt;}
.ycb{bottom:258.000000pt;}
.y19e{bottom:258.666667pt;}
.y1a{bottom:261.333333pt;}
.y3b{bottom:264.000000pt;}
.y161{bottom:266.000000pt;}
.y177{bottom:268.000000pt;}
.y57{bottom:269.333333pt;}
.y46{bottom:270.666933pt;}
.y11d{bottom:271.132800pt;}
.ya6{bottom:275.092933pt;}
.y19{bottom:278.000000pt;}
.y3a{bottom:284.000000pt;}
.y45{bottom:284.000267pt;}
.y56{bottom:284.266667pt;}
.y19d{bottom:285.333333pt;}
.y11c{bottom:287.132800pt;}
.ya5{bottom:289.759600pt;}
.y160{bottom:292.000000pt;}
.y18{bottom:294.666667pt;}
.y44{bottom:297.333600pt;}
.y176{bottom:300.000000pt;}
.ye6{bottom:301.866859pt;}
.y39{bottom:304.000000pt;}
.ya4{bottom:304.426267pt;}
.y15f{bottom:308.000000pt;}
.y55{bottom:309.200000pt;}
.y43{bottom:310.666933pt;}
.y17{bottom:311.333333pt;}
.y11b{bottom:313.132800pt;}
.y175{bottom:316.000000pt;}
.ye5{bottom:316.420106pt;}
.ya3{bottom:323.073467pt;}
.y38{bottom:324.000000pt;}
.y54{bottom:324.133333pt;}
.y16{bottom:328.000000pt;}
.y11a{bottom:329.132800pt;}
.ya2{bottom:337.740133pt;}
.y53{bottom:339.066667pt;}
.ye4{bottom:339.698000pt;}
.y15e{bottom:340.000000pt;}
.y19c{bottom:341.333333pt;}
.y174{bottom:342.000000pt;}
.y37{bottom:344.000000pt;}
.y15{bottom:344.666667pt;}
.y119{bottom:345.132800pt;}
.ye3{bottom:354.511573pt;}
.y19b{bottom:354.666667pt;}
.y12f{bottom:356.000000pt;}
.ya1{bottom:356.387200pt;}
.y173{bottom:358.000000pt;}
.y118{bottom:361.132800pt;}
.y36{bottom:364.000000pt;}
.y19a{bottom:368.000000pt;}
.y14{bottom:369.333333pt;}
.ye2{bottom:370.383253pt;}
.ya0{bottom:371.053867pt;}
.yca{bottom:371.948133pt;}
.y12e{bottom:372.000000pt;}
.y172{bottom:374.000000pt;}
.y14c{bottom:380.000000pt;}
.y199{bottom:381.333333pt;}
.y35{bottom:384.000000pt;}
.ye1{bottom:386.254933pt;}
.yc9{bottom:386.614800pt;}
.y117{bottom:387.132800pt;}
.y12d{bottom:388.000000pt;}
.y9f{bottom:389.701067pt;}
.y171{bottom:390.000000pt;}
.y198{bottom:394.666667pt;}
.y14b{bottom:396.000000pt;}
.y1ba{bottom:397.333333pt;}
.ye0{bottom:402.126613pt;}
.y116{bottom:403.132800pt;}
.y88{bottom:403.522400pt;}
.y34{bottom:404.000000pt;}
.y9e{bottom:404.367733pt;}
.yc8{bottom:405.262000pt;}
.y170{bottom:406.000000pt;}
.y13{bottom:408.000000pt;}
.y14a{bottom:412.000000pt;}
.y12c{bottom:414.000000pt;}
.ydf{bottom:417.998293pt;}
.y115{bottom:419.132800pt;}
.yc7{bottom:419.928667pt;}
.y197{bottom:421.333333pt;}
.y9d{bottom:423.014800pt;}
.y87{bottom:423.056267pt;}
.y33{bottom:424.000000pt;}
.y12{bottom:424.666667pt;}
.y149{bottom:428.000000pt;}
.y12b{bottom:430.000000pt;}
.y1b9{bottom:430.666667pt;}
.y16f{bottom:432.000000pt;}
.yde{bottom:433.869973pt;}
.yc6{bottom:434.595333pt;}
.y196{bottom:434.666667pt;}
.y9c{bottom:437.681467pt;}
.y86{bottom:442.590133pt;}
.y32{bottom:444.000000pt;}
.y114{bottom:445.132800pt;}
.y12a{bottom:446.000000pt;}
.y1b8{bottom:447.333333pt;}
.y16e{bottom:448.000000pt;}
.yc5{bottom:449.262000pt;}
.y11{bottom:449.333333pt;}
.ydd{bottom:449.741653pt;}
.y9b{bottom:456.328667pt;}
.y113{bottom:461.132800pt;}
.y195{bottom:461.333333pt;}
.y129{bottom:462.000000pt;}
.y85{bottom:462.124000pt;}
.y31{bottom:464.000000pt;}
.ydc{bottom:465.613333pt;}
.y10{bottom:466.000000pt;}
.yc4{bottom:467.909067pt;}
.y148{bottom:470.000000pt;}
.y1b7{bottom:474.000000pt;}
.y194{bottom:474.666667pt;}
.y9a{bottom:474.975733pt;}
.y112{bottom:477.132800pt;}
.y128{bottom:478.000000pt;}
.y16d{bottom:480.000000pt;}
.ydb{bottom:481.220400pt;}
.y84{bottom:481.657733pt;}
.yc3{bottom:482.575733pt;}
.yf{bottom:482.666667pt;}
.y30{bottom:484.000000pt;}
.y147{bottom:486.000000pt;}
.y193{bottom:488.000000pt;}
.y17c{bottom:489.333333pt;}
.y99{bottom:493.622933pt;}
.y127{bottom:494.000000pt;}
.y16c{bottom:496.000000pt;}
.ye{bottom:499.333333pt;}
.y83{bottom:501.191600pt;}
.yc2{bottom:501.222933pt;}
.y192{bottom:501.333333pt;}
.y146{bottom:502.000000pt;}
.y111{bottom:503.132800pt;}
.yff{bottom:503.333333pt;}
.y2f{bottom:504.000000pt;}
.y98{bottom:508.289600pt;}
.y126{bottom:510.000000pt;}
.y1b6{bottom:510.666667pt;}
.y16b{bottom:512.000000pt;}
.y191{bottom:514.666667pt;}
.yc1{bottom:515.889600pt;}
.yd{bottom:516.000000pt;}
.y145{bottom:518.000000pt;}
.y110{bottom:519.132800pt;}
.y15d{bottom:520.000000pt;}
.yfe{bottom:520.666667pt;}
.y82{bottom:520.725467pt;}
.y2e{bottom:524.000000pt;}
.y125{bottom:526.000000pt;}
.y97{bottom:526.936667pt;}
.y1b5{bottom:527.333333pt;}
.y190{bottom:528.000000pt;}
.yc{bottom:532.666667pt;}
.y144{bottom:534.000000pt;}
.yc0{bottom:534.536667pt;}
.y10f{bottom:535.132800pt;}
.y15c{bottom:536.000000pt;}
.y16a{bottom:538.000000pt;}
.y81{bottom:540.259333pt;}
.y18f{bottom:541.333333pt;}
.y96{bottom:541.603333pt;}
.y124{bottom:542.000000pt;}
.y42{bottom:544.000000pt;}
.yd1{bottom:548.610667pt;}
.ybf{bottom:549.203333pt;}
.y2d{bottom:549.333333pt;}
.y143{bottom:550.000000pt;}
.y15b{bottom:552.000000pt;}
.y169{bottom:554.000000pt;}
.yfd{bottom:554.474667pt;}
.y18e{bottom:554.666667pt;}
.yb{bottom:557.333333pt;}
.y80{bottom:559.793200pt;}
.y95{bottom:560.250533pt;}
.y1b4{bottom:560.666667pt;}
.y10e{bottom:561.132800pt;}
.ybe{bottom:563.870000pt;}
.y41{bottom:564.000000pt;}
.y142{bottom:566.000000pt;}
.y123{bottom:568.000000pt;}
.y168{bottom:570.000000pt;}
.yfc{bottom:570.081733pt;}
.y68{bottom:574.000000pt;}
.y94{bottom:574.917200pt;}
.y10d{bottom:577.132800pt;}
.y1b3{bottom:577.333333pt;}
.y7f{bottom:579.327067pt;}
.y18d{bottom:581.333333pt;}
.y141{bottom:582.000000pt;}
.ybd{bottom:582.517200pt;}
.y2c{bottom:584.000000pt;}
.yfb{bottom:585.688933pt;}
.y167{bottom:586.000000pt;}
.y10c{bottom:593.132800pt;}
.y93{bottom:593.564267pt;}
.y1b2{bottom:594.000000pt;}
.y18c{bottom:594.666667pt;}
.ya{bottom:596.000000pt;}
.y69{bottom:597.041333pt;}
.ybc{bottom:597.183867pt;}
.y140{bottom:598.000000pt;}
.y7e{bottom:598.860933pt;}
.y122{bottom:600.000000pt;}
.yfa{bottom:601.296000pt;}
.y166{bottom:602.000000pt;}
.y2b{bottom:604.000000pt;}
.y18b{bottom:608.000000pt;}
.y92{bottom:608.230933pt;}
.y1b1{bottom:610.666667pt;}
.y9{bottom:613.333333pt;}
.ybb{bottom:615.830933pt;}
.y15a{bottom:616.000000pt;}
.y165{bottom:618.000000pt;}
.y7d{bottom:618.394800pt;}
.y10b{bottom:619.132800pt;}
.y18a{bottom:621.333333pt;}
.y91{bottom:622.897600pt;}
.y2a{bottom:624.000000pt;}
.yf9{bottom:625.368000pt;}
.y121{bottom:626.000000pt;}
.y1b0{bottom:627.333333pt;}
.yba{bottom:630.497600pt;}
.y159{bottom:632.000000pt;}
.y189{bottom:634.666667pt;}
.y10a{bottom:635.132800pt;}
.yf1{bottom:635.949200pt;}
.y7c{bottom:637.928667pt;}
.y8{bottom:640.000000pt;}
.y90{bottom:641.544800pt;}
.y120{bottom:642.000000pt;}
.y29{bottom:644.000000pt;}
.y188{bottom:648.000000pt;}
.yb9{bottom:649.144800pt;}
.y73{bottom:649.333333pt;}
.y109{bottom:651.132800pt;}
.y8f{bottom:656.211467pt;}
.y7b{bottom:657.462533pt;}
.y11f{bottom:658.000000pt;}
.y1af{bottom:660.666667pt;}
.y187{bottom:661.333333pt;}
.yb8{bottom:663.811467pt;}
.yf2{bottom:663.984228pt;}
.y28{bottom:664.000000pt;}
.y13f{bottom:672.000000pt;}
.y158{bottom:674.000000pt;}
.y186{bottom:674.666667pt;}
.y7a{bottom:676.996400pt;}
.y108{bottom:677.132800pt;}
.y1ae{bottom:677.333333pt;}
.y138{bottom:680.000000pt;}
.yb7{bottom:682.458533pt;}
.y27{bottom:684.000000pt;}
.y8e{bottom:684.478133pt;}
.y13e{bottom:688.000000pt;}
.y157{bottom:690.000000pt;}
.yf3{bottom:692.019256pt;}
.y107{bottom:693.132800pt;}
.y1ad{bottom:694.000000pt;}
.y137{bottom:696.000000pt;}
.y79{bottom:696.530133pt;}
.y7{bottom:700.000000pt;}
.yb6{bottom:701.105733pt;}
.y185{bottom:701.333333pt;}
.y8d{bottom:703.125200pt;}
.y26{bottom:704.000000pt;}
.y156{bottom:706.000000pt;}
.y106{bottom:709.132800pt;}
.y1ac{bottom:710.666667pt;}
.y184{bottom:714.666667pt;}
.yb5{bottom:715.772400pt;}
.y78{bottom:716.064000pt;}
.y13d{bottom:720.000000pt;}
.yf4{bottom:720.054284pt;}
.y6{bottom:721.333333pt;}
.y8c{bottom:721.772400pt;}
.y136{bottom:722.000000pt;}
.y25{bottom:724.000000pt;}
.y105{bottom:725.132800pt;}
.y1ab{bottom:727.333333pt;}
.y183{bottom:728.000000pt;}
.y5d{bottom:729.333333pt;}
.yb4{bottom:730.439067pt;}
.y155{bottom:732.000000pt;}
.y77{bottom:735.597867pt;}
.y8b{bottom:736.439067pt;}
.y135{bottom:738.000000pt;}
.y182{bottom:741.333333pt;}
.y24{bottom:744.000000pt;}
.yb3{bottom:745.105733pt;}
.y13c{bottom:746.000000pt;}
.yf5{bottom:747.827960pt;}
.y154{bottom:748.000000pt;}
.y5{bottom:750.666667pt;}
.y104{bottom:751.132800pt;}
.y134{bottom:754.000000pt;}
.y181{bottom:754.666667pt;}
.y8a{bottom:755.086133pt;}
.y76{bottom:755.131733pt;}
.y1aa{bottom:760.666667pt;}
.y13b{bottom:762.000000pt;}
.yb2{bottom:763.752800pt;}
.y23{bottom:764.000000pt;}
.y103{bottom:767.132800pt;}
.y180{bottom:768.000000pt;}
.y133{bottom:770.000000pt;}
.y89{bottom:773.733333pt;}
.y75{bottom:774.665600pt;}
.yf6{bottom:775.862988pt;}
.y4{bottom:777.333333pt;}
.y13a{bottom:778.000000pt;}
.yb1{bottom:778.419467pt;}
.y153{bottom:780.000000pt;}
.y17f{bottom:781.333333pt;}
.y22{bottom:784.000000pt;}
.y102{bottom:793.132800pt;}
.y1a9{bottom:794.000000pt;}
.y74{bottom:794.199467pt;}
.y17e{bottom:794.666667pt;}
.y132{bottom:796.000000pt;}
.yb0{bottom:797.066667pt;}
.yf7{bottom:803.898016pt;}
.y21{bottom:804.000000pt;}
.y17d{bottom:808.000000pt;}
.y101{bottom:809.132800pt;}
.y1a8{bottom:810.666667pt;}
.y131{bottom:812.000000pt;}
.y3{bottom:824.000000pt;}
.y1a7{bottom:827.333333pt;}
.y130{bottom:828.000000pt;}
.yf8{bottom:831.671692pt;}
.y100{bottom:835.132800pt;}
.yd9{bottom:1040.016000pt;}
.yd5{bottom:1055.446667pt;}
.h13{height:-211.446667pt;}
.h15{height:-196.016000pt;}
.hf{height:22.358187pt;}
.h10{height:22.706531pt;}
.h14{height:26.798789pt;}
.h18{height:28.597733pt;}
.h1a{height:29.437500pt;}
.h1b{height:29.866667pt;}
.h12{height:32.440789pt;}
.h17{height:32.930352pt;}
.h2{height:33.117188pt;}
.h19{height:34.730667pt;}
.hb{height:36.229167pt;}
.h16{height:36.501764pt;}
.h9{height:36.796875pt;}
.h1{height:40.476562pt;}
.h7{height:40.757812pt;}
.h5{height:41.066667pt;}
.hd{height:43.413333pt;}
.h6{height:44.156250pt;}
.h8{height:45.286458pt;}
.hc{height:49.815104pt;}
.ha{height:54.343750pt;}
.h4{height:67.929688pt;}
.h3{height:90.572917pt;}
.he{height:246.958667pt;}
.h11{height:295.389333pt;}
.h0{height:904.000000pt;}
.wb{width:-85.910667pt;}
.wa{width:-51.742667pt;}
.w9{width:-17.574667pt;}
.w8{width:17.696000pt;}
.w7{width:35.270667pt;}
.w6{width:38.577333pt;}
.w4{width:45.190667pt;}
.w5{width:52.905333pt;}
.w3{width:109.790667pt;}
.w1{width:345.333333pt;}
.w2{width:408.548000pt;}
.w0{width:640.000000pt;}
.x40{left:-2.675045pt;}
.x0{left:0.000000pt;}
.xf{left:3.196813pt;}
.xe{left:6.777733pt;}
.x10{left:15.945333pt;}
.x4c{left:28.570000pt;}
.x11{left:30.683937pt;}
.x12{left:45.422540pt;}
.x3e{left:55.725333pt;}
.x3{left:60.000000pt;}
.x4{left:61.479867pt;}
.x31{left:65.600000pt;}
.x4e{left:69.735333pt;}
.x9{left:73.333333pt;}
.x13{left:74.899746pt;}
.x8{left:80.000000pt;}
.x5{left:88.000000pt;}
.x14{left:89.638349pt;}
.x7{left:100.000000pt;}
.x3d{left:102.666667pt;}
.x15{left:104.376953pt;}
.x24{left:105.600000pt;}
.xd{left:113.333333pt;}
.xa{left:120.000000pt;}
.x1{left:126.070667pt;}
.x16{left:133.854159pt;}
.xb{left:142.666533pt;}
.x17{left:148.592762pt;}
.x4f{left:161.333333pt;}
.x18{left:163.331365pt;}
.x41{left:164.414667pt;}
.x19{left:178.069969pt;}
.x32{left:189.600000pt;}
.x1a{left:192.808572pt;}
.x25{left:197.580400pt;}
.x1b{left:207.547175pt;}
.x42{left:209.604000pt;}
.x1c{left:222.285778pt;}
.x26{left:226.913733pt;}
.x3c{left:229.600000pt;}
.x2{left:234.000000pt;}
.x1d{left:237.024381pt;}
.x1e{left:251.762985pt;}
.x43{left:253.692000pt;}
.x3f{left:256.752400pt;}
.x27{left:262.913733pt;}
.x1f{left:266.501588pt;}
.x20{left:281.240191pt;}
.x21{left:295.978794pt;}
.x28{left:298.913733pt;}
.x33{left:302.913733pt;}
.x44{left:305.496000pt;}
.x22{left:310.717397pt;}
.x23{left:325.456001pt;}
.x29{left:334.913733pt;}
.x34{left:338.913733pt;}
.x45{left:344.072000pt;}
.x2a{left:364.247200pt;}
.x35{left:374.913867pt;}
.x46{left:378.241333pt;}
.x2b{left:400.247200pt;}
.x36{left:404.247200pt;}
.x4d{left:410.508196pt;}
.x47{left:412.409333pt;}
.x2c{left:429.580533pt;}
.x37{left:440.247200pt;}
.x48{left:446.577333pt;}
.x2d{left:458.913867pt;}
.x38{left:469.580533pt;}
.x49{left:481.848000pt;}
.x2e{left:488.247200pt;}
.x39{left:498.913867pt;}
.x4a{left:516.016000pt;}
.x2f{left:517.580533pt;}
.x3a{left:528.247200pt;}
.x30{left:533.580533pt;}
.x4b{left:550.184000pt;}
.x6{left:558.180400pt;}
.xc{left:559.457867pt;}
.x3b{left:573.580533pt;}
}




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