
    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_1bc5d318d5430ed05894e4a0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e3e4a21a8afb1d1892cb776a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a1c2c5c258f0ae07a6647414.woff')format("woff");}.ff3{font-family:ff3;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_de93038f926f3982a92f22db.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_963bec8becf6b83fbdd559d8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e562132ae7fd0d8bb94f7ec1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4fcc221e59b9d6b2dbac0d42.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_c7450c739c608d1a22fe03eb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_48c9dc7327f934c9c298680d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.878418;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_10e433406dd10143c0d757df.woff')format("woff");}.ffa{font-family:ffa;line-height:0.676758;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_49ed0523bb59f18389b8c802.woff')format("woff");}.ffb{font-family:ffb;line-height:0.878418;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_046a7dad449a78ce6a0971e8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.890000;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_d207963090fc14d9f5d0f487.woff')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0652a138d553c8f5565f1a34.woff')format("woff");}.ffe{font-family:ffe;line-height:0.831000;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_e2141e88177561cdbeaebc73.woff')format("woff");}.fff{font-family:fff;line-height:2.409000;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_1ce100cb2dbc12a471eab808.woff')format("woff");}.ff10{font-family:ff10;line-height:0.653000;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_14228f508dc1a9be68c1b66f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.450000;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_89fa018dbbceef0a6e26ed17.woff')format("woff");}.ff12{font-family:ff12;line-height:0.707000;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_3f2150aba5078544297597ba.woff')format("woff");}.ff13{font-family:ff13;line-height:0.676000;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_776b2bd92e0b905ff518cf7c.woff')format("woff");}.ff14{font-family:ff14;line-height:0.683000;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_b2fb17f684d328c1e7927373.woff')format("woff");}.ff15{font-family:ff15;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_dc0affd2c5e652d9fc9b0cf8.woff')format("woff");}.ff16{font-family:ff16;line-height:0.973145;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_1cfd427f7ced9ea9d9962b53.woff')format("woff");}.ff17{font-family:ff17;line-height:1.035156;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_1c72f78a36341b08b0bb28ee.woff')format("woff");}.ff18{font-family:ff18;line-height:0.707000;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_897a939b1d69908095a9245d.woff')format("woff");}.ff19{font-family:ff19;line-height:0.973145;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_1cfd427f7ced9ea9d9962b53.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.035156;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.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,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);}
.v1f{vertical-align:-84.336000px;}
.v2{vertical-align:-18.042000px;}
.v3{vertical-align:-13.372128px;}
.v9{vertical-align:-9.000000px;}
.v22{vertical-align:-6.000000px;}
.v19{vertical-align:-1.794000px;}
.v0{vertical-align:0.000000px;}
.v21{vertical-align:5.832000px;}
.v8{vertical-align:7.476000px;}
.v1a{vertical-align:14.838000px;}
.v7{vertical-align:16.476000px;}
.v13{vertical-align:18.108000px;}
.v6{vertical-align:21.774000px;}
.vd{vertical-align:24.774000px;}
.v1{vertical-align:26.028000px;}
.v16{vertical-align:29.358000px;}
.v11{vertical-align:31.590000px;}
.v25{vertical-align:39.180000px;}
.v10{vertical-align:40.560000px;}
.v26{vertical-align:44.886000px;}
.v18{vertical-align:49.152000px;}
.v17{vertical-align:52.158000px;}
.ve{vertical-align:56.844000px;}
.v4{vertical-align:64.950336px;}
.vc{vertical-align:70.008000px;}
.v5{vertical-align:76.412160px;}
.v1c{vertical-align:80.100000px;}
.vf{vertical-align:84.342000px;}
.v24{vertical-align:90.552000px;}
.v20{vertical-align:94.938000px;}
.v1e{vertical-align:99.174000px;}
.v15{vertical-align:115.920000px;}
.v1d{vertical-align:121.080000px;}
.v12{vertical-align:125.496000px;}
.vb{vertical-align:128.520000px;}
.v23{vertical-align:135.714000px;}
.va{vertical-align:140.532000px;}
.v14{vertical-align:148.104000px;}
.v1b{vertical-align:164.436000px;}
.ls34{letter-spacing:-0.047758px;}
.ls33{letter-spacing:-0.019103px;}
.ls37{letter-spacing:-0.014327px;}
.ls32{letter-spacing:-0.009552px;}
.ls35{letter-spacing:-0.007164px;}
.ls5{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000167px;}
.ls23{letter-spacing:0.000200px;}
.ls6d{letter-spacing:0.000233px;}
.ls17{letter-spacing:0.000266px;}
.ls24{letter-spacing:0.000300px;}
.lse{letter-spacing:0.000398px;}
.ls93{letter-spacing:0.000668px;}
.ls79{letter-spacing:0.001282px;}
.ls6e{letter-spacing:0.002862px;}
.ls1e{letter-spacing:0.003181px;}
.ls7b{letter-spacing:0.006000px;}
.ls12{letter-spacing:0.007164px;}
.ls36{letter-spacing:0.014327px;}
.ls31{letter-spacing:0.019103px;}
.lsa{letter-spacing:0.064245px;}
.ls9{letter-spacing:0.073422px;}
.ls8{letter-spacing:0.073540px;}
.lsd{letter-spacing:0.082600px;}
.lsc{letter-spacing:0.100956px;}
.ls7{letter-spacing:0.110133px;}
.lsb{letter-spacing:0.128489px;}
.ls3d{letter-spacing:1.507032px;}
.ls40{letter-spacing:2.148000px;}
.ls3f{letter-spacing:2.154000px;}
.ls8a{letter-spacing:2.388668px;}
.ls84{letter-spacing:2.508668px;}
.ls9a{letter-spacing:2.568668px;}
.ls3{letter-spacing:2.986408px;}
.ls6f{letter-spacing:2.988000px;}
.ls2b{letter-spacing:2.988167px;}
.ls73{letter-spacing:2.988200px;}
.ls44{letter-spacing:2.988233px;}
.ls18{letter-spacing:2.988266px;}
.ls28{letter-spacing:2.988300px;}
.ls69{letter-spacing:2.988302px;}
.ls60{letter-spacing:2.988367px;}
.ls2{letter-spacing:2.992408px;}
.ls26{letter-spacing:2.994167px;}
.ls4c{letter-spacing:2.994233px;}
.ls63{letter-spacing:2.994300px;}
.ls62{letter-spacing:2.994367px;}
.ls71{letter-spacing:3.336000px;}
.ls88{letter-spacing:3.342668px;}
.ls81{letter-spacing:3.408668px;}
.ls1f{letter-spacing:4.068000px;}
.ls43{letter-spacing:5.136167px;}
.ls86{letter-spacing:6.810668px;}
.ls2c{letter-spacing:7.170000px;}
.ls2a{letter-spacing:7.173181px;}
.ls4{letter-spacing:9.205416px;}
.ls27{letter-spacing:9.996000px;}
.ls70{letter-spacing:9.996200px;}
.ls2f{letter-spacing:10.002000px;}
.ls0{letter-spacing:11.190067px;}
.ls20{letter-spacing:12.990230px;}
.ls22{letter-spacing:13.332000px;}
.ls42{letter-spacing:13.338000px;}
.ls96{letter-spacing:15.272383px;}
.ls41{letter-spacing:16.320167px;}
.ls29{letter-spacing:16.320230px;}
.ls45{letter-spacing:16.326230px;}
.ls2e{letter-spacing:16.662000px;}
.ls1a{letter-spacing:16.668000px;}
.ls21{letter-spacing:17.400000px;}
.ls99{letter-spacing:18.008383px;}
.ls97{letter-spacing:18.068383px;}
.ls7a{letter-spacing:18.084000px;}
.ls76{letter-spacing:18.684000px;}
.ls75{letter-spacing:18.690000px;}
.ls90{letter-spacing:18.692383px;}
.ls83{letter-spacing:19.088383px;}
.ls30{letter-spacing:19.656300px;}
.ls92{letter-spacing:19.658383px;}
.ls8e{letter-spacing:19.892383px;}
.ls85{letter-spacing:19.904383px;}
.ls7e{letter-spacing:19.910383px;}
.ls77{letter-spacing:19.980000px;}
.ls6a{letter-spacing:20.136000px;}
.ls4d{letter-spacing:20.172000px;}
.ls4e{letter-spacing:20.178000px;}
.ls61{letter-spacing:20.508000px;}
.ls74{letter-spacing:20.742000px;}
.ls47{letter-spacing:20.844000px;}
.ls49{letter-spacing:20.880000px;}
.ls8b{letter-spacing:20.960383px;}
.ls94{letter-spacing:21.374383px;}
.ls8d{letter-spacing:21.812383px;}
.ls7c{letter-spacing:22.218000px;}
.ls5f{letter-spacing:22.440000px;}
.ls19{letter-spacing:22.626000px;}
.ls8f{letter-spacing:22.682383px;}
.ls3c{letter-spacing:22.974233px;}
.ls7d{letter-spacing:23.072383px;}
.ls6c{letter-spacing:23.124167px;}
.ls6b{letter-spacing:23.124302px;}
.ls38{letter-spacing:23.166000px;}
.ls64{letter-spacing:23.298300px;}
.ls82{letter-spacing:23.492383px;}
.ls4b{letter-spacing:23.532000px;}
.ls46{letter-spacing:23.832167px;}
.ls68{letter-spacing:23.838000px;}
.ls48{letter-spacing:23.838233px;}
.ls15{letter-spacing:23.850000px;}
.ls16{letter-spacing:23.856000px;}
.ls4a{letter-spacing:23.874167px;}
.ls8c{letter-spacing:23.972383px;}
.ls7f{letter-spacing:23.984383px;}
.ls3a{letter-spacing:24.222000px;}
.ls39{letter-spacing:24.228000px;}
.ls13{letter-spacing:24.282000px;}
.ls14{letter-spacing:24.288000px;}
.ls50{letter-spacing:24.804000px;}
.ls91{letter-spacing:24.848383px;}
.ls80{letter-spacing:24.890383px;}
.ls9b{letter-spacing:25.298383px;}
.ls53{letter-spacing:25.632300px;}
.ls98{letter-spacing:25.646383px;}
.ls87{letter-spacing:25.820383px;}
.ls55{letter-spacing:26.052000px;}
.ls89{letter-spacing:26.912383px;}
.ls4f{letter-spacing:27.792233px;}
.ls3b{letter-spacing:28.182000px;}
.ls3e{letter-spacing:38.136000px;}
.ls95{letter-spacing:39.560383px;}
.ls1d{letter-spacing:42.319032px;}
.ls59{letter-spacing:56.748266px;}
.ls5e{letter-spacing:57.834000px;}
.ls51{letter-spacing:57.838200px;}
.ls65{letter-spacing:59.994000px;}
.ls52{letter-spacing:59.998200px;}
.ls1c{letter-spacing:60.000000px;}
.ls5d{letter-spacing:60.004200px;}
.ls56{letter-spacing:70.080266px;}
.ls57{letter-spacing:75.480266px;}
.ls1b{letter-spacing:83.910000px;}
.ls66{letter-spacing:84.678266px;}
.ls58{letter-spacing:88.812266px;}
.ls2d{letter-spacing:93.339181px;}
.ls5c{letter-spacing:98.010266px;}
.ls54{letter-spacing:101.346266px;}
.ls78{letter-spacing:122.001683px;}
.ls67{letter-spacing:143.016266px;}
.ls1{letter-spacing:149.435700px;}
.ls5b{letter-spacing:159.684266px;}
.lsf{letter-spacing:556.048741px;}
.ls10{letter-spacing:656.817675px;}
.ls11{letter-spacing:782.870040px;}
.ls72{letter-spacing:1031.301181px;}
.ls5a{letter-spacing:1055.061181px;}
.ls6{letter-spacing:2474.628600px;}
.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;}
}
.wsfa{word-spacing:-146.333890px;}
.wsfd{word-spacing:-30.330425px;}
.wsf9{word-spacing:-24.332206px;}
.ws80{word-spacing:-21.586435px;}
.ws11{word-spacing:-20.921400px;}
.ws5{word-spacing:-20.084736px;}
.ws30{word-spacing:-16.800000px;}
.ws112{word-spacing:-16.737168px;}
.ws87{word-spacing:-15.000000px;}
.ws8d{word-spacing:-11.759832px;}
.ws6{word-spacing:-11.715984px;}
.ws88{word-spacing:-10.499850px;}
.wsf1{word-spacing:-7.800000px;}
.wsa2{word-spacing:-6.804000px;}
.wse0{word-spacing:-5.040000px;}
.ws8f{word-spacing:-4.998000px;}
.ws7a{word-spacing:-4.447316px;}
.ws15{word-spacing:-3.360000px;}
.ws18a{word-spacing:-3.108331px;}
.ws4c{word-spacing:-3.060000px;}
.ws51{word-spacing:-3.000000px;}
.ws38{word-spacing:-2.880000px;}
.ws110{word-spacing:-2.640000px;}
.ws15d{word-spacing:-2.630126px;}
.wsf8{word-spacing:-2.520000px;}
.ws4e{word-spacing:-2.160000px;}
.ws18b{word-spacing:-2.151922px;}
.ws67{word-spacing:-2.100000px;}
.ws194{word-spacing:-2.092146px;}
.wsb1{word-spacing:-2.040000px;}
.ws18{word-spacing:-1.860000px;}
.ws114{word-spacing:-1.800000px;}
.wsa1{word-spacing:-1.680000px;}
.ws12c{word-spacing:-1.673717px;}
.ws8e{word-spacing:-1.632000px;}
.ws79{word-spacing:-1.620000px;}
.ws18e{word-spacing:-1.554166px;}
.ws18d{word-spacing:-1.494390px;}
.wsc5{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.380000px;}
.ws62{word-spacing:-1.320000px;}
.ws163{word-spacing:-1.315063px;}
.ws113{word-spacing:-1.260000px;}
.ws10c{word-spacing:-1.200000px;}
.ws61{word-spacing:-1.140000px;}
.ws19d{word-spacing:-1.135736px;}
.ws47{word-spacing:-1.020000px;}
.ws54{word-spacing:-0.960000px;}
.ws6e{word-spacing:-0.900000px;}
.ws10a{word-spacing:-0.780000px;}
.ws131{word-spacing:-0.777083px;}
.ws146{word-spacing:-0.717307px;}
.ws17{word-spacing:-0.660000px;}
.ws16e{word-spacing:-0.657532px;}
.wsb8{word-spacing:-0.600000px;}
.ws53{word-spacing:-0.360000px;}
.ws165{word-spacing:-0.358654px;}
.wsb3{word-spacing:-0.300000px;}
.ws164{word-spacing:-0.298878px;}
.ws7e{word-spacing:-0.266156px;}
.ws105{word-spacing:-0.240000px;}
.ws7d{word-spacing:-0.220267px;}
.wsf4{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.132000px;}
.wsac{word-spacing:-0.120000px;}
.ws64{word-spacing:-0.060000px;}
.wsa0{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.042982px;}
.ws98{word-spacing:-0.028655px;}
.ws96{word-spacing:-0.021491px;}
.ws91{word-spacing:-0.007164px;}
.ws1f{word-spacing:0.000000px;}
.ws99{word-spacing:0.007164px;}
.ws97{word-spacing:0.014327px;}
.ws94{word-spacing:0.021491px;}
.ws95{word-spacing:0.035818px;}
.ws93{word-spacing:0.050145px;}
.ws14e{word-spacing:0.059776px;}
.ws108{word-spacing:0.060000px;}
.ws150{word-spacing:0.119551px;}
.ws36{word-spacing:0.120000px;}
.ws4f{word-spacing:0.180000px;}
.ws7b{word-spacing:0.240000px;}
.ws116{word-spacing:0.298878px;}
.ws24{word-spacing:0.300000px;}
.ws7f{word-spacing:0.360345px;}
.ws144{word-spacing:0.418429px;}
.ws103{word-spacing:0.420000px;}
.ws6b{word-spacing:0.480000px;}
.wsca{word-spacing:0.540000px;}
.ws191{word-spacing:0.597756px;}
.wsf0{word-spacing:0.600000px;}
.ws143{word-spacing:0.657532px;}
.ws19{word-spacing:0.660000px;}
.ws3b{word-spacing:0.780000px;}
.wsb7{word-spacing:0.840000px;}
.ws66{word-spacing:0.900000px;}
.ws102{word-spacing:0.960000px;}
.ws162{word-spacing:1.016185px;}
.wsb2{word-spacing:1.020000px;}
.ws23{word-spacing:1.080000px;}
.ws84{word-spacing:1.140000px;}
.ws199{word-spacing:1.195512px;}
.ws4b{word-spacing:1.200000px;}
.ws193{word-spacing:1.255288px;}
.ws5a{word-spacing:1.260000px;}
.ws188{word-spacing:1.315063px;}
.ws2f{word-spacing:1.320000px;}
.ws59{word-spacing:1.380000px;}
.wsde{word-spacing:1.440000px;}
.ws60{word-spacing:1.500000px;}
.ws12d{word-spacing:1.554166px;}
.ws107{word-spacing:1.560000px;}
.wsfc{word-spacing:1.583237px;}
.wsec{word-spacing:1.584524px;}
.wsea{word-spacing:1.585091px;}
.wse8{word-spacing:1.589237px;}
.ws189{word-spacing:1.613941px;}
.wsdf{word-spacing:1.620000px;}
.ws37{word-spacing:1.680000px;}
.ws15f{word-spacing:1.733492px;}
.ws77{word-spacing:1.740000px;}
.ws7{word-spacing:1.769362px;}
.wsb6{word-spacing:1.800000px;}
.ws168{word-spacing:1.853044px;}
.wsf7{word-spacing:1.854000px;}
.wsf6{word-spacing:1.860000px;}
.wsf5{word-spacing:1.884000px;}
.ws176{word-spacing:1.912819px;}
.ws4d{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws172{word-spacing:2.032370px;}
.wse3{word-spacing:2.040000px;}
.ws9a{word-spacing:2.136000px;}
.ws9c{word-spacing:2.160000px;}
.wscc{word-spacing:2.220000px;}
.ws132{word-spacing:2.271473px;}
.ws74{word-spacing:2.280000px;}
.ws45{word-spacing:2.340000px;}
.wsbe{word-spacing:2.400000px;}
.ws128{word-spacing:2.450800px;}
.wsee{word-spacing:2.460000px;}
.wsb{word-spacing:2.486671px;}
.ws10{word-spacing:2.534492px;}
.ws19a{word-spacing:2.570351px;}
.wsd1{word-spacing:2.580000px;}
.ws192{word-spacing:2.630126px;}
.ws2a{word-spacing:2.640000px;}
.wsaf{word-spacing:2.700000px;}
.ws56{word-spacing:2.760000px;}
.ws137{word-spacing:2.809453px;}
.ws39{word-spacing:2.820000px;}
.ws126{word-spacing:2.869229px;}
.wsd3{word-spacing:2.880000px;}
.ws12e{word-spacing:2.929004px;}
.wsbf{word-spacing:2.940000px;}
.ws78{word-spacing:3.000000px;}
.ws3e{word-spacing:3.060000px;}
.ws111{word-spacing:3.108331px;}
.wsc{word-spacing:3.108339px;}
.ws5f{word-spacing:3.120000px;}
.ws115{word-spacing:3.168107px;}
.ws11a{word-spacing:3.170588px;}
.ws1a{word-spacing:3.180000px;}
.wse2{word-spacing:3.192000px;}
.wsa{word-spacing:3.251801px;}
.ws19c{word-spacing:3.287658px;}
.ws21{word-spacing:3.300000px;}
.wsf3{word-spacing:3.336000px;}
.ws177{word-spacing:3.347434px;}
.wsa8{word-spacing:3.360000px;}
.ws6a{word-spacing:3.420000px;}
.ws11c{word-spacing:3.466985px;}
.wsc7{word-spacing:3.480000px;}
.wsda{word-spacing:3.490904px;}
.ws147{word-spacing:3.526760px;}
.ws13{word-spacing:3.538724px;}
.ws40{word-spacing:3.540000px;}
.wsba{word-spacing:3.600000px;}
.ws133{word-spacing:3.706087px;}
.ws11e{word-spacing:3.708823px;}
.wsae{word-spacing:3.720000px;}
.ws6d{word-spacing:3.730022px;}
.ws13e{word-spacing:3.765863px;}
.wse7{word-spacing:3.780000px;}
.ws4{word-spacing:3.801754px;}
.ws42{word-spacing:3.840000px;}
.ws154{word-spacing:3.885414px;}
.ws27{word-spacing:3.900000px;}
.ws121{word-spacing:3.945190px;}
.wsc0{word-spacing:3.960000px;}
.wsa4{word-spacing:4.020000px;}
.wsa3{word-spacing:4.044000px;}
.wsa5{word-spacing:4.080000px;}
.wsa6{word-spacing:4.086000px;}
.ws20{word-spacing:4.100594px;}
.wsc6{word-spacing:4.110000px;}
.ws153{word-spacing:4.124516px;}
.wsb9{word-spacing:4.140000px;}
.ws155{word-spacing:4.184292px;}
.ws8b{word-spacing:4.200000px;}
.ws50{word-spacing:4.260000px;}
.ws127{word-spacing:4.303843px;}
.ws0{word-spacing:4.351651px;}
.ws187{word-spacing:4.363619px;}
.ws34{word-spacing:4.380000px;}
.ws1{word-spacing:4.393494px;}
.ws181{word-spacing:4.423394px;}
.ws1b{word-spacing:4.500000px;}
.ws33{word-spacing:4.560000px;}
.ws140{word-spacing:4.602721px;}
.wsc9{word-spacing:4.620000px;}
.ws120{word-spacing:4.662497px;}
.wsb5{word-spacing:4.680000px;}
.wsc3{word-spacing:4.740000px;}
.ws173{word-spacing:4.841824px;}
.ws8c{word-spacing:4.860000px;}
.ws5d{word-spacing:4.920000px;}
.wsb0{word-spacing:4.926000px;}
.ws169{word-spacing:4.961375px;}
.wsed{word-spacing:4.980000px;}
.ws14d{word-spacing:5.021150px;}
.ws71{word-spacing:5.040000px;}
.ws11d{word-spacing:5.080926px;}
.ws76{word-spacing:5.100000px;}
.ws28{word-spacing:5.160000px;}
.ws8{word-spacing:5.164625px;}
.wscb{word-spacing:5.202000px;}
.ws1d{word-spacing:5.220000px;}
.ws68{word-spacing:5.340000px;}
.ws49{word-spacing:5.400000px;}
.ws171{word-spacing:5.439580px;}
.ws58{word-spacing:5.460000px;}
.ws167{word-spacing:5.499355px;}
.ws6f{word-spacing:5.520000px;}
.ws122{word-spacing:5.559131px;}
.ws101{word-spacing:5.580000px;}
.ws3{word-spacing:5.595034px;}
.ws22{word-spacing:5.700000px;}
.wseb{word-spacing:5.708570px;}
.ws100{word-spacing:5.738458px;}
.ws89{word-spacing:5.760000px;}
.ws156{word-spacing:5.798233px;}
.ws2b{word-spacing:5.820000px;}
.wsb4{word-spacing:5.880000px;}
.ws16a{word-spacing:5.917784px;}
.wsc2{word-spacing:5.940000px;}
.ws85{word-spacing:6.000000px;}
.ws11f{word-spacing:6.037336px;}
.ws109{word-spacing:6.060000px;}
.wscd{word-spacing:6.120000px;}
.ws1e{word-spacing:6.150892px;}
.ws31{word-spacing:6.180000px;}
.ws141{word-spacing:6.216662px;}
.ws35{word-spacing:6.240000px;}
.ws119{word-spacing:6.276438px;}
.ws9d{word-spacing:6.300000px;}
.ws117{word-spacing:6.336214px;}
.ws55{word-spacing:6.360000px;}
.wsd0{word-spacing:6.420000px;}
.ws174{word-spacing:6.455765px;}
.ws48{word-spacing:6.480000px;}
.ws136{word-spacing:6.515540px;}
.ws43{word-spacing:6.540000px;}
.ws3f{word-spacing:6.600000px;}
.ws138{word-spacing:6.635092px;}
.ws7c{word-spacing:6.660000px;}
.ws130{word-spacing:6.694867px;}
.wsa7{word-spacing:6.720000px;}
.ws52{word-spacing:6.780000px;}
.wse1{word-spacing:6.840000px;}
.ws182{word-spacing:6.874194px;}
.wsc8{word-spacing:6.900000px;}
.ws10b{word-spacing:7.020000px;}
.ws2d{word-spacing:7.140000px;}
.ws160{word-spacing:7.173072px;}
.ws29{word-spacing:7.200000px;}
.ws124{word-spacing:7.232848px;}
.wsf{word-spacing:7.316552px;}
.wsad{word-spacing:7.320000px;}
.ws178{word-spacing:7.352399px;}
.ws65{word-spacing:7.380000px;}
.wsd{word-spacing:7.412193px;}
.ws86{word-spacing:7.440000px;}
.ws2c{word-spacing:7.500000px;}
.ws57{word-spacing:7.560000px;}
.ws139{word-spacing:7.591501px;}
.ws5c{word-spacing:7.620000px;}
.ws10d{word-spacing:7.800000px;}
.ws1c{word-spacing:7.860000px;}
.ws6c{word-spacing:7.920000px;}
.ws142{word-spacing:7.950155px;}
.wsbd{word-spacing:7.980000px;}
.ws17a{word-spacing:8.009930px;}
.wsa9{word-spacing:8.040000px;}
.ws118{word-spacing:8.069706px;}
.ws3a{word-spacing:8.100000px;}
.ws129{word-spacing:8.129482px;}
.ws14c{word-spacing:8.189257px;}
.wsd2{word-spacing:8.220000px;}
.ws170{word-spacing:8.308808px;}
.ws75{word-spacing:8.340000px;}
.wse5{word-spacing:8.400000px;}
.ws46{word-spacing:8.460000px;}
.ws12f{word-spacing:8.488135px;}
.ws104{word-spacing:8.580000px;}
.ws32{word-spacing:8.760000px;}
.ws198{word-spacing:8.846789px;}
.ws3d{word-spacing:8.880000px;}
.ws123{word-spacing:8.966340px;}
.ws5b{word-spacing:9.000000px;}
.ws13c{word-spacing:9.026116px;}
.wse{word-spacing:9.038093px;}
.wsab{word-spacing:9.060000px;}
.ws13a{word-spacing:9.085891px;}
.wsef{word-spacing:9.120000px;}
.ws8a{word-spacing:9.156484px;}
.ws63{word-spacing:9.180000px;}
.ws25{word-spacing:9.240000px;}
.wsce{word-spacing:9.300000px;}
.ws180{word-spacing:9.352568px;}
.wsc4{word-spacing:9.360000px;}
.ws12{word-spacing:9.372838px;}
.ws70{word-spacing:9.420000px;}
.ws9{word-spacing:9.468479px;}
.ws26{word-spacing:9.480000px;}
.wsbc{word-spacing:9.540000px;}
.wsc1{word-spacing:9.600000px;}
.ws5e{word-spacing:9.660000px;}
.ws13f{word-spacing:9.689748px;}
.ws166{word-spacing:9.743054px;}
.ws18c{word-spacing:9.743423px;}
.ws195{word-spacing:9.747910px;}
.wsdd{word-spacing:9.840000px;}
.ws90{word-spacing:9.900000px;}
.ws179{word-spacing:9.922750px;}
.ws106{word-spacing:9.960000px;}
.ws12a{word-spacing:9.982525px;}
.ws9e{word-spacing:10.026000px;}
.ws44{word-spacing:10.080000px;}
.ws158{word-spacing:10.102076px;}
.ws69{word-spacing:10.140000px;}
.ws14a{word-spacing:10.161852px;}
.ws4a{word-spacing:10.260000px;}
.ws152{word-spacing:10.281403px;}
.ws19e{word-spacing:10.400954px;}
.ws2e{word-spacing:10.440000px;}
.ws159{word-spacing:10.640057px;}
.wse4{word-spacing:10.740000px;}
.ws135{word-spacing:10.759608px;}
.ws17c{word-spacing:10.786607px;}
.ws197{word-spacing:10.819384px;}
.wsaa{word-spacing:10.920000px;}
.ws13b{word-spacing:10.938935px;}
.ws3c{word-spacing:10.980000px;}
.ws9b{word-spacing:11.424983px;}
.ws190{word-spacing:11.656242px;}
.ws72{word-spacing:11.880000px;}
.ws161{word-spacing:11.895344px;}
.ws9f{word-spacing:11.928000px;}
.ws73{word-spacing:11.940000px;}
.ws149{word-spacing:12.194222px;}
.wsdc{word-spacing:12.480000px;}
.wscf{word-spacing:12.600000px;}
.ws10f{word-spacing:12.720000px;}
.ws17d{word-spacing:12.791978px;}
.ws10e{word-spacing:12.960000px;}
.ws16c{word-spacing:13.150632px;}
.ws2{word-spacing:14.041382px;}
.ws15e{word-spacing:14.669052px;}
.ws16d{word-spacing:15.422105px;}
.ws15a{word-spacing:17.215373px;}
.ws184{word-spacing:17.334924px;}
.wse6{word-spacing:17.688550px;}
.ws145{word-spacing:19.475802px;}
.ws16f{word-spacing:19.694292px;}
.ws151{word-spacing:20.622582px;}
.ws15b{word-spacing:21.280114px;}
.ws14f{word-spacing:21.686952px;}
.ws186{word-spacing:22.774504px;}
.ws185{word-spacing:22.834279px;}
.ws15c{word-spacing:24.149342px;}
.ws196{word-spacing:26.859640px;}
.ws125{word-spacing:29.649312px;}
.ws175{word-spacing:29.651802px;}
.ws157{word-spacing:29.651892px;}
.ws14b{word-spacing:29.651982px;}
.ws18f{word-spacing:29.652372px;}
.ws16b{word-spacing:29.653032px;}
.ws19f{word-spacing:29.653602px;}
.ws19b{word-spacing:29.653902px;}
.ws11b{word-spacing:29.654472px;}
.ws12b{word-spacing:29.657712px;}
.ws17b{word-spacing:29.657802px;}
.ws17f{word-spacing:29.658762px;}
.ws13d{word-spacing:29.658852px;}
.ws148{word-spacing:30.580308px;}
.ws17e{word-spacing:32.458151px;}
.ws183{word-spacing:35.502852px;}
.wsfb{word-spacing:57.742477px;}
.wsd8{word-spacing:65.086636px;}
.wsfe{word-spacing:72.004429px;}
.wsff{word-spacing:72.576907px;}
.ws134{word-spacing:90.872112px;}
.wsd5{word-spacing:99.660930px;}
.wsd7{word-spacing:103.869143px;}
.wsd9{word-spacing:110.229283px;}
.wsd6{word-spacing:112.285568px;}
.wsd4{word-spacing:116.541602px;}
.ws14{word-spacing:189.107664px;}
.ws81{word-spacing:238.071636px;}
.ws82{word-spacing:318.027410px;}
.ws83{word-spacing:408.289274px;}
.wse9{word-spacing:812.110148px;}
.wsdb{word-spacing:1065.654000px;}
.wsbb{word-spacing:2441.991216px;}
._40{margin-left:-121.595361px;}
._1a{margin-left:-46.668000px;}
._19{margin-left:-37.097700px;}
._1d{margin-left:-35.834819px;}
._1c{margin-left:-23.351666px;}
._4{margin-left:-11.028672px;}
._7{margin-left:-8.607744px;}
._14{margin-left:-6.878689px;}
._a{margin-left:-5.455324px;}
._8{margin-left:-4.208213px;}
._6{margin-left:-2.905114px;}
._0{margin-left:-1.255284px;}
._2{width:1.338970px;}
._5{width:3.012710px;}
._f{width:4.620000px;}
._45{width:6.516542px;}
._4c{width:7.789883px;}
._20{width:8.942452px;}
._21{width:10.807456px;}
._56{width:13.604942px;}
._54{width:15.411119px;}
._9{width:16.916517px;}
._12{width:18.829008px;}
._57{width:19.844312px;}
._e{width:20.958756px;}
._15{width:22.728983px;}
._16{width:24.380398px;}
._44{width:25.635560px;}
._11{width:26.720398px;}
._1b{width:28.211014px;}
._3b{width:29.436000px;}
._42{width:31.200000px;}
._1e{width:32.234712px;}
._50{width:33.908510px;}
._3e{width:35.040000px;}
._43{width:36.746980px;}
._1{width:38.118791px;}
._48{width:39.690998px;}
._46{width:41.080067px;}
._4a{width:42.157543px;}
._3f{width:43.920000px;}
._55{width:46.282055px;}
._49{width:47.326110px;}
._17{width:48.455924px;}
._47{width:50.010230px;}
._4f{width:52.423228px;}
._51{width:56.428166px;}
._18{width:60.461030px;}
._4d{width:68.263735px;}
._52{width:69.641785px;}
._2e{width:74.124730px;}
._4b{width:78.485363px;}
._4e{width:81.279886px;}
._53{width:85.034099px;}
._3{width:86.718388px;}
._41{width:95.662161px;}
._2a{width:105.877608px;}
._28{width:110.946592px;}
._26{width:120.080326px;}
._24{width:122.184433px;}
._35{width:123.571230px;}
._22{width:131.389885px;}
._2d{width:135.475828px;}
._2f{width:137.579927px;}
._2b{width:138.966724px;}
._38{width:160.919119px;}
._d{width:186.396023px;}
._2c{width:195.541233px;}
._13{width:209.192400px;}
._36{width:216.149165px;}
._29{width:245.271911px;}
._27{width:268.823926px;}
._39{width:351.349950px;}
._b{width:360.743313px;}
._23{width:371.863355px;}
._c{width:377.789876px;}
._25{width:387.753758px;}
._3a{width:390.063476px;}
._34{width:439.614829px;}
._32{width:479.760209px;}
._37{width:482.222984px;}
._31{width:484.912886px;}
._33{width:489.216747px;}
._30{width:517.179842px;}
._3d{width:724.918287px;}
._3c{width:1055.406000px;}
._1f{width:1862.573165px;}
._10{width:1883.495165px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fsf{font-size:24.332206px;}
.fs10{font-size:28.468670px;}
.fs5{font-size:29.887800px;}
.fse{font-size:30.000000px;}
.fs11{font-size:30.330425px;}
.fs12{font-size:35.486583px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:41.999400px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:63.756396px;}
.fsc{font-size:71.636400px;}
.fs3{font-size:71.731200px;}
.fs9{font-size:73.539874px;}
.fs8{font-size:91.777858px;}
.fsa{font-size:95.515200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y197{bottom:4.000259px;}
.y1a4{bottom:4.930441px;}
.ya7{bottom:11.103642px;}
.y1a3{bottom:14.192214px;}
.y196{bottom:14.282569px;}
.y195{bottom:20.900932px;}
.y1a2{bottom:21.151301px;}
.y187{bottom:27.368619px;}
.y19a{bottom:31.047928px;}
.ya6{bottom:32.594562px;}
.y2b{bottom:33.250500px;}
.y18d{bottom:44.917166px;}
.y86{bottom:46.181057px;}
.ya5{bottom:54.085482px;}
.y188{bottom:58.940419px;}
.y19b{bottom:62.285463px;}
.y18e{bottom:62.462013px;}
.ya4{bottom:75.576402px;}
.y18f{bottom:80.008711px;}
.y1a0{bottom:83.108007px;}
.y7d{bottom:88.168500px;}
.y217{bottom:89.904000px;}
.y189{bottom:90.579042px;}
.y1ba{bottom:93.411000px;}
.y19c{bottom:93.522986px;}
.ya3{bottom:97.067322px;}
.y190{bottom:97.624461px;}
.y15e{bottom:98.199000px;}
.y185{bottom:100.264500px;}
.y4b{bottom:101.842500px;}
.y1f5{bottom:103.167000px;}
.y60{bottom:106.204500px;}
.yd7{bottom:107.481000px;}
.y83{bottom:109.426986px;}
.y9c{bottom:109.603692px;}
.y94{bottom:112.110000px;}
.yd2{bottom:112.839000px;}
.y191{bottom:115.172626px;}
.y117{bottom:115.987500px;}
.yd1{bottom:117.321000px;}
.ya2{bottom:118.558242px;}
.y216{bottom:119.797500px;}
.y100{bottom:119.955000px;}
.y13c{bottom:120.220500px;}
.y7c{bottom:120.675000px;}
.yd0{bottom:121.804500px;}
.y18a{bottom:122.146762px;}
.y176{bottom:123.813000px;}
.y19d{bottom:124.760508px;}
.y85{bottom:125.753257px;}
.y1b9{bottom:125.917500px;}
.ycf{bottom:126.288000px;}
.y1d7{bottom:128.485500px;}
.y9b{bottom:128.706732px;}
.y15d{bottom:130.705500px;}
.yce{bottom:130.771500px;}
.y192{bottom:132.717846px;}
.y184{bottom:132.771000px;}
.y1f4{bottom:133.062000px;}
.y4a{bottom:134.349000px;}
.y1a1{bottom:135.171792px;}
.ycd{bottom:135.255000px;}
.y114{bottom:136.012500px;}
.yd6{bottom:138.612000px;}
.y5f{bottom:138.711000px;}
.y113{bottom:139.722000px;}
.ycc{bottom:139.737000px;}
.ya1{bottom:140.049162px;}
.y116{bottom:140.781000px;}
.y84{bottom:141.932315px;}
.y93{bottom:144.616500px;}
.yd5{bottom:148.902000px;}
.y103{bottom:149.371500px;}
.yc3{bottom:149.437500px;}
.y215{bottom:149.692500px;}
.y193{bottom:150.263047px;}
.y2a{bottom:151.404000px;}
.yff{bottom:152.461500px;}
.y13b{bottom:152.727000px;}
.y7b{bottom:153.183000px;}
.y18b{bottom:153.785757px;}
.y19e{bottom:155.998037px;}
.y115{bottom:156.037500px;}
.y175{bottom:156.319500px;}
.y1b8{bottom:158.424000px;}
.y1d6{bottom:160.993500px;}
.ya0{bottom:161.540082px;}
.y1f3{bottom:162.955500px;}
.y15c{bottom:163.213500px;}
.ycb{bottom:166.636500px;}
.y49{bottom:166.855500px;}
.y194{bottom:167.808258px;}
.yca{bottom:171.120000px;}
.y5e{bottom:171.217500px;}
.yd8{bottom:175.383000px;}
.yc9{bottom:175.603500px;}
.y10e{bottom:177.195000px;}
.y214{bottom:179.586000px;}
.yc8{bottom:180.087000px;}
.y102{bottom:181.878000px;}
.y9f{bottom:183.031002px;}
.y183{bottom:183.210000px;}
.y29{bottom:183.910500px;}
.yc7{bottom:184.570500px;}
.yfe{bottom:184.968000px;}
.y13a{bottom:185.233500px;}
.y18c{bottom:185.427724px;}
.y7a{bottom:185.689500px;}
.yd4{bottom:185.892000px;}
.y8a{bottom:186.498617px;}
.y19f{bottom:187.235560px;}
.y174{bottom:188.826000px;}
.yc6{bottom:189.052500px;}
.y1b7{bottom:190.930500px;}
.yd3{bottom:192.349500px;}
.y1f2{bottom:192.849000px;}
.yc5{bottom:193.536000px;}
.y92{bottom:195.057000px;}
.y15b{bottom:195.720000px;}
.y48{bottom:199.362000px;}
.y5d{bottom:203.724000px;}
.y9e{bottom:204.521922px;}
.yc4{bottom:206.986500px;}
.y1d5{bottom:208.819500px;}
.y213{bottom:209.481000px;}
.y10d{bottom:209.701500px;}
.y112{bottom:213.936000px;}
.y101{bottom:214.384500px;}
.yc2{bottom:214.738500px;}
.ybe{bottom:215.361000px;}
.y28{bottom:216.417000px;}
.yfd{bottom:217.476000px;}
.y139{bottom:217.740000px;}
.y79{bottom:218.196000px;}
.y173{bottom:221.332500px;}
.ybd{bottom:221.488500px;}
.y1f1{bottom:222.744000px;}
.y1b6{bottom:223.437000px;}
.ybc{bottom:226.009500px;}
.y9d{bottom:226.012842px;}
.y15a{bottom:228.226500px;}
.y47{bottom:231.868500px;}
.ybb{bottom:232.533000px;}
.y5c{bottom:236.230500px;}
.ybf{bottom:238.990500px;}
.y212{bottom:239.374500px;}
.y1d4{bottom:241.326000px;}
.y10c{bottom:242.208000px;}
.y111{bottom:246.442500px;}
.yc1{bottom:246.744000px;}
.y27{bottom:248.923500px;}
.y87{bottom:249.597332px;}
.yfc{bottom:249.982500px;}
.y138{bottom:250.246500px;}
.y78{bottom:250.702500px;}
.yc0{bottom:251.757000px;}
.y182{bottom:252.457500px;}
.y1f0{bottom:252.637500px;}
.y1b5{bottom:255.943500px;}
.y91{bottom:264.304500px;}
.y46{bottom:264.375000px;}
.y89{bottom:265.923604px;}
.y5b{bottom:268.737000px;}
.y211{bottom:269.268000px;}
.y172{bottom:271.773000px;}
.y1d3{bottom:273.832500px;}
.y99{bottom:274.546503px;}
.y10b{bottom:274.714500px;}
.y98{bottom:277.411959px;}
.y159{bottom:278.665500px;}
.y110{bottom:278.949000px;}
.y26{bottom:281.430000px;}
.y88{bottom:282.249875px;}
.yfb{bottom:282.489000px;}
.y1ef{bottom:282.531000px;}
.y137{bottom:282.753000px;}
.y77{bottom:283.209000px;}
.y181{bottom:284.964000px;}
.yba{bottom:293.044500px;}
.y97{bottom:296.514999px;}
.y90{bottom:296.811000px;}
.y45{bottom:296.881500px;}
.y210{bottom:299.163000px;}
.y5a{bottom:301.243500px;}
.y1d2{bottom:306.339000px;}
.y1b4{bottom:306.382500px;}
.y10a{bottom:307.221000px;}
.y10f{bottom:311.904000px;}
.y1ee{bottom:312.426000px;}
.y25{bottom:313.936500px;}
.yfa{bottom:314.995500px;}
.y136{bottom:315.259500px;}
.y76{bottom:315.715500px;}
.y180{bottom:317.083500px;}
.y82{bottom:323.433244px;}
.yb9{bottom:325.551000px;}
.y9a{bottom:328.273803px;}
.y20f{bottom:329.056500px;}
.y8f{bottom:329.317500px;}
.y44{bottom:329.388000px;}
.y17f{bottom:329.926500px;}
.y59{bottom:333.750000px;}
.y1d1{bottom:338.847000px;}
.y109{bottom:339.727500px;}
.y171{bottom:341.020500px;}
.y1ed{bottom:342.319500px;}
.y24{bottom:346.443000px;}
.yf9{bottom:347.502000px;}
.y158{bottom:347.913000px;}
.y135{bottom:349.933500px;}
.yb8{bottom:358.057500px;}
.y20e{bottom:358.950000px;}
.y96{bottom:359.256546px;}
.y134{bottom:360.222000px;}
.y8e{bottom:361.824000px;}
.y43{bottom:361.894500px;}
.y75{bottom:366.154500px;}
.y58{bottom:366.256500px;}
.y1d0{bottom:371.353500px;}
.y1ec{bottom:372.213000px;}
.y108{bottom:372.234000px;}
.y170{bottom:373.527000px;}
.yb7{bottom:378.385500px;}
.y23{bottom:378.949500px;}
.yf8{bottom:380.008500px;}
.y157{bottom:380.419500px;}
.y1b3{bottom:381.609000px;}
.yb5{bottom:383.206500px;}
.y7f{bottom:386.531959px;}
.yb4{bottom:387.690000px;}
.y20d{bottom:388.845000px;}
.y8d{bottom:394.330500px;}
.y42{bottom:394.401000px;}
.y17e{bottom:394.939500px;}
.yb1{bottom:397.389000px;}
.y57{bottom:398.763000px;}
.y1eb{bottom:402.108000px;}
.y81{bottom:402.858231px;}
.y1cf{bottom:403.860000px;}
.y107{bottom:404.740500px;}
.y16f{bottom:406.033500px;}
.yb6{bottom:410.892000px;}
.y22{bottom:411.457500px;}
.yf7{bottom:412.515000px;}
.y1b2{bottom:414.115500px;}
.yb3{bottom:414.589500px;}
.y20c{bottom:418.738500px;}
.yb2{bottom:419.073000px;}
.y80{bottom:419.184502px;}
.y133{bottom:425.235000px;}
.y41{bottom:426.907500px;}
.y61{bottom:426.909000px;}
.y8b{bottom:427.421130px;}
.y17d{bottom:427.446000px;}
.y156{bottom:430.858500px;}
.y56{bottom:431.269500px;}
.y1ea{bottom:432.001500px;}
.y74{bottom:432.999000px;}
.y16e{bottom:434.832000px;}
.y1ce{bottom:436.366500px;}
.y106{bottom:437.248500px;}
.y16d{bottom:438.540000px;}
.yb0{bottom:439.623000px;}
.yf6{bottom:445.021500px;}
.y1b1{bottom:446.622000px;}
.y20b{bottom:448.632000px;}
.y132{bottom:457.741500px;}
.y40{bottom:459.415500px;}
.y17c{bottom:459.952500px;}
.y21{bottom:461.896500px;}
.y55{bottom:463.777500px;}
.y73{bottom:465.505500px;}
.y8c{bottom:467.380500px;}
.yaf{bottom:468.010500px;}
.y1cd{bottom:468.873000px;}
.y105{bottom:469.755000px;}
.y16c{bottom:471.046500px;}
.yae{bottom:472.129500px;}
.yf5{bottom:477.528000px;}
.y20a{bottom:478.527000px;}
.y1b0{bottom:479.128500px;}
.y131{bottom:490.249500px;}
.y7e{bottom:491.364487px;}
.y1e9{bottom:491.790000px;}
.y3f{bottom:491.922000px;}
.y17b{bottom:492.459000px;}
.y54{bottom:496.284000px;}
.y72{bottom:498.012000px;}
.y1cc{bottom:501.379500px;}
.y16b{bottom:503.553000px;}
.yad{bottom:504.637500px;}
.y155{bottom:506.083500px;}
.y209{bottom:508.420500px;}
.yf4{bottom:510.034500px;}
.y1af{bottom:511.635000px;}
.y104{bottom:520.194000px;}
.y1e8{bottom:521.683500px;}
.y130{bottom:522.756000px;}
.y3e{bottom:524.428500px;}
.y17a{bottom:527.133000px;}
.y53{bottom:528.790500px;}
.y71{bottom:530.518500px;}
.y1cb{bottom:533.886000px;}
.y16a{bottom:536.059500px;}
.yac{bottom:537.144000px;}
.y179{bottom:537.421500px;}
.y208{bottom:538.314000px;}
.y154{bottom:538.590000px;}
.yf3{bottom:542.541000px;}
.y1ae{bottom:544.141500px;}
.y1e7{bottom:551.578500px;}
.y12f{bottom:555.262500px;}
.y3d{bottom:556.935000px;}
.y52{bottom:561.297000px;}
.y70{bottom:563.025000px;}
.y20{bottom:563.994000px;}
.y1ca{bottom:566.392500px;}
.y207{bottom:568.209000px;}
.y169{bottom:568.566000px;}
.yab{bottom:569.650500px;}
.y153{bottom:571.096500px;}
.yf2{bottom:575.047500px;}
.y1ad{bottom:576.648000px;}
.y1e6{bottom:581.472000px;}
.y12e{bottom:587.769000px;}
.y3c{bottom:589.441500px;}
.y51{bottom:593.803500px;}
.y6f{bottom:595.531500px;}
.y1f{bottom:596.379000px;}
.y206{bottom:598.102500px;}
.y1c9{bottom:598.899000px;}
.y168{bottom:601.072500px;}
.yaa{bottom:602.157000px;}
.y152{bottom:603.603000px;}
.yf1{bottom:607.554000px;}
.y1ac{bottom:609.154500px;}
.y1e5{bottom:611.365500px;}
.y1e{bottom:613.876500px;}
.y12d{bottom:620.275500px;}
.y3b{bottom:621.948000px;}
.y178{bottom:623.812500px;}
.y50{bottom:626.310000px;}
.y205{bottom:627.997500px;}
.y6e{bottom:628.038000px;}
.y1c8{bottom:631.405500px;}
.y167{bottom:633.579000px;}
.ya9{bottom:634.663500px;}
.yf0{bottom:640.060500px;}
.y1e4{bottom:641.260500px;}
.y1ab{bottom:641.661000px;}
.y177{bottom:643.312500px;}
.y151{bottom:649.398000px;}
.y12{bottom:652.579500px;}
.y1d{bottom:653.730000px;}
.y3a{bottom:654.454500px;}
.y204{bottom:657.891000px;}
.y4f{bottom:658.816500px;}
.y6d{bottom:660.544500px;}
.y1c7{bottom:663.912000px;}
.y14e{bottom:665.392500px;}
.y166{bottom:666.085500px;}
.yef{bottom:668.476500px;}
.y11{bottom:669.018000px;}
.y12c{bottom:670.714500px;}
.y1e3{bottom:671.155500px;}
.y1c{bottom:671.664000px;}
.yee{bottom:672.568500px;}
.y1aa{bottom:674.167500px;}
.y14d{bottom:674.956500px;}
.y150{bottom:681.904500px;}
.y14c{bottom:683.922000px;}
.y147{bottom:684.655500px;}
.y10{bottom:685.456500px;}
.y39{bottom:686.961000px;}
.y203{bottom:687.784500px;}
.ya8{bottom:689.532000px;}
.y1b{bottom:689.596500px;}
.y4e{bottom:691.323000px;}
.y14b{bottom:692.889000px;}
.y6c{bottom:693.051000px;}
.y1c6{bottom:696.418500px;}
.y165{bottom:698.592000px;}
.y14a{bottom:701.856000px;}
.yf{bottom:701.895000px;}
.y12b{bottom:703.669500px;}
.yed{bottom:705.075000px;}
.y1a9{bottom:706.674000px;}
.y1a{bottom:707.529000px;}
.y149{bottom:710.821500px;}
.y95{bottom:713.514659px;}
.y14f{bottom:714.411000px;}
.y202{bottom:717.679500px;}
.ye{bottom:718.333500px;}
.y38{bottom:719.467500px;}
.y1e2{bottom:721.473000px;}
.y4d{bottom:723.829500px;}
.y19{bottom:725.461500px;}
.y1c5{bottom:728.925000px;}
.y164{bottom:731.098500px;}
.y148{bottom:737.124000px;}
.yec{bottom:737.581500px;}
.y1a8{bottom:739.180500px;}
.y18{bottom:743.394000px;}
.y6b{bottom:743.491500px;}
.y12a{bottom:744.475500px;}
.yd{bottom:746.727000px;}
.y201{bottom:747.573000px;}
.y129{bottom:748.183500px;}
.y37{bottom:751.974000px;}
.y1e1{bottom:753.981000px;}
.y17{bottom:761.326500px;}
.y1c4{bottom:761.431500px;}
.yc{bottom:761.671500px;}
.y163{bottom:763.605000px;}
.y146{bottom:766.383000px;}
.yea{bottom:770.364000px;}
.y1a7{bottom:771.687000px;}
.y4c{bottom:774.268500px;}
.yb{bottom:776.614500px;}
.ye7{bottom:777.427500px;}
.y200{bottom:777.466500px;}
.y16{bottom:779.260500px;}
.ye6{bottom:781.911000px;}
.y36{bottom:784.480500px;}
.ye3{bottom:791.610000px;}
.y1c3{bottom:793.938000px;}
.ya{bottom:796.068000px;}
.y162{bottom:796.113000px;}
.y15{bottom:797.193000px;}
.y145{bottom:798.889500px;}
.y1e0{bottom:801.808500px;}
.ye9{bottom:807.354000px;}
.y1ff{bottom:807.361500px;}
.ye5{bottom:808.809000px;}
.y9{bottom:810.985500px;}
.ye4{bottom:813.292500px;}
.y14{bottom:815.125500px;}
.y6a{bottom:816.312000px;}
.y35{bottom:816.987000px;}
.yeb{bottom:817.555500px;}
.ye8{bottom:820.393500px;}
.y8{bottom:825.930000px;}
.y1c2{bottom:826.444500px;}
.y1a6{bottom:827.196000px;}
.y161{bottom:828.619500px;}
.y128{bottom:830.602500px;}
.y144{bottom:831.396000px;}
.y1df{bottom:834.315000px;}
.ye1{bottom:836.200500px;}
.ydd{bottom:836.823000px;}
.y1fe{bottom:837.255000px;}
.y13{bottom:837.541500px;}
.ydc{bottom:838.054500px;}
.y7{bottom:845.383500px;}
.y127{bottom:845.547000px;}
.y1a5{bottom:846.696000px;}
.ydb{bottom:847.471500px;}
.y69{bottom:848.818500px;}
.y34{bottom:849.493500px;}
.ye2{bottom:849.904500px;}
.yda{bottom:853.995000px;}
.y1c1{bottom:858.951000px;}
.y126{bottom:860.491500px;}
.y143{bottom:863.902500px;}
.y1de{bottom:866.821500px;}
.yde{bottom:867.034500px;}
.y1fd{bottom:867.148500px;}
.ye0{bottom:868.206000px;}
.ydf{bottom:873.219000px;}
.y198{bottom:873.817500px;}
.y125{bottom:875.434500px;}
.y68{bottom:881.325000px;}
.y33{bottom:882.000000px;}
.y160{bottom:883.641000px;}
.y186{bottom:890.105173px;}
.y199{bottom:890.106335px;}
.y124{bottom:890.379000px;}
.y1c0{bottom:891.459000px;}
.y6{bottom:893.907000px;}
.y142{bottom:896.409000px;}
.y1fc{bottom:897.043500px;}
.y1dd{bottom:899.329500px;}
.y123{bottom:905.323500px;}
.y15f{bottom:910.762500px;}
.y67{bottom:913.833000px;}
.y32{bottom:914.506500px;}
.yd9{bottom:914.508000px;}
.y122{bottom:920.266500px;}
.y5{bottom:920.806500px;}
.y1bf{bottom:923.965500px;}
.y1fb{bottom:926.937000px;}
.y141{bottom:928.915500px;}
.y121{bottom:935.211000px;}
.y66{bottom:946.339500px;}
.y31{bottom:947.014500px;}
.y1dc{bottom:947.157000px;}
.y120{bottom:950.155500px;}
.y1be{bottom:956.472000px;}
.y1fa{bottom:956.830500px;}
.y11f{bottom:965.098500px;}
.y4{bottom:974.604000px;}
.y65{bottom:978.846000px;}
.y140{bottom:979.356000px;}
.y30{bottom:979.521000px;}
.y1db{bottom:979.663500px;}
.y11e{bottom:980.043000px;}
.y1f9{bottom:986.725500px;}
.y1bd{bottom:988.978500px;}
.y11d{bottom:994.986000px;}
.y11c{bottom:1009.930500px;}
.y64{bottom:1011.352500px;}
.y13f{bottom:1011.862500px;}
.y2f{bottom:1012.027500px;}
.y1da{bottom:1012.170000px;}
.y1f8{bottom:1016.619000px;}
.y1bc{bottom:1021.485000px;}
.y11b{bottom:1024.875000px;}
.y11a{bottom:1039.818000px;}
.y63{bottom:1043.859000px;}
.y13e{bottom:1044.369000px;}
.y2e{bottom:1044.534000px;}
.y1d9{bottom:1044.676500px;}
.y1f7{bottom:1046.512500px;}
.y119{bottom:1055.359500px;}
.y3{bottom:1061.788500px;}
.y1bb{bottom:1071.924000px;}
.y118{bottom:1074.787500px;}
.y62{bottom:1076.365500px;}
.y1f6{bottom:1076.407500px;}
.y13d{bottom:1076.875500px;}
.y2d{bottom:1077.040500px;}
.y1d8{bottom:1077.184500px;}
.y2{bottom:1103.838000px;}
.y2c{bottom:1108.638000px;}
.y1{bottom:1124.860500px;}
.h18{height:2.988780px;}
.h3e{height:19.579822px;}
.h6{height:21.399665px;}
.h37{height:22.415850px;}
.h41{height:24.406514px;}
.h1a{height:28.685590px;}
.h3f{height:29.149805px;}
.h2{height:31.382100px;}
.h1e{height:31.499550px;}
.h8{height:34.143908px;}
.hf{height:35.865450px;}
.h42{height:36.335627px;}
.h3{height:40.348800px;}
.h19{height:40.980000px;}
.h43{height:41.484266px;}
.h1d{height:41.640000px;}
.h2c{height:43.206000px;}
.h7{height:44.831700px;}
.ha{height:45.000000px;}
.h3c{height:47.874780px;}
.h14{height:50.159471px;}
.h2a{height:50.453590px;}
.h15{height:50.459590px;}
.he{height:51.492275px;}
.h24{height:53.459590px;}
.h9{height:53.798400px;}
.h36{height:53.813590px;}
.h2d{height:54.827590px;}
.h32{height:54.833590px;}
.h25{height:58.043590px;}
.h33{height:59.832000px;}
.h1c{height:59.832780px;}
.hd{height:61.170301px;}
.h2b{height:61.368000px;}
.h16{height:61.476000px;}
.h5{height:61.893450px;}
.hc{height:64.262426px;}
.h38{height:65.291590px;}
.h11{height:66.879295px;}
.h22{height:67.470000px;}
.h2f{height:69.665590px;}
.h26{height:74.405590px;}
.h4{height:80.697600px;}
.h3b{height:80.820000px;}
.h34{height:81.570000px;}
.h39{height:82.044000px;}
.h20{height:82.200000px;}
.h35{height:86.154000px;}
.h1f{height:87.330780px;}
.h29{height:90.792000px;}
.h28{height:93.798000px;}
.h30{height:102.162780px;}
.h27{height:103.692780px;}
.h21{height:128.484780px;}
.h1b{height:131.508780px;}
.h12{height:131.829631px;}
.h3a{height:138.702780px;}
.h31{height:139.938000px;}
.h13{height:143.291455px;}
.h17{height:143.520780px;}
.h23{height:157.560000px;}
.h2e{height:182.262780px;}
.h3d{height:192.953670px;}
.h40{height:197.512800px;}
.h10{height:374.101200px;}
.hb{height:448.542900px;}
.h0{height:1173.540000px;}
.h1{height:1173.750000px;}
.w5{width:331.744800px;}
.w4{width:414.670620px;}
.w3{width:678.555900px;}
.w2{width:678.564900px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:5.771738px;}
.x5a{left:15.845293px;}
.x59{left:18.937314px;}
.xf{left:29.923332px;}
.xb{left:31.541077px;}
.x5b{left:42.883389px;}
.x19{left:43.967338px;}
.x10{left:58.604545px;}
.xc{left:60.222520px;}
.xe{left:63.164271px;}
.xa{left:64.782016px;}
.x2{left:66.643500px;}
.x1{left:68.742000px;}
.x6{left:70.236000px;}
.x3{left:74.139000px;}
.x5c{left:78.909434px;}
.x47{left:82.209000px;}
.x63{left:83.742000px;}
.x64{left:85.236000px;}
.xd{left:89.344915px;}
.x9{left:90.962890px;}
.x4c{left:99.379500px;}
.x48{left:101.374500px;}
.x5{left:104.607000px;}
.x7{left:106.102500px;}
.x8{left:107.935591px;}
.x61{left:109.436485px;}
.x49{left:116.374500px;}
.x60{left:123.820019px;}
.x15{left:137.691628px;}
.x57{left:148.483500px;}
.x4f{left:165.645000px;}
.x1a{left:175.479829px;}
.x14{left:193.921197px;}
.x1c{left:228.771000px;}
.x5d{left:239.010000px;}
.x1d{left:245.043000px;}
.x27{left:276.310500px;}
.x1e{left:278.811000px;}
.x1f{left:286.513500px;}
.x28{left:298.896000px;}
.x38{left:300.949500px;}
.x2f{left:303.448500px;}
.x4{left:307.098000px;}
.x30{left:309.736500px;}
.x29{left:312.178500px;}
.x20{left:316.129500px;}
.x2c{left:317.463000px;}
.x16{left:321.021115px;}
.x39{left:323.533500px;}
.x2d{left:330.106500px;}
.x21{left:337.269000px;}
.x2a{left:340.291500px;}
.x3b{left:342.100500px;}
.x55{left:343.983000px;}
.x4d{left:348.427500px;}
.x3c{left:354.265500px;}
.x22{left:357.849000px;}
.x3f{left:361.629000px;}
.x31{left:364.615500px;}
.x3a{left:367.638000px;}
.x58{left:368.917349px;}
.x40{left:371.844000px;}
.x4a{left:375.153000px;}
.x45{left:381.529500px;}
.x32{left:385.195500px;}
.x53{left:397.573500px;}
.x23{left:402.432000px;}
.x24{left:409.069500px;}
.x25{left:412.182000px;}
.x4b{left:424.377000px;}
.x2b{left:428.364000px;}
.x33{left:432.486000px;}
.x26{left:439.792500px;}
.x34{left:442.236000px;}
.x46{left:450.769500px;}
.x54{left:457.398000px;}
.x43{left:460.959000px;}
.x41{left:462.346500px;}
.x35{left:467.346000px;}
.x36{left:481.678500px;}
.x5e{left:492.437885px;}
.x56{left:502.612500px;}
.x42{left:505.576500px;}
.x44{left:511.647000px;}
.x50{left:529.401000px;}
.x13{left:535.890074px;}
.x17{left:545.720623px;}
.x1b{left:550.444500px;}
.x37{left:554.806500px;}
.x4e{left:557.689500px;}
.x12{left:567.807237px;}
.x3e{left:572.643000px;}
.x11{left:595.753070px;}
.x62{left:613.476000px;}
.x51{left:624.645000px;}
.x18{left:635.206426px;}
.x52{left:710.298000px;}
.x2e{left:805.261500px;}
.x3d{left:806.755500px;}
@media print{
.v1f{vertical-align:-74.965333pt;}
.v2{vertical-align:-16.037333pt;}
.v3{vertical-align:-11.886336pt;}
.v9{vertical-align:-8.000000pt;}
.v22{vertical-align:-5.333333pt;}
.v19{vertical-align:-1.594667pt;}
.v0{vertical-align:0.000000pt;}
.v21{vertical-align:5.184000pt;}
.v8{vertical-align:6.645333pt;}
.v1a{vertical-align:13.189333pt;}
.v7{vertical-align:14.645333pt;}
.v13{vertical-align:16.096000pt;}
.v6{vertical-align:19.354667pt;}
.vd{vertical-align:22.021333pt;}
.v1{vertical-align:23.136000pt;}
.v16{vertical-align:26.096000pt;}
.v11{vertical-align:28.080000pt;}
.v25{vertical-align:34.826667pt;}
.v10{vertical-align:36.053333pt;}
.v26{vertical-align:39.898667pt;}
.v18{vertical-align:43.690667pt;}
.v17{vertical-align:46.362667pt;}
.ve{vertical-align:50.528000pt;}
.v4{vertical-align:57.733632pt;}
.vc{vertical-align:62.229333pt;}
.v5{vertical-align:67.921920pt;}
.v1c{vertical-align:71.200000pt;}
.vf{vertical-align:74.970667pt;}
.v24{vertical-align:80.490667pt;}
.v20{vertical-align:84.389333pt;}
.v1e{vertical-align:88.154667pt;}
.v15{vertical-align:103.040000pt;}
.v1d{vertical-align:107.626667pt;}
.v12{vertical-align:111.552000pt;}
.vb{vertical-align:114.240000pt;}
.v23{vertical-align:120.634667pt;}
.va{vertical-align:124.917333pt;}
.v14{vertical-align:131.648000pt;}
.v1b{vertical-align:146.165333pt;}
.ls34{letter-spacing:-0.042451pt;}
.ls33{letter-spacing:-0.016980pt;}
.ls37{letter-spacing:-0.012735pt;}
.ls32{letter-spacing:-0.008490pt;}
.ls35{letter-spacing:-0.006368pt;}
.ls5{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000148pt;}
.ls23{letter-spacing:0.000178pt;}
.ls6d{letter-spacing:0.000207pt;}
.ls17{letter-spacing:0.000237pt;}
.ls24{letter-spacing:0.000267pt;}
.lse{letter-spacing:0.000354pt;}
.ls93{letter-spacing:0.000594pt;}
.ls79{letter-spacing:0.001139pt;}
.ls6e{letter-spacing:0.002544pt;}
.ls1e{letter-spacing:0.002827pt;}
.ls7b{letter-spacing:0.005333pt;}
.ls12{letter-spacing:0.006368pt;}
.ls36{letter-spacing:0.012735pt;}
.ls31{letter-spacing:0.016980pt;}
.lsa{letter-spacing:0.057106pt;}
.ls9{letter-spacing:0.065264pt;}
.ls8{letter-spacing:0.065369pt;}
.lsd{letter-spacing:0.073422pt;}
.lsc{letter-spacing:0.089738pt;}
.ls7{letter-spacing:0.097896pt;}
.lsb{letter-spacing:0.114212pt;}
.ls3d{letter-spacing:1.339584pt;}
.ls40{letter-spacing:1.909333pt;}
.ls3f{letter-spacing:1.914667pt;}
.ls8a{letter-spacing:2.123261pt;}
.ls84{letter-spacing:2.229927pt;}
.ls9a{letter-spacing:2.283261pt;}
.ls3{letter-spacing:2.654585pt;}
.ls6f{letter-spacing:2.656000pt;}
.ls2b{letter-spacing:2.656148pt;}
.ls73{letter-spacing:2.656178pt;}
.ls44{letter-spacing:2.656207pt;}
.ls18{letter-spacing:2.656237pt;}
.ls28{letter-spacing:2.656267pt;}
.ls69{letter-spacing:2.656269pt;}
.ls60{letter-spacing:2.656326pt;}
.ls2{letter-spacing:2.659918pt;}
.ls26{letter-spacing:2.661482pt;}
.ls4c{letter-spacing:2.661541pt;}
.ls63{letter-spacing:2.661600pt;}
.ls62{letter-spacing:2.661659pt;}
.ls71{letter-spacing:2.965333pt;}
.ls88{letter-spacing:2.971261pt;}
.ls81{letter-spacing:3.029927pt;}
.ls1f{letter-spacing:3.616000pt;}
.ls43{letter-spacing:4.565482pt;}
.ls86{letter-spacing:6.053927pt;}
.ls2c{letter-spacing:6.373333pt;}
.ls2a{letter-spacing:6.376161pt;}
.ls4{letter-spacing:8.182592pt;}
.ls27{letter-spacing:8.885333pt;}
.ls70{letter-spacing:8.885511pt;}
.ls2f{letter-spacing:8.890667pt;}
.ls0{letter-spacing:9.946726pt;}
.ls20{letter-spacing:11.546871pt;}
.ls22{letter-spacing:11.850667pt;}
.ls42{letter-spacing:11.856000pt;}
.ls96{letter-spacing:13.575452pt;}
.ls41{letter-spacing:14.506815pt;}
.ls29{letter-spacing:14.506871pt;}
.ls45{letter-spacing:14.512205pt;}
.ls2e{letter-spacing:14.810667pt;}
.ls1a{letter-spacing:14.816000pt;}
.ls21{letter-spacing:15.466667pt;}
.ls99{letter-spacing:16.007452pt;}
.ls97{letter-spacing:16.060785pt;}
.ls7a{letter-spacing:16.074667pt;}
.ls76{letter-spacing:16.608000pt;}
.ls75{letter-spacing:16.613333pt;}
.ls90{letter-spacing:16.615452pt;}
.ls83{letter-spacing:16.967452pt;}
.ls30{letter-spacing:17.472267pt;}
.ls92{letter-spacing:17.474118pt;}
.ls8e{letter-spacing:17.682118pt;}
.ls85{letter-spacing:17.692785pt;}
.ls7e{letter-spacing:17.698118pt;}
.ls77{letter-spacing:17.760000pt;}
.ls6a{letter-spacing:17.898667pt;}
.ls4d{letter-spacing:17.930667pt;}
.ls4e{letter-spacing:17.936000pt;}
.ls61{letter-spacing:18.229333pt;}
.ls74{letter-spacing:18.437333pt;}
.ls47{letter-spacing:18.528000pt;}
.ls49{letter-spacing:18.560000pt;}
.ls8b{letter-spacing:18.631452pt;}
.ls94{letter-spacing:18.999452pt;}
.ls8d{letter-spacing:19.388785pt;}
.ls7c{letter-spacing:19.749333pt;}
.ls5f{letter-spacing:19.946667pt;}
.ls19{letter-spacing:20.112000pt;}
.ls8f{letter-spacing:20.162118pt;}
.ls3c{letter-spacing:20.421541pt;}
.ls7d{letter-spacing:20.508785pt;}
.ls6c{letter-spacing:20.554815pt;}
.ls6b{letter-spacing:20.554935pt;}
.ls38{letter-spacing:20.592000pt;}
.ls64{letter-spacing:20.709600pt;}
.ls82{letter-spacing:20.882118pt;}
.ls4b{letter-spacing:20.917333pt;}
.ls46{letter-spacing:21.184148pt;}
.ls68{letter-spacing:21.189333pt;}
.ls48{letter-spacing:21.189541pt;}
.ls15{letter-spacing:21.200000pt;}
.ls16{letter-spacing:21.205333pt;}
.ls4a{letter-spacing:21.221482pt;}
.ls8c{letter-spacing:21.308785pt;}
.ls7f{letter-spacing:21.319452pt;}
.ls3a{letter-spacing:21.530667pt;}
.ls39{letter-spacing:21.536000pt;}
.ls13{letter-spacing:21.584000pt;}
.ls14{letter-spacing:21.589333pt;}
.ls50{letter-spacing:22.048000pt;}
.ls91{letter-spacing:22.087452pt;}
.ls80{letter-spacing:22.124785pt;}
.ls9b{letter-spacing:22.487452pt;}
.ls53{letter-spacing:22.784267pt;}
.ls98{letter-spacing:22.796785pt;}
.ls87{letter-spacing:22.951452pt;}
.ls55{letter-spacing:23.157333pt;}
.ls89{letter-spacing:23.922118pt;}
.ls4f{letter-spacing:24.704207pt;}
.ls3b{letter-spacing:25.050667pt;}
.ls3e{letter-spacing:33.898667pt;}
.ls95{letter-spacing:35.164785pt;}
.ls1d{letter-spacing:37.616917pt;}
.ls59{letter-spacing:50.442903pt;}
.ls5e{letter-spacing:51.408000pt;}
.ls51{letter-spacing:51.411733pt;}
.ls65{letter-spacing:53.328000pt;}
.ls52{letter-spacing:53.331733pt;}
.ls1c{letter-spacing:53.333333pt;}
.ls5d{letter-spacing:53.337067pt;}
.ls56{letter-spacing:62.293570pt;}
.ls57{letter-spacing:67.093570pt;}
.ls1b{letter-spacing:74.586667pt;}
.ls66{letter-spacing:75.269570pt;}
.ls58{letter-spacing:78.944237pt;}
.ls2d{letter-spacing:82.968161pt;}
.ls5c{letter-spacing:87.120237pt;}
.ls54{letter-spacing:90.085570pt;}
.ls78{letter-spacing:108.445941pt;}
.ls67{letter-spacing:127.125570pt;}
.ls1{letter-spacing:132.831733pt;}
.ls5b{letter-spacing:141.941570pt;}
.lsf{letter-spacing:494.265548pt;}
.ls10{letter-spacing:583.837934pt;}
.ls11{letter-spacing:695.884480pt;}
.ls72{letter-spacing:916.712161pt;}
.ls5a{letter-spacing:937.832161pt;}
.ls6{letter-spacing:2199.669867pt;}
.wsfa{word-spacing:-130.074569pt;}
.wsfd{word-spacing:-26.960378pt;}
.wsf9{word-spacing:-21.628628pt;}
.ws80{word-spacing:-19.187942pt;}
.ws11{word-spacing:-18.596800pt;}
.ws5{word-spacing:-17.853099pt;}
.ws30{word-spacing:-14.933333pt;}
.ws112{word-spacing:-14.877483pt;}
.ws87{word-spacing:-13.333333pt;}
.ws8d{word-spacing:-10.453184pt;}
.ws6{word-spacing:-10.414208pt;}
.ws88{word-spacing:-9.333200pt;}
.wsf1{word-spacing:-6.933333pt;}
.wsa2{word-spacing:-6.048000pt;}
.wse0{word-spacing:-4.480000pt;}
.ws8f{word-spacing:-4.442667pt;}
.ws7a{word-spacing:-3.953170pt;}
.ws15{word-spacing:-2.986667pt;}
.ws18a{word-spacing:-2.762961pt;}
.ws4c{word-spacing:-2.720000pt;}
.ws51{word-spacing:-2.666667pt;}
.ws38{word-spacing:-2.560000pt;}
.ws110{word-spacing:-2.346667pt;}
.ws15d{word-spacing:-2.337890pt;}
.wsf8{word-spacing:-2.240000pt;}
.ws4e{word-spacing:-1.920000pt;}
.ws18b{word-spacing:-1.912819pt;}
.ws67{word-spacing:-1.866667pt;}
.ws194{word-spacing:-1.859685pt;}
.wsb1{word-spacing:-1.813333pt;}
.ws18{word-spacing:-1.653333pt;}
.ws114{word-spacing:-1.600000pt;}
.wsa1{word-spacing:-1.493333pt;}
.ws12c{word-spacing:-1.487748pt;}
.ws8e{word-spacing:-1.450667pt;}
.ws79{word-spacing:-1.440000pt;}
.ws18e{word-spacing:-1.381481pt;}
.ws18d{word-spacing:-1.328347pt;}
.wsc5{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.226667pt;}
.ws62{word-spacing:-1.173333pt;}
.ws163{word-spacing:-1.168945pt;}
.ws113{word-spacing:-1.120000pt;}
.ws10c{word-spacing:-1.066667pt;}
.ws61{word-spacing:-1.013333pt;}
.ws19d{word-spacing:-1.009543pt;}
.ws47{word-spacing:-0.906667pt;}
.ws54{word-spacing:-0.853333pt;}
.ws6e{word-spacing:-0.800000pt;}
.ws10a{word-spacing:-0.693333pt;}
.ws131{word-spacing:-0.690740pt;}
.ws146{word-spacing:-0.637606pt;}
.ws17{word-spacing:-0.586667pt;}
.ws16e{word-spacing:-0.584473pt;}
.wsb8{word-spacing:-0.533333pt;}
.ws53{word-spacing:-0.320000pt;}
.ws165{word-spacing:-0.318803pt;}
.wsb3{word-spacing:-0.266667pt;}
.ws164{word-spacing:-0.265669pt;}
.ws7e{word-spacing:-0.236583pt;}
.ws105{word-spacing:-0.213333pt;}
.ws7d{word-spacing:-0.195793pt;}
.wsf4{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.117333pt;}
.wsac{word-spacing:-0.106667pt;}
.ws64{word-spacing:-0.053333pt;}
.wsa0{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.038206pt;}
.ws98{word-spacing:-0.025471pt;}
.ws96{word-spacing:-0.019103pt;}
.ws91{word-spacing:-0.006368pt;}
.ws1f{word-spacing:0.000000pt;}
.ws99{word-spacing:0.006368pt;}
.ws97{word-spacing:0.012735pt;}
.ws94{word-spacing:0.019103pt;}
.ws95{word-spacing:0.031838pt;}
.ws93{word-spacing:0.044574pt;}
.ws14e{word-spacing:0.053134pt;}
.ws108{word-spacing:0.053333pt;}
.ws150{word-spacing:0.106268pt;}
.ws36{word-spacing:0.106667pt;}
.ws4f{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.213333pt;}
.ws116{word-spacing:0.265669pt;}
.ws24{word-spacing:0.266667pt;}
.ws7f{word-spacing:0.320307pt;}
.ws144{word-spacing:0.371937pt;}
.ws103{word-spacing:0.373333pt;}
.ws6b{word-spacing:0.426667pt;}
.wsca{word-spacing:0.480000pt;}
.ws191{word-spacing:0.531339pt;}
.wsf0{word-spacing:0.533333pt;}
.ws143{word-spacing:0.584473pt;}
.ws19{word-spacing:0.586667pt;}
.ws3b{word-spacing:0.693333pt;}
.wsb7{word-spacing:0.746667pt;}
.ws66{word-spacing:0.800000pt;}
.ws102{word-spacing:0.853333pt;}
.ws162{word-spacing:0.903276pt;}
.wsb2{word-spacing:0.906667pt;}
.ws23{word-spacing:0.960000pt;}
.ws84{word-spacing:1.013333pt;}
.ws199{word-spacing:1.062677pt;}
.ws4b{word-spacing:1.066667pt;}
.ws193{word-spacing:1.115811pt;}
.ws5a{word-spacing:1.120000pt;}
.ws188{word-spacing:1.168945pt;}
.ws2f{word-spacing:1.173333pt;}
.ws59{word-spacing:1.226667pt;}
.wsde{word-spacing:1.280000pt;}
.ws60{word-spacing:1.333333pt;}
.ws12d{word-spacing:1.381481pt;}
.ws107{word-spacing:1.386667pt;}
.wsfc{word-spacing:1.407322pt;}
.wsec{word-spacing:1.408466pt;}
.wsea{word-spacing:1.408970pt;}
.wse8{word-spacing:1.412655pt;}
.ws189{word-spacing:1.434614pt;}
.wsdf{word-spacing:1.440000pt;}
.ws37{word-spacing:1.493333pt;}
.ws15f{word-spacing:1.540882pt;}
.ws77{word-spacing:1.546667pt;}
.ws7{word-spacing:1.572766pt;}
.wsb6{word-spacing:1.600000pt;}
.ws168{word-spacing:1.647150pt;}
.wsf7{word-spacing:1.648000pt;}
.wsf6{word-spacing:1.653333pt;}
.wsf5{word-spacing:1.674667pt;}
.ws176{word-spacing:1.700284pt;}
.ws4d{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws172{word-spacing:1.806551pt;}
.wse3{word-spacing:1.813333pt;}
.ws9a{word-spacing:1.898667pt;}
.ws9c{word-spacing:1.920000pt;}
.wscc{word-spacing:1.973333pt;}
.ws132{word-spacing:2.019087pt;}
.ws74{word-spacing:2.026667pt;}
.ws45{word-spacing:2.080000pt;}
.wsbe{word-spacing:2.133333pt;}
.ws128{word-spacing:2.178489pt;}
.wsee{word-spacing:2.186667pt;}
.wsb{word-spacing:2.210374pt;}
.ws10{word-spacing:2.252882pt;}
.ws19a{word-spacing:2.284756pt;}
.wsd1{word-spacing:2.293333pt;}
.ws192{word-spacing:2.337890pt;}
.ws2a{word-spacing:2.346667pt;}
.wsaf{word-spacing:2.400000pt;}
.ws56{word-spacing:2.453333pt;}
.ws137{word-spacing:2.497292pt;}
.ws39{word-spacing:2.506667pt;}
.ws126{word-spacing:2.550426pt;}
.wsd3{word-spacing:2.560000pt;}
.ws12e{word-spacing:2.603559pt;}
.wsbf{word-spacing:2.613333pt;}
.ws78{word-spacing:2.666667pt;}
.ws3e{word-spacing:2.720000pt;}
.ws111{word-spacing:2.762961pt;}
.wsc{word-spacing:2.762968pt;}
.ws5f{word-spacing:2.773333pt;}
.ws115{word-spacing:2.816095pt;}
.ws11a{word-spacing:2.818301pt;}
.ws1a{word-spacing:2.826667pt;}
.wse2{word-spacing:2.837333pt;}
.wsa{word-spacing:2.890490pt;}
.ws19c{word-spacing:2.922363pt;}
.ws21{word-spacing:2.933333pt;}
.wsf3{word-spacing:2.965333pt;}
.ws177{word-spacing:2.975497pt;}
.wsa8{word-spacing:2.986667pt;}
.ws6a{word-spacing:3.040000pt;}
.ws11c{word-spacing:3.081764pt;}
.wsc7{word-spacing:3.093333pt;}
.wsda{word-spacing:3.103026pt;}
.ws147{word-spacing:3.134898pt;}
.ws13{word-spacing:3.145533pt;}
.ws40{word-spacing:3.146667pt;}
.wsba{word-spacing:3.200000pt;}
.ws133{word-spacing:3.294300pt;}
.ws11e{word-spacing:3.296732pt;}
.wsae{word-spacing:3.306667pt;}
.ws6d{word-spacing:3.315575pt;}
.ws13e{word-spacing:3.347434pt;}
.wse7{word-spacing:3.360000pt;}
.ws4{word-spacing:3.379337pt;}
.ws42{word-spacing:3.413333pt;}
.ws154{word-spacing:3.453701pt;}
.ws27{word-spacing:3.466667pt;}
.ws121{word-spacing:3.506835pt;}
.wsc0{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.573333pt;}
.wsa3{word-spacing:3.594667pt;}
.wsa5{word-spacing:3.626667pt;}
.wsa6{word-spacing:3.632000pt;}
.ws20{word-spacing:3.644973pt;}
.wsc6{word-spacing:3.653333pt;}
.ws153{word-spacing:3.666237pt;}
.wsb9{word-spacing:3.680000pt;}
.ws155{word-spacing:3.719371pt;}
.ws8b{word-spacing:3.733333pt;}
.ws50{word-spacing:3.786667pt;}
.ws127{word-spacing:3.825638pt;}
.ws0{word-spacing:3.868134pt;}
.ws187{word-spacing:3.878772pt;}
.ws34{word-spacing:3.893333pt;}
.ws1{word-spacing:3.905328pt;}
.ws181{word-spacing:3.931906pt;}
.ws1b{word-spacing:4.000000pt;}
.ws33{word-spacing:4.053333pt;}
.ws140{word-spacing:4.091308pt;}
.wsc9{word-spacing:4.106667pt;}
.ws120{word-spacing:4.144442pt;}
.wsb5{word-spacing:4.160000pt;}
.wsc3{word-spacing:4.213333pt;}
.ws173{word-spacing:4.303843pt;}
.ws8c{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.373333pt;}
.wsb0{word-spacing:4.378667pt;}
.ws169{word-spacing:4.410111pt;}
.wsed{word-spacing:4.426667pt;}
.ws14d{word-spacing:4.463245pt;}
.ws71{word-spacing:4.480000pt;}
.ws11d{word-spacing:4.516379pt;}
.ws76{word-spacing:4.533333pt;}
.ws28{word-spacing:4.586667pt;}
.ws8{word-spacing:4.590778pt;}
.wscb{word-spacing:4.624000pt;}
.ws1d{word-spacing:4.640000pt;}
.ws68{word-spacing:4.746667pt;}
.ws49{word-spacing:4.800000pt;}
.ws171{word-spacing:4.835182pt;}
.ws58{word-spacing:4.853333pt;}
.ws167{word-spacing:4.888316pt;}
.ws6f{word-spacing:4.906667pt;}
.ws122{word-spacing:4.941450pt;}
.ws101{word-spacing:4.960000pt;}
.ws3{word-spacing:4.973363pt;}
.ws22{word-spacing:5.066667pt;}
.wseb{word-spacing:5.074284pt;}
.ws100{word-spacing:5.100851pt;}
.ws89{word-spacing:5.120000pt;}
.ws156{word-spacing:5.153985pt;}
.ws2b{word-spacing:5.173333pt;}
.wsb4{word-spacing:5.226667pt;}
.ws16a{word-spacing:5.260253pt;}
.wsc2{word-spacing:5.280000pt;}
.ws85{word-spacing:5.333333pt;}
.ws11f{word-spacing:5.366521pt;}
.ws109{word-spacing:5.386667pt;}
.wscd{word-spacing:5.440000pt;}
.ws1e{word-spacing:5.467459pt;}
.ws31{word-spacing:5.493333pt;}
.ws141{word-spacing:5.525922pt;}
.ws35{word-spacing:5.546667pt;}
.ws119{word-spacing:5.579056pt;}
.ws9d{word-spacing:5.600000pt;}
.ws117{word-spacing:5.632190pt;}
.ws55{word-spacing:5.653333pt;}
.wsd0{word-spacing:5.706667pt;}
.ws174{word-spacing:5.738458pt;}
.ws48{word-spacing:5.760000pt;}
.ws136{word-spacing:5.791591pt;}
.ws43{word-spacing:5.813333pt;}
.ws3f{word-spacing:5.866667pt;}
.ws138{word-spacing:5.897859pt;}
.ws7c{word-spacing:5.920000pt;}
.ws130{word-spacing:5.950993pt;}
.wsa7{word-spacing:5.973333pt;}
.ws52{word-spacing:6.026667pt;}
.wse1{word-spacing:6.080000pt;}
.ws182{word-spacing:6.110395pt;}
.wsc8{word-spacing:6.133333pt;}
.ws10b{word-spacing:6.240000pt;}
.ws2d{word-spacing:6.346667pt;}
.ws160{word-spacing:6.376064pt;}
.ws29{word-spacing:6.400000pt;}
.ws124{word-spacing:6.429198pt;}
.wsf{word-spacing:6.503602pt;}
.wsad{word-spacing:6.506667pt;}
.ws178{word-spacing:6.535466pt;}
.ws65{word-spacing:6.560000pt;}
.wsd{word-spacing:6.588616pt;}
.ws86{word-spacing:6.613333pt;}
.ws2c{word-spacing:6.666667pt;}
.ws57{word-spacing:6.720000pt;}
.ws139{word-spacing:6.748001pt;}
.ws5c{word-spacing:6.773333pt;}
.ws10d{word-spacing:6.933333pt;}
.ws1c{word-spacing:6.986667pt;}
.ws6c{word-spacing:7.040000pt;}
.ws142{word-spacing:7.066804pt;}
.wsbd{word-spacing:7.093333pt;}
.ws17a{word-spacing:7.119938pt;}
.wsa9{word-spacing:7.146667pt;}
.ws118{word-spacing:7.173072pt;}
.ws3a{word-spacing:7.200000pt;}
.ws129{word-spacing:7.226206pt;}
.ws14c{word-spacing:7.279340pt;}
.wsd2{word-spacing:7.306667pt;}
.ws170{word-spacing:7.385607pt;}
.ws75{word-spacing:7.413333pt;}
.wse5{word-spacing:7.466667pt;}
.ws46{word-spacing:7.520000pt;}
.ws12f{word-spacing:7.545009pt;}
.ws104{word-spacing:7.626667pt;}
.ws32{word-spacing:7.786667pt;}
.ws198{word-spacing:7.863812pt;}
.ws3d{word-spacing:7.893333pt;}
.ws123{word-spacing:7.970080pt;}
.ws5b{word-spacing:8.000000pt;}
.ws13c{word-spacing:8.023214pt;}
.wse{word-spacing:8.033861pt;}
.wsab{word-spacing:8.053333pt;}
.ws13a{word-spacing:8.076348pt;}
.wsef{word-spacing:8.106667pt;}
.ws8a{word-spacing:8.139097pt;}
.ws63{word-spacing:8.160000pt;}
.ws25{word-spacing:8.213333pt;}
.wsce{word-spacing:8.266667pt;}
.ws180{word-spacing:8.313394pt;}
.wsc4{word-spacing:8.320000pt;}
.ws12{word-spacing:8.331411pt;}
.ws70{word-spacing:8.373333pt;}
.ws9{word-spacing:8.416426pt;}
.ws26{word-spacing:8.426667pt;}
.wsbc{word-spacing:8.480000pt;}
.wsc1{word-spacing:8.533333pt;}
.ws5e{word-spacing:8.586667pt;}
.ws13f{word-spacing:8.613109pt;}
.ws166{word-spacing:8.660493pt;}
.ws18c{word-spacing:8.660820pt;}
.ws195{word-spacing:8.664809pt;}
.wsdd{word-spacing:8.746667pt;}
.ws90{word-spacing:8.800000pt;}
.ws179{word-spacing:8.820222pt;}
.ws106{word-spacing:8.853333pt;}
.ws12a{word-spacing:8.873356pt;}
.ws9e{word-spacing:8.912000pt;}
.ws44{word-spacing:8.960000pt;}
.ws158{word-spacing:8.979623pt;}
.ws69{word-spacing:9.013333pt;}
.ws14a{word-spacing:9.032757pt;}
.ws4a{word-spacing:9.120000pt;}
.ws152{word-spacing:9.139025pt;}
.ws19e{word-spacing:9.245293pt;}
.ws2e{word-spacing:9.280000pt;}
.ws159{word-spacing:9.457828pt;}
.wse4{word-spacing:9.546667pt;}
.ws135{word-spacing:9.564096pt;}
.ws17c{word-spacing:9.588095pt;}
.ws197{word-spacing:9.617230pt;}
.wsaa{word-spacing:9.706667pt;}
.ws13b{word-spacing:9.723498pt;}
.ws3c{word-spacing:9.760000pt;}
.ws9b{word-spacing:10.155540pt;}
.ws190{word-spacing:10.361104pt;}
.ws72{word-spacing:10.560000pt;}
.ws161{word-spacing:10.573639pt;}
.ws9f{word-spacing:10.602667pt;}
.ws73{word-spacing:10.613333pt;}
.ws149{word-spacing:10.839309pt;}
.wsdc{word-spacing:11.093333pt;}
.wscf{word-spacing:11.200000pt;}
.ws10f{word-spacing:11.306667pt;}
.ws17d{word-spacing:11.370647pt;}
.ws10e{word-spacing:11.520000pt;}
.ws16c{word-spacing:11.689451pt;}
.ws2{word-spacing:12.481229pt;}
.ws15e{word-spacing:13.039157pt;}
.ws16d{word-spacing:13.708538pt;}
.ws15a{word-spacing:15.302554pt;}
.ws184{word-spacing:15.408821pt;}
.wse6{word-spacing:15.723156pt;}
.ws145{word-spacing:17.311824pt;}
.ws16f{word-spacing:17.506037pt;}
.ws151{word-spacing:18.331184pt;}
.ws15b{word-spacing:18.915657pt;}
.ws14f{word-spacing:19.277291pt;}
.ws186{word-spacing:20.244003pt;}
.ws185{word-spacing:20.297137pt;}
.ws15c{word-spacing:21.466082pt;}
.ws196{word-spacing:23.875235pt;}
.ws125{word-spacing:26.354944pt;}
.ws175{word-spacing:26.357157pt;}
.ws157{word-spacing:26.357237pt;}
.ws14b{word-spacing:26.357317pt;}
.ws18f{word-spacing:26.357664pt;}
.ws16b{word-spacing:26.358251pt;}
.ws19f{word-spacing:26.358757pt;}
.ws19b{word-spacing:26.359024pt;}
.ws11b{word-spacing:26.359531pt;}
.ws12b{word-spacing:26.362411pt;}
.ws17b{word-spacing:26.362491pt;}
.ws17f{word-spacing:26.363344pt;}
.ws13d{word-spacing:26.363424pt;}
.ws148{word-spacing:27.182496pt;}
.ws17e{word-spacing:28.851690pt;}
.ws183{word-spacing:31.558091pt;}
.wsfb{word-spacing:51.326647pt;}
.wsd8{word-spacing:57.854788pt;}
.wsfe{word-spacing:64.003937pt;}
.wsff{word-spacing:64.512807pt;}
.ws134{word-spacing:80.775211pt;}
.wsd5{word-spacing:88.587493pt;}
.wsd7{word-spacing:92.328127pt;}
.wsd9{word-spacing:97.981585pt;}
.wsd6{word-spacing:99.809394pt;}
.wsd4{word-spacing:103.592535pt;}
.ws14{word-spacing:168.095701pt;}
.ws81{word-spacing:211.619232pt;}
.ws82{word-spacing:282.691031pt;}
.ws83{word-spacing:362.923799pt;}
.wse9{word-spacing:721.875687pt;}
.wsdb{word-spacing:947.248000pt;}
.wsbb{word-spacing:2170.658859pt;}
._40{margin-left:-108.084765pt;}
._1a{margin-left:-41.482667pt;}
._19{margin-left:-32.975733pt;}
._1d{margin-left:-31.853173pt;}
._1c{margin-left:-20.757037pt;}
._4{margin-left:-9.803264pt;}
._7{margin-left:-7.651328pt;}
._14{margin-left:-6.114390pt;}
._a{margin-left:-4.849177pt;}
._8{margin-left:-3.740634pt;}
._6{margin-left:-2.582323pt;}
._0{margin-left:-1.115808pt;}
._2{width:1.190195pt;}
._5{width:2.677965pt;}
._f{width:4.106667pt;}
._45{width:5.792482pt;}
._4c{width:6.924340pt;}
._20{width:7.948846pt;}
._21{width:9.606627pt;}
._56{width:12.093282pt;}
._54{width:13.698773pt;}
._9{width:15.036904pt;}
._12{width:16.736896pt;}
._57{width:17.639388pt;}
._e{width:18.630005pt;}
._15{width:20.203541pt;}
._16{width:21.671465pt;}
._44{width:22.787164pt;}
._11{width:23.751465pt;}
._1b{width:25.076457pt;}
._3b{width:26.165333pt;}
._42{width:27.733333pt;}
._1e{width:28.653077pt;}
._50{width:30.140898pt;}
._3e{width:31.146667pt;}
._43{width:32.663982pt;}
._1{width:33.883370pt;}
._48{width:35.280887pt;}
._46{width:36.515615pt;}
._4a{width:37.473371pt;}
._3f{width:39.040000pt;}
._55{width:41.139605pt;}
._49{width:42.067653pt;}
._17{width:43.071932pt;}
._47{width:44.453538pt;}
._4f{width:46.598425pt;}
._51{width:50.158370pt;}
._18{width:53.743138pt;}
._4d{width:60.678876pt;}
._52{width:61.903809pt;}
._2e{width:65.888649pt;}
._4b{width:69.764767pt;}
._4e{width:72.248787pt;}
._53{width:75.585866pt;}
._3{width:77.083011pt;}
._41{width:85.033032pt;}
._2a{width:94.113429pt;}
._28{width:98.619193pt;}
._26{width:106.738068pt;}
._24{width:108.608385pt;}
._35{width:109.841093pt;}
._22{width:116.791009pt;}
._2d{width:120.422958pt;}
._2f{width:122.293268pt;}
._2b{width:123.525977pt;}
._38{width:143.039217pt;}
._d{width:165.685354pt;}
._2c{width:173.814429pt;}
._13{width:185.948800pt;}
._36{width:192.132591pt;}
._29{width:218.019476pt;}
._27{width:238.954601pt;}
._39{width:312.311067pt;}
._b{width:320.660723pt;}
._23{width:330.545205pt;}
._c{width:335.813223pt;}
._25{width:344.670007pt;}
._3a{width:346.723090pt;}
._34{width:390.768737pt;}
._32{width:426.453519pt;}
._37{width:428.642652pt;}
._31{width:431.033676pt;}
._33{width:434.859331pt;}
._30{width:459.715415pt;}
._3d{width:644.371811pt;}
._3c{width:938.138667pt;}
._1f{width:1655.620591pt;}
._10{width:1674.217924pt;}
.fsf{font-size:21.628628pt;}
.fs10{font-size:25.305484pt;}
.fs5{font-size:26.566933pt;}
.fse{font-size:26.666667pt;}
.fs11{font-size:26.960378pt;}
.fs12{font-size:31.543630pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:37.332800pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:56.672352pt;}
.fsc{font-size:63.676800pt;}
.fs3{font-size:63.761067pt;}
.fs9{font-size:65.368777pt;}
.fs8{font-size:81.580318pt;}
.fsa{font-size:84.902400pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:3.555786pt;}
.y1a4{bottom:4.382614pt;}
.ya7{bottom:9.869904pt;}
.y1a3{bottom:12.615301pt;}
.y196{bottom:12.695617pt;}
.y195{bottom:18.578607pt;}
.y1a2{bottom:18.801157pt;}
.y187{bottom:24.327662pt;}
.y19a{bottom:27.598159pt;}
.ya6{bottom:28.972944pt;}
.y2b{bottom:29.556000pt;}
.y18d{bottom:39.926369pt;}
.y86{bottom:41.049828pt;}
.ya5{bottom:48.075984pt;}
.y188{bottom:52.391483pt;}
.y19b{bottom:55.364856pt;}
.y18e{bottom:55.521790pt;}
.ya4{bottom:67.179024pt;}
.y18f{bottom:71.118854pt;}
.y1a0{bottom:73.873784pt;}
.y7d{bottom:78.372000pt;}
.y217{bottom:79.914667pt;}
.y189{bottom:80.514704pt;}
.y1ba{bottom:83.032000pt;}
.y19c{bottom:83.131543pt;}
.ya3{bottom:86.282064pt;}
.y190{bottom:86.777298pt;}
.y15e{bottom:87.288000pt;}
.y185{bottom:89.124000pt;}
.y4b{bottom:90.526667pt;}
.y1f5{bottom:91.704000pt;}
.y60{bottom:94.404000pt;}
.yd7{bottom:95.538667pt;}
.y83{bottom:97.268432pt;}
.y9c{bottom:97.425504pt;}
.y94{bottom:99.653333pt;}
.yd2{bottom:100.301333pt;}
.y191{bottom:102.375668pt;}
.y117{bottom:103.100000pt;}
.yd1{bottom:104.285333pt;}
.ya2{bottom:105.385104pt;}
.y216{bottom:106.486667pt;}
.y100{bottom:106.626667pt;}
.y13c{bottom:106.862667pt;}
.y7c{bottom:107.266667pt;}
.yd0{bottom:108.270667pt;}
.y18a{bottom:108.574900pt;}
.y176{bottom:110.056000pt;}
.y19d{bottom:110.898230pt;}
.y85{bottom:111.780673pt;}
.y1b9{bottom:111.926667pt;}
.ycf{bottom:112.256000pt;}
.y1d7{bottom:114.209333pt;}
.y9b{bottom:114.405984pt;}
.y15d{bottom:116.182667pt;}
.yce{bottom:116.241333pt;}
.y192{bottom:117.971418pt;}
.y184{bottom:118.018667pt;}
.y1f4{bottom:118.277333pt;}
.y4a{bottom:119.421333pt;}
.y1a1{bottom:120.152704pt;}
.ycd{bottom:120.226667pt;}
.y114{bottom:120.900000pt;}
.yd6{bottom:123.210667pt;}
.y5f{bottom:123.298667pt;}
.y113{bottom:124.197333pt;}
.ycc{bottom:124.210667pt;}
.ya1{bottom:124.488144pt;}
.y116{bottom:125.138667pt;}
.y84{bottom:126.162058pt;}
.y93{bottom:128.548000pt;}
.yd5{bottom:132.357333pt;}
.y103{bottom:132.774667pt;}
.yc3{bottom:132.833333pt;}
.y215{bottom:133.060000pt;}
.y193{bottom:133.567153pt;}
.y2a{bottom:134.581333pt;}
.yff{bottom:135.521333pt;}
.y13b{bottom:135.757333pt;}
.y7b{bottom:136.162667pt;}
.y18b{bottom:136.698450pt;}
.y19e{bottom:138.664922pt;}
.y115{bottom:138.700000pt;}
.y175{bottom:138.950667pt;}
.y1b8{bottom:140.821333pt;}
.y1d6{bottom:143.105333pt;}
.ya0{bottom:143.591184pt;}
.y1f3{bottom:144.849333pt;}
.y15c{bottom:145.078667pt;}
.ycb{bottom:148.121333pt;}
.y49{bottom:148.316000pt;}
.y194{bottom:149.162896pt;}
.yca{bottom:152.106667pt;}
.y5e{bottom:152.193333pt;}
.yd8{bottom:155.896000pt;}
.yc9{bottom:156.092000pt;}
.y10e{bottom:157.506667pt;}
.y214{bottom:159.632000pt;}
.yc8{bottom:160.077333pt;}
.y102{bottom:161.669333pt;}
.y9f{bottom:162.694224pt;}
.y183{bottom:162.853333pt;}
.y29{bottom:163.476000pt;}
.yc7{bottom:164.062667pt;}
.yfe{bottom:164.416000pt;}
.y13a{bottom:164.652000pt;}
.y18c{bottom:164.824644pt;}
.y7a{bottom:165.057333pt;}
.yd4{bottom:165.237333pt;}
.y8a{bottom:165.776549pt;}
.y19f{bottom:166.431609pt;}
.y174{bottom:167.845333pt;}
.yc6{bottom:168.046667pt;}
.y1b7{bottom:169.716000pt;}
.yd3{bottom:170.977333pt;}
.y1f2{bottom:171.421333pt;}
.yc5{bottom:172.032000pt;}
.y92{bottom:173.384000pt;}
.y15b{bottom:173.973333pt;}
.y48{bottom:177.210667pt;}
.y5d{bottom:181.088000pt;}
.y9e{bottom:181.797264pt;}
.yc4{bottom:183.988000pt;}
.y1d5{bottom:185.617333pt;}
.y213{bottom:186.205333pt;}
.y10d{bottom:186.401333pt;}
.y112{bottom:190.165333pt;}
.y101{bottom:190.564000pt;}
.yc2{bottom:190.878667pt;}
.ybe{bottom:191.432000pt;}
.y28{bottom:192.370667pt;}
.yfd{bottom:193.312000pt;}
.y139{bottom:193.546667pt;}
.y79{bottom:193.952000pt;}
.y173{bottom:196.740000pt;}
.ybd{bottom:196.878667pt;}
.y1f1{bottom:197.994667pt;}
.y1b6{bottom:198.610667pt;}
.ybc{bottom:200.897333pt;}
.y9d{bottom:200.900304pt;}
.y15a{bottom:202.868000pt;}
.y47{bottom:206.105333pt;}
.ybb{bottom:206.696000pt;}
.y5c{bottom:209.982667pt;}
.ybf{bottom:212.436000pt;}
.y212{bottom:212.777333pt;}
.y1d4{bottom:214.512000pt;}
.y10c{bottom:215.296000pt;}
.y111{bottom:219.060000pt;}
.yc1{bottom:219.328000pt;}
.y27{bottom:221.265333pt;}
.y87{bottom:221.864295pt;}
.yfc{bottom:222.206667pt;}
.y138{bottom:222.441333pt;}
.y78{bottom:222.846667pt;}
.yc0{bottom:223.784000pt;}
.y182{bottom:224.406667pt;}
.y1f0{bottom:224.566667pt;}
.y1b5{bottom:227.505333pt;}
.y91{bottom:234.937333pt;}
.y46{bottom:235.000000pt;}
.y89{bottom:236.376537pt;}
.y5b{bottom:238.877333pt;}
.y211{bottom:239.349333pt;}
.y172{bottom:241.576000pt;}
.y1d3{bottom:243.406667pt;}
.y99{bottom:244.041336pt;}
.y10b{bottom:244.190667pt;}
.y98{bottom:246.588408pt;}
.y159{bottom:247.702667pt;}
.y110{bottom:247.954667pt;}
.y26{bottom:250.160000pt;}
.y88{bottom:250.888778pt;}
.yfb{bottom:251.101333pt;}
.y1ef{bottom:251.138667pt;}
.y137{bottom:251.336000pt;}
.y77{bottom:251.741333pt;}
.y181{bottom:253.301333pt;}
.yba{bottom:260.484000pt;}
.y97{bottom:263.568888pt;}
.y90{bottom:263.832000pt;}
.y45{bottom:263.894667pt;}
.y210{bottom:265.922667pt;}
.y5a{bottom:267.772000pt;}
.y1d2{bottom:272.301333pt;}
.y1b4{bottom:272.340000pt;}
.y10a{bottom:273.085333pt;}
.y10f{bottom:277.248000pt;}
.y1ee{bottom:277.712000pt;}
.y25{bottom:279.054667pt;}
.yfa{bottom:279.996000pt;}
.y136{bottom:280.230667pt;}
.y76{bottom:280.636000pt;}
.y180{bottom:281.852000pt;}
.y82{bottom:287.496217pt;}
.yb9{bottom:289.378667pt;}
.y9a{bottom:291.798936pt;}
.y20f{bottom:292.494667pt;}
.y8f{bottom:292.726667pt;}
.y44{bottom:292.789333pt;}
.y17f{bottom:293.268000pt;}
.y59{bottom:296.666667pt;}
.y1d1{bottom:301.197333pt;}
.y109{bottom:301.980000pt;}
.y171{bottom:303.129333pt;}
.y1ed{bottom:304.284000pt;}
.y24{bottom:307.949333pt;}
.yf9{bottom:308.890667pt;}
.y158{bottom:309.256000pt;}
.y135{bottom:311.052000pt;}
.yb8{bottom:318.273333pt;}
.y20e{bottom:319.066667pt;}
.y96{bottom:319.339152pt;}
.y134{bottom:320.197333pt;}
.y8e{bottom:321.621333pt;}
.y43{bottom:321.684000pt;}
.y75{bottom:325.470667pt;}
.y58{bottom:325.561333pt;}
.y1d0{bottom:330.092000pt;}
.y1ec{bottom:330.856000pt;}
.y108{bottom:330.874667pt;}
.y170{bottom:332.024000pt;}
.yb7{bottom:336.342667pt;}
.y23{bottom:336.844000pt;}
.yf8{bottom:337.785333pt;}
.y157{bottom:338.150667pt;}
.y1b3{bottom:339.208000pt;}
.yb5{bottom:340.628000pt;}
.y7f{bottom:343.583964pt;}
.yb4{bottom:344.613333pt;}
.y20d{bottom:345.640000pt;}
.y8d{bottom:350.516000pt;}
.y42{bottom:350.578667pt;}
.y17e{bottom:351.057333pt;}
.yb1{bottom:353.234667pt;}
.y57{bottom:354.456000pt;}
.y1eb{bottom:357.429333pt;}
.y81{bottom:358.096205pt;}
.y1cf{bottom:358.986667pt;}
.y107{bottom:359.769333pt;}
.y16f{bottom:360.918667pt;}
.yb6{bottom:365.237333pt;}
.y22{bottom:365.740000pt;}
.yf7{bottom:366.680000pt;}
.y1b2{bottom:368.102667pt;}
.yb3{bottom:368.524000pt;}
.y20c{bottom:372.212000pt;}
.yb2{bottom:372.509333pt;}
.y80{bottom:372.608446pt;}
.y133{bottom:377.986667pt;}
.y41{bottom:379.473333pt;}
.y61{bottom:379.474667pt;}
.y8b{bottom:379.929893pt;}
.y17d{bottom:379.952000pt;}
.y156{bottom:382.985333pt;}
.y56{bottom:383.350667pt;}
.y1ea{bottom:384.001333pt;}
.y74{bottom:384.888000pt;}
.y16e{bottom:386.517333pt;}
.y1ce{bottom:387.881333pt;}
.y106{bottom:388.665333pt;}
.y16d{bottom:389.813333pt;}
.yb0{bottom:390.776000pt;}
.yf6{bottom:395.574667pt;}
.y1b1{bottom:396.997333pt;}
.y20b{bottom:398.784000pt;}
.y132{bottom:406.881333pt;}
.y40{bottom:408.369333pt;}
.y17c{bottom:408.846667pt;}
.y21{bottom:410.574667pt;}
.y55{bottom:412.246667pt;}
.y73{bottom:413.782667pt;}
.y8c{bottom:415.449333pt;}
.yaf{bottom:416.009333pt;}
.y1cd{bottom:416.776000pt;}
.y105{bottom:417.560000pt;}
.y16c{bottom:418.708000pt;}
.yae{bottom:419.670667pt;}
.yf5{bottom:424.469333pt;}
.y20a{bottom:425.357333pt;}
.y1b0{bottom:425.892000pt;}
.y131{bottom:435.777333pt;}
.y7e{bottom:436.768433pt;}
.y1e9{bottom:437.146667pt;}
.y3f{bottom:437.264000pt;}
.y17b{bottom:437.741333pt;}
.y54{bottom:441.141333pt;}
.y72{bottom:442.677333pt;}
.y1cc{bottom:445.670667pt;}
.y16b{bottom:447.602667pt;}
.yad{bottom:448.566667pt;}
.y155{bottom:449.852000pt;}
.y209{bottom:451.929333pt;}
.yf4{bottom:453.364000pt;}
.y1af{bottom:454.786667pt;}
.y104{bottom:462.394667pt;}
.y1e8{bottom:463.718667pt;}
.y130{bottom:464.672000pt;}
.y3e{bottom:466.158667pt;}
.y17a{bottom:468.562667pt;}
.y53{bottom:470.036000pt;}
.y71{bottom:471.572000pt;}
.y1cb{bottom:474.565333pt;}
.y16a{bottom:476.497333pt;}
.yac{bottom:477.461333pt;}
.y179{bottom:477.708000pt;}
.y208{bottom:478.501333pt;}
.y154{bottom:478.746667pt;}
.yf3{bottom:482.258667pt;}
.y1ae{bottom:483.681333pt;}
.y1e7{bottom:490.292000pt;}
.y12f{bottom:493.566667pt;}
.y3d{bottom:495.053333pt;}
.y52{bottom:498.930667pt;}
.y70{bottom:500.466667pt;}
.y20{bottom:501.328000pt;}
.y1ca{bottom:503.460000pt;}
.y207{bottom:505.074667pt;}
.y169{bottom:505.392000pt;}
.yab{bottom:506.356000pt;}
.y153{bottom:507.641333pt;}
.yf2{bottom:511.153333pt;}
.y1ad{bottom:512.576000pt;}
.y1e6{bottom:516.864000pt;}
.y12e{bottom:522.461333pt;}
.y3c{bottom:523.948000pt;}
.y51{bottom:527.825333pt;}
.y6f{bottom:529.361333pt;}
.y1f{bottom:530.114667pt;}
.y206{bottom:531.646667pt;}
.y1c9{bottom:532.354667pt;}
.y168{bottom:534.286667pt;}
.yaa{bottom:535.250667pt;}
.y152{bottom:536.536000pt;}
.yf1{bottom:540.048000pt;}
.y1ac{bottom:541.470667pt;}
.y1e5{bottom:543.436000pt;}
.y1e{bottom:545.668000pt;}
.y12d{bottom:551.356000pt;}
.y3b{bottom:552.842667pt;}
.y178{bottom:554.500000pt;}
.y50{bottom:556.720000pt;}
.y205{bottom:558.220000pt;}
.y6e{bottom:558.256000pt;}
.y1c8{bottom:561.249333pt;}
.y167{bottom:563.181333pt;}
.ya9{bottom:564.145333pt;}
.yf0{bottom:568.942667pt;}
.y1e4{bottom:570.009333pt;}
.y1ab{bottom:570.365333pt;}
.y177{bottom:571.833333pt;}
.y151{bottom:577.242667pt;}
.y12{bottom:580.070667pt;}
.y1d{bottom:581.093333pt;}
.y3a{bottom:581.737333pt;}
.y204{bottom:584.792000pt;}
.y4f{bottom:585.614667pt;}
.y6d{bottom:587.150667pt;}
.y1c7{bottom:590.144000pt;}
.y14e{bottom:591.460000pt;}
.y166{bottom:592.076000pt;}
.yef{bottom:594.201333pt;}
.y11{bottom:594.682667pt;}
.y12c{bottom:596.190667pt;}
.y1e3{bottom:596.582667pt;}
.y1c{bottom:597.034667pt;}
.yee{bottom:597.838667pt;}
.y1aa{bottom:599.260000pt;}
.y14d{bottom:599.961333pt;}
.y150{bottom:606.137333pt;}
.y14c{bottom:607.930667pt;}
.y147{bottom:608.582667pt;}
.y10{bottom:609.294667pt;}
.y39{bottom:610.632000pt;}
.y203{bottom:611.364000pt;}
.ya8{bottom:612.917333pt;}
.y1b{bottom:612.974667pt;}
.y4e{bottom:614.509333pt;}
.y14b{bottom:615.901333pt;}
.y6c{bottom:616.045333pt;}
.y1c6{bottom:619.038667pt;}
.y165{bottom:620.970667pt;}
.y14a{bottom:623.872000pt;}
.yf{bottom:623.906667pt;}
.y12b{bottom:625.484000pt;}
.yed{bottom:626.733333pt;}
.y1a9{bottom:628.154667pt;}
.y1a{bottom:628.914667pt;}
.y149{bottom:631.841333pt;}
.y95{bottom:634.235253pt;}
.y14f{bottom:635.032000pt;}
.y202{bottom:637.937333pt;}
.ye{bottom:638.518667pt;}
.y38{bottom:639.526667pt;}
.y1e2{bottom:641.309333pt;}
.y4d{bottom:643.404000pt;}
.y19{bottom:644.854667pt;}
.y1c5{bottom:647.933333pt;}
.y164{bottom:649.865333pt;}
.y148{bottom:655.221333pt;}
.yec{bottom:655.628000pt;}
.y1a8{bottom:657.049333pt;}
.y18{bottom:660.794667pt;}
.y6b{bottom:660.881333pt;}
.y12a{bottom:661.756000pt;}
.yd{bottom:663.757333pt;}
.y201{bottom:664.509333pt;}
.y129{bottom:665.052000pt;}
.y37{bottom:668.421333pt;}
.y1e1{bottom:670.205333pt;}
.y17{bottom:676.734667pt;}
.y1c4{bottom:676.828000pt;}
.yc{bottom:677.041333pt;}
.y163{bottom:678.760000pt;}
.y146{bottom:681.229333pt;}
.yea{bottom:684.768000pt;}
.y1a7{bottom:685.944000pt;}
.y4c{bottom:688.238667pt;}
.yb{bottom:690.324000pt;}
.ye7{bottom:691.046667pt;}
.y200{bottom:691.081333pt;}
.y16{bottom:692.676000pt;}
.ye6{bottom:695.032000pt;}
.y36{bottom:697.316000pt;}
.ye3{bottom:703.653333pt;}
.y1c3{bottom:705.722667pt;}
.ya{bottom:707.616000pt;}
.y162{bottom:707.656000pt;}
.y15{bottom:708.616000pt;}
.y145{bottom:710.124000pt;}
.y1e0{bottom:712.718667pt;}
.ye9{bottom:717.648000pt;}
.y1ff{bottom:717.654667pt;}
.ye5{bottom:718.941333pt;}
.y9{bottom:720.876000pt;}
.ye4{bottom:722.926667pt;}
.y14{bottom:724.556000pt;}
.y6a{bottom:725.610667pt;}
.y35{bottom:726.210667pt;}
.yeb{bottom:726.716000pt;}
.ye8{bottom:729.238667pt;}
.y8{bottom:734.160000pt;}
.y1c2{bottom:734.617333pt;}
.y1a6{bottom:735.285333pt;}
.y161{bottom:736.550667pt;}
.y128{bottom:738.313333pt;}
.y144{bottom:739.018667pt;}
.y1df{bottom:741.613333pt;}
.ye1{bottom:743.289333pt;}
.ydd{bottom:743.842667pt;}
.y1fe{bottom:744.226667pt;}
.y13{bottom:744.481333pt;}
.ydc{bottom:744.937333pt;}
.y7{bottom:751.452000pt;}
.y127{bottom:751.597333pt;}
.y1a5{bottom:752.618667pt;}
.ydb{bottom:753.308000pt;}
.y69{bottom:754.505333pt;}
.y34{bottom:755.105333pt;}
.ye2{bottom:755.470667pt;}
.yda{bottom:759.106667pt;}
.y1c1{bottom:763.512000pt;}
.y126{bottom:764.881333pt;}
.y143{bottom:767.913333pt;}
.y1de{bottom:770.508000pt;}
.yde{bottom:770.697333pt;}
.y1fd{bottom:770.798667pt;}
.ye0{bottom:771.738667pt;}
.ydf{bottom:776.194667pt;}
.y198{bottom:776.726667pt;}
.y125{bottom:778.164000pt;}
.y68{bottom:783.400000pt;}
.y33{bottom:784.000000pt;}
.y160{bottom:785.458667pt;}
.y186{bottom:791.204598pt;}
.y199{bottom:791.205631pt;}
.y124{bottom:791.448000pt;}
.y1c0{bottom:792.408000pt;}
.y6{bottom:794.584000pt;}
.y142{bottom:796.808000pt;}
.y1fc{bottom:797.372000pt;}
.y1dd{bottom:799.404000pt;}
.y123{bottom:804.732000pt;}
.y15f{bottom:809.566667pt;}
.y67{bottom:812.296000pt;}
.y32{bottom:812.894667pt;}
.yd9{bottom:812.896000pt;}
.y122{bottom:818.014667pt;}
.y5{bottom:818.494667pt;}
.y1bf{bottom:821.302667pt;}
.y1fb{bottom:823.944000pt;}
.y141{bottom:825.702667pt;}
.y121{bottom:831.298667pt;}
.y66{bottom:841.190667pt;}
.y31{bottom:841.790667pt;}
.y1dc{bottom:841.917333pt;}
.y120{bottom:844.582667pt;}
.y1be{bottom:850.197333pt;}
.y1fa{bottom:850.516000pt;}
.y11f{bottom:857.865333pt;}
.y4{bottom:866.314667pt;}
.y65{bottom:870.085333pt;}
.y140{bottom:870.538667pt;}
.y30{bottom:870.685333pt;}
.y1db{bottom:870.812000pt;}
.y11e{bottom:871.149333pt;}
.y1f9{bottom:877.089333pt;}
.y1bd{bottom:879.092000pt;}
.y11d{bottom:884.432000pt;}
.y11c{bottom:897.716000pt;}
.y64{bottom:898.980000pt;}
.y13f{bottom:899.433333pt;}
.y2f{bottom:899.580000pt;}
.y1da{bottom:899.706667pt;}
.y1f8{bottom:903.661333pt;}
.y1bc{bottom:907.986667pt;}
.y11b{bottom:911.000000pt;}
.y11a{bottom:924.282667pt;}
.y63{bottom:927.874667pt;}
.y13e{bottom:928.328000pt;}
.y2e{bottom:928.474667pt;}
.y1d9{bottom:928.601333pt;}
.y1f7{bottom:930.233333pt;}
.y119{bottom:938.097333pt;}
.y3{bottom:943.812000pt;}
.y1bb{bottom:952.821333pt;}
.y118{bottom:955.366667pt;}
.y62{bottom:956.769333pt;}
.y1f6{bottom:956.806667pt;}
.y13d{bottom:957.222667pt;}
.y2d{bottom:957.369333pt;}
.y1d8{bottom:957.497333pt;}
.y2{bottom:981.189333pt;}
.y2c{bottom:985.456000pt;}
.y1{bottom:999.876000pt;}
.h18{height:2.656693pt;}
.h3e{height:17.404287pt;}
.h6{height:19.021924pt;}
.h37{height:19.925200pt;}
.h41{height:21.694679pt;}
.h1a{height:25.498302pt;}
.h3f{height:25.910938pt;}
.h2{height:27.895200pt;}
.h1e{height:27.999600pt;}
.h8{height:30.350141pt;}
.hf{height:31.880400pt;}
.h42{height:32.298336pt;}
.h3{height:35.865600pt;}
.h19{height:36.426667pt;}
.h43{height:36.874903pt;}
.h1d{height:37.013333pt;}
.h2c{height:38.405333pt;}
.h7{height:39.850400pt;}
.ha{height:40.000000pt;}
.h3c{height:42.555360pt;}
.h14{height:44.586197pt;}
.h2a{height:44.847636pt;}
.h15{height:44.852969pt;}
.he{height:45.770911pt;}
.h24{height:47.519636pt;}
.h9{height:47.820800pt;}
.h36{height:47.834302pt;}
.h2d{height:48.735636pt;}
.h32{height:48.740969pt;}
.h25{height:51.594302pt;}
.h33{height:53.184000pt;}
.h1c{height:53.184693pt;}
.hd{height:54.373601pt;}
.h2b{height:54.549333pt;}
.h16{height:54.645333pt;}
.h5{height:55.016400pt;}
.hc{height:57.122156pt;}
.h38{height:58.036969pt;}
.h11{height:59.448263pt;}
.h22{height:59.973333pt;}
.h2f{height:61.924969pt;}
.h26{height:66.138302pt;}
.h4{height:71.731200pt;}
.h3b{height:71.840000pt;}
.h34{height:72.506667pt;}
.h39{height:72.928000pt;}
.h20{height:73.066667pt;}
.h35{height:76.581333pt;}
.h1f{height:77.627360pt;}
.h29{height:80.704000pt;}
.h28{height:83.376000pt;}
.h30{height:90.811360pt;}
.h27{height:92.171360pt;}
.h21{height:114.208693pt;}
.h1b{height:116.896693pt;}
.h12{height:117.181895pt;}
.h3a{height:123.291360pt;}
.h31{height:124.389333pt;}
.h13{height:127.370183pt;}
.h17{height:127.574027pt;}
.h23{height:140.053333pt;}
.h2e{height:162.011360pt;}
.h3d{height:171.514373pt;}
.h40{height:175.566933pt;}
.h10{height:332.534400pt;}
.hb{height:398.704800pt;}
.h0{height:1043.146667pt;}
.h1{height:1043.333333pt;}
.w5{width:294.884267pt;}
.w4{width:368.596107pt;}
.w3{width:603.160800pt;}
.w2{width:603.168800pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:5.130434pt;}
.x5a{left:14.084705pt;}
.x59{left:16.833168pt;}
.xf{left:26.598517pt;}
.xb{left:28.036513pt;}
.x5b{left:38.118568pt;}
.x19{left:39.082078pt;}
.x10{left:52.092929pt;}
.xc{left:53.531129pt;}
.xe{left:56.146019pt;}
.xa{left:57.584014pt;}
.x2{left:59.238667pt;}
.x1{left:61.104000pt;}
.x6{left:62.432000pt;}
.x3{left:65.901333pt;}
.x5c{left:70.141719pt;}
.x47{left:73.074667pt;}
.x63{left:74.437333pt;}
.x64{left:75.765333pt;}
.xd{left:79.417702pt;}
.x9{left:80.855902pt;}
.x4c{left:88.337333pt;}
.x48{left:90.110667pt;}
.x5{left:92.984000pt;}
.x7{left:94.313333pt;}
.x8{left:95.942747pt;}
.x61{left:97.276875pt;}
.x49{left:103.444000pt;}
.x60{left:110.062239pt;}
.x15{left:122.392558pt;}
.x57{left:131.985333pt;}
.x4f{left:147.240000pt;}
.x1a{left:155.982070pt;}
.x14{left:172.374398pt;}
.x1c{left:203.352000pt;}
.x5d{left:212.453333pt;}
.x1d{left:217.816000pt;}
.x27{left:245.609333pt;}
.x1e{left:247.832000pt;}
.x1f{left:254.678667pt;}
.x28{left:265.685333pt;}
.x38{left:267.510667pt;}
.x2f{left:269.732000pt;}
.x4{left:272.976000pt;}
.x30{left:275.321333pt;}
.x29{left:277.492000pt;}
.x20{left:281.004000pt;}
.x2c{left:282.189333pt;}
.x16{left:285.352102pt;}
.x39{left:287.585333pt;}
.x2d{left:293.428000pt;}
.x21{left:299.794667pt;}
.x2a{left:302.481333pt;}
.x3b{left:304.089333pt;}
.x55{left:305.762667pt;}
.x4d{left:309.713333pt;}
.x3c{left:314.902667pt;}
.x22{left:318.088000pt;}
.x3f{left:321.448000pt;}
.x31{left:324.102667pt;}
.x3a{left:326.789333pt;}
.x58{left:327.926532pt;}
.x40{left:330.528000pt;}
.x4a{left:333.469333pt;}
.x45{left:339.137333pt;}
.x32{left:342.396000pt;}
.x53{left:353.398667pt;}
.x23{left:357.717333pt;}
.x24{left:363.617333pt;}
.x25{left:366.384000pt;}
.x4b{left:377.224000pt;}
.x2b{left:380.768000pt;}
.x33{left:384.432000pt;}
.x26{left:390.926667pt;}
.x34{left:393.098667pt;}
.x46{left:400.684000pt;}
.x54{left:406.576000pt;}
.x43{left:409.741333pt;}
.x41{left:410.974667pt;}
.x35{left:415.418667pt;}
.x36{left:428.158667pt;}
.x5e{left:437.722564pt;}
.x56{left:446.766667pt;}
.x42{left:449.401333pt;}
.x44{left:454.797333pt;}
.x50{left:470.578667pt;}
.x13{left:476.346733pt;}
.x17{left:485.084998pt;}
.x1b{left:489.284000pt;}
.x37{left:493.161333pt;}
.x4e{left:495.724000pt;}
.x12{left:504.717544pt;}
.x3e{left:509.016000pt;}
.x11{left:529.558284pt;}
.x62{left:545.312000pt;}
.x51{left:555.240000pt;}
.x18{left:564.627934pt;}
.x52{left:631.376000pt;}
.x2e{left:715.788000pt;}
.x3d{left:717.116000pt;}
}




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