
    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_acb7005e2117c4f2d47a53c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b08a566e88789fbb6304c7a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_1214a6d1a4b25102475f6a0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_92f2e3ff7eb9b1abb1221753.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_9e1ecd86b83ea624bde85726.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_799e00237abd47fbe396e45e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_982d328c6056af337c1caaa5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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_7c2ec2de01e6ae87c16848bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_5eb5bb0d0abd9b9c46d45d94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_fb73113ee353026b2787b297.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_711fb2b6103e24f4e32d5659.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c9f3fceaa46cdfc9bb8cce9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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_c59661e1eba5e3c61dd09735.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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_8d195fd301eac4eb89148a82.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_c300700310f2a9331b0bf0a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.664000;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_51599cfca3231f741c2a1a49.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.598000;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_d982d7346ec7d78949b5bd65.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_53d648b72b383c5d5f98d839.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_72c58f59da5748f84a2f3015.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f0c6b18a3b3a039b331671ed.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.725000;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;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-23.614830px;}
.v2{vertical-align:-16.878000px;}
.va{vertical-align:-11.895056px;}
.v6{vertical-align:-8.964000px;}
.v8{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.804253px;}
.vb{vertical-align:11.895056px;}
.v3{vertical-align:16.337664px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:26.898000px;}
.v5{vertical-align:40.434000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000300px;}
.ls13{letter-spacing:0.001140px;}
.ls17{letter-spacing:0.002207px;}
.ls16{letter-spacing:0.002222px;}
.lsa{letter-spacing:0.002245px;}
.lse{letter-spacing:0.002338px;}
.ls9{letter-spacing:0.002685px;}
.ls8{letter-spacing:0.003269px;}
.ls6{letter-spacing:0.016487px;}
.ls20{letter-spacing:0.058543px;}
.ls29{letter-spacing:0.458387px;}
.ls25{letter-spacing:0.464387px;}
.ls27{letter-spacing:0.854660px;}
.ls2f{letter-spacing:1.795536px;}
.ls2{letter-spacing:2.455834px;}
.ls2c{letter-spacing:2.964877px;}
.ls2d{letter-spacing:2.986766px;}
.ls24{letter-spacing:2.987675px;}
.ls0{letter-spacing:2.988000px;}
.ls4{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.988780px;}
.ls5{letter-spacing:2.989200px;}
.ls2e{letter-spacing:2.994017px;}
.ls30{letter-spacing:12.705056px;}
.ls10{letter-spacing:13.278538px;}
.lsb{letter-spacing:13.281269px;}
.ls19{letter-spacing:13.284538px;}
.lsf{letter-spacing:13.286685px;}
.ls1e{letter-spacing:14.694131px;}
.ls18{letter-spacing:16.267140px;}
.ls15{letter-spacing:16.273140px;}
.ls21{letter-spacing:17.058538px;}
.lsd{letter-spacing:17.134200px;}
.ls2b{letter-spacing:19.586525px;}
.ls2a{letter-spacing:19.592525px;}
.ls12{letter-spacing:19.800305px;}
.ls26{letter-spacing:19.922525px;}
.lsc{letter-spacing:20.454538px;}
.ls22{letter-spacing:23.034600px;}
.ls1b{letter-spacing:23.148300px;}
.ls1c{letter-spacing:23.918207px;}
.ls11{letter-spacing:28.448725px;}
.ls7{letter-spacing:33.488725px;}
.ls1a{letter-spacing:34.338305px;}
.ls23{letter-spacing:38.058600px;}
.ls1f{letter-spacing:75.801076px;}
.ls1d{letter-spacing:79.309324px;}
.ls28{letter-spacing:130.584426px;}
.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;}
}
.ws136{word-spacing:-130.584426px;}
.wsad{word-spacing:-38.937826px;}
.ws10f{word-spacing:-33.211407px;}
.ws14a{word-spacing:-29.991893px;}
.wsce{word-spacing:-28.955301px;}
.ws13f{word-spacing:-18.086912px;}
.ws13d{word-spacing:-18.080912px;}
.ws9a{word-spacing:-14.943900px;}
.ws15a{word-spacing:-14.920027px;}
.ws122{word-spacing:-14.467865px;}
.ws57{word-spacing:-11.955150px;}
.ws19{word-spacing:-11.955000px;}
.ws87{word-spacing:-11.020634px;}
.ws86{word-spacing:-10.996728px;}
.ws107{word-spacing:-9.316382px;}
.wsd1{word-spacing:-6.866912px;}
.wsa0{word-spacing:-6.325127px;}
.wsa5{word-spacing:-5.524418px;}
.wsa2{word-spacing:-5.519680px;}
.wsa4{word-spacing:-3.956165px;}
.ws119{word-spacing:-1.195512px;}
.ws81{word-spacing:-1.135736px;}
.ws28{word-spacing:-1.016226px;}
.ws135{word-spacing:-0.896634px;}
.ws45{word-spacing:-0.836713px;}
.ws88{word-spacing:-0.777083px;}
.ws9f{word-spacing:-0.657532px;}
.wsc4{word-spacing:-0.478206px;}
.ws71{word-spacing:-0.478205px;}
.ws177{word-spacing:-0.430385px;}
.ws15c{word-spacing:-0.418429px;}
.ws176{word-spacing:-0.382565px;}
.ws40{word-spacing:-0.358489px;}
.ws11a{word-spacing:-0.239102px;}
.wscd{word-spacing:-0.059776px;}
.wse{word-spacing:-0.054011px;}
.ws2{word-spacing:-0.053796px;}
.ws162{word-spacing:-0.047821px;}
.ws54{word-spacing:0.000000px;}
.ws64{word-spacing:0.059776px;}
.ws101{word-spacing:0.179327px;}
.ws4d{word-spacing:0.179334px;}
.ws7b{word-spacing:0.239102px;}
.ws1f{word-spacing:0.239112px;}
.ws191{word-spacing:0.286924px;}
.wseb{word-spacing:0.478205px;}
.ws17b{word-spacing:0.526027px;}
.ws97{word-spacing:0.537980px;}
.wsd7{word-spacing:0.597756px;}
.ws92{word-spacing:0.657532px;}
.ws163{word-spacing:0.669488px;}
.ws8c{word-spacing:0.717307px;}
.ws164{word-spacing:0.717309px;}
.ws181{word-spacing:0.765130px;}
.ws161{word-spacing:0.860771px;}
.ws66{word-spacing:0.896634px;}
.ws169{word-spacing:0.908591px;}
.ws154{word-spacing:0.956410px;}
.ws74{word-spacing:1.075961px;}
.ws141{word-spacing:1.135736px;}
.wse7{word-spacing:1.195512px;}
.wsde{word-spacing:1.315063px;}
.wsf7{word-spacing:1.374839px;}
.ws94{word-spacing:1.494390px;}
.ws98{word-spacing:1.554166px;}
.ws167{word-spacing:1.578080px;}
.ws93{word-spacing:1.613941px;}
.ws31{word-spacing:1.625880px;}
.wsb7{word-spacing:1.673717px;}
.ws5d{word-spacing:1.733492px;}
.ws82{word-spacing:1.793268px;}
.wsf8{word-spacing:1.912819px;}
.ws117{word-spacing:1.970384px;}
.ws118{word-spacing:1.972595px;}
.ws7{word-spacing:2.044087px;}
.ws84{word-spacing:2.092146px;}
.ws133{word-spacing:2.151922px;}
.ws43{word-spacing:2.152008px;}
.ws6{word-spacing:2.205636px;}
.wsb8{word-spacing:2.211697px;}
.ws134{word-spacing:2.271473px;}
.ws18e{word-spacing:2.295389px;}
.ws151{word-spacing:2.331248px;}
.wsbc{word-spacing:2.391024px;}
.ws139{word-spacing:2.450800px;}
.ws18f{word-spacing:2.486671px;}
.ws13c{word-spacing:2.510575px;}
.ws172{word-spacing:2.582312px;}
.ws171{word-spacing:2.773595px;}
.wsb5{word-spacing:2.809453px;}
.ws183{word-spacing:2.869236px;}
.ws11e{word-spacing:2.929004px;}
.ws4c{word-spacing:3.048439px;}
.ws11b{word-spacing:3.048556px;}
.wsd{word-spacing:3.066480px;}
.wsbb{word-spacing:3.108331px;}
.ws152{word-spacing:3.168107px;}
.ws7c{word-spacing:3.287658px;}
.ws89{word-spacing:3.347434px;}
.ws16a{word-spacing:3.395263px;}
.ws156{word-spacing:3.407209px;}
.ws20{word-spacing:3.407226px;}
.ws4b{word-spacing:3.407346px;}
.ws5e{word-spacing:3.466985px;}
.ws41{word-spacing:3.467124px;}
.ws187{word-spacing:3.490904px;}
.wsbe{word-spacing:3.526760px;}
.ws17a{word-spacing:3.586545px;}
.wsc1{word-spacing:3.646312px;}
.ws175{word-spacing:3.682186px;}
.wsb4{word-spacing:3.706087px;}
.ws73{word-spacing:3.765863px;}
.ws25{word-spacing:3.825792px;}
.ws12f{word-spacing:3.885414px;}
.ws138{word-spacing:3.907230px;}
.ws90{word-spacing:4.004965px;}
.ws160{word-spacing:4.064741px;}
.ws168{word-spacing:4.064751px;}
.ws108{word-spacing:4.124516px;}
.ws111{word-spacing:4.184280px;}
.ws7a{word-spacing:4.184292px;}
.wse2{word-spacing:4.195052px;}
.ws68{word-spacing:4.363619px;}
.wsf2{word-spacing:4.423394px;}
.ws131{word-spacing:4.483170px;}
.wsff{word-spacing:4.542946px;}
.wsfa{word-spacing:4.602721px;}
.ws157{word-spacing:4.662497px;}
.ws10c{word-spacing:4.722272px;}
.ws10e{word-spacing:4.774777px;}
.ws32{word-spacing:4.782000px;}
.ws16d{word-spacing:4.782006px;}
.wsb6{word-spacing:4.782048px;}
.wsf5{word-spacing:4.782060px;}
.ws123{word-spacing:4.785523px;}
.ws120{word-spacing:4.787396px;}
.wsdd{word-spacing:4.841824px;}
.ws8d{word-spacing:4.901599px;}
.ws179{word-spacing:4.973342px;}
.wsfd{word-spacing:5.021150px;}
.ws104{word-spacing:5.080926px;}
.wsdb{word-spacing:5.200477px;}
.ws8{word-spacing:5.325965px;}
.ws6e{word-spacing:5.379804px;}
.ws14b{word-spacing:5.398109px;}
.wsee{word-spacing:5.439580px;}
.ws95{word-spacing:5.499355px;}
.ws3a{word-spacing:5.499516px;}
.ws79{word-spacing:5.559131px;}
.wsf6{word-spacing:5.678682px;}
.ws78{word-spacing:5.798233px;}
.ws17d{word-spacing:5.834113px;}
.ws12a{word-spacing:5.858009px;}
.ws116{word-spacing:5.910702px;}
.ws144{word-spacing:5.913300px;}
.ws65{word-spacing:5.917784px;}
.wsed{word-spacing:5.929754px;}
.ws56{word-spacing:5.961520px;}
.wsf9{word-spacing:5.976317px;}
.wsd5{word-spacing:5.976658px;}
.ws67{word-spacing:5.977560px;}
.ws1{word-spacing:5.977800px;}
.ws142{word-spacing:5.978134px;}
.ws15d{word-spacing:6.037336px;}
.ws159{word-spacing:6.097111px;}
.ws14{word-spacing:6.132744px;}
.ws194{word-spacing:6.168857px;}
.wsa{word-spacing:6.186540px;}
.wsf1{word-spacing:6.216662px;}
.ws17f{word-spacing:6.312319px;}
.ws112{word-spacing:6.336214px;}
.ws3d{word-spacing:6.395947px;}
.ws126{word-spacing:6.575316px;}
.wsb3{word-spacing:6.635092px;}
.ws52{word-spacing:6.635358px;}
.ws16c{word-spacing:6.694884px;}
.ws17{word-spacing:6.724500px;}
.ws3{word-spacing:6.778296px;}
.wsbf{word-spacing:6.814418px;}
.ws51{word-spacing:6.814692px;}
.wsa6{word-spacing:6.874194px;}
.ws196{word-spacing:6.886166px;}
.ws8e{word-spacing:6.933970px;}
.ws190{word-spacing:6.933987px;}
.ws24{word-spacing:6.934188px;}
.wsfc{word-spacing:7.053521px;}
.ws5c{word-spacing:7.113296px;}
.wsd9{word-spacing:7.173072px;}
.wsb2{word-spacing:7.232848px;}
.ws53{word-spacing:7.233138px;}
.ws63{word-spacing:7.292623px;}
.ws9{word-spacing:7.316095px;}
.ws11f{word-spacing:7.352399px;}
.ws1a{word-spacing:7.532028px;}
.ws16f{word-spacing:7.555655px;}
.ws198{word-spacing:7.603475px;}
.ws69{word-spacing:7.651277px;}
.wsb1{word-spacing:7.711052px;}
.ws16b{word-spacing:7.794758px;}
.ws127{word-spacing:7.830604px;}
.ws96{word-spacing:7.890379px;}
.wsa7{word-spacing:8.069706px;}
.wsca{word-spacing:8.129482px;}
.wsd4{word-spacing:8.189257px;}
.ws155{word-spacing:8.308808px;}
.ws1b{word-spacing:8.309142px;}
.wsfb{word-spacing:8.368584px;}
.ws173{word-spacing:8.416426px;}
.ws166{word-spacing:8.464246px;}
.ws15e{word-spacing:8.488135px;}
.wsd8{word-spacing:8.547911px;}
.wsaa{word-spacing:8.607686px;}
.wsda{word-spacing:8.667462px;}
.ws148{word-spacing:8.727238px;}
.ws3b{word-spacing:8.727648px;}
.ws109{word-spacing:8.787013px;}
.ws3e{word-spacing:8.787366px;}
.ws16{word-spacing:8.822544px;}
.ws8f{word-spacing:8.846789px;}
.ws7d{word-spacing:8.906564px;}
.ws17e{word-spacing:8.942452px;}
.wsd6{word-spacing:8.966340px;}
.ws50{word-spacing:8.966700px;}
.wscc{word-spacing:9.026116px;}
.wse6{word-spacing:9.145667px;}
.wsc9{word-spacing:9.205442px;}
.ws17c{word-spacing:9.229376px;}
.ws115{word-spacing:9.324994px;}
.ws33{word-spacing:9.325248px;}
.ws3f{word-spacing:9.325368px;}
.ws13b{word-spacing:9.444545px;}
.ws77{word-spacing:9.504320px;}
.ws61{word-spacing:9.564096px;}
.ws91{word-spacing:9.623872px;}
.ws34{word-spacing:9.684036px;}
.ws2e{word-spacing:9.707747px;}
.ws7e{word-spacing:9.803198px;}
.ws189{word-spacing:9.803223px;}
.ws9e{word-spacing:9.862974px;}
.ws132{word-spacing:10.042301px;}
.ws192{word-spacing:10.090147px;}
.ws22{word-spacing:10.102482px;}
.ws193{word-spacing:10.137967px;}
.ws99{word-spacing:10.221628px;}
.ws75{word-spacing:10.281403px;}
.ws46{word-spacing:10.281696px;}
.ws15{word-spacing:10.328832px;}
.ws9b{word-spacing:10.341179px;}
.wsac{word-spacing:10.580281px;}
.ws18c{word-spacing:10.616173px;}
.ws174{word-spacing:10.711814px;}
.ws21{word-spacing:10.819938px;}
.ws178{word-spacing:10.855276px;}
.ws6c{word-spacing:10.879159px;}
.ws185{word-spacing:10.903097px;}
.ws36{word-spacing:10.939374px;}
.wsdf{word-spacing:10.998710px;}
.ws18a{word-spacing:11.038788px;}
.ws18b{word-spacing:11.046559px;}
.ws15f{word-spacing:11.058486px;}
.wsc7{word-spacing:11.118262px;}
.ws10{word-spacing:11.135718px;}
.ws188{word-spacing:11.142200px;}
.ws10a{word-spacing:11.178037px;}
.wsf3{word-spacing:11.297588px;}
.ws6f{word-spacing:11.357364px;}
.ws9c{word-spacing:11.476915px;}
.ws199{word-spacing:11.524765px;}
.ws100{word-spacing:11.536691px;}
.ws182{word-spacing:11.572585px;}
.ws6b{word-spacing:11.596466px;}
.ws44{word-spacing:11.596932px;}
.wsef{word-spacing:11.656242px;}
.ws10b{word-spacing:11.716018px;}
.ws72{word-spacing:11.775793px;}
.wsc{word-spacing:11.942712px;}
.ws7f{word-spacing:11.955120px;}
.wsd3{word-spacing:12.014896px;}
.ws4e{word-spacing:12.075156px;}
.wsc8{word-spacing:12.134447px;}
.ws130{word-spacing:12.194222px;}
.ws13a{word-spacing:12.253998px;}
.ws49{word-spacing:12.254490px;}
.ws129{word-spacing:12.313774px;}
.wsf{word-spacing:12.319230px;}
.ws147{word-spacing:12.433325px;}
.wsb9{word-spacing:12.493100px;}
.wsab{word-spacing:12.672427px;}
.ws18d{word-spacing:12.720280px;}
.ws146{word-spacing:12.732203px;}
.wsf0{word-spacing:12.791978px;}
.ws13{word-spacing:12.803448px;}
.wsd2{word-spacing:12.851754px;}
.wsd0{word-spacing:12.878226px;}
.ws27{word-spacing:12.912227px;}
.ws114{word-spacing:13.090856px;}
.ws16e{word-spacing:13.102844px;}
.ws165{word-spacing:13.198486px;}
.wsaf{word-spacing:13.210408px;}
.ws5{word-spacing:13.449000px;}
.ws60{word-spacing:13.748388px;}
.ws8a{word-spacing:13.808164px;}
.wse0{word-spacing:13.867939px;}
.wsb{word-spacing:14.040756px;}
.wsdc{word-spacing:14.047266px;}
.ws76{word-spacing:14.107042px;}
.ws145{word-spacing:14.166817px;}
.ws0{word-spacing:14.346000px;}
.ws125{word-spacing:14.525471px;}
.ws2f{word-spacing:14.537280px;}
.wsfe{word-spacing:14.645022px;}
.wsc6{word-spacing:14.764573px;}
.ws186{word-spacing:14.776565px;}
.ws153{word-spacing:14.824349px;}
.wse9{word-spacing:14.884124px;}
.ws195{word-spacing:14.920027px;}
.wsbd{word-spacing:14.943025px;}
.ws83{word-spacing:14.943900px;}
.ws26{word-spacing:14.944500px;}
.wsa8{word-spacing:14.949025px;}
.ws113{word-spacing:15.003676px;}
.ws35{word-spacing:15.004278px;}
.ws180{word-spacing:15.063489px;}
.ws39{word-spacing:15.123894px;}
.ws15b{word-spacing:15.183002px;}
.ws11{word-spacing:15.278064px;}
.ws12{word-spacing:15.278333px;}
.ws4a{word-spacing:15.602118px;}
.wsc5{word-spacing:15.661207px;}
.ws170{word-spacing:15.732977px;}
.ws30{word-spacing:15.876288px;}
.ws184{word-spacing:15.924260px;}
.ws12c{word-spacing:15.960085px;}
.ws140{word-spacing:16.022624px;}
.ws80{word-spacing:16.079636px;}
.ws1d{word-spacing:16.199718px;}
.ws128{word-spacing:16.258963px;}
.ws10d{word-spacing:16.318739px;}
.ws42{word-spacing:16.319394px;}
.ws47{word-spacing:16.379172px;}
.ws5a{word-spacing:16.438290px;}
.wsae{word-spacing:16.524415px;}
.wscf{word-spacing:16.557841px;}
.wsc2{word-spacing:16.677392px;}
.ws121{word-spacing:16.685856px;}
.ws6d{word-spacing:16.737168px;}
.wsba{word-spacing:16.856719px;}
.ws4{word-spacing:17.053655px;}
.wsea{word-spacing:17.155597px;}
.ws8b{word-spacing:17.275148px;}
.ws13e{word-spacing:17.408624px;}
.ws9d{word-spacing:17.454475px;}
.ws2b{word-spacing:17.645580px;}
.ws5f{word-spacing:17.693578px;}
.ws12b{word-spacing:17.753353px;}
.ws2a{word-spacing:17.813784px;}
.ws55{word-spacing:17.932680px;}
.ws18{word-spacing:17.933400px;}
.ws59{word-spacing:17.992456px;}
.ws102{word-spacing:18.052231px;}
.ws1e{word-spacing:18.052956px;}
.ws4f{word-spacing:18.232051px;}
.ws103{word-spacing:18.351109px;}
.ws2d{word-spacing:18.649800px;}
.ws29{word-spacing:18.650856px;}
.ws3c{word-spacing:18.710275px;}
.ws106{word-spacing:19.367294px;}
.ws6a{word-spacing:19.427070px;}
.ws23{word-spacing:19.726740px;}
.wsc3{word-spacing:19.785724px;}
.wse8{word-spacing:19.845499px;}
.ws105{word-spacing:20.144377px;}
.ws58{word-spacing:20.622582px;}
.ws62{word-spacing:20.682358px;}
.wsc0{word-spacing:20.742133px;}
.ws158{word-spacing:20.801909px;}
.ws143{word-spacing:20.864624px;}
.ws1c{word-spacing:20.981958px;}
.wscb{word-spacing:21.519216px;}
.ws70{word-spacing:21.638767px;}
.ws5b{word-spacing:21.818094px;}
.ws85{word-spacing:22.356074px;}
.wsec{word-spacing:22.953830px;}
.ws124{word-spacing:23.133157px;}
.ws48{word-spacing:23.253642px;}
.ws2c{word-spacing:23.288340px;}
.ws197{word-spacing:24.962353px;}
.wsa9{word-spacing:25.404630px;}
.ws38{word-spacing:26.840561px;}
.ws37{word-spacing:31.084560px;}
.wse1{word-spacing:52.479522px;}
.ws149{word-spacing:53.981089px;}
.ws12d{word-spacing:54.625982px;}
.wse3{word-spacing:54.830605px;}
.ws14d{word-spacing:57.565433px;}
.ws11d{word-spacing:59.775750px;}
.ws12e{word-spacing:66.185064px;}
.ws150{word-spacing:69.570827px;}
.ws14e{word-spacing:70.780004px;}
.ws14c{word-spacing:71.945995px;}
.ws14f{word-spacing:71.989180px;}
.wse4{word-spacing:79.055152px;}
.wsa1{word-spacing:80.877505px;}
.wsf4{word-spacing:92.389399px;}
.ws11c{word-spacing:95.641200px;}
.wsb0{word-spacing:102.406032px;}
.ws137{word-spacing:125.527291px;}
.wsa3{word-spacing:156.671398px;}
.ws110{word-spacing:338.131632px;}
.wse5{word-spacing:644.826382px;}
._34{margin-left:-323.526110px;}
._31{margin-left:-186.213076px;}
._32{margin-left:-169.972100px;}
._2e{margin-left:-133.153163px;}
._35{margin-left:-130.584426px;}
._30{margin-left:-102.466636px;}
._2f{margin-left:-91.540469px;}
._33{margin-left:-47.728792px;}
._1a{margin-left:-7.113177px;}
._2{margin-left:-5.337582px;}
._8{margin-left:-3.885294px;}
._0{margin-left:-2.869200px;}
._1{margin-left:-1.494510px;}
._b{width:1.129349px;}
._5{width:2.988900px;}
._12{width:4.303843px;}
._e{width:6.515540px;}
._4{width:8.870634px;}
._5f{width:10.042301px;}
._6{width:13.090186px;}
._9{width:14.166817px;}
._11{width:15.661207px;}
._f{width:17.633922px;}
._10{width:18.708562px;}
._2c{width:21.758318px;}
._d{width:25.032647px;}
._3{width:27.704886px;}
._a{width:29.887800px;}
._1e{width:33.295009px;}
._7{width:35.866800px;}
._60{width:47.545344px;}
._36{width:58.722679px;}
._2d{width:61.987297px;}
._59{width:64.344649px;}
._16{width:66.502050px;}
._48{width:69.001681px;}
._15{width:71.120248px;}
._1d{width:72.341552px;}
._38{width:75.487683px;}
._17{width:78.072113px;}
._54{width:82.481624px;}
._2b{width:83.686050px;}
._13{width:87.499951px;}
._2a{width:91.191740px;}
._27{width:93.022947px;}
._28{width:94.913791px;}
._14{width:96.184468px;}
._5a{width:103.168657px;}
._3d{width:109.597800px;}
._39{width:111.785849px;}
._5c{width:113.964875px;}
._43{width:115.028850px;}
._5e{width:116.417695px;}
._18{width:117.554129px;}
._25{width:119.551500px;}
._19{width:121.290671px;}
._1c{width:129.546005px;}
._26{width:131.506650px;}
._4c{width:132.689529px;}
._37{width:136.326240px;}
._24{width:141.501155px;}
._23{width:143.413979px;}
._40{width:150.115774px;}
._4b{width:153.319703px;}
._44{width:157.656728px;}
._51{width:159.844777px;}
._45{width:160.899729px;}
._3e{width:161.993753px;}
._5d{width:166.348123px;}
._50{width:167.424803px;}
._3f{width:170.667804px;}
._53{width:171.761828px;}
._55{width:174.535962px;}
._57{width:179.346769px;}
._58{width:183.188879px;}
._3c{width:193.105066px;}
._1b{width:199.316261px;}
._4a{width:203.215029px;}
._41{width:204.348126px;}
._5b{width:210.008028px;}
._46{width:214.116201px;}
._42{width:220.992926px;}
._c{width:223.482945px;}
._20{width:227.250775px;}
._47{width:230.761000px;}
._4d{width:232.050386px;}
._3a{width:239.356906px;}
._21{width:248.188914px;}
._29{width:258.852908px;}
._56{width:266.238648px;}
._4e{width:286.126449px;}
._3b{width:288.236353px;}
._22{width:289.362451px;}
._52{width:300.069601px;}
._49{width:308.943004px;}
._4f{width:310.076100px;}
._1f{width:475.355601px;}
.fc7{color:rgb(255,127,14);}
.fc6{color:rgb(31,119,180);}
.fc5{color:rgb(252,234,16);}
.fc4{color:rgb(255,237,0);}
.fc3{color:transparent;}
.fc2{color:rgb(39,83,23);}
.fc1{color:rgb(116,116,116);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:19.488499px;}
.fs17{font-size:21.750960px;}
.fs19{font-size:26.152200px;}
.fs11{font-size:27.190541px;}
.fs12{font-size:27.213880px;}
.fs16{font-size:31.072800px;}
.fs10{font-size:31.158259px;}
.fs1a{font-size:31.382640px;}
.fs9{font-size:34.151328px;}
.fsf{font-size:35.865600px;}
.fs5{font-size:35.868000px;}
.fs18{font-size:37.287360px;}
.fs1b{font-size:39.072299px;}
.fse{font-size:41.842800px;}
.fs4{font-size:41.844000px;}
.fs14{font-size:41.983618px;}
.fs1c{font-size:43.184871px;}
.fs15{font-size:43.945200px;}
.fs3{font-size:47.820000px;}
.fs8{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.815808px;}
.fsd{font-size:51.933571px;}
.fs2{font-size:53.796000px;}
.fsb{font-size:54.171072px;}
.fsc{font-size:54.288835px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fs0{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:0.099679px;}
.yac{bottom:3.839571px;}
.y67{bottom:3.900000px;}
.y61{bottom:3.900015px;}
.yae{bottom:4.980402px;}
.y1d0{bottom:8.682177px;}
.y1ea{bottom:8.953451px;}
.yf2{bottom:11.295355px;}
.y1d1{bottom:11.655941px;}
.yf1{bottom:14.429172px;}
.y66{bottom:15.900000px;}
.ye7{bottom:16.291471px;}
.y1e9{bottom:17.892191px;}
.yad{bottom:19.848006px;}
.y1cf{bottom:20.413373px;}
.ye5{bottom:21.185477px;}
.ye6{bottom:24.460303px;}
.yf0{bottom:24.547826px;}
.y62{bottom:26.985750px;}
.y65{bottom:27.900000px;}
.y1d2{bottom:29.043358px;}
.yaf{bottom:35.279892px;}
.y1eb{bottom:36.926334px;}
.ya5{bottom:39.573342px;}
.y64{bottom:39.900000px;}
.ydd{bottom:46.170919px;}
.y1d4{bottom:50.456887px;}
.yef{bottom:51.089237px;}
.y1d6{bottom:51.452187px;}
.y63{bottom:51.900000px;}
.ya4{bottom:55.765782px;}
.ye1{bottom:58.990637px;}
.yee{bottom:59.258069px;}
.y1ec{bottom:60.876519px;}
.y1f0{bottom:61.688136px;}
.yde{bottom:67.001441px;}
.y1ed{bottom:84.826704px;}
.ye0{bottom:86.584757px;}
.yec{bottom:95.008865px;}
.ydc{bottom:98.264242px;}
.yeb{bottom:99.093281px;}
.yed{bottom:103.177697px;}
.ydb{bottom:107.600050px;}
.y1ee{bottom:108.776889px;}
.y36{bottom:113.332500px;}
.yda{bottom:116.935858px;}
.y5f{bottom:117.552000px;}
.ya1{bottom:117.738666px;}
.ya3{bottom:118.069875px;}
.y153{bottom:118.713000px;}
.yea{bottom:119.773068px;}
.ye4{bottom:120.903576px;}
.ydf{bottom:121.207476px;}
.y1d3{bottom:122.662906px;}
.y35{bottom:126.783000px;}
.y9b{bottom:131.265000px;}
.y17d{bottom:131.266500px;}
.y19e{bottom:132.346500px;}
.y1ef{bottom:132.727073px;}
.ya0{bottom:133.931106px;}
.ya2{bottom:134.262315px;}
.y1f2{bottom:137.433897px;}
.y9e{bottom:138.089619px;}
.ye9{bottom:138.515189px;}
.y34{bottom:140.232000px;}
.yd5{bottom:142.659000px;}
.y152{bottom:143.774268px;}
.y11b{bottom:145.656000px;}
.yd9{bottom:145.964386px;}
.y1d8{bottom:146.469411px;}
.ye8{bottom:146.684021px;}
.y19d{bottom:147.141000px;}
.y9a{bottom:149.199000px;}
.y1f3{bottom:149.425500px;}
.y1f1{bottom:151.107412px;}
.y5e{bottom:152.440500px;}
.y33{bottom:153.681000px;}
.ye3{bottom:153.715051px;}
.y250{bottom:153.825000px;}
.y1d7{bottom:155.162512px;}
.y151{bottom:155.583000px;}
.ye2{bottom:159.793051px;}
.yd4{bottom:160.593000px;}
.yd8{bottom:160.891954px;}
.y19c{bottom:161.935500px;}
.yd7{bottom:163.201594px;}
.y11a{bottom:163.588500px;}
.y1d9{bottom:164.168769px;}
.y32{bottom:167.131500px;}
.y24f{bottom:167.274000px;}
.y150{bottom:167.915862px;}
.y5d{bottom:170.374500px;}
.y1e8{bottom:170.944500px;}
.ya8{bottom:171.590796px;}
.yab{bottom:173.774322px;}
.y1d5{bottom:177.835946px;}
.yd3{bottom:178.525500px;}
.y31{bottom:180.580500px;}
.y24e{bottom:180.724500px;}
.y119{bottom:181.521000px;}
.y99{bottom:185.064000px;}
.ya7{bottom:187.783236px;}
.y5c{bottom:188.307000px;}
.yaa{bottom:189.966762px;}
.y19b{bottom:190.236000px;}
.y30{bottom:194.031000px;}
.y24d{bottom:194.317500px;}
.y14f{bottom:195.117000px;}
.yd2{bottom:196.458000px;}
.y118{bottom:199.453500px;}
.y98{bottom:202.996500px;}
.ya6{bottom:203.975676px;}
.ya9{bottom:206.159202px;}
.y5b{bottom:206.239500px;}
.y2f{bottom:207.480000px;}
.y24c{bottom:207.766500px;}
.y19a{bottom:208.168500px;}
.y9d{bottom:209.422224px;}
.y14e{bottom:213.049500px;}
.yd1{bottom:214.390500px;}
.y117{bottom:217.387500px;}
.y97{bottom:220.929000px;}
.y24b{bottom:221.215500px;}
.y224{bottom:221.254500px;}
.y5a{bottom:224.172000px;}
.y199{bottom:226.101000px;}
.y14d{bottom:230.982000px;}
.y24a{bottom:234.808500px;}
.yd0{bottom:234.825000px;}
.y2e{bottom:234.870000px;}
.y116{bottom:235.320000px;}
.yb1{bottom:236.152017px;}
.y17c{bottom:238.863000px;}
.y223{bottom:239.187000px;}
.y59{bottom:242.104500px;}
.y198{bottom:244.033500px;}
.y96{bottom:245.080500px;}
.y249{bottom:248.259000px;}
.y14c{bottom:248.914500px;}
.y9f{bottom:249.375843px;}
.yb0{bottom:249.670251px;}
.ycf{bottom:252.757500px;}
.y2d{bottom:252.802500px;}
.y115{bottom:253.252500px;}
.y17b{bottom:256.795500px;}
.y222{bottom:257.119500px;}
.y58{bottom:260.037000px;}
.y248{bottom:261.708000px;}
.y197{bottom:261.966000px;}
.y14b{bottom:266.847000px;}
.y95{bottom:270.310500px;}
.yce{bottom:270.690000px;}
.y2c{bottom:270.735000px;}
.y114{bottom:271.801500px;}
.y17a{bottom:274.728000px;}
.y221{bottom:275.052000px;}
.y247{bottom:275.301000px;}
.y57{bottom:277.971000px;}
.y196{bottom:279.898500px;}
.y14a{bottom:284.781000px;}
.ycd{bottom:288.622500px;}
.y2b{bottom:288.669000px;}
.y246{bottom:288.750000px;}
.y113{bottom:289.734000px;}
.y179{bottom:292.660500px;}
.y220{bottom:292.984500px;}
.y56{bottom:295.903500px;}
.y195{bottom:297.832500px;}
.y94{bottom:302.001000px;}
.y245{bottom:302.200500px;}
.y18e{bottom:302.565265px;}
.y149{bottom:302.713500px;}
.y2a{bottom:306.601500px;}
.y112{bottom:307.666500px;}
.y178{bottom:310.593000px;}
.y21f{bottom:310.918500px;}
.ycc{bottom:311.112000px;}
.y55{bottom:313.836000px;}
.y18d{bottom:315.748825px;}
.y244{bottom:315.792000px;}
.y93{bottom:319.933500px;}
.y148{bottom:320.646000px;}
.y29{bottom:324.534000px;}
.y111{bottom:325.599000px;}
.y1c7{bottom:327.999000px;}
.y177{bottom:328.525500px;}
.y21e{bottom:328.851000px;}
.y243{bottom:329.242500px;}
.y54{bottom:331.768500px;}
.y194{bottom:334.344000px;}
.y92{bottom:337.866000px;}
.ycb{bottom:338.223000px;}
.y147{bottom:338.578500px;}
.y28{bottom:342.466500px;}
.y242{bottom:342.691500px;}
.y110{bottom:343.531500px;}
.y176{bottom:346.459500px;}
.y21d{bottom:346.783500px;}
.y193{bottom:352.276500px;}
.y1c6{bottom:353.553000px;}
.y18c{bottom:353.877439px;}
.y91{bottom:355.798500px;}
.yca{bottom:356.155500px;}
.y241{bottom:356.284500px;}
.y146{bottom:356.511000px;}
.y53{bottom:357.523500px;}
.y1e7{bottom:360.333000px;}
.y27{bottom:360.399000px;}
.y10f{bottom:361.464000px;}
.y18b{bottom:364.215547px;}
.y175{bottom:364.392000px;}
.y21c{bottom:364.716000px;}
.y1c5{bottom:367.003500px;}
.y240{bottom:369.733500px;}
.y192{bottom:370.210500px;}
.yc9{bottom:374.088000px;}
.y90{bottom:374.163000px;}
.y145{bottom:374.443500px;}
.y52{bottom:377.745000px;}
.y1e6{bottom:378.265500px;}
.y26{bottom:378.333000px;}
.y1c4{bottom:381.051000px;}
.y21b{bottom:382.648500px;}
.y23f{bottom:383.184000px;}
.y10e{bottom:383.253000px;}
.y27e{bottom:386.808000px;}
.y191{bottom:388.143000px;}
.yc8{bottom:392.020500px;}
.y8f{bottom:392.095500px;}
.y144{bottom:392.377500px;}
.y1c3{bottom:394.500000px;}
.y51{bottom:395.677500px;}
.y1e5{bottom:396.198000px;}
.y25{bottom:396.265500px;}
.y23e{bottom:396.777000px;}
.y27d{bottom:400.257000px;}
.y10d{bottom:401.185500px;}
.y190{bottom:406.075500px;}
.y174{bottom:407.677500px;}
.y1c2{bottom:408.547500px;}
.yc7{bottom:409.953000px;}
.y8e{bottom:410.028000px;}
.y23d{bottom:410.226000px;}
.y143{bottom:410.310000px;}
.y50{bottom:413.611500px;}
.y27c{bottom:413.707500px;}
.y1e4{bottom:414.130500px;}
.y24{bottom:414.198000px;}
.y10c{bottom:419.118000px;}
.y21a{bottom:419.158500px;}
.y23c{bottom:423.675000px;}
.y18f{bottom:424.008000px;}
.y27b{bottom:427.156500px;}
.yc6{bottom:427.887000px;}
.y8d{bottom:427.962000px;}
.y142{bottom:428.242500px;}
.y4f{bottom:431.544000px;}
.y1e3{bottom:432.064500px;}
.y23{bottom:432.130500px;}
.y173{bottom:433.231500px;}
.y1c1{bottom:436.458000px;}
.y10b{bottom:437.050500px;}
.y23b{bottom:437.268000px;}
.y27a{bottom:440.605500px;}
.y18a{bottom:445.527000px;}
.yc5{bottom:445.819500px;}
.y8c{bottom:445.894500px;}
.y141{bottom:446.175000px;}
.y172{bottom:447.277500px;}
.y4e{bottom:449.476500px;}
.y1e2{bottom:449.997000px;}
.y22{bottom:450.063000px;}
.y23a{bottom:450.718500px;}
.y279{bottom:454.056000px;}
.y1c0{bottom:454.392000px;}
.y10a{bottom:454.983000px;}
.y219{bottom:457.007384px;}
.yc4{bottom:463.752000px;}
.y8b{bottom:463.827000px;}
.y140{bottom:464.107500px;}
.y239{bottom:464.167500px;}
.y4d{bottom:467.409000px;}
.y278{bottom:467.505000px;}
.y1e1{bottom:467.929500px;}
.y21{bottom:467.995500px;}
.y217{bottom:469.152638px;}
.y1bf{bottom:472.324500px;}
.y109{bottom:472.917000px;}
.y171{bottom:477.084000px;}
.y277{bottom:480.955500px;}
.y218{bottom:481.299246px;}
.yc3{bottom:481.684500px;}
.y8a{bottom:481.759500px;}
.y4c{bottom:485.341500px;}
.y1e0{bottom:485.862000px;}
.y20{bottom:485.929500px;}
.y13f{bottom:487.348500px;}
.y238{bottom:487.906500px;}
.y1be{bottom:490.257000px;}
.y108{bottom:490.849500px;}
.y216{bottom:493.984981px;}
.y276{bottom:494.404500px;}
.yc2{bottom:499.617000px;}
.y89{bottom:500.124000px;}
.y170{bottom:501.915000px;}
.y4b{bottom:503.274000px;}
.y1df{bottom:503.794500px;}
.y1f{bottom:503.862000px;}
.y215{bottom:506.130235px;}
.y275{bottom:507.853500px;}
.y1bd{bottom:508.189500px;}
.y107{bottom:508.782000px;}
.y212{bottom:512.202862px;}
.y13e{bottom:516.828000px;}
.yc1{bottom:517.549500px;}
.y88{bottom:518.056500px;}
.y237{bottom:518.118000px;}
.y214{bottom:518.275489px;}
.y16f{bottom:519.847500px;}
.y274{bottom:521.304000px;}
.y1de{bottom:521.727000px;}
.y1e{bottom:521.794500px;}
.y4a{bottom:523.497000px;}
.y1bc{bottom:526.129500px;}
.y106{bottom:526.714500px;}
.y213{bottom:530.422098px;}
.y273{bottom:534.753000px;}
.y13d{bottom:534.760500px;}
.yc0{bottom:535.483500px;}
.y87{bottom:535.989000px;}
.y236{bottom:536.052000px;}
.y16e{bottom:537.780000px;}
.y1dd{bottom:539.661000px;}
.y1d{bottom:539.727000px;}
.y49{bottom:541.429500px;}
.y211{bottom:543.107833px;}
.y1bb{bottom:544.062000px;}
.y105{bottom:544.647000px;}
.y272{bottom:548.202000px;}
.y13c{bottom:552.693000px;}
.ybf{bottom:553.416000px;}
.y86{bottom:553.923000px;}
.y235{bottom:553.984500px;}
.y16d{bottom:555.712500px;}
.y1dc{bottom:557.593500px;}
.y48{bottom:559.362000px;}
.y271{bottom:561.652500px;}
.y1ba{bottom:561.994500px;}
.y1c{bottom:562.105500px;}
.y104{bottom:562.579500px;}
.y13b{bottom:570.627000px;}
.y210{bottom:570.952500px;}
.y85{bottom:571.855500px;}
.y234{bottom:571.917000px;}
.y16c{bottom:573.646500px;}
.y270{bottom:575.101500px;}
.y1db{bottom:575.526000px;}
.ybe{bottom:575.904000px;}
.y47{bottom:577.294500px;}
.y103{bottom:580.513500px;}
.y1b{bottom:588.550500px;}
.y26f{bottom:588.552000px;}
.y13a{bottom:588.559500px;}
.y20f{bottom:588.885000px;}
.y84{bottom:589.788000px;}
.y233{bottom:589.849500px;}
.y16b{bottom:591.579000px;}
.y46{bottom:595.228500px;}
.y1b9{bottom:597.333000px;}
.y102{bottom:598.446000px;}
.y26e{bottom:602.001000px;}
.ybd{bottom:603.015000px;}
.y1a{bottom:603.495000px;}
.y139{bottom:606.492000px;}
.y20e{bottom:606.817500px;}
.y83{bottom:607.720500px;}
.y232{bottom:607.782000px;}
.y16a{bottom:609.511500px;}
.y1da{bottom:611.619000px;}
.y45{bottom:613.161000px;}
.y26d{bottom:615.450000px;}
.y19{bottom:618.439500px;}
.y101{bottom:620.548500px;}
.ybc{bottom:620.949000px;}
.y1b8{bottom:622.888500px;}
.y138{bottom:624.424500px;}
.y20d{bottom:624.750000px;}
.y82{bottom:625.653000px;}
.y231{bottom:625.714500px;}
.y169{bottom:627.444000px;}
.y26c{bottom:628.900500px;}
.y1b7{bottom:629.613000px;}
.y100{bottom:630.799500px;}
.y44{bottom:631.093500px;}
.y1ce{bottom:633.138000px;}
.y18{bottom:633.382500px;}
.ybb{bottom:638.881500px;}
.y26b{bottom:642.349500px;}
.y137{bottom:642.357000px;}
.y20c{bottom:642.684000px;}
.y81{bottom:643.585500px;}
.y230{bottom:643.648500px;}
.y168{bottom:645.376500px;}
.y17{bottom:648.327000px;}
.y43{bottom:649.026000px;}
.y1b6{bottom:650.385000px;}
.y26a{bottom:655.798500px;}
.yba{bottom:656.814000px;}
.y136{bottom:660.289500px;}
.y20b{bottom:660.616500px;}
.y80{bottom:661.519500px;}
.y22f{bottom:661.581000px;}
.y16{bottom:663.271500px;}
.y167{bottom:663.309000px;}
.y1b5{bottom:664.432500px;}
.yff{bottom:665.685000px;}
.y42{bottom:666.958500px;}
.y269{bottom:669.249000px;}
.yb9{bottom:674.746500px;}
.y15{bottom:678.214500px;}
.y135{bottom:678.223500px;}
.y20a{bottom:678.549000px;}
.y7f{bottom:679.452000px;}
.y22e{bottom:679.513500px;}
.y268{bottom:682.698000px;}
.yfe{bottom:683.619000px;}
.y41{bottom:684.891000px;}
.y166{bottom:688.141500px;}
.y1b4{bottom:692.343000px;}
.yb8{bottom:692.679000px;}
.y14{bottom:693.159000px;}
.y267{bottom:696.148500px;}
.y209{bottom:696.481500px;}
.y7e{bottom:697.384500px;}
.y22d{bottom:697.446000px;}
.y132{bottom:700.779000px;}
.yfd{bottom:701.551500px;}
.y40{bottom:702.825000px;}
.y165{bottom:706.074000px;}
.y13{bottom:708.102000px;}
.y12f{bottom:708.160500px;}
.y266{bottom:709.597500px;}
.y1b3{bottom:710.275500px;}
.yb7{bottom:710.613000px;}
.y208{bottom:714.414000px;}
.y7d{bottom:715.317000px;}
.y22c{bottom:715.378500px;}
.y12e{bottom:718.410000px;}
.y134{bottom:718.411500px;}
.y3f{bottom:720.757500px;}
.y12{bottom:723.046500px;}
.yfc{bottom:723.339000px;}
.y164{bottom:724.006500px;}
.y1b2{bottom:728.209500px;}
.y133{bottom:728.520000px;}
.yb6{bottom:728.545500px;}
.y207{bottom:732.348000px;}
.y131{bottom:732.607500px;}
.y7c{bottom:733.249500px;}
.y22b{bottom:733.312500px;}
.y265{bottom:736.497000px;}
.y130{bottom:737.091000px;}
.y11{bottom:737.991000px;}
.y3e{bottom:738.690000px;}
.yfb{bottom:741.271500px;}
.y163{bottom:741.939000px;}
.y1b1{bottom:746.142000px;}
.yb5{bottom:746.478000px;}
.y264{bottom:749.946000px;}
.y206{bottom:750.280500px;}
.y7b{bottom:751.182000px;}
.y10{bottom:752.934000px;}
.y3d{bottom:756.622500px;}
.y22a{bottom:757.498500px;}
.y12d{bottom:759.819000px;}
.y162{bottom:759.871500px;}
.yfa{bottom:763.059000px;}
.y263{bottom:763.395000px;}
.y1b0{bottom:764.074500px;}
.yb4{bottom:764.410500px;}
.yf{bottom:767.878500px;}
.y205{bottom:768.213000px;}
.y7a{bottom:769.116000px;}
.y3c{bottom:774.555000px;}
.y262{bottom:776.845500px;}
.y12c{bottom:777.751500px;}
.y161{bottom:777.805500px;}
.yf9{bottom:780.993000px;}
.y1af{bottom:782.007000px;}
.yb3{bottom:782.343000px;}
.ye{bottom:782.823000px;}
.y204{bottom:786.145500px;}
.y79{bottom:787.048500px;}
.y229{bottom:787.711500px;}
.y261{bottom:790.294500px;}
.y3b{bottom:792.487500px;}
.y12b{bottom:795.684000px;}
.y160{bottom:795.738000px;}
.yd{bottom:797.766000px;}
.yf8{bottom:798.925500px;}
.y1ae{bottom:799.939500px;}
.y260{bottom:803.745000px;}
.y78{bottom:805.413000px;}
.y228{bottom:805.644000px;}
.y203{bottom:810.732000px;}
.yc{bottom:812.710500px;}
.y12a{bottom:813.616500px;}
.y15f{bottom:813.670500px;}
.yf7{bottom:816.858000px;}
.y25f{bottom:817.194000px;}
.y1ad{bottom:822.604500px;}
.y77{bottom:823.345500px;}
.y227{bottom:823.576500px;}
.yb{bottom:827.655000px;}
.y3a{bottom:830.643000px;}
.y15e{bottom:831.603000px;}
.yb2{bottom:831.837000px;}
.yf6{bottom:834.790500px;}
.y129{bottom:836.857500px;}
.y76{bottom:841.278000px;}
.y202{bottom:841.509000px;}
.ya{bottom:842.598000px;}
.y25e{bottom:844.093500px;}
.y1ac{bottom:845.286000px;}
.y1cd{bottom:848.286000px;}
.y39{bottom:848.575500px;}
.yf5{bottom:852.723000px;}
.y9c{bottom:853.356000px;}
.y9{bottom:857.542500px;}
.y75{bottom:859.210500px;}
.y226{bottom:859.441500px;}
.y201{bottom:859.443000px;}
.y15d{bottom:860.725500px;}
.y1cc{bottom:866.218500px;}
.y128{bottom:866.337000px;}
.y38{bottom:866.508000px;}
.y25d{bottom:870.991500px;}
.y8{bottom:872.487000px;}
.y1ab{bottom:873.364500px;}
.y74{bottom:877.143000px;}
.y200{bottom:877.375500px;}
.y189{bottom:878.169000px;}
.y1cb{bottom:884.151000px;}
.y127{bottom:884.269500px;}
.y37{bottom:884.442000px;}
.y7{bottom:887.430000px;}
.y1aa{bottom:891.297000px;}
.y15c{bottom:894.477000px;}
.y73{bottom:895.077000px;}
.y1ff{bottom:895.308000px;}
.y188{bottom:896.101500px;}
.y25c{bottom:897.891000px;}
.y1ca{bottom:902.085000px;}
.y126{bottom:902.202000px;}
.y6{bottom:902.374500px;}
.yf4{bottom:904.926000px;}
.y1a9{bottom:909.229500px;}
.y25b{bottom:911.340000px;}
.y72{bottom:913.009500px;}
.y1fe{bottom:913.240500px;}
.y187{bottom:914.035500px;}
.y1c9{bottom:920.017500px;}
.y125{bottom:920.134500px;}
.y25a{bottom:924.790500px;}
.yd6{bottom:926.445000px;}
.y1a8{bottom:927.162000px;}
.y71{bottom:930.942000px;}
.y1fd{bottom:931.173000px;}
.y186{bottom:931.968000px;}
.y1c8{bottom:937.950000px;}
.y124{bottom:938.068500px;}
.y15b{bottom:938.239500px;}
.y1a7{bottom:945.096000px;}
.y70{bottom:948.874500px;}
.y1fc{bottom:949.105500px;}
.y185{bottom:949.900500px;}
.y259{bottom:951.690000px;}
.y5{bottom:955.249500px;}
.y123{bottom:956.001000px;}
.y15a{bottom:956.172000px;}
.y1a6{bottom:963.028500px;}
.y258{bottom:965.139000px;}
.y6f{bottom:966.807000px;}
.y225{bottom:967.038000px;}
.y1fb{bottom:967.039500px;}
.y184{bottom:967.833000px;}
.y4{bottom:973.743000px;}
.y122{bottom:973.933500px;}
.y159{bottom:974.104500px;}
.y257{bottom:978.588000px;}
.y6e{bottom:984.741000px;}
.y183{bottom:985.765500px;}
.y121{bottom:991.866000px;}
.y158{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y6d{bottom:1002.673500px;}
.y182{bottom:1003.698000px;}
.y256{bottom:1005.487500px;}
.y120{bottom:1009.798500px;}
.y157{bottom:1009.971000px;}
.y1a5{bottom:1012.810500px;}
.y1fa{bottom:1018.147500px;}
.y255{bottom:1018.936500px;}
.y6c{bottom:1020.606000px;}
.y181{bottom:1021.632000px;}
.y1a4{bottom:1026.858000px;}
.y11f{bottom:1027.731000px;}
.y156{bottom:1027.903500px;}
.y254{bottom:1032.387000px;}
.y6b{bottom:1038.538500px;}
.y2{bottom:1039.309500px;}
.y180{bottom:1039.564500px;}
.y1a3{bottom:1040.307000px;}
.y11e{bottom:1045.665000px;}
.y155{bottom:1045.836000px;}
.y1a2{bottom:1053.756000px;}
.y1f9{bottom:1054.440387px;}
.y6a{bottom:1056.471000px;}
.y17f{bottom:1057.497000px;}
.y253{bottom:1059.286500px;}
.y11d{bottom:1063.597500px;}
.y154{bottom:1063.768500px;}
.y1f8{bottom:1065.430252px;}
.y1a1{bottom:1067.206500px;}
.y252{bottom:1072.735500px;}
.y69{bottom:1074.403500px;}
.y17e{bottom:1075.429500px;}
.y1f7{bottom:1076.418892px;}
.y1a0{bottom:1080.655500px;}
.y1{bottom:1081.152000px;}
.y11c{bottom:1081.701000px;}
.y251{bottom:1086.184500px;}
.y1f6{bottom:1087.408758px;}
.y1f5{bottom:1098.397398px;}
.y68{bottom:1099.635000px;}
.y19f{bottom:1105.014000px;}
.y1f4{bottom:1109.875048px;}
.y60{bottom:1135.315485px;}
.h23{height:0.000000px;}
.h9{height:16.380015px;}
.h1b{height:16.471969px;}
.h31{height:20.206642px;}
.h18{height:23.499637px;}
.h1c{height:23.519809px;}
.h35{height:24.295394px;}
.h15{height:24.675533px;}
.h8{height:24.677184px;}
.h37{height:26.881742px;}
.h17{height:26.928769px;}
.h1a{height:27.276222px;}
.h2c{height:28.787846px;}
.h30{height:28.866631px;}
.h25{height:28.884729px;}
.h36{height:29.154473px;}
.hf{height:29.515552px;}
.h39{height:29.711191px;}
.h22{height:29.833916px;}
.h3a{height:29.970300px;}
.h38{height:30.833998px;}
.h2a{height:31.201092px;}
.h32{height:32.101698px;}
.h3b{height:32.804932px;}
.h6{height:32.900160px;}
.h26{height:32.900573px;}
.h2b{height:34.143908px;}
.h33{height:34.639957px;}
.ha{height:34.945312px;}
.h5{height:37.334424px;}
.h4{height:37.603404px;}
.h19{height:39.837301px;}
.hd{height:41.006062px;}
.h3{height:41.007708px;}
.hc{height:41.125613px;}
.h2{height:41.127264px;}
.h1d{height:41.783144px;}
.h29{height:42.582899px;}
.h24{height:42.799330px;}
.h10{height:44.782217px;}
.h21{height:44.831700px;}
.h13{height:44.883995px;}
.h11{height:46.817772px;}
.h12{height:46.919550px;}
.h2d{height:49.473619px;}
.h14{height:50.477846px;}
.h27{height:50.483846px;}
.h7{height:50.484672px;}
.h2e{height:59.798573px;}
.hb{height:64.380015px;}
.h1e{height:85.265700px;}
.h20{height:85.271700px;}
.h1f{height:85.835700px;}
.h1{height:98.700480px;}
.h34{height:164.758860px;}
.h16{height:185.743680px;}
.h2f{height:190.517533px;}
.he{height:258.833700px;}
.h28{height:407.591730px;}
.h0{height:1188.000000px;}
.w6{width:184.528736px;}
.w5{width:338.927355px;}
.w1{width:367.536000px;}
.w7{width:376.591680px;}
.w4{width:376.592880px;}
.w3{width:376.596900px;}
.w2{width:709.644000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x36{left:5.066621px;}
.x1f{left:8.059419px;}
.x5a{left:11.492081px;}
.x18{left:13.763574px;}
.x28{left:16.520004px;}
.x17{left:17.627679px;}
.x27{left:19.041158px;}
.x63{left:21.625111px;}
.x1a{left:28.336770px;}
.x58{left:29.456043px;}
.x1c{left:30.692034px;}
.x1b{left:38.346642px;}
.x37{left:43.238892px;}
.x59{left:57.540514px;}
.x5e{left:62.201434px;}
.x22{left:63.432657px;}
.x5f{left:68.144724px;}
.x7{left:73.446000px;}
.x5b{left:77.950246px;}
.x57{left:82.411500px;}
.x1{left:84.655500px;}
.x6{left:88.390500px;}
.x3b{left:89.536500px;}
.x2{left:90.645000px;}
.x67{left:93.147248px;}
.x69{left:95.740596px;}
.x68{left:97.366954px;}
.x64{left:100.283471px;}
.xf{left:101.401200px;}
.x3a{left:103.479000px;}
.x12{left:106.207686px;}
.x32{left:107.714316px;}
.x53{left:109.969500px;}
.x55{left:111.748500px;}
.x2f{left:114.400116px;}
.x2e{left:117.113335px;}
.x56{left:121.728000px;}
.x52{left:122.928000px;}
.x3c{left:129.096000px;}
.x35{left:134.758985px;}
.x4a{left:138.327000px;}
.x49{left:140.292000px;}
.x61{left:143.395146px;}
.x31{left:146.188056px;}
.x16{left:147.375738px;}
.x15{left:149.436594px;}
.x14{left:151.816392px;}
.x54{left:153.342000px;}
.x6b{left:154.689000px;}
.x4f{left:156.325500px;}
.x60{left:157.843998px;}
.x19{left:161.323317px;}
.x4e{left:164.821500px;}
.x34{left:168.343582px;}
.x51{left:169.911000px;}
.x39{left:171.598500px;}
.x33{left:174.382682px;}
.x5c{left:177.321303px;}
.x50{left:179.161500px;}
.x30{left:182.605001px;}
.x5{left:185.782500px;}
.x10{left:197.317500px;}
.x8{left:203.428500px;}
.x4c{left:205.243347px;}
.x4{left:210.925500px;}
.x65{left:212.912248px;}
.x11{left:214.749000px;}
.x3d{left:258.928500px;}
.x29{left:261.930194px;}
.x4d{left:263.826766px;}
.x2d{left:265.686398px;}
.x21{left:267.837678px;}
.x20{left:269.223849px;}
.x25{left:273.529450px;}
.x24{left:275.839090px;}
.x26{left:277.368314px;}
.x2a{left:278.377262px;}
.x13{left:280.497222px;}
.x3{left:283.485000px;}
.x1e{left:293.009562px;}
.x1d{left:298.603314px;}
.x6a{left:304.047000px;}
.xe{left:306.706500px;}
.x2c{left:318.141970px;}
.x2b{left:319.707662px;}
.x38{left:353.654508px;}
.x9{left:467.967000px;}
.x6e{left:473.944500px;}
.xd{left:479.922000px;}
.xa{left:482.910000px;}
.xb{left:484.057500px;}
.x4b{left:486.796500px;}
.x6f{left:495.355500px;}
.xc{left:498.000000px;}
.x66{left:504.505500px;}
.x3e{left:521.893500px;}
.x48{left:545.242500px;}
.x62{left:555.060000px;}
.x23{left:581.368500px;}
.x6c{left:595.954500px;}
.x3f{left:608.668500px;}
.x6d{left:614.418000px;}
.x41{left:652.326000px;}
.x42{left:653.439000px;}
.x40{left:657.825000px;}
.x5d{left:660.024000px;}
.x43{left:678.195000px;}
.x44{left:695.652000px;}
.x45{left:734.968500px;}
.x46{left:752.488500px;}
.x47{left:827.130000px;}
@media print{
.v7{vertical-align:-20.990960pt;}
.v2{vertical-align:-15.002667pt;}
.va{vertical-align:-10.573383pt;}
.v6{vertical-align:-7.968000pt;}
.v8{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.603780pt;}
.vb{vertical-align:10.573383pt;}
.v3{vertical-align:14.522368pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:23.909333pt;}
.v5{vertical-align:35.941333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000267pt;}
.ls13{letter-spacing:0.001014pt;}
.ls17{letter-spacing:0.001962pt;}
.ls16{letter-spacing:0.001975pt;}
.lsa{letter-spacing:0.001995pt;}
.lse{letter-spacing:0.002079pt;}
.ls9{letter-spacing:0.002387pt;}
.ls8{letter-spacing:0.002906pt;}
.ls6{letter-spacing:0.014655pt;}
.ls20{letter-spacing:0.052038pt;}
.ls29{letter-spacing:0.407455pt;}
.ls25{letter-spacing:0.412788pt;}
.ls27{letter-spacing:0.759698pt;}
.ls2f{letter-spacing:1.596032pt;}
.ls2{letter-spacing:2.182963pt;}
.ls2c{letter-spacing:2.635446pt;}
.ls2d{letter-spacing:2.654903pt;}
.ls24{letter-spacing:2.655711pt;}
.ls0{letter-spacing:2.656000pt;}
.ls4{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.656693pt;}
.ls5{letter-spacing:2.657067pt;}
.ls2e{letter-spacing:2.661348pt;}
.ls30{letter-spacing:11.293383pt;}
.ls10{letter-spacing:11.803145pt;}
.lsb{letter-spacing:11.805573pt;}
.ls19{letter-spacing:11.808479pt;}
.lsf{letter-spacing:11.810387pt;}
.ls1e{letter-spacing:13.061450pt;}
.ls18{letter-spacing:14.459680pt;}
.ls15{letter-spacing:14.465014pt;}
.ls21{letter-spacing:15.163145pt;}
.lsd{letter-spacing:15.230400pt;}
.ls2b{letter-spacing:17.410245pt;}
.ls2a{letter-spacing:17.415578pt;}
.ls12{letter-spacing:17.600271pt;}
.ls26{letter-spacing:17.708911pt;}
.lsc{letter-spacing:18.181812pt;}
.ls22{letter-spacing:20.475200pt;}
.ls1b{letter-spacing:20.576267pt;}
.ls1c{letter-spacing:21.260629pt;}
.ls11{letter-spacing:25.287756pt;}
.ls7{letter-spacing:29.767756pt;}
.ls1a{letter-spacing:30.522938pt;}
.ls23{letter-spacing:33.829867pt;}
.ls1f{letter-spacing:67.378734pt;}
.ls1d{letter-spacing:70.497177pt;}
.ls28{letter-spacing:116.075045pt;}
.ws136{word-spacing:-116.075045pt;}
.wsad{word-spacing:-34.611401pt;}
.ws10f{word-spacing:-29.521250pt;}
.ws14a{word-spacing:-26.659460pt;}
.wsce{word-spacing:-25.738045pt;}
.ws13f{word-spacing:-16.077255pt;}
.ws13d{word-spacing:-16.071921pt;}
.ws9a{word-spacing:-13.283467pt;}
.ws15a{word-spacing:-13.262246pt;}
.ws122{word-spacing:-12.860325pt;}
.ws57{word-spacing:-10.626800pt;}
.ws19{word-spacing:-10.626667pt;}
.ws87{word-spacing:-9.796119pt;}
.ws86{word-spacing:-9.774869pt;}
.ws107{word-spacing:-8.281229pt;}
.wsd1{word-spacing:-6.103921pt;}
.wsa0{word-spacing:-5.622335pt;}
.wsa5{word-spacing:-4.910594pt;}
.wsa2{word-spacing:-4.906382pt;}
.wsa4{word-spacing:-3.516591pt;}
.ws119{word-spacing:-1.062677pt;}
.ws81{word-spacing:-1.009543pt;}
.ws28{word-spacing:-0.903312pt;}
.ws135{word-spacing:-0.797008pt;}
.ws45{word-spacing:-0.743745pt;}
.ws88{word-spacing:-0.690740pt;}
.ws9f{word-spacing:-0.584473pt;}
.wsc4{word-spacing:-0.425072pt;}
.ws71{word-spacing:-0.425071pt;}
.ws177{word-spacing:-0.382565pt;}
.ws15c{word-spacing:-0.371937pt;}
.ws176{word-spacing:-0.340058pt;}
.ws40{word-spacing:-0.318657pt;}
.ws11a{word-spacing:-0.212535pt;}
.wscd{word-spacing:-0.053134pt;}
.wse{word-spacing:-0.048010pt;}
.ws2{word-spacing:-0.047819pt;}
.ws162{word-spacing:-0.042507pt;}
.ws54{word-spacing:0.000000pt;}
.ws64{word-spacing:0.053134pt;}
.ws101{word-spacing:0.159402pt;}
.ws4d{word-spacing:0.159408pt;}
.ws7b{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.212544pt;}
.ws191{word-spacing:0.255043pt;}
.wseb{word-spacing:0.425071pt;}
.ws17b{word-spacing:0.467579pt;}
.ws97{word-spacing:0.478205pt;}
.wsd7{word-spacing:0.531339pt;}
.ws92{word-spacing:0.584473pt;}
.ws163{word-spacing:0.595101pt;}
.ws8c{word-spacing:0.637606pt;}
.ws164{word-spacing:0.637608pt;}
.ws181{word-spacing:0.680115pt;}
.ws161{word-spacing:0.765130pt;}
.ws66{word-spacing:0.797008pt;}
.ws169{word-spacing:0.807637pt;}
.ws154{word-spacing:0.850142pt;}
.ws74{word-spacing:0.956410pt;}
.ws141{word-spacing:1.009543pt;}
.wse7{word-spacing:1.062677pt;}
.wsde{word-spacing:1.168945pt;}
.wsf7{word-spacing:1.222079pt;}
.ws94{word-spacing:1.328347pt;}
.ws98{word-spacing:1.381481pt;}
.ws167{word-spacing:1.402738pt;}
.ws93{word-spacing:1.434614pt;}
.ws31{word-spacing:1.445227pt;}
.wsb7{word-spacing:1.487748pt;}
.ws5d{word-spacing:1.540882pt;}
.ws82{word-spacing:1.594016pt;}
.wsf8{word-spacing:1.700284pt;}
.ws117{word-spacing:1.751453pt;}
.ws118{word-spacing:1.753418pt;}
.ws7{word-spacing:1.816966pt;}
.ws84{word-spacing:1.859685pt;}
.ws133{word-spacing:1.912819pt;}
.ws43{word-spacing:1.912896pt;}
.ws6{word-spacing:1.960565pt;}
.wsb8{word-spacing:1.965953pt;}
.ws134{word-spacing:2.019087pt;}
.ws18e{word-spacing:2.040346pt;}
.ws151{word-spacing:2.072221pt;}
.wsbc{word-spacing:2.125355pt;}
.ws139{word-spacing:2.178489pt;}
.ws18f{word-spacing:2.210374pt;}
.ws13c{word-spacing:2.231622pt;}
.ws172{word-spacing:2.295389pt;}
.ws171{word-spacing:2.465418pt;}
.wsb5{word-spacing:2.497292pt;}
.ws183{word-spacing:2.550432pt;}
.ws11e{word-spacing:2.603559pt;}
.ws4c{word-spacing:2.709723pt;}
.ws11b{word-spacing:2.709827pt;}
.wsd{word-spacing:2.725760pt;}
.wsbb{word-spacing:2.762961pt;}
.ws152{word-spacing:2.816095pt;}
.ws7c{word-spacing:2.922363pt;}
.ws89{word-spacing:2.975497pt;}
.ws16a{word-spacing:3.018011pt;}
.ws156{word-spacing:3.028630pt;}
.ws20{word-spacing:3.028646pt;}
.ws4b{word-spacing:3.028752pt;}
.ws5e{word-spacing:3.081764pt;}
.ws41{word-spacing:3.081888pt;}
.ws187{word-spacing:3.103026pt;}
.wsbe{word-spacing:3.134898pt;}
.ws17a{word-spacing:3.188040pt;}
.wsc1{word-spacing:3.241166pt;}
.ws175{word-spacing:3.273054pt;}
.wsb4{word-spacing:3.294300pt;}
.ws73{word-spacing:3.347434pt;}
.ws25{word-spacing:3.400704pt;}
.ws12f{word-spacing:3.453701pt;}
.ws138{word-spacing:3.473093pt;}
.ws90{word-spacing:3.559969pt;}
.ws160{word-spacing:3.613103pt;}
.ws168{word-spacing:3.613112pt;}
.ws108{word-spacing:3.666237pt;}
.ws111{word-spacing:3.719360pt;}
.ws7a{word-spacing:3.719371pt;}
.wse2{word-spacing:3.728935pt;}
.ws68{word-spacing:3.878772pt;}
.wsf2{word-spacing:3.931906pt;}
.ws131{word-spacing:3.985040pt;}
.wsff{word-spacing:4.038174pt;}
.wsfa{word-spacing:4.091308pt;}
.ws157{word-spacing:4.144442pt;}
.ws10c{word-spacing:4.197575pt;}
.ws10e{word-spacing:4.244246pt;}
.ws32{word-spacing:4.250667pt;}
.ws16d{word-spacing:4.250672pt;}
.wsb6{word-spacing:4.250709pt;}
.wsf5{word-spacing:4.250720pt;}
.ws123{word-spacing:4.253798pt;}
.ws120{word-spacing:4.255463pt;}
.wsdd{word-spacing:4.303843pt;}
.ws8d{word-spacing:4.356977pt;}
.ws179{word-spacing:4.420749pt;}
.wsfd{word-spacing:4.463245pt;}
.ws104{word-spacing:4.516379pt;}
.wsdb{word-spacing:4.622646pt;}
.ws8{word-spacing:4.734191pt;}
.ws6e{word-spacing:4.782048pt;}
.ws14b{word-spacing:4.798319pt;}
.wsee{word-spacing:4.835182pt;}
.ws95{word-spacing:4.888316pt;}
.ws3a{word-spacing:4.888459pt;}
.ws79{word-spacing:4.941450pt;}
.wsf6{word-spacing:5.047717pt;}
.ws78{word-spacing:5.153985pt;}
.ws17d{word-spacing:5.185878pt;}
.ws12a{word-spacing:5.207119pt;}
.ws116{word-spacing:5.253957pt;}
.ws144{word-spacing:5.256267pt;}
.ws65{word-spacing:5.260253pt;}
.wsed{word-spacing:5.270893pt;}
.ws56{word-spacing:5.299129pt;}
.wsf9{word-spacing:5.312282pt;}
.wsd5{word-spacing:5.312585pt;}
.ws67{word-spacing:5.313387pt;}
.ws1{word-spacing:5.313600pt;}
.ws142{word-spacing:5.313897pt;}
.ws15d{word-spacing:5.366521pt;}
.ws159{word-spacing:5.419654pt;}
.ws14{word-spacing:5.451328pt;}
.ws194{word-spacing:5.483429pt;}
.wsa{word-spacing:5.499147pt;}
.wsf1{word-spacing:5.525922pt;}
.ws17f{word-spacing:5.610950pt;}
.ws112{word-spacing:5.632190pt;}
.ws3d{word-spacing:5.685286pt;}
.ws126{word-spacing:5.844725pt;}
.wsb3{word-spacing:5.897859pt;}
.ws52{word-spacing:5.898096pt;}
.ws16c{word-spacing:5.951008pt;}
.ws17{word-spacing:5.977333pt;}
.ws3{word-spacing:6.025152pt;}
.wsbf{word-spacing:6.057261pt;}
.ws51{word-spacing:6.057504pt;}
.wsa6{word-spacing:6.110395pt;}
.ws196{word-spacing:6.121037pt;}
.ws8e{word-spacing:6.163529pt;}
.ws190{word-spacing:6.163544pt;}
.ws24{word-spacing:6.163723pt;}
.wsfc{word-spacing:6.269796pt;}
.ws5c{word-spacing:6.322930pt;}
.wsd9{word-spacing:6.376064pt;}
.wsb2{word-spacing:6.429198pt;}
.ws53{word-spacing:6.429456pt;}
.ws63{word-spacing:6.482332pt;}
.ws9{word-spacing:6.503195pt;}
.ws11f{word-spacing:6.535466pt;}
.ws1a{word-spacing:6.695136pt;}
.ws16f{word-spacing:6.716138pt;}
.ws198{word-spacing:6.758645pt;}
.ws69{word-spacing:6.801135pt;}
.wsb1{word-spacing:6.854269pt;}
.ws16b{word-spacing:6.928674pt;}
.ws127{word-spacing:6.960537pt;}
.ws96{word-spacing:7.013670pt;}
.wsa7{word-spacing:7.173072pt;}
.wsca{word-spacing:7.226206pt;}
.wsd4{word-spacing:7.279340pt;}
.ws155{word-spacing:7.385607pt;}
.ws1b{word-spacing:7.385904pt;}
.wsfb{word-spacing:7.438741pt;}
.ws173{word-spacing:7.481267pt;}
.ws166{word-spacing:7.523774pt;}
.ws15e{word-spacing:7.545009pt;}
.wsd8{word-spacing:7.598143pt;}
.wsaa{word-spacing:7.651277pt;}
.wsda{word-spacing:7.704411pt;}
.ws148{word-spacing:7.757545pt;}
.ws3b{word-spacing:7.757909pt;}
.ws109{word-spacing:7.810678pt;}
.ws3e{word-spacing:7.810992pt;}
.ws16{word-spacing:7.842261pt;}
.ws8f{word-spacing:7.863812pt;}
.ws7d{word-spacing:7.916946pt;}
.ws17e{word-spacing:7.948846pt;}
.wsd6{word-spacing:7.970080pt;}
.ws50{word-spacing:7.970400pt;}
.wscc{word-spacing:8.023214pt;}
.wse6{word-spacing:8.129482pt;}
.wsc9{word-spacing:8.182615pt;}
.ws17c{word-spacing:8.203890pt;}
.ws115{word-spacing:8.288883pt;}
.ws33{word-spacing:8.289110pt;}
.ws3f{word-spacing:8.289216pt;}
.ws13b{word-spacing:8.395151pt;}
.ws77{word-spacing:8.448285pt;}
.ws61{word-spacing:8.501419pt;}
.ws91{word-spacing:8.554553pt;}
.ws34{word-spacing:8.608032pt;}
.ws2e{word-spacing:8.629108pt;}
.ws7e{word-spacing:8.713954pt;}
.ws189{word-spacing:8.713976pt;}
.ws9e{word-spacing:8.767088pt;}
.ws132{word-spacing:8.926490pt;}
.ws192{word-spacing:8.969019pt;}
.ws22{word-spacing:8.979984pt;}
.ws193{word-spacing:9.011526pt;}
.ws99{word-spacing:9.085891pt;}
.ws75{word-spacing:9.139025pt;}
.ws46{word-spacing:9.139286pt;}
.ws15{word-spacing:9.181184pt;}
.ws9b{word-spacing:9.192159pt;}
.wsac{word-spacing:9.404694pt;}
.ws18c{word-spacing:9.436598pt;}
.ws174{word-spacing:9.521613pt;}
.ws21{word-spacing:9.617722pt;}
.ws178{word-spacing:9.649134pt;}
.ws6c{word-spacing:9.670364pt;}
.ws185{word-spacing:9.691642pt;}
.ws36{word-spacing:9.723888pt;}
.wsdf{word-spacing:9.776631pt;}
.ws18a{word-spacing:9.812256pt;}
.ws18b{word-spacing:9.819163pt;}
.ws15f{word-spacing:9.829765pt;}
.wsc7{word-spacing:9.882899pt;}
.ws10{word-spacing:9.898416pt;}
.ws188{word-spacing:9.904178pt;}
.ws10a{word-spacing:9.936033pt;}
.wsf3{word-spacing:10.042301pt;}
.ws6f{word-spacing:10.095435pt;}
.ws9c{word-spacing:10.201702pt;}
.ws199{word-spacing:10.244235pt;}
.ws100{word-spacing:10.254836pt;}
.ws182{word-spacing:10.286742pt;}
.ws6b{word-spacing:10.307970pt;}
.ws44{word-spacing:10.308384pt;}
.wsef{word-spacing:10.361104pt;}
.ws10b{word-spacing:10.414238pt;}
.ws72{word-spacing:10.467372pt;}
.wsc{word-spacing:10.615744pt;}
.ws7f{word-spacing:10.626773pt;}
.wsd3{word-spacing:10.679907pt;}
.ws4e{word-spacing:10.733472pt;}
.wsc8{word-spacing:10.786175pt;}
.ws130{word-spacing:10.839309pt;}
.ws13a{word-spacing:10.892443pt;}
.ws49{word-spacing:10.892880pt;}
.ws129{word-spacing:10.945577pt;}
.wsf{word-spacing:10.950427pt;}
.ws147{word-spacing:11.051844pt;}
.wsb9{word-spacing:11.104978pt;}
.wsab{word-spacing:11.264380pt;}
.ws18d{word-spacing:11.306915pt;}
.ws146{word-spacing:11.317514pt;}
.wsf0{word-spacing:11.370647pt;}
.ws13{word-spacing:11.380843pt;}
.wsd2{word-spacing:11.423781pt;}
.wsd0{word-spacing:11.447312pt;}
.ws27{word-spacing:11.477535pt;}
.ws114{word-spacing:11.636317pt;}
.ws16e{word-spacing:11.646973pt;}
.ws165{word-spacing:11.731987pt;}
.wsaf{word-spacing:11.742585pt;}
.ws5{word-spacing:11.954667pt;}
.ws60{word-spacing:12.220789pt;}
.ws8a{word-spacing:12.273923pt;}
.wse0{word-spacing:12.327057pt;}
.wsb{word-spacing:12.480672pt;}
.wsdc{word-spacing:12.486459pt;}
.ws76{word-spacing:12.539593pt;}
.ws145{word-spacing:12.592726pt;}
.ws0{word-spacing:12.752000pt;}
.ws125{word-spacing:12.911530pt;}
.ws2f{word-spacing:12.922027pt;}
.wsfe{word-spacing:13.017797pt;}
.wsc6{word-spacing:13.124065pt;}
.ws186{word-spacing:13.134725pt;}
.ws153{word-spacing:13.177199pt;}
.wse9{word-spacing:13.230333pt;}
.ws195{word-spacing:13.262246pt;}
.wsbd{word-spacing:13.282689pt;}
.ws83{word-spacing:13.283467pt;}
.ws26{word-spacing:13.284000pt;}
.wsa8{word-spacing:13.288022pt;}
.ws113{word-spacing:13.336601pt;}
.ws35{word-spacing:13.337136pt;}
.ws180{word-spacing:13.389768pt;}
.ws39{word-spacing:13.443461pt;}
.ws15b{word-spacing:13.496002pt;}
.ws11{word-spacing:13.580501pt;}
.ws12{word-spacing:13.580740pt;}
.ws4a{word-spacing:13.868549pt;}
.wsc5{word-spacing:13.921073pt;}
.ws170{word-spacing:13.984869pt;}
.ws30{word-spacing:14.112256pt;}
.ws184{word-spacing:14.154898pt;}
.ws12c{word-spacing:14.186742pt;}
.ws140{word-spacing:14.242333pt;}
.ws80{word-spacing:14.293010pt;}
.ws1d{word-spacing:14.399750pt;}
.ws128{word-spacing:14.452412pt;}
.ws10d{word-spacing:14.505546pt;}
.ws42{word-spacing:14.506128pt;}
.ws47{word-spacing:14.559264pt;}
.ws5a{word-spacing:14.611813pt;}
.wsae{word-spacing:14.688369pt;}
.wscf{word-spacing:14.718081pt;}
.wsc2{word-spacing:14.824349pt;}
.ws121{word-spacing:14.831872pt;}
.ws6d{word-spacing:14.877483pt;}
.wsba{word-spacing:14.983750pt;}
.ws4{word-spacing:15.158804pt;}
.wsea{word-spacing:15.249420pt;}
.ws8b{word-spacing:15.355687pt;}
.ws13e{word-spacing:15.474333pt;}
.ws9d{word-spacing:15.515089pt;}
.ws2b{word-spacing:15.684960pt;}
.ws5f{word-spacing:15.727625pt;}
.ws12b{word-spacing:15.780758pt;}
.ws2a{word-spacing:15.834475pt;}
.ws55{word-spacing:15.940160pt;}
.ws18{word-spacing:15.940800pt;}
.ws59{word-spacing:15.993294pt;}
.ws102{word-spacing:16.046428pt;}
.ws1e{word-spacing:16.047072pt;}
.ws4f{word-spacing:16.206267pt;}
.ws103{word-spacing:16.312097pt;}
.ws2d{word-spacing:16.577600pt;}
.ws29{word-spacing:16.578538pt;}
.ws3c{word-spacing:16.631355pt;}
.ws106{word-spacing:17.215373pt;}
.ws6a{word-spacing:17.268507pt;}
.ws23{word-spacing:17.534880pt;}
.wsc3{word-spacing:17.587310pt;}
.wse8{word-spacing:17.640444pt;}
.ws105{word-spacing:17.906113pt;}
.ws58{word-spacing:18.331184pt;}
.ws62{word-spacing:18.384318pt;}
.wsc0{word-spacing:18.437452pt;}
.ws158{word-spacing:18.490586pt;}
.ws143{word-spacing:18.546333pt;}
.ws1c{word-spacing:18.650630pt;}
.wscb{word-spacing:19.128192pt;}
.ws70{word-spacing:19.234460pt;}
.ws5b{word-spacing:19.393861pt;}
.ws85{word-spacing:19.872066pt;}
.wsec{word-spacing:20.403405pt;}
.ws124{word-spacing:20.562806pt;}
.ws48{word-spacing:20.669904pt;}
.ws2c{word-spacing:20.700747pt;}
.ws197{word-spacing:22.188758pt;}
.wsa9{word-spacing:22.581893pt;}
.ws38{word-spacing:23.858277pt;}
.ws37{word-spacing:27.630720pt;}
.wse1{word-spacing:46.648464pt;}
.ws149{word-spacing:47.983190pt;}
.ws12d{word-spacing:48.556429pt;}
.wse3{word-spacing:48.738315pt;}
.ws14d{word-spacing:51.169274pt;}
.ws11d{word-spacing:53.134000pt;}
.ws12e{word-spacing:58.831168pt;}
.ws150{word-spacing:61.840735pt;}
.ws14e{word-spacing:62.915559pt;}
.ws14c{word-spacing:63.951996pt;}
.ws14f{word-spacing:63.990382pt;}
.wse4{word-spacing:70.271246pt;}
.wsa1{word-spacing:71.891116pt;}
.wsf4{word-spacing:82.123910pt;}
.ws11c{word-spacing:85.014400pt;}
.wsb0{word-spacing:91.027584pt;}
.ws137{word-spacing:111.579814pt;}
.wsa3{word-spacing:139.263465pt;}
.ws110{word-spacing:300.561451pt;}
.wse5{word-spacing:573.179006pt;}
._34{margin-left:-287.578764pt;}
._31{margin-left:-165.522734pt;}
._32{margin-left:-151.086311pt;}
._2e{margin-left:-118.358367pt;}
._35{margin-left:-116.075045pt;}
._30{margin-left:-91.081454pt;}
._2f{margin-left:-81.369306pt;}
._33{margin-left:-42.425593pt;}
._1a{margin-left:-6.322824pt;}
._2{margin-left:-4.744518pt;}
._8{margin-left:-3.453595pt;}
._0{margin-left:-2.550400pt;}
._1{margin-left:-1.328453pt;}
._b{width:1.003866pt;}
._5{width:2.656800pt;}
._12{width:3.825638pt;}
._e{width:5.791591pt;}
._4{width:7.885008pt;}
._5f{width:8.926490pt;}
._6{width:11.635721pt;}
._9{width:12.592726pt;}
._11{width:13.921073pt;}
._f{width:15.674597pt;}
._10{width:16.629833pt;}
._2c{width:19.340727pt;}
._d{width:22.251241pt;}
._3{width:24.626566pt;}
._a{width:26.566933pt;}
._1e{width:29.595564pt;}
._7{width:31.881600pt;}
._60{width:42.262528pt;}
._36{width:52.197937pt;}
._2d{width:55.099820pt;}
._59{width:57.195243pt;}
._16{width:59.112934pt;}
._48{width:61.334827pt;}
._15{width:63.217998pt;}
._1d{width:64.303602pt;}
._38{width:67.100162pt;}
._17{width:69.397434pt;}
._54{width:73.316999pt;}
._2b{width:74.387600pt;}
._13{width:77.777735pt;}
._2a{width:81.059325pt;}
._27{width:82.687064pt;}
._28{width:84.367814pt;}
._14{width:85.497305pt;}
._5a{width:91.705473pt;}
._3d{width:97.420267pt;}
._39{width:99.365199pt;}
._5c{width:101.302111pt;}
._43{width:102.247866pt;}
._5e{width:103.482395pt;}
._18{width:104.492559pt;}
._25{width:106.268000pt;}
._19{width:107.813930pt;}
._1c{width:115.152005pt;}
._26{width:116.894800pt;}
._4c{width:117.946248pt;}
._37{width:121.178880pt;}
._24{width:125.778805pt;}
._23{width:127.479093pt;}
._40{width:133.436244pt;}
._4b{width:136.284180pt;}
._44{width:140.139314pt;}
._51{width:142.084246pt;}
._45{width:143.021981pt;}
._3e{width:143.994448pt;}
._5d{width:147.864998pt;}
._50{width:148.822047pt;}
._3f{width:151.704715pt;}
._53{width:152.677181pt;}
._55{width:155.143077pt;}
._57{width:159.419351pt;}
._58{width:162.834559pt;}
._3c{width:171.648948pt;}
._1b{width:177.170010pt;}
._4a{width:180.635582pt;}
._41{width:181.642779pt;}
._5b{width:186.673803pt;}
._46{width:190.325512pt;}
._42{width:196.438156pt;}
._c{width:198.651506pt;}
._20{width:202.000689pt;}
._47{width:205.120889pt;}
._4d{width:206.267010pt;}
._3a{width:212.761695pt;}
._21{width:220.612368pt;}
._29{width:230.091474pt;}
._56{width:236.656576pt;}
._4e{width:254.334621pt;}
._3b{width:256.210092pt;}
._22{width:257.211067pt;}
._52{width:266.728534pt;}
._49{width:274.616003pt;}
._4f{width:275.623200pt;}
._1f{width:422.538312pt;}
.fs13{font-size:17.323110pt;}
.fs17{font-size:19.334187pt;}
.fs19{font-size:23.246400pt;}
.fs11{font-size:24.169370pt;}
.fs12{font-size:24.190116pt;}
.fs16{font-size:27.620267pt;}
.fs10{font-size:27.696230pt;}
.fs1a{font-size:27.895680pt;}
.fs9{font-size:30.356736pt;}
.fsf{font-size:31.880533pt;}
.fs5{font-size:31.882667pt;}
.fs18{font-size:33.144320pt;}
.fs1b{font-size:34.730933pt;}
.fse{font-size:37.193600pt;}
.fs4{font-size:37.194667pt;}
.fs14{font-size:37.318771pt;}
.fs1c{font-size:38.386552pt;}
.fs15{font-size:39.062400pt;}
.fs3{font-size:42.506667pt;}
.fs8{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:46.058496pt;}
.fsd{font-size:46.163174pt;}
.fs2{font-size:47.818667pt;}
.fsb{font-size:48.152064pt;}
.fsc{font-size:48.256742pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fs0{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:0.088604pt;}
.yac{bottom:3.412952pt;}
.y67{bottom:3.466667pt;}
.y61{bottom:3.466680pt;}
.yae{bottom:4.427024pt;}
.y1d0{bottom:7.717491pt;}
.y1ea{bottom:7.958623pt;}
.yf2{bottom:10.040316pt;}
.y1d1{bottom:10.360837pt;}
.yf1{bottom:12.825931pt;}
.y66{bottom:14.133333pt;}
.ye7{bottom:14.481308pt;}
.y1e9{bottom:15.904170pt;}
.yad{bottom:17.642672pt;}
.y1cf{bottom:18.145220pt;}
.ye5{bottom:18.831535pt;}
.ye6{bottom:21.742492pt;}
.yf0{bottom:21.820290pt;}
.y62{bottom:23.987333pt;}
.y65{bottom:24.800000pt;}
.y1d2{bottom:25.816318pt;}
.yaf{bottom:31.359904pt;}
.y1eb{bottom:32.823408pt;}
.ya5{bottom:35.176304pt;}
.y64{bottom:35.466667pt;}
.ydd{bottom:41.040817pt;}
.y1d4{bottom:44.850566pt;}
.yef{bottom:45.412655pt;}
.y1d6{bottom:45.735278pt;}
.y63{bottom:46.133333pt;}
.ya4{bottom:49.569584pt;}
.ye1{bottom:52.436122pt;}
.yee{bottom:52.673839pt;}
.y1ec{bottom:54.112461pt;}
.y1f0{bottom:54.833899pt;}
.yde{bottom:59.556836pt;}
.y1ed{bottom:75.401515pt;}
.ye0{bottom:76.964228pt;}
.yec{bottom:84.452324pt;}
.ydc{bottom:87.345993pt;}
.yeb{bottom:88.082916pt;}
.yed{bottom:91.713508pt;}
.ydb{bottom:95.644489pt;}
.y1ee{bottom:96.690568pt;}
.y36{bottom:100.740000pt;}
.yda{bottom:103.942985pt;}
.y5f{bottom:104.490667pt;}
.ya1{bottom:104.656592pt;}
.ya3{bottom:104.951000pt;}
.y153{bottom:105.522667pt;}
.yea{bottom:106.464949pt;}
.ye4{bottom:107.469845pt;}
.ydf{bottom:107.739979pt;}
.y1d3{bottom:109.033694pt;}
.y35{bottom:112.696000pt;}
.y9b{bottom:116.680000pt;}
.y17d{bottom:116.681333pt;}
.y19e{bottom:117.641333pt;}
.y1ef{bottom:117.979621pt;}
.ya0{bottom:119.049872pt;}
.ya2{bottom:119.344280pt;}
.y1f2{bottom:122.163464pt;}
.y9e{bottom:122.746328pt;}
.ye9{bottom:123.124612pt;}
.y34{bottom:124.650667pt;}
.yd5{bottom:126.808000pt;}
.y152{bottom:127.799349pt;}
.y11b{bottom:129.472000pt;}
.yd9{bottom:129.746121pt;}
.y1d8{bottom:130.195032pt;}
.ye8{bottom:130.385796pt;}
.y19d{bottom:130.792000pt;}
.y9a{bottom:132.621333pt;}
.y1f3{bottom:132.822667pt;}
.y1f1{bottom:134.317699pt;}
.y5e{bottom:135.502667pt;}
.y33{bottom:136.605333pt;}
.ye3{bottom:136.635601pt;}
.y250{bottom:136.733333pt;}
.y1d7{bottom:137.922233pt;}
.y151{bottom:138.296000pt;}
.ye2{bottom:142.038268pt;}
.yd4{bottom:142.749333pt;}
.yd8{bottom:143.015070pt;}
.y19c{bottom:143.942667pt;}
.yd7{bottom:145.068083pt;}
.y11a{bottom:145.412000pt;}
.y1d9{bottom:145.927795pt;}
.y32{bottom:148.561333pt;}
.y24f{bottom:148.688000pt;}
.y150{bottom:149.258544pt;}
.y5d{bottom:151.444000pt;}
.y1e8{bottom:151.950667pt;}
.ya8{bottom:152.525152pt;}
.yab{bottom:154.466064pt;}
.y1d5{bottom:158.076397pt;}
.yd3{bottom:158.689333pt;}
.y31{bottom:160.516000pt;}
.y24e{bottom:160.644000pt;}
.y119{bottom:161.352000pt;}
.y99{bottom:164.501333pt;}
.ya7{bottom:166.918432pt;}
.y5c{bottom:167.384000pt;}
.yaa{bottom:168.859344pt;}
.y19b{bottom:169.098667pt;}
.y30{bottom:172.472000pt;}
.y24d{bottom:172.726667pt;}
.y14f{bottom:173.437333pt;}
.yd2{bottom:174.629333pt;}
.y118{bottom:177.292000pt;}
.y98{bottom:180.441333pt;}
.ya6{bottom:181.311712pt;}
.ya9{bottom:183.252624pt;}
.y5b{bottom:183.324000pt;}
.y2f{bottom:184.426667pt;}
.y24c{bottom:184.681333pt;}
.y19a{bottom:185.038667pt;}
.y9d{bottom:186.153088pt;}
.y14e{bottom:189.377333pt;}
.yd1{bottom:190.569333pt;}
.y117{bottom:193.233333pt;}
.y97{bottom:196.381333pt;}
.y24b{bottom:196.636000pt;}
.y224{bottom:196.670667pt;}
.y5a{bottom:199.264000pt;}
.y199{bottom:200.978667pt;}
.y14d{bottom:205.317333pt;}
.y24a{bottom:208.718667pt;}
.yd0{bottom:208.733333pt;}
.y2e{bottom:208.773333pt;}
.y116{bottom:209.173333pt;}
.yb1{bottom:209.912904pt;}
.y17c{bottom:212.322667pt;}
.y223{bottom:212.610667pt;}
.y59{bottom:215.204000pt;}
.y198{bottom:216.918667pt;}
.y96{bottom:217.849333pt;}
.y249{bottom:220.674667pt;}
.y14c{bottom:221.257333pt;}
.y9f{bottom:221.667416pt;}
.yb0{bottom:221.929112pt;}
.ycf{bottom:224.673333pt;}
.y2d{bottom:224.713333pt;}
.y115{bottom:225.113333pt;}
.y17b{bottom:228.262667pt;}
.y222{bottom:228.550667pt;}
.y58{bottom:231.144000pt;}
.y248{bottom:232.629333pt;}
.y197{bottom:232.858667pt;}
.y14b{bottom:237.197333pt;}
.y95{bottom:240.276000pt;}
.yce{bottom:240.613333pt;}
.y2c{bottom:240.653333pt;}
.y114{bottom:241.601333pt;}
.y17a{bottom:244.202667pt;}
.y221{bottom:244.490667pt;}
.y247{bottom:244.712000pt;}
.y57{bottom:247.085333pt;}
.y196{bottom:248.798667pt;}
.y14a{bottom:253.138667pt;}
.ycd{bottom:256.553333pt;}
.y2b{bottom:256.594667pt;}
.y246{bottom:256.666667pt;}
.y113{bottom:257.541333pt;}
.y179{bottom:260.142667pt;}
.y220{bottom:260.430667pt;}
.y56{bottom:263.025333pt;}
.y195{bottom:264.740000pt;}
.y94{bottom:268.445333pt;}
.y245{bottom:268.622667pt;}
.y18e{bottom:268.946903pt;}
.y149{bottom:269.078667pt;}
.y2a{bottom:272.534667pt;}
.y112{bottom:273.481333pt;}
.y178{bottom:276.082667pt;}
.y21f{bottom:276.372000pt;}
.ycc{bottom:276.544000pt;}
.y55{bottom:278.965333pt;}
.y18d{bottom:280.665623pt;}
.y244{bottom:280.704000pt;}
.y93{bottom:284.385333pt;}
.y148{bottom:285.018667pt;}
.y29{bottom:288.474667pt;}
.y111{bottom:289.421333pt;}
.y1c7{bottom:291.554667pt;}
.y177{bottom:292.022667pt;}
.y21e{bottom:292.312000pt;}
.y243{bottom:292.660000pt;}
.y54{bottom:294.905333pt;}
.y194{bottom:297.194667pt;}
.y92{bottom:300.325333pt;}
.ycb{bottom:300.642667pt;}
.y147{bottom:300.958667pt;}
.y28{bottom:304.414667pt;}
.y242{bottom:304.614667pt;}
.y110{bottom:305.361333pt;}
.y176{bottom:307.964000pt;}
.y21d{bottom:308.252000pt;}
.y193{bottom:313.134667pt;}
.y1c6{bottom:314.269333pt;}
.y18c{bottom:314.557723pt;}
.y91{bottom:316.265333pt;}
.yca{bottom:316.582667pt;}
.y241{bottom:316.697333pt;}
.y146{bottom:316.898667pt;}
.y53{bottom:317.798667pt;}
.y1e7{bottom:320.296000pt;}
.y27{bottom:320.354667pt;}
.y10f{bottom:321.301333pt;}
.y18b{bottom:323.747153pt;}
.y175{bottom:323.904000pt;}
.y21c{bottom:324.192000pt;}
.y1c5{bottom:326.225333pt;}
.y240{bottom:328.652000pt;}
.y192{bottom:329.076000pt;}
.yc9{bottom:332.522667pt;}
.y90{bottom:332.589333pt;}
.y145{bottom:332.838667pt;}
.y52{bottom:335.773333pt;}
.y1e6{bottom:336.236000pt;}
.y26{bottom:336.296000pt;}
.y1c4{bottom:338.712000pt;}
.y21b{bottom:340.132000pt;}
.y23f{bottom:340.608000pt;}
.y10e{bottom:340.669333pt;}
.y27e{bottom:343.829333pt;}
.y191{bottom:345.016000pt;}
.yc8{bottom:348.462667pt;}
.y8f{bottom:348.529333pt;}
.y144{bottom:348.780000pt;}
.y1c3{bottom:350.666667pt;}
.y51{bottom:351.713333pt;}
.y1e5{bottom:352.176000pt;}
.y25{bottom:352.236000pt;}
.y23e{bottom:352.690667pt;}
.y27d{bottom:355.784000pt;}
.y10d{bottom:356.609333pt;}
.y190{bottom:360.956000pt;}
.y174{bottom:362.380000pt;}
.y1c2{bottom:363.153333pt;}
.yc7{bottom:364.402667pt;}
.y8e{bottom:364.469333pt;}
.y23d{bottom:364.645333pt;}
.y143{bottom:364.720000pt;}
.y50{bottom:367.654667pt;}
.y27c{bottom:367.740000pt;}
.y1e4{bottom:368.116000pt;}
.y24{bottom:368.176000pt;}
.y10c{bottom:372.549333pt;}
.y21a{bottom:372.585333pt;}
.y23c{bottom:376.600000pt;}
.y18f{bottom:376.896000pt;}
.y27b{bottom:379.694667pt;}
.yc6{bottom:380.344000pt;}
.y8d{bottom:380.410667pt;}
.y142{bottom:380.660000pt;}
.y4f{bottom:383.594667pt;}
.y1e3{bottom:384.057333pt;}
.y23{bottom:384.116000pt;}
.y173{bottom:385.094667pt;}
.y1c1{bottom:387.962667pt;}
.y10b{bottom:388.489333pt;}
.y23b{bottom:388.682667pt;}
.y27a{bottom:391.649333pt;}
.y18a{bottom:396.024000pt;}
.yc5{bottom:396.284000pt;}
.y8c{bottom:396.350667pt;}
.y141{bottom:396.600000pt;}
.y172{bottom:397.580000pt;}
.y4e{bottom:399.534667pt;}
.y1e2{bottom:399.997333pt;}
.y22{bottom:400.056000pt;}
.y23a{bottom:400.638667pt;}
.y279{bottom:403.605333pt;}
.y1c0{bottom:403.904000pt;}
.y10a{bottom:404.429333pt;}
.y219{bottom:406.228785pt;}
.yc4{bottom:412.224000pt;}
.y8b{bottom:412.290667pt;}
.y140{bottom:412.540000pt;}
.y239{bottom:412.593333pt;}
.y4d{bottom:415.474667pt;}
.y278{bottom:415.560000pt;}
.y1e1{bottom:415.937333pt;}
.y21{bottom:415.996000pt;}
.y217{bottom:417.024567pt;}
.y1bf{bottom:419.844000pt;}
.y109{bottom:420.370667pt;}
.y171{bottom:424.074667pt;}
.y277{bottom:427.516000pt;}
.y218{bottom:427.821552pt;}
.yc3{bottom:428.164000pt;}
.y8a{bottom:428.230667pt;}
.y4c{bottom:431.414667pt;}
.y1e0{bottom:431.877333pt;}
.y20{bottom:431.937333pt;}
.y13f{bottom:433.198667pt;}
.y238{bottom:433.694667pt;}
.y1be{bottom:435.784000pt;}
.y108{bottom:436.310667pt;}
.y216{bottom:439.097761pt;}
.y276{bottom:439.470667pt;}
.yc2{bottom:444.104000pt;}
.y89{bottom:444.554667pt;}
.y170{bottom:446.146667pt;}
.y4b{bottom:447.354667pt;}
.y1df{bottom:447.817333pt;}
.y1f{bottom:447.877333pt;}
.y215{bottom:449.893543pt;}
.y275{bottom:451.425333pt;}
.y1bd{bottom:451.724000pt;}
.y107{bottom:452.250667pt;}
.y212{bottom:455.291433pt;}
.y13e{bottom:459.402667pt;}
.yc1{bottom:460.044000pt;}
.y88{bottom:460.494667pt;}
.y237{bottom:460.549333pt;}
.y214{bottom:460.689324pt;}
.y16f{bottom:462.086667pt;}
.y274{bottom:463.381333pt;}
.y1de{bottom:463.757333pt;}
.y1e{bottom:463.817333pt;}
.y4a{bottom:465.330667pt;}
.y1bc{bottom:467.670667pt;}
.y106{bottom:468.190667pt;}
.y213{bottom:471.486309pt;}
.y273{bottom:475.336000pt;}
.y13d{bottom:475.342667pt;}
.yc0{bottom:475.985333pt;}
.y87{bottom:476.434667pt;}
.y236{bottom:476.490667pt;}
.y16e{bottom:478.026667pt;}
.y1dd{bottom:479.698667pt;}
.y1d{bottom:479.757333pt;}
.y49{bottom:481.270667pt;}
.y211{bottom:482.762518pt;}
.y1bb{bottom:483.610667pt;}
.y105{bottom:484.130667pt;}
.y272{bottom:487.290667pt;}
.y13c{bottom:491.282667pt;}
.ybf{bottom:491.925333pt;}
.y86{bottom:492.376000pt;}
.y235{bottom:492.430667pt;}
.y16d{bottom:493.966667pt;}
.y1dc{bottom:495.638667pt;}
.y48{bottom:497.210667pt;}
.y271{bottom:499.246667pt;}
.y1ba{bottom:499.550667pt;}
.y1c{bottom:499.649333pt;}
.y104{bottom:500.070667pt;}
.y13b{bottom:507.224000pt;}
.y210{bottom:507.513333pt;}
.y85{bottom:508.316000pt;}
.y234{bottom:508.370667pt;}
.y16c{bottom:509.908000pt;}
.y270{bottom:511.201333pt;}
.y1db{bottom:511.578667pt;}
.ybe{bottom:511.914667pt;}
.y47{bottom:513.150667pt;}
.y103{bottom:516.012000pt;}
.y1b{bottom:523.156000pt;}
.y26f{bottom:523.157333pt;}
.y13a{bottom:523.164000pt;}
.y20f{bottom:523.453333pt;}
.y84{bottom:524.256000pt;}
.y233{bottom:524.310667pt;}
.y16b{bottom:525.848000pt;}
.y46{bottom:529.092000pt;}
.y1b9{bottom:530.962667pt;}
.y102{bottom:531.952000pt;}
.y26e{bottom:535.112000pt;}
.ybd{bottom:536.013333pt;}
.y1a{bottom:536.440000pt;}
.y139{bottom:539.104000pt;}
.y20e{bottom:539.393333pt;}
.y83{bottom:540.196000pt;}
.y232{bottom:540.250667pt;}
.y16a{bottom:541.788000pt;}
.y1da{bottom:543.661333pt;}
.y45{bottom:545.032000pt;}
.y26d{bottom:547.066667pt;}
.y19{bottom:549.724000pt;}
.y101{bottom:551.598667pt;}
.ybc{bottom:551.954667pt;}
.y1b8{bottom:553.678667pt;}
.y138{bottom:555.044000pt;}
.y20d{bottom:555.333333pt;}
.y82{bottom:556.136000pt;}
.y231{bottom:556.190667pt;}
.y169{bottom:557.728000pt;}
.y26c{bottom:559.022667pt;}
.y1b7{bottom:559.656000pt;}
.y100{bottom:560.710667pt;}
.y44{bottom:560.972000pt;}
.y1ce{bottom:562.789333pt;}
.y18{bottom:563.006667pt;}
.ybb{bottom:567.894667pt;}
.y26b{bottom:570.977333pt;}
.y137{bottom:570.984000pt;}
.y20c{bottom:571.274667pt;}
.y81{bottom:572.076000pt;}
.y230{bottom:572.132000pt;}
.y168{bottom:573.668000pt;}
.y17{bottom:576.290667pt;}
.y43{bottom:576.912000pt;}
.y1b6{bottom:578.120000pt;}
.y26a{bottom:582.932000pt;}
.yba{bottom:583.834667pt;}
.y136{bottom:586.924000pt;}
.y20b{bottom:587.214667pt;}
.y80{bottom:588.017333pt;}
.y22f{bottom:588.072000pt;}
.y16{bottom:589.574667pt;}
.y167{bottom:589.608000pt;}
.y1b5{bottom:590.606667pt;}
.yff{bottom:591.720000pt;}
.y42{bottom:592.852000pt;}
.y269{bottom:594.888000pt;}
.yb9{bottom:599.774667pt;}
.y15{bottom:602.857333pt;}
.y135{bottom:602.865333pt;}
.y20a{bottom:603.154667pt;}
.y7f{bottom:603.957333pt;}
.y22e{bottom:604.012000pt;}
.y268{bottom:606.842667pt;}
.yfe{bottom:607.661333pt;}
.y41{bottom:608.792000pt;}
.y166{bottom:611.681333pt;}
.y1b4{bottom:615.416000pt;}
.yb8{bottom:615.714667pt;}
.y14{bottom:616.141333pt;}
.y267{bottom:618.798667pt;}
.y209{bottom:619.094667pt;}
.y7e{bottom:619.897333pt;}
.y22d{bottom:619.952000pt;}
.y132{bottom:622.914667pt;}
.yfd{bottom:623.601333pt;}
.y40{bottom:624.733333pt;}
.y165{bottom:627.621333pt;}
.y13{bottom:629.424000pt;}
.y12f{bottom:629.476000pt;}
.y266{bottom:630.753333pt;}
.y1b3{bottom:631.356000pt;}
.yb7{bottom:631.656000pt;}
.y208{bottom:635.034667pt;}
.y7d{bottom:635.837333pt;}
.y22c{bottom:635.892000pt;}
.y12e{bottom:638.586667pt;}
.y134{bottom:638.588000pt;}
.y3f{bottom:640.673333pt;}
.y12{bottom:642.708000pt;}
.yfc{bottom:642.968000pt;}
.y164{bottom:643.561333pt;}
.y1b2{bottom:647.297333pt;}
.y133{bottom:647.573333pt;}
.yb6{bottom:647.596000pt;}
.y207{bottom:650.976000pt;}
.y131{bottom:651.206667pt;}
.y7c{bottom:651.777333pt;}
.y22b{bottom:651.833333pt;}
.y265{bottom:654.664000pt;}
.y130{bottom:655.192000pt;}
.y11{bottom:655.992000pt;}
.y3e{bottom:656.613333pt;}
.yfb{bottom:658.908000pt;}
.y163{bottom:659.501333pt;}
.y1b1{bottom:663.237333pt;}
.yb5{bottom:663.536000pt;}
.y264{bottom:666.618667pt;}
.y206{bottom:666.916000pt;}
.y7b{bottom:667.717333pt;}
.y10{bottom:669.274667pt;}
.y3d{bottom:672.553333pt;}
.y22a{bottom:673.332000pt;}
.y12d{bottom:675.394667pt;}
.y162{bottom:675.441333pt;}
.yfa{bottom:678.274667pt;}
.y263{bottom:678.573333pt;}
.y1b0{bottom:679.177333pt;}
.yb4{bottom:679.476000pt;}
.yf{bottom:682.558667pt;}
.y205{bottom:682.856000pt;}
.y7a{bottom:683.658667pt;}
.y3c{bottom:688.493333pt;}
.y262{bottom:690.529333pt;}
.y12c{bottom:691.334667pt;}
.y161{bottom:691.382667pt;}
.yf9{bottom:694.216000pt;}
.y1af{bottom:695.117333pt;}
.yb3{bottom:695.416000pt;}
.ye{bottom:695.842667pt;}
.y204{bottom:698.796000pt;}
.y79{bottom:699.598667pt;}
.y229{bottom:700.188000pt;}
.y261{bottom:702.484000pt;}
.y3b{bottom:704.433333pt;}
.y12b{bottom:707.274667pt;}
.y160{bottom:707.322667pt;}
.yd{bottom:709.125333pt;}
.yf8{bottom:710.156000pt;}
.y1ae{bottom:711.057333pt;}
.y260{bottom:714.440000pt;}
.y78{bottom:715.922667pt;}
.y228{bottom:716.128000pt;}
.y203{bottom:720.650667pt;}
.yc{bottom:722.409333pt;}
.y12a{bottom:723.214667pt;}
.y15f{bottom:723.262667pt;}
.yf7{bottom:726.096000pt;}
.y25f{bottom:726.394667pt;}
.y1ad{bottom:731.204000pt;}
.y77{bottom:731.862667pt;}
.y227{bottom:732.068000pt;}
.yb{bottom:735.693333pt;}
.y3a{bottom:738.349333pt;}
.y15e{bottom:739.202667pt;}
.yb2{bottom:739.410667pt;}
.yf6{bottom:742.036000pt;}
.y129{bottom:743.873333pt;}
.y76{bottom:747.802667pt;}
.y202{bottom:748.008000pt;}
.ya{bottom:748.976000pt;}
.y25e{bottom:750.305333pt;}
.y1ac{bottom:751.365333pt;}
.y1cd{bottom:754.032000pt;}
.y39{bottom:754.289333pt;}
.yf5{bottom:757.976000pt;}
.y9c{bottom:758.538667pt;}
.y9{bottom:762.260000pt;}
.y75{bottom:763.742667pt;}
.y226{bottom:763.948000pt;}
.y201{bottom:763.949333pt;}
.y15d{bottom:765.089333pt;}
.y1cc{bottom:769.972000pt;}
.y128{bottom:770.077333pt;}
.y38{bottom:770.229333pt;}
.y25d{bottom:774.214667pt;}
.y8{bottom:775.544000pt;}
.y1ab{bottom:776.324000pt;}
.y74{bottom:779.682667pt;}
.y200{bottom:779.889333pt;}
.y189{bottom:780.594667pt;}
.y1cb{bottom:785.912000pt;}
.y127{bottom:786.017333pt;}
.y37{bottom:786.170667pt;}
.y7{bottom:788.826667pt;}
.y1aa{bottom:792.264000pt;}
.y15c{bottom:795.090667pt;}
.y73{bottom:795.624000pt;}
.y1ff{bottom:795.829333pt;}
.y188{bottom:796.534667pt;}
.y25c{bottom:798.125333pt;}
.y1ca{bottom:801.853333pt;}
.y126{bottom:801.957333pt;}
.y6{bottom:802.110667pt;}
.yf4{bottom:804.378667pt;}
.y1a9{bottom:808.204000pt;}
.y25b{bottom:810.080000pt;}
.y72{bottom:811.564000pt;}
.y1fe{bottom:811.769333pt;}
.y187{bottom:812.476000pt;}
.y1c9{bottom:817.793333pt;}
.y125{bottom:817.897333pt;}
.y25a{bottom:822.036000pt;}
.yd6{bottom:823.506667pt;}
.y1a8{bottom:824.144000pt;}
.y71{bottom:827.504000pt;}
.y1fd{bottom:827.709333pt;}
.y186{bottom:828.416000pt;}
.y1c8{bottom:833.733333pt;}
.y124{bottom:833.838667pt;}
.y15b{bottom:833.990667pt;}
.y1a7{bottom:840.085333pt;}
.y70{bottom:843.444000pt;}
.y1fc{bottom:843.649333pt;}
.y185{bottom:844.356000pt;}
.y259{bottom:845.946667pt;}
.y5{bottom:849.110667pt;}
.y123{bottom:849.778667pt;}
.y15a{bottom:849.930667pt;}
.y1a6{bottom:856.025333pt;}
.y258{bottom:857.901333pt;}
.y6f{bottom:859.384000pt;}
.y225{bottom:859.589333pt;}
.y1fb{bottom:859.590667pt;}
.y184{bottom:860.296000pt;}
.y4{bottom:865.549333pt;}
.y122{bottom:865.718667pt;}
.y159{bottom:865.870667pt;}
.y257{bottom:869.856000pt;}
.y6e{bottom:875.325333pt;}
.y183{bottom:876.236000pt;}
.y121{bottom:881.658667pt;}
.y158{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y6d{bottom:891.265333pt;}
.y182{bottom:892.176000pt;}
.y256{bottom:893.766667pt;}
.y120{bottom:897.598667pt;}
.y157{bottom:897.752000pt;}
.y1a5{bottom:900.276000pt;}
.y1fa{bottom:905.020000pt;}
.y255{bottom:905.721333pt;}
.y6c{bottom:907.205333pt;}
.y181{bottom:908.117333pt;}
.y1a4{bottom:912.762667pt;}
.y11f{bottom:913.538667pt;}
.y156{bottom:913.692000pt;}
.y254{bottom:917.677333pt;}
.y6b{bottom:923.145333pt;}
.y2{bottom:923.830667pt;}
.y180{bottom:924.057333pt;}
.y1a3{bottom:924.717333pt;}
.y11e{bottom:929.480000pt;}
.y155{bottom:929.632000pt;}
.y1a2{bottom:936.672000pt;}
.y1f9{bottom:937.280344pt;}
.y6a{bottom:939.085333pt;}
.y17f{bottom:939.997333pt;}
.y253{bottom:941.588000pt;}
.y11d{bottom:945.420000pt;}
.y154{bottom:945.572000pt;}
.y1f8{bottom:947.049113pt;}
.y1a1{bottom:948.628000pt;}
.y252{bottom:953.542667pt;}
.y69{bottom:955.025333pt;}
.y17e{bottom:955.937333pt;}
.y1f7{bottom:956.816793pt;}
.y1a0{bottom:960.582667pt;}
.y1{bottom:961.024000pt;}
.y11c{bottom:961.512000pt;}
.y251{bottom:965.497333pt;}
.y1f6{bottom:966.585563pt;}
.y1f5{bottom:976.353243pt;}
.y68{bottom:977.453333pt;}
.y19f{bottom:982.234667pt;}
.y1f4{bottom:986.555598pt;}
.y60{bottom:1009.169320pt;}
.h23{height:0.000000pt;}
.h9{height:14.560013pt;}
.h1b{height:14.641750pt;}
.h31{height:17.961459pt;}
.h18{height:20.888566pt;}
.h1c{height:20.906497pt;}
.h35{height:21.595906pt;}
.h15{height:21.933807pt;}
.h8{height:21.935275pt;}
.h37{height:23.894882pt;}
.h17{height:23.936684pt;}
.h1a{height:24.245530pt;}
.h2c{height:25.589197pt;}
.h30{height:25.659228pt;}
.h25{height:25.675315pt;}
.h36{height:25.915087pt;}
.hf{height:26.236046pt;}
.h39{height:26.409948pt;}
.h22{height:26.519037pt;}
.h3a{height:26.640267pt;}
.h38{height:27.407998pt;}
.h2a{height:27.734304pt;}
.h32{height:28.534843pt;}
.h3b{height:29.159939pt;}
.h6{height:29.244587pt;}
.h26{height:29.244954pt;}
.h2b{height:30.350141pt;}
.h33{height:30.791073pt;}
.ha{height:31.062500pt;}
.h5{height:33.186155pt;}
.h4{height:33.425248pt;}
.h19{height:35.410934pt;}
.hd{height:36.449833pt;}
.h3{height:36.451296pt;}
.hc{height:36.556100pt;}
.h2{height:36.557568pt;}
.h1d{height:37.140573pt;}
.h29{height:37.851466pt;}
.h24{height:38.043849pt;}
.h10{height:39.806415pt;}
.h21{height:39.850400pt;}
.h13{height:39.896884pt;}
.h11{height:41.615797pt;}
.h12{height:41.706267pt;}
.h2d{height:43.976550pt;}
.h14{height:44.869197pt;}
.h27{height:44.874530pt;}
.h7{height:44.875264pt;}
.h2e{height:53.154287pt;}
.hb{height:57.226680pt;}
.h1e{height:75.791733pt;}
.h20{height:75.797067pt;}
.h1f{height:76.298400pt;}
.h1{height:87.733760pt;}
.h34{height:146.452320pt;}
.h16{height:165.105493pt;}
.h2f{height:169.348918pt;}
.he{height:230.074400pt;}
.h28{height:362.303760pt;}
.h0{height:1056.000000pt;}
.w6{width:164.025543pt;}
.w5{width:301.268760pt;}
.w1{width:326.698667pt;}
.w7{width:334.748160pt;}
.w4{width:334.749227pt;}
.w3{width:334.752800pt;}
.w2{width:630.794667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x36{left:4.503663pt;}
.x1f{left:7.163928pt;}
.x5a{left:10.215183pt;}
.x18{left:12.234288pt;}
.x28{left:14.684448pt;}
.x17{left:15.669048pt;}
.x27{left:16.925474pt;}
.x63{left:19.222321pt;}
.x1a{left:25.188240pt;}
.x58{left:26.183150pt;}
.x1c{left:27.281808pt;}
.x1b{left:34.085904pt;}
.x37{left:38.434571pt;}
.x59{left:51.147123pt;}
.x5e{left:55.290164pt;}
.x22{left:56.384584pt;}
.x5f{left:60.573088pt;}
.x7{left:65.285333pt;}
.x5b{left:69.289107pt;}
.x57{left:73.254667pt;}
.x1{left:75.249333pt;}
.x6{left:78.569333pt;}
.x3b{left:79.588000pt;}
.x2{left:80.573333pt;}
.x67{left:82.797553pt;}
.x69{left:85.102752pt;}
.x68{left:86.548403pt;}
.x64{left:89.140863pt;}
.xf{left:90.134400pt;}
.x3a{left:91.981333pt;}
.x12{left:94.406832pt;}
.x32{left:95.746059pt;}
.x53{left:97.750667pt;}
.x55{left:99.332000pt;}
.x2f{left:101.688992pt;}
.x2e{left:104.100742pt;}
.x56{left:108.202667pt;}
.x52{left:109.269333pt;}
.x3c{left:114.752000pt;}
.x35{left:119.785764pt;}
.x4a{left:122.957333pt;}
.x49{left:124.704000pt;}
.x61{left:127.462352pt;}
.x31{left:129.944939pt;}
.x16{left:131.000656pt;}
.x15{left:132.832528pt;}
.x14{left:134.947904pt;}
.x54{left:136.304000pt;}
.x6b{left:137.501333pt;}
.x4f{left:138.956000pt;}
.x60{left:140.305776pt;}
.x19{left:143.398504pt;}
.x4e{left:146.508000pt;}
.x34{left:149.638739pt;}
.x51{left:151.032000pt;}
.x39{left:152.532000pt;}
.x33{left:155.006829pt;}
.x5c{left:157.618936pt;}
.x50{left:159.254667pt;}
.x30{left:162.315556pt;}
.x5{left:165.140000pt;}
.x10{left:175.393333pt;}
.x8{left:180.825333pt;}
.x4c{left:182.438530pt;}
.x4{left:187.489333pt;}
.x65{left:189.255332pt;}
.x11{left:190.888000pt;}
.x3d{left:230.158667pt;}
.x29{left:232.826839pt;}
.x4d{left:234.512681pt;}
.x2d{left:236.165687pt;}
.x21{left:238.077936pt;}
.x20{left:239.310088pt;}
.x25{left:243.137289pt;}
.x24{left:245.190302pt;}
.x26{left:246.549613pt;}
.x2a{left:247.446455pt;}
.x13{left:249.330864pt;}
.x3{left:251.986667pt;}
.x1e{left:260.452944pt;}
.x1d{left:265.425168pt;}
.x6a{left:270.264000pt;}
.xe{left:272.628000pt;}
.x2c{left:282.792862pt;}
.x2b{left:284.184589pt;}
.x38{left:314.359563pt;}
.x9{left:415.970667pt;}
.x6e{left:421.284000pt;}
.xd{left:426.597333pt;}
.xa{left:429.253333pt;}
.xb{left:430.273333pt;}
.x4b{left:432.708000pt;}
.x6f{left:440.316000pt;}
.xc{left:442.666667pt;}
.x66{left:448.449333pt;}
.x3e{left:463.905333pt;}
.x48{left:484.660000pt;}
.x62{left:493.386667pt;}
.x23{left:516.772000pt;}
.x6c{left:529.737333pt;}
.x3f{left:541.038667pt;}
.x6d{left:546.149333pt;}
.x41{left:579.845333pt;}
.x42{left:580.834667pt;}
.x40{left:584.733333pt;}
.x5d{left:586.688000pt;}
.x43{left:602.840000pt;}
.x44{left:618.357333pt;}
.x45{left:653.305333pt;}
.x46{left:668.878667pt;}
.x47{left:735.226667pt;}
}




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