
    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_8e991e3607d448a2d052a193.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f9d94a097e945414e38d8ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0282396cf33b51258ba4beb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_28dc1d40df1e6ad0ac716a24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ce75fe934e56b9dba50d9acf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.457000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7259d22469757f5e4f8c3755.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d6e11626326a265d1fbdbe53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_786b567eb218b9c729bcd369.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943000;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_9fa35e8d2a2182c1ecedbc64.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e609d60d5d4ebcba95986c49.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_da8cd729013ebd40975a0fe3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;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_56bf288120a95662c3673059.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.485000;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_d4d04f426e46797824d4ea74.woff2')format("woff");}.fff{font-family:fff;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6ecdb29b1660b7e1a9eeca4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.040000;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_f1deeba990aaa44c4bfb9693.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.051000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b31775ae55a3e240cb7fc01e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.457000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5b{letter-spacing:-1.170108px;}
.ls4b{letter-spacing:-1.152468px;}
.ls5e{letter-spacing:-1.128943px;}
.ls14{letter-spacing:-1.123069px;}
.ls4a{letter-spacing:-1.111309px;}
.lsf{letter-spacing:-1.099549px;}
.ls12{letter-spacing:-1.093663px;}
.lse{letter-spacing:-1.087789px;}
.ls4f{letter-spacing:-1.081909px;}
.ls15{letter-spacing:-1.076029px;}
.ls4e{letter-spacing:-1.070149px;}
.ls11{letter-spacing:-1.064269px;}
.ls59{letter-spacing:-1.058389px;}
.ls49{letter-spacing:-1.052509px;}
.ls5c{letter-spacing:-1.046629px;}
.ls4d{letter-spacing:-1.034869px;}
.ls50{letter-spacing:-1.028990px;}
.ls4c{letter-spacing:-1.023110px;}
.ls51{letter-spacing:-1.017230px;}
.ls13{letter-spacing:-1.011350px;}
.ls10{letter-spacing:-0.999590px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000038px;}
.ls48{letter-spacing:0.005880px;}
.ls64{letter-spacing:0.044947px;}
.ls62{letter-spacing:0.044968px;}
.ls65{letter-spacing:0.045010px;}
.ls63{letter-spacing:0.045032px;}
.ls57{letter-spacing:0.058790px;}
.ls21{letter-spacing:0.095996px;}
.ls20{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.352778px;}
.ls61{letter-spacing:0.404969px;}
.ls3c{letter-spacing:0.552714px;}
.ls46{letter-spacing:0.558594px;}
.ls40{letter-spacing:0.570354px;}
.ls60{letter-spacing:0.575992px;}
.ls47{letter-spacing:0.582114px;}
.ls3d{letter-spacing:0.587994px;}
.ls41{letter-spacing:0.593874px;}
.ls19{letter-spacing:0.605634px;}
.ls38{letter-spacing:0.611514px;}
.ls3f{letter-spacing:0.617394px;}
.ls1b{letter-spacing:0.623274px;}
.ls1d{letter-spacing:0.629154px;}
.ls37{letter-spacing:0.635034px;}
.ls1a{letter-spacing:0.640913px;}
.ls68{letter-spacing:0.643491px;}
.ls1c{letter-spacing:0.646793px;}
.ls3b{letter-spacing:0.652673px;}
.ls39{letter-spacing:0.658553px;}
.ls36{letter-spacing:0.664433px;}
.ls3a{letter-spacing:0.670313px;}
.ls3e{letter-spacing:0.699713px;}
.ls58{letter-spacing:0.758512px;}
.ls1f{letter-spacing:1.004395px;}
.ls44{letter-spacing:1.146588px;}
.ls42{letter-spacing:1.158348px;}
.ls34{letter-spacing:1.181868px;}
.ls32{letter-spacing:1.211268px;}
.ls33{letter-spacing:1.217148px;}
.ls35{letter-spacing:1.228902px;}
.ls31{letter-spacing:1.234787px;}
.ls2e{letter-spacing:1.240667px;}
.ls2d{letter-spacing:1.252427px;}
.ls30{letter-spacing:1.258307px;}
.ls1e{letter-spacing:1.274400px;}
.ls2f{letter-spacing:1.293587px;}
.ls45{letter-spacing:2.410775px;}
.ls69{letter-spacing:13.297323px;}
.ls66{letter-spacing:13.319820px;}
.ls6a{letter-spacing:13.657318px;}
.ls54{letter-spacing:14.582226px;}
.ls53{letter-spacing:14.699839px;}
.ls5d{letter-spacing:14.935048px;}
.ls28{letter-spacing:16.169822px;}
.ls5a{letter-spacing:16.446192px;}
.ls52{letter-spacing:16.463833px;}
.ls25{letter-spacing:17.051798px;}
.ls56{letter-spacing:17.757470px;}
.ls9{letter-spacing:17.875022px;}
.ls1{letter-spacing:17.940180px;}
.ls5{letter-spacing:17.992618px;}
.lsa{letter-spacing:18.416400px;}
.ls5f{letter-spacing:18.515280px;}
.ls67{letter-spacing:18.670251px;}
.ls2b{letter-spacing:18.933362px;}
.ls55{letter-spacing:19.168633px;}
.ls29{letter-spacing:19.227362px;}
.ls2{letter-spacing:19.227422px;}
.ls16{letter-spacing:19.580162px;}
.ls4{letter-spacing:19.756598px;}
.ls6{letter-spacing:19.932962px;}
.ls17{letter-spacing:19.933022px;}
.ls3{letter-spacing:20.285822px;}
.ls18{letter-spacing:20.932562px;}
.ls7{letter-spacing:20.932622px;}
.lsd{letter-spacing:21.050158px;}
.lsc{letter-spacing:21.461798px;}
.ls22{letter-spacing:22.755600px;}
.ls2c{letter-spacing:22.990562px;}
.ls27{letter-spacing:23.166998px;}
.ls8{letter-spacing:25.401362px;}
.ls26{letter-spacing:25.618899px;}
.ls2a{letter-spacing:26.753702px;}
.ls23{letter-spacing:27.165298px;}
.ls43{letter-spacing:28.523589px;}
.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;}
}
.ws127{word-spacing:-28.582388px;}
.wsfd{word-spacing:-25.677698px;}
.wsca{word-spacing:-22.809600px;}
.ws18f{word-spacing:-18.715250px;}
.ws18a{word-spacing:-18.577080px;}
.ws173{word-spacing:-16.504992px;}
.ws178{word-spacing:-14.993847px;}
.ws19c{word-spacing:-13.702317px;}
.ws19b{word-spacing:-13.342322px;}
.wscb{word-spacing:-1.058395px;}
.ws187{word-spacing:-0.817312px;}
.ws153{word-spacing:-0.629154px;}
.wsa{word-spacing:-0.061800px;}
.ws36{word-spacing:-0.058799px;}
.wsbf{word-spacing:-0.047999px;}
.ws5{word-spacing:-0.044999px;}
.wse6{word-spacing:-0.041999px;}
.ws0{word-spacing:0.000000px;}
.ws1a4{word-spacing:10.844855px;}
.ws1a5{word-spacing:10.979854px;}
.ws1a7{word-spacing:11.474847px;}
.ws1a6{word-spacing:11.654845px;}
.ws1a2{word-spacing:12.194872px;}
.ws23{word-spacing:12.431822px;}
.ws25{word-spacing:12.473822px;}
.ws26{word-spacing:12.515821px;}
.ws24{word-spacing:12.557797px;}
.wse4{word-spacing:12.725818px;}
.wse5{word-spacing:12.893816px;}
.ws1a3{word-spacing:13.049793px;}
.ws1a8{word-spacing:13.049826px;}
.ws19d{word-spacing:13.094825px;}
.ws1a0{word-spacing:13.139825px;}
.ws196{word-spacing:13.184824px;}
.ws192{word-spacing:13.229824px;}
.ws199{word-spacing:13.229851px;}
.ws197{word-spacing:13.274823px;}
.ws189{word-spacing:13.319822px;}
.ws1a1{word-spacing:13.364769px;}
.ws195{word-spacing:13.364822px;}
.ws191{word-spacing:13.409821px;}
.ws190{word-spacing:13.454821px;}
.ws8{word-spacing:13.499820px;}
.ws7{word-spacing:13.544819px;}
.ws198{word-spacing:13.544871px;}
.ws18c{word-spacing:13.589819px;}
.ws194{word-spacing:13.589820px;}
.ws19a{word-spacing:13.634818px;}
.ws19e{word-spacing:13.654420px;}
.ws19f{word-spacing:13.679797px;}
.ws18b{word-spacing:13.679818px;}
.ws6{word-spacing:13.724817px;}
.ws28{word-spacing:13.727828px;}
.ws193{word-spacing:13.769816px;}
.ws121{word-spacing:13.823827px;}
.ws188{word-spacing:13.859815px;}
.wscc{word-spacing:13.871827px;}
.ws9{word-spacing:13.949814px;}
.ws123{word-spacing:13.967825px;}
.ws122{word-spacing:14.015825px;}
.wsc0{word-spacing:14.111824px;}
.wsbe{word-spacing:14.159823px;}
.wsbd{word-spacing:14.207822px;}
.ws27{word-spacing:14.207830px;}
.ws56{word-spacing:14.255822px;}
.ws2a{word-spacing:14.303821px;}
.ws101{word-spacing:14.523452px;}
.wsff{word-spacing:14.758649px;}
.ws100{word-spacing:14.817449px;}
.ws111{word-spacing:14.876248px;}
.wsfb{word-spacing:15.111446px;}
.wsc3{word-spacing:15.170245px;}
.wsfa{word-spacing:15.229045px;}
.wsf1{word-spacing:15.287844px;}
.ws10d{word-spacing:15.346643px;}
.wsfe{word-spacing:15.523042px;}
.wsef{word-spacing:15.581841px;}
.ws10c{word-spacing:15.817039px;}
.wsf0{word-spacing:15.993437px;}
.ws120{word-spacing:16.038000px;}
.wsc9{word-spacing:16.092000px;}
.ws110{word-spacing:16.169835px;}
.ws11f{word-spacing:16.200000px;}
.ws10e{word-spacing:16.346233px;}
.ws96{word-spacing:16.416792px;}
.ws16f{word-spacing:16.657870px;}
.ws15b{word-spacing:16.681390px;}
.ws169{word-spacing:16.751949px;}
.ws16a{word-spacing:16.834268px;}
.ws16e{word-spacing:16.846028px;}
.ws177{word-spacing:16.846068px;}
.ws10f{word-spacing:16.934227px;}
.ws99{word-spacing:16.951867px;}
.ws179{word-spacing:17.004781px;}
.ws92{word-spacing:17.151785px;}
.wsf4{word-spacing:17.169425px;}
.ws93{word-spacing:17.292904px;}
.ws18e{word-spacing:17.333769px;}
.ws109{word-spacing:17.345823px;}
.wsa3{word-spacing:17.404622px;}
.ws32{word-spacing:17.463422px;}
.ws3d{word-spacing:17.522221px;}
.ws8a{word-spacing:17.581021px;}
.ws1d{word-spacing:17.639820px;}
.ws2f{word-spacing:17.698619px;}
.ws37{word-spacing:17.757419px;}
.ws11{word-spacing:17.760178px;}
.ws4f{word-spacing:17.816218px;}
.wsc{word-spacing:17.820178px;}
.ws7c{word-spacing:17.875018px;}
.ws49{word-spacing:17.933817px;}
.wse{word-spacing:17.940179px;}
.ws1b{word-spacing:17.992616px;}
.wsb{word-spacing:18.000180px;}
.ws16{word-spacing:18.051416px;}
.ws12{word-spacing:18.060181px;}
.ws175{word-spacing:18.098455px;}
.ws39{word-spacing:18.110215px;}
.wsf{word-spacing:18.120181px;}
.ws74{word-spacing:18.169015px;}
.ws10{word-spacing:18.180182px;}
.ws3e{word-spacing:18.227814px;}
.ws16b{word-spacing:18.263094px;}
.ws18d{word-spacing:18.269756px;}
.ws176{word-spacing:18.274854px;}
.ws9e{word-spacing:18.286613px;}
.ws59{word-spacing:18.345413px;}
.ws9d{word-spacing:18.345428px;}
.wsd{word-spacing:18.360184px;}
.ws114{word-spacing:18.463012px;}
.ws15{word-spacing:18.521811px;}
.wsc5{word-spacing:18.540000px;}
.ws152{word-spacing:18.551211px;}
.wse7{word-spacing:18.580610px;}
.ws4a{word-spacing:18.601800px;}
.ws73{word-spacing:18.639410px;}
.ws16c{word-spacing:18.651170px;}
.ws50{word-spacing:18.698209px;}
.ws118{word-spacing:18.757009px;}
.wsa5{word-spacing:18.787200px;}
.ws34{word-spacing:18.815808px;}
.ws174{word-spacing:18.833473px;}
.wsa4{word-spacing:18.849000px;}
.wsaa{word-spacing:18.874607px;}
.ws16d{word-spacing:18.898127px;}
.ws30{word-spacing:18.933407px;}
.wsec{word-spacing:18.992206px;}
.ws112{word-spacing:19.051006px;}
.ws52{word-spacing:19.109769px;}
.ws113{word-spacing:19.109805px;}
.wsc6{word-spacing:19.168604px;}
.wsae{word-spacing:19.227404px;}
.ws53{word-spacing:19.286203px;}
.ws51{word-spacing:19.286224px;}
.wsa6{word-spacing:19.345003px;}
.wsb4{word-spacing:19.403802px;}
.ws70{word-spacing:19.462601px;}
.ws6a{word-spacing:19.521401px;}
.ws163{word-spacing:19.556675px;}
.ws6f{word-spacing:19.580200px;}
.ws8f{word-spacing:19.609600px;}
.ws170{word-spacing:19.639000px;}
.ws38{word-spacing:19.697799px;}
.ws90{word-spacing:19.738959px;}
.ws3a{word-spacing:19.756598px;}
.ws87{word-spacing:19.815398px;}
.ws6e{word-spacing:19.874197px;}
.ws22{word-spacing:19.932997px;}
.ws7b{word-spacing:19.933002px;}
.ws162{word-spacing:19.985916px;}
.ws154{word-spacing:19.991796px;}
.ws4{word-spacing:19.998182px;}
.ws69{word-spacing:20.050595px;}
.wsc2{word-spacing:20.109395px;}
.ws4b{word-spacing:20.168194px;}
.ws161{word-spacing:20.197594px;}
.ws165{word-spacing:20.203474px;}
.ws164{word-spacing:20.279913px;}
.ws115{word-spacing:20.285793px;}
.ws158{word-spacing:20.344592px;}
.ws97{word-spacing:20.468071px;}
.wsa7{word-spacing:20.520991px;}
.ws98{word-spacing:20.538630px;}
.ws4c{word-spacing:20.579790px;}
.ws54{word-spacing:20.638589px;}
.ws6b{word-spacing:20.697389px;}
.ws102{word-spacing:20.756188px;}
.ws4e{word-spacing:20.814988px;}
.wsb2{word-spacing:20.873787px;}
.wsa9{word-spacing:20.932586px;}
.ws2e{word-spacing:20.991386px;}
.ws88{word-spacing:20.991432px;}
.ws71{word-spacing:21.050185px;}
.ws166{word-spacing:21.132504px;}
.wsb5{word-spacing:21.167784px;}
.ws7d{word-spacing:21.226583px;}
.ws95{word-spacing:21.261857px;}
.ws2c{word-spacing:21.285383px;}
.ws94{word-spacing:21.291263px;}
.ws11a{word-spacing:21.344182px;}
.ws72{word-spacing:21.402982px;}
.ws19{word-spacing:21.461781px;}
.ws40{word-spacing:21.520580px;}
.ws5a{word-spacing:21.579380px;}
.ws9c{word-spacing:21.638179px;}
.ws60{word-spacing:21.696979px;}
.ws48{word-spacing:21.755778px;}
.ws11d{word-spacing:21.796938px;}
.ws58{word-spacing:21.814577px;}
.wsad{word-spacing:21.873377px;}
.ws5d{word-spacing:21.932176px;}
.wsf2{word-spacing:21.990976px;}
.ws159{word-spacing:22.020375px;}
.ws1e{word-spacing:22.049775px;}
.ws137{word-spacing:22.055661px;}
.wsc4{word-spacing:22.108574px;}
.ws15a{word-spacing:22.167374px;}
.ws4d{word-spacing:22.226173px;}
.ws157{word-spacing:22.243813px;}
.ws1c{word-spacing:22.284973px;}
.ws63{word-spacing:22.343772px;}
.ws62{word-spacing:22.402571px;}
.ws172{word-spacing:22.414331px;}
.ws84{word-spacing:22.461371px;}
.ws64{word-spacing:22.520170px;}
.ws13e{word-spacing:22.526050px;}
.ws138{word-spacing:22.561330px;}
.ws3f{word-spacing:22.578970px;}
.wsb6{word-spacing:22.620129px;}
.ws41{word-spacing:22.637769px;}
.ws150{word-spacing:22.708328px;}
.ws12d{word-spacing:22.714208px;}
.ws13f{word-spacing:22.725968px;}
.ws104{word-spacing:22.814167px;}
.ws18{word-spacing:22.872967px;}
.wsf5{word-spacing:22.931766px;}
.ws85{word-spacing:22.990565px;}
.ws91{word-spacing:23.031725px;}
.ws143{word-spacing:23.061125px;}
.wsac{word-spacing:23.108164px;}
.ws44{word-spacing:23.166964px;}
.ws9b{word-spacing:23.225763px;}
.wsab{word-spacing:23.284562px;}
.ws149{word-spacing:23.290442px;}
.ws184{word-spacing:23.296322px;}
.ws67{word-spacing:23.343362px;}
.ws185{word-spacing:23.378641px;}
.ws7f{word-spacing:23.402161px;}
.ws136{word-spacing:23.443321px;}
.ws21{word-spacing:23.460961px;}
.wsee{word-spacing:23.519760px;}
.ws135{word-spacing:23.537400px;}
.ws61{word-spacing:23.578559px;}
.ws147{word-spacing:23.625599px;}
.ws1{word-spacing:23.634000px;}
.wsf9{word-spacing:23.637359px;}
.ws7a{word-spacing:23.696158px;}
.ws12c{word-spacing:23.713798px;}
.ws119{word-spacing:23.754958px;}
.ws79{word-spacing:23.754985px;}
.ws5f{word-spacing:23.813757px;}
.ws9a{word-spacing:23.872556px;}
.ws146{word-spacing:23.907836px;}
.ws133{word-spacing:23.925476px;}
.ws47{word-spacing:23.931356px;}
.ws12b{word-spacing:23.960756px;}
.ws107{word-spacing:23.990155px;}
.ws183{word-spacing:24.019555px;}
.ws89{word-spacing:24.048955px;}
.ws7e{word-spacing:24.107754px;}
.ws78{word-spacing:24.166553px;}
.ws134{word-spacing:24.172439px;}
.ws17f{word-spacing:24.225353px;}
.wsf6{word-spacing:24.284152px;}
.ws3b{word-spacing:24.342952px;}
.ws2d{word-spacing:24.401751px;}
.ws11e{word-spacing:24.454670px;}
.ws45{word-spacing:24.519350px;}
.ws31{word-spacing:24.578149px;}
.ws180{word-spacing:24.636949px;}
.ws14d{word-spacing:24.654588px;}
.ws8c{word-spacing:24.695748px;}
.ws167{word-spacing:24.713388px;}
.ws186{word-spacing:24.731028px;}
.ws8d{word-spacing:24.754547px;}
.ws12a{word-spacing:24.795707px;}
.ws15e{word-spacing:24.813347px;}
.ws65{word-spacing:24.872146px;}
.ws5b{word-spacing:24.930946px;}
.wsed{word-spacing:24.930947px;}
.ws129{word-spacing:24.954465px;}
.ws168{word-spacing:24.966219px;}
.ws5e{word-spacing:24.989745px;}
.wsb3{word-spacing:25.048544px;}
.wsfc{word-spacing:25.107344px;}
.ws139{word-spacing:25.119104px;}
.ws80{word-spacing:25.166143px;}
.wsea{word-spacing:25.224943px;}
.ws57{word-spacing:25.283742px;}
.ws76{word-spacing:25.342541px;}
.ws144{word-spacing:25.395461px;}
.ws6c{word-spacing:25.401341px;}
.ws117{word-spacing:25.460140px;}
.ws13a{word-spacing:25.571859px;}
.ws11b{word-spacing:25.636538px;}
.wseb{word-spacing:25.695338px;}
.ws77{word-spacing:25.754137px;}
.ws126{word-spacing:25.789417px;}
.ws131{word-spacing:25.871736px;}
.ws13b{word-spacing:25.912896px;}
.ws151{word-spacing:25.942295px;}
.wsbb{word-spacing:25.948175px;}
.ws13d{word-spacing:25.977575px;}
.ws2b{word-spacing:25.989335px;}
.wsbc{word-spacing:26.012855px;}
.wsa2{word-spacing:26.048134px;}
.ws14a{word-spacing:26.065774px;}
.ws13c{word-spacing:26.083414px;}
.ws15d{word-spacing:26.106934px;}
.ws103{word-spacing:26.224532px;}
.ws66{word-spacing:26.283332px;}
.ws14{word-spacing:26.400931px;}
.ws125{word-spacing:26.418570px;}
.ws81{word-spacing:26.459730px;}
.ws145{word-spacing:26.583209px;}
.ws10a{word-spacing:26.636128px;}
.wsa0{word-spacing:26.753727px;}
.wsa1{word-spacing:26.930125px;}
.ws116{word-spacing:26.988925px;}
.ws46{word-spacing:27.047724px;}
.ws155{word-spacing:27.106523px;}
.ws14c{word-spacing:27.200602px;}
.ws171{word-spacing:27.224122px;}
.wsa8{word-spacing:27.282922px;}
.ws42{word-spacing:27.341721px;}
.ws1f{word-spacing:27.400520px;}
.wsb0{word-spacing:27.459320px;}
.wsba{word-spacing:27.635718px;}
.ws12e{word-spacing:27.653358px;}
.wsc1{word-spacing:27.929715px;}
.ws20{word-spacing:27.988514px;}
.ws3c{word-spacing:28.047314px;}
.ws83{word-spacing:28.106113px;}
.ws29{word-spacing:28.271678px;}
.ws1a{word-spacing:28.341311px;}
.ws35{word-spacing:28.400110px;}
.ws148{word-spacing:28.517709px;}
.ws132{word-spacing:28.594148px;}
.ws43{word-spacing:28.635308px;}
.ws68{word-spacing:28.988104px;}
.ws8b{word-spacing:29.223302px;}
.ws128{word-spacing:29.282101px;}
.wse9{word-spacing:29.340901px;}
.ws9f{word-spacing:29.399700px;}
.wse8{word-spacing:29.458499px;}
.ws15f{word-spacing:29.570218px;}
.wsf7{word-spacing:29.576098px;}
.ws6d{word-spacing:29.752496px;}
.ws105{word-spacing:29.811296px;}
.ws160{word-spacing:29.870095px;}
.wsf8{word-spacing:30.046493px;}
.ws13{word-spacing:30.164092px;}
.ws8e{word-spacing:30.222892px;}
.ws10b{word-spacing:30.340490px;}
.ws17{word-spacing:30.516889px;}
.wsf3{word-spacing:30.634487px;}
.wsaf{word-spacing:30.752086px;}
.ws33{word-spacing:30.810886px;}
.ws141{word-spacing:30.963764px;}
.ws17a{word-spacing:30.987284px;}
.ws140{word-spacing:31.069603px;}
.wsb7{word-spacing:31.228361px;}
.ws11c{word-spacing:31.398880px;}
.ws82{word-spacing:31.457679px;}
.ws14b{word-spacing:31.592918px;}
.ws17e{word-spacing:31.869275px;}
.wsc8{word-spacing:32.339670px;}
.ws182{word-spacing:32.398469px;}
.wsc7{word-spacing:32.457269px;}
.ws181{word-spacing:32.516068px;}
.ws14f{word-spacing:32.815945px;}
.ws14e{word-spacing:32.951184px;}
.ws86{word-spacing:32.986463px;}
.ws75{word-spacing:33.162862px;}
.ws156{word-spacing:33.921374px;}
.wsb8{word-spacing:33.950774px;}
.wsb9{word-spacing:34.144812px;}
.ws17d{word-spacing:34.456448px;}
.ws15c{word-spacing:36.396829px;}
.ws124{word-spacing:36.690826px;}
.ws17b{word-spacing:36.808424px;}
.ws12f{word-spacing:36.984787px;}
.ws17c{word-spacing:37.102421px;}
.ws142{word-spacing:38.313689px;}
.ws108{word-spacing:38.984002px;}
.wsb1{word-spacing:39.277999px;}
.ws130{word-spacing:39.683715px;}
.ws5c{word-spacing:39.865993px;}
.ws55{word-spacing:42.629565px;}
.ws3{word-spacing:43.056179px;}
.ws2{word-spacing:43.344181px;}
.ws106{word-spacing:59.093397px;}
.wsd7{word-spacing:75.215060px;}
.wscf{word-spacing:75.263059px;}
.wsd2{word-spacing:75.407057px;}
.wscd{word-spacing:75.503056px;}
.wsce{word-spacing:90.766865px;}
.wsd1{word-spacing:91.294867px;}
.wsde{word-spacing:116.830537px;}
.wsdd{word-spacing:148.798140px;}
.wsdf{word-spacing:163.341958px;}
.wsd4{word-spacing:219.693254px;}
.wsd8{word-spacing:220.173248px;}
.wse1{word-spacing:233.181085px;}
.wsd3{word-spacing:236.637042px;}
.wse3{word-spacing:239.613005px;}
.wse0{word-spacing:246.668917px;}
.wsd5{word-spacing:253.148836px;}
.wsda{word-spacing:256.652792px;}
.wsd9{word-spacing:260.108749px;}
.wsd0{word-spacing:263.180710px;}
.wsdb{word-spacing:263.660704px;}
.wsd6{word-spacing:266.636667px;}
.wse2{word-spacing:288.620392px;}
.wsdc{word-spacing:316.604042px;}
._2c{margin-left:-28.064530px;}
._28{margin-left:-26.325424px;}
._1c{margin-left:-22.626000px;}
._1b{margin-left:-21.492000px;}
._1d{margin-left:-20.412000px;}
._33{margin-left:-18.936964px;}
._2f{margin-left:-17.816218px;}
._31{margin-left:-16.733805px;}
._30{margin-left:-15.253069px;}
._35{margin-left:-12.986859px;}
._1a{margin-left:-5.468344px;}
._a{margin-left:-4.257581px;}
._12{margin-left:-3.057534px;}
._e{margin-left:-1.151986px;}
._2{width:1.200012px;}
._11{width:3.185919px;}
._0{width:8.970000px;}
._36{width:10.624031px;}
._34{width:12.374835px;}
._c{width:13.523770px;}
._d{width:14.831815px;}
._29{width:16.298185px;}
._4{width:17.400174px;}
._3{width:19.080191px;}
._15{width:20.080210px;}
._b{width:21.555356px;}
._6{width:22.707320px;}
._8{width:23.733455px;}
._9{width:24.845601px;}
._19{width:25.957081px;}
._10{width:27.165323px;}
._f{width:28.905281px;}
._7{width:29.928895px;}
._5{width:31.516478px;}
._18{width:32.574868px;}
._17{width:34.643598px;}
._32{width:35.726011px;}
._2e{width:37.562065px;}
._2d{width:39.759225px;}
._16{width:41.004685px;}
._13{width:43.851080px;}
._27{width:75.359058px;}
._21{width:82.462969px;}
._26{width:91.390858px;}
._25{width:98.254772px;}
._22{width:160.701989px;}
._23{width:164.973938px;}
._24{width:166.509932px;}
._20{width:222.093224px;}
._1e{width:241.196984px;}
._1f{width:412.362882px;}
._2a{width:992.819529px;}
._14{width:1017.299289px;}
._2b{width:1189.665094px;}
._1{width:1976.129940px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:27.996600px;}
.fsa{font-size:29.995200px;}
.fs13{font-size:31.995000px;}
.fs12{font-size:35.995200px;}
.fs10{font-size:39.194400px;}
.fse{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fsf{font-size:47.999400px;}
.fs11{font-size:54.000000px;}
.fsd{font-size:58.799400px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.000600px;}
.fsb{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y54{bottom:79.511015px;}
.y211{bottom:90.311850px;}
.y1b7{bottom:90.318825px;}
.yab{bottom:90.333570px;}
.y105{bottom:90.337380px;}
.y84{bottom:90.359250px;}
.yd0{bottom:90.384795px;}
.y186{bottom:90.472470px;}
.y1b4{bottom:90.538305px;}
.yb8{bottom:90.545205px;}
.y53{bottom:91.501850px;}
.y4{bottom:97.125005px;}
.yeb{bottom:99.666102px;}
.y52{bottom:103.492670px;}
.y210{bottom:103.833000px;}
.y1b6{bottom:111.486600px;}
.yaa{bottom:111.501345px;}
.y104{bottom:111.505170px;}
.y83{bottom:111.527040px;}
.ycf{bottom:111.552570px;}
.y185{bottom:111.640260px;}
.y1b3{bottom:111.706095px;}
.yb7{bottom:111.712995px;}
.y51{bottom:115.483505px;}
.y1b5{bottom:132.746400px;}
.ya9{bottom:132.757335px;}
.y103{bottom:132.761145px;}
.y82{bottom:132.783030px;}
.yce{bottom:132.808560px;}
.y184{bottom:132.896250px;}
.y1b2{bottom:132.962085px;}
.yb6{bottom:132.968970px;}
.y20{bottom:139.264499px;}
.y50{bottom:139.881530px;}
.y20f{bottom:151.118730px;}
.ya8{bottom:154.013310px;}
.y102{bottom:154.017135px;}
.y81{bottom:154.039005px;}
.ycd{bottom:154.064535px;}
.y183{bottom:154.152225px;}
.y1b1{bottom:154.218060px;}
.yb5{bottom:154.224960px;}
.y4f{bottom:161.137505px;}
.y20e{bottom:164.551050px;}
.ya7{bottom:175.181100px;}
.y101{bottom:175.184925px;}
.y80{bottom:175.206795px;}
.ycc{bottom:175.232325px;}
.ya5{bottom:175.298115px;}
.y182{bottom:175.320015px;}
.y1b0{bottom:175.385850px;}
.yb4{bottom:175.392750px;}
.ya6{bottom:181.729050px;}
.y4e{bottom:182.305295px;}
.y100{bottom:196.440900px;}
.y20d{bottom:196.455645px;}
.y7f{bottom:196.462770px;}
.ycb{bottom:196.488315px;}
.ya4{bottom:196.554105px;}
.y181{bottom:196.575990px;}
.y164{bottom:196.605300px;}
.y1af{bottom:196.641825px;}
.yb3{bottom:196.648725px;}
.y17{bottom:196.933500px;}
.y165{bottom:202.989000px;}
.y4d{bottom:203.561285px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yff{bottom:217.615650px;}
.y20c{bottom:217.623435px;}
.y7e{bottom:217.630560px;}
.y1e4{bottom:217.645140px;}
.yca{bottom:217.656090px;}
.ya3{bottom:217.721880px;}
.y180{bottom:217.743780px;}
.y163{bottom:217.773090px;}
.y1ae{bottom:217.809615px;}
.yb2{bottom:217.816515px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y4c{bottom:224.729060px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y20b{bottom:238.879410px;}
.y7d{bottom:238.886550px;}
.y1e3{bottom:238.901130px;}
.yc9{bottom:238.912080px;}
.ya2{bottom:238.977870px;}
.y17f{bottom:238.999755px;}
.y162{bottom:239.029065px;}
.y1ad{bottom:239.065590px;}
.yb1{bottom:239.072490px;}
.y4b{bottom:245.985050px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y20a{bottom:260.135400px;}
.y7c{bottom:260.142525px;}
.y1e2{bottom:260.157105px;}
.yc8{bottom:260.168055px;}
.yfd{bottom:260.182650px;}
.ya1{bottom:260.233845px;}
.y17e{bottom:260.255745px;}
.y161{bottom:260.285055px;}
.y1ac{bottom:260.321580px;}
.yb0{bottom:260.328480px;}
.yfe{bottom:266.598450px;}
.y4a{bottom:267.152825px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y248{bottom:275.958120px;}
.y7b{bottom:281.310315px;}
.y1e1{bottom:281.324895px;}
.yc7{bottom:281.335845px;}
.y209{bottom:281.346630px;}
.yfc{bottom:281.350425px;}
.ya0{bottom:281.401635px;}
.y17d{bottom:281.423535px;}
.y160{bottom:281.452830px;}
.y1ab{bottom:281.489370px;}
.yaf{bottom:281.496255px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y49{bottom:288.408815px;}
.y247{bottom:289.390440px;}
.y7a{bottom:302.578335px;}
.y1e0{bottom:302.580885px;}
.yc6{bottom:302.591820px;}
.y208{bottom:302.602620px;}
.yfb{bottom:302.606415px;}
.y9f{bottom:302.657610px;}
.y17c{bottom:302.679510px;}
.y15f{bottom:302.708820px;}
.y1aa{bottom:302.745345px;}
.yae{bottom:302.752245px;}
.y246{bottom:302.912760px;}
.y48{bottom:309.664790px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y245{bottom:316.435080px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y79{bottom:323.744850px;}
.y1df{bottom:323.748660px;}
.yc5{bottom:323.759610px;}
.yea{bottom:323.763405px;}
.y207{bottom:323.770395px;}
.yfa{bottom:323.774190px;}
.y9e{bottom:323.825400px;}
.y17b{bottom:323.847300px;}
.y15e{bottom:323.876610px;}
.y1a9{bottom:323.913135px;}
.yad{bottom:323.920035px;}
.y244{bottom:329.957400px;}
.y47{bottom:330.832580px;}
.y243{bottom:343.389720px;}
.y1de{bottom:345.004650px;}
.yc4{bottom:345.015600px;}
.ye9{bottom:345.019395px;}
.y206{bottom:345.026385px;}
.yf9{bottom:345.030180px;}
.y9d{bottom:345.081390px;}
.y17a{bottom:345.103275px;}
.y15d{bottom:345.132585px;}
.y1a8{bottom:345.169110px;}
.yac{bottom:345.176010px;}
.ye{bottom:348.133500px;}
.y1dd{bottom:351.552750px;}
.y46{bottom:352.088570px;}
.y242{bottom:356.912040px;}
.yc3{bottom:366.271575px;}
.ye8{bottom:366.275370px;}
.y205{bottom:366.282360px;}
.yf8{bottom:366.286155px;}
.y1dc{bottom:366.308010px;}
.y9c{bottom:366.337365px;}
.y179{bottom:366.359265px;}
.y15c{bottom:366.388575px;}
.y1a7{bottom:366.425100px;}
.y78{bottom:366.432000px;}
.y241{bottom:370.434360px;}
.y45{bottom:373.256345px;}
.y240{bottom:383.956680px;}
.yd{bottom:386.785499px;}
.yc2{bottom:387.439365px;}
.ye7{bottom:387.443160px;}
.y204{bottom:387.450150px;}
.yf7{bottom:387.453945px;}
.y1db{bottom:387.475800px;}
.y9b{bottom:387.505155px;}
.y178{bottom:387.527040px;}
.y15b{bottom:387.556350px;}
.y1a6{bottom:387.592875px;}
.y77{bottom:387.599775px;}
.y44{bottom:394.512335px;}
.y23f{bottom:397.389000px;}
.yc{bottom:408.044999px;}
.yc1{bottom:408.699135px;}
.y203{bottom:408.706125px;}
.yf6{bottom:408.709935px;}
.y1da{bottom:408.731775px;}
.y9a{bottom:408.761130px;}
.y177{bottom:408.783030px;}
.y15a{bottom:408.812340px;}
.y1a5{bottom:408.848865px;}
.y76{bottom:408.855765px;}
.y23e{bottom:410.911320px;}
.y43{bottom:415.768310px;}
.y23d{bottom:424.433640px;}
.y202{bottom:429.873915px;}
.yf5{bottom:429.877710px;}
.y1d9{bottom:429.899565px;}
.ye5{bottom:429.910350px;}
.y99{bottom:429.928920px;}
.y176{bottom:429.950820px;}
.y159{bottom:429.980115px;}
.y1a4{bottom:430.016655px;}
.y75{bottom:430.023540px;}
.ye6{bottom:436.422000px;}
.y42{bottom:436.936100px;}
.y23c{bottom:437.955960px;}
.yf4{bottom:451.133700px;}
.y201{bottom:451.148460px;}
.y1d8{bottom:451.155540px;}
.yc0{bottom:451.166340px;}
.y98{bottom:451.184895px;}
.y175{bottom:451.206795px;}
.y158{bottom:451.236105px;}
.y1a3{bottom:451.272630px;}
.y74{bottom:451.279530px;}
.y23b{bottom:451.388280px;}
.y41{bottom:458.192090px;}
.y23a{bottom:464.910600px;}
.y200{bottom:472.404450px;}
.y1d7{bottom:472.411530px;}
.yf2{bottom:472.415370px;}
.ybf{bottom:472.422315px;}
.y97{bottom:472.440885px;}
.y174{bottom:472.462785px;}
.y157{bottom:472.492095px;}
.y1a2{bottom:472.528620px;}
.y73{bottom:472.535505px;}
.y239{bottom:478.432920px;}
.yf3{bottom:478.856550px;}
.y40{bottom:479.366855px;}
.y238{bottom:491.955240px;}
.y1ff{bottom:493.572240px;}
.y1d6{bottom:493.579320px;}
.yf1{bottom:493.583160px;}
.ybe{bottom:493.590105px;}
.y96{bottom:493.608675px;}
.y173{bottom:493.630560px;}
.y156{bottom:493.659870px;}
.y1a1{bottom:493.696395px;}
.y72{bottom:493.703295px;}
.yb{bottom:502.864502px;}
.y237{bottom:505.387560px;}
.y1fe{bottom:514.828215px;}
.y1d5{bottom:514.835295px;}
.yf0{bottom:514.839135px;}
.ybd{bottom:514.846080px;}
.y95{bottom:514.864650px;}
.y172{bottom:514.886550px;}
.y155{bottom:514.915860px;}
.y1a0{bottom:514.952385px;}
.y71{bottom:514.959285px;}
.y236{bottom:518.909880px;}
.ya{bottom:520.864502px;}
.y1fd{bottom:521.291250px;}
.y235{bottom:532.432200px;}
.y1d4{bottom:536.003085px;}
.yef{bottom:536.006925px;}
.ybc{bottom:536.013870px;}
.y1fc{bottom:536.017710px;}
.y94{bottom:536.032440px;}
.y171{bottom:536.054325px;}
.y154{bottom:536.083635px;}
.y19f{bottom:536.120160px;}
.y70{bottom:536.127060px;}
.y9{bottom:538.864499px;}
.y1d3{bottom:542.551065px;}
.y234{bottom:545.954520px;}
.y3f{bottom:549.266360px;}
.y8{bottom:556.864499px;}
.yed{bottom:557.262915px;}
.ybb{bottom:557.269845px;}
.y1d2{bottom:557.273700px;}
.y93{bottom:557.288415px;}
.y170{bottom:557.310315px;}
.y153{bottom:557.339625px;}
.y19e{bottom:557.376150px;}
.y6f{bottom:557.383050px;}
.y233{bottom:559.386840px;}
.yee{bottom:563.810985px;}
.y3e{bottom:567.296540px;}
.y232{bottom:572.916750px;}
.yba{bottom:578.437635px;}
.y1d1{bottom:578.441475px;}
.y92{bottom:578.456205px;}
.y16f{bottom:578.478105px;}
.y152{bottom:578.507415px;}
.y19d{bottom:578.543940px;}
.y6e{bottom:578.550825px;}
.yb9{bottom:584.985765px;}
.y3d{bottom:585.326720px;}
.y231{bottom:586.439070px;}
.y1d0{bottom:599.697465px;}
.y91{bottom:599.712180px;}
.y16e{bottom:599.734080px;}
.y151{bottom:599.763390px;}
.ye3{bottom:599.785155px;}
.y19c{bottom:599.799915px;}
.y6d{bottom:599.806815px;}
.y230{bottom:599.961390px;}
.y142{bottom:600.888015px;}
.y3c{bottom:603.266900px;}
.y141{bottom:605.565165px;}
.ye4{bottom:606.245550px;}
.y22f{bottom:613.393710px;}
.y13f{bottom:613.644015px;}
.y140{bottom:618.321165px;}
.y1fa{bottom:618.491265px;}
.y1fb{bottom:620.957385px;}
.y90{bottom:620.968170px;}
.y16d{bottom:620.990070px;}
.y1cf{bottom:620.993685px;}
.y1f9{bottom:621.000855px;}
.y150{bottom:621.019380px;}
.ye2{bottom:621.041130px;}
.y19b{bottom:621.055905px;}
.y6c{bottom:621.062805px;}
.y3b{bottom:621.297080px;}
.y22e{bottom:626.916030px;}
.y13e{bottom:634.138500px;}
.y13c{bottom:634.143390px;}
.y3a{bottom:639.327260px;}
.y13d{bottom:639.495900px;}
.y22d{bottom:640.438350px;}
.y8f{bottom:642.135960px;}
.y16c{bottom:642.157845px;}
.y1ce{bottom:642.161460px;}
.y1f8{bottom:642.168630px;}
.y14f{bottom:642.187155px;}
.ye1{bottom:642.208920px;}
.y19a{bottom:642.223680px;}
.y6b{bottom:642.230580px;}
.y7{bottom:645.510000px;}
.y22c{bottom:653.960670px;}
.y13b{bottom:655.143120px;}
.y139{bottom:655.148190px;}
.y39{bottom:657.267440px;}
.y13a{bottom:660.415650px;}
.y8e{bottom:663.391935px;}
.y16b{bottom:663.413835px;}
.y8c{bottom:663.417450px;}
.y1f7{bottom:663.424620px;}
.y14e{bottom:663.443145px;}
.ye0{bottom:663.464895px;}
.y199{bottom:663.479670px;}
.y6a{bottom:663.486570px;}
.y6{bottom:666.771000px;}
.y22b{bottom:667.392990px;}
.y8d{bottom:669.940065px;}
.y38{bottom:675.297620px;}
.y138{bottom:676.147935px;}
.y136{bottom:676.152870px;}
.y22a{bottom:680.915310px;}
.y137{bottom:681.420315px;}
.y16a{bottom:684.581610px;}
.y8b{bottom:684.585225px;}
.y1f6{bottom:684.592410px;}
.y14d{bottom:684.610920px;}
.ydf{bottom:684.632685px;}
.y198{bottom:684.647460px;}
.y69{bottom:684.654345px;}
.y37{bottom:693.327800px;}
.y229{bottom:694.437630px;}
.y135{bottom:697.152600px;}
.y133{bottom:697.157535px;}
.y134{bottom:702.425085px;}
.y169{bottom:705.837600px;}
.y8a{bottom:705.841215px;}
.y1f5{bottom:705.848385px;}
.y14c{bottom:705.866910px;}
.yde{bottom:705.888660px;}
.y197{bottom:705.903435px;}
.y68{bottom:705.910335px;}
.y228{bottom:707.959950px;}
.y36{bottom:711.267980px;}
.y132{bottom:718.157265px;}
.y130{bottom:718.162290px;}
.y227{bottom:721.392270px;}
.y131{bottom:723.429750px;}
.y5{bottom:726.298500px;}
.y168{bottom:727.093590px;}
.y89{bottom:727.097205px;}
.y1f4{bottom:727.104375px;}
.y14b{bottom:727.122885px;}
.ydd{bottom:727.144650px;}
.y196{bottom:727.159425px;}
.y67{bottom:727.166310px;}
.y35{bottom:729.298160px;}
.y226{bottom:734.914590px;}
.y12f{bottom:739.162035px;}
.y12d{bottom:739.166970px;}
.y12e{bottom:744.434415px;}
.y34{bottom:747.328340px;}
.y167{bottom:748.261365px;}
.y88{bottom:748.264980px;}
.y1f3{bottom:748.272150px;}
.y14a{bottom:748.290675px;}
.ydc{bottom:748.312440px;}
.y195{bottom:748.327200px;}
.y66{bottom:748.334100px;}
.y225{bottom:748.436910px;}
.y3{bottom:752.599495px;}
.y166{bottom:754.809315px;}
.y12c{bottom:760.166700px;}
.y12a{bottom:760.170720px;}
.y224{bottom:761.959230px;}
.y33{bottom:765.268520px;}
.y12b{bottom:765.439185px;}
.y87{bottom:769.520970px;}
.y1f2{bottom:769.528140px;}
.y149{bottom:769.546665px;}
.ydb{bottom:769.568415px;}
.y194{bottom:769.583190px;}
.y65{bottom:769.590090px;}
.y2e{bottom:773.350745px;}
.y223{bottom:775.391550px;}
.y1cd{bottom:776.069085px;}
.y129{bottom:781.086450px;}
.y127{bottom:781.091385px;}
.y32{bottom:783.298700px;}
.y128{bottom:786.444030px;}
.y2d{bottom:786.783065px;}
.y222{bottom:788.913870px;}
.y1f1{bottom:790.695930px;}
.y148{bottom:790.714440px;}
.y1cc{bottom:790.732365px;}
.yda{bottom:790.736205px;}
.y193{bottom:790.750965px;}
.y64{bottom:790.757865px;}
.y86{bottom:797.243955px;}
.y2c{bottom:800.305385px;}
.y31{bottom:801.328880px;}
.y126{bottom:802.091130px;}
.y124{bottom:802.096155px;}
.y221{bottom:802.436190px;}
.y1c2{bottom:803.885730px;}
.y2b{bottom:805.322645px;}
.y125{bottom:807.448605px;}
.y147{bottom:811.970430px;}
.y1cb{bottom:811.988340px;}
.yd9{bottom:811.992180px;}
.y1f0{bottom:811.995930px;}
.y192{bottom:812.006955px;}
.y63{bottom:812.013855px;}
.y2a{bottom:813.825455px;}
.y220{bottom:815.958510px;}
.y1c1{bottom:817.325565px;}
.y30{bottom:819.269060px;}
.y123{bottom:823.095885px;}
.y121{bottom:823.101000px;}
.y29{bottom:827.347775px;}
.y122{bottom:828.453285px;}
.y21f{bottom:829.390830px;}
.y28{bottom:832.365320px;}
.y146{bottom:833.226405px;}
.y1ca{bottom:833.244330px;}
.yd8{bottom:833.248170px;}
.y1ef{bottom:833.251920px;}
.y191{bottom:833.262930px;}
.y62{bottom:833.269830px;}
.y1c0{bottom:838.325310px;}
.y27{bottom:840.783065px;}
.y21e{bottom:842.913150px;}
.y120{bottom:844.100745px;}
.y11e{bottom:844.105575px;}
.y2f{bottom:846.311720px;}
.y11f{bottom:849.458130px;}
.y1bf{bottom:851.849130px;}
.y26{bottom:854.305385px;}
.y145{bottom:854.394195px;}
.y1c9{bottom:854.412105px;}
.yd7{bottom:854.415945px;}
.y1ee{bottom:854.419710px;}
.y190{bottom:854.430720px;}
.y61{bottom:854.437620px;}
.y21d{bottom:856.435470px;}
.y11d{bottom:865.105320px;}
.y11b{bottom:865.110255px;}
.y21c{bottom:869.957790px;}
.y11c{bottom:870.462705px;}
.y1be{bottom:872.848875px;}
.y144{bottom:875.650170px;}
.y1c8{bottom:875.668095px;}
.yd6{bottom:875.671935px;}
.y1ed{bottom:875.675685px;}
.y18f{bottom:875.686710px;}
.y60{bottom:875.693595px;}
.y2{bottom:879.369000px;}
.y143{bottom:882.198120px;}
.y21b{bottom:883.390110px;}
.y11a{bottom:886.109985px;}
.y118{bottom:886.115100px;}
.y1bd{bottom:886.372695px;}
.y119{bottom:891.467370px;}
.y1c7{bottom:896.835870px;}
.yd5{bottom:896.839725px;}
.y1ec{bottom:896.843475px;}
.y18e{bottom:896.854485px;}
.y5f{bottom:896.861385px;}
.y21a{bottom:896.912430px;}
.y24{bottom:904.053305px;}
.y117{bottom:907.114845px;}
.y115{bottom:907.119675px;}
.y1bc{bottom:907.372440px;}
.y219{bottom:910.434750px;}
.y25{bottom:911.366720px;}
.y116{bottom:912.472230px;}
.y1c6{bottom:918.091860px;}
.yd4{bottom:918.095700px;}
.y1eb{bottom:918.099450px;}
.y18d{bottom:918.110475px;}
.y5e{bottom:918.117375px;}
.y1bb{bottom:920.896275px;}
.y218{bottom:923.957070px;}
.y114{bottom:928.119420px;}
.y112{bottom:928.124535px;}
.y113{bottom:933.476985px;}
.y217{bottom:937.389390px;}
.y1c5{bottom:939.259650px;}
.yd3{bottom:939.263490px;}
.y1ea{bottom:939.267240px;}
.y18c{bottom:939.278250px;}
.y5d{bottom:939.285150px;}
.y23{bottom:940.033805px;}
.y1ba{bottom:941.812005px;}
.y1c4{bottom:945.807765px;}
.y111{bottom:949.124265px;}
.y10f{bottom:949.129200px;}
.y216{bottom:950.911710px;}
.y110{bottom:954.481665px;}
.y1b9{bottom:955.335840px;}
.yd2{bottom:960.519465px;}
.y1e9{bottom:960.523230px;}
.y18b{bottom:960.534240px;}
.y5c{bottom:960.541140px;}
.y215{bottom:964.434030px;}
.y1{bottom:966.726000px;}
.yd1{bottom:967.067505px;}
.y10e{bottom:970.128930px;}
.y10c{bottom:970.131645px;}
.y10d{bottom:975.486420px;}
.y1b8{bottom:976.335570px;}
.y214{bottom:977.956350px;}
.y22{bottom:979.057970px;}
.y1e8{bottom:981.779205px;}
.y18a{bottom:981.790215px;}
.y5b{bottom:981.797115px;}
.y1e7{bottom:988.242285px;}
.y10b{bottom:989.859405px;}
.y213{bottom:991.388670px;}
.y189{bottom:1002.958005px;}
.y5a{bottom:1002.964905px;}
.y212{bottom:1004.910000px;}
.y109{bottom:1009.587165px;}
.y10a{bottom:1014.944730px;}
.y1e6{bottom:1021.747830px;}
.y188{bottom:1024.213995px;}
.y59{bottom:1024.220880px;}
.y107{bottom:1029.316935px;}
.y187{bottom:1030.762020px;}
.y108{bottom:1035.268980px;}
.y21{bottom:1036.034370px;}
.y58{bottom:1045.388670px;}
.y106{bottom:1045.813935px;}
.y1e5{bottom:1051.936620px;}
.y57{bottom:1099.990325px;}
.y56{bottom:1114.954130px;}
.yec{bottom:1129.913247px;}
.y85{bottom:1129.917945px;}
.y55{bottom:1129.917950px;}
.y1c3{bottom:1129.933665px;}
.h1a{height:20.185549px;}
.hf{height:21.626539px;}
.h19{height:23.068395px;}
.h18{height:25.952539px;}
.h16{height:28.376746px;}
.h13{height:30.281567px;}
.hd{height:31.721260px;}
.h7{height:32.130000px;}
.he{height:32.444567px;}
.h14{height:34.607567px;}
.h17{height:38.934000px;}
.h15{height:42.287471px;}
.h12{height:42.570766px;}
.h11{height:43.260433px;}
.h10{height:44.557800px;}
.h6{height:45.900000px;}
.hc{height:47.586433px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.ha{height:56.238000px;}
.h5{height:78.030000px;}
.hb{height:103.824433px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039395px;}
.x8{left:89.036295px;}
.x5{left:91.077180px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:151.285095px;}
.xd{left:176.456700px;}
.x2b{left:183.344850px;}
.x19{left:185.470844px;}
.xe{left:188.451780px;}
.x34{left:193.974750px;}
.x3a{left:199.502400px;}
.x4{left:203.484001px;}
.x2f{left:210.132300px;}
.x30{left:224.929050px;}
.x1e{left:242.872350px;}
.x18{left:252.141750px;}
.x38{left:258.604665px;}
.x26{left:265.662900px;}
.xc{left:266.768460px;}
.x39{left:268.979550px;}
.xa{left:271.105545px;}
.x12{left:272.721150px;}
.x21{left:274.844565px;}
.x9{left:280.800045px;}
.xb{left:283.100625px;}
.x27{left:289.133865px;}
.x22{left:294.066150px;}
.x28{left:298.658250px;}
.x3b{left:305.716500px;}
.x29{left:322.044000px;}
.x23{left:323.404650px;}
.x2a{left:328.336950px;}
.x35{left:336.075600px;}
.x15{left:352.233015px;}
.x16{left:362.182635px;}
.x1a{left:366.774735px;}
.x1b{left:379.360500px;}
.x1d{left:398.069235px;}
.x36{left:434.636085px;}
.x37{left:442.289700px;}
.x3{left:454.959000px;}
.x24{left:458.532165px;}
.x2e{left:459.892815px;}
.x10{left:462.273885px;}
.x11{left:473.329050px;}
.x25{left:487.870785px;}
.x33{left:512.956485px;}
.x13{left:516.784065px;}
.x14{left:529.029735px;}
.x31{left:577.417185px;}
.x1f{left:592.639200px;}
.x32{left:594.169965px;}
.x2c{left:622.573065px;}
.x20{left:624.784200px;}
.x2d{left:638.645550px;}
.x1c{left:684.311685px;}
.x17{left:691.625100px;}
.xf{left:710.928915px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5b{letter-spacing:-1.040096pt;}
.ls4b{letter-spacing:-1.024416pt;}
.ls5e{letter-spacing:-1.003505pt;}
.ls14{letter-spacing:-0.998283pt;}
.ls4a{letter-spacing:-0.987830pt;}
.lsf{letter-spacing:-0.977377pt;}
.ls12{letter-spacing:-0.972145pt;}
.lse{letter-spacing:-0.966923pt;}
.ls4f{letter-spacing:-0.961697pt;}
.ls15{letter-spacing:-0.956470pt;}
.ls4e{letter-spacing:-0.951244pt;}
.ls11{letter-spacing:-0.946017pt;}
.ls59{letter-spacing:-0.940790pt;}
.ls49{letter-spacing:-0.935564pt;}
.ls5c{letter-spacing:-0.930337pt;}
.ls4d{letter-spacing:-0.919884pt;}
.ls50{letter-spacing:-0.914657pt;}
.ls4c{letter-spacing:-0.909431pt;}
.ls51{letter-spacing:-0.904204pt;}
.ls13{letter-spacing:-0.898977pt;}
.ls10{letter-spacing:-0.888524pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000034pt;}
.ls48{letter-spacing:0.005227pt;}
.ls64{letter-spacing:0.039953pt;}
.ls62{letter-spacing:0.039972pt;}
.ls65{letter-spacing:0.040009pt;}
.ls63{letter-spacing:0.040028pt;}
.ls57{letter-spacing:0.052258pt;}
.ls21{letter-spacing:0.085330pt;}
.ls20{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.313581pt;}
.ls61{letter-spacing:0.359972pt;}
.ls3c{letter-spacing:0.491302pt;}
.ls46{letter-spacing:0.496528pt;}
.ls40{letter-spacing:0.506981pt;}
.ls60{letter-spacing:0.511993pt;}
.ls47{letter-spacing:0.517435pt;}
.ls3d{letter-spacing:0.522661pt;}
.ls41{letter-spacing:0.527888pt;}
.ls19{letter-spacing:0.538341pt;}
.ls38{letter-spacing:0.543568pt;}
.ls3f{letter-spacing:0.548794pt;}
.ls1b{letter-spacing:0.554021pt;}
.ls1d{letter-spacing:0.559248pt;}
.ls37{letter-spacing:0.564474pt;}
.ls1a{letter-spacing:0.569701pt;}
.ls68{letter-spacing:0.571992pt;}
.ls1c{letter-spacing:0.574927pt;}
.ls3b{letter-spacing:0.580154pt;}
.ls39{letter-spacing:0.585381pt;}
.ls36{letter-spacing:0.590607pt;}
.ls3a{letter-spacing:0.595834pt;}
.ls3e{letter-spacing:0.621967pt;}
.ls58{letter-spacing:0.674233pt;}
.ls1f{letter-spacing:0.892795pt;}
.ls44{letter-spacing:1.019190pt;}
.ls42{letter-spacing:1.029643pt;}
.ls34{letter-spacing:1.050549pt;}
.ls32{letter-spacing:1.076682pt;}
.ls33{letter-spacing:1.081909pt;}
.ls35{letter-spacing:1.092357pt;}
.ls31{letter-spacing:1.097589pt;}
.ls2e{letter-spacing:1.102815pt;}
.ls2d{letter-spacing:1.113269pt;}
.ls30{letter-spacing:1.118495pt;}
.ls1e{letter-spacing:1.132800pt;}
.ls2f{letter-spacing:1.149855pt;}
.ls45{letter-spacing:2.142911pt;}
.ls69{letter-spacing:11.819842pt;}
.ls66{letter-spacing:11.839840pt;}
.ls6a{letter-spacing:12.139838pt;}
.ls54{letter-spacing:12.961979pt;}
.ls53{letter-spacing:13.066523pt;}
.ls5d{letter-spacing:13.275598pt;}
.ls28{letter-spacing:14.373175pt;}
.ls5a{letter-spacing:14.618837pt;}
.ls52{letter-spacing:14.634518pt;}
.ls25{letter-spacing:15.157154pt;}
.ls56{letter-spacing:15.784418pt;}
.ls9{letter-spacing:15.888909pt;}
.ls1{letter-spacing:15.946827pt;}
.ls5{letter-spacing:15.993438pt;}
.lsa{letter-spacing:16.370133pt;}
.ls5f{letter-spacing:16.458027pt;}
.ls67{letter-spacing:16.595779pt;}
.ls2b{letter-spacing:16.829655pt;}
.ls55{letter-spacing:17.038785pt;}
.ls29{letter-spacing:17.090989pt;}
.ls2{letter-spacing:17.091042pt;}
.ls16{letter-spacing:17.404589pt;}
.ls4{letter-spacing:17.561421pt;}
.ls6{letter-spacing:17.718189pt;}
.ls17{letter-spacing:17.718242pt;}
.ls3{letter-spacing:18.031842pt;}
.ls18{letter-spacing:18.606722pt;}
.ls7{letter-spacing:18.606775pt;}
.lsd{letter-spacing:18.711252pt;}
.lsc{letter-spacing:19.077154pt;}
.ls22{letter-spacing:20.227200pt;}
.ls2c{letter-spacing:20.436055pt;}
.ls27{letter-spacing:20.592887pt;}
.ls8{letter-spacing:22.578989pt;}
.ls26{letter-spacing:22.772354pt;}
.ls2a{letter-spacing:23.781069pt;}
.ls23{letter-spacing:24.146932pt;}
.ls43{letter-spacing:25.354301pt;}
.ws127{word-spacing:-25.406567pt;}
.wsfd{word-spacing:-22.824620pt;}
.wsca{word-spacing:-20.275200pt;}
.ws18f{word-spacing:-16.635778pt;}
.ws18a{word-spacing:-16.512960pt;}
.ws173{word-spacing:-14.671104pt;}
.ws178{word-spacing:-13.327864pt;}
.ws19c{word-spacing:-12.179838pt;}
.ws19b{word-spacing:-11.859842pt;}
.wscb{word-spacing:-0.940795pt;}
.ws187{word-spacing:-0.726499pt;}
.ws153{word-spacing:-0.559248pt;}
.wsa{word-spacing:-0.054933pt;}
.ws36{word-spacing:-0.052266pt;}
.wsbf{word-spacing:-0.042666pt;}
.ws5{word-spacing:-0.039999pt;}
.wse6{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a4{word-spacing:9.639871pt;}
.ws1a5{word-spacing:9.759870pt;}
.ws1a7{word-spacing:10.199864pt;}
.ws1a6{word-spacing:10.359862pt;}
.ws1a2{word-spacing:10.839886pt;}
.ws23{word-spacing:11.050509pt;}
.ws25{word-spacing:11.087842pt;}
.ws26{word-spacing:11.125174pt;}
.ws24{word-spacing:11.162486pt;}
.wse4{word-spacing:11.311838pt;}
.wse5{word-spacing:11.461170pt;}
.ws1a3{word-spacing:11.599816pt;}
.ws1a8{word-spacing:11.599845pt;}
.ws19d{word-spacing:11.639845pt;}
.ws1a0{word-spacing:11.679844pt;}
.ws196{word-spacing:11.719844pt;}
.ws192{word-spacing:11.759843pt;}
.ws199{word-spacing:11.759867pt;}
.ws197{word-spacing:11.799843pt;}
.ws189{word-spacing:11.839842pt;}
.ws1a1{word-spacing:11.879794pt;}
.ws195{word-spacing:11.879842pt;}
.ws191{word-spacing:11.919841pt;}
.ws190{word-spacing:11.959841pt;}
.ws8{word-spacing:11.999840pt;}
.ws7{word-spacing:12.039839pt;}
.ws198{word-spacing:12.039886pt;}
.ws18c{word-spacing:12.079839pt;}
.ws194{word-spacing:12.079840pt;}
.ws19a{word-spacing:12.119838pt;}
.ws19e{word-spacing:12.137262pt;}
.ws19f{word-spacing:12.159820pt;}
.ws18b{word-spacing:12.159838pt;}
.ws6{word-spacing:12.199837pt;}
.ws28{word-spacing:12.202514pt;}
.ws193{word-spacing:12.239837pt;}
.ws121{word-spacing:12.287846pt;}
.ws188{word-spacing:12.319836pt;}
.wscc{word-spacing:12.330513pt;}
.ws9{word-spacing:12.399835pt;}
.ws123{word-spacing:12.415845pt;}
.ws122{word-spacing:12.458511pt;}
.wsc0{word-spacing:12.543843pt;}
.wsbe{word-spacing:12.586509pt;}
.wsbd{word-spacing:12.629175pt;}
.ws27{word-spacing:12.629182pt;}
.ws56{word-spacing:12.671842pt;}
.ws2a{word-spacing:12.714508pt;}
.ws101{word-spacing:12.909735pt;}
.wsff{word-spacing:13.118799pt;}
.ws100{word-spacing:13.171066pt;}
.ws111{word-spacing:13.223332pt;}
.wsfb{word-spacing:13.432396pt;}
.wsc3{word-spacing:13.484662pt;}
.wsfa{word-spacing:13.536929pt;}
.wsf1{word-spacing:13.589195pt;}
.ws10d{word-spacing:13.641461pt;}
.wsfe{word-spacing:13.798259pt;}
.wsef{word-spacing:13.850525pt;}
.ws10c{word-spacing:14.059590pt;}
.wsf0{word-spacing:14.216388pt;}
.ws120{word-spacing:14.256000pt;}
.wsc9{word-spacing:14.304000pt;}
.ws110{word-spacing:14.373187pt;}
.ws11f{word-spacing:14.400000pt;}
.ws10e{word-spacing:14.529985pt;}
.ws96{word-spacing:14.592704pt;}
.ws16f{word-spacing:14.806996pt;}
.ws15b{word-spacing:14.827902pt;}
.ws169{word-spacing:14.890621pt;}
.ws16a{word-spacing:14.963794pt;}
.ws16e{word-spacing:14.974247pt;}
.ws177{word-spacing:14.974282pt;}
.ws10f{word-spacing:15.052646pt;}
.ws99{word-spacing:15.068326pt;}
.ws179{word-spacing:15.115361pt;}
.ws92{word-spacing:15.246031pt;}
.wsf4{word-spacing:15.261711pt;}
.ws93{word-spacing:15.371470pt;}
.ws18e{word-spacing:15.407795pt;}
.ws109{word-spacing:15.418509pt;}
.wsa3{word-spacing:15.470775pt;}
.ws32{word-spacing:15.523042pt;}
.ws3d{word-spacing:15.575308pt;}
.ws8a{word-spacing:15.627574pt;}
.ws1d{word-spacing:15.679840pt;}
.ws2f{word-spacing:15.732106pt;}
.ws37{word-spacing:15.784372pt;}
.ws11{word-spacing:15.786825pt;}
.ws4f{word-spacing:15.836638pt;}
.wsc{word-spacing:15.840158pt;}
.ws7c{word-spacing:15.888905pt;}
.ws49{word-spacing:15.941171pt;}
.wse{word-spacing:15.946826pt;}
.ws1b{word-spacing:15.993437pt;}
.wsb{word-spacing:16.000160pt;}
.ws16{word-spacing:16.045703pt;}
.ws12{word-spacing:16.053494pt;}
.ws175{word-spacing:16.087516pt;}
.ws39{word-spacing:16.097969pt;}
.wsf{word-spacing:16.106828pt;}
.ws74{word-spacing:16.150235pt;}
.ws10{word-spacing:16.160162pt;}
.ws3e{word-spacing:16.202501pt;}
.ws16b{word-spacing:16.233861pt;}
.ws18d{word-spacing:16.239783pt;}
.ws176{word-spacing:16.244314pt;}
.ws9e{word-spacing:16.254767pt;}
.ws59{word-spacing:16.307034pt;}
.ws9d{word-spacing:16.307047pt;}
.wsd{word-spacing:16.320163pt;}
.ws114{word-spacing:16.411566pt;}
.ws15{word-spacing:16.463832pt;}
.wsc5{word-spacing:16.480000pt;}
.ws152{word-spacing:16.489965pt;}
.wse7{word-spacing:16.516098pt;}
.ws4a{word-spacing:16.534933pt;}
.ws73{word-spacing:16.568364pt;}
.ws16c{word-spacing:16.578817pt;}
.ws50{word-spacing:16.620630pt;}
.ws118{word-spacing:16.672897pt;}
.wsa5{word-spacing:16.699733pt;}
.ws34{word-spacing:16.725163pt;}
.ws174{word-spacing:16.740865pt;}
.wsa4{word-spacing:16.754667pt;}
.wsaa{word-spacing:16.777429pt;}
.ws16d{word-spacing:16.798335pt;}
.ws30{word-spacing:16.829695pt;}
.wsec{word-spacing:16.881961pt;}
.ws112{word-spacing:16.934227pt;}
.ws52{word-spacing:16.986461pt;}
.ws113{word-spacing:16.986493pt;}
.wsc6{word-spacing:17.038759pt;}
.wsae{word-spacing:17.091026pt;}
.ws53{word-spacing:17.143292pt;}
.ws51{word-spacing:17.143310pt;}
.wsa6{word-spacing:17.195558pt;}
.wsb4{word-spacing:17.247824pt;}
.ws70{word-spacing:17.300090pt;}
.ws6a{word-spacing:17.352356pt;}
.ws163{word-spacing:17.383711pt;}
.ws6f{word-spacing:17.404622pt;}
.ws8f{word-spacing:17.430755pt;}
.ws170{word-spacing:17.456889pt;}
.ws38{word-spacing:17.509155pt;}
.ws90{word-spacing:17.545741pt;}
.ws3a{word-spacing:17.561421pt;}
.ws87{word-spacing:17.613687pt;}
.ws6e{word-spacing:17.665953pt;}
.ws22{word-spacing:17.718219pt;}
.ws7b{word-spacing:17.718224pt;}
.ws162{word-spacing:17.765259pt;}
.ws154{word-spacing:17.770485pt;}
.ws4{word-spacing:17.776162pt;}
.ws69{word-spacing:17.822751pt;}
.wsc2{word-spacing:17.875018pt;}
.ws4b{word-spacing:17.927284pt;}
.ws161{word-spacing:17.953417pt;}
.ws165{word-spacing:17.958643pt;}
.ws164{word-spacing:18.026589pt;}
.ws115{word-spacing:18.031816pt;}
.ws158{word-spacing:18.084082pt;}
.ws97{word-spacing:18.193841pt;}
.wsa7{word-spacing:18.240881pt;}
.ws98{word-spacing:18.256560pt;}
.ws4c{word-spacing:18.293147pt;}
.ws54{word-spacing:18.345413pt;}
.ws6b{word-spacing:18.397679pt;}
.ws102{word-spacing:18.449945pt;}
.ws4e{word-spacing:18.502211pt;}
.wsb2{word-spacing:18.554477pt;}
.wsa9{word-spacing:18.606743pt;}
.ws2e{word-spacing:18.659010pt;}
.ws88{word-spacing:18.659051pt;}
.ws71{word-spacing:18.711276pt;}
.ws166{word-spacing:18.784448pt;}
.wsb5{word-spacing:18.815808pt;}
.ws7d{word-spacing:18.868074pt;}
.ws95{word-spacing:18.899429pt;}
.ws2c{word-spacing:18.920340pt;}
.ws94{word-spacing:18.925567pt;}
.ws11a{word-spacing:18.972606pt;}
.ws72{word-spacing:19.024873pt;}
.ws19{word-spacing:19.077139pt;}
.ws40{word-spacing:19.129405pt;}
.ws5a{word-spacing:19.181671pt;}
.ws9c{word-spacing:19.233937pt;}
.ws60{word-spacing:19.286203pt;}
.ws48{word-spacing:19.338469pt;}
.ws11d{word-spacing:19.375056pt;}
.ws58{word-spacing:19.390735pt;}
.wsad{word-spacing:19.443002pt;}
.ws5d{word-spacing:19.495268pt;}
.wsf2{word-spacing:19.547534pt;}
.ws159{word-spacing:19.573667pt;}
.ws1e{word-spacing:19.599800pt;}
.ws137{word-spacing:19.605032pt;}
.wsc4{word-spacing:19.652066pt;}
.ws15a{word-spacing:19.704332pt;}
.ws4d{word-spacing:19.756598pt;}
.ws157{word-spacing:19.772278pt;}
.ws1c{word-spacing:19.808865pt;}
.ws63{word-spacing:19.861131pt;}
.ws62{word-spacing:19.913397pt;}
.ws172{word-spacing:19.923850pt;}
.ws84{word-spacing:19.965663pt;}
.ws64{word-spacing:20.017929pt;}
.ws13e{word-spacing:20.023156pt;}
.ws138{word-spacing:20.054515pt;}
.ws3f{word-spacing:20.070195pt;}
.wsb6{word-spacing:20.106781pt;}
.ws41{word-spacing:20.122461pt;}
.ws150{word-spacing:20.185181pt;}
.ws12d{word-spacing:20.190407pt;}
.ws13f{word-spacing:20.200861pt;}
.ws104{word-spacing:20.279260pt;}
.ws18{word-spacing:20.331526pt;}
.wsf5{word-spacing:20.383792pt;}
.ws85{word-spacing:20.436058pt;}
.ws91{word-spacing:20.472644pt;}
.ws143{word-spacing:20.498777pt;}
.wsac{word-spacing:20.540590pt;}
.ws44{word-spacing:20.592857pt;}
.ws9b{word-spacing:20.645123pt;}
.wsab{word-spacing:20.697389pt;}
.ws149{word-spacing:20.702615pt;}
.ws184{word-spacing:20.707842pt;}
.ws67{word-spacing:20.749655pt;}
.ws185{word-spacing:20.781015pt;}
.ws7f{word-spacing:20.801921pt;}
.ws136{word-spacing:20.838507pt;}
.ws21{word-spacing:20.854187pt;}
.wsee{word-spacing:20.906453pt;}
.ws135{word-spacing:20.922133pt;}
.ws61{word-spacing:20.958719pt;}
.ws147{word-spacing:21.000532pt;}
.ws1{word-spacing:21.008000pt;}
.wsf9{word-spacing:21.010986pt;}
.ws7a{word-spacing:21.063252pt;}
.ws12c{word-spacing:21.078932pt;}
.ws119{word-spacing:21.115518pt;}
.ws79{word-spacing:21.115542pt;}
.ws5f{word-spacing:21.167784pt;}
.ws9a{word-spacing:21.220050pt;}
.ws146{word-spacing:21.251410pt;}
.ws133{word-spacing:21.267090pt;}
.ws47{word-spacing:21.272316pt;}
.ws12b{word-spacing:21.298449pt;}
.ws107{word-spacing:21.324582pt;}
.ws183{word-spacing:21.350715pt;}
.ws89{word-spacing:21.376849pt;}
.ws7e{word-spacing:21.429115pt;}
.ws78{word-spacing:21.481381pt;}
.ws134{word-spacing:21.486613pt;}
.ws17f{word-spacing:21.533647pt;}
.wsf6{word-spacing:21.585913pt;}
.ws3b{word-spacing:21.638179pt;}
.ws2d{word-spacing:21.690445pt;}
.ws11e{word-spacing:21.737485pt;}
.ws45{word-spacing:21.794978pt;}
.ws31{word-spacing:21.847244pt;}
.ws180{word-spacing:21.899510pt;}
.ws14d{word-spacing:21.915190pt;}
.ws8c{word-spacing:21.951776pt;}
.ws167{word-spacing:21.967456pt;}
.ws186{word-spacing:21.983136pt;}
.ws8d{word-spacing:22.004042pt;}
.ws12a{word-spacing:22.040628pt;}
.ws15e{word-spacing:22.056308pt;}
.ws65{word-spacing:22.108574pt;}
.ws5b{word-spacing:22.160841pt;}
.wsed{word-spacing:22.160842pt;}
.ws129{word-spacing:22.181747pt;}
.ws168{word-spacing:22.192195pt;}
.ws5e{word-spacing:22.213107pt;}
.wsb3{word-spacing:22.265373pt;}
.wsfc{word-spacing:22.317639pt;}
.ws139{word-spacing:22.328092pt;}
.ws80{word-spacing:22.369905pt;}
.wsea{word-spacing:22.422171pt;}
.ws57{word-spacing:22.474437pt;}
.ws76{word-spacing:22.526703pt;}
.ws144{word-spacing:22.573743pt;}
.ws6c{word-spacing:22.578970pt;}
.ws117{word-spacing:22.631236pt;}
.ws13a{word-spacing:22.730541pt;}
.ws11b{word-spacing:22.788034pt;}
.wseb{word-spacing:22.840300pt;}
.ws77{word-spacing:22.892566pt;}
.ws126{word-spacing:22.923926pt;}
.ws131{word-spacing:22.997099pt;}
.ws13b{word-spacing:23.033685pt;}
.ws151{word-spacing:23.059818pt;}
.wsbb{word-spacing:23.065045pt;}
.ws13d{word-spacing:23.091178pt;}
.ws2b{word-spacing:23.101631pt;}
.wsbc{word-spacing:23.122537pt;}
.wsa2{word-spacing:23.153897pt;}
.ws14a{word-spacing:23.169577pt;}
.ws13c{word-spacing:23.185257pt;}
.ws15d{word-spacing:23.206163pt;}
.ws103{word-spacing:23.310695pt;}
.ws66{word-spacing:23.362962pt;}
.ws14{word-spacing:23.467494pt;}
.ws125{word-spacing:23.483174pt;}
.ws81{word-spacing:23.519760pt;}
.ws145{word-spacing:23.629519pt;}
.ws10a{word-spacing:23.676558pt;}
.wsa0{word-spacing:23.781091pt;}
.wsa1{word-spacing:23.937889pt;}
.ws116{word-spacing:23.990156pt;}
.ws46{word-spacing:24.042421pt;}
.ws155{word-spacing:24.094687pt;}
.ws14c{word-spacing:24.178313pt;}
.ws171{word-spacing:24.199220pt;}
.wsa8{word-spacing:24.251486pt;}
.ws42{word-spacing:24.303752pt;}
.ws1f{word-spacing:24.356018pt;}
.wsb0{word-spacing:24.408284pt;}
.wsba{word-spacing:24.565083pt;}
.ws12e{word-spacing:24.580763pt;}
.wsc1{word-spacing:24.826413pt;}
.ws20{word-spacing:24.878679pt;}
.ws3c{word-spacing:24.930946pt;}
.ws83{word-spacing:24.983212pt;}
.ws29{word-spacing:25.130381pt;}
.ws1a{word-spacing:25.192276pt;}
.ws35{word-spacing:25.244542pt;}
.ws148{word-spacing:25.349075pt;}
.ws132{word-spacing:25.417021pt;}
.ws43{word-spacing:25.453607pt;}
.ws68{word-spacing:25.767204pt;}
.ws8b{word-spacing:25.976268pt;}
.ws128{word-spacing:26.028534pt;}
.wse9{word-spacing:26.080801pt;}
.ws9f{word-spacing:26.133067pt;}
.wse8{word-spacing:26.185333pt;}
.ws15f{word-spacing:26.284638pt;}
.wsf7{word-spacing:26.289865pt;}
.ws6d{word-spacing:26.446663pt;}
.ws105{word-spacing:26.498930pt;}
.ws160{word-spacing:26.551196pt;}
.wsf8{word-spacing:26.707994pt;}
.ws13{word-spacing:26.812526pt;}
.ws8e{word-spacing:26.864793pt;}
.ws10b{word-spacing:26.969325pt;}
.ws17{word-spacing:27.126123pt;}
.wsf3{word-spacing:27.230655pt;}
.wsaf{word-spacing:27.335188pt;}
.ws33{word-spacing:27.387454pt;}
.ws141{word-spacing:27.523346pt;}
.ws17a{word-spacing:27.544252pt;}
.ws140{word-spacing:27.617425pt;}
.wsb7{word-spacing:27.758543pt;}
.ws11c{word-spacing:27.910115pt;}
.ws82{word-spacing:27.962381pt;}
.ws14b{word-spacing:28.082593pt;}
.ws17e{word-spacing:28.328244pt;}
.wsc8{word-spacing:28.746373pt;}
.ws182{word-spacing:28.798639pt;}
.wsc7{word-spacing:28.850906pt;}
.ws181{word-spacing:28.903172pt;}
.ws14f{word-spacing:29.169729pt;}
.ws14e{word-spacing:29.289941pt;}
.ws86{word-spacing:29.321301pt;}
.ws75{word-spacing:29.478099pt;}
.ws156{word-spacing:30.152332pt;}
.wsb8{word-spacing:30.178465pt;}
.wsb9{word-spacing:30.350944pt;}
.ws17d{word-spacing:30.627954pt;}
.ws15c{word-spacing:32.352737pt;}
.ws124{word-spacing:32.614067pt;}
.ws17b{word-spacing:32.718599pt;}
.ws12f{word-spacing:32.875366pt;}
.ws17c{word-spacing:32.979930pt;}
.ws142{word-spacing:34.056612pt;}
.ws108{word-spacing:34.652446pt;}
.wsb1{word-spacing:34.913777pt;}
.ws130{word-spacing:35.274413pt;}
.ws5c{word-spacing:35.436438pt;}
.ws55{word-spacing:37.892947pt;}
.ws3{word-spacing:38.272159pt;}
.ws2{word-spacing:38.528161pt;}
.ws106{word-spacing:52.527464pt;}
.wsd7{word-spacing:66.857831pt;}
.wscf{word-spacing:66.900497pt;}
.wsd2{word-spacing:67.028495pt;}
.wscd{word-spacing:67.113828pt;}
.wsce{word-spacing:80.681658pt;}
.wsd1{word-spacing:81.150993pt;}
.wsde{word-spacing:103.849366pt;}
.wsdd{word-spacing:132.265013pt;}
.wsdf{word-spacing:145.192852pt;}
.wsd4{word-spacing:195.282892pt;}
.wsd8{word-spacing:195.709554pt;}
.wse1{word-spacing:207.272076pt;}
.wsd3{word-spacing:210.344037pt;}
.wse3{word-spacing:212.989338pt;}
.wse0{word-spacing:219.261259pt;}
.wsd5{word-spacing:225.021187pt;}
.wsda{word-spacing:228.135815pt;}
.wsd9{word-spacing:231.207777pt;}
.wsd0{word-spacing:233.938409pt;}
.wsdb{word-spacing:234.365070pt;}
.wsd6{word-spacing:237.010371pt;}
.wse2{word-spacing:256.551460pt;}
.wsdc{word-spacing:281.425815pt;}
._2c{margin-left:-24.946249pt;}
._28{margin-left:-23.400377pt;}
._1c{margin-left:-20.112000pt;}
._1b{margin-left:-19.104000pt;}
._1d{margin-left:-18.144000pt;}
._33{margin-left:-16.832857pt;}
._2f{margin-left:-15.836638pt;}
._31{margin-left:-14.874493pt;}
._30{margin-left:-13.558283pt;}
._35{margin-left:-11.543875pt;}
._1a{margin-left:-4.860750pt;}
._a{margin-left:-3.784516pt;}
._12{margin-left:-2.717808pt;}
._e{margin-left:-1.023987pt;}
._2{width:1.066677pt;}
._11{width:2.831928pt;}
._0{width:7.973333pt;}
._36{width:9.443583pt;}
._34{width:10.999853pt;}
._c{width:12.021129pt;}
._d{width:13.183835pt;}
._29{width:14.487276pt;}
._4{width:15.466821pt;}
._3{width:16.960170pt;}
._15{width:17.849075pt;}
._b{width:19.160316pt;}
._6{width:20.184284pt;}
._8{width:21.096404pt;}
._9{width:22.084979pt;}
._19{width:23.072961pt;}
._10{width:24.146954pt;}
._f{width:25.693583pt;}
._7{width:26.603462pt;}
._5{width:28.014647pt;}
._18{width:28.955438pt;}
._17{width:30.794309pt;}
._32{width:31.756454pt;}
._2e{width:33.388502pt;}
._2d{width:35.341533pt;}
._16{width:36.448609pt;}
._13{width:38.978738pt;}
._27{width:66.985829pt;}
._21{width:73.300417pt;}
._26{width:81.236318pt;}
._25{width:87.337575pt;}
._22{width:142.846212pt;}
._23{width:146.643500pt;}
._24{width:148.008829pt;}
._20{width:197.416199pt;}
._1e{width:214.397319pt;}
._1f{width:366.544784pt;}
._2a{width:882.506248pt;}
._14{width:904.266035pt;}
._2b{width:1057.480084pt;}
._1{width:1756.559947pt;}
.fs14{font-size:24.885867pt;}
.fsa{font-size:26.662400pt;}
.fs13{font-size:28.440000pt;}
.fs12{font-size:31.995733pt;}
.fs10{font-size:34.839467pt;}
.fse{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fsf{font-size:42.666133pt;}
.fs11{font-size:48.000000pt;}
.fsd{font-size:52.266133pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.333867pt;}
.fsb{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:70.676458pt;}
.y211{bottom:80.277200pt;}
.y1b7{bottom:80.283400pt;}
.yab{bottom:80.296507pt;}
.y105{bottom:80.299893pt;}
.y84{bottom:80.319333pt;}
.yd0{bottom:80.342040pt;}
.y186{bottom:80.419973pt;}
.y1b4{bottom:80.478493pt;}
.yb8{bottom:80.484627pt;}
.y53{bottom:81.334978pt;}
.y4{bottom:86.333337pt;}
.yeb{bottom:88.592091pt;}
.y52{bottom:91.993485pt;}
.y210{bottom:92.296000pt;}
.y1b6{bottom:99.099200pt;}
.yaa{bottom:99.112307pt;}
.y104{bottom:99.115707pt;}
.y83{bottom:99.135147pt;}
.ycf{bottom:99.157840pt;}
.y185{bottom:99.235787pt;}
.y1b3{bottom:99.294307pt;}
.yb7{bottom:99.300440pt;}
.y51{bottom:102.652005pt;}
.y1b5{bottom:117.996800pt;}
.ya9{bottom:118.006520pt;}
.y103{bottom:118.009907pt;}
.y82{bottom:118.029360pt;}
.yce{bottom:118.052053pt;}
.y184{bottom:118.130000pt;}
.y1b2{bottom:118.188520pt;}
.yb6{bottom:118.194640pt;}
.y20{bottom:123.790666pt;}
.y50{bottom:124.339138pt;}
.y20f{bottom:134.327760pt;}
.ya8{bottom:136.900720pt;}
.y102{bottom:136.904120pt;}
.y81{bottom:136.923560pt;}
.ycd{bottom:136.946253pt;}
.y183{bottom:137.024200pt;}
.y1b1{bottom:137.082720pt;}
.yb5{bottom:137.088853pt;}
.y4f{bottom:143.233338pt;}
.y20e{bottom:146.267600pt;}
.ya7{bottom:155.716533pt;}
.y101{bottom:155.719933pt;}
.y80{bottom:155.739373pt;}
.ycc{bottom:155.762067pt;}
.ya5{bottom:155.820547pt;}
.y182{bottom:155.840013pt;}
.y1b0{bottom:155.898533pt;}
.yb4{bottom:155.904667pt;}
.ya6{bottom:161.536933pt;}
.y4e{bottom:162.049151pt;}
.y100{bottom:174.614133pt;}
.y20d{bottom:174.627240pt;}
.y7f{bottom:174.633573pt;}
.ycb{bottom:174.656280pt;}
.ya4{bottom:174.714760pt;}
.y181{bottom:174.734213pt;}
.y164{bottom:174.760267pt;}
.y1af{bottom:174.792733pt;}
.yb3{bottom:174.798867pt;}
.y17{bottom:175.052000pt;}
.y165{bottom:180.434667pt;}
.y4d{bottom:180.943365pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yff{bottom:193.436133pt;}
.y20c{bottom:193.443053pt;}
.y7e{bottom:193.449387pt;}
.y1e4{bottom:193.462347pt;}
.yca{bottom:193.472080pt;}
.ya3{bottom:193.530560pt;}
.y180{bottom:193.550027pt;}
.y163{bottom:193.576080pt;}
.y1ae{bottom:193.608547pt;}
.yb2{bottom:193.614680pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y4c{bottom:199.759165pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y20b{bottom:212.337253pt;}
.y7d{bottom:212.343600pt;}
.y1e3{bottom:212.356560pt;}
.yc9{bottom:212.366293pt;}
.ya2{bottom:212.424773pt;}
.y17f{bottom:212.444227pt;}
.y162{bottom:212.470280pt;}
.y1ad{bottom:212.502747pt;}
.yb1{bottom:212.508880pt;}
.y4b{bottom:218.653378pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y20a{bottom:231.231467pt;}
.y7c{bottom:231.237800pt;}
.y1e2{bottom:231.250760pt;}
.yc8{bottom:231.260493pt;}
.yfd{bottom:231.273467pt;}
.ya1{bottom:231.318973pt;}
.y17e{bottom:231.338440pt;}
.y161{bottom:231.364493pt;}
.y1ac{bottom:231.396960pt;}
.yb0{bottom:231.403093pt;}
.yfe{bottom:236.976400pt;}
.y4a{bottom:237.469178pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y248{bottom:245.296107pt;}
.y7b{bottom:250.053613pt;}
.y1e1{bottom:250.066573pt;}
.yc7{bottom:250.076307pt;}
.y209{bottom:250.085893pt;}
.yfc{bottom:250.089267pt;}
.ya0{bottom:250.134787pt;}
.y17d{bottom:250.154253pt;}
.y160{bottom:250.180293pt;}
.y1ab{bottom:250.212773pt;}
.yaf{bottom:250.218893pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y49{bottom:256.363391pt;}
.y247{bottom:257.235947pt;}
.y7a{bottom:268.958520pt;}
.y1e0{bottom:268.960787pt;}
.yc6{bottom:268.970507pt;}
.y208{bottom:268.980107pt;}
.yfb{bottom:268.983480pt;}
.y9f{bottom:269.028987pt;}
.y17c{bottom:269.048453pt;}
.y15f{bottom:269.074507pt;}
.y1aa{bottom:269.106973pt;}
.yae{bottom:269.113107pt;}
.y246{bottom:269.255787pt;}
.y48{bottom:275.257591pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y245{bottom:281.275627pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y79{bottom:287.773200pt;}
.y1df{bottom:287.776587pt;}
.yc5{bottom:287.786320pt;}
.yea{bottom:287.789693pt;}
.y207{bottom:287.795907pt;}
.yfa{bottom:287.799280pt;}
.y9e{bottom:287.844800pt;}
.y17b{bottom:287.864267pt;}
.y15e{bottom:287.890320pt;}
.y1a9{bottom:287.922787pt;}
.yad{bottom:287.928920pt;}
.y244{bottom:293.295467pt;}
.y47{bottom:294.073405pt;}
.y243{bottom:305.235307pt;}
.y1de{bottom:306.670800pt;}
.yc4{bottom:306.680533pt;}
.ye9{bottom:306.683907pt;}
.y206{bottom:306.690120pt;}
.yf9{bottom:306.693493pt;}
.y9d{bottom:306.739013pt;}
.y17a{bottom:306.758467pt;}
.y15d{bottom:306.784520pt;}
.y1a8{bottom:306.816987pt;}
.yac{bottom:306.823120pt;}
.ye{bottom:309.452000pt;}
.y1dd{bottom:312.491333pt;}
.y46{bottom:312.967618pt;}
.y242{bottom:317.255147pt;}
.yc3{bottom:325.574733pt;}
.ye8{bottom:325.578107pt;}
.y205{bottom:325.584320pt;}
.yf8{bottom:325.587693pt;}
.y1dc{bottom:325.607120pt;}
.y9c{bottom:325.633213pt;}
.y179{bottom:325.652680pt;}
.y15c{bottom:325.678733pt;}
.y1a7{bottom:325.711200pt;}
.y78{bottom:325.717333pt;}
.y241{bottom:329.274987pt;}
.y45{bottom:331.783418pt;}
.y240{bottom:341.294827pt;}
.yd{bottom:343.809333pt;}
.yc2{bottom:344.390547pt;}
.ye7{bottom:344.393920pt;}
.y204{bottom:344.400133pt;}
.yf7{bottom:344.403507pt;}
.y1db{bottom:344.422933pt;}
.y9b{bottom:344.449027pt;}
.y178{bottom:344.468480pt;}
.y15b{bottom:344.494533pt;}
.y1a6{bottom:344.527000pt;}
.y77{bottom:344.533133pt;}
.y44{bottom:350.677631pt;}
.y23f{bottom:353.234667pt;}
.yc{bottom:362.706666pt;}
.yc1{bottom:363.288120pt;}
.y203{bottom:363.294333pt;}
.yf6{bottom:363.297720pt;}
.y1da{bottom:363.317133pt;}
.y9a{bottom:363.343227pt;}
.y177{bottom:363.362693pt;}
.y15a{bottom:363.388747pt;}
.y1a5{bottom:363.421213pt;}
.y76{bottom:363.427347pt;}
.y23e{bottom:365.254507pt;}
.y43{bottom:369.571831pt;}
.y23d{bottom:377.274347pt;}
.y202{bottom:382.110147pt;}
.yf5{bottom:382.113520pt;}
.y1d9{bottom:382.132947pt;}
.ye5{bottom:382.142533pt;}
.y99{bottom:382.159040pt;}
.y176{bottom:382.178507pt;}
.y159{bottom:382.204547pt;}
.y1a4{bottom:382.237027pt;}
.y75{bottom:382.243147pt;}
.ye6{bottom:387.930667pt;}
.y42{bottom:388.387645pt;}
.y23c{bottom:389.294187pt;}
.yf4{bottom:401.007733pt;}
.y201{bottom:401.020853pt;}
.y1d8{bottom:401.027147pt;}
.yc0{bottom:401.036747pt;}
.y98{bottom:401.053240pt;}
.y175{bottom:401.072707pt;}
.y158{bottom:401.098760pt;}
.y1a3{bottom:401.131227pt;}
.y74{bottom:401.137360pt;}
.y23b{bottom:401.234027pt;}
.y41{bottom:407.281858pt;}
.y23a{bottom:413.253867pt;}
.y200{bottom:419.915067pt;}
.y1d7{bottom:419.921360pt;}
.yf2{bottom:419.924773pt;}
.ybf{bottom:419.930947pt;}
.y97{bottom:419.947453pt;}
.y174{bottom:419.966920pt;}
.y157{bottom:419.992973pt;}
.y1a2{bottom:420.025440pt;}
.y73{bottom:420.031560pt;}
.y239{bottom:425.273707pt;}
.yf3{bottom:425.650267pt;}
.y40{bottom:426.103871pt;}
.y238{bottom:437.293547pt;}
.y1ff{bottom:438.730880pt;}
.y1d6{bottom:438.737173pt;}
.yf1{bottom:438.740587pt;}
.ybe{bottom:438.746760pt;}
.y96{bottom:438.763267pt;}
.y173{bottom:438.782720pt;}
.y156{bottom:438.808773pt;}
.y1a1{bottom:438.841240pt;}
.y72{bottom:438.847373pt;}
.yb{bottom:446.990669pt;}
.y237{bottom:449.233387pt;}
.y1fe{bottom:457.625080pt;}
.y1d5{bottom:457.631373pt;}
.yf0{bottom:457.634787pt;}
.ybd{bottom:457.640960pt;}
.y95{bottom:457.657467pt;}
.y172{bottom:457.676933pt;}
.y155{bottom:457.702987pt;}
.y1a0{bottom:457.735453pt;}
.y71{bottom:457.741587pt;}
.y236{bottom:461.253227pt;}
.ya{bottom:462.990669pt;}
.y1fd{bottom:463.370000pt;}
.y235{bottom:473.273067pt;}
.y1d4{bottom:476.447187pt;}
.yef{bottom:476.450600pt;}
.ybc{bottom:476.456773pt;}
.y1fc{bottom:476.460187pt;}
.y94{bottom:476.473280pt;}
.y171{bottom:476.492733pt;}
.y154{bottom:476.518787pt;}
.y19f{bottom:476.551253pt;}
.y70{bottom:476.557387pt;}
.y9{bottom:478.990666pt;}
.y1d3{bottom:482.267613pt;}
.y234{bottom:485.292907pt;}
.y3f{bottom:488.236765pt;}
.y8{bottom:494.990666pt;}
.yed{bottom:495.344813pt;}
.ybb{bottom:495.350973pt;}
.y1d2{bottom:495.354400pt;}
.y93{bottom:495.367480pt;}
.y170{bottom:495.386947pt;}
.y153{bottom:495.413000pt;}
.y19e{bottom:495.445467pt;}
.y6f{bottom:495.451600pt;}
.y233{bottom:497.232747pt;}
.yee{bottom:501.165320pt;}
.y3e{bottom:504.263591pt;}
.y232{bottom:509.259333pt;}
.yba{bottom:514.166787pt;}
.y1d1{bottom:514.170200pt;}
.y92{bottom:514.183293pt;}
.y16f{bottom:514.202760pt;}
.y152{bottom:514.228813pt;}
.y19d{bottom:514.261280pt;}
.y6e{bottom:514.267400pt;}
.yb9{bottom:519.987347pt;}
.y3d{bottom:520.290418pt;}
.y231{bottom:521.279173pt;}
.y1d0{bottom:533.064413pt;}
.y91{bottom:533.077493pt;}
.y16e{bottom:533.096960pt;}
.y151{bottom:533.123013pt;}
.ye3{bottom:533.142360pt;}
.y19c{bottom:533.155480pt;}
.y6d{bottom:533.161613pt;}
.y230{bottom:533.299013pt;}
.y142{bottom:534.122680pt;}
.y3c{bottom:536.237245pt;}
.y141{bottom:538.280147pt;}
.ye4{bottom:538.884933pt;}
.y22f{bottom:545.238853pt;}
.y13f{bottom:545.461347pt;}
.y140{bottom:549.618813pt;}
.y1fa{bottom:549.770013pt;}
.y1fb{bottom:551.962120pt;}
.y90{bottom:551.971707pt;}
.y16d{bottom:551.991173pt;}
.y1cf{bottom:551.994387pt;}
.y1f9{bottom:552.000760pt;}
.y150{bottom:552.017227pt;}
.ye2{bottom:552.036560pt;}
.y19b{bottom:552.049693pt;}
.y6c{bottom:552.055827pt;}
.y3b{bottom:552.264071pt;}
.y22e{bottom:557.258693pt;}
.y13e{bottom:563.678667pt;}
.y13c{bottom:563.683013pt;}
.y3a{bottom:568.290898pt;}
.y13d{bottom:568.440800pt;}
.y22d{bottom:569.278533pt;}
.y8f{bottom:570.787520pt;}
.y16c{bottom:570.806973pt;}
.y1ce{bottom:570.810187pt;}
.y1f8{bottom:570.816560pt;}
.y14f{bottom:570.833027pt;}
.ye1{bottom:570.852373pt;}
.y19a{bottom:570.865493pt;}
.y6b{bottom:570.871627pt;}
.y7{bottom:573.786667pt;}
.y22c{bottom:581.298373pt;}
.y13b{bottom:582.349440pt;}
.y139{bottom:582.353947pt;}
.y39{bottom:584.237725pt;}
.y13a{bottom:587.036133pt;}
.y8e{bottom:589.681720pt;}
.y16b{bottom:589.701187pt;}
.y8c{bottom:589.704400pt;}
.y1f7{bottom:589.710773pt;}
.y14e{bottom:589.727240pt;}
.ye0{bottom:589.746573pt;}
.y199{bottom:589.759707pt;}
.y6a{bottom:589.765840pt;}
.y6{bottom:592.685334pt;}
.y22b{bottom:593.238213pt;}
.y8d{bottom:595.502280pt;}
.y38{bottom:600.264551pt;}
.y138{bottom:601.020387pt;}
.y136{bottom:601.024773pt;}
.y22a{bottom:605.258053pt;}
.y137{bottom:605.706947pt;}
.y16a{bottom:608.516987pt;}
.y8b{bottom:608.520200pt;}
.y1f6{bottom:608.526587pt;}
.y14d{bottom:608.543040pt;}
.ydf{bottom:608.562387pt;}
.y198{bottom:608.575520pt;}
.y69{bottom:608.581640pt;}
.y37{bottom:616.291378pt;}
.y229{bottom:617.277893pt;}
.y135{bottom:619.691200pt;}
.y133{bottom:619.695587pt;}
.y134{bottom:624.377853pt;}
.y169{bottom:627.411200pt;}
.y8a{bottom:627.414413pt;}
.y1f5{bottom:627.420787pt;}
.y14c{bottom:627.437253pt;}
.yde{bottom:627.456587pt;}
.y197{bottom:627.469720pt;}
.y68{bottom:627.475853pt;}
.y228{bottom:629.297733pt;}
.y36{bottom:632.238205pt;}
.y132{bottom:638.362013pt;}
.y130{bottom:638.366480pt;}
.y227{bottom:641.237573pt;}
.y131{bottom:643.048667pt;}
.y5{bottom:645.598667pt;}
.y168{bottom:646.305413pt;}
.y89{bottom:646.308627pt;}
.y1f4{bottom:646.315000pt;}
.y14b{bottom:646.331453pt;}
.ydd{bottom:646.350800pt;}
.y196{bottom:646.363933pt;}
.y67{bottom:646.370053pt;}
.y35{bottom:648.265031pt;}
.y226{bottom:653.257413pt;}
.y12f{bottom:657.032920pt;}
.y12d{bottom:657.037307pt;}
.y12e{bottom:661.719480pt;}
.y34{bottom:664.291858pt;}
.y167{bottom:665.121213pt;}
.y88{bottom:665.124427pt;}
.y1f3{bottom:665.130800pt;}
.y14a{bottom:665.147267pt;}
.ydc{bottom:665.166613pt;}
.y195{bottom:665.179733pt;}
.y66{bottom:665.185867pt;}
.y225{bottom:665.277253pt;}
.y3{bottom:668.977329pt;}
.y166{bottom:670.941613pt;}
.y12c{bottom:675.703733pt;}
.y12a{bottom:675.707307pt;}
.y224{bottom:677.297093pt;}
.y33{bottom:680.238685pt;}
.y12b{bottom:680.390387pt;}
.y87{bottom:684.018640pt;}
.y1f2{bottom:684.025013pt;}
.y149{bottom:684.041480pt;}
.ydb{bottom:684.060813pt;}
.y194{bottom:684.073947pt;}
.y65{bottom:684.080080pt;}
.y2e{bottom:687.422885pt;}
.y223{bottom:689.236933pt;}
.y1cd{bottom:689.839187pt;}
.y129{bottom:694.299067pt;}
.y127{bottom:694.303453pt;}
.y32{bottom:696.265511pt;}
.y128{bottom:699.061360pt;}
.y2d{bottom:699.362725pt;}
.y222{bottom:701.256773pt;}
.y1f1{bottom:702.840827pt;}
.y148{bottom:702.857280pt;}
.y1cc{bottom:702.873213pt;}
.yda{bottom:702.876627pt;}
.y193{bottom:702.889747pt;}
.y64{bottom:702.895880pt;}
.y86{bottom:708.661293pt;}
.y2c{bottom:711.382565pt;}
.y31{bottom:712.292338pt;}
.y126{bottom:712.969893pt;}
.y124{bottom:712.974360pt;}
.y221{bottom:713.276613pt;}
.y1c2{bottom:714.565093pt;}
.y2b{bottom:715.842351pt;}
.y125{bottom:717.732093pt;}
.y147{bottom:721.751493pt;}
.y1cb{bottom:721.767413pt;}
.yd9{bottom:721.770827pt;}
.y1f0{bottom:721.774160pt;}
.y192{bottom:721.783960pt;}
.y63{bottom:721.790093pt;}
.y2a{bottom:723.400405pt;}
.y220{bottom:725.296453pt;}
.y1c1{bottom:726.511613pt;}
.y30{bottom:728.239165pt;}
.y123{bottom:731.640787pt;}
.y121{bottom:731.645333pt;}
.y29{bottom:735.420245pt;}
.y122{bottom:736.402920pt;}
.y21f{bottom:737.236293pt;}
.y28{bottom:739.880285pt;}
.y146{bottom:740.645693pt;}
.y1ca{bottom:740.661627pt;}
.yd8{bottom:740.665040pt;}
.y1ef{bottom:740.668373pt;}
.y191{bottom:740.678160pt;}
.y62{bottom:740.684293pt;}
.y1c0{bottom:745.178053pt;}
.y27{bottom:747.362725pt;}
.y21e{bottom:749.256133pt;}
.y120{bottom:750.311773pt;}
.y11e{bottom:750.316067pt;}
.y2f{bottom:752.277085pt;}
.y11f{bottom:755.073893pt;}
.y1bf{bottom:757.199227pt;}
.y26{bottom:759.382565pt;}
.y145{bottom:759.461507pt;}
.y1c9{bottom:759.477427pt;}
.yd7{bottom:759.480840pt;}
.y1ee{bottom:759.484187pt;}
.y190{bottom:759.493973pt;}
.y61{bottom:759.500107pt;}
.y21d{bottom:761.275973pt;}
.y11d{bottom:768.982507pt;}
.y11b{bottom:768.986893pt;}
.y21c{bottom:773.295813pt;}
.y11c{bottom:773.744627pt;}
.y1be{bottom:775.865667pt;}
.y144{bottom:778.355707pt;}
.y1c8{bottom:778.371640pt;}
.yd6{bottom:778.375053pt;}
.y1ed{bottom:778.378387pt;}
.y18f{bottom:778.388187pt;}
.y60{bottom:778.394307pt;}
.y2{bottom:781.661334pt;}
.y143{bottom:784.176107pt;}
.y21b{bottom:785.235653pt;}
.y11a{bottom:787.653320pt;}
.y118{bottom:787.657867pt;}
.y1bd{bottom:787.886840pt;}
.y119{bottom:792.415440pt;}
.y1c7{bottom:797.187440pt;}
.yd5{bottom:797.190867pt;}
.y1ec{bottom:797.194200pt;}
.y18e{bottom:797.203987pt;}
.y5f{bottom:797.210120pt;}
.y21a{bottom:797.255493pt;}
.y24{bottom:803.602938pt;}
.y117{bottom:806.324307pt;}
.y115{bottom:806.328600pt;}
.y1bc{bottom:806.553280pt;}
.y219{bottom:809.275333pt;}
.y25{bottom:810.103751pt;}
.y116{bottom:811.086427pt;}
.y1c6{bottom:816.081653pt;}
.yd4{bottom:816.085067pt;}
.y1eb{bottom:816.088400pt;}
.y18d{bottom:816.098200pt;}
.y5e{bottom:816.104333pt;}
.y1bb{bottom:818.574467pt;}
.y218{bottom:821.295173pt;}
.y114{bottom:824.995040pt;}
.y112{bottom:824.999587pt;}
.y113{bottom:829.757320pt;}
.y217{bottom:833.235013pt;}
.y1c5{bottom:834.897467pt;}
.yd3{bottom:834.900880pt;}
.y1ea{bottom:834.904213pt;}
.y18c{bottom:834.914000pt;}
.y5d{bottom:834.920133pt;}
.y23{bottom:835.585605pt;}
.y1ba{bottom:837.166227pt;}
.y1c4{bottom:840.718013pt;}
.y111{bottom:843.666013pt;}
.y10f{bottom:843.670400pt;}
.y216{bottom:845.254853pt;}
.y110{bottom:848.428147pt;}
.y1b9{bottom:849.187413pt;}
.yd2{bottom:853.795080pt;}
.y1e9{bottom:853.798427pt;}
.y18b{bottom:853.808213pt;}
.y5c{bottom:853.814347pt;}
.y215{bottom:857.274693pt;}
.y1{bottom:859.312000pt;}
.yd1{bottom:859.615560pt;}
.y10e{bottom:862.336827pt;}
.y10c{bottom:862.339240pt;}
.y10d{bottom:867.099040pt;}
.y1b8{bottom:867.853840pt;}
.y214{bottom:869.294533pt;}
.y22{bottom:870.273751pt;}
.y1e8{bottom:872.692627pt;}
.y18a{bottom:872.702413pt;}
.y5b{bottom:872.708547pt;}
.y1e7{bottom:878.437587pt;}
.y10b{bottom:879.875027pt;}
.y213{bottom:881.234373pt;}
.y189{bottom:891.518227pt;}
.y5a{bottom:891.524360pt;}
.y212{bottom:893.253333pt;}
.y109{bottom:897.410813pt;}
.y10a{bottom:902.173093pt;}
.y1e6{bottom:908.220293pt;}
.y188{bottom:910.412440pt;}
.y59{bottom:910.418560pt;}
.y107{bottom:914.948387pt;}
.y187{bottom:916.232907pt;}
.y108{bottom:920.239093pt;}
.y21{bottom:920.919440pt;}
.y58{bottom:929.234373pt;}
.y106{bottom:929.612387pt;}
.y1e5{bottom:935.054773pt;}
.y57{bottom:977.769178pt;}
.y56{bottom:991.070338pt;}
.yec{bottom:1004.367331pt;}
.y85{bottom:1004.371507pt;}
.y55{bottom:1004.371511pt;}
.y1c3{bottom:1004.385480pt;}
.h1a{height:17.942710pt;}
.hf{height:19.223590pt;}
.h19{height:20.505240pt;}
.h18{height:23.068924pt;}
.h16{height:25.223774pt;}
.h13{height:26.916949pt;}
.hd{height:28.196676pt;}
.h7{height:28.560000pt;}
.he{height:28.839615pt;}
.h14{height:30.762282pt;}
.h17{height:34.608000pt;}
.h15{height:37.588863pt;}
.h12{height:37.840681pt;}
.h11{height:38.453718pt;}
.h10{height:39.606933pt;}
.h6{height:40.800000pt;}
.hc{height:42.299051pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.ha{height:49.989333pt;}
.h5{height:69.360000pt;}
.hb{height:92.288385pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590573pt;}
.x8{left:79.143373pt;}
.x5{left:80.957493pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:134.475640pt;}
.xd{left:156.850400pt;}
.x2b{left:162.973200pt;}
.x19{left:164.862973pt;}
.xe{left:167.512693pt;}
.x34{left:172.422000pt;}
.x3a{left:177.335467pt;}
.x4{left:180.874667pt;}
.x2f{left:186.784267pt;}
.x30{left:199.936933pt;}
.x1e{left:215.886533pt;}
.x18{left:224.126000pt;}
.x38{left:229.870813pt;}
.x26{left:236.144800pt;}
.xc{left:237.127520pt;}
.x39{left:239.092933pt;}
.xa{left:240.982707pt;}
.x12{left:242.418800pt;}
.x21{left:244.306280pt;}
.x9{left:249.600040pt;}
.xb{left:251.645000pt;}
.x27{left:257.007880pt;}
.x22{left:261.392133pt;}
.x28{left:265.474000pt;}
.x3b{left:271.748000pt;}
.x29{left:286.261333pt;}
.x23{left:287.470800pt;}
.x2a{left:291.855067pt;}
.x35{left:298.733867pt;}
.x15{left:313.096013pt;}
.x16{left:321.940120pt;}
.x1a{left:326.021987pt;}
.x1b{left:337.209333pt;}
.x1d{left:353.839320pt;}
.x36{left:386.343187pt;}
.x37{left:393.146400pt;}
.x3{left:404.408000pt;}
.x24{left:407.584147pt;}
.x2e{left:408.793613pt;}
.x10{left:410.910120pt;}
.x11{left:420.736933pt;}
.x25{left:433.662920pt;}
.x33{left:455.961320pt;}
.x13{left:459.363613pt;}
.x14{left:470.248653pt;}
.x31{left:513.259720pt;}
.x1f{left:526.790400pt;}
.x32{left:528.151080pt;}
.x2c{left:553.398280pt;}
.x20{left:555.363733pt;}
.x2d{left:567.684933pt;}
.x1c{left:608.277053pt;}
.x17{left:614.777867pt;}
.xf{left:631.936813pt;}
}




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