
    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_731c6e108e96f4cfa4acec55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027000;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_5ce7064ca697acff93192357.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.647919;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_7229d8dda1bf481cb906c26f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027000;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_8a603785f79c92961111ebdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928000;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_ae308944489eb32ae59dde6e.woff2')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_03ee1a153cc07f58c1888e98.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.586000;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_38dd02a159045f3c4154887a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.789000;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_2825653c9de0222b3bdca5ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.511000;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_061b52efcd65073525b6dc01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936250;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_8bf3ddf68e1dc9914551f98a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8cf7289a29fcfce0d65fbf87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.789000;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_2961039dd1396ef55eea6fee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.510000;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_c209e91139965ddcca6525f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.286000;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_ef6fcf58c580d55f4f6e3e44.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.171000;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_b5fe987fa1f1e9dec5d6062e.woff2')format("woff");}.fff{font-family:fff;line-height:0.753000;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_45a8b1b7f0f782d2d97158da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.668000;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_14be54790c914406efceb4ff.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_39da4095c712b804cd61af79.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.694000;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_2750203cc36b3468ae584edb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.286000;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_cda8484845f3fb1c4e845d7d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.539000;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_cfea77fcebf09a906d003ebf.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_66e8245966b7bf00d0339c8c.woff2')format("woff");}.ff16{font-family:ff16;line-height:3.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:ff17;src:url('chunks/assets/font_0119130f506fab9487b30ab3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.350000;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_8fb8b7e5c392ac24291b5817.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.888000;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_bb8e7f26ccbe65ce325d109a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.108000;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_d5b33efa7b917f0b10bb3bbf.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.670045;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_15f852333ae60e833dda79e5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259991,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259996,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259997,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292520,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.292524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292524,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292525,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.292533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292533,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v5{vertical-align:-92.184927px;}
.v6{vertical-align:-75.514457px;}
.v1{vertical-align:-67.351378px;}
.v7{vertical-align:-1.362904px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:31.294200px;}
.v2{vertical-align:32.314800px;}
.v3{vertical-align:65.309413px;}
.v4{vertical-align:92.184927px;}
.ls82{letter-spacing:-4.786902px;}
.ls48{letter-spacing:-2.586106px;}
.ls4a{letter-spacing:-2.257104px;}
.ls49{letter-spacing:-2.211197px;}
.ls47{letter-spacing:-2.166300px;}
.ls3d{letter-spacing:-1.539843px;}
.ls94{letter-spacing:-1.285200px;}
.ls4b{letter-spacing:-1.277750px;}
.ls1e{letter-spacing:-1.209876px;}
.ls83{letter-spacing:-0.948749px;}
.ls89{letter-spacing:-0.714000px;}
.lse{letter-spacing:-0.623573px;}
.lsc{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.030605px;}
.ls7{letter-spacing:0.034431px;}
.ls16{letter-spacing:0.043039px;}
.ls84{letter-spacing:0.057384px;}
.ls32{letter-spacing:0.061210px;}
.ls4{letter-spacing:0.068862px;}
.ls10{letter-spacing:0.076514px;}
.ls13{letter-spacing:0.081296px;}
.ls1{letter-spacing:0.087989px;}
.ls15{letter-spacing:0.095642px;}
.ls50{letter-spacing:0.114771px;}
.ls14{letter-spacing:0.119553px;}
.lsa{letter-spacing:0.137722px;}
.ls95{letter-spacing:0.186503px;}
.ls17{letter-spacing:0.210413px;}
.lsf{letter-spacing:0.229542px;}
.ls33{letter-spacing:0.260141px;}
.ls11{letter-spacing:0.272581px;}
.ls4f{letter-spacing:0.291709px;}
.ls77{letter-spacing:0.540380px;}
.ls96{letter-spacing:0.684782px;}
.ls41{letter-spacing:0.688625px;}
.ls37{letter-spacing:0.731664px;}
.ls1f{letter-spacing:0.774703px;}
.ls42{letter-spacing:0.827307px;}
.ls2a{letter-spacing:0.841653px;}
.ls3c{letter-spacing:0.846435px;}
.ls45{letter-spacing:0.860782px;}
.ls58{letter-spacing:0.865564px;}
.ls46{letter-spacing:0.870346px;}
.ls3b{letter-spacing:0.879910px;}
.ls21{letter-spacing:0.908603px;}
.ls29{letter-spacing:0.922949px;}
.ls43{letter-spacing:0.932513px;}
.ls2d{letter-spacing:0.937296px;}
.ls27{letter-spacing:0.946860px;}
.ls2e{letter-spacing:0.951642px;}
.ls25{letter-spacing:0.956424px;}
.ls26{letter-spacing:0.961206px;}
.ls38{letter-spacing:0.965988px;}
.ls1b{letter-spacing:0.970770px;}
.ls59{letter-spacing:0.975552px;}
.ls3f{letter-spacing:0.980335px;}
.ls2f{letter-spacing:0.985117px;}
.ls4c{letter-spacing:0.994681px;}
.ls40{letter-spacing:1.004245px;}
.ls18{letter-spacing:1.009027px;}
.ls24{letter-spacing:1.028156px;}
.ls44{letter-spacing:1.032938px;}
.ls20{letter-spacing:1.037720px;}
.ls39{letter-spacing:1.042502px;}
.ls1c{letter-spacing:1.047284px;}
.ls23{letter-spacing:1.056849px;}
.ls22{letter-spacing:1.066413px;}
.ls3e{letter-spacing:1.071195px;}
.ls28{letter-spacing:1.085541px;}
.ls1d{letter-spacing:1.104670px;}
.ls3a{letter-spacing:1.238569px;}
.ls80{letter-spacing:1.275337px;}
.ls7e{letter-spacing:1.603376px;}
.ls7d{letter-spacing:1.912848px;}
.ls7b{letter-spacing:2.242814px;}
.ls8{letter-spacing:2.328892px;}
.ls86{letter-spacing:2.468400px;}
.ls88{letter-spacing:2.759100px;}
.ls35{letter-spacing:3.760565px;}
.ls79{letter-spacing:4.509539px;}
.ls12{letter-spacing:4.519103px;}
.ls4d{letter-spacing:4.533450px;}
.ls72{letter-spacing:4.590835px;}
.ls8e{letter-spacing:4.676913px;}
.ls75{letter-spacing:4.700824px;}
.ls63{letter-spacing:4.844288px;}
.ls7a{letter-spacing:4.863416px;}
.ls71{letter-spacing:5.026008px;}
.ls2c{letter-spacing:5.518566px;}
.ls85{letter-spacing:6.258682px;}
.ls87{letter-spacing:6.583858px;}
.ls1a{letter-spacing:7.790073px;}
.ls19{letter-spacing:8.115258px;}
.ls62{letter-spacing:9.425559px;}
.ls61{letter-spacing:9.583368px;}
.ls4e{letter-spacing:9.750743px;}
.ls30{letter-spacing:12.716294px;}
.ls9{letter-spacing:12.819586px;}
.ls66{letter-spacing:12.878249px;}
.ls36{letter-spacing:12.896098px;}
.ls8a{letter-spacing:13.003214px;}
.ls31{letter-spacing:13.117982px;}
.ls54{letter-spacing:13.581221px;}
.ls5{letter-spacing:13.677667px;}
.ls56{letter-spacing:14.236371px;}
.ls6c{letter-spacing:14.604594px;}
.ls6{letter-spacing:14.667555px;}
.ls0{letter-spacing:15.260318px;}
.ls2{letter-spacing:15.585494px;}
.ls5f{letter-spacing:16.125309px;}
.ls8b{letter-spacing:16.197040px;}
.ls60{letter-spacing:16.240080px;}
.ls34{letter-spacing:16.388870px;}
.ls90{letter-spacing:16.492162px;}
.ls91{letter-spacing:16.568674px;}
.ls5b{letter-spacing:17.603759px;}
.ls53{letter-spacing:17.928168px;}
.ls5a{letter-spacing:18.085978px;}
.ls55{letter-spacing:18.258134px;}
.ls52{letter-spacing:18.439855px;}
.ls57{letter-spacing:18.908502px;}
.ls51{letter-spacing:19.564225px;}
.ls5c{letter-spacing:19.890771px;}
.lsd{letter-spacing:20.669115px;}
.ls3{letter-spacing:20.701393px;}
.ls5d{letter-spacing:20.701797px;}
.ls5e{letter-spacing:20.873954px;}
.ls76{letter-spacing:26.177325px;}
.ls2b{letter-spacing:29.950418px;}
.ls65{letter-spacing:39.515879px;}
.ls6a{letter-spacing:39.516456px;}
.ls67{letter-spacing:41.804778px;}
.ls69{letter-spacing:52.598538px;}
.ls64{letter-spacing:57.504993px;}
.ls93{letter-spacing:71.841789px;}
.ls81{letter-spacing:73.152090px;}
.ls92{letter-spacing:77.078210px;}
.ls70{letter-spacing:127.174617px;}
.ls7f{letter-spacing:138.126754px;}
.ls74{letter-spacing:163.481199px;}
.ls7c{letter-spacing:170.544746px;}
.ls8c{letter-spacing:212.869460px;}
.ls73{letter-spacing:216.787846px;}
.ls8f{letter-spacing:294.314885px;}
.ls6e{letter-spacing:312.951497px;}
.ls68{letter-spacing:357.759961px;}
.ls6d{letter-spacing:382.952959px;}
.ls6b{letter-spacing:1231.075498px;}
.ls6f{letter-spacing:1317.096273px;}
.ls78{letter-spacing:1400.501227px;}
.ls8d{letter-spacing:1848.605000px;}
.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;}
}
.ws150{word-spacing:-13.041470px;}
.wscd{word-spacing:-12.934354px;}
.wse{word-spacing:-2.824385px;}
.ws34{word-spacing:-2.376714px;}
.ws110{word-spacing:-2.290635px;}
.ws111{word-spacing:-1.960669px;}
.ws118{word-spacing:-1.636849px;}
.ws119{word-spacing:-1.308810px;}
.ws93{word-spacing:-1.133362px;}
.ws7e{word-spacing:-1.056849px;}
.ws83{word-spacing:-0.779486px;}
.ws3e{word-spacing:-0.047821px;}
.ws1f{word-spacing:-0.043039px;}
.ws5{word-spacing:-0.042238px;}
.wsd{word-spacing:-0.038256px;}
.ws161{word-spacing:-0.025500px;}
.ws3d{word-spacing:0.000000px;}
.ws3c{word-spacing:0.585317px;}
.ws134{word-spacing:0.910493px;}
.ws5e{word-spacing:1.162055px;}
.wsb9{word-spacing:2.547850px;}
.ws158{word-spacing:6.036797px;}
.ws155{word-spacing:6.224251px;}
.ws15f{word-spacing:6.231902px;}
.ws15a{word-spacing:6.564730px;}
.ws157{word-spacing:6.572381px;}
.ws77{word-spacing:6.680622px;}
.ws159{word-spacing:6.683323px;}
.ws151{word-spacing:6.687149px;}
.ws156{word-spacing:6.690974px;}
.ws78{word-spacing:7.354901px;}
.ws17a{word-spacing:7.555750px;}
.ws11f{word-spacing:7.923973px;}
.ws11e{word-spacing:7.947883px;}
.ws124{word-spacing:8.043526px;}
.wscf{word-spacing:8.875392px;}
.wsd8{word-spacing:9.020765px;}
.wsae{word-spacing:9.208219px;}
.wsd6{word-spacing:9.300034px;}
.ws91{word-spacing:9.482944px;}
.wsd2{word-spacing:9.510442px;}
.wsdc{word-spacing:9.533395px;}
.ws14d{word-spacing:9.560174px;}
.ws14a{word-spacing:9.625210px;}
.wsc3{word-spacing:9.805013px;}
.wsb5{word-spacing:9.831792px;}
.wsc9{word-spacing:9.839443px;}
.wsc2{word-spacing:9.850920px;}
.wsd7{word-spacing:9.988642px;}
.ws1a3{word-spacing:10.485970px;}
.wsab{word-spacing:10.568485px;}
.ws1a0{word-spacing:10.604563px;}
.ws97{word-spacing:10.621089px;}
.ws1a2{word-spacing:10.669598px;}
.wsaa{word-spacing:10.778898px;}
.ws2a{word-spacing:10.798385px;}
.wse1{word-spacing:10.879323px;}
.ws131{word-spacing:10.918262px;}
.ws90{word-spacing:11.008440px;}
.ws180{word-spacing:11.161468px;}
.ws99{word-spacing:11.175814px;}
.ws8{word-spacing:11.216659px;}
.ws17b{word-spacing:11.223636px;}
.wsf4{word-spacing:11.247546px;}
.ws73{word-spacing:11.281021px;}
.ws19f{word-spacing:11.319950px;}
.ws8e{word-spacing:11.371881px;}
.ws179{word-spacing:11.395792px;}
.ws62{word-spacing:11.400574px;}
.ws13b{word-spacing:11.414920px;}
.ws1a4{word-spacing:11.453846px;}
.ws17c{word-spacing:11.486652px;}
.ws8f{word-spacing:11.505781px;}
.ws61{word-spacing:11.544038px;}
.ws9{word-spacing:11.545661px;}
.ws60{word-spacing:11.706630px;}
.ws130{word-spacing:11.763720px;}
.ws56{word-spacing:11.821401px;}
.ws7b{word-spacing:11.850093px;}
.ws12a{word-spacing:11.859658px;}
.ws102{word-spacing:11.869222px;}
.wsc{word-spacing:11.870837px;}
.ws5a{word-spacing:11.878786px;}
.ws4d{word-spacing:11.917043px;}
.ws4e{word-spacing:11.921825px;}
.ws52{word-spacing:11.931389px;}
.ws123{word-spacing:11.969646px;}
.wse4{word-spacing:11.983993px;}
.ws184{word-spacing:11.993557px;}
.ws7a{word-spacing:11.998339px;}
.ws135{word-spacing:12.003121px;}
.ws187{word-spacing:12.035338px;}
.ws127{word-spacing:12.127456px;}
.wse5{word-spacing:12.175278px;}
.ws7f{word-spacing:12.189624px;}
.ws71{word-spacing:12.223099px;}
.ws129{word-spacing:12.232663px;}
.wsb6{word-spacing:12.245746px;}
.ws117{word-spacing:12.270920px;}
.wsf3{word-spacing:12.323523px;}
.ws128{word-spacing:12.333087px;}
.ws36{word-spacing:12.333734px;}
.wsc5{word-spacing:12.387293px;}
.ws14{word-spacing:12.391118px;}
.wsd0{word-spacing:12.402595px;}
.ws11{word-spacing:12.417898px;}
.ws86{word-spacing:12.423948px;}
.ws39{word-spacing:12.425549px;}
.ws101{word-spacing:12.428730px;}
.ws88{word-spacing:12.443076px;}
.ws24{word-spacing:12.451067px;}
.ws13{word-spacing:12.471456px;}
.wsc0{word-spacing:12.475282px;}
.ws193{word-spacing:12.479107px;}
.ws81{word-spacing:12.532666px;}
.ws105{word-spacing:12.547968px;}
.ws108{word-spacing:12.553065px;}
.wsbb{word-spacing:12.555619px;}
.ws163{word-spacing:12.567096px;}
.ws146{word-spacing:12.567411px;}
.wsb4{word-spacing:12.574747px;}
.ws162{word-spacing:12.590050px;}
.ws87{word-spacing:12.600886px;}
.ws10{word-spacing:12.601526px;}
.wsb{word-spacing:12.624480px;}
.wsfa{word-spacing:12.629579px;}
.wsc1{word-spacing:12.639782px;}
.ws17{word-spacing:12.647434px;}
.wsbc{word-spacing:12.678038px;}
.ws1a1{word-spacing:12.681864px;}
.ws18{word-spacing:12.685690px;}
.wsb7{word-spacing:12.689515px;}
.ws38{word-spacing:12.693341px;}
.wsdf{word-spacing:12.696529px;}
.wsad{word-spacing:12.704818px;}
.wsb8{word-spacing:12.720120px;}
.wsc6{word-spacing:12.739248px;}
.ws37{word-spacing:12.746899px;}
.ws12{word-spacing:12.750725px;}
.ws192{word-spacing:12.754550px;}
.wsbe{word-spacing:12.777504px;}
.wsca{word-spacing:12.781330px;}
.ws145{word-spacing:12.782607px;}
.ws6f{word-spacing:12.787389px;}
.ws3b{word-spacing:12.788981px;}
.wsf{word-spacing:12.808109px;}
.wsb0{word-spacing:12.811934px;}
.wsac{word-spacing:12.815760px;}
.ws149{word-spacing:12.819586px;}
.wsa{word-spacing:12.854016px;}
.wsaf{word-spacing:12.857842px;}
.ws15{word-spacing:12.861667px;}
.ws18c{word-spacing:12.873144px;}
.wsba{word-spacing:12.884621px;}
.ws16{word-spacing:12.903749px;}
.wsb1{word-spacing:12.915226px;}
.ws109{word-spacing:12.916506px;}
.wsc8{word-spacing:12.919051px;}
.ws19{word-spacing:12.942005px;}
.wsb2{word-spacing:12.945830px;}
.wsf0{word-spacing:12.959545px;}
.wsd1{word-spacing:12.980261px;}
.ws3a{word-spacing:12.984086px;}
.ws6d{word-spacing:12.988238px;}
.wsa3{word-spacing:12.997802px;}
.wsfc{word-spacing:13.012149px;}
.ws14f{word-spacing:13.079726px;}
.wsb3{word-spacing:13.102680px;}
.ws70{word-spacing:13.107791px;}
.wsfd{word-spacing:13.169958px;}
.ws172{word-spacing:13.179523px;}
.wscb{word-spacing:13.267181px;}
.wsc7{word-spacing:13.271006px;}
.ws57{word-spacing:13.275165px;}
.wse9{word-spacing:13.361243px;}
.ws2e{word-spacing:13.389308px;}
.ws6e{word-spacing:13.437757px;}
.ws19a{word-spacing:13.495143px;}
.ws1e{word-spacing:13.548551px;}
.ws9c{word-spacing:13.552528px;}
.ws33{word-spacing:13.586003px;}
.wsf9{word-spacing:13.624260px;}
.ws28{word-spacing:13.647540px;}
.wsfe{word-spacing:13.729467px;}
.ws112{word-spacing:13.753377px;}
.ws16e{word-spacing:13.815545px;}
.ws30{word-spacing:13.871341px;}
.ws2f{word-spacing:13.918683px;}
.wsa4{word-spacing:13.944662px;}
.ws140{word-spacing:14.059433px;}
.wsff{word-spacing:14.064215px;}
.ws5b{word-spacing:14.140729px;}
.ws199{word-spacing:14.150293px;}
.ws1b{word-spacing:14.164003px;}
.wsa1{word-spacing:14.212461px;}
.ws194{word-spacing:14.217243px;}
.wsf8{word-spacing:14.226807px;}
.ws16f{word-spacing:14.288975px;}
.ws9d{word-spacing:14.303321px;}
.wsdb{word-spacing:14.326872px;}
.ws115{word-spacing:14.360706px;}
.ws185{word-spacing:14.389399px;}
.ws31{word-spacing:14.413627px;}
.ws16c{word-spacing:14.432438px;}
.ws116{word-spacing:14.442002px;}
.wsa2{word-spacing:14.446785px;}
.ws20{word-spacing:14.456666px;}
.ws114{word-spacing:14.485041px;}
.ws16d{word-spacing:14.518516px;}
.ws23{word-spacing:14.538439px;}
.ws16b{word-spacing:14.599812px;}
.ws113{word-spacing:14.647634px;}
.ws173{word-spacing:14.757622px;}
.wsd9{word-spacing:14.782118px;}
.ws84{word-spacing:14.786315px;}
.ws19b{word-spacing:14.815008px;}
.wsde{word-spacing:14.838918px;}
.wse2{word-spacing:14.853265px;}
.ws64{word-spacing:14.886740px;}
.wsda{word-spacing:14.893061px;}
.ws10f{word-spacing:14.896304px;}
.ws13f{word-spacing:14.953689px;}
.wsfb{word-spacing:14.958471px;}
.ws13e{word-spacing:15.034985px;}
.ws85{word-spacing:15.044550px;}
.ws12f{word-spacing:15.121063px;}
.wse3{word-spacing:15.140192px;}
.ws75{word-spacing:15.197577px;}
.ws186{word-spacing:15.211924px;}
.ws92{word-spacing:15.226270px;}
.ws48{word-spacing:15.307566px;}
.ws13c{word-spacing:15.345823px;}
.ws160{word-spacing:15.371261px;}
.ws1a{word-spacing:15.377692px;}
.ws10e{word-spacing:15.379298px;}
.ws136{word-spacing:15.522762px;}
.ws1c{word-spacing:15.524023px;}
.ws65{word-spacing:15.608840px;}
.ws143{word-spacing:15.613622px;}
.ws42{word-spacing:15.618404px;}
.ws107{word-spacing:15.627968px;}
.ws58{word-spacing:15.632750px;}
.ws72{word-spacing:15.642315px;}
.ws59{word-spacing:15.666225px;}
.ws164{word-spacing:15.671007px;}
.ws63{word-spacing:15.685354px;}
.ws76{word-spacing:15.747521px;}
.wsf6{word-spacing:15.776214px;}
.ws68{word-spacing:15.780996px;}
.wse6{word-spacing:15.809689px;}
.ws5f{word-spacing:15.833599px;}
.ws47{word-spacing:15.852728px;}
.ws49{word-spacing:15.857510px;}
.ws55{word-spacing:15.867074px;}
.ws29{word-spacing:15.894155px;}
.wsa8{word-spacing:15.900549px;}
.ws11d{word-spacing:15.910113px;}
.ws195{word-spacing:15.924460px;}
.ws32{word-spacing:15.957934px;}
.wse7{word-spacing:15.962717px;}
.ws6a{word-spacing:15.977063px;}
.ws44{word-spacing:15.986627px;}
.ws4b{word-spacing:15.991409px;}
.ws67{word-spacing:15.996191px;}
.wsa0{word-spacing:16.005756px;}
.ws4c{word-spacing:16.020102px;}
.ws27{word-spacing:16.023271px;}
.ws148{word-spacing:16.053577px;}
.ws11c{word-spacing:16.067923px;}
.ws54{word-spacing:16.072705px;}
.ws51{word-spacing:16.077487px;}
.ws46{word-spacing:16.082270px;}
.ws144{word-spacing:16.101398px;}
.ws132{word-spacing:16.101950px;}
.ws53{word-spacing:16.106180px;}
.wsf5{word-spacing:16.125309px;}
.ws45{word-spacing:16.130091px;}
.ws5d{word-spacing:16.134873px;}
.wsf7{word-spacing:16.149219px;}
.ws5c{word-spacing:16.163566px;}
.ws3f{word-spacing:16.173130px;}
.wsef{word-spacing:16.201823px;}
.wsf1{word-spacing:16.216169px;}
.ws40{word-spacing:16.240080px;}
.ws43{word-spacing:16.283119px;}
.ws4a{word-spacing:16.316593px;}
.ws50{word-spacing:16.321376px;}
.ws9a{word-spacing:16.330940px;}
.ws4f{word-spacing:16.350068px;}
.ws41{word-spacing:16.354850px;}
.ws10d{word-spacing:16.359633px;}
.ws16a{word-spacing:16.450493px;}
.ws9b{word-spacing:16.493532px;}
.ws1d{word-spacing:16.496695px;}
.ws13a{word-spacing:16.507878px;}
.ws66{word-spacing:16.603521px;}
.ws171{word-spacing:16.775677px;}
.ws11b{word-spacing:16.852191px;}
.ws25{word-spacing:16.862523px;}
.ws11a{word-spacing:16.866537px;}
.ws169{word-spacing:16.895230px;}
.ws100{word-spacing:16.914358px;}
.ws8c{word-spacing:17.000437px;}
.ws170{word-spacing:17.033911px;}
.wsea{word-spacing:17.105643px;}
.wsa5{word-spacing:17.163029px;}
.ws9f{word-spacing:17.220414px;}
.ws82{word-spacing:17.253889px;}
.ws103{word-spacing:17.326142px;}
.ws126{word-spacing:17.488213px;}
.ws122{word-spacing:17.502559px;}
.ws196{word-spacing:17.583855px;}
.ws17e{word-spacing:17.760794px;}
.wse8{word-spacing:17.789486px;}
.ws10b{word-spacing:17.866000px;}
.ws121{word-spacing:17.923386px;}
.wsa9{word-spacing:17.932950px;}
.ws147{word-spacing:18.038157px;}
.wsf2{word-spacing:18.085978px;}
.ws8b{word-spacing:18.133799px;}
.ws125{word-spacing:18.191184px;}
.ws2b{word-spacing:18.278493px;}
.ws2c{word-spacing:18.399002px;}
.ws7d{word-spacing:18.411162px;}
.ws7c{word-spacing:18.449419px;}
.ws8a{word-spacing:18.545061px;}
.wsd5{word-spacing:18.577114px;}
.wsd4{word-spacing:18.745440px;}
.ws2d{word-spacing:18.786349px;}
.ws17f{word-spacing:18.803296px;}
.ws13d{word-spacing:18.841553px;}
.ws0{word-spacing:19.229579px;}
.ws106{word-spacing:19.262379px;}
.ws12c{word-spacing:19.544524px;}
.ws12b{word-spacing:19.611474px;}
.ws181{word-spacing:19.625820px;}
.ws12e{word-spacing:19.697552px;}
.ws12d{word-spacing:19.721463px;}
.ws104{word-spacing:20.027016px;}
.ws142{word-spacing:20.056211px;}
.ws137{word-spacing:20.104032px;}
.ws89{word-spacing:20.223585px;}
.wse0{word-spacing:20.362267px;}
.ws183{word-spacing:20.390960px;}
.ws182{word-spacing:20.486602px;}
.ws178{word-spacing:20.572680px;}
.ws141{word-spacing:20.759183px;}
.ws174{word-spacing:20.807004px;}
.ws10c{word-spacing:20.816568px;}
.ws176{word-spacing:20.840479px;}
.ws177{word-spacing:20.921775px;}
.ws175{word-spacing:20.931339px;}
.ws197{word-spacing:21.007853px;}
.ws10a{word-spacing:21.022200px;}
.ws4{word-spacing:21.080870px;}
.ws6{word-spacing:21.283632px;}
.ws22{word-spacing:21.317019px;}
.wsec{word-spacing:21.514758px;}
.ws198{word-spacing:21.567361px;}
.ws9e{word-spacing:21.663004px;}
.ws7{word-spacing:21.670146px;}
.ws120{word-spacing:21.682132px;}
.wseb{word-spacing:21.710825px;}
.ws19c{word-spacing:21.828874px;}
.ws74{word-spacing:21.926020px;}
.wsed{word-spacing:22.265551px;}
.ws166{word-spacing:22.342065px;}
.ws8d{word-spacing:22.633774px;}
.wsee{word-spacing:22.691159px;}
.ws168{word-spacing:22.743763px;}
.ws165{word-spacing:22.834623px;}
.ws167{word-spacing:23.155025px;}
.ws80{word-spacing:23.757572px;}
.wsa6{word-spacing:24.020589px;}
.ws6c{word-spacing:24.116231px;}
.ws21{word-spacing:24.295290px;}
.ws139{word-spacing:24.297952px;}
.ws79{word-spacing:24.431851px;}
.wsa7{word-spacing:24.450980px;}
.ws138{word-spacing:24.556186px;}
.ws17d{word-spacing:25.335672px;}
.ws1{word-spacing:25.661646px;}
.ws19d{word-spacing:26.197709px;}
.ws19e{word-spacing:26.297174px;}
.ws2{word-spacing:26.968937px;}
.ws3{word-spacing:27.170680px;}
.ws26{word-spacing:27.385461px;}
.ws94{word-spacing:27.698039px;}
.ws35{word-spacing:28.043045px;}
.ws69{word-spacing:28.224072px;}
.ws98{word-spacing:28.597078px;}
.ws95{word-spacing:30.289948px;}
.ws96{word-spacing:32.872293px;}
.ws6b{word-spacing:34.560381px;}
.ws14e{word-spacing:132.889867px;}
.ws15e{word-spacing:133.249474px;}
.ws153{word-spacing:152.549626px;}
.ws152{word-spacing:153.173198px;}
.ws154{word-spacing:154.152552px;}
.ws15d{word-spacing:157.063834px;}
.ws15c{word-spacing:157.718011px;}
.ws15b{word-spacing:160.265861px;}
.wsd3{word-spacing:267.612197px;}
.ws18a{word-spacing:269.184518px;}
.ws189{word-spacing:269.838696px;}
.ws188{word-spacing:270.297768px;}
.ws18b{word-spacing:271.147051px;}
.ws18f{word-spacing:271.801229px;}
.ws18e{word-spacing:273.109584px;}
.ws191{word-spacing:273.538051px;}
.ws190{word-spacing:275.072117px;}
.ws18d{word-spacing:275.401118px;}
.wsce{word-spacing:276.380472px;}
.wscc{word-spacing:276.843370px;}
.wsbd{word-spacing:281.942894px;}
.wsc4{word-spacing:311.319677px;}
.wsbf{word-spacing:314.586739px;}
.wsdd{word-spacing:570.504077px;}
.ws133{word-spacing:571.483430px;}
.ws14b{word-spacing:693.022742px;}
.ws14c{word-spacing:693.347918px;}
._16{margin-left:-1571.698238px;}
._32{margin-left:-12.896098px;}
._4e{margin-left:-7.947883px;}
._37{margin-left:-6.910163px;}
._3{margin-left:-5.043695px;}
._8{margin-left:-4.026969px;}
._5{margin-left:-2.915107px;}
._1{margin-left:-1.428337px;}
._2{width:1.153207px;}
._15{width:2.859322px;}
._18{width:3.926891px;}
._f{width:5.193883px;}
._38{width:8.087226px;}
._a{width:9.154310px;}
._1d{width:10.172270px;}
._b{width:12.059416px;}
._6{width:13.699474px;}
._4{width:15.189020px;}
._7{width:16.759954px;}
._12{width:17.786081px;}
._36{width:18.919128px;}
._c{width:20.003252px;}
._17{width:21.454998px;}
._14{width:23.008527px;}
._39{width:24.020679px;}
._9{width:25.603663px;}
._4f{width:26.789390px;}
._0{width:28.171323px;}
._13{width:29.505680px;}
._33{width:34.803572px;}
._29{width:37.020331px;}
._28{width:38.435803px;}
._1c{width:50.126837px;}
._11{width:51.895566px;}
._1a{width:87.727411px;}
._1b{width:100.498512px;}
._1e{width:109.155845px;}
._19{width:123.991522px;}
._1f{width:129.144955px;}
._3e{width:133.939658px;}
._23{width:151.459330px;}
._42{width:152.587882px;}
._e{width:155.777559px;}
._47{width:157.158424px;}
._d{width:161.420461px;}
._4c{width:163.128459px;}
._4a{width:165.227378px;}
._10{width:166.714267px;}
._43{width:168.871189px;}
._46{width:170.998918px;}
._49{width:172.523083px;}
._48{width:174.988158px;}
._3f{width:176.455800px;}
._45{width:205.337379px;}
._2b{width:207.661219px;}
._44{width:209.401867px;}
._4d{width:213.665162px;}
._24{width:223.158725px;}
._4b{width:225.928271px;}
._40{width:228.491800px;}
._41{width:245.018203px;}
._3b{width:251.446599px;}
._34{width:257.914301px;}
._51{width:269.062099px;}
._30{width:276.881626px;}
._26{width:298.764058px;}
._2d{width:307.524682px;}
._35{width:318.381734px;}
._31{width:327.249475px;}
._2f{width:328.681638px;}
._21{width:333.083515px;}
._3d{width:337.145178px;}
._55{width:338.421615px;}
._56{width:339.908386px;}
._25{width:349.135733px;}
._57{width:350.527368px;}
._54{width:355.279646px;}
._2c{width:357.896357px;}
._2a{width:359.298651px;}
._22{width:362.410565px;}
._53{width:378.141432px;}
._3c{width:380.472799px;}
._52{width:384.411590px;}
._2e{width:416.921539px;}
._27{width:423.887957px;}
._3a{width:461.470651px;}
._50{width:479.435669px;}
._20{width:556.712789px;}
.fc1{color:rgb(51,126,177);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.607200px;}
.fs5{font-size:25.500000px;}
.fse{font-size:31.876200px;}
.fsd{font-size:33.473400px;}
.fs6{font-size:38.256000px;}
.fs11{font-size:40.167600px;}
.fs4{font-size:40.757400px;}
.fs3{font-size:42.237600px;}
.fs8{font-size:43.038600px;}
.fs9{font-size:47.821200px;}
.fs7{font-size:53.797800px;}
.fs0{font-size:57.384600px;}
.fs10{font-size:57.385200px;}
.fsf{font-size:59.775600px;}
.fsc{font-size:59.776200px;}
.fs2{font-size:63.363000px;}
.fs1{font-size:80.697000px;}
.fsa{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y178{bottom:77.215650px;}
.y179{bottom:78.831450px;}
.y177{bottom:78.831724px;}
.y82{bottom:78.994548px;}
.yed{bottom:79.001824px;}
.y3a{bottom:79.002247px;}
.y1a2{bottom:79.002352px;}
.y6d{bottom:79.004235px;}
.y176{bottom:90.056700px;}
.y175{bottom:91.672350px;}
.yec{bottom:91.842450px;}
.y39{bottom:91.842874px;}
.y6c{bottom:94.736214px;}
.y81{bottom:94.897489px;}
.y1a1{bottom:95.499471px;}
.y38{bottom:104.683500px;}
.y6b{bottom:110.468193px;}
.y80{bottom:110.800429px;}
.y1a0{bottom:111.231450px;}
.y19e{bottom:111.231932px;}
.y19f{bottom:116.503950px;}
.y173{bottom:117.184200px;}
.y174{bottom:121.436250px;}
.y19c{bottom:125.688150px;}
.y6a{bottom:126.115290px;}
.y7f{bottom:126.703369px;}
.y19d{bottom:127.729050px;}
.y19b{bottom:127.732089px;}
.y3e{bottom:129.515224px;}
.y171{bottom:130.110150px;}
.y172{bottom:134.362200px;}
.y69{bottom:141.847269px;}
.y3d{bottom:142.355850px;}
.y7e{bottom:142.606309px;}
.y16f{bottom:142.952718px;}
.y19a{bottom:144.229208px;}
.y3c{bottom:146.437800px;}
.y170{bottom:147.203100px;}
.y3b{bottom:155.196750px;}
.y16e{bottom:155.793344px;}
.y7d{bottom:158.509249px;}
.y199{bottom:160.726326px;}
.y16d{bottom:168.633971px;}
.y68{bottom:173.226345px;}
.y7c{bottom:174.412189px;}
.y198{bottom:177.223445px;}
.y16c{bottom:181.474597px;}
.y7b{bottom:190.229051px;}
.y197{bottom:193.720563px;}
.y16b{bottom:194.315224px;}
.y7a{bottom:206.131991px;}
.y16a{bottom:207.155850px;}
.y196{bottom:210.217682px;}
.y34{bottom:212.257667px;}
.y168{bottom:219.996750px;}
.y67{bottom:220.593244px;}
.y79{bottom:222.034931px;}
.y169{bottom:224.248650px;}
.y33{bottom:226.629332px;}
.y193{bottom:226.714027px;}
.y195{bottom:226.714800px;}
.y194{bottom:232.072350px;}
.y166{bottom:232.922700px;}
.y66{bottom:236.325223px;}
.y167{bottom:237.174750px;}
.y78{bottom:237.937871px;}
.y32{bottom:241.000996px;}
.y192{bottom:243.212341px;}
.y164{bottom:245.763750px;}
.y165{bottom:250.015650px;}
.y65{bottom:251.972320px;}
.y31{bottom:255.372661px;}
.y162{bottom:258.606098px;}
.y163{bottom:262.856550px;}
.y64{bottom:267.704299px;}
.y77{bottom:269.316947px;}
.y30{bottom:269.659324px;}
.y161{bottom:271.446725px;}
.y191{bottom:272.551050px;}
.y18d{bottom:274.591417px;}
.y190{bottom:274.592100px;}
.y18a{bottom:279.269250px;}
.y189{bottom:281.310150px;}
.y18f{bottom:281.480250px;}
.y63{bottom:283.436278px;}
.y2f{bottom:284.030989px;}
.y18e{bottom:284.286450px;}
.y160{bottom:284.287351px;}
.y18b{bottom:289.473900px;}
.y18c{bottom:289.814100px;}
.y188{bottom:295.681800px;}
.y15f{bottom:297.127978px;}
.y187{bottom:297.637650px;}
.y2e{bottom:298.402653px;}
.y62{bottom:299.168257px;}
.y15e{bottom:309.968604px;}
.y2d{bottom:312.689316px;}
.y1f{bottom:313.203412px;}
.y61{bottom:314.815354px;}
.y76{bottom:318.809498px;}
.y15d{bottom:322.894350px;}
.y186{bottom:323.404650px;}
.y184{bottom:325.360185px;}
.y185{bottom:325.360500px;}
.y1e{bottom:326.129158px;}
.y2c{bottom:327.060981px;}
.y75{bottom:334.712438px;}
.y15b{bottom:335.735250px;}
.y1d{bottom:338.969784px;}
.y15c{bottom:339.987300px;}
.y2b{bottom:341.432645px;}
.y183{bottom:341.858499px;}
.y60{bottom:346.280508px;}
.y159{bottom:348.576300px;}
.y74{bottom:350.615378px;}
.y1c{bottom:351.810410px;}
.y15a{bottom:352.828200px;}
.y2a{bottom:355.719309px;}
.y182{bottom:358.356813px;}
.y157{bottom:361.417200px;}
.y133{bottom:362.099402px;}
.y1b{bottom:364.651037px;}
.y158{bottom:365.669100px;}
.y73{bottom:366.518318px;}
.y29{bottom:370.090973px;}
.y155{bottom:374.259698px;}
.y181{bottom:374.853932px;}
.y1a{bottom:377.491663px;}
.y132{bottom:377.916264px;}
.y156{bottom:378.510150px;}
.y72{bottom:382.421258px;}
.y28{bottom:384.462638px;}
.y154{bottom:387.100325px;}
.y19{bottom:390.332290px;}
.y180{bottom:391.351050px;}
.y17f{bottom:391.351532px;}
.y5f{bottom:393.562524px;}
.y131{bottom:393.733126px;}
.yeb{bottom:395.857187px;}
.y71{bottom:398.238120px;}
.y27{bottom:398.834302px;}
.y153{bottom:399.940951px;}
.y18{bottom:403.172916px;}
.y17d{bottom:407.848577px;}
.y17e{bottom:407.848650px;}
.y5e{bottom:409.294503px;}
.y130{bottom:409.549988px;}
.yea{bottom:411.760127px;}
.y152{bottom:412.781578px;}
.y26{bottom:413.120965px;}
.y70{bottom:414.141060px;}
.y17{bottom:416.013542px;}
.y17c{bottom:424.431774px;}
.y5d{bottom:424.941600px;}
.y12f{bottom:425.366850px;}
.y12e{bottom:425.367188px;}
.ye8{bottom:425.706900px;}
.y151{bottom:425.707324px;}
.y5c{bottom:426.132150px;}
.y25{bottom:427.492630px;}
.ye7{bottom:427.747581px;}
.ye9{bottom:427.747950px;}
.y6f{bottom:430.044000px;}
.y16{bottom:436.423118px;}
.y150{bottom:438.547950px;}
.y5b{bottom:440.674053px;}
.y12d{bottom:441.184050px;}
.y12c{bottom:441.185163px;}
.y24{bottom:441.864294px;}
.ye6{bottom:443.394677px;}
.y15{bottom:448.583744px;}
.y14e{bottom:451.388730px;}
.y14f{bottom:455.640750px;}
.y17b{bottom:455.810850px;}
.y23{bottom:456.150958px;}
.y5a{bottom:456.321150px;}
.y12b{bottom:457.002025px;}
.ye4{bottom:457.341600px;}
.y59{bottom:457.511700px;}
.ye3{bottom:459.381960px;}
.ye5{bottom:459.382500px;}
.yc1{bottom:461.253724px;}
.y14{bottom:461.424371px;}
.y22{bottom:470.522622px;}
.y58{bottom:472.053927px;}
.ybf{bottom:472.563600px;}
.y12a{bottom:472.818887px;}
.ye1{bottom:473.329050px;}
.yc0{bottom:474.094350px;}
.ybe{bottom:474.094624px;}
.y13{bottom:474.264997px;}
.ye2{bottom:475.284900px;}
.ye0{bottom:475.284948px;}
.y14c{bottom:475.369950px;}
.y14d{bottom:476.900700px;}
.y14b{bottom:476.900784px;}
.y21{bottom:484.894287px;}
.ybc{bottom:485.404500px;}
.ybd{bottom:486.935250px;}
.ybb{bottom:486.935454px;}
.y1c0{bottom:486.940763px;}
.y12{bottom:487.105624px;}
.y57{bottom:487.701024px;}
.y129{bottom:488.635749px;}
.yb9{bottom:498.245550px;}
.y20{bottom:499.180950px;}
.yba{bottom:499.861200px;}
.yb8{bottom:499.861777px;}
.y11{bottom:499.946250px;}
.yde{bottom:500.116350px;}
.y1d4{bottom:500.458134px;}
.yd9{bottom:501.136800px;}
.ydd{bottom:502.072200px;}
.y14a{bottom:502.497874px;}
.yd8{bottom:503.092800px;}
.y56{bottom:503.433003px;}
.ydf{bottom:510.321150px;}
.y1d3{bottom:512.363401px;}
.y1bf{bottom:512.537852px;}
.y149{bottom:515.338500px;}
.ydc{bottom:516.444000px;}
.ydb{bottom:518.399850px;}
.y55{bottom:519.080100px;}
.y128{bottom:520.014825px;}
.y54{bottom:520.270650px;}
.yd6{bottom:521.029431px;}
.yd7{bottom:521.036100px;}
.y1d2{bottom:524.353788px;}
.yb6{bottom:525.373747px;}
.y1be{bottom:525.378479px;}
.yda{bottom:527.158950px;}
.y10{bottom:529.624950px;}
.y1d1{bottom:536.259055px;}
.yb2{bottom:538.214168px;}
.yb5{bottom:538.214374px;}
.y1bd{bottom:538.219105px;}
.yd5{bottom:543.650054px;}
.y1d0{bottom:548.249442px;}
.yb3{bottom:549.524250px;}
.y53{bottom:550.462184px;}
.yb1{bottom:551.054795px;}
.yb4{bottom:551.055000px;}
.yb7{bottom:551.055956px;}
.y1bc{bottom:551.059732px;}
.yd4{bottom:559.552994px;}
.y1cf{bottom:560.239829px;}
.y125{bottom:563.385068px;}
.yb0{bottom:563.895421px;}
.y1bb{bottom:563.900358px;}
.y122{bottom:566.021850px;}
.y120{bottom:566.022407px;}
.y11d{bottom:568.062900px;}
.y123{bottom:569.423400px;}
.y148{bottom:569.934058px;}
.y11c{bottom:570.103800px;}
.y127{bottom:570.188850px;}
.y121{bottom:571.464450px;}
.y1ce{bottom:572.145096px;}
.y126{bottom:573.079621px;}
.yd3{bottom:575.455934px;}
.yaf{bottom:576.822124px;}
.y1ba{bottom:576.826104px;}
.y11e{bottom:578.267550px;}
.yf{bottom:578.437924px;}
.y124{bottom:578.607750px;}
.y11f{bottom:578.607752px;}
.y147{bottom:582.774684px;}
.y1cd{bottom:584.135483px;}
.y11b{bottom:584.390400px;}
.y11a{bottom:586.431300px;}
.yac{bottom:589.662217px;}
.yae{bottom:589.662750px;}
.y1b9{bottom:589.666730px;}
.yd2{bottom:591.187913px;}
.ye{bottom:591.278550px;}
.yad{bottom:593.914800px;}
.yd{bottom:595.530600px;}
.y146{bottom:595.615310px;}
.y1cc{bottom:596.040750px;}
.yaa{bottom:602.503800px;}
.ya8{bottom:602.504580px;}
.y1b8{bottom:602.507357px;}
.yc{bottom:604.119724px;}
.y52{bottom:606.503848px;}
.ya9{bottom:606.755700px;}
.yd1{bottom:607.090853px;}
.y119{bottom:608.031788px;}
.yab{bottom:615.344426px;}
.ya7{bottom:615.345206px;}
.y1b7{bottom:615.347983px;}
.yb{bottom:616.960350px;}
.y145{bottom:619.596750px;}
.ya{bottom:621.212400px;}
.y144{bottom:621.212554px;}
.y51{bottom:622.235827px;}
.yd0{bottom:623.078676px;}
.y117{bottom:623.847375px;}
.y118{bottom:623.848650px;}
.ya6{bottom:628.185833px;}
.y1cb{bottom:628.185980px;}
.y1b6{bottom:628.188610px;}
.y50{bottom:637.882924px;}
.ycf{bottom:638.981616px;}
.y8{bottom:639.580872px;}
.ya5{bottom:641.026459px;}
.y1b5{bottom:641.029236px;}
.y9{bottom:646.554150px;}
.y143{bottom:646.724524px;}
.y112{bottom:649.104841px;}
.y111{bottom:649.529953px;}
.y10f{bottom:653.612400px;}
.y10d{bottom:653.612470px;}
.y116{bottom:653.612486px;}
.y4f{bottom:653.614903px;}
.ya4{bottom:653.868042px;}
.y1b4{bottom:653.869862px;}
.yce{bottom:654.884556px;}
.y10e{bottom:657.099000px;}
.y110{bottom:657.949350px;}
.y5{bottom:658.969950px;}
.y142{bottom:659.565150px;}
.y10a{bottom:661.946250px;}
.y109{bottom:663.902100px;}
.y114{bottom:663.987150px;}
.y7{bottom:665.773050px;}
.y6{bottom:666.028200px;}
.ya3{bottom:666.708668px;}
.y1b3{bottom:666.710489px;}
.y113{bottom:666.878550px;}
.y4e{bottom:669.262000px;}
.ycd{bottom:670.787496px;}
.y10b{bottom:672.150900px;}
.y10c{bottom:672.491084px;}
.y115{bottom:672.491100px;}
.y1ca{bottom:675.298231px;}
.y108{bottom:678.273900px;}
.ya2{bottom:679.634414px;}
.y1b2{bottom:679.636235px;}
.y107{bottom:680.229750px;}
.y4d{bottom:684.993979px;}
.ycc{bottom:686.775319px;}
.y1c9{bottom:690.945328px;}
.y4{bottom:691.881482px;}
.y141{bottom:691.883819px;}
.ya1{bottom:692.475041px;}
.y1b1{bottom:692.476861px;}
.y4c{bottom:700.641076px;}
.y106{bottom:701.828972px;}
.ycb{bottom:702.678259px;}
.ya0{bottom:705.316624px;}
.y1b0{bottom:705.317488px;}
.y140{bottom:708.891428px;}
.y4b{bottom:716.373055px;}
.y9e{bottom:716.541450px;}
.y105{bottom:717.645834px;}
.y3{bottom:717.732766px;}
.y9f{bottom:718.157250px;}
.y9d{bottom:718.157264px;}
.y1af{bottom:718.158114px;}
.yca{bottom:718.581199px;}
.y1c8{bottom:722.324403px;}
.y13f{bottom:725.899038px;}
.y1ae{bottom:730.998740px;}
.y9c{bottom:730.998847px;}
.y4a{bottom:732.020152px;}
.yc9{bottom:734.569022px;}
.y13e{bottom:741.631017px;}
.y100{bottom:741.967686px;}
.yff{bottom:742.138647px;}
.y2{bottom:743.584050px;}
.y1ad{bottom:743.839367px;}
.y9b{bottom:743.839474px;}
.y49{bottom:747.752131px;}
.yfc{bottom:748.346250px;}
.y104{bottom:750.386618px;}
.yfb{bottom:750.386976px;}
.yfd{bottom:750.387150px;}
.yfe{bottom:753.788700px;}
.y99{bottom:755.149350px;}
.y1ac{bottom:756.679993px;}
.y9a{bottom:756.680100px;}
.y98{bottom:756.681001px;}
.y13d{bottom:758.638627px;}
.y48{bottom:763.399228px;}
.y102{bottom:764.418750px;}
.yc8{bottom:765.948098px;}
.y101{bottom:767.224950px;}
.y93{bottom:767.990400px;}
.y1c7{bottom:769.436654px;}
.y1ab{bottom:769.520620px;}
.y94{bottom:769.521000px;}
.y92{bottom:769.521204px;}
.y97{bottom:769.521628px;}
.y103{bottom:773.432850px;}
.y13c{bottom:775.731120px;}
.y1{bottom:776.154150px;}
.y47{bottom:779.131207px;}
.y1aa{bottom:782.446366px;}
.y91{bottom:782.446950px;}
.y96{bottom:782.447374px;}
.y8f{bottom:782.450345px;}
.y1c6{bottom:785.083751px;}
.y90{bottom:786.699000px;}
.yfa{bottom:787.209300px;}
.yf9{bottom:787.210610px;}
.y13b{bottom:792.738729px;}
.y46{bottom:794.778304px;}
.y1a9{bottom:795.286992px;}
.y95{bottom:795.288000px;}
.y8e{bottom:795.290971px;}
.yc7{bottom:797.327174px;}
.y1c5{bottom:800.815730px;}
.yf8{bottom:803.027472px;}
.y1a8{bottom:808.127618px;}
.y8d{bottom:808.131598px;}
.y13a{bottom:809.746339px;}
.y45{bottom:810.510283px;}
.y1c4{bottom:816.462827px;}
.yf7{bottom:818.844334px;}
.y1a7{bottom:820.968245px;}
.y8c{bottom:820.972224px;}
.y36{bottom:821.394684px;}
.y44{bottom:826.242262px;}
.y139{bottom:826.838832px;}
.y1a6{bottom:833.809828px;}
.yf6{bottom:834.576313px;}
.y43{bottom:841.889359px;}
.y138{bottom:843.846441px;}
.y86{bottom:846.482281px;}
.y89{bottom:846.483238px;}
.y1a5{bottom:846.651410px;}
.yc6{bottom:847.160451px;}
.y1c3{bottom:847.841903px;}
.yf4{bottom:854.985600px;}
.yf3{bottom:856.941450px;}
.yf1{bottom:856.941747px;}
.y42{bottom:857.621338px;}
.y85{bottom:859.408027px;}
.y88{bottom:859.408984px;}
.y8b{bottom:859.409940px;}
.y137{bottom:860.854051px;}
.yc5{bottom:863.063391px;}
.y37{bottom:864.680100px;}
.yf5{bottom:865.190250px;}
.y1a3{bottom:870.632850px;}
.yf2{bottom:871.313100px;}
.y1a4{bottom:872.248500px;}
.y84{bottom:872.248654px;}
.y87{bottom:872.249610px;}
.y8a{bottom:872.250566px;}
.y41{bottom:873.268435px;}
.yf0{bottom:873.269100px;}
.y136{bottom:877.946544px;}
.yc4{bottom:878.795370px;}
.y135{bottom:893.593640px;}
.yc3{bottom:894.698310px;}
.yef{bottom:894.784388px;}
.y1c2{bottom:894.954153px;}
.y83{bottom:897.760624px;}
.y35{bottom:904.903650px;}
.y40{bottom:910.601250px;}
.y3f{bottom:945.382350px;}
.y6e{bottom:945.467400px;}
.y1c1{bottom:945.469753px;}
.yc2{bottom:945.470436px;}
.y1d5{bottom:945.471054px;}
.y17a{bottom:945.472354px;}
.yee{bottom:945.472488px;}
.y134{bottom:945.472912px;}
.h14{height:1.912848px;}
.hd{height:15.682838px;}
.h21{height:20.119500px;}
.h7{height:20.808000px;}
.h6{height:25.975799px;}
.h16{height:26.010979px;}
.h12{height:26.128848px;}
.h13{height:27.314294px;}
.h1d{height:27.436507px;}
.h11{height:30.183984px;}
.h9{height:31.202724px;}
.h8{height:31.216896px;}
.h1c{height:34.287800px;}
.h5{height:34.465882px;}
.ha{height:35.119498px;}
.hb{height:35.256180px;}
.h1e{height:37.659195px;}
.he{height:37.730927px;}
.hf{height:39.022099px;}
.h24{height:39.194092px;}
.h1b{height:39.196348px;}
.h23{height:39.196826px;}
.h19{height:40.826735px;}
.h10{height:42.859535px;}
.h2{height:46.825834px;}
.h4{height:51.704208px;}
.h3{height:65.848752px;}
.hc{height:68.287450px;}
.h20{height:70.316299px;}
.h15{height:71.336899px;}
.h18{height:71.337499px;}
.h1f{height:71.677099px;}
.h22{height:71.849092px;}
.h1a{height:94.097775px;}
.h17{height:104.331512px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.574000px;}
.x0{left:0.000000px;}
.x14{left:59.187450px;}
.x1{left:68.031450px;}
.x71{left:72.538500px;}
.x8{left:74.324400px;}
.x19{left:76.959159px;}
.x10{left:77.981100px;}
.x2c{left:80.362200px;}
.xf{left:82.913400px;}
.x11{left:84.784200px;}
.x12{left:86.229383px;}
.x35{left:97.454977px;}
.x49{left:103.918050px;}
.x36{left:106.129050px;}
.x7f{left:109.275600px;}
.x37{left:113.442450px;}
.x39{left:114.547950px;}
.x80{left:119.140200px;}
.x5b{left:123.051900px;}
.x7b{left:124.922850px;}
.x4b{left:130.365300px;}
.x50{left:132.321300px;}
.x84{left:133.426800px;}
.x5d{left:137.338500px;}
.x4a{left:138.529050px;}
.x5c{left:142.696050px;}
.x38{left:143.801550px;}
.x3a{left:144.907050px;}
.x4c{left:148.989000px;}
.x81{left:151.454796px;}
.x3b{left:152.900700px;}
.x1a{left:154.940351px;}
.x51{left:157.067700px;}
.x1c{left:159.873900px;}
.x22{left:164.211000px;}
.x52{left:165.316500px;}
.x1d{left:167.017350px;}
.x4d{left:168.633000px;}
.x20{left:171.269250px;}
.x23{left:177.051900px;}
.x1e{left:178.582650px;}
.x13{left:180.369207px;}
.x21{left:183.004650px;}
.x82{left:184.025100px;}
.x1b{left:185.470800px;}
.x3c{left:187.001550px;}
.x1f{left:189.382650px;}
.x5e{left:192.018900px;}
.x6b{left:193.379400px;}
.x53{left:195.675450px;}
.x3d{left:197.461350px;}
.xd{left:200.181900px;}
.x24{left:203.073148px;}
.x83{left:205.625100px;}
.x33{left:206.900700px;}
.x5f{left:210.302250px;}
.x3e{left:211.747950px;}
.x55{left:213.618900px;}
.x29{left:217.445550px;}
.x60{left:218.636100px;}
.x2{left:221.187300px;}
.x34{left:222.462900px;}
.x15{left:224.844000px;}
.x25{left:229.351050px;}
.x3{left:230.371650px;}
.x61{left:231.647083px;}
.x26{left:233.603100px;}
.x2a{left:236.324400px;}
.x4{left:237.344850px;}
.x7a{left:240.406200px;}
.x54{left:246.104261px;}
.x6e{left:249.930600px;}
.x62{left:253.672350px;}
.x7{left:260.305500px;}
.x6c{left:262.346567px;}
.x68{left:271.615650px;}
.x56{left:276.037650px;}
.x63{left:284.031403px;}
.x27{left:289.558950px;}
.xe{left:292.875600px;}
.x28{left:293.896050px;}
.x64{left:296.702250px;}
.x9{left:301.889700px;}
.x57{left:306.396262px;}
.x66{left:307.672350px;}
.x58{left:312.094350px;}
.x65{left:315.070800px;}
.xa{left:319.067239px;}
.x47{left:323.319600px;}
.x6d{left:327.231450px;}
.x59{left:330.037650px;}
.x48{left:332.418750px;}
.x5{left:336.330600px;}
.x2b{left:340.072218px;}
.x16{left:341.092436px;}
.x6{left:343.388850px;}
.x8c{left:353.338500px;}
.x8d{left:356.995200px;}
.x67{left:358.355850px;}
.x2d{left:362.862900px;}
.x8e{left:364.053450px;}
.x86{left:367.284900px;}
.x8f{left:369.496050px;}
.x87{left:372.642450px;}
.x2e{left:375.873900px;}
.x5a{left:392.541600px;}
.x90{left:399.599850px;}
.x91{left:403.766850px;}
.xc{left:405.212299px;}
.x44{left:408.869250px;}
.x92{left:413.716350px;}
.x45{left:419.669100px;}
.x46{left:429.278550px;}
.x4f{left:439.228200px;}
.x17{left:445.520573px;}
.xb{left:446.796020px;}
.x7c{left:451.728900px;}
.x7d{left:481.152600px;}
.x69{left:483.703800px;}
.x7e{left:486.340050px;}
.x6a{left:494.673900px;}
.x74{left:504.028200px;}
.x75{left:511.936950px;}
.x40{left:512.957400px;}
.x41{left:517.294350px;}
.x42{left:531.240750px;}
.x18{left:536.852549px;}
.x43{left:540.680100px;}
.x31{left:542.210850px;}
.x32{left:551.735250px;}
.x88{left:567.297450px;}
.x89{left:570.954150px;}
.x8a{left:577.757400px;}
.x76{left:581.839200px;}
.x77{left:589.747950px;}
.x6f{left:594.850200px;}
.x2f{left:597.061200px;}
.x70{left:601.823400px;}
.x30{left:605.565150px;}
.x8b{left:612.028200px;}
.x78{left:613.473900px;}
.x72{left:615.854850px;}
.x3f{left:617.980950px;}
.x73{left:620.787300px;}
.x4e{left:626.484900px;}
.x79{left:629.716350px;}
.x85{left:634.478550px;}
@media print{
.v5{vertical-align:-81.942158pt;}
.v6{vertical-align:-67.123962pt;}
.v1{vertical-align:-59.867892pt;}
.v7{vertical-align:-1.211470pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:27.817067pt;}
.v2{vertical-align:28.724267pt;}
.v3{vertical-align:58.052811pt;}
.v4{vertical-align:81.942158pt;}
.ls82{letter-spacing:-4.255024pt;}
.ls48{letter-spacing:-2.298761pt;}
.ls4a{letter-spacing:-2.006315pt;}
.ls49{letter-spacing:-1.965508pt;}
.ls47{letter-spacing:-1.925600pt;}
.ls3d{letter-spacing:-1.368749pt;}
.ls94{letter-spacing:-1.142400pt;}
.ls4b{letter-spacing:-1.135778pt;}
.ls1e{letter-spacing:-1.075446pt;}
.ls83{letter-spacing:-0.843332pt;}
.ls89{letter-spacing:-0.634667pt;}
.lse{letter-spacing:-0.554287pt;}
.lsc{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.027204pt;}
.ls7{letter-spacing:0.030605pt;}
.ls16{letter-spacing:0.038257pt;}
.ls84{letter-spacing:0.051008pt;}
.ls32{letter-spacing:0.054409pt;}
.ls4{letter-spacing:0.061210pt;}
.ls10{letter-spacing:0.068012pt;}
.ls13{letter-spacing:0.072263pt;}
.ls1{letter-spacing:0.078212pt;}
.ls15{letter-spacing:0.085015pt;}
.ls50{letter-spacing:0.102019pt;}
.ls14{letter-spacing:0.106269pt;}
.lsa{letter-spacing:0.122419pt;}
.ls95{letter-spacing:0.165780pt;}
.ls17{letter-spacing:0.187034pt;}
.lsf{letter-spacing:0.204037pt;}
.ls33{letter-spacing:0.231236pt;}
.ls11{letter-spacing:0.242294pt;}
.ls4f{letter-spacing:0.259297pt;}
.ls77{letter-spacing:0.480337pt;}
.ls96{letter-spacing:0.608695pt;}
.ls41{letter-spacing:0.612111pt;}
.ls37{letter-spacing:0.650368pt;}
.ls1f{letter-spacing:0.688625pt;}
.ls42{letter-spacing:0.735384pt;}
.ls2a{letter-spacing:0.748136pt;}
.ls3c{letter-spacing:0.752387pt;}
.ls45{letter-spacing:0.765139pt;}
.ls58{letter-spacing:0.769390pt;}
.ls46{letter-spacing:0.773641pt;}
.ls3b{letter-spacing:0.782142pt;}
.ls21{letter-spacing:0.807647pt;}
.ls29{letter-spacing:0.820399pt;}
.ls43{letter-spacing:0.828901pt;}
.ls2d{letter-spacing:0.833152pt;}
.ls27{letter-spacing:0.841653pt;}
.ls2e{letter-spacing:0.845904pt;}
.ls25{letter-spacing:0.850155pt;}
.ls26{letter-spacing:0.854405pt;}
.ls38{letter-spacing:0.858656pt;}
.ls1b{letter-spacing:0.862907pt;}
.ls59{letter-spacing:0.867158pt;}
.ls3f{letter-spacing:0.871409pt;}
.ls2f{letter-spacing:0.875659pt;}
.ls4c{letter-spacing:0.884161pt;}
.ls40{letter-spacing:0.892662pt;}
.ls18{letter-spacing:0.896913pt;}
.ls24{letter-spacing:0.913916pt;}
.ls44{letter-spacing:0.918167pt;}
.ls20{letter-spacing:0.922418pt;}
.ls39{letter-spacing:0.926669pt;}
.ls1c{letter-spacing:0.930919pt;}
.ls23{letter-spacing:0.939421pt;}
.ls22{letter-spacing:0.947922pt;}
.ls3e{letter-spacing:0.952173pt;}
.ls28{letter-spacing:0.964926pt;}
.ls1d{letter-spacing:0.981929pt;}
.ls3a{letter-spacing:1.100950pt;}
.ls80{letter-spacing:1.133632pt;}
.ls7e{letter-spacing:1.425223pt;}
.ls7d{letter-spacing:1.700309pt;}
.ls7b{letter-spacing:1.993613pt;}
.ls8{letter-spacing:2.070127pt;}
.ls86{letter-spacing:2.194133pt;}
.ls88{letter-spacing:2.452533pt;}
.ls35{letter-spacing:3.342724pt;}
.ls79{letter-spacing:4.008479pt;}
.ls12{letter-spacing:4.016981pt;}
.ls4d{letter-spacing:4.029733pt;}
.ls72{letter-spacing:4.080742pt;}
.ls8e{letter-spacing:4.157256pt;}
.ls75{letter-spacing:4.178510pt;}
.ls63{letter-spacing:4.306033pt;}
.ls7a{letter-spacing:4.323036pt;}
.ls71{letter-spacing:4.467563pt;}
.ls2c{letter-spacing:4.905392pt;}
.ls85{letter-spacing:5.563273pt;}
.ls87{letter-spacing:5.852318pt;}
.ls1a{letter-spacing:6.924510pt;}
.ls19{letter-spacing:7.213562pt;}
.ls62{letter-spacing:8.378274pt;}
.ls61{letter-spacing:8.518550pt;}
.ls4e{letter-spacing:8.667327pt;}
.ls30{letter-spacing:11.303373pt;}
.ls9{letter-spacing:11.395187pt;}
.ls66{letter-spacing:11.447333pt;}
.ls36{letter-spacing:11.463198pt;}
.ls8a{letter-spacing:11.558413pt;}
.ls31{letter-spacing:11.660429pt;}
.ls54{letter-spacing:12.072196pt;}
.ls5{letter-spacing:12.157926pt;}
.ls56{letter-spacing:12.654552pt;}
.ls6c{letter-spacing:12.981862pt;}
.ls6{letter-spacing:13.037827pt;}
.ls0{letter-spacing:13.564727pt;}
.ls2{letter-spacing:13.853773pt;}
.ls5f{letter-spacing:14.333608pt;}
.ls8b{letter-spacing:14.397369pt;}
.ls60{letter-spacing:14.435626pt;}
.ls34{letter-spacing:14.567885pt;}
.ls90{letter-spacing:14.659699pt;}
.ls91{letter-spacing:14.727710pt;}
.ls5b{letter-spacing:15.647785pt;}
.ls53{letter-spacing:15.936149pt;}
.ls5a{letter-spacing:16.076425pt;}
.ls55{letter-spacing:16.229453pt;}
.ls52{letter-spacing:16.390982pt;}
.ls57{letter-spacing:16.807558pt;}
.ls51{letter-spacing:17.390422pt;}
.ls5c{letter-spacing:17.680686pt;}
.lsd{letter-spacing:18.372546pt;}
.ls3{letter-spacing:18.401239pt;}
.ls5d{letter-spacing:18.401598pt;}
.ls5e{letter-spacing:18.554626pt;}
.ls76{letter-spacing:23.268733pt;}
.ls2b{letter-spacing:26.622593pt;}
.ls65{letter-spacing:35.125226pt;}
.ls6a{letter-spacing:35.125739pt;}
.ls67{letter-spacing:37.159803pt;}
.ls69{letter-spacing:46.754256pt;}
.ls64{letter-spacing:51.115549pt;}
.ls93{letter-spacing:63.859368pt;}
.ls81{letter-spacing:65.024080pt;}
.ls92{letter-spacing:68.513965pt;}
.ls70{letter-spacing:113.044104pt;}
.ls7f{letter-spacing:122.779337pt;}
.ls74{letter-spacing:145.316622pt;}
.ls7c{letter-spacing:151.595329pt;}
.ls8c{letter-spacing:189.217298pt;}
.ls73{letter-spacing:192.700308pt;}
.ls8f{letter-spacing:261.613231pt;}
.ls6e{letter-spacing:278.179108pt;}
.ls68{letter-spacing:318.008855pt;}
.ls6d{letter-spacing:340.402630pt;}
.ls6b{letter-spacing:1094.289332pt;}
.ls6f{letter-spacing:1170.752242pt;}
.ls78{letter-spacing:1244.889980pt;}
.ls8d{letter-spacing:1643.204444pt;}
.ws150{word-spacing:-11.592418pt;}
.wscd{word-spacing:-11.497203pt;}
.wse{word-spacing:-2.510564pt;}
.ws34{word-spacing:-2.112634pt;}
.ws110{word-spacing:-2.036120pt;}
.ws111{word-spacing:-1.742817pt;}
.ws118{word-spacing:-1.454977pt;}
.ws119{word-spacing:-1.163387pt;}
.ws93{word-spacing:-1.007433pt;}
.ws7e{word-spacing:-0.939421pt;}
.ws83{word-spacing:-0.692876pt;}
.ws3e{word-spacing:-0.042508pt;}
.ws1f{word-spacing:-0.038257pt;}
.ws5{word-spacing:-0.037545pt;}
.wsd{word-spacing:-0.034005pt;}
.ws161{word-spacing:-0.022667pt;}
.ws3d{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.520282pt;}
.ws134{word-spacing:0.809327pt;}
.ws5e{word-spacing:1.032938pt;}
.wsb9{word-spacing:2.264755pt;}
.ws158{word-spacing:5.366042pt;}
.ws155{word-spacing:5.532668pt;}
.ws15f{word-spacing:5.539469pt;}
.ws15a{word-spacing:5.835315pt;}
.ws157{word-spacing:5.842116pt;}
.ws77{word-spacing:5.938330pt;}
.ws159{word-spacing:5.940732pt;}
.ws151{word-spacing:5.944132pt;}
.ws156{word-spacing:5.947533pt;}
.ws78{word-spacing:6.537689pt;}
.ws17a{word-spacing:6.716222pt;}
.ws11f{word-spacing:7.043531pt;}
.ws11e{word-spacing:7.064785pt;}
.ws124{word-spacing:7.149801pt;}
.wscf{word-spacing:7.889237pt;}
.wsd8{word-spacing:8.018458pt;}
.wsae{word-spacing:8.185084pt;}
.wsd6{word-spacing:8.266697pt;}
.ws91{word-spacing:8.429284pt;}
.wsd2{word-spacing:8.453726pt;}
.wsdc{word-spacing:8.474129pt;}
.ws14d{word-spacing:8.497933pt;}
.ws14a{word-spacing:8.555742pt;}
.wsc3{word-spacing:8.715567pt;}
.wsb5{word-spacing:8.739371pt;}
.wsc9{word-spacing:8.746172pt;}
.wsc2{word-spacing:8.756373pt;}
.wsd7{word-spacing:8.878793pt;}
.ws1a3{word-spacing:9.320862pt;}
.wsab{word-spacing:9.394209pt;}
.ws1a0{word-spacing:9.426278pt;}
.ws97{word-spacing:9.440968pt;}
.ws1a2{word-spacing:9.484087pt;}
.wsaa{word-spacing:9.581243pt;}
.ws2a{word-spacing:9.598564pt;}
.wse1{word-spacing:9.670509pt;}
.ws131{word-spacing:9.705122pt;}
.ws90{word-spacing:9.785280pt;}
.ws180{word-spacing:9.921305pt;}
.ws99{word-spacing:9.934057pt;}
.ws8{word-spacing:9.970364pt;}
.ws17b{word-spacing:9.976565pt;}
.wsf4{word-spacing:9.997819pt;}
.ws73{word-spacing:10.027574pt;}
.ws19f{word-spacing:10.062178pt;}
.ws8e{word-spacing:10.108339pt;}
.ws179{word-spacing:10.129593pt;}
.ws62{word-spacing:10.133844pt;}
.ws13b{word-spacing:10.146596pt;}
.ws1a4{word-spacing:10.181197pt;}
.ws17c{word-spacing:10.210358pt;}
.ws8f{word-spacing:10.227361pt;}
.ws61{word-spacing:10.261367pt;}
.ws9{word-spacing:10.262810pt;}
.ws60{word-spacing:10.405893pt;}
.ws130{word-spacing:10.456640pt;}
.ws56{word-spacing:10.507912pt;}
.ws7b{word-spacing:10.533416pt;}
.ws12a{word-spacing:10.541918pt;}
.ws102{word-spacing:10.550419pt;}
.wsc{word-spacing:10.551855pt;}
.ws5a{word-spacing:10.558921pt;}
.ws4d{word-spacing:10.592927pt;}
.ws4e{word-spacing:10.597178pt;}
.ws52{word-spacing:10.605679pt;}
.ws123{word-spacing:10.639686pt;}
.wse4{word-spacing:10.652438pt;}
.ws184{word-spacing:10.660940pt;}
.ws7a{word-spacing:10.665190pt;}
.ws135{word-spacing:10.669441pt;}
.ws187{word-spacing:10.698078pt;}
.ws127{word-spacing:10.779961pt;}
.wse5{word-spacing:10.822469pt;}
.ws7f{word-spacing:10.835221pt;}
.ws71{word-spacing:10.864977pt;}
.ws129{word-spacing:10.873478pt;}
.wsb6{word-spacing:10.885107pt;}
.ws117{word-spacing:10.907484pt;}
.wsf3{word-spacing:10.954243pt;}
.ws128{word-spacing:10.962744pt;}
.ws36{word-spacing:10.963319pt;}
.wsc5{word-spacing:11.010927pt;}
.ws14{word-spacing:11.014327pt;}
.wsd0{word-spacing:11.024529pt;}
.ws11{word-spacing:11.038131pt;}
.ws86{word-spacing:11.043509pt;}
.ws39{word-spacing:11.044932pt;}
.ws101{word-spacing:11.047760pt;}
.ws88{word-spacing:11.060512pt;}
.ws24{word-spacing:11.067615pt;}
.ws13{word-spacing:11.085739pt;}
.wsc0{word-spacing:11.089139pt;}
.ws193{word-spacing:11.092540pt;}
.ws81{word-spacing:11.140147pt;}
.ws105{word-spacing:11.153749pt;}
.ws108{word-spacing:11.158280pt;}
.wsbb{word-spacing:11.160550pt;}
.ws163{word-spacing:11.170752pt;}
.ws146{word-spacing:11.171032pt;}
.wsb4{word-spacing:11.177553pt;}
.ws162{word-spacing:11.191155pt;}
.ws87{word-spacing:11.200788pt;}
.ws10{word-spacing:11.201357pt;}
.wsb{word-spacing:11.221760pt;}
.wsfa{word-spacing:11.226292pt;}
.wsc1{word-spacing:11.235362pt;}
.ws17{word-spacing:11.242163pt;}
.wsbc{word-spacing:11.269367pt;}
.ws1a1{word-spacing:11.272768pt;}
.ws18{word-spacing:11.276169pt;}
.wsb7{word-spacing:11.279569pt;}
.ws38{word-spacing:11.282970pt;}
.wsdf{word-spacing:11.285803pt;}
.wsad{word-spacing:11.293171pt;}
.wsb8{word-spacing:11.306773pt;}
.wsc6{word-spacing:11.323776pt;}
.ws37{word-spacing:11.330577pt;}
.ws12{word-spacing:11.333978pt;}
.ws192{word-spacing:11.337378pt;}
.wsbe{word-spacing:11.357781pt;}
.wsca{word-spacing:11.361182pt;}
.ws145{word-spacing:11.362317pt;}
.ws6f{word-spacing:11.366568pt;}
.ws3b{word-spacing:11.367983pt;}
.wsf{word-spacing:11.384986pt;}
.wsb0{word-spacing:11.388386pt;}
.wsac{word-spacing:11.391787pt;}
.ws149{word-spacing:11.395187pt;}
.wsa{word-spacing:11.425792pt;}
.wsaf{word-spacing:11.429193pt;}
.ws15{word-spacing:11.432593pt;}
.ws18c{word-spacing:11.442795pt;}
.wsba{word-spacing:11.452996pt;}
.ws16{word-spacing:11.469999pt;}
.wsb1{word-spacing:11.480201pt;}
.ws109{word-spacing:11.481339pt;}
.wsc8{word-spacing:11.483601pt;}
.ws19{word-spacing:11.504004pt;}
.wsb2{word-spacing:11.507405pt;}
.wsf0{word-spacing:11.519596pt;}
.wsd1{word-spacing:11.538010pt;}
.ws3a{word-spacing:11.541410pt;}
.ws6d{word-spacing:11.545100pt;}
.wsa3{word-spacing:11.553602pt;}
.wsfc{word-spacing:11.566354pt;}
.ws14f{word-spacing:11.626423pt;}
.wsb3{word-spacing:11.646827pt;}
.ws70{word-spacing:11.651370pt;}
.wsfd{word-spacing:11.706630pt;}
.ws172{word-spacing:11.715131pt;}
.wscb{word-spacing:11.793050pt;}
.wsc7{word-spacing:11.796450pt;}
.ws57{word-spacing:11.800147pt;}
.wse9{word-spacing:11.876661pt;}
.ws2e{word-spacing:11.901608pt;}
.ws6e{word-spacing:11.944673pt;}
.ws19a{word-spacing:11.995682pt;}
.ws1e{word-spacing:12.043157pt;}
.ws9c{word-spacing:12.046692pt;}
.ws33{word-spacing:12.076447pt;}
.wsf9{word-spacing:12.110453pt;}
.ws28{word-spacing:12.131147pt;}
.wsfe{word-spacing:12.203970pt;}
.ws112{word-spacing:12.225224pt;}
.ws16e{word-spacing:12.280484pt;}
.ws30{word-spacing:12.330081pt;}
.ws2f{word-spacing:12.372163pt;}
.wsa4{word-spacing:12.395255pt;}
.ws140{word-spacing:12.497274pt;}
.wsff{word-spacing:12.501524pt;}
.ws5b{word-spacing:12.569537pt;}
.ws199{word-spacing:12.578038pt;}
.ws1b{word-spacing:12.590225pt;}
.wsa1{word-spacing:12.633298pt;}
.ws194{word-spacing:12.637549pt;}
.wsf8{word-spacing:12.646051pt;}
.ws16f{word-spacing:12.701311pt;}
.ws9d{word-spacing:12.714063pt;}
.wsdb{word-spacing:12.734997pt;}
.ws115{word-spacing:12.765072pt;}
.ws185{word-spacing:12.790577pt;}
.ws31{word-spacing:12.812113pt;}
.ws16c{word-spacing:12.828834pt;}
.ws116{word-spacing:12.837335pt;}
.wsa2{word-spacing:12.841586pt;}
.ws20{word-spacing:12.850370pt;}
.ws114{word-spacing:12.875592pt;}
.ws16d{word-spacing:12.905348pt;}
.ws23{word-spacing:12.923057pt;}
.ws16b{word-spacing:12.977611pt;}
.ws113{word-spacing:13.020119pt;}
.ws173{word-spacing:13.117887pt;}
.wsd9{word-spacing:13.139661pt;}
.ws84{word-spacing:13.143391pt;}
.ws19b{word-spacing:13.168896pt;}
.wsde{word-spacing:13.190150pt;}
.wse2{word-spacing:13.202902pt;}
.ws64{word-spacing:13.232657pt;}
.wsda{word-spacing:13.238276pt;}
.ws10f{word-spacing:13.241159pt;}
.ws13f{word-spacing:13.292168pt;}
.wsfb{word-spacing:13.296419pt;}
.ws13e{word-spacing:13.364431pt;}
.ws85{word-spacing:13.372933pt;}
.ws12f{word-spacing:13.440945pt;}
.wse3{word-spacing:13.457948pt;}
.ws75{word-spacing:13.508958pt;}
.ws186{word-spacing:13.521710pt;}
.ws92{word-spacing:13.534462pt;}
.ws48{word-spacing:13.606725pt;}
.ws13c{word-spacing:13.640732pt;}
.ws160{word-spacing:13.663343pt;}
.ws1a{word-spacing:13.669059pt;}
.ws10e{word-spacing:13.670487pt;}
.ws136{word-spacing:13.798010pt;}
.ws1c{word-spacing:13.799132pt;}
.ws65{word-spacing:13.874524pt;}
.ws143{word-spacing:13.878775pt;}
.ws42{word-spacing:13.883026pt;}
.ws107{word-spacing:13.891527pt;}
.ws58{word-spacing:13.895778pt;}
.ws72{word-spacing:13.904280pt;}
.ws59{word-spacing:13.925533pt;}
.ws164{word-spacing:13.929784pt;}
.ws63{word-spacing:13.942537pt;}
.ws76{word-spacing:13.997797pt;}
.wsf6{word-spacing:14.023301pt;}
.ws68{word-spacing:14.027552pt;}
.wse6{word-spacing:14.053057pt;}
.ws5f{word-spacing:14.074311pt;}
.ws47{word-spacing:14.091314pt;}
.ws49{word-spacing:14.095564pt;}
.ws55{word-spacing:14.104066pt;}
.ws29{word-spacing:14.128138pt;}
.wsa8{word-spacing:14.133821pt;}
.ws11d{word-spacing:14.142323pt;}
.ws195{word-spacing:14.155075pt;}
.ws32{word-spacing:14.184831pt;}
.wse7{word-spacing:14.189081pt;}
.ws6a{word-spacing:14.201834pt;}
.ws44{word-spacing:14.210335pt;}
.ws4b{word-spacing:14.214586pt;}
.ws67{word-spacing:14.218837pt;}
.wsa0{word-spacing:14.227338pt;}
.ws4c{word-spacing:14.240091pt;}
.ws27{word-spacing:14.242907pt;}
.ws148{word-spacing:14.269846pt;}
.ws11c{word-spacing:14.282598pt;}
.ws54{word-spacing:14.286849pt;}
.ws51{word-spacing:14.291100pt;}
.ws46{word-spacing:14.295351pt;}
.ws144{word-spacing:14.312354pt;}
.ws132{word-spacing:14.312845pt;}
.ws53{word-spacing:14.316605pt;}
.wsf5{word-spacing:14.333608pt;}
.ws45{word-spacing:14.337858pt;}
.ws5d{word-spacing:14.342109pt;}
.wsf7{word-spacing:14.354862pt;}
.ws5c{word-spacing:14.367614pt;}
.ws3f{word-spacing:14.376115pt;}
.wsef{word-spacing:14.401620pt;}
.wsf1{word-spacing:14.414372pt;}
.ws40{word-spacing:14.435626pt;}
.ws43{word-spacing:14.473883pt;}
.ws4a{word-spacing:14.503639pt;}
.ws50{word-spacing:14.507889pt;}
.ws9a{word-spacing:14.516391pt;}
.ws4f{word-spacing:14.533394pt;}
.ws41{word-spacing:14.537645pt;}
.ws10d{word-spacing:14.541896pt;}
.ws16a{word-spacing:14.622660pt;}
.ws9b{word-spacing:14.660917pt;}
.ws1d{word-spacing:14.663729pt;}
.ws13a{word-spacing:14.673670pt;}
.ws66{word-spacing:14.758685pt;}
.ws171{word-spacing:14.911713pt;}
.ws11b{word-spacing:14.979725pt;}
.ws25{word-spacing:14.988910pt;}
.ws11a{word-spacing:14.992478pt;}
.ws169{word-spacing:15.017982pt;}
.ws100{word-spacing:15.034985pt;}
.ws8c{word-spacing:15.111499pt;}
.ws170{word-spacing:15.141255pt;}
.wsea{word-spacing:15.205016pt;}
.wsa5{word-spacing:15.256025pt;}
.ws9f{word-spacing:15.307035pt;}
.ws82{word-spacing:15.336790pt;}
.ws103{word-spacing:15.401015pt;}
.ws126{word-spacing:15.545078pt;}
.ws122{word-spacing:15.557830pt;}
.ws196{word-spacing:15.630094pt;}
.ws17e{word-spacing:15.787372pt;}
.wse8{word-spacing:15.812877pt;}
.ws10b{word-spacing:15.880889pt;}
.ws121{word-spacing:15.931898pt;}
.wsa9{word-spacing:15.940400pt;}
.ws147{word-spacing:16.033917pt;}
.wsf2{word-spacing:16.076425pt;}
.ws8b{word-spacing:16.118932pt;}
.ws125{word-spacing:16.169942pt;}
.ws2b{word-spacing:16.247550pt;}
.ws2c{word-spacing:16.354668pt;}
.ws7d{word-spacing:16.365477pt;}
.ws7c{word-spacing:16.399484pt;}
.ws8a{word-spacing:16.484499pt;}
.wsd5{word-spacing:16.512990pt;}
.wsd4{word-spacing:16.662613pt;}
.ws2d{word-spacing:16.698977pt;}
.ws17f{word-spacing:16.714041pt;}
.ws13d{word-spacing:16.748047pt;}
.ws0{word-spacing:17.092960pt;}
.ws106{word-spacing:17.122115pt;}
.ws12c{word-spacing:17.372911pt;}
.ws12b{word-spacing:17.432421pt;}
.ws181{word-spacing:17.445174pt;}
.ws12e{word-spacing:17.508935pt;}
.ws12d{word-spacing:17.530189pt;}
.ws104{word-spacing:17.801792pt;}
.ws142{word-spacing:17.827743pt;}
.ws137{word-spacing:17.870251pt;}
.ws89{word-spacing:17.976520pt;}
.wse0{word-spacing:18.099793pt;}
.ws183{word-spacing:18.125297pt;}
.ws182{word-spacing:18.210313pt;}
.ws178{word-spacing:18.286827pt;}
.ws141{word-spacing:18.452607pt;}
.ws174{word-spacing:18.495115pt;}
.ws10c{word-spacing:18.503616pt;}
.ws176{word-spacing:18.524870pt;}
.ws177{word-spacing:18.597133pt;}
.ws175{word-spacing:18.605635pt;}
.ws197{word-spacing:18.673647pt;}
.ws10a{word-spacing:18.686400pt;}
.ws4{word-spacing:18.738551pt;}
.ws6{word-spacing:18.918784pt;}
.ws22{word-spacing:18.948461pt;}
.wsec{word-spacing:19.124229pt;}
.ws198{word-spacing:19.170988pt;}
.ws9e{word-spacing:19.256003pt;}
.ws7{word-spacing:19.262352pt;}
.ws120{word-spacing:19.273006pt;}
.wseb{word-spacing:19.298511pt;}
.ws19c{word-spacing:19.403443pt;}
.ws74{word-spacing:19.489796pt;}
.wsed{word-spacing:19.791601pt;}
.ws166{word-spacing:19.859613pt;}
.ws8d{word-spacing:20.118910pt;}
.wsee{word-spacing:20.169919pt;}
.ws168{word-spacing:20.216678pt;}
.ws165{word-spacing:20.297443pt;}
.ws167{word-spacing:20.582244pt;}
.ws80{word-spacing:21.117842pt;}
.wsa6{word-spacing:21.351634pt;}
.ws6c{word-spacing:21.436650pt;}
.ws21{word-spacing:21.595813pt;}
.ws139{word-spacing:21.598179pt;}
.ws79{word-spacing:21.717201pt;}
.wsa7{word-spacing:21.734204pt;}
.ws138{word-spacing:21.827721pt;}
.ws17d{word-spacing:22.520597pt;}
.ws1{word-spacing:22.810352pt;}
.ws19d{word-spacing:23.286852pt;}
.ws19e{word-spacing:23.375266pt;}
.ws2{word-spacing:23.972389pt;}
.ws3{word-spacing:24.151715pt;}
.ws26{word-spacing:24.342632pt;}
.ws94{word-spacing:24.620479pt;}
.ws35{word-spacing:24.927151pt;}
.ws69{word-spacing:25.088064pt;}
.ws98{word-spacing:25.419625pt;}
.ws95{word-spacing:26.924398pt;}
.ws96{word-spacing:29.219816pt;}
.ws6b{word-spacing:30.720339pt;}
.ws14e{word-spacing:118.124326pt;}
.ws15e{word-spacing:118.443977pt;}
.ws153{word-spacing:135.599667pt;}
.ws152{word-spacing:136.153954pt;}
.ws154{word-spacing:137.024491pt;}
.ws15d{word-spacing:139.612297pt;}
.ws15c{word-spacing:140.193788pt;}
.ws15b{word-spacing:142.458543pt;}
.wsd3{word-spacing:237.877508pt;}
.ws18a{word-spacing:239.275127pt;}
.ws189{word-spacing:239.856619pt;}
.ws188{word-spacing:240.264683pt;}
.ws18b{word-spacing:241.019601pt;}
.ws18f{word-spacing:241.601092pt;}
.ws18e{word-spacing:242.764075pt;}
.ws191{word-spacing:243.144934pt;}
.ws190{word-spacing:244.508548pt;}
.ws18d{word-spacing:244.800994pt;}
.wsce{word-spacing:245.671531pt;}
.wscc{word-spacing:246.082995pt;}
.wsbd{word-spacing:250.615906pt;}
.wsc4{word-spacing:276.728602pt;}
.wsbf{word-spacing:279.632657pt;}
.wsdd{word-spacing:507.114735pt;}
.ws133{word-spacing:507.985271pt;}
.ws14b{word-spacing:616.020215pt;}
.ws14c{word-spacing:616.309261pt;}
._16{margin-left:-1397.065101pt;}
._32{margin-left:-11.463198pt;}
._4e{margin-left:-7.064785pt;}
._37{margin-left:-6.142367pt;}
._3{margin-left:-4.483284pt;}
._8{margin-left:-3.579528pt;}
._5{margin-left:-2.591206pt;}
._1{margin-left:-1.269633pt;}
._2{width:1.025073pt;}
._15{width:2.541620pt;}
._18{width:3.490570pt;}
._f{width:4.616785pt;}
._38{width:7.188646pt;}
._a{width:8.137165pt;}
._1d{width:9.042018pt;}
._b{width:10.719481pt;}
._6{width:12.177310pt;}
._4{width:13.501351pt;}
._7{width:14.897737pt;}
._12{width:15.809850pt;}
._36{width:16.817003pt;}
._c{width:17.780668pt;}
._17{width:19.071109pt;}
._14{width:20.452024pt;}
._39{width:21.351715pt;}
._9{width:22.758812pt;}
._4f{width:23.812791pt;}
._0{width:25.041176pt;}
._13{width:26.227271pt;}
._33{width:30.936509pt;}
._29{width:32.906961pt;}
._28{width:34.165158pt;}
._1c{width:44.557188pt;}
._11{width:46.129392pt;}
._1a{width:77.979920pt;}
._1b{width:89.332011pt;}
._1e{width:97.027418pt;}
._19{width:110.214686pt;}
._1f{width:114.795516pt;}
._3e{width:119.057474pt;}
._23{width:134.630515pt;}
._42{width:135.633673pt;}
._e{width:138.468941pt;}
._47{width:139.696377pt;}
._d{width:143.484854pt;}
._4c{width:145.003075pt;}
._4a{width:146.868780pt;}
._10{width:148.190460pt;}
._43{width:150.107724pt;}
._46{width:151.999038pt;}
._49{width:153.353852pt;}
._48{width:155.545029pt;}
._3f{width:156.849600pt;}
._45{width:182.522115pt;}
._2b{width:184.587750pt;}
._44{width:186.134993pt;}
._4d{width:189.924589pt;}
._24{width:198.363311pt;}
._4b{width:200.825130pt;}
._40{width:203.103822pt;}
._41{width:217.793958pt;}
._3b{width:223.508088pt;}
._34{width:229.257156pt;}
._51{width:239.166310pt;}
._30{width:246.117001pt;}
._26{width:265.568051pt;}
._2d{width:273.355273pt;}
._35{width:283.005986pt;}
._31{width:290.888422pt;}
._2f{width:292.161456pt;}
._21{width:296.074236pt;}
._3d{width:299.684603pt;}
._55{width:300.819214pt;}
._56{width:302.140787pt;}
._25{width:310.342874pt;}
._57{width:311.579882pt;}
._54{width:315.804130pt;}
._2c{width:318.130095pt;}
._2a{width:319.376579pt;}
._22{width:322.142724pt;}
._53{width:336.125717pt;}
._3c{width:338.198044pt;}
._52{width:341.699191pt;}
._2e{width:370.596924pt;}
._27{width:376.789295pt;}
._3a{width:410.196134pt;}
._50{width:426.165039pt;}
._20{width:494.855812pt;}
.fsb{font-size:21.873067pt;}
.fs5{font-size:22.666667pt;}
.fse{font-size:28.334400pt;}
.fsd{font-size:29.754133pt;}
.fs6{font-size:34.005333pt;}
.fs11{font-size:35.704533pt;}
.fs4{font-size:36.228800pt;}
.fs3{font-size:37.544533pt;}
.fs8{font-size:38.256533pt;}
.fs9{font-size:42.507733pt;}
.fs7{font-size:47.820267pt;}
.fs0{font-size:51.008533pt;}
.fs10{font-size:51.009067pt;}
.fsf{font-size:53.133867pt;}
.fsc{font-size:53.134400pt;}
.fs2{font-size:56.322667pt;}
.fs1{font-size:71.730667pt;}
.fsa{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:68.636133pt;}
.y179{bottom:70.072400pt;}
.y177{bottom:70.072643pt;}
.y82{bottom:70.217376pt;}
.yed{bottom:70.223843pt;}
.y3a{bottom:70.224220pt;}
.y1a2{bottom:70.224313pt;}
.y6d{bottom:70.225986pt;}
.y176{bottom:80.050400pt;}
.y175{bottom:81.486533pt;}
.yec{bottom:81.637733pt;}
.y39{bottom:81.638110pt;}
.y6c{bottom:84.209968pt;}
.y81{bottom:84.353323pt;}
.y1a1{bottom:84.888418pt;}
.y38{bottom:93.052000pt;}
.y6b{bottom:98.193950pt;}
.y80{bottom:98.489270pt;}
.y1a0{bottom:98.872400pt;}
.y19e{bottom:98.872828pt;}
.y19f{bottom:103.559067pt;}
.y173{bottom:104.163733pt;}
.y174{bottom:107.943333pt;}
.y19c{bottom:111.722800pt;}
.y6a{bottom:112.102480pt;}
.y7f{bottom:112.625217pt;}
.y19d{bottom:113.536933pt;}
.y19b{bottom:113.539635pt;}
.y3e{bottom:115.124643pt;}
.y171{bottom:115.653467pt;}
.y172{bottom:119.433067pt;}
.y69{bottom:126.086461pt;}
.y3d{bottom:126.538533pt;}
.y7e{bottom:126.761163pt;}
.y16f{bottom:127.069083pt;}
.y19a{bottom:128.203740pt;}
.y3c{bottom:130.166933pt;}
.y170{bottom:130.847200pt;}
.y3b{bottom:137.952667pt;}
.y16e{bottom:138.482973pt;}
.y7d{bottom:140.897110pt;}
.y199{bottom:142.867845pt;}
.y16d{bottom:149.896863pt;}
.y68{bottom:153.978973pt;}
.y7c{bottom:155.033057pt;}
.y198{bottom:157.531951pt;}
.y16c{bottom:161.310753pt;}
.y7b{bottom:169.092490pt;}
.y197{bottom:172.196056pt;}
.y16b{bottom:172.724643pt;}
.y7a{bottom:183.228436pt;}
.y16a{bottom:184.138533pt;}
.y196{bottom:186.860161pt;}
.y34{bottom:188.673482pt;}
.y168{bottom:195.552667pt;}
.y67{bottom:196.082883pt;}
.y79{bottom:197.364383pt;}
.y169{bottom:199.332133pt;}
.y33{bottom:201.448295pt;}
.y193{bottom:201.523579pt;}
.y195{bottom:201.524267pt;}
.y194{bottom:206.286533pt;}
.y166{bottom:207.042400pt;}
.y66{bottom:210.066865pt;}
.y167{bottom:210.822000pt;}
.y78{bottom:211.500330pt;}
.y32{bottom:214.223108pt;}
.y192{bottom:216.188747pt;}
.y164{bottom:218.456667pt;}
.y165{bottom:222.236133pt;}
.y65{bottom:223.975395pt;}
.y31{bottom:226.997921pt;}
.y162{bottom:229.872087pt;}
.y163{bottom:233.650267pt;}
.y64{bottom:237.959377pt;}
.y77{bottom:239.392842pt;}
.y30{bottom:239.697177pt;}
.y161{bottom:241.285978pt;}
.y191{bottom:242.267600pt;}
.y18d{bottom:244.081259pt;}
.y190{bottom:244.081867pt;}
.y18a{bottom:248.239333pt;}
.y189{bottom:250.053467pt;}
.y18f{bottom:250.204667pt;}
.y63{bottom:251.943358pt;}
.y2f{bottom:252.471990pt;}
.y18e{bottom:252.699067pt;}
.y160{bottom:252.699868pt;}
.y18b{bottom:257.310133pt;}
.y18c{bottom:257.612533pt;}
.y188{bottom:262.828267pt;}
.y15f{bottom:264.113758pt;}
.y187{bottom:264.566800pt;}
.y2e{bottom:265.246803pt;}
.y62{bottom:265.927340pt;}
.y15e{bottom:275.527648pt;}
.y2d{bottom:277.946059pt;}
.y1f{bottom:278.403033pt;}
.y61{bottom:279.835870pt;}
.y76{bottom:283.386220pt;}
.y15d{bottom:287.017200pt;}
.y186{bottom:287.470800pt;}
.y184{bottom:289.209053pt;}
.y185{bottom:289.209333pt;}
.y1e{bottom:289.892585pt;}
.y2c{bottom:290.720872pt;}
.y75{bottom:297.522167pt;}
.y15b{bottom:298.431333pt;}
.y1d{bottom:301.306475pt;}
.y15c{bottom:302.210933pt;}
.y2b{bottom:303.495685pt;}
.y183{bottom:303.874221pt;}
.y60{bottom:307.804896pt;}
.y159{bottom:309.845600pt;}
.y74{bottom:311.658114pt;}
.y1c{bottom:312.720365pt;}
.y15a{bottom:313.625067pt;}
.y2a{bottom:316.194941pt;}
.y182{bottom:318.539389pt;}
.y157{bottom:321.259733pt;}
.y133{bottom:321.866135pt;}
.y1b{bottom:324.134255pt;}
.y158{bottom:325.039200pt;}
.y73{bottom:325.794060pt;}
.y29{bottom:328.969754pt;}
.y155{bottom:332.675287pt;}
.y181{bottom:333.203495pt;}
.y1a{bottom:335.548145pt;}
.y132{bottom:335.925568pt;}
.y156{bottom:336.453467pt;}
.y72{bottom:339.930007pt;}
.y28{bottom:341.744567pt;}
.y154{bottom:344.089178pt;}
.y19{bottom:346.962035pt;}
.y180{bottom:347.867600pt;}
.y17f{bottom:347.868028pt;}
.y5f{bottom:349.833355pt;}
.y131{bottom:349.985001pt;}
.yeb{bottom:351.873055pt;}
.y71{bottom:353.989440pt;}
.y27{bottom:354.519380pt;}
.y153{bottom:355.503068pt;}
.y18{bottom:358.375925pt;}
.y17d{bottom:362.532069pt;}
.y17e{bottom:362.532133pt;}
.y5e{bottom:363.817336pt;}
.y130{bottom:364.044434pt;}
.yea{bottom:366.009002pt;}
.y152{bottom:366.916958pt;}
.y26{bottom:367.218636pt;}
.y70{bottom:368.125387pt;}
.y17{bottom:369.789815pt;}
.y17c{bottom:377.272688pt;}
.y5d{bottom:377.725867pt;}
.y12f{bottom:378.103867pt;}
.y12e{bottom:378.104167pt;}
.ye8{bottom:378.406133pt;}
.y151{bottom:378.406510pt;}
.y5c{bottom:378.784133pt;}
.y25{bottom:379.993449pt;}
.ye7{bottom:380.220072pt;}
.ye9{bottom:380.220400pt;}
.y6f{bottom:382.261333pt;}
.y16{bottom:387.931661pt;}
.y150{bottom:389.820400pt;}
.y5b{bottom:391.710270pt;}
.y12d{bottom:392.163600pt;}
.y12c{bottom:392.164589pt;}
.y24{bottom:392.768262pt;}
.ye6{bottom:394.128602pt;}
.y15{bottom:398.741106pt;}
.y14e{bottom:401.234427pt;}
.y14f{bottom:405.014000pt;}
.y17b{bottom:405.165200pt;}
.y23{bottom:405.467518pt;}
.y5a{bottom:405.618800pt;}
.y12b{bottom:406.224022pt;}
.ye4{bottom:406.525867pt;}
.y59{bottom:406.677067pt;}
.ye3{bottom:408.339520pt;}
.ye5{bottom:408.340000pt;}
.yc1{bottom:410.003310pt;}
.y14{bottom:410.154996pt;}
.y22{bottom:418.242331pt;}
.y58{bottom:419.603491pt;}
.ybf{bottom:420.056533pt;}
.y12a{bottom:420.283455pt;}
.ye1{bottom:420.736933pt;}
.yc0{bottom:421.417200pt;}
.ybe{bottom:421.417443pt;}
.y13{bottom:421.568886pt;}
.ye2{bottom:422.475467pt;}
.ye0{bottom:422.475509pt;}
.y14c{bottom:422.551067pt;}
.y14d{bottom:423.911733pt;}
.y14b{bottom:423.911808pt;}
.y21{bottom:431.017144pt;}
.ybc{bottom:431.470667pt;}
.ybd{bottom:432.831333pt;}
.ybb{bottom:432.831515pt;}
.y1c0{bottom:432.836234pt;}
.y12{bottom:432.982777pt;}
.y57{bottom:433.512021pt;}
.y129{bottom:434.342888pt;}
.yb9{bottom:442.884933pt;}
.y20{bottom:443.716400pt;}
.yba{bottom:444.321067pt;}
.yb8{bottom:444.321580pt;}
.y11{bottom:444.396667pt;}
.yde{bottom:444.547867pt;}
.y1d4{bottom:444.851675pt;}
.yd9{bottom:445.454933pt;}
.ydd{bottom:446.286400pt;}
.y14a{bottom:446.664777pt;}
.yd8{bottom:447.193600pt;}
.y56{bottom:447.496003pt;}
.ydf{bottom:453.618800pt;}
.y1d3{bottom:455.434134pt;}
.y1bf{bottom:455.589202pt;}
.y149{bottom:458.078667pt;}
.ydc{bottom:459.061333pt;}
.ydb{bottom:460.799867pt;}
.y55{bottom:461.404533pt;}
.y128{bottom:462.235400pt;}
.y54{bottom:462.462800pt;}
.yd6{bottom:463.137272pt;}
.yd7{bottom:463.143200pt;}
.y1d2{bottom:466.092256pt;}
.yb6{bottom:466.998886pt;}
.y1be{bottom:467.003092pt;}
.yda{bottom:468.585733pt;}
.y10{bottom:470.777733pt;}
.y1d1{bottom:476.674716pt;}
.yb2{bottom:478.412594pt;}
.yb5{bottom:478.412777pt;}
.y1bd{bottom:478.416982pt;}
.yd5{bottom:483.244492pt;}
.y1d0{bottom:487.332837pt;}
.yb3{bottom:488.466000pt;}
.y53{bottom:489.299719pt;}
.yb1{bottom:489.826484pt;}
.yb4{bottom:489.826667pt;}
.yb7{bottom:489.827517pt;}
.y1bc{bottom:489.830873pt;}
.yd4{bottom:497.380439pt;}
.y1cf{bottom:497.990959pt;}
.y125{bottom:500.786727pt;}
.yb0{bottom:501.240374pt;}
.y1bb{bottom:501.244763pt;}
.y122{bottom:503.130533pt;}
.y120{bottom:503.131029pt;}
.y11d{bottom:504.944800pt;}
.y123{bottom:506.154133pt;}
.y148{bottom:506.608051pt;}
.y11c{bottom:506.758933pt;}
.y127{bottom:506.834533pt;}
.y121{bottom:507.968400pt;}
.y1ce{bottom:508.573419pt;}
.y126{bottom:509.404108pt;}
.yd3{bottom:511.516386pt;}
.yaf{bottom:512.730777pt;}
.y1ba{bottom:512.734315pt;}
.y11e{bottom:514.015600pt;}
.yf{bottom:514.167043pt;}
.y124{bottom:514.318000pt;}
.y11f{bottom:514.318001pt;}
.y147{bottom:518.021941pt;}
.y1cd{bottom:519.231540pt;}
.y11b{bottom:519.458133pt;}
.y11a{bottom:521.272267pt;}
.yac{bottom:524.144193pt;}
.yae{bottom:524.144667pt;}
.y1b9{bottom:524.148205pt;}
.yd2{bottom:525.500367pt;}
.ye{bottom:525.580933pt;}
.yad{bottom:527.924267pt;}
.yd{bottom:529.360533pt;}
.y146{bottom:529.435831pt;}
.y1cc{bottom:529.814000pt;}
.yaa{bottom:535.558933pt;}
.ya8{bottom:535.559627pt;}
.y1b8{bottom:535.562095pt;}
.yc{bottom:536.995310pt;}
.y52{bottom:539.114532pt;}
.ya9{bottom:539.338400pt;}
.yd1{bottom:539.636314pt;}
.y119{bottom:540.472701pt;}
.yab{bottom:546.972823pt;}
.ya7{bottom:546.973517pt;}
.y1b7{bottom:546.975985pt;}
.yb{bottom:548.409200pt;}
.y145{bottom:550.752667pt;}
.ya{bottom:552.188800pt;}
.y144{bottom:552.188937pt;}
.y51{bottom:553.098513pt;}
.yd0{bottom:553.847712pt;}
.y117{bottom:554.531000pt;}
.y118{bottom:554.532133pt;}
.ya6{bottom:558.387407pt;}
.y1cb{bottom:558.387538pt;}
.y1b6{bottom:558.389875pt;}
.y50{bottom:567.007044pt;}
.ycf{bottom:567.983659pt;}
.y8{bottom:568.516331pt;}
.ya5{bottom:569.801297pt;}
.y1b5{bottom:569.803765pt;}
.y9{bottom:574.714800pt;}
.y143{bottom:574.866243pt;}
.y112{bottom:576.982081pt;}
.y111{bottom:577.359958pt;}
.y10f{bottom:580.988800pt;}
.y10d{bottom:580.988862pt;}
.y116{bottom:580.988876pt;}
.y4f{bottom:580.991025pt;}
.ya4{bottom:581.216037pt;}
.y1b4{bottom:581.217655pt;}
.yce{bottom:582.119605pt;}
.y10e{bottom:584.088000pt;}
.y110{bottom:584.843867pt;}
.y5{bottom:585.751067pt;}
.y142{bottom:586.280133pt;}
.y10a{bottom:588.396667pt;}
.y109{bottom:590.135200pt;}
.y114{bottom:590.210800pt;}
.y7{bottom:591.798267pt;}
.y6{bottom:592.025067pt;}
.ya3{bottom:592.629927pt;}
.y1b3{bottom:592.631546pt;}
.y113{bottom:592.780933pt;}
.y4e{bottom:594.899556pt;}
.ycd{bottom:596.255552pt;}
.y10b{bottom:597.467467pt;}
.y10c{bottom:597.769853pt;}
.y115{bottom:597.769867pt;}
.y1ca{bottom:600.265094pt;}
.y108{bottom:602.910133pt;}
.ya2{bottom:604.119479pt;}
.y1b2{bottom:604.121098pt;}
.y107{bottom:604.648667pt;}
.y4d{bottom:608.883537pt;}
.ycc{bottom:610.466950pt;}
.y1c9{bottom:614.173625pt;}
.y4{bottom:615.005762pt;}
.y141{bottom:615.007839pt;}
.ya1{bottom:615.533370pt;}
.y1b1{bottom:615.534988pt;}
.y4c{bottom:622.792067pt;}
.y106{bottom:623.847975pt;}
.ycb{bottom:624.602897pt;}
.ya0{bottom:626.948110pt;}
.y1b0{bottom:626.948878pt;}
.y140{bottom:630.125714pt;}
.y4b{bottom:636.776049pt;}
.y9e{bottom:636.925733pt;}
.y105{bottom:637.907408pt;}
.y3{bottom:637.984681pt;}
.y9f{bottom:638.362000pt;}
.y9d{bottom:638.362013pt;}
.y1af{bottom:638.362768pt;}
.yca{bottom:638.738844pt;}
.y1c8{bottom:642.066136pt;}
.y13f{bottom:645.243589pt;}
.y1ae{bottom:649.776658pt;}
.y9c{bottom:649.776753pt;}
.y4a{bottom:650.684579pt;}
.yc9{bottom:652.950242pt;}
.y13e{bottom:659.227571pt;}
.y100{bottom:659.526832pt;}
.yff{bottom:659.678797pt;}
.y2{bottom:660.963600pt;}
.y1ad{bottom:661.190548pt;}
.y9b{bottom:661.190643pt;}
.y49{bottom:664.668561pt;}
.yfc{bottom:665.196667pt;}
.y104{bottom:667.010327pt;}
.yfb{bottom:667.010645pt;}
.yfd{bottom:667.010800pt;}
.yfe{bottom:670.034400pt;}
.y99{bottom:671.243867pt;}
.y1ac{bottom:672.604438pt;}
.y9a{bottom:672.604533pt;}
.y98{bottom:672.605334pt;}
.y13d{bottom:674.345446pt;}
.y48{bottom:678.577091pt;}
.y102{bottom:679.483333pt;}
.yc8{bottom:680.842753pt;}
.y101{bottom:681.977733pt;}
.y93{bottom:682.658133pt;}
.y1c7{bottom:683.943693pt;}
.y1ab{bottom:684.018329pt;}
.y94{bottom:684.018667pt;}
.y92{bottom:684.018848pt;}
.y97{bottom:684.019225pt;}
.y103{bottom:687.495867pt;}
.y13c{bottom:689.538773pt;}
.y1{bottom:689.914800pt;}
.y47{bottom:692.561073pt;}
.y1aa{bottom:695.507881pt;}
.y91{bottom:695.508400pt;}
.y96{bottom:695.508777pt;}
.y8f{bottom:695.511418pt;}
.y1c6{bottom:697.852223pt;}
.y90{bottom:699.288000pt;}
.yfa{bottom:699.741600pt;}
.yf9{bottom:699.742765pt;}
.y13b{bottom:704.656648pt;}
.y46{bottom:706.469603pt;}
.y1a9{bottom:706.921771pt;}
.y95{bottom:706.922667pt;}
.y8e{bottom:706.925308pt;}
.yc7{bottom:708.735265pt;}
.y1c5{bottom:711.836205pt;}
.yf8{bottom:713.802197pt;}
.y1a8{bottom:718.335661pt;}
.y8d{bottom:718.339198pt;}
.y13a{bottom:719.774524pt;}
.y45{bottom:720.453585pt;}
.y1c4{bottom:725.744735pt;}
.yf7{bottom:727.861630pt;}
.y1a7{bottom:729.749551pt;}
.y8c{bottom:729.753088pt;}
.y36{bottom:730.128608pt;}
.y44{bottom:734.437566pt;}
.y139{bottom:734.967850pt;}
.y1a6{bottom:741.164291pt;}
.yf6{bottom:741.845612pt;}
.y43{bottom:748.346097pt;}
.y138{bottom:750.085726pt;}
.y86{bottom:752.428694pt;}
.y89{bottom:752.429545pt;}
.y1a5{bottom:752.579031pt;}
.yc6{bottom:753.031512pt;}
.y1c3{bottom:753.637247pt;}
.yf4{bottom:759.987200pt;}
.yf3{bottom:761.725733pt;}
.yf1{bottom:761.725997pt;}
.y42{bottom:762.330078pt;}
.y85{bottom:763.918246pt;}
.y88{bottom:763.919097pt;}
.y8b{bottom:763.919947pt;}
.y137{bottom:765.203601pt;}
.yc5{bottom:767.167458pt;}
.y37{bottom:768.604533pt;}
.yf5{bottom:769.058000pt;}
.y1a3{bottom:773.895867pt;}
.yf2{bottom:774.500533pt;}
.y1a4{bottom:775.332000pt;}
.y84{bottom:775.332137pt;}
.y87{bottom:775.332987pt;}
.y8a{bottom:775.333837pt;}
.y41{bottom:776.238609pt;}
.yf0{bottom:776.239200pt;}
.y136{bottom:780.396928pt;}
.yc4{bottom:781.151440pt;}
.y135{bottom:794.305458pt;}
.yc3{bottom:795.287387pt;}
.yef{bottom:795.363901pt;}
.y1c2{bottom:795.514803pt;}
.y83{bottom:798.009443pt;}
.y35{bottom:804.358800pt;}
.y40{bottom:809.423333pt;}
.y3f{bottom:840.339867pt;}
.y6e{bottom:840.415467pt;}
.y1c1{bottom:840.417558pt;}
.yc2{bottom:840.418165pt;}
.y1d5{bottom:840.418715pt;}
.y17a{bottom:840.419870pt;}
.yee{bottom:840.419989pt;}
.y134{bottom:840.420366pt;}
.h14{height:1.700309pt;}
.hd{height:13.940300pt;}
.h21{height:17.884000pt;}
.h7{height:18.496000pt;}
.h6{height:23.089599pt;}
.h16{height:23.120870pt;}
.h12{height:23.225643pt;}
.h13{height:24.279373pt;}
.h1d{height:24.388006pt;}
.h11{height:26.830208pt;}
.h9{height:27.735755pt;}
.h8{height:27.748352pt;}
.h1c{height:30.478045pt;}
.h5{height:30.636339pt;}
.ha{height:31.217331pt;}
.hb{height:31.338826pt;}
.h1e{height:33.474840pt;}
.he{height:33.538602pt;}
.hf{height:34.686310pt;}
.h24{height:34.839193pt;}
.h1b{height:34.841198pt;}
.h23{height:34.841623pt;}
.h19{height:36.290431pt;}
.h10{height:38.097365pt;}
.h2{height:41.622963pt;}
.h4{height:45.959296pt;}
.h3{height:58.532224pt;}
.hc{height:60.699955pt;}
.h20{height:62.503377pt;}
.h15{height:63.410577pt;}
.h18{height:63.411110pt;}
.h1f{height:63.712977pt;}
.h22{height:63.865859pt;}
.h1a{height:83.642467pt;}
.h17{height:92.739122pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.621333pt;}
.x0{left:0.000000pt;}
.x14{left:52.611067pt;}
.x1{left:60.472400pt;}
.x71{left:64.478667pt;}
.x8{left:66.066133pt;}
.x19{left:68.408141pt;}
.x10{left:69.316533pt;}
.x2c{left:71.433067pt;}
.xf{left:73.700800pt;}
.x11{left:75.363733pt;}
.x12{left:76.648340pt;}
.x35{left:86.626646pt;}
.x49{left:92.371600pt;}
.x36{left:94.336933pt;}
.x7f{left:97.133867pt;}
.x37{left:100.837733pt;}
.x39{left:101.820400pt;}
.x80{left:105.902400pt;}
.x5b{left:109.379467pt;}
.x7b{left:111.042533pt;}
.x4b{left:115.880267pt;}
.x50{left:117.618933pt;}
.x84{left:118.601600pt;}
.x5d{left:122.078667pt;}
.x4a{left:123.136933pt;}
.x5c{left:126.840933pt;}
.x38{left:127.823600pt;}
.x3a{left:128.806267pt;}
.x4c{left:132.434667pt;}
.x81{left:134.626486pt;}
.x3b{left:135.911733pt;}
.x1a{left:137.724756pt;}
.x51{left:139.615733pt;}
.x1c{left:142.110133pt;}
.x22{left:145.965333pt;}
.x52{left:146.948000pt;}
.x1d{left:148.459867pt;}
.x4d{left:149.896000pt;}
.x20{left:152.239333pt;}
.x23{left:157.379467pt;}
.x1e{left:158.740133pt;}
.x13{left:160.328184pt;}
.x21{left:162.670800pt;}
.x82{left:163.577867pt;}
.x1b{left:164.862933pt;}
.x3c{left:166.223600pt;}
.x1f{left:168.340133pt;}
.x5e{left:170.683467pt;}
.x6b{left:171.892800pt;}
.x53{left:173.933733pt;}
.x3d{left:175.521200pt;}
.xd{left:177.939466pt;}
.x24{left:180.509465pt;}
.x83{left:182.777867pt;}
.x33{left:183.911733pt;}
.x5f{left:186.935333pt;}
.x3e{left:188.220400pt;}
.x55{left:189.883467pt;}
.x29{left:193.284933pt;}
.x60{left:194.343200pt;}
.x2{left:196.610933pt;}
.x34{left:197.744800pt;}
.x15{left:199.861333pt;}
.x25{left:203.867600pt;}
.x3{left:204.774800pt;}
.x61{left:205.908518pt;}
.x26{left:207.647200pt;}
.x2a{left:210.066133pt;}
.x4{left:210.973200pt;}
.x7a{left:213.694400pt;}
.x54{left:218.759343pt;}
.x6e{left:222.160533pt;}
.x62{left:225.486533pt;}
.x7{left:231.382667pt;}
.x6c{left:233.196948pt;}
.x68{left:241.436133pt;}
.x56{left:245.366800pt;}
.x63{left:252.472359pt;}
.x27{left:257.385733pt;}
.xe{left:260.333867pt;}
.x28{left:261.240933pt;}
.x64{left:263.735333pt;}
.x9{left:268.346400pt;}
.x57{left:272.352233pt;}
.x66{left:273.486533pt;}
.x58{left:277.417200pt;}
.x65{left:280.062933pt;}
.xa{left:283.615323pt;}
.x47{left:287.395200pt;}
.x6d{left:290.872400pt;}
.x59{left:293.366800pt;}
.x48{left:295.483333pt;}
.x5{left:298.960533pt;}
.x2b{left:302.286416pt;}
.x16{left:303.193276pt;}
.x6{left:305.234533pt;}
.x8c{left:314.078667pt;}
.x8d{left:317.329067pt;}
.x67{left:318.538533pt;}
.x2d{left:322.544800pt;}
.x8e{left:323.603067pt;}
.x86{left:326.475467pt;}
.x8f{left:328.440933pt;}
.x87{left:331.237733pt;}
.x2e{left:334.110133pt;}
.x5a{left:348.925867pt;}
.x90{left:355.199867pt;}
.x91{left:358.903867pt;}
.xc{left:360.188710pt;}
.x44{left:363.439333pt;}
.x92{left:367.747867pt;}
.x45{left:373.039200pt;}
.x46{left:381.580933pt;}
.x4f{left:390.425067pt;}
.x17{left:396.018287pt;}
.xb{left:397.152017pt;}
.x7c{left:401.536800pt;}
.x7d{left:427.691200pt;}
.x69{left:429.958933pt;}
.x7e{left:432.302267pt;}
.x6a{left:439.710133pt;}
.x74{left:448.025067pt;}
.x75{left:455.055067pt;}
.x40{left:455.962133pt;}
.x41{left:459.817200pt;}
.x42{left:472.214000pt;}
.x18{left:477.202266pt;}
.x43{left:480.604533pt;}
.x31{left:481.965200pt;}
.x32{left:490.431333pt;}
.x88{left:504.264400pt;}
.x89{left:507.514800pt;}
.x8a{left:513.562133pt;}
.x76{left:517.190400pt;}
.x77{left:524.220400pt;}
.x6f{left:528.755733pt;}
.x2f{left:530.721067pt;}
.x70{left:534.954133pt;}
.x30{left:538.280133pt;}
.x8b{left:544.025067pt;}
.x78{left:545.310133pt;}
.x72{left:547.426533pt;}
.x3f{left:549.316400pt;}
.x73{left:551.810933pt;}
.x4e{left:556.875467pt;}
.x79{left:559.747867pt;}
.x85{left:563.980933pt;}
}




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