
    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_dbd119a803fe0f2007b1a44d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_fab6b54cb32860acb4a665cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_f58ffc5aa137d557ef9d0a8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_6df64c2203860cf05c534a9c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_744af74a4de1e209c53fc5b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6115263a71c9214e37d8907a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690110;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_e2c0c1d35fc830d4c0d6b1c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910023;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_75fff628ae8a10652aae2c5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_32695fe141836fca8eb546fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_2c652377388b1a2107e1a276.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689000;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_c3b3e81d6cfabb7cbc7cfa6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862000;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_c20a66c2f26342b1f3e9810b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6d37c2336c6935cd73856de2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693000;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_e30b5abfff166f2f1498f083.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_48118d0fa7e4207b0cc6bb78.woff2')format("woff");}.fff{font-family:fff;line-height:0.689000;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_1b6e9b28abb448a6e37ccd53.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862000;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_9fcbd226ce5f76701c53f727.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.m4{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,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:-3.672324px;}
.v1{vertical-align:-1.554000px;}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-3.472426px;}
.ls59{letter-spacing:-2.781600px;}
.ls61{letter-spacing:-2.220000px;}
.lsf{letter-spacing:-1.547709px;}
.ls15{letter-spacing:-1.509960px;}
.ls1b{letter-spacing:-1.434462px;}
.ls6f{letter-spacing:-1.276366px;}
.ls75{letter-spacing:-1.134547px;}
.ls45{letter-spacing:-1.101697px;}
.ls10{letter-spacing:-1.056972px;}
.ls66{letter-spacing:-0.975528px;}
.ls6b{letter-spacing:-0.945456px;}
.ls3{letter-spacing:-0.900000px;}
.ls4d{letter-spacing:-0.897679px;}
.ls16{letter-spacing:-0.868227px;}
.ls3b{letter-spacing:-0.842031px;}
.ls40{letter-spacing:-0.816072px;}
.ls81{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.792729px;}
.lse{letter-spacing:-0.754980px;}
.ls11{letter-spacing:-0.717231px;}
.ls13{letter-spacing:-0.679482px;}
.ls78{letter-spacing:-0.661819px;}
.ls79{letter-spacing:-0.614546px;}
.ls77{letter-spacing:-0.567274px;}
.ls6c{letter-spacing:-0.520001px;}
.ls41{letter-spacing:-0.489643px;}
.ls71{letter-spacing:-0.472728px;}
.ls18{letter-spacing:-0.452988px;}
.ls4c{letter-spacing:-0.448840px;}
.ls14{letter-spacing:-0.415239px;}
.ls49{letter-spacing:-0.408036px;}
.ls62{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288504px;}
.ls70{letter-spacing:-0.283637px;}
.ls82{letter-spacing:-0.270000px;}
.ls69{letter-spacing:-0.260141px;}
.ls30{letter-spacing:-0.248030px;}
.ls48{letter-spacing:-0.244822px;}
.ls1e{letter-spacing:-0.240420px;}
.ls3e{letter-spacing:-0.224542px;}
.ls7e{letter-spacing:-0.206631px;}
.ls22{letter-spacing:-0.188745px;}
.ls31{letter-spacing:-0.186023px;}
.ls44{letter-spacing:-0.163214px;}
.ls23{letter-spacing:-0.150996px;}
.ls4f{letter-spacing:-0.136800px;}
.ls67{letter-spacing:-0.130070px;}
.ls7a{letter-spacing:-0.123979px;}
.ls46{letter-spacing:-0.122411px;}
.ls28{letter-spacing:-0.113247px;}
.ls3c{letter-spacing:-0.112271px;}
.ls54{letter-spacing:-0.091200px;}
.ls42{letter-spacing:-0.081607px;}
.ls21{letter-spacing:-0.075498px;}
.ls68{letter-spacing:-0.065035px;}
.ls3d{letter-spacing:-0.056135px;}
.ls1d{letter-spacing:-0.048084px;}
.ls6d{letter-spacing:-0.047273px;}
.ls5a{letter-spacing:-0.045600px;}
.ls4a{letter-spacing:-0.040804px;}
.ls26{letter-spacing:-0.037749px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.040804px;}
.ls38{letter-spacing:0.045600px;}
.ls63{letter-spacing:0.047273px;}
.ls6{letter-spacing:0.048084px;}
.lsb{letter-spacing:0.062008px;}
.ls9{letter-spacing:0.075498px;}
.ls32{letter-spacing:0.081607px;}
.ls7d{letter-spacing:0.082652px;}
.ls51{letter-spacing:0.091200px;}
.ls64{letter-spacing:0.094546px;}
.ls7{letter-spacing:0.096168px;}
.ls3f{letter-spacing:0.112271px;}
.lsc{letter-spacing:0.124015px;}
.ls6a{letter-spacing:0.130070px;}
.ls3a{letter-spacing:0.136800px;}
.ls76{letter-spacing:0.141818px;}
.ls7b{letter-spacing:0.165305px;}
.ls36{letter-spacing:0.182400px;}
.lsd{letter-spacing:0.186023px;}
.ls33{letter-spacing:0.204018px;}
.ls37{letter-spacing:0.228000px;}
.ls74{letter-spacing:0.236364px;}
.ls8{letter-spacing:0.240420px;}
.ls2c{letter-spacing:0.264243px;}
.ls80{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.273600px;}
.ls73{letter-spacing:0.283637px;}
.ls4b{letter-spacing:0.285625px;}
.ls5{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.301992px;}
.ls53{letter-spacing:0.319200px;}
.ls72{letter-spacing:0.330910px;}
.ls2e{letter-spacing:0.336588px;}
.ls57{letter-spacing:0.364800px;}
.ls7c{letter-spacing:0.371936px;}
.ls5f{letter-spacing:0.456000px;}
.ls7f{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.638400px;}
.ls55{letter-spacing:0.684000px;}
.ls5b{letter-spacing:0.729600px;}
.ls4{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.425000px;}
.ls1a{letter-spacing:8.191533px;}
.ls1c{letter-spacing:8.380278px;}
.ls19{letter-spacing:8.569023px;}
.ls17{letter-spacing:8.757768px;}
.ls47{letter-spacing:9.099203px;}
.ls20{letter-spacing:9.135258px;}
.ls2a{letter-spacing:9.286254px;}
.ls4e{letter-spacing:9.303221px;}
.ls2b{letter-spacing:9.361752px;}
.ls25{letter-spacing:9.399501px;}
.ls43{letter-spacing:9.425632px;}
.ls29{letter-spacing:9.474999px;}
.ls2d{letter-spacing:9.550497px;}
.ls27{letter-spacing:9.588246px;}
.ls6e{letter-spacing:10.683653px;}
.ls52{letter-spacing:11.400000px;}
.ls56{letter-spacing:11.491200px;}
.ls5e{letter-spacing:11.582400px;}
.ls5d{letter-spacing:11.673600px;}
.ls5c{letter-spacing:11.719200px;}
.ls58{letter-spacing:11.764800px;}
.ls50{letter-spacing:49.065600px;}
.ls34{letter-spacing:327.040854px;}
.ls65{letter-spacing:342.916891px;}
.lsa{letter-spacing:412.254443px;}
.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;}
}
.wsc3{word-spacing:-60.465600px;}
.wscc{word-spacing:-23.164800px;}
.wsd7{word-spacing:-23.119200px;}
.wsda{word-spacing:-23.073600px;}
.wsdc{word-spacing:-22.982400px;}
.wsca{word-spacing:-22.891200px;}
.wsc5{word-spacing:-22.800000px;}
.ws8c{word-spacing:-19.025496px;}
.ws92{word-spacing:-18.987747px;}
.ws0{word-spacing:-18.984000px;}
.ws8e{word-spacing:-18.912249px;}
.ws8b{word-spacing:-18.836751px;}
.ws90{word-spacing:-18.799002px;}
.ws8f{word-spacing:-18.723504px;}
.ws88{word-spacing:-18.572508px;}
.ws75{word-spacing:-18.195018px;}
.ws7b{word-spacing:-18.006273px;}
.ws80{word-spacing:-17.817528px;}
.ws7c{word-spacing:-17.628783px;}
.ws10{word-spacing:-15.900000px;}
.ws9b{word-spacing:-15.315877px;}
.wsf6{word-spacing:-12.780000px;}
.ws95{word-spacing:-12.357588px;}
.ws85{word-spacing:-12.261420px;}
.wsd5{word-spacing:-12.129600px;}
.ws84{word-spacing:-12.117168px;}
.wsc9{word-spacing:-12.084000px;}
.ws82{word-spacing:-12.069084px;}
.wse4{word-spacing:-12.038400px;}
.ws96{word-spacing:-12.029474px;}
.ws94{word-spacing:-11.972916px;}
.wsdf{word-spacing:-11.764800px;}
.ws87{word-spacing:-11.732496px;}
.wsc6{word-spacing:-11.719200px;}
.ws5{word-spacing:-11.676000px;}
.wsdb{word-spacing:-11.673600px;}
.wsd8{word-spacing:-11.628000px;}
.wsc4{word-spacing:-11.582400px;}
.wscb{word-spacing:-11.536800px;}
.wsd6{word-spacing:-11.445600px;}
.wsd1{word-spacing:-11.354400px;}
.wsc8{word-spacing:-11.308800px;}
.wsc7{word-spacing:-11.263200px;}
.ws12b{word-spacing:-10.730926px;}
.ws8a{word-spacing:-9.739242px;}
.ws91{word-spacing:-9.512748px;}
.wsb4{word-spacing:-9.466435px;}
.ws78{word-spacing:-9.437250px;}
.wsc1{word-spacing:-9.344024px;}
.ws8d{word-spacing:-9.324003px;}
.wsb9{word-spacing:-9.140006px;}
.ws70{word-spacing:-9.022011px;}
.ws6f{word-spacing:-8.757768px;}
.ws6d{word-spacing:-8.644521px;}
.wscf{word-spacing:-8.618400px;}
.ws74{word-spacing:-8.569023px;}
.ws73{word-spacing:-7.927290px;}
.ws6a{word-spacing:-7.889541px;}
.ws54{word-spacing:-3.780000px;}
.ws15a{word-spacing:-3.618000px;}
.ws58{word-spacing:-3.600000px;}
.ws16c{word-spacing:-3.240000px;}
.ws14b{word-spacing:-3.180000px;}
.ws41{word-spacing:-3.000000px;}
.wse6{word-spacing:-2.940000px;}
.ws3a{word-spacing:-2.880000px;}
.ws164{word-spacing:-2.862000px;}
.ws64{word-spacing:-2.820000px;}
.ws114{word-spacing:-2.700000px;}
.ws2a{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.580000px;}
.ws152{word-spacing:-2.520000px;}
.ws13d{word-spacing:-2.460000px;}
.ws38{word-spacing:-2.400000px;}
.ws35{word-spacing:-2.340000px;}
.ws15{word-spacing:-2.280000px;}
.ws15b{word-spacing:-2.268000px;}
.ws118{word-spacing:-2.220000px;}
.ws9e{word-spacing:-2.160000px;}
.ws30{word-spacing:-2.100000px;}
.ws14d{word-spacing:-2.040000px;}
.ws36{word-spacing:-1.980000px;}
.ws116{word-spacing:-1.920000px;}
.ws68{word-spacing:-1.860000px;}
.wsa{word-spacing:-1.800000px;}
.ws14a{word-spacing:-1.740000px;}
.ws61{word-spacing:-1.680000px;}
.ws3{word-spacing:-1.668000px;}
.ws4a{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.560000px;}
.ws4{word-spacing:-1.500000px;}
.ws2{word-spacing:-1.482000px;}
.wsd{word-spacing:-1.440000px;}
.ws106{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.320000px;}
.ws9c{word-spacing:-1.302160px;}
.ws111{word-spacing:-1.260000px;}
.wsa7{word-spacing:-1.200000px;}
.ws3d{word-spacing:-1.140000px;}
.wsd2{word-spacing:-1.094400px;}
.ws11a{word-spacing:-1.080000px;}
.ws53{word-spacing:-1.020000px;}
.ws123{word-spacing:-0.960000px;}
.wse1{word-spacing:-0.912000px;}
.wsfb{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.840000px;}
.wse2{word-spacing:-0.820800px;}
.ws10a{word-spacing:-0.810000px;}
.ws113{word-spacing:-0.780000px;}
.wse0{word-spacing:-0.775200px;}
.wse3{word-spacing:-0.684000px;}
.ws63{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.600000px;}
.wsf9{word-spacing:-0.540000px;}
.wsd4{word-spacing:-0.501600px;}
.ws48{word-spacing:-0.480000px;}
.ws15c{word-spacing:-0.432000px;}
.ws13b{word-spacing:-0.413262px;}
.ws130{word-spacing:-0.378182px;}
.ws146{word-spacing:-0.371936px;}
.wsf1{word-spacing:-0.364800px;}
.ws45{word-spacing:-0.360000px;}
.ws132{word-spacing:-0.330910px;}
.wsbb{word-spacing:-0.326429px;}
.ws16b{word-spacing:-0.324000px;}
.wse{word-spacing:-0.300000px;}
.ws133{word-spacing:-0.283637px;}
.ws167{word-spacing:-0.270000px;}
.wsad{word-spacing:-0.264243px;}
.wsbd{word-spacing:-0.244822px;}
.wsfa{word-spacing:-0.240000px;}
.wsf5{word-spacing:-0.228000px;}
.ws72{word-spacing:-0.226494px;}
.ws139{word-spacing:-0.206631px;}
.wsee{word-spacing:-0.182400px;}
.ws59{word-spacing:-0.180000px;}
.ws76{word-spacing:-0.150996px;}
.ws131{word-spacing:-0.141818px;}
.wsf0{word-spacing:-0.136800px;}
.ws143{word-spacing:-0.130070px;}
.wsbc{word-spacing:-0.122411px;}
.ws105{word-spacing:-0.120000px;}
.wsec{word-spacing:-0.112271px;}
.ws170{word-spacing:-0.108000px;}
.ws12c{word-spacing:-0.094546px;}
.wsef{word-spacing:-0.091200px;}
.ws147{word-spacing:-0.082652px;}
.wsbe{word-spacing:-0.081607px;}
.wsac{word-spacing:-0.075498px;}
.ws56{word-spacing:-0.060000px;}
.wsaa{word-spacing:-0.048084px;}
.ws12e{word-spacing:-0.047273px;}
.wsf3{word-spacing:-0.045600px;}
.wsb7{word-spacing:-0.040804px;}
.ws1{word-spacing:0.000000px;}
.wsab{word-spacing:0.037749px;}
.wsb3{word-spacing:0.040804px;}
.wsf4{word-spacing:0.045600px;}
.ws145{word-spacing:0.047273px;}
.ws1a{word-spacing:0.060000px;}
.ws142{word-spacing:0.065035px;}
.wsb8{word-spacing:0.081607px;}
.ws138{word-spacing:0.082652px;}
.ws174{word-spacing:0.108000px;}
.wseb{word-spacing:0.112271px;}
.ws81{word-spacing:0.113247px;}
.ws4d{word-spacing:0.120000px;}
.wsb5{word-spacing:0.122411px;}
.ws141{word-spacing:0.130070px;}
.wsf2{word-spacing:0.136800px;}
.ws7e{word-spacing:0.150996px;}
.wsb0{word-spacing:0.168406px;}
.ws102{word-spacing:0.180000px;}
.ws128{word-spacing:0.195106px;}
.ws148{word-spacing:0.206631px;}
.wsa3{word-spacing:0.240000px;}
.ws9a{word-spacing:0.240420px;}
.wsed{word-spacing:0.244822px;}
.wsae{word-spacing:0.248030px;}
.ws89{word-spacing:0.264243px;}
.ws144{word-spacing:0.283637px;}
.ws47{word-spacing:0.300000px;}
.ws6c{word-spacing:0.301992px;}
.wsdd{word-spacing:0.319200px;}
.ws21{word-spacing:0.360000px;}
.wsd3{word-spacing:0.364800px;}
.wsba{word-spacing:0.367232px;}
.ws71{word-spacing:0.377490px;}
.ws12f{word-spacing:0.425455px;}
.ws158{word-spacing:0.432000px;}
.wsb2{word-spacing:0.448840px;}
.ws69{word-spacing:0.452988px;}
.ws12a{word-spacing:0.472728px;}
.ws52{word-spacing:0.480000px;}
.ws99{word-spacing:0.480840px;}
.wsd9{word-spacing:0.501600px;}
.ws135{word-spacing:0.520001px;}
.ws93{word-spacing:0.528486px;}
.ws3e{word-spacing:0.540000px;}
.wsce{word-spacing:0.547200px;}
.ws19{word-spacing:0.600000px;}
.ws7a{word-spacing:0.603984px;}
.ws136{word-spacing:0.614546px;}
.ws1d{word-spacing:0.660000px;}
.ws7f{word-spacing:0.679482px;}
.ws97{word-spacing:0.682084px;}
.wse5{word-spacing:0.684000px;}
.ws77{word-spacing:0.717231px;}
.ws4b{word-spacing:0.720000px;}
.wscd{word-spacing:0.729600px;}
.wsa8{word-spacing:0.754980px;}
.ws83{word-spacing:0.769344px;}
.wsb1{word-spacing:0.775268px;}
.ws101{word-spacing:0.780000px;}
.wsaf{word-spacing:0.785896px;}
.wsa9{word-spacing:0.792729px;}
.ws62{word-spacing:0.840000px;}
.wsbf{word-spacing:0.856876px;}
.ws129{word-spacing:0.898183px;}
.ws112{word-spacing:0.900000px;}
.ws6b{word-spacing:0.905976px;}
.ws127{word-spacing:0.910493px;}
.ws6e{word-spacing:0.943725px;}
.wsfc{word-spacing:0.960000px;}
.ws3f{word-spacing:1.020000px;}
.ws154{word-spacing:1.026000px;}
.wsb6{word-spacing:1.060894px;}
.ws26{word-spacing:1.080000px;}
.ws134{word-spacing:1.087274px;}
.ws79{word-spacing:1.094721px;}
.ws16a{word-spacing:1.134000px;}
.wsde{word-spacing:1.185600px;}
.ws37{word-spacing:1.200000px;}
.ws12d{word-spacing:1.229093px;}
.wsfe{word-spacing:1.260000px;}
.ws160{word-spacing:1.296000px;}
.ws51{word-spacing:1.320000px;}
.wsf8{word-spacing:1.380000px;}
.ws5b{word-spacing:1.440000px;}
.ws121{word-spacing:1.500000px;}
.ws155{word-spacing:1.512000px;}
.ws9d{word-spacing:1.560000px;}
.ws13c{word-spacing:1.620000px;}
.ws86{word-spacing:1.634856px;}
.ws18{word-spacing:1.680000px;}
.ws7d{word-spacing:1.698705px;}
.wsa1{word-spacing:1.740000px;}
.ws2c{word-spacing:1.800000px;}
.ws11d{word-spacing:1.860000px;}
.ws117{word-spacing:1.920000px;}
.ws13e{word-spacing:1.980000px;}
.wsa0{word-spacing:2.040000px;}
.ws10b{word-spacing:2.100000px;}
.ws156{word-spacing:2.106000px;}
.wsa6{word-spacing:2.160000px;}
.ws109{word-spacing:2.220000px;}
.ws163{word-spacing:2.268000px;}
.ws23{word-spacing:2.280000px;}
.ws6{word-spacing:2.340000px;}
.wsa5{word-spacing:2.400000px;}
.ws1e{word-spacing:2.460000px;}
.ws173{word-spacing:2.484000px;}
.ws27{word-spacing:2.520000px;}
.ws43{word-spacing:2.580000px;}
.ws11{word-spacing:2.640000px;}
.ws5a{word-spacing:2.700000px;}
.ws22{word-spacing:2.820000px;}
.ws15e{word-spacing:2.862000px;}
.ws5e{word-spacing:2.880000px;}
.ws2e{word-spacing:2.940000px;}
.ws171{word-spacing:2.970000px;}
.ws14e{word-spacing:3.000000px;}
.ws9f{word-spacing:3.060000px;}
.ws31{word-spacing:3.120000px;}
.ws1f{word-spacing:3.180000px;}
.ws10f{word-spacing:3.300000px;}
.ws57{word-spacing:3.360000px;}
.ws1c{word-spacing:3.420000px;}
.ws11f{word-spacing:3.480000px;}
.ws149{word-spacing:3.600000px;}
.ws103{word-spacing:3.660000px;}
.ws122{word-spacing:3.720000px;}
.wsfd{word-spacing:3.780000px;}
.ws153{word-spacing:3.834000px;}
.ws13f{word-spacing:3.840000px;}
.ws17{word-spacing:3.900000px;}
.wsea{word-spacing:3.960000px;}
.ws16f{word-spacing:3.996000px;}
.ws67{word-spacing:4.020000px;}
.ws5f{word-spacing:4.080000px;}
.ws14f{word-spacing:4.140000px;}
.wse9{word-spacing:4.320000px;}
.wsa2{word-spacing:4.380000px;}
.ws168{word-spacing:4.482000px;}
.ws2d{word-spacing:4.500000px;}
.ws125{word-spacing:4.560000px;}
.wse8{word-spacing:4.680000px;}
.ws55{word-spacing:4.740000px;}
.ws15f{word-spacing:4.752000px;}
.ws39{word-spacing:4.800000px;}
.ws159{word-spacing:4.860000px;}
.ws172{word-spacing:4.914000px;}
.ws100{word-spacing:4.920000px;}
.wsa4{word-spacing:5.040000px;}
.ws25{word-spacing:5.160000px;}
.ws49{word-spacing:5.220000px;}
.ws46{word-spacing:5.280000px;}
.ws44{word-spacing:5.340000px;}
.ws126{word-spacing:5.400000px;}
.ws4f{word-spacing:5.460000px;}
.ws166{word-spacing:5.508000px;}
.ws2b{word-spacing:5.520000px;}
.wse7{word-spacing:5.580000px;}
.ws13{word-spacing:5.640000px;}
.ws120{word-spacing:5.700000px;}
.ws2f{word-spacing:5.760000px;}
.ws40{word-spacing:5.880000px;}
.ws29{word-spacing:5.940000px;}
.ws16e{word-spacing:5.994000px;}
.wsf{word-spacing:6.000000px;}
.ws150{word-spacing:6.180000px;}
.ws16{word-spacing:6.240000px;}
.ws9{word-spacing:6.360000px;}
.ws162{word-spacing:6.588000px;}
.ws115{word-spacing:6.600000px;}
.ws11e{word-spacing:6.660000px;}
.ws107{word-spacing:6.720000px;}
.ws5d{word-spacing:6.840000px;}
.ws11c{word-spacing:6.900000px;}
.ws3b{word-spacing:7.020000px;}
.wsf7{word-spacing:7.200000px;}
.ws65{word-spacing:7.260000px;}
.ws28{word-spacing:7.320000px;}
.ws14c{word-spacing:7.380000px;}
.ws165{word-spacing:7.398000px;}
.ws110{word-spacing:7.440000px;}
.ws24{word-spacing:7.500000px;}
.ws1b{word-spacing:7.560000px;}
.ws104{word-spacing:7.776000px;}
.ws33{word-spacing:7.920000px;}
.ws5c{word-spacing:7.980000px;}
.ws15d{word-spacing:8.316000px;}
.ws108{word-spacing:8.400000px;}
.ws20{word-spacing:8.460000px;}
.wsc0{word-spacing:8.487149px;}
.ws4e{word-spacing:8.520000px;}
.ws10e{word-spacing:9.060000px;}
.ws4c{word-spacing:9.120000px;}
.ws124{word-spacing:9.180000px;}
.ws10d{word-spacing:9.240000px;}
.ws66{word-spacing:9.360000px;}
.ws119{word-spacing:9.540000px;}
.ws50{word-spacing:9.660000px;}
.ws13a{word-spacing:9.711657px;}
.ws10c{word-spacing:9.960000px;}
.ws161{word-spacing:9.990000px;}
.ws157{word-spacing:10.206000px;}
.ws8{word-spacing:10.260000px;}
.wsff{word-spacing:10.560000px;}
.ws60{word-spacing:10.620000px;}
.ws169{word-spacing:11.016000px;}
.ws11b{word-spacing:11.220000px;}
.ws7{word-spacing:11.280000px;}
.ws137{word-spacing:12.007291px;}
.ws14{word-spacing:12.360000px;}
.ws34{word-spacing:12.480000px;}
.ws16d{word-spacing:13.392000px;}
.ws140{word-spacing:14.940000px;}
.ws32{word-spacing:23.820000px;}
.ws151{word-spacing:25.380000px;}
.wsc2{word-spacing:31.828800px;}
.wsd0{word-spacing:31.920000px;}
.ws98{word-spacing:268.864954px;}
._f{margin-left:-645.917728px;}
._10{margin-left:-48.974400px;}
._25{margin-left:-26.892000px;}
._1c{margin-left:-21.360000px;}
._15{margin-left:-17.100000px;}
._18{margin-left:-15.136800px;}
._17{margin-left:-13.860000px;}
._1f{margin-left:-12.701292px;}
._4{margin-left:-11.676000px;}
._a{margin-left:-9.512748px;}
._b{margin-left:-8.493525px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-6.240000px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.135000px;}
._1{margin-left:-1.996800px;}
._e{width:1.122708px;}
._9{width:3.204000px;}
._0{width:5.587200px;}
._24{width:7.722000px;}
._d{width:11.988000px;}
._23{width:71.997600px;}
._21{width:74.236800px;}
._1d{width:75.960000px;}
._14{width:79.756800px;}
._16{width:83.117292px;}
._19{width:84.156000px;}
._11{width:87.960000px;}
._13{width:90.197292px;}
._1b{width:100.593600px;}
._20{width:106.680000px;}
._1a{width:112.920000px;}
._12{width:117.960000px;}
._c{width:910.180505px;}
._1e{width:1219.440000px;}
._6{width:1249.440000px;}
._22{width:2029.380000px;}
._7{width:2059.380000px;}
.fc7{color:rgb(16,15,13);}
.fc6{color:rgb(16,15,13);}
.fc5{color:rgb(77,107,188);}
.fc4{color:rgb(77,107,189);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:6.000000px;}
.fs3{font-size:36.000000px;}
.fsa{font-size:37.749000px;}
.fsf{font-size:40.803600px;}
.fs14{font-size:41.326200px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:45.600000px;}
.fs13{font-size:47.272800px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:48.084000px;}
.fsd{font-size:54.000000px;}
.fse{font-size:56.135400px;}
.fs8{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:62.007600px;}
.fs12{font-size:65.035200px;}
.fs2{font-size:66.000000px;}
.fs10{font-size:68.400000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y1b4{bottom:-3.392100px;}
.y193{bottom:-3.381750px;}
.ydb{bottom:-2.917950px;}
.y188{bottom:-1.455750px;}
.yd0{bottom:-1.254900px;}
.y1a1{bottom:-0.219150px;}
.y0{bottom:0.000000px;}
.y1a3{bottom:0.029400px;}
.y1ab{bottom:0.031350px;}
.y1ae{bottom:0.031500px;}
.yd2{bottom:0.042600px;}
.ydd{bottom:0.043050px;}
.y18a{bottom:0.048750px;}
.y1a5{bottom:0.083400px;}
.y1b2{bottom:0.084000px;}
.y1a7{bottom:0.092400px;}
.y1a9{bottom:0.094350px;}
.y1b0{bottom:0.094500px;}
.yd6{bottom:0.113100px;}
.yd9{bottom:0.125550px;}
.yd4{bottom:0.126600px;}
.y18e{bottom:0.131250px;}
.y191{bottom:0.144750px;}
.y18c{bottom:0.147750px;}
.yc{bottom:8.040000px;}
.ye8{bottom:70.448250px;}
.y133{bottom:71.783250px;}
.y15b{bottom:74.703600px;}
.y14{bottom:77.715000px;}
.y182{bottom:78.164100px;}
.y1b6{bottom:80.553750px;}
.y1c6{bottom:81.162900px;}
.y80{bottom:81.164100px;}
.y3e{bottom:82.287450px;}
.ye7{bottom:86.202750px;}
.ya7{bottom:86.380500px;}
.y70{bottom:87.164100px;}
.y1eb{bottom:87.254100px;}
.y132{bottom:89.783250px;}
.y15a{bottom:92.703600px;}
.y181{bottom:96.164100px;}
.y3d{bottom:97.287450px;}
.y1c5{bottom:99.162900px;}
.y7f{bottom:99.164100px;}
.y13{bottom:99.795000px;}
.y1ea{bottom:103.751100px;}
.ya6{bottom:104.380500px;}
.y6f{bottom:105.164100px;}
.y131{bottom:107.783250px;}
.y159{bottom:110.703600px;}
.y3c{bottom:112.287450px;}
.y18{bottom:113.670000px;}
.y180{bottom:114.164100px;}
.y1c4{bottom:117.162900px;}
.y7e{bottom:117.164100px;}
.y218{bottom:119.703600px;}
.y1e9{bottom:120.248100px;}
.y1b5{bottom:120.953250px;}
.ya5{bottom:122.380500px;}
.y6e{bottom:123.164100px;}
.y130{bottom:125.783250px;}
.y158{bottom:128.703600px;}
.ye6{bottom:132.135000px;}
.y17f{bottom:132.164100px;}
.y1c3{bottom:135.162900px;}
.y7d{bottom:135.164100px;}
.y17{bottom:135.750000px;}
.y1e8{bottom:136.745100px;}
.y217{bottom:137.703600px;}
.ya4{bottom:140.380500px;}
.y6d{bottom:141.164100px;}
.y12f{bottom:143.783250px;}
.y157{bottom:146.703600px;}
.y17e{bottom:150.164100px;}
.y1c2{bottom:153.162900px;}
.y7c{bottom:153.164100px;}
.y1e7{bottom:153.242100px;}
.y15{bottom:154.950000px;}
.y216{bottom:155.703600px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.ya3{bottom:158.380500px;}
.y6c{bottom:159.164100px;}
.y12e{bottom:161.783250px;}
.y3b{bottom:161.896050px;}
.y156{bottom:164.703600px;}
.y17d{bottom:168.164100px;}
.y1e6{bottom:169.739100px;}
.y199{bottom:170.924228px;}
.y1c1{bottom:171.162900px;}
.y7b{bottom:171.164100px;}
.y215{bottom:173.703600px;}
.ya2{bottom:176.380500px;}
.y6b{bottom:177.164100px;}
.ye1{bottom:178.884431px;}
.y12d{bottom:179.783250px;}
.y3a{bottom:179.896050px;}
.y198{bottom:184.964250px;}
.y17c{bottom:186.164100px;}
.y1e5{bottom:186.236100px;}
.y1c0{bottom:189.162900px;}
.y7a{bottom:189.164100px;}
.ye0{bottom:191.003100px;}
.y214{bottom:191.703600px;}
.ya1{bottom:194.380500px;}
.y6a{bottom:195.164100px;}
.y12c{bottom:197.783250px;}
.y39{bottom:197.896050px;}
.y155{bottom:200.703600px;}
.y1e4{bottom:202.733100px;}
.y17b{bottom:204.164100px;}
.y1bf{bottom:207.162900px;}
.y79{bottom:207.164100px;}
.y213{bottom:209.703600px;}
.ya0{bottom:212.380500px;}
.y69{bottom:213.164100px;}
.y12b{bottom:215.783250px;}
.y190{bottom:216.967500px;}
.y194{bottom:217.063500px;}
.y18f{bottom:217.112250px;}
.yd8{bottom:218.628000px;}
.y154{bottom:218.703600px;}
.ydc{bottom:218.710500px;}
.yd7{bottom:218.753550px;}
.y1e3{bottom:219.230100px;}
.y192{bottom:220.494000px;}
.yda{bottom:221.671500px;}
.y17a{bottom:222.164100px;}
.y38{bottom:224.896050px;}
.y1be{bottom:225.162900px;}
.y78{bottom:225.164100px;}
.y212{bottom:227.703600px;}
.y9f{bottom:230.380500px;}
.y68{bottom:231.164100px;}
.y12a{bottom:233.783250px;}
.yd3{bottom:235.338000px;}
.yd5{bottom:235.351500px;}
.yd1{bottom:235.422000px;}
.yce{bottom:235.464600px;}
.y1e2{bottom:235.727100px;}
.y18b{bottom:236.325000px;}
.y18d{bottom:236.341500px;}
.y189{bottom:236.424000px;}
.y186{bottom:236.472750px;}
.y153{bottom:236.703600px;}
.ycf{bottom:236.719500px;}
.y187{bottom:237.928500px;}
.y179{bottom:240.164100px;}
.y1bd{bottom:243.162900px;}
.y77{bottom:243.164100px;}
.y211{bottom:245.703600px;}
.y9e{bottom:248.380500px;}
.y67{bottom:249.164100px;}
.y129{bottom:251.783250px;}
.y1e1{bottom:252.224100px;}
.y152{bottom:254.703600px;}
.y1bc{bottom:261.162900px;}
.y76{bottom:261.164100px;}
.y9d{bottom:266.380500px;}
.y66{bottom:267.164100px;}
.y1e0{bottom:268.721100px;}
.y128{bottom:269.783250px;}
.y210{bottom:272.703600px;}
.y178{bottom:276.164100px;}
.y1bb{bottom:279.162900px;}
.y75{bottom:279.164100px;}
.y9c{bottom:284.380500px;}
.y65{bottom:285.164100px;}
.y1df{bottom:285.218100px;}
.y127{bottom:287.783250px;}
.y37{bottom:287.892750px;}
.y151{bottom:290.703600px;}
.y177{bottom:294.164100px;}
.y1ba{bottom:297.162900px;}
.y74{bottom:297.164100px;}
.ye5{bottom:299.675529px;}
.y1de{bottom:301.715100px;}
.y9b{bottom:302.380500px;}
.y64{bottom:303.164100px;}
.y126{bottom:305.783250px;}
.y36{bottom:305.892750px;}
.y150{bottom:308.703600px;}
.ye4{bottom:311.814600px;}
.y176{bottom:312.164100px;}
.y1b9{bottom:315.162900px;}
.y73{bottom:315.164100px;}
.y20f{bottom:317.814600px;}
.y1dd{bottom:318.212100px;}
.y63{bottom:321.164100px;}
.y19c{bottom:322.430250px;}
.y125{bottom:323.783250px;}
.y185{bottom:324.164100px;}
.y14f{bottom:326.703600px;}
.y9a{bottom:329.380500px;}
.y1b8{bottom:333.162900px;}
.y72{bottom:333.164100px;}
.y20e{bottom:334.311600px;}
.y1dc{bottom:334.709100px;}
.y62{bottom:339.164100px;}
.y124{bottom:341.783250px;}
.ya{bottom:344.680500px;}
.y14e{bottom:344.703600px;}
.y175{bottom:348.164100px;}
.y35{bottom:349.407750px;}
.y20d{bottom:350.808600px;}
.y1b7{bottom:351.162900px;}
.y8d{bottom:351.164100px;}
.y1db{bottom:351.206100px;}
.ydf{bottom:357.386400px;}
.y123{bottom:359.783250px;}
.y71{bottom:360.164100px;}
.y14d{bottom:362.703600px;}
.ye3{bottom:363.175776px;}
.y61{bottom:366.164100px;}
.y20c{bottom:367.305600px;}
.y34{bottom:367.407750px;}
.y1da{bottom:367.703100px;}
.y184{bottom:369.162900px;}
.y8c{bottom:369.164100px;}
.y99{bottom:374.382900px;}
.y196{bottom:376.439700px;}
.y122{bottom:377.783250px;}
.y197{bottom:378.223050px;}
.y14c{bottom:380.703600px;}
.y19b{bottom:381.945369px;}
.y20b{bottom:383.802600px;}
.y174{bottom:384.164100px;}
.y1d9{bottom:384.200100px;}
.y33{bottom:385.407750px;}
.yd{bottom:386.490000px;}
.y183{bottom:387.162900px;}
.y8b{bottom:387.164100px;}
.y98{bottom:392.382900px;}
.y9{bottom:395.689500px;}
.y1a6{bottom:395.730000px;}
.y1a4{bottom:395.739000px;}
.y121{bottom:395.783250px;}
.y1a2{bottom:395.793000px;}
.y19f{bottom:395.818464px;}
.y14b{bottom:398.703600px;}
.y1b3{bottom:399.214500px;}
.y20a{bottom:400.299600px;}
.y1d8{bottom:400.697100px;}
.y173{bottom:402.164100px;}
.y32{bottom:403.407750px;}
.y60{bottom:405.162900px;}
.y8a{bottom:405.164100px;}
.yde{bottom:407.500800px;}
.y1af{bottom:408.333000px;}
.y1b1{bottom:408.343500px;}
.y1ad{bottom:408.396000px;}
.y19e{bottom:408.422955px;}
.y1ac{bottom:408.427500px;}
.y97{bottom:410.382900px;}
.ye2{bottom:411.048600px;}
.y120{bottom:413.783250px;}
.y209{bottom:416.796600px;}
.y1d7{bottom:417.194100px;}
.y172{bottom:420.164100px;}
.y31{bottom:421.407750px;}
.y1a8{bottom:421.491000px;}
.y1aa{bottom:421.554000px;}
.y19d{bottom:421.585350px;}
.y1a0{bottom:421.804500px;}
.y5f{bottom:423.162900px;}
.y89{bottom:423.164100px;}
.y96{bottom:428.382900px;}
.y11f{bottom:431.783250px;}
.y208{bottom:433.293600px;}
.y1d6{bottom:433.691100px;}
.y14a{bottom:434.706600px;}
.yb{bottom:434.850000px;}
.y171{bottom:438.164100px;}
.y195{bottom:438.467700px;}
.y30{bottom:439.407750px;}
.y5e{bottom:441.162900px;}
.y88{bottom:441.164100px;}
.y19a{bottom:443.459100px;}
.y95{bottom:446.382900px;}
.y8{bottom:446.698500px;}
.y11e{bottom:449.783250px;}
.y207{bottom:449.790600px;}
.y1d5{bottom:450.188100px;}
.y149{bottom:451.203600px;}
.y2f{bottom:457.407750px;}
.y5d{bottom:459.162900px;}
.y94{bottom:464.382900px;}
.y206{bottom:466.287600px;}
.y1d4{bottom:466.685100px;}
.y11d{bottom:467.783250px;}
.y87{bottom:468.158100px;}
.y170{bottom:474.164100px;}
.y2e{bottom:475.407750px;}
.y5c{bottom:477.162900px;}
.y93{bottom:482.382900px;}
.y205{bottom:482.784600px;}
.y1d3{bottom:483.182100px;}
.y148{bottom:485.703600px;}
.y10{bottom:488.055000px;}
.y16f{bottom:492.164100px;}
.y2d{bottom:493.407750px;}
.y5b{bottom:495.162900px;}
.ycd{bottom:496.287000px;}
.y7{bottom:497.707500px;}
.y86{bottom:498.164100px;}
.y204{bottom:499.281600px;}
.y1d2{bottom:499.679100px;}
.y92{bottom:500.382900px;}
.y147{bottom:503.703600px;}
.y11c{bottom:503.783250px;}
.y16e{bottom:510.164100px;}
.y5a{bottom:513.162900px;}
.ycc{bottom:514.287000px;}
.y203{bottom:515.778600px;}
.y1d1{bottom:516.176100px;}
.y91{bottom:518.382900px;}
.y146{bottom:521.703600px;}
.y16d{bottom:528.164100px;}
.y59{bottom:531.162900px;}
.y202{bottom:532.275600px;}
.ycb{bottom:532.287000px;}
.y1d0{bottom:532.673100px;}
.y90{bottom:536.382900px;}
.y85{bottom:537.164100px;}
.y11{bottom:538.230000px;}
.y11b{bottom:538.283250px;}
.y145{bottom:539.703600px;}
.y16c{bottom:546.164100px;}
.y6{bottom:548.716500px;}
.y201{bottom:548.772600px;}
.y58{bottom:549.162900px;}
.y1cf{bottom:549.170100px;}
.yca{bottom:550.287000px;}
.y8f{bottom:554.382900px;}
.y84{bottom:555.164100px;}
.y11a{bottom:556.283250px;}
.y2c{bottom:559.407750px;}
.y16b{bottom:564.164100px;}
.y200{bottom:565.269600px;}
.y1ce{bottom:565.667100px;}
.y144{bottom:566.703600px;}
.y57{bottom:567.162900px;}
.yc9{bottom:568.287000px;}
.y8e{bottom:572.382900px;}
.y83{bottom:573.164100px;}
.y119{bottom:574.283250px;}
.y2b{bottom:574.401750px;}
.y1ff{bottom:581.766600px;}
.y16a{bottom:582.164100px;}
.y56{bottom:585.162900px;}
.yc8{bottom:586.287000px;}
.y19{bottom:589.605000px;}
.y82{bottom:591.164100px;}
.y118{bottom:592.283250px;}
.y1fe{bottom:598.263600px;}
.y5{bottom:599.725500px;}
.y2a{bottom:599.907750px;}
.y169{bottom:600.164100px;}
.y55{bottom:603.162900px;}
.yc7{bottom:604.287000px;}
.y1cd{bottom:604.664100px;}
.y143{bottom:605.703600px;}
.y117{bottom:610.283250px;}
.y1fd{bottom:614.760600px;}
.yc3{bottom:616.792950px;}
.y81{bottom:618.164100px;}
.y54{bottom:621.162900px;}
.yc6{bottom:622.287000px;}
.y142{bottom:623.703600px;}
.y116{bottom:628.283250px;}
.y1fc{bottom:631.257600px;}
.ye{bottom:631.920000px;}
.y168{bottom:636.164100px;}
.y53{bottom:639.162900px;}
.yc5{bottom:640.287000px;}
.y1cc{bottom:640.658100px;}
.y141{bottom:641.703600px;}
.y115{bottom:646.283250px;}
.y1fb{bottom:647.754600px;}
.y29{bottom:647.907750px;}
.y167{bottom:654.164100px;}
.y52{bottom:657.162900px;}
.y140{bottom:659.703600px;}
.y1cb{bottom:661.664100px;}
.y28{bottom:662.907750px;}
.y1fa{bottom:664.251600px;}
.y114{bottom:664.283250px;}
.ybb{bottom:664.545282px;}
.yc4{bottom:667.287000px;}
.y166{bottom:672.164100px;}
.y51{bottom:675.162900px;}
.yba{bottom:675.709549px;}
.y13f{bottom:677.703600px;}
.yb6{bottom:679.206345px;}
.y1f9{bottom:680.748600px;}
.y113{bottom:682.283250px;}
.y1ca{bottom:684.164100px;}
.yb9{bottom:686.902127px;}
.y165{bottom:690.164100px;}
.yb5{bottom:693.090600px;}
.y50{bottom:693.162900px;}
.y13e{bottom:695.703600px;}
.y1f8{bottom:697.245600px;}
.yb8{bottom:698.066394px;}
.y112{bottom:700.283250px;}
.yc2{bottom:701.950212px;}
.y164{bottom:708.164100px;}
.yb7{bottom:709.164600px;}
.y27{bottom:710.907750px;}
.y4f{bottom:711.162900px;}
.y105{bottom:713.580600px;}
.y13d{bottom:713.703600px;}
.y1f7{bottom:713.742600px;}
.y111{bottom:718.283250px;}
.y1c9{bottom:720.164100px;}
.y26{bottom:725.907750px;}
.y163{bottom:726.164100px;}
.y4e{bottom:729.162900px;}
.y1f6{bottom:730.239600px;}
.y13c{bottom:731.703600px;}
.y110{bottom:736.283250px;}
.y1c8{bottom:742.664100px;}
.y162{bottom:744.164100px;}
.y1f5{bottom:746.736600px;}
.y25{bottom:746.907750px;}
.y4d{bottom:747.162900px;}
.yb1{bottom:754.261127px;}
.y10f{bottom:754.283250px;}
.y161{bottom:762.164100px;}
.y1f4{bottom:763.233600px;}
.yb0{bottom:764.594916px;}
.y4c{bottom:765.162900px;}
.y22{bottom:765.541950px;}
.y13b{bottom:767.703600px;}
.yf2{bottom:768.945000px;}
.ybf{bottom:771.835371px;}
.y10e{bottom:772.283250px;}
.ybc{bottom:775.130100px;}
.yaf{bottom:775.778057px;}
.y4{bottom:778.225500px;}
.y21{bottom:778.288950px;}
.y1c7{bottom:778.664100px;}
.y1f3{bottom:779.730600px;}
.y1a{bottom:780.110100px;}
.y160{bottom:780.164100px;}
.yfb{bottom:782.636400px;}
.yf1{bottom:782.647800px;}
.y4b{bottom:783.162900px;}
.y104{bottom:783.331800px;}
.ybe{bottom:785.647500px;}
.y13a{bottom:785.703600px;}
.yae{bottom:786.121283px;}
.y10d{bottom:790.283250px;}
.y20{bottom:791.035950px;}
.yfa{bottom:796.202400px;}
.yf0{bottom:796.213800px;}
.y1f2{bottom:796.227600px;}
.y103{bottom:796.818000px;}
.yad{bottom:797.285550px;}
.y15f{bottom:798.164100px;}
.y4a{bottom:801.162900px;}
.y139{bottom:803.703600px;}
.y1f{bottom:803.782950px;}
.y10c{bottom:808.283250px;}
.yf9{bottom:809.688600px;}
.yef{bottom:809.700000px;}
.y102{bottom:810.384000px;}
.y1f1{bottom:812.724600px;}
.y12{bottom:815.670000px;}
.y15e{bottom:816.164100px;}
.y49{bottom:819.162900px;}
.y24{bottom:821.907750px;}
.yf8{bottom:823.243200px;}
.yee{bottom:823.254600px;}
.y101{bottom:823.927200px;}
.y10b{bottom:826.283250px;}
.y1f0{bottom:829.221600px;}
.yac{bottom:832.169790px;}
.y1e{bottom:836.791950px;}
.y48{bottom:837.162900px;}
.yf7{bottom:837.481800px;}
.yed{bottom:837.493200px;}
.y100{bottom:838.336800px;}
.yb4{bottom:839.675937px;}
.y138{bottom:839.703600px;}
.yab{bottom:842.503579px;}
.y15d{bottom:843.158100px;}
.yc1{bottom:843.533550px;}
.y10a{bottom:844.283250px;}
.y1ef{bottom:845.718600px;}
.y23{bottom:848.907750px;}
.y1d{bottom:849.538950px;}
.yf6{bottom:851.196000px;}
.yec{bottom:851.207400px;}
.yff{bottom:851.880000px;}
.yaa{bottom:853.667845px;}
.yb3{bottom:854.137200px;}
.y47{bottom:855.162900px;}
.y137{bottom:857.703600px;}
.y1ee{bottom:862.215600px;}
.y109{bottom:862.283250px;}
.y1c{bottom:862.285950px;}
.ya9{bottom:864.011071px;}
.y15c{bottom:864.164100px;}
.yf5{bottom:864.739200px;}
.yeb{bottom:864.750600px;}
.yfe{bottom:865.389000px;}
.yb2{bottom:867.961350px;}
.y46{bottom:873.162900px;}
.y1b{bottom:875.032950px;}
.ya8{bottom:875.203650px;}
.y136{bottom:875.703600px;}
.yf4{bottom:878.248200px;}
.yea{bottom:878.259600px;}
.y1ed{bottom:878.712600px;}
.yfd{bottom:878.932200px;}
.y108{bottom:880.283250px;}
.y45{bottom:891.162900px;}
.y1ec{bottom:895.209600px;}
.y107{bottom:898.283250px;}
.y3{bottom:905.716500px;}
.y41{bottom:905.821950px;}
.yf3{bottom:906.041400px;}
.ye9{bottom:906.052800px;}
.yfc{bottom:906.885000px;}
.y44{bottom:909.162900px;}
.y135{bottom:911.706600px;}
.yc0{bottom:914.278350px;}
.ybd{bottom:915.302250px;}
.y106{bottom:925.283250px;}
.y43{bottom:927.162900px;}
.y134{bottom:928.203600px;}
.y2{bottom:964.228500px;}
.y42{bottom:967.722900px;}
.y1{bottom:989.716500px;}
.y40{bottom:1013.220000px;}
.y3f{bottom:1014.720450px;}
.h45{height:0.250500px;}
.h44{height:0.313500px;}
.h20{height:1.297500px;}
.h22{height:1.368000px;}
.h23{height:1.381500px;}
.h21{height:1.383000px;}
.h32{height:1.504500px;}
.h4d{height:1.506000px;}
.h34{height:1.585500px;}
.h33{height:1.602000px;}
.h35{height:1.603500px;}
.h4e{height:2.640000px;}
.h27{height:2.961000px;}
.h25{height:3.043500px;}
.h4c{height:3.168000px;}
.h4f{height:3.301500px;}
.h41{height:3.421500px;}
.h39{height:3.430500px;}
.h42{height:3.477000px;}
.h43{height:3.486000px;}
.h37{height:3.526500px;}
.h26{height:3.733500px;}
.h15{height:4.170000px;}
.h38{height:4.326000px;}
.h3f{height:4.677000px;}
.h47{height:4.927500px;}
.h48{height:4.990500px;}
.h1d{height:5.397000px;}
.h49{height:6.117000px;}
.h2f{height:6.250500px;}
.h3d{height:6.403500px;}
.h46{height:6.528000px;}
.h28{height:6.681000px;}
.h4a{height:6.726000px;}
.h40{height:6.784500px;}
.h3e{height:6.805500px;}
.h4b{height:7.054500px;}
.h3a{height:7.741500px;}
.h1f{height:8.257500px;}
.h1e{height:8.286000px;}
.h31{height:9.565500px;}
.h30{height:9.601500px;}
.hb{height:25.488000px;}
.h18{height:26.197806px;}
.h29{height:27.909662px;}
.h3c{height:28.267121px;}
.hc{height:29.736000px;}
.h2b{height:30.916800px;}
.h2c{height:31.646400px;}
.h3b{height:32.334595px;}
.h4{height:33.000000px;}
.h13{height:33.264000px;}
.h19{height:33.370296px;}
.hf{height:33.984000px;}
.h2d{height:37.530000px;}
.h51{height:37.554000px;}
.h1c{height:38.172072px;}
.h1b{height:38.232000px;}
.h24{height:38.396614px;}
.h14{height:38.538256px;}
.h16{height:41.460000px;}
.h10{height:41.580000px;}
.h12{height:41.700000px;}
.h11{height:42.480000px;}
.h1a{height:43.033274px;}
.h2e{height:44.223936px;}
.h36{height:44.484077px;}
.h2a{height:47.469600px;}
.h17{height:49.752000px;}
.he{height:49.896000px;}
.h50{height:49.968000px;}
.h3{height:58.406250px;}
.hd{height:66.528000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1028.976000px;}
.ha{height:1029.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w27{width:0.087000px;}
.w44{width:0.099000px;}
.w1c{width:0.325500px;}
.w3a{width:0.378000px;}
.w1a{width:0.390000px;}
.w37{width:0.451500px;}
.w24{width:0.478500px;}
.w41{width:0.553500px;}
.w23{width:0.589500px;}
.w40{width:0.682500px;}
.w25{width:0.690000px;}
.w42{width:0.802500px;}
.w55{width:0.835500px;}
.w4b{width:0.868500px;}
.w53{width:1.033500px;}
.w4e{width:1.035000px;}
.w10{width:1.137000px;}
.wc{width:1.138500px;}
.w21{width:1.288500px;}
.w29{width:1.317000px;}
.w2d{width:1.318500px;}
.w13{width:1.404000px;}
.w3e{width:1.495500px;}
.w30{width:1.626000px;}
.w39{width:1.627500px;}
.w17{width:1.659000px;}
.w34{width:1.923000px;}
.wb{width:2.022000px;}
.w28{width:2.344500px;}
.w48{width:2.656500px;}
.w4d{width:2.965500px;}
.w16{width:3.045000px;}
.w33{width:3.526500px;}
.w50{width:3.639000px;}
.w54{width:3.730500px;}
.w47{width:3.732000px;}
.w18{width:3.780000px;}
.w46{width:3.907500px;}
.w4c{width:3.909000px;}
.w1b{width:3.976500px;}
.w45{width:4.020000px;}
.w12{width:4.029000px;}
.w49{width:4.174500px;}
.w4a{width:4.176000px;}
.w26{width:4.183500px;}
.w19{width:4.366500px;}
.w35{width:4.375500px;}
.w52{width:4.537500px;}
.w38{width:4.608000px;}
.w2f{width:4.666500px;}
.w43{width:4.846500px;}
.w1d{width:4.983000px;}
.w36{width:5.058000px;}
.w11{width:5.070000px;}
.wd{width:5.080500px;}
.w22{width:5.305500px;}
.w15{width:5.307000px;}
.w20{width:5.670000px;}
.w1e{width:5.671500px;}
.wf{width:5.673000px;}
.w3b{width:5.769000px;}
.w2e{width:5.869500px;}
.w1f{width:5.875500px;}
.w2a{width:5.884500px;}
.we{width:5.916000px;}
.w32{width:6.147000px;}
.w3f{width:6.150000px;}
.w14{width:6.162000px;}
.w2c{width:6.568500px;}
.w3d{width:6.570000px;}
.w51{width:6.738000px;}
.w4f{width:6.739500px;}
.w3c{width:6.805500px;}
.w2b{width:6.855000px;}
.w31{width:7.137000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:722.835000px;}
.wa{width:723.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x61{left:-7.052850px;}
.x35{left:-6.033900px;}
.x23{left:-3.675900px;}
.x5a{left:-2.335350px;}
.x25{left:-1.051050px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x14{left:18.567000px;}
.x15{left:63.779550px;}
.x13{left:72.283500px;}
.x16{left:81.779550px;}
.x17{left:90.283500px;}
.x1d{left:92.719800px;}
.x18{left:98.400450px;}
.x1b{left:99.834600px;}
.x46{left:109.179541px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x4f{left:155.279550px;}
.x4c{left:156.779550px;}
.x4e{left:163.783500px;}
.x4d{left:165.283500px;}
.x40{left:171.856500px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1e{left:225.064200px;}
.x47{left:232.569739px;}
.x19{left:235.915650px;}
.x41{left:237.727950px;}
.x1a{left:239.846850px;}
.x48{left:248.626430px;}
.x64{left:259.317150px;}
.x21{left:295.320150px;}
.x29{left:296.500500px;}
.x50{left:297.955650px;}
.x55{left:299.322000px;}
.x2a{left:303.367500px;}
.x56{left:307.281000px;}
.x2b{left:310.843500px;}
.x2c{left:313.575000px;}
.x57{left:315.940500px;}
.x2d{left:319.722000px;}
.x2e{left:325.167000px;}
.x58{left:326.229000px;}
.x2f{left:328.026000px;}
.x44{left:329.867416px;}
.x59{left:332.533500px;}
.x30{left:335.889000px;}
.x31{left:342.853500px;}
.x32{left:344.239500px;}
.x22{left:345.898500px;}
.x66{left:348.247965px;}
.x24{left:349.975500px;}
.x45{left:351.386850px;}
.x33{left:353.615400px;}
.x26{left:355.292700px;}
.x51{left:356.553000px;}
.x3c{left:359.704500px;}
.x3e{left:361.296000px;}
.x3d{left:363.049500px;}
.x5b{left:365.494650px;}
.x52{left:367.440150px;}
.x3f{left:368.578050px;}
.x27{left:370.587000px;}
.x49{left:372.050840px;}
.x67{left:373.177500px;}
.x62{left:374.394000px;}
.x60{left:376.423500px;}
.x42{left:378.194003px;}
.x28{left:379.919550px;}
.x63{left:382.825650px;}
.x36{left:384.141000px;}
.x53{left:385.156500px;}
.x4a{left:388.107531px;}
.x34{left:389.124000px;}
.x37{left:391.065000px;}
.x65{left:393.969042px;}
.x54{left:395.968650px;}
.x5c{left:397.026000px;}
.x38{left:398.703000px;}
.x39{left:401.194500px;}
.x5d{left:406.632000px;}
.x3a{left:408.193500px;}
.x3b{left:411.147000px;}
.x5e{left:417.730500px;}
.x20{left:420.227594px;}
.x1c{left:426.490200px;}
.x1f{left:428.176350px;}
.x5f{left:432.145500px;}
.x43{left:447.087712px;}
.xa{left:497.055750px;}
.x11{left:508.749150px;}
.x10{left:514.524150px;}
.x4b{left:522.171780px;}
.x12{left:526.000650px;}
.xf{left:557.311650px;}
.xb{left:560.881650px;}
.xe{left:563.139150px;}
.xc{left:589.672650px;}
.xd{left:638.109150px;}
@media print{
.v2{vertical-align:-3.264288pt;}
.v1{vertical-align:-1.381333pt;}
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-3.086601pt;}
.ls59{letter-spacing:-2.472533pt;}
.ls61{letter-spacing:-1.973333pt;}
.lsf{letter-spacing:-1.375741pt;}
.ls15{letter-spacing:-1.342187pt;}
.ls1b{letter-spacing:-1.275077pt;}
.ls6f{letter-spacing:-1.134547pt;}
.ls75{letter-spacing:-1.008486pt;}
.ls45{letter-spacing:-0.979286pt;}
.ls10{letter-spacing:-0.939531pt;}
.ls66{letter-spacing:-0.867136pt;}
.ls6b{letter-spacing:-0.840405pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls4d{letter-spacing:-0.797937pt;}
.ls16{letter-spacing:-0.771757pt;}
.ls3b{letter-spacing:-0.748472pt;}
.ls40{letter-spacing:-0.725397pt;}
.ls81{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.704648pt;}
.lse{letter-spacing:-0.671093pt;}
.ls11{letter-spacing:-0.637539pt;}
.ls13{letter-spacing:-0.603984pt;}
.ls78{letter-spacing:-0.588284pt;}
.ls79{letter-spacing:-0.546263pt;}
.ls77{letter-spacing:-0.504243pt;}
.ls6c{letter-spacing:-0.462223pt;}
.ls41{letter-spacing:-0.435238pt;}
.ls71{letter-spacing:-0.420203pt;}
.ls18{letter-spacing:-0.402656pt;}
.ls4c{letter-spacing:-0.398969pt;}
.ls14{letter-spacing:-0.369101pt;}
.ls49{letter-spacing:-0.362699pt;}
.ls62{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256448pt;}
.ls70{letter-spacing:-0.252122pt;}
.ls82{letter-spacing:-0.240000pt;}
.ls69{letter-spacing:-0.231236pt;}
.ls30{letter-spacing:-0.220471pt;}
.ls48{letter-spacing:-0.217619pt;}
.ls1e{letter-spacing:-0.213707pt;}
.ls3e{letter-spacing:-0.199593pt;}
.ls7e{letter-spacing:-0.183672pt;}
.ls22{letter-spacing:-0.167773pt;}
.ls31{letter-spacing:-0.165354pt;}
.ls44{letter-spacing:-0.145079pt;}
.ls23{letter-spacing:-0.134219pt;}
.ls4f{letter-spacing:-0.121600pt;}
.ls67{letter-spacing:-0.115618pt;}
.ls7a{letter-spacing:-0.110203pt;}
.ls46{letter-spacing:-0.108810pt;}
.ls28{letter-spacing:-0.100664pt;}
.ls3c{letter-spacing:-0.099796pt;}
.ls54{letter-spacing:-0.081067pt;}
.ls42{letter-spacing:-0.072540pt;}
.ls21{letter-spacing:-0.067109pt;}
.ls68{letter-spacing:-0.057809pt;}
.ls3d{letter-spacing:-0.049898pt;}
.ls1d{letter-spacing:-0.042741pt;}
.ls6d{letter-spacing:-0.042020pt;}
.ls5a{letter-spacing:-0.040533pt;}
.ls4a{letter-spacing:-0.036270pt;}
.ls26{letter-spacing:-0.033555pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.036270pt;}
.ls38{letter-spacing:0.040533pt;}
.ls63{letter-spacing:0.042020pt;}
.ls6{letter-spacing:0.042741pt;}
.lsb{letter-spacing:0.055118pt;}
.ls9{letter-spacing:0.067109pt;}
.ls32{letter-spacing:0.072540pt;}
.ls7d{letter-spacing:0.073469pt;}
.ls51{letter-spacing:0.081067pt;}
.ls64{letter-spacing:0.084041pt;}
.ls7{letter-spacing:0.085483pt;}
.ls3f{letter-spacing:0.099796pt;}
.lsc{letter-spacing:0.110236pt;}
.ls6a{letter-spacing:0.115618pt;}
.ls3a{letter-spacing:0.121600pt;}
.ls76{letter-spacing:0.126061pt;}
.ls7b{letter-spacing:0.146938pt;}
.ls36{letter-spacing:0.162133pt;}
.lsd{letter-spacing:0.165354pt;}
.ls33{letter-spacing:0.181349pt;}
.ls37{letter-spacing:0.202667pt;}
.ls74{letter-spacing:0.210101pt;}
.ls8{letter-spacing:0.213707pt;}
.ls2c{letter-spacing:0.234883pt;}
.ls80{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.243200pt;}
.ls73{letter-spacing:0.252122pt;}
.ls4b{letter-spacing:0.253889pt;}
.ls5{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.268437pt;}
.ls53{letter-spacing:0.283733pt;}
.ls72{letter-spacing:0.294142pt;}
.ls2e{letter-spacing:0.299189pt;}
.ls57{letter-spacing:0.324267pt;}
.ls7c{letter-spacing:0.330610pt;}
.ls5f{letter-spacing:0.405333pt;}
.ls7f{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.567467pt;}
.ls55{letter-spacing:0.608000pt;}
.ls5b{letter-spacing:0.648533pt;}
.ls4{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.266667pt;}
.ls1a{letter-spacing:7.281363pt;}
.ls1c{letter-spacing:7.449136pt;}
.ls19{letter-spacing:7.616909pt;}
.ls17{letter-spacing:7.784683pt;}
.ls47{letter-spacing:8.088180pt;}
.ls20{letter-spacing:8.120229pt;}
.ls2a{letter-spacing:8.254448pt;}
.ls4e{letter-spacing:8.269530pt;}
.ls2b{letter-spacing:8.321557pt;}
.ls25{letter-spacing:8.355112pt;}
.ls43{letter-spacing:8.378339pt;}
.ls29{letter-spacing:8.422221pt;}
.ls2d{letter-spacing:8.489331pt;}
.ls27{letter-spacing:8.522885pt;}
.ls6e{letter-spacing:9.496580pt;}
.ls52{letter-spacing:10.133333pt;}
.ls56{letter-spacing:10.214400pt;}
.ls5e{letter-spacing:10.295467pt;}
.ls5d{letter-spacing:10.376533pt;}
.ls5c{letter-spacing:10.417067pt;}
.ls58{letter-spacing:10.457600pt;}
.ls50{letter-spacing:43.613867pt;}
.ls34{letter-spacing:290.702981pt;}
.ls65{letter-spacing:304.815014pt;}
.lsa{letter-spacing:366.448394pt;}
.wsc3{word-spacing:-53.747200pt;}
.wscc{word-spacing:-20.590933pt;}
.wsd7{word-spacing:-20.550400pt;}
.wsda{word-spacing:-20.509867pt;}
.wsdc{word-spacing:-20.428800pt;}
.wsca{word-spacing:-20.347733pt;}
.wsc5{word-spacing:-20.266667pt;}
.ws8c{word-spacing:-16.911552pt;}
.ws92{word-spacing:-16.877997pt;}
.ws0{word-spacing:-16.874667pt;}
.ws8e{word-spacing:-16.810888pt;}
.ws8b{word-spacing:-16.743779pt;}
.ws90{word-spacing:-16.710224pt;}
.ws8f{word-spacing:-16.643115pt;}
.ws88{word-spacing:-16.508896pt;}
.ws75{word-spacing:-16.173349pt;}
.ws7b{word-spacing:-16.005576pt;}
.ws80{word-spacing:-15.837803pt;}
.ws7c{word-spacing:-15.670029pt;}
.ws10{word-spacing:-14.133333pt;}
.ws9b{word-spacing:-13.614113pt;}
.wsf6{word-spacing:-11.360000pt;}
.ws95{word-spacing:-10.984523pt;}
.ws85{word-spacing:-10.899040pt;}
.wsd5{word-spacing:-10.781867pt;}
.ws84{word-spacing:-10.770816pt;}
.wsc9{word-spacing:-10.741333pt;}
.ws82{word-spacing:-10.728075pt;}
.wse4{word-spacing:-10.700800pt;}
.ws96{word-spacing:-10.692866pt;}
.ws94{word-spacing:-10.642592pt;}
.wsdf{word-spacing:-10.457600pt;}
.ws87{word-spacing:-10.428885pt;}
.wsc6{word-spacing:-10.417067pt;}
.ws5{word-spacing:-10.378667pt;}
.wsdb{word-spacing:-10.376533pt;}
.wsd8{word-spacing:-10.336000pt;}
.wsc4{word-spacing:-10.295467pt;}
.wscb{word-spacing:-10.254933pt;}
.wsd6{word-spacing:-10.173867pt;}
.wsd1{word-spacing:-10.092800pt;}
.wsc8{word-spacing:-10.052267pt;}
.wsc7{word-spacing:-10.011733pt;}
.ws12b{word-spacing:-9.538601pt;}
.ws8a{word-spacing:-8.657104pt;}
.ws91{word-spacing:-8.455776pt;}
.wsb4{word-spacing:-8.414609pt;}
.ws78{word-spacing:-8.388667pt;}
.wsc1{word-spacing:-8.305799pt;}
.ws8d{word-spacing:-8.288003pt;}
.wsb9{word-spacing:-8.124450pt;}
.ws70{word-spacing:-8.019565pt;}
.ws6f{word-spacing:-7.784683pt;}
.ws6d{word-spacing:-7.684019pt;}
.wscf{word-spacing:-7.660800pt;}
.ws74{word-spacing:-7.616909pt;}
.ws73{word-spacing:-7.046480pt;}
.ws6a{word-spacing:-7.012925pt;}
.ws54{word-spacing:-3.360000pt;}
.ws15a{word-spacing:-3.216000pt;}
.ws58{word-spacing:-3.200000pt;}
.ws16c{word-spacing:-2.880000pt;}
.ws14b{word-spacing:-2.826667pt;}
.ws41{word-spacing:-2.666667pt;}
.wse6{word-spacing:-2.613333pt;}
.ws3a{word-spacing:-2.560000pt;}
.ws164{word-spacing:-2.544000pt;}
.ws64{word-spacing:-2.506667pt;}
.ws114{word-spacing:-2.400000pt;}
.ws2a{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.293333pt;}
.ws152{word-spacing:-2.240000pt;}
.ws13d{word-spacing:-2.186667pt;}
.ws38{word-spacing:-2.133333pt;}
.ws35{word-spacing:-2.080000pt;}
.ws15{word-spacing:-2.026667pt;}
.ws15b{word-spacing:-2.016000pt;}
.ws118{word-spacing:-1.973333pt;}
.ws9e{word-spacing:-1.920000pt;}
.ws30{word-spacing:-1.866667pt;}
.ws14d{word-spacing:-1.813333pt;}
.ws36{word-spacing:-1.760000pt;}
.ws116{word-spacing:-1.706667pt;}
.ws68{word-spacing:-1.653333pt;}
.wsa{word-spacing:-1.600000pt;}
.ws14a{word-spacing:-1.546667pt;}
.ws61{word-spacing:-1.493333pt;}
.ws3{word-spacing:-1.482667pt;}
.ws4a{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.386667pt;}
.ws4{word-spacing:-1.333333pt;}
.ws2{word-spacing:-1.317333pt;}
.wsd{word-spacing:-1.280000pt;}
.ws106{word-spacing:-1.226667pt;}
.ws12{word-spacing:-1.173333pt;}
.ws9c{word-spacing:-1.157475pt;}
.ws111{word-spacing:-1.120000pt;}
.wsa7{word-spacing:-1.066667pt;}
.ws3d{word-spacing:-1.013333pt;}
.wsd2{word-spacing:-0.972800pt;}
.ws11a{word-spacing:-0.960000pt;}
.ws53{word-spacing:-0.906667pt;}
.ws123{word-spacing:-0.853333pt;}
.wse1{word-spacing:-0.810667pt;}
.wsfb{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.746667pt;}
.wse2{word-spacing:-0.729600pt;}
.ws10a{word-spacing:-0.720000pt;}
.ws113{word-spacing:-0.693333pt;}
.wse0{word-spacing:-0.689067pt;}
.wse3{word-spacing:-0.608000pt;}
.ws63{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.533333pt;}
.wsf9{word-spacing:-0.480000pt;}
.wsd4{word-spacing:-0.445867pt;}
.ws48{word-spacing:-0.426667pt;}
.ws15c{word-spacing:-0.384000pt;}
.ws13b{word-spacing:-0.367344pt;}
.ws130{word-spacing:-0.336162pt;}
.ws146{word-spacing:-0.330610pt;}
.wsf1{word-spacing:-0.324267pt;}
.ws45{word-spacing:-0.320000pt;}
.ws132{word-spacing:-0.294142pt;}
.wsbb{word-spacing:-0.290159pt;}
.ws16b{word-spacing:-0.288000pt;}
.wse{word-spacing:-0.266667pt;}
.ws133{word-spacing:-0.252122pt;}
.ws167{word-spacing:-0.240000pt;}
.wsad{word-spacing:-0.234883pt;}
.wsbd{word-spacing:-0.217619pt;}
.wsfa{word-spacing:-0.213333pt;}
.wsf5{word-spacing:-0.202667pt;}
.ws72{word-spacing:-0.201328pt;}
.ws139{word-spacing:-0.183672pt;}
.wsee{word-spacing:-0.162133pt;}
.ws59{word-spacing:-0.160000pt;}
.ws76{word-spacing:-0.134219pt;}
.ws131{word-spacing:-0.126061pt;}
.wsf0{word-spacing:-0.121600pt;}
.ws143{word-spacing:-0.115618pt;}
.wsbc{word-spacing:-0.108810pt;}
.ws105{word-spacing:-0.106667pt;}
.wsec{word-spacing:-0.099796pt;}
.ws170{word-spacing:-0.096000pt;}
.ws12c{word-spacing:-0.084041pt;}
.wsef{word-spacing:-0.081067pt;}
.ws147{word-spacing:-0.073469pt;}
.wsbe{word-spacing:-0.072540pt;}
.wsac{word-spacing:-0.067109pt;}
.ws56{word-spacing:-0.053333pt;}
.wsaa{word-spacing:-0.042741pt;}
.ws12e{word-spacing:-0.042020pt;}
.wsf3{word-spacing:-0.040533pt;}
.wsb7{word-spacing:-0.036270pt;}
.ws1{word-spacing:0.000000pt;}
.wsab{word-spacing:0.033555pt;}
.wsb3{word-spacing:0.036270pt;}
.wsf4{word-spacing:0.040533pt;}
.ws145{word-spacing:0.042020pt;}
.ws1a{word-spacing:0.053333pt;}
.ws142{word-spacing:0.057809pt;}
.wsb8{word-spacing:0.072540pt;}
.ws138{word-spacing:0.073469pt;}
.ws174{word-spacing:0.096000pt;}
.wseb{word-spacing:0.099796pt;}
.ws81{word-spacing:0.100664pt;}
.ws4d{word-spacing:0.106667pt;}
.wsb5{word-spacing:0.108810pt;}
.ws141{word-spacing:0.115618pt;}
.wsf2{word-spacing:0.121600pt;}
.ws7e{word-spacing:0.134219pt;}
.wsb0{word-spacing:0.149694pt;}
.ws102{word-spacing:0.160000pt;}
.ws128{word-spacing:0.173427pt;}
.ws148{word-spacing:0.183672pt;}
.wsa3{word-spacing:0.213333pt;}
.ws9a{word-spacing:0.213707pt;}
.wsed{word-spacing:0.217619pt;}
.wsae{word-spacing:0.220471pt;}
.ws89{word-spacing:0.234883pt;}
.ws144{word-spacing:0.252122pt;}
.ws47{word-spacing:0.266667pt;}
.ws6c{word-spacing:0.268437pt;}
.wsdd{word-spacing:0.283733pt;}
.ws21{word-spacing:0.320000pt;}
.wsd3{word-spacing:0.324267pt;}
.wsba{word-spacing:0.326429pt;}
.ws71{word-spacing:0.335547pt;}
.ws12f{word-spacing:0.378182pt;}
.ws158{word-spacing:0.384000pt;}
.wsb2{word-spacing:0.398969pt;}
.ws69{word-spacing:0.402656pt;}
.ws12a{word-spacing:0.420203pt;}
.ws52{word-spacing:0.426667pt;}
.ws99{word-spacing:0.427413pt;}
.wsd9{word-spacing:0.445867pt;}
.ws135{word-spacing:0.462223pt;}
.ws93{word-spacing:0.469765pt;}
.ws3e{word-spacing:0.480000pt;}
.wsce{word-spacing:0.486400pt;}
.ws19{word-spacing:0.533333pt;}
.ws7a{word-spacing:0.536875pt;}
.ws136{word-spacing:0.546263pt;}
.ws1d{word-spacing:0.586667pt;}
.ws7f{word-spacing:0.603984pt;}
.ws97{word-spacing:0.606297pt;}
.wse5{word-spacing:0.608000pt;}
.ws77{word-spacing:0.637539pt;}
.ws4b{word-spacing:0.640000pt;}
.wscd{word-spacing:0.648533pt;}
.wsa8{word-spacing:0.671093pt;}
.ws83{word-spacing:0.683861pt;}
.wsb1{word-spacing:0.689127pt;}
.ws101{word-spacing:0.693333pt;}
.wsaf{word-spacing:0.698574pt;}
.wsa9{word-spacing:0.704648pt;}
.ws62{word-spacing:0.746667pt;}
.wsbf{word-spacing:0.761667pt;}
.ws129{word-spacing:0.798385pt;}
.ws112{word-spacing:0.800000pt;}
.ws6b{word-spacing:0.805312pt;}
.ws127{word-spacing:0.809327pt;}
.ws6e{word-spacing:0.838867pt;}
.wsfc{word-spacing:0.853333pt;}
.ws3f{word-spacing:0.906667pt;}
.ws154{word-spacing:0.912000pt;}
.wsb6{word-spacing:0.943017pt;}
.ws26{word-spacing:0.960000pt;}
.ws134{word-spacing:0.966466pt;}
.ws79{word-spacing:0.973085pt;}
.ws16a{word-spacing:1.008000pt;}
.wsde{word-spacing:1.053867pt;}
.ws37{word-spacing:1.066667pt;}
.ws12d{word-spacing:1.092527pt;}
.wsfe{word-spacing:1.120000pt;}
.ws160{word-spacing:1.152000pt;}
.ws51{word-spacing:1.173333pt;}
.wsf8{word-spacing:1.226667pt;}
.ws5b{word-spacing:1.280000pt;}
.ws121{word-spacing:1.333333pt;}
.ws155{word-spacing:1.344000pt;}
.ws9d{word-spacing:1.386667pt;}
.ws13c{word-spacing:1.440000pt;}
.ws86{word-spacing:1.453205pt;}
.ws18{word-spacing:1.493333pt;}
.ws7d{word-spacing:1.509960pt;}
.wsa1{word-spacing:1.546667pt;}
.ws2c{word-spacing:1.600000pt;}
.ws11d{word-spacing:1.653333pt;}
.ws117{word-spacing:1.706667pt;}
.ws13e{word-spacing:1.760000pt;}
.wsa0{word-spacing:1.813333pt;}
.ws10b{word-spacing:1.866667pt;}
.ws156{word-spacing:1.872000pt;}
.wsa6{word-spacing:1.920000pt;}
.ws109{word-spacing:1.973333pt;}
.ws163{word-spacing:2.016000pt;}
.ws23{word-spacing:2.026667pt;}
.ws6{word-spacing:2.080000pt;}
.wsa5{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.186667pt;}
.ws173{word-spacing:2.208000pt;}
.ws27{word-spacing:2.240000pt;}
.ws43{word-spacing:2.293333pt;}
.ws11{word-spacing:2.346667pt;}
.ws5a{word-spacing:2.400000pt;}
.ws22{word-spacing:2.506667pt;}
.ws15e{word-spacing:2.544000pt;}
.ws5e{word-spacing:2.560000pt;}
.ws2e{word-spacing:2.613333pt;}
.ws171{word-spacing:2.640000pt;}
.ws14e{word-spacing:2.666667pt;}
.ws9f{word-spacing:2.720000pt;}
.ws31{word-spacing:2.773333pt;}
.ws1f{word-spacing:2.826667pt;}
.ws10f{word-spacing:2.933333pt;}
.ws57{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.040000pt;}
.ws11f{word-spacing:3.093333pt;}
.ws149{word-spacing:3.200000pt;}
.ws103{word-spacing:3.253333pt;}
.ws122{word-spacing:3.306667pt;}
.wsfd{word-spacing:3.360000pt;}
.ws153{word-spacing:3.408000pt;}
.ws13f{word-spacing:3.413333pt;}
.ws17{word-spacing:3.466667pt;}
.wsea{word-spacing:3.520000pt;}
.ws16f{word-spacing:3.552000pt;}
.ws67{word-spacing:3.573333pt;}
.ws5f{word-spacing:3.626667pt;}
.ws14f{word-spacing:3.680000pt;}
.wse9{word-spacing:3.840000pt;}
.wsa2{word-spacing:3.893333pt;}
.ws168{word-spacing:3.984000pt;}
.ws2d{word-spacing:4.000000pt;}
.ws125{word-spacing:4.053333pt;}
.wse8{word-spacing:4.160000pt;}
.ws55{word-spacing:4.213333pt;}
.ws15f{word-spacing:4.224000pt;}
.ws39{word-spacing:4.266667pt;}
.ws159{word-spacing:4.320000pt;}
.ws172{word-spacing:4.368000pt;}
.ws100{word-spacing:4.373333pt;}
.wsa4{word-spacing:4.480000pt;}
.ws25{word-spacing:4.586667pt;}
.ws49{word-spacing:4.640000pt;}
.ws46{word-spacing:4.693333pt;}
.ws44{word-spacing:4.746667pt;}
.ws126{word-spacing:4.800000pt;}
.ws4f{word-spacing:4.853333pt;}
.ws166{word-spacing:4.896000pt;}
.ws2b{word-spacing:4.906667pt;}
.wse7{word-spacing:4.960000pt;}
.ws13{word-spacing:5.013333pt;}
.ws120{word-spacing:5.066667pt;}
.ws2f{word-spacing:5.120000pt;}
.ws40{word-spacing:5.226667pt;}
.ws29{word-spacing:5.280000pt;}
.ws16e{word-spacing:5.328000pt;}
.wsf{word-spacing:5.333333pt;}
.ws150{word-spacing:5.493333pt;}
.ws16{word-spacing:5.546667pt;}
.ws9{word-spacing:5.653333pt;}
.ws162{word-spacing:5.856000pt;}
.ws115{word-spacing:5.866667pt;}
.ws11e{word-spacing:5.920000pt;}
.ws107{word-spacing:5.973333pt;}
.ws5d{word-spacing:6.080000pt;}
.ws11c{word-spacing:6.133333pt;}
.ws3b{word-spacing:6.240000pt;}
.wsf7{word-spacing:6.400000pt;}
.ws65{word-spacing:6.453333pt;}
.ws28{word-spacing:6.506667pt;}
.ws14c{word-spacing:6.560000pt;}
.ws165{word-spacing:6.576000pt;}
.ws110{word-spacing:6.613333pt;}
.ws24{word-spacing:6.666667pt;}
.ws1b{word-spacing:6.720000pt;}
.ws104{word-spacing:6.912000pt;}
.ws33{word-spacing:7.040000pt;}
.ws5c{word-spacing:7.093333pt;}
.ws15d{word-spacing:7.392000pt;}
.ws108{word-spacing:7.466667pt;}
.ws20{word-spacing:7.520000pt;}
.wsc0{word-spacing:7.544132pt;}
.ws4e{word-spacing:7.573333pt;}
.ws10e{word-spacing:8.053333pt;}
.ws4c{word-spacing:8.106667pt;}
.ws124{word-spacing:8.160000pt;}
.ws10d{word-spacing:8.213333pt;}
.ws66{word-spacing:8.320000pt;}
.ws119{word-spacing:8.480000pt;}
.ws50{word-spacing:8.586667pt;}
.ws13a{word-spacing:8.632584pt;}
.ws10c{word-spacing:8.853333pt;}
.ws161{word-spacing:8.880000pt;}
.ws157{word-spacing:9.072000pt;}
.ws8{word-spacing:9.120000pt;}
.wsff{word-spacing:9.386667pt;}
.ws60{word-spacing:9.440000pt;}
.ws169{word-spacing:9.792000pt;}
.ws11b{word-spacing:9.973333pt;}
.ws7{word-spacing:10.026667pt;}
.ws137{word-spacing:10.673148pt;}
.ws14{word-spacing:10.986667pt;}
.ws34{word-spacing:11.093333pt;}
.ws16d{word-spacing:11.904000pt;}
.ws140{word-spacing:13.280000pt;}
.ws32{word-spacing:21.173333pt;}
.ws151{word-spacing:22.560000pt;}
.wsc2{word-spacing:28.292267pt;}
.wsd0{word-spacing:28.373333pt;}
.ws98{word-spacing:238.991070pt;}
._f{margin-left:-574.149092pt;}
._10{margin-left:-43.532800pt;}
._25{margin-left:-23.904000pt;}
._1c{margin-left:-18.986667pt;}
._15{margin-left:-15.200000pt;}
._18{margin-left:-13.454933pt;}
._17{margin-left:-12.320000pt;}
._1f{margin-left:-11.290037pt;}
._4{margin-left:-10.378667pt;}
._a{margin-left:-8.455776pt;}
._b{margin-left:-7.549800pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.546667pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.786667pt;}
._1{margin-left:-1.774933pt;}
._e{width:0.997963pt;}
._9{width:2.848000pt;}
._0{width:4.966400pt;}
._24{width:6.864000pt;}
._d{width:10.656000pt;}
._23{width:63.997867pt;}
._21{width:65.988267pt;}
._1d{width:67.520000pt;}
._14{width:70.894933pt;}
._16{width:73.882037pt;}
._19{width:74.805333pt;}
._11{width:78.186667pt;}
._13{width:80.175371pt;}
._1b{width:89.416533pt;}
._20{width:94.826667pt;}
._1a{width:100.373333pt;}
._12{width:104.853333pt;}
._c{width:809.049338pt;}
._1e{width:1083.946667pt;}
._6{width:1110.613333pt;}
._22{width:1803.893333pt;}
._7{width:1830.560000pt;}
.fs9{font-size:5.333333pt;}
.fs3{font-size:32.000000pt;}
.fsa{font-size:33.554667pt;}
.fsf{font-size:36.269867pt;}
.fs14{font-size:36.734400pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:40.533333pt;}
.fs13{font-size:42.020267pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:42.741333pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:49.898133pt;}
.fs8{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:55.117867pt;}
.fs12{font-size:57.809067pt;}
.fs2{font-size:58.666667pt;}
.fs10{font-size:60.800000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y1b4{bottom:-3.015200pt;}
.y193{bottom:-3.006000pt;}
.ydb{bottom:-2.593733pt;}
.y188{bottom:-1.294000pt;}
.yd0{bottom:-1.115467pt;}
.y1a1{bottom:-0.194800pt;}
.y0{bottom:0.000000pt;}
.y1a3{bottom:0.026133pt;}
.y1ab{bottom:0.027867pt;}
.y1ae{bottom:0.028000pt;}
.yd2{bottom:0.037867pt;}
.ydd{bottom:0.038267pt;}
.y18a{bottom:0.043333pt;}
.y1a5{bottom:0.074133pt;}
.y1b2{bottom:0.074667pt;}
.y1a7{bottom:0.082133pt;}
.y1a9{bottom:0.083867pt;}
.y1b0{bottom:0.084000pt;}
.yd6{bottom:0.100533pt;}
.yd9{bottom:0.111600pt;}
.yd4{bottom:0.112533pt;}
.y18e{bottom:0.116667pt;}
.y191{bottom:0.128667pt;}
.y18c{bottom:0.131333pt;}
.yc{bottom:7.146667pt;}
.ye8{bottom:62.620667pt;}
.y133{bottom:63.807333pt;}
.y15b{bottom:66.403200pt;}
.y14{bottom:69.080000pt;}
.y182{bottom:69.479200pt;}
.y1b6{bottom:71.603333pt;}
.y1c6{bottom:72.144800pt;}
.y80{bottom:72.145867pt;}
.y3e{bottom:73.144400pt;}
.ye7{bottom:76.624667pt;}
.ya7{bottom:76.782667pt;}
.y70{bottom:77.479200pt;}
.y1eb{bottom:77.559200pt;}
.y132{bottom:79.807333pt;}
.y15a{bottom:82.403200pt;}
.y181{bottom:85.479200pt;}
.y3d{bottom:86.477733pt;}
.y1c5{bottom:88.144800pt;}
.y7f{bottom:88.145867pt;}
.y13{bottom:88.706667pt;}
.y1ea{bottom:92.223200pt;}
.ya6{bottom:92.782667pt;}
.y6f{bottom:93.479200pt;}
.y131{bottom:95.807333pt;}
.y159{bottom:98.403200pt;}
.y3c{bottom:99.811067pt;}
.y18{bottom:101.040000pt;}
.y180{bottom:101.479200pt;}
.y1c4{bottom:104.144800pt;}
.y7e{bottom:104.145867pt;}
.y218{bottom:106.403200pt;}
.y1e9{bottom:106.887200pt;}
.y1b5{bottom:107.514000pt;}
.ya5{bottom:108.782667pt;}
.y6e{bottom:109.479200pt;}
.y130{bottom:111.807333pt;}
.y158{bottom:114.403200pt;}
.ye6{bottom:117.453333pt;}
.y17f{bottom:117.479200pt;}
.y1c3{bottom:120.144800pt;}
.y7d{bottom:120.145867pt;}
.y17{bottom:120.666667pt;}
.y1e8{bottom:121.551200pt;}
.y217{bottom:122.403200pt;}
.ya4{bottom:124.782667pt;}
.y6d{bottom:125.479200pt;}
.y12f{bottom:127.807333pt;}
.y157{bottom:130.403200pt;}
.y17e{bottom:133.479200pt;}
.y1c2{bottom:136.144800pt;}
.y7c{bottom:136.145867pt;}
.y1e7{bottom:136.215200pt;}
.y15{bottom:137.733333pt;}
.y216{bottom:138.403200pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.ya3{bottom:140.782667pt;}
.y6c{bottom:141.479200pt;}
.y12e{bottom:143.807333pt;}
.y3b{bottom:143.907600pt;}
.y156{bottom:146.403200pt;}
.y17d{bottom:149.479200pt;}
.y1e6{bottom:150.879200pt;}
.y199{bottom:151.932647pt;}
.y1c1{bottom:152.144800pt;}
.y7b{bottom:152.145867pt;}
.y215{bottom:154.403200pt;}
.ya2{bottom:156.782667pt;}
.y6b{bottom:157.479200pt;}
.ye1{bottom:159.008383pt;}
.y12d{bottom:159.807333pt;}
.y3a{bottom:159.907600pt;}
.y198{bottom:164.412667pt;}
.y17c{bottom:165.479200pt;}
.y1e5{bottom:165.543200pt;}
.y1c0{bottom:168.144800pt;}
.y7a{bottom:168.145867pt;}
.ye0{bottom:169.780533pt;}
.y214{bottom:170.403200pt;}
.ya1{bottom:172.782667pt;}
.y6a{bottom:173.479200pt;}
.y12c{bottom:175.807333pt;}
.y39{bottom:175.907600pt;}
.y155{bottom:178.403200pt;}
.y1e4{bottom:180.207200pt;}
.y17b{bottom:181.479200pt;}
.y1bf{bottom:184.144800pt;}
.y79{bottom:184.145867pt;}
.y213{bottom:186.403200pt;}
.ya0{bottom:188.782667pt;}
.y69{bottom:189.479200pt;}
.y12b{bottom:191.807333pt;}
.y190{bottom:192.860000pt;}
.y194{bottom:192.945333pt;}
.y18f{bottom:192.988667pt;}
.yd8{bottom:194.336000pt;}
.y154{bottom:194.403200pt;}
.ydc{bottom:194.409333pt;}
.yd7{bottom:194.447600pt;}
.y1e3{bottom:194.871200pt;}
.y192{bottom:195.994667pt;}
.yda{bottom:197.041333pt;}
.y17a{bottom:197.479200pt;}
.y38{bottom:199.907600pt;}
.y1be{bottom:200.144800pt;}
.y78{bottom:200.145867pt;}
.y212{bottom:202.403200pt;}
.y9f{bottom:204.782667pt;}
.y68{bottom:205.479200pt;}
.y12a{bottom:207.807333pt;}
.yd3{bottom:209.189333pt;}
.yd5{bottom:209.201333pt;}
.yd1{bottom:209.264000pt;}
.yce{bottom:209.301867pt;}
.y1e2{bottom:209.535200pt;}
.y18b{bottom:210.066667pt;}
.y18d{bottom:210.081333pt;}
.y189{bottom:210.154667pt;}
.y186{bottom:210.198000pt;}
.y153{bottom:210.403200pt;}
.ycf{bottom:210.417333pt;}
.y187{bottom:211.492000pt;}
.y179{bottom:213.479200pt;}
.y1bd{bottom:216.144800pt;}
.y77{bottom:216.145867pt;}
.y211{bottom:218.403200pt;}
.y9e{bottom:220.782667pt;}
.y67{bottom:221.479200pt;}
.y129{bottom:223.807333pt;}
.y1e1{bottom:224.199200pt;}
.y152{bottom:226.403200pt;}
.y1bc{bottom:232.144800pt;}
.y76{bottom:232.145867pt;}
.y9d{bottom:236.782667pt;}
.y66{bottom:237.479200pt;}
.y1e0{bottom:238.863200pt;}
.y128{bottom:239.807333pt;}
.y210{bottom:242.403200pt;}
.y178{bottom:245.479200pt;}
.y1bb{bottom:248.144800pt;}
.y75{bottom:248.145867pt;}
.y9c{bottom:252.782667pt;}
.y65{bottom:253.479200pt;}
.y1df{bottom:253.527200pt;}
.y127{bottom:255.807333pt;}
.y37{bottom:255.904667pt;}
.y151{bottom:258.403200pt;}
.y177{bottom:261.479200pt;}
.y1ba{bottom:264.144800pt;}
.y74{bottom:264.145867pt;}
.ye5{bottom:266.378248pt;}
.y1de{bottom:268.191200pt;}
.y9b{bottom:268.782667pt;}
.y64{bottom:269.479200pt;}
.y126{bottom:271.807333pt;}
.y36{bottom:271.904667pt;}
.y150{bottom:274.403200pt;}
.ye4{bottom:277.168533pt;}
.y176{bottom:277.479200pt;}
.y1b9{bottom:280.144800pt;}
.y73{bottom:280.145867pt;}
.y20f{bottom:282.501867pt;}
.y1dd{bottom:282.855200pt;}
.y63{bottom:285.479200pt;}
.y19c{bottom:286.604667pt;}
.y125{bottom:287.807333pt;}
.y185{bottom:288.145867pt;}
.y14f{bottom:290.403200pt;}
.y9a{bottom:292.782667pt;}
.y1b8{bottom:296.144800pt;}
.y72{bottom:296.145867pt;}
.y20e{bottom:297.165867pt;}
.y1dc{bottom:297.519200pt;}
.y62{bottom:301.479200pt;}
.y124{bottom:303.807333pt;}
.ya{bottom:306.382667pt;}
.y14e{bottom:306.403200pt;}
.y175{bottom:309.479200pt;}
.y35{bottom:310.584667pt;}
.y20d{bottom:311.829867pt;}
.y1b7{bottom:312.144800pt;}
.y8d{bottom:312.145867pt;}
.y1db{bottom:312.183200pt;}
.ydf{bottom:317.676800pt;}
.y123{bottom:319.807333pt;}
.y71{bottom:320.145867pt;}
.y14d{bottom:322.403200pt;}
.ye3{bottom:322.822912pt;}
.y61{bottom:325.479200pt;}
.y20c{bottom:326.493867pt;}
.y34{bottom:326.584667pt;}
.y1da{bottom:326.847200pt;}
.y184{bottom:328.144800pt;}
.y8c{bottom:328.145867pt;}
.y99{bottom:332.784800pt;}
.y196{bottom:334.613067pt;}
.y122{bottom:335.807333pt;}
.y197{bottom:336.198267pt;}
.y14c{bottom:338.403200pt;}
.y19b{bottom:339.506995pt;}
.y20b{bottom:341.157867pt;}
.y174{bottom:341.479200pt;}
.y1d9{bottom:341.511200pt;}
.y33{bottom:342.584667pt;}
.yd{bottom:343.546667pt;}
.y183{bottom:344.144800pt;}
.y8b{bottom:344.145867pt;}
.y98{bottom:348.784800pt;}
.y9{bottom:351.724000pt;}
.y1a6{bottom:351.760000pt;}
.y1a4{bottom:351.768000pt;}
.y121{bottom:351.807333pt;}
.y1a2{bottom:351.816000pt;}
.y19f{bottom:351.838635pt;}
.y14b{bottom:354.403200pt;}
.y1b3{bottom:354.857333pt;}
.y20a{bottom:355.821867pt;}
.y1d8{bottom:356.175200pt;}
.y173{bottom:357.479200pt;}
.y32{bottom:358.584667pt;}
.y60{bottom:360.144800pt;}
.y8a{bottom:360.145867pt;}
.yde{bottom:362.222933pt;}
.y1af{bottom:362.962667pt;}
.y1b1{bottom:362.972000pt;}
.y1ad{bottom:363.018667pt;}
.y19e{bottom:363.042627pt;}
.y1ac{bottom:363.046667pt;}
.y97{bottom:364.784800pt;}
.ye2{bottom:365.376533pt;}
.y120{bottom:367.807333pt;}
.y209{bottom:370.485867pt;}
.y1d7{bottom:370.839200pt;}
.y172{bottom:373.479200pt;}
.y31{bottom:374.584667pt;}
.y1a8{bottom:374.658667pt;}
.y1aa{bottom:374.714667pt;}
.y19d{bottom:374.742533pt;}
.y1a0{bottom:374.937333pt;}
.y5f{bottom:376.144800pt;}
.y89{bottom:376.145867pt;}
.y96{bottom:380.784800pt;}
.y11f{bottom:383.807333pt;}
.y208{bottom:385.149867pt;}
.y1d6{bottom:385.503200pt;}
.y14a{bottom:386.405867pt;}
.yb{bottom:386.533333pt;}
.y171{bottom:389.479200pt;}
.y195{bottom:389.749067pt;}
.y30{bottom:390.584667pt;}
.y5e{bottom:392.144800pt;}
.y88{bottom:392.145867pt;}
.y19a{bottom:394.185867pt;}
.y95{bottom:396.784800pt;}
.y8{bottom:397.065333pt;}
.y11e{bottom:399.807333pt;}
.y207{bottom:399.813867pt;}
.y1d5{bottom:400.167200pt;}
.y149{bottom:401.069867pt;}
.y2f{bottom:406.584667pt;}
.y5d{bottom:408.144800pt;}
.y94{bottom:412.784800pt;}
.y206{bottom:414.477867pt;}
.y1d4{bottom:414.831200pt;}
.y11d{bottom:415.807333pt;}
.y87{bottom:416.140533pt;}
.y170{bottom:421.479200pt;}
.y2e{bottom:422.584667pt;}
.y5c{bottom:424.144800pt;}
.y93{bottom:428.784800pt;}
.y205{bottom:429.141867pt;}
.y1d3{bottom:429.495200pt;}
.y148{bottom:431.736533pt;}
.y10{bottom:433.826667pt;}
.y16f{bottom:437.479200pt;}
.y2d{bottom:438.584667pt;}
.y5b{bottom:440.144800pt;}
.ycd{bottom:441.144000pt;}
.y7{bottom:442.406667pt;}
.y86{bottom:442.812533pt;}
.y204{bottom:443.805867pt;}
.y1d2{bottom:444.159200pt;}
.y92{bottom:444.784800pt;}
.y147{bottom:447.736533pt;}
.y11c{bottom:447.807333pt;}
.y16e{bottom:453.479200pt;}
.y5a{bottom:456.144800pt;}
.ycc{bottom:457.144000pt;}
.y203{bottom:458.469867pt;}
.y1d1{bottom:458.823200pt;}
.y91{bottom:460.784800pt;}
.y146{bottom:463.736533pt;}
.y16d{bottom:469.479200pt;}
.y59{bottom:472.144800pt;}
.y202{bottom:473.133867pt;}
.ycb{bottom:473.144000pt;}
.y1d0{bottom:473.487200pt;}
.y90{bottom:476.784800pt;}
.y85{bottom:477.479200pt;}
.y11{bottom:478.426667pt;}
.y11b{bottom:478.474000pt;}
.y145{bottom:479.736533pt;}
.y16c{bottom:485.479200pt;}
.y6{bottom:487.748000pt;}
.y201{bottom:487.797867pt;}
.y58{bottom:488.144800pt;}
.y1cf{bottom:488.151200pt;}
.yca{bottom:489.144000pt;}
.y8f{bottom:492.784800pt;}
.y84{bottom:493.479200pt;}
.y11a{bottom:494.474000pt;}
.y2c{bottom:497.251333pt;}
.y16b{bottom:501.479200pt;}
.y200{bottom:502.461867pt;}
.y1ce{bottom:502.815200pt;}
.y144{bottom:503.736533pt;}
.y57{bottom:504.144800pt;}
.yc9{bottom:505.144000pt;}
.y8e{bottom:508.784800pt;}
.y83{bottom:509.479200pt;}
.y119{bottom:510.474000pt;}
.y2b{bottom:510.579333pt;}
.y1ff{bottom:517.125867pt;}
.y16a{bottom:517.479200pt;}
.y56{bottom:520.144800pt;}
.yc8{bottom:521.144000pt;}
.y19{bottom:524.093333pt;}
.y82{bottom:525.479200pt;}
.y118{bottom:526.474000pt;}
.y1fe{bottom:531.789867pt;}
.y5{bottom:533.089333pt;}
.y2a{bottom:533.251333pt;}
.y169{bottom:533.479200pt;}
.y55{bottom:536.144800pt;}
.yc7{bottom:537.144000pt;}
.y1cd{bottom:537.479200pt;}
.y143{bottom:538.403200pt;}
.y117{bottom:542.474000pt;}
.y1fd{bottom:546.453867pt;}
.yc3{bottom:548.260400pt;}
.y81{bottom:549.479200pt;}
.y54{bottom:552.144800pt;}
.yc6{bottom:553.144000pt;}
.y142{bottom:554.403200pt;}
.y116{bottom:558.474000pt;}
.y1fc{bottom:561.117867pt;}
.ye{bottom:561.706667pt;}
.y168{bottom:565.479200pt;}
.y53{bottom:568.144800pt;}
.yc5{bottom:569.144000pt;}
.y1cc{bottom:569.473867pt;}
.y141{bottom:570.403200pt;}
.y115{bottom:574.474000pt;}
.y1fb{bottom:575.781867pt;}
.y29{bottom:575.918000pt;}
.y167{bottom:581.479200pt;}
.y52{bottom:584.144800pt;}
.y140{bottom:586.403200pt;}
.y1cb{bottom:588.145867pt;}
.y28{bottom:589.251333pt;}
.y1fa{bottom:590.445867pt;}
.y114{bottom:590.474000pt;}
.ybb{bottom:590.706917pt;}
.yc4{bottom:593.144000pt;}
.y166{bottom:597.479200pt;}
.y51{bottom:600.144800pt;}
.yba{bottom:600.630710pt;}
.y13f{bottom:602.403200pt;}
.yb6{bottom:603.738973pt;}
.y1f9{bottom:605.109867pt;}
.y113{bottom:606.474000pt;}
.y1ca{bottom:608.145867pt;}
.yb9{bottom:610.579669pt;}
.y165{bottom:613.479200pt;}
.yb5{bottom:616.080533pt;}
.y50{bottom:616.144800pt;}
.y13e{bottom:618.403200pt;}
.y1f8{bottom:619.773867pt;}
.yb8{bottom:620.503461pt;}
.y112{bottom:622.474000pt;}
.yc2{bottom:623.955744pt;}
.y164{bottom:629.479200pt;}
.yb7{bottom:630.368533pt;}
.y27{bottom:631.918000pt;}
.y4f{bottom:632.144800pt;}
.y105{bottom:634.293867pt;}
.y13d{bottom:634.403200pt;}
.y1f7{bottom:634.437867pt;}
.y111{bottom:638.474000pt;}
.y1c9{bottom:640.145867pt;}
.y26{bottom:645.251333pt;}
.y163{bottom:645.479200pt;}
.y4e{bottom:648.144800pt;}
.y1f6{bottom:649.101867pt;}
.y13c{bottom:650.403200pt;}
.y110{bottom:654.474000pt;}
.y1c8{bottom:660.145867pt;}
.y162{bottom:661.479200pt;}
.y1f5{bottom:663.765867pt;}
.y25{bottom:663.918000pt;}
.y4d{bottom:664.144800pt;}
.yb1{bottom:670.454335pt;}
.y10f{bottom:670.474000pt;}
.y161{bottom:677.479200pt;}
.y1f4{bottom:678.429867pt;}
.yb0{bottom:679.639925pt;}
.y4c{bottom:680.144800pt;}
.y22{bottom:680.481733pt;}
.y13b{bottom:682.403200pt;}
.yf2{bottom:683.506667pt;}
.ybf{bottom:686.075885pt;}
.y10e{bottom:686.474000pt;}
.ybc{bottom:689.004533pt;}
.yaf{bottom:689.580495pt;}
.y4{bottom:691.756000pt;}
.y21{bottom:691.812400pt;}
.y1c7{bottom:692.145867pt;}
.y1f3{bottom:693.093867pt;}
.y1a{bottom:693.431200pt;}
.y160{bottom:693.479200pt;}
.yfb{bottom:695.676800pt;}
.yf1{bottom:695.686933pt;}
.y4b{bottom:696.144800pt;}
.y104{bottom:696.294933pt;}
.ybe{bottom:698.353333pt;}
.y13a{bottom:698.403200pt;}
.yae{bottom:698.774474pt;}
.y10d{bottom:702.474000pt;}
.y20{bottom:703.143067pt;}
.yfa{bottom:707.735467pt;}
.yf0{bottom:707.745600pt;}
.y1f2{bottom:707.757867pt;}
.y103{bottom:708.282667pt;}
.yad{bottom:708.698267pt;}
.y15f{bottom:709.479200pt;}
.y4a{bottom:712.144800pt;}
.y139{bottom:714.403200pt;}
.y1f{bottom:714.473733pt;}
.y10c{bottom:718.474000pt;}
.yf9{bottom:719.723200pt;}
.yef{bottom:719.733333pt;}
.y102{bottom:720.341333pt;}
.y1f1{bottom:722.421867pt;}
.y12{bottom:725.040000pt;}
.y15e{bottom:725.479200pt;}
.y49{bottom:728.144800pt;}
.y24{bottom:730.584667pt;}
.yf8{bottom:731.771733pt;}
.yee{bottom:731.781867pt;}
.y101{bottom:732.379733pt;}
.y10b{bottom:734.474000pt;}
.y1f0{bottom:737.085867pt;}
.yac{bottom:739.706480pt;}
.y1e{bottom:743.815067pt;}
.y48{bottom:744.144800pt;}
.yf7{bottom:744.428267pt;}
.yed{bottom:744.438400pt;}
.y100{bottom:745.188267pt;}
.yb4{bottom:746.378611pt;}
.y138{bottom:746.403200pt;}
.yab{bottom:748.892070pt;}
.y15d{bottom:749.473867pt;}
.yc1{bottom:749.807600pt;}
.y10a{bottom:750.474000pt;}
.y1ef{bottom:751.749867pt;}
.y23{bottom:754.584667pt;}
.y1d{bottom:755.145733pt;}
.yf6{bottom:756.618667pt;}
.yec{bottom:756.628800pt;}
.yff{bottom:757.226667pt;}
.yaa{bottom:758.815863pt;}
.yb3{bottom:759.233067pt;}
.y47{bottom:760.144800pt;}
.y137{bottom:762.403200pt;}
.y1ee{bottom:766.413867pt;}
.y109{bottom:766.474000pt;}
.y1c{bottom:766.476400pt;}
.ya9{bottom:768.009841pt;}
.y15c{bottom:768.145867pt;}
.yf5{bottom:768.657067pt;}
.yeb{bottom:768.667200pt;}
.yfe{bottom:769.234667pt;}
.yb2{bottom:771.521200pt;}
.y46{bottom:776.144800pt;}
.y1b{bottom:777.807067pt;}
.ya8{bottom:777.958800pt;}
.y136{bottom:778.403200pt;}
.yf4{bottom:780.665067pt;}
.yea{bottom:780.675200pt;}
.y1ed{bottom:781.077867pt;}
.yfd{bottom:781.273067pt;}
.y108{bottom:782.474000pt;}
.y45{bottom:792.144800pt;}
.y1ec{bottom:795.741867pt;}
.y107{bottom:798.474000pt;}
.y3{bottom:805.081333pt;}
.y41{bottom:805.175067pt;}
.yf3{bottom:805.370133pt;}
.ye9{bottom:805.380267pt;}
.yfc{bottom:806.120000pt;}
.y44{bottom:808.144800pt;}
.y135{bottom:810.405867pt;}
.yc0{bottom:812.691867pt;}
.ybd{bottom:813.602000pt;}
.y106{bottom:822.474000pt;}
.y43{bottom:824.144800pt;}
.y134{bottom:825.069867pt;}
.y2{bottom:857.092000pt;}
.y42{bottom:860.198133pt;}
.y1{bottom:879.748000pt;}
.y40{bottom:900.640000pt;}
.y3f{bottom:901.973733pt;}
.h45{height:0.222667pt;}
.h44{height:0.278667pt;}
.h20{height:1.153333pt;}
.h22{height:1.216000pt;}
.h23{height:1.228000pt;}
.h21{height:1.229333pt;}
.h32{height:1.337333pt;}
.h4d{height:1.338667pt;}
.h34{height:1.409333pt;}
.h33{height:1.424000pt;}
.h35{height:1.425333pt;}
.h4e{height:2.346667pt;}
.h27{height:2.632000pt;}
.h25{height:2.705333pt;}
.h4c{height:2.816000pt;}
.h4f{height:2.934667pt;}
.h41{height:3.041333pt;}
.h39{height:3.049333pt;}
.h42{height:3.090667pt;}
.h43{height:3.098667pt;}
.h37{height:3.134667pt;}
.h26{height:3.318667pt;}
.h15{height:3.706667pt;}
.h38{height:3.845333pt;}
.h3f{height:4.157333pt;}
.h47{height:4.380000pt;}
.h48{height:4.436000pt;}
.h1d{height:4.797333pt;}
.h49{height:5.437333pt;}
.h2f{height:5.556000pt;}
.h3d{height:5.692000pt;}
.h46{height:5.802667pt;}
.h28{height:5.938667pt;}
.h4a{height:5.978667pt;}
.h40{height:6.030667pt;}
.h3e{height:6.049333pt;}
.h4b{height:6.270667pt;}
.h3a{height:6.881333pt;}
.h1f{height:7.340000pt;}
.h1e{height:7.365333pt;}
.h31{height:8.502667pt;}
.h30{height:8.534667pt;}
.hb{height:22.656000pt;}
.h18{height:23.286939pt;}
.h29{height:24.808589pt;}
.h3c{height:25.126330pt;}
.hc{height:26.432000pt;}
.h2b{height:27.481600pt;}
.h2c{height:28.130133pt;}
.h3b{height:28.741862pt;}
.h4{height:29.333333pt;}
.h13{height:29.568000pt;}
.h19{height:29.662485pt;}
.hf{height:30.208000pt;}
.h2d{height:33.360000pt;}
.h51{height:33.381333pt;}
.h1c{height:33.930731pt;}
.h1b{height:33.984000pt;}
.h24{height:34.130323pt;}
.h14{height:34.256228pt;}
.h16{height:36.853333pt;}
.h10{height:36.960000pt;}
.h12{height:37.066667pt;}
.h11{height:37.760000pt;}
.h1a{height:38.251799pt;}
.h2e{height:39.310165pt;}
.h36{height:39.541402pt;}
.h2a{height:42.195200pt;}
.h17{height:44.224000pt;}
.he{height:44.352000pt;}
.h50{height:44.416000pt;}
.h3{height:51.916667pt;}
.hd{height:59.136000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:914.645333pt;}
.ha{height:914.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w27{width:0.077333pt;}
.w44{width:0.088000pt;}
.w1c{width:0.289333pt;}
.w3a{width:0.336000pt;}
.w1a{width:0.346667pt;}
.w37{width:0.401333pt;}
.w24{width:0.425333pt;}
.w41{width:0.492000pt;}
.w23{width:0.524000pt;}
.w40{width:0.606667pt;}
.w25{width:0.613333pt;}
.w42{width:0.713333pt;}
.w55{width:0.742667pt;}
.w4b{width:0.772000pt;}
.w53{width:0.918667pt;}
.w4e{width:0.920000pt;}
.w10{width:1.010667pt;}
.wc{width:1.012000pt;}
.w21{width:1.145333pt;}
.w29{width:1.170667pt;}
.w2d{width:1.172000pt;}
.w13{width:1.248000pt;}
.w3e{width:1.329333pt;}
.w30{width:1.445333pt;}
.w39{width:1.446667pt;}
.w17{width:1.474667pt;}
.w34{width:1.709333pt;}
.wb{width:1.797333pt;}
.w28{width:2.084000pt;}
.w48{width:2.361333pt;}
.w4d{width:2.636000pt;}
.w16{width:2.706667pt;}
.w33{width:3.134667pt;}
.w50{width:3.234667pt;}
.w54{width:3.316000pt;}
.w47{width:3.317333pt;}
.w18{width:3.360000pt;}
.w46{width:3.473333pt;}
.w4c{width:3.474667pt;}
.w1b{width:3.534667pt;}
.w45{width:3.573333pt;}
.w12{width:3.581333pt;}
.w49{width:3.710667pt;}
.w4a{width:3.712000pt;}
.w26{width:3.718667pt;}
.w19{width:3.881333pt;}
.w35{width:3.889333pt;}
.w52{width:4.033333pt;}
.w38{width:4.096000pt;}
.w2f{width:4.148000pt;}
.w43{width:4.308000pt;}
.w1d{width:4.429333pt;}
.w36{width:4.496000pt;}
.w11{width:4.506667pt;}
.wd{width:4.516000pt;}
.w22{width:4.716000pt;}
.w15{width:4.717333pt;}
.w20{width:5.040000pt;}
.w1e{width:5.041333pt;}
.wf{width:5.042667pt;}
.w3b{width:5.128000pt;}
.w2e{width:5.217333pt;}
.w1f{width:5.222667pt;}
.w2a{width:5.230667pt;}
.we{width:5.258667pt;}
.w32{width:5.464000pt;}
.w3f{width:5.466667pt;}
.w14{width:5.477333pt;}
.w2c{width:5.838667pt;}
.w3d{width:5.840000pt;}
.w51{width:5.989333pt;}
.w4f{width:5.990667pt;}
.w3c{width:6.049333pt;}
.w2b{width:6.093333pt;}
.w31{width:6.344000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:642.520000pt;}
.wa{width:642.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x61{left:-6.269200pt;}
.x35{left:-5.363467pt;}
.x23{left:-3.267467pt;}
.x5a{left:-2.075867pt;}
.x25{left:-0.934267pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x14{left:16.504000pt;}
.x15{left:56.692933pt;}
.x13{left:64.252000pt;}
.x16{left:72.692933pt;}
.x17{left:80.252000pt;}
.x1d{left:82.417600pt;}
.x18{left:87.467067pt;}
.x1b{left:88.741867pt;}
.x46{left:97.048481pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x4f{left:138.026267pt;}
.x4c{left:139.359600pt;}
.x4e{left:145.585333pt;}
.x4d{left:146.918667pt;}
.x40{left:152.761333pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1e{left:200.057067pt;}
.x47{left:206.728657pt;}
.x19{left:209.702800pt;}
.x41{left:211.313733pt;}
.x1a{left:213.197200pt;}
.x48{left:221.001271pt;}
.x64{left:230.504133pt;}
.x21{left:262.506800pt;}
.x29{left:263.556000pt;}
.x50{left:264.849467pt;}
.x55{left:266.064000pt;}
.x2a{left:269.660000pt;}
.x56{left:273.138667pt;}
.x2b{left:276.305333pt;}
.x2c{left:278.733333pt;}
.x57{left:280.836000pt;}
.x2d{left:284.197333pt;}
.x2e{left:289.037333pt;}
.x58{left:289.981333pt;}
.x2f{left:291.578667pt;}
.x44{left:293.215481pt;}
.x59{left:295.585333pt;}
.x30{left:298.568000pt;}
.x31{left:304.758667pt;}
.x32{left:305.990667pt;}
.x22{left:307.465333pt;}
.x66{left:309.553747pt;}
.x24{left:311.089333pt;}
.x45{left:312.343867pt;}
.x33{left:314.324800pt;}
.x26{left:315.815733pt;}
.x51{left:316.936000pt;}
.x3c{left:319.737333pt;}
.x3e{left:321.152000pt;}
.x3d{left:322.710667pt;}
.x5b{left:324.884133pt;}
.x52{left:326.613467pt;}
.x3f{left:327.624933pt;}
.x27{left:329.410667pt;}
.x49{left:330.711858pt;}
.x67{left:331.713333pt;}
.x62{left:332.794667pt;}
.x60{left:334.598667pt;}
.x42{left:336.172447pt;}
.x28{left:337.706267pt;}
.x63{left:340.289467pt;}
.x36{left:341.458667pt;}
.x53{left:342.361333pt;}
.x4a{left:344.984472pt;}
.x34{left:345.888000pt;}
.x37{left:347.613333pt;}
.x65{left:350.194704pt;}
.x54{left:351.972133pt;}
.x5c{left:352.912000pt;}
.x38{left:354.402667pt;}
.x39{left:356.617333pt;}
.x5d{left:361.450667pt;}
.x3a{left:362.838667pt;}
.x3b{left:365.464000pt;}
.x5e{left:371.316000pt;}
.x20{left:373.535639pt;}
.x1c{left:379.102400pt;}
.x1f{left:380.601200pt;}
.x5f{left:384.129333pt;}
.x43{left:397.411299pt;}
.xa{left:441.827333pt;}
.x11{left:452.221467pt;}
.x10{left:457.354800pt;}
.x4b{left:464.152693pt;}
.x12{left:467.556133pt;}
.xf{left:495.388133pt;}
.xb{left:498.561467pt;}
.xe{left:500.568133pt;}
.xc{left:524.153467pt;}
.xd{left:567.208133pt;}
}




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