
    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_d7d8c9ebc1817814e3f99bf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_62d64e7ad444dfc03eaec3e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_d1fbe1c7d8f667897ad718b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_55357d9d6e4a7bb2f1b94361.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_731b19108fb97557b7458c70.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b9c67d792b53f8f5e9a63172.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_772991d0bdad740c48bf70e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.264000;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_ab48bc3f20a4ed663b514d74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_675ff57a62321abee76796df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_5ab4f064c2444a8ba3f3b0a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.468000;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_3af4e6727bbf289789eb076f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;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_dfa8cb63242f0588b5a3b7fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e4686ab1b270c9412101962.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fe52d948bc5d46d99f8182ce.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.947000;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_3bcdee1222904e0a23bddd7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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_5f6c19205d5eb3c1e195554d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.945000;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_1e4507eb641a600774d6559a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943000;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_b3a3deb75881a65b4f428802.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a0b824f65070817e68523b0d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7e66bde45b9b3bfb4150fa78.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.933000;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:ff17;src:url('chunks/assets/font_f394c26c31c072d4c2cabb41.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.066000;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:ff18;src:url('chunks/assets/font_c7e44ada49705ed4236851b8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.199000;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:ff19;src:url('chunks/assets/font_bc1bcea775d8f93afa5c75a0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.719000;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:ff1a;src:url('chunks/assets/font_dd7c22da6dfc57597df649c6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.242000;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:ff1b;src:url('chunks/assets/font_405650e817f3f9ef0702fb90.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,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);}
.v3{vertical-align:-15.647400px;}
.v2{vertical-align:-13.947000px;}
.v1{vertical-align:-9.173479px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:3.402000px;}
.v7{vertical-align:7.483200px;}
.v8{vertical-align:9.184200px;}
.v4{vertical-align:14.625417px;}
.v6{vertical-align:16.667400px;}
.v9{vertical-align:18.030180px;}
.v5{vertical-align:24.831600px;}
.ls0{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.004800px;}
.ls76{letter-spacing:0.019200px;}
.ls35{letter-spacing:0.029235px;}
.ls4b{letter-spacing:0.030000px;}
.ls17{letter-spacing:0.032174px;}
.ls30{letter-spacing:0.034487px;}
.ls3a{letter-spacing:0.046601px;}
.ls87{letter-spacing:0.048600px;}
.ls5b{letter-spacing:0.060001px;}
.ls41{letter-spacing:0.078740px;}
.ls16{letter-spacing:0.096001px;}
.ls18{letter-spacing:0.115199px;}
.ls5{letter-spacing:0.168002px;}
.ls3c{letter-spacing:0.180002px;}
.ls69{letter-spacing:0.208495px;}
.ls6d{letter-spacing:0.210050px;}
.ls84{letter-spacing:0.210600px;}
.ls68{letter-spacing:0.211997px;}
.ls70{letter-spacing:0.214147px;}
.ls6b{letter-spacing:0.217211px;}
.ls31{letter-spacing:0.246137px;}
.ls1b{letter-spacing:0.246737px;}
.ls24{letter-spacing:0.247337px;}
.ls65{letter-spacing:0.254288px;}
.ls57{letter-spacing:0.274505px;}
.ls7a{letter-spacing:0.276003px;}
.ls5c{letter-spacing:0.277938px;}
.ls38{letter-spacing:0.312943px;}
.ls2c{letter-spacing:0.314996px;}
.ls3d{letter-spacing:0.418940px;}
.ls36{letter-spacing:0.586337px;}
.ls25{letter-spacing:0.586937px;}
.ls56{letter-spacing:0.587537px;}
.ls59{letter-spacing:0.800588px;}
.ls32{letter-spacing:0.801188px;}
.ls26{letter-spacing:0.802189px;}
.ls20{letter-spacing:1.140788px;}
.ls1d{letter-spacing:1.142384px;}
.ls2b{letter-spacing:2.944574px;}
.ls5e{letter-spacing:2.945108px;}
.ls53{letter-spacing:2.945708px;}
.ls48{letter-spacing:3.284769px;}
.ls55{letter-spacing:3.285908px;}
.ls5a{letter-spacing:3.392536px;}
.ls2f{letter-spacing:3.732136px;}
.ls63{letter-spacing:3.732736px;}
.ls45{letter-spacing:3.861788px;}
.ls4a{letter-spacing:3.862388px;}
.ls1c{letter-spacing:6.952800px;}
.ls1f{letter-spacing:6.953400px;}
.ls33{letter-spacing:7.293000px;}
.ls44{letter-spacing:7.293600px;}
.ls94{letter-spacing:7.939101px;}
.ls58{letter-spacing:9.798098px;}
.ls47{letter-spacing:9.924099px;}
.ls46{letter-spacing:10.074101px;}
.ls61{letter-spacing:10.140101px;}
.ls14{letter-spacing:13.326133px;}
.ls64{letter-spacing:13.596736px;}
.ls15{letter-spacing:13.668137px;}
.ls60{letter-spacing:13.726988px;}
.ls6{letter-spacing:13.922801px;}
.ls1a{letter-spacing:15.796603px;}
.ls73{letter-spacing:16.137398px;}
.ls23{letter-spacing:16.210574px;}
.ls52{letter-spacing:16.211708px;}
.ls19{letter-spacing:16.449394px;}
.ls43{letter-spacing:16.551369px;}
.ls13{letter-spacing:16.551908px;}
.ls34{letter-spacing:16.657936px;}
.ls5f{letter-spacing:16.658536px;}
.ls12{letter-spacing:16.728167px;}
.ls2e{letter-spacing:16.914137px;}
.ls62{letter-spacing:16.998136px;}
.ls54{letter-spacing:17.128388px;}
.ls85{letter-spacing:17.733600px;}
.ls81{letter-spacing:18.073800px;}
.ls7d{letter-spacing:18.581400px;}
.ls3{letter-spacing:18.754200px;}
.ls79{letter-spacing:19.554196px;}
.ls3e{letter-spacing:19.612569px;}
.ls2d{letter-spacing:19.612574px;}
.ls2{letter-spacing:19.774800px;}
.ls50{letter-spacing:19.952769px;}
.ls21{letter-spacing:20.059936px;}
.ls29{letter-spacing:20.622206px;}
.ls89{letter-spacing:20.795400px;}
.lse{letter-spacing:20.916209px;}
.ls8a{letter-spacing:21.135600px;}
.ls83{letter-spacing:21.475800px;}
.lsd{letter-spacing:21.594216px;}
.ls7c{letter-spacing:21.643200px;}
.ls8e{letter-spacing:21.816000px;}
.ls77{letter-spacing:21.892526px;}
.ls8d{letter-spacing:22.156200px;}
.ls8{letter-spacing:22.278223px;}
.ls6e{letter-spacing:22.674908px;}
.ls8b{letter-spacing:22.836600px;}
.ls92{letter-spacing:23.176800px;}
.ls37{letter-spacing:23.281200px;}
.ls10{letter-spacing:23.298233px;}
.ls71{letter-spacing:23.634236px;}
.ls28{letter-spacing:23.694369px;}
.ls4c{letter-spacing:24.024240px;}
.ls88{letter-spacing:24.197400px;}
.lsa{letter-spacing:24.318243px;}
.ls91{letter-spacing:24.537600px;}
.ls80{letter-spacing:24.705000px;}
.ls93{letter-spacing:24.877800px;}
.ls6a{letter-spacing:25.055708px;}
.ls4{letter-spacing:25.218000px;}
.ls7b{letter-spacing:25.338253px;}
.ls8f{letter-spacing:25.558200px;}
.lsc{letter-spacing:25.680257px;}
.ls82{letter-spacing:26.065800px;}
.ls8c{letter-spacing:26.238600px;}
.ls2a{letter-spacing:26.312588px;}
.ls7f{letter-spacing:26.746200px;}
.ls22{letter-spacing:26.808268px;}
.ls7e{letter-spacing:27.086400px;}
.ls7{letter-spacing:27.378274px;}
.ls11{letter-spacing:28.056281px;}
.ls1{letter-spacing:28.140000px;}
.ls42{letter-spacing:28.796769px;}
.ls6c{letter-spacing:28.797308px;}
.ls66{letter-spacing:29.244136px;}
.lsb{letter-spacing:29.418294px;}
.ls49{letter-spacing:30.394388px;}
.ls3b{letter-spacing:31.285336px;}
.lsf{letter-spacing:31.458315px;}
.ls4d{letter-spacing:32.190322px;}
.ls9{letter-spacing:32.478325px;}
.ls86{letter-spacing:35.424000px;}
.ls6f{letter-spacing:38.662508px;}
.ls1e{letter-spacing:42.062774px;}
.ls51{letter-spacing:43.602436px;}
.ls90{letter-spacing:45.289800px;}
.ls3f{letter-spacing:75.108751px;}
.ls5d{letter-spacing:158.396774px;}
.ls4f{letter-spacing:172.153722px;}
.ls4e{letter-spacing:389.871899px;}
.ls27{letter-spacing:694.824969px;}
.ls39{letter-spacing:809.457974px;}
.ls40{letter-spacing:900.960374px;}
.ls75{letter-spacing:988.643642px;}
.ls74{letter-spacing:1044.428544px;}
.ls67{letter-spacing:1058.453174px;}
.ls78{letter-spacing:1230.066301px;}
.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;}
}
.ws1b0{word-spacing:-23.358234px;}
.ws2b8{word-spacing:-17.787600px;}
.ws1{word-spacing:-13.986000px;}
.wsa3{word-spacing:-0.063001px;}
.ws49{word-spacing:-0.060001px;}
.ws1bb{word-spacing:-0.057000px;}
.ws1e{word-spacing:-0.054000px;}
.ws15c{word-spacing:-0.047999px;}
.ws43{word-spacing:-0.041999px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:9.642096px;}
.ws13c{word-spacing:9.978100px;}
.ws190{word-spacing:10.014100px;}
.ws19e{word-spacing:12.000120px;}
.ws41{word-spacing:13.666605px;}
.ws45{word-spacing:13.973200px;}
.ws19f{word-spacing:14.262143px;}
.ws47{word-spacing:14.741803px;}
.ws89{word-spacing:14.755303px;}
.ws2c{word-spacing:14.769415px;}
.ws227{word-spacing:14.809303px;}
.wsc9{word-spacing:14.845302px;}
.ws2b{word-spacing:14.858802px;}
.ws46{word-spacing:14.885802px;}
.ws2e{word-spacing:14.899014px;}
.ws1a0{word-spacing:14.952150px;}
.ws2d{word-spacing:14.975813px;}
.ws1f{word-spacing:15.002800px;}
.ws2f{word-spacing:15.638205px;}
.ws1e2{word-spacing:15.643004px;}
.ws161{word-spacing:15.686204px;}
.ws1c2{word-spacing:15.691004px;}
.ws2c1{word-spacing:15.724603px;}
.ws2be{word-spacing:15.734203px;}
.ws2bd{word-spacing:15.753403px;}
.ws31{word-spacing:15.767803px;}
.ws16d{word-spacing:15.772603px;}
.ws34{word-spacing:15.777403px;}
.ws40{word-spacing:15.791803px;}
.ws32{word-spacing:15.811002px;}
.ws30{word-spacing:15.815802px;}
.ws1c5{word-spacing:15.820602px;}
.ws2bb{word-spacing:15.830202px;}
.ws2bc{word-spacing:15.863802px;}
.ws1bf{word-spacing:15.873402px;}
.ws2ba{word-spacing:15.883001px;}
.ws1c0{word-spacing:15.887801px;}
.ws33{word-spacing:15.897401px;}
.ws164{word-spacing:15.911801px;}
.ws2bf{word-spacing:15.935801px;}
.ws1d8{word-spacing:15.950201px;}
.ws1ca{word-spacing:15.955001px;}
.ws2c4{word-spacing:15.959801px;}
.ws2c0{word-spacing:15.979000px;}
.ws1db{word-spacing:15.983800px;}
.ws1d1{word-spacing:16.022200px;}
.ws167{word-spacing:16.027000px;}
.ws1d4{word-spacing:16.031800px;}
.ws15a{word-spacing:16.041399px;}
.ws16c{word-spacing:16.046199px;}
.ws166{word-spacing:16.055799px;}
.ws16b{word-spacing:16.060599px;}
.ws1da{word-spacing:16.070199px;}
.ws2c2{word-spacing:16.074999px;}
.ws16a{word-spacing:16.166198px;}
.ws2c3{word-spacing:16.204597px;}
.ws44{word-spacing:16.291567px;}
.ws148{word-spacing:16.992926px;}
.ws14{word-spacing:17.145000px;}
.ws14c{word-spacing:17.332526px;}
.ws149{word-spacing:17.333126px;}
.ws13{word-spacing:17.388000px;}
.wsc{word-spacing:17.571600px;}
.ws17{word-spacing:17.604000px;}
.ws272{word-spacing:17.668800px;}
.ws238{word-spacing:17.679600px;}
.wsa{word-spacing:17.701200px;}
.ws25c{word-spacing:17.706600px;}
.ws226{word-spacing:17.717400px;}
.ws23d{word-spacing:17.722800px;}
.ws29e{word-spacing:17.739000px;}
.ws23b{word-spacing:17.755200px;}
.ws29d{word-spacing:17.760600px;}
.ws288{word-spacing:17.766000px;}
.ws2b7{word-spacing:17.771400px;}
.ws21b{word-spacing:17.803800px;}
.ws28f{word-spacing:17.809200px;}
.ws248{word-spacing:17.814600px;}
.ws233{word-spacing:17.820000px;}
.ws21c{word-spacing:17.825400px;}
.ws126{word-spacing:17.836200px;}
.ws22f{word-spacing:17.863200px;}
.ws169{word-spacing:17.865377px;}
.ws231{word-spacing:17.874000px;}
.wsf{word-spacing:17.884800px;}
.ws23c{word-spacing:17.895600px;}
.ws22{word-spacing:17.911800px;}
.ws22c{word-spacing:17.922600px;}
.ws291{word-spacing:17.955000px;}
.ws260{word-spacing:17.960400px;}
.ws22e{word-spacing:17.971200px;}
.ws2b6{word-spacing:17.987400px;}
.ws2a1{word-spacing:17.998200px;}
.ws1d{word-spacing:18.019800px;}
.ws22d{word-spacing:18.030600px;}
.ws2a0{word-spacing:18.041400px;}
.ws252{word-spacing:18.046800px;}
.ws261{word-spacing:18.063000px;}
.ws25b{word-spacing:18.068400px;}
.ws29c{word-spacing:18.079200px;}
.ws21f{word-spacing:18.084600px;}
.ws259{word-spacing:18.106200px;}
.ws241{word-spacing:18.111600px;}
.ws247{word-spacing:18.122400px;}
.ws234{word-spacing:18.154800px;}
.ws287{word-spacing:18.160200px;}
.ws237{word-spacing:18.203400px;}
.ws19b{word-spacing:18.240000px;}
.ws25d{word-spacing:18.252000px;}
.ws10{word-spacing:18.473400px;}
.ws26c{word-spacing:18.484200px;}
.ws26b{word-spacing:18.516600px;}
.ws29b{word-spacing:18.581400px;}
.ws214{word-spacing:18.613800px;}
.ws159{word-spacing:18.673200px;}
.ws213{word-spacing:18.689400px;}
.ws1ba{word-spacing:18.707400px;}
.ws215{word-spacing:18.862200px;}
.ws11b{word-spacing:18.864189px;}
.ws115{word-spacing:18.870189px;}
.ws1bc{word-spacing:18.992400px;}
.ws42{word-spacing:19.000529px;}
.ws1c{word-spacing:19.002600px;}
.ws232{word-spacing:19.024200px;}
.ws158{word-spacing:19.043700px;}
.ws113{word-spacing:19.104191px;}
.wse{word-spacing:19.186200px;}
.wse9{word-spacing:19.254193px;}
.ws1eb{word-spacing:19.272193px;}
.ws1b{word-spacing:19.272600px;}
.ws18a{word-spacing:19.362194px;}
.ws18b{word-spacing:19.404194px;}
.ws1e4{word-spacing:19.446194px;}
.ws29f{word-spacing:19.553400px;}
.ws119{word-spacing:19.554196px;}
.ws2ae{word-spacing:19.580400px;}
.wsd{word-spacing:19.596600px;}
.wsfe{word-spacing:19.602196px;}
.ws1ef{word-spacing:19.608196px;}
.ws27b{word-spacing:19.612800px;}
.ws28d{word-spacing:19.623600px;}
.ws146{word-spacing:19.626196px;}
.ws139{word-spacing:19.644196px;}
.wsd2{word-spacing:19.650196px;}
.ws21d{word-spacing:19.650600px;}
.ws180{word-spacing:19.662197px;}
.wsdb{word-spacing:19.668197px;}
.ws1a1{word-spacing:19.680197px;}
.ws28e{word-spacing:19.699200px;}
.ws18e{word-spacing:19.704197px;}
.ws78{word-spacing:19.728197px;}
.ws54{word-spacing:19.746197px;}
.ws27c{word-spacing:19.747800px;}
.ws50{word-spacing:19.752198px;}
.ws141{word-spacing:19.758198px;}
.ws27e{word-spacing:19.764000px;}
.wsbd{word-spacing:19.764198px;}
.ws105{word-spacing:19.776198px;}
.ws186{word-spacing:19.782198px;}
.ws4f{word-spacing:19.788198px;}
.ws2b4{word-spacing:19.796400px;}
.ws5f{word-spacing:19.800198px;}
.ws1a6{word-spacing:19.812198px;}
.ws20f{word-spacing:19.818198px;}
.wsf5{word-spacing:19.824198px;}
.ws177{word-spacing:19.836198px;}
.ws21e{word-spacing:19.839600px;}
.ws82{word-spacing:19.842198px;}
.ws9c{word-spacing:19.848198px;}
.ws9d{word-spacing:19.854199px;}
.ws27d{word-spacing:19.855800px;}
.ws131{word-spacing:19.878199px;}
.wsf7{word-spacing:19.890199px;}
.ws51{word-spacing:19.902199px;}
.ws157{word-spacing:19.908199px;}
.ws2af{word-spacing:19.909800px;}
.ws193{word-spacing:19.914199px;}
.ws123{word-spacing:19.932199px;}
.ws2b3{word-spacing:19.953000px;}
.ws73{word-spacing:19.968200px;}
.wsf3{word-spacing:19.986200px;}
.ws200{word-spacing:20.004200px;}
.ws72{word-spacing:20.022200px;}
.ws2b0{word-spacing:20.023200px;}
.wsa8{word-spacing:20.094201px;}
.ws84{word-spacing:20.100201px;}
.wsb3{word-spacing:20.106201px;}
.wsda{word-spacing:20.112201px;}
.ws71{word-spacing:20.124201px;}
.wsb4{word-spacing:20.142201px;}
.ws1fc{word-spacing:20.160202px;}
.ws20d{word-spacing:20.172202px;}
.ws59{word-spacing:20.196202px;}
.ws1a4{word-spacing:20.208202px;}
.ws14e{word-spacing:20.214202px;}
.ws1a2{word-spacing:20.226202px;}
.ws1a3{word-spacing:20.232202px;}
.ws179{word-spacing:20.256203px;}
.ws2b5{word-spacing:20.282400px;}
.ws55{word-spacing:20.292203px;}
.ws8f{word-spacing:20.334203px;}
.ws1e5{word-spacing:20.340203px;}
.ws224{word-spacing:20.341800px;}
.ws178{word-spacing:20.382204px;}
.ws290{word-spacing:20.428200px;}
.ws1f2{word-spacing:20.454205px;}
.wscd{word-spacing:20.484205px;}
.ws263{word-spacing:20.487600px;}
.wse2{word-spacing:20.502205px;}
.ws269{word-spacing:20.536200px;}
.ws116{word-spacing:20.550206px;}
.ws124{word-spacing:20.557800px;}
.ws147{word-spacing:20.566528px;}
.ws125{word-spacing:20.568600px;}
.ws268{word-spacing:20.595600px;}
.ws267{word-spacing:20.622600px;}
.ws281{word-spacing:20.633400px;}
.ws16{word-spacing:20.638800px;}
.ws282{word-spacing:20.649600px;}
.ws19d{word-spacing:20.664207px;}
.ws262{word-spacing:20.682000px;}
.ws1f9{word-spacing:20.688207px;}
.ws27f{word-spacing:20.692800px;}
.wscc{word-spacing:20.706207px;}
.ws280{word-spacing:20.719800px;}
.wsf8{word-spacing:20.727197px;}
.ws107{word-spacing:20.742207px;}
.wsd4{word-spacing:20.754208px;}
.ws7f{word-spacing:20.766208px;}
.ws9{word-spacing:20.777598px;}
.wsa2{word-spacing:20.783898px;}
.ws26a{word-spacing:20.784600px;}
.wsd5{word-spacing:20.802208px;}
.ws11c{word-spacing:20.815398px;}
.ws1f5{word-spacing:20.832208px;}
.ws21{word-spacing:20.854800px;}
.wsa4{word-spacing:20.859499px;}
.ws20e{word-spacing:20.862209px;}
.ws26{word-spacing:20.865600px;}
.wsbe{word-spacing:20.865799px;}
.ws109{word-spacing:20.868209px;}
.ws207{word-spacing:20.874209px;}
.ws264{word-spacing:20.876400px;}
.ws106{word-spacing:20.892209px;}
.ws8{word-spacing:20.909899px;}
.ws7{word-spacing:20.916199px;}
.wsd6{word-spacing:20.952210px;}
.ws19c{word-spacing:20.964210px;}
.ws204{word-spacing:21.078211px;}
.ws206{word-spacing:21.096211px;}
.ws2a2{word-spacing:21.114000px;}
.ws2a6{word-spacing:21.124800px;}
.ws9f{word-spacing:21.132211px;}
.ws13b{word-spacing:21.144211px;}
.ws255{word-spacing:21.168000px;}
.ws203{word-spacing:21.180212px;}
.ws256{word-spacing:21.195000px;}
.wsab{word-spacing:21.198212px;}
.ws108{word-spacing:21.234212px;}
.wsad{word-spacing:21.240212px;}
.ws14a{word-spacing:21.240499px;}
.wsac{word-spacing:21.264213px;}
.ws6d{word-spacing:21.276213px;}
.ws239{word-spacing:21.286800px;}
.ws292{word-spacing:21.324600px;}
.wsaa{word-spacing:21.342213px;}
.ws3b{word-spacing:21.348213px;}
.ws23a{word-spacing:21.400200px;}
.ws254{word-spacing:21.448800px;}
.ws60{word-spacing:21.456215px;}
.ws211{word-spacing:21.465000px;}
.ws1af{word-spacing:21.486215px;}
.ws293{word-spacing:21.556800px;}
.ws6e{word-spacing:21.558216px;}
.ws194{word-spacing:21.564216px;}
.wsfd{word-spacing:21.570216px;}
.ws114{word-spacing:21.582216px;}
.ws212{word-spacing:21.583800px;}
.ws223{word-spacing:21.600000px;}
.wsfc{word-spacing:21.612216px;}
.wsfb{word-spacing:21.636216px;}
.ws134{word-spacing:21.642216px;}
.ws138{word-spacing:21.702217px;}
.ws91{word-spacing:21.708217px;}
.ws1dd{word-spacing:21.719729px;}
.ws28b{word-spacing:21.735000px;}
.ws132{word-spacing:21.747198px;}
.ws25e{word-spacing:21.762000px;}
.ws9e{word-spacing:21.773598px;}
.ws25f{word-spacing:21.789000px;}
.ws21a{word-spacing:21.793398px;}
.ws25a{word-spacing:21.799800px;}
.ws135{word-spacing:21.810218px;}
.ws127{word-spacing:21.816218px;}
.ws69{word-spacing:21.828218px;}
.ws1ae{word-spacing:21.839599px;}
.ws28a{word-spacing:21.843000px;}
.ws1e0{word-spacing:21.863727px;}
.ws22a{word-spacing:21.880800px;}
.ws1de{word-spacing:21.897326px;}
.ws17c{word-spacing:21.900219px;}
.ws1df{word-spacing:21.988525px;}
.ws230{word-spacing:21.991400px;}
.ws289{word-spacing:21.994200px;}
.ws35{word-spacing:21.998000px;}
.ws12c{word-spacing:22.008220px;}
.ws210{word-spacing:22.044200px;}
.ws70{word-spacing:22.068221px;}
.ws52{word-spacing:22.080221px;}
.ws53{word-spacing:22.098221px;}
.wsb5{word-spacing:22.110221px;}
.ws98{word-spacing:22.122221px;}
.ws1e8{word-spacing:22.128221px;}
.ws5e{word-spacing:22.134221px;}
.ws20c{word-spacing:22.146221px;}
.ws96{word-spacing:22.164222px;}
.ws1e1{word-spacing:22.185323px;}
.ws18{word-spacing:22.226400px;}
.ws97{word-spacing:22.230222px;}
.ws129{word-spacing:22.242222px;}
.wsd3{word-spacing:22.248222px;}
.ws65{word-spacing:22.254223px;}
.ws12d{word-spacing:22.291200px;}
.ws64{word-spacing:22.386224px;}
.ws17b{word-spacing:22.410224px;}
.wse6{word-spacing:22.416224px;}
.ws17a{word-spacing:22.440224px;}
.ws128{word-spacing:22.476225px;}
.ws209{word-spacing:22.494225px;}
.ws246{word-spacing:22.496400px;}
.wsee{word-spacing:22.506225px;}
.ws12e{word-spacing:22.518000px;}
.ws102{word-spacing:22.566226px;}
.ws76{word-spacing:22.578226px;}
.ws25{word-spacing:22.604400px;}
.ws39{word-spacing:22.614226px;}
.ws101{word-spacing:22.656227px;}
.wse5{word-spacing:22.716227px;}
.ws1e3{word-spacing:22.734227px;}
.ws136{word-spacing:22.752228px;}
.ws145{word-spacing:22.758228px;}
.ws277{word-spacing:22.804200px;}
.ws77{word-spacing:22.806228px;}
.ws2aa{word-spacing:22.825800px;}
.ws57{word-spacing:22.848228px;}
.ws2a9{word-spacing:22.863600px;}
.ws103{word-spacing:22.866229px;}
.ws2a8{word-spacing:22.869000px;}
.ws14b{word-spacing:22.878443px;}
.ws1b6{word-spacing:22.890229px;}
.ws2a7{word-spacing:22.901400px;}
.ws94{word-spacing:22.908229px;}
.ws279{word-spacing:22.917600px;}
.ws11f{word-spacing:22.932229px;}
.ws118{word-spacing:22.944229px;}
.ws93{word-spacing:22.950230px;}
.ws1dc{word-spacing:22.967713px;}
.ws278{word-spacing:22.998600px;}
.ws13a{word-spacing:23.016230px;}
.ws15{word-spacing:23.036400px;}
.ws95{word-spacing:23.070231px;}
.wsae{word-spacing:23.088231px;}
.ws11e{word-spacing:23.094231px;}
.ws1b2{word-spacing:23.190232px;}
.ws4c{word-spacing:23.208232px;}
.ws27a{word-spacing:23.209200px;}
.wsc2{word-spacing:23.274233px;}
.ws1b4{word-spacing:23.352234px;}
.ws1b8{word-spacing:23.364234px;}
.ws150{word-spacing:23.376234px;}
.ws62{word-spacing:23.382234px;}
.ws1b5{word-spacing:23.388234px;}
.ws1b3{word-spacing:23.424234px;}
.ws184{word-spacing:23.502235px;}
.ws1fe{word-spacing:23.526235px;}
.ws1b1{word-spacing:23.586236px;}
.ws10a{word-spacing:23.604236px;}
.ws1b9{word-spacing:23.616236px;}
.ws58{word-spacing:23.628236px;}
.ws187{word-spacing:23.658237px;}
.ws196{word-spacing:23.700600px;}
.wsd8{word-spacing:23.706237px;}
.ws121{word-spacing:23.772238px;}
.ws122{word-spacing:23.802238px;}
.wsd7{word-spacing:23.832238px;}
.ws11{word-spacing:23.835600px;}
.ws198{word-spacing:23.860200px;}
.ws120{word-spacing:23.868239px;}
.wsbc{word-spacing:23.874239px;}
.wsc8{word-spacing:23.886239px;}
.ws250{word-spacing:23.889600px;}
.ws18f{word-spacing:23.934239px;}
.wsbb{word-spacing:23.946239px;}
.ws12f{word-spacing:23.970600px;}
.wsc7{word-spacing:23.988240px;}
.ws24f{word-spacing:24.008400px;}
.ws6f{word-spacing:24.018240px;}
.ws8b{word-spacing:24.030240px;}
.ws225{word-spacing:24.046200px;}
.ws253{word-spacing:24.057000px;}
.ws8c{word-spacing:24.060241px;}
.ws197{word-spacing:24.065400px;}
.wsb8{word-spacing:24.084241px;}
.ws1ee{word-spacing:24.090241px;}
.wsf0{word-spacing:24.102241px;}
.ws273{word-spacing:24.121800px;}
.ws251{word-spacing:24.138000px;}
.ws24a{word-spacing:24.143400px;}
.ws1a{word-spacing:24.159600px;}
.ws249{word-spacing:24.175800px;}
.ws66{word-spacing:24.180242px;}
.ws24e{word-spacing:24.186600px;}
.ws16f{word-spacing:24.216242px;}
.ws11d{word-spacing:24.222242px;}
.ws24b{word-spacing:24.229800px;}
.ws2a4{word-spacing:24.262200px;}
.ws171{word-spacing:24.276243px;}
.ws24d{word-spacing:24.278400px;}
.ws90{word-spacing:24.294243px;}
.wsf2{word-spacing:24.330243px;}
.wsa7{word-spacing:24.336243px;}
.ws24c{word-spacing:24.337800px;}
.ws195{word-spacing:24.344700px;}
.ws20b{word-spacing:24.354244px;}
.ws16e{word-spacing:24.360244px;}
.ws2ab{word-spacing:24.364800px;}
.ws22b{word-spacing:24.386400px;}
.ws2a3{word-spacing:24.397200px;}
.ws20a{word-spacing:24.402244px;}
.ws170{word-spacing:24.420244px;}
.ws218{word-spacing:24.451200px;}
.ws2a5{word-spacing:24.456600px;}
.ws6b{word-spacing:24.468245px;}
.ws29{word-spacing:24.483600px;}
.ws56{word-spacing:24.492245px;}
.ws2ac{word-spacing:24.510600px;}
.ws219{word-spacing:24.521400px;}
.wsf4{word-spacing:24.546245px;}
.ws2ad{word-spacing:24.618600px;}
.ws61{word-spacing:24.624246px;}
.ws1fa{word-spacing:24.654247px;}
.ws26e{word-spacing:24.678000px;}
.wsdf{word-spacing:24.690247px;}
.wsb{word-spacing:24.715800px;}
.ws8a{word-spacing:24.738247px;}
.ws92{word-spacing:24.762248px;}
.ws26d{word-spacing:24.796800px;}
.ws7a{word-spacing:24.804248px;}
.wsd0{word-spacing:24.852249px;}
.ws7b{word-spacing:24.864249px;}
.ws130{word-spacing:24.876249px;}
.wscf{word-spacing:24.882249px;}
.ws2b2{word-spacing:24.910200px;}
.ws1ed{word-spacing:24.912249px;}
.ws2b1{word-spacing:24.921000px;}
.ws26f{word-spacing:24.958800px;}
.wsd1{word-spacing:24.960250px;}
.ws112{word-spacing:24.972250px;}
.ws270{word-spacing:25.056000px;}
.ws199{word-spacing:25.085700px;}
.ws3d{word-spacing:25.127686px;}
.ws19{word-spacing:25.164000px;}
.ws1e9{word-spacing:25.164252px;}
.ws5b{word-spacing:25.176252px;}
.ws283{word-spacing:25.207200px;}
.ws38{word-spacing:25.266253px;}
.ws202{word-spacing:25.284253px;}
.ws294{word-spacing:25.288200px;}
.ws12a{word-spacing:25.308253px;}
.ws152{word-spacing:25.314253px;}
.ws5a{word-spacing:25.326253px;}
.ws151{word-spacing:25.374254px;}
.ws189{word-spacing:25.392254px;}
.ws17e{word-spacing:25.398254px;}
.ws156{word-spacing:25.422254px;}
.ws19a{word-spacing:25.427700px;}
.ws154{word-spacing:25.428254px;}
.ws155{word-spacing:25.434254px;}
.wsba{word-spacing:25.440254px;}
.ws37{word-spacing:25.446254px;}
.ws295{word-spacing:25.450200px;}
.wsa1{word-spacing:25.452255px;}
.ws111{word-spacing:25.458255px;}
.ws3c{word-spacing:25.468482px;}
.ws208{word-spacing:25.488255px;}
.ws17f{word-spacing:25.500255px;}
.ws17d{word-spacing:25.506255px;}
.ws3f{word-spacing:25.526081px;}
.wsa0{word-spacing:25.536255px;}
.wsb9{word-spacing:25.566256px;}
.ws188{word-spacing:25.608256px;}
.wsec{word-spacing:25.614256px;}
.ws1a5{word-spacing:25.620256px;}
.ws229{word-spacing:25.623000px;}
.ws271{word-spacing:25.639200px;}
.ws228{word-spacing:25.747200px;}
.ws236{word-spacing:25.752600px;}
.ws117{word-spacing:25.758258px;}
.ws235{word-spacing:25.785000px;}
.ws1fb{word-spacing:25.872259px;}
.ws1fd{word-spacing:25.884259px;}
.ws104{word-spacing:25.908259px;}
.wsed{word-spacing:25.926259px;}
.ws258{word-spacing:25.930800px;}
.ws257{word-spacing:25.968600px;}
.ws11a{word-spacing:26.058261px;}
.ws284{word-spacing:26.082000px;}
.ws143{word-spacing:26.112261px;}
.ws23f{word-spacing:26.125200px;}
.ws23e{word-spacing:26.146800px;}
.ws80{word-spacing:26.160262px;}
.ws142{word-spacing:26.214262px;}
.wse8{word-spacing:26.220262px;}
.wsc5{word-spacing:26.250262px;}
.ws240{word-spacing:26.271000px;}
.ws285{word-spacing:26.319600px;}
.ws144{word-spacing:26.412264px;}
.ws18d{word-spacing:26.442264px;}
.ws286{word-spacing:26.568000px;}
.wsf6{word-spacing:26.586266px;}
.wsc6{word-spacing:26.604266px;}
.ws222{word-spacing:26.649000px;}
.ws172{word-spacing:26.658267px;}
.ws221{word-spacing:26.773200px;}
.wsd9{word-spacing:26.826268px;}
.ws216{word-spacing:26.832600px;}
.ws217{word-spacing:26.908200px;}
.ws4e{word-spacing:26.916269px;}
.ws85{word-spacing:26.928269px;}
.ws1f7{word-spacing:26.982270px;}
.ws4d{word-spacing:27.012270px;}
.ws1f0{word-spacing:27.036270px;}
.wsaf{word-spacing:27.060271px;}
.ws1f6{word-spacing:27.084271px;}
.ws28{word-spacing:27.097200px;}
.ws13f{word-spacing:27.108271px;}
.wsb0{word-spacing:27.168272px;}
.ws242{word-spacing:27.183600px;}
.ws1b7{word-spacing:27.216272px;}
.wsce{word-spacing:27.234272px;}
.ws1f1{word-spacing:27.294273px;}
.ws205{word-spacing:27.318273px;}
.ws110{word-spacing:27.366274px;}
.ws133{word-spacing:27.504275px;}
.wsb1{word-spacing:27.588276px;}
.ws7c{word-spacing:27.612276px;}
.ws137{word-spacing:27.624276px;}
.ws6{word-spacing:27.652800px;}
.wsb2{word-spacing:27.678277px;}
.ws86{word-spacing:27.702277px;}
.ws182{word-spacing:27.720277px;}
.ws4{word-spacing:27.745200px;}
.wsdc{word-spacing:27.768278px;}
.ws5{word-spacing:27.787200px;}
.ws13d{word-spacing:27.828278px;}
.ws3{word-spacing:27.829200px;}
.wsdd{word-spacing:27.840278px;}
.ws181{word-spacing:27.852279px;}
.wsb7{word-spacing:28.056281px;}
.ws81{word-spacing:28.128281px;}
.ws7e{word-spacing:28.164282px;}
.ws3a{word-spacing:28.194282px;}
.ws1f3{word-spacing:28.224282px;}
.ws14f{word-spacing:28.278283px;}
.ws23{word-spacing:28.279800px;}
.wsb6{word-spacing:28.302283px;}
.wsa6{word-spacing:28.308283px;}
.ws48{word-spacing:28.380284px;}
.ws4a{word-spacing:28.434284px;}
.ws1f8{word-spacing:28.482285px;}
.ws87{word-spacing:28.560286px;}
.wse0{word-spacing:28.632286px;}
.ws1ad{word-spacing:28.704287px;}
.ws79{word-spacing:28.734287px;}
.ws153{word-spacing:28.752288px;}
.ws274{word-spacing:28.760400px;}
.ws1ac{word-spacing:28.824288px;}
.wsde{word-spacing:28.866289px;}
.ws4b{word-spacing:28.902289px;}
.ws275{word-spacing:28.933200px;}
.wse4{word-spacing:29.058291px;}
.ws1ab{word-spacing:29.106291px;}
.ws83{word-spacing:29.166292px;}
.ws74{word-spacing:29.202292px;}
.ws75{word-spacing:29.382294px;}
.wsca{word-spacing:29.394294px;}
.ws6a{word-spacing:29.472295px;}
.wscb{word-spacing:29.592296px;}
.wse1{word-spacing:29.784298px;}
.ws140{word-spacing:29.826298px;}
.ws36{word-spacing:29.868299px;}
.wsea{word-spacing:29.952300px;}
.ws1f4{word-spacing:30.006300px;}
.wsff{word-spacing:30.066301px;}
.ws8d{word-spacing:30.102301px;}
.ws8e{word-spacing:30.264303px;}
.wseb{word-spacing:30.438304px;}
.ws2a{word-spacing:30.510000px;}
.ws1a7{word-spacing:30.672307px;}
.ws100{word-spacing:30.756308px;}
.ws276{word-spacing:30.796200px;}
.ws1e6{word-spacing:30.918309px;}
.wsa9{word-spacing:30.984310px;}
.ws20{word-spacing:31.066200px;}
.ws10b{word-spacing:31.098311px;}
.ws1e7{word-spacing:31.176312px;}
.ws265{word-spacing:31.228200px;}
.ws10d{word-spacing:31.236312px;}
.ws266{word-spacing:31.374000px;}
.ws10c{word-spacing:31.380314px;}
.ws5c{word-spacing:31.434314px;}
.ws5d{word-spacing:31.494315px;}
.ws12b{word-spacing:31.500315px;}
.wsc1{word-spacing:31.578316px;}
.wsf1{word-spacing:31.692317px;}
.ws7d{word-spacing:31.728317px;}
.ws183{word-spacing:31.734317px;}
.ws192{word-spacing:31.860319px;}
.ws68{word-spacing:31.920319px;}
.ws191{word-spacing:31.932319px;}
.wsc0{word-spacing:31.968320px;}
.ws63{word-spacing:32.010320px;}
.ws67{word-spacing:32.124321px;}
.ws99{word-spacing:32.502325px;}
.wsc4{word-spacing:32.562326px;}
.ws1ff{word-spacing:32.586326px;}
.ws9b{word-spacing:32.610326px;}
.ws9a{word-spacing:32.676327px;}
.ws6c{word-spacing:33.054331px;}
.wsbf{word-spacing:33.198332px;}
.ws24{word-spacing:33.258600px;}
.ws1ea{word-spacing:33.636336px;}
.ws10f{word-spacing:33.738337px;}
.wsf9{word-spacing:33.804338px;}
.wsfa{word-spacing:33.966340px;}
.ws13e{word-spacing:34.074341px;}
.wsc3{word-spacing:34.728347px;}
.ws10e{word-spacing:34.752348px;}
.ws185{word-spacing:34.968350px;}
.ws243{word-spacing:35.062200px;}
.ws244{word-spacing:35.121600px;}
.ws245{word-spacing:35.148600px;}
.ws1a9{word-spacing:35.352354px;}
.ws12{word-spacing:35.407800px;}
.ws1ec{word-spacing:35.514355px;}
.ws1aa{word-spacing:35.580356px;}
.ws1a8{word-spacing:35.724357px;}
.wse7{word-spacing:35.994360px;}
.ws201{word-spacing:36.498365px;}
.ws220{word-spacing:36.509400px;}
.wse3{word-spacing:36.858369px;}
.ws173{word-spacing:37.008370px;}
.ws27{word-spacing:37.902600px;}
.wsef{word-spacing:38.310383px;}
.ws174{word-spacing:38.352384px;}
.ws176{word-spacing:38.382384px;}
.ws175{word-spacing:38.436384px;}
.ws88{word-spacing:38.658387px;}
.ws296{word-spacing:39.204000px;}
.ws28c{word-spacing:40.370400px;}
.ws298{word-spacing:44.803800px;}
.ws299{word-spacing:45.030600px;}
.ws297{word-spacing:45.073800px;}
.ws29a{word-spacing:45.127800px;}
.wsa5{word-spacing:46.332463px;}
.ws18c{word-spacing:52.458525px;}
.ws14d{word-spacing:88.765526px;}
.ws3e{word-spacing:110.626369px;}
.ws15b{word-spacing:226.749166px;}
.ws162{word-spacing:244.604942px;}
.ws163{word-spacing:244.945738px;}
.ws15d{word-spacing:267.404657px;}
.ws160{word-spacing:267.745453px;}
.ws168{word-spacing:272.530993px;}
.ws165{word-spacing:277.945326px;}
.ws15e{word-spacing:288.519593px;}
.ws15f{word-spacing:300.745041px;}
.ws2b9{word-spacing:757.665729px;}
.ws1d6{word-spacing:855.771703px;}
.ws1d9{word-spacing:886.284921px;}
.ws1be{word-spacing:947.772153px;}
.ws1cb{word-spacing:963.698354px;}
.ws1c7{word-spacing:963.727153px;}
.ws1cf{word-spacing:991.590805px;}
.ws1c3{word-spacing:996.381145px;}
.ws1c4{word-spacing:1012.465744px;}
.ws1d3{word-spacing:1014.390520px;}
.ws1c9{word-spacing:1020.380845px;}
.ws1d2{word-spacing:1021.062437px;}
.ws1d7{word-spacing:1028.084749px;}
.ws1cd{word-spacing:1030.297521px;}
.ws1c6{word-spacing:1034.790265px;}
.ws1d0{word-spacing:1046.809315px;}
.ws1cc{word-spacing:1050.937263px;}
.ws1ce{word-spacing:1051.465257px;}
.ws1c8{word-spacing:1077.240934px;}
.ws1d5{word-spacing:1084.124048px;}
.ws1bd{word-spacing:1105.243784px;}
.ws1c1{word-spacing:1181.534031px;}
._2f{margin-left:-23.190232px;}
._19{margin-left:-17.754178px;}
._39{margin-left:-16.351200px;}
._1{margin-left:-4.140000px;}
._0{margin-left:-1.919985px;}
._11{width:1.079972px;}
._2e{width:4.433964px;}
._1c{width:7.018218px;}
._3e{width:8.275097px;}
._15{width:10.044100px;}
._10{width:14.846788px;}
._9{width:16.609698px;}
._1a{width:17.868043px;}
._4{width:18.975600px;}
._2{width:20.130201px;}
._13{width:21.138211px;}
._5{width:22.793400px;}
._7{width:24.446941px;}
._8{width:25.652283px;}
._e{width:26.656240px;}
._12{width:27.997770px;}
._3{width:29.038800px;}
._a{width:30.053985px;}
._d{width:31.062311px;}
._b{width:32.130000px;}
._14{width:33.246332px;}
._16{width:34.356344px;}
._1b{width:35.388354px;}
._6{width:36.567527px;}
._2d{width:38.130381px;}
._c{width:39.253171px;}
._3a{width:40.505400px;}
._18{width:45.378454px;}
._37{width:73.688400px;}
._38{width:96.006600px;}
._f{width:110.993147px;}
._17{width:138.149708px;}
._2b{width:245.132936px;}
._20{width:246.582518px;}
._1f{width:258.707166px;}
._29{width:267.447857px;}
._28{width:272.727791px;}
._26{width:290.439569px;}
._25{width:300.543443px;}
._22{width:313.719278px;}
._2a{width:318.850414px;}
._2c{width:346.190873px;}
._1e{width:389.788728px;}
._4d{width:461.888626px;}
._53{width:472.837289px;}
._24{width:493.832227px;}
._4b{width:498.804965px;}
._27{width:504.488094px;}
._23{width:510.872014px;}
._21{width:512.887989px;}
._4c{width:523.956650px;}
._51{width:536.868489px;}
._4f{width:584.387895px;}
._56{width:594.563768px;}
._48{width:601.139686px;}
._40{width:603.107661px;}
._42{width:606.851614px;}
._55{width:610.801965px;}
._3d{width:614.435519px;}
._46{width:623.363408px;}
._4a{width:627.491356px;}
._44{width:630.611317px;}
._3f{width:632.387295px;}
._45{width:644.531143px;}
._54{width:647.847902px;}
._3c{width:669.303634px;}
._4e{width:687.677804px;}
._50{width:688.973788px;}
._43{width:697.474481px;}
._52{width:701.458432px;}
._30{width:714.159073px;}
._41{width:718.018225px;}
._47{width:737.073986px;}
._3b{width:776.683091px;}
._1d{width:842.706266px;}
._31{width:850.856564px;}
._49{width:856.491694px;}
._34{width:1016.612892px;}
._32{width:1053.548430px;}
._33{width:1084.023250px;}
._36{width:1086.682416px;}
._35{width:1091.083961px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,21,126);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.995200px;}
.fs12{font-size:39.996000px;}
.fsb{font-size:41.995800px;}
.fs10{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:44.999400px;}
.fse{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs11{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.000600px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.000600px;}
.fsf{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:50.595005px;}
.y39{bottom:67.597501px;}
.y7c{bottom:72.027514px;}
.y5{bottom:75.795004px;}
.y207{bottom:80.950417px;}
.y1d8{bottom:80.956974px;}
.yb4{bottom:81.024659px;}
.y140{bottom:81.042051px;}
.y19c{bottom:81.042505px;}
.y110{bottom:81.042614px;}
.ye2{bottom:81.044336px;}
.y22c{bottom:81.045750px;}
.y263{bottom:81.050400px;}
.y7b{bottom:84.018343px;}
.y38{bottom:84.097501px;}
.y170{bottom:84.612410px;}
.y16f{bottom:94.477487px;}
.y1d7{bottom:94.478405px;}
.y7a{bottom:96.009171px;}
.y22b{bottom:98.223150px;}
.y262{bottom:98.653050px;}
.yb3{bottom:100.499354px;}
.y10f{bottom:100.517309px;}
.ye1{bottom:100.603032px;}
.y13f{bottom:100.941250px;}
.y4{bottom:100.995005px;}
.y19b{bottom:101.196707px;}
.y206{bottom:101.275620px;}
.y16e{bottom:107.998918px;}
.y1d6{bottom:107.999836px;}
.y79{bottom:108.000000px;}
.y261{bottom:115.150050px;}
.y22a{bottom:115.485600px;}
.yb2{bottom:119.974048px;}
.y10e{bottom:120.076004px;}
.ye0{bottom:120.161727px;}
.y19a{bottom:120.671401px;}
.y13e{bottom:120.925950px;}
.y205{bottom:121.515322px;}
.y78{bottom:124.157418px;}
.y16d{bottom:126.367088px;}
.y1d5{bottom:126.368006px;}
.y229{bottom:132.748050px;}
.y260{bottom:132.837750px;}
.y77{bottom:137.593650px;}
.y23{bottom:139.264499px;}
.yb1{bottom:139.532744px;}
.y10d{bottom:139.634700px;}
.ydf{bottom:139.720423px;}
.y16c{bottom:139.888519px;}
.y1d4{bottom:139.889437px;}
.y199{bottom:140.825603px;}
.y204{bottom:141.755025px;}
.y13d{bottom:148.734900px;}
.y228{bottom:149.330100px;}
.y25f{bottom:149.334750px;}
.y16b{bottom:153.409950px;}
.y1d3{bottom:153.410868px;}
.yb0{bottom:159.007439px;}
.y10c{bottom:159.108600px;}
.yde{bottom:159.195118px;}
.y198{bottom:160.979804px;}
.y203{bottom:161.994727px;}
.y13c{bottom:165.657150px;}
.y16a{bottom:166.846182px;}
.y1d2{bottom:166.847100px;}
.y25e{bottom:166.937400px;}
.y227{bottom:175.948050px;}
.yaf{bottom:178.482134px;}
.ydd{bottom:178.753813px;}
.y1d1{bottom:180.365025px;}
.y169{bottom:180.367613px;}
.y197{bottom:180.538748px;}
.y202{bottom:181.469422px;}
.y13b{bottom:182.664450px;}
.y76{bottom:183.088020px;}
.y25d{bottom:183.519450px;}
.y226{bottom:193.125450px;}
.y1d0{bottom:193.886456px;}
.y168{bottom:193.889044px;}
.y196{bottom:196.525946px;}
.y1a{bottom:196.933500px;}
.yae{bottom:197.956828px;}
.y10b{bottom:198.141764px;}
.ydc{bottom:198.312509px;}
.y195{bottom:200.693048px;}
.y25c{bottom:201.122100px;}
.y201{bottom:201.709124px;}
.y75{bottom:202.562715px;}
.y1cf{bottom:207.407887px;}
.y167{bottom:207.410475px;}
.y13a{bottom:208.939852px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y225{bottom:210.387900px;}
.y298{bottom:212.608350px;}
.yad{bottom:217.515524px;}
.y10a{bottom:217.700460px;}
.ydb{bottom:217.871204px;}
.y25b{bottom:218.809800px;}
.y1ce{bottom:220.844119px;}
.y166{bottom:220.846707px;}
.y194{bottom:220.847348px;}
.y200{bottom:222.034328px;}
.y74{bottom:222.037410px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y224{bottom:227.650350px;}
.y139{bottom:228.924551px;}
.y297{bottom:230.466150px;}
.y1cd{bottom:234.365550px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y25a{bottom:235.306800px;}
.yac{bottom:236.990219px;}
.y109{bottom:237.175154px;}
.yda{bottom:237.429900px;}
.y165{bottom:238.875282px;}
.y193{bottom:241.000953px;}
.y73{bottom:241.596105px;}
.y1ff{bottom:242.274030px;}
.y296{bottom:246.964500px;}
.y1cc{bottom:247.886981px;}
.y138{bottom:248.823750px;}
.y259{bottom:252.909450px;}
.yab{bottom:256.464913px;}
.y108{bottom:256.733850px;}
.y223{bottom:258.349650px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y72{bottom:261.070800px;}
.y1cb{bottom:261.408412px;}
.y164{bottom:261.411000px;}
.y1fe{bottom:262.513732px;}
.y295{bottom:264.822300px;}
.yd9{bottom:265.918050px;}
.y137{bottom:268.808450px;}
.y258{bottom:269.406450px;}
.y37{bottom:269.776501px;}
.y191{bottom:270.255150px;}
.y192{bottom:270.679654px;}
.y190{bottom:270.680091px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1ca{bottom:274.844644px;}
.yaa{bottom:276.023609px;}
.y163{bottom:280.885050px;}
.y294{bottom:282.680100px;}
.y1fd{bottom:282.753435px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y107{bottom:285.222000px;}
.y257{bottom:287.094150px;}
.y1c9{bottom:288.366075px;}
.y136{bottom:288.793150px;}
.y71{bottom:289.559100px;}
.ya9{bottom:295.498304px;}
.y18f{bottom:296.447348px;}
.y293{bottom:300.537900px;}
.y1c8{bottom:301.887506px;}
.y1fc{bottom:302.993137px;}
.y256{bottom:303.591150px;}
.y222{bottom:304.015650px;}
.y135{bottom:308.777850px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yd8{bottom:314.736321px;}
.ya8{bottom:314.972998px;}
.y1c7{bottom:315.408937px;}
.y18e{bottom:316.601550px;}
.y18c{bottom:316.602348px;}
.y162{bottom:317.534543px;}
.y291{bottom:318.395700px;}
.y255{bottom:321.278850px;}
.y292{bottom:321.797700px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1fb{bottom:323.232840px;}
.y18d{bottom:323.319600px;}
.y134{bottom:328.251900px;}
.y1c6{bottom:328.845169px;}
.y221{bottom:330.292800px;}
.y106{bottom:334.036102px;}
.y36{bottom:334.126501px;}
.yd7{bottom:334.295016px;}
.ya7{bottom:334.531694px;}
.y290{bottom:334.894050px;}
.y18b{bottom:336.161044px;}
.y161{bottom:337.264240px;}
.y254{bottom:337.777200px;}
.y1c5{bottom:342.366600px;}
.y1fa{bottom:343.472542px;}
.y11{bottom:348.133500px;}
.y28f{bottom:352.751850px;}
.y105{bottom:353.510797px;}
.yd6{bottom:353.853712px;}
.ya6{bottom:354.006389px;}
.y252{bottom:355.379850px;}
.y1c4{bottom:355.888031px;}
.y18a{bottom:356.315245px;}
.y160{bottom:356.993937px;}
.y253{bottom:358.866900px;}
.y1f9{bottom:363.712244px;}
.y133{bottom:367.284050px;}
.y28e{bottom:369.248850px;}
.y1c3{bottom:369.409462px;}
.y63{bottom:371.531100px;}
.y251{bottom:371.878200px;}
.y104{bottom:373.069493px;}
.yd5{bottom:373.412407px;}
.ya5{bottom:373.481084px;}
.y189{bottom:376.469447px;}
.y15f{bottom:376.638134px;}
.y220{bottom:378.255150px;}
.y1c2{bottom:382.845694px;}
.y1f8{bottom:384.037448px;}
.y62{bottom:386.583600px;}
.y10{bottom:386.785499px;}
.y28d{bottom:387.106650px;}
.y132{bottom:387.268750px;}
.y250{bottom:389.565900px;}
.y103{bottom:392.628188px;}
.yd4{bottom:392.971103px;}
.ya4{bottom:393.039779px;}
.y1c1{bottom:396.367125px;}
.y15e{bottom:396.367831px;}
.y188{bottom:396.623648px;}
.y35{bottom:401.407500px;}
.y61{bottom:401.551050px;}
.y1f7{bottom:404.277150px;}
.y21f{bottom:404.532150px;}
.y28c{bottom:404.964450px;}
.y24f{bottom:406.075050px;}
.y131{bottom:407.253450px;}
.yf{bottom:408.044999px;}
.y1c0{bottom:409.888556px;}
.y102{bottom:412.186884px;}
.ya3{bottom:412.514474px;}
.yd3{bottom:412.529799px;}
.y15d{bottom:416.097528px;}
.y60{bottom:416.518500px;}
.y187{bottom:416.777988px;}
.y28b{bottom:421.461450px;}
.y1bf{bottom:423.409987px;}
.y24e{bottom:423.762750px;}
.y5f{bottom:431.571000px;}
.y101{bottom:431.745579px;}
.ya2{bottom:431.989169px;}
.yd2{bottom:432.088494px;}
.y1f6{bottom:432.765300px;}
.y130{bottom:434.976900px;}
.y15c{bottom:435.827225px;}
.y1be{bottom:436.846219px;}
.y28a{bottom:439.319250px;}
.y24d{bottom:440.259750px;}
.y5e{bottom:446.538450px;}
.y186{bottom:447.987141px;}
.y1bd{bottom:450.367650px;}
.y100{bottom:451.220274px;}
.ya1{bottom:451.547864px;}
.yd1{bottom:451.647190px;}
.y12f{bottom:451.984200px;}
.y289{bottom:457.177050px;}
.y24c{bottom:457.862400px;}
.y21e{bottom:458.194200px;}
.y5d{bottom:461.590950px;}
.y34{bottom:462.826501px;}
.y1bc{bottom:463.889081px;}
.yff{bottom:470.778970px;}
.ya0{bottom:471.022559px;}
.yd0{bottom:471.205885px;}
.y288{bottom:473.674050px;}
.y185{bottom:473.754398px;}
.y21d{bottom:475.456650px;}
.y24b{bottom:475.550100px;}
.y5c{bottom:476.558400px;}
.y1bb{bottom:477.410512px;}
.y12e{bottom:478.173951px;}
.y15b{bottom:483.276020px;}
.ye{bottom:484.864502px;}
.y184{bottom:489.741446px;}
.yfe{bottom:490.337665px;}
.y9f{bottom:490.497254px;}
.y1f5{bottom:490.579754px;}
.ycf{bottom:490.764581px;}
.y1ba{bottom:490.846744px;}
.y5b{bottom:491.525850px;}
.y287{bottom:491.531850px;}
.y24a{bottom:492.047100px;}
.y21c{bottom:492.719100px;}
.y183{bottom:493.909201px;}
.y12d{bottom:498.158651px;}
.yd{bottom:502.864502px;}
.y5a{bottom:506.578350px;}
.y286{bottom:508.028850px;}
.y15a{bottom:508.617273px;}
.y1b9{bottom:508.875319px;}
.y249{bottom:509.734800px;}
.yfd{bottom:509.812360px;}
.y21b{bottom:509.981550px;}
.y9e{bottom:510.055949px;}
.yce{bottom:510.323276px;}
.y1f4{bottom:510.819457px;}
.y182{bottom:514.063403px;}
.y12c{bottom:518.143350px;}
.yc{bottom:520.864502px;}
.y59{bottom:521.545800px;}
.y1b8{bottom:522.396750px;}
.y285{bottom:525.886650px;}
.y248{bottom:526.231800px;}
.y21a{bottom:527.244000px;}
.y159{bottom:528.261470px;}
.yfc{bottom:529.371056px;}
.y9d{bottom:529.530644px;}
.ycd{bottom:529.881972px;}
.y33{bottom:530.107500px;}
.y1f3{bottom:531.059159px;}
.y181{bottom:533.622098px;}
.y58{bottom:536.598300px;}
.y12b{bottom:538.128050px;}
.yb{bottom:538.864499px;}
.y1b7{bottom:541.870800px;}
.y284{bottom:542.383650px;}
.y247{bottom:543.834450px;}
.y158{bottom:547.991167px;}
.yfb{bottom:548.929751px;}
.y9c{bottom:549.005339px;}
.ycc{bottom:549.440668px;}
.y57{bottom:550.800000px;}
.y1f2{bottom:551.298862px;}
.y219{bottom:553.436100px;}
.y180{bottom:553.776398px;}
.ya{bottom:556.864499px;}
.y12a{bottom:558.112750px;}
.y283{bottom:560.241450px;}
.y246{bottom:561.522150px;}
.y32{bottom:564.457501px;}
.y157{bottom:567.720864px;}
.yfa{bottom:568.488447px;}
.y9b{bottom:568.564034px;}
.ycb{bottom:568.999363px;}
.y17f{bottom:569.763596px;}
.y1f1{bottom:571.624065px;}
.y17e{bottom:573.929834px;}
.y282{bottom:576.738450px;}
.y245{bottom:578.019150px;}
.y129{bottom:578.097450px;}
.y1b6{bottom:578.606138px;}
.y31{bottom:579.457501px;}
.y56{bottom:580.810350px;}
.y156{bottom:587.195559px;}
.yf9{bottom:587.963141px;}
.y9a{bottom:588.038729px;}
.yca{bottom:588.558059px;}
.y1f0{bottom:591.098760px;}
.y30{bottom:594.457500px;}
.y281{bottom:594.596250px;}
.y244{bottom:595.621800px;}
.y55{bottom:595.777800px;}
.y128{bottom:597.571500px;}
.y1b5{bottom:598.845840px;}
.y17b{bottom:601.398148px;}
.y17d{bottom:605.564739px;}
.y17a{bottom:605.565835px;}
.y155{bottom:606.925256px;}
.y99{bottom:607.513424px;}
.yf8{bottom:607.521837px;}
.y218{bottom:607.944990px;}
.yc9{bottom:608.116754px;}
.y54{bottom:610.830300px;}
.y1ef{bottom:611.338462px;}
.y243{bottom:612.203850px;}
.y280{bottom:612.454050px;}
.y17c{bottom:616.705350px;}
.y1b4{bottom:619.085543px;}
.y53{bottom:625.797750px;}
.y154{bottom:626.654954px;}
.y98{bottom:627.072119px;}
.yf7{bottom:627.080533px;}
.yc8{bottom:627.675450px;}
.y217{bottom:628.184693px;}
.y27f{bottom:628.951050px;}
.y242{bottom:629.806500px;}
.y1ee{bottom:631.578164px;}
.y179{bottom:631.757597px;}
.y127{bottom:636.594215px;}
.y1b3{bottom:639.325245px;}
.y52{bottom:640.850250px;}
.y9{bottom:645.510000px;}
.y153{bottom:646.299150px;}
.y97{bottom:646.546814px;}
.yf6{bottom:646.639228px;}
.y27e{bottom:646.823250px;}
.y241{bottom:647.494200px;}
.y70{bottom:648.084769px;}
.y216{bottom:648.424395px;}
.y1ed{bottom:651.817867px;}
.y178{bottom:651.911798px;}
.y51{bottom:655.817700px;}
.yc7{bottom:656.163600px;}
.y126{bottom:656.578914px;}
.y1b2{bottom:659.564948px;}
.y6f{bottom:661.606200px;}
.y27d{bottom:663.320250px;}
.y240{bottom:663.991200px;}
.y152{bottom:665.857379px;}
.y96{bottom:666.021509px;}
.yf5{bottom:666.113923px;}
.y8{bottom:666.771000px;}
.y215{bottom:668.664098px;}
.y50{bottom:670.785150px;}
.y1ec{bottom:672.057569px;}
.y177{bottom:672.066000px;}
.y6e{bottom:675.042300px;}
.y2f{bottom:675.817498px;}
.y125{bottom:676.563614px;}
.y1b1{bottom:679.804650px;}
.y27c{bottom:681.178050px;}
.y23e{bottom:681.593850px;}
.y23f{bottom:685.080900px;}
.y95{bottom:685.580204px;}
.yf4{bottom:685.672618px;}
.y4f{bottom:685.837650px;}
.y214{bottom:688.903800px;}
.y176{bottom:691.540050px;}
.y1eb{bottom:692.381272px;}
.y151{bottom:694.346250px;}
.y124{bottom:696.548314px;}
.y27b{bottom:697.675050px;}
.y23d{bottom:698.090850px;}
.y6d{bottom:700.468575px;}
.y4e{bottom:700.805100px;}
.yc6{bottom:704.892313px;}
.y94{bottom:705.054899px;}
.yf3{bottom:705.231314px;}
.y2e{bottom:705.817498px;}
.y1b0{bottom:708.292800px;}
.y1ea{bottom:712.620975px;}
.y6c{bottom:713.990006px;}
.y27a{bottom:715.532850px;}
.y4d{bottom:715.772550px;}
.y23c{bottom:715.778550px;}
.y123{bottom:716.533014px;}
.y213{bottom:717.391950px;}
.y2d{bottom:723.817498px;}
.yc5{bottom:724.451009px;}
.y93{bottom:724.529594px;}
.yf2{bottom:724.790010px;}
.y7{bottom:726.298500px;}
.y6b{bottom:727.511437px;}
.y175{bottom:730.573594px;}
.y4c{bottom:730.825050px;}
.y279{bottom:732.029850px;}
.y1e9{bottom:732.095670px;}
.y23b{bottom:732.275550px;}
.y122{bottom:736.432213px;}
.y6a{bottom:741.032868px;}
.y2c{bottom:741.817498px;}
.y2af{bottom:742.050830px;}
.y150{bottom:743.072062px;}
.yc4{bottom:744.009704px;}
.y92{bottom:744.088290px;}
.yf1{bottom:744.348705px;}
.y4b{bottom:745.792500px;}
.y278{bottom:749.887650px;}
.y23a{bottom:749.963250px;}
.y174{bottom:750.727795px;}
.y1e8{bottom:752.335372px;}
.y3{bottom:752.599495px;}
.y69{bottom:754.469100px;}
.y121{bottom:756.416913px;}
.y1af{bottom:757.104293px;}
.y2b{bottom:759.817498px;}
.y2ae{bottom:760.504199px;}
.y4a{bottom:760.845000px;}
.y14f{bottom:762.801759px;}
.y91{bottom:763.562984px;}
.yc3{bottom:763.568400px;}
.yf0{bottom:763.823400px;}
.y277{bottom:766.384650px;}
.y239{bottom:766.460250px;}
.y68{bottom:767.990400px;}
.y173{bottom:770.881997px;}
.y212{bottom:771.900840px;}
.y1e7{bottom:772.575074px;}
.y2ad{bottom:773.940431px;}
.y49{bottom:775.812450px;}
.y120{bottom:776.401613px;}
.y1ae{bottom:777.343995px;}
.y14e{bottom:782.445955px;}
.y90{bottom:783.037679px;}
.y238{bottom:784.062900px;}
.y276{bottom:784.242450px;}
.y2ac{bottom:787.461862px;}
.y48{bottom:790.779900px;}
.y172{bottom:791.036198px;}
.yc2{bottom:792.056550px;}
.y211{bottom:792.140543px;}
.yef{bottom:792.396750px;}
.y1e6{bottom:792.814777px;}
.y67{bottom:795.032737px;}
.y11f{bottom:796.386313px;}
.y1ad{bottom:797.583698px;}
.y2ab{bottom:800.983293px;}
.y275{bottom:802.100250px;}
.y14d{bottom:802.175653px;}
.y8f{bottom:802.596375px;}
.y47{bottom:805.832400px;}
.y66{bottom:808.468969px;}
.y237{bottom:811.105350px;}
.y171{bottom:811.190400px;}
.y2a{bottom:812.289002px;}
.y210{bottom:812.380245px;}
.y1e5{bottom:813.054479px;}
.y2aa{bottom:814.504724px;}
.y11e{bottom:816.371012px;}
.y1ac{bottom:817.822695px;}
.y274{bottom:819.958050px;}
.y46{bottom:820.799850px;}
.y14c{bottom:821.905350px;}
.y65{bottom:821.990400px;}
.y8e{bottom:822.071069px;}
.y2a9{bottom:827.940956px;}
.y20f{bottom:832.619948px;}
.y1e4{bottom:833.379682px;}
.y64{bottom:835.511700px;}
.y45{bottom:835.851750px;}
.y11d{bottom:836.355712px;}
.y273{bottom:836.455050px;}
.y1ab{bottom:838.062398px;}
.yc1{bottom:840.872257px;}
.yee{bottom:841.125760px;}
.y2a8{bottom:841.462387px;}
.y8d{bottom:841.545764px;}
.y19f{bottom:848.438400px;}
.y14b{bottom:850.393500px;}
.y1e3{bottom:852.854377px;}
.y20e{bottom:852.859650px;}
.y272{bottom:854.312850px;}
.y2a7{bottom:854.983818px;}
.y11c{bottom:856.340412px;}
.y1aa{bottom:858.301748px;}
.y236{bottom:859.067550px;}
.yc0{bottom:860.430953px;}
.yed{bottom:860.684456px;}
.y8c{bottom:861.104460px;}
.y19e{bottom:864.935625px;}
.y2a6{bottom:868.505249px;}
.y271{bottom:870.809850px;}
.y1e2{bottom:873.094080px;}
.y11b{bottom:875.815107px;}
.y29{bottom:875.940000px;}
.y1a9{bottom:878.541248px;}
.y2{bottom:879.369000px;}
.ybf{bottom:879.989649px;}
.yec{bottom:880.159150px;}
.y8b{bottom:880.579154px;}
.y20d{bottom:881.347800px;}
.y19d{bottom:881.432850px;}
.y2a5{bottom:881.941481px;}
.y42{bottom:882.878100px;}
.y44{bottom:882.878550px;}
.y235{bottom:885.344700px;}
.y270{bottom:888.667650px;}
.y43{bottom:888.831300px;}
.y1e1{bottom:893.333782px;}
.y2a4{bottom:895.462912px;}
.y11a{bottom:895.799807px;}
.y41{bottom:897.845550px;}
.y1a8{bottom:898.780950px;}
.y14a{bottom:899.117971px;}
.ybe{bottom:899.548344px;}
.yeb{bottom:899.717846px;}
.y8a{bottom:900.053849px;}
.y40{bottom:903.883350px;}
.y26f{bottom:905.164650px;}
.y28{bottom:907.440000px;}
.y2a3{bottom:908.984343px;}
.y1e0{bottom:913.573484px;}
.y119{bottom:915.784506px;}
.y149{bottom:918.847668px;}
.ybd{bottom:919.023039px;}
.y1a7{bottom:919.105310px;}
.yea{bottom:919.276541px;}
.y89{bottom:919.612545px;}
.y2a2{bottom:922.505774px;}
.y26e{bottom:923.022450px;}
.y3e{bottom:924.717900px;}
.y3f{bottom:931.691100px;}
.y234{bottom:933.307500px;}
.y1df{bottom:933.813187px;}
.y118{bottom:935.769206px;}
.y20c{bottom:935.856338px;}
.y2a1{bottom:935.942006px;}
.y148{bottom:938.577365px;}
.ybc{bottom:938.581734px;}
.ye9{bottom:938.835237px;}
.y27{bottom:938.940000px;}
.y88{bottom:939.087240px;}
.y26d{bottom:940.880250px;}
.y2a0{bottom:949.463437px;}
.y233{bottom:949.805100px;}
.y1a6{bottom:953.121150px;}
.y1de{bottom:954.052889px;}
.y117{bottom:955.753906px;}
.y20b{bottom:956.096040px;}
.ybb{bottom:958.140430px;}
.y147{bottom:958.221562px;}
.ye8{bottom:958.393933px;}
.y87{bottom:958.561934px;}
.y26c{bottom:958.738050px;}
.y29f{bottom:962.984868px;}
.y3d{bottom:963.749250px;}
.y232{bottom:966.302100px;}
.y1{bottom:966.726000px;}
.y26{bottom:970.440000px;}
.y1dd{bottom:974.378092px;}
.y26b{bottom:975.235050px;}
.y116{bottom:975.738606px;}
.y20a{bottom:976.335743px;}
.y29e{bottom:976.506299px;}
.yba{bottom:977.699126px;}
.ye7{bottom:977.868627px;}
.y146{bottom:977.951259px;}
.y86{bottom:978.120630px;}
.y1a5{bottom:979.652797px;}
.y3c{bottom:987.731250px;}
.y29d{bottom:989.942531px;}
.y231{bottom:992.239200px;}
.y26a{bottom:993.092850px;}
.y1dc{bottom:993.852787px;}
.y115{bottom:995.723306px;}
.y209{bottom:996.575445px;}
.yb9{bottom:997.257821px;}
.ye6{bottom:997.427323px;}
.y85{bottom:997.595325px;}
.y145{bottom:997.680956px;}
.y29c{bottom:1003.463962px;}
.y269{bottom:1009.589850px;}
.y1a4{bottom:1010.352104px;}
.y3b{bottom:1011.713250px;}
.y1db{bottom:1014.092490px;}
.y114{bottom:1015.708006px;}
.y208{bottom:1016.815148px;}
.yb8{bottom:1016.816517px;}
.ye5{bottom:1016.902018px;}
.y29b{bottom:1016.985393px;}
.y84{bottom:1017.070019px;}
.y144{bottom:1017.410654px;}
.y268{bottom:1027.447650px;}
.y29a{bottom:1030.506824px;}
.y1da{bottom:1034.332192px;}
.y113{bottom:1035.182700px;}
.y25{bottom:1035.546001px;}
.yb7{bottom:1036.375212px;}
.ye4{bottom:1036.460713px;}
.y83{bottom:1036.628715px;}
.y230{bottom:1036.716450px;}
.y143{bottom:1037.054850px;}
.y267{bottom:1043.944650px;}
.y1a3{bottom:1044.962735px;}
.y1a1{bottom:1044.962798px;}
.y3a{bottom:1047.684750px;}
.y299{bottom:1048.450200px;}
.y22f{bottom:1053.808800px;}
.y1d9{bottom:1054.571894px;}
.y112{bottom:1055.167400px;}
.yb6{bottom:1055.933908px;}
.ye3{bottom:1056.019409px;}
.y82{bottom:1056.103410px;}
.y1a2{bottom:1056.443850px;}
.y266{bottom:1061.802450px;}
.y142{bottom:1065.543150px;}
.y22e{bottom:1070.901150px;}
.y1a0{bottom:1074.811597px;}
.y111{bottom:1075.152100px;}
.y81{bottom:1075.578104px;}
.y265{bottom:1078.299450px;}
.y7f{bottom:1083.827159px;}
.y22d{bottom:1087.398150px;}
.y141{bottom:1094.116350px;}
.y80{bottom:1095.136800px;}
.y264{bottom:1096.157250px;}
.y7e{bottom:1097.262855px;}
.y7d{bottom:1110.784050px;}
.yb5{bottom:1141.228050px;}
.y24{bottom:1165.122003px;}
.h28{height:2.400024px;}
.h16{height:25.736568px;}
.h2f{height:29.997000px;}
.h1c{height:30.029571px;}
.h18{height:30.824589px;}
.h15{height:31.496850px;}
.h7{height:32.130000px;}
.h1d{height:32.174571px;}
.h1e{height:33.749550px;}
.h1a{height:34.319571px;}
.h25{height:35.999550px;}
.h3a{height:36.126000px;}
.hb{height:36.726562px;}
.h17{height:38.610000px;}
.h20{height:38.934000px;}
.h19{height:40.500000px;}
.h22{height:40.755000px;}
.hf{height:41.317383px;}
.h12{height:45.000450px;}
.h2e{height:45.001087px;}
.h36{height:45.001260px;}
.h37{height:45.001860px;}
.h29{height:45.002096px;}
.h35{height:45.002462px;}
.h30{height:45.002833px;}
.h31{height:45.002837px;}
.h33{height:45.003057px;}
.h38{height:45.003269px;}
.h34{height:45.003309px;}
.h21{height:45.011171px;}
.h1f{height:45.423433px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h14{height:47.250450px;}
.h1b{height:47.586433px;}
.h3{height:48.195000px;}
.h24{height:50.284171px;}
.h23{height:50.624967px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h2c{height:55.647745px;}
.h32{height:55.650356px;}
.h2a{height:55.653815px;}
.h26{height:56.328410px;}
.h27{height:59.928440px;}
.h13{height:60.564000px;}
.h2b{height:61.668450px;}
.h2d{height:61.669067px;}
.h39{height:63.030630px;}
.h5{height:64.260000px;}
.ha{height:68.862305px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.000000px;}
.x10{left:112.507050px;}
.x2a{left:122.967450px;}
.x15{left:124.242162px;}
.x12{left:126.028350px;}
.x11{left:141.080250px;}
.x6{left:145.650000px;}
.x23{left:163.106051px;}
.x26{left:186.573329px;}
.x5{left:191.880000px;}
.xb{left:192.954300px;}
.x1a{left:194.910150px;}
.x7{left:197.700000px;}
.x16{left:202.308600px;}
.x4{left:203.484001px;}
.xc{left:219.061350px;}
.x9{left:233.083498px;}
.x2b{left:237.940200px;}
.x24{left:240.066150px;}
.x27{left:263.536950px;}
.x33{left:266.766150px;}
.x2d{left:290.579400px;}
.x2c{left:291.940200px;}
.x8{left:293.590494px;}
.x17{left:297.129391px;}
.x2f{left:308.523750px;}
.x2e{left:309.799500px;}
.x1c{left:325.871003px;}
.x35{left:342.451200px;}
.x34{left:343.726950px;}
.xd{left:347.385750px;}
.x1f{left:348.746118px;}
.x1b{left:356.399850px;}
.x31{left:360.142350px;}
.x30{left:361.418100px;}
.xe{left:378.680250px;}
.x37{left:393.474450px;}
.x36{left:394.750200px;}
.x29{left:418.305472px;}
.x28{left:432.084900px;}
.x19{left:434.891250px;}
.x1d{left:437.527500px;}
.x20{left:439.653450px;}
.x1e{left:451.899150px;}
.x3{left:454.959000px;}
.x18{left:464.484900px;}
.x21{left:497.566029px;}
.x22{left:518.655000px;}
.x39{left:528.430345px;}
.xf{left:549.013950px;}
.x25{left:561.006359px;}
.x32{left:580.053450px;}
.x14{left:585.836100px;}
.x13{left:649.955700px;}
.x38{left:758.378100px;}
@media print{
.v3{vertical-align:-13.908800pt;}
.v2{vertical-align:-12.397333pt;}
.v1{vertical-align:-8.154204pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:3.024000pt;}
.v7{vertical-align:6.651733pt;}
.v8{vertical-align:8.163733pt;}
.v4{vertical-align:13.000371pt;}
.v6{vertical-align:14.815467pt;}
.v9{vertical-align:16.026827pt;}
.v5{vertical-align:22.072533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.004267pt;}
.ls76{letter-spacing:0.017066pt;}
.ls35{letter-spacing:0.025987pt;}
.ls4b{letter-spacing:0.026667pt;}
.ls17{letter-spacing:0.028599pt;}
.ls30{letter-spacing:0.030655pt;}
.ls3a{letter-spacing:0.041423pt;}
.ls87{letter-spacing:0.043200pt;}
.ls5b{letter-spacing:0.053334pt;}
.ls41{letter-spacing:0.069991pt;}
.ls16{letter-spacing:0.085334pt;}
.ls18{letter-spacing:0.102399pt;}
.ls5{letter-spacing:0.149335pt;}
.ls3c{letter-spacing:0.160002pt;}
.ls69{letter-spacing:0.185329pt;}
.ls6d{letter-spacing:0.186711pt;}
.ls84{letter-spacing:0.187200pt;}
.ls68{letter-spacing:0.188442pt;}
.ls70{letter-spacing:0.190353pt;}
.ls6b{letter-spacing:0.193076pt;}
.ls31{letter-spacing:0.218789pt;}
.ls1b{letter-spacing:0.219322pt;}
.ls24{letter-spacing:0.219855pt;}
.ls65{letter-spacing:0.226034pt;}
.ls57{letter-spacing:0.244004pt;}
.ls7a{letter-spacing:0.245336pt;}
.ls5c{letter-spacing:0.247056pt;}
.ls38{letter-spacing:0.278171pt;}
.ls2c{letter-spacing:0.279996pt;}
.ls3d{letter-spacing:0.372391pt;}
.ls36{letter-spacing:0.521189pt;}
.ls25{letter-spacing:0.521722pt;}
.ls56{letter-spacing:0.522255pt;}
.ls59{letter-spacing:0.711634pt;}
.ls32{letter-spacing:0.712167pt;}
.ls26{letter-spacing:0.713056pt;}
.ls20{letter-spacing:1.014034pt;}
.ls1d{letter-spacing:1.015452pt;}
.ls2b{letter-spacing:2.617399pt;}
.ls5e{letter-spacing:2.617874pt;}
.ls53{letter-spacing:2.618407pt;}
.ls48{letter-spacing:2.919794pt;}
.ls55{letter-spacing:2.920807pt;}
.ls5a{letter-spacing:3.015588pt;}
.ls2f{letter-spacing:3.317454pt;}
.ls63{letter-spacing:3.317988pt;}
.ls45{letter-spacing:3.432700pt;}
.ls4a{letter-spacing:3.433234pt;}
.ls1c{letter-spacing:6.180267pt;}
.ls1f{letter-spacing:6.180800pt;}
.ls33{letter-spacing:6.482667pt;}
.ls44{letter-spacing:6.483200pt;}
.ls94{letter-spacing:7.056978pt;}
.ls58{letter-spacing:8.709420pt;}
.ls47{letter-spacing:8.821422pt;}
.ls46{letter-spacing:8.954756pt;}
.ls61{letter-spacing:9.013423pt;}
.ls14{letter-spacing:11.845452pt;}
.ls64{letter-spacing:12.085988pt;}
.ls15{letter-spacing:12.149455pt;}
.ls60{letter-spacing:12.201767pt;}
.ls6{letter-spacing:12.375823pt;}
.ls1a{letter-spacing:14.041424pt;}
.ls73{letter-spacing:14.344354pt;}
.ls23{letter-spacing:14.409399pt;}
.ls52{letter-spacing:14.410407pt;}
.ls19{letter-spacing:14.621684pt;}
.ls43{letter-spacing:14.712328pt;}
.ls13{letter-spacing:14.712807pt;}
.ls34{letter-spacing:14.807054pt;}
.ls5f{letter-spacing:14.807588pt;}
.ls12{letter-spacing:14.869482pt;}
.ls2e{letter-spacing:15.034789pt;}
.ls62{letter-spacing:15.109454pt;}
.ls54{letter-spacing:15.225234pt;}
.ls85{letter-spacing:15.763200pt;}
.ls81{letter-spacing:16.065600pt;}
.ls7d{letter-spacing:16.516800pt;}
.ls3{letter-spacing:16.670400pt;}
.ls79{letter-spacing:17.381507pt;}
.ls3e{letter-spacing:17.433394pt;}
.ls2d{letter-spacing:17.433399pt;}
.ls2{letter-spacing:17.577600pt;}
.ls50{letter-spacing:17.735794pt;}
.ls21{letter-spacing:17.831054pt;}
.ls29{letter-spacing:18.330850pt;}
.ls89{letter-spacing:18.484800pt;}
.lse{letter-spacing:18.592186pt;}
.ls8a{letter-spacing:18.787200pt;}
.ls83{letter-spacing:19.089600pt;}
.lsd{letter-spacing:19.194859pt;}
.ls7c{letter-spacing:19.238400pt;}
.ls8e{letter-spacing:19.392000pt;}
.ls77{letter-spacing:19.460023pt;}
.ls8d{letter-spacing:19.694400pt;}
.ls8{letter-spacing:19.802865pt;}
.ls6e{letter-spacing:20.155474pt;}
.ls8b{letter-spacing:20.299200pt;}
.ls92{letter-spacing:20.601600pt;}
.ls37{letter-spacing:20.694400pt;}
.ls10{letter-spacing:20.709540pt;}
.ls71{letter-spacing:21.008210pt;}
.ls28{letter-spacing:21.061661pt;}
.ls4c{letter-spacing:21.354880pt;}
.ls88{letter-spacing:21.508800pt;}
.lsa{letter-spacing:21.616216pt;}
.ls91{letter-spacing:21.811200pt;}
.ls80{letter-spacing:21.960000pt;}
.ls93{letter-spacing:22.113600pt;}
.ls6a{letter-spacing:22.271740pt;}
.ls4{letter-spacing:22.416000pt;}
.ls7b{letter-spacing:22.522892pt;}
.ls8f{letter-spacing:22.718400pt;}
.lsc{letter-spacing:22.826895pt;}
.ls82{letter-spacing:23.169600pt;}
.ls8c{letter-spacing:23.323200pt;}
.ls2a{letter-spacing:23.388967pt;}
.ls7f{letter-spacing:23.774400pt;}
.ls22{letter-spacing:23.829572pt;}
.ls7e{letter-spacing:24.076800pt;}
.ls7{letter-spacing:24.336243pt;}
.ls11{letter-spacing:24.938916pt;}
.ls1{letter-spacing:25.013333pt;}
.ls42{letter-spacing:25.597128pt;}
.ls6c{letter-spacing:25.597607pt;}
.ls66{letter-spacing:25.994788pt;}
.lsb{letter-spacing:26.149595pt;}
.ls49{letter-spacing:27.017234pt;}
.ls3b{letter-spacing:27.809188pt;}
.lsf{letter-spacing:27.962946pt;}
.ls4d{letter-spacing:28.613619pt;}
.ls9{letter-spacing:28.869622pt;}
.ls86{letter-spacing:31.488000pt;}
.ls6f{letter-spacing:34.366674pt;}
.ls1e{letter-spacing:37.389132pt;}
.ls51{letter-spacing:38.757721pt;}
.ls90{letter-spacing:40.257600pt;}
.ls3f{letter-spacing:66.763334pt;}
.ls5d{letter-spacing:140.797132pt;}
.ls4f{letter-spacing:153.025530pt;}
.ls4e{letter-spacing:346.552799pt;}
.ls27{letter-spacing:617.622194pt;}
.ls39{letter-spacing:719.518199pt;}
.ls40{letter-spacing:800.853665pt;}
.ls75{letter-spacing:878.794348pt;}
.ls74{letter-spacing:928.380928pt;}
.ls67{letter-spacing:940.847265pt;}
.ls78{letter-spacing:1093.392267pt;}
.ws1b0{word-spacing:-20.762874pt;}
.ws2b8{word-spacing:-15.811200pt;}
.ws1{word-spacing:-12.432000pt;}
.wsa3{word-spacing:-0.056001pt;}
.ws49{word-spacing:-0.053334pt;}
.ws1bb{word-spacing:-0.050667pt;}
.ws1e{word-spacing:-0.048000pt;}
.ws15c{word-spacing:-0.042666pt;}
.ws43{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:8.570752pt;}
.ws13c{word-spacing:8.869422pt;}
.ws190{word-spacing:8.901422pt;}
.ws19e{word-spacing:10.666773pt;}
.ws41{word-spacing:12.148093pt;}
.ws45{word-spacing:12.420623pt;}
.ws19f{word-spacing:12.677460pt;}
.ws47{word-spacing:13.103825pt;}
.ws89{word-spacing:13.115825pt;}
.ws2c{word-spacing:13.128369pt;}
.ws227{word-spacing:13.163824pt;}
.wsc9{word-spacing:13.195824pt;}
.ws2b{word-spacing:13.207824pt;}
.ws46{word-spacing:13.231824pt;}
.ws2e{word-spacing:13.243568pt;}
.ws1a0{word-spacing:13.290800pt;}
.ws2d{word-spacing:13.311834pt;}
.ws1f{word-spacing:13.335822pt;}
.ws2f{word-spacing:13.900626pt;}
.ws1e2{word-spacing:13.904893pt;}
.ws161{word-spacing:13.943292pt;}
.ws1c2{word-spacing:13.947559pt;}
.ws2c1{word-spacing:13.977425pt;}
.ws2be{word-spacing:13.985959pt;}
.ws2bd{word-spacing:14.003025pt;}
.ws31{word-spacing:14.015825pt;}
.ws16d{word-spacing:14.020091pt;}
.ws34{word-spacing:14.024358pt;}
.ws40{word-spacing:14.037158pt;}
.ws32{word-spacing:14.054224pt;}
.ws30{word-spacing:14.058491pt;}
.ws1c5{word-spacing:14.062758pt;}
.ws2bb{word-spacing:14.071291pt;}
.ws2bc{word-spacing:14.101157pt;}
.ws1bf{word-spacing:14.109690pt;}
.ws2ba{word-spacing:14.118224pt;}
.ws1c0{word-spacing:14.122490pt;}
.ws33{word-spacing:14.131023pt;}
.ws164{word-spacing:14.143823pt;}
.ws2bf{word-spacing:14.165156pt;}
.ws1d8{word-spacing:14.177956pt;}
.ws1ca{word-spacing:14.182223pt;}
.ws2c4{word-spacing:14.186489pt;}
.ws2c0{word-spacing:14.203556pt;}
.ws1db{word-spacing:14.207822pt;}
.ws1d1{word-spacing:14.241955pt;}
.ws167{word-spacing:14.246222pt;}
.ws1d4{word-spacing:14.250489pt;}
.ws15a{word-spacing:14.259022pt;}
.ws16c{word-spacing:14.263288pt;}
.ws166{word-spacing:14.271822pt;}
.ws16b{word-spacing:14.276088pt;}
.ws1da{word-spacing:14.284621pt;}
.ws2c2{word-spacing:14.288888pt;}
.ws16a{word-spacing:14.369954pt;}
.ws2c3{word-spacing:14.404087pt;}
.ws44{word-spacing:14.481393pt;}
.ws148{word-spacing:15.104823pt;}
.ws14{word-spacing:15.240000pt;}
.ws14c{word-spacing:15.406690pt;}
.ws149{word-spacing:15.407223pt;}
.ws13{word-spacing:15.456000pt;}
.wsc{word-spacing:15.619200pt;}
.ws17{word-spacing:15.648000pt;}
.ws272{word-spacing:15.705600pt;}
.ws238{word-spacing:15.715200pt;}
.wsa{word-spacing:15.734400pt;}
.ws25c{word-spacing:15.739200pt;}
.ws226{word-spacing:15.748800pt;}
.ws23d{word-spacing:15.753600pt;}
.ws29e{word-spacing:15.768000pt;}
.ws23b{word-spacing:15.782400pt;}
.ws29d{word-spacing:15.787200pt;}
.ws288{word-spacing:15.792000pt;}
.ws2b7{word-spacing:15.796800pt;}
.ws21b{word-spacing:15.825600pt;}
.ws28f{word-spacing:15.830400pt;}
.ws248{word-spacing:15.835200pt;}
.ws233{word-spacing:15.840000pt;}
.ws21c{word-spacing:15.844800pt;}
.ws126{word-spacing:15.854400pt;}
.ws22f{word-spacing:15.878400pt;}
.ws169{word-spacing:15.880335pt;}
.ws231{word-spacing:15.888000pt;}
.wsf{word-spacing:15.897600pt;}
.ws23c{word-spacing:15.907200pt;}
.ws22{word-spacing:15.921600pt;}
.ws22c{word-spacing:15.931200pt;}
.ws291{word-spacing:15.960000pt;}
.ws260{word-spacing:15.964800pt;}
.ws22e{word-spacing:15.974400pt;}
.ws2b6{word-spacing:15.988800pt;}
.ws2a1{word-spacing:15.998400pt;}
.ws1d{word-spacing:16.017600pt;}
.ws22d{word-spacing:16.027200pt;}
.ws2a0{word-spacing:16.036800pt;}
.ws252{word-spacing:16.041600pt;}
.ws261{word-spacing:16.056000pt;}
.ws25b{word-spacing:16.060800pt;}
.ws29c{word-spacing:16.070400pt;}
.ws21f{word-spacing:16.075200pt;}
.ws259{word-spacing:16.094400pt;}
.ws241{word-spacing:16.099200pt;}
.ws247{word-spacing:16.108800pt;}
.ws234{word-spacing:16.137600pt;}
.ws287{word-spacing:16.142400pt;}
.ws237{word-spacing:16.180800pt;}
.ws19b{word-spacing:16.213333pt;}
.ws25d{word-spacing:16.224000pt;}
.ws10{word-spacing:16.420800pt;}
.ws26c{word-spacing:16.430400pt;}
.ws26b{word-spacing:16.459200pt;}
.ws29b{word-spacing:16.516800pt;}
.ws214{word-spacing:16.545600pt;}
.ws159{word-spacing:16.598400pt;}
.ws213{word-spacing:16.612800pt;}
.ws1ba{word-spacing:16.628800pt;}
.ws215{word-spacing:16.766400pt;}
.ws11b{word-spacing:16.768168pt;}
.ws115{word-spacing:16.773501pt;}
.ws1bc{word-spacing:16.882133pt;}
.ws42{word-spacing:16.889359pt;}
.ws1c{word-spacing:16.891200pt;}
.ws232{word-spacing:16.910400pt;}
.ws158{word-spacing:16.927733pt;}
.ws113{word-spacing:16.981503pt;}
.wse{word-spacing:17.054400pt;}
.wse9{word-spacing:17.114838pt;}
.ws1eb{word-spacing:17.130838pt;}
.ws1b{word-spacing:17.131200pt;}
.ws18a{word-spacing:17.210839pt;}
.ws18b{word-spacing:17.248172pt;}
.ws1e4{word-spacing:17.285506pt;}
.ws29f{word-spacing:17.380800pt;}
.ws119{word-spacing:17.381507pt;}
.ws2ae{word-spacing:17.404800pt;}
.wsd{word-spacing:17.419200pt;}
.wsfe{word-spacing:17.424174pt;}
.ws1ef{word-spacing:17.429508pt;}
.ws27b{word-spacing:17.433600pt;}
.ws28d{word-spacing:17.443200pt;}
.ws146{word-spacing:17.445508pt;}
.ws139{word-spacing:17.461508pt;}
.wsd2{word-spacing:17.466841pt;}
.ws21d{word-spacing:17.467200pt;}
.ws180{word-spacing:17.477508pt;}
.wsdb{word-spacing:17.482841pt;}
.ws1a1{word-spacing:17.493508pt;}
.ws28e{word-spacing:17.510400pt;}
.ws18e{word-spacing:17.514842pt;}
.ws78{word-spacing:17.536175pt;}
.ws54{word-spacing:17.552176pt;}
.ws27c{word-spacing:17.553600pt;}
.ws50{word-spacing:17.557509pt;}
.ws141{word-spacing:17.562842pt;}
.ws27e{word-spacing:17.568000pt;}
.wsbd{word-spacing:17.568176pt;}
.ws105{word-spacing:17.578842pt;}
.ws186{word-spacing:17.584176pt;}
.ws4f{word-spacing:17.589509pt;}
.ws2b4{word-spacing:17.596800pt;}
.ws5f{word-spacing:17.600176pt;}
.ws1a6{word-spacing:17.610843pt;}
.ws20f{word-spacing:17.616176pt;}
.wsf5{word-spacing:17.621510pt;}
.ws177{word-spacing:17.632176pt;}
.ws21e{word-spacing:17.635200pt;}
.ws82{word-spacing:17.637510pt;}
.ws9c{word-spacing:17.642843pt;}
.ws9d{word-spacing:17.648176pt;}
.ws27d{word-spacing:17.649600pt;}
.ws131{word-spacing:17.669510pt;}
.wsf7{word-spacing:17.680177pt;}
.ws51{word-spacing:17.690844pt;}
.ws157{word-spacing:17.696177pt;}
.ws2af{word-spacing:17.697600pt;}
.ws193{word-spacing:17.701510pt;}
.ws123{word-spacing:17.717511pt;}
.ws2b3{word-spacing:17.736000pt;}
.ws73{word-spacing:17.749511pt;}
.wsf3{word-spacing:17.765511pt;}
.ws200{word-spacing:17.781511pt;}
.ws72{word-spacing:17.797511pt;}
.ws2b0{word-spacing:17.798400pt;}
.wsa8{word-spacing:17.861512pt;}
.ws84{word-spacing:17.866845pt;}
.wsb3{word-spacing:17.872179pt;}
.wsda{word-spacing:17.877512pt;}
.ws71{word-spacing:17.888179pt;}
.wsb4{word-spacing:17.904179pt;}
.ws1fc{word-spacing:17.920179pt;}
.ws20d{word-spacing:17.930846pt;}
.ws59{word-spacing:17.952180pt;}
.ws1a4{word-spacing:17.962846pt;}
.ws14e{word-spacing:17.968180pt;}
.ws1a2{word-spacing:17.978846pt;}
.ws1a3{word-spacing:17.984180pt;}
.ws179{word-spacing:18.005513pt;}
.ws2b5{word-spacing:18.028800pt;}
.ws55{word-spacing:18.037514pt;}
.ws8f{word-spacing:18.074847pt;}
.ws1e5{word-spacing:18.080181pt;}
.ws224{word-spacing:18.081600pt;}
.ws178{word-spacing:18.117515pt;}
.ws290{word-spacing:18.158400pt;}
.ws1f2{word-spacing:18.181515pt;}
.wscd{word-spacing:18.208182pt;}
.ws263{word-spacing:18.211200pt;}
.wse2{word-spacing:18.224182pt;}
.ws269{word-spacing:18.254400pt;}
.ws116{word-spacing:18.266849pt;}
.ws124{word-spacing:18.273600pt;}
.ws147{word-spacing:18.281358pt;}
.ws125{word-spacing:18.283200pt;}
.ws268{word-spacing:18.307200pt;}
.ws267{word-spacing:18.331200pt;}
.ws281{word-spacing:18.340800pt;}
.ws16{word-spacing:18.345600pt;}
.ws282{word-spacing:18.355200pt;}
.ws19d{word-spacing:18.368184pt;}
.ws262{word-spacing:18.384000pt;}
.ws1f9{word-spacing:18.389517pt;}
.ws27f{word-spacing:18.393600pt;}
.wscc{word-spacing:18.405517pt;}
.ws280{word-spacing:18.417600pt;}
.wsf8{word-spacing:18.424175pt;}
.ws107{word-spacing:18.437518pt;}
.wsd4{word-spacing:18.448184pt;}
.ws7f{word-spacing:18.458851pt;}
.ws9{word-spacing:18.468976pt;}
.wsa2{word-spacing:18.474576pt;}
.ws26a{word-spacing:18.475200pt;}
.wsd5{word-spacing:18.490852pt;}
.ws11c{word-spacing:18.502576pt;}
.ws1f5{word-spacing:18.517519pt;}
.ws21{word-spacing:18.537600pt;}
.wsa4{word-spacing:18.541777pt;}
.ws20e{word-spacing:18.544185pt;}
.ws26{word-spacing:18.547200pt;}
.wsbe{word-spacing:18.547377pt;}
.ws109{word-spacing:18.549519pt;}
.ws207{word-spacing:18.554852pt;}
.ws264{word-spacing:18.556800pt;}
.ws106{word-spacing:18.570852pt;}
.ws8{word-spacing:18.586577pt;}
.ws7{word-spacing:18.592177pt;}
.wsd6{word-spacing:18.624186pt;}
.ws19c{word-spacing:18.634853pt;}
.ws204{word-spacing:18.736187pt;}
.ws206{word-spacing:18.752188pt;}
.ws2a2{word-spacing:18.768000pt;}
.ws2a6{word-spacing:18.777600pt;}
.ws9f{word-spacing:18.784188pt;}
.ws13b{word-spacing:18.794855pt;}
.ws255{word-spacing:18.816000pt;}
.ws203{word-spacing:18.826855pt;}
.ws256{word-spacing:18.840000pt;}
.wsab{word-spacing:18.842855pt;}
.ws108{word-spacing:18.874855pt;}
.wsad{word-spacing:18.880189pt;}
.ws14a{word-spacing:18.880443pt;}
.wsac{word-spacing:18.901522pt;}
.ws6d{word-spacing:18.912189pt;}
.ws239{word-spacing:18.921600pt;}
.ws292{word-spacing:18.955200pt;}
.wsaa{word-spacing:18.970856pt;}
.ws3b{word-spacing:18.976190pt;}
.ws23a{word-spacing:19.022400pt;}
.ws254{word-spacing:19.065600pt;}
.ws60{word-spacing:19.072191pt;}
.ws211{word-spacing:19.080000pt;}
.ws1af{word-spacing:19.098858pt;}
.ws293{word-spacing:19.161600pt;}
.ws6e{word-spacing:19.162858pt;}
.ws194{word-spacing:19.168192pt;}
.wsfd{word-spacing:19.173525pt;}
.ws114{word-spacing:19.184192pt;}
.ws212{word-spacing:19.185600pt;}
.ws223{word-spacing:19.200000pt;}
.wsfc{word-spacing:19.210859pt;}
.wsfb{word-spacing:19.232192pt;}
.ws134{word-spacing:19.237526pt;}
.ws138{word-spacing:19.290860pt;}
.ws91{word-spacing:19.296193pt;}
.ws1dd{word-spacing:19.306425pt;}
.ws28b{word-spacing:19.320000pt;}
.ws132{word-spacing:19.330842pt;}
.ws25e{word-spacing:19.344000pt;}
.ws9e{word-spacing:19.354309pt;}
.ws25f{word-spacing:19.368000pt;}
.ws21a{word-spacing:19.371909pt;}
.ws25a{word-spacing:19.377600pt;}
.ws135{word-spacing:19.386861pt;}
.ws127{word-spacing:19.392194pt;}
.ws69{word-spacing:19.402861pt;}
.ws1ae{word-spacing:19.412976pt;}
.ws28a{word-spacing:19.416000pt;}
.ws1e0{word-spacing:19.434424pt;}
.ws22a{word-spacing:19.449600pt;}
.ws1de{word-spacing:19.464290pt;}
.ws17c{word-spacing:19.466861pt;}
.ws1df{word-spacing:19.545356pt;}
.ws230{word-spacing:19.547911pt;}
.ws289{word-spacing:19.550400pt;}
.ws35{word-spacing:19.553778pt;}
.ws12c{word-spacing:19.562862pt;}
.ws210{word-spacing:19.594845pt;}
.ws70{word-spacing:19.616196pt;}
.ws52{word-spacing:19.626863pt;}
.ws53{word-spacing:19.642863pt;}
.wsb5{word-spacing:19.653530pt;}
.ws98{word-spacing:19.664197pt;}
.ws1e8{word-spacing:19.669530pt;}
.ws5e{word-spacing:19.674863pt;}
.ws20c{word-spacing:19.685530pt;}
.ws96{word-spacing:19.701530pt;}
.ws1e1{word-spacing:19.720287pt;}
.ws18{word-spacing:19.756800pt;}
.ws97{word-spacing:19.760198pt;}
.ws129{word-spacing:19.770864pt;}
.wsd3{word-spacing:19.776198pt;}
.ws65{word-spacing:19.781531pt;}
.ws12d{word-spacing:19.814400pt;}
.ws64{word-spacing:19.898866pt;}
.ws17b{word-spacing:19.920199pt;}
.wse6{word-spacing:19.925533pt;}
.ws17a{word-spacing:19.946866pt;}
.ws128{word-spacing:19.978866pt;}
.ws209{word-spacing:19.994867pt;}
.ws246{word-spacing:19.996800pt;}
.wsee{word-spacing:20.005533pt;}
.ws12e{word-spacing:20.016000pt;}
.ws102{word-spacing:20.058867pt;}
.ws76{word-spacing:20.069534pt;}
.ws25{word-spacing:20.092800pt;}
.ws39{word-spacing:20.101534pt;}
.ws101{word-spacing:20.138868pt;}
.wse5{word-spacing:20.192202pt;}
.ws1e3{word-spacing:20.208202pt;}
.ws136{word-spacing:20.224202pt;}
.ws145{word-spacing:20.229536pt;}
.ws277{word-spacing:20.270400pt;}
.ws77{word-spacing:20.272203pt;}
.ws2aa{word-spacing:20.289600pt;}
.ws57{word-spacing:20.309536pt;}
.ws2a9{word-spacing:20.323200pt;}
.ws103{word-spacing:20.325537pt;}
.ws2a8{word-spacing:20.328000pt;}
.ws14b{word-spacing:20.336394pt;}
.ws1b6{word-spacing:20.346870pt;}
.ws2a7{word-spacing:20.356800pt;}
.ws94{word-spacing:20.362870pt;}
.ws279{word-spacing:20.371200pt;}
.ws11f{word-spacing:20.384204pt;}
.ws118{word-spacing:20.394871pt;}
.ws93{word-spacing:20.400204pt;}
.ws1dc{word-spacing:20.415745pt;}
.ws278{word-spacing:20.443200pt;}
.ws13a{word-spacing:20.458871pt;}
.ws15{word-spacing:20.476800pt;}
.ws95{word-spacing:20.506872pt;}
.wsae{word-spacing:20.522872pt;}
.ws11e{word-spacing:20.528205pt;}
.ws1b2{word-spacing:20.613539pt;}
.ws4c{word-spacing:20.629540pt;}
.ws27a{word-spacing:20.630400pt;}
.wsc2{word-spacing:20.688207pt;}
.ws1b4{word-spacing:20.757541pt;}
.ws1b8{word-spacing:20.768208pt;}
.ws150{word-spacing:20.778874pt;}
.ws62{word-spacing:20.784208pt;}
.ws1b5{word-spacing:20.789541pt;}
.ws1b3{word-spacing:20.821542pt;}
.ws184{word-spacing:20.890876pt;}
.ws1fe{word-spacing:20.912209pt;}
.ws1b1{word-spacing:20.965543pt;}
.ws10a{word-spacing:20.981543pt;}
.ws1b9{word-spacing:20.992210pt;}
.ws58{word-spacing:21.002877pt;}
.ws187{word-spacing:21.029544pt;}
.ws196{word-spacing:21.067200pt;}
.wsd8{word-spacing:21.072211pt;}
.ws121{word-spacing:21.130878pt;}
.ws122{word-spacing:21.157545pt;}
.wsd7{word-spacing:21.184212pt;}
.ws11{word-spacing:21.187200pt;}
.ws198{word-spacing:21.209067pt;}
.ws120{word-spacing:21.216212pt;}
.wsbc{word-spacing:21.221546pt;}
.wsc8{word-spacing:21.232212pt;}
.ws250{word-spacing:21.235200pt;}
.ws18f{word-spacing:21.274879pt;}
.wsbb{word-spacing:21.285546pt;}
.ws12f{word-spacing:21.307200pt;}
.wsc7{word-spacing:21.322880pt;}
.ws24f{word-spacing:21.340800pt;}
.ws6f{word-spacing:21.349547pt;}
.ws8b{word-spacing:21.360214pt;}
.ws225{word-spacing:21.374400pt;}
.ws253{word-spacing:21.384000pt;}
.ws8c{word-spacing:21.386881pt;}
.ws197{word-spacing:21.391467pt;}
.wsb8{word-spacing:21.408214pt;}
.ws1ee{word-spacing:21.413547pt;}
.wsf0{word-spacing:21.424214pt;}
.ws273{word-spacing:21.441600pt;}
.ws251{word-spacing:21.456000pt;}
.ws24a{word-spacing:21.460800pt;}
.ws1a{word-spacing:21.475200pt;}
.ws249{word-spacing:21.489600pt;}
.ws66{word-spacing:21.493548pt;}
.ws24e{word-spacing:21.499200pt;}
.ws16f{word-spacing:21.525549pt;}
.ws11d{word-spacing:21.530882pt;}
.ws24b{word-spacing:21.537600pt;}
.ws2a4{word-spacing:21.566400pt;}
.ws171{word-spacing:21.578882pt;}
.ws24d{word-spacing:21.580800pt;}
.ws90{word-spacing:21.594883pt;}
.wsf2{word-spacing:21.626883pt;}
.wsa7{word-spacing:21.632216pt;}
.ws24c{word-spacing:21.633600pt;}
.ws195{word-spacing:21.639733pt;}
.ws20b{word-spacing:21.648216pt;}
.ws16e{word-spacing:21.653550pt;}
.ws2ab{word-spacing:21.657600pt;}
.ws22b{word-spacing:21.676800pt;}
.ws2a3{word-spacing:21.686400pt;}
.ws20a{word-spacing:21.690884pt;}
.ws170{word-spacing:21.706884pt;}
.ws218{word-spacing:21.734400pt;}
.ws2a5{word-spacing:21.739200pt;}
.ws6b{word-spacing:21.749551pt;}
.ws29{word-spacing:21.763200pt;}
.ws56{word-spacing:21.770884pt;}
.ws2ac{word-spacing:21.787200pt;}
.ws219{word-spacing:21.796800pt;}
.wsf4{word-spacing:21.818885pt;}
.ws2ad{word-spacing:21.883200pt;}
.ws61{word-spacing:21.888219pt;}
.ws1fa{word-spacing:21.914886pt;}
.ws26e{word-spacing:21.936000pt;}
.wsdf{word-spacing:21.946886pt;}
.wsb{word-spacing:21.969600pt;}
.ws8a{word-spacing:21.989553pt;}
.ws92{word-spacing:22.010887pt;}
.ws26d{word-spacing:22.041600pt;}
.ws7a{word-spacing:22.048220pt;}
.wsd0{word-spacing:22.090888pt;}
.ws7b{word-spacing:22.101554pt;}
.ws130{word-spacing:22.112221pt;}
.wscf{word-spacing:22.117555pt;}
.ws2b2{word-spacing:22.142400pt;}
.ws1ed{word-spacing:22.144221pt;}
.ws2b1{word-spacing:22.152000pt;}
.ws26f{word-spacing:22.185600pt;}
.wsd1{word-spacing:22.186889pt;}
.ws112{word-spacing:22.197555pt;}
.ws270{word-spacing:22.272000pt;}
.ws199{word-spacing:22.298400pt;}
.ws3d{word-spacing:22.335721pt;}
.ws19{word-spacing:22.368000pt;}
.ws1e9{word-spacing:22.368224pt;}
.ws5b{word-spacing:22.378890pt;}
.ws283{word-spacing:22.406400pt;}
.ws38{word-spacing:22.458891pt;}
.ws202{word-spacing:22.474891pt;}
.ws294{word-spacing:22.478400pt;}
.ws12a{word-spacing:22.496225pt;}
.ws152{word-spacing:22.501558pt;}
.ws5a{word-spacing:22.512225pt;}
.ws151{word-spacing:22.554892pt;}
.ws189{word-spacing:22.570892pt;}
.ws17e{word-spacing:22.576226pt;}
.ws156{word-spacing:22.597559pt;}
.ws19a{word-spacing:22.602400pt;}
.ws154{word-spacing:22.602893pt;}
.ws155{word-spacing:22.608226pt;}
.wsba{word-spacing:22.613559pt;}
.ws37{word-spacing:22.618893pt;}
.ws295{word-spacing:22.622400pt;}
.wsa1{word-spacing:22.624226pt;}
.ws111{word-spacing:22.629560pt;}
.ws3c{word-spacing:22.638650pt;}
.ws208{word-spacing:22.656227pt;}
.ws17f{word-spacing:22.666893pt;}
.ws17d{word-spacing:22.672227pt;}
.ws3f{word-spacing:22.689850pt;}
.wsa0{word-spacing:22.698894pt;}
.wsb9{word-spacing:22.725561pt;}
.ws188{word-spacing:22.762894pt;}
.wsec{word-spacing:22.768228pt;}
.ws1a5{word-spacing:22.773561pt;}
.ws229{word-spacing:22.776000pt;}
.ws271{word-spacing:22.790400pt;}
.ws228{word-spacing:22.886400pt;}
.ws236{word-spacing:22.891200pt;}
.ws117{word-spacing:22.896229pt;}
.ws235{word-spacing:22.920000pt;}
.ws1fb{word-spacing:22.997563pt;}
.ws1fd{word-spacing:23.008230pt;}
.ws104{word-spacing:23.029564pt;}
.wsed{word-spacing:23.045564pt;}
.ws258{word-spacing:23.049600pt;}
.ws257{word-spacing:23.083200pt;}
.ws11a{word-spacing:23.162898pt;}
.ws284{word-spacing:23.184000pt;}
.ws143{word-spacing:23.210899pt;}
.ws23f{word-spacing:23.222400pt;}
.ws23e{word-spacing:23.241600pt;}
.ws80{word-spacing:23.253566pt;}
.ws142{word-spacing:23.301566pt;}
.wse8{word-spacing:23.306900pt;}
.wsc5{word-spacing:23.333567pt;}
.ws240{word-spacing:23.352000pt;}
.ws285{word-spacing:23.395200pt;}
.ws144{word-spacing:23.477568pt;}
.ws18d{word-spacing:23.504235pt;}
.ws286{word-spacing:23.616000pt;}
.wsf6{word-spacing:23.632236pt;}
.wsc6{word-spacing:23.648236pt;}
.ws222{word-spacing:23.688000pt;}
.ws172{word-spacing:23.696237pt;}
.ws221{word-spacing:23.798400pt;}
.wsd9{word-spacing:23.845572pt;}
.ws216{word-spacing:23.851200pt;}
.ws217{word-spacing:23.918400pt;}
.ws4e{word-spacing:23.925573pt;}
.ws85{word-spacing:23.936239pt;}
.ws1f7{word-spacing:23.984240pt;}
.ws4d{word-spacing:24.010907pt;}
.ws1f0{word-spacing:24.032240pt;}
.wsaf{word-spacing:24.053574pt;}
.ws1f6{word-spacing:24.074907pt;}
.ws28{word-spacing:24.086400pt;}
.ws13f{word-spacing:24.096241pt;}
.wsb0{word-spacing:24.149575pt;}
.ws242{word-spacing:24.163200pt;}
.ws1b7{word-spacing:24.192242pt;}
.wsce{word-spacing:24.208242pt;}
.ws1f1{word-spacing:24.261576pt;}
.ws205{word-spacing:24.282909pt;}
.ws110{word-spacing:24.325577pt;}
.ws133{word-spacing:24.448244pt;}
.wsb1{word-spacing:24.522912pt;}
.ws7c{word-spacing:24.544245pt;}
.ws137{word-spacing:24.554912pt;}
.ws6{word-spacing:24.580267pt;}
.wsb2{word-spacing:24.602913pt;}
.ws86{word-spacing:24.624246pt;}
.ws182{word-spacing:24.640246pt;}
.ws4{word-spacing:24.662400pt;}
.wsdc{word-spacing:24.682913pt;}
.ws5{word-spacing:24.699733pt;}
.ws13d{word-spacing:24.736247pt;}
.ws3{word-spacing:24.737067pt;}
.wsdd{word-spacing:24.746914pt;}
.ws181{word-spacing:24.757581pt;}
.wsb7{word-spacing:24.938916pt;}
.ws81{word-spacing:25.002917pt;}
.ws7e{word-spacing:25.034917pt;}
.ws3a{word-spacing:25.061584pt;}
.ws1f3{word-spacing:25.088251pt;}
.ws14f{word-spacing:25.136251pt;}
.ws23{word-spacing:25.137600pt;}
.wsb6{word-spacing:25.157585pt;}
.wsa6{word-spacing:25.162918pt;}
.ws48{word-spacing:25.226919pt;}
.ws4a{word-spacing:25.274919pt;}
.ws1f8{word-spacing:25.317587pt;}
.ws87{word-spacing:25.386921pt;}
.wse0{word-spacing:25.450921pt;}
.ws1ad{word-spacing:25.514922pt;}
.ws79{word-spacing:25.541589pt;}
.ws153{word-spacing:25.557589pt;}
.ws274{word-spacing:25.564800pt;}
.ws1ac{word-spacing:25.621590pt;}
.wsde{word-spacing:25.658923pt;}
.ws4b{word-spacing:25.690924pt;}
.ws275{word-spacing:25.718400pt;}
.wse4{word-spacing:25.829592pt;}
.ws1ab{word-spacing:25.872259pt;}
.ws83{word-spacing:25.925593pt;}
.ws74{word-spacing:25.957593pt;}
.ws75{word-spacing:26.117595pt;}
.wsca{word-spacing:26.128261pt;}
.ws6a{word-spacing:26.197595pt;}
.wscb{word-spacing:26.304263pt;}
.wse1{word-spacing:26.474931pt;}
.ws140{word-spacing:26.512265pt;}
.ws36{word-spacing:26.549599pt;}
.wsea{word-spacing:26.624266pt;}
.ws1f4{word-spacing:26.672267pt;}
.wsff{word-spacing:26.725601pt;}
.ws8d{word-spacing:26.757601pt;}
.ws8e{word-spacing:26.901602pt;}
.wseb{word-spacing:27.056271pt;}
.ws2a{word-spacing:27.120000pt;}
.ws1a7{word-spacing:27.264273pt;}
.ws100{word-spacing:27.338940pt;}
.ws276{word-spacing:27.374400pt;}
.ws1e6{word-spacing:27.482941pt;}
.wsa9{word-spacing:27.541609pt;}
.ws20{word-spacing:27.614400pt;}
.ws10b{word-spacing:27.642943pt;}
.ws1e7{word-spacing:27.712277pt;}
.ws265{word-spacing:27.758400pt;}
.ws10d{word-spacing:27.765611pt;}
.ws266{word-spacing:27.888000pt;}
.ws10c{word-spacing:27.893612pt;}
.ws5c{word-spacing:27.941613pt;}
.ws5d{word-spacing:27.994947pt;}
.ws12b{word-spacing:28.000280pt;}
.wsc1{word-spacing:28.069614pt;}
.wsf1{word-spacing:28.170948pt;}
.ws7d{word-spacing:28.202949pt;}
.ws183{word-spacing:28.208282pt;}
.ws192{word-spacing:28.320283pt;}
.ws68{word-spacing:28.373617pt;}
.ws191{word-spacing:28.384284pt;}
.wsc0{word-spacing:28.416284pt;}
.ws63{word-spacing:28.453618pt;}
.ws67{word-spacing:28.554952pt;}
.ws99{word-spacing:28.890956pt;}
.wsc4{word-spacing:28.944289pt;}
.ws1ff{word-spacing:28.965623pt;}
.ws9b{word-spacing:28.986957pt;}
.ws9a{word-spacing:29.045624pt;}
.ws6c{word-spacing:29.381627pt;}
.wsbf{word-spacing:29.509628pt;}
.ws24{word-spacing:29.563200pt;}
.ws1ea{word-spacing:29.898966pt;}
.ws10f{word-spacing:29.989633pt;}
.wsf9{word-spacing:30.048300pt;}
.wsfa{word-spacing:30.192302pt;}
.ws13e{word-spacing:30.288303pt;}
.wsc3{word-spacing:30.869642pt;}
.ws10e{word-spacing:30.890976pt;}
.ws185{word-spacing:31.082977pt;}
.ws243{word-spacing:31.166400pt;}
.ws244{word-spacing:31.219200pt;}
.ws245{word-spacing:31.243200pt;}
.ws1a9{word-spacing:31.424314pt;}
.ws12{word-spacing:31.473600pt;}
.ws1ec{word-spacing:31.568316pt;}
.ws1aa{word-spacing:31.626983pt;}
.ws1a8{word-spacing:31.754984pt;}
.wse7{word-spacing:31.994987pt;}
.ws201{word-spacing:32.442991pt;}
.ws220{word-spacing:32.452800pt;}
.wse3{word-spacing:32.762994pt;}
.ws173{word-spacing:32.896329pt;}
.ws27{word-spacing:33.691200pt;}
.wsef{word-spacing:34.053674pt;}
.ws174{word-spacing:34.091008pt;}
.ws176{word-spacing:34.117675pt;}
.ws175{word-spacing:34.165675pt;}
.ws88{word-spacing:34.363010pt;}
.ws296{word-spacing:34.848000pt;}
.ws28c{word-spacing:35.884800pt;}
.ws298{word-spacing:39.825600pt;}
.ws299{word-spacing:40.027200pt;}
.ws297{word-spacing:40.065600pt;}
.ws29a{word-spacing:40.113600pt;}
.wsa5{word-spacing:41.184412pt;}
.ws18c{word-spacing:46.629800pt;}
.ws14d{word-spacing:78.902690pt;}
.ws3e{word-spacing:98.334550pt;}
.ws15b{word-spacing:201.554814pt;}
.ws162{word-spacing:217.426615pt;}
.ws163{word-spacing:217.729545pt;}
.ws15d{word-spacing:237.693029pt;}
.ws160{word-spacing:237.995958pt;}
.ws168{word-spacing:242.249772pt;}
.ws165{word-spacing:247.062512pt;}
.ws15e{word-spacing:256.461861pt;}
.ws15f{word-spacing:267.328925pt;}
.ws2b9{word-spacing:673.480648pt;}
.ws1d6{word-spacing:760.685958pt;}
.ws1d9{word-spacing:787.808819pt;}
.ws1be{word-spacing:842.464136pt;}
.ws1cb{word-spacing:856.620759pt;}
.ws1c7{word-spacing:856.646358pt;}
.ws1cf{word-spacing:881.414049pt;}
.ws1c3{word-spacing:885.672129pt;}
.ws1c4{word-spacing:899.969550pt;}
.ws1d3{word-spacing:901.680462pt;}
.ws1c9{word-spacing:907.005196pt;}
.ws1d2{word-spacing:907.611055pt;}
.ws1d7{word-spacing:913.853110pt;}
.ws1cd{word-spacing:915.820019pt;}
.ws1c6{word-spacing:919.813569pt;}
.ws1d0{word-spacing:930.497169pt;}
.ws1cc{word-spacing:934.166456pt;}
.ws1ce{word-spacing:934.635784pt;}
.ws1c8{word-spacing:957.547497pt;}
.ws1d5{word-spacing:963.665821pt;}
.ws1bd{word-spacing:982.438919pt;}
.ws1c1{word-spacing:1050.252472pt;}
._2f{margin-left:-20.613539pt;}
._19{margin-left:-15.781491pt;}
._39{margin-left:-14.534400pt;}
._1{margin-left:-3.680000pt;}
._0{margin-left:-1.706654pt;}
._11{width:0.959975pt;}
._2e{width:3.941302pt;}
._1c{width:6.238416pt;}
._3e{width:7.355641pt;}
._15{width:8.928089pt;}
._10{width:13.197145pt;}
._9{width:14.764176pt;}
._1a{width:15.882705pt;}
._4{width:16.867200pt;}
._2{width:17.893512pt;}
._13{width:18.789521pt;}
._5{width:20.260800pt;}
._7{width:21.730615pt;}
._8{width:22.802029pt;}
._e{width:23.694436pt;}
._12{width:24.886907pt;}
._3{width:25.812267pt;}
._a{width:26.714654pt;}
._d{width:27.610943pt;}
._b{width:28.560000pt;}
._14{width:29.552296pt;}
._16{width:30.538972pt;}
._1b{width:31.456315pt;}
._6{width:32.504468pt;}
._2d{width:33.893672pt;}
._c{width:34.891707pt;}
._3a{width:36.004800pt;}
._18{width:40.336403pt;}
._37{width:65.500800pt;}
._38{width:85.339200pt;}
._f{width:98.660576pt;}
._17{width:122.799740pt;}
._2b{width:217.895943pt;}
._20{width:219.184460pt;}
._1f{width:229.961925pt;}
._29{width:237.731428pt;}
._28{width:242.424703pt;}
._26{width:258.168506pt;}
._25{width:267.149727pt;}
._22{width:278.861581pt;}
._2a{width:283.422591pt;}
._2c{width:307.725220pt;}
._1e{width:346.478869pt;}
._4d{width:410.567668pt;}
._53{width:420.299813pt;}
._24{width:438.961980pt;}
._4b{width:443.382191pt;}
._27{width:448.433861pt;}
._23{width:454.108457pt;}
._21{width:455.900435pt;}
._4c{width:465.739245pt;}
._51{width:477.216435pt;}
._4f{width:519.455907pt;}
._56{width:528.501127pt;}
._48{width:534.346387pt;}
._40{width:536.095699pt;}
._42{width:539.423657pt;}
._55{width:542.935080pt;}
._3d{width:546.164906pt;}
._46{width:554.100807pt;}
._4a{width:557.770094pt;}
._44{width:560.543393pt;}
._3f{width:562.122040pt;}
._45{width:572.916572pt;}
._54{width:575.864802pt;}
._3c{width:594.936563pt;}
._4e{width:611.269159pt;}
._50{width:612.421145pt;}
._43{width:619.977317pt;}
._52{width:623.518606pt;}
._30{width:634.808065pt;}
._41{width:638.238422pt;}
._47{width:655.176877pt;}
._3b{width:690.384970pt;}
._1d{width:749.072236pt;}
._31{width:756.316946pt;}
._49{width:761.325950pt;}
._34{width:903.655904pt;}
._32{width:936.487494pt;}
._33{width:963.576222pt;}
._36{width:965.939926pt;}
._35{width:969.852410pt;}
.fsc{font-size:31.995733pt;}
.fs12{font-size:35.552000pt;}
.fsb{font-size:37.329600pt;}
.fs10{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:39.999467pt;}
.fse{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs11{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.333867pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.000533pt;}
.fsf{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:44.973338pt;}
.y39{bottom:60.086668pt;}
.y7c{bottom:64.024457pt;}
.y5{bottom:67.373337pt;}
.y207{bottom:71.955926pt;}
.y1d8{bottom:71.961754pt;}
.yb4{bottom:72.021919pt;}
.y140{bottom:72.037379pt;}
.y19c{bottom:72.037782pt;}
.y110{bottom:72.037879pt;}
.ye2{bottom:72.039410pt;}
.y22c{bottom:72.040667pt;}
.y263{bottom:72.044800pt;}
.y7b{bottom:74.682971pt;}
.y38{bottom:74.753335pt;}
.y170{bottom:75.211031pt;}
.y16f{bottom:83.979988pt;}
.y1d7{bottom:83.980804pt;}
.y7a{bottom:85.341486pt;}
.y22b{bottom:87.309467pt;}
.y262{bottom:87.691600pt;}
.yb3{bottom:89.332759pt;}
.y10f{bottom:89.348719pt;}
.ye1{bottom:89.424917pt;}
.y13f{bottom:89.725556pt;}
.y4{bottom:89.773337pt;}
.y19b{bottom:89.952628pt;}
.y206{bottom:90.022773pt;}
.y16e{bottom:95.999038pt;}
.y1d6{bottom:95.999854pt;}
.y79{bottom:96.000000pt;}
.y261{bottom:102.355600pt;}
.y22a{bottom:102.653867pt;}
.yb2{bottom:106.643599pt;}
.y10e{bottom:106.734226pt;}
.ye0{bottom:106.810424pt;}
.y19a{bottom:107.263468pt;}
.y13e{bottom:107.489733pt;}
.y205{bottom:108.013620pt;}
.y78{bottom:110.362149pt;}
.y16d{bottom:112.326301pt;}
.y1d5{bottom:112.327116pt;}
.y229{bottom:117.998267pt;}
.y260{bottom:118.078000pt;}
.y77{bottom:122.305467pt;}
.y23{bottom:123.790666pt;}
.yb1{bottom:124.029106pt;}
.y10d{bottom:124.119733pt;}
.ydf{bottom:124.195931pt;}
.y16c{bottom:124.345350pt;}
.y1d4{bottom:124.346166pt;}
.y199{bottom:125.178314pt;}
.y204{bottom:126.004466pt;}
.y13d{bottom:132.208800pt;}
.y228{bottom:132.737867pt;}
.y25f{bottom:132.742000pt;}
.y16b{bottom:136.364400pt;}
.y1d3{bottom:136.365216pt;}
.yb0{bottom:141.339946pt;}
.y10c{bottom:141.429867pt;}
.yde{bottom:141.506771pt;}
.y198{bottom:143.093159pt;}
.y203{bottom:143.995313pt;}
.y13c{bottom:147.250800pt;}
.y16a{bottom:148.307717pt;}
.y1d2{bottom:148.308533pt;}
.y25e{bottom:148.388800pt;}
.y227{bottom:156.398267pt;}
.yaf{bottom:158.650785pt;}
.ydd{bottom:158.892278pt;}
.y1d1{bottom:160.324467pt;}
.y169{bottom:160.326767pt;}
.y197{bottom:160.478888pt;}
.y202{bottom:161.306153pt;}
.y13b{bottom:162.368400pt;}
.y76{bottom:162.744907pt;}
.y25d{bottom:163.128400pt;}
.y226{bottom:171.667067pt;}
.y1d0{bottom:172.343517pt;}
.y168{bottom:172.345817pt;}
.y196{bottom:174.689730pt;}
.y1a{bottom:175.052000pt;}
.yae{bottom:175.961625pt;}
.y10b{bottom:176.126013pt;}
.ydc{bottom:176.277786pt;}
.y195{bottom:178.393821pt;}
.y25c{bottom:178.775200pt;}
.y201{bottom:179.296999pt;}
.y75{bottom:180.055747pt;}
.y1cf{bottom:184.362567pt;}
.y167{bottom:184.364867pt;}
.y13a{bottom:185.724313pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y225{bottom:187.011467pt;}
.y298{bottom:188.985200pt;}
.yad{bottom:193.347132pt;}
.y10a{bottom:193.511520pt;}
.ydb{bottom:193.663293pt;}
.y25b{bottom:194.497600pt;}
.y1ce{bottom:196.305884pt;}
.y166{bottom:196.308184pt;}
.y194{bottom:196.308754pt;}
.y200{bottom:197.363847pt;}
.y74{bottom:197.366586pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y224{bottom:202.355867pt;}
.y139{bottom:203.488490pt;}
.y297{bottom:204.858800pt;}
.y1cd{bottom:208.324934pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y25a{bottom:209.161600pt;}
.yac{bottom:210.657972pt;}
.y109{bottom:210.822359pt;}
.yda{bottom:211.048800pt;}
.y165{bottom:212.333584pt;}
.y193{bottom:214.223070pt;}
.y73{bottom:214.752094pt;}
.y1ff{bottom:215.354693pt;}
.y296{bottom:219.524000pt;}
.y1cc{bottom:220.343983pt;}
.y138{bottom:221.176667pt;}
.y259{bottom:224.808400pt;}
.yab{bottom:227.968812pt;}
.y108{bottom:228.207867pt;}
.y223{bottom:229.644133pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y72{bottom:232.062933pt;}
.y1cb{bottom:232.363033pt;}
.y164{bottom:232.365333pt;}
.y1fe{bottom:233.345540pt;}
.y295{bottom:235.397600pt;}
.yd9{bottom:236.371600pt;}
.y137{bottom:238.940845pt;}
.y258{bottom:239.472400pt;}
.y37{bottom:239.801334pt;}
.y191{bottom:240.226800pt;}
.y192{bottom:240.604137pt;}
.y190{bottom:240.604525pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1ca{bottom:244.306351pt;}
.yaa{bottom:245.354319pt;}
.y163{bottom:249.675600pt;}
.y294{bottom:251.271200pt;}
.y1fd{bottom:251.336386pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y107{bottom:253.530667pt;}
.y257{bottom:255.194800pt;}
.y1c9{bottom:256.325400pt;}
.y136{bottom:256.705022pt;}
.y71{bottom:257.385867pt;}
.ya9{bottom:262.665159pt;}
.y18f{bottom:263.508754pt;}
.y293{bottom:267.144800pt;}
.y1c8{bottom:268.344450pt;}
.y1fc{bottom:269.327233pt;}
.y256{bottom:269.858800pt;}
.y222{bottom:270.236133pt;}
.y135{bottom:274.469200pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yd8{bottom:279.765618pt;}
.ya8{bottom:279.975999pt;}
.y1c7{bottom:280.363500pt;}
.y18e{bottom:281.423600pt;}
.y18c{bottom:281.424310pt;}
.y162{bottom:282.252927pt;}
.y291{bottom:283.018400pt;}
.y255{bottom:285.581200pt;}
.y292{bottom:286.042400pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1fb{bottom:287.318080pt;}
.y18d{bottom:287.395200pt;}
.y134{bottom:291.779467pt;}
.y1c6{bottom:292.306817pt;}
.y221{bottom:293.593600pt;}
.y106{bottom:296.920980pt;}
.y36{bottom:297.001334pt;}
.yd7{bottom:297.151126pt;}
.ya7{bottom:297.361506pt;}
.y290{bottom:297.683600pt;}
.y18b{bottom:298.809817pt;}
.y161{bottom:299.790435pt;}
.y254{bottom:300.246400pt;}
.y1c5{bottom:304.325867pt;}
.y1fa{bottom:305.308926pt;}
.y11{bottom:309.452000pt;}
.y28f{bottom:313.557200pt;}
.y105{bottom:314.231819pt;}
.yd6{bottom:314.536633pt;}
.ya6{bottom:314.672346pt;}
.y252{bottom:315.893200pt;}
.y1c4{bottom:316.344917pt;}
.y18a{bottom:316.724663pt;}
.y160{bottom:317.327944pt;}
.y253{bottom:318.992800pt;}
.y1f9{bottom:323.299773pt;}
.y133{bottom:326.474711pt;}
.y28e{bottom:328.221200pt;}
.y1c3{bottom:328.363967pt;}
.y63{bottom:330.249867pt;}
.y251{bottom:330.558400pt;}
.y104{bottom:331.617327pt;}
.yd5{bottom:331.922140pt;}
.ya5{bottom:331.983185pt;}
.y189{bottom:334.639508pt;}
.y15f{bottom:334.789452pt;}
.y220{bottom:336.226800pt;}
.y1c2{bottom:340.307284pt;}
.y1f8{bottom:341.366620pt;}
.y62{bottom:343.629867pt;}
.y10{bottom:343.809333pt;}
.y28d{bottom:344.094800pt;}
.y132{bottom:344.238889pt;}
.y250{bottom:346.280800pt;}
.y103{bottom:349.002834pt;}
.yd4{bottom:349.307647pt;}
.ya4{bottom:349.368693pt;}
.y1c1{bottom:352.326334pt;}
.y15e{bottom:352.326961pt;}
.y188{bottom:352.554354pt;}
.y35{bottom:356.806667pt;}
.y61{bottom:356.934267pt;}
.y1f7{bottom:359.357467pt;}
.y21f{bottom:359.584133pt;}
.y28c{bottom:359.968400pt;}
.y24f{bottom:360.955600pt;}
.y131{bottom:362.003067pt;}
.yf{bottom:362.706666pt;}
.y1c0{bottom:364.345383pt;}
.y102{bottom:366.388341pt;}
.ya3{bottom:366.679532pt;}
.yd3{bottom:366.693154pt;}
.y15d{bottom:369.864470pt;}
.y60{bottom:370.238667pt;}
.y187{bottom:370.469323pt;}
.y28b{bottom:374.632400pt;}
.y1bf{bottom:376.364433pt;}
.y24e{bottom:376.678000pt;}
.y5f{bottom:383.618667pt;}
.y101{bottom:383.773848pt;}
.ya2{bottom:383.990372pt;}
.yd2{bottom:384.078661pt;}
.y1f6{bottom:384.680267pt;}
.y130{bottom:386.646133pt;}
.y15c{bottom:387.401978pt;}
.y1be{bottom:388.307751pt;}
.y28a{bottom:390.506000pt;}
.y24d{bottom:391.342000pt;}
.y5e{bottom:396.923067pt;}
.y186{bottom:398.210792pt;}
.y1bd{bottom:400.326800pt;}
.y100{bottom:401.084688pt;}
.ya1{bottom:401.375879pt;}
.yd1{bottom:401.464169pt;}
.y12f{bottom:401.763733pt;}
.y289{bottom:406.379600pt;}
.y24c{bottom:406.988800pt;}
.y21e{bottom:407.283733pt;}
.y5d{bottom:410.303067pt;}
.y34{bottom:411.401334pt;}
.y1bc{bottom:412.345850pt;}
.yff{bottom:418.470195pt;}
.ya0{bottom:418.686719pt;}
.yd0{bottom:418.849676pt;}
.y288{bottom:421.043600pt;}
.y185{bottom:421.115021pt;}
.y21d{bottom:422.628133pt;}
.y24b{bottom:422.711200pt;}
.y5c{bottom:423.607467pt;}
.y1bb{bottom:424.364900pt;}
.y12e{bottom:425.043512pt;}
.y15b{bottom:429.578684pt;}
.ye{bottom:430.990669pt;}
.y184{bottom:435.325730pt;}
.yfe{bottom:435.855702pt;}
.y9f{bottom:435.997559pt;}
.y1f5{bottom:436.070893pt;}
.ycf{bottom:436.235183pt;}
.y1ba{bottom:436.308217pt;}
.y5b{bottom:436.911867pt;}
.y287{bottom:436.917200pt;}
.y24a{bottom:437.375200pt;}
.y21c{bottom:437.972533pt;}
.y183{bottom:439.030401pt;}
.y12d{bottom:442.807689pt;}
.yd{bottom:446.990669pt;}
.y5a{bottom:450.291867pt;}
.y286{bottom:451.581200pt;}
.y15a{bottom:452.104243pt;}
.y1b9{bottom:452.333617pt;}
.y249{bottom:453.097600pt;}
.yfd{bottom:453.166542pt;}
.y21b{bottom:453.316933pt;}
.y9e{bottom:453.383066pt;}
.yce{bottom:453.620690pt;}
.y1f4{bottom:454.061739pt;}
.y182{bottom:456.945247pt;}
.y12c{bottom:460.571867pt;}
.yc{bottom:462.990669pt;}
.y59{bottom:463.596267pt;}
.y1b8{bottom:464.352667pt;}
.y285{bottom:467.454800pt;}
.y248{bottom:467.761600pt;}
.y21a{bottom:468.661333pt;}
.y159{bottom:469.565751pt;}
.yfc{bottom:470.552049pt;}
.y9d{bottom:470.693906pt;}
.ycd{bottom:471.006197pt;}
.y33{bottom:471.206667pt;}
.y1f3{bottom:472.052586pt;}
.y181{bottom:474.330754pt;}
.y58{bottom:476.976267pt;}
.y12b{bottom:478.336045pt;}
.yb{bottom:478.990666pt;}
.y1b7{bottom:481.662933pt;}
.y284{bottom:482.118800pt;}
.y247{bottom:483.408400pt;}
.y158{bottom:487.103259pt;}
.yfb{bottom:487.937557pt;}
.y9c{bottom:488.004746pt;}
.ycc{bottom:488.391705pt;}
.y57{bottom:489.600000pt;}
.y1f2{bottom:490.043433pt;}
.y219{bottom:491.943200pt;}
.y180{bottom:492.245688pt;}
.ya{bottom:494.990666pt;}
.y12a{bottom:496.100222pt;}
.y283{bottom:497.992400pt;}
.y246{bottom:499.130800pt;}
.y32{bottom:501.740001pt;}
.y157{bottom:504.640768pt;}
.yfa{bottom:505.323064pt;}
.y9b{bottom:505.390253pt;}
.ycb{bottom:505.777212pt;}
.y17f{bottom:506.456530pt;}
.y1f1{bottom:508.110280pt;}
.y17e{bottom:510.159852pt;}
.y282{bottom:512.656400pt;}
.y245{bottom:513.794800pt;}
.y129{bottom:513.864400pt;}
.y1b6{bottom:514.316567pt;}
.y31{bottom:515.073335pt;}
.y56{bottom:516.275867pt;}
.y156{bottom:521.951608pt;}
.yf9{bottom:522.633903pt;}
.y9a{bottom:522.701093pt;}
.yca{bottom:523.162719pt;}
.y1f0{bottom:525.421120pt;}
.y30{bottom:528.406667pt;}
.y281{bottom:528.530000pt;}
.y244{bottom:529.441600pt;}
.y55{bottom:529.580267pt;}
.y128{bottom:531.174667pt;}
.y1b5{bottom:532.307414pt;}
.y17b{bottom:534.576132pt;}
.y17d{bottom:538.279768pt;}
.y17a{bottom:538.280742pt;}
.y155{bottom:539.489117pt;}
.y99{bottom:540.011932pt;}
.yf8{bottom:540.019411pt;}
.y218{bottom:540.395547pt;}
.yc9{bottom:540.548226pt;}
.y54{bottom:542.960267pt;}
.y1ef{bottom:543.411966pt;}
.y243{bottom:544.181200pt;}
.y280{bottom:544.403600pt;}
.y17c{bottom:548.182533pt;}
.y1b4{bottom:550.298260pt;}
.y53{bottom:556.264667pt;}
.y154{bottom:557.026625pt;}
.y98{bottom:557.397439pt;}
.yf7{bottom:557.404918pt;}
.yc8{bottom:557.933733pt;}
.y217{bottom:558.386394pt;}
.y27f{bottom:559.067600pt;}
.y242{bottom:559.828000pt;}
.y1ee{bottom:561.402813pt;}
.y179{bottom:561.562308pt;}
.y127{bottom:565.861524pt;}
.y1b3{bottom:568.289107pt;}
.y52{bottom:569.644667pt;}
.y9{bottom:573.786667pt;}
.y153{bottom:574.488133pt;}
.y97{bottom:574.708279pt;}
.yf6{bottom:574.790425pt;}
.y27e{bottom:574.954000pt;}
.y241{bottom:575.550400pt;}
.y70{bottom:576.075350pt;}
.y216{bottom:576.377240pt;}
.y1ed{bottom:579.393659pt;}
.y178{bottom:579.477154pt;}
.y51{bottom:582.949067pt;}
.yc7{bottom:583.256533pt;}
.y126{bottom:583.625702pt;}
.y1b2{bottom:586.279953pt;}
.y6f{bottom:588.094400pt;}
.y27d{bottom:589.618000pt;}
.y240{bottom:590.214400pt;}
.y152{bottom:591.873225pt;}
.y96{bottom:592.019119pt;}
.yf5{bottom:592.101265pt;}
.y8{bottom:592.685334pt;}
.y215{bottom:594.368087pt;}
.y50{bottom:596.253467pt;}
.y1ec{bottom:597.384506pt;}
.y177{bottom:597.392000pt;}
.y6e{bottom:600.037600pt;}
.y2f{bottom:600.726665pt;}
.y125{bottom:601.389879pt;}
.y1b1{bottom:604.270800pt;}
.y27c{bottom:605.491600pt;}
.y23e{bottom:605.861200pt;}
.y23f{bottom:608.960800pt;}
.y95{bottom:609.404626pt;}
.yf4{bottom:609.486772pt;}
.y4f{bottom:609.633467pt;}
.y214{bottom:612.358933pt;}
.y176{bottom:614.702267pt;}
.y1eb{bottom:615.450020pt;}
.y151{bottom:617.196667pt;}
.y124{bottom:619.154057pt;}
.y27b{bottom:620.155600pt;}
.y23d{bottom:620.525200pt;}
.y6d{bottom:622.638733pt;}
.y4e{bottom:622.937867pt;}
.yc6{bottom:626.570945pt;}
.y94{bottom:626.715466pt;}
.yf3{bottom:626.872279pt;}
.y2e{bottom:627.393332pt;}
.y1b0{bottom:629.593600pt;}
.y1ea{bottom:633.440867pt;}
.y6c{bottom:634.657783pt;}
.y27a{bottom:636.029200pt;}
.y4d{bottom:636.242267pt;}
.y23c{bottom:636.247600pt;}
.y123{bottom:636.918235pt;}
.y213{bottom:637.681733pt;}
.y2d{bottom:643.393332pt;}
.yc5{bottom:643.956452pt;}
.y93{bottom:644.026306pt;}
.yf2{bottom:644.257786pt;}
.y7{bottom:645.598667pt;}
.y6b{bottom:646.676833pt;}
.y175{bottom:649.398750pt;}
.y4c{bottom:649.622267pt;}
.y279{bottom:650.693200pt;}
.y1e9{bottom:650.751706pt;}
.y23b{bottom:650.911600pt;}
.y122{bottom:654.606412pt;}
.y6a{bottom:658.695883pt;}
.y2c{bottom:659.393332pt;}
.y2af{bottom:659.600738pt;}
.y150{bottom:660.508499pt;}
.yc4{bottom:661.341959pt;}
.y92{bottom:661.411813pt;}
.yf1{bottom:661.643294pt;}
.y4b{bottom:662.926667pt;}
.y278{bottom:666.566800pt;}
.y23a{bottom:666.634000pt;}
.y174{bottom:667.313596pt;}
.y1e8{bottom:668.742553pt;}
.y3{bottom:668.977329pt;}
.y69{bottom:670.639200pt;}
.y121{bottom:672.370589pt;}
.y1af{bottom:672.981594pt;}
.y2b{bottom:675.393332pt;}
.y2ae{bottom:676.003733pt;}
.y4a{bottom:676.306667pt;}
.y14f{bottom:678.046008pt;}
.y91{bottom:678.722653pt;}
.yc3{bottom:678.727467pt;}
.yf0{bottom:678.954133pt;}
.y277{bottom:681.230800pt;}
.y239{bottom:681.298000pt;}
.y68{bottom:682.658133pt;}
.y173{bottom:685.228442pt;}
.y212{bottom:686.134080pt;}
.y1e7{bottom:686.733399pt;}
.y2ad{bottom:687.947050pt;}
.y49{bottom:689.611067pt;}
.y120{bottom:690.134767pt;}
.y1ae{bottom:690.972440pt;}
.y14e{bottom:695.507516pt;}
.y90{bottom:696.033492pt;}
.y238{bottom:696.944800pt;}
.y276{bottom:697.104400pt;}
.y2ac{bottom:699.966100pt;}
.y48{bottom:702.915467pt;}
.y172{bottom:703.143288pt;}
.yc2{bottom:704.050267pt;}
.y211{bottom:704.124927pt;}
.yef{bottom:704.352667pt;}
.y1e6{bottom:704.724246pt;}
.y67{bottom:706.695766pt;}
.y11f{bottom:707.898944pt;}
.y1ad{bottom:708.963287pt;}
.y2ab{bottom:711.985150pt;}
.y275{bottom:712.978000pt;}
.y14d{bottom:713.045025pt;}
.y8f{bottom:713.419000pt;}
.y47{bottom:716.295467pt;}
.y66{bottom:718.639084pt;}
.y237{bottom:720.982533pt;}
.y171{bottom:721.058133pt;}
.y2a{bottom:722.034669pt;}
.y210{bottom:722.115774pt;}
.y1e5{bottom:722.715093pt;}
.y2aa{bottom:724.004199pt;}
.y11e{bottom:725.663122pt;}
.y1ac{bottom:726.953507pt;}
.y274{bottom:728.851600pt;}
.y46{bottom:729.599867pt;}
.y14c{bottom:730.582533pt;}
.y65{bottom:730.658133pt;}
.y8e{bottom:730.729839pt;}
.y2a9{bottom:735.947517pt;}
.y20f{bottom:740.106620pt;}
.y1e4{bottom:740.781940pt;}
.y64{bottom:742.677067pt;}
.y45{bottom:742.979333pt;}
.y11d{bottom:743.427300pt;}
.y273{bottom:743.515600pt;}
.y1ab{bottom:744.944353pt;}
.yc1{bottom:747.442007pt;}
.yee{bottom:747.667342pt;}
.y2a8{bottom:747.966567pt;}
.y8d{bottom:748.040679pt;}
.y19f{bottom:754.167467pt;}
.y14b{bottom:755.905333pt;}
.y1e3{bottom:758.092780pt;}
.y20e{bottom:758.097467pt;}
.y272{bottom:759.389200pt;}
.y2a7{bottom:759.985616pt;}
.y11c{bottom:761.191477pt;}
.y1aa{bottom:762.934887pt;}
.y236{bottom:763.615600pt;}
.yc0{bottom:764.827514pt;}
.yed{bottom:765.052849pt;}
.y8c{bottom:765.426186pt;}
.y19e{bottom:768.831667pt;}
.y2a6{bottom:772.004666pt;}
.y271{bottom:774.053200pt;}
.y1e2{bottom:776.083626pt;}
.y11b{bottom:778.502317pt;}
.y29{bottom:778.613333pt;}
.y1a9{bottom:780.925553pt;}
.y2{bottom:781.661334pt;}
.ybf{bottom:782.213021pt;}
.yec{bottom:782.363689pt;}
.y8b{bottom:782.737026pt;}
.y20d{bottom:783.420267pt;}
.y19d{bottom:783.495867pt;}
.y2a5{bottom:783.947983pt;}
.y42{bottom:784.780533pt;}
.y44{bottom:784.780933pt;}
.y235{bottom:786.973067pt;}
.y270{bottom:789.926800pt;}
.y43{bottom:790.072267pt;}
.y1e1{bottom:794.074473pt;}
.y2a4{bottom:795.967033pt;}
.y11a{bottom:796.266495pt;}
.y41{bottom:798.084933pt;}
.y1a8{bottom:798.916400pt;}
.y14a{bottom:799.215974pt;}
.ybe{bottom:799.598528pt;}
.yeb{bottom:799.749196pt;}
.y8a{bottom:800.047866pt;}
.y40{bottom:803.451867pt;}
.y26f{bottom:804.590800pt;}
.y28{bottom:806.613333pt;}
.y2a3{bottom:807.986083pt;}
.y1e0{bottom:812.065319pt;}
.y119{bottom:814.030672pt;}
.y149{bottom:816.753483pt;}
.ybd{bottom:816.909368pt;}
.y1a7{bottom:816.982498pt;}
.yea{bottom:817.134703pt;}
.y89{bottom:817.433373pt;}
.y2a2{bottom:820.005133pt;}
.y26e{bottom:820.464400pt;}
.y3e{bottom:821.971467pt;}
.y3f{bottom:828.169867pt;}
.y234{bottom:829.606667pt;}
.y1df{bottom:830.056166pt;}
.y118{bottom:831.794850pt;}
.y20c{bottom:831.872300pt;}
.y2a1{bottom:831.948450pt;}
.y148{bottom:834.290991pt;}
.ybc{bottom:834.294875pt;}
.ye9{bottom:834.520211pt;}
.y27{bottom:834.613333pt;}
.y88{bottom:834.744213pt;}
.y26d{bottom:836.338000pt;}
.y2a0{bottom:843.967500pt;}
.y233{bottom:844.271200pt;}
.y1a6{bottom:847.218800pt;}
.y1de{bottom:848.047013pt;}
.y117{bottom:849.559028pt;}
.y20b{bottom:849.863147pt;}
.ybb{bottom:851.680382pt;}
.y147{bottom:851.752499pt;}
.ye8{bottom:851.905718pt;}
.y87{bottom:852.055053pt;}
.y26c{bottom:852.211600pt;}
.y29f{bottom:855.986550pt;}
.y3d{bottom:856.666000pt;}
.y232{bottom:858.935200pt;}
.y1{bottom:859.312000pt;}
.y26{bottom:862.613333pt;}
.y1dd{bottom:866.113860pt;}
.y26b{bottom:866.875600pt;}
.y116{bottom:867.323205pt;}
.y20a{bottom:867.853994pt;}
.y29e{bottom:868.005599pt;}
.yba{bottom:869.065889pt;}
.ye7{bottom:869.216558pt;}
.y146{bottom:869.290008pt;}
.y86{bottom:869.440560pt;}
.y1a5{bottom:870.802486pt;}
.y3c{bottom:877.983333pt;}
.y29d{bottom:879.948917pt;}
.y231{bottom:881.990400pt;}
.y26a{bottom:882.749200pt;}
.y1dc{bottom:883.424700pt;}
.y115{bottom:885.087383pt;}
.y209{bottom:885.844840pt;}
.yb9{bottom:886.451397pt;}
.ye6{bottom:886.602065pt;}
.y85{bottom:886.751400pt;}
.y145{bottom:886.827517pt;}
.y29c{bottom:891.967967pt;}
.y269{bottom:897.413200pt;}
.y1a4{bottom:898.090759pt;}
.y3b{bottom:899.300667pt;}
.y1db{bottom:901.415546pt;}
.y114{bottom:902.851561pt;}
.y208{bottom:903.835687pt;}
.yb8{bottom:903.836904pt;}
.ye5{bottom:903.912905pt;}
.y29b{bottom:903.987016pt;}
.y84{bottom:904.062239pt;}
.y144{bottom:904.365025pt;}
.y268{bottom:913.286800pt;}
.y29a{bottom:916.006066pt;}
.y1da{bottom:919.406393pt;}
.y113{bottom:920.162400pt;}
.y25{bottom:920.485335pt;}
.yb7{bottom:921.222411pt;}
.ye4{bottom:921.298412pt;}
.y83{bottom:921.447747pt;}
.y230{bottom:921.525733pt;}
.y143{bottom:921.826533pt;}
.y267{bottom:927.950800pt;}
.y1a3{bottom:928.855765pt;}
.y1a1{bottom:928.855821pt;}
.y3a{bottom:931.275333pt;}
.y299{bottom:931.955733pt;}
.y22f{bottom:936.718933pt;}
.y1d9{bottom:937.397239pt;}
.y112{bottom:937.926578pt;}
.yb6{bottom:938.607918pt;}
.ye3{bottom:938.683919pt;}
.y82{bottom:938.758586pt;}
.y1a2{bottom:939.061200pt;}
.y266{bottom:943.824400pt;}
.y142{bottom:947.149467pt;}
.y22e{bottom:951.912133pt;}
.y1a0{bottom:955.388086pt;}
.y111{bottom:955.690756pt;}
.y81{bottom:956.069426pt;}
.y265{bottom:958.488400pt;}
.y7f{bottom:963.401919pt;}
.y22d{bottom:966.576133pt;}
.y141{bottom:972.547867pt;}
.y80{bottom:973.454933pt;}
.y264{bottom:974.362000pt;}
.y7e{bottom:975.344760pt;}
.y7d{bottom:987.363600pt;}
.yb5{bottom:1014.424933pt;}
.y24{bottom:1035.664002pt;}
.h28{height:2.133355pt;}
.h16{height:22.876949pt;}
.h2f{height:26.664000pt;}
.h1c{height:26.692952pt;}
.h18{height:27.399635pt;}
.h15{height:27.997200pt;}
.h7{height:28.560000pt;}
.h1d{height:28.599619pt;}
.h1e{height:29.999600pt;}
.h1a{height:30.506285pt;}
.h25{height:31.999600pt;}
.h3a{height:32.112000pt;}
.hb{height:32.645833pt;}
.h17{height:34.320000pt;}
.h20{height:34.608000pt;}
.h19{height:36.000000pt;}
.h22{height:36.226667pt;}
.hf{height:36.726562pt;}
.h12{height:40.000400pt;}
.h2e{height:40.000966pt;}
.h36{height:40.001120pt;}
.h37{height:40.001653pt;}
.h29{height:40.001863pt;}
.h35{height:40.002189pt;}
.h30{height:40.002518pt;}
.h31{height:40.002522pt;}
.h33{height:40.002717pt;}
.h38{height:40.002906pt;}
.h34{height:40.002942pt;}
.h21{height:40.009930pt;}
.h1f{height:40.376385pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h14{height:42.000400pt;}
.h1b{height:42.299051pt;}
.h3{height:42.840000pt;}
.h24{height:44.697041pt;}
.h23{height:44.999971pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h2c{height:49.464662pt;}
.h32{height:49.466983pt;}
.h2a{height:49.470058pt;}
.h26{height:50.069698pt;}
.h27{height:53.269724pt;}
.h13{height:53.834667pt;}
.h2b{height:54.816400pt;}
.h2d{height:54.816948pt;}
.h39{height:56.027227pt;}
.h5{height:57.120000pt;}
.ha{height:61.210938pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.000000pt;}
.x10{left:100.006267pt;}
.x2a{left:109.304400pt;}
.x15{left:110.437478pt;}
.x12{left:112.025200pt;}
.x11{left:125.404667pt;}
.x6{left:129.466667pt;}
.x23{left:144.983156pt;}
.x26{left:165.842959pt;}
.x5{left:170.560000pt;}
.xb{left:171.514933pt;}
.x1a{left:173.253467pt;}
.x7{left:175.733333pt;}
.x16{left:179.829867pt;}
.x4{left:180.874667pt;}
.xc{left:194.721200pt;}
.x9{left:207.185331pt;}
.x2b{left:211.502400pt;}
.x24{left:213.392133pt;}
.x27{left:234.255067pt;}
.x33{left:237.125467pt;}
.x2d{left:258.292800pt;}
.x2c{left:259.502400pt;}
.x8{left:260.969328pt;}
.x17{left:264.115014pt;}
.x2f{left:274.243333pt;}
.x2e{left:275.377333pt;}
.x1c{left:289.663114pt;}
.x35{left:304.401067pt;}
.x34{left:305.535067pt;}
.xd{left:308.787333pt;}
.x1f{left:309.996550pt;}
.x1b{left:316.799867pt;}
.x31{left:320.126533pt;}
.x30{left:321.260533pt;}
.xe{left:336.604667pt;}
.x37{left:349.755067pt;}
.x36{left:350.889067pt;}
.x29{left:371.827086pt;}
.x28{left:384.075467pt;}
.x19{left:386.570000pt;}
.x1d{left:388.913333pt;}
.x20{left:390.803067pt;}
.x1e{left:401.688133pt;}
.x3{left:404.408000pt;}
.x18{left:412.875467pt;}
.x21{left:442.280915pt;}
.x22{left:461.026667pt;}
.x39{left:469.715862pt;}
.xf{left:488.012400pt;}
.x25{left:498.672319pt;}
.x32{left:515.603067pt;}
.x14{left:520.743200pt;}
.x13{left:577.738400pt;}
.x38{left:674.113867pt;}
}




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