
    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_eb00083288bc37e581993b2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_80fd43aab62a556b28464488.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7fd2086709825893d23e988a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_65bde7f58000f4f67acb4fe4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_2b1381805b42757dce3fa0a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_98840a283a5aa7f35a2cee31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897450;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_05116d5306fa55938f2219e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_9a6881e740d9d580a278a257.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef85c367727839c0987a02b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.822000;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_5367098ac9af8a66de3a8246.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a661d88e14fba5c0ff3462ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.244000;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_13d8e683e2845b7ede062a7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_622a2d07ae8e35de5d23f742.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f60abdd011daa0da18676d8e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_3d17cbf6479ac4b878ff0636.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;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_5879f3f4f4b7320840360447.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_881c5a74e6a1ad42476dab8d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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_f5d0fc9c9cc88a87fc6c2437.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.482000;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_b5de800617a3ff92dbd7abd5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.951172;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_5f241a2e994d43dfc92c44f7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.750000;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_e91a05ab907c17241b2bcc0c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.706055;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_f2c50fb80990f49f2179e414.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.688965;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b6b98b7d73d29f4be642d569.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.200000;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;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.m5{transform:matrix(-0.003768,-0.243228,0.249970,-0.003872,0,0);-ms-transform:matrix(-0.003768,-0.243228,0.249970,-0.003872,0,0);-webkit-transform:matrix(-0.003768,-0.243228,0.249970,-0.003872,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.223949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223949,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.234249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234249,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);}
.m2{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);}
.vc{vertical-align:-26.758085px;}
.vd{vertical-align:-24.264884px;}
.v3{vertical-align:-22.854000px;}
.vb{vertical-align:-18.943575px;}
.v7{vertical-align:-16.878000px;}
.v9{vertical-align:-15.569020px;}
.v1{vertical-align:-10.764000px;}
.v6{vertical-align:-8.964000px;}
.v4{vertical-align:-5.976000px;}
.va{vertical-align:-4.942576px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:6.978000px;}
.v5{vertical-align:9.510000px;}
.v8{vertical-align:10.566000px;}
.v11{vertical-align:15.942000px;}
.v16{vertical-align:17.279391px;}
.v2{vertical-align:21.696000px;}
.v15{vertical-align:22.854000px;}
.v10{vertical-align:25.572000px;}
.vf{vertical-align:31.476000px;}
.ve{vertical-align:40.440000px;}
.v13{vertical-align:41.514000px;}
.v14{vertical-align:51.108000px;}
.ls20{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000031px;}
.ls73{letter-spacing:0.000300px;}
.ls1{letter-spacing:0.000309px;}
.ls15{letter-spacing:0.000538px;}
.ls12{letter-spacing:0.000557px;}
.ls88{letter-spacing:0.000564px;}
.ls8f{letter-spacing:0.000767px;}
.lsb{letter-spacing:0.000780px;}
.lsd{letter-spacing:0.001002px;}
.ls67{letter-spacing:0.001494px;}
.ls41{letter-spacing:0.001559px;}
.ls50{letter-spacing:0.001670px;}
.ls69{letter-spacing:0.002207px;}
.ls5{letter-spacing:0.002338px;}
.ls92{letter-spacing:0.002400px;}
.ls83{letter-spacing:0.002446px;}
.ls25{letter-spacing:0.002800px;}
.ls2c{letter-spacing:0.003220px;}
.ls18{letter-spacing:0.003269px;}
.ls2{letter-spacing:0.003600px;}
.ls5f{letter-spacing:0.003652px;}
.ls44{letter-spacing:0.003894px;}
.ls37{letter-spacing:0.004200px;}
.ls7a{letter-spacing:0.004270px;}
.ls66{letter-spacing:0.004379px;}
.ls27{letter-spacing:0.004430px;}
.ls61{letter-spacing:0.004896px;}
.ls79{letter-spacing:0.004984px;}
.lsa5{letter-spacing:1.241524px;}
.ls21{letter-spacing:1.434538px;}
.ls22{letter-spacing:1.438200px;}
.ls23{letter-spacing:1.440538px;}
.ls3{letter-spacing:2.984017px;}
.ls14{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.984915px;}
.ls60{letter-spacing:2.985672px;}
.ls7{letter-spacing:2.986307px;}
.ls4a{letter-spacing:2.986340px;}
.ls8{letter-spacing:2.988411px;}
.lsa{letter-spacing:2.988532px;}
.ls26{letter-spacing:2.988775px;}
.ls3c{letter-spacing:2.989409px;}
.ls4{letter-spacing:2.990017px;}
.ls16{letter-spacing:2.990525px;}
.ls5e{letter-spacing:2.991672px;}
.ls24{letter-spacing:2.992087px;}
.ls9{letter-spacing:2.993543px;}
.ls40{letter-spacing:2.994532px;}
.ls77{letter-spacing:3.064270px;}
.ls6b{letter-spacing:3.200086px;}
.ls68{letter-spacing:3.206086px;}
.ls87{letter-spacing:3.443602px;}
.ls78{letter-spacing:3.467591px;}
.ls80{letter-spacing:3.800854px;}
.ls84{letter-spacing:3.806854px;}
.ls53{letter-spacing:4.704935px;}
.ls39{letter-spacing:6.171357px;}
.ls36{letter-spacing:8.298065px;}
.ls99{letter-spacing:9.956338px;}
.ls9a{letter-spacing:9.962338px;}
.ls6f{letter-spacing:13.278538px;}
.ls6c{letter-spacing:13.280847px;}
.ls76{letter-spacing:13.284538px;}
.ls6a{letter-spacing:13.286847px;}
.ls45{letter-spacing:13.987120px;}
.ls3f{letter-spacing:14.002618px;}
.lsc{letter-spacing:15.355559px;}
.lse{letter-spacing:15.847002px;}
.ls9c{letter-spacing:16.620538px;}
.ls9e{letter-spacing:16.626538px;}
.ls9d{letter-spacing:16.630200px;}
.ls33{letter-spacing:16.830538px;}
.ls34{letter-spacing:16.834200px;}
.ls48{letter-spacing:16.865023px;}
.ls63{letter-spacing:17.164896px;}
.ls62{letter-spacing:17.169199px;}
.ls1b{letter-spacing:17.318525px;}
.ls91{letter-spacing:17.442538px;}
.ls64{letter-spacing:17.818896px;}
.ls8a{letter-spacing:18.288538px;}
.ls9b{letter-spacing:18.406618px;}
.ls4c{letter-spacing:18.424771px;}
.ls52{letter-spacing:18.425549px;}
.ls59{letter-spacing:18.427185px;}
.ls5b{letter-spacing:18.428525px;}
.ls58{letter-spacing:18.430771px;}
.ls4e{letter-spacing:18.431092px;}
.ls4d{letter-spacing:18.433185px;}
.ls5a{letter-spacing:18.437092px;}
.ls5d{letter-spacing:18.572800px;}
.ls10{letter-spacing:18.831961px;}
.ls1d{letter-spacing:18.848525px;}
.ls1c{letter-spacing:19.124525px;}
.lsa6{letter-spacing:19.254532px;}
.ls97{letter-spacing:19.590648px;}
.lsa1{letter-spacing:19.592525px;}
.ls17{letter-spacing:19.925468px;}
.ls1a{letter-spacing:19.964525px;}
.ls6d{letter-spacing:20.049652px;}
.ls49{letter-spacing:20.080200px;}
.ls70{letter-spacing:20.408854px;}
.ls90{letter-spacing:20.684196px;}
.ls4f{letter-spacing:21.237967px;}
.ls54{letter-spacing:21.414532px;}
.ls8e{letter-spacing:21.494338px;}
.ls51{letter-spacing:21.496270px;}
.ls8c{letter-spacing:21.506015px;}
.ls3b{letter-spacing:22.429409px;}
.ls46{letter-spacing:22.558618px;}
.ls47{letter-spacing:22.561120px;}
.ls98{letter-spacing:22.774172px;}
.ls89{letter-spacing:22.778282px;}
.ls96{letter-spacing:22.910525px;}
.ls8b{letter-spacing:22.990200px;}
.ls94{letter-spacing:23.136538px;}
.ls38{letter-spacing:23.480525px;}
.ls74{letter-spacing:23.772538px;}
.ls71{letter-spacing:23.778538px;}
.ls42{letter-spacing:23.940557px;}
.ls55{letter-spacing:24.335023px;}
.lsa4{letter-spacing:24.336532px;}
.ls11{letter-spacing:24.860475px;}
.ls32{letter-spacing:24.905139px;}
.ls2e{letter-spacing:25.128538px;}
.ls4b{letter-spacing:25.392921px;}
.ls6{letter-spacing:25.603409px;}
.ls43{letter-spacing:25.824532px;}
.ls8d{letter-spacing:25.856525px;}
.ls1f{letter-spacing:26.012525px;}
.ls93{letter-spacing:26.124648px;}
.ls5c{letter-spacing:26.546525px;}
.ls75{letter-spacing:26.564847px;}
.lsa0{letter-spacing:26.708525px;}
.ls19{letter-spacing:26.744525px;}
.ls13{letter-spacing:27.212525px;}
.ls56{letter-spacing:27.550340px;}
.ls2d{letter-spacing:28.114087px;}
.ls2f{letter-spacing:28.116775px;}
.ls30{letter-spacing:28.120087px;}
.ls35{letter-spacing:28.280525px;}
.ls65{letter-spacing:28.295139px;}
.lsa3{letter-spacing:28.296532px;}
.ls86{letter-spacing:28.620538px;}
.ls2a{letter-spacing:29.212087px;}
.ls1e{letter-spacing:31.391139px;}
.ls85{letter-spacing:31.604234px;}
.ls3d{letter-spacing:31.713652px;}
.ls82{letter-spacing:31.814525px;}
.ls31{letter-spacing:32.156525px;}
.lsa2{letter-spacing:32.624525px;}
.ls57{letter-spacing:32.633139px;}
.ls3a{letter-spacing:33.476525px;}
.ls95{letter-spacing:33.548196px;}
.ls3e{letter-spacing:33.731967px;}
.ls29{letter-spacing:35.242430px;}
.ls28{letter-spacing:36.003220px;}
.ls2b{letter-spacing:37.098775px;}
.ls9f{letter-spacing:37.127139px;}
.ls7e{letter-spacing:43.580525px;}
.ls81{letter-spacing:45.722525px;}
.ls7f{letter-spacing:48.434338px;}
.ls7b{letter-spacing:50.342338px;}
.ls7c{letter-spacing:57.156300px;}
.ls6e{letter-spacing:60.306538px;}
.ls7d{letter-spacing:60.456300px;}
.ls72{letter-spacing:114.183269px;}
.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;}
}
.wsb3{word-spacing:-77.845103px;}
.wsb4{word-spacing:-76.851587px;}
.ws74{word-spacing:-38.937826px;}
.ws13{word-spacing:-36.071827px;}
.ws43{word-spacing:-20.126941px;}
.ws39{word-spacing:-16.605662px;}
.wsa{word-spacing:-15.359443px;}
.ws13a{word-spacing:-15.087611px;}
.ws95{word-spacing:-11.888941px;}
.wsd{word-spacing:-9.845833px;}
.ws138{word-spacing:-3.335478px;}
.ws8b{word-spacing:-3.096376px;}
.ws19c{word-spacing:-3.039610px;}
.ws193{word-spacing:-2.878214px;}
.ws1a3{word-spacing:-2.824416px;}
.ws181{word-spacing:-2.770618px;}
.ws15a{word-spacing:-2.663021px;}
.ws6e{word-spacing:-2.618171px;}
.ws12b{word-spacing:-2.438844px;}
.ws81{word-spacing:-2.379069px;}
.ws189{word-spacing:-2.340230px;}
.ws85{word-spacing:-2.319293px;}
.ws47{word-spacing:-2.259518px;}
.ws92{word-spacing:-2.199742px;}
.ws14e{word-spacing:-2.020415px;}
.ws14d{word-spacing:-1.960640px;}
.wse1{word-spacing:-1.909843px;}
.ws198{word-spacing:-1.856045px;}
.ws77{word-spacing:-1.781313px;}
.wsb1{word-spacing:-1.721537px;}
.wse9{word-spacing:-1.601986px;}
.ws6a{word-spacing:-1.542210px;}
.ws5c{word-spacing:-1.422659px;}
.ws19b{word-spacing:-1.371859px;}
.ws182{word-spacing:-1.264262px;}
.ws86{word-spacing:-1.243332px;}
.wsda{word-spacing:-1.183557px;}
.ws38{word-spacing:-1.123781px;}
.ws170{word-spacing:-1.049069px;}
.ws35{word-spacing:-1.004230px;}
.ws1d{word-spacing:-0.944454px;}
.ws10c{word-spacing:-0.824903px;}
.ws4a{word-spacing:-0.765128px;}
.ws7e{word-spacing:-0.705352px;}
.ws71{word-spacing:-0.526025px;}
.ws48{word-spacing:-0.466250px;}
.ws17e{word-spacing:-0.403488px;}
.wsa1{word-spacing:-0.286923px;}
.ws13e{word-spacing:-0.167372px;}
.wsb5{word-spacing:-0.076852px;}
.ws1{word-spacing:-0.071731px;}
.wscd{word-spacing:-0.069785px;}
.ws11d{word-spacing:-0.059776px;}
.ws156{word-spacing:-0.053798px;}
.wsf1{word-spacing:-0.047820px;}
.ws4{word-spacing:-0.041843px;}
.ws166{word-spacing:-0.035866px;}
.wse{word-spacing:-0.031260px;}
.wsf{word-spacing:-0.026899px;}
.ws62{word-spacing:0.000000px;}
.ws37{word-spacing:0.011955px;}
.wseb{word-spacing:0.071731px;}
.ws174{word-spacing:0.134496px;}
.ws90{word-spacing:0.206500px;}
.wsc1{word-spacing:0.251058px;}
.ws41{word-spacing:0.370609px;}
.wsfb{word-spacing:0.403488px;}
.ws134{word-spacing:0.430384px;}
.ws12{word-spacing:0.457286px;}
.ws14{word-spacing:0.511085px;}
.ws40{word-spacing:0.549936px;}
.wsf0{word-spacing:0.555892px;}
.ws159{word-spacing:0.564883px;}
.ws1b{word-spacing:0.609711px;}
.ws1c{word-spacing:0.789038px;}
.ws4d{word-spacing:0.848814px;}
.ws17f{word-spacing:0.887674px;}
.wsc5{word-spacing:0.968365px;}
.ws17{word-spacing:0.995270px;}
.wsba{word-spacing:1.028140px;}
.wsb{word-spacing:1.049069px;}
.ws65{word-spacing:1.087916px;}
.ws162{word-spacing:1.102867px;}
.ws54{word-spacing:1.147692px;}
.wsae{word-spacing:1.207467px;}
.ws108{word-spacing:1.267243px;}
.ws18{word-spacing:1.318061px;}
.ws163{word-spacing:1.425658px;}
.ws14b{word-spacing:1.446570px;}
.wsf7{word-spacing:1.506345px;}
.ws19d{word-spacing:1.533254px;}
.wsa4{word-spacing:1.566121px;}
.ws75{word-spacing:1.619802px;}
.ws76{word-spacing:1.625896px;}
.ws164{word-spacing:1.640851px;}
.ws132{word-spacing:1.685672px;}
.ws60{word-spacing:1.805223px;}
.ws67{word-spacing:1.864999px;}
.ws49{word-spacing:1.924774px;}
.wse8{word-spacing:1.984550px;}
.wsd0{word-spacing:2.044326px;}
.ws10b{word-spacing:2.104101px;}
.ws42{word-spacing:2.163877px;}
.ws44{word-spacing:2.223652px;}
.ws113{word-spacing:2.232634px;}
.ws10a{word-spacing:2.283428px;}
.ws112{word-spacing:2.286432px;}
.ws8e{word-spacing:2.343204px;}
.wsad{word-spacing:2.522530px;}
.wsc7{word-spacing:2.663021px;}
.ws133{word-spacing:2.701857px;}
.ws1a0{word-spacing:2.706758px;}
.ws21{word-spacing:2.821408px;}
.ws1a2{word-spacing:2.878214px;}
.ws88{word-spacing:3.000735px;}
.wscf{word-spacing:3.039610px;}
.ws185{word-spacing:3.049037px;}
.ws165{word-spacing:3.062289px;}
.ws180{word-spacing:3.064230px;}
.ws15d{word-spacing:3.065318px;}
.ws16a{word-spacing:3.067453px;}
.ws19{word-spacing:3.093408px;}
.ws26{word-spacing:3.120286px;}
.ws18f{word-spacing:3.147206px;}
.ws183{word-spacing:3.201005px;}
.ws32{word-spacing:3.299613px;}
.ws13c{word-spacing:3.315892px;}
.wsa5{word-spacing:3.359389px;}
.ws66{word-spacing:3.419164px;}
.wsc0{word-spacing:3.478940px;}
.wsaa{word-spacing:3.538716px;}
.ws19e{word-spacing:3.577594px;}
.ws6f{word-spacing:3.598491px;}
.ws199{word-spacing:3.631392px;}
.wsf9{word-spacing:3.636485px;}
.ws141{word-spacing:3.658267px;}
.ws161{word-spacing:3.685190px;}
.wse7{word-spacing:3.738989px;}
.ws137{word-spacing:3.837594px;}
.ws172{word-spacing:3.846586px;}
.ws9b{word-spacing:3.886015px;}
.ws23{word-spacing:3.897369px;}
.ws195{word-spacing:3.900384px;}
.ws2c{word-spacing:3.957145px;}
.ws115{word-spacing:4.007981px;}
.wsf6{word-spacing:4.016920px;}
.ws116{word-spacing:4.061779px;}
.ws105{word-spacing:4.136472px;}
.ws178{word-spacing:4.169376px;}
.ws107{word-spacing:4.196247px;}
.wsef{word-spacing:4.256023px;}
.ws18a{word-spacing:4.276973px;}
.wsc4{word-spacing:4.315798px;}
.ws19a{word-spacing:4.384570px;}
.ws1e{word-spacing:4.435350px;}
.ws10f{word-spacing:4.438368px;}
.ws8f{word-spacing:4.554901px;}
.ws16e{word-spacing:4.599763px;}
.ws30{word-spacing:4.614676px;}
.ws11{word-spacing:4.653562px;}
.ws69{word-spacing:4.674452px;}
.ws15b{word-spacing:4.761158px;}
.ws8c{word-spacing:4.794003px;}
.ws111{word-spacing:4.814957px;}
.ws96{word-spacing:4.853779px;}
.ws98{word-spacing:4.913554px;}
.ws99{word-spacing:4.973330px;}
.ws190{word-spacing:4.976352px;}
.wsfc{word-spacing:5.035582px;}
.ws20{word-spacing:5.092881px;}
.ws3d{word-spacing:5.152657px;}
.ws16{word-spacing:5.245344px;}
.ws61{word-spacing:5.272208px;}
.ws1a1{word-spacing:5.309902px;}
.wsf5{word-spacing:5.331984px;}
.wsf4{word-spacing:5.349807px;}
.wsbc{word-spacing:5.391759px;}
.ws2{word-spacing:5.451535px;}
.ws15e{word-spacing:5.460538px;}
.ws3{word-spacing:5.511310px;}
.ws158{word-spacing:5.514336px;}
.ws186{word-spacing:5.621933px;}
.wsc3{word-spacing:5.630862px;}
.wsc2{word-spacing:5.634600px;}
.ws110{word-spacing:5.658603px;}
.ws114{word-spacing:5.664603px;}
.ws149{word-spacing:5.690637px;}
.ws6b{word-spacing:5.750413px;}
.ws58{word-spacing:5.810188px;}
.wsbf{word-spacing:5.869964px;}
.wse6{word-spacing:5.890925px;}
.ws9a{word-spacing:5.929740px;}
.ws176{word-spacing:5.944723px;}
.wsbe{word-spacing:5.955892px;}
.ws177{word-spacing:5.998522px;}
.ws197{word-spacing:6.052320px;}
.ws73{word-spacing:6.109066px;}
.ws10d{word-spacing:6.154424px;}
.ws53{word-spacing:6.168842px;}
.ws15{word-spacing:6.213715px;}
.ws136{word-spacing:6.228618px;}
.wsb6{word-spacing:6.267514px;}
.ws50{word-spacing:6.288393px;}
.ws14c{word-spacing:6.348169px;}
.ws9{word-spacing:6.375110px;}
.ws5b{word-spacing:6.407944px;}
.ws4f{word-spacing:6.467720px;}
.ws135{word-spacing:6.527496px;}
.wsd5{word-spacing:6.647047px;}
.ws145{word-spacing:6.706822px;}
.wsed{word-spacing:6.766598px;}
.ws154{word-spacing:6.886149px;}
.wsdc{word-spacing:6.945925px;}
.ws157{word-spacing:6.966893px;}
.ws78{word-spacing:7.005700px;}
.ws12c{word-spacing:7.029892px;}
.ws59{word-spacing:7.065476px;}
.ws3c{word-spacing:7.125252px;}
.ws4e{word-spacing:7.185027px;}
.ws139{word-spacing:7.243977px;}
.ws63{word-spacing:7.244803px;}
.wsc6{word-spacing:7.304578px;}
.wsd1{word-spacing:7.364354px;}
.ws184{word-spacing:7.397280px;}
.ws4c{word-spacing:7.424130px;}
.ws9f{word-spacing:7.432015px;}
.wsb7{word-spacing:7.451078px;}
.wsdb{word-spacing:7.483905px;}
.ws72{word-spacing:7.543681px;}
.ws6d{word-spacing:7.603456px;}
.ws31{word-spacing:7.663232px;}
.wsd2{word-spacing:7.723008px;}
.ws82{word-spacing:7.782783px;}
.wsa6{word-spacing:7.842559px;}
.wsd3{word-spacing:7.954738px;}
.wsd4{word-spacing:7.959807px;}
.ws3e{word-spacing:7.962110px;}
.ws5f{word-spacing:8.021886px;}
.ws19f{word-spacing:8.042861px;}
.ws3b{word-spacing:8.081661px;}
.ws16f{word-spacing:8.096659px;}
.ws179{word-spacing:8.150458px;}
.wsea{word-spacing:8.201212px;}
.ws52{word-spacing:8.260988px;}
.ws5d{word-spacing:8.320764px;}
.ws7d{word-spacing:8.440315px;}
.wsec{word-spacing:8.500090px;}
.ws103{word-spacing:8.527046px;}
.wsd8{word-spacing:8.544125px;}
.wsc8{word-spacing:8.549073px;}
.ws91{word-spacing:8.619642px;}
.ws118{word-spacing:8.634643px;}
.ws93{word-spacing:8.679417px;}
.ws10{word-spacing:8.688442px;}
.ws24{word-spacing:8.858744px;}
.ws2b{word-spacing:8.918520px;}
.ws12d{word-spacing:8.978295px;}
.ws7b{word-spacing:9.038071px;}
.ws68{word-spacing:9.097846px;}
.ws84{word-spacing:9.157622px;}
.ws140{word-spacing:9.217398px;}
.ws8{word-spacing:9.237185px;}
.ws119{word-spacing:9.253325px;}
.ws18d{word-spacing:9.280224px;}
.wsee{word-spacing:9.456500px;}
.ws25{word-spacing:9.516276px;}
.wsbd{word-spacing:9.635827px;}
.ws2d{word-spacing:9.695602px;}
.ws168{word-spacing:9.710611px;}
.wsb0{word-spacing:9.815154px;}
.wsdf{word-spacing:9.874929px;}
.ws155{word-spacing:9.925805px;}
.ws144{word-spacing:9.934705px;}
.wsd6{word-spacing:10.033402px;}
.ws147{word-spacing:10.054256px;}
.ws117{word-spacing:10.087200px;}
.ws5{word-spacing:10.097960px;}
.ws22{word-spacing:10.114032px;}
.ws187{word-spacing:10.140998px;}
.ws56{word-spacing:10.173807px;}
.wsf3{word-spacing:10.233583px;}
.ws192{word-spacing:10.248595px;}
.ws10e{word-spacing:10.251486px;}
.wsa8{word-spacing:10.293358px;}
.ws13f{word-spacing:10.353134px;}
.ws94{word-spacing:10.412910px;}
.ws8a{word-spacing:10.472685px;}
.ws6{word-spacing:10.474548px;}
.ws55{word-spacing:10.532461px;}
.ws191{word-spacing:10.571386px;}
.ws33{word-spacing:10.652012px;}
.ws175{word-spacing:10.732781px;}
.wsca{word-spacing:10.824125px;}
.wsc{word-spacing:10.840378px;}
.ws46{word-spacing:10.950890px;}
.ws169{word-spacing:11.001773px;}
.wsf8{word-spacing:11.010666px;}
.ws27{word-spacing:11.070441px;}
.wsbb{word-spacing:11.189992px;}
.ws18e{word-spacing:11.216966px;}
.wsac{word-spacing:11.309544px;}
.ws34{word-spacing:11.488870px;}
.ws13b{word-spacing:11.548646px;}
.wsa9{word-spacing:11.668197px;}
.wsce{word-spacing:11.754950px;}
.ws9d{word-spacing:11.787748px;}
.ws9c{word-spacing:11.812015px;}
.ws153{word-spacing:11.847524px;}
.ws1a5{word-spacing:11.862547px;}
.ws14f{word-spacing:11.907300px;}
.ws1f{word-spacing:11.967075px;}
.ws18c{word-spacing:12.023942px;}
.ws7f{word-spacing:12.026851px;}
.ws146{word-spacing:12.146402px;}
.ws128{word-spacing:12.206178px;}
.wsb9{word-spacing:12.325729px;}
.ws6c{word-spacing:12.385504px;}
.ws148{word-spacing:12.445280px;}
.ws16c{word-spacing:12.454330px;}
.ws18b{word-spacing:12.561926px;}
.ws83{word-spacing:12.564831px;}
.ws45{word-spacing:12.624607px;}
.ws2f{word-spacing:12.684382px;}
.wsa7{word-spacing:12.744158px;}
.ws80{word-spacing:12.803934px;}
.ws79{word-spacing:12.863709px;}
.ws7a{word-spacing:12.873892px;}
.wsa0{word-spacing:12.923485px;}
.wsde{word-spacing:12.983260px;}
.ws152{word-spacing:13.043036px;}
.ws194{word-spacing:13.046112px;}
.ws104{word-spacing:13.153709px;}
.wsab{word-spacing:13.162587px;}
.ws7{word-spacing:13.379662px;}
.ws2a{word-spacing:13.461465px;}
.ws97{word-spacing:13.581016px;}
.wsaf{word-spacing:13.700568px;}
.ws7c{word-spacing:13.820119px;}
.wsa3{word-spacing:13.879894px;}
.ws89{word-spacing:13.999446px;}
.ws13d{word-spacing:14.059221px;}
.ws17a{word-spacing:14.068282px;}
.ws143{word-spacing:14.118997px;}
.wsb8{word-spacing:14.178772px;}
.wsdd{word-spacing:14.238548px;}
.ws196{word-spacing:14.283475px;}
.ws4b{word-spacing:14.417875px;}
.ws127{word-spacing:14.477650px;}
.ws15f{word-spacing:14.606266px;}
.ws36{word-spacing:14.716753px;}
.wsa2{word-spacing:14.836304px;}
.ws2e{word-spacing:14.955855px;}
.ws29{word-spacing:15.075406px;}
.ws5e{word-spacing:15.135182px;}
.ws9e{word-spacing:15.314509px;}
.ws8d{word-spacing:16.031816px;}
.ws28{word-spacing:16.390470px;}
.ws15c{word-spacing:16.489210px;}
.ws16b{word-spacing:16.596806px;}
.ws1a4{word-spacing:16.865798px;}
.ws12f{word-spacing:16.928450px;}
.ws3a{word-spacing:16.928492px;}
.ws188{word-spacing:17.134790px;}
.ws87{word-spacing:17.167552px;}
.ws142{word-spacing:17.227328px;}
.wsb2{word-spacing:17.816547px;}
.ws151{word-spacing:18.183738px;}
.ws171{word-spacing:18.372154px;}
.ws160{word-spacing:19.340525px;}
.ws150{word-spacing:19.558576px;}
.ws5a{word-spacing:19.857454px;}
.ws70{word-spacing:19.917230px;}
.ws11a{word-spacing:21.062074px;}
.ws64{word-spacing:21.142771px;}
.wsf2{word-spacing:21.196570px;}
.ws173{word-spacing:22.157157px;}
.wsd9{word-spacing:22.369603px;}
.ws109{word-spacing:23.800206px;}
.ws16d{word-spacing:23.805792px;}
.ws124{word-spacing:23.981971px;}
.ws122{word-spacing:25.476361px;}
.ws3f{word-spacing:25.583957px;}
.wsfa{word-spacing:25.594206px;}
.ws51{word-spacing:25.814547px;}
.ws125{word-spacing:26.124230px;}
.ws126{word-spacing:26.133892px;}
.ws106{word-spacing:26.152206px;}
.ws57{word-spacing:26.751901px;}
.ws0{word-spacing:26.827469px;}
.ws123{word-spacing:27.568507px;}
.ws11e{word-spacing:27.628282px;}
.ws167{word-spacing:28.037157px;}
.ws11f{word-spacing:29.603770px;}
.ws121{word-spacing:29.660653px;}
.ws14a{word-spacing:30.019306px;}
.ws11b{word-spacing:30.377960px;}
.ws11c{word-spacing:33.726827px;}
.ws12a{word-spacing:34.622028px;}
.ws129{word-spacing:34.625042px;}
.wsd7{word-spacing:36.191123px;}
.ws131{word-spacing:38.207208px;}
.wsc9{word-spacing:38.477123px;}
.ws120{word-spacing:43.827470px;}
.ws130{word-spacing:48.539208px;}
.ws17b{word-spacing:49.723742px;}
.wscb{word-spacing:52.301123px;}
.ws12e{word-spacing:52.659919px;}
.ws102{word-spacing:61.903198px;}
.wsff{word-spacing:61.909198px;}
.ws1a{word-spacing:63.589709px;}
.wsfe{word-spacing:66.517198px;}
.ws100{word-spacing:75.727198px;}
.wsfd{word-spacing:80.335198px;}
.ws101{word-spacing:80.341198px;}
.wscc{word-spacing:93.771118px;}
.wse5{word-spacing:117.997665px;}
.wse0{word-spacing:310.685628px;}
.ws17c{word-spacing:640.139929px;}
.ws17d{word-spacing:823.009617px;}
.wse2{word-spacing:1078.243404px;}
.wse3{word-spacing:1078.246181px;}
.wse4{word-spacing:1078.276733px;}
._39{margin-left:-586.453403px;}
._3a{margin-left:-582.676088px;}
._1c{margin-left:-29.828024px;}
._d{margin-left:-27.878255px;}
._49{margin-left:-25.103018px;}
._4f{margin-left:-23.944905px;}
._a{margin-left:-21.578992px;}
._4e{margin-left:-20.293919px;}
._8{margin-left:-19.068416px;}
._4d{margin-left:-17.442122px;}
._5{margin-left:-16.067666px;}
._2{margin-left:-6.742733px;}
._46{margin-left:-5.547161px;}
._10{margin-left:-4.519092px;}
._c{margin-left:-3.371366px;}
._0{margin-left:-2.223667px;}
._4{margin-left:-1.063991px;}
._15{width:1.004215px;}
._1{width:2.223667px;}
._b{width:3.450617px;}
._9{width:4.961375px;}
._40{width:9.431637px;}
._3f{width:10.500743px;}
._4c{width:13.918776px;}
._25{width:15.302554px;}
._13{width:17.448614px;}
._1e{width:18.841284px;}
._3e{width:19.965050px;}
._47{width:21.002211px;}
._6{width:22.116972px;}
._3{width:23.166276px;}
._12{width:24.423793px;}
._7{width:25.546991px;}
._1b{width:27.030541px;}
._f{width:28.531085px;}
._e{width:29.535322px;}
._21{width:31.274609px;}
._14{width:32.553829px;}
._29{width:33.570597px;}
._1a{width:34.622042px;}
._24{width:35.686033px;}
._48{width:36.872739px;}
._1f{width:38.268354px;}
._23{width:39.750774px;}
._1d{width:41.914666px;}
._16{width:43.181916px;}
._2a{width:45.668558px;}
._11{width:48.616314px;}
._17{width:50.582128px;}
._28{width:52.420958px;}
._22{width:53.678489px;}
._19{width:55.579338px;}
._27{width:57.265025px;}
._26{width:59.070263px;}
._35{width:60.814353px;}
._18{width:62.047073px;}
._20{width:64.414639px;}
._2d{width:70.414353px;}
._41{width:78.384269px;}
._2b{width:81.436353px;}
._2f{width:84.112353px;}
._30{width:88.016504px;}
._44{width:94.981126px;}
._43{width:99.287272px;}
._31{width:102.985002px;}
._34{width:107.625258px;}
._45{width:120.266340px;}
._3c{width:127.634678px;}
._3b{width:132.127878px;}
._3d{width:146.260869px;}
._42{width:154.222058px;}
._37{width:161.047793px;}
._2e{width:162.983568px;}
._36{width:189.484566px;}
._2c{width:190.624566px;}
._33{width:197.134988px;}
._4b{width:237.798010px;}
._32{width:253.593564px;}
._4a{width:272.431179px;}
._38{width:414.386668px;}
.fc3{color:rgb(255,127,14);}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.596600px;}
.fs8{font-size:35.259181px;}
.fs4{font-size:35.865600px;}
.fsa{font-size:36.060947px;}
.fsc{font-size:41.577600px;}
.fs3{font-size:41.842800px;}
.fsd{font-size:44.439000px;}
.fsf{font-size:45.138000px;}
.fs1{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fse{font-size:63.992160px;}
.fsb{font-size:69.784885px;}
.fs0{font-size:71.731200px;}
.fs9{font-size:76.851587px;}
.fs7{font-size:77.845103px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y109{bottom:9.644054px;}
.y127{bottom:10.307765px;}
.y1ca{bottom:10.469900px;}
.y1bb{bottom:10.935033px;}
.y1c9{bottom:23.469644px;}
.y126{bottom:25.496876px;}
.y1ba{bottom:26.363060px;}
.y10a{bottom:34.922015px;}
.y128{bottom:37.491934px;}
.y1bc{bottom:50.583594px;}
.yef{bottom:58.019715px;}
.y10b{bottom:70.060157px;}
.y129{bottom:71.773449px;}
.yc8{bottom:95.043314px;}
.y1bd{bottom:98.730794px;}
.y1f0{bottom:102.928500px;}
.yc9{bottom:103.300044px;}
.y5a{bottom:103.413000px;}
.y10c{bottom:105.198300px;}
.y92{bottom:105.654000px;}
.y12a{bottom:106.054963px;}
.y1b4{bottom:106.894500px;}
.y34{bottom:111.891000px;}
.y114{bottom:112.005000px;}
.yeb{bottom:113.947500px;}
.y1ef{bottom:118.618500px;}
.y59{bottom:120.598500px;}
.y1b3{bottom:122.586000px;}
.y91{bottom:122.839500px;}
.y113{bottom:127.696500px;}
.yc7{bottom:129.956282px;}
.yea{bottom:133.135500px;}
.y1ee{bottom:134.310000px;}
.y58{bottom:137.784000px;}
.y1b2{bottom:138.277500px;}
.y90{bottom:140.025000px;}
.y10d{bottom:140.336442px;}
.y12b{bottom:140.336477px;}
.y1be{bottom:146.877994px;}
.y120{bottom:148.815101px;}
.y1ed{bottom:150.001500px;}
.ye9{bottom:152.922000px;}
.y112{bottom:153.125753px;}
.y1b1{bottom:153.969000px;}
.y1c3{bottom:154.547928px;}
.y57{bottom:154.969500px;}
.y8f{bottom:157.210500px;}
.y121{bottom:157.477234px;}
.y108{bottom:158.331000px;}
.y165{bottom:163.285500px;}
.y1ec{bottom:165.693000px;}
.y1b8{bottom:169.659000px;}
.y1b0{bottom:169.660500px;}
.ye8{bottom:172.110000px;}
.y56{bottom:172.155000px;}
.yc5{bottom:174.396000px;}
.y33{bottom:174.402000px;}
.y8e{bottom:175.122000px;}
.y10e{bottom:175.474585px;}
.y1f7{bottom:181.383000px;}
.y1eb{bottom:181.384500px;}
.y164{bottom:183.070500px;}
.y122{bottom:184.746621px;}
.y1af{bottom:185.350500px;}
.y55{bottom:189.340500px;}
.ye7{bottom:191.298000px;}
.yf1{bottom:191.439000px;}
.yc4{bottom:191.581500px;}
.y32{bottom:191.587500px;}
.y8d{bottom:192.307500px;}
.y1bf{bottom:195.025194px;}
.y1ea{bottom:197.074500px;}
.yee{bottom:199.301729px;}
.y1ae{bottom:201.042000px;}
.yca{bottom:201.356801px;}
.y163{bottom:205.248000px;}
.y54{bottom:206.526000px;}
.yf0{bottom:207.129000px;}
.yc3{bottom:208.767000px;}
.y31{bottom:208.773000px;}
.y8c{bottom:209.493000px;}
.ye6{bottom:210.486000px;}
.y10f{bottom:210.612727px;}
.y123{bottom:212.016007px;}
.y1e9{bottom:212.766000px;}
.y1ad{bottom:216.733500px;}
.y162{bottom:220.938000px;}
.y53{bottom:223.711500px;}
.yc2{bottom:225.952500px;}
.y30{bottom:225.958500px;}
.y1c8{bottom:226.130448px;}
.y8b{bottom:226.678500px;}
.y1e8{bottom:228.457500px;}
.ye5{bottom:230.271000px;}
.y1ac{bottom:232.425000px;}
.y161{bottom:236.629500px;}
.yec{bottom:237.765000px;}
.y124{bottom:239.285394px;}
.y1c7{bottom:242.686925px;}
.yc1{bottom:243.138000px;}
.y2f{bottom:243.144000px;}
.y1c0{bottom:243.172394px;}
.y8a{bottom:243.864000px;}
.y52{bottom:244.072500px;}
.y1f6{bottom:244.147500px;}
.y1e7{bottom:244.149000px;}
.y110{bottom:245.750870px;}
.y12c{bottom:247.257902px;}
.y1ab{bottom:248.115000px;}
.y160{bottom:252.321000px;}
.y1cb{bottom:254.215100px;}
.ye4{bottom:255.436500px;}
.y5b{bottom:258.000000px;}
.y1c6{bottom:259.243403px;}
.y1e6{bottom:259.839000px;}
.y13a{bottom:260.323500px;}
.y2e{bottom:260.344500px;}
.y89{bottom:261.049500px;}
.y51{bottom:261.258000px;}
.yc0{bottom:261.405000px;}
.y1aa{bottom:263.806500px;}
.y125{bottom:266.554780px;}
.y15f{bottom:268.012500px;}
.ye3{bottom:271.128000px;}
.y1e5{bottom:275.530500px;}
.y1c5{bottom:275.799880px;}
.y11c{bottom:277.462534px;}
.y139{bottom:277.509000px;}
.y2d{bottom:277.530000px;}
.y50{bottom:278.443500px;}
.ybf{bottom:278.590500px;}
.y88{bottom:278.962500px;}
.y1a9{bottom:279.498000px;}
.y111{bottom:280.889012px;}
.y1e4{bottom:291.222000px;}
.y1c1{bottom:291.319594px;}
.y138{bottom:294.694500px;}
.y2c{bottom:294.715500px;}
.y1a8{bottom:295.189500px;}
.y4f{bottom:295.629000px;}
.ybe{bottom:295.776000px;}
.y87{bottom:296.148000px;}
.y1e3{bottom:306.913500px;}
.y1b7{bottom:310.879500px;}
.y1a7{bottom:310.881000px;}
.y15e{bottom:310.998000px;}
.y137{bottom:311.880000px;}
.y2b{bottom:311.901000px;}
.y4e{bottom:312.814500px;}
.ybd{bottom:312.961500px;}
.y11d{bottom:313.279042px;}
.y86{bottom:313.333500px;}
.y1f5{bottom:322.603500px;}
.y1e2{bottom:322.605000px;}
.y1a6{bottom:326.571000px;}
.y136{bottom:329.065500px;}
.y2a{bottom:329.086500px;}
.y186{bottom:329.626500px;}
.ye2{bottom:329.800500px;}
.y4d{bottom:330.000000px;}
.ybc{bottom:330.147000px;}
.y85{bottom:330.519000px;}
.y1e1{bottom:338.295000px;}
.y1c2{bottom:339.466794px;}
.y15d{bottom:341.572500px;}
.y1a5{bottom:342.262500px;}
.yed{bottom:343.316017px;}
.y135{bottom:346.251000px;}
.y29{bottom:346.272000px;}
.y185{bottom:346.812000px;}
.ye1{bottom:346.986000px;}
.y4c{bottom:347.185500px;}
.ybb{bottom:347.332500px;}
.y84{bottom:347.704500px;}
.y11e{bottom:349.095549px;}
.y15c{bottom:351.823500px;}
.y1c4{bottom:353.380818px;}
.y1e0{bottom:353.986500px;}
.y1a4{bottom:357.954000px;}
.y134{bottom:363.436500px;}
.y28{bottom:363.457500px;}
.y184{bottom:363.997500px;}
.ye0{bottom:364.171500px;}
.y4b{bottom:364.371000px;}
.yba{bottom:364.518000px;}
.y83{bottom:364.890000px;}
.y1df{bottom:369.678000px;}
.y1a3{bottom:373.645500px;}
.y133{bottom:380.622000px;}
.y27{bottom:380.643000px;}
.y183{bottom:381.183000px;}
.ydf{bottom:381.357000px;}
.y4a{bottom:381.556500px;}
.y82{bottom:382.075500px;}
.yb9{bottom:382.785000px;}
.y11f{bottom:384.912057px;}
.y1f4{bottom:385.368000px;}
.y1de{bottom:385.369500px;}
.y1a2{bottom:389.335500px;}
.y15b{bottom:392.508000px;}
.y116{bottom:397.447834px;}
.y132{bottom:397.807500px;}
.y26{bottom:397.828500px;}
.y182{bottom:398.368500px;}
.yde{bottom:398.542500px;}
.y49{bottom:398.742000px;}
.y81{bottom:399.261000px;}
.yb8{bottom:399.970500px;}
.y1dd{bottom:401.059500px;}
.y1a1{bottom:405.027000px;}
.y131{bottom:414.994500px;}
.y25{bottom:415.014000px;}
.y181{bottom:415.554000px;}
.ydd{bottom:415.728000px;}
.y48{bottom:415.927500px;}
.y80{bottom:416.446500px;}
.y1dc{bottom:416.751000px;}
.yb7{bottom:417.156000px;}
.y1a0{bottom:420.718500px;}
.y15a{bottom:423.093000px;}
.y117{bottom:424.717221px;}
.y130{bottom:432.180000px;}
.y24{bottom:432.199500px;}
.y1db{bottom:432.442500px;}
.y180{bottom:432.739500px;}
.ydc{bottom:432.913500px;}
.y47{bottom:433.113000px;}
.y159{bottom:433.344000px;}
.y7f{bottom:433.632000px;}
.yb6{bottom:434.341500px;}
.y19f{bottom:436.410000px;}
.y1da{bottom:448.134000px;}
.y23{bottom:449.386500px;}
.y17f{bottom:449.925000px;}
.ydb{bottom:450.099000px;}
.y46{bottom:450.298500px;}
.y7e{bottom:450.817500px;}
.yb5{bottom:451.527000px;}
.y118{bottom:451.986607px;}
.y1b6{bottom:452.100000px;}
.y19e{bottom:452.101500px;}
.y1f3{bottom:463.824000px;}
.y1d9{bottom:463.825500px;}
.y22{bottom:466.572000px;}
.y17e{bottom:467.110500px;}
.yda{bottom:467.284500px;}
.y45{bottom:467.484000px;}
.y19d{bottom:467.791500px;}
.yb4{bottom:468.714000px;}
.y7d{bottom:468.730500px;}
.y158{bottom:470.125500px;}
.y119{bottom:479.255994px;}
.y1d8{bottom:479.515500px;}
.y19c{bottom:483.483000px;}
.y21{bottom:483.757500px;}
.y17d{bottom:484.296000px;}
.yd9{bottom:484.470000px;}
.y44{bottom:484.669500px;}
.yb3{bottom:485.899500px;}
.y7c{bottom:485.916000px;}
.y1d7{bottom:495.207000px;}
.y19b{bottom:499.174500px;}
.y157{bottom:499.216500px;}
.y20{bottom:500.943000px;}
.y17c{bottom:501.481500px;}
.yd8{bottom:501.655500px;}
.y43{bottom:501.855000px;}
.yb2{bottom:503.085000px;}
.y7b{bottom:503.101500px;}
.y11b{bottom:504.415979px;}
.y11a{bottom:506.525380px;}
.y156{bottom:509.467500px;}
.y1d6{bottom:510.898500px;}
.y107{bottom:511.686000px;}
.y1b5{bottom:514.864500px;}
.y19a{bottom:514.866000px;}
.y1f{bottom:518.128500px;}
.y12f{bottom:518.224500px;}
.y17b{bottom:518.667000px;}
.yd7{bottom:518.841000px;}
.y42{bottom:519.042000px;}
.yb1{bottom:520.270500px;}
.y7a{bottom:520.287000px;}
.y1f2{bottom:526.588500px;}
.y1d5{bottom:526.590000px;}
.y106{bottom:528.871500px;}
.y199{bottom:530.556000px;}
.y12e{bottom:533.914500px;}
.y1e{bottom:535.314000px;}
.yd6{bottom:536.026500px;}
.y41{bottom:536.227500px;}
.yb0{bottom:537.456000px;}
.y79{bottom:537.472500px;}
.y1d4{bottom:542.280000px;}
.y105{bottom:546.057000px;}
.y155{bottom:549.156000px;}
.y12d{bottom:549.606000px;}
.y1d{bottom:552.499500px;}
.yd5{bottom:553.213500px;}
.y40{bottom:553.413000px;}
.yaf{bottom:554.641500px;}
.y78{bottom:554.658000px;}
.y17a{bottom:557.671500px;}
.y1d3{bottom:557.971500px;}
.y104{bottom:563.242500px;}
.y154{bottom:566.341500px;}
.y1c{bottom:569.685000px;}
.yd4{bottom:570.399000px;}
.y3f{bottom:570.598500px;}
.yae{bottom:571.827000px;}
.y77{bottom:571.843500px;}
.y1d2{bottom:573.663000px;}
.y115{bottom:580.242000px;}
.y103{bottom:580.429500px;}
.y153{bottom:583.527000px;}
.y1b{bottom:586.870500px;}
.yd3{bottom:587.584500px;}
.y3e{bottom:587.784000px;}
.yad{bottom:589.012500px;}
.y76{bottom:589.029000px;}
.y1d1{bottom:589.354500px;}
.y102{bottom:597.615000px;}
.y152{bottom:600.712500px;}
.y1a{bottom:604.056000px;}
.yd2{bottom:604.770000px;}
.y3d{bottom:604.969500px;}
.y1f1{bottom:605.044500px;}
.y1d0{bottom:605.046000px;}
.yac{bottom:606.198000px;}
.y75{bottom:606.214500px;}
.y179{bottom:610.348500px;}
.y190{bottom:611.524500px;}
.y101{bottom:614.800500px;}
.y151{bottom:617.898000px;}
.y1cf{bottom:620.736000px;}
.y19{bottom:621.241500px;}
.yd1{bottom:621.955500px;}
.y3c{bottom:622.155000px;}
.yab{bottom:623.383500px;}
.y74{bottom:623.400000px;}
.y178{bottom:627.534000px;}
.y18f{bottom:628.710000px;}
.y100{bottom:631.986000px;}
.y150{bottom:635.083500px;}
.y1ce{bottom:636.427500px;}
.y18{bottom:638.427000px;}
.yd0{bottom:639.141000px;}
.y3b{bottom:639.340500px;}
.yaa{bottom:640.569000px;}
.y73{bottom:640.585500px;}
.y177{bottom:644.721000px;}
.y18e{bottom:645.895500px;}
.yff{bottom:649.171500px;}
.y14f{bottom:652.269000px;}
.y17{bottom:655.612500px;}
.ycf{bottom:656.326500px;}
.y3a{bottom:656.526000px;}
.ya9{bottom:657.754500px;}
.y72{bottom:657.771000px;}
.y18d{bottom:663.081000px;}
.y176{bottom:664.746000px;}
.yfe{bottom:666.357000px;}
.y14e{bottom:669.454500px;}
.y16{bottom:672.798000px;}
.yce{bottom:673.512000px;}
.ya8{bottom:674.940000px;}
.y71{bottom:674.956500px;}
.y39{bottom:676.887000px;}
.y18c{bottom:680.266500px;}
.y175{bottom:681.931500px;}
.y14d{bottom:686.640000px;}
.y1cd{bottom:687.610500px;}
.y15{bottom:689.983500px;}
.ya7{bottom:692.125500px;}
.y70{bottom:692.142000px;}
.y38{bottom:694.072500px;}
.y18b{bottom:697.452000px;}
.y174{bottom:699.117000px;}
.y1cc{bottom:703.302000px;}
.y14c{bottom:703.825500px;}
.y198{bottom:703.878000px;}
.yfd{bottom:704.868000px;}
.y14{bottom:707.169000px;}
.ya6{bottom:709.311000px;}
.y6f{bottom:709.327500px;}
.y37{bottom:711.258000px;}
.y18a{bottom:714.637500px;}
.y173{bottom:716.862000px;}
.y14b{bottom:721.011000px;}
.y13{bottom:724.354500px;}
.ycd{bottom:724.695000px;}
.ya5{bottom:726.496500px;}
.y6e{bottom:726.513000px;}
.y36{bottom:728.443500px;}
.y189{bottom:731.823000px;}
.y1b9{bottom:733.936500px;}
.y172{bottom:734.047500px;}
.ycc{bottom:740.386500px;}
.ya4{bottom:743.682000px;}
.y6d{bottom:743.698500px;}
.y35{bottom:745.629000px;}
.y188{bottom:749.008500px;}
.y171{bottom:751.233000px;}
.ycb{bottom:756.076500px;}
.ya3{bottom:760.867500px;}
.y14a{bottom:761.457000px;}
.y6c{bottom:761.611500px;}
.y12{bottom:762.814500px;}
.y197{bottom:766.066500px;}
.y170{bottom:768.418500px;}
.ya2{bottom:778.053000px;}
.yfc{bottom:778.308000px;}
.y6b{bottom:778.797000px;}
.y149{bottom:781.242000px;}
.y196{bottom:783.252000px;}
.y16f{bottom:785.604000px;}
.yc6{bottom:786.712500px;}
.y187{bottom:787.453500px;}
.ya1{bottom:795.238500px;}
.y6a{bottom:795.982500px;}
.yfb{bottom:797.496000px;}
.y16e{bottom:798.804000px;}
.y195{bottom:800.437500px;}
.y148{bottom:801.028500px;}
.y16d{bottom:802.789500px;}
.y11{bottom:809.514000px;}
.ya0{bottom:812.424000px;}
.y69{bottom:813.168000px;}
.y16c{bottom:815.989500px;}
.yfa{bottom:816.684000px;}
.y194{bottom:817.623000px;}
.y16b{bottom:819.975000px;}
.y147{bottom:820.216500px;}
.y10{bottom:825.205500px;}
.y68{bottom:830.353500px;}
.y193{bottom:834.808500px;}
.yf9{bottom:835.872000px;}
.y16a{bottom:837.160500px;}
.yf{bottom:840.897000px;}
.y146{bottom:843.141000px;}
.y67{bottom:847.539000px;}
.y9f{bottom:851.950500px;}
.y192{bottom:851.994000px;}
.y169{bottom:854.346000px;}
.yf8{bottom:855.658500px;}
.ye{bottom:856.588500px;}
.y145{bottom:858.831000px;}
.y66{bottom:864.724500px;}
.y9e{bottom:867.642000px;}
.y191{bottom:869.179500px;}
.y168{bottom:871.531500px;}
.yd{bottom:872.278500px;}
.yf7{bottom:880.824000px;}
.y65{bottom:881.910000px;}
.yc{bottom:887.970000px;}
.y167{bottom:888.717000px;}
.yf6{bottom:896.515500px;}
.y64{bottom:899.095500px;}
.y144{bottom:901.818000px;}
.yb{bottom:903.661500px;}
.y166{bottom:905.902500px;}
.yf5{bottom:912.205500px;}
.y63{bottom:916.281000px;}
.y143{bottom:919.003500px;}
.ya{bottom:919.353000px;}
.y9d{bottom:923.088000px;}
.y62{bottom:933.466500px;}
.y9{bottom:935.043000px;}
.y142{bottom:936.189000px;}
.y9c{bottom:940.273500px;}
.y61{bottom:950.652000px;}
.y8{bottom:950.734500px;}
.y141{bottom:953.374500px;}
.y9b{bottom:957.459000px;}
.y7{bottom:966.426000px;}
.y60{bottom:967.839000px;}
.y140{bottom:970.560000px;}
.y9a{bottom:974.644500px;}
.y5f{bottom:985.024500px;}
.y13f{bottom:987.745500px;}
.y99{bottom:991.830000px;}
.y6{bottom:1002.027000px;}
.y13e{bottom:1004.931000px;}
.y98{bottom:1009.015500px;}
.y5{bottom:1012.005000px;}
.y13d{bottom:1022.116500px;}
.y5e{bottom:1024.195500px;}
.y97{bottom:1026.201000px;}
.yf4{bottom:1026.202500px;}
.y4{bottom:1033.410000px;}
.y13c{bottom:1039.302000px;}
.y96{bottom:1043.386500px;}
.yf3{bottom:1043.388000px;}
.y3{bottom:1049.101500px;}
.y13b{bottom:1056.487500px;}
.y2{bottom:1059.078000px;}
.y95{bottom:1060.572000px;}
.yf2{bottom:1060.573500px;}
.y94{bottom:1077.757500px;}
.y5d{bottom:1077.759000px;}
.y93{bottom:1094.943000px;}
.y1{bottom:1094.944500px;}
.y5c{bottom:1133.799000px;}
.h9{height:16.787702px;}
.h3{height:24.871000px;}
.h7{height:37.658880px;}
.h4{height:38.519654px;}
.h16{height:38.625590px;}
.h5{height:40.348800px;}
.h18{height:41.283831px;}
.h21{height:41.933202px;}
.h8{height:44.831700px;}
.h22{height:46.632632px;}
.h13{height:47.261541px;}
.h1f{height:47.350205px;}
.h6{height:49.858800px;}
.h14{height:49.864800px;}
.hd{height:50.268632px;}
.ha{height:50.274632px;}
.h2{height:50.734903px;}
.h11{height:53.360819px;}
.h1e{height:53.499024px;}
.h1{height:53.798400px;}
.h1b{height:54.150632px;}
.hc{height:55.397700px;}
.h10{height:57.638690px;}
.hf{height:58.383827px;}
.h1c{height:60.773700px;}
.h1d{height:70.092632px;}
.h19{height:85.271700px;}
.h1a{height:85.835700px;}
.hb{height:117.773438px;}
.h15{height:320.430118px;}
.he{height:323.172225px;}
.h20{height:375.949818px;}
.h12{height:450.703540px;}
.h17{height:529.650388px;}
.h0{height:1188.000000px;}
.w4{width:361.421693px;}
.w3{width:361.426281px;}
.w2{width:382.627962px;}
.w5{width:746.895665px;}
.w1{width:837.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:15.377216px;}
.x33{left:16.435486px;}
.x47{left:18.208599px;}
.x24{left:23.506426px;}
.x23{left:24.693962px;}
.x32{left:25.879468px;}
.x2b{left:30.404432px;}
.x31{left:32.944575px;}
.x2c{left:37.014621px;}
.x2f{left:43.550914px;}
.x11{left:48.000000px;}
.xd{left:81.000000px;}
.xe{left:82.992000px;}
.x29{left:84.102000px;}
.x41{left:87.912000px;}
.xc{left:95.944500px;}
.x30{left:102.378568px;}
.x42{left:108.480000px;}
.x22{left:111.253500px;}
.x21{left:116.124000px;}
.x3a{left:117.606000px;}
.x28{left:119.283000px;}
.x1f{left:121.896000px;}
.x2a{left:123.242678px;}
.x26{left:125.055000px;}
.x2{left:130.408500px;}
.x45{left:135.096789px;}
.x34{left:138.178500px;}
.x20{left:139.201500px;}
.x27{left:142.362000px;}
.x1{left:146.257500px;}
.x13{left:149.935500px;}
.x46{left:157.579226px;}
.x7{left:163.191000px;}
.x1e{left:171.561000px;}
.x6{left:177.589500px;}
.x25{left:180.315000px;}
.xb{left:186.484500px;}
.x35{left:192.676500px;}
.x38{left:195.655500px;}
.x3f{left:199.489500px;}
.x3{left:201.576000px;}
.x4{left:212.047500px;}
.x36{left:226.287000px;}
.x4d{left:244.780553px;}
.x37{left:249.544500px;}
.x39{left:258.604500px;}
.x1c{left:270.491642px;}
.x48{left:277.218652px;}
.x5{left:290.344500px;}
.x8{left:309.283500px;}
.x1b{left:353.506103px;}
.x1a{left:356.024764px;}
.x9{left:387.993000px;}
.x49{left:401.591541px;}
.x1d{left:406.081189px;}
.x4a{left:424.073978px;}
.xa{left:458.256000px;}
.xf{left:475.521000px;}
.x2e{left:478.623000px;}
.x14{left:480.625500px;}
.x44{left:482.431500px;}
.x10{left:490.464000px;}
.x43{left:503.001000px;}
.x3c{left:523.666500px;}
.x3e{left:535.041000px;}
.x18{left:539.260500px;}
.x17{left:540.355500px;}
.x40{left:543.679500px;}
.x15{left:630.109500px;}
.x4c{left:641.272745px;}
.x19{left:654.457500px;}
.x4b{left:688.008066px;}
.x3d{left:704.548500px;}
.x3b{left:738.000000px;}
.x16{left:798.582000px;}
.x12{left:835.669500px;}
@media print{
.vc{vertical-align:-23.784965pt;}
.vd{vertical-align:-21.568786pt;}
.v3{vertical-align:-20.314667pt;}
.vb{vertical-align:-16.838733pt;}
.v7{vertical-align:-15.002667pt;}
.v9{vertical-align:-13.839129pt;}
.v1{vertical-align:-9.568000pt;}
.v6{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.312000pt;}
.va{vertical-align:-4.393401pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:6.202667pt;}
.v5{vertical-align:8.453333pt;}
.v8{vertical-align:9.392000pt;}
.v11{vertical-align:14.170667pt;}
.v16{vertical-align:15.359458pt;}
.v2{vertical-align:19.285333pt;}
.v15{vertical-align:20.314667pt;}
.v10{vertical-align:22.730667pt;}
.vf{vertical-align:27.978667pt;}
.ve{vertical-align:35.946667pt;}
.v13{vertical-align:36.901333pt;}
.v14{vertical-align:45.429333pt;}
.ls20{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000027pt;}
.ls73{letter-spacing:0.000267pt;}
.ls1{letter-spacing:0.000275pt;}
.ls15{letter-spacing:0.000479pt;}
.ls12{letter-spacing:0.000495pt;}
.ls88{letter-spacing:0.000501pt;}
.ls8f{letter-spacing:0.000681pt;}
.lsb{letter-spacing:0.000693pt;}
.lsd{letter-spacing:0.000891pt;}
.ls67{letter-spacing:0.001328pt;}
.ls41{letter-spacing:0.001386pt;}
.ls50{letter-spacing:0.001485pt;}
.ls69{letter-spacing:0.001962pt;}
.ls5{letter-spacing:0.002079pt;}
.ls92{letter-spacing:0.002133pt;}
.ls83{letter-spacing:0.002174pt;}
.ls25{letter-spacing:0.002489pt;}
.ls2c{letter-spacing:0.002863pt;}
.ls18{letter-spacing:0.002906pt;}
.ls2{letter-spacing:0.003200pt;}
.ls5f{letter-spacing:0.003246pt;}
.ls44{letter-spacing:0.003461pt;}
.ls37{letter-spacing:0.003733pt;}
.ls7a{letter-spacing:0.003796pt;}
.ls66{letter-spacing:0.003892pt;}
.ls27{letter-spacing:0.003938pt;}
.ls61{letter-spacing:0.004352pt;}
.ls79{letter-spacing:0.004431pt;}
.lsa5{letter-spacing:1.103577pt;}
.ls21{letter-spacing:1.275145pt;}
.ls22{letter-spacing:1.278400pt;}
.ls23{letter-spacing:1.280479pt;}
.ls3{letter-spacing:2.652459pt;}
.ls14{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653258pt;}
.ls60{letter-spacing:2.653931pt;}
.ls7{letter-spacing:2.654495pt;}
.ls4a{letter-spacing:2.654524pt;}
.ls8{letter-spacing:2.656365pt;}
.lsa{letter-spacing:2.656473pt;}
.ls26{letter-spacing:2.656689pt;}
.ls3c{letter-spacing:2.657253pt;}
.ls4{letter-spacing:2.657793pt;}
.ls16{letter-spacing:2.658245pt;}
.ls5e{letter-spacing:2.659264pt;}
.ls24{letter-spacing:2.659633pt;}
.ls9{letter-spacing:2.660927pt;}
.ls40{letter-spacing:2.661806pt;}
.ls77{letter-spacing:2.723796pt;}
.ls6b{letter-spacing:2.844521pt;}
.ls68{letter-spacing:2.849855pt;}
.ls87{letter-spacing:3.060980pt;}
.ls78{letter-spacing:3.082303pt;}
.ls80{letter-spacing:3.378537pt;}
.ls84{letter-spacing:3.383870pt;}
.ls53{letter-spacing:4.182164pt;}
.ls39{letter-spacing:5.485650pt;}
.ls36{letter-spacing:7.376058pt;}
.ls99{letter-spacing:8.850079pt;}
.ls9a{letter-spacing:8.855412pt;}
.ls6f{letter-spacing:11.803145pt;}
.ls6c{letter-spacing:11.805197pt;}
.ls76{letter-spacing:11.808479pt;}
.ls6a{letter-spacing:11.810531pt;}
.ls45{letter-spacing:12.432996pt;}
.ls3f{letter-spacing:12.446771pt;}
.lsc{letter-spacing:13.649386pt;}
.lse{letter-spacing:14.086224pt;}
.ls9c{letter-spacing:14.773812pt;}
.ls9e{letter-spacing:14.779145pt;}
.ls9d{letter-spacing:14.782400pt;}
.ls33{letter-spacing:14.960479pt;}
.ls34{letter-spacing:14.963733pt;}
.ls48{letter-spacing:14.991132pt;}
.ls63{letter-spacing:15.257685pt;}
.ls62{letter-spacing:15.261510pt;}
.ls1b{letter-spacing:15.394245pt;}
.ls91{letter-spacing:15.504479pt;}
.ls64{letter-spacing:15.839018pt;}
.ls8a{letter-spacing:16.256479pt;}
.ls9b{letter-spacing:16.361438pt;}
.ls4c{letter-spacing:16.377574pt;}
.ls52{letter-spacing:16.378266pt;}
.ls59{letter-spacing:16.379720pt;}
.ls5b{letter-spacing:16.380911pt;}
.ls58{letter-spacing:16.382908pt;}
.ls4e{letter-spacing:16.383193pt;}
.ls4d{letter-spacing:16.385053pt;}
.ls5a{letter-spacing:16.388526pt;}
.ls5d{letter-spacing:16.509156pt;}
.ls10{letter-spacing:16.739521pt;}
.ls1d{letter-spacing:16.754245pt;}
.ls1c{letter-spacing:16.999578pt;}
.lsa6{letter-spacing:17.115139pt;}
.ls97{letter-spacing:17.413909pt;}
.lsa1{letter-spacing:17.415578pt;}
.ls17{letter-spacing:17.711527pt;}
.ls1a{letter-spacing:17.746245pt;}
.ls6d{letter-spacing:17.821913pt;}
.ls49{letter-spacing:17.849067pt;}
.ls70{letter-spacing:18.141203pt;}
.ls90{letter-spacing:18.385952pt;}
.ls4f{letter-spacing:18.878193pt;}
.ls54{letter-spacing:19.035139pt;}
.ls8e{letter-spacing:19.106079pt;}
.ls51{letter-spacing:19.107796pt;}
.ls8c{letter-spacing:19.116458pt;}
.ls3b{letter-spacing:19.937253pt;}
.ls46{letter-spacing:20.052105pt;}
.ls47{letter-spacing:20.054329pt;}
.ls98{letter-spacing:20.243709pt;}
.ls89{letter-spacing:20.247361pt;}
.ls96{letter-spacing:20.364911pt;}
.ls8b{letter-spacing:20.435733pt;}
.ls94{letter-spacing:20.565812pt;}
.ls38{letter-spacing:20.871578pt;}
.ls74{letter-spacing:21.131145pt;}
.ls71{letter-spacing:21.136479pt;}
.ls42{letter-spacing:21.280495pt;}
.ls55{letter-spacing:21.631132pt;}
.lsa4{letter-spacing:21.632473pt;}
.ls11{letter-spacing:22.098200pt;}
.ls32{letter-spacing:22.137902pt;}
.ls2e{letter-spacing:22.336479pt;}
.ls4b{letter-spacing:22.571485pt;}
.ls6{letter-spacing:22.758586pt;}
.ls43{letter-spacing:22.955139pt;}
.ls8d{letter-spacing:22.983578pt;}
.ls1f{letter-spacing:23.122245pt;}
.ls93{letter-spacing:23.221909pt;}
.ls5c{letter-spacing:23.596911pt;}
.ls75{letter-spacing:23.613197pt;}
.lsa0{letter-spacing:23.740911pt;}
.ls19{letter-spacing:23.772911pt;}
.ls13{letter-spacing:24.188911pt;}
.ls56{letter-spacing:24.489191pt;}
.ls2d{letter-spacing:24.990299pt;}
.ls2f{letter-spacing:24.992689pt;}
.ls30{letter-spacing:24.995633pt;}
.ls35{letter-spacing:25.138245pt;}
.ls65{letter-spacing:25.151235pt;}
.lsa3{letter-spacing:25.152473pt;}
.ls86{letter-spacing:25.440479pt;}
.ls2a{letter-spacing:25.966299pt;}
.ls1e{letter-spacing:27.903235pt;}
.ls85{letter-spacing:28.092653pt;}
.ls3d{letter-spacing:28.189913pt;}
.ls82{letter-spacing:28.279578pt;}
.ls31{letter-spacing:28.583578pt;}
.lsa2{letter-spacing:28.999578pt;}
.ls57{letter-spacing:29.007235pt;}
.ls3a{letter-spacing:29.756911pt;}
.ls95{letter-spacing:29.820619pt;}
.ls3e{letter-spacing:29.983970pt;}
.ls29{letter-spacing:31.326604pt;}
.ls28{letter-spacing:32.002863pt;}
.ls2b{letter-spacing:32.976689pt;}
.ls9f{letter-spacing:33.001902pt;}
.ls7e{letter-spacing:38.738245pt;}
.ls81{letter-spacing:40.642245pt;}
.ls7f{letter-spacing:43.052745pt;}
.ls7b{letter-spacing:44.748745pt;}
.ls7c{letter-spacing:50.805600pt;}
.ls6e{letter-spacing:53.605812pt;}
.ls7d{letter-spacing:53.738933pt;}
.ls72{letter-spacing:101.496239pt;}
.wsb3{word-spacing:-69.195647pt;}
.wsb4{word-spacing:-68.312522pt;}
.ws74{word-spacing:-34.611401pt;}
.ws13{word-spacing:-32.063846pt;}
.ws43{word-spacing:-17.890614pt;}
.ws39{word-spacing:-14.760588pt;}
.wsa{word-spacing:-13.652838pt;}
.ws13a{word-spacing:-13.411210pt;}
.ws95{word-spacing:-10.567948pt;}
.wsd{word-spacing:-8.751852pt;}
.ws138{word-spacing:-2.964870pt;}
.ws8b{word-spacing:-2.752334pt;}
.ws19c{word-spacing:-2.701875pt;}
.ws193{word-spacing:-2.558413pt;}
.ws1a3{word-spacing:-2.510592pt;}
.ws181{word-spacing:-2.462771pt;}
.ws15a{word-spacing:-2.367130pt;}
.ws6e{word-spacing:-2.327263pt;}
.ws12b{word-spacing:-2.167862pt;}
.ws81{word-spacing:-2.114728pt;}
.ws189{word-spacing:-2.080205pt;}
.ws85{word-spacing:-2.061594pt;}
.ws47{word-spacing:-2.008460pt;}
.ws92{word-spacing:-1.955326pt;}
.ws14e{word-spacing:-1.795925pt;}
.ws14d{word-spacing:-1.742791pt;}
.wse1{word-spacing:-1.697638pt;}
.ws198{word-spacing:-1.649818pt;}
.ws77{word-spacing:-1.583389pt;}
.wsb1{word-spacing:-1.530255pt;}
.wse9{word-spacing:-1.423988pt;}
.ws6a{word-spacing:-1.370854pt;}
.ws5c{word-spacing:-1.264586pt;}
.ws19b{word-spacing:-1.219430pt;}
.ws182{word-spacing:-1.123789pt;}
.ws86{word-spacing:-1.105184pt;}
.wsda{word-spacing:-1.052051pt;}
.ws38{word-spacing:-0.998917pt;}
.ws170{word-spacing:-0.932506pt;}
.ws35{word-spacing:-0.892649pt;}
.ws1d{word-spacing:-0.839515pt;}
.ws10c{word-spacing:-0.733247pt;}
.ws4a{word-spacing:-0.680113pt;}
.ws7e{word-spacing:-0.626980pt;}
.ws71{word-spacing:-0.467578pt;}
.ws48{word-spacing:-0.414444pt;}
.ws17e{word-spacing:-0.358656pt;}
.wsa1{word-spacing:-0.255043pt;}
.ws13e{word-spacing:-0.148775pt;}
.wsb5{word-spacing:-0.068313pt;}
.ws1{word-spacing:-0.063761pt;}
.wscd{word-spacing:-0.062031pt;}
.ws11d{word-spacing:-0.053134pt;}
.ws156{word-spacing:-0.047821pt;}
.wsf1{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws166{word-spacing:-0.031881pt;}
.wse{word-spacing:-0.027786pt;}
.wsf{word-spacing:-0.023910pt;}
.ws62{word-spacing:0.000000pt;}
.ws37{word-spacing:0.010627pt;}
.wseb{word-spacing:0.063761pt;}
.ws174{word-spacing:0.119552pt;}
.ws90{word-spacing:0.183555pt;}
.wsc1{word-spacing:0.223162pt;}
.ws41{word-spacing:0.329430pt;}
.wsfb{word-spacing:0.358656pt;}
.ws134{word-spacing:0.382564pt;}
.ws12{word-spacing:0.406477pt;}
.ws14{word-spacing:0.454298pt;}
.ws40{word-spacing:0.488832pt;}
.wsf0{word-spacing:0.494126pt;}
.ws159{word-spacing:0.502118pt;}
.ws1b{word-spacing:0.541965pt;}
.ws1c{word-spacing:0.701367pt;}
.ws4d{word-spacing:0.754501pt;}
.ws17f{word-spacing:0.789043pt;}
.wsc5{word-spacing:0.860769pt;}
.ws17{word-spacing:0.884685pt;}
.wsba{word-spacing:0.913903pt;}
.wsb{word-spacing:0.932506pt;}
.ws65{word-spacing:0.967036pt;}
.ws162{word-spacing:0.980326pt;}
.ws54{word-spacing:1.020170pt;}
.wsae{word-spacing:1.073304pt;}
.ws108{word-spacing:1.126438pt;}
.ws18{word-spacing:1.171610pt;}
.ws163{word-spacing:1.267251pt;}
.ws14b{word-spacing:1.285840pt;}
.wsf7{word-spacing:1.338973pt;}
.ws19d{word-spacing:1.362893pt;}
.wsa4{word-spacing:1.392107pt;}
.ws75{word-spacing:1.439824pt;}
.ws76{word-spacing:1.445241pt;}
.ws164{word-spacing:1.458534pt;}
.ws132{word-spacing:1.498375pt;}
.ws60{word-spacing:1.604643pt;}
.ws67{word-spacing:1.657777pt;}
.ws49{word-spacing:1.710911pt;}
.wse8{word-spacing:1.764044pt;}
.wsd0{word-spacing:1.817178pt;}
.ws10b{word-spacing:1.870312pt;}
.ws42{word-spacing:1.923446pt;}
.ws44{word-spacing:1.976580pt;}
.ws113{word-spacing:1.984563pt;}
.ws10a{word-spacing:2.029714pt;}
.ws112{word-spacing:2.032384pt;}
.ws8e{word-spacing:2.082848pt;}
.wsad{word-spacing:2.242249pt;}
.wsc7{word-spacing:2.367130pt;}
.ws133{word-spacing:2.401651pt;}
.ws1a0{word-spacing:2.406007pt;}
.ws21{word-spacing:2.507919pt;}
.ws1a2{word-spacing:2.558413pt;}
.ws88{word-spacing:2.667320pt;}
.wscf{word-spacing:2.701875pt;}
.ws185{word-spacing:2.710255pt;}
.ws165{word-spacing:2.722034pt;}
.ws180{word-spacing:2.723760pt;}
.ws15d{word-spacing:2.724727pt;}
.ws16a{word-spacing:2.726625pt;}
.ws19{word-spacing:2.749696pt;}
.ws26{word-spacing:2.773588pt;}
.ws18f{word-spacing:2.797517pt;}
.ws183{word-spacing:2.845338pt;}
.ws32{word-spacing:2.932989pt;}
.ws13c{word-spacing:2.947459pt;}
.wsa5{word-spacing:2.986123pt;}
.ws66{word-spacing:3.039257pt;}
.wsc0{word-spacing:3.092391pt;}
.wsaa{word-spacing:3.145525pt;}
.ws19e{word-spacing:3.180083pt;}
.ws6f{word-spacing:3.198659pt;}
.ws199{word-spacing:3.227904pt;}
.wsf9{word-spacing:3.232431pt;}
.ws141{word-spacing:3.251793pt;}
.ws161{word-spacing:3.275725pt;}
.wse7{word-spacing:3.323546pt;}
.ws137{word-spacing:3.411194pt;}
.ws172{word-spacing:3.419187pt;}
.ws9b{word-spacing:3.454236pt;}
.ws23{word-spacing:3.464328pt;}
.ws195{word-spacing:3.467008pt;}
.ws2c{word-spacing:3.517462pt;}
.ws115{word-spacing:3.562650pt;}
.wsf6{word-spacing:3.570596pt;}
.ws116{word-spacing:3.610470pt;}
.ws105{word-spacing:3.676864pt;}
.ws178{word-spacing:3.706112pt;}
.ws107{word-spacing:3.729997pt;}
.wsef{word-spacing:3.783131pt;}
.ws18a{word-spacing:3.801754pt;}
.wsc4{word-spacing:3.836265pt;}
.ws19a{word-spacing:3.897395pt;}
.ws1e{word-spacing:3.942533pt;}
.ws10f{word-spacing:3.945216pt;}
.ws8f{word-spacing:4.048801pt;}
.ws16e{word-spacing:4.088678pt;}
.ws30{word-spacing:4.101935pt;}
.ws11{word-spacing:4.136499pt;}
.ws69{word-spacing:4.155068pt;}
.ws15b{word-spacing:4.232141pt;}
.ws8c{word-spacing:4.261336pt;}
.ws111{word-spacing:4.279962pt;}
.ws96{word-spacing:4.314470pt;}
.ws98{word-spacing:4.367604pt;}
.ws99{word-spacing:4.420738pt;}
.ws190{word-spacing:4.423424pt;}
.wsfc{word-spacing:4.476073pt;}
.ws20{word-spacing:4.527005pt;}
.ws3d{word-spacing:4.580139pt;}
.ws16{word-spacing:4.662528pt;}
.ws61{word-spacing:4.686407pt;}
.ws1a1{word-spacing:4.719913pt;}
.wsf5{word-spacing:4.739541pt;}
.wsf4{word-spacing:4.755384pt;}
.wsbc{word-spacing:4.792675pt;}
.ws2{word-spacing:4.845809pt;}
.ws15e{word-spacing:4.853811pt;}
.ws3{word-spacing:4.898943pt;}
.ws158{word-spacing:4.901632pt;}
.ws186{word-spacing:4.997274pt;}
.wsc3{word-spacing:5.005210pt;}
.wsc2{word-spacing:5.008533pt;}
.ws110{word-spacing:5.029869pt;}
.ws114{word-spacing:5.035203pt;}
.ws149{word-spacing:5.058344pt;}
.ws6b{word-spacing:5.111478pt;}
.ws58{word-spacing:5.164612pt;}
.wsbf{word-spacing:5.217746pt;}
.wse6{word-spacing:5.236378pt;}
.ws9a{word-spacing:5.270880pt;}
.ws176{word-spacing:5.284198pt;}
.wsbe{word-spacing:5.294126pt;}
.ws177{word-spacing:5.332019pt;}
.ws197{word-spacing:5.379840pt;}
.ws73{word-spacing:5.430281pt;}
.ws10d{word-spacing:5.470599pt;}
.ws53{word-spacing:5.483415pt;}
.ws15{word-spacing:5.523302pt;}
.ws136{word-spacing:5.536549pt;}
.wsb6{word-spacing:5.571123pt;}
.ws50{word-spacing:5.589683pt;}
.ws14c{word-spacing:5.642817pt;}
.ws9{word-spacing:5.666765pt;}
.ws5b{word-spacing:5.695951pt;}
.ws4f{word-spacing:5.749084pt;}
.ws135{word-spacing:5.802218pt;}
.wsd5{word-spacing:5.908486pt;}
.ws145{word-spacing:5.961620pt;}
.wsed{word-spacing:6.014754pt;}
.ws154{word-spacing:6.121021pt;}
.wsdc{word-spacing:6.174155pt;}
.ws157{word-spacing:6.192794pt;}
.ws78{word-spacing:6.227289pt;}
.ws12c{word-spacing:6.248793pt;}
.ws59{word-spacing:6.280423pt;}
.ws3c{word-spacing:6.333557pt;}
.ws4e{word-spacing:6.386691pt;}
.ws139{word-spacing:6.439090pt;}
.ws63{word-spacing:6.439825pt;}
.wsc6{word-spacing:6.492959pt;}
.wsd1{word-spacing:6.546092pt;}
.ws184{word-spacing:6.575360pt;}
.ws4c{word-spacing:6.599226pt;}
.ws9f{word-spacing:6.606236pt;}
.wsb7{word-spacing:6.623181pt;}
.wsdb{word-spacing:6.652360pt;}
.ws72{word-spacing:6.705494pt;}
.ws6d{word-spacing:6.758628pt;}
.ws31{word-spacing:6.811762pt;}
.wsd2{word-spacing:6.864896pt;}
.ws82{word-spacing:6.918029pt;}
.wsa6{word-spacing:6.971163pt;}
.wsd3{word-spacing:7.070879pt;}
.wsd4{word-spacing:7.075384pt;}
.ws3e{word-spacing:7.077431pt;}
.ws5f{word-spacing:7.130565pt;}
.ws19f{word-spacing:7.149210pt;}
.ws3b{word-spacing:7.183699pt;}
.ws16f{word-spacing:7.197030pt;}
.ws179{word-spacing:7.244851pt;}
.wsea{word-spacing:7.289967pt;}
.ws52{word-spacing:7.343100pt;}
.ws5d{word-spacing:7.396234pt;}
.ws7d{word-spacing:7.502502pt;}
.wsec{word-spacing:7.555636pt;}
.ws103{word-spacing:7.579597pt;}
.wsd8{word-spacing:7.594778pt;}
.wsc8{word-spacing:7.599176pt;}
.ws91{word-spacing:7.661904pt;}
.ws118{word-spacing:7.675238pt;}
.ws93{word-spacing:7.715037pt;}
.ws10{word-spacing:7.723059pt;}
.ws24{word-spacing:7.874439pt;}
.ws2b{word-spacing:7.927573pt;}
.ws12d{word-spacing:7.980707pt;}
.ws7b{word-spacing:8.033841pt;}
.ws68{word-spacing:8.086975pt;}
.ws84{word-spacing:8.140108pt;}
.ws140{word-spacing:8.193242pt;}
.ws8{word-spacing:8.210831pt;}
.ws119{word-spacing:8.225178pt;}
.ws18d{word-spacing:8.249088pt;}
.wsee{word-spacing:8.405778pt;}
.ws25{word-spacing:8.458912pt;}
.wsbd{word-spacing:8.565179pt;}
.ws2d{word-spacing:8.618313pt;}
.ws168{word-spacing:8.631654pt;}
.wsb0{word-spacing:8.724581pt;}
.wsdf{word-spacing:8.777715pt;}
.ws155{word-spacing:8.822938pt;}
.ws144{word-spacing:8.830849pt;}
.wsd6{word-spacing:8.918579pt;}
.ws147{word-spacing:8.937116pt;}
.ws117{word-spacing:8.966400pt;}
.ws5{word-spacing:8.975964pt;}
.ws22{word-spacing:8.990250pt;}
.ws187{word-spacing:9.014221pt;}
.ws56{word-spacing:9.043384pt;}
.wsf3{word-spacing:9.096518pt;}
.ws192{word-spacing:9.109862pt;}
.ws10e{word-spacing:9.112432pt;}
.wsa8{word-spacing:9.149652pt;}
.ws13f{word-spacing:9.202786pt;}
.ws94{word-spacing:9.255920pt;}
.ws8a{word-spacing:9.309053pt;}
.ws6{word-spacing:9.310710pt;}
.ws55{word-spacing:9.362187pt;}
.ws191{word-spacing:9.396787pt;}
.ws33{word-spacing:9.468455pt;}
.ws175{word-spacing:9.540250pt;}
.wsca{word-spacing:9.621444pt;}
.wsc{word-spacing:9.635891pt;}
.ws46{word-spacing:9.734124pt;}
.ws169{word-spacing:9.779354pt;}
.wsf8{word-spacing:9.787258pt;}
.ws27{word-spacing:9.840392pt;}
.wsbb{word-spacing:9.946660pt;}
.ws18e{word-spacing:9.970637pt;}
.wsac{word-spacing:10.052928pt;}
.ws34{word-spacing:10.212329pt;}
.ws13b{word-spacing:10.265463pt;}
.wsa9{word-spacing:10.371731pt;}
.wsce{word-spacing:10.448845pt;}
.ws9d{word-spacing:10.477999pt;}
.ws9c{word-spacing:10.499569pt;}
.ws153{word-spacing:10.531132pt;}
.ws1a5{word-spacing:10.544486pt;}
.ws14f{word-spacing:10.584266pt;}
.ws1f{word-spacing:10.637400pt;}
.ws18c{word-spacing:10.687949pt;}
.ws7f{word-spacing:10.690534pt;}
.ws146{word-spacing:10.796802pt;}
.ws128{word-spacing:10.849936pt;}
.wsb9{word-spacing:10.956203pt;}
.ws6c{word-spacing:11.009337pt;}
.ws148{word-spacing:11.062471pt;}
.ws16c{word-spacing:11.070515pt;}
.ws18b{word-spacing:11.166157pt;}
.ws83{word-spacing:11.168739pt;}
.ws45{word-spacing:11.221873pt;}
.ws2f{word-spacing:11.275007pt;}
.wsa7{word-spacing:11.328140pt;}
.ws80{word-spacing:11.381274pt;}
.ws79{word-spacing:11.434408pt;}
.ws7a{word-spacing:11.443459pt;}
.wsa0{word-spacing:11.487542pt;}
.wsde{word-spacing:11.540676pt;}
.ws152{word-spacing:11.593810pt;}
.ws194{word-spacing:11.596544pt;}
.ws104{word-spacing:11.692186pt;}
.wsab{word-spacing:11.700077pt;}
.ws7{word-spacing:11.893033pt;}
.ws2a{word-spacing:11.965747pt;}
.ws97{word-spacing:12.072015pt;}
.wsaf{word-spacing:12.178282pt;}
.ws7c{word-spacing:12.284550pt;}
.wsa3{word-spacing:12.337684pt;}
.ws89{word-spacing:12.443952pt;}
.ws13d{word-spacing:12.497085pt;}
.ws17a{word-spacing:12.505139pt;}
.ws143{word-spacing:12.550219pt;}
.wsb8{word-spacing:12.603353pt;}
.wsdd{word-spacing:12.656487pt;}
.ws196{word-spacing:12.696422pt;}
.ws4b{word-spacing:12.815889pt;}
.ws127{word-spacing:12.869023pt;}
.ws15f{word-spacing:12.983347pt;}
.ws36{word-spacing:13.081558pt;}
.wsa2{word-spacing:13.187826pt;}
.ws2e{word-spacing:13.294093pt;}
.ws29{word-spacing:13.400361pt;}
.ws5e{word-spacing:13.453495pt;}
.ws9e{word-spacing:13.612897pt;}
.ws8d{word-spacing:14.250503pt;}
.ws28{word-spacing:14.569306pt;}
.ws15c{word-spacing:14.657075pt;}
.ws16b{word-spacing:14.752717pt;}
.ws1a4{word-spacing:14.991821pt;}
.ws12f{word-spacing:15.047511pt;}
.ws3a{word-spacing:15.047549pt;}
.ws188{word-spacing:15.230925pt;}
.ws87{word-spacing:15.260047pt;}
.ws142{word-spacing:15.313180pt;}
.wsb2{word-spacing:15.836931pt;}
.ws151{word-spacing:16.163322pt;}
.ws171{word-spacing:16.330803pt;}
.ws160{word-spacing:17.191578pt;}
.ws150{word-spacing:17.385401pt;}
.ws5a{word-spacing:17.651071pt;}
.ws70{word-spacing:17.704204pt;}
.ws11a{word-spacing:18.721843pt;}
.ws64{word-spacing:18.793574pt;}
.wsf2{word-spacing:18.841395pt;}
.ws173{word-spacing:19.695251pt;}
.wsd9{word-spacing:19.884092pt;}
.ws109{word-spacing:21.155739pt;}
.ws16d{word-spacing:21.160704pt;}
.ws124{word-spacing:21.317307pt;}
.ws122{word-spacing:22.645654pt;}
.ws3f{word-spacing:22.741295pt;}
.wsfa{word-spacing:22.750405pt;}
.ws51{word-spacing:22.946264pt;}
.ws125{word-spacing:23.221538pt;}
.ws126{word-spacing:23.230127pt;}
.ws106{word-spacing:23.246405pt;}
.ws57{word-spacing:23.779468pt;}
.ws0{word-spacing:23.846639pt;}
.ws123{word-spacing:24.505339pt;}
.ws11e{word-spacing:24.558473pt;}
.ws167{word-spacing:24.921917pt;}
.ws11f{word-spacing:26.314463pt;}
.ws121{word-spacing:26.365025pt;}
.ws14a{word-spacing:26.683828pt;}
.ws11b{word-spacing:27.002631pt;}
.ws11c{word-spacing:29.979402pt;}
.ws12a{word-spacing:30.775136pt;}
.ws129{word-spacing:30.777815pt;}
.wsd7{word-spacing:32.169887pt;}
.ws131{word-spacing:33.961963pt;}
.wsc9{word-spacing:34.201887pt;}
.ws120{word-spacing:38.957751pt;}
.ws130{word-spacing:43.145963pt;}
.ws17b{word-spacing:44.198882pt;}
.wscb{word-spacing:46.489887pt;}
.ws12e{word-spacing:46.808817pt;}
.ws102{word-spacing:55.025065pt;}
.wsff{word-spacing:55.030398pt;}
.ws1a{word-spacing:56.524186pt;}
.wsfe{word-spacing:59.126398pt;}
.ws100{word-spacing:67.313065pt;}
.wsfd{word-spacing:71.409065pt;}
.ws101{word-spacing:71.414398pt;}
.wscc{word-spacing:83.352105pt;}
.wse5{word-spacing:104.886813pt;}
.wse0{word-spacing:276.165003pt;}
.ws17c{word-spacing:569.013270pt;}
.ws17d{word-spacing:731.564104pt;}
.wse2{word-spacing:958.438581pt;}
.wse3{word-spacing:958.441050pt;}
.wse4{word-spacing:958.468207pt;}
._39{margin-left:-521.291914pt;}
._3a{margin-left:-517.934301pt;}
._1c{margin-left:-26.513799pt;}
._d{margin-left:-24.780671pt;}
._49{margin-left:-22.313794pt;}
._4f{margin-left:-21.284360pt;}
._a{margin-left:-19.181326pt;}
._4e{margin-left:-18.039039pt;}
._8{margin-left:-16.949703pt;}
._4d{margin-left:-15.504108pt;}
._5{margin-left:-14.282370pt;}
._2{margin-left:-5.993540pt;}
._46{margin-left:-4.930810pt;}
._10{margin-left:-4.016970pt;}
._c{margin-left:-2.996770pt;}
._0{margin-left:-1.976593pt;}
._4{margin-left:-0.945770pt;}
._15{width:0.892636pt;}
._1{width:1.976593pt;}
._b{width:3.067215pt;}
._9{width:4.410111pt;}
._40{width:8.383677pt;}
._3f{width:9.333994pt;}
._4c{width:12.372246pt;}
._25{width:13.602270pt;}
._13{width:15.509879pt;}
._1e{width:16.747808pt;}
._3e{width:17.746711pt;}
._47{width:18.668632pt;}
._6{width:19.659531pt;}
._3{width:20.592245pt;}
._12{width:21.710038pt;}
._7{width:22.708436pt;}
._1b{width:24.027148pt;}
._f{width:25.360964pt;}
._e{width:26.253619pt;}
._21{width:27.799652pt;}
._14{width:28.936737pt;}
._29{width:29.840530pt;}
._1a{width:30.775149pt;}
._24{width:31.720918pt;}
._48{width:32.775768pt;}
._1f{width:34.016315pt;}
._23{width:35.334021pt;}
._1d{width:37.257481pt;}
._16{width:38.383925pt;}
._2a{width:40.594274pt;}
._11{width:43.214502pt;}
._17{width:44.961891pt;}
._28{width:46.596407pt;}
._22{width:47.714212pt;}
._19{width:49.403856pt;}
._27{width:50.902244pt;}
._26{width:52.506900pt;}
._35{width:54.057202pt;}
._18{width:55.152954pt;}
._20{width:57.257457pt;}
._2d{width:62.590536pt;}
._41{width:69.674906pt;}
._2b{width:72.387869pt;}
._2f{width:74.766536pt;}
._30{width:78.236892pt;}
._44{width:84.427668pt;}
._43{width:88.255353pt;}
._31{width:91.542224pt;}
._34{width:95.666896pt;}
._45{width:106.903413pt;}
._3c{width:113.453048pt;}
._3b{width:117.447003pt;}
._3d{width:130.009661pt;}
._42{width:137.086274pt;}
._37{width:143.153594pt;}
._2e{width:144.874283pt;}
._36{width:168.430725pt;}
._2c{width:169.444058pt;}
._33{width:175.231101pt;}
._4b{width:211.376009pt;}
._32{width:225.416501pt;}
._4a{width:242.161048pt;}
._38{width:368.343705pt;}
.fs10{font-size:28.085867pt;}
.fs8{font-size:31.341494pt;}
.fs4{font-size:31.880533pt;}
.fsa{font-size:32.054175pt;}
.fsc{font-size:36.957867pt;}
.fs3{font-size:37.193600pt;}
.fsd{font-size:39.501333pt;}
.fsf{font-size:40.122667pt;}
.fs1{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:56.881920pt;}
.fsb{font-size:62.031009pt;}
.fs0{font-size:63.761067pt;}
.fs9{font-size:68.312522pt;}
.fs7{font-size:69.195647pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:8.572493pt;}
.y127{bottom:9.162458pt;}
.y1ca{bottom:9.306578pt;}
.y1bb{bottom:9.720029pt;}
.y1c9{bottom:20.861906pt;}
.y126{bottom:22.663890pt;}
.y1ba{bottom:23.433832pt;}
.y10a{bottom:31.041791pt;}
.y128{bottom:33.326164pt;}
.y1bc{bottom:44.963195pt;}
.yef{bottom:51.573080pt;}
.y10b{bottom:62.275695pt;}
.y129{bottom:63.798621pt;}
.yc8{bottom:84.482946pt;}
.y1bd{bottom:87.760706pt;}
.y1f0{bottom:91.492000pt;}
.yc9{bottom:91.822261pt;}
.y5a{bottom:91.922667pt;}
.y10c{bottom:93.509600pt;}
.y92{bottom:93.914667pt;}
.y12a{bottom:94.271078pt;}
.y1b4{bottom:95.017333pt;}
.y34{bottom:99.458667pt;}
.y114{bottom:99.560000pt;}
.yeb{bottom:101.286667pt;}
.y1ef{bottom:105.438667pt;}
.y59{bottom:107.198667pt;}
.y1b3{bottom:108.965333pt;}
.y91{bottom:109.190667pt;}
.y113{bottom:113.508000pt;}
.yc7{bottom:115.516696pt;}
.yea{bottom:118.342667pt;}
.y1ee{bottom:119.386667pt;}
.y58{bottom:122.474667pt;}
.y1b2{bottom:122.913333pt;}
.y90{bottom:124.466667pt;}
.y10d{bottom:124.743504pt;}
.y12b{bottom:124.743535pt;}
.y1be{bottom:130.558217pt;}
.y120{bottom:132.280090pt;}
.y1ed{bottom:133.334667pt;}
.ye9{bottom:135.930667pt;}
.y112{bottom:136.111781pt;}
.y1b1{bottom:136.861333pt;}
.y1c3{bottom:137.375936pt;}
.y57{bottom:137.750667pt;}
.y8f{bottom:139.742667pt;}
.y121{bottom:139.979764pt;}
.y108{bottom:140.738667pt;}
.y165{bottom:145.142667pt;}
.y1ec{bottom:147.282667pt;}
.y1b8{bottom:150.808000pt;}
.y1b0{bottom:150.809333pt;}
.ye8{bottom:152.986667pt;}
.y56{bottom:153.026667pt;}
.yc5{bottom:155.018667pt;}
.y33{bottom:155.024000pt;}
.y8e{bottom:155.664000pt;}
.y10e{bottom:155.977409pt;}
.y1f7{bottom:161.229333pt;}
.y1eb{bottom:161.230667pt;}
.y164{bottom:162.729333pt;}
.y122{bottom:164.219219pt;}
.y1af{bottom:164.756000pt;}
.y55{bottom:168.302667pt;}
.ye7{bottom:170.042667pt;}
.yf1{bottom:170.168000pt;}
.yc4{bottom:170.294667pt;}
.y32{bottom:170.300000pt;}
.y8d{bottom:170.940000pt;}
.y1bf{bottom:173.355728pt;}
.y1ea{bottom:175.177333pt;}
.yee{bottom:177.157092pt;}
.y1ae{bottom:178.704000pt;}
.yca{bottom:178.983823pt;}
.y163{bottom:182.442667pt;}
.y54{bottom:183.578667pt;}
.yf0{bottom:184.114667pt;}
.yc3{bottom:185.570667pt;}
.y31{bottom:185.576000pt;}
.y8c{bottom:186.216000pt;}
.ye6{bottom:187.098667pt;}
.y10f{bottom:187.211313pt;}
.y123{bottom:188.458673pt;}
.y1e9{bottom:189.125333pt;}
.y1ad{bottom:192.652000pt;}
.y162{bottom:196.389333pt;}
.y53{bottom:198.854667pt;}
.yc2{bottom:200.846667pt;}
.y30{bottom:200.852000pt;}
.y1c8{bottom:201.004843pt;}
.y8b{bottom:201.492000pt;}
.y1e8{bottom:203.073333pt;}
.ye5{bottom:204.685333pt;}
.y1ac{bottom:206.600000pt;}
.y161{bottom:210.337333pt;}
.yec{bottom:211.346667pt;}
.y124{bottom:212.698128pt;}
.y1c7{bottom:215.721712pt;}
.yc1{bottom:216.122667pt;}
.y2f{bottom:216.128000pt;}
.y1c0{bottom:216.153239pt;}
.y8a{bottom:216.768000pt;}
.y52{bottom:216.953333pt;}
.y1f6{bottom:217.020000pt;}
.y1e7{bottom:217.021333pt;}
.y110{bottom:218.445217pt;}
.y12c{bottom:219.784801pt;}
.y1ab{bottom:220.546667pt;}
.y160{bottom:224.285333pt;}
.y1cb{bottom:225.968978pt;}
.ye4{bottom:227.054667pt;}
.y5b{bottom:229.333333pt;}
.y1c6{bottom:230.438580pt;}
.y1e6{bottom:230.968000pt;}
.y13a{bottom:231.398667pt;}
.y2e{bottom:231.417333pt;}
.y89{bottom:232.044000pt;}
.y51{bottom:232.229333pt;}
.yc0{bottom:232.360000pt;}
.y1aa{bottom:234.494667pt;}
.y125{bottom:236.937582pt;}
.y15f{bottom:238.233333pt;}
.ye3{bottom:241.002667pt;}
.y1e5{bottom:244.916000pt;}
.y1c5{bottom:245.155449pt;}
.y11c{bottom:246.633364pt;}
.y139{bottom:246.674667pt;}
.y2d{bottom:246.693333pt;}
.y50{bottom:247.505333pt;}
.ybf{bottom:247.636000pt;}
.y88{bottom:247.966667pt;}
.y1a9{bottom:248.442667pt;}
.y111{bottom:249.679122pt;}
.y1e4{bottom:258.864000pt;}
.y1c1{bottom:258.950750pt;}
.y138{bottom:261.950667pt;}
.y2c{bottom:261.969333pt;}
.y1a8{bottom:262.390667pt;}
.y4f{bottom:262.781333pt;}
.ybe{bottom:262.912000pt;}
.y87{bottom:263.242667pt;}
.y1e3{bottom:272.812000pt;}
.y1b7{bottom:276.337333pt;}
.y1a7{bottom:276.338667pt;}
.y15e{bottom:276.442667pt;}
.y137{bottom:277.226667pt;}
.y2b{bottom:277.245333pt;}
.y4e{bottom:278.057333pt;}
.ybd{bottom:278.188000pt;}
.y11d{bottom:278.470259pt;}
.y86{bottom:278.518667pt;}
.y1f5{bottom:286.758667pt;}
.y1e2{bottom:286.760000pt;}
.y1a6{bottom:290.285333pt;}
.y136{bottom:292.502667pt;}
.y2a{bottom:292.521333pt;}
.y186{bottom:293.001333pt;}
.ye2{bottom:293.156000pt;}
.y4d{bottom:293.333333pt;}
.ybc{bottom:293.464000pt;}
.y85{bottom:293.794667pt;}
.y1e1{bottom:300.706667pt;}
.y1c2{bottom:301.748261pt;}
.y15d{bottom:303.620000pt;}
.y1a5{bottom:304.233333pt;}
.yed{bottom:305.169793pt;}
.y135{bottom:307.778667pt;}
.y29{bottom:307.797333pt;}
.y185{bottom:308.277333pt;}
.ye1{bottom:308.432000pt;}
.y4c{bottom:308.609333pt;}
.ybb{bottom:308.740000pt;}
.y84{bottom:309.070667pt;}
.y11e{bottom:310.307155pt;}
.y15c{bottom:312.732000pt;}
.y1c4{bottom:314.116282pt;}
.y1e0{bottom:314.654667pt;}
.y1a4{bottom:318.181333pt;}
.y134{bottom:323.054667pt;}
.y28{bottom:323.073333pt;}
.y184{bottom:323.553333pt;}
.ye0{bottom:323.708000pt;}
.y4b{bottom:323.885333pt;}
.yba{bottom:324.016000pt;}
.y83{bottom:324.346667pt;}
.y1df{bottom:328.602667pt;}
.y1a3{bottom:332.129333pt;}
.y133{bottom:338.330667pt;}
.y27{bottom:338.349333pt;}
.y183{bottom:338.829333pt;}
.ydf{bottom:338.984000pt;}
.y4a{bottom:339.161333pt;}
.y82{bottom:339.622667pt;}
.yb9{bottom:340.253333pt;}
.y11f{bottom:342.144051pt;}
.y1f4{bottom:342.549333pt;}
.y1de{bottom:342.550667pt;}
.y1a2{bottom:346.076000pt;}
.y15b{bottom:348.896000pt;}
.y116{bottom:353.286964pt;}
.y132{bottom:353.606667pt;}
.y26{bottom:353.625333pt;}
.y182{bottom:354.105333pt;}
.yde{bottom:354.260000pt;}
.y49{bottom:354.437333pt;}
.y81{bottom:354.898667pt;}
.yb8{bottom:355.529333pt;}
.y1dd{bottom:356.497333pt;}
.y1a1{bottom:360.024000pt;}
.y131{bottom:368.884000pt;}
.y25{bottom:368.901333pt;}
.y181{bottom:369.381333pt;}
.ydd{bottom:369.536000pt;}
.y48{bottom:369.713333pt;}
.y80{bottom:370.174667pt;}
.y1dc{bottom:370.445333pt;}
.yb7{bottom:370.805333pt;}
.y1a0{bottom:373.972000pt;}
.y15a{bottom:376.082667pt;}
.y117{bottom:377.526419pt;}
.y130{bottom:384.160000pt;}
.y24{bottom:384.177333pt;}
.y1db{bottom:384.393333pt;}
.y180{bottom:384.657333pt;}
.ydc{bottom:384.812000pt;}
.y47{bottom:384.989333pt;}
.y159{bottom:385.194667pt;}
.y7f{bottom:385.450667pt;}
.yb6{bottom:386.081333pt;}
.y19f{bottom:387.920000pt;}
.y1da{bottom:398.341333pt;}
.y23{bottom:399.454667pt;}
.y17f{bottom:399.933333pt;}
.ydb{bottom:400.088000pt;}
.y46{bottom:400.265333pt;}
.y7e{bottom:400.726667pt;}
.yb5{bottom:401.357333pt;}
.y118{bottom:401.765873pt;}
.y1b6{bottom:401.866667pt;}
.y19e{bottom:401.868000pt;}
.y1f3{bottom:412.288000pt;}
.y1d9{bottom:412.289333pt;}
.y22{bottom:414.730667pt;}
.y17e{bottom:415.209333pt;}
.yda{bottom:415.364000pt;}
.y45{bottom:415.541333pt;}
.y19d{bottom:415.814667pt;}
.yb4{bottom:416.634667pt;}
.y7d{bottom:416.649333pt;}
.y158{bottom:417.889333pt;}
.y119{bottom:426.005328pt;}
.y1d8{bottom:426.236000pt;}
.y19c{bottom:429.762667pt;}
.y21{bottom:430.006667pt;}
.y17d{bottom:430.485333pt;}
.yd9{bottom:430.640000pt;}
.y44{bottom:430.817333pt;}
.yb3{bottom:431.910667pt;}
.y7c{bottom:431.925333pt;}
.y1d7{bottom:440.184000pt;}
.y19b{bottom:443.710667pt;}
.y157{bottom:443.748000pt;}
.y20{bottom:445.282667pt;}
.y17c{bottom:445.761333pt;}
.yd8{bottom:445.916000pt;}
.y43{bottom:446.093333pt;}
.yb2{bottom:447.186667pt;}
.y7b{bottom:447.201333pt;}
.y11b{bottom:448.369759pt;}
.y11a{bottom:450.244782pt;}
.y156{bottom:452.860000pt;}
.y1d6{bottom:454.132000pt;}
.y107{bottom:454.832000pt;}
.y1b5{bottom:457.657333pt;}
.y19a{bottom:457.658667pt;}
.y1f{bottom:460.558667pt;}
.y12f{bottom:460.644000pt;}
.y17b{bottom:461.037333pt;}
.yd7{bottom:461.192000pt;}
.y42{bottom:461.370667pt;}
.yb1{bottom:462.462667pt;}
.y7a{bottom:462.477333pt;}
.y1f2{bottom:468.078667pt;}
.y1d5{bottom:468.080000pt;}
.y106{bottom:470.108000pt;}
.y199{bottom:471.605333pt;}
.y12e{bottom:474.590667pt;}
.y1e{bottom:475.834667pt;}
.yd6{bottom:476.468000pt;}
.y41{bottom:476.646667pt;}
.yb0{bottom:477.738667pt;}
.y79{bottom:477.753333pt;}
.y1d4{bottom:482.026667pt;}
.y105{bottom:485.384000pt;}
.y155{bottom:488.138667pt;}
.y12d{bottom:488.538667pt;}
.y1d{bottom:491.110667pt;}
.yd5{bottom:491.745333pt;}
.y40{bottom:491.922667pt;}
.yaf{bottom:493.014667pt;}
.y78{bottom:493.029333pt;}
.y17a{bottom:495.708000pt;}
.y1d3{bottom:495.974667pt;}
.y104{bottom:500.660000pt;}
.y154{bottom:503.414667pt;}
.y1c{bottom:506.386667pt;}
.yd4{bottom:507.021333pt;}
.y3f{bottom:507.198667pt;}
.yae{bottom:508.290667pt;}
.y77{bottom:508.305333pt;}
.y1d2{bottom:509.922667pt;}
.y115{bottom:515.770667pt;}
.y103{bottom:515.937333pt;}
.y153{bottom:518.690667pt;}
.y1b{bottom:521.662667pt;}
.yd3{bottom:522.297333pt;}
.y3e{bottom:522.474667pt;}
.yad{bottom:523.566667pt;}
.y76{bottom:523.581333pt;}
.y1d1{bottom:523.870667pt;}
.y102{bottom:531.213333pt;}
.y152{bottom:533.966667pt;}
.y1a{bottom:536.938667pt;}
.yd2{bottom:537.573333pt;}
.y3d{bottom:537.750667pt;}
.y1f1{bottom:537.817333pt;}
.y1d0{bottom:537.818667pt;}
.yac{bottom:538.842667pt;}
.y75{bottom:538.857333pt;}
.y179{bottom:542.532000pt;}
.y190{bottom:543.577333pt;}
.y101{bottom:546.489333pt;}
.y151{bottom:549.242667pt;}
.y1cf{bottom:551.765333pt;}
.y19{bottom:552.214667pt;}
.yd1{bottom:552.849333pt;}
.y3c{bottom:553.026667pt;}
.yab{bottom:554.118667pt;}
.y74{bottom:554.133333pt;}
.y178{bottom:557.808000pt;}
.y18f{bottom:558.853333pt;}
.y100{bottom:561.765333pt;}
.y150{bottom:564.518667pt;}
.y1ce{bottom:565.713333pt;}
.y18{bottom:567.490667pt;}
.yd0{bottom:568.125333pt;}
.y3b{bottom:568.302667pt;}
.yaa{bottom:569.394667pt;}
.y73{bottom:569.409333pt;}
.y177{bottom:573.085333pt;}
.y18e{bottom:574.129333pt;}
.yff{bottom:577.041333pt;}
.y14f{bottom:579.794667pt;}
.y17{bottom:582.766667pt;}
.ycf{bottom:583.401333pt;}
.y3a{bottom:583.578667pt;}
.ya9{bottom:584.670667pt;}
.y72{bottom:584.685333pt;}
.y18d{bottom:589.405333pt;}
.y176{bottom:590.885333pt;}
.yfe{bottom:592.317333pt;}
.y14e{bottom:595.070667pt;}
.y16{bottom:598.042667pt;}
.yce{bottom:598.677333pt;}
.ya8{bottom:599.946667pt;}
.y71{bottom:599.961333pt;}
.y39{bottom:601.677333pt;}
.y18c{bottom:604.681333pt;}
.y175{bottom:606.161333pt;}
.y14d{bottom:610.346667pt;}
.y1cd{bottom:611.209333pt;}
.y15{bottom:613.318667pt;}
.ya7{bottom:615.222667pt;}
.y70{bottom:615.237333pt;}
.y38{bottom:616.953333pt;}
.y18b{bottom:619.957333pt;}
.y174{bottom:621.437333pt;}
.y1cc{bottom:625.157333pt;}
.y14c{bottom:625.622667pt;}
.y198{bottom:625.669333pt;}
.yfd{bottom:626.549333pt;}
.y14{bottom:628.594667pt;}
.ya6{bottom:630.498667pt;}
.y6f{bottom:630.513333pt;}
.y37{bottom:632.229333pt;}
.y18a{bottom:635.233333pt;}
.y173{bottom:637.210667pt;}
.y14b{bottom:640.898667pt;}
.y13{bottom:643.870667pt;}
.ycd{bottom:644.173333pt;}
.ya5{bottom:645.774667pt;}
.y6e{bottom:645.789333pt;}
.y36{bottom:647.505333pt;}
.y189{bottom:650.509333pt;}
.y1b9{bottom:652.388000pt;}
.y172{bottom:652.486667pt;}
.ycc{bottom:658.121333pt;}
.ya4{bottom:661.050667pt;}
.y6d{bottom:661.065333pt;}
.y35{bottom:662.781333pt;}
.y188{bottom:665.785333pt;}
.y171{bottom:667.762667pt;}
.ycb{bottom:672.068000pt;}
.ya3{bottom:676.326667pt;}
.y14a{bottom:676.850667pt;}
.y6c{bottom:676.988000pt;}
.y12{bottom:678.057333pt;}
.y197{bottom:680.948000pt;}
.y170{bottom:683.038667pt;}
.ya2{bottom:691.602667pt;}
.yfc{bottom:691.829333pt;}
.y6b{bottom:692.264000pt;}
.y149{bottom:694.437333pt;}
.y196{bottom:696.224000pt;}
.y16f{bottom:698.314667pt;}
.yc6{bottom:699.300000pt;}
.y187{bottom:699.958667pt;}
.ya1{bottom:706.878667pt;}
.y6a{bottom:707.540000pt;}
.yfb{bottom:708.885333pt;}
.y16e{bottom:710.048000pt;}
.y195{bottom:711.500000pt;}
.y148{bottom:712.025333pt;}
.y16d{bottom:713.590667pt;}
.y11{bottom:719.568000pt;}
.ya0{bottom:722.154667pt;}
.y69{bottom:722.816000pt;}
.y16c{bottom:725.324000pt;}
.yfa{bottom:725.941333pt;}
.y194{bottom:726.776000pt;}
.y16b{bottom:728.866667pt;}
.y147{bottom:729.081333pt;}
.y10{bottom:733.516000pt;}
.y68{bottom:738.092000pt;}
.y193{bottom:742.052000pt;}
.yf9{bottom:742.997333pt;}
.y16a{bottom:744.142667pt;}
.yf{bottom:747.464000pt;}
.y146{bottom:749.458667pt;}
.y67{bottom:753.368000pt;}
.y9f{bottom:757.289333pt;}
.y192{bottom:757.328000pt;}
.y169{bottom:759.418667pt;}
.yf8{bottom:760.585333pt;}
.ye{bottom:761.412000pt;}
.y145{bottom:763.405333pt;}
.y66{bottom:768.644000pt;}
.y9e{bottom:771.237333pt;}
.y191{bottom:772.604000pt;}
.y168{bottom:774.694667pt;}
.yd{bottom:775.358667pt;}
.yf7{bottom:782.954667pt;}
.y65{bottom:783.920000pt;}
.yc{bottom:789.306667pt;}
.y167{bottom:789.970667pt;}
.yf6{bottom:796.902667pt;}
.y64{bottom:799.196000pt;}
.y144{bottom:801.616000pt;}
.yb{bottom:803.254667pt;}
.y166{bottom:805.246667pt;}
.yf5{bottom:810.849333pt;}
.y63{bottom:814.472000pt;}
.y143{bottom:816.892000pt;}
.ya{bottom:817.202667pt;}
.y9d{bottom:820.522667pt;}
.y62{bottom:829.748000pt;}
.y9{bottom:831.149333pt;}
.y142{bottom:832.168000pt;}
.y9c{bottom:835.798667pt;}
.y61{bottom:845.024000pt;}
.y8{bottom:845.097333pt;}
.y141{bottom:847.444000pt;}
.y9b{bottom:851.074667pt;}
.y7{bottom:859.045333pt;}
.y60{bottom:860.301333pt;}
.y140{bottom:862.720000pt;}
.y9a{bottom:866.350667pt;}
.y5f{bottom:875.577333pt;}
.y13f{bottom:877.996000pt;}
.y99{bottom:881.626667pt;}
.y6{bottom:890.690667pt;}
.y13e{bottom:893.272000pt;}
.y98{bottom:896.902667pt;}
.y5{bottom:899.560000pt;}
.y13d{bottom:908.548000pt;}
.y5e{bottom:910.396000pt;}
.y97{bottom:912.178667pt;}
.yf4{bottom:912.180000pt;}
.y4{bottom:918.586667pt;}
.y13c{bottom:923.824000pt;}
.y96{bottom:927.454667pt;}
.yf3{bottom:927.456000pt;}
.y3{bottom:932.534667pt;}
.y13b{bottom:939.100000pt;}
.y2{bottom:941.402667pt;}
.y95{bottom:942.730667pt;}
.yf2{bottom:942.732000pt;}
.y94{bottom:958.006667pt;}
.y5d{bottom:958.008000pt;}
.y93{bottom:973.282667pt;}
.y1{bottom:973.284000pt;}
.y5c{bottom:1007.821333pt;}
.h9{height:14.922402pt;}
.h3{height:22.107556pt;}
.h7{height:33.474560pt;}
.h4{height:34.239693pt;}
.h16{height:34.333858pt;}
.h5{height:35.865600pt;}
.h18{height:36.696739pt;}
.h21{height:37.273957pt;}
.h8{height:39.850400pt;}
.h22{height:41.451228pt;}
.h13{height:42.010259pt;}
.h1f{height:42.089071pt;}
.h6{height:44.318933pt;}
.h14{height:44.324267pt;}
.hd{height:44.683229pt;}
.ha{height:44.688562pt;}
.h2{height:45.097692pt;}
.h11{height:47.431839pt;}
.h1e{height:47.554688pt;}
.h1{height:47.820800pt;}
.h1b{height:48.133895pt;}
.hc{height:49.242400pt;}
.h10{height:51.234391pt;}
.hf{height:51.896735pt;}
.h1c{height:54.021067pt;}
.h1d{height:62.304562pt;}
.h19{height:75.797067pt;}
.h1a{height:76.298400pt;}
.hb{height:104.687500pt;}
.h15{height:284.826771pt;}
.he{height:287.264200pt;}
.h20{height:334.177616pt;}
.h12{height:400.625369pt;}
.h17{height:470.800345pt;}
.h0{height:1056.000000pt;}
.w4{width:321.263727pt;}
.w3{width:321.267805pt;}
.w2{width:340.113744pt;}
.w5{width:663.907258pt;}
.w1{width:744.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:13.668636pt;}
.x33{left:14.609321pt;}
.x47{left:16.185421pt;}
.x24{left:20.894601pt;}
.x23{left:21.950189pt;}
.x32{left:23.003972pt;}
.x2b{left:27.026162pt;}
.x31{left:29.284067pt;}
.x2c{left:32.901885pt;}
.x2f{left:38.711924pt;}
.x11{left:42.666667pt;}
.xd{left:72.000000pt;}
.xe{left:73.770667pt;}
.x29{left:74.757333pt;}
.x41{left:78.144000pt;}
.xc{left:85.284000pt;}
.x30{left:91.003172pt;}
.x42{left:96.426667pt;}
.x22{left:98.892000pt;}
.x21{left:103.221333pt;}
.x3a{left:104.538667pt;}
.x28{left:106.029333pt;}
.x1f{left:108.352000pt;}
.x2a{left:109.549047pt;}
.x26{left:111.160000pt;}
.x2{left:115.918667pt;}
.x45{left:120.086035pt;}
.x34{left:122.825333pt;}
.x20{left:123.734667pt;}
.x27{left:126.544000pt;}
.x1{left:130.006667pt;}
.x13{left:133.276000pt;}
.x46{left:140.070424pt;}
.x7{left:145.058667pt;}
.x1e{left:152.498667pt;}
.x6{left:157.857333pt;}
.x25{left:160.280000pt;}
.xb{left:165.764000pt;}
.x35{left:171.268000pt;}
.x38{left:173.916000pt;}
.x3f{left:177.324000pt;}
.x3{left:179.178667pt;}
.x4{left:188.486667pt;}
.x36{left:201.144000pt;}
.x4d{left:217.582714pt;}
.x37{left:221.817333pt;}
.x39{left:229.870667pt;}
.x1c{left:240.437015pt;}
.x48{left:246.416579pt;}
.x5{left:258.084000pt;}
.x8{left:274.918667pt;}
.x1b{left:314.227647pt;}
.x1a{left:316.466457pt;}
.x9{left:344.882667pt;}
.x49{left:356.970259pt;}
.x1d{left:360.961057pt;}
.x4a{left:376.954648pt;}
.xa{left:407.338667pt;}
.xf{left:422.685333pt;}
.x2e{left:425.442667pt;}
.x14{left:427.222667pt;}
.x44{left:428.828000pt;}
.x10{left:435.968000pt;}
.x43{left:447.112000pt;}
.x3c{left:465.481333pt;}
.x3e{left:475.592000pt;}
.x18{left:479.342667pt;}
.x17{left:480.316000pt;}
.x40{left:483.270667pt;}
.x15{left:560.097333pt;}
.x4c{left:570.020218pt;}
.x19{left:581.740000pt;}
.x4b{left:611.562725pt;}
.x3d{left:626.265333pt;}
.x3b{left:656.000000pt;}
.x16{left:709.850667pt;}
.x12{left:742.817333pt;}
}




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