
    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_e9364ff943175c2b0a5a243c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fb7d36b27685497c789355bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_2b2f701374093567b1583728.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8c9813c11163326241529ef1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_1bb31593264724bd154228c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d7424dcd68429d1c6913a273.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.457000;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_7ce09ee2975b479309a2d559.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_b139ecd647d7f7d245478701.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_b73da3501842e10d02aee07e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_1b4e121c6f54554ae01a6164.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f4c30303d070437ec60041c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.721000;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_bfbaa919f62e5ebfc4e391a6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.131000;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_380b0eb7bdc32cec1b4acf41.woff2')format("woff");}.fff{font-family:fff;line-height:0.963000;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_25d0e648f766321155ec6596.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.236000;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_b290162d87e469008b1493b3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.478000;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_1cf121a5afaa49b0ced6f161.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.950000;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_167225da5ab842993c20bd8d.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.399000;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_3d01076f9a8f333ce117221e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d516248ea31c8b84ec96f2f9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.051000;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_ba97b8288d19b2da1de8483b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.038000;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_1d0bc0b5de3fa5fda54d3865.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.279000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.307080px;}
.v3{vertical-align:-8.848980px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.328940px;}
.v4{vertical-align:21.430140px;}
.v1{vertical-align:24.113760px;}
.ls18{letter-spacing:-1.206012px;}
.ls15{letter-spacing:-1.200012px;}
.ls9{letter-spacing:-1.182012px;}
.ls16{letter-spacing:-1.176012px;}
.ls13{letter-spacing:-1.170012px;}
.lsc{letter-spacing:-1.158012px;}
.ls10{letter-spacing:-1.140011px;}
.ls19{letter-spacing:-1.134011px;}
.ls14{letter-spacing:-1.128011px;}
.ls12{letter-spacing:-1.122011px;}
.lsd{letter-spacing:-1.110011px;}
.ls11{letter-spacing:-1.098011px;}
.lsb{letter-spacing:-1.092011px;}
.lsa{letter-spacing:-1.080011px;}
.ls8{letter-spacing:-1.074011px;}
.ls17{letter-spacing:-1.050011px;}
.lse{letter-spacing:-1.026010px;}
.ls7{letter-spacing:-1.020010px;}
.lsf{letter-spacing:-1.008010px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.029378px;}
.ls4b{letter-spacing:0.041172px;}
.ls73{letter-spacing:0.049494px;}
.ls6a{letter-spacing:0.058484px;}
.ls6e{letter-spacing:0.058547px;}
.ls61{letter-spacing:0.110396px;}
.ls62{letter-spacing:0.110456px;}
.ls44{letter-spacing:0.117613px;}
.ls51{letter-spacing:0.129392px;}
.ls47{letter-spacing:0.156262px;}
.ls4c{letter-spacing:0.168356px;}
.ls1a{letter-spacing:0.194040px;}
.ls5b{letter-spacing:0.199922px;}
.ls33{letter-spacing:0.323338px;}
.ls1d{letter-spacing:0.323398px;}
.ls41{letter-spacing:0.364598px;}
.ls37{letter-spacing:0.535075px;}
.ls24{letter-spacing:0.535080px;}
.ls36{letter-spacing:0.582114px;}
.ls5f{letter-spacing:0.587994px;}
.ls21{letter-spacing:0.593874px;}
.ls65{letter-spacing:0.599754px;}
.ls29{letter-spacing:0.605634px;}
.ls27{letter-spacing:0.611514px;}
.ls34{letter-spacing:0.617394px;}
.ls23{letter-spacing:0.623274px;}
.ls20{letter-spacing:0.629154px;}
.ls26{letter-spacing:0.635034px;}
.ls67{letter-spacing:0.640913px;}
.ls22{letter-spacing:0.646793px;}
.ls25{letter-spacing:0.652673px;}
.ls60{letter-spacing:0.658553px;}
.ls35{letter-spacing:0.664433px;}
.ls2b{letter-spacing:0.682067px;}
.ls5e{letter-spacing:0.687953px;}
.ls28{letter-spacing:0.693833px;}
.ls68{letter-spacing:0.752632px;}
.ls38{letter-spacing:0.793792px;}
.ls3b{letter-spacing:0.876111px;}
.ls3a{letter-spacing:0.917271px;}
.ls30{letter-spacing:0.929031px;}
.ls2f{letter-spacing:0.952550px;}
.ls2d{letter-spacing:0.976070px;}
.ls6d{letter-spacing:1.003487px;}
.ls6b{letter-spacing:1.043982px;}
.ls39{letter-spacing:1.046629px;}
.ls3c{letter-spacing:1.134828px;}
.ls72{letter-spacing:1.309483px;}
.ls6c{letter-spacing:1.489454px;}
.ls46{letter-spacing:4.239413px;}
.ls4e{letter-spacing:4.248173px;}
.ls64{letter-spacing:9.292676px;}
.ls63{letter-spacing:9.633476px;}
.ls59{letter-spacing:11.642270px;}
.ls57{letter-spacing:11.642330px;}
.ls58{letter-spacing:11.983310px;}
.ls49{letter-spacing:13.088725px;}
.ls4a{letter-spacing:13.229862px;}
.ls70{letter-spacing:13.306304px;}
.ls69{letter-spacing:13.504277px;}
.ls6{letter-spacing:13.558320px;}
.ls6f{letter-spacing:13.666304px;}
.ls1{letter-spacing:15.240120px;}
.ls50{letter-spacing:15.752351px;}
.ls5c{letter-spacing:15.846422px;}
.ls4d{letter-spacing:15.986977px;}
.ls43{letter-spacing:16.620900px;}
.ls48{letter-spacing:16.634382px;}
.ls42{letter-spacing:17.716238px;}
.ls53{letter-spacing:17.728032px;}
.ls1b{letter-spacing:17.798531px;}
.ls1c{letter-spacing:17.798591px;}
.ls54{letter-spacing:17.880840px;}
.ls71{letter-spacing:18.515280px;}
.ls55{letter-spacing:18.562980px;}
.ls2{letter-spacing:18.815771px;}
.ls4{letter-spacing:18.821713px;}
.ls5{letter-spacing:18.909782px;}
.ls3{letter-spacing:19.156871px;}
.ls32{letter-spacing:19.838891px;}
.ls31{letter-spacing:19.838951px;}
.ls1e{letter-spacing:21.408898px;}
.ls3d{letter-spacing:21.749878px;}
.ls1f{letter-spacing:23.455078px;}
.ls4f{letter-spacing:23.555032px;}
.ls3e{letter-spacing:24.131278px;}
.ls2e{letter-spacing:25.030862px;}
.ls56{letter-spacing:25.030922px;}
.ls2a{letter-spacing:25.959911px;}
.ls2c{letter-spacing:26.642051px;}
.ls40{letter-spacing:27.576878px;}
.ls52{letter-spacing:28.400125px;}
.ls45{letter-spacing:30.593338px;}
.ls5d{letter-spacing:37.278782px;}
.ls5a{letter-spacing:40.471627px;}
.ls66{letter-spacing:224.685191px;}
.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;}
}
.ws1b5{word-spacing:-206.023025px;}
.ws1ee{word-spacing:-18.577080px;}
.ws1fe{word-spacing:-1.088981px;}
.ws1ff{word-spacing:-1.048486px;}
.ws8e{word-spacing:-0.934910px;}
.ws1c3{word-spacing:-0.811432px;}
.ws83{word-spacing:-0.593874px;}
.ws2a{word-spacing:-0.061800px;}
.wsb{word-spacing:-0.060001px;}
.ws2d{word-spacing:-0.058799px;}
.wsa7{word-spacing:-0.055201px;}
.ws163{word-spacing:-0.054000px;}
.ws51{word-spacing:-0.047999px;}
.ws43{word-spacing:-0.044999px;}
.ws4c{word-spacing:-0.041999px;}
.ws0{word-spacing:0.000000px;}
.ws214{word-spacing:11.443347px;}
.wsea{word-spacing:11.554082px;}
.ws141{word-spacing:11.642281px;}
.ws42{word-spacing:11.884342px;}
.wsb3{word-spacing:11.895119px;}
.ws4d{word-spacing:12.322624px;}
.ws4a{word-spacing:12.394023px;}
.ws48{word-spacing:12.448622px;}
.ws4e{word-spacing:12.528421px;}
.ws4b{word-spacing:12.692219px;}
.ws49{word-spacing:12.889615px;}
.ws21d{word-spacing:13.135324px;}
.ws218{word-spacing:13.166825px;}
.ws208{word-spacing:13.175824px;}
.ws216{word-spacing:13.180324px;}
.ws21e{word-spacing:13.189325px;}
.ws1f9{word-spacing:13.198324px;}
.ws20b{word-spacing:13.207367px;}
.ws217{word-spacing:13.211824px;}
.ws21f{word-spacing:13.216324px;}
.ws212{word-spacing:13.225323px;}
.ws1fc{word-spacing:13.229824px;}
.ws206{word-spacing:13.234324px;}
.ws1f6{word-spacing:13.238824px;}
.ws222{word-spacing:13.243323px;}
.ws20c{word-spacing:13.247823px;}
.ws21b{word-spacing:13.256824px;}
.ws210{word-spacing:13.261324px;}
.ws213{word-spacing:13.265823px;}
.ws205{word-spacing:13.270323px;}
.ws1f3{word-spacing:13.274823px;}
.ws201{word-spacing:13.279323px;}
.ws20a{word-spacing:13.283823px;}
.ws211{word-spacing:13.288322px;}
.ws1df{word-spacing:13.292822px;}
.ws1e0{word-spacing:13.301823px;}
.ws1f5{word-spacing:13.306323px;}
.ws1ed{word-spacing:13.310822px;}
.ws209{word-spacing:13.315322px;}
.ws1de{word-spacing:13.324323px;}
.ws21c{word-spacing:13.328823px;}
.ws1e2{word-spacing:13.333322px;}
.ws1f8{word-spacing:13.337822px;}
.ws47{word-spacing:13.342322px;}
.ws202{word-spacing:13.346822px;}
.ws204{word-spacing:13.360321px;}
.ws1ea{word-spacing:13.369322px;}
.ws1ef{word-spacing:13.373822px;}
.ws1f7{word-spacing:13.382821px;}
.ws1ec{word-spacing:13.391822px;}
.ws1e5{word-spacing:13.405321px;}
.ws20d{word-spacing:13.409821px;}
.ws200{word-spacing:13.414322px;}
.ws1fa{word-spacing:13.418822px;}
.ws46{word-spacing:13.423321px;}
.ws223{word-spacing:13.436821px;}
.ws20e{word-spacing:13.441321px;}
.ws1e8{word-spacing:13.445820px;}
.ws1e1{word-spacing:13.450320px;}
.ws21a{word-spacing:13.463821px;}
.ws1e3{word-spacing:13.495320px;}
.ws220{word-spacing:13.499820px;}
.ws1e6{word-spacing:13.517819px;}
.ws215{word-spacing:13.522320px;}
.ws203{word-spacing:13.526820px;}
.ws1fb{word-spacing:13.544819px;}
.ws224{word-spacing:13.549320px;}
.ws45{word-spacing:13.576319px;}
.ws221{word-spacing:13.580818px;}
.ws1f2{word-spacing:13.585318px;}
.ws1f1{word-spacing:13.607757px;}
.ws44{word-spacing:13.607817px;}
.ws1e7{word-spacing:13.616819px;}
.ws1e4{word-spacing:13.625818px;}
.ws1e9{word-spacing:13.634818px;}
.ws20f{word-spacing:13.666318px;}
.ws207{word-spacing:13.688818px;}
.ws1dd{word-spacing:13.729297px;}
.ws1f4{word-spacing:13.756317px;}
.ws219{word-spacing:13.774317px;}
.ws1f0{word-spacing:13.814816px;}
.ws1d3{word-spacing:13.847827px;}
.ws168{word-spacing:13.862226px;}
.ws1c9{word-spacing:13.881427px;}
.ws1eb{word-spacing:13.882315px;}
.ws167{word-spacing:13.929426px;}
.ws165{word-spacing:13.939025px;}
.ws1b7{word-spacing:13.943826px;}
.ws1cc{word-spacing:13.953426px;}
.ws169{word-spacing:13.996575px;}
.ws4f{word-spacing:13.996635px;}
.ws1d1{word-spacing:14.030224px;}
.ws164{word-spacing:14.039825px;}
.ws1d2{word-spacing:14.054224px;}
.ws1ca{word-spacing:14.078224px;}
.ws50{word-spacing:14.116624px;}
.ws1d0{word-spacing:14.145424px;}
.ws1c8{word-spacing:14.169423px;}
.ws1cb{word-spacing:14.198222px;}
.ws1c7{word-spacing:14.222222px;}
.wsc4{word-spacing:14.251021px;}
.ws1b8{word-spacing:14.284622px;}
.ws187{word-spacing:14.782169px;}
.ws17a{word-spacing:14.876281px;}
.ws17b{word-spacing:15.187884px;}
.ws161{word-spacing:16.027199px;}
.ws15f{word-spacing:16.038000px;}
.ws15e{word-spacing:16.059601px;}
.ws1b0{word-spacing:16.065001px;}
.ws1c6{word-spacing:16.081199px;}
.ws1b1{word-spacing:16.183801px;}
.ws160{word-spacing:16.227000px;}
.ws1cf{word-spacing:16.297199px;}
.ws162{word-spacing:16.313401px;}
.wse0{word-spacing:16.317298px;}
.ws1fd{word-spacing:16.361782px;}
.ws12d{word-spacing:16.416658px;}
.wsa8{word-spacing:16.438738px;}
.ws108{word-spacing:16.477379px;}
.ws10{word-spacing:16.608218px;}
.ws114{word-spacing:16.637460px;}
.ws121{word-spacing:16.681622px;}
.ws70{word-spacing:16.875428px;}
.ws19{word-spacing:16.962169px;}
.wsf6{word-spacing:16.981266px;}
.ws1b{word-spacing:16.986169px;}
.ws1c5{word-spacing:16.993027px;}
.ws12{word-spacing:16.998169px;}
.ws28{word-spacing:16.998171px;}
.ws29{word-spacing:17.082170px;}
.ws60{word-spacing:17.098865px;}
.ws62{word-spacing:17.104745px;}
.wsf{word-spacing:17.118171px;}
.ws16{word-spacing:17.130171px;}
.ws14{word-spacing:17.130172px;}
.ws13{word-spacing:17.142171px;}
.ws14c{word-spacing:17.163544px;}
.ws26{word-spacing:17.172171px;}
.ws21{word-spacing:17.178171px;}
.ws1a{word-spacing:17.184171px;}
.ws188{word-spacing:17.198824px;}
.ws171{word-spacing:17.216464px;}
.ws25{word-spacing:17.220173px;}
.ws15{word-spacing:17.244172px;}
.ws27{word-spacing:17.274198px;}
.ws170{word-spacing:17.287024px;}
.ws22{word-spacing:17.292173px;}
.ws17{word-spacing:17.304172px;}
.ws5f{word-spacing:17.304663px;}
.ws1e{word-spacing:17.334174px;}
.wsc1{word-spacing:17.345823px;}
.ws1c{word-spacing:17.346173px;}
.ws1f{word-spacing:17.352174px;}
.ws18{word-spacing:17.364166px;}
.ws94{word-spacing:17.369341px;}
.ws23{word-spacing:17.382202px;}
.wsc8{word-spacing:17.398742px;}
.ws1d{word-spacing:17.418174px;}
.ws20{word-spacing:17.430174px;}
.ws1a0{word-spacing:17.439903px;}
.ws98{word-spacing:17.445783px;}
.ws11{word-spacing:17.448159px;}
.ws10b{word-spacing:17.451661px;}
.ws90{word-spacing:17.463422px;}
.ws24{word-spacing:17.466174px;}
.ws1bf{word-spacing:17.469301px;}
.ws96{word-spacing:17.486941px;}
.ws113{word-spacing:17.504582px;}
.ws95{word-spacing:17.539860px;}
.ws54{word-spacing:17.551621px;}
.wse6{word-spacing:17.563381px;}
.ws151{word-spacing:17.569260px;}
.ws1a9{word-spacing:17.581021px;}
.ws120{word-spacing:17.598660px;}
.ws1c0{word-spacing:17.651580px;}
.ws10d{word-spacing:17.657459px;}
.ws97{word-spacing:17.669220px;}
.ws174{word-spacing:17.686859px;}
.ws91{word-spacing:17.692739px;}
.ws93{word-spacing:17.722139px;}
.wsa{word-spacing:17.730177px;}
.ws92{word-spacing:17.733900px;}
.ws6f{word-spacing:17.739780px;}
.wsd{word-spacing:17.742178px;}
.ws130{word-spacing:17.757419px;}
.ws145{word-spacing:17.769179px;}
.wsec{word-spacing:17.775058px;}
.ws13d{word-spacing:17.780938px;}
.wsdf{word-spacing:17.798579px;}
.ws53{word-spacing:17.810338px;}
.ws110{word-spacing:17.816218px;}
.ws61{word-spacing:17.827979px;}
.ws173{word-spacing:17.845610px;}
.ws2b{word-spacing:17.845618px;}
.ws11b{word-spacing:17.851498px;}
.ws183{word-spacing:17.880898px;}
.wsfd{word-spacing:17.904417px;}
.ws1db{word-spacing:17.916178px;}
.ws16a{word-spacing:17.922057px;}
.ws107{word-spacing:17.951456px;}
.wsc{word-spacing:17.994179px;}
.wsde{word-spacing:17.998497px;}
.ws2c{word-spacing:18.039655px;}
.ws15d{word-spacing:18.074935px;}
.ws129{word-spacing:18.086696px;}
.wse{word-spacing:18.096182px;}
.ws2e{word-spacing:18.121976px;}
.wsbb{word-spacing:18.145495px;}
.ws112{word-spacing:18.151375px;}
.ws10a{word-spacing:18.157254px;}
.ws116{word-spacing:18.169015px;}
.ws146{word-spacing:18.186689px;}
.ws15c{word-spacing:18.216054px;}
.ws132{word-spacing:18.221933px;}
.ws140{word-spacing:18.233695px;}
.ws10c{word-spacing:18.268974px;}
.wsca{word-spacing:18.339546px;}
.wsc7{word-spacing:18.463012px;}
.wsbe{word-spacing:18.498292px;}
.wscb{word-spacing:18.527692px;}
.ws1a1{word-spacing:18.545331px;}
.ws9{word-spacing:18.600160px;}
.wsc9{word-spacing:18.645290px;}
.ws37{word-spacing:18.698209px;}
.ws2f{word-spacing:18.733489px;}
.ws153{word-spacing:18.739369px;}
.wsc0{word-spacing:18.757009px;}
.wsbf{word-spacing:18.798225px;}
.ws64{word-spacing:18.845208px;}
.ws36{word-spacing:18.915768px;}
.ws18d{word-spacing:18.939287px;}
.ws177{word-spacing:19.098045px;}
.wsaa{word-spacing:19.145085px;}
.ws13f{word-spacing:19.162724px;}
.ws18e{word-spacing:19.168604px;}
.ws1ad{word-spacing:19.186245px;}
.ws1ae{word-spacing:19.192124px;}
.ws1a6{word-spacing:19.198004px;}
.ws152{word-spacing:19.203869px;}
.wsef{word-spacing:19.203885px;}
.ws11d{word-spacing:19.209765px;}
.ws1d9{word-spacing:19.239164px;}
.ws9c{word-spacing:19.256803px;}
.ws11a{word-spacing:19.345003px;}
.ws1c4{word-spacing:19.397923px;}
.ws19b{word-spacing:19.439082px;}
.ws9e{word-spacing:19.486121px;}
.ws1be{word-spacing:19.497882px;}
.ws13e{word-spacing:19.509673px;}
.wse1{word-spacing:19.521401px;}
.ws1a7{word-spacing:19.539041px;}
.ws147{word-spacing:19.568440px;}
.ws9f{word-spacing:19.580200px;}
.ws8{word-spacing:19.635179px;}
.ws33{word-spacing:19.650760px;}
.ws184{word-spacing:19.686039px;}
.ws185{word-spacing:19.691918px;}
.ws6{word-spacing:19.694578px;}
.ws7{word-spacing:19.773780px;}
.ws1a5{word-spacing:19.827157px;}
.ws134{word-spacing:19.827158px;}
.wsa0{word-spacing:19.891836px;}
.wsb5{word-spacing:19.921236px;}
.wsbc{word-spacing:20.021196px;}
.ws56{word-spacing:20.068235px;}
.wsd2{word-spacing:20.109395px;}
.wsd3{word-spacing:20.127034px;}
.ws124{word-spacing:20.162314px;}
.ws123{word-spacing:20.232874px;}
.ws9b{word-spacing:20.285793px;}
.ws102{word-spacing:20.368112px;}
.wsb7{word-spacing:20.450431px;}
.ws1af{word-spacing:20.456311px;}
.wsc6{word-spacing:20.503351px;}
.ws195{word-spacing:20.520991px;}
.wsb8{word-spacing:20.573909px;}
.ws12f{word-spacing:20.597429px;}
.wse4{word-spacing:20.626829px;}
.ws159{word-spacing:20.703269px;}
.ws131{word-spacing:20.720908px;}
.ws196{word-spacing:20.844387px;}
.ws5b{word-spacing:20.909067px;}
.ws175{word-spacing:20.956106px;}
.wsa2{word-spacing:21.061946px;}
.ws136{word-spacing:21.103104px;}
.ws8f{word-spacing:21.144265px;}
.wse2{word-spacing:21.191303px;}
.wsb4{word-spacing:21.203064px;}
.wsf7{word-spacing:21.220703px;}
.ws1d7{word-spacing:21.255983px;}
.ws18c{word-spacing:21.297143px;}
.ws1dc{word-spacing:21.314782px;}
.ws1bd{word-spacing:21.355943px;}
.ws1d6{word-spacing:21.373582px;}
.ws158{word-spacing:21.385342px;}
.ws1a3{word-spacing:21.438261px;}
.ws150{word-spacing:21.491181px;}
.ws14a{word-spacing:21.497061px;}
.wsb6{word-spacing:21.526461px;}
.wsd0{word-spacing:21.585260px;}
.wsad{word-spacing:21.685218px;}
.ws1a2{word-spacing:21.708738px;}
.ws125{word-spacing:21.744018px;}
.wsd1{word-spacing:21.773417px;}
.ws106{word-spacing:21.843977px;}
.wsa6{word-spacing:21.979215px;}
.ws1ab{word-spacing:22.014495px;}
.ws17e{word-spacing:22.096814px;}
.ws31{word-spacing:22.114455px;}
.wsc5{word-spacing:22.167374px;}
.wsee{word-spacing:22.202654px;}
.ws197{word-spacing:22.267333px;}
.ws192{word-spacing:22.284973px;}
.ws101{word-spacing:22.302612px;}
.ws12e{word-spacing:22.349653px;}
.wsed{word-spacing:22.390811px;}
.ws8d{word-spacing:22.408452px;}
.ws32{word-spacing:22.443732px;}
.wsd6{word-spacing:22.484890px;}
.ws3a{word-spacing:22.543689px;}
.wsa5{word-spacing:22.573089px;}
.ws3b{word-spacing:22.614250px;}
.ws104{word-spacing:22.631888px;}
.wsc2{word-spacing:22.637769px;}
.ws179{word-spacing:22.702449px;}
.ws198{word-spacing:22.714208px;}
.wsba{word-spacing:22.773007px;}
.ws39{word-spacing:22.778966px;}
.wsbd{word-spacing:22.802407px;}
.ws8b{word-spacing:22.908246px;}
.wsf0{word-spacing:22.920006px;}
.wsf3{word-spacing:22.972926px;}
.ws8a{word-spacing:23.067004px;}
.wsf4{word-spacing:23.119925px;}
.ws182{word-spacing:23.143444px;}
.ws181{word-spacing:23.161083px;}
.ws14b{word-spacing:23.166964px;}
.ws65{word-spacing:23.202244px;}
.wsf1{word-spacing:23.225763px;}
.ws1a4{word-spacing:23.408042px;}
.wse8{word-spacing:23.443321px;}
.wsfb{word-spacing:23.602079px;}
.ws1{word-spacing:23.649601px;}
.ws122{word-spacing:23.660878px;}
.ws1bb{word-spacing:23.696158px;}
.ws1bc{word-spacing:23.702039px;}
.ws180{word-spacing:23.719677px;}
.wscd{word-spacing:23.807876px;}
.ws11c{word-spacing:23.831396px;}
.ws138{word-spacing:23.849037px;}
.wsce{word-spacing:23.878437px;}
.ws15a{word-spacing:23.896042px;}
.ws13c{word-spacing:23.901956px;}
.wsdc{word-spacing:23.907837px;}
.wscc{word-spacing:23.931319px;}
.ws74{word-spacing:23.943116px;}
.ws30{word-spacing:24.001916px;}
.ws63{word-spacing:24.019555px;}
.ws15b{word-spacing:24.101873px;}
.ws13b{word-spacing:24.113635px;}
.wsdd{word-spacing:24.137154px;}
.ws87{word-spacing:24.195960px;}
.ws71{word-spacing:24.207714px;}
.ws6b{word-spacing:24.248872px;}
.wsc3{word-spacing:24.284152px;}
.ws127{word-spacing:24.307671px;}
.ws81{word-spacing:24.348832px;}
.ws18a{word-spacing:24.378232px;}
.ws111{word-spacing:24.384112px;}
.ws99{word-spacing:24.466431px;}
.ws80{word-spacing:24.478191px;}
.ws1c1{word-spacing:24.501711px;}
.ws3d{word-spacing:24.542869px;}
.ws128{word-spacing:24.548749px;}
.ws1d5{word-spacing:24.584030px;}
.ws191{word-spacing:24.619309px;}
.ws66{word-spacing:24.678121px;}
.wsa4{word-spacing:24.707508px;}
.wse3{word-spacing:24.801586px;}
.wsac{word-spacing:24.925065px;}
.ws156{word-spacing:24.972106px;}
.ws137{word-spacing:24.983864px;}
.ws3c{word-spacing:25.019145px;}
.ws189{word-spacing:25.048544px;}
.ws7d{word-spacing:25.077945px;}
.ws86{word-spacing:25.113223px;}
.wsf8{word-spacing:25.142624px;}
.ws72{word-spacing:25.201423px;}
.ws119{word-spacing:25.248462px;}
.ws1ba{word-spacing:25.289622px;}
.ws1c2{word-spacing:25.295502px;}
.ws7c{word-spacing:25.301381px;}
.ws155{word-spacing:25.313163px;}
.ws57{word-spacing:25.360181px;}
.ws186{word-spacing:25.383702px;}
.ws73{word-spacing:25.513059px;}
.wsb9{word-spacing:25.536579px;}
.ws105{word-spacing:25.607139px;}
.ws16e{word-spacing:25.901136px;}
.ws139{word-spacing:26.059895px;}
.ws190{word-spacing:26.101053px;}
.wscf{word-spacing:26.112814px;}
.wse9{word-spacing:26.189252px;}
.wsb2{word-spacing:26.242172px;}
.ws67{word-spacing:26.283332px;}
.wsf9{word-spacing:26.377411px;}
.wsb1{word-spacing:26.406811px;}
.ws17d{word-spacing:26.447970px;}
.ws77{word-spacing:26.483249px;}
.wsb0{word-spacing:26.506769px;}
.wsf2{word-spacing:26.718447px;}
.ws88{word-spacing:26.724327px;}
.wsfe{word-spacing:26.847807px;}
.ws75{word-spacing:26.965405px;}
.ws68{word-spacing:27.059444px;}
.ws1da{word-spacing:27.059484px;}
.ws5c{word-spacing:27.106523px;}
.ws178{word-spacing:27.259402px;}
.wsaf{word-spacing:27.288802px;}
.ws7e{word-spacing:27.353481px;}
.wse7{word-spacing:27.518119px;}
.ws76{word-spacing:27.553399px;}
.wsd8{word-spacing:27.565158px;}
.ws16b{word-spacing:27.647478px;}
.wsd7{word-spacing:27.676879px;}
.wsd9{word-spacing:27.718037px;}
.ws18b{word-spacing:28.023795px;}
.ws154{word-spacing:28.047314px;}
.ws199{word-spacing:28.100233px;}
.ws143{word-spacing:28.276662px;}
.wsda{word-spacing:28.311911px;}
.ws58{word-spacing:28.329550px;}
.ws69{word-spacing:28.394230px;}
.ws6a{word-spacing:28.400110px;}
.wsa9{word-spacing:28.511828px;}
.ws12c{word-spacing:28.582389px;}
.wsae{word-spacing:28.664707px;}
.wsf5{word-spacing:28.670588px;}
.ws144{word-spacing:28.688227px;}
.ws12b{word-spacing:28.711746px;}
.ws142{word-spacing:28.741098px;}
.ws126{word-spacing:28.852866px;}
.ws9a{word-spacing:28.970465px;}
.ws18f{word-spacing:29.046904px;}
.ws9d{word-spacing:29.105703px;}
.ws176{word-spacing:29.311501px;}
.ws109{word-spacing:29.434980px;}
.ws194{word-spacing:29.564338px;}
.ws1aa{word-spacing:29.681937px;}
.wsff{word-spacing:29.723097px;}
.ws7a{word-spacing:29.781895px;}
.wsab{word-spacing:29.823056px;}
.wsa1{word-spacing:30.028854px;}
.ws11e{word-spacing:30.134753px;}
.ws52{word-spacing:30.181731px;}
.ws16f{word-spacing:30.322851px;}
.ws11f{word-spacing:30.681526px;}
.ws5e{word-spacing:30.705047px;}
.ws3e{word-spacing:30.769725px;}
.ws40{word-spacing:30.857925px;}
.ws17f{word-spacing:31.110761px;}
.ws135{word-spacing:31.146043px;}
.ws3f{word-spacing:31.157803px;}
.ws10e{word-spacing:31.269520px;}
.ws16d{word-spacing:31.487079px;}
.wsfc{word-spacing:31.986874px;}
.ws19a{word-spacing:32.180911px;}
.ws10f{word-spacing:32.445508px;}
.ws35{word-spacing:32.551347px;}
.ws100{word-spacing:32.751266px;}
.wseb{word-spacing:32.804186px;}
.wsd4{word-spacing:32.815944px;}
.ws133{word-spacing:32.980585px;}
.wsd5{word-spacing:33.045263px;}
.ws34{word-spacing:33.162862px;}
.wse5{word-spacing:33.386299px;}
.ws6e{word-spacing:33.768495px;}
.ws19c{word-spacing:33.850815px;}
.ws19d{word-spacing:33.868454px;}
.ws172{word-spacing:34.109531px;}
.ws55{word-spacing:34.203612px;}
.ws85{word-spacing:34.909204px;}
.ws7b{word-spacing:35.115002px;}
.wsfa{word-spacing:35.391360px;}
.ws38{word-spacing:35.426639px;}
.ws6c{word-spacing:35.467799px;}
.wsdb{word-spacing:35.508959px;}
.ws14e{word-spacing:35.808835px;}
.ws115{word-spacing:36.167510px;}
.ws1ac{word-spacing:36.173392px;}
.ws14d{word-spacing:36.214552px;}
.ws82{word-spacing:36.767264px;}
.ws12a{word-spacing:36.831945px;}
.ws17c{word-spacing:36.955423px;}
.ws1d8{word-spacing:37.090661px;}
.ws7f{word-spacing:37.125941px;}
.ws19f{word-spacing:37.272941px;}
.ws41{word-spacing:37.296459px;}
.ws84{word-spacing:37.613976px;}
.ws89{word-spacing:37.760975px;}
.ws59{word-spacing:38.102011px;}
.ws13a{word-spacing:39.136879px;}
.wsa3{word-spacing:40.007113px;}
.ws1a8{word-spacing:40.077672px;}
.ws117{word-spacing:40.318749px;}
.ws118{word-spacing:40.436348px;}
.ws5a{word-spacing:40.777384px;}
.ws148{word-spacing:41.512376px;}
.ws14f{word-spacing:42.029811px;}
.ws19e{word-spacing:42.523727px;}
.ws16c{word-spacing:42.564887px;}
.ws3{word-spacing:42.955378px;}
.ws4{word-spacing:42.984179px;}
.ws5{word-spacing:43.070581px;}
.ws6d{word-spacing:43.293998px;}
.ws2{word-spacing:43.444982px;}
.ws157{word-spacing:45.116779px;}
.ws78{word-spacing:47.327638px;}
.ws149{word-spacing:47.880351px;}
.ws8c{word-spacing:50.197048px;}
.ws193{word-spacing:52.149189px;}
.ws103{word-spacing:53.760291px;}
.ws79{word-spacing:54.195408px;}
.ws5d{word-spacing:54.895119px;}
.ws1b9{word-spacing:56.794340px;}
.ws1b2{word-spacing:190.312816px;}
.ws166{word-spacing:200.517493px;}
.ws1b3{word-spacing:201.304679px;}
.ws1b6{word-spacing:224.296391px;}
.ws1b4{word-spacing:224.637192px;}
.ws1d4{word-spacing:395.428667px;}
.ws1cd{word-spacing:515.561555px;}
.ws1ce{word-spacing:874.030637px;}
._35{margin-left:-224.685191px;}
._49{margin-left:-17.903461px;}
._1c{margin-left:-10.626405px;}
._22{margin-left:-5.485984px;}
._8{margin-left:-3.801097px;}
._18{margin-left:-2.763618px;}
._6{margin-left:-1.122010px;}
._3{width:1.242012px;}
._11{width:2.779866px;}
._0{width:8.954400px;}
._4c{width:10.254035px;}
._4b{width:12.514576px;}
._12{width:13.549075px;}
._5{width:15.072151px;}
._7{width:16.632115px;}
._21{width:17.752514px;}
._4{width:18.798189px;}
._9{width:19.978689px;}
._b{width:21.205759px;}
._a{width:23.202243px;}
._19{width:24.725147px;}
._f{width:25.930536px;}
._1a{width:27.116936px;}
._16{width:28.756098px;}
._1d{width:30.117052px;}
._10{width:32.026688px;}
._c{width:33.674472px;}
._13{width:35.373718px;}
._e{width:36.486874px;}
._d{width:37.584577px;}
._2b{width:38.719404px;}
._14{width:39.748394px;}
._1e{width:41.199390px;}
._15{width:42.210744px;}
._24{width:43.217562px;}
._2{width:44.553784px;}
._1b{width:46.186929px;}
._23{width:48.943562px;}
._2a{width:53.425134px;}
._20{width:55.223053px;}
._17{width:56.321256px;}
._4a{width:65.861121px;}
._34{width:95.542806px;}
._2c{width:191.416458px;}
._27{width:200.944683px;}
._2f{width:202.375080px;}
._2d{width:210.093374px;}
._28{width:215.872497px;}
._30{width:220.403635px;}
._32{width:221.426037px;}
._31{width:224.685191px;}
._29{width:238.864209px;}
._33{width:243.462542px;}
._25{width:258.083164px;}
._26{width:267.044662px;}
._36{width:297.236285px;}
._2e{width:320.227997px;}
._38{width:390.331112px;}
._46{width:405.028547px;}
._44{width:408.743672px;}
._43{width:471.507686px;}
._41{width:488.605093px;}
._3f{width:492.617842px;}
._3e{width:501.459341px;}
._42{width:509.792047px;}
._3c{width:515.609555px;}
._3b{width:524.451054px;}
._40{width:635.401656px;}
._3d{width:658.393369px;}
._47{width:704.808799px;}
._39{width:744.725123px;}
._3a{width:753.057805px;}
._37{width:771.743963px;}
._45{width:874.078636px;}
._48{width:950.738553px;}
._1f{width:1498.968470px;}
._1{width:1976.208061px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.995200px;}
.fs12{font-size:39.194400px;}
.fs11{font-size:41.158800px;}
.fse{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:43.996200px;}
.fsc{font-size:44.999400px;}
.fsf{font-size:47.999400px;}
.fs13{font-size:54.000000px;}
.fs10{font-size:55.200600px;}
.fsb{font-size:58.799400px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.000600px;}
.fs9{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y58{bottom:77.384910px;}
.y23f{bottom:89.290485px;}
.y286{bottom:89.291865px;}
.y118{bottom:89.294850px;}
.y1a0{bottom:89.300235px;}
.y14f{bottom:89.302245px;}
.yc4{bottom:89.304240px;}
.ye7{bottom:89.308515px;}
.y90{bottom:89.318895px;}
.y57{bottom:89.375745px;}
.y1c4{bottom:89.655975px;}
.y204{bottom:97.031535px;}
.y4{bottom:100.995005px;}
.y56{bottom:101.366565px;}
.y23e{bottom:102.811680px;}
.y285{bottom:102.813060px;}
.y117{bottom:107.322750px;}
.y19f{bottom:107.328120px;}
.y14e{bottom:107.330130px;}
.yc3{bottom:107.332140px;}
.ye6{bottom:107.336415px;}
.y8f{bottom:107.346780px;}
.y1c3{bottom:107.598615px;}
.y55{bottom:113.357400px;}
.y23d{bottom:116.332875px;}
.y284{bottom:116.334255px;}
.y203{bottom:118.036065px;}
.y116{bottom:125.265375px;}
.y19e{bottom:125.270760px;}
.y14d{bottom:125.272770px;}
.yc2{bottom:125.274780px;}
.ye5{bottom:125.279055px;}
.y8e{bottom:125.374680px;}
.y1c2{bottom:125.626515px;}
.y23c{bottom:129.769695px;}
.y283{bottom:130.211805px;}
.y17c{bottom:135.730410px;}
.y54{bottom:138.784410px;}
.y202{bottom:139.040610px;}
.y23{bottom:139.264499px;}
.y23b{bottom:143.290890px;}
.y115{bottom:143.293275px;}
.y19d{bottom:143.298660px;}
.y14c{bottom:143.300670px;}
.yc1{bottom:143.302680px;}
.ye4{bottom:143.306955px;}
.y8d{bottom:143.317320px;}
.y282{bottom:143.647500px;}
.y1c1{bottom:143.654400px;}
.y53{bottom:152.305605px;}
.y17b{bottom:156.734940px;}
.y23a{bottom:156.812085px;}
.y281{bottom:157.168695px;}
.y201{bottom:160.045140px;}
.y114{bottom:161.321175px;}
.y19c{bottom:161.326560px;}
.y14b{bottom:161.328570px;}
.yc0{bottom:161.330580px;}
.ye3{bottom:161.334840px;}
.y8c{bottom:161.345220px;}
.y1c0{bottom:161.597040px;}
.y52{bottom:165.826800px;}
.y4f{bottom:170.000850px;}
.y239{bottom:170.333280px;}
.y51{bottom:170.844150px;}
.y280{bottom:171.029625px;}
.y17a{bottom:177.739485px;}
.y113{bottom:179.263815px;}
.y19b{bottom:179.269185px;}
.y14a{bottom:179.271195px;}
.ybf{bottom:179.273205px;}
.ye2{bottom:179.277480px;}
.y50{bottom:179.347950px;}
.y8b{bottom:179.373105px;}
.y1bf{bottom:179.624940px;}
.y200{bottom:181.049685px;}
.y238{bottom:183.770100px;}
.y27f{bottom:184.550820px;}
.y4e{bottom:188.028750px;}
.y1a{bottom:196.933500px;}
.y237{bottom:197.291250px;}
.y112{bottom:197.291700px;}
.y19a{bottom:197.297085px;}
.y149{bottom:197.299095px;}
.ybe{bottom:197.301105px;}
.ye1{bottom:197.305380px;}
.y8a{bottom:197.315745px;}
.y1be{bottom:197.652840px;}
.y27e{bottom:198.411765px;}
.y179{bottom:198.744015px;}
.y1ff{bottom:202.054215px;}
.y4d{bottom:205.971375px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y27d{bottom:211.932960px;}
.y111{bottom:215.319600px;}
.y199{bottom:215.324985px;}
.y148{bottom:215.326995px;}
.ybd{bottom:215.329005px;}
.ye0{bottom:215.333280px;}
.y89{bottom:215.343645px;}
.y1bd{bottom:215.595480px;}
.y178{bottom:219.748560px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1fe{bottom:223.058760px;}
.y45{bottom:223.996335px;}
.y4c{bottom:223.999290px;}
.y27c{bottom:225.793905px;}
.y110{bottom:233.262915px;}
.y198{bottom:233.267625px;}
.y147{bottom:233.269635px;}
.ybc{bottom:233.271645px;}
.ydf{bottom:233.275905px;}
.y88{bottom:233.371545px;}
.y1bc{bottom:233.623365px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y27b{bottom:239.229600px;}
.y236{bottom:239.470395px;}
.y177{bottom:240.753090px;}
.y44{bottom:242.024235px;}
.y4b{bottom:242.027190px;}
.y1fd{bottom:244.063290px;}
.y197{bottom:251.295510px;}
.y146{bottom:251.297520px;}
.ybb{bottom:251.299530px;}
.yde{bottom:251.303805px;}
.y87{bottom:251.314185px;}
.y1bb{bottom:251.651265px;}
.y27a{bottom:252.750795px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y43{bottom:259.966875px;}
.y4a{bottom:259.969830px;}
.y176{bottom:261.757620px;}
.y1fc{bottom:265.067820px;}
.y279{bottom:266.271990px;}
.y235{bottom:266.512785px;}
.y196{bottom:269.323410px;}
.y145{bottom:269.325420px;}
.yba{bottom:269.327430px;}
.ydd{bottom:269.331705px;}
.y86{bottom:269.342070px;}
.y1ba{bottom:269.593905px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y10f{bottom:273.831345px;}
.y42{bottom:277.994745px;}
.y49{bottom:277.997700px;}
.y234{bottom:279.949605px;}
.y278{bottom:280.132920px;}
.y175{bottom:282.762165px;}
.y1fb{bottom:284.711580px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y195{bottom:287.266050px;}
.y144{bottom:287.268060px;}
.yb9{bottom:287.270070px;}
.ydc{bottom:287.274345px;}
.y85{bottom:287.369970px;}
.y1b9{bottom:287.621805px;}
.y10e{bottom:291.773985px;}
.y231{bottom:293.470755px;}
.y233{bottom:293.470800px;}
.y277{bottom:293.654115px;}
.y41{bottom:296.022645px;}
.y48{bottom:296.025600px;}
.y1fa{bottom:298.233015px;}
.y232{bottom:298.488150px;}
.y174{bottom:303.766695px;}
.y194{bottom:305.293950px;}
.y143{bottom:305.295960px;}
.yb8{bottom:305.297970px;}
.ydb{bottom:305.302245px;}
.y84{bottom:305.312610px;}
.y1b8{bottom:305.649690px;}
.y230{bottom:306.991950px;}
.y276{bottom:307.089810px;}
.y10d{bottom:309.801870px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y22f{bottom:312.009300px;}
.y40{bottom:313.965300px;}
.y47{bottom:313.968240px;}
.y1f9{bottom:317.961465px;}
.y22e{bottom:320.512740px;}
.y275{bottom:320.950755px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y193{bottom:323.321835px;}
.y142{bottom:323.323845px;}
.yb7{bottom:323.325855px;}
.yda{bottom:323.330130px;}
.y83{bottom:323.340510px;}
.y1b7{bottom:323.592330px;}
.y173{bottom:324.771240px;}
.y10c{bottom:327.829770px;}
.y3f{bottom:331.993650px;}
.y46{bottom:331.996140px;}
.y1f8{bottom:334.459815px;}
.y274{bottom:334.471950px;}
.y192{bottom:341.264475px;}
.y141{bottom:341.266485px;}
.yb6{bottom:341.268495px;}
.yd9{bottom:341.272770px;}
.y82{bottom:341.283135px;}
.y1b6{bottom:341.620230px;}
.y172{bottom:345.690570px;}
.y10b{bottom:345.772410px;}
.y22d{bottom:347.470755px;}
.y11{bottom:348.133500px;}
.y273{bottom:348.332895px;}
.y191{bottom:359.292375px;}
.y140{bottom:359.294385px;}
.yb5{bottom:359.296395px;}
.yd8{bottom:359.300670px;}
.y81{bottom:359.311035px;}
.y1b5{bottom:359.648130px;}
.y22c{bottom:360.991950px;}
.y272{bottom:361.854090px;}
.y10a{bottom:363.800310px;}
.y171{bottom:366.695115px;}
.y22b{bottom:374.513265px;}
.y271{bottom:375.375270px;}
.y190{bottom:377.320275px;}
.y1d8{bottom:377.321835px;}
.y13f{bottom:377.322285px;}
.y1dd{bottom:377.323320px;}
.yb4{bottom:377.324295px;}
.yd7{bottom:377.328570px;}
.y80{bottom:377.338935px;}
.y1b4{bottom:377.590755px;}
.y3e{bottom:377.656725px;}
.y109{bottom:381.828195px;}
.y10{bottom:386.785499px;}
.y170{bottom:387.699645px;}
.y270{bottom:389.236215px;}
.y18f{bottom:395.262915px;}
.y1d7{bottom:395.264475px;}
.y13e{bottom:395.264925px;}
.y1dc{bottom:395.265945px;}
.yb3{bottom:395.266935px;}
.yd6{bottom:395.271195px;}
.y7f{bottom:395.281575px;}
.y1b3{bottom:395.618655px;}
.y108{bottom:399.770835px;}
.y26f{bottom:402.671910px;}
.y3d{bottom:403.168995px;}
.yf{bottom:408.044999px;}
.y16f{bottom:408.704175px;}
.y22a{bottom:412.188645px;}
.y18e{bottom:413.291250px;}
.y1d6{bottom:413.292375px;}
.y13d{bottom:413.292810px;}
.y1db{bottom:413.293845px;}
.yb2{bottom:413.294820px;}
.yd5{bottom:413.299095px;}
.y7e{bottom:413.309460px;}
.y1b2{bottom:413.646555px;}
.y26e{bottom:416.193105px;}
.y107{bottom:417.798735px;}
.y3c{bottom:421.197645px;}
.y229{bottom:425.709840px;}
.y16e{bottom:429.708720px;}
.y26d{bottom:430.054050px;}
.y1d5{bottom:431.320275px;}
.y13c{bottom:431.320710px;}
.y1da{bottom:431.321745px;}
.yb1{bottom:431.322720px;}
.yd4{bottom:431.326995px;}
.y7d{bottom:431.337360px;}
.y1b1{bottom:431.589195px;}
.y106{bottom:435.826635px;}
.y228{bottom:439.146660px;}
.y26c{bottom:443.575245px;}
.y3b{bottom:443.648385px;}
.y1d4{bottom:449.262915px;}
.y13b{bottom:449.263350px;}
.y1d9{bottom:449.264385px;}
.yb0{bottom:449.265360px;}
.yd3{bottom:449.269635px;}
.y7c{bottom:449.280000px;}
.y18d{bottom:449.610795px;}
.y1b0{bottom:449.617080px;}
.y16d{bottom:450.713250px;}
.y227{bottom:452.667855px;}
.y105{bottom:453.769965px;}
.y26b{bottom:457.096440px;}
.y3a{bottom:461.677050px;}
.y226{bottom:466.189050px;}
.y13a{bottom:467.291250px;}
.yaf{bottom:467.293260px;}
.yd2{bottom:467.297520px;}
.y7b{bottom:467.307900px;}
.y18c{bottom:467.638680px;}
.y1af{bottom:467.644980px;}
.y26a{bottom:470.872995px;}
.y16c{bottom:471.717795px;}
.y39{bottom:479.705745px;}
.y269{bottom:484.394190px;}
.ye{bottom:484.864502px;}
.y139{bottom:485.319585px;}
.yae{bottom:485.321145px;}
.yd1{bottom:485.325420px;}
.y7a{bottom:485.335800px;}
.y18b{bottom:485.581320px;}
.y1ae{bottom:485.587620px;}
.y16b{bottom:492.722325px;}
.y104{bottom:494.336820px;}
.y225{bottom:494.846925px;}
.y38{bottom:497.648940px;}
.y268{bottom:497.915385px;}
.y1f7{bottom:500.206200px;}
.yd{bottom:502.864502px;}
.yad{bottom:503.263785px;}
.yd0{bottom:503.268060px;}
.y79{bottom:503.278425px;}
.y18a{bottom:503.609220px;}
.y1ad{bottom:503.615520px;}
.y224{bottom:508.368120px;}
.y267{bottom:511.776330px;}
.y103{bottom:512.279460px;}
.y16a{bottom:513.726870px;}
.y37{bottom:515.677590px;}
.yc{bottom:520.864502px;}
.y1f6{bottom:521.210745px;}
.yac{bottom:521.291685px;}
.ycf{bottom:521.295960px;}
.y78{bottom:521.306325px;}
.y189{bottom:521.637120px;}
.y1ac{bottom:521.643420px;}
.y223{bottom:521.889315px;}
.y266{bottom:525.637275px;}
.y102{bottom:530.307360px;}
.y169{bottom:534.731400px;}
.y222{bottom:535.325010px;}
.y138{bottom:536.853465px;}
.y36{bottom:538.212345px;}
.yb{bottom:538.864499px;}
.y265{bottom:539.158470px;}
.yab{bottom:539.319585px;}
.y137{bottom:539.320140px;}
.yce{bottom:539.323845px;}
.y77{bottom:539.334225px;}
.y188{bottom:539.579745px;}
.y1ab{bottom:539.586045px;}
.y1f5{bottom:542.215275px;}
.y101{bottom:548.335245px;}
.y221{bottom:548.846205px;}
.y264{bottom:552.594165px;}
.y136{bottom:554.881665px;}
.y168{bottom:555.735930px;}
.y35{bottom:556.155540px;}
.ya{bottom:556.864499px;}
.yaa{bottom:557.262765px;}
.y135{bottom:557.263440px;}
.ycd{bottom:557.266485px;}
.y76{bottom:557.276865px;}
.y187{bottom:557.607645px;}
.y1aa{bottom:557.613945px;}
.y1f4{bottom:563.219820px;}
.y100{bottom:566.277885px;}
.y263{bottom:566.455095px;}
.y134{bottom:571.719180px;}
.y133{bottom:573.335265px;}
.y34{bottom:574.184190px;}
.ya9{bottom:575.291100px;}
.ycc{bottom:575.294385px;}
.y75{bottom:575.304750px;}
.y186{bottom:575.635545px;}
.y1a9{bottom:575.641845px;}
.y132{bottom:575.801415px;}
.y167{bottom:576.740475px;}
.y220{bottom:577.589565px;}
.y262{bottom:579.976290px;}
.y1f3{bottom:584.224350px;}
.yff{bottom:584.305785px;}
.y21f{bottom:591.025260px;}
.y33{bottom:592.212885px;}
.ycb{bottom:593.322285px;}
.y74{bottom:593.332650px;}
.y261{bottom:593.497485px;}
.y185{bottom:593.578185px;}
.y1a8{bottom:593.584485px;}
.y166{bottom:597.745005px;}
.yfe{bottom:602.333685px;}
.y21e{bottom:604.546455px;}
.y1f2{bottom:605.228880px;}
.y260{bottom:607.018680px;}
.y32{bottom:610.156035px;}
.y12f{bottom:611.007750px;}
.yca{bottom:611.264925px;}
.ya8{bottom:611.266350px;}
.y73{bottom:611.275290px;}
.y184{bottom:611.606070px;}
.y1a7{bottom:611.612370px;}
.y12d{bottom:617.045235px;}
.y165{bottom:618.749550px;}
.yfd{bottom:620.277015px;}
.y25f{bottom:620.879625px;}
.y131{bottom:621.128595px;}
.y12c{bottom:621.136725px;}
.y1f1{bottom:626.233425px;}
.y31{bottom:628.184745px;}
.yc9{bottom:629.292810px;}
.ya7{bottom:629.294250px;}
.y72{bottom:629.303190px;}
.y183{bottom:629.633970px;}
.y1a6{bottom:629.640270px;}
.y12e{bottom:631.076985px;}
.y21d{bottom:633.204330px;}
.y25e{bottom:634.315320px;}
.y164{bottom:639.754080px;}
.y130{bottom:641.877435px;}
.y9{bottom:645.510000px;}
.y30{bottom:646.213395px;}
.y21c{bottom:646.725525px;}
.y1f0{bottom:647.237955px;}
.yc8{bottom:647.320710px;}
.ya6{bottom:647.322150px;}
.y71{bottom:647.331075px;}
.y182{bottom:647.576610px;}
.y1a5{bottom:647.582910px;}
.y25d{bottom:648.176265px;}
.y21b{bottom:660.246720px;}
.y163{bottom:660.758625px;}
.yfc{bottom:660.846615px;}
.y25c{bottom:661.697460px;}
.y2f{bottom:664.156590px;}
.yc7{bottom:665.263350px;}
.ya5{bottom:665.264775px;}
.y12b{bottom:665.271555px;}
.y70{bottom:665.273715px;}
.y181{bottom:665.604510px;}
.y1a4{bottom:665.610810px;}
.y8{bottom:666.771000px;}
.y1ef{bottom:668.242500px;}
.y25b{bottom:675.218655px;}
.yfb{bottom:678.789255px;}
.y162{bottom:681.763155px;}
.y2e{bottom:682.185285px;}
.yc6{bottom:683.291250px;}
.ya4{bottom:683.292675px;}
.y12a{bottom:683.299440px;}
.y6f{bottom:683.301615px;}
.y180{bottom:683.632395px;}
.y1a3{bottom:683.638695px;}
.y21a{bottom:688.904580px;}
.y25a{bottom:689.079585px;}
.y1ee{bottom:689.247030px;}
.yfa{bottom:696.817155px;}
.y2d{bottom:700.213950px;}
.yc5{bottom:701.319585px;}
.ya3{bottom:701.320575px;}
.y129{bottom:701.327340px;}
.y6e{bottom:701.329515px;}
.y17f{bottom:701.575035px;}
.y1a2{bottom:701.581335px;}
.y219{bottom:702.425775px;}
.y259{bottom:702.600780px;}
.y161{bottom:702.767685px;}
.y1ed{bottom:710.251575px;}
.yf9{bottom:714.845040px;}
.y258{bottom:716.036475px;}
.ya2{bottom:719.263215px;}
.y128{bottom:719.269980px;}
.y6d{bottom:719.272155px;}
.y17e{bottom:719.602935px;}
.y1a1{bottom:719.609235px;}
.y160{bottom:723.687030px;}
.y7{bottom:726.298500px;}
.y2c{bottom:727.171515px;}
.y257{bottom:729.557670px;}
.y218{bottom:731.083650px;}
.y1ec{bottom:731.256105px;}
.yf8{bottom:732.787680px;}
.ya1{bottom:737.291100px;}
.y127{bottom:737.297880px;}
.y6c{bottom:737.300040px;}
.y256{bottom:743.418615px;}
.y217{bottom:744.604845px;}
.y15f{bottom:744.691560px;}
.yf7{bottom:750.815580px;}
.y1eb{bottom:752.260635px;}
.y3{bottom:752.599495px;}
.y126{bottom:755.325765px;}
.y6b{bottom:755.327940px;}
.ya0{bottom:755.349990px;}
.y255{bottom:756.939810px;}
.y216{bottom:758.126040px;}
.y15e{bottom:765.696105px;}
.yf6{bottom:768.843480px;}
.y254{bottom:770.800755px;}
.y215{bottom:771.647235px;}
.y1ea{bottom:773.265180px;}
.y125{bottom:773.268405px;}
.y6a{bottom:773.270580px;}
.y9f{bottom:773.292630px;}
.y1d2{bottom:781.003440px;}
.y253{bottom:784.321950px;}
.y2a{bottom:784.913265px;}
.y214{bottom:785.082930px;}
.y15d{bottom:786.700635px;}
.yf5{bottom:786.786120px;}
.y124{bottom:791.296305px;}
.y69{bottom:791.298480px;}
.y9e{bottom:791.320530px;}
.y2b{bottom:792.226500px;}
.y1e9{bottom:794.184510px;}
.y1d1{bottom:794.524875px;}
.y252{bottom:797.757645px;}
.y213{bottom:798.604125px;}
.yf4{bottom:804.814005px;}
.y15c{bottom:807.705180px;}
.y123{bottom:809.324205px;}
.y68{bottom:809.326365px;}
.y9d{bottom:809.348430px;}
.y251{bottom:811.618575px;}
.y212{bottom:812.125320px;}
.y297{bottom:813.827670px;}
.y1e8{bottom:815.189055px;}
.y1d0{bottom:815.529405px;}
.y29{bottom:820.889370px;}
.yf3{bottom:822.841905px;}
.y250{bottom:825.139770px;}
.y211{bottom:825.646515px;}
.y296{bottom:827.264490px;}
.y122{bottom:827.266830px;}
.y67{bottom:827.269005px;}
.y9c{bottom:827.291055px;}
.y15b{bottom:828.709710px;}
.y1e7{bottom:836.193585px;}
.y1cf{bottom:836.533950px;}
.y24f{bottom:839.000715px;}
.y210{bottom:839.083335px;}
.yf2{bottom:840.784545px;}
.y295{bottom:840.785685px;}
.y121{bottom:845.294730px;}
.y66{bottom:845.296905px;}
.y9b{bottom:845.318955px;}
.y15a{bottom:849.714240px;}
.y24e{bottom:852.521910px;}
.y20f{bottom:852.604530px;}
.y294{bottom:854.306880px;}
.y1e6{bottom:857.198130px;}
.y1ce{bottom:857.538480px;}
.yf1{bottom:858.812445px;}
.y28{bottom:859.920690px;}
.y120{bottom:863.322630px;}
.y65{bottom:863.324805px;}
.y24d{bottom:866.043105px;}
.y293{bottom:867.828060px;}
.y159{bottom:870.718785px;}
.yf0{bottom:876.840735px;}
.y1e5{bottom:878.202660px;}
.y1cd{bottom:878.543025px;}
.y2{bottom:879.369000px;}
.y24c{bottom:879.904050px;}
.y292{bottom:881.264880px;}
.y11f{bottom:881.265270px;}
.y20e{bottom:881.266830px;}
.y64{bottom:881.267430px;}
.y9a{bottom:881.290965px;}
.y158{bottom:891.723315px;}
.y24b{bottom:893.339745px;}
.y291{bottom:894.786075px;}
.y27{bottom:898.952085px;}
.y1e4{bottom:899.207205px;}
.y11e{bottom:899.293170px;}
.y20d{bottom:899.294730px;}
.y63{bottom:899.295330px;}
.y99{bottom:899.318850px;}
.y1cc{bottom:899.547555px;}
.y24a{bottom:907.200675px;}
.y290{bottom:908.307270px;}
.y157{bottom:912.727860px;}
.y11d{bottom:917.321055px;}
.y20c{bottom:917.322630px;}
.y62{bottom:917.323230px;}
.yef{bottom:917.336385px;}
.y98{bottom:917.346750px;}
.y1e3{bottom:920.211735px;}
.y1cb{bottom:920.552085px;}
.y249{bottom:920.721870px;}
.y28f{bottom:921.828465px;}
.y156{bottom:933.732390px;}
.y248{bottom:934.243065px;}
.y11c{bottom:935.263695px;}
.y28e{bottom:935.264160px;}
.y20b{bottom:935.265270px;}
.y61{bottom:935.265870px;}
.yee{bottom:935.279010px;}
.y97{bottom:935.289390px;}
.y26{bottom:937.900635px;}
.y1e2{bottom:941.216265px;}
.y1ca{bottom:941.556630px;}
.y247{bottom:948.104010px;}
.y28d{bottom:948.785355px;}
.y11b{bottom:953.291595px;}
.y20a{bottom:953.293170px;}
.y60{bottom:953.293770px;}
.yed{bottom:953.306910px;}
.y96{bottom:953.317290px;}
.y155{bottom:954.736935px;}
.y246{bottom:961.540830px;}
.y1e1{bottom:962.220810px;}
.y28c{bottom:962.306550px;}
.y1c9{bottom:962.561160px;}
.y1{bottom:966.726000px;}
.y11a{bottom:971.319495px;}
.y209{bottom:971.321055px;}
.y5f{bottom:971.321655px;}
.yec{bottom:971.334810px;}
.y95{bottom:971.345175px;}
.y154{bottom:974.465880px;}
.y245{bottom:975.062025px;}
.y28b{bottom:975.827745px;}
.y25{bottom:976.932030px;}
.y1e0{bottom:983.225340px;}
.y1c8{bottom:983.565705px;}
.y244{bottom:988.922955px;}
.y119{bottom:989.262720px;}
.y28a{bottom:989.263440px;}
.y208{bottom:989.263695px;}
.y5e{bottom:989.264295px;}
.yeb{bottom:989.277450px;}
.y94{bottom:989.287815px;}
.y153{bottom:994.192935px;}
.y243{bottom:1002.444150px;}
.y289{bottom:1002.784635px;}
.y1df{bottom:1004.229885px;}
.y1c7{bottom:1004.570235px;}
.y207{bottom:1007.291595px;}
.y5d{bottom:1007.292195px;}
.yea{bottom:1007.305350px;}
.y93{bottom:1007.315715px;}
.y152{bottom:1010.691285px;}
.y242{bottom:1016.305095px;}
.y288{bottom:1016.305830px;}
.y1de{bottom:1023.958830px;}
.y1c6{bottom:1024.213995px;}
.y206{bottom:1025.319495px;}
.y5c{bottom:1025.320095px;}
.ye9{bottom:1025.333235px;}
.y92{bottom:1025.343615px;}
.y151{bottom:1027.189635px;}
.y241{bottom:1029.826290px;}
.y287{bottom:1029.827025px;}
.y24{bottom:1033.908330px;}
.y240{bottom:1043.261985px;}
.y5b{bottom:1043.262720px;}
.ye8{bottom:1043.275875px;}
.y91{bottom:1043.286240px;}
.y150{bottom:1043.687985px;}
.y1c5{bottom:1043.942970px;}
.y5a{bottom:1112.825595px;}
.y205{bottom:1127.788620px;}
.y298{bottom:1127.791808px;}
.y59{bottom:1127.791815px;}
.y1d3{bottom:1127.791905px;}
.y17d{bottom:1127.795235px;}
.h1c{height:2.351976px;}
.h12{height:22.166453px;}
.h1d{height:27.788830px;}
.h1a{height:29.181589px;}
.h13{height:31.037557px;}
.h7{height:32.130000px;}
.h23{height:32.444567px;}
.hd{height:32.513192px;}
.h11{height:33.254557px;}
.h22{height:34.079574px;}
.h15{height:34.607567px;}
.h21{height:35.471557px;}
.h18{height:39.799633px;}
.h20{height:39.906000px;}
.h1b{height:41.688775px;}
.h16{height:41.923972px;}
.h17{height:41.982772px;}
.h14{height:42.287471px;}
.h10{height:42.805963px;}
.he{height:43.939800px;}
.hf{height:44.340443px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hc{height:48.774443px;}
.h1e{height:51.393746px;}
.h19{height:54.077366px;}
.h2{height:55.080000px;}
.ha{height:55.458000px;}
.h1f{height:59.134903px;}
.h5{height:64.260000px;}
.hb{height:103.824433px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039380px;}
.xe{left:89.036265px;}
.x5{left:91.077180px;}
.xc{left:94.818915px;}
.x10{left:97.030020px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x14{left:107.575695px;}
.x15{left:123.136950px;}
.x18{left:130.025550px;}
.x16{left:140.740200px;}
.x17{left:141.845700px;}
.x1d{left:145.757400px;}
.x1a{left:152.135400px;}
.x1b{left:160.044000px;}
.x19{left:165.656505px;}
.x1e{left:167.017350px;}
.x21{left:170.844270px;}
.x7{left:194.059830px;}
.x4{left:203.484001px;}
.x2a{left:206.900220px;}
.x8{left:217.445565px;}
.x22{left:241.511400px;}
.xf{left:270.510150px;}
.x2d{left:285.987300px;}
.x2e{left:289.984200px;}
.x9{left:293.640915px;}
.xa{left:304.015650px;}
.x23{left:312.093315px;}
.x1c{left:357.165300px;}
.x24{left:382.760430px;}
.x1f{left:389.650365px;}
.x20{left:399.855015px;}
.xb{left:423.411000px;}
.x2b{left:427.321875px;}
.x25{left:453.342345px;}
.x3{left:454.959000px;}
.xd{left:457.086705px;}
.x11{left:469.074420px;}
.x13{left:478.856940px;}
.x12{left:491.013945px;}
.x26{left:524.009475px;}
.x27{left:594.591390px;}
.x28{left:669.934845px;}
.x2c{left:709.225935px;}
.x29{left:745.363500px;}
@media print{
.v2{vertical-align:-13.606293pt;}
.v3{vertical-align:-7.865760pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.514613pt;}
.v4{vertical-align:19.049013pt;}
.v1{vertical-align:21.434453pt;}
.ls18{letter-spacing:-1.072011pt;}
.ls15{letter-spacing:-1.066677pt;}
.ls9{letter-spacing:-1.050677pt;}
.ls16{letter-spacing:-1.045344pt;}
.ls13{letter-spacing:-1.040010pt;}
.lsc{letter-spacing:-1.029344pt;}
.ls10{letter-spacing:-1.013343pt;}
.ls19{letter-spacing:-1.008010pt;}
.ls14{letter-spacing:-1.002677pt;}
.ls12{letter-spacing:-0.997343pt;}
.lsd{letter-spacing:-0.986677pt;}
.ls11{letter-spacing:-0.976010pt;}
.lsb{letter-spacing:-0.970676pt;}
.lsa{letter-spacing:-0.960010pt;}
.ls8{letter-spacing:-0.954676pt;}
.ls17{letter-spacing:-0.933343pt;}
.lse{letter-spacing:-0.912009pt;}
.ls7{letter-spacing:-0.906676pt;}
.lsf{letter-spacing:-0.896009pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.026114pt;}
.ls4b{letter-spacing:0.036597pt;}
.ls73{letter-spacing:0.043995pt;}
.ls6a{letter-spacing:0.051986pt;}
.ls6e{letter-spacing:0.052042pt;}
.ls61{letter-spacing:0.098130pt;}
.ls62{letter-spacing:0.098183pt;}
.ls44{letter-spacing:0.104545pt;}
.ls51{letter-spacing:0.115015pt;}
.ls47{letter-spacing:0.138900pt;}
.ls4c{letter-spacing:0.149650pt;}
.ls1a{letter-spacing:0.172480pt;}
.ls5b{letter-spacing:0.177709pt;}
.ls33{letter-spacing:0.287412pt;}
.ls1d{letter-spacing:0.287465pt;}
.ls41{letter-spacing:0.324087pt;}
.ls37{letter-spacing:0.475622pt;}
.ls24{letter-spacing:0.475627pt;}
.ls36{letter-spacing:0.517435pt;}
.ls5f{letter-spacing:0.522661pt;}
.ls21{letter-spacing:0.527888pt;}
.ls65{letter-spacing:0.533115pt;}
.ls29{letter-spacing:0.538341pt;}
.ls27{letter-spacing:0.543568pt;}
.ls34{letter-spacing:0.548794pt;}
.ls23{letter-spacing:0.554021pt;}
.ls20{letter-spacing:0.559248pt;}
.ls26{letter-spacing:0.564474pt;}
.ls67{letter-spacing:0.569701pt;}
.ls22{letter-spacing:0.574927pt;}
.ls25{letter-spacing:0.580154pt;}
.ls60{letter-spacing:0.585381pt;}
.ls35{letter-spacing:0.590607pt;}
.ls2b{letter-spacing:0.606282pt;}
.ls5e{letter-spacing:0.611514pt;}
.ls28{letter-spacing:0.616740pt;}
.ls68{letter-spacing:0.669007pt;}
.ls38{letter-spacing:0.705593pt;}
.ls3b{letter-spacing:0.778765pt;}
.ls3a{letter-spacing:0.815352pt;}
.ls30{letter-spacing:0.825805pt;}
.ls2f{letter-spacing:0.846711pt;}
.ls2d{letter-spacing:0.867618pt;}
.ls6d{letter-spacing:0.891988pt;}
.ls6b{letter-spacing:0.927984pt;}
.ls39{letter-spacing:0.930337pt;}
.ls3c{letter-spacing:1.008736pt;}
.ls72{letter-spacing:1.163984pt;}
.ls6c{letter-spacing:1.323959pt;}
.ls46{letter-spacing:3.768367pt;}
.ls4e{letter-spacing:3.776154pt;}
.ls64{letter-spacing:8.260156pt;}
.ls63{letter-spacing:8.563090pt;}
.ls59{letter-spacing:10.348684pt;}
.ls57{letter-spacing:10.348738pt;}
.ls58{letter-spacing:10.651831pt;}
.ls49{letter-spacing:11.634422pt;}
.ls4a{letter-spacing:11.759877pt;}
.ls70{letter-spacing:11.827826pt;}
.ls69{letter-spacing:12.003802pt;}
.ls6{letter-spacing:12.051840pt;}
.ls6f{letter-spacing:12.147826pt;}
.ls1{letter-spacing:13.546773pt;}
.ls50{letter-spacing:14.002090pt;}
.ls5c{letter-spacing:14.085709pt;}
.ls4d{letter-spacing:14.210646pt;}
.ls43{letter-spacing:14.774133pt;}
.ls48{letter-spacing:14.786117pt;}
.ls42{letter-spacing:15.747767pt;}
.ls53{letter-spacing:15.758251pt;}
.ls1b{letter-spacing:15.820916pt;}
.ls1c{letter-spacing:15.820970pt;}
.ls54{letter-spacing:15.894080pt;}
.ls71{letter-spacing:16.458027pt;}
.ls55{letter-spacing:16.500427pt;}
.ls2{letter-spacing:16.725130pt;}
.ls4{letter-spacing:16.730412pt;}
.ls5{letter-spacing:16.808695pt;}
.ls3{letter-spacing:17.028330pt;}
.ls32{letter-spacing:17.634570pt;}
.ls31{letter-spacing:17.634623pt;}
.ls1e{letter-spacing:19.030132pt;}
.ls3d{letter-spacing:19.333225pt;}
.ls1f{letter-spacing:20.848958pt;}
.ls4f{letter-spacing:20.937806pt;}
.ls3e{letter-spacing:21.450025pt;}
.ls2e{letter-spacing:22.249655pt;}
.ls56{letter-spacing:22.249709pt;}
.ls2a{letter-spacing:23.075476pt;}
.ls2c{letter-spacing:23.681823pt;}
.ls40{letter-spacing:24.512781pt;}
.ls52{letter-spacing:25.244555pt;}
.ls45{letter-spacing:27.194078pt;}
.ls5d{letter-spacing:33.136695pt;}
.ls5a{letter-spacing:35.974780pt;}
.ls66{letter-spacing:199.720170pt;}
.ws1b5{word-spacing:-183.131578pt;}
.ws1ee{word-spacing:-16.512960pt;}
.ws1fe{word-spacing:-0.967983pt;}
.ws1ff{word-spacing:-0.931988pt;}
.ws8e{word-spacing:-0.831032pt;}
.ws1c3{word-spacing:-0.721273pt;}
.ws83{word-spacing:-0.527888pt;}
.ws2a{word-spacing:-0.054933pt;}
.wsb{word-spacing:-0.053334pt;}
.ws2d{word-spacing:-0.052266pt;}
.wsa7{word-spacing:-0.049067pt;}
.ws163{word-spacing:-0.048000pt;}
.ws51{word-spacing:-0.042666pt;}
.ws43{word-spacing:-0.039999pt;}
.ws4c{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws214{word-spacing:10.171864pt;}
.wsea{word-spacing:10.270295pt;}
.ws141{word-spacing:10.348694pt;}
.ws42{word-spacing:10.563860pt;}
.wsb3{word-spacing:10.573439pt;}
.ws4d{word-spacing:10.953443pt;}
.ws4a{word-spacing:11.016910pt;}
.ws48{word-spacing:11.065442pt;}
.ws4e{word-spacing:11.136374pt;}
.ws4b{word-spacing:11.281973pt;}
.ws49{word-spacing:11.457436pt;}
.ws21d{word-spacing:11.675844pt;}
.ws218{word-spacing:11.703844pt;}
.ws208{word-spacing:11.711843pt;}
.ws216{word-spacing:11.715843pt;}
.ws21e{word-spacing:11.723844pt;}
.ws1f9{word-spacing:11.731843pt;}
.ws20b{word-spacing:11.739882pt;}
.ws217{word-spacing:11.743844pt;}
.ws21f{word-spacing:11.747844pt;}
.ws212{word-spacing:11.755843pt;}
.ws1fc{word-spacing:11.759843pt;}
.ws206{word-spacing:11.763844pt;}
.ws1f6{word-spacing:11.767843pt;}
.ws222{word-spacing:11.771843pt;}
.ws20c{word-spacing:11.775843pt;}
.ws21b{word-spacing:11.783843pt;}
.ws210{word-spacing:11.787843pt;}
.ws213{word-spacing:11.791842pt;}
.ws205{word-spacing:11.795842pt;}
.ws1f3{word-spacing:11.799843pt;}
.ws201{word-spacing:11.803843pt;}
.ws20a{word-spacing:11.807843pt;}
.ws211{word-spacing:11.811842pt;}
.ws1df{word-spacing:11.815842pt;}
.ws1e0{word-spacing:11.823843pt;}
.ws1f5{word-spacing:11.827843pt;}
.ws1ed{word-spacing:11.831842pt;}
.ws209{word-spacing:11.835842pt;}
.ws1de{word-spacing:11.843842pt;}
.ws21c{word-spacing:11.847842pt;}
.ws1e2{word-spacing:11.851842pt;}
.ws1f8{word-spacing:11.855842pt;}
.ws47{word-spacing:11.859842pt;}
.ws202{word-spacing:11.863842pt;}
.ws204{word-spacing:11.875841pt;}
.ws1ea{word-spacing:11.883842pt;}
.ws1ef{word-spacing:11.887842pt;}
.ws1f7{word-spacing:11.895841pt;}
.ws1ec{word-spacing:11.903842pt;}
.ws1e5{word-spacing:11.915841pt;}
.ws20d{word-spacing:11.919841pt;}
.ws200{word-spacing:11.923841pt;}
.ws1fa{word-spacing:11.927841pt;}
.ws46{word-spacing:11.931841pt;}
.ws223{word-spacing:11.943841pt;}
.ws20e{word-spacing:11.947841pt;}
.ws1e8{word-spacing:11.951840pt;}
.ws1e1{word-spacing:11.955840pt;}
.ws21a{word-spacing:11.967841pt;}
.ws1e3{word-spacing:11.995840pt;}
.ws220{word-spacing:11.999840pt;}
.ws1e6{word-spacing:12.015839pt;}
.ws215{word-spacing:12.019840pt;}
.ws203{word-spacing:12.023840pt;}
.ws1fb{word-spacing:12.039839pt;}
.ws224{word-spacing:12.043840pt;}
.ws45{word-spacing:12.067839pt;}
.ws221{word-spacing:12.071839pt;}
.ws1f2{word-spacing:12.075839pt;}
.ws1f1{word-spacing:12.095784pt;}
.ws44{word-spacing:12.095837pt;}
.ws1e7{word-spacing:12.103839pt;}
.ws1e4{word-spacing:12.111838pt;}
.ws1e9{word-spacing:12.119838pt;}
.ws20f{word-spacing:12.147838pt;}
.ws207{word-spacing:12.167838pt;}
.ws1dd{word-spacing:12.203820pt;}
.ws1f4{word-spacing:12.227837pt;}
.ws219{word-spacing:12.243837pt;}
.ws1f0{word-spacing:12.279836pt;}
.ws1d3{word-spacing:12.309179pt;}
.ws168{word-spacing:12.321979pt;}
.ws1c9{word-spacing:12.339046pt;}
.ws1eb{word-spacing:12.339835pt;}
.ws167{word-spacing:12.381712pt;}
.ws165{word-spacing:12.390245pt;}
.ws1b7{word-spacing:12.394512pt;}
.ws1cc{word-spacing:12.403045pt;}
.ws169{word-spacing:12.441400pt;}
.ws4f{word-spacing:12.441453pt;}
.ws1d1{word-spacing:12.471310pt;}
.ws164{word-spacing:12.479844pt;}
.ws1d2{word-spacing:12.492643pt;}
.ws1ca{word-spacing:12.513976pt;}
.ws50{word-spacing:12.548110pt;}
.ws1d0{word-spacing:12.573710pt;}
.ws1c8{word-spacing:12.595043pt;}
.ws1cb{word-spacing:12.620642pt;}
.ws1c7{word-spacing:12.641975pt;}
.wsc4{word-spacing:12.667575pt;}
.ws1b8{word-spacing:12.697442pt;}
.ws187{word-spacing:13.139705pt;}
.ws17a{word-spacing:13.223361pt;}
.ws17b{word-spacing:13.500342pt;}
.ws161{word-spacing:14.246400pt;}
.ws15f{word-spacing:14.256000pt;}
.ws15e{word-spacing:14.275200pt;}
.ws1b0{word-spacing:14.280000pt;}
.ws1c6{word-spacing:14.294400pt;}
.ws1b1{word-spacing:14.385600pt;}
.ws160{word-spacing:14.424000pt;}
.ws1cf{word-spacing:14.486400pt;}
.ws162{word-spacing:14.500800pt;}
.wse0{word-spacing:14.504265pt;}
.ws1fd{word-spacing:14.543806pt;}
.ws12d{word-spacing:14.592585pt;}
.wsa8{word-spacing:14.612212pt;}
.ws108{word-spacing:14.646559pt;}
.ws10{word-spacing:14.762860pt;}
.ws114{word-spacing:14.788854pt;}
.ws121{word-spacing:14.828108pt;}
.ws70{word-spacing:15.000380pt;}
.ws19{word-spacing:15.077484pt;}
.wsf6{word-spacing:15.094459pt;}
.ws1b{word-spacing:15.098817pt;}
.ws1c5{word-spacing:15.104913pt;}
.ws12{word-spacing:15.109484pt;}
.ws28{word-spacing:15.109485pt;}
.ws29{word-spacing:15.184151pt;}
.ws60{word-spacing:15.198991pt;}
.ws62{word-spacing:15.204218pt;}
.wsf{word-spacing:15.216152pt;}
.ws16{word-spacing:15.226818pt;}
.ws14{word-spacing:15.226819pt;}
.ws13{word-spacing:15.237486pt;}
.ws14c{word-spacing:15.256484pt;}
.ws26{word-spacing:15.264152pt;}
.ws21{word-spacing:15.269485pt;}
.ws1a{word-spacing:15.274819pt;}
.ws188{word-spacing:15.287844pt;}
.ws171{word-spacing:15.303523pt;}
.ws25{word-spacing:15.306820pt;}
.ws15{word-spacing:15.328153pt;}
.ws27{word-spacing:15.354843pt;}
.ws170{word-spacing:15.366243pt;}
.ws22{word-spacing:15.370820pt;}
.ws17{word-spacing:15.381487pt;}
.ws5f{word-spacing:15.381923pt;}
.ws1e{word-spacing:15.408155pt;}
.wsc1{word-spacing:15.418509pt;}
.ws1c{word-spacing:15.418820pt;}
.ws1f{word-spacing:15.424155pt;}
.ws18{word-spacing:15.434814pt;}
.ws94{word-spacing:15.439414pt;}
.ws23{word-spacing:15.450846pt;}
.wsc8{word-spacing:15.465548pt;}
.ws1d{word-spacing:15.482821pt;}
.ws20{word-spacing:15.493488pt;}
.ws1a0{word-spacing:15.502136pt;}
.ws98{word-spacing:15.507362pt;}
.ws11{word-spacing:15.509475pt;}
.ws10b{word-spacing:15.512588pt;}
.ws90{word-spacing:15.523042pt;}
.ws24{word-spacing:15.525488pt;}
.ws1bf{word-spacing:15.528268pt;}
.ws96{word-spacing:15.543948pt;}
.ws113{word-spacing:15.559628pt;}
.ws95{word-spacing:15.590987pt;}
.ws54{word-spacing:15.601441pt;}
.wse6{word-spacing:15.611895pt;}
.ws151{word-spacing:15.617120pt;}
.ws1a9{word-spacing:15.627574pt;}
.ws120{word-spacing:15.643253pt;}
.ws1c0{word-spacing:15.690294pt;}
.ws10d{word-spacing:15.695519pt;}
.ws97{word-spacing:15.705973pt;}
.ws174{word-spacing:15.721652pt;}
.ws91{word-spacing:15.726879pt;}
.ws93{word-spacing:15.753012pt;}
.wsa{word-spacing:15.760158pt;}
.ws92{word-spacing:15.763466pt;}
.ws6f{word-spacing:15.768693pt;}
.wsd{word-spacing:15.770825pt;}
.ws130{word-spacing:15.784372pt;}
.ws145{word-spacing:15.794826pt;}
.wsec{word-spacing:15.800052pt;}
.ws13d{word-spacing:15.805278pt;}
.wsdf{word-spacing:15.820959pt;}
.ws53{word-spacing:15.831411pt;}
.ws110{word-spacing:15.836638pt;}
.ws61{word-spacing:15.847092pt;}
.ws173{word-spacing:15.862764pt;}
.ws2b{word-spacing:15.862771pt;}
.ws11b{word-spacing:15.867999pt;}
.ws183{word-spacing:15.894132pt;}
.wsfd{word-spacing:15.915038pt;}
.ws1db{word-spacing:15.925491pt;}
.ws16a{word-spacing:15.930717pt;}
.ws107{word-spacing:15.956850pt;}
.wsc{word-spacing:15.994826pt;}
.wsde{word-spacing:15.998664pt;}
.ws2c{word-spacing:16.035249pt;}
.ws15d{word-spacing:16.066609pt;}
.ws129{word-spacing:16.077063pt;}
.wse{word-spacing:16.085495pt;}
.ws2e{word-spacing:16.108423pt;}
.wsbb{word-spacing:16.129329pt;}
.ws112{word-spacing:16.134556pt;}
.ws10a{word-spacing:16.139781pt;}
.ws116{word-spacing:16.150235pt;}
.ws146{word-spacing:16.165945pt;}
.ws15c{word-spacing:16.192048pt;}
.ws132{word-spacing:16.197274pt;}
.ws140{word-spacing:16.207728pt;}
.ws10c{word-spacing:16.239088pt;}
.wsca{word-spacing:16.301819pt;}
.wsc7{word-spacing:16.411566pt;}
.wsbe{word-spacing:16.442926pt;}
.wscb{word-spacing:16.469059pt;}
.ws1a1{word-spacing:16.484739pt;}
.ws9{word-spacing:16.533476pt;}
.wsc9{word-spacing:16.573591pt;}
.ws37{word-spacing:16.620630pt;}
.ws2f{word-spacing:16.651991pt;}
.ws153{word-spacing:16.657217pt;}
.wsc0{word-spacing:16.672897pt;}
.wsbf{word-spacing:16.709533pt;}
.ws64{word-spacing:16.751296pt;}
.ws36{word-spacing:16.814016pt;}
.ws18d{word-spacing:16.834922pt;}
.ws177{word-spacing:16.976040pt;}
.wsaa{word-spacing:17.017854pt;}
.ws13f{word-spacing:17.033532pt;}
.ws18e{word-spacing:17.038759pt;}
.ws1ad{word-spacing:17.054440pt;}
.ws1ae{word-spacing:17.059665pt;}
.ws1a6{word-spacing:17.064892pt;}
.ws152{word-spacing:17.070105pt;}
.wsef{word-spacing:17.070120pt;}
.ws11d{word-spacing:17.075346pt;}
.ws1d9{word-spacing:17.101479pt;}
.ws9c{word-spacing:17.117159pt;}
.ws11a{word-spacing:17.195558pt;}
.ws1c4{word-spacing:17.242598pt;}
.ws19b{word-spacing:17.279184pt;}
.ws9e{word-spacing:17.320996pt;}
.ws1be{word-spacing:17.331450pt;}
.ws13e{word-spacing:17.341931pt;}
.wse1{word-spacing:17.352356pt;}
.ws1a7{word-spacing:17.368037pt;}
.ws147{word-spacing:17.394169pt;}
.ws9f{word-spacing:17.404622pt;}
.ws8{word-spacing:17.453492pt;}
.ws33{word-spacing:17.467342pt;}
.ws184{word-spacing:17.498701pt;}
.ws185{word-spacing:17.503928pt;}
.ws6{word-spacing:17.506292pt;}
.ws7{word-spacing:17.576694pt;}
.ws1a5{word-spacing:17.624140pt;}
.ws134{word-spacing:17.624141pt;}
.wsa0{word-spacing:17.681632pt;}
.wsb5{word-spacing:17.707765pt;}
.wsbc{word-spacing:17.796618pt;}
.ws56{word-spacing:17.838431pt;}
.wsd2{word-spacing:17.875018pt;}
.wsd3{word-spacing:17.890697pt;}
.ws124{word-spacing:17.922057pt;}
.ws123{word-spacing:17.984777pt;}
.ws9b{word-spacing:18.031816pt;}
.ws102{word-spacing:18.104988pt;}
.wsb7{word-spacing:18.178161pt;}
.ws1af{word-spacing:18.183387pt;}
.wsc6{word-spacing:18.225201pt;}
.ws195{word-spacing:18.240881pt;}
.wsb8{word-spacing:18.287920pt;}
.ws12f{word-spacing:18.308826pt;}
.wse4{word-spacing:18.334959pt;}
.ws159{word-spacing:18.402906pt;}
.ws131{word-spacing:18.418585pt;}
.ws196{word-spacing:18.528344pt;}
.ws5b{word-spacing:18.585838pt;}
.ws175{word-spacing:18.627649pt;}
.wsa2{word-spacing:18.721729pt;}
.ws136{word-spacing:18.758315pt;}
.ws8f{word-spacing:18.794902pt;}
.wse2{word-spacing:18.836714pt;}
.wsb4{word-spacing:18.847168pt;}
.wsf7{word-spacing:18.862847pt;}
.ws1d7{word-spacing:18.894207pt;}
.ws18c{word-spacing:18.930794pt;}
.ws1dc{word-spacing:18.946473pt;}
.ws1bd{word-spacing:18.983060pt;}
.ws1d6{word-spacing:18.998739pt;}
.ws158{word-spacing:19.009193pt;}
.ws1a3{word-spacing:19.056232pt;}
.ws150{word-spacing:19.103272pt;}
.ws14a{word-spacing:19.108499pt;}
.wsb6{word-spacing:19.134632pt;}
.wsd0{word-spacing:19.186898pt;}
.wsad{word-spacing:19.275749pt;}
.ws1a2{word-spacing:19.296656pt;}
.ws125{word-spacing:19.328016pt;}
.wsd1{word-spacing:19.354149pt;}
.ws106{word-spacing:19.416869pt;}
.wsa6{word-spacing:19.537080pt;}
.ws1ab{word-spacing:19.568440pt;}
.ws17e{word-spacing:19.641612pt;}
.ws31{word-spacing:19.657293pt;}
.wsc5{word-spacing:19.704332pt;}
.wsee{word-spacing:19.735692pt;}
.ws197{word-spacing:19.793185pt;}
.ws192{word-spacing:19.808865pt;}
.ws101{word-spacing:19.824544pt;}
.ws12e{word-spacing:19.866358pt;}
.wsed{word-spacing:19.902943pt;}
.ws8d{word-spacing:19.918624pt;}
.ws32{word-spacing:19.949984pt;}
.wsd6{word-spacing:19.986569pt;}
.ws3a{word-spacing:20.038835pt;}
.wsa5{word-spacing:20.064968pt;}
.ws3b{word-spacing:20.101555pt;}
.ws104{word-spacing:20.117234pt;}
.wsc2{word-spacing:20.122461pt;}
.ws179{word-spacing:20.179955pt;}
.ws198{word-spacing:20.190407pt;}
.wsba{word-spacing:20.242673pt;}
.ws39{word-spacing:20.247970pt;}
.wsbd{word-spacing:20.268806pt;}
.ws8b{word-spacing:20.362885pt;}
.wsf0{word-spacing:20.373338pt;}
.wsf3{word-spacing:20.420379pt;}
.ws8a{word-spacing:20.504004pt;}
.wsf4{word-spacing:20.551044pt;}
.ws182{word-spacing:20.571951pt;}
.ws181{word-spacing:20.587629pt;}
.ws14b{word-spacing:20.592857pt;}
.ws65{word-spacing:20.624217pt;}
.wsf1{word-spacing:20.645123pt;}
.ws1a4{word-spacing:20.807148pt;}
.wse8{word-spacing:20.838508pt;}
.wsfb{word-spacing:20.979625pt;}
.ws1{word-spacing:21.021867pt;}
.ws122{word-spacing:21.031892pt;}
.ws1bb{word-spacing:21.063251pt;}
.ws1bc{word-spacing:21.068479pt;}
.ws180{word-spacing:21.084158pt;}
.wscd{word-spacing:21.162557pt;}
.ws11c{word-spacing:21.183463pt;}
.ws138{word-spacing:21.199144pt;}
.wsce{word-spacing:21.225277pt;}
.ws15a{word-spacing:21.240927pt;}
.ws13c{word-spacing:21.246183pt;}
.wsdc{word-spacing:21.251410pt;}
.wscc{word-spacing:21.272283pt;}
.ws74{word-spacing:21.282770pt;}
.ws30{word-spacing:21.335036pt;}
.ws63{word-spacing:21.350715pt;}
.ws15b{word-spacing:21.423888pt;}
.ws13b{word-spacing:21.434342pt;}
.wsdd{word-spacing:21.455248pt;}
.ws87{word-spacing:21.507520pt;}
.ws71{word-spacing:21.517968pt;}
.ws6b{word-spacing:21.554553pt;}
.wsc3{word-spacing:21.585913pt;}
.ws127{word-spacing:21.606819pt;}
.ws81{word-spacing:21.643406pt;}
.ws18a{word-spacing:21.669539pt;}
.ws111{word-spacing:21.674766pt;}
.ws99{word-spacing:21.747939pt;}
.ws80{word-spacing:21.758392pt;}
.ws1c1{word-spacing:21.779298pt;}
.ws3d{word-spacing:21.815884pt;}
.ws128{word-spacing:21.821111pt;}
.ws1d5{word-spacing:21.852471pt;}
.ws191{word-spacing:21.883831pt;}
.ws66{word-spacing:21.936108pt;}
.wsa4{word-spacing:21.962230pt;}
.wse3{word-spacing:22.045855pt;}
.wsac{word-spacing:22.155613pt;}
.ws156{word-spacing:22.197427pt;}
.ws137{word-spacing:22.207880pt;}
.ws3c{word-spacing:22.239240pt;}
.ws189{word-spacing:22.265373pt;}
.ws7d{word-spacing:22.291506pt;}
.ws86{word-spacing:22.322865pt;}
.wsf8{word-spacing:22.348999pt;}
.ws72{word-spacing:22.401265pt;}
.ws119{word-spacing:22.443077pt;}
.ws1ba{word-spacing:22.479664pt;}
.ws1c2{word-spacing:22.484891pt;}
.ws7c{word-spacing:22.490117pt;}
.ws155{word-spacing:22.500589pt;}
.ws57{word-spacing:22.542383pt;}
.ws186{word-spacing:22.563290pt;}
.ws73{word-spacing:22.678275pt;}
.wsb9{word-spacing:22.699181pt;}
.ws105{word-spacing:22.761901pt;}
.ws16e{word-spacing:23.023232pt;}
.ws139{word-spacing:23.164351pt;}
.ws190{word-spacing:23.200936pt;}
.wscf{word-spacing:23.211390pt;}
.wse9{word-spacing:23.279335pt;}
.wsb2{word-spacing:23.326375pt;}
.ws67{word-spacing:23.362962pt;}
.wsf9{word-spacing:23.446588pt;}
.wsb1{word-spacing:23.472721pt;}
.ws17d{word-spacing:23.509306pt;}
.ws77{word-spacing:23.540666pt;}
.wsb0{word-spacing:23.561572pt;}
.wsf2{word-spacing:23.749730pt;}
.ws88{word-spacing:23.754958pt;}
.wsfe{word-spacing:23.864717pt;}
.ws75{word-spacing:23.969249pt;}
.ws68{word-spacing:24.052839pt;}
.ws1da{word-spacing:24.052875pt;}
.ws5c{word-spacing:24.094687pt;}
.ws178{word-spacing:24.230580pt;}
.wsaf{word-spacing:24.256713pt;}
.ws7e{word-spacing:24.314205pt;}
.wse7{word-spacing:24.460550pt;}
.ws76{word-spacing:24.491911pt;}
.wsd8{word-spacing:24.502363pt;}
.ws16b{word-spacing:24.575536pt;}
.wsd7{word-spacing:24.601671pt;}
.wsd9{word-spacing:24.638255pt;}
.ws18b{word-spacing:24.910040pt;}
.ws154{word-spacing:24.930946pt;}
.ws199{word-spacing:24.977985pt;}
.ws143{word-spacing:25.134811pt;}
.wsda{word-spacing:25.166143pt;}
.ws58{word-spacing:25.181823pt;}
.ws69{word-spacing:25.239315pt;}
.ws6a{word-spacing:25.244542pt;}
.wsa9{word-spacing:25.343848pt;}
.ws12c{word-spacing:25.406568pt;}
.wsae{word-spacing:25.479740pt;}
.wsf5{word-spacing:25.484967pt;}
.ws144{word-spacing:25.500646pt;}
.ws12b{word-spacing:25.521552pt;}
.ws142{word-spacing:25.547643pt;}
.ws126{word-spacing:25.646992pt;}
.ws9a{word-spacing:25.751524pt;}
.ws18f{word-spacing:25.819470pt;}
.ws9d{word-spacing:25.871736pt;}
.ws176{word-spacing:26.054667pt;}
.ws109{word-spacing:26.164427pt;}
.ws194{word-spacing:26.279411pt;}
.ws1aa{word-spacing:26.383944pt;}
.wsff{word-spacing:26.420530pt;}
.ws7a{word-spacing:26.472795pt;}
.wsab{word-spacing:26.509383pt;}
.wsa1{word-spacing:26.692315pt;}
.ws11e{word-spacing:26.786447pt;}
.ws52{word-spacing:26.828206pt;}
.ws16f{word-spacing:26.953645pt;}
.ws11f{word-spacing:27.272468pt;}
.ws5e{word-spacing:27.293375pt;}
.ws3e{word-spacing:27.350867pt;}
.ws40{word-spacing:27.429266pt;}
.ws17f{word-spacing:27.654010pt;}
.ws135{word-spacing:27.685371pt;}
.ws3f{word-spacing:27.695825pt;}
.ws10e{word-spacing:27.795129pt;}
.ws16d{word-spacing:27.988514pt;}
.wsfc{word-spacing:28.432777pt;}
.ws19a{word-spacing:28.605254pt;}
.ws10f{word-spacing:28.840452pt;}
.ws35{word-spacing:28.934530pt;}
.ws100{word-spacing:29.112236pt;}
.wseb{word-spacing:29.159277pt;}
.wsd4{word-spacing:29.169728pt;}
.ws133{word-spacing:29.316075pt;}
.wsd5{word-spacing:29.373567pt;}
.ws34{word-spacing:29.478099pt;}
.wse5{word-spacing:29.676710pt;}
.ws6e{word-spacing:30.016440pt;}
.ws19c{word-spacing:30.089613pt;}
.ws19d{word-spacing:30.105293pt;}
.ws172{word-spacing:30.319583pt;}
.ws55{word-spacing:30.403210pt;}
.ws85{word-spacing:31.030403pt;}
.ws7b{word-spacing:31.213335pt;}
.wsfa{word-spacing:31.458987pt;}
.ws38{word-spacing:31.490345pt;}
.ws6c{word-spacing:31.526932pt;}
.wsdb{word-spacing:31.563519pt;}
.ws14e{word-spacing:31.830075pt;}
.ws115{word-spacing:32.148898pt;}
.ws1ac{word-spacing:32.154126pt;}
.ws14d{word-spacing:32.190713pt;}
.ws82{word-spacing:32.682012pt;}
.ws12a{word-spacing:32.739507pt;}
.ws17c{word-spacing:32.849265pt;}
.ws1d8{word-spacing:32.969476pt;}
.ws7f{word-spacing:33.000836pt;}
.ws19f{word-spacing:33.131503pt;}
.ws41{word-spacing:33.152408pt;}
.ws84{word-spacing:33.434645pt;}
.ws89{word-spacing:33.565311pt;}
.ws59{word-spacing:33.868454pt;}
.ws13a{word-spacing:34.788337pt;}
.wsa3{word-spacing:35.561878pt;}
.ws1a8{word-spacing:35.624598pt;}
.ws117{word-spacing:35.838888pt;}
.ws118{word-spacing:35.943420pt;}
.ws5a{word-spacing:36.246563pt;}
.ws148{word-spacing:36.899890pt;}
.ws14f{word-spacing:37.359832pt;}
.ws19e{word-spacing:37.798868pt;}
.ws16c{word-spacing:37.835455pt;}
.ws3{word-spacing:38.182558pt;}
.ws4{word-spacing:38.208159pt;}
.ws5{word-spacing:38.284961pt;}
.ws6d{word-spacing:38.483553pt;}
.ws2{word-spacing:38.617762pt;}
.ws157{word-spacing:40.103804pt;}
.ws78{word-spacing:42.069011pt;}
.ws149{word-spacing:42.560312pt;}
.ws8c{word-spacing:44.619598pt;}
.ws193{word-spacing:46.354835pt;}
.ws103{word-spacing:47.786925pt;}
.ws79{word-spacing:48.173696pt;}
.ws5d{word-spacing:48.795661pt;}
.ws1b9{word-spacing:50.483858pt;}
.ws1b2{word-spacing:169.166948pt;}
.ws166{word-spacing:178.237772pt;}
.ws1b3{word-spacing:178.937492pt;}
.ws1b6{word-spacing:199.374570pt;}
.ws1b4{word-spacing:199.677504pt;}
.ws1d4{word-spacing:351.492148pt;}
.ws1cd{word-spacing:458.276938pt;}
.ws1ce{word-spacing:776.916122pt;}
._35{margin-left:-199.720170pt;}
._49{margin-left:-15.914187pt;}
._1c{margin-left:-9.445693pt;}
._22{margin-left:-4.876430pt;}
._8{margin-left:-3.378753pt;}
._18{margin-left:-2.456549pt;}
._6{margin-left:-0.997342pt;}
._3{width:1.104011pt;}
._11{width:2.470992pt;}
._0{width:7.959467pt;}
._4c{width:9.114697pt;}
._4b{width:11.124068pt;}
._12{width:12.043622pt;}
._5{width:13.397468pt;}
._7{width:14.784102pt;}
._21{width:15.780012pt;}
._4{width:16.709501pt;}
._9{width:17.758835pt;}
._b{width:18.849563pt;}
._a{width:20.624216pt;}
._19{width:21.977909pt;}
._f{width:23.049365pt;}
._1a{width:24.103943pt;}
._16{width:25.560976pt;}
._1d{width:26.770712pt;}
._10{width:28.468167pt;}
._c{width:29.932864pt;}
._13{width:31.443305pt;}
._e{width:32.432777pt;}
._d{width:33.408513pt;}
._2b{width:34.417248pt;}
._14{width:35.331906pt;}
._1e{width:36.621680pt;}
._15{width:37.520661pt;}
._24{width:38.415611pt;}
._2{width:39.603364pt;}
._1b{width:41.055048pt;}
._23{width:43.505388pt;}
._2a{width:47.489008pt;}
._20{width:49.087158pt;}
._17{width:50.063339pt;}
._4a{width:58.543219pt;}
._34{width:84.926938pt;}
._2c{width:170.147962pt;}
._27{width:178.617496pt;}
._2f{width:179.888960pt;}
._2d{width:186.749666pt;}
._28{width:191.886664pt;}
._30{width:195.914343pt;}
._32{width:196.823144pt;}
._31{width:199.720170pt;}
._29{width:212.323742pt;}
._33{width:216.411149pt;}
._25{width:229.407257pt;}
._26{width:237.373033pt;}
._36{width:264.210031pt;}
._2e{width:284.647109pt;}
._38{width:346.960988pt;}
._46{width:360.025375pt;}
._44{width:363.327708pt;}
._43{width:419.117943pt;}
._41{width:434.315639pt;}
._3f{width:437.882526pt;}
._3e{width:445.741637pt;}
._42{width:453.148486pt;}
._3c{width:458.319604pt;}
._3b{width:466.178715pt;}
._40{width:564.801472pt;}
._3d{width:585.238550pt;}
._47{width:626.496711pt;}
._39{width:661.977887pt;}
._3a{width:669.384716pt;}
._37{width:685.994633pt;}
._45{width:776.958788pt;}
._48{width:845.100936pt;}
._1f{width:1332.416417pt;}
._1{width:1756.629387pt;}
.fsd{font-size:26.662400pt;}
.fs12{font-size:34.839467pt;}
.fs11{font-size:36.585600pt;}
.fse{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.107733pt;}
.fsc{font-size:39.999467pt;}
.fsf{font-size:42.666133pt;}
.fs13{font-size:48.000000pt;}
.fs10{font-size:49.067200pt;}
.fsb{font-size:52.266133pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.333867pt;}
.fs9{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y58{bottom:68.786587pt;}
.y23f{bottom:79.369320pt;}
.y286{bottom:79.370547pt;}
.y118{bottom:79.373200pt;}
.y1a0{bottom:79.377987pt;}
.y14f{bottom:79.379773pt;}
.yc4{bottom:79.381547pt;}
.ye7{bottom:79.385347pt;}
.y90{bottom:79.394573pt;}
.y57{bottom:79.445107pt;}
.y1c4{bottom:79.694200pt;}
.y204{bottom:86.250253pt;}
.y4{bottom:89.773337pt;}
.y56{bottom:90.103613pt;}
.y23e{bottom:91.388160pt;}
.y285{bottom:91.389387pt;}
.y117{bottom:95.398000pt;}
.y19f{bottom:95.402773pt;}
.y14e{bottom:95.404560pt;}
.yc3{bottom:95.406347pt;}
.ye6{bottom:95.410147pt;}
.y8f{bottom:95.419360pt;}
.y1c3{bottom:95.643213pt;}
.y55{bottom:100.762133pt;}
.y23d{bottom:103.407000pt;}
.y284{bottom:103.408227pt;}
.y203{bottom:104.920947pt;}
.y116{bottom:111.347000pt;}
.y19e{bottom:111.351787pt;}
.y14d{bottom:111.353573pt;}
.yc2{bottom:111.355360pt;}
.ye5{bottom:111.359160pt;}
.y8e{bottom:111.444160pt;}
.y1c2{bottom:111.668013pt;}
.y23c{bottom:115.350840pt;}
.y283{bottom:115.743827pt;}
.y17c{bottom:120.649253pt;}
.y54{bottom:123.363920pt;}
.y202{bottom:123.591653pt;}
.y23{bottom:123.790666pt;}
.y23b{bottom:127.369680pt;}
.y115{bottom:127.371800pt;}
.y19d{bottom:127.376587pt;}
.y14c{bottom:127.378373pt;}
.yc1{bottom:127.380160pt;}
.ye4{bottom:127.383960pt;}
.y8d{bottom:127.393173pt;}
.y282{bottom:127.686667pt;}
.y1c1{bottom:127.692800pt;}
.y53{bottom:135.382760pt;}
.y17b{bottom:139.319947pt;}
.y23a{bottom:139.388520pt;}
.y281{bottom:139.705507pt;}
.y201{bottom:142.262347pt;}
.y114{bottom:143.396600pt;}
.y19c{bottom:143.401387pt;}
.y14b{bottom:143.403173pt;}
.yc0{bottom:143.404960pt;}
.ye3{bottom:143.408747pt;}
.y8c{bottom:143.417973pt;}
.y1c0{bottom:143.641813pt;}
.y52{bottom:147.401600pt;}
.y4f{bottom:151.111867pt;}
.y239{bottom:151.407360pt;}
.y51{bottom:151.861467pt;}
.y280{bottom:152.026333pt;}
.y17a{bottom:157.990653pt;}
.y113{bottom:159.345613pt;}
.y19b{bottom:159.350387pt;}
.y14a{bottom:159.352173pt;}
.ybf{bottom:159.353960pt;}
.ye2{bottom:159.357760pt;}
.y50{bottom:159.420400pt;}
.y8b{bottom:159.442760pt;}
.y1bf{bottom:159.666613pt;}
.y200{bottom:160.933053pt;}
.y238{bottom:163.351200pt;}
.y27f{bottom:164.045173pt;}
.y4e{bottom:167.136667pt;}
.y1a{bottom:175.052000pt;}
.y237{bottom:175.370000pt;}
.y112{bottom:175.370400pt;}
.y19a{bottom:175.375187pt;}
.y149{bottom:175.376973pt;}
.ybe{bottom:175.378760pt;}
.ye1{bottom:175.382560pt;}
.y8a{bottom:175.391773pt;}
.y1be{bottom:175.691413pt;}
.y27e{bottom:176.366013pt;}
.y179{bottom:176.661347pt;}
.y1ff{bottom:179.603747pt;}
.y4d{bottom:183.085667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y27d{bottom:188.384853pt;}
.y111{bottom:191.395200pt;}
.y199{bottom:191.399987pt;}
.y148{bottom:191.401773pt;}
.ybd{bottom:191.403560pt;}
.ye0{bottom:191.407360pt;}
.y89{bottom:191.416573pt;}
.y1bd{bottom:191.640427pt;}
.y178{bottom:195.332053pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1fe{bottom:198.274453pt;}
.y45{bottom:199.107853pt;}
.y4c{bottom:199.110480pt;}
.y27c{bottom:200.705693pt;}
.y110{bottom:207.344813pt;}
.y198{bottom:207.349000pt;}
.y147{bottom:207.350787pt;}
.ybc{bottom:207.352573pt;}
.ydf{bottom:207.356360pt;}
.y88{bottom:207.441373pt;}
.y1bc{bottom:207.665213pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y27b{bottom:212.648533pt;}
.y236{bottom:212.862573pt;}
.y177{bottom:214.002747pt;}
.y44{bottom:215.132653pt;}
.y4b{bottom:215.135280pt;}
.y1fd{bottom:216.945147pt;}
.y197{bottom:223.373787pt;}
.y146{bottom:223.375573pt;}
.ybb{bottom:223.377360pt;}
.yde{bottom:223.381160pt;}
.y87{bottom:223.390387pt;}
.y1bb{bottom:223.690013pt;}
.y27a{bottom:224.667373pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y43{bottom:231.081667pt;}
.y4a{bottom:231.084293pt;}
.y176{bottom:232.673440pt;}
.y1fc{bottom:235.615840pt;}
.y279{bottom:236.686213pt;}
.y235{bottom:236.900253pt;}
.y196{bottom:239.398587pt;}
.y145{bottom:239.400373pt;}
.yba{bottom:239.402160pt;}
.ydd{bottom:239.405960pt;}
.y86{bottom:239.415173pt;}
.y1ba{bottom:239.639027pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y10f{bottom:243.405640pt;}
.y42{bottom:247.106440pt;}
.y49{bottom:247.109067pt;}
.y234{bottom:248.844093pt;}
.y278{bottom:249.007040pt;}
.y175{bottom:251.344147pt;}
.y1fb{bottom:253.076960pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y195{bottom:255.347600pt;}
.y144{bottom:255.349387pt;}
.yb9{bottom:255.351173pt;}
.ydc{bottom:255.354973pt;}
.y85{bottom:255.439973pt;}
.y1b9{bottom:255.663827pt;}
.y10e{bottom:259.354653pt;}
.y231{bottom:260.862893pt;}
.y233{bottom:260.862933pt;}
.y277{bottom:261.025880pt;}
.y41{bottom:263.131240pt;}
.y48{bottom:263.133867pt;}
.y1fa{bottom:265.096013pt;}
.y232{bottom:265.322800pt;}
.y174{bottom:270.014840pt;}
.y194{bottom:271.372400pt;}
.y143{bottom:271.374187pt;}
.yb8{bottom:271.375973pt;}
.ydb{bottom:271.379773pt;}
.y84{bottom:271.388987pt;}
.y1b8{bottom:271.688613pt;}
.y230{bottom:272.881733pt;}
.y276{bottom:272.968720pt;}
.y10d{bottom:275.379440pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y22f{bottom:277.341600pt;}
.y40{bottom:279.080267pt;}
.y47{bottom:279.082880pt;}
.y1f9{bottom:282.632413pt;}
.y22e{bottom:284.900213pt;}
.y275{bottom:285.289560pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y193{bottom:287.397187pt;}
.y142{bottom:287.398973pt;}
.yb7{bottom:287.400760pt;}
.yda{bottom:287.404560pt;}
.y83{bottom:287.413787pt;}
.y1b7{bottom:287.637627pt;}
.y173{bottom:288.685547pt;}
.y10c{bottom:291.404240pt;}
.y3f{bottom:295.105467pt;}
.y46{bottom:295.107680pt;}
.y1f8{bottom:297.297613pt;}
.y274{bottom:297.308400pt;}
.y192{bottom:303.346200pt;}
.y141{bottom:303.347987pt;}
.yb6{bottom:303.349773pt;}
.yd9{bottom:303.353573pt;}
.y82{bottom:303.362787pt;}
.y1b6{bottom:303.662427pt;}
.y172{bottom:307.280507pt;}
.y10b{bottom:307.353253pt;}
.y22d{bottom:308.862893pt;}
.y11{bottom:309.452000pt;}
.y273{bottom:309.629240pt;}
.y191{bottom:319.371000pt;}
.y140{bottom:319.372787pt;}
.yb5{bottom:319.374573pt;}
.yd8{bottom:319.378373pt;}
.y81{bottom:319.387587pt;}
.y1b5{bottom:319.687227pt;}
.y22c{bottom:320.881733pt;}
.y272{bottom:321.648080pt;}
.y10a{bottom:323.378053pt;}
.y171{bottom:325.951213pt;}
.y22b{bottom:332.900680pt;}
.y271{bottom:333.666907pt;}
.y190{bottom:335.395800pt;}
.y1d8{bottom:335.397187pt;}
.y13f{bottom:335.397587pt;}
.y1dd{bottom:335.398507pt;}
.yb4{bottom:335.399373pt;}
.yd7{bottom:335.403173pt;}
.y80{bottom:335.412387pt;}
.y1b4{bottom:335.636227pt;}
.y3e{bottom:335.694867pt;}
.y109{bottom:339.402840pt;}
.y10{bottom:343.809333pt;}
.y170{bottom:344.621907pt;}
.y270{bottom:345.987747pt;}
.y18f{bottom:351.344813pt;}
.y1d7{bottom:351.346200pt;}
.y13e{bottom:351.346600pt;}
.y1dc{bottom:351.347507pt;}
.yb3{bottom:351.348387pt;}
.yd6{bottom:351.352173pt;}
.y7f{bottom:351.361400pt;}
.y1b3{bottom:351.661027pt;}
.y108{bottom:355.351853pt;}
.y26f{bottom:357.930587pt;}
.y3d{bottom:358.372440pt;}
.yf{bottom:362.706666pt;}
.y16f{bottom:363.292600pt;}
.y22a{bottom:366.389907pt;}
.y18e{bottom:367.370000pt;}
.y1d6{bottom:367.371000pt;}
.y13d{bottom:367.371387pt;}
.y1db{bottom:367.372307pt;}
.yb2{bottom:367.373173pt;}
.yd5{bottom:367.376973pt;}
.y7e{bottom:367.386187pt;}
.y1b2{bottom:367.685827pt;}
.y26e{bottom:369.949427pt;}
.y107{bottom:371.376653pt;}
.y3c{bottom:374.397907pt;}
.y229{bottom:378.408747pt;}
.y16e{bottom:381.963307pt;}
.y26d{bottom:382.270267pt;}
.y1d5{bottom:383.395800pt;}
.y13c{bottom:383.396187pt;}
.y1da{bottom:383.397107pt;}
.yb1{bottom:383.397973pt;}
.yd4{bottom:383.401773pt;}
.y7d{bottom:383.410987pt;}
.y1b1{bottom:383.634840pt;}
.y106{bottom:387.401453pt;}
.y228{bottom:390.352587pt;}
.y26c{bottom:394.289107pt;}
.y3b{bottom:394.354120pt;}
.y1d4{bottom:399.344813pt;}
.y13b{bottom:399.345200pt;}
.y1d9{bottom:399.346120pt;}
.yb0{bottom:399.346987pt;}
.yd3{bottom:399.350787pt;}
.y7c{bottom:399.360000pt;}
.y18d{bottom:399.654040pt;}
.y1b0{bottom:399.659627pt;}
.y16d{bottom:400.634000pt;}
.y227{bottom:402.371427pt;}
.y105{bottom:403.351080pt;}
.y26b{bottom:406.307947pt;}
.y3a{bottom:410.379600pt;}
.y226{bottom:414.390267pt;}
.y13a{bottom:415.370000pt;}
.yaf{bottom:415.371787pt;}
.yd2{bottom:415.375573pt;}
.y7b{bottom:415.384800pt;}
.y18c{bottom:415.678827pt;}
.y1af{bottom:415.684427pt;}
.y26a{bottom:418.553773pt;}
.y16c{bottom:419.304707pt;}
.y39{bottom:426.405107pt;}
.y269{bottom:430.572613pt;}
.ye{bottom:430.990669pt;}
.y139{bottom:431.395187pt;}
.yae{bottom:431.396573pt;}
.yd1{bottom:431.400373pt;}
.y7a{bottom:431.409600pt;}
.y18b{bottom:431.627840pt;}
.y1ae{bottom:431.633440pt;}
.y16b{bottom:437.975400pt;}
.y104{bottom:439.410507pt;}
.y225{bottom:439.863933pt;}
.y38{bottom:442.354613pt;}
.y268{bottom:442.591453pt;}
.y1f7{bottom:444.627733pt;}
.yd{bottom:446.990669pt;}
.yad{bottom:447.345587pt;}
.yd0{bottom:447.349387pt;}
.y79{bottom:447.358600pt;}
.y18a{bottom:447.652640pt;}
.y1ad{bottom:447.658240pt;}
.y224{bottom:451.882773pt;}
.y267{bottom:454.912293pt;}
.y103{bottom:455.359520pt;}
.y16a{bottom:456.646107pt;}
.y37{bottom:458.380080pt;}
.yc{bottom:462.990669pt;}
.y1f6{bottom:463.298440pt;}
.yac{bottom:463.370387pt;}
.ycf{bottom:463.374187pt;}
.y78{bottom:463.383400pt;}
.y189{bottom:463.677440pt;}
.y1ac{bottom:463.683040pt;}
.y223{bottom:463.901613pt;}
.y266{bottom:467.233133pt;}
.y102{bottom:471.384320pt;}
.y169{bottom:475.316800pt;}
.y222{bottom:475.844453pt;}
.y138{bottom:477.203080pt;}
.y36{bottom:478.410973pt;}
.yb{bottom:478.990666pt;}
.y265{bottom:479.251973pt;}
.yab{bottom:479.395187pt;}
.y137{bottom:479.395680pt;}
.yce{bottom:479.398973pt;}
.y77{bottom:479.408200pt;}
.y188{bottom:479.626440pt;}
.y1ab{bottom:479.632040pt;}
.y1f5{bottom:481.969133pt;}
.y101{bottom:487.409107pt;}
.y221{bottom:487.863293pt;}
.y264{bottom:491.194813pt;}
.y136{bottom:493.228147pt;}
.y168{bottom:493.987493pt;}
.y35{bottom:494.360480pt;}
.ya{bottom:494.990666pt;}
.yaa{bottom:495.344680pt;}
.y135{bottom:495.345280pt;}
.ycd{bottom:495.347987pt;}
.y76{bottom:495.357213pt;}
.y187{bottom:495.651240pt;}
.y1aa{bottom:495.656840pt;}
.y1f4{bottom:500.639840pt;}
.y100{bottom:503.358120pt;}
.y263{bottom:503.515640pt;}
.y134{bottom:508.194827pt;}
.y133{bottom:509.631347pt;}
.y34{bottom:510.385947pt;}
.ya9{bottom:511.369867pt;}
.ycc{bottom:511.372787pt;}
.y75{bottom:511.382000pt;}
.y186{bottom:511.676040pt;}
.y1a9{bottom:511.681640pt;}
.y132{bottom:511.823480pt;}
.y167{bottom:512.658200pt;}
.y220{bottom:513.412947pt;}
.y262{bottom:515.534480pt;}
.y1f3{bottom:519.310533pt;}
.yff{bottom:519.382920pt;}
.y21f{bottom:525.355787pt;}
.y33{bottom:526.411453pt;}
.ycb{bottom:527.397587pt;}
.y74{bottom:527.406800pt;}
.y261{bottom:527.553320pt;}
.y185{bottom:527.625053pt;}
.y1a8{bottom:527.630653pt;}
.y166{bottom:531.328893pt;}
.yfe{bottom:535.407720pt;}
.y21e{bottom:537.374627pt;}
.y1f2{bottom:537.981227pt;}
.y260{bottom:539.572160pt;}
.y32{bottom:542.360920pt;}
.y12f{bottom:543.118000pt;}
.yca{bottom:543.346600pt;}
.ya8{bottom:543.347867pt;}
.y73{bottom:543.355813pt;}
.y184{bottom:543.649840pt;}
.y1a7{bottom:543.655440pt;}
.y12d{bottom:548.484653pt;}
.y165{bottom:549.999600pt;}
.yfd{bottom:551.357347pt;}
.y25f{bottom:551.893000pt;}
.y131{bottom:552.114307pt;}
.y12c{bottom:552.121533pt;}
.y1f1{bottom:556.651933pt;}
.y31{bottom:558.386440pt;}
.yc9{bottom:559.371387pt;}
.ya7{bottom:559.372667pt;}
.y72{bottom:559.380613pt;}
.y183{bottom:559.674640pt;}
.y1a6{bottom:559.680240pt;}
.y12e{bottom:560.957320pt;}
.y21d{bottom:562.848293pt;}
.y25e{bottom:563.835840pt;}
.y164{bottom:568.670293pt;}
.y130{bottom:570.557720pt;}
.y9{bottom:573.786667pt;}
.y30{bottom:574.411907pt;}
.y21c{bottom:574.867133pt;}
.y1f0{bottom:575.322627pt;}
.yc8{bottom:575.396187pt;}
.ya6{bottom:575.397467pt;}
.y71{bottom:575.405400pt;}
.y182{bottom:575.623653pt;}
.y1a5{bottom:575.629253pt;}
.y25d{bottom:576.156680pt;}
.y21b{bottom:586.885973pt;}
.y163{bottom:587.341000pt;}
.yfc{bottom:587.419213pt;}
.y25c{bottom:588.175520pt;}
.y2f{bottom:590.361413pt;}
.yc7{bottom:591.345200pt;}
.ya5{bottom:591.346467pt;}
.y12b{bottom:591.352493pt;}
.y70{bottom:591.354413pt;}
.y181{bottom:591.648453pt;}
.y1a4{bottom:591.654053pt;}
.y8{bottom:592.685334pt;}
.y1ef{bottom:593.993333pt;}
.y25b{bottom:600.194360pt;}
.yfb{bottom:603.368227pt;}
.y162{bottom:606.011693pt;}
.y2e{bottom:606.386920pt;}
.yc6{bottom:607.370000pt;}
.ya4{bottom:607.371267pt;}
.y12a{bottom:607.377280pt;}
.y6f{bottom:607.379213pt;}
.y180{bottom:607.673240pt;}
.y1a3{bottom:607.678840pt;}
.y21a{bottom:612.359627pt;}
.y25a{bottom:612.515187pt;}
.y1ee{bottom:612.664027pt;}
.yfa{bottom:619.393027pt;}
.y2d{bottom:622.412400pt;}
.yc5{bottom:623.395187pt;}
.ya3{bottom:623.396067pt;}
.y129{bottom:623.402080pt;}
.y6e{bottom:623.404013pt;}
.y17f{bottom:623.622253pt;}
.y1a2{bottom:623.627853pt;}
.y219{bottom:624.378467pt;}
.y259{bottom:624.534027pt;}
.y161{bottom:624.682387pt;}
.y1ed{bottom:631.334733pt;}
.yf9{bottom:635.417813pt;}
.y258{bottom:636.476867pt;}
.ya2{bottom:639.345080pt;}
.y128{bottom:639.351093pt;}
.y6d{bottom:639.353027pt;}
.y17e{bottom:639.647053pt;}
.y1a1{bottom:639.652653pt;}
.y160{bottom:643.277360pt;}
.y7{bottom:645.598667pt;}
.y2c{bottom:646.374680pt;}
.y257{bottom:648.495707pt;}
.y218{bottom:649.852133pt;}
.y1ec{bottom:650.005427pt;}
.yf8{bottom:651.366827pt;}
.ya1{bottom:655.369867pt;}
.y127{bottom:655.375893pt;}
.y6c{bottom:655.377813pt;}
.y256{bottom:660.816547pt;}
.y217{bottom:661.870973pt;}
.y15f{bottom:661.948053pt;}
.yf7{bottom:667.391627pt;}
.y1eb{bottom:668.676120pt;}
.y3{bottom:668.977329pt;}
.y126{bottom:671.400680pt;}
.y6b{bottom:671.402613pt;}
.ya0{bottom:671.422213pt;}
.y255{bottom:672.835387pt;}
.y216{bottom:673.889813pt;}
.y15e{bottom:680.618760pt;}
.yf6{bottom:683.416427pt;}
.y254{bottom:685.156227pt;}
.y215{bottom:685.908653pt;}
.y1ea{bottom:687.346827pt;}
.y125{bottom:687.349693pt;}
.y6a{bottom:687.351627pt;}
.y9f{bottom:687.371227pt;}
.y1d2{bottom:694.225280pt;}
.y253{bottom:697.175067pt;}
.y2a{bottom:697.700680pt;}
.y214{bottom:697.851493pt;}
.y15d{bottom:699.289453pt;}
.yf5{bottom:699.365440pt;}
.y124{bottom:703.374493pt;}
.y69{bottom:703.376427pt;}
.y9e{bottom:703.396027pt;}
.y2b{bottom:704.201333pt;}
.y1e9{bottom:705.941787pt;}
.y1d1{bottom:706.244333pt;}
.y252{bottom:709.117907pt;}
.y213{bottom:709.870333pt;}
.yf4{bottom:715.390227pt;}
.y15c{bottom:717.960160pt;}
.y123{bottom:719.399293pt;}
.y68{bottom:719.401213pt;}
.y9d{bottom:719.420827pt;}
.y251{bottom:721.438733pt;}
.y212{bottom:721.889173pt;}
.y297{bottom:723.402373pt;}
.y1e8{bottom:724.612493pt;}
.y1d0{bottom:724.915027pt;}
.y29{bottom:729.679440pt;}
.yf3{bottom:731.415027pt;}
.y250{bottom:733.457573pt;}
.y211{bottom:733.908013pt;}
.y296{bottom:735.346213pt;}
.y122{bottom:735.348293pt;}
.y67{bottom:735.350227pt;}
.y9c{bottom:735.369827pt;}
.y15b{bottom:736.630853pt;}
.y1e7{bottom:743.283187pt;}
.y1cf{bottom:743.585733pt;}
.y24f{bottom:745.778413pt;}
.y210{bottom:745.851853pt;}
.yf2{bottom:747.364040pt;}
.y295{bottom:747.365053pt;}
.y121{bottom:751.373093pt;}
.y66{bottom:751.375027pt;}
.y9b{bottom:751.394627pt;}
.y15a{bottom:755.301547pt;}
.y24e{bottom:757.797253pt;}
.y20f{bottom:757.870693pt;}
.y294{bottom:759.383893pt;}
.y1e6{bottom:761.953893pt;}
.y1ce{bottom:762.256427pt;}
.yf1{bottom:763.388840pt;}
.y28{bottom:764.373947pt;}
.y120{bottom:767.397893pt;}
.y65{bottom:767.399827pt;}
.y24d{bottom:769.816093pt;}
.y293{bottom:771.402720pt;}
.y159{bottom:773.972253pt;}
.yf0{bottom:779.413987pt;}
.y1e5{bottom:780.624587pt;}
.y1cd{bottom:780.927133pt;}
.y2{bottom:781.661334pt;}
.y24c{bottom:782.136933pt;}
.y292{bottom:783.346560pt;}
.y11f{bottom:783.346907pt;}
.y20e{bottom:783.348293pt;}
.y64{bottom:783.348827pt;}
.y9a{bottom:783.369747pt;}
.y158{bottom:792.642947pt;}
.y24b{bottom:794.079773pt;}
.y291{bottom:795.365400pt;}
.y27{bottom:799.068520pt;}
.y1e4{bottom:799.295293pt;}
.y11e{bottom:799.371707pt;}
.y20d{bottom:799.373093pt;}
.y63{bottom:799.373627pt;}
.y99{bottom:799.394533pt;}
.y1cc{bottom:799.597827pt;}
.y24a{bottom:806.400600pt;}
.y290{bottom:807.384240pt;}
.y157{bottom:811.313653pt;}
.y11d{bottom:815.396493pt;}
.y20c{bottom:815.397893pt;}
.y62{bottom:815.398427pt;}
.yef{bottom:815.410120pt;}
.y98{bottom:815.419333pt;}
.y1e3{bottom:817.965987pt;}
.y1cb{bottom:818.268520pt;}
.y249{bottom:818.419440pt;}
.y28f{bottom:819.403080pt;}
.y156{bottom:829.984347pt;}
.y248{bottom:830.438280pt;}
.y11c{bottom:831.345507pt;}
.y28e{bottom:831.345920pt;}
.y20b{bottom:831.346907pt;}
.y61{bottom:831.347440pt;}
.yee{bottom:831.359120pt;}
.y97{bottom:831.368347pt;}
.y26{bottom:833.689453pt;}
.y1e2{bottom:836.636680pt;}
.y1ca{bottom:836.939227pt;}
.y247{bottom:842.759120pt;}
.y28d{bottom:843.364760pt;}
.y11b{bottom:847.370307pt;}
.y20a{bottom:847.371707pt;}
.y60{bottom:847.372240pt;}
.yed{bottom:847.383920pt;}
.y96{bottom:847.393147pt;}
.y155{bottom:848.655053pt;}
.y246{bottom:854.702960pt;}
.y1e1{bottom:855.307387pt;}
.y28c{bottom:855.383600pt;}
.y1c9{bottom:855.609920pt;}
.y1{bottom:859.312000pt;}
.y11a{bottom:863.395107pt;}
.y209{bottom:863.396493pt;}
.y5f{bottom:863.397027pt;}
.yec{bottom:863.408720pt;}
.y95{bottom:863.417933pt;}
.y154{bottom:866.191893pt;}
.y245{bottom:866.721800pt;}
.y28b{bottom:867.402440pt;}
.y25{bottom:868.384027pt;}
.y1e0{bottom:873.978080pt;}
.y1c8{bottom:874.280627pt;}
.y244{bottom:879.042627pt;}
.y119{bottom:879.344640pt;}
.y28a{bottom:879.345280pt;}
.y208{bottom:879.345507pt;}
.y5e{bottom:879.346040pt;}
.yeb{bottom:879.357733pt;}
.y94{bottom:879.366947pt;}
.y153{bottom:883.727053pt;}
.y243{bottom:891.061467pt;}
.y289{bottom:891.364120pt;}
.y1df{bottom:892.648787pt;}
.y1c7{bottom:892.951320pt;}
.y207{bottom:895.370307pt;}
.y5d{bottom:895.370840pt;}
.yea{bottom:895.382533pt;}
.y93{bottom:895.391747pt;}
.y152{bottom:898.392253pt;}
.y242{bottom:903.382307pt;}
.y288{bottom:903.382960pt;}
.y1de{bottom:910.185627pt;}
.y1c6{bottom:910.412440pt;}
.y206{bottom:911.395107pt;}
.y5c{bottom:911.395640pt;}
.ye9{bottom:911.407320pt;}
.y92{bottom:911.416547pt;}
.y151{bottom:913.057453pt;}
.y241{bottom:915.401147pt;}
.y287{bottom:915.401800pt;}
.y24{bottom:919.029627pt;}
.y240{bottom:927.343987pt;}
.y5b{bottom:927.344640pt;}
.ye8{bottom:927.356333pt;}
.y91{bottom:927.365547pt;}
.y150{bottom:927.722653pt;}
.y1c5{bottom:927.949307pt;}
.y5a{bottom:989.178307pt;}
.y205{bottom:1002.478773pt;}
.y298{bottom:1002.481607pt;}
.y59{bottom:1002.481613pt;}
.y1d3{bottom:1002.481693pt;}
.y17d{bottom:1002.484653pt;}
.h1c{height:2.090645pt;}
.h12{height:19.703514pt;}
.h1d{height:24.701182pt;}
.h1a{height:25.939190pt;}
.h13{height:27.588939pt;}
.h7{height:28.560000pt;}
.h23{height:28.839615pt;}
.hd{height:28.900615pt;}
.h11{height:29.559606pt;}
.h22{height:30.292955pt;}
.h15{height:30.762282pt;}
.h21{height:31.530273pt;}
.h18{height:35.377451pt;}
.h20{height:35.472000pt;}
.h1b{height:37.056689pt;}
.h16{height:37.265753pt;}
.h17{height:37.318019pt;}
.h14{height:37.588863pt;}
.h10{height:38.049745pt;}
.he{height:39.057600pt;}
.hf{height:39.413727pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hc{height:43.355061pt;}
.h1e{height:45.683330pt;}
.h19{height:48.068770pt;}
.h2{height:48.960000pt;}
.ha{height:49.296000pt;}
.h1f{height:52.564358pt;}
.h5{height:57.120000pt;}
.hb{height:92.288385pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590560pt;}
.xe{left:79.143347pt;}
.x5{left:80.957493pt;}
.xc{left:84.283480pt;}
.x10{left:86.248907pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x14{left:95.622840pt;}
.x15{left:109.455067pt;}
.x18{left:115.578267pt;}
.x16{left:125.102400pt;}
.x17{left:126.085067pt;}
.x1d{left:129.562133pt;}
.x1a{left:135.231467pt;}
.x1b{left:142.261333pt;}
.x19{left:147.250227pt;}
.x1e{left:148.459867pt;}
.x21{left:151.861573pt;}
.x7{left:172.497627pt;}
.x4{left:180.874667pt;}
.x2a{left:183.911307pt;}
.x8{left:193.284947pt;}
.x22{left:214.676800pt;}
.xf{left:240.453467pt;}
.x2d{left:254.210933pt;}
.x2e{left:257.763733pt;}
.x9{left:261.014147pt;}
.xa{left:270.236133pt;}
.x23{left:277.416280pt;}
.x1c{left:317.480267pt;}
.x24{left:340.231493pt;}
.x1f{left:346.355880pt;}
.x20{left:355.426680pt;}
.xb{left:376.365333pt;}
.x2b{left:379.841667pt;}
.x25{left:402.970973pt;}
.x3{left:404.408000pt;}
.xd{left:406.299293pt;}
.x11{left:416.955040pt;}
.x13{left:425.650613pt;}
.x12{left:436.456840pt;}
.x26{left:465.786200pt;}
.x27{left:528.525680pt;}
.x28{left:595.497640pt;}
.x2c{left:630.423053pt;}
.x29{left:662.545333pt;}
}




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