
    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_5ba356bbe99fb1a8de9ca27f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f27f9644da9b1c8d89bd2aa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_94c2f357bb80c20b6ca07dcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ea97cba627a0e446fa7d067.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765000;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_874e2544d4a581a377697475.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_57122060f5c0a727e7dec7ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9e307ec2ad258da7a2ed8ba4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_fd7abbc6f720272f08240d9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949000;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_d2bfb7d4256966b528648ba0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.508000;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_a311afe8de741f4b196d27a4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_82e8f8cd11515783551bcbfb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5928c152ce1fc796b6d1b5c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.695000;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_6cdb87bcbb749dacb4b60441.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.168000;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_1e53ad067bd5bc6a6af0c1cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975000;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_4776fd7165216edc9b0f905c.woff2')format("woff");}.fff{font-family:fff;line-height:0.050000;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_1822a2dcbf0676176fb1c2b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682000;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_285ab7b4c4cb910579be82c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.732000;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_24b40a24dd0b32b38eae8041.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.264000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fd5ce0d429a33356e5806729.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.279000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2ad61046afd1f83ca3461ca1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.714000;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_79d25266a5be255ab082e955.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_94d8681cb3cb4ec6219d2bf7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.023000;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;}
.m2{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);}
.m5{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);}
.m1{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);}
.m7{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);}
.m3{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);}
.m4{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);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls9c{letter-spacing:-1.426481px;}
.ls8{letter-spacing:-1.405306px;}
.ls48{letter-spacing:-1.381786px;}
.ls45{letter-spacing:-1.358266px;}
.ls4a{letter-spacing:-1.334746px;}
.ls8c{letter-spacing:-1.328866px;}
.ls47{letter-spacing:-1.322987px;}
.ls8d{letter-spacing:-1.317107px;}
.ls8b{letter-spacing:-1.311227px;}
.ls9b{letter-spacing:-1.277983px;}
.ls96{letter-spacing:-1.250983px;}
.ls46{letter-spacing:-1.246547px;}
.ls1c{letter-spacing:-1.234787px;}
.ls75{letter-spacing:-1.228902px;}
.ls41{letter-spacing:-1.217148px;}
.ls44{letter-spacing:-1.193628px;}
.ls4b{letter-spacing:-1.164228px;}
.ls5a{letter-spacing:-1.152468px;}
.ls9d{letter-spacing:-1.147480px;}
.ls99{letter-spacing:-1.142985px;}
.ls66{letter-spacing:-1.140708px;}
.ls94{letter-spacing:-1.138485px;}
.ls97{letter-spacing:-1.133985px;}
.ls74{letter-spacing:-1.128943px;}
.ls64{letter-spacing:-1.123069px;}
.ls19{letter-spacing:-1.117189px;}
.ls76{letter-spacing:-1.111309px;}
.ls79{letter-spacing:-1.105429px;}
.ls65{letter-spacing:-1.099549px;}
.ls12{letter-spacing:-1.093669px;}
.ls5b{letter-spacing:-1.093663px;}
.ls98{letter-spacing:-1.093485px;}
.ls78{letter-spacing:-1.087789px;}
.ls42{letter-spacing:-1.081909px;}
.ls59{letter-spacing:-1.076029px;}
.ls95{letter-spacing:-1.075486px;}
.ls11{letter-spacing:-1.070149px;}
.ls13{letter-spacing:-1.064269px;}
.ls68{letter-spacing:-1.058389px;}
.ls14{letter-spacing:-1.052509px;}
.ls17{letter-spacing:-1.046629px;}
.ls57{letter-spacing:-1.040749px;}
.ls69{letter-spacing:-1.034869px;}
.ls15{letter-spacing:-1.028990px;}
.ls5c{letter-spacing:-1.017230px;}
.ls1b{letter-spacing:-1.011350px;}
.ls18{letter-spacing:-1.005470px;}
.ls1a{letter-spacing:-0.993710px;}
.ls43{letter-spacing:-0.993704px;}
.ls16{letter-spacing:-0.987830px;}
.ls77{letter-spacing:-0.981950px;}
.ls83{letter-spacing:-0.952550px;}
.ls10{letter-spacing:-0.905511px;}
.ls40{letter-spacing:-0.893751px;}
.ls58{letter-spacing:-0.887871px;}
.lsa{letter-spacing:-0.870231px;}
.lsb{letter-spacing:-0.864351px;}
.lse{letter-spacing:-0.840831px;}
.ls7a{letter-spacing:-0.829072px;}
.ls93{letter-spacing:-0.823489px;}
.lsc{letter-spacing:-0.823192px;}
.lsd{letter-spacing:-0.805552px;}
.ls9a{letter-spacing:-0.787490px;}
.ls9e{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls90{letter-spacing:0.044968px;}
.ls92{letter-spacing:0.045032px;}
.ls7e{letter-spacing:0.117613px;}
.ls91{letter-spacing:0.135032px;}
.ls71{letter-spacing:0.144000px;}
.ls6a{letter-spacing:0.176393px;}
.ls4{letter-spacing:0.176398px;}
.ls1d{letter-spacing:0.176400px;}
.ls3f{letter-spacing:0.176402px;}
.ls5e{letter-spacing:0.176453px;}
.ls86{letter-spacing:0.235142px;}
.ls0{letter-spacing:0.263977px;}
.ls9{letter-spacing:0.417476px;}
.ls3b{letter-spacing:0.470413px;}
.ls4d{letter-spacing:0.488035px;}
.ls53{letter-spacing:0.493915px;}
.ls4f{letter-spacing:0.529195px;}
.ls32{letter-spacing:0.529200px;}
.ls37{letter-spacing:0.529225px;}
.ls50{letter-spacing:0.535075px;}
.ls51{letter-spacing:0.546834px;}
.ls2f{letter-spacing:0.552714px;}
.ls28{letter-spacing:0.558594px;}
.ls36{letter-spacing:0.570354px;}
.ls38{letter-spacing:0.582114px;}
.ls2a{letter-spacing:0.593874px;}
.ls25{letter-spacing:0.599754px;}
.ls2e{letter-spacing:0.605634px;}
.ls23{letter-spacing:0.611514px;}
.ls29{letter-spacing:0.617394px;}
.ls35{letter-spacing:0.623274px;}
.ls2c{letter-spacing:0.629154px;}
.ls22{letter-spacing:0.635034px;}
.ls34{letter-spacing:0.640913px;}
.ls3c{letter-spacing:0.646777px;}
.ls31{letter-spacing:0.646793px;}
.ls39{letter-spacing:0.658553px;}
.ls3e{letter-spacing:0.664433px;}
.ls33{letter-spacing:0.705593px;}
.ls4c{letter-spacing:0.758512px;}
.ls55{letter-spacing:0.793792px;}
.ls87{letter-spacing:0.823153px;}
.ls3a{letter-spacing:0.823213px;}
.ls6c{letter-spacing:1.099549px;}
.ls84{letter-spacing:1.440585px;}
.ls4e{letter-spacing:1.728702px;}
.ls8e{letter-spacing:2.105972px;}
.ls85{letter-spacing:2.495969px;}
.ls6{letter-spacing:3.036030px;}
.ls7{letter-spacing:3.372034px;}
.ls67{letter-spacing:10.619172px;}
.ls5d{letter-spacing:10.701505px;}
.ls8a{letter-spacing:13.499837px;}
.ls5f{letter-spacing:14.111820px;}
.ls60{letter-spacing:14.207810px;}
.ls63{letter-spacing:14.303826px;}
.ls62{letter-spacing:14.399803px;}
.ls21{letter-spacing:14.405831px;}
.ls61{letter-spacing:14.591848px;}
.ls6f{letter-spacing:14.758691px;}
.lsf{letter-spacing:14.958567px;}
.ls1f{letter-spacing:15.052631px;}
.ls20{letter-spacing:15.052691px;}
.ls7c{letter-spacing:16.169822px;}
.ls7d{letter-spacing:16.463831px;}
.ls6e{letter-spacing:17.463431px;}
.ls6b{letter-spacing:17.522213px;}
.ls1e{letter-spacing:17.816231px;}
.ls1{letter-spacing:17.940179px;}
.ls2{letter-spacing:18.300183px;}
.ls8f{letter-spacing:18.515280px;}
.ls49{letter-spacing:18.998086px;}
.ls2d{letter-spacing:21.167771px;}
.ls6d{letter-spacing:22.872971px;}
.ls2b{letter-spacing:23.578511px;}
.ls81{letter-spacing:23.578571px;}
.ls54{letter-spacing:24.301792px;}
.ls7f{letter-spacing:25.636511px;}
.ls80{letter-spacing:25.636571px;}
.ls56{letter-spacing:25.842336px;}
.ls3{letter-spacing:25.930535px;}
.ls88{letter-spacing:25.930571px;}
.ls89{letter-spacing:25.977611px;}
.ls3d{letter-spacing:28.341313px;}
.ls82{letter-spacing:32.104451px;}
.ls27{letter-spacing:34.809251px;}
.ls26{letter-spacing:35.162051px;}
.ls24{letter-spacing:35.808851px;}
.ls7b{letter-spacing:36.514391px;}
.ls52{letter-spacing:41.994531px;}
.ls30{letter-spacing:58.270211px;}
.ls72{letter-spacing:441.018420px;}
.ls70{letter-spacing:441.018480px;}
.ls73{letter-spacing:447.786420px;}
.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;}
}
.ws8c{word-spacing:-42.053331px;}
.wsaa{word-spacing:-25.901136px;}
.ws94{word-spacing:-24.360591px;}
.ws61{word-spacing:-19.056886px;}
.ws1c6{word-spacing:-18.577080px;}
.ws23{word-spacing:-15.017367px;}
.ws1e9{word-spacing:-10.920000px;}
.wse7{word-spacing:-10.677971px;}
.wsa{word-spacing:-3.096031px;}
.ws1c2{word-spacing:-2.150971px;}
.ws194{word-spacing:-1.499385px;}
.ws186{word-spacing:-1.158348px;}
.ws9e{word-spacing:-0.852591px;}
.ws77{word-spacing:-0.687953px;}
.ws75{word-spacing:-0.676193px;}
.ws72{word-spacing:-0.658553px;}
.ws76{word-spacing:-0.652673px;}
.ws74{word-spacing:-0.617394px;}
.ws7a{word-spacing:-0.611514px;}
.ws88{word-spacing:-0.593874px;}
.ws16{word-spacing:-0.061800px;}
.ws15{word-spacing:-0.060001px;}
.ws21{word-spacing:-0.058799px;}
.ws4b{word-spacing:-0.047999px;}
.ws3f{word-spacing:-0.044999px;}
.ws4{word-spacing:-0.043996px;}
.ws47{word-spacing:-0.041999px;}
.ws4c{word-spacing:0.000000px;}
.ws1e1{word-spacing:0.742490px;}
.wsb9{word-spacing:0.764392px;}
.ws14d{word-spacing:0.770272px;}
.ws1cf{word-spacing:0.778490px;}
.wsba{word-spacing:0.929031px;}
.wsc0{word-spacing:0.934905px;}
.wsbf{word-spacing:0.958430px;}
.wsb6{word-spacing:0.981950px;}
.ws1d6{word-spacing:1.097985px;}
.ws1e8{word-spacing:1.102481px;}
.ws64{word-spacing:1.105429px;}
.ws18c{word-spacing:9.263841px;}
.ws102{word-spacing:9.263884px;}
.ws1cb{word-spacing:10.799856px;}
.ws1ce{word-spacing:10.844855px;}
.ws1c9{word-spacing:10.889855px;}
.ws1cd{word-spacing:10.934854px;}
.ws9f{word-spacing:10.995494px;}
.ws1df{word-spacing:11.024853px;}
.ws1de{word-spacing:11.069852px;}
.wsd8{word-spacing:11.113087px;}
.ws1e4{word-spacing:11.114852px;}
.ws1ca{word-spacing:11.159851px;}
.ws1e0{word-spacing:11.204851px;}
.ws1e3{word-spacing:11.249850px;}
.ws1dc{word-spacing:11.339849px;}
.wsd{word-spacing:11.352114px;}
.ws1e2{word-spacing:11.474847px;}
.ws1dd{word-spacing:11.519846px;}
.ws1db{word-spacing:11.699844px;}
.ws1da{word-spacing:11.834842px;}
.ws3e{word-spacing:11.879842px;}
.ws14{word-spacing:12.036120px;}
.ws15c{word-spacing:12.305824px;}
.ws12a{word-spacing:12.389823px;}
.ws44{word-spacing:12.431822px;}
.ws45{word-spacing:12.515821px;}
.ws15b{word-spacing:12.557828px;}
.ws48{word-spacing:12.599820px;}
.ws46{word-spacing:12.683819px;}
.ws15a{word-spacing:12.809783px;}
.ws1d1{word-spacing:12.910328px;}
.ws1d4{word-spacing:12.923828px;}
.ws1d3{word-spacing:12.968827px;}
.ws1d0{word-spacing:13.018326px;}
.ws1e7{word-spacing:13.027322px;}
.ws1d8{word-spacing:13.123180px;}
.ws1d9{word-spacing:13.139825px;}
.ws1c4{word-spacing:13.184824px;}
.ws1cc{word-spacing:13.229824px;}
.ws1c8{word-spacing:13.274823px;}
.ws1d5{word-spacing:13.288323px;}
.ws1e5{word-spacing:13.292823px;}
.ws1d2{word-spacing:13.310823px;}
.ws43{word-spacing:13.319822px;}
.ws1bf{word-spacing:13.364822px;}
.ws1d7{word-spacing:13.391803px;}
.ws1bb{word-spacing:13.409821px;}
.ws42{word-spacing:13.454821px;}
.ws175{word-spacing:13.488563px;}
.ws1c3{word-spacing:13.499820px;}
.ws1e6{word-spacing:13.531320px;}
.ws1bc{word-spacing:13.544819px;}
.ws1bd{word-spacing:13.589783px;}
.ws1c0{word-spacing:13.589819px;}
.ws1ba{word-spacing:13.589843px;}
.ws41{word-spacing:13.634818px;}
.ws40{word-spacing:13.679818px;}
.ws1c1{word-spacing:13.679825px;}
.ws1c5{word-spacing:13.814816px;}
.ws158{word-spacing:13.823827px;}
.ws1b2{word-spacing:13.841423px;}
.ws1be{word-spacing:13.859815px;}
.ws49{word-spacing:13.871827px;}
.wsd4{word-spacing:13.871846px;}
.ws105{word-spacing:13.871848px;}
.wsd5{word-spacing:13.919823px;}
.ws4a{word-spacing:13.919826px;}
.ws1c7{word-spacing:13.949814px;}
.ws103{word-spacing:13.967825px;}
.ws10c{word-spacing:13.994244px;}
.ws101{word-spacing:14.015825px;}
.wsff{word-spacing:14.063824px;}
.ws100{word-spacing:14.111824px;}
.wsfe{word-spacing:14.159823px;}
.ws1b0{word-spacing:14.170655px;}
.wsfd{word-spacing:14.207822px;}
.wsd6{word-spacing:14.255822px;}
.ws159{word-spacing:14.303821px;}
.ws107{word-spacing:14.351821px;}
.ws104{word-spacing:14.399824px;}
.ws106{word-spacing:14.447819px;}
.ws1af{word-spacing:14.476413px;}
.ws10a{word-spacing:14.523452px;}
.ws13e{word-spacing:14.582271px;}
.ws174{word-spacing:14.817427px;}
.ws6b{word-spacing:14.817449px;}
.wsb1{word-spacing:14.876248px;}
.ws165{word-spacing:14.894827px;}
.ws5b{word-spacing:14.935071px;}
.ws1b4{word-spacing:14.993847px;}
.ws182{word-spacing:15.170264px;}
.wsde{word-spacing:15.405443px;}
.ws1b1{word-spacing:15.523042px;}
.ws16f{word-spacing:15.640640px;}
.wsa7{word-spacing:15.758239px;}
.ws172{word-spacing:15.817039px;}
.ws171{word-spacing:15.875838px;}
.ws137{word-spacing:15.934671px;}
.ws121{word-spacing:16.038000px;}
.ws120{word-spacing:16.092000px;}
.ws1b3{word-spacing:16.169835px;}
.ws160{word-spacing:16.200000px;}
.wsb2{word-spacing:16.228976px;}
.ws179{word-spacing:16.234514px;}
.ws122{word-spacing:16.254000px;}
.ws157{word-spacing:16.362000px;}
.ws5d{word-spacing:16.363873px;}
.ws5a{word-spacing:16.416592px;}
.ws1f{word-spacing:16.446192px;}
.ws181{word-spacing:16.463850px;}
.ws6c{word-spacing:16.504979px;}
.ws91{word-spacing:16.560180px;}
.wsea{word-spacing:16.569671px;}
.wsa5{word-spacing:16.670581px;}
.wsae{word-spacing:16.757829px;}
.ws9c{word-spacing:16.763709px;}
.ws13d{word-spacing:16.763737px;}
.ws13f{word-spacing:16.804869px;}
.ws17c{word-spacing:16.816628px;}
.ws36{word-spacing:16.863668px;}
.ws5c{word-spacing:16.875428px;}
.wsf1{word-spacing:16.910707px;}
.ws3d{word-spacing:16.934227px;}
.ws63{word-spacing:17.034186px;}
.ws1a5{word-spacing:17.134145px;}
.ws67{word-spacing:17.169425px;}
.ws1c{word-spacing:17.204704px;}
.ws18a{word-spacing:17.228224px;}
.ws57{word-spacing:17.298783px;}
.wsf4{word-spacing:17.345823px;}
.wsca{word-spacing:17.404622px;}
.ws1a3{word-spacing:17.422262px;}
.wsf7{word-spacing:17.463422px;}
.wsf5{word-spacing:17.522221px;}
.ws5e{word-spacing:17.528101px;}
.ws97{word-spacing:17.557501px;}
.wsd3{word-spacing:17.581021px;}
.ws193{word-spacing:17.581027px;}
.wsfc{word-spacing:17.639791px;}
.wsf6{word-spacing:17.639820px;}
.wsf8{word-spacing:17.698619px;}
.ws138{word-spacing:17.710379px;}
.wsfb{word-spacing:17.757401px;}
.ws10b{word-spacing:17.757419px;}
.ws109{word-spacing:17.757438px;}
.ws108{word-spacing:17.757443px;}
.wsb{word-spacing:17.760178px;}
.ws58{word-spacing:17.798578px;}
.ws2f{word-spacing:17.816218px;}
.ws1ac{word-spacing:17.816263px;}
.ws9{word-spacing:17.820178px;}
.ws156{word-spacing:17.875018px;}
.wsf9{word-spacing:17.933817px;}
.ws10d{word-spacing:17.933868px;}
.wsc7{word-spacing:17.992616px;}
.wse{word-spacing:18.000180px;}
.wsfa{word-spacing:18.051416px;}
.wsc{word-spacing:18.060181px;}
.ws136{word-spacing:18.104329px;}
.ws173{word-spacing:18.110215px;}
.ws12{word-spacing:18.120181px;}
.ws52{word-spacing:18.169015px;}
.ws10{word-spacing:18.180182px;}
.ws1a{word-spacing:18.227814px;}
.wsd1{word-spacing:18.286613px;}
.ws11{word-spacing:18.300183px;}
.wsf{word-spacing:18.360184px;}
.ws19b{word-spacing:18.404212px;}
.ws17d{word-spacing:18.415972px;}
.ws13{word-spacing:18.420184px;}
.ws66{word-spacing:18.463012px;}
.ws1b9{word-spacing:18.478200px;}
.ws14c{word-spacing:18.480651px;}
.wsda{word-spacing:18.521811px;}
.ws19a{word-spacing:18.580546px;}
.ws190{word-spacing:18.580610px;}
.ws8{word-spacing:18.600186px;}
.ws152{word-spacing:18.815808px;}
.wsd0{word-spacing:18.874607px;}
.wsb8{word-spacing:18.962806px;}
.ws65{word-spacing:18.992206px;}
.ws59{word-spacing:19.015726px;}
.ws62{word-spacing:19.080405px;}
.ws132{word-spacing:19.168604px;}
.wsb7{word-spacing:19.203884px;}
.ws170{word-spacing:19.286203px;}
.ws131{word-spacing:19.403802px;}
.ws25{word-spacing:19.580200px;}
.ws5{word-spacing:19.602178px;}
.ws6{word-spacing:19.668179px;}
.ws1b{word-spacing:19.680159px;}
.wsc8{word-spacing:19.756598px;}
.ws7{word-spacing:19.800180px;}
.ws3{word-spacing:19.866181px;}
.ws11c{word-spacing:19.874197px;}
.ws13a{word-spacing:19.880077px;}
.ws191{word-spacing:19.991796px;}
.ws1d{word-spacing:20.050595px;}
.ws183{word-spacing:20.109395px;}
.ws142{word-spacing:20.138795px;}
.ws143{word-spacing:20.150554px;}
.wscd{word-spacing:20.168194px;}
.ws32{word-spacing:20.232874px;}
.ws11a{word-spacing:20.403392px;}
.ws110{word-spacing:20.462191px;}
.ws16b{word-spacing:20.520991px;}
.wscc{word-spacing:20.579790px;}
.ws68{word-spacing:20.603303px;}
.ws31{word-spacing:20.673869px;}
.ws1a9{word-spacing:20.756188px;}
.ws92{word-spacing:20.791468px;}
.ws18d{word-spacing:20.814988px;}
.ws30{word-spacing:20.826747px;}
.ws11b{word-spacing:20.932586px;}
.ws51{word-spacing:20.991386px;}
.ws9b{word-spacing:20.997266px;}
.wse2{word-spacing:21.073705px;}
.wsad{word-spacing:21.108985px;}
.ws150{word-spacing:21.167784px;}
.wsf0{word-spacing:21.203058px;}
.wse5{word-spacing:21.208944px;}
.ws14f{word-spacing:21.344182px;}
.ws192{word-spacing:21.402982px;}
.ws14e{word-spacing:21.520580px;}
.ws4f{word-spacing:21.579380px;}
.ws17b{word-spacing:21.696979px;}
.ws69{word-spacing:21.814577px;}
.wseb{word-spacing:21.861617px;}
.ws26{word-spacing:21.873377px;}
.ws27{word-spacing:21.932176px;}
.ws13b{word-spacing:22.049811px;}
.ws3c{word-spacing:22.085055px;}
.ws4d{word-spacing:22.108574px;}
.ws1a4{word-spacing:22.185014px;}
.ws6a{word-spacing:22.226173px;}
.wse3{word-spacing:22.326132px;}
.ws119{word-spacing:22.343772px;}
.ws79{word-spacing:22.443731px;}
.ws78{word-spacing:22.555450px;}
.ws18f{word-spacing:22.578970px;}
.ws116{word-spacing:22.755368px;}
.ws84{word-spacing:22.814167px;}
.wsc9{word-spacing:22.931766px;}
.ws93{word-spacing:22.937646px;}
.ws130{word-spacing:22.990565px;}
.ws34{word-spacing:23.019965px;}
.ws14b{word-spacing:23.261037px;}
.ws112{word-spacing:23.355093px;}
.ws177{word-spacing:23.460961px;}
.wsf3{word-spacing:23.519760px;}
.ws18{word-spacing:23.613839px;}
.ws7d{word-spacing:23.625599px;}
.ws0{word-spacing:23.634000px;}
.ws2e{word-spacing:23.637359px;}
.wse8{word-spacing:23.678518px;}
.ws1ad{word-spacing:23.696158px;}
.wscf{word-spacing:23.754958px;}
.wsa4{word-spacing:23.813757px;}
.ws50{word-spacing:23.931356px;}
.wse9{word-spacing:23.937236px;}
.wsce{word-spacing:24.048955px;}
.ws12c{word-spacing:24.166553px;}
.ws90{word-spacing:24.225353px;}
.ws8a{word-spacing:24.248873px;}
.wsdc{word-spacing:24.342952px;}
.ws6e{word-spacing:24.378231px;}
.ws117{word-spacing:24.401751px;}
.ws3a{word-spacing:24.454670px;}
.wsdd{word-spacing:24.460550px;}
.ws1a1{word-spacing:24.631050px;}
.wscb{word-spacing:24.636949px;}
.ws12b{word-spacing:24.695748px;}
.wsbd{word-spacing:24.731022px;}
.wsdb{word-spacing:24.813347px;}
.ws55{word-spacing:24.813351px;}
.ws196{word-spacing:24.872146px;}
.ws33{word-spacing:24.925066px;}
.ws2c{word-spacing:24.930946px;}
.ws82{word-spacing:24.936826px;}
.ws13c{word-spacing:24.954465px;}
.ws1a2{word-spacing:24.966225px;}
.ws144{word-spacing:25.007385px;}
.ws195{word-spacing:25.048544px;}
.ws111{word-spacing:25.166143px;}
.wsc1{word-spacing:25.224943px;}
.ws145{word-spacing:25.271982px;}
.wsab{word-spacing:25.342541px;}
.ws115{word-spacing:25.401341px;}
.wsb5{word-spacing:25.477780px;}
.ws1a6{word-spacing:25.518940px;}
.ws5f{word-spacing:25.548339px;}
.wsa6{word-spacing:25.577739px;}
.ws85{word-spacing:25.660058px;}
.ws1b5{word-spacing:25.695338px;}
.ws135{word-spacing:25.736497px;}
.wsac{word-spacing:25.754137px;}
.ws17{word-spacing:25.789417px;}
.ws185{word-spacing:25.812937px;}
.ws83{word-spacing:25.836456px;}
.wsa9{word-spacing:25.871736px;}
.ws176{word-spacing:25.936415px;}
.ws17e{word-spacing:25.948175px;}
.ws17f{word-spacing:26.118688px;}
.ws197{word-spacing:26.283332px;}
.ws12f{word-spacing:26.342131px;}
.ws19f{word-spacing:26.400931px;}
.ws60{word-spacing:26.547929px;}
.ws113{word-spacing:26.577329px;}
.ws114{word-spacing:26.636128px;}
.ws146{word-spacing:26.836046px;}
.ws1aa{word-spacing:26.930125px;}
.ws19{word-spacing:26.977165px;}
.ws1a7{word-spacing:26.988925px;}
.wsa1{word-spacing:27.047724px;}
.ws147{word-spacing:27.100643px;}
.ws56{word-spacing:27.118283px;}
.wsa0{word-spacing:27.135923px;}
.ws10f{word-spacing:27.165323px;}
.ws11f{word-spacing:27.400520px;}
.ws20{word-spacing:27.418160px;}
.ws9d{word-spacing:27.623958px;}
.ws10e{word-spacing:27.635718px;}
.ws14a{word-spacing:27.659238px;}
.ws140{word-spacing:27.753317px;}
.ws1b8{word-spacing:27.753344px;}
.ws54{word-spacing:27.823860px;}
.ws22{word-spacing:27.917955px;}
.wsee{word-spacing:28.106113px;}
.ws17a{word-spacing:28.311911px;}
.ws154{word-spacing:28.458910px;}
.wse0{word-spacing:28.558869px;}
.wse1{word-spacing:28.600028px;}
.ws9a{word-spacing:28.735267px;}
.ws139{word-spacing:28.747027px;}
.ws148{word-spacing:28.794066px;}
.ws29{word-spacing:28.811706px;}
.ws19e{word-spacing:28.870505px;}
.ws199{word-spacing:29.046904px;}
.ws53{word-spacing:29.158622px;}
.wsb4{word-spacing:29.170382px;}
.ws2d{word-spacing:29.340901px;}
.ws180{word-spacing:29.417340px;}
.wsb3{word-spacing:29.499659px;}
.ws96{word-spacing:29.693697px;}
.wsed{word-spacing:29.693720px;}
.wsa3{word-spacing:29.705457px;}
.ws1b6{word-spacing:29.752496px;}
.wsef{word-spacing:29.870095px;}
.ws18e{word-spacing:29.928895px;}
.ws86{word-spacing:30.005334px;}
.wsd2{word-spacing:30.046493px;}
.ws198{word-spacing:30.164092px;}
.ws39{word-spacing:30.516889px;}
.ws1e{word-spacing:31.046083px;}
.ws6d{word-spacing:31.057843px;}
.ws1b7{word-spacing:31.222460px;}
.wsd7{word-spacing:31.222481px;}
.ws73{word-spacing:31.257761px;}
.ws1ae{word-spacing:31.281281px;}
.wsd9{word-spacing:31.516478px;}
.ws18b{word-spacing:31.575278px;}
.ws16e{word-spacing:31.634077px;}
.wse6{word-spacing:31.757556px;}
.ws80{word-spacing:31.928122px;}
.ws189{word-spacing:31.986874px;}
.wsdf{word-spacing:32.051553px;}
.ws81{word-spacing:32.104472px;}
.ws188{word-spacing:32.339670px;}
.ws155{word-spacing:32.398469px;}
.ws11d{word-spacing:32.457269px;}
.ws98{word-spacing:32.598387px;}
.ws35{word-spacing:32.739506px;}
.ws4e{word-spacing:32.810065px;}
.ws99{word-spacing:32.851225px;}
.ws7e{word-spacing:32.868865px;}
.wsec{word-spacing:32.962938px;}
.ws1a8{word-spacing:32.986463px;}
.ws184{word-spacing:33.045263px;}
.ws12d{word-spacing:33.162862px;}
.ws8f{word-spacing:33.239301px;}
.wsf2{word-spacing:33.398059px;}
.wsbe{word-spacing:33.509778px;}
.ws118{word-spacing:33.809655px;}
.ws149{word-spacing:33.833175px;}
.ws1ab{word-spacing:33.868454px;}
.ws71{word-spacing:34.356489px;}
.wsa2{word-spacing:34.497608px;}
.ws6f{word-spacing:34.509368px;}
.ws70{word-spacing:34.615207px;}
.ws11e{word-spacing:34.809245px;}
.ws178{word-spacing:34.909204px;}
.ws12e{word-spacing:35.103242px;}
.wse4{word-spacing:35.179681px;}
.ws1a0{word-spacing:35.826474px;}
.ws16d{word-spacing:36.044032px;}
.ws19d{word-spacing:36.338029px;}
.ws19c{word-spacing:36.455628px;}
.ws16c{word-spacing:36.573227px;}
.ws141{word-spacing:36.873104px;}
.ws16a{word-spacing:37.749215px;}
.wsc5{word-spacing:37.866814px;}
.ws95{word-spacing:37.884453px;}
.ws89{word-spacing:37.966773px;}
.ws87{word-spacing:38.037332px;}
.ws7f{word-spacing:38.160811px;}
.wsb0{word-spacing:38.278409px;}
.wsc4{word-spacing:38.807604px;}
.ws24{word-spacing:38.866403px;}
.wsa8{word-spacing:39.101601px;}
.ws8e{word-spacing:39.289759px;}
.ws37{word-spacing:40.518667px;}
.ws38{word-spacing:40.583346px;}
.ws8b{word-spacing:40.606866px;}
.ws2a{word-spacing:40.983182px;}
.ws153{word-spacing:41.335978px;}
.ws151{word-spacing:41.512376px;}
.ws28{word-spacing:41.982772px;}
.wsaf{word-spacing:42.511966px;}
.ws3b{word-spacing:43.052921px;}
.ws2{word-spacing:43.056179px;}
.ws1{word-spacing:43.200180px;}
.wsc6{word-spacing:46.275128px;}
.ws15d{word-spacing:48.431395px;}
.ws8d{word-spacing:50.908521px;}
.ws133{word-spacing:51.966910px;}
.ws187{word-spacing:52.272667px;}
.ws134{word-spacing:52.460819px;}
.wsbc{word-spacing:52.625463px;}
.ws7b{word-spacing:58.035008px;}
.ws7c{word-spacing:58.152607px;}
.wsc2{word-spacing:59.387394px;}
.ws2b{word-spacing:60.386984px;}
.ws166{word-spacing:64.943205px;}
.ws15f{word-spacing:71.855102px;}
.wsc3{word-spacing:76.321621px;}
.wsbb{word-spacing:78.079723px;}
.ws168{word-spacing:79.438972px;}
.ws161{word-spacing:79.439032px;}
.ws15e{word-spacing:94.846814px;}
.ws164{word-spacing:102.670717px;}
.ws123{word-spacing:114.334571px;}
.ws162{word-spacing:118.894514px;}
.ws163{word-spacing:125.662429px;}
.ws169{word-spacing:138.718266px;}
.ws167{word-spacing:161.709979px;}
.ws124{word-spacing:186.909664px;}
.ws125{word-spacing:217.869277px;}
.ws126{word-spacing:275.228543px;}
.ws128{word-spacing:278.252505px;}
.ws129{word-spacing:278.252565px;}
.ws127{word-spacing:329.611845px;}
._1d{margin-left:-41.319998px;}
._24{margin-left:-32.785758px;}
._23{margin-left:-26.577259px;}
._21{margin-left:-24.678783px;}
._20{margin-left:-23.658372px;}
._17{margin-left:-21.285383px;}
._16{margin-left:-20.226994px;}
._18{margin-left:-19.143427px;}
._5a{margin-left:-17.922000px;}
._c{margin-left:-15.817039px;}
._d{margin-left:-14.641051px;}
._2b{margin-left:-11.528841px;}
._26{margin-left:-6.711576px;}
._1a{margin-left:-5.350889px;}
._7{margin-left:-4.260043px;}
._4{margin-left:-3.060031px;}
._8{margin-left:-1.705183px;}
._5{width:1.092011px;}
._11{width:2.469575px;}
._3{width:4.260043px;}
._0{width:8.970000px;}
._1b{width:11.113087px;}
._2c{width:12.230275px;}
._14{width:13.523807px;}
._a{width:14.641051px;}
._1f{width:15.842216px;}
._6{width:17.280173px;}
._2{width:18.960190px;}
._9{width:20.287451px;}
._2a{width:21.394538px;}
._15{width:22.746924px;}
._13{width:24.636949px;}
._b{width:26.102712px;}
._1c{width:27.459320px;}
._34{width:29.660075px;}
._12{width:30.752086px;}
._28{width:32.700910px;}
._19{width:33.977609px;}
._2d{width:35.103242px;}
._29{width:36.396829px;}
._22{width:37.505573px;}
._59{width:39.009180px;}
._e{width:40.033947px;}
._25{width:41.218379px;}
._f{width:42.688364px;}
._5b{width:44.324409px;}
._5c{width:45.515342px;}
._1e{width:48.803502px;}
._33{width:52.003847px;}
._58{width:53.826629px;}
._4e{width:57.935276px;}
._10{width:61.504172px;}
._37{width:64.127198px;}
._4a{width:65.519181px;}
._57{width:71.903101px;}
._43{width:75.023062px;}
._48{width:87.358908px;}
._46{width:93.838827px;}
._4f{width:94.894814px;}
._54{width:102.718716px;}
._3b{width:105.982675px;}
._3f{width:108.478649px;}
._45{width:116.398545px;}
._3c{width:119.326454px;}
._55{width:125.086490px;}
._50{width:126.526418px;}
._47{width:127.726403px;}
._42{width:139.006262px;}
._53{width:149.902126px;}
._56{width:156.046103px;}
._51{width:157.486031px;}
._52{width:161.757978px;}
._39{width:185.229685px;}
._3a{width:198.909514px;}
._49{width:215.325308px;}
._4d{width:226.269132px;}
._4c{width:231.069112px;}
._3d{width:232.605092px;}
._44{width:238.317021px;}
._40{width:255.692814px;}
._41{width:261.116758px;}
._30{width:275.276559px;}
._4b{width:278.732555px;}
._3e{width:284.108471px;}
._2e{width:298.268272px;}
._38{width:307.244182px;}
._31{width:326.635917px;}
._32{width:329.659844px;}
._2f{width:349.627630px;}
._36{width:353.035561px;}
._35{width:389.179157px;}
._27{width:1814.952088px;}
._1{width:1976.130000px;}
.fc4{color:rgb(41,40,41);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(19,20,19);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fs9{font-size:41.999400px;}
.fse{font-size:42.000000px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fsf{font-size:65.999400px;}
.fs2{font-size:66.000600px;}
.fsc{font-size:71.999400px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y45{bottom:65.394085px;}
.y44{bottom:77.384914px;}
.y2fb{bottom:81.501150px;}
.y2bf{bottom:89.228070px;}
.y27b{bottom:89.289075px;}
.y7b{bottom:89.292360px;}
.y240{bottom:89.299830px;}
.y9d{bottom:89.307285px;}
.y14a{bottom:89.334855px;}
.yb4{bottom:89.343420px;}
.y105{bottom:89.374380px;}
.y43{bottom:89.375743px;}
.yc9{bottom:89.387535px;}
.y163{bottom:89.393670px;}
.y2fa{bottom:93.502650px;}
.y1aa{bottom:93.850470px;}
.y208{bottom:98.660250px;}
.y1d8{bottom:101.225490px;}
.y42{bottom:101.366571px;}
.y2be{bottom:102.750390px;}
.y27a{bottom:102.811395px;}
.y7a{bottom:107.314380px;}
.y23f{bottom:107.321850px;}
.y9c{bottom:107.329305px;}
.y149{bottom:107.356860px;}
.yb3{bottom:107.365425px;}
.y1a9{bottom:107.374305px;}
.y104{bottom:107.396400px;}
.yc8{bottom:107.409555px;}
.y162{bottom:107.415690px;}
.y41{bottom:113.357400px;}
.y207{bottom:113.708070px;}
.y1d7{bottom:114.749325px;}
.y279{bottom:116.333715px;}
.y277{bottom:116.337795px;}
.y2bd{bottom:116.531460px;}
.y2f9{bottom:118.818150px;}
.y278{bottom:121.266165px;}
.y79{bottom:125.262900px;}
.y23e{bottom:125.270370px;}
.y9b{bottom:125.277810px;}
.y148{bottom:125.378880px;}
.yb2{bottom:125.387445px;}
.y103{bottom:125.418405px;}
.yc7{bottom:125.431575px;}
.y161{bottom:125.437710px;}
.y132{bottom:126.912045px;}
.y1a8{bottom:128.374035px;}
.y206{bottom:128.671875px;}
.y274{bottom:129.769095px;}
.y276{bottom:129.770115px;}
.y2bc{bottom:130.053780px;}
.y275{bottom:134.787315px;}
.y1d6{bottom:135.749055px;}
.y2f8{bottom:136.815150px;}
.y40{bottom:138.782161px;}
.y78{bottom:143.291400px;}
.y273{bottom:143.291415px;}
.y23d{bottom:143.292375px;}
.y9a{bottom:143.299830px;}
.y147{bottom:143.327400px;}
.yb1{bottom:143.335965px;}
.y102{bottom:143.366925px;}
.yc6{bottom:143.380080px;}
.y160{bottom:143.386230px;}
.y205{bottom:143.719695px;}
.y2bb{bottom:143.834850px;}
.y131{bottom:147.911790px;}
.y272{bottom:148.308615px;}
.y1a7{bottom:149.373780px;}
.y3f{bottom:152.304480px;}
.y2f7{bottom:154.812150px;}
.y1d5{bottom:156.748800px;}
.y271{bottom:156.812565px;}
.y2ba{bottom:157.357170px;}
.y204{bottom:158.683500px;}
.y23c{bottom:161.314395px;}
.y99{bottom:161.321850px;}
.y146{bottom:161.349420px;}
.yb0{bottom:161.357970px;}
.y101{bottom:161.388945px;}
.yc5{bottom:161.402100px;}
.y15f{bottom:161.408235px;}
.y270{bottom:161.829915px;}
.y3e{bottom:165.826800px;}
.y130{bottom:168.911520px;}
.y26f{bottom:170.335605px;}
.y1a6{bottom:170.373510px;}
.y2b9{bottom:170.789490px;}
.y3d{bottom:170.844150px;}
.y37{bottom:171.585688px;}
.y2f6{bottom:172.809150px;}
.y1d4{bottom:177.748530px;}
.y23b{bottom:179.262915px;}
.y98{bottom:179.270355px;}
.y77{bottom:179.314935px;}
.y3c{bottom:179.347950px;}
.y145{bottom:179.371425px;}
.yaf{bottom:179.379990px;}
.y100{bottom:179.410950px;}
.yc4{bottom:179.424120px;}
.y15e{bottom:179.430255px;}
.y1a5{bottom:183.813345px;}
.y3b{bottom:184.280250px;}
.y2b8{bottom:184.649295px;}
.y36{bottom:189.534204px;}
.y12f{bottom:189.911265px;}
.y2f5{bottom:190.806150px;}
.y3a{bottom:192.784200px;}
.y26e{bottom:197.290245px;}
.y23a{bottom:197.291265px;}
.y97{bottom:197.292375px;}
.y144{bottom:197.319945px;}
.yae{bottom:197.328510px;}
.y76{bottom:197.336955px;}
.yff{bottom:197.359470px;}
.yc3{bottom:197.372625px;}
.y15d{bottom:197.378775px;}
.y39{bottom:197.801550px;}
.y2b7{bottom:198.081615px;}
.y1d3{bottom:198.748275px;}
.y1a4{bottom:204.813075px;}
.y38{bottom:206.305500px;}
.y35{bottom:207.556221px;}
.y2f4{bottom:208.803150px;}
.y26d{bottom:210.812565px;}
.y12e{bottom:210.910995px;}
.y2b6{bottom:211.603935px;}
.y96{bottom:215.314395px;}
.y143{bottom:215.341965px;}
.yad{bottom:215.350530px;}
.y75{bottom:215.358975px;}
.yfe{bottom:215.381490px;}
.yc2{bottom:215.394645px;}
.y15c{bottom:215.400780px;}
.y1d2{bottom:219.748005px;}
.y26c{bottom:224.333850px;}
.y2b5{bottom:225.385005px;}
.y34{bottom:225.578237px;}
.y1a3{bottom:225.812820px;}
.y2f3{bottom:226.800150px;}
.y12d{bottom:231.910740px;}
.y95{bottom:233.262915px;}
.y74{bottom:233.307495px;}
.y142{bottom:233.363970px;}
.yac{bottom:233.372535px;}
.yfd{bottom:233.403510px;}
.yc1{bottom:233.416665px;}
.y15b{bottom:233.422800px;}
.y239{bottom:233.448030px;}
.y2b4{bottom:238.907325px;}
.y1d1{bottom:240.734880px;}
.y25{bottom:243.497354px;}
.y33{bottom:243.526754px;}
.y1a2{bottom:246.812550px;}
.y2fd{bottom:248.899080px;}
.y94{bottom:251.291250px;}
.y141{bottom:251.312490px;}
.yab{bottom:251.321055px;}
.y73{bottom:251.329500px;}
.yfc{bottom:251.352015px;}
.yc0{bottom:251.365185px;}
.y15a{bottom:251.371320px;}
.y238{bottom:251.396550px;}
.y2b3{bottom:252.429645px;}
.y12c{bottom:252.910470px;}
.y1d0{bottom:254.174715px;}
.y24{bottom:261.519370px;}
.y32{bottom:261.548770px;}
.y26b{bottom:264.771075px;}
.y2b2{bottom:265.861965px;}
.y1a1{bottom:267.812295px;}
.y2fc{bottom:268.698900px;}
.y140{bottom:269.334510px;}
.yaa{bottom:269.343075px;}
.y72{bottom:269.351520px;}
.yfb{bottom:269.374035px;}
.ybf{bottom:269.387190px;}
.y159{bottom:269.393340px;}
.y237{bottom:269.418570px;}
.y12b{bottom:273.910215px;}
.y1cf{bottom:275.174460px;}
.y26a{bottom:278.293395px;}
.y23{bottom:279.541386px;}
.y31{bottom:279.570786px;}
.y2b1{bottom:279.643035px;}
.y13f{bottom:287.283030px;}
.y71{bottom:287.300040px;}
.ya9{bottom:287.365080px;}
.yfa{bottom:287.396055px;}
.ybe{bottom:287.409210px;}
.y158{bottom:287.415345px;}
.y236{bottom:287.440575px;}
.y1a0{bottom:288.812025px;}
.y2b0{bottom:293.165355px;}
.y12a{bottom:294.909945px;}
.y1ce{bottom:296.174190px;}
.y22{bottom:297.489903px;}
.y30{bottom:297.519303px;}
.y13e{bottom:305.305035px;}
.ya8{bottom:305.313600px;}
.y70{bottom:305.322045px;}
.yf9{bottom:305.344575px;}
.ybd{bottom:305.357730px;}
.y157{bottom:305.363865px;}
.y235{bottom:305.389095px;}
.y2af{bottom:306.687675px;}
.y269{bottom:309.669225px;}
.y1cd{bottom:309.698025px;}
.y19f{bottom:309.811770px;}
.y21{bottom:315.511919px;}
.y2f{bottom:315.541319px;}
.y129{bottom:315.909690px;}
.y2ae{bottom:320.209995px;}
.y268{bottom:323.191545px;}
.y13d{bottom:323.327055px;}
.y19e{bottom:323.335590px;}
.ya7{bottom:323.335620px;}
.y6f{bottom:323.344065px;}
.yf8{bottom:323.366580px;}
.ybc{bottom:323.379735px;}
.y156{bottom:323.385885px;}
.y234{bottom:323.411115px;}
.y1cb{bottom:330.697755px;}
.y20{bottom:333.533935px;}
.y2e{bottom:333.563335px;}
.y2ad{bottom:333.991065px;}
.y128{bottom:336.909420px;}
.y13c{bottom:341.275575px;}
.ya6{bottom:341.284140px;}
.y6e{bottom:341.292585px;}
.yf7{bottom:341.315100px;}
.ybb{bottom:341.328255px;}
.y155{bottom:341.334390px;}
.y233{bottom:341.359635px;}
.y1ca{bottom:344.221590px;}
.y19d{bottom:344.335335px;}
.y2ac{bottom:347.513370px;}
.y1cc{bottom:350.173515px;}
.y1f{bottom:351.482452px;}
.y2d{bottom:351.511852px;}
.y267{bottom:354.567375px;}
.y1c9{bottom:357.745410px;}
.y127{bottom:357.909165px;}
.y13b{bottom:359.297580px;}
.ya5{bottom:359.306145px;}
.y6d{bottom:359.314605px;}
.yf6{bottom:359.337120px;}
.yba{bottom:359.350275px;}
.y154{bottom:359.356410px;}
.y232{bottom:359.381640px;}
.y2ab{bottom:360.945705px;}
.y19c{bottom:365.335065px;}
.y266{bottom:368.089695px;}
.y2f2{bottom:368.320290px;}
.y1e{bottom:369.504468px;}
.y2c{bottom:369.533868px;}
.y1c8{bottom:371.185245px;}
.y2aa{bottom:374.468025px;}
.y13a{bottom:377.319600px;}
.ya4{bottom:377.328165px;}
.y6c{bottom:377.336610px;}
.yf5{bottom:377.359125px;}
.y153{bottom:377.378430px;}
.y231{bottom:377.403660px;}
.y19b{bottom:378.858900px;}
.y126{bottom:378.908895px;}
.y265{bottom:381.612015px;}
.y2f1{bottom:381.842610px;}
.y1d{bottom:387.526484px;}
.y2b{bottom:387.555884px;}
.y2a9{bottom:388.249080px;}
.y1c7{bottom:392.184990px;}
.y139{bottom:395.262915px;}
.y2f0{bottom:395.274930px;}
.ya3{bottom:395.276685px;}
.y6b{bottom:395.285130px;}
.yf4{bottom:395.307645px;}
.yb9{bottom:395.320800px;}
.y152{bottom:395.326950px;}
.y230{bottom:395.352180px;}
.y19a{bottom:399.774645px;}
.y125{bottom:399.824640px;}
.y2a8{bottom:401.771400px;}
.y1c{bottom:405.475001px;}
.y2a{bottom:405.504401px;}
.y1c6{bottom:405.708825px;}
.y2ef{bottom:408.797250px;}
.y264{bottom:412.987845px;}
.ya2{bottom:413.298690px;}
.y6a{bottom:413.307150px;}
.yf3{bottom:413.329665px;}
.yb8{bottom:413.342820px;}
.y151{bottom:413.348955px;}
.y22f{bottom:413.374185px;}
.y2a7{bottom:415.293720px;}
.y199{bottom:420.774375px;}
.y124{bottom:420.824370px;}
.y2ee{bottom:422.319570px;}
.y1b{bottom:423.497017px;}
.y29{bottom:423.526417px;}
.y263{bottom:426.510165px;}
.y1c5{bottom:426.708555px;}
.y2a6{bottom:429.074790px;}
.ya1{bottom:431.320710px;}
.y69{bottom:431.329155px;}
.yf2{bottom:431.351685px;}
.yb7{bottom:431.364840px;}
.y150{bottom:431.370975px;}
.y22e{bottom:431.396205px;}
.y2ed{bottom:435.841890px;}
.y262{bottom:440.032485px;}
.y1c4{bottom:440.232390px;}
.y1a{bottom:441.519033px;}
.y28{bottom:441.548433px;}
.y198{bottom:441.774120px;}
.y123{bottom:441.824115px;}
.y2a5{bottom:442.597110px;}
.ya0{bottom:449.269230px;}
.y2ec{bottom:449.274210px;}
.y138{bottom:449.276685px;}
.y68{bottom:449.277675px;}
.yf1{bottom:449.300190px;}
.yb6{bottom:449.313360px;}
.y14f{bottom:449.319495px;}
.y22d{bottom:449.344725px;}
.y261{bottom:453.464805px;}
.y1c3{bottom:453.672210px;}
.y197{bottom:455.297940px;}
.y2a4{bottom:456.029430px;}
.y19{bottom:459.467550px;}
.y27{bottom:459.496950px;}
.y2eb{bottom:462.796530px;}
.y122{bottom:462.823845px;}
.y260{bottom:466.987125px;}
.y1c2{bottom:467.196045px;}
.y9f{bottom:467.291250px;}
.y137{bottom:467.298690px;}
.y67{bottom:467.299695px;}
.yf0{bottom:467.322210px;}
.yb5{bottom:467.335365px;}
.y14e{bottom:467.341500px;}
.y22c{bottom:467.366745px;}
.y2a3{bottom:469.810500px;}
.y196{bottom:476.297685px;}
.y2ea{bottom:476.318850px;}
.y18{bottom:477.495900px;}
.y26{bottom:477.518966px;}
.y25f{bottom:480.509445px;}
.y1c1{bottom:480.719880px;}
.y2a2{bottom:483.332820px;}
.y121{bottom:483.823590px;}
.y136{bottom:485.320710px;}
.y66{bottom:485.321715px;}
.yef{bottom:485.344230px;}
.y14d{bottom:485.363520px;}
.y22b{bottom:485.388750px;}
.y2e9{bottom:489.841170px;}
.y2a1{bottom:497.113875px;}
.y195{bottom:497.297415px;}
.y1be{bottom:501.719610px;}
.y135{bottom:503.269230px;}
.y65{bottom:503.270220px;}
.y2e8{bottom:503.273490px;}
.y1e4{bottom:503.291595px;}
.yee{bottom:503.292735px;}
.y14c{bottom:503.312040px;}
.y22a{bottom:503.337270px;}
.y203{bottom:503.365125px;}
.y120{bottom:504.823320px;}
.ydb{bottom:506.795157px;}
.y2a0{bottom:510.636195px;}
.y194{bottom:510.821250px;}
.y25e{bottom:511.885275px;}
.y1bd{bottom:515.243445px;}
.y2e7{bottom:516.795810px;}
.y134{bottom:521.291250px;}
.y64{bottom:521.292240px;}
.y1e3{bottom:521.313600px;}
.y14b{bottom:521.334060px;}
.y229{bottom:521.359290px;}
.y202{bottom:521.387130px;}
.yda{bottom:521.758977px;}
.y17{bottom:523.165620px;}
.y29f{bottom:524.417265px;}
.y25d{bottom:525.407595px;}
.y11f{bottom:525.823050px;}
.y1c0{bottom:527.231295px;}
.y1bc{bottom:528.683280px;}
.y2e6{bottom:530.318130px;}
.y193{bottom:531.820995px;}
.yd9{bottom:536.806782px;}
.y29e{bottom:537.939585px;}
.y25c{bottom:538.929915px;}
.y63{bottom:539.314260px;}
.y1e2{bottom:539.335620px;}
.yed{bottom:539.351475px;}
.y228{bottom:539.381295px;}
.y201{bottom:539.409150px;}
.y1bb{bottom:542.207115px;}
.y2e5{bottom:543.840450px;}
.y11e{bottom:546.822795px;}
.y1bf{bottom:548.231025px;}
.y16{bottom:548.680875px;}
.y29d{bottom:551.461905px;}
.yd8{bottom:551.770602px;}
.y25b{bottom:552.452235px;}
.y192{bottom:552.820725px;}
.y1ba{bottom:555.730935px;}
.y62{bottom:557.262765px;}
.y2e4{bottom:557.272770px;}
.y1e1{bottom:557.284140px;}
.yec{bottom:557.299995px;}
.y227{bottom:557.329815px;}
.y200{bottom:557.357670px;}
.y29c{bottom:565.242975px;}
.y17b{bottom:566.021985px;}
.y15{bottom:566.711056px;}
.yd7{bottom:566.734407px;}
.y11d{bottom:567.822525px;}
.y1b9{bottom:569.284530px;}
.y2e3{bottom:570.795090px;}
.y191{bottom:573.820470px;}
.y61{bottom:575.291100px;}
.y1e0{bottom:575.306145px;}
.yeb{bottom:575.322000px;}
.y226{bottom:575.351835px;}
.y1ff{bottom:575.379675px;}
.y29b{bottom:578.675295px;}
.yd6{bottom:581.782227px;}
.y25a{bottom:583.828065px;}
.y2e2{bottom:584.317410px;}
.y17a{bottom:585.832320px;}
.y190{bottom:587.260290px;}
.y11c{bottom:588.822270px;}
.y14{bottom:589.166280px;}
.y1b8{bottom:590.284260px;}
.y29a{bottom:592.535115px;}
.y60{bottom:593.319585px;}
.y1df{bottom:593.328165px;}
.yea{bottom:593.344020px;}
.y225{bottom:593.373855px;}
.y1fe{bottom:593.401695px;}
.yd5{bottom:596.746032px;}
.y259{bottom:597.350385px;}
.y2e1{bottom:597.839730px;}
.y1b7{bottom:603.724095px;}
.y299{bottom:605.967435px;}
.y179{bottom:606.832050px;}
.y13{bottom:607.196461px;}
.y18f{bottom:608.260035px;}
.y11b{bottom:609.822000px;}
.y258{bottom:610.872705px;}
.y2e0{bottom:611.272050px;}
.y1de{bottom:611.276685px;}
.y93{bottom:611.291445px;}
.ye9{bottom:611.292540px;}
.y224{bottom:611.322360px;}
.y1fd{bottom:611.350215px;}
.yd4{bottom:611.709852px;}
.y1b6{bottom:617.247930px;}
.y298{bottom:619.489755px;}
.y257{bottom:624.305025px;}
.y2df{bottom:624.794370px;}
.y12{bottom:625.226641px;}
.yd3{bottom:626.757657px;}
.y178{bottom:627.831795px;}
.y18e{bottom:629.259765px;}
.y1dd{bottom:629.298690px;}
.y92{bottom:629.313465px;}
.ye8{bottom:629.314560px;}
.y5f{bottom:629.344365px;}
.y223{bottom:629.344380px;}
.y1fc{bottom:629.372235px;}
.y1b5{bottom:630.771750px;}
.y11a{bottom:630.821745px;}
.y297{bottom:633.012075px;}
.y256{bottom:637.827345px;}
.y2de{bottom:638.316690px;}
.yd2{bottom:641.721477px;}
.y18d{bottom:642.783600px;}
.y11{bottom:643.166820px;}
.y1b4{bottom:644.295585px;}
.y296{bottom:646.793130px;}
.y1dc{bottom:647.320710px;}
.y91{bottom:647.335485px;}
.ye7{bottom:647.336565px;}
.y5e{bottom:647.366385px;}
.y222{bottom:647.366400px;}
.y1fb{bottom:647.394240px;}
.y177{bottom:648.831525px;}
.y119{bottom:651.821475px;}
.y2dd{bottom:651.839010px;}
.yd1{bottom:656.769282px;}
.y1b3{bottom:657.735420px;}
.y295{bottom:660.315450px;}
.y18c{bottom:663.783345px;}
.y1db{bottom:665.269230px;}
.y2dc{bottom:665.271330px;}
.y90{bottom:665.283990px;}
.ye6{bottom:665.285085px;}
.y5d{bottom:665.314890px;}
.y221{bottom:665.314905px;}
.y1fa{bottom:665.342760px;}
.y10{bottom:665.697046px;}
.y255{bottom:669.203175px;}
.y176{bottom:669.747270px;}
.yd0{bottom:671.733087px;}
.y118{bottom:672.821220px;}
.y294{bottom:673.747770px;}
.y1b2{bottom:678.735150px;}
.y2db{bottom:678.793650px;}
.y254{bottom:682.725495px;}
.y1da{bottom:683.291250px;}
.y8f{bottom:683.306010px;}
.ye5{bottom:683.307105px;}
.y5c{bottom:683.336910px;}
.y220{bottom:683.336925px;}
.y1f9{bottom:683.364780px;}
.yf{bottom:683.727226px;}
.y18b{bottom:684.783075px;}
.ycf{bottom:686.696907px;}
.y293{bottom:687.270090px;}
.y175{bottom:690.747000px;}
.y1b1{bottom:692.258985px;}
.y2da{bottom:692.315970px;}
.y117{bottom:693.820950px;}
.y253{bottom:696.247815px;}
.y292{bottom:701.051160px;}
.y8e{bottom:701.328030px;}
.ye4{bottom:701.329110px;}
.y5b{bottom:701.358930px;}
.y21f{bottom:701.358945px;}
.y1f8{bottom:701.386785px;}
.ye{bottom:701.667405px;}
.yce{bottom:701.744712px;}
.y18a{bottom:705.782820px;}
.y2d9{bottom:705.838290px;}
.y174{bottom:711.746745px;}
.y1b0{bottom:713.258730px;}
.y291{bottom:714.573480px;}
.y116{bottom:714.820695px;}
.y2d8{bottom:719.270610px;}
.y8d{bottom:719.276550px;}
.ye3{bottom:719.277630px;}
.y189{bottom:719.306640px;}
.y5a{bottom:719.307450px;}
.y21e{bottom:719.307465px;}
.y1f7{bottom:719.335305px;}
.yd{bottom:724.197631px;}
.y1af{bottom:726.782550px;}
.y252{bottom:727.623645px;}
.y290{bottom:728.095800px;}
.y173{bottom:732.746475px;}
.y2d7{bottom:732.792930px;}
.y115{bottom:735.820425px;}
.y8c{bottom:737.298555px;}
.ye2{bottom:737.299650px;}
.y59{bottom:737.329455px;}
.y21d{bottom:737.329470px;}
.y1f6{bottom:737.357325px;}
.y188{bottom:740.222385px;}
.y251{bottom:741.145965px;}
.y28f{bottom:741.876870px;}
.yc{bottom:742.137810px;}
.y2d6{bottom:746.315250px;}
.y172{bottom:753.746220px;}
.y250{bottom:754.668285px;}
.y8b{bottom:755.320575px;}
.ye1{bottom:755.321655px;}
.y58{bottom:755.351475px;}
.y21c{bottom:755.351490px;}
.y1f5{bottom:755.379330px;}
.y28e{bottom:755.399190px;}
.y114{bottom:756.820170px;}
.y2d5{bottom:759.837570px;}
.yb{bottom:760.167990px;}
.y187{bottom:761.222115px;}
.y20b{bottom:762.462750px;}
.y1ae{bottom:767.270040px;}
.y24f{bottom:768.190605px;}
.y28d{bottom:768.831510px;}
.y8a{bottom:773.269095px;}
.y2d4{bottom:773.269890px;}
.ye0{bottom:773.270175px;}
.y57{bottom:773.299995px;}
.y21b{bottom:773.300010px;}
.y1f4{bottom:773.327850px;}
.y171{bottom:774.745950px;}
.y113{bottom:777.735900px;}
.ya{bottom:778.198171px;}
.y24e{bottom:781.622925px;}
.y186{bottom:782.221860px;}
.y28c{bottom:782.353830px;}
.y2d3{bottom:786.792210px;}
.y1ad{bottom:788.269785px;}
.y89{bottom:791.291100px;}
.ydf{bottom:791.292195px;}
.y56{bottom:791.322000px;}
.y21a{bottom:791.322015px;}
.y1f3{bottom:791.349870px;}
.y170{bottom:795.745680px;}
.y28b{bottom:796.134900px;}
.y9{bottom:796.138350px;}
.y112{bottom:798.735645px;}
.y2d2{bottom:800.314530px;}
.y185{bottom:803.221590px;}
.y1ac{bottom:809.269515px;}
.yde{bottom:809.314215px;}
.y88{bottom:809.319495px;}
.y55{bottom:809.344020px;}
.y219{bottom:809.344035px;}
.y1f2{bottom:809.371890px;}
.y28a{bottom:809.657220px;}
.y2d1{bottom:813.836850px;}
.y16f{bottom:816.745425px;}
.y111{bottom:819.735375px;}
.ycc{bottom:820.073232px;}
.y24d{bottom:820.907400px;}
.y289{bottom:823.179540px;}
.y8{bottom:823.180800px;}
.y20a{bottom:824.221335px;}
.ydd{bottom:827.262720px;}
.y2d0{bottom:827.269170px;}
.y54{bottom:827.292540px;}
.y218{bottom:827.292555px;}
.y1f1{bottom:827.320395px;}
.y1ab{bottom:830.269260px;}
.y24c{bottom:834.429720px;}
.y288{bottom:836.611860px;}
.y16e{bottom:837.745155px;}
.y184{bottom:837.745170px;}
.y110{bottom:840.735120px;}
.y2cf{bottom:840.791490px;}
.y87{bottom:845.305725px;}
.y53{bottom:845.314560px;}
.y217{bottom:845.314575px;}
.y1f0{bottom:845.342415px;}
.y287{bottom:850.471665px;}
.y183{bottom:851.268990px;}
.y24b{bottom:852.451980px;}
.y2ce{bottom:854.313810px;}
.y16d{bottom:858.744900px;}
.y10f{bottom:861.734850px;}
.y86{bottom:863.327730px;}
.y52{bottom:863.336565px;}
.y216{bottom:863.336580px;}
.y1ef{bottom:863.364435px;}
.y286{bottom:863.903985px;}
.y24a{bottom:865.974300px;}
.y2cd{bottom:867.836130px;}
.ycd{bottom:871.066812px;}
.y182{bottom:872.268735px;}
.y285{bottom:877.426305px;}
.y249{bottom:879.406620px;}
.y16c{bottom:879.744630px;}
.y209{bottom:879.744645px;}
.y6{bottom:880.922550px;}
.y2cc{bottom:881.268450px;}
.y85{bottom:881.276250px;}
.y51{bottom:881.285085px;}
.y215{bottom:881.285100px;}
.y1ee{bottom:881.312955px;}
.y10e{bottom:882.734595px;}
.y7{bottom:888.235950px;}
.y284{bottom:891.207375px;}
.y181{bottom:893.268465px;}
.y2cb{bottom:894.790770px;}
.y248{bottom:897.428880px;}
.y84{bottom:899.298270px;}
.y50{bottom:899.307105px;}
.y214{bottom:899.307120px;}
.y1ed{bottom:899.334960px;}
.y16b{bottom:900.744375px;}
.y4{bottom:901.927350px;}
.y10d{bottom:903.734325px;}
.y283{bottom:904.729695px;}
.y133{bottom:904.988715px;}
.y180{bottom:906.708300px;}
.y2ca{bottom:908.313090px;}
.y5{bottom:909.240750px;}
.y247{bottom:910.951200px;}
.y16a{bottom:914.268210px;}
.y83{bottom:917.320275px;}
.y4f{bottom:917.329110px;}
.y213{bottom:917.329125px;}
.y1ec{bottom:917.356980px;}
.y282{bottom:918.510765px;}
.y2c9{bottom:921.835410px;}
.y10c{bottom:924.734070px;}
.y17f{bottom:927.708030px;}
.y246{bottom:928.894710px;}
.y281{bottom:932.033085px;}
.y2c8{bottom:935.267730px;}
.y169{bottom:935.267940px;}
.y82{bottom:935.268795px;}
.y4e{bottom:935.277630px;}
.y212{bottom:935.277645px;}
.y1eb{bottom:935.305500px;}
.y3{bottom:937.907837px;}
.y245{bottom:942.417030px;}
.y280{bottom:945.555405px;}
.y10b{bottom:945.733800px;}
.ycb{bottom:946.072182px;}
.y17e{bottom:948.707775px;}
.y2c7{bottom:948.790050px;}
.y81{bottom:953.290815px;}
.y4d{bottom:953.299650px;}
.y211{bottom:953.299665px;}
.y1ea{bottom:953.327505px;}
.y168{bottom:956.183685px;}
.y27f{bottom:958.987725px;}
.y244{bottom:960.439290px;}
.y2c6{bottom:962.312370px;}
.y10a{bottom:966.733545px;}
.y17d{bottom:969.707505px;}
.y80{bottom:971.312835px;}
.y4c{bottom:971.321655px;}
.y210{bottom:971.321670px;}
.y1e9{bottom:971.349525px;}
.y27e{bottom:972.510045px;}
.y243{bottom:973.961610px;}
.y2c5{bottom:975.834690px;}
.y2{bottom:976.932000px;}
.y167{bottom:977.183415px;}
.y27d{bottom:986.286435px;}
.y109{bottom:987.733275px;}
.y7f{bottom:989.261340px;}
.y2c4{bottom:989.267010px;}
.y4b{bottom:989.270175px;}
.y20f{bottom:989.270190px;}
.y1e8{bottom:989.298045px;}
.y17c{bottom:990.707250px;}
.y242{bottom:991.905120px;}
.y166{bottom:996.911175px;}
.y2c3{bottom:1002.789330px;}
.y7e{bottom:1007.283360px;}
.y4a{bottom:1007.292195px;}
.y20e{bottom:1007.292210px;}
.y1e7{bottom:1007.320050px;}
.y108{bottom:1007.461035px;}
.y241{bottom:1009.927380px;}
.y165{bottom:1010.434995px;}
.y2c2{bottom:1016.311650px;}
.y164{bottom:1023.958830px;}
.y7d{bottom:1025.305380px;}
.y49{bottom:1025.314215px;}
.y20d{bottom:1025.314230px;}
.y1e6{bottom:1025.342070px;}
.y107{bottom:1027.190985px;}
.yca{bottom:1028.565507px;}
.y2c1{bottom:1029.833970px;}
.y1{bottom:1033.908300px;}
.y7c{bottom:1043.253885px;}
.y48{bottom:1043.262720px;}
.y20c{bottom:1043.262735px;}
.y2c0{bottom:1043.266290px;}
.y1e5{bottom:1043.290590px;}
.y106{bottom:1043.687985px;}
.y47{bottom:1112.827987px;}
.y46{bottom:1127.791800px;}
.y9e{bottom:1127.791815px;}
.y27c{bottom:1127.791830px;}
.y1d9{bottom:1127.824680px;}
.ydc{bottom:1127.835402px;}
.ha{height:21.476563px;}
.hb{height:21.626539px;}
.hc{height:30.281567px;}
.h5{height:31.721260px;}
.h17{height:32.130000px;}
.h9{height:32.444567px;}
.h16{height:32.693207px;}
.h13{height:34.079574px;}
.h14{height:34.488527px;}
.he{height:34.607567px;}
.h15{height:34.658987px;}
.h12{height:38.934000px;}
.hf{height:39.799633px;}
.hd{height:42.287471px;}
.h8{height:42.570766px;}
.h10{height:42.629565px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h18{height:49.631549px;}
.h11{height:51.695569px;}
.h2{height:56.238000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x13{left:89.036250px;}
.x1{left:91.077150px;}
.xf{left:94.818900px;}
.x10{left:97.034428px;}
.x16{left:101.904825px;}
.x2b{left:107.578980px;}
.x1b{left:131.130780px;}
.x3{left:182.154300px;}
.x1c{left:186.066090px;}
.xe{left:208.771650px;}
.x4{left:218.806200px;}
.x1d{left:246.533340px;}
.x14{left:270.680250px;}
.x1e{left:308.692560px;}
.x5{left:339.987300px;}
.x6{left:364.563750px;}
.x17{left:367.402605px;}
.x11{left:457.063154px;}
.x24{left:461.083335px;}
.x18{left:462.657810px;}
.x23{left:464.995200px;}
.x12{left:469.058231px;}
.x7{left:475.199850px;}
.x2d{left:477.596835px;}
.x2c{left:479.623020px;}
.x8{left:480.812550px;}
.x15{left:486.517140px;}
.x27{left:495.269250px;}
.x28{left:499.351050px;}
.x19{left:500.798145px;}
.x1f{left:503.177880px;}
.x25{left:540.084915px;}
.x26{left:544.081785px;}
.x9{left:555.051750px;}
.x20{left:558.113190px;}
.xa{left:560.664450px;}
.x1a{left:617.052690px;}
.x21{left:618.580440px;}
.xb{left:652.336800px;}
.xc{left:657.949500px;}
.x29{left:672.661335px;}
.x2a{left:676.743165px;}
.x22{left:680.739660px;}
.xd{left:735.335250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9c{letter-spacing:-1.267983pt;}
.ls8{letter-spacing:-1.249161pt;}
.ls48{letter-spacing:-1.228254pt;}
.ls45{letter-spacing:-1.207348pt;}
.ls4a{letter-spacing:-1.186441pt;}
.ls8c{letter-spacing:-1.181215pt;}
.ls47{letter-spacing:-1.175988pt;}
.ls8d{letter-spacing:-1.170761pt;}
.ls8b{letter-spacing:-1.165535pt;}
.ls9b{letter-spacing:-1.135985pt;}
.ls96{letter-spacing:-1.111985pt;}
.ls46{letter-spacing:-1.108042pt;}
.ls1c{letter-spacing:-1.097589pt;}
.ls75{letter-spacing:-1.092357pt;}
.ls41{letter-spacing:-1.081909pt;}
.ls44{letter-spacing:-1.061003pt;}
.ls4b{letter-spacing:-1.034869pt;}
.ls5a{letter-spacing:-1.024416pt;}
.ls9d{letter-spacing:-1.019982pt;}
.ls99{letter-spacing:-1.015986pt;}
.ls66{letter-spacing:-1.013963pt;}
.ls94{letter-spacing:-1.011987pt;}
.ls97{letter-spacing:-1.007987pt;}
.ls74{letter-spacing:-1.003505pt;}
.ls64{letter-spacing:-0.998283pt;}
.ls19{letter-spacing:-0.993057pt;}
.ls76{letter-spacing:-0.987830pt;}
.ls79{letter-spacing:-0.982603pt;}
.ls65{letter-spacing:-0.977377pt;}
.ls12{letter-spacing:-0.972150pt;}
.ls5b{letter-spacing:-0.972145pt;}
.ls98{letter-spacing:-0.971987pt;}
.ls78{letter-spacing:-0.966923pt;}
.ls42{letter-spacing:-0.961697pt;}
.ls59{letter-spacing:-0.956470pt;}
.ls95{letter-spacing:-0.955987pt;}
.ls11{letter-spacing:-0.951244pt;}
.ls13{letter-spacing:-0.946017pt;}
.ls68{letter-spacing:-0.940790pt;}
.ls14{letter-spacing:-0.935564pt;}
.ls17{letter-spacing:-0.930337pt;}
.ls57{letter-spacing:-0.925111pt;}
.ls69{letter-spacing:-0.919884pt;}
.ls15{letter-spacing:-0.914657pt;}
.ls5c{letter-spacing:-0.904204pt;}
.ls1b{letter-spacing:-0.898977pt;}
.ls18{letter-spacing:-0.893751pt;}
.ls1a{letter-spacing:-0.883298pt;}
.ls43{letter-spacing:-0.883292pt;}
.ls16{letter-spacing:-0.878071pt;}
.ls77{letter-spacing:-0.872844pt;}
.ls83{letter-spacing:-0.846711pt;}
.ls10{letter-spacing:-0.804898pt;}
.ls40{letter-spacing:-0.794445pt;}
.ls58{letter-spacing:-0.789219pt;}
.lsa{letter-spacing:-0.773539pt;}
.lsb{letter-spacing:-0.768312pt;}
.lse{letter-spacing:-0.747406pt;}
.ls7a{letter-spacing:-0.736952pt;}
.ls93{letter-spacing:-0.731990pt;}
.lsc{letter-spacing:-0.731726pt;}
.lsd{letter-spacing:-0.716046pt;}
.ls9a{letter-spacing:-0.699991pt;}
.ls9e{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls90{letter-spacing:0.039972pt;}
.ls92{letter-spacing:0.040028pt;}
.ls7e{letter-spacing:0.104545pt;}
.ls91{letter-spacing:0.120028pt;}
.ls71{letter-spacing:0.128000pt;}
.ls6a{letter-spacing:0.156794pt;}
.ls4{letter-spacing:0.156798pt;}
.ls1d{letter-spacing:0.156800pt;}
.ls3f{letter-spacing:0.156802pt;}
.ls5e{letter-spacing:0.156847pt;}
.ls86{letter-spacing:0.209015pt;}
.ls0{letter-spacing:0.234646pt;}
.ls9{letter-spacing:0.371090pt;}
.ls3b{letter-spacing:0.418145pt;}
.ls4d{letter-spacing:0.433809pt;}
.ls53{letter-spacing:0.439036pt;}
.ls4f{letter-spacing:0.470395pt;}
.ls32{letter-spacing:0.470400pt;}
.ls37{letter-spacing:0.470422pt;}
.ls50{letter-spacing:0.475622pt;}
.ls51{letter-spacing:0.486075pt;}
.ls2f{letter-spacing:0.491302pt;}
.ls28{letter-spacing:0.496528pt;}
.ls36{letter-spacing:0.506981pt;}
.ls38{letter-spacing:0.517435pt;}
.ls2a{letter-spacing:0.527888pt;}
.ls25{letter-spacing:0.533115pt;}
.ls2e{letter-spacing:0.538341pt;}
.ls23{letter-spacing:0.543568pt;}
.ls29{letter-spacing:0.548794pt;}
.ls35{letter-spacing:0.554021pt;}
.ls2c{letter-spacing:0.559248pt;}
.ls22{letter-spacing:0.564474pt;}
.ls34{letter-spacing:0.569701pt;}
.ls3c{letter-spacing:0.574913pt;}
.ls31{letter-spacing:0.574927pt;}
.ls39{letter-spacing:0.585381pt;}
.ls3e{letter-spacing:0.590607pt;}
.ls33{letter-spacing:0.627194pt;}
.ls4c{letter-spacing:0.674233pt;}
.ls55{letter-spacing:0.705593pt;}
.ls87{letter-spacing:0.731692pt;}
.ls3a{letter-spacing:0.731745pt;}
.ls6c{letter-spacing:0.977377pt;}
.ls84{letter-spacing:1.280520pt;}
.ls4e{letter-spacing:1.536624pt;}
.ls8e{letter-spacing:1.871975pt;}
.ls85{letter-spacing:2.218639pt;}
.ls6{letter-spacing:2.698694pt;}
.ls7{letter-spacing:2.997363pt;}
.ls67{letter-spacing:9.439264pt;}
.ls5d{letter-spacing:9.512449pt;}
.ls8a{letter-spacing:11.999855pt;}
.ls5f{letter-spacing:12.543840pt;}
.ls60{letter-spacing:12.629164pt;}
.ls63{letter-spacing:12.714512pt;}
.ls62{letter-spacing:12.799825pt;}
.ls21{letter-spacing:12.805183pt;}
.ls61{letter-spacing:12.970532pt;}
.ls6f{letter-spacing:13.118836pt;}
.lsf{letter-spacing:13.296504pt;}
.ls1f{letter-spacing:13.380116pt;}
.ls20{letter-spacing:13.380170pt;}
.ls7c{letter-spacing:14.373175pt;}
.ls7d{letter-spacing:14.634516pt;}
.ls6e{letter-spacing:15.523050pt;}
.ls6b{letter-spacing:15.575301pt;}
.ls1e{letter-spacing:15.836650pt;}
.ls1{letter-spacing:15.946826pt;}
.ls2{letter-spacing:16.266829pt;}
.ls8f{letter-spacing:16.458027pt;}
.ls49{letter-spacing:16.887188pt;}
.ls2d{letter-spacing:18.815796pt;}
.ls6d{letter-spacing:20.331530pt;}
.ls2b{letter-spacing:20.958676pt;}
.ls81{letter-spacing:20.958730pt;}
.ls54{letter-spacing:21.601593pt;}
.ls7f{letter-spacing:22.788010pt;}
.ls80{letter-spacing:22.788063pt;}
.ls56{letter-spacing:22.970966pt;}
.ls3{letter-spacing:23.049365pt;}
.ls88{letter-spacing:23.049396pt;}
.ls89{letter-spacing:23.091210pt;}
.ls3d{letter-spacing:25.192278pt;}
.ls82{letter-spacing:28.537290pt;}
.ls27{letter-spacing:30.941556pt;}
.ls26{letter-spacing:31.255156pt;}
.ls24{letter-spacing:31.830090pt;}
.ls7b{letter-spacing:32.457236pt;}
.ls52{letter-spacing:37.328472pt;}
.ls30{letter-spacing:51.795743pt;}
.ls72{letter-spacing:392.016373pt;}
.ls70{letter-spacing:392.016427pt;}
.ls73{letter-spacing:398.032373pt;}
.ws8c{word-spacing:-37.380739pt;}
.wsaa{word-spacing:-23.023232pt;}
.ws94{word-spacing:-21.653859pt;}
.ws61{word-spacing:-16.939454pt;}
.ws1c6{word-spacing:-16.512960pt;}
.ws23{word-spacing:-13.348770pt;}
.ws1e9{word-spacing:-9.706667pt;}
.wse7{word-spacing:-9.491530pt;}
.wsa{word-spacing:-2.752028pt;}
.ws1c2{word-spacing:-1.911975pt;}
.ws194{word-spacing:-1.332786pt;}
.ws186{word-spacing:-1.029643pt;}
.ws9e{word-spacing:-0.757859pt;}
.ws77{word-spacing:-0.611514pt;}
.ws75{word-spacing:-0.601061pt;}
.ws72{word-spacing:-0.585381pt;}
.ws76{word-spacing:-0.580154pt;}
.ws74{word-spacing:-0.548794pt;}
.ws7a{word-spacing:-0.543568pt;}
.ws88{word-spacing:-0.527888pt;}
.ws16{word-spacing:-0.054933pt;}
.ws15{word-spacing:-0.053334pt;}
.ws21{word-spacing:-0.052266pt;}
.ws4b{word-spacing:-0.042666pt;}
.ws3f{word-spacing:-0.039999pt;}
.ws4{word-spacing:-0.039108pt;}
.ws47{word-spacing:-0.037333pt;}
.ws4c{word-spacing:0.000000pt;}
.ws1e1{word-spacing:0.659991pt;}
.wsb9{word-spacing:0.679460pt;}
.ws14d{word-spacing:0.684686pt;}
.ws1cf{word-spacing:0.691991pt;}
.wsba{word-spacing:0.825805pt;}
.wsc0{word-spacing:0.831026pt;}
.wsbf{word-spacing:0.851938pt;}
.wsb6{word-spacing:0.872844pt;}
.ws1d6{word-spacing:0.975987pt;}
.ws1e8{word-spacing:0.979983pt;}
.ws64{word-spacing:0.982603pt;}
.ws18c{word-spacing:8.234525pt;}
.ws102{word-spacing:8.234564pt;}
.ws1cb{word-spacing:9.599872pt;}
.ws1ce{word-spacing:9.639871pt;}
.ws1c9{word-spacing:9.679871pt;}
.ws1cd{word-spacing:9.719870pt;}
.ws9f{word-spacing:9.773772pt;}
.ws1df{word-spacing:9.799869pt;}
.ws1de{word-spacing:9.839869pt;}
.wsd8{word-spacing:9.878299pt;}
.ws1e4{word-spacing:9.879868pt;}
.ws1ca{word-spacing:9.919868pt;}
.ws1e0{word-spacing:9.959867pt;}
.ws1e3{word-spacing:9.999867pt;}
.ws1dc{word-spacing:10.079866pt;}
.wsd{word-spacing:10.090768pt;}
.ws1e2{word-spacing:10.199864pt;}
.ws1dd{word-spacing:10.239863pt;}
.ws1db{word-spacing:10.399861pt;}
.ws1da{word-spacing:10.519860pt;}
.ws3e{word-spacing:10.559859pt;}
.ws14{word-spacing:10.698774pt;}
.ws15c{word-spacing:10.938510pt;}
.ws12a{word-spacing:11.013176pt;}
.ws44{word-spacing:11.050509pt;}
.ws45{word-spacing:11.125174pt;}
.ws15b{word-spacing:11.162514pt;}
.ws48{word-spacing:11.199840pt;}
.ws46{word-spacing:11.274506pt;}
.ws15a{word-spacing:11.386474pt;}
.ws1d1{word-spacing:11.475847pt;}
.ws1d4{word-spacing:11.487847pt;}
.ws1d3{word-spacing:11.527846pt;}
.ws1d0{word-spacing:11.571846pt;}
.ws1e7{word-spacing:11.579842pt;}
.ws1d8{word-spacing:11.665049pt;}
.ws1d9{word-spacing:11.679844pt;}
.ws1c4{word-spacing:11.719844pt;}
.ws1cc{word-spacing:11.759843pt;}
.ws1c8{word-spacing:11.799843pt;}
.ws1d5{word-spacing:11.811843pt;}
.ws1e5{word-spacing:11.815842pt;}
.ws1d2{word-spacing:11.831842pt;}
.ws43{word-spacing:11.839842pt;}
.ws1bf{word-spacing:11.879842pt;}
.ws1d7{word-spacing:11.903825pt;}
.ws1bb{word-spacing:11.919841pt;}
.ws42{word-spacing:11.959841pt;}
.ws175{word-spacing:11.989834pt;}
.ws1c3{word-spacing:11.999840pt;}
.ws1e6{word-spacing:12.027840pt;}
.ws1bc{word-spacing:12.039839pt;}
.ws1bd{word-spacing:12.079807pt;}
.ws1c0{word-spacing:12.079839pt;}
.ws1ba{word-spacing:12.079861pt;}
.ws41{word-spacing:12.119838pt;}
.ws40{word-spacing:12.159838pt;}
.ws1c1{word-spacing:12.159844pt;}
.ws1c5{word-spacing:12.279836pt;}
.ws158{word-spacing:12.287846pt;}
.ws1b2{word-spacing:12.303487pt;}
.ws1be{word-spacing:12.319836pt;}
.ws49{word-spacing:12.330513pt;}
.wsd4{word-spacing:12.330530pt;}
.ws105{word-spacing:12.330532pt;}
.wsd5{word-spacing:12.373176pt;}
.ws4a{word-spacing:12.373179pt;}
.ws1c7{word-spacing:12.399835pt;}
.ws103{word-spacing:12.415845pt;}
.ws10c{word-spacing:12.439328pt;}
.ws101{word-spacing:12.458511pt;}
.wsff{word-spacing:12.501177pt;}
.ws100{word-spacing:12.543843pt;}
.wsfe{word-spacing:12.586509pt;}
.ws1b0{word-spacing:12.596138pt;}
.wsfd{word-spacing:12.629175pt;}
.wsd6{word-spacing:12.671842pt;}
.ws159{word-spacing:12.714508pt;}
.ws107{word-spacing:12.757174pt;}
.ws104{word-spacing:12.799843pt;}
.ws106{word-spacing:12.842506pt;}
.ws1af{word-spacing:12.867923pt;}
.ws10a{word-spacing:12.909735pt;}
.ws13e{word-spacing:12.962019pt;}
.ws174{word-spacing:13.171046pt;}
.ws6b{word-spacing:13.171066pt;}
.wsb1{word-spacing:13.223332pt;}
.ws165{word-spacing:13.239846pt;}
.ws5b{word-spacing:13.275619pt;}
.ws1b4{word-spacing:13.327864pt;}
.ws182{word-spacing:13.484679pt;}
.wsde{word-spacing:13.693727pt;}
.ws1b1{word-spacing:13.798259pt;}
.ws16f{word-spacing:13.902791pt;}
.wsa7{word-spacing:14.007324pt;}
.ws172{word-spacing:14.059590pt;}
.ws171{word-spacing:14.111856pt;}
.ws137{word-spacing:14.164152pt;}
.ws121{word-spacing:14.256000pt;}
.ws120{word-spacing:14.304000pt;}
.ws1b3{word-spacing:14.373187pt;}
.ws160{word-spacing:14.400000pt;}
.wsb2{word-spacing:14.425757pt;}
.ws179{word-spacing:14.430679pt;}
.ws122{word-spacing:14.448000pt;}
.ws157{word-spacing:14.544000pt;}
.ws5d{word-spacing:14.545665pt;}
.ws5a{word-spacing:14.592526pt;}
.ws1f{word-spacing:14.618837pt;}
.ws181{word-spacing:14.634533pt;}
.ws6c{word-spacing:14.671093pt;}
.ws91{word-spacing:14.720160pt;}
.wsea{word-spacing:14.728596pt;}
.wsa5{word-spacing:14.818294pt;}
.wsae{word-spacing:14.895848pt;}
.ws9c{word-spacing:14.901075pt;}
.ws13d{word-spacing:14.901100pt;}
.ws13f{word-spacing:14.937661pt;}
.ws17c{word-spacing:14.948114pt;}
.ws36{word-spacing:14.989927pt;}
.ws5c{word-spacing:15.000380pt;}
.wsf1{word-spacing:15.031740pt;}
.ws3d{word-spacing:15.052646pt;}
.ws63{word-spacing:15.141499pt;}
.ws1a5{word-spacing:15.230351pt;}
.ws67{word-spacing:15.261711pt;}
.ws1c{word-spacing:15.293071pt;}
.ws18a{word-spacing:15.313977pt;}
.ws57{word-spacing:15.376696pt;}
.wsf4{word-spacing:15.418509pt;}
.wsca{word-spacing:15.470775pt;}
.ws1a3{word-spacing:15.486455pt;}
.wsf7{word-spacing:15.523042pt;}
.wsf5{word-spacing:15.575308pt;}
.ws5e{word-spacing:15.580534pt;}
.ws97{word-spacing:15.606667pt;}
.wsd3{word-spacing:15.627574pt;}
.ws193{word-spacing:15.627580pt;}
.wsfc{word-spacing:15.679814pt;}
.wsf6{word-spacing:15.679840pt;}
.wsf8{word-spacing:15.732106pt;}
.ws138{word-spacing:15.742559pt;}
.wsfb{word-spacing:15.784357pt;}
.ws10b{word-spacing:15.784372pt;}
.ws109{word-spacing:15.784389pt;}
.ws108{word-spacing:15.784394pt;}
.wsb{word-spacing:15.786825pt;}
.ws58{word-spacing:15.820959pt;}
.ws2f{word-spacing:15.836638pt;}
.ws1ac{word-spacing:15.836678pt;}
.ws9{word-spacing:15.840158pt;}
.ws156{word-spacing:15.888905pt;}
.wsf9{word-spacing:15.941171pt;}
.ws10d{word-spacing:15.941216pt;}
.wsc7{word-spacing:15.993437pt;}
.wse{word-spacing:16.000160pt;}
.wsfa{word-spacing:16.045703pt;}
.wsc{word-spacing:16.053494pt;}
.ws136{word-spacing:16.092737pt;}
.ws173{word-spacing:16.097969pt;}
.ws12{word-spacing:16.106828pt;}
.ws52{word-spacing:16.150235pt;}
.ws10{word-spacing:16.160162pt;}
.ws1a{word-spacing:16.202501pt;}
.wsd1{word-spacing:16.254767pt;}
.ws11{word-spacing:16.266829pt;}
.wsf{word-spacing:16.320163pt;}
.ws19b{word-spacing:16.359300pt;}
.ws17d{word-spacing:16.369753pt;}
.ws13{word-spacing:16.373497pt;}
.ws66{word-spacing:16.411566pt;}
.ws1b9{word-spacing:16.425067pt;}
.ws14c{word-spacing:16.427246pt;}
.wsda{word-spacing:16.463832pt;}
.ws19a{word-spacing:16.516041pt;}
.ws190{word-spacing:16.516098pt;}
.ws8{word-spacing:16.533499pt;}
.ws152{word-spacing:16.725163pt;}
.wsd0{word-spacing:16.777429pt;}
.wsb8{word-spacing:16.855828pt;}
.ws65{word-spacing:16.881961pt;}
.ws59{word-spacing:16.902868pt;}
.ws62{word-spacing:16.960360pt;}
.ws132{word-spacing:17.038759pt;}
.wsb7{word-spacing:17.070119pt;}
.ws170{word-spacing:17.143292pt;}
.ws131{word-spacing:17.247824pt;}
.ws25{word-spacing:17.404622pt;}
.ws5{word-spacing:17.424158pt;}
.ws6{word-spacing:17.482826pt;}
.ws1b{word-spacing:17.493475pt;}
.wsc8{word-spacing:17.561421pt;}
.ws7{word-spacing:17.600160pt;}
.ws3{word-spacing:17.658827pt;}
.ws11c{word-spacing:17.665953pt;}
.ws13a{word-spacing:17.671180pt;}
.ws191{word-spacing:17.770485pt;}
.ws1d{word-spacing:17.822751pt;}
.ws183{word-spacing:17.875018pt;}
.ws142{word-spacing:17.901151pt;}
.ws143{word-spacing:17.911604pt;}
.wscd{word-spacing:17.927284pt;}
.ws32{word-spacing:17.984776pt;}
.ws11a{word-spacing:18.136348pt;}
.ws110{word-spacing:18.188614pt;}
.ws16b{word-spacing:18.240881pt;}
.wscc{word-spacing:18.293147pt;}
.ws68{word-spacing:18.314047pt;}
.ws31{word-spacing:18.376772pt;}
.ws1a9{word-spacing:18.449945pt;}
.ws92{word-spacing:18.481305pt;}
.ws18d{word-spacing:18.502211pt;}
.ws30{word-spacing:18.512664pt;}
.ws11b{word-spacing:18.606743pt;}
.ws51{word-spacing:18.659010pt;}
.ws9b{word-spacing:18.664236pt;}
.wse2{word-spacing:18.732182pt;}
.wsad{word-spacing:18.763542pt;}
.ws150{word-spacing:18.815808pt;}
.wsf0{word-spacing:18.847162pt;}
.wse5{word-spacing:18.852394pt;}
.ws14f{word-spacing:18.972606pt;}
.ws192{word-spacing:19.024873pt;}
.ws14e{word-spacing:19.129405pt;}
.ws4f{word-spacing:19.181671pt;}
.ws17b{word-spacing:19.286203pt;}
.ws69{word-spacing:19.390735pt;}
.wseb{word-spacing:19.432548pt;}
.ws26{word-spacing:19.443002pt;}
.ws27{word-spacing:19.495268pt;}
.ws13b{word-spacing:19.599832pt;}
.ws3c{word-spacing:19.631160pt;}
.ws4d{word-spacing:19.652066pt;}
.ws1a4{word-spacing:19.720012pt;}
.ws6a{word-spacing:19.756598pt;}
.wse3{word-spacing:19.845451pt;}
.ws119{word-spacing:19.861131pt;}
.ws79{word-spacing:19.949983pt;}
.ws78{word-spacing:20.049289pt;}
.ws18f{word-spacing:20.070195pt;}
.ws116{word-spacing:20.226994pt;}
.ws84{word-spacing:20.279260pt;}
.wsc9{word-spacing:20.383792pt;}
.ws93{word-spacing:20.389019pt;}
.ws130{word-spacing:20.436058pt;}
.ws34{word-spacing:20.462191pt;}
.ws14b{word-spacing:20.676477pt;}
.ws112{word-spacing:20.760083pt;}
.ws177{word-spacing:20.854187pt;}
.wsf3{word-spacing:20.906453pt;}
.ws18{word-spacing:20.990079pt;}
.ws7d{word-spacing:21.000532pt;}
.ws0{word-spacing:21.008000pt;}
.ws2e{word-spacing:21.010986pt;}
.wse8{word-spacing:21.047572pt;}
.ws1ad{word-spacing:21.063252pt;}
.wscf{word-spacing:21.115518pt;}
.wsa4{word-spacing:21.167784pt;}
.ws50{word-spacing:21.272316pt;}
.wse9{word-spacing:21.277543pt;}
.wsce{word-spacing:21.376849pt;}
.ws12c{word-spacing:21.481381pt;}
.ws90{word-spacing:21.533647pt;}
.ws8a{word-spacing:21.554553pt;}
.wsdc{word-spacing:21.638179pt;}
.ws6e{word-spacing:21.669539pt;}
.ws117{word-spacing:21.690445pt;}
.ws3a{word-spacing:21.737485pt;}
.wsdd{word-spacing:21.742711pt;}
.ws1a1{word-spacing:21.894267pt;}
.wscb{word-spacing:21.899510pt;}
.ws12b{word-spacing:21.951776pt;}
.wsbd{word-spacing:21.983130pt;}
.wsdb{word-spacing:22.056308pt;}
.ws55{word-spacing:22.056312pt;}
.ws196{word-spacing:22.108574pt;}
.ws33{word-spacing:22.155614pt;}
.ws2c{word-spacing:22.160841pt;}
.ws82{word-spacing:22.166067pt;}
.ws13c{word-spacing:22.181747pt;}
.ws1a2{word-spacing:22.192200pt;}
.ws144{word-spacing:22.228787pt;}
.ws195{word-spacing:22.265373pt;}
.ws111{word-spacing:22.369905pt;}
.wsc1{word-spacing:22.422171pt;}
.ws145{word-spacing:22.463984pt;}
.wsab{word-spacing:22.526703pt;}
.ws115{word-spacing:22.578970pt;}
.wsb5{word-spacing:22.646916pt;}
.ws1a6{word-spacing:22.683502pt;}
.ws5f{word-spacing:22.709635pt;}
.wsa6{word-spacing:22.735768pt;}
.ws85{word-spacing:22.808941pt;}
.ws1b5{word-spacing:22.840300pt;}
.ws135{word-spacing:22.876887pt;}
.wsac{word-spacing:22.892566pt;}
.ws17{word-spacing:22.923926pt;}
.ws185{word-spacing:22.944833pt;}
.ws83{word-spacing:22.965739pt;}
.wsa9{word-spacing:22.997099pt;}
.ws176{word-spacing:23.054591pt;}
.ws17e{word-spacing:23.065045pt;}
.ws17f{word-spacing:23.216611pt;}
.ws197{word-spacing:23.362962pt;}
.ws12f{word-spacing:23.415228pt;}
.ws19f{word-spacing:23.467494pt;}
.ws60{word-spacing:23.598159pt;}
.ws113{word-spacing:23.624292pt;}
.ws114{word-spacing:23.676558pt;}
.ws146{word-spacing:23.854263pt;}
.ws1aa{word-spacing:23.937889pt;}
.ws19{word-spacing:23.979702pt;}
.ws1a7{word-spacing:23.990155pt;}
.wsa1{word-spacing:24.042421pt;}
.ws147{word-spacing:24.089461pt;}
.ws56{word-spacing:24.105141pt;}
.wsa0{word-spacing:24.120821pt;}
.ws10f{word-spacing:24.146954pt;}
.ws11f{word-spacing:24.356018pt;}
.ws20{word-spacing:24.371698pt;}
.ws9d{word-spacing:24.554629pt;}
.ws10e{word-spacing:24.565083pt;}
.ws14a{word-spacing:24.585989pt;}
.ws140{word-spacing:24.669615pt;}
.ws1b8{word-spacing:24.669639pt;}
.ws54{word-spacing:24.732320pt;}
.ws22{word-spacing:24.815960pt;}
.wsee{word-spacing:24.983212pt;}
.ws17a{word-spacing:25.166143pt;}
.ws154{word-spacing:25.296809pt;}
.wse0{word-spacing:25.385661pt;}
.wse1{word-spacing:25.422247pt;}
.ws9a{word-spacing:25.542459pt;}
.ws139{word-spacing:25.552913pt;}
.ws148{word-spacing:25.594725pt;}
.ws29{word-spacing:25.610405pt;}
.ws19e{word-spacing:25.662671pt;}
.ws199{word-spacing:25.819470pt;}
.ws53{word-spacing:25.918776pt;}
.wsb4{word-spacing:25.929229pt;}
.ws2d{word-spacing:26.080801pt;}
.ws180{word-spacing:26.148747pt;}
.wsb3{word-spacing:26.221919pt;}
.ws96{word-spacing:26.394397pt;}
.wsed{word-spacing:26.394418pt;}
.wsa3{word-spacing:26.404851pt;}
.ws1b6{word-spacing:26.446663pt;}
.wsef{word-spacing:26.551196pt;}
.ws18e{word-spacing:26.603462pt;}
.ws86{word-spacing:26.671408pt;}
.wsd2{word-spacing:26.707994pt;}
.ws198{word-spacing:26.812526pt;}
.ws39{word-spacing:27.126123pt;}
.ws1e{word-spacing:27.596518pt;}
.ws6d{word-spacing:27.606972pt;}
.ws1b7{word-spacing:27.753298pt;}
.wsd7{word-spacing:27.753317pt;}
.ws73{word-spacing:27.784676pt;}
.ws1ae{word-spacing:27.805583pt;}
.wsd9{word-spacing:28.014647pt;}
.ws18b{word-spacing:28.066914pt;}
.ws16e{word-spacing:28.119180pt;}
.wse6{word-spacing:28.228939pt;}
.ws80{word-spacing:28.380553pt;}
.ws189{word-spacing:28.432777pt;}
.wsdf{word-spacing:28.490269pt;}
.ws81{word-spacing:28.537309pt;}
.ws188{word-spacing:28.746373pt;}
.ws155{word-spacing:28.798639pt;}
.ws11d{word-spacing:28.850906pt;}
.ws98{word-spacing:28.976344pt;}
.ws35{word-spacing:29.101783pt;}
.ws4e{word-spacing:29.164502pt;}
.ws99{word-spacing:29.201089pt;}
.ws7e{word-spacing:29.216769pt;}
.wsec{word-spacing:29.300389pt;}
.ws1a8{word-spacing:29.321301pt;}
.ws184{word-spacing:29.373567pt;}
.ws12d{word-spacing:29.478099pt;}
.ws8f{word-spacing:29.546045pt;}
.wsf2{word-spacing:29.687164pt;}
.wsbe{word-spacing:29.786469pt;}
.ws118{word-spacing:30.053027pt;}
.ws149{word-spacing:30.073933pt;}
.ws1ab{word-spacing:30.105293pt;}
.ws71{word-spacing:30.539102pt;}
.wsa2{word-spacing:30.664540pt;}
.ws6f{word-spacing:30.674994pt;}
.ws70{word-spacing:30.769073pt;}
.ws11e{word-spacing:30.941551pt;}
.ws178{word-spacing:31.030403pt;}
.ws12e{word-spacing:31.202882pt;}
.wse4{word-spacing:31.270828pt;}
.ws1a0{word-spacing:31.845755pt;}
.ws16d{word-spacing:32.039140pt;}
.ws19d{word-spacing:32.300470pt;}
.ws19c{word-spacing:32.405003pt;}
.ws16c{word-spacing:32.509535pt;}
.ws141{word-spacing:32.776092pt;}
.ws16a{word-spacing:33.554858pt;}
.wsc5{word-spacing:33.659390pt;}
.ws95{word-spacing:33.675070pt;}
.ws89{word-spacing:33.748243pt;}
.ws87{word-spacing:33.810962pt;}
.ws7f{word-spacing:33.920721pt;}
.wsb0{word-spacing:34.025253pt;}
.wsc4{word-spacing:34.495648pt;}
.ws24{word-spacing:34.547914pt;}
.wsa8{word-spacing:34.756979pt;}
.ws8e{word-spacing:34.924230pt;}
.ws37{word-spacing:36.016592pt;}
.ws38{word-spacing:36.074085pt;}
.ws8b{word-spacing:36.094992pt;}
.ws2a{word-spacing:36.429495pt;}
.ws153{word-spacing:36.743092pt;}
.ws151{word-spacing:36.899890pt;}
.ws28{word-spacing:37.318019pt;}
.wsaf{word-spacing:37.788414pt;}
.ws3b{word-spacing:38.269263pt;}
.ws2{word-spacing:38.272159pt;}
.ws1{word-spacing:38.400160pt;}
.wsc6{word-spacing:41.133447pt;}
.ws15d{word-spacing:43.050129pt;}
.ws8d{word-spacing:45.252018pt;}
.ws133{word-spacing:46.192809pt;}
.ws187{word-spacing:46.464593pt;}
.ws134{word-spacing:46.631839pt;}
.wsbc{word-spacing:46.778189pt;}
.ws7b{word-spacing:51.586674pt;}
.ws7c{word-spacing:51.691206pt;}
.wsc2{word-spacing:52.788795pt;}
.ws2b{word-spacing:53.677319pt;}
.ws166{word-spacing:57.727293pt;}
.ws15f{word-spacing:63.871202pt;}
.wsc3{word-spacing:67.841441pt;}
.wsbb{word-spacing:69.404198pt;}
.ws168{word-spacing:70.612419pt;}
.ws161{word-spacing:70.612473pt;}
.ws15e{word-spacing:84.308279pt;}
.ws164{word-spacing:91.262859pt;}
.ws123{word-spacing:101.630730pt;}
.ws162{word-spacing:105.684012pt;}
.ws163{word-spacing:111.699937pt;}
.ws169{word-spacing:123.305125pt;}
.ws167{word-spacing:143.742203pt;}
.ws124{word-spacing:166.141923pt;}
.ws125{word-spacing:193.661579pt;}
.ws126{word-spacing:244.647594pt;}
.ws128{word-spacing:247.335560pt;}
.ws129{word-spacing:247.335613pt;}
.ws127{word-spacing:292.988307pt;}
._1d{margin-left:-36.728887pt;}
._24{margin-left:-29.142896pt;}
._23{margin-left:-23.624230pt;}
._21{margin-left:-21.936696pt;}
._20{margin-left:-21.029664pt;}
._17{margin-left:-18.920340pt;}
._16{margin-left:-17.979550pt;}
._18{margin-left:-17.016379pt;}
._5a{margin-left:-15.930667pt;}
._c{margin-left:-14.059590pt;}
._d{margin-left:-13.014267pt;}
._2b{margin-left:-10.247859pt;}
._26{margin-left:-5.965845pt;}
._1a{margin-left:-4.756346pt;}
._7{margin-left:-3.786705pt;}
._4{margin-left:-2.720027pt;}
._8{margin-left:-1.515718pt;}
._5{width:0.970676pt;}
._11{width:2.195178pt;}
._3{width:3.786705pt;}
._0{width:7.973333pt;}
._1b{width:9.878299pt;}
._2c{width:10.871356pt;}
._14{width:12.021162pt;}
._a{width:13.014267pt;}
._1f{width:14.081970pt;}
._6{width:15.360154pt;}
._2{width:16.853502pt;}
._9{width:18.033290pt;}
._2a{width:19.017367pt;}
._15{width:20.219488pt;}
._13{width:21.899510pt;}
._b{width:23.202410pt;}
._1c{width:24.408284pt;}
._34{width:26.364511pt;}
._12{width:27.335188pt;}
._28{width:29.067476pt;}
._19{width:30.202319pt;}
._2d{width:31.202882pt;}
._29{width:32.352737pt;}
._22{width:33.338287pt;}
._59{width:34.674827pt;}
._e{width:35.585731pt;}
._25{width:36.638559pt;}
._f{width:37.945213pt;}
._5b{width:39.399475pt;}
._5c{width:40.458082pt;}
._1e{width:43.380891pt;}
._33{width:46.225642pt;}
._58{width:47.845892pt;}
._4e{width:51.498023pt;}
._10{width:54.670375pt;}
._37{width:57.001954pt;}
._4a{width:58.239272pt;}
._57{width:63.913868pt;}
._43{width:66.687166pt;}
._48{width:77.652363pt;}
._46{width:83.412291pt;}
._4f{width:84.350946pt;}
._54{width:91.305525pt;}
._3b{width:94.206822pt;}
._3f{width:96.425466pt;}
._45{width:103.465373pt;}
._3c{width:106.067959pt;}
._55{width:111.187991pt;}
._50{width:112.467927pt;}
._47{width:113.534581pt;}
._42{width:123.561122pt;}
._53{width:133.246334pt;}
._56{width:138.707647pt;}
._51{width:139.987583pt;}
._52{width:143.784869pt;}
._39{width:164.648609pt;}
._3a{width:176.808457pt;}
._49{width:191.400274pt;}
._4d{width:201.128117pt;}
._4c{width:205.394766pt;}
._3d{width:206.760082pt;}
._44{width:211.837352pt;}
._40{width:227.282501pt;}
._41{width:232.103785pt;}
._30{width:244.690275pt;}
._4b{width:247.762271pt;}
._3e{width:252.540863pt;}
._2e{width:265.127353pt;}
._38{width:273.105939pt;}
._31{width:290.343037pt;}
._32{width:293.030973pt;}
._2f{width:310.780115pt;}
._36{width:313.809387pt;}
._35{width:345.937029pt;}
._27{width:1613.290745pt;}
._1{width:1756.560000pt;}
.fs8{font-size:26.662400pt;}
.fs9{font-size:37.332800pt;}
.fse{font-size:37.333333pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fsf{font-size:58.666133pt;}
.fs2{font-size:58.667200pt;}
.fsc{font-size:63.999467pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:58.128076pt;}
.y44{bottom:68.786590pt;}
.y2fb{bottom:72.445467pt;}
.y2bf{bottom:79.313840pt;}
.y27b{bottom:79.368067pt;}
.y7b{bottom:79.370987pt;}
.y240{bottom:79.377627pt;}
.y9d{bottom:79.384253pt;}
.y14a{bottom:79.408760pt;}
.yb4{bottom:79.416373pt;}
.y105{bottom:79.443893pt;}
.y43{bottom:79.445105pt;}
.yc9{bottom:79.455587pt;}
.y163{bottom:79.461040pt;}
.y2fa{bottom:83.113467pt;}
.y1aa{bottom:83.422640pt;}
.y208{bottom:87.698000pt;}
.y1d8{bottom:89.978213pt;}
.y42{bottom:90.103619pt;}
.y2be{bottom:91.333680pt;}
.y27a{bottom:91.387907pt;}
.y7a{bottom:95.390560pt;}
.y23f{bottom:95.397200pt;}
.y9c{bottom:95.403827pt;}
.y149{bottom:95.428320pt;}
.yb3{bottom:95.435933pt;}
.y1a9{bottom:95.443827pt;}
.y104{bottom:95.463467pt;}
.yc8{bottom:95.475160pt;}
.y162{bottom:95.480613pt;}
.y41{bottom:100.762133pt;}
.y207{bottom:101.073840pt;}
.y1d7{bottom:101.999400pt;}
.y279{bottom:103.407747pt;}
.y277{bottom:103.411373pt;}
.y2bd{bottom:103.583520pt;}
.y2f9{bottom:105.616133pt;}
.y278{bottom:107.792147pt;}
.y79{bottom:111.344800pt;}
.y23e{bottom:111.351440pt;}
.y9b{bottom:111.358053pt;}
.y148{bottom:111.447893pt;}
.yb2{bottom:111.455507pt;}
.y103{bottom:111.483027pt;}
.yc7{bottom:111.494733pt;}
.y161{bottom:111.500187pt;}
.y132{bottom:112.810707pt;}
.y1a8{bottom:114.110253pt;}
.y206{bottom:114.375000pt;}
.y274{bottom:115.350307pt;}
.y276{bottom:115.351213pt;}
.y2bc{bottom:115.603360pt;}
.y275{bottom:119.810947pt;}
.y1d6{bottom:120.665827pt;}
.y2f8{bottom:121.613467pt;}
.y40{bottom:123.361921pt;}
.y78{bottom:127.370133pt;}
.y273{bottom:127.370147pt;}
.y23d{bottom:127.371000pt;}
.y9a{bottom:127.377627pt;}
.y147{bottom:127.402133pt;}
.yb1{bottom:127.409747pt;}
.y102{bottom:127.437267pt;}
.yc6{bottom:127.448960pt;}
.y160{bottom:127.454427pt;}
.y205{bottom:127.750840pt;}
.y2bb{bottom:127.853200pt;}
.y131{bottom:131.477147pt;}
.y272{bottom:131.829880pt;}
.y1a7{bottom:132.776693pt;}
.y3f{bottom:135.381760pt;}
.y2f7{bottom:137.610800pt;}
.y1d5{bottom:139.332267pt;}
.y271{bottom:139.388947pt;}
.y2ba{bottom:139.873040pt;}
.y204{bottom:141.052000pt;}
.y23c{bottom:143.390573pt;}
.y99{bottom:143.397200pt;}
.y146{bottom:143.421707pt;}
.yb0{bottom:143.429307pt;}
.y101{bottom:143.456840pt;}
.yc5{bottom:143.468533pt;}
.y15f{bottom:143.473987pt;}
.y270{bottom:143.848813pt;}
.y3e{bottom:147.401600pt;}
.y130{bottom:150.143573pt;}
.y26f{bottom:151.409427pt;}
.y1a6{bottom:151.443120pt;}
.y2b9{bottom:151.812880pt;}
.y3d{bottom:151.861467pt;}
.y37{bottom:152.520611pt;}
.y2f6{bottom:153.608133pt;}
.y1d4{bottom:157.998693pt;}
.y23b{bottom:159.344813pt;}
.y98{bottom:159.351427pt;}
.y77{bottom:159.391053pt;}
.y3c{bottom:159.420400pt;}
.y145{bottom:159.441267pt;}
.yaf{bottom:159.448880pt;}
.y100{bottom:159.476400pt;}
.yc4{bottom:159.488107pt;}
.y15e{bottom:159.493560pt;}
.y1a5{bottom:163.389640pt;}
.y3b{bottom:163.804667pt;}
.y2b8{bottom:164.132707pt;}
.y36{bottom:168.474848pt;}
.y12f{bottom:168.810013pt;}
.y2f5{bottom:169.605467pt;}
.y3a{bottom:171.363733pt;}
.y26e{bottom:175.369107pt;}
.y23a{bottom:175.370013pt;}
.y97{bottom:175.371000pt;}
.y144{bottom:175.395507pt;}
.yae{bottom:175.403120pt;}
.y76{bottom:175.410627pt;}
.yff{bottom:175.430640pt;}
.yc3{bottom:175.442333pt;}
.y15d{bottom:175.447800pt;}
.y39{bottom:175.823600pt;}
.y2b7{bottom:176.072547pt;}
.y1d3{bottom:176.665133pt;}
.y1a4{bottom:182.056067pt;}
.y38{bottom:183.382667pt;}
.y35{bottom:184.494418pt;}
.y2f4{bottom:185.602800pt;}
.y26d{bottom:187.388947pt;}
.y12e{bottom:187.476440pt;}
.y2b6{bottom:188.092387pt;}
.y96{bottom:191.390573pt;}
.y143{bottom:191.415080pt;}
.yad{bottom:191.422693pt;}
.y75{bottom:191.430200pt;}
.yfe{bottom:191.450213pt;}
.yc2{bottom:191.461907pt;}
.y15c{bottom:191.467360pt;}
.y1d2{bottom:195.331560pt;}
.y26c{bottom:199.407867pt;}
.y2b5{bottom:200.342227pt;}
.y34{bottom:200.513988pt;}
.y1a3{bottom:200.722507pt;}
.y2f3{bottom:201.600133pt;}
.y12d{bottom:206.142880pt;}
.y95{bottom:207.344813pt;}
.y74{bottom:207.384440pt;}
.y142{bottom:207.434640pt;}
.yac{bottom:207.442253pt;}
.yfd{bottom:207.469787pt;}
.yc1{bottom:207.481480pt;}
.y15b{bottom:207.486933pt;}
.y239{bottom:207.509360pt;}
.y2b4{bottom:212.362067pt;}
.y1d1{bottom:213.986560pt;}
.y25{bottom:216.442092pt;}
.y33{bottom:216.468225pt;}
.y1a2{bottom:219.388933pt;}
.y2fd{bottom:221.243627pt;}
.y94{bottom:223.370000pt;}
.y141{bottom:223.388880pt;}
.yab{bottom:223.396493pt;}
.y73{bottom:223.404000pt;}
.yfc{bottom:223.424013pt;}
.yc0{bottom:223.435720pt;}
.y15a{bottom:223.441173pt;}
.y238{bottom:223.463600pt;}
.y2b3{bottom:224.381907pt;}
.y12c{bottom:224.809307pt;}
.y1d0{bottom:225.933080pt;}
.y24{bottom:232.461662pt;}
.y32{bottom:232.487795pt;}
.y26b{bottom:235.352067pt;}
.y2b2{bottom:236.321747pt;}
.y1a1{bottom:238.055373pt;}
.y2fc{bottom:238.843467pt;}
.y140{bottom:239.408453pt;}
.yaa{bottom:239.416067pt;}
.y72{bottom:239.423573pt;}
.yfb{bottom:239.443587pt;}
.ybf{bottom:239.455280pt;}
.y159{bottom:239.460747pt;}
.y237{bottom:239.483173pt;}
.y12b{bottom:243.475747pt;}
.y1cf{bottom:244.599520pt;}
.y26a{bottom:247.371907pt;}
.y23{bottom:248.481232pt;}
.y31{bottom:248.507365pt;}
.y2b1{bottom:248.571587pt;}
.y13f{bottom:255.362693pt;}
.y71{bottom:255.377813pt;}
.ya9{bottom:255.435627pt;}
.yfa{bottom:255.463160pt;}
.ybe{bottom:255.474853pt;}
.y158{bottom:255.480307pt;}
.y236{bottom:255.502733pt;}
.y1a0{bottom:256.721800pt;}
.y2b0{bottom:260.591427pt;}
.y12a{bottom:262.142173pt;}
.y1ce{bottom:263.265947pt;}
.y22{bottom:264.435469pt;}
.y30{bottom:264.461602pt;}
.y13e{bottom:271.382253pt;}
.ya8{bottom:271.389867pt;}
.y70{bottom:271.397373pt;}
.yf9{bottom:271.417400pt;}
.ybd{bottom:271.429093pt;}
.y157{bottom:271.434547pt;}
.y235{bottom:271.456973pt;}
.y2af{bottom:272.611267pt;}
.y269{bottom:275.261533pt;}
.y1cd{bottom:275.287133pt;}
.y19f{bottom:275.388240pt;}
.y21{bottom:280.455039pt;}
.y2f{bottom:280.481172pt;}
.y129{bottom:280.808613pt;}
.y2ae{bottom:284.631107pt;}
.y268{bottom:287.281373pt;}
.y13d{bottom:287.401827pt;}
.y19e{bottom:287.409413pt;}
.ya7{bottom:287.409440pt;}
.y6f{bottom:287.416947pt;}
.yf8{bottom:287.436960pt;}
.ybc{bottom:287.448653pt;}
.y156{bottom:287.454120pt;}
.y234{bottom:287.476547pt;}
.y1cb{bottom:293.953560pt;}
.y20{bottom:296.474609pt;}
.y2e{bottom:296.500742pt;}
.y2ad{bottom:296.880947pt;}
.y128{bottom:299.475040pt;}
.y13c{bottom:303.356067pt;}
.ya6{bottom:303.363680pt;}
.y6e{bottom:303.371187pt;}
.yf7{bottom:303.391200pt;}
.ybb{bottom:303.402893pt;}
.y155{bottom:303.408347pt;}
.y233{bottom:303.430787pt;}
.y1ca{bottom:305.974747pt;}
.y19d{bottom:306.075853pt;}
.y2ac{bottom:308.900773pt;}
.y1cc{bottom:311.265347pt;}
.y1f{bottom:312.428846pt;}
.y2d{bottom:312.454979pt;}
.y267{bottom:315.171000pt;}
.y1c9{bottom:317.995920pt;}
.y127{bottom:318.141480pt;}
.y13b{bottom:319.375627pt;}
.ya5{bottom:319.383240pt;}
.y6d{bottom:319.390760pt;}
.yf6{bottom:319.410773pt;}
.yba{bottom:319.422467pt;}
.y154{bottom:319.427920pt;}
.y232{bottom:319.450347pt;}
.y2ab{bottom:320.840627pt;}
.y19c{bottom:324.742280pt;}
.y266{bottom:327.190840pt;}
.y2f2{bottom:327.395813pt;}
.y1e{bottom:328.448416pt;}
.y2c{bottom:328.474549pt;}
.y1c8{bottom:329.942440pt;}
.y2aa{bottom:332.860467pt;}
.y13a{bottom:335.395200pt;}
.ya4{bottom:335.402813pt;}
.y6c{bottom:335.410320pt;}
.yf5{bottom:335.430333pt;}
.y153{bottom:335.447493pt;}
.y231{bottom:335.469920pt;}
.y19b{bottom:336.763467pt;}
.y126{bottom:336.807907pt;}
.y265{bottom:339.210680pt;}
.y2f1{bottom:339.415653pt;}
.y1d{bottom:344.467986pt;}
.y2b{bottom:344.494119pt;}
.y2a9{bottom:345.110293pt;}
.y1c7{bottom:348.608880pt;}
.y139{bottom:351.344813pt;}
.y2f0{bottom:351.355493pt;}
.ya3{bottom:351.357053pt;}
.y6b{bottom:351.364560pt;}
.yf4{bottom:351.384573pt;}
.yb9{bottom:351.396267pt;}
.y152{bottom:351.401733pt;}
.y230{bottom:351.424160pt;}
.y19a{bottom:355.355240pt;}
.y125{bottom:355.399680pt;}
.y2a8{bottom:357.130133pt;}
.y1c{bottom:360.422223pt;}
.y2a{bottom:360.448356pt;}
.y1c6{bottom:360.630067pt;}
.y2ef{bottom:363.375333pt;}
.y264{bottom:367.100307pt;}
.ya2{bottom:367.376613pt;}
.y6a{bottom:367.384133pt;}
.yf3{bottom:367.404147pt;}
.yb8{bottom:367.415840pt;}
.y151{bottom:367.421293pt;}
.y22f{bottom:367.443720pt;}
.y2a7{bottom:369.149973pt;}
.y199{bottom:374.021667pt;}
.y124{bottom:374.066107pt;}
.y2ee{bottom:375.395173pt;}
.y1b{bottom:376.441793pt;}
.y29{bottom:376.467926pt;}
.y263{bottom:379.120147pt;}
.y1c5{bottom:379.296493pt;}
.y2a6{bottom:381.399813pt;}
.ya1{bottom:383.396187pt;}
.y69{bottom:383.403693pt;}
.yf2{bottom:383.423720pt;}
.yb7{bottom:383.435413pt;}
.y150{bottom:383.440867pt;}
.y22e{bottom:383.463293pt;}
.y2ed{bottom:387.415013pt;}
.y262{bottom:391.139987pt;}
.y1c4{bottom:391.317680pt;}
.y1a{bottom:392.461363pt;}
.y28{bottom:392.487496pt;}
.y198{bottom:392.688107pt;}
.y123{bottom:392.732547pt;}
.y2a5{bottom:393.419653pt;}
.ya0{bottom:399.350427pt;}
.y2ec{bottom:399.354853pt;}
.y138{bottom:399.357053pt;}
.y68{bottom:399.357933pt;}
.yf1{bottom:399.377947pt;}
.yb6{bottom:399.389653pt;}
.y14f{bottom:399.395107pt;}
.y22d{bottom:399.417533pt;}
.y261{bottom:403.079827pt;}
.y1c3{bottom:403.264187pt;}
.y197{bottom:404.709280pt;}
.y2a4{bottom:405.359493pt;}
.y19{bottom:408.415600pt;}
.y27{bottom:408.441733pt;}
.y2eb{bottom:411.374693pt;}
.y122{bottom:411.398973pt;}
.y260{bottom:415.099667pt;}
.y1c2{bottom:415.285373pt;}
.y9f{bottom:415.370000pt;}
.y137{bottom:415.376613pt;}
.y67{bottom:415.377507pt;}
.yf0{bottom:415.397520pt;}
.yb5{bottom:415.409213pt;}
.y14e{bottom:415.414667pt;}
.y22c{bottom:415.437107pt;}
.y2a3{bottom:417.609333pt;}
.y196{bottom:423.375720pt;}
.y2ea{bottom:423.394533pt;}
.y18{bottom:424.440800pt;}
.y26{bottom:424.461303pt;}
.y25f{bottom:427.119507pt;}
.y1c1{bottom:427.306560pt;}
.y2a2{bottom:429.629173pt;}
.y121{bottom:430.065413pt;}
.y136{bottom:431.396187pt;}
.y66{bottom:431.397080pt;}
.yef{bottom:431.417093pt;}
.y14d{bottom:431.434240pt;}
.y22b{bottom:431.456667pt;}
.y2e9{bottom:435.414373pt;}
.y2a1{bottom:441.879000pt;}
.y195{bottom:442.042147pt;}
.y1be{bottom:445.972987pt;}
.y135{bottom:447.350427pt;}
.y65{bottom:447.351307pt;}
.y2e8{bottom:447.354213pt;}
.y1e4{bottom:447.370307pt;}
.yee{bottom:447.371320pt;}
.y14c{bottom:447.388480pt;}
.y22a{bottom:447.410907pt;}
.y203{bottom:447.435667pt;}
.y120{bottom:448.731840pt;}
.ydb{bottom:450.484584pt;}
.y2a0{bottom:453.898840pt;}
.y194{bottom:454.063333pt;}
.y25e{bottom:455.009133pt;}
.y1bd{bottom:457.994173pt;}
.y2e7{bottom:459.374053pt;}
.y134{bottom:463.370000pt;}
.y64{bottom:463.370880pt;}
.y1e3{bottom:463.389867pt;}
.y14b{bottom:463.408053pt;}
.y229{bottom:463.430480pt;}
.y202{bottom:463.455227pt;}
.yda{bottom:463.785757pt;}
.y17{bottom:465.036107pt;}
.y29f{bottom:466.148680pt;}
.y25d{bottom:467.028973pt;}
.y11f{bottom:467.398267pt;}
.y1c0{bottom:468.650040pt;}
.y1bc{bottom:469.940693pt;}
.y2e6{bottom:471.393893pt;}
.y193{bottom:472.729773pt;}
.yd9{bottom:477.161584pt;}
.y29e{bottom:478.168520pt;}
.y25c{bottom:479.048813pt;}
.y63{bottom:479.390453pt;}
.y1e2{bottom:479.409440pt;}
.yed{bottom:479.423533pt;}
.y228{bottom:479.450040pt;}
.y201{bottom:479.474800pt;}
.y1bb{bottom:481.961880pt;}
.y2e5{bottom:483.413733pt;}
.y11e{bottom:486.064707pt;}
.y1bf{bottom:487.316467pt;}
.y16{bottom:487.716334pt;}
.y29d{bottom:490.188360pt;}
.yd8{bottom:490.462757pt;}
.y25b{bottom:491.068653pt;}
.y192{bottom:491.396200pt;}
.y1ba{bottom:493.983053pt;}
.y62{bottom:495.344680pt;}
.y2e4{bottom:495.353573pt;}
.y1e1{bottom:495.363680pt;}
.yec{bottom:495.377773pt;}
.y227{bottom:495.404280pt;}
.y200{bottom:495.429040pt;}
.y29c{bottom:502.438200pt;}
.y17b{bottom:503.130653pt;}
.y15{bottom:503.743161pt;}
.yd7{bottom:503.763917pt;}
.y11d{bottom:504.731133pt;}
.y1b9{bottom:506.030693pt;}
.y2e3{bottom:507.373413pt;}
.y191{bottom:510.062640pt;}
.y61{bottom:511.369867pt;}
.y1e0{bottom:511.383240pt;}
.yeb{bottom:511.397333pt;}
.y226{bottom:511.423853pt;}
.y1ff{bottom:511.448600pt;}
.y29b{bottom:514.378040pt;}
.yd6{bottom:517.139757pt;}
.y25a{bottom:518.958280pt;}
.y2e2{bottom:519.393253pt;}
.y17a{bottom:520.739840pt;}
.y190{bottom:522.009147pt;}
.y11c{bottom:523.397573pt;}
.y14{bottom:523.703360pt;}
.y1b8{bottom:524.697120pt;}
.y29a{bottom:526.697880pt;}
.y60{bottom:527.395187pt;}
.y1df{bottom:527.402813pt;}
.yea{bottom:527.416907pt;}
.y225{bottom:527.443427pt;}
.y1fe{bottom:527.468173pt;}
.yd5{bottom:530.440917pt;}
.y259{bottom:530.978120pt;}
.y2e1{bottom:531.413093pt;}
.y1b7{bottom:536.643640pt;}
.y299{bottom:538.637720pt;}
.y179{bottom:539.406267pt;}
.y13{bottom:539.730187pt;}
.y18f{bottom:540.675587pt;}
.y11b{bottom:542.064000pt;}
.y258{bottom:542.997960pt;}
.y2e0{bottom:543.352933pt;}
.y1de{bottom:543.357053pt;}
.y93{bottom:543.370173pt;}
.ye9{bottom:543.371147pt;}
.y224{bottom:543.397653pt;}
.y1fd{bottom:543.422413pt;}
.yd4{bottom:543.742091pt;}
.y1b6{bottom:548.664827pt;}
.y298{bottom:550.657560pt;}
.y257{bottom:554.937800pt;}
.y2df{bottom:555.372773pt;}
.y12{bottom:555.757014pt;}
.yd3{bottom:557.117917pt;}
.y178{bottom:558.072707pt;}
.y18e{bottom:559.342013pt;}
.y1dd{bottom:559.376613pt;}
.y92{bottom:559.389747pt;}
.ye8{bottom:559.390720pt;}
.y5f{bottom:559.417213pt;}
.y223{bottom:559.417227pt;}
.y1fc{bottom:559.441987pt;}
.y1b5{bottom:560.686000pt;}
.y11a{bottom:560.730440pt;}
.y297{bottom:562.677400pt;}
.y256{bottom:566.957640pt;}
.y2de{bottom:567.392613pt;}
.yd2{bottom:570.419091pt;}
.y18d{bottom:571.363200pt;}
.y11{bottom:571.703840pt;}
.y1b4{bottom:572.707187pt;}
.y296{bottom:574.927227pt;}
.y1dc{bottom:575.396187pt;}
.y91{bottom:575.409320pt;}
.ye7{bottom:575.410280pt;}
.y5e{bottom:575.436787pt;}
.y222{bottom:575.436800pt;}
.y1fb{bottom:575.461547pt;}
.y177{bottom:576.739133pt;}
.y119{bottom:579.396867pt;}
.y2dd{bottom:579.412453pt;}
.yd1{bottom:583.794917pt;}
.y1b3{bottom:584.653707pt;}
.y295{bottom:586.947067pt;}
.y18c{bottom:590.029640pt;}
.y1db{bottom:591.350427pt;}
.y2dc{bottom:591.352293pt;}
.y90{bottom:591.363547pt;}
.ye6{bottom:591.364520pt;}
.y5d{bottom:591.391013pt;}
.y221{bottom:591.391027pt;}
.y1fa{bottom:591.415787pt;}
.y10{bottom:591.730707pt;}
.y255{bottom:594.847267pt;}
.y176{bottom:595.330907pt;}
.yd0{bottom:597.096077pt;}
.y118{bottom:598.063307pt;}
.y294{bottom:598.886907pt;}
.y1b2{bottom:603.320133pt;}
.y2db{bottom:603.372133pt;}
.y254{bottom:606.867107pt;}
.y1da{bottom:607.370000pt;}
.y8f{bottom:607.383120pt;}
.ye5{bottom:607.384093pt;}
.y5c{bottom:607.410587pt;}
.y220{bottom:607.410600pt;}
.y1f9{bottom:607.435360pt;}
.yf{bottom:607.757534pt;}
.y18b{bottom:608.696067pt;}
.ycf{bottom:610.397251pt;}
.y293{bottom:610.906747pt;}
.y175{bottom:613.997333pt;}
.y1b1{bottom:615.341320pt;}
.y2da{bottom:615.391973pt;}
.y117{bottom:616.729733pt;}
.y253{bottom:618.886947pt;}
.y292{bottom:623.156587pt;}
.y8e{bottom:623.402693pt;}
.ye4{bottom:623.403653pt;}
.y5b{bottom:623.430160pt;}
.y21f{bottom:623.430173pt;}
.y1f8{bottom:623.454920pt;}
.ye{bottom:623.704360pt;}
.yce{bottom:623.773077pt;}
.y18a{bottom:627.362507pt;}
.y2d9{bottom:627.411813pt;}
.y174{bottom:632.663773pt;}
.y1b0{bottom:634.007760pt;}
.y291{bottom:635.176427pt;}
.y116{bottom:635.396173pt;}
.y2d8{bottom:639.351653pt;}
.y8d{bottom:639.356933pt;}
.ye3{bottom:639.357893pt;}
.y189{bottom:639.383680pt;}
.y5a{bottom:639.384400pt;}
.y21e{bottom:639.384413pt;}
.y1f7{bottom:639.409160pt;}
.yd{bottom:643.731227pt;}
.y1af{bottom:646.028933pt;}
.y252{bottom:646.776573pt;}
.y290{bottom:647.196267pt;}
.y173{bottom:651.330200pt;}
.y2d7{bottom:651.371493pt;}
.y115{bottom:654.062600pt;}
.y8c{bottom:655.376493pt;}
.ye2{bottom:655.377467pt;}
.y59{bottom:655.403960pt;}
.y21d{bottom:655.403973pt;}
.y1f6{bottom:655.428733pt;}
.y188{bottom:657.975453pt;}
.y251{bottom:658.796413pt;}
.y28f{bottom:659.446107pt;}
.yc{bottom:659.678053pt;}
.y2d6{bottom:663.391333pt;}
.y172{bottom:669.996640pt;}
.y250{bottom:670.816253pt;}
.y8b{bottom:671.396067pt;}
.ye1{bottom:671.397027pt;}
.y58{bottom:671.423533pt;}
.y21c{bottom:671.423547pt;}
.y1f5{bottom:671.448293pt;}
.y28e{bottom:671.465947pt;}
.y114{bottom:672.729040pt;}
.y2d5{bottom:675.411173pt;}
.yb{bottom:675.704880pt;}
.y187{bottom:676.641880pt;}
.y20b{bottom:677.744667pt;}
.y1ae{bottom:682.017813pt;}
.y24f{bottom:682.836093pt;}
.y28d{bottom:683.405787pt;}
.y8a{bottom:687.350307pt;}
.y2d4{bottom:687.351013pt;}
.ye0{bottom:687.351267pt;}
.y57{bottom:687.377773pt;}
.y21b{bottom:687.377787pt;}
.y1f4{bottom:687.402533pt;}
.y171{bottom:688.663067pt;}
.y113{bottom:691.320800pt;}
.ya{bottom:691.731707pt;}
.y24e{bottom:694.775933pt;}
.y186{bottom:695.308320pt;}
.y28c{bottom:695.425627pt;}
.y2d3{bottom:699.370853pt;}
.y1ad{bottom:700.684253pt;}
.y89{bottom:703.369867pt;}
.ydf{bottom:703.370840pt;}
.y56{bottom:703.397333pt;}
.y21a{bottom:703.397347pt;}
.y1f3{bottom:703.422107pt;}
.y170{bottom:707.329493pt;}
.y28b{bottom:707.675467pt;}
.y9{bottom:707.678533pt;}
.y112{bottom:709.987240pt;}
.y2d2{bottom:711.390693pt;}
.y185{bottom:713.974747pt;}
.y1ac{bottom:719.350680pt;}
.yde{bottom:719.390413pt;}
.y88{bottom:719.395107pt;}
.y55{bottom:719.416907pt;}
.y219{bottom:719.416920pt;}
.y1f2{bottom:719.441680pt;}
.y28a{bottom:719.695307pt;}
.y2d1{bottom:723.410533pt;}
.y16f{bottom:725.995933pt;}
.y111{bottom:728.653667pt;}
.ycc{bottom:728.953984pt;}
.y24d{bottom:729.695467pt;}
.y289{bottom:731.715147pt;}
.y8{bottom:731.716267pt;}
.y20a{bottom:732.641187pt;}
.ydd{bottom:735.344640pt;}
.y2d0{bottom:735.350373pt;}
.y54{bottom:735.371147pt;}
.y218{bottom:735.371160pt;}
.y1f1{bottom:735.395907pt;}
.y1ab{bottom:738.017120pt;}
.y24c{bottom:741.715307pt;}
.y288{bottom:743.654987pt;}
.y16e{bottom:744.662360pt;}
.y184{bottom:744.662373pt;}
.y110{bottom:747.320107pt;}
.y2cf{bottom:747.370213pt;}
.y87{bottom:751.382867pt;}
.y53{bottom:751.390720pt;}
.y217{bottom:751.390733pt;}
.y1f0{bottom:751.415480pt;}
.y287{bottom:755.974813pt;}
.y183{bottom:756.683547pt;}
.y24b{bottom:757.735093pt;}
.y2ce{bottom:759.390053pt;}
.y16d{bottom:763.328800pt;}
.y10f{bottom:765.986533pt;}
.y86{bottom:767.402427pt;}
.y52{bottom:767.410280pt;}
.y216{bottom:767.410293pt;}
.y1ef{bottom:767.435053pt;}
.y286{bottom:767.914653pt;}
.y24a{bottom:769.754933pt;}
.y2cd{bottom:771.409893pt;}
.ycd{bottom:774.281611pt;}
.y182{bottom:775.349987pt;}
.y285{bottom:779.934493pt;}
.y249{bottom:781.694773pt;}
.y16c{bottom:781.995227pt;}
.y209{bottom:781.995240pt;}
.y6{bottom:783.042267pt;}
.y2cc{bottom:783.349733pt;}
.y85{bottom:783.356667pt;}
.y51{bottom:783.364520pt;}
.y215{bottom:783.364533pt;}
.y1ee{bottom:783.389293pt;}
.y10e{bottom:784.652973pt;}
.y7{bottom:789.543067pt;}
.y284{bottom:792.184333pt;}
.y181{bottom:794.016413pt;}
.y2cb{bottom:795.369573pt;}
.y248{bottom:797.714560pt;}
.y84{bottom:799.376240pt;}
.y50{bottom:799.384093pt;}
.y214{bottom:799.384107pt;}
.y1ed{bottom:799.408853pt;}
.y16b{bottom:800.661667pt;}
.y4{bottom:801.713200pt;}
.y10d{bottom:803.319400pt;}
.y283{bottom:804.204173pt;}
.y133{bottom:804.434413pt;}
.y180{bottom:805.962933pt;}
.y2ca{bottom:807.389413pt;}
.y5{bottom:808.214000pt;}
.y247{bottom:809.734400pt;}
.y16a{bottom:812.682853pt;}
.y83{bottom:815.395800pt;}
.y4f{bottom:815.403653pt;}
.y213{bottom:815.403667pt;}
.y1ec{bottom:815.428427pt;}
.y282{bottom:816.454013pt;}
.y2c9{bottom:819.409253pt;}
.y10c{bottom:821.985840pt;}
.y17f{bottom:824.629360pt;}
.y246{bottom:825.684187pt;}
.y281{bottom:828.473853pt;}
.y2c8{bottom:831.349093pt;}
.y169{bottom:831.349280pt;}
.y82{bottom:831.350040pt;}
.y4e{bottom:831.357893pt;}
.y212{bottom:831.357907pt;}
.y1eb{bottom:831.382667pt;}
.y3{bottom:833.695855pt;}
.y245{bottom:837.704027pt;}
.y280{bottom:840.493693pt;}
.y10b{bottom:840.652267pt;}
.ycb{bottom:840.953051pt;}
.y17e{bottom:843.295800pt;}
.y2c7{bottom:843.368933pt;}
.y81{bottom:847.369613pt;}
.y4d{bottom:847.377467pt;}
.y211{bottom:847.377480pt;}
.y1ea{bottom:847.402227pt;}
.y168{bottom:849.941053pt;}
.y27f{bottom:852.433533pt;}
.y244{bottom:853.723813pt;}
.y2c6{bottom:855.388773pt;}
.y10a{bottom:859.318707pt;}
.y17d{bottom:861.962227pt;}
.y80{bottom:863.389187pt;}
.y4c{bottom:863.397027pt;}
.y210{bottom:863.397040pt;}
.y1e9{bottom:863.421800pt;}
.y27e{bottom:864.453373pt;}
.y243{bottom:865.743653pt;}
.y2c5{bottom:867.408613pt;}
.y2{bottom:868.384000pt;}
.y167{bottom:868.607480pt;}
.y27d{bottom:876.699053pt;}
.y109{bottom:877.985133pt;}
.y7f{bottom:879.343413pt;}
.y2c4{bottom:879.348453pt;}
.y4b{bottom:879.351267pt;}
.y20f{bottom:879.351280pt;}
.y1e8{bottom:879.376040pt;}
.y17c{bottom:880.628667pt;}
.y242{bottom:881.693440pt;}
.y166{bottom:886.143267pt;}
.y2c3{bottom:891.368293pt;}
.y7e{bottom:895.362987pt;}
.y4a{bottom:895.370840pt;}
.y20e{bottom:895.370853pt;}
.y1e7{bottom:895.395600pt;}
.y108{bottom:895.520920pt;}
.y241{bottom:897.713227pt;}
.y165{bottom:898.164440pt;}
.y2c2{bottom:903.388133pt;}
.y164{bottom:910.185627pt;}
.y7d{bottom:911.382560pt;}
.y49{bottom:911.390413pt;}
.y20d{bottom:911.390427pt;}
.y1e6{bottom:911.415173pt;}
.y107{bottom:913.058653pt;}
.yca{bottom:914.280451pt;}
.y2c1{bottom:915.407973pt;}
.y1{bottom:919.029600pt;}
.y7c{bottom:927.336787pt;}
.y48{bottom:927.344640pt;}
.y20c{bottom:927.344653pt;}
.y2c0{bottom:927.347813pt;}
.y1e5{bottom:927.369413pt;}
.y106{bottom:927.722653pt;}
.y47{bottom:989.180433pt;}
.y46{bottom:1002.481600pt;}
.y9e{bottom:1002.481613pt;}
.y27c{bottom:1002.481627pt;}
.y1d9{bottom:1002.510827pt;}
.ydc{bottom:1002.520357pt;}
.ha{height:19.090278pt;}
.hb{height:19.223590pt;}
.hc{height:26.916949pt;}
.h5{height:28.196676pt;}
.h17{height:28.560000pt;}
.h9{height:28.839615pt;}
.h16{height:29.060629pt;}
.h13{height:30.292955pt;}
.h14{height:30.656469pt;}
.he{height:30.762282pt;}
.h15{height:30.807989pt;}
.h12{height:34.608000pt;}
.hf{height:35.377451pt;}
.hd{height:37.588863pt;}
.h8{height:37.840681pt;}
.h10{height:37.892947pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h18{height:44.116932pt;}
.h11{height:45.951617pt;}
.h2{height:49.989333pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x13{left:79.143333pt;}
.x1{left:80.957467pt;}
.xf{left:84.283467pt;}
.x10{left:86.252825pt;}
.x16{left:90.582067pt;}
.x2b{left:95.625760pt;}
.x1b{left:116.560693pt;}
.x3{left:161.914933pt;}
.x1c{left:165.392080pt;}
.xe{left:185.574800pt;}
.x4{left:194.494400pt;}
.x1d{left:219.140747pt;}
.x14{left:240.604667pt;}
.x1e{left:274.393387pt;}
.x5{left:302.210933pt;}
.x6{left:324.056667pt;}
.x17{left:326.580093pt;}
.x11{left:406.278359pt;}
.x24{left:409.851853pt;}
.x18{left:411.251387pt;}
.x23{left:413.329067pt;}
.x12{left:416.940650pt;}
.x7{left:422.399867pt;}
.x2d{left:424.530520pt;}
.x2c{left:426.331573pt;}
.x8{left:427.388933pt;}
.x15{left:432.459680pt;}
.x27{left:440.239333pt;}
.x28{left:443.867600pt;}
.x19{left:445.153907pt;}
.x1f{left:447.269227pt;}
.x25{left:480.075480pt;}
.x26{left:483.628253pt;}
.x9{left:493.379333pt;}
.x20{left:496.100613pt;}
.xa{left:498.368400pt;}
.x1a{left:548.491280pt;}
.x21{left:549.849280pt;}
.xb{left:579.854933pt;}
.xc{left:584.844000pt;}
.x29{left:597.921187pt;}
.x2a{left:601.549480pt;}
.x22{left:605.101920pt;}
.xd{left:653.631333pt;}
}




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