
    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_ddde4b0038d6a80d1a4d3160.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_abb69c8f22c6e87adf6b5a58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8e0baead1261046313822983.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_92a5819be462b1c856c617d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_ec3d2bd27e1ec367d3362394.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_0cafdefd7f1e56644f54e272.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dbfc43fab752569904088dcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_174fa054c6e27e83fb5d454f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3faa57e0e44bb69d16b2d726.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_56eb0f9afb9145e178697e1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4f136658cc578ddfeebcd1ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.683000;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_a620e955ffe1274872fdf177.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.545000;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_11949d515de6eed4c62fcf84.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_49d783102c857ca8de00bdee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_b10c4c0d5d3409fc1bf438e1.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8b54831e8ce26167b4f76cda.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_35876cfff8ff7c75e4f2128d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.966309;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_529ed2a2f91b88b85bda46d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c909eafcc4463de67c17e0f2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1174f4a4fdd5bc9c300d88c7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5424a0ac0c5a9af2b6b8ff05.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_abdc95ed7251d1a483873dce.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_14dbf1c46f70312e33e35e3f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_95e1b272426651d279cdae6c.woff2')format("woff");}.ff18{font-family:ff18;line-height:2.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_863611e369149ca398bfe946.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6a317618bf26b2229615930b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.459000;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;}
.m4{transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250182,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250257,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250257,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250257,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250450,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250450,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250450,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,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);}
.v7{vertical-align:-37.783549px;}
.v8{vertical-align:-31.163428px;}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v6{vertical-align:-14.884946px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:5.814000px;}
.vc{vertical-align:14.778000px;}
.ve{vertical-align:17.268000px;}
.va{vertical-align:20.586000px;}
.v1{vertical-align:21.690000px;}
.vb{vertical-align:24.684000px;}
.v9{vertical-align:40.440000px;}
.v11{vertical-align:60.612000px;}
.v10{vertical-align:66.588000px;}
.v5{vertical-align:71.730000px;}
.vd{vertical-align:81.444000px;}
.ls1b{letter-spacing:0.000000px;}
.ls8a{letter-spacing:0.000300px;}
.ls6{letter-spacing:0.000312px;}
.ls24{letter-spacing:0.000538px;}
.ls34{letter-spacing:0.000564px;}
.ls86{letter-spacing:0.000579px;}
.ls15{letter-spacing:0.000993px;}
.ls8{letter-spacing:0.001866px;}
.ls26{letter-spacing:0.002338px;}
.ls50{letter-spacing:0.002727px;}
.ls49{letter-spacing:0.003269px;}
.ls73{letter-spacing:0.004893px;}
.ls7d{letter-spacing:0.006141px;}
.ls39{letter-spacing:0.006993px;}
.ls4a{letter-spacing:1.655249px;}
.ls87{letter-spacing:1.661249px;}
.ls7a{letter-spacing:1.661781px;}
.ls11{letter-spacing:2.984525px;}
.ls19{letter-spacing:2.987468px;}
.lsc{letter-spacing:2.988532px;}
.ls23{letter-spacing:2.989409px;}
.ls1a{letter-spacing:2.989559px;}
.ls3a{letter-spacing:2.990525px;}
.ls44{letter-spacing:3.441652px;}
.ls5f{letter-spacing:3.447652px;}
.ls4c{letter-spacing:4.646525px;}
.ls6d{letter-spacing:6.433866px;}
.ls83{letter-spacing:8.298312px;}
.ls60{letter-spacing:8.303139px;}
.ls89{letter-spacing:8.304312px;}
.ls77{letter-spacing:9.958200px;}
.ls38{letter-spacing:9.960300px;}
.ls5c{letter-spacing:9.964200px;}
.ls76{letter-spacing:9.966300px;}
.ls69{letter-spacing:10.242538px;}
.ls48{letter-spacing:10.336200px;}
.ls65{letter-spacing:12.950525px;}
.ls36{letter-spacing:13.282200px;}
.ls37{letter-spacing:13.284538px;}
.ls28{letter-spacing:14.028538px;}
.ls27{letter-spacing:14.032200px;}
.ls7c{letter-spacing:15.296367px;}
.ls55{letter-spacing:16.271374px;}
.ls81{letter-spacing:16.598800px;}
.ls22{letter-spacing:16.602538px;}
.ls78{letter-spacing:16.606893px;}
.ls30{letter-spacing:16.607023px;}
.ls59{letter-spacing:17.232538px;}
.ls64{letter-spacing:17.814538px;}
.ls1f{letter-spacing:17.816525px;}
.ls63{letter-spacing:17.818200px;}
.ls4b{letter-spacing:17.930525px;}
.ls52{letter-spacing:18.263781px;}
.ls35{letter-spacing:18.269781px;}
.ls1e{letter-spacing:18.836525px;}
.ls4f{letter-spacing:19.364800px;}
.ls3b{letter-spacing:19.586525px;}
.ls7b{letter-spacing:19.592525px;}
.ls3d{letter-spacing:19.595374px;}
.ls3c{letter-spacing:19.596532px;}
.ls2c{letter-spacing:19.800538px;}
.ls42{letter-spacing:20.045602px;}
.ls68{letter-spacing:20.049652px;}
.ls6a{letter-spacing:20.063781px;}
.ls45{letter-spacing:20.234646px;}
.ls72{letter-spacing:20.806893px;}
.ls46{letter-spacing:21.296646px;}
.ls84{letter-spacing:21.347249px;}
.ls3f{letter-spacing:21.378538px;}
.ls25{letter-spacing:21.458525px;}
.ls2d{letter-spacing:21.843031px;}
.ls67{letter-spacing:21.849652px;}
.ls29{letter-spacing:22.616525px;}
.ls79{letter-spacing:22.754525px;}
.ls2e{letter-spacing:23.372108px;}
.ls47{letter-spacing:23.772538px;}
.ls43{letter-spacing:23.778538px;}
.ls74{letter-spacing:23.786525px;}
.ls1c{letter-spacing:24.026525px;}
.ls3e{letter-spacing:24.821602px;}
.ls82{letter-spacing:24.906312px;}
.ls5b{letter-spacing:24.983781px;}
.ls2f{letter-spacing:25.050587px;}
.ls40{letter-spacing:25.059723px;}
.ls32{letter-spacing:26.394538px;}
.ls51{letter-spacing:26.508532px;}
.ls5d{letter-spacing:26.559652px;}
.ls2b{letter-spacing:26.564108px;}
.ls85{letter-spacing:26.566677px;}
.ls6f{letter-spacing:27.036538px;}
.ls75{letter-spacing:27.077139px;}
.ls7e{letter-spacing:27.518800px;}
.ls7f{letter-spacing:27.522538px;}
.ls2a{letter-spacing:27.770525px;}
.ls62{letter-spacing:27.936538px;}
.ls33{letter-spacing:28.541039px;}
.ls20{letter-spacing:28.826525px;}
.ls5a{letter-spacing:28.832525px;}
.ls6c{letter-spacing:29.174525px;}
.ls70{letter-spacing:29.799652px;}
.ls71{letter-spacing:29.805652px;}
.ls58{letter-spacing:29.919652px;}
.ls6b{letter-spacing:30.911781px;}
.ls41{letter-spacing:31.092312px;}
.ls53{letter-spacing:31.586800px;}
.ls1d{letter-spacing:32.882525px;}
.ls5e{letter-spacing:33.773139px;}
.ls31{letter-spacing:34.698312px;}
.ls80{letter-spacing:35.820312px;}
.ls61{letter-spacing:36.233139px;}
.ls66{letter-spacing:36.239139px;}
.ls6e{letter-spacing:36.452525px;}
.ls21{letter-spacing:54.236525px;}
.lsd{letter-spacing:74.723374px;}
.ls12{letter-spacing:112.436525px;}
.ls4d{letter-spacing:119.547269px;}
.ls56{letter-spacing:126.723269px;}
.ls54{letter-spacing:158.400538px;}
.ls16{letter-spacing:158.843139px;}
.ls9{letter-spacing:190.490525px;}
.lsf{letter-spacing:191.105023px;}
.ls1{letter-spacing:194.099781px;}
.ls0{letter-spacing:198.756300px;}
.ls4{letter-spacing:199.461652px;}
.ls5{letter-spacing:205.146312px;}
.ls13{letter-spacing:206.933602px;}
.ls14{letter-spacing:208.655139px;}
.lse{letter-spacing:208.720893px;}
.ls2{letter-spacing:212.474800px;}
.ls7{letter-spacing:214.321866px;}
.lsa{letter-spacing:215.075039px;}
.ls10{letter-spacing:216.617249px;}
.ls3{letter-spacing:217.023723px;}
.lsb{letter-spacing:217.310646px;}
.ls18{letter-spacing:217.454108px;}
.ls17{letter-spacing:222.003031px;}
.ls57{letter-spacing:927.716338px;}
.ls88{letter-spacing:974.951249px;}
.ls4e{letter-spacing:1063.706338px;}
.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;}
}
.ws7d{word-spacing:-59.775600px;}
.ws4{word-spacing:-47.654765px;}
.wsd{word-spacing:-38.937826px;}
.wse{word-spacing:-28.955301px;}
.wse0{word-spacing:-27.324590px;}
.wsa7{word-spacing:-18.991889px;}
.ws46{word-spacing:-18.954017px;}
.wsb4{word-spacing:-18.791558px;}
.ws3f{word-spacing:-16.605662px;}
.wscb{word-spacing:-16.273350px;}
.wse2{word-spacing:-15.221892px;}
.wsa3{word-spacing:-13.860966px;}
.ws9e{word-spacing:-10.991764px;}
.ws9c{word-spacing:-6.682912px;}
.wsa0{word-spacing:-6.644193px;}
.ws6e{word-spacing:-6.643262px;}
.wsb5{word-spacing:-6.639062px;}
.ws7c{word-spacing:-6.623136px;}
.wsde{word-spacing:-6.615096px;}
.wsb8{word-spacing:-6.367262px;}
.wsca{word-spacing:-4.356029px;}
.ws63{word-spacing:-2.883582px;}
.ws80{word-spacing:-2.677947px;}
.ws66{word-spacing:-2.309735px;}
.ws17{word-spacing:-2.259518px;}
.ws19{word-spacing:-1.781313px;}
.wscf{word-spacing:-1.542210px;}
.wsa5{word-spacing:-1.090060px;}
.wsa4{word-spacing:-1.064006px;}
.wsda{word-spacing:-0.884679px;}
.ws2b{word-spacing:-0.824903px;}
.ws89{word-spacing:-0.765128px;}
.ws3a{word-spacing:-0.705352px;}
.ws1b{word-spacing:-0.526025px;}
.ws4a{word-spacing:-0.466250px;}
.wsed{word-spacing:-0.435167px;}
.ws50{word-spacing:-0.406474px;}
.wsdc{word-spacing:-0.227147px;}
.ws15{word-spacing:-0.148723px;}
.wscd{word-spacing:-0.107596px;}
.wse6{word-spacing:-0.071731px;}
.wseb{word-spacing:-0.047821px;}
.wsf5{word-spacing:-0.035866px;}
.ws100{word-spacing:-0.004782px;}
.ws13{word-spacing:0.000000px;}
.ws7f{word-spacing:0.011955px;}
.wsd2{word-spacing:0.071731px;}
.ws32{word-spacing:0.370609px;}
.wse7{word-spacing:0.425603px;}
.ws2f{word-spacing:0.430384px;}
.ws99{word-spacing:0.490160px;}
.ws38{word-spacing:0.549936px;}
.ws9{word-spacing:0.607922px;}
.ws51{word-spacing:0.609711px;}
.wsf6{word-spacing:0.616886px;}
.wsa9{word-spacing:0.628738px;}
.ws4c{word-spacing:0.729262px;}
.ws53{word-spacing:0.789038px;}
.wsd7{word-spacing:0.848814px;}
.wsf4{word-spacing:0.903809px;}
.wsd3{word-spacing:0.908589px;}
.ws5c{word-spacing:0.968365px;}
.wsec{word-spacing:1.095092px;}
.ws1a{word-spacing:1.147692px;}
.wsc9{word-spacing:1.190733px;}
.wse3{word-spacing:1.207467px;}
.wsa2{word-spacing:1.267243px;}
.ws6f{word-spacing:1.327018px;}
.ws30{word-spacing:1.566121px;}
.wsea{word-spacing:1.621118px;}
.ws58{word-spacing:1.625896px;}
.ws1c{word-spacing:1.685672px;}
.ws39{word-spacing:1.745448px;}
.wsb7{word-spacing:1.805223px;}
.ws70{word-spacing:1.864999px;}
.wsc7{word-spacing:1.898478px;}
.wsd8{word-spacing:1.924774px;}
.ws4e{word-spacing:1.984550px;}
.ws2c{word-spacing:2.044326px;}
.ws102{word-spacing:2.099324px;}
.wsf{word-spacing:2.163877px;}
.ws41{word-spacing:2.223652px;}
.ws6d{word-spacing:2.283428px;}
.wsc2{word-spacing:2.402979px;}
.ws64{word-spacing:2.567966px;}
.wscc{word-spacing:2.582306px;}
.wsf0{word-spacing:2.625351px;}
.ws28{word-spacing:2.642082px;}
.wsa{word-spacing:2.652261px;}
.wsef{word-spacing:2.673172px;}
.ws8a{word-spacing:2.701857px;}
.ws10d{word-spacing:2.720992px;}
.ws2a{word-spacing:2.761633px;}
.ws10f{word-spacing:2.768813px;}
.wse9{word-spacing:2.800134px;}
.ws11{word-spacing:2.816633px;}
.ws79{word-spacing:2.821408px;}
.wsf2{word-spacing:2.826770px;}
.ws106{word-spacing:2.826854px;}
.ws9b{word-spacing:2.940960px;}
.ws65{word-spacing:2.998352px;}
.ws3b{word-spacing:3.000735px;}
.wsf8{word-spacing:3.055736px;}
.ws71{word-spacing:3.060511px;}
.ws52{word-spacing:3.180062px;}
.ws49{word-spacing:3.237455px;}
.ws104{word-spacing:3.247019px;}
.wsc4{word-spacing:3.294446px;}
.ws7e{word-spacing:3.297421px;}
.ws3{word-spacing:3.299613px;}
.ws69{word-spacing:3.333096px;}
.ws26{word-spacing:3.419164px;}
.ws107{word-spacing:3.438301px;}
.ws20{word-spacing:3.478940px;}
.wsb{word-spacing:3.513036px;}
.ws21{word-spacing:3.538716px;}
.ws42{word-spacing:3.598491px;}
.wsaf{word-spacing:3.658267px;}
.ws108{word-spacing:3.677404px;}
.ws62{word-spacing:3.763481px;}
.ws4b{word-spacing:3.897369px;}
.ws74{word-spacing:3.957145px;}
.wsc8{word-spacing:4.050405px;}
.wsc6{word-spacing:4.098225px;}
.ws3e{word-spacing:4.136472px;}
.wsc1{word-spacing:4.195073px;}
.ws43{word-spacing:4.196247px;}
.ws23{word-spacing:4.315798px;}
.wsf1{word-spacing:4.346893px;}
.ws94{word-spacing:4.375574px;}
.ws18{word-spacing:4.435350px;}
.ws109{word-spacing:4.442534px;}
.ws5b{word-spacing:4.495125px;}
.ws81{word-spacing:4.614676px;}
.wsdb{word-spacing:4.794003px;}
.ws6a{word-spacing:4.911176px;}
.wsd5{word-spacing:4.913554px;}
.ws10a{word-spacing:4.920740px;}
.wsce{word-spacing:5.092881px;}
.wsdd{word-spacing:5.152657px;}
.wsf7{word-spacing:5.159843px;}
.ws7b{word-spacing:5.212432px;}
.ws90{word-spacing:5.245920px;}
.ws84{word-spacing:5.272208px;}
.ws6b{word-spacing:5.331984px;}
.ws6{word-spacing:5.342181px;}
.ws48{word-spacing:5.389382px;}
.wsc3{word-spacing:5.391759px;}
.wse4{word-spacing:5.412359px;}
.ws29{word-spacing:5.451535px;}
.ws75{word-spacing:5.511310px;}
.ws2d{word-spacing:5.630862px;}
.ws33{word-spacing:5.690637px;}
.ws54{word-spacing:5.750413px;}
.ws4f{word-spacing:5.810188px;}
.wsae{word-spacing:5.929740px;}
.ws83{word-spacing:5.989515px;}
.ws92{word-spacing:6.109066px;}
.ws24{word-spacing:6.150892px;}
.ws35{word-spacing:6.168842px;}
.ws25{word-spacing:6.228618px;}
.wse1{word-spacing:6.248091px;}
.wse8{word-spacing:6.259717px;}
.ws37{word-spacing:6.288393px;}
.wsfc{word-spacing:6.403178px;}
.ws8c{word-spacing:6.407944px;}
.ws9a{word-spacing:6.467720px;}
.wsb0{word-spacing:6.527496px;}
.wsd6{word-spacing:6.647047px;}
.ws8{word-spacing:6.687141px;}
.ws76{word-spacing:6.706822px;}
.wsf9{word-spacing:6.785743px;}
.wsa1{word-spacing:6.886149px;}
.wsa6{word-spacing:6.896824px;}
.ws34{word-spacing:6.945925px;}
.wsd0{word-spacing:7.065476px;}
.ws96{word-spacing:7.185027px;}
.ws3d{word-spacing:7.304578px;}
.wsac{word-spacing:7.337830px;}
.wsad{word-spacing:7.364354px;}
.ws44{word-spacing:7.543681px;}
.ws22{word-spacing:7.603456px;}
.wsfe{word-spacing:7.694335px;}
.ws85{word-spacing:7.782783px;}
.ws105{word-spacing:7.789976px;}
.wsb2{word-spacing:7.842559px;}
.ws82{word-spacing:7.962110px;}
.ws10b{word-spacing:8.029079px;}
.wsd4{word-spacing:8.081661px;}
.ws7{word-spacing:8.139698px;}
.ws7a{word-spacing:8.141437px;}
.ws56{word-spacing:8.201212px;}
.ws97{word-spacing:8.440315px;}
.ws87{word-spacing:8.500090px;}
.wsbc{word-spacing:8.535943px;}
.wsbd{word-spacing:8.559866px;}
.ws77{word-spacing:8.619642px;}
.wsb1{word-spacing:8.858744px;}
.wsd9{word-spacing:9.038071px;}
.ws91{word-spacing:9.097846px;}
.ws98{word-spacing:9.157622px;}
.ws9d{word-spacing:9.179862px;}
.ws9f{word-spacing:9.217398px;}
.ws88{word-spacing:9.277173px;}
.ws5a{word-spacing:9.336949px;}
.ws59{word-spacing:9.576051px;}
.wsbf{word-spacing:9.736686px;}
.wsc0{word-spacing:9.755378px;}
.ws2e{word-spacing:9.815154px;}
.wsa8{word-spacing:9.874929px;}
.ws78{word-spacing:9.934705px;}
.ws36{word-spacing:9.994480px;}
.wsfb{word-spacing:10.085365px;}
.wsb6{word-spacing:10.114032px;}
.ws5d{word-spacing:10.173807px;}
.ws5{word-spacing:10.345432px;}
.wsbb{word-spacing:10.353134px;}
.wsf3{word-spacing:10.467929px;}
.ws86{word-spacing:10.652012px;}
.wsd1{word-spacing:10.891114px;}
.wsbe{word-spacing:11.130217px;}
.ws1d{word-spacing:11.189992px;}
.ws95{word-spacing:11.429095px;}
.ws93{word-spacing:11.488870px;}
.ws1e{word-spacing:11.548646px;}
.ws8b{word-spacing:12.206178px;}
.ws6c{word-spacing:12.265953px;}
.ws73{word-spacing:12.505056px;}
.wsba{word-spacing:12.624607px;}
.wsb9{word-spacing:12.905208px;}
.wsaa{word-spacing:12.911208px;}
.ws1f{word-spacing:13.640792px;}
.ws16{word-spacing:14.297402px;}
.wsee{word-spacing:15.302592px;}
.ws101{word-spacing:15.685157px;}
.ws45{word-spacing:16.944231px;}
.ws4d{word-spacing:17.256862px;}
.ws103{word-spacing:17.645801px;}
.ws10e{word-spacing:18.219649px;}
.ws12{word-spacing:18.315290px;}
.wsdf{word-spacing:19.550615px;}
.ws2{word-spacing:21.280114px;}
.ws1{word-spacing:21.339889px;}
.wsfd{word-spacing:21.614911px;}
.wsfa{word-spacing:21.997476px;}
.ws72{word-spacing:22.834279px;}
.wsff{word-spacing:22.858247px;}
.ws3c{word-spacing:22.894055px;}
.ws10c{word-spacing:23.145170px;}
.wse5{word-spacing:24.965166px;}
.ws31{word-spacing:26.827469px;}
.wsb3{word-spacing:27.365208px;}
.ws40{word-spacing:29.135208px;}
.ws27{word-spacing:29.837208px;}
.wsab{word-spacing:30.275208px;}
.ws55{word-spacing:36.774784px;}
.ws0{word-spacing:38.631358px;}
.ws5e{word-spacing:41.040861px;}
.ws5f{word-spacing:41.109482px;}
.ws61{word-spacing:50.098139px;}
.ws60{word-spacing:50.100287px;}
.ws67{word-spacing:52.760279px;}
.ws8e{word-spacing:55.688339px;}
.ws57{word-spacing:68.682164px;}
.wsc{word-spacing:77.324615px;}
.ws14{word-spacing:80.625869px;}
.ws8d{word-spacing:91.036650px;}
.wsc5{word-spacing:119.024196px;}
.ws10{word-spacing:128.363166px;}
.ws47{word-spacing:284.717699px;}
.ws8f{word-spacing:1474.649350px;}
.ws68{word-spacing:1892.786443px;}
._1c{margin-left:-28.631113px;}
._1{margin-left:-9.709486px;}
._a{margin-left:-5.800442px;}
._3{margin-left:-4.355479px;}
._0{margin-left:-3.202064px;}
._4{margin-left:-1.247148px;}
._5{width:1.721549px;}
._2{width:3.202064px;}
._30{width:4.232946px;}
._24{width:5.981959px;}
._18{width:9.153275px;}
._1d{width:10.863412px;}
._14{width:14.748294px;}
._15{width:17.161394px;}
._d{width:18.783101px;}
._10{width:20.964956px;}
._29{width:22.094958px;}
._9{width:23.332451px;}
._c{width:24.780837px;}
._16{width:25.934471px;}
._7{width:26.952998px;}
._b{width:28.399285px;}
._f{width:30.186678px;}
._13{width:32.426066px;}
._6{width:33.624000px;}
._12{width:35.620327px;}
._8{width:37.076882px;}
._1a{width:38.282202px;}
._11{width:39.332345px;}
._28{width:40.483829px;}
._27{width:41.739648px;}
._1b{width:43.373284px;}
._31{width:44.631821px;}
._1e{width:45.664223px;}
._34{width:46.833917px;}
._1f{width:48.038100px;}
._e{width:50.271280px;}
._2f{width:52.060212px;}
._26{width:53.387750px;}
._19{width:68.741940px;}
._21{width:69.952971px;}
._2d{width:73.352768px;}
._23{width:78.908773px;}
._17{width:81.199718px;}
._20{width:84.696312px;}
._2a{width:87.538935px;}
._2c{width:90.791721px;}
._25{width:92.344137px;}
._22{width:93.626408px;}
._2b{width:99.434855px;}
._2e{width:108.766676px;}
._33{width:144.917140px;}
._32{width:158.073377px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs1d{font-size:40.969996px;}
.fs3{font-size:41.842800px;}
.fs1c{font-size:46.774708px;}
.fs1b{font-size:46.822683px;}
.fs6{font-size:47.820600px;}
.fs11{font-size:48.348000px;}
.fs14{font-size:51.929438px;}
.fs10{font-size:52.091163px;}
.fse{font-size:52.094487px;}
.fsf{font-size:52.185018px;}
.fsa{font-size:52.187375px;}
.fsd{font-size:52.188342px;}
.fsc{font-size:52.209434px;}
.fs9{font-size:52.281352px;}
.fsb{font-size:52.303471px;}
.fs4{font-size:53.798400px;}
.fs8{font-size:53.846640px;}
.fs17{font-size:55.665781px;}
.fs1a{font-size:55.687688px;}
.fs13{font-size:59.304410px;}
.fs12{font-size:59.347895px;}
.fs2{font-size:59.775600px;}
.fs16{font-size:63.571262px;}
.fs19{font-size:63.596401px;}
.fs15{font-size:63.617950px;}
.fs18{font-size:63.643089px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs7{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y14f{bottom:4.209067px;}
.yb2{bottom:4.256422px;}
.y8e{bottom:4.261725px;}
.yc8{bottom:4.622058px;}
.y107{bottom:4.843428px;}
.y150{bottom:19.085304px;}
.yb3{bottom:20.835873px;}
.y8f{bottom:20.871983px;}
.y64{bottom:21.552866px;}
.y66{bottom:22.567127px;}
.yc9{bottom:23.477515px;}
.y108{bottom:25.055422px;}
.yb5{bottom:33.365559px;}
.y91{bottom:33.424634px;}
.y2c{bottom:34.774500px;}
.y152{bottom:35.631837px;}
.ycb{bottom:37.726869px;}
.y63{bottom:38.379941px;}
.y65{bottom:39.394202px;}
.y10a{bottom:40.330374px;}
.yc1{bottom:42.173205px;}
.y153{bottom:48.891881px;}
.y5f{bottom:48.970500px;}
.y2b{bottom:48.972000px;}
.yb6{bottom:51.834797px;}
.y92{bottom:51.927565px;}
.y10b{bottom:59.017866px;}
.y154{bottom:62.151925px;}
.y2a{bottom:63.168000px;}
.ycc{bottom:66.782486px;}
.yca{bottom:68.791503px;}
.yb4{bottom:68.835163px;}
.y90{bottom:68.959659px;}
.yb7{bottom:70.304035px;}
.y93{bottom:70.431100px;}
.y109{bottom:73.630512px;}
.y155{bottom:75.412650px;}
.y10c{bottom:77.705957px;}
.y156{bottom:88.672694px;}
.yb8{bottom:88.772669px;}
.y94{bottom:88.934031px;}
.ycd{bottom:95.838104px;}
.y10d{bottom:96.394048px;}
.y157{bottom:101.932738px;}
.y68{bottom:107.083482px;}
.yb9{bottom:107.241908px;}
.y95{bottom:107.437566px;}
.y8c{bottom:108.000000px;}
.y5e{bottom:109.750500px;}
.y29{bottom:112.219500px;}
.y177{bottom:114.310500px;}
.y10e{bottom:115.081540px;}
.y158{bottom:115.193463px;}
.y105{bottom:121.663500px;}
.y151{bottom:123.972948px;}
.yce{bottom:124.894172px;}
.yba{bottom:125.711146px;}
.y8b{bottom:125.932500px;}
.y96{bottom:125.941101px;}
.y28{bottom:126.924000px;}
.y5d{bottom:127.683000px;}
.y159{bottom:128.453508px;}
.y124{bottom:131.439000px;}
.y176{bottom:132.243000px;}
.y10f{bottom:133.769631px;}
.y67{bottom:135.489080px;}
.y104{bottom:139.596000px;}
.y27{bottom:141.630000px;}
.y15a{bottom:141.713552px;}
.y8a{bottom:143.865000px;}
.ybb{bottom:144.179779px;}
.y97{bottom:144.444032px;}
.y5c{bottom:145.615500px;}
.y175{bottom:150.175500px;}
.yc0{bottom:152.269306px;}
.y110{bottom:152.457123px;}
.ycf{bottom:153.949789px;}
.y15b{bottom:154.974277px;}
.y62{bottom:156.487310px;}
.y103{bottom:157.528500px;}
.y19f{bottom:158.577000px;}
.y89{bottom:161.797500px;}
.y148{bottom:161.799000px;}
.ybc{bottom:162.649018px;}
.y98{bottom:162.946962px;}
.y5b{bottom:163.548000px;}
.yd5{bottom:167.299500px;}
.y174{bottom:168.109500px;}
.y15c{bottom:168.234321px;}
.y111{bottom:171.145213px;}
.y69{bottom:174.168617px;}
.y26{bottom:177.448500px;}
.y88{bottom:179.730000px;}
.y147{bottom:179.731500px;}
.ybd{bottom:181.118256px;}
.y99{bottom:181.450497px;}
.y5a{bottom:181.480500px;}
.y15d{bottom:181.494365px;}
.yd4{bottom:181.495500px;}
.yd0{bottom:183.005407px;}
.y102{bottom:185.113500px;}
.y173{bottom:186.042000px;}
.y6b{bottom:186.955998px;}
.yd2{bottom:187.160344px;}
.y112{bottom:189.832705px;}
.y19e{bottom:191.308500px;}
.y15e{bottom:194.755090px;}
.yd3{bottom:195.693000px;}
.y87{bottom:197.664000px;}
.y25{bottom:198.370500px;}
.y59{bottom:199.413000px;}
.y6a{bottom:203.783073px;}
.y115{bottom:203.848586px;}
.y172{bottom:203.974500px;}
.y15f{bottom:208.015134px;}
.y113{bottom:208.520796px;}
.yd1{bottom:212.061475px;}
.ya6{bottom:213.939900px;}
.y9a{bottom:213.945943px;}
.y86{bottom:215.596500px;}
.y58{bottom:217.347000px;}
.y24{bottom:219.291000px;}
.y160{bottom:221.275178px;}
.y171{bottom:221.907000px;}
.y101{bottom:223.957500px;}
.yc7{bottom:224.833500px;}
.y114{bottom:227.208887px;}
.ya7{bottom:230.520242px;}
.y9b{bottom:230.562547px;}
.y85{bottom:233.529000px;}
.y161{bottom:234.535903px;}
.y19d{bottom:234.750000px;}
.y57{bottom:235.279500px;}
.y170{bottom:239.839500px;}
.y23{bottom:240.213000px;}
.y100{bottom:241.890000px;}
.ya9{bottom:243.051440px;}
.y9d{bottom:243.120940px;}
.y162{bottom:247.795947px;}
.ybf{bottom:251.215150px;}
.y84{bottom:251.461500px;}
.y16a{bottom:252.199411px;}
.y19c{bottom:252.682500px;}
.y16f{bottom:257.773500px;}
.y116{bottom:259.350062px;}
.yff{bottom:259.822500px;}
.y163{bottom:261.055991px;}
.y22{bottom:261.135000px;}
.yaa{bottom:261.521282px;}
.y9e{bottom:261.631576px;}
.y56{bottom:262.863000px;}
.y169{bottom:264.505697px;}
.y6c{bottom:269.055222px;}
.y19b{bottom:270.615000px;}
.y164{bottom:274.316716px;}
.y146{bottom:275.311500px;}
.y168{bottom:276.811982px;}
.yfe{bottom:277.755000px;}
.ya8{bottom:278.522252px;}
.y9c{bottom:278.670318px;}
.y145{bottom:279.006000px;}
.y83{bottom:279.046500px;}
.y117{bottom:279.570916px;}
.yab{bottom:279.991729px;}
.y9f{bottom:280.143270px;}
.y21{bottom:282.055500px;}
.y165{bottom:287.576760px;}
.y19a{bottom:288.547500px;}
.y167{bottom:289.120013px;}
.y144{bottom:289.257000px;}
.y6d{bottom:289.603548px;}
.y16e{bottom:294.568500px;}
.yfd{bottom:295.687500px;}
.yac{bottom:298.462176px;}
.ya0{bottom:298.653906px;}
.y166{bottom:300.836804px;}
.y55{bottom:301.707000px;}
.y20{bottom:302.977500px;}
.y199{bottom:306.480000px;}
.y16d{bottom:308.764500px;}
.y119{bottom:310.431173px;}
.yfc{bottom:313.621500px;}
.yad{bottom:316.932018px;}
.ya1{bottom:317.165146px;}
.y82{bottom:317.838000px;}
.y1d2{bottom:318.852000px;}
.y54{bottom:319.639500px;}
.y16c{bottom:322.962000px;}
.y1f{bottom:323.899500px;}
.y143{bottom:324.957000px;}
.y118{bottom:328.165009px;}
.y11a{bottom:329.905472px;}
.yfb{bottom:331.554000px;}
.y198{bottom:334.126500px;}
.yae{bottom:335.403070px;}
.ya2{bottom:335.676387px;}
.y81{bottom:335.770500px;}
.y16b{bottom:337.158000px;}
.y1d1{bottom:337.267500px;}
.y53{bottom:337.572000px;}
.y6e{bottom:339.199430px;}
.y142{bottom:342.889500px;}
.y1e{bottom:344.821500px;}
.y197{bottom:347.742000px;}
.y11b{bottom:349.379771px;}
.y1d0{bottom:352.959000px;}
.y80{bottom:353.703000px;}
.y6f{bottom:353.802340px;}
.yaf{bottom:353.872912px;}
.ya3{bottom:354.187023px;}
.y52{bottom:355.506000px;}
.ybe{bottom:357.237328px;}
.yfa{bottom:359.137500px;}
.y141{bottom:360.822000px;}
.y1cf{bottom:364.431000px;}
.y1d{bottom:365.742000px;}
.y14e{bottom:366.298500px;}
.y11c{bottom:368.853472px;}
.y7f{bottom:371.635500px;}
.yb0{bottom:372.342755px;}
.ya4{bottom:372.698263px;}
.y51{bottom:373.438500px;}
.y1ce{bottom:378.627000px;}
.y140{bottom:378.756000px;}
.y61{bottom:379.226928px;}
.y1c{bottom:386.664000px;}
.y196{bottom:388.237500px;}
.y11d{bottom:388.328370px;}
.y7e{bottom:389.568000px;}
.yb1{bottom:390.813806px;}
.ya5{bottom:391.209504px;}
.y50{bottom:391.371000px;}
.y1cd{bottom:397.042500px;}
.yf9{bottom:397.981500px;}
.y13e{bottom:400.776000px;}
.y195{bottom:406.170000px;}
.y13f{bottom:407.332500px;}
.y7d{bottom:407.502000px;}
.y1b{bottom:407.586000px;}
.y11e{bottom:407.802669px;}
.y1cc{bottom:408.514500px;}
.y4f{bottom:409.303500px;}
.y13d{bottom:411.027000px;}
.yf8{bottom:415.914000px;}
.y194{bottom:424.102500px;}
.y7c{bottom:425.434500px;}
.y1cb{bottom:426.931500px;}
.y4e{bottom:427.236000px;}
.y11f{bottom:427.276370px;}
.y1a{bottom:428.506500px;}
.yf7{bottom:433.846500px;}
.y1ca{bottom:438.403500px;}
.y193{bottom:442.035000px;}
.y13c{bottom:442.120500px;}
.y7b{bottom:443.367000px;}
.y4d{bottom:445.168500px;}
.y120{bottom:446.750669px;}
.y19{bottom:449.428500px;}
.yf6{bottom:451.780500px;}
.y1c9{bottom:456.819000px;}
.y192{bottom:459.967500px;}
.y13b{bottom:460.053000px;}
.y7a{bottom:461.299500px;}
.y4c{bottom:463.102500px;}
.y121{bottom:466.224968px;}
.y1c8{bottom:468.291000px;}
.yf5{bottom:469.713000px;}
.y18{bottom:470.350500px;}
.y191{bottom:477.900000px;}
.y79{bottom:479.232000px;}
.y4b{bottom:481.035000px;}
.y139{bottom:482.074500px;}
.y138{bottom:485.752500px;}
.y1c7{bottom:486.706500px;}
.yf4{bottom:487.645500px;}
.y17{bottom:491.271000px;}
.y190{bottom:495.834000px;}
.y137{bottom:496.002000px;}
.y13a{bottom:496.003500px;}
.y78{bottom:497.166000px;}
.y1c6{bottom:498.178500px;}
.y4a{bottom:498.967500px;}
.yf3{bottom:505.578000px;}
.y16{bottom:512.193000px;}
.y18f{bottom:513.766500px;}
.y77{bottom:515.098500px;}
.y1c5{bottom:516.595500px;}
.yf2{bottom:523.510500px;}
.y1c4{bottom:528.067500px;}
.y136{bottom:530.872500px;}
.y49{bottom:531.699000px;}
.y76{bottom:533.031000px;}
.y15{bottom:533.115000px;}
.yf1{bottom:541.443000px;}
.y1c3{bottom:546.483000px;}
.y135{bottom:548.806500px;}
.y18e{bottom:549.631500px;}
.y75{bottom:550.963500px;}
.y14{bottom:554.037000px;}
.y1c2{bottom:557.955000px;}
.yf0{bottom:559.377000px;}
.y123{bottom:560.697000px;}
.y134{bottom:566.739000px;}
.y18d{bottom:567.564000px;}
.y74{bottom:568.896000px;}
.yc6{bottom:569.679000px;}
.y122{bottom:574.893000px;}
.y13{bottom:574.957500px;}
.y48{bottom:575.140500px;}
.y1c1{bottom:576.370500px;}
.yef{bottom:577.309500px;}
.yc5{bottom:583.875000px;}
.y133{bottom:584.671500px;}
.y18c{bottom:585.496500px;}
.y73{bottom:586.828500px;}
.y1c0{bottom:587.842500px;}
.y47{bottom:593.073000px;}
.yee{bottom:595.242000px;}
.y12{bottom:595.879500px;}
.yc4{bottom:598.072500px;}
.y132{bottom:602.604000px;}
.y18b{bottom:603.430500px;}
.y106{bottom:604.035000px;}
.y72{bottom:604.762500px;}
.y1bf{bottom:606.258000px;}
.y46{bottom:611.005500px;}
.yc3{bottom:612.268500px;}
.yed{bottom:613.174500px;}
.y11{bottom:616.801500px;}
.y1be{bottom:617.730000px;}
.y131{bottom:620.536500px;}
.y18a{bottom:621.363000px;}
.yc2{bottom:626.466000px;}
.y45{bottom:628.938000px;}
.yec{bottom:631.107000px;}
.y1bd{bottom:636.147000px;}
.y130{bottom:638.469000px;}
.y189{bottom:639.295500px;}
.y44{bottom:646.870500px;}
.y1bc{bottom:647.619000px;}
.y10{bottom:648.636000px;}
.yeb{bottom:649.039500px;}
.y8d{bottom:655.606500px;}
.y12f{bottom:656.403000px;}
.y188{bottom:657.228000px;}
.y71{bottom:659.812500px;}
.y1bb{bottom:661.815000px;}
.y43{bottom:664.804500px;}
.yea{bottom:666.973500px;}
.y70{bottom:674.010000px;}
.y12e{bottom:674.335500px;}
.y187{bottom:675.160500px;}
.y1ba{bottom:680.230500px;}
.y42{bottom:682.737000px;}
.ye9{bottom:684.906000px;}
.y1b9{bottom:691.702500px;}
.yf{bottom:692.077500px;}
.y12d{bottom:692.268000px;}
.y186{bottom:693.093000px;}
.y41{bottom:700.669500px;}
.ye8{bottom:702.838500px;}
.y60{bottom:703.150500px;}
.y1b8{bottom:705.900000px;}
.y14d{bottom:707.892000px;}
.ye{bottom:708.514500px;}
.y12c{bottom:710.200500px;}
.y185{bottom:711.027000px;}
.y40{bottom:718.602000px;}
.ye7{bottom:720.771000px;}
.y1b7{bottom:724.315500px;}
.yd{bottom:724.953000px;}
.y12b{bottom:728.133000px;}
.y184{bottom:728.959500px;}
.y1b6{bottom:735.787500px;}
.y3f{bottom:736.534500px;}
.ye6{bottom:738.703500px;}
.yc{bottom:741.391500px;}
.y183{bottom:746.892000px;}
.y14c{bottom:751.333500px;}
.y1b5{bottom:754.204500px;}
.y3e{bottom:754.467000px;}
.ye5{bottom:756.636000px;}
.yb{bottom:757.830000px;}
.y12a{bottom:760.864500px;}
.y182{bottom:764.824500px;}
.y1b4{bottom:765.676500px;}
.y14b{bottom:769.266000px;}
.y3d{bottom:772.401000px;}
.ya{bottom:774.268500px;}
.ye4{bottom:774.570000px;}
.y181{bottom:782.757000px;}
.y1b3{bottom:784.092000px;}
.y14a{bottom:787.198500px;}
.y3c{bottom:790.333500px;}
.y9{bottom:790.707000px;}
.ye3{bottom:792.502500px;}
.y1b2{bottom:795.564000px;}
.y180{bottom:800.691000px;}
.y129{bottom:805.132500px;}
.y3b{bottom:808.266000px;}
.ye2{bottom:810.435000px;}
.y1b1{bottom:813.979500px;}
.y17f{bottom:818.623500px;}
.y128{bottom:823.065000px;}
.y1b0{bottom:825.451500px;}
.y3a{bottom:826.198500px;}
.ye1{bottom:828.367500px;}
.y17e{bottom:836.556000px;}
.y8{bottom:840.483000px;}
.y127{bottom:840.997500px;}
.y1af{bottom:843.867000px;}
.y39{bottom:844.131000px;}
.ye0{bottom:846.300000px;}
.y17d{bottom:854.488500px;}
.y1ae{bottom:855.339000px;}
.y126{bottom:858.930000px;}
.y7{bottom:861.405000px;}
.y38{bottom:862.063500px;}
.ydf{bottom:864.234000px;}
.y17c{bottom:872.421000px;}
.y1ad{bottom:873.756000px;}
.y125{bottom:876.862500px;}
.y37{bottom:879.997500px;}
.y1ac{bottom:885.228000px;}
.y17b{bottom:890.353500px;}
.yde{bottom:891.817500px;}
.y6{bottom:894.795000px;}
.y36{bottom:897.930000px;}
.y1ab{bottom:903.643500px;}
.y17a{bottom:908.287500px;}
.y5{bottom:912.729000px;}
.y1aa{bottom:915.115500px;}
.y35{bottom:915.862500px;}
.y179{bottom:926.220000px;}
.y4{bottom:930.661500px;}
.y1a9{bottom:933.531000px;}
.y34{bottom:933.795000px;}
.y149{bottom:944.884500px;}
.y1a8{bottom:945.003000px;}
.ydd{bottom:948.594000px;}
.y33{bottom:951.727500px;}
.y178{bottom:958.951500px;}
.y1a7{bottom:959.200500px;}
.y3{bottom:963.538500px;}
.ydc{bottom:966.526500px;}
.y32{bottom:969.660000px;}
.y1a6{bottom:977.616000px;}
.ydb{bottom:984.459000px;}
.y31{bottom:987.594000px;}
.y1a5{bottom:989.088000px;}
.yda{bottom:1002.391500px;}
.y30{bottom:1005.526500px;}
.y1a4{bottom:1007.503500px;}
.y2{bottom:1011.358500px;}
.y1a3{bottom:1018.975500px;}
.yd9{bottom:1020.325500px;}
.y2f{bottom:1023.459000px;}
.y1a2{bottom:1037.392500px;}
.yd8{bottom:1038.258000px;}
.y2e{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.y1a1{bottom:1048.864500px;}
.yd7{bottom:1056.190500px;}
.y1a0{bottom:1067.280000px;}
.yd6{bottom:1074.123000px;}
.y2d{bottom:1092.055500px;}
.h36{height:24.245146px;}
.h7{height:25.249382px;}
.h27{height:29.038903px;}
.h33{height:29.827277px;}
.h32{height:34.053266px;}
.h31{height:34.088193px;}
.h8{height:34.143908px;}
.h9{height:35.865450px;}
.h19{height:36.733148px;}
.h5{height:37.658880px;}
.h1d{height:37.806051px;}
.h18{height:37.923791px;}
.h16{height:37.926211px;}
.h17{height:37.992120px;}
.h12{height:37.993836px;}
.h15{height:37.994540px;}
.h14{height:38.009895px;}
.h11{height:38.062253px;}
.h13{height:38.078357px;}
.h21{height:40.526210px;}
.h34{height:41.123146px;}
.hf{height:41.173749px;}
.hd{height:41.723369px;}
.h3{height:42.799330px;}
.h1c{height:43.175232px;}
.h1b{height:43.206890px;}
.h6{height:44.831700px;}
.h20{height:46.281617px;}
.h23{height:46.299919px;}
.h2d{height:46.306903px;}
.h1f{height:46.315607px;}
.h22{height:46.333909px;}
.h26{height:49.624903px;}
.h2{height:50.211840px;}
.hc{height:50.728903px;}
.hb{height:50.734903px;}
.h4{height:51.147331px;}
.h24{height:51.153331px;}
.h2a{height:59.609700px;}
.h2f{height:59.669700px;}
.h29{height:68.500903px;}
.h1{height:72.304680px;}
.h35{height:85.040675px;}
.h2b{height:85.265700px;}
.h25{height:85.271700px;}
.h28{height:94.726903px;}
.h2e{height:100.613700px;}
.ha{height:116.561700px;}
.h2c{height:126.275700px;}
.h1a{height:223.424010px;}
.h30{height:310.755960px;}
.h10{height:401.892750px;}
.he{height:403.849800px;}
.h1e{height:489.322800px;}
.h0{height:1188.000000px;}
.w4{width:510.272400px;}
.w2{width:595.284750px;}
.w3{width:595.297530px;}
.w1{width:595.304520px;}
.w5{width:595.324620px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x23{left:9.498448px;}
.x2f{left:10.793989px;}
.x4d{left:14.360050px;}
.x25{left:16.021832px;}
.x30{left:18.207107px;}
.x38{left:19.516947px;}
.x4e{left:20.938248px;}
.x32{left:22.839687px;}
.x3b{left:25.476842px;}
.x24{left:27.437792px;}
.x39{left:28.456177px;}
.x33{left:31.179424px;}
.x4c{left:32.899803px;}
.x3a{left:34.416655px;}
.x22{left:35.890987px;}
.x31{left:44.152371px;}
.x37{left:50.673641px;}
.x2e{left:53.758516px;}
.x3d{left:62.677462px;}
.x21{left:71.362252px;}
.xf{left:108.000000px;}
.xa{left:124.389000px;}
.x11{left:130.416000px;}
.x10{left:134.271000px;}
.x54{left:136.851000px;}
.x1{left:145.785000px;}
.x2{left:158.604000px;}
.x13{left:161.347500px;}
.x14{left:162.576468px;}
.x8{left:166.095000px;}
.x7{left:170.391000px;}
.x15{left:182.354189px;}
.xc{left:196.822500px;}
.x35{left:203.863500px;}
.x16{left:210.329762px;}
.x1c{left:211.620735px;}
.x1e{left:214.117918px;}
.x3e{left:223.335000px;}
.x1d{left:228.921063px;}
.x28{left:236.470068px;}
.x4{left:240.703500px;}
.x17{left:242.853282px;}
.x36{left:254.299712px;}
.x29{left:261.703191px;}
.x5{left:269.407500px;}
.x27{left:285.443570px;}
.x4b{left:290.893766px;}
.x26{left:305.548784px;}
.x19{left:324.717077px;}
.x4a{left:327.676500px;}
.x12{left:330.027000px;}
.x3f{left:333.648000px;}
.x20{left:339.031907px;}
.x1b{left:343.452716px;}
.x1f{left:348.287591px;}
.x18{left:350.704961px;}
.x47{left:359.023500px;}
.x51{left:370.419000px;}
.x52{left:379.917000px;}
.xe{left:386.844000px;}
.x50{left:390.243000px;}
.x3{left:392.416500px;}
.x6{left:395.700000px;}
.x9{left:397.018500px;}
.xd{left:402.348000px;}
.x53{left:411.798000px;}
.x44{left:423.273000px;}
.x40{left:428.679000px;}
.x48{left:438.897000px;}
.x3c{left:440.543153px;}
.x45{left:445.882500px;}
.x2a{left:452.742759px;}
.xb{left:455.824500px;}
.x2d{left:462.113130px;}
.x41{left:465.538500px;}
.x42{left:475.708500px;}
.x46{left:478.009500px;}
.x4f{left:483.473424px;}
.x2c{left:496.314354px;}
.x2b{left:501.920532px;}
.x34{left:528.663193px;}
.x1a{left:539.269014px;}
.x49{left:650.895000px;}
.x43{left:790.905000px;}
@media print{
.v7{vertical-align:-33.585377pt;}
.v8{vertical-align:-27.700825pt;}
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v6{vertical-align:-13.231063pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:5.168000pt;}
.vc{vertical-align:13.136000pt;}
.ve{vertical-align:15.349333pt;}
.va{vertical-align:18.298667pt;}
.v1{vertical-align:19.280000pt;}
.vb{vertical-align:21.941333pt;}
.v9{vertical-align:35.946667pt;}
.v11{vertical-align:53.877333pt;}
.v10{vertical-align:59.189333pt;}
.v5{vertical-align:63.760000pt;}
.vd{vertical-align:72.394667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls8a{letter-spacing:0.000267pt;}
.ls6{letter-spacing:0.000277pt;}
.ls24{letter-spacing:0.000479pt;}
.ls34{letter-spacing:0.000501pt;}
.ls86{letter-spacing:0.000515pt;}
.ls15{letter-spacing:0.000882pt;}
.ls8{letter-spacing:0.001659pt;}
.ls26{letter-spacing:0.002079pt;}
.ls50{letter-spacing:0.002424pt;}
.ls49{letter-spacing:0.002906pt;}
.ls73{letter-spacing:0.004349pt;}
.ls7d{letter-spacing:0.005459pt;}
.ls39{letter-spacing:0.006216pt;}
.ls4a{letter-spacing:1.471333pt;}
.ls87{letter-spacing:1.476666pt;}
.ls7a{letter-spacing:1.477138pt;}
.ls11{letter-spacing:2.652911pt;}
.ls19{letter-spacing:2.655527pt;}
.lsc{letter-spacing:2.656473pt;}
.ls23{letter-spacing:2.657253pt;}
.ls1a{letter-spacing:2.657386pt;}
.ls3a{letter-spacing:2.658245pt;}
.ls44{letter-spacing:3.059246pt;}
.ls5f{letter-spacing:3.064580pt;}
.ls4c{letter-spacing:4.130245pt;}
.ls6d{letter-spacing:5.718992pt;}
.ls83{letter-spacing:7.376277pt;}
.ls60{letter-spacing:7.380568pt;}
.ls89{letter-spacing:7.381610pt;}
.ls77{letter-spacing:8.851733pt;}
.ls38{letter-spacing:8.853600pt;}
.ls5c{letter-spacing:8.857067pt;}
.ls76{letter-spacing:8.858933pt;}
.ls69{letter-spacing:9.104479pt;}
.ls48{letter-spacing:9.187733pt;}
.ls65{letter-spacing:11.511578pt;}
.ls36{letter-spacing:11.806400pt;}
.ls37{letter-spacing:11.808479pt;}
.ls28{letter-spacing:12.469812pt;}
.ls27{letter-spacing:12.473067pt;}
.ls7c{letter-spacing:13.596770pt;}
.ls55{letter-spacing:14.463444pt;}
.ls81{letter-spacing:14.754489pt;}
.ls22{letter-spacing:14.757812pt;}
.ls78{letter-spacing:14.761682pt;}
.ls30{letter-spacing:14.761798pt;}
.ls59{letter-spacing:15.317812pt;}
.ls64{letter-spacing:15.835145pt;}
.ls1f{letter-spacing:15.836911pt;}
.ls63{letter-spacing:15.838400pt;}
.ls4b{letter-spacing:15.938245pt;}
.ls52{letter-spacing:16.234472pt;}
.ls35{letter-spacing:16.239805pt;}
.ls1e{letter-spacing:16.743578pt;}
.ls4f{letter-spacing:17.213156pt;}
.ls3b{letter-spacing:17.410245pt;}
.ls7b{letter-spacing:17.415578pt;}
.ls3d{letter-spacing:17.418110pt;}
.ls3c{letter-spacing:17.419140pt;}
.ls2c{letter-spacing:17.600479pt;}
.ls42{letter-spacing:17.818313pt;}
.ls68{letter-spacing:17.821913pt;}
.ls6a{letter-spacing:17.834472pt;}
.ls45{letter-spacing:17.986352pt;}
.ls72{letter-spacing:18.495016pt;}
.ls46{letter-spacing:18.930352pt;}
.ls84{letter-spacing:18.975333pt;}
.ls3f{letter-spacing:19.003145pt;}
.ls25{letter-spacing:19.074245pt;}
.ls2d{letter-spacing:19.416027pt;}
.ls67{letter-spacing:19.421913pt;}
.ls29{letter-spacing:20.103578pt;}
.ls79{letter-spacing:20.226245pt;}
.ls2e{letter-spacing:20.775207pt;}
.ls47{letter-spacing:21.131145pt;}
.ls43{letter-spacing:21.136479pt;}
.ls74{letter-spacing:21.143578pt;}
.ls1c{letter-spacing:21.356911pt;}
.ls3e{letter-spacing:22.063646pt;}
.ls82{letter-spacing:22.138944pt;}
.ls5b{letter-spacing:22.207805pt;}
.ls2f{letter-spacing:22.267189pt;}
.ls40{letter-spacing:22.275310pt;}
.ls32{letter-spacing:23.461812pt;}
.ls51{letter-spacing:23.563140pt;}
.ls5d{letter-spacing:23.608580pt;}
.ls2b{letter-spacing:23.612540pt;}
.ls85{letter-spacing:23.614824pt;}
.ls6f{letter-spacing:24.032479pt;}
.ls75{letter-spacing:24.068568pt;}
.ls7e{letter-spacing:24.461156pt;}
.ls7f{letter-spacing:24.464479pt;}
.ls2a{letter-spacing:24.684911pt;}
.ls62{letter-spacing:24.832479pt;}
.ls33{letter-spacing:25.369812pt;}
.ls20{letter-spacing:25.623578pt;}
.ls5a{letter-spacing:25.628911pt;}
.ls6c{letter-spacing:25.932911pt;}
.ls70{letter-spacing:26.488580pt;}
.ls71{letter-spacing:26.493913pt;}
.ls58{letter-spacing:26.595246pt;}
.ls6b{letter-spacing:27.477138pt;}
.ls41{letter-spacing:27.637610pt;}
.ls53{letter-spacing:28.077156pt;}
.ls1d{letter-spacing:29.228911pt;}
.ls5e{letter-spacing:30.020568pt;}
.ls31{letter-spacing:30.842944pt;}
.ls80{letter-spacing:31.840277pt;}
.ls61{letter-spacing:32.207235pt;}
.ls66{letter-spacing:32.212568pt;}
.ls6e{letter-spacing:32.402245pt;}
.ls21{letter-spacing:48.210245pt;}
.lsd{letter-spacing:66.420777pt;}
.ls12{letter-spacing:99.943578pt;}
.ls4d{letter-spacing:106.264239pt;}
.ls56{letter-spacing:112.642906pt;}
.ls54{letter-spacing:140.800479pt;}
.ls16{letter-spacing:141.193902pt;}
.ls9{letter-spacing:169.324911pt;}
.lsf{letter-spacing:169.871132pt;}
.ls1{letter-spacing:172.533138pt;}
.ls0{letter-spacing:176.672267pt;}
.ls4{letter-spacing:177.299246pt;}
.ls5{letter-spacing:182.352277pt;}
.ls13{letter-spacing:183.940980pt;}
.ls14{letter-spacing:185.471235pt;}
.lse{letter-spacing:185.529682pt;}
.ls2{letter-spacing:188.866489pt;}
.ls7{letter-spacing:190.508326pt;}
.lsa{letter-spacing:191.177812pt;}
.ls10{letter-spacing:192.548666pt;}
.ls3{letter-spacing:192.909976pt;}
.lsb{letter-spacing:193.165019pt;}
.ls18{letter-spacing:193.292540pt;}
.ls17{letter-spacing:197.336027pt;}
.ls57{letter-spacing:824.636745pt;}
.ls88{letter-spacing:866.623333pt;}
.ls4e{letter-spacing:945.516745pt;}
.ws7d{word-spacing:-53.133867pt;}
.ws4{word-spacing:-42.359791pt;}
.wsd{word-spacing:-34.611401pt;}
.wse{word-spacing:-25.738045pt;}
.wse0{word-spacing:-24.288525pt;}
.wsa7{word-spacing:-16.881679pt;}
.ws46{word-spacing:-16.848015pt;}
.wsb4{word-spacing:-16.703607pt;}
.ws3f{word-spacing:-14.760588pt;}
.wscb{word-spacing:-14.465200pt;}
.wse2{word-spacing:-13.530571pt;}
.wsa3{word-spacing:-12.320858pt;}
.ws9e{word-spacing:-9.770457pt;}
.ws9c{word-spacing:-5.940366pt;}
.wsa0{word-spacing:-5.905949pt;}
.ws6e{word-spacing:-5.905121pt;}
.wsb5{word-spacing:-5.901388pt;}
.ws7c{word-spacing:-5.887232pt;}
.wsde{word-spacing:-5.880085pt;}
.wsb8{word-spacing:-5.659788pt;}
.wsca{word-spacing:-3.872025pt;}
.ws63{word-spacing:-2.563184pt;}
.ws80{word-spacing:-2.380397pt;}
.ws66{word-spacing:-2.053098pt;}
.ws17{word-spacing:-2.008460pt;}
.ws19{word-spacing:-1.583389pt;}
.wscf{word-spacing:-1.370854pt;}
.wsa5{word-spacing:-0.968942pt;}
.wsa4{word-spacing:-0.945783pt;}
.wsda{word-spacing:-0.786381pt;}
.ws2b{word-spacing:-0.733247pt;}
.ws89{word-spacing:-0.680113pt;}
.ws3a{word-spacing:-0.626980pt;}
.ws1b{word-spacing:-0.467578pt;}
.ws4a{word-spacing:-0.414444pt;}
.wsed{word-spacing:-0.386816pt;}
.ws50{word-spacing:-0.361310pt;}
.wsdc{word-spacing:-0.201909pt;}
.ws15{word-spacing:-0.132198pt;}
.wscd{word-spacing:-0.095641pt;}
.wse6{word-spacing:-0.063761pt;}
.wseb{word-spacing:-0.042507pt;}
.wsf5{word-spacing:-0.031881pt;}
.ws100{word-spacing:-0.004251pt;}
.ws13{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.010627pt;}
.wsd2{word-spacing:0.063761pt;}
.ws32{word-spacing:0.329430pt;}
.wse7{word-spacing:0.378314pt;}
.ws2f{word-spacing:0.382564pt;}
.ws99{word-spacing:0.435698pt;}
.ws38{word-spacing:0.488832pt;}
.ws9{word-spacing:0.540375pt;}
.ws51{word-spacing:0.541965pt;}
.wsf6{word-spacing:0.548343pt;}
.wsa9{word-spacing:0.558879pt;}
.ws4c{word-spacing:0.648233pt;}
.ws53{word-spacing:0.701367pt;}
.wsd7{word-spacing:0.754501pt;}
.wsf4{word-spacing:0.803386pt;}
.wsd3{word-spacing:0.807635pt;}
.ws5c{word-spacing:0.860769pt;}
.wsec{word-spacing:0.973415pt;}
.ws1a{word-spacing:1.020170pt;}
.wsc9{word-spacing:1.058429pt;}
.wse3{word-spacing:1.073304pt;}
.wsa2{word-spacing:1.126438pt;}
.ws6f{word-spacing:1.179572pt;}
.ws30{word-spacing:1.392107pt;}
.wsea{word-spacing:1.440994pt;}
.ws58{word-spacing:1.445241pt;}
.ws1c{word-spacing:1.498375pt;}
.ws39{word-spacing:1.551509pt;}
.wsb7{word-spacing:1.604643pt;}
.ws70{word-spacing:1.657777pt;}
.wsc7{word-spacing:1.687536pt;}
.wsd8{word-spacing:1.710911pt;}
.ws4e{word-spacing:1.764044pt;}
.ws2c{word-spacing:1.817178pt;}
.ws102{word-spacing:1.866066pt;}
.wsf{word-spacing:1.923446pt;}
.ws41{word-spacing:1.976580pt;}
.ws6d{word-spacing:2.029714pt;}
.wsc2{word-spacing:2.135981pt;}
.ws64{word-spacing:2.282637pt;}
.wscc{word-spacing:2.295383pt;}
.wsf0{word-spacing:2.333645pt;}
.ws28{word-spacing:2.348517pt;}
.wsa{word-spacing:2.357565pt;}
.wsef{word-spacing:2.376152pt;}
.ws8a{word-spacing:2.401651pt;}
.ws10d{word-spacing:2.418660pt;}
.ws2a{word-spacing:2.454785pt;}
.ws10f{word-spacing:2.461167pt;}
.wse9{word-spacing:2.489008pt;}
.ws11{word-spacing:2.503674pt;}
.ws79{word-spacing:2.507919pt;}
.wsf2{word-spacing:2.512684pt;}
.ws106{word-spacing:2.512759pt;}
.ws9b{word-spacing:2.614186pt;}
.ws65{word-spacing:2.665201pt;}
.ws3b{word-spacing:2.667320pt;}
.wsf8{word-spacing:2.716210pt;}
.ws71{word-spacing:2.720454pt;}
.ws52{word-spacing:2.826722pt;}
.ws49{word-spacing:2.877737pt;}
.ws104{word-spacing:2.886239pt;}
.wsc4{word-spacing:2.928397pt;}
.ws7e{word-spacing:2.931041pt;}
.ws3{word-spacing:2.932989pt;}
.ws69{word-spacing:2.962752pt;}
.ws26{word-spacing:3.039257pt;}
.ws107{word-spacing:3.056268pt;}
.ws20{word-spacing:3.092391pt;}
.wsb{word-spacing:3.122698pt;}
.ws21{word-spacing:3.145525pt;}
.ws42{word-spacing:3.198659pt;}
.wsaf{word-spacing:3.251793pt;}
.ws108{word-spacing:3.268804pt;}
.ws62{word-spacing:3.345317pt;}
.ws4b{word-spacing:3.464328pt;}
.ws74{word-spacing:3.517462pt;}
.wsc8{word-spacing:3.600360pt;}
.wsc6{word-spacing:3.642867pt;}
.ws3e{word-spacing:3.676864pt;}
.wsc1{word-spacing:3.728954pt;}
.ws43{word-spacing:3.729997pt;}
.ws23{word-spacing:3.836265pt;}
.wsf1{word-spacing:3.863904pt;}
.ws94{word-spacing:3.889399pt;}
.ws18{word-spacing:3.942533pt;}
.ws109{word-spacing:3.948919pt;}
.ws5b{word-spacing:3.995667pt;}
.ws81{word-spacing:4.101935pt;}
.wsdb{word-spacing:4.261336pt;}
.ws6a{word-spacing:4.365489pt;}
.wsd5{word-spacing:4.367604pt;}
.ws10a{word-spacing:4.373991pt;}
.wsce{word-spacing:4.527005pt;}
.wsdd{word-spacing:4.580139pt;}
.wsf7{word-spacing:4.586527pt;}
.ws7b{word-spacing:4.633273pt;}
.ws90{word-spacing:4.663040pt;}
.ws84{word-spacing:4.686407pt;}
.ws6b{word-spacing:4.739541pt;}
.ws6{word-spacing:4.748605pt;}
.ws48{word-spacing:4.790561pt;}
.wsc3{word-spacing:4.792675pt;}
.wse4{word-spacing:4.810986pt;}
.ws29{word-spacing:4.845809pt;}
.ws75{word-spacing:4.898943pt;}
.ws2d{word-spacing:5.005210pt;}
.ws33{word-spacing:5.058344pt;}
.ws54{word-spacing:5.111478pt;}
.ws4f{word-spacing:5.164612pt;}
.wsae{word-spacing:5.270880pt;}
.ws83{word-spacing:5.324013pt;}
.ws92{word-spacing:5.430281pt;}
.ws24{word-spacing:5.467459pt;}
.ws35{word-spacing:5.483415pt;}
.ws25{word-spacing:5.536549pt;}
.wse1{word-spacing:5.553859pt;}
.wse8{word-spacing:5.564192pt;}
.ws37{word-spacing:5.589683pt;}
.wsfc{word-spacing:5.691714pt;}
.ws8c{word-spacing:5.695951pt;}
.ws9a{word-spacing:5.749084pt;}
.wsb0{word-spacing:5.802218pt;}
.wsd6{word-spacing:5.908486pt;}
.ws8{word-spacing:5.944125pt;}
.ws76{word-spacing:5.961620pt;}
.wsf9{word-spacing:6.031772pt;}
.wsa1{word-spacing:6.121021pt;}
.wsa6{word-spacing:6.130510pt;}
.ws34{word-spacing:6.174155pt;}
.wsd0{word-spacing:6.280423pt;}
.ws96{word-spacing:6.386691pt;}
.ws3d{word-spacing:6.492959pt;}
.wsac{word-spacing:6.522516pt;}
.wsad{word-spacing:6.546092pt;}
.ws44{word-spacing:6.705494pt;}
.ws22{word-spacing:6.758628pt;}
.wsfe{word-spacing:6.839408pt;}
.ws85{word-spacing:6.918029pt;}
.ws105{word-spacing:6.924423pt;}
.wsb2{word-spacing:6.971163pt;}
.ws82{word-spacing:7.077431pt;}
.ws10b{word-spacing:7.136959pt;}
.wsd4{word-spacing:7.183699pt;}
.ws7{word-spacing:7.235287pt;}
.ws7a{word-spacing:7.236833pt;}
.ws56{word-spacing:7.289967pt;}
.ws97{word-spacing:7.502502pt;}
.ws87{word-spacing:7.555636pt;}
.wsbc{word-spacing:7.587505pt;}
.wsbd{word-spacing:7.608770pt;}
.ws77{word-spacing:7.661904pt;}
.wsb1{word-spacing:7.874439pt;}
.wsd9{word-spacing:8.033841pt;}
.ws91{word-spacing:8.086975pt;}
.ws98{word-spacing:8.140108pt;}
.ws9d{word-spacing:8.159877pt;}
.ws9f{word-spacing:8.193242pt;}
.ws88{word-spacing:8.246376pt;}
.ws5a{word-spacing:8.299510pt;}
.ws59{word-spacing:8.512045pt;}
.wsbf{word-spacing:8.654832pt;}
.wsc0{word-spacing:8.671447pt;}
.ws2e{word-spacing:8.724581pt;}
.wsa8{word-spacing:8.777715pt;}
.ws78{word-spacing:8.830849pt;}
.ws36{word-spacing:8.883983pt;}
.wsfb{word-spacing:8.964768pt;}
.wsb6{word-spacing:8.990250pt;}
.ws5d{word-spacing:9.043384pt;}
.ws5{word-spacing:9.195940pt;}
.wsbb{word-spacing:9.202786pt;}
.wsf3{word-spacing:9.304826pt;}
.ws86{word-spacing:9.468455pt;}
.wsd1{word-spacing:9.680991pt;}
.wsbe{word-spacing:9.893526pt;}
.ws1d{word-spacing:9.946660pt;}
.ws95{word-spacing:10.159195pt;}
.ws93{word-spacing:10.212329pt;}
.ws1e{word-spacing:10.265463pt;}
.ws8b{word-spacing:10.849936pt;}
.ws6c{word-spacing:10.903069pt;}
.ws73{word-spacing:11.115605pt;}
.wsba{word-spacing:11.221873pt;}
.wsb9{word-spacing:11.471296pt;}
.wsaa{word-spacing:11.476629pt;}
.ws1f{word-spacing:12.125148pt;}
.ws16{word-spacing:12.708802pt;}
.wsee{word-spacing:13.602304pt;}
.ws101{word-spacing:13.942362pt;}
.ws45{word-spacing:15.061539pt;}
.ws4d{word-spacing:15.339433pt;}
.ws103{word-spacing:15.685157pt;}
.ws10e{word-spacing:16.195243pt;}
.ws12{word-spacing:16.280258pt;}
.wsdf{word-spacing:17.378324pt;}
.ws2{word-spacing:18.915657pt;}
.ws1{word-spacing:18.968790pt;}
.wsfd{word-spacing:19.213254pt;}
.wsfa{word-spacing:19.553312pt;}
.ws72{word-spacing:20.297137pt;}
.wsff{word-spacing:20.318442pt;}
.ws3c{word-spacing:20.350271pt;}
.ws10c{word-spacing:20.573485pt;}
.wse5{word-spacing:22.191259pt;}
.ws31{word-spacing:23.846639pt;}
.wsb3{word-spacing:24.324629pt;}
.ws40{word-spacing:25.897963pt;}
.ws27{word-spacing:26.521963pt;}
.wsab{word-spacing:26.911296pt;}
.ws55{word-spacing:32.688697pt;}
.ws0{word-spacing:34.338985pt;}
.ws5e{word-spacing:36.480765pt;}
.ws5f{word-spacing:36.541762pt;}
.ws61{word-spacing:44.531679pt;}
.ws60{word-spacing:44.533588pt;}
.ws67{word-spacing:46.898025pt;}
.ws8e{word-spacing:49.500746pt;}
.ws57{word-spacing:61.050813pt;}
.wsc{word-spacing:68.732991pt;}
.ws14{word-spacing:71.667439pt;}
.ws8d{word-spacing:80.921466pt;}
.wsc5{word-spacing:105.799286pt;}
.ws10{word-spacing:114.100592pt;}
.ws47{word-spacing:253.082399pt;}
.ws8f{word-spacing:1310.799422pt;}
.ws68{word-spacing:1682.476838pt;}
._1c{margin-left:-25.449878pt;}
._1{margin-left:-8.630654pt;}
._a{margin-left:-5.155949pt;}
._3{margin-left:-3.871537pt;}
._0{margin-left:-2.846279pt;}
._4{margin-left:-1.108576pt;}
._5{width:1.530266pt;}
._2{width:2.846279pt;}
._30{width:3.762619pt;}
._24{width:5.317297pt;}
._18{width:8.136244pt;}
._1d{width:9.656366pt;}
._14{width:13.109595pt;}
._15{width:15.254573pt;}
._d{width:16.696089pt;}
._10{width:18.635517pt;}
._29{width:19.639963pt;}
._9{width:20.739956pt;}
._c{width:22.027410pt;}
._16{width:23.052863pt;}
._7{width:23.958221pt;}
._b{width:25.243809pt;}
._f{width:26.832603pt;}
._13{width:28.823170pt;}
._6{width:29.888000pt;}
._12{width:31.662513pt;}
._8{width:32.957229pt;}
._1a{width:34.028624pt;}
._11{width:34.962084pt;}
._28{width:35.985626pt;}
._27{width:37.101909pt;}
._1b{width:38.554030pt;}
._31{width:39.672730pt;}
._1e{width:40.590420pt;}
._34{width:41.630148pt;}
._1f{width:42.700533pt;}
._e{width:44.685582pt;}
._2f{width:46.275744pt;}
._26{width:47.455778pt;}
._19{width:61.103947pt;}
._21{width:62.180419pt;}
._2d{width:65.202461pt;}
._23{width:70.141132pt;}
._17{width:72.177527pt;}
._20{width:75.285611pt;}
._2a{width:77.812387pt;}
._2c{width:80.703752pt;}
._25{width:82.083678pt;}
._22{width:83.223473pt;}
._2b{width:88.386538pt;}
._2e{width:96.681490pt;}
._33{width:128.815236pt;}
._32{width:140.509669pt;}
.fs1e{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs1d{font-size:36.417774pt;}
.fs3{font-size:37.193600pt;}
.fs1c{font-size:41.577518pt;}
.fs1b{font-size:41.620163pt;}
.fs6{font-size:42.507200pt;}
.fs11{font-size:42.976000pt;}
.fs14{font-size:46.159500pt;}
.fs10{font-size:46.303256pt;}
.fse{font-size:46.306210pt;}
.fsf{font-size:46.386683pt;}
.fsa{font-size:46.388778pt;}
.fsd{font-size:46.389637pt;}
.fsc{font-size:46.408386pt;}
.fs9{font-size:46.472312pt;}
.fsb{font-size:46.491974pt;}
.fs4{font-size:47.820800pt;}
.fs8{font-size:47.863680pt;}
.fs17{font-size:49.480694pt;}
.fs1a{font-size:49.500167pt;}
.fs13{font-size:52.715031pt;}
.fs12{font-size:52.753684pt;}
.fs2{font-size:53.133867pt;}
.fs16{font-size:56.507788pt;}
.fs19{font-size:56.530135pt;}
.fs15{font-size:56.549289pt;}
.fs18{font-size:56.571635pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs7{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:3.741393pt;}
.yb2{bottom:3.783486pt;}
.y8e{bottom:3.788200pt;}
.yc8{bottom:4.108496pt;}
.y107{bottom:4.305269pt;}
.y150{bottom:16.964715pt;}
.yb3{bottom:18.520776pt;}
.y8f{bottom:18.552874pt;}
.y64{bottom:19.158103pt;}
.y66{bottom:20.059668pt;}
.yc9{bottom:20.868902pt;}
.y108{bottom:22.271487pt;}
.yb5{bottom:29.658275pt;}
.y91{bottom:29.710786pt;}
.y2c{bottom:30.910667pt;}
.y152{bottom:31.672744pt;}
.ycb{bottom:33.534994pt;}
.y63{bottom:34.115503pt;}
.y65{bottom:35.017068pt;}
.y10a{bottom:35.849222pt;}
.yc1{bottom:37.487293pt;}
.y153{bottom:43.459450pt;}
.y5f{bottom:43.529333pt;}
.y2b{bottom:43.530667pt;}
.yb6{bottom:46.075375pt;}
.y92{bottom:46.157836pt;}
.y10b{bottom:52.460326pt;}
.y154{bottom:55.246156pt;}
.y2a{bottom:56.149333pt;}
.ycc{bottom:59.362210pt;}
.yca{bottom:61.148003pt;}
.yb4{bottom:61.186811pt;}
.y90{bottom:61.297475pt;}
.yb7{bottom:62.492476pt;}
.y93{bottom:62.605422pt;}
.y109{bottom:65.449344pt;}
.y155{bottom:67.033467pt;}
.y10c{bottom:69.071962pt;}
.y156{bottom:78.820173pt;}
.yb8{bottom:78.909039pt;}
.y94{bottom:79.052472pt;}
.ycd{bottom:85.189426pt;}
.y10d{bottom:85.683598pt;}
.y157{bottom:90.606879pt;}
.y68{bottom:95.185317pt;}
.yb9{bottom:95.326140pt;}
.y95{bottom:95.500058pt;}
.y8c{bottom:96.000000pt;}
.y5e{bottom:97.556000pt;}
.y29{bottom:99.750667pt;}
.y177{bottom:101.609333pt;}
.y10e{bottom:102.294702pt;}
.y158{bottom:102.394190pt;}
.y105{bottom:108.145333pt;}
.y151{bottom:110.198176pt;}
.yce{bottom:111.017041pt;}
.yba{bottom:111.743241pt;}
.y8b{bottom:111.940000pt;}
.y96{bottom:111.947645pt;}
.y28{bottom:112.821333pt;}
.y5d{bottom:113.496000pt;}
.y159{bottom:114.180896pt;}
.y124{bottom:116.834667pt;}
.y176{bottom:117.549333pt;}
.y10f{bottom:118.906338pt;}
.y67{bottom:120.434738pt;}
.y104{bottom:124.085333pt;}
.y27{bottom:125.893333pt;}
.y15a{bottom:125.967601pt;}
.y8a{bottom:127.880000pt;}
.ybb{bottom:128.159804pt;}
.y97{bottom:128.394695pt;}
.y5c{bottom:129.436000pt;}
.y175{bottom:133.489333pt;}
.yc0{bottom:135.350495pt;}
.y110{bottom:135.517442pt;}
.ycf{bottom:136.844257pt;}
.y15b{bottom:137.754913pt;}
.y62{bottom:139.099831pt;}
.y103{bottom:140.025333pt;}
.y19f{bottom:140.957333pt;}
.y89{bottom:143.820000pt;}
.y148{bottom:143.821333pt;}
.ybc{bottom:144.576905pt;}
.y98{bottom:144.841744pt;}
.y5b{bottom:145.376000pt;}
.yd5{bottom:148.710667pt;}
.y174{bottom:149.430667pt;}
.y15c{bottom:149.541618pt;}
.y111{bottom:152.129079pt;}
.y69{bottom:154.816549pt;}
.y26{bottom:157.732000pt;}
.y88{bottom:159.760000pt;}
.y147{bottom:159.761333pt;}
.ybd{bottom:160.994005pt;}
.y99{bottom:161.289331pt;}
.y5a{bottom:161.316000pt;}
.y15d{bottom:161.328324pt;}
.yd4{bottom:161.329333pt;}
.yd0{bottom:162.671473pt;}
.y102{bottom:164.545333pt;}
.y173{bottom:165.370667pt;}
.y6b{bottom:166.183109pt;}
.yd2{bottom:166.364750pt;}
.y112{bottom:168.740183pt;}
.y19e{bottom:170.052000pt;}
.y15e{bottom:173.115635pt;}
.yd3{bottom:173.949333pt;}
.y87{bottom:175.701333pt;}
.y25{bottom:176.329333pt;}
.y59{bottom:177.256000pt;}
.y6a{bottom:181.140509pt;}
.y115{bottom:181.198743pt;}
.y172{bottom:181.310667pt;}
.y15f{bottom:184.902341pt;}
.y113{bottom:185.351819pt;}
.yd1{bottom:188.499089pt;}
.ya6{bottom:190.168800pt;}
.y9a{bottom:190.174172pt;}
.y86{bottom:191.641333pt;}
.y58{bottom:193.197333pt;}
.y24{bottom:194.925333pt;}
.y160{bottom:196.689047pt;}
.y171{bottom:197.250667pt;}
.y101{bottom:199.073333pt;}
.yc7{bottom:199.852000pt;}
.y114{bottom:201.963455pt;}
.ya7{bottom:204.906882pt;}
.y9b{bottom:204.944486pt;}
.y85{bottom:207.581333pt;}
.y161{bottom:208.476358pt;}
.y19d{bottom:208.666667pt;}
.y57{bottom:209.137333pt;}
.y170{bottom:213.190667pt;}
.y23{bottom:213.522667pt;}
.y100{bottom:215.013333pt;}
.ya9{bottom:216.045724pt;}
.y9d{bottom:216.107502pt;}
.y162{bottom:220.263064pt;}
.ybf{bottom:223.302356pt;}
.y84{bottom:223.521333pt;}
.y16a{bottom:224.177255pt;}
.y19c{bottom:224.606667pt;}
.y16f{bottom:229.132000pt;}
.y116{bottom:230.533389pt;}
.yff{bottom:230.953333pt;}
.y163{bottom:232.049770pt;}
.y22{bottom:232.120000pt;}
.yaa{bottom:232.463362pt;}
.y9e{bottom:232.561401pt;}
.y56{bottom:233.656000pt;}
.y169{bottom:235.116175pt;}
.y6c{bottom:239.160197pt;}
.y19b{bottom:240.546667pt;}
.y164{bottom:243.837081pt;}
.y146{bottom:244.721333pt;}
.y168{bottom:246.055095pt;}
.yfe{bottom:246.893333pt;}
.ya8{bottom:247.575335pt;}
.y9c{bottom:247.706949pt;}
.y145{bottom:248.005333pt;}
.y83{bottom:248.041333pt;}
.y117{bottom:248.507481pt;}
.yab{bottom:248.881537pt;}
.y9f{bottom:249.016240pt;}
.y21{bottom:250.716000pt;}
.y165{bottom:255.623787pt;}
.y19a{bottom:256.486667pt;}
.y167{bottom:256.995567pt;}
.y144{bottom:257.117333pt;}
.y6d{bottom:257.425376pt;}
.y16e{bottom:261.838667pt;}
.yfd{bottom:262.833333pt;}
.yac{bottom:265.299712pt;}
.ya0{bottom:265.470139pt;}
.y166{bottom:267.410493pt;}
.y55{bottom:268.184000pt;}
.y20{bottom:269.313333pt;}
.y199{bottom:272.426667pt;}
.y16d{bottom:274.457333pt;}
.y119{bottom:275.938820pt;}
.yfc{bottom:278.774667pt;}
.yad{bottom:281.717350pt;}
.ya1{bottom:281.924575pt;}
.y82{bottom:282.522667pt;}
.y1d2{bottom:283.424000pt;}
.y54{bottom:284.124000pt;}
.y16c{bottom:287.077333pt;}
.y1f{bottom:287.910667pt;}
.y143{bottom:288.850667pt;}
.y118{bottom:291.702230pt;}
.y11a{bottom:293.249308pt;}
.yfb{bottom:294.714667pt;}
.y198{bottom:297.001333pt;}
.yae{bottom:298.136062pt;}
.ya2{bottom:298.379010pt;}
.y81{bottom:298.462667pt;}
.y16b{bottom:299.696000pt;}
.y1d1{bottom:299.793333pt;}
.y53{bottom:300.064000pt;}
.y6e{bottom:301.510604pt;}
.y142{bottom:304.790667pt;}
.y1e{bottom:306.508000pt;}
.y197{bottom:309.104000pt;}
.y11b{bottom:310.559797pt;}
.y1d0{bottom:313.741333pt;}
.y80{bottom:314.402667pt;}
.y6f{bottom:314.490969pt;}
.yaf{bottom:314.553700pt;}
.ya3{bottom:314.832909pt;}
.y52{bottom:316.005333pt;}
.ybe{bottom:317.544292pt;}
.yfa{bottom:319.233333pt;}
.y141{bottom:320.730667pt;}
.y1cf{bottom:323.938667pt;}
.y1d{bottom:325.104000pt;}
.y14e{bottom:325.598667pt;}
.y11c{bottom:327.869753pt;}
.y7f{bottom:330.342667pt;}
.yb0{bottom:330.971337pt;}
.ya4{bottom:331.287345pt;}
.y51{bottom:331.945333pt;}
.y1ce{bottom:336.557333pt;}
.y140{bottom:336.672000pt;}
.y61{bottom:337.090603pt;}
.y1c{bottom:343.701333pt;}
.y196{bottom:345.100000pt;}
.y11d{bottom:345.180773pt;}
.y7e{bottom:346.282667pt;}
.yb1{bottom:347.390050pt;}
.ya5{bottom:347.741781pt;}
.y50{bottom:347.885333pt;}
.y1cd{bottom:352.926667pt;}
.yf9{bottom:353.761333pt;}
.y13e{bottom:356.245333pt;}
.y195{bottom:361.040000pt;}
.y13f{bottom:362.073333pt;}
.y7d{bottom:362.224000pt;}
.y1b{bottom:362.298667pt;}
.y11e{bottom:362.491261pt;}
.y1cc{bottom:363.124000pt;}
.y4f{bottom:363.825333pt;}
.y13d{bottom:365.357333pt;}
.yf8{bottom:369.701333pt;}
.y194{bottom:376.980000pt;}
.y7c{bottom:378.164000pt;}
.y1cb{bottom:379.494667pt;}
.y4e{bottom:379.765333pt;}
.y11f{bottom:379.801217pt;}
.y1a{bottom:380.894667pt;}
.yf7{bottom:385.641333pt;}
.y1ca{bottom:389.692000pt;}
.y193{bottom:392.920000pt;}
.y13c{bottom:392.996000pt;}
.y7b{bottom:394.104000pt;}
.y4d{bottom:395.705333pt;}
.y120{bottom:397.111706pt;}
.y19{bottom:399.492000pt;}
.yf6{bottom:401.582667pt;}
.y1c9{bottom:406.061333pt;}
.y192{bottom:408.860000pt;}
.y13b{bottom:408.936000pt;}
.y7a{bottom:410.044000pt;}
.y4c{bottom:411.646667pt;}
.y121{bottom:414.422194pt;}
.y1c8{bottom:416.258667pt;}
.yf5{bottom:417.522667pt;}
.y18{bottom:418.089333pt;}
.y191{bottom:424.800000pt;}
.y79{bottom:425.984000pt;}
.y4b{bottom:427.586667pt;}
.y139{bottom:428.510667pt;}
.y138{bottom:431.780000pt;}
.y1c7{bottom:432.628000pt;}
.yf4{bottom:433.462667pt;}
.y17{bottom:436.685333pt;}
.y190{bottom:440.741333pt;}
.y137{bottom:440.890667pt;}
.y13a{bottom:440.892000pt;}
.y78{bottom:441.925333pt;}
.y1c6{bottom:442.825333pt;}
.y4a{bottom:443.526667pt;}
.yf3{bottom:449.402667pt;}
.y16{bottom:455.282667pt;}
.y18f{bottom:456.681333pt;}
.y77{bottom:457.865333pt;}
.y1c5{bottom:459.196000pt;}
.yf2{bottom:465.342667pt;}
.y1c4{bottom:469.393333pt;}
.y136{bottom:471.886667pt;}
.y49{bottom:472.621333pt;}
.y76{bottom:473.805333pt;}
.y15{bottom:473.880000pt;}
.yf1{bottom:481.282667pt;}
.y1c3{bottom:485.762667pt;}
.y135{bottom:487.828000pt;}
.y18e{bottom:488.561333pt;}
.y75{bottom:489.745333pt;}
.y14{bottom:492.477333pt;}
.y1c2{bottom:495.960000pt;}
.yf0{bottom:497.224000pt;}
.y123{bottom:498.397333pt;}
.y134{bottom:503.768000pt;}
.y18d{bottom:504.501333pt;}
.y74{bottom:505.685333pt;}
.yc6{bottom:506.381333pt;}
.y122{bottom:511.016000pt;}
.y13{bottom:511.073333pt;}
.y48{bottom:511.236000pt;}
.y1c1{bottom:512.329333pt;}
.yef{bottom:513.164000pt;}
.yc5{bottom:519.000000pt;}
.y133{bottom:519.708000pt;}
.y18c{bottom:520.441333pt;}
.y73{bottom:521.625333pt;}
.y1c0{bottom:522.526667pt;}
.y47{bottom:527.176000pt;}
.yee{bottom:529.104000pt;}
.y12{bottom:529.670667pt;}
.yc4{bottom:531.620000pt;}
.y132{bottom:535.648000pt;}
.y18b{bottom:536.382667pt;}
.y106{bottom:536.920000pt;}
.y72{bottom:537.566667pt;}
.y1bf{bottom:538.896000pt;}
.y46{bottom:543.116000pt;}
.yc3{bottom:544.238667pt;}
.yed{bottom:545.044000pt;}
.y11{bottom:548.268000pt;}
.y1be{bottom:549.093333pt;}
.y131{bottom:551.588000pt;}
.y18a{bottom:552.322667pt;}
.yc2{bottom:556.858667pt;}
.y45{bottom:559.056000pt;}
.yec{bottom:560.984000pt;}
.y1bd{bottom:565.464000pt;}
.y130{bottom:567.528000pt;}
.y189{bottom:568.262667pt;}
.y44{bottom:574.996000pt;}
.y1bc{bottom:575.661333pt;}
.y10{bottom:576.565333pt;}
.yeb{bottom:576.924000pt;}
.y8d{bottom:582.761333pt;}
.y12f{bottom:583.469333pt;}
.y188{bottom:584.202667pt;}
.y71{bottom:586.500000pt;}
.y1bb{bottom:588.280000pt;}
.y43{bottom:590.937333pt;}
.yea{bottom:592.865333pt;}
.y70{bottom:599.120000pt;}
.y12e{bottom:599.409333pt;}
.y187{bottom:600.142667pt;}
.y1ba{bottom:604.649333pt;}
.y42{bottom:606.877333pt;}
.ye9{bottom:608.805333pt;}
.y1b9{bottom:614.846667pt;}
.yf{bottom:615.180000pt;}
.y12d{bottom:615.349333pt;}
.y186{bottom:616.082667pt;}
.y41{bottom:622.817333pt;}
.ye8{bottom:624.745333pt;}
.y60{bottom:625.022667pt;}
.y1b8{bottom:627.466667pt;}
.y14d{bottom:629.237333pt;}
.ye{bottom:629.790667pt;}
.y12c{bottom:631.289333pt;}
.y185{bottom:632.024000pt;}
.y40{bottom:638.757333pt;}
.ye7{bottom:640.685333pt;}
.y1b7{bottom:643.836000pt;}
.yd{bottom:644.402667pt;}
.y12b{bottom:647.229333pt;}
.y184{bottom:647.964000pt;}
.y1b6{bottom:654.033333pt;}
.y3f{bottom:654.697333pt;}
.ye6{bottom:656.625333pt;}
.yc{bottom:659.014667pt;}
.y183{bottom:663.904000pt;}
.y14c{bottom:667.852000pt;}
.y1b5{bottom:670.404000pt;}
.y3e{bottom:670.637333pt;}
.ye5{bottom:672.565333pt;}
.yb{bottom:673.626667pt;}
.y12a{bottom:676.324000pt;}
.y182{bottom:679.844000pt;}
.y1b4{bottom:680.601333pt;}
.y14b{bottom:683.792000pt;}
.y3d{bottom:686.578667pt;}
.ya{bottom:688.238667pt;}
.ye4{bottom:688.506667pt;}
.y181{bottom:695.784000pt;}
.y1b3{bottom:696.970667pt;}
.y14a{bottom:699.732000pt;}
.y3c{bottom:702.518667pt;}
.y9{bottom:702.850667pt;}
.ye3{bottom:704.446667pt;}
.y1b2{bottom:707.168000pt;}
.y180{bottom:711.725333pt;}
.y129{bottom:715.673333pt;}
.y3b{bottom:718.458667pt;}
.ye2{bottom:720.386667pt;}
.y1b1{bottom:723.537333pt;}
.y17f{bottom:727.665333pt;}
.y128{bottom:731.613333pt;}
.y1b0{bottom:733.734667pt;}
.y3a{bottom:734.398667pt;}
.ye1{bottom:736.326667pt;}
.y17e{bottom:743.605333pt;}
.y8{bottom:747.096000pt;}
.y127{bottom:747.553333pt;}
.y1af{bottom:750.104000pt;}
.y39{bottom:750.338667pt;}
.ye0{bottom:752.266667pt;}
.y17d{bottom:759.545333pt;}
.y1ae{bottom:760.301333pt;}
.y126{bottom:763.493333pt;}
.y7{bottom:765.693333pt;}
.y38{bottom:766.278667pt;}
.ydf{bottom:768.208000pt;}
.y17c{bottom:775.485333pt;}
.y1ad{bottom:776.672000pt;}
.y125{bottom:779.433333pt;}
.y37{bottom:782.220000pt;}
.y1ac{bottom:786.869333pt;}
.y17b{bottom:791.425333pt;}
.yde{bottom:792.726667pt;}
.y6{bottom:795.373333pt;}
.y36{bottom:798.160000pt;}
.y1ab{bottom:803.238667pt;}
.y17a{bottom:807.366667pt;}
.y5{bottom:811.314667pt;}
.y1aa{bottom:813.436000pt;}
.y35{bottom:814.100000pt;}
.y179{bottom:823.306667pt;}
.y4{bottom:827.254667pt;}
.y1a9{bottom:829.805333pt;}
.y34{bottom:830.040000pt;}
.y149{bottom:839.897333pt;}
.y1a8{bottom:840.002667pt;}
.ydd{bottom:843.194667pt;}
.y33{bottom:845.980000pt;}
.y178{bottom:852.401333pt;}
.y1a7{bottom:852.622667pt;}
.y3{bottom:856.478667pt;}
.ydc{bottom:859.134667pt;}
.y32{bottom:861.920000pt;}
.y1a6{bottom:868.992000pt;}
.ydb{bottom:875.074667pt;}
.y31{bottom:877.861333pt;}
.y1a5{bottom:879.189333pt;}
.yda{bottom:891.014667pt;}
.y30{bottom:893.801333pt;}
.y1a4{bottom:895.558667pt;}
.y2{bottom:898.985333pt;}
.y1a3{bottom:905.756000pt;}
.yd9{bottom:906.956000pt;}
.y2f{bottom:909.741333pt;}
.y1a2{bottom:922.126667pt;}
.yd8{bottom:922.896000pt;}
.y2e{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.y1a1{bottom:932.324000pt;}
.yd7{bottom:938.836000pt;}
.y1a0{bottom:948.693333pt;}
.yd6{bottom:954.776000pt;}
.y2d{bottom:970.716000pt;}
.h36{height:21.551241pt;}
.h7{height:22.443895pt;}
.h27{height:25.812358pt;}
.h33{height:26.513135pt;}
.h32{height:30.269570pt;}
.h31{height:30.300616pt;}
.h8{height:30.350141pt;}
.h9{height:31.880400pt;}
.h19{height:32.651688pt;}
.h5{height:33.474560pt;}
.h1d{height:33.605378pt;}
.h18{height:33.710036pt;}
.h16{height:33.712187pt;}
.h17{height:33.770773pt;}
.h12{height:33.772299pt;}
.h15{height:33.772924pt;}
.h14{height:33.786574pt;}
.h11{height:33.833114pt;}
.h13{height:33.847428pt;}
.h21{height:36.023298pt;}
.h34{height:36.553907pt;}
.hf{height:36.598888pt;}
.hd{height:37.087439pt;}
.h3{height:38.043849pt;}
.h1c{height:38.377984pt;}
.h1b{height:38.406125pt;}
.h6{height:39.850400pt;}
.h20{height:41.139215pt;}
.h23{height:41.155484pt;}
.h2d{height:41.161692pt;}
.h1f{height:41.169428pt;}
.h22{height:41.185697pt;}
.h26{height:44.111025pt;}
.h2{height:44.632747pt;}
.hc{height:45.092358pt;}
.hb{height:45.097692pt;}
.h4{height:45.464294pt;}
.h24{height:45.469628pt;}
.h2a{height:52.986400pt;}
.h2f{height:53.039733pt;}
.h29{height:60.889692pt;}
.h1{height:64.270827pt;}
.h35{height:75.591711pt;}
.h2b{height:75.791733pt;}
.h25{height:75.797067pt;}
.h28{height:84.201692pt;}
.h2e{height:89.434400pt;}
.ha{height:103.610400pt;}
.h2c{height:112.245067pt;}
.h1a{height:198.599120pt;}
.h30{height:276.227520pt;}
.h10{height:357.238000pt;}
.he{height:358.977600pt;}
.h1e{height:434.953600pt;}
.h0{height:1056.000000pt;}
.w4{width:453.575467pt;}
.w2{width:529.142000pt;}
.w3{width:529.153360pt;}
.w1{width:529.159573pt;}
.w5{width:529.177440pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x23{left:8.443065pt;}
.x2f{left:9.594657pt;}
.x4d{left:12.764489pt;}
.x25{left:14.241628pt;}
.x30{left:16.184096pt;}
.x38{left:17.348397pt;}
.x4e{left:18.611776pt;}
.x32{left:20.301944pt;}
.x3b{left:22.646082pt;}
.x24{left:24.389149pt;}
.x39{left:25.294379pt;}
.x33{left:27.715044pt;}
.x4c{left:29.244270pt;}
.x3a{left:30.592583pt;}
.x22{left:31.903099pt;}
.x31{left:39.246552pt;}
.x37{left:45.043236pt;}
.x2e{left:47.785347pt;}
.x3d{left:55.713300pt;}
.x21{left:63.433113pt;}
.xf{left:96.000000pt;}
.xa{left:110.568000pt;}
.x11{left:115.925333pt;}
.x10{left:119.352000pt;}
.x54{left:121.645333pt;}
.x1{left:129.586667pt;}
.x2{left:140.981333pt;}
.x13{left:143.420000pt;}
.x14{left:144.512416pt;}
.x8{left:147.640000pt;}
.x7{left:151.458667pt;}
.x15{left:162.092613pt;}
.xc{left:174.953333pt;}
.x35{left:181.212000pt;}
.x16{left:186.959789pt;}
.x1c{left:188.107320pt;}
.x1e{left:190.327038pt;}
.x3e{left:198.520000pt;}
.x1d{left:203.485389pt;}
.x28{left:210.195616pt;}
.x4{left:213.958667pt;}
.x17{left:215.869584pt;}
.x36{left:226.044189pt;}
.x29{left:232.625059pt;}
.x5{left:239.473333pt;}
.x27{left:253.727618pt;}
.x4b{left:258.572236pt;}
.x26{left:271.598919pt;}
.x19{left:288.637402pt;}
.x4a{left:291.268000pt;}
.x12{left:293.357333pt;}
.x3f{left:296.576000pt;}
.x20{left:301.361695pt;}
.x1b{left:305.291303pt;}
.x1f{left:309.588970pt;}
.x18{left:311.737743pt;}
.x47{left:319.132000pt;}
.x51{left:329.261333pt;}
.x52{left:337.704000pt;}
.xe{left:343.861333pt;}
.x50{left:346.882667pt;}
.x3{left:348.814667pt;}
.x6{left:351.733333pt;}
.x9{left:352.905333pt;}
.xd{left:357.642667pt;}
.x53{left:366.042667pt;}
.x44{left:376.242667pt;}
.x40{left:381.048000pt;}
.x48{left:390.130667pt;}
.x3c{left:391.593914pt;}
.x45{left:396.340000pt;}
.x2a{left:402.438008pt;}
.xb{left:405.177333pt;}
.x2d{left:410.767227pt;}
.x41{left:413.812000pt;}
.x42{left:422.852000pt;}
.x46{left:424.897333pt;}
.x4f{left:429.754155pt;}
.x2c{left:441.168315pt;}
.x2b{left:446.151584pt;}
.x34{left:469.922839pt;}
.x1a{left:479.350235pt;}
.x49{left:578.573333pt;}
.x43{left:703.026667pt;}
}




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