
    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_06ed7aea280c3c1921919058.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_84d331cd827b0101612a3069.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_6561b512d9d0c69bb286eab4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_832bdc7adfe9715308688f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_998fb8bf83b2a0c2acdb09bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_d156ed63659027aa70094be0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.866000;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_9414be80cc435d1d7edb1e69.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.810000;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_d3aa9911c0bacf724ee9a4e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.672000;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_d151d571fcd2ca430be27d88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.688000;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_4ac507b40f106c21b05fa01a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.043000;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_0f34385dbb600371baaa2529.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.703450;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_a1755cfa3aec4a660e31a5b2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_85af7916dfa7b13d897105f8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_03ea3e1da841353e14c2f248.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4f65a93ae7cf29253dbf7b61.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_cd7cd8d942a01c7fbfdb0d84.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_9d223f46fb473cae52beaba4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_9bce85dca5652e37ffba10b2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_9d223f46fb473cae52beaba4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_d444b8645576db1a8ddf5d5f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_9d223f46fb473cae52beaba4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_d5cfdb2933f9e38861d00bbc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_acdf22907589abcf6fc9baff.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_b4d83a5352b93c1c1d351c86.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_4f65a93ae7cf29253dbf7b61.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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_d33bd74bccf5b8229a59d628.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_d230f5d79c103c59ea1df9de.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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:ff1c;src:url('chunks/assets/font_7ef860749716cc4d3088598b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.535000;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:ff1d;src:url('chunks/assets/font_605b0112ef6e709b422bc2c6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;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:ff1e;src:url('chunks/assets/font_5df8d9ccb524e1e277a66e98.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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:ff1f;src:url('chunks/assets/font_5df8d9ccb524e1e277a66e98.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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:ff20;src:url('chunks/assets/font_0c5c18be15663ff5d414b455.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;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:ff21;src:url('chunks/assets/font_9c3c80a8ce417dac4e0d7379.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;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:ff22;src:url('chunks/assets/font_f023694670c056b735b53025.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;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:ff23;src:url('chunks/assets/font_9c941b0161fb8ff994d4b1e3.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-22.866401px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.922406px;}
.v1{vertical-align:21.726082px;}
.v3{vertical-align:22.866401px;}
.v5{vertical-align:28.988114px;}
.ls3{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.010491px;}
.ls19{letter-spacing:0.015748px;}
.ls1a{letter-spacing:0.020670px;}
.ls1b{letter-spacing:0.032211px;}
.ls8{letter-spacing:0.032745px;}
.ls1d{letter-spacing:0.038933px;}
.lsc{letter-spacing:0.052623px;}
.ls21{letter-spacing:0.054759px;}
.ls0{letter-spacing:2.948517px;}
.ls1{letter-spacing:3.008534px;}
.ls16{letter-spacing:12.204080px;}
.ls4{letter-spacing:13.474492px;}
.ls15{letter-spacing:14.298330px;}
.ls17{letter-spacing:14.358347px;}
.ls13{letter-spacing:15.575080px;}
.ls5{letter-spacing:15.678717px;}
.ls18{letter-spacing:16.585307px;}
.ls14{letter-spacing:16.655382px;}
.ls10{letter-spacing:17.063448px;}
.lse{letter-spacing:17.157483px;}
.ls6{letter-spacing:19.176088px;}
.ls22{letter-spacing:20.024941px;}
.ls11{letter-spacing:20.105628px;}
.lsf{letter-spacing:21.606048px;}
.ls20{letter-spacing:21.918183px;}
.ls1e{letter-spacing:21.926802px;}
.ls1f{letter-spacing:29.548935px;}
.ls2{letter-spacing:29.862091px;}
.ls12{letter-spacing:29.888366px;}
.lsb{letter-spacing:32.261767px;}
.ls7{letter-spacing:32.269353px;}
.lsd{letter-spacing:34.192579px;}
.ls9{letter-spacing:50.526752px;}
.lsa{letter-spacing:50.578414px;}
.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;}
}
.wsa5{word-spacing:-35.866040px;}
.ws97{word-spacing:-22.626334px;}
.wsa3{word-spacing:-21.450004px;}
.wsa9{word-spacing:-20.357699px;}
.wsa6{word-spacing:-19.757531px;}
.wsac{word-spacing:-19.277396px;}
.wsa7{word-spacing:-17.716959px;}
.wsae{word-spacing:-17.116791px;}
.ws7{word-spacing:-14.944183px;}
.ws96{word-spacing:-14.296002px;}
.wsbc{word-spacing:-13.443763px;}
.ws9f{word-spacing:-12.075380px;}
.ws95{word-spacing:-10.382906px;}
.wsa2{word-spacing:-9.674708px;}
.wsb8{word-spacing:-8.079610px;}
.ws7f{word-spacing:-3.526827px;}
.wsb1{word-spacing:-3.227944px;}
.ws3c{word-spacing:-3.168167px;}
.wsc7{word-spacing:-3.108390px;}
.ws58{word-spacing:-3.048613px;}
.wsbe{word-spacing:-2.988837px;}
.ws7e{word-spacing:-2.929060px;}
.wsaa{word-spacing:-2.809506px;}
.ws44{word-spacing:-2.749730px;}
.wsb9{word-spacing:-2.742528px;}
.wsba{word-spacing:-2.688753px;}
.ws7b{word-spacing:-2.570400px;}
.ws47{word-spacing:-2.510623px;}
.ws113{word-spacing:-2.366102px;}
.ws4e{word-spacing:-2.331293px;}
.wsc0{word-spacing:-2.271516px;}
.ws107{word-spacing:-2.258552px;}
.ws57{word-spacing:-2.211739px;}
.wsf8{word-spacing:-2.204777px;}
.ws6e{word-spacing:-2.151962px;}
.ws8{word-spacing:-2.151002px;}
.ws8a{word-spacing:-2.092186px;}
.ws63{word-spacing:-2.032409px;}
.ws67{word-spacing:-1.972632px;}
.ws7d{word-spacing:-1.912855px;}
.ws110{word-spacing:-1.882127px;}
.wsec{word-spacing:-1.828352px;}
.ws5f{word-spacing:-1.793302px;}
.ws89{word-spacing:-1.733525px;}
.ws34{word-spacing:-1.673749px;}
.ws6d{word-spacing:-1.613972px;}
.ws4c{word-spacing:-1.554195px;}
.ws74{word-spacing:-1.494418px;}
.wsda{word-spacing:-1.451926px;}
.ws2e{word-spacing:-1.434642px;}
.wsdb{word-spacing:-1.398151px;}
.ws55{word-spacing:-1.393830px;}
.ws77{word-spacing:-1.315088px;}
.ws6f{word-spacing:-1.255311px;}
.ws10c{word-spacing:-1.236826px;}
.ws62{word-spacing:-1.195535px;}
.wsdd{word-spacing:-1.135758px;}
.wsed{word-spacing:-1.129276px;}
.ws54{word-spacing:-1.075981px;}
.wse0{word-spacing:-1.075501px;}
.ws50{word-spacing:-1.016204px;}
.ws7c{word-spacing:-0.956428px;}
.wsc4{word-spacing:-0.914176px;}
.ws3a{word-spacing:-0.896651px;}
.wsd5{word-spacing:-0.860401px;}
.ws12{word-spacing:-0.836874px;}
.wsd6{word-spacing:-0.806626px;}
.ws98{word-spacing:-0.777098px;}
.ws1e{word-spacing:-0.717321px;}
.wsfe{word-spacing:-0.699076px;}
.ws2a{word-spacing:-0.657544px;}
.ws81{word-spacing:-0.537991px;}
.ws10b{word-spacing:-0.537751px;}
.ws10a{word-spacing:-0.483975px;}
.ws5a{word-spacing:-0.478214px;}
.ws5b{word-spacing:-0.418437px;}
.ws100{word-spacing:-0.376425px;}
.wsb2{word-spacing:-0.358660px;}
.wsf9{word-spacing:-0.322650px;}
.ws2b{word-spacing:-0.298884px;}
.ws86{word-spacing:-0.239107px;}
.ws10d{word-spacing:-0.215100px;}
.ws79{word-spacing:-0.179330px;}
.wsff{word-spacing:-0.176209px;}
.ws3{word-spacing:-0.086064px;}
.ws0{word-spacing:-0.059777px;}
.ws20{word-spacing:-0.053775px;}
.wscb{word-spacing:-0.041832px;}
.ws1{word-spacing:0.000000px;}
.ws59{word-spacing:0.119553px;}
.ws101{word-spacing:0.161325px;}
.ws60{word-spacing:0.168047px;}
.ws37{word-spacing:0.179330px;}
.wsd8{word-spacing:0.215100px;}
.ws80{word-spacing:0.239107px;}
.wsd9{word-spacing:0.268875px;}
.ws26{word-spacing:0.298884px;}
.ws27{word-spacing:0.358660px;}
.wsc2{word-spacing:0.376425px;}
.ws2f{word-spacing:0.418437px;}
.wsc3{word-spacing:0.430200px;}
.wsf{word-spacing:0.478214px;}
.wsd1{word-spacing:0.483975px;}
.wsa8{word-spacing:0.535590px;}
.wsfb{word-spacing:0.537751px;}
.ws84{word-spacing:0.537991px;}
.wsf3{word-spacing:0.591526px;}
.ws99{word-spacing:0.597767px;}
.ws46{word-spacing:0.657544px;}
.ws1a{word-spacing:0.717321px;}
.ws41{word-spacing:0.777098px;}
.ws87{word-spacing:0.836874px;}
.wse1{word-spacing:0.860401px;}
.ws53{word-spacing:0.896651px;}
.wse3{word-spacing:0.914176px;}
.ws52{word-spacing:0.956428px;}
.wsbb{word-spacing:0.967951px;}
.ws2d{word-spacing:1.016204px;}
.ws114{word-spacing:1.021726px;}
.ws31{word-spacing:1.075981px;}
.ws2{word-spacing:1.118833px;}
.wsa4{word-spacing:1.135758px;}
.ws21{word-spacing:1.195535px;}
.wse{word-spacing:1.255311px;}
.ws16{word-spacing:1.315088px;}
.ws103{word-spacing:1.344376px;}
.wsdc{word-spacing:1.374865px;}
.ws5e{word-spacing:1.434642px;}
.ws8b{word-spacing:1.451926px;}
.ws69{word-spacing:1.494418px;}
.ws13{word-spacing:1.554195px;}
.ws8c{word-spacing:1.559477px;}
.wsab{word-spacing:1.613972px;}
.ws109{word-spacing:1.667027px;}
.ws3e{word-spacing:1.673749px;}
.ws5c{word-spacing:1.733525px;}
.ws108{word-spacing:1.774577px;}
.ws48{word-spacing:1.793302px;}
.ws1f{word-spacing:1.853079px;}
.ws10e{word-spacing:1.882127px;}
.ws9c{word-spacing:1.912855px;}
.ws43{word-spacing:1.972632px;}
.ws88{word-spacing:2.032409px;}
.ws118{word-spacing:2.043452px;}
.ws5d{word-spacing:2.092186px;}
.wsf4{word-spacing:2.097227px;}
.ws5{word-spacing:2.151962px;}
.ws4{word-spacing:2.211739px;}
.ws10f{word-spacing:2.258552px;}
.ws6{word-spacing:2.271516px;}
.wsb4{word-spacing:2.391069px;}
.ws33{word-spacing:2.450846px;}
.ws39{word-spacing:2.510623px;}
.wsfc{word-spacing:2.527427px;}
.ws3f{word-spacing:2.570400px;}
.wsfd{word-spacing:2.581203px;}
.ws11b{word-spacing:2.634978px;}
.ws11a{word-spacing:2.688753px;}
.ws35{word-spacing:2.689953px;}
.ws24{word-spacing:2.749730px;}
.ws112{word-spacing:2.796303px;}
.ws30{word-spacing:2.809506px;}
.ws22{word-spacing:2.869283px;}
.ws102{word-spacing:2.903853px;}
.ws78{word-spacing:2.929060px;}
.ws83{word-spacing:2.988837px;}
.ws71{word-spacing:3.048613px;}
.wsea{word-spacing:3.065178px;}
.ws14{word-spacing:3.108390px;}
.ws72{word-spacing:3.168167px;}
.ws3b{word-spacing:3.227944px;}
.ws8f{word-spacing:3.287720px;}
.wsd2{word-spacing:3.347497px;}
.ws3d{word-spacing:3.407274px;}
.ws104{word-spacing:3.441603px;}
.wsb5{word-spacing:3.467051px;}
.ws4f{word-spacing:3.526827px;}
.ws36{word-spacing:3.586604px;}
.ws17{word-spacing:3.706157px;}
.ws45{word-spacing:3.765934px;}
.ws64{word-spacing:3.825711px;}
.wsad{word-spacing:3.854279px;}
.wsc8{word-spacing:3.885488px;}
.ws38{word-spacing:3.945264px;}
.wse6{word-spacing:3.979354px;}
.ws42{word-spacing:4.005041px;}
.wsee{word-spacing:4.033129px;}
.wsa{word-spacing:4.064818px;}
.ws119{word-spacing:4.086904px;}
.ws32{word-spacing:4.124595px;}
.ws56{word-spacing:4.184371px;}
.wsbd{word-spacing:4.244148px;}
.ws91{word-spacing:4.363701px;}
.wsbf{word-spacing:4.423478px;}
.ws65{word-spacing:4.543032px;}
.ws10{word-spacing:4.602808px;}
.ws111{word-spacing:4.624655px;}
.ws2c{word-spacing:4.662585px;}
.wsf0{word-spacing:4.678430px;}
.ws117{word-spacing:4.732205px;}
.ws40{word-spacing:4.841915px;}
.wsf5{word-spacing:4.893530px;}
.ws76{word-spacing:4.901692px;}
.ws15{word-spacing:4.961469px;}
.ws4d{word-spacing:5.081022px;}
.ws11{word-spacing:5.140799px;}
.ws85{word-spacing:5.200576px;}
.wse2{word-spacing:5.216180px;}
.ws90{word-spacing:5.320129px;}
.wsf7{word-spacing:5.323730px;}
.wsf6{word-spacing:5.377505px;}
.ws9a{word-spacing:5.379906px;}
.ws4a{word-spacing:5.439683px;}
.ws28{word-spacing:5.499459px;}
.wsaf{word-spacing:5.559236px;}
.ws8e{word-spacing:5.678790px;}
.wsc9{word-spacing:5.738566px;}
.wse7{word-spacing:5.753931px;}
.ws105{word-spacing:5.807706px;}
.ws25{word-spacing:5.858120px;}
.ws82{word-spacing:5.917897px;}
.ws70{word-spacing:5.977673px;}
.wsef{word-spacing:6.000720px;}
.wse9{word-spacing:6.022806px;}
.wsc5{word-spacing:6.037450px;}
.wse8{word-spacing:6.130356px;}
.wsb{word-spacing:6.157003px;}
.ws7a{word-spacing:6.216780px;}
.ws29{word-spacing:6.276557px;}
.wsc{word-spacing:6.336334px;}
.ws106{word-spacing:6.345456px;}
.wsd3{word-spacing:6.396110px;}
.ws116{word-spacing:6.399231px;}
.ws115{word-spacing:6.453006px;}
.ws68{word-spacing:6.515664px;}
.ws19{word-spacing:6.575441px;}
.ws6b{word-spacing:6.635217px;}
.wsf2{word-spacing:6.668107px;}
.ws8d{word-spacing:6.754771px;}
.ws1b{word-spacing:6.874324px;}
.wscd{word-spacing:6.934101px;}
.wscc{word-spacing:6.948265px;}
.wsdf{word-spacing:6.990757px;}
.ws1d{word-spacing:6.993878px;}
.wsb6{word-spacing:7.053654px;}
.wsfa{word-spacing:7.098307px;}
.ws75{word-spacing:7.113431px;}
.wseb{word-spacing:7.205857px;}
.ws9b{word-spacing:7.352538px;}
.ws23{word-spacing:7.412315px;}
.wsb0{word-spacing:7.472092px;}
.ws93{word-spacing:7.531868px;}
.ws66{word-spacing:7.711199px;}
.wsb3{word-spacing:7.830752px;}
.wsc6{word-spacing:7.890529px;}
.ws1c{word-spacing:8.010082px;}
.ws4b{word-spacing:8.069859px;}
.wsf1{word-spacing:8.173808px;}
.ws49{word-spacing:8.189412px;}
.ws6a{word-spacing:8.226863px;}
.ws9d{word-spacing:8.428519px;}
.wscf{word-spacing:8.488296px;}
.ws51{word-spacing:8.548073px;}
.ws18{word-spacing:8.667626px;}
.wsa0{word-spacing:8.846956px;}
.ws9e{word-spacing:8.895690px;}
.wsd{word-spacing:9.504501px;}
.ws6c{word-spacing:9.624054px;}
.ws94{word-spacing:10.580482px;}
.ws92{word-spacing:11.178249px;}
.wsa1{word-spacing:11.238026px;}
.wse5{word-spacing:14.250389px;}
.wse4{word-spacing:14.304164px;}
.ws73{word-spacing:20.605220px;}
.wsce{word-spacing:21.863352px;}
.wsca{word-spacing:27.078860px;}
.ws61{word-spacing:35.188270px;}
.wsde{word-spacing:43.460806px;}
.ws9{word-spacing:44.825588px;}
.wsc1{word-spacing:62.291467px;}
.wsd4{word-spacing:72.861806px;}
.wsd7{word-spacing:81.976528px;}
.wsd0{word-spacing:100.698678px;}
.wsb7{word-spacing:161.833424px;}
._5{margin-left:-6.594886px;}
._1{margin-left:-4.921138px;}
._2{margin-left:-3.741447px;}
._0{margin-left:-1.893410px;}
._2b{width:1.126875px;}
._9{width:6.715880px;}
._d{width:9.145840px;}
._10{width:10.759812px;}
._2a{width:12.100827px;}
._6{width:14.566077px;}
._c{width:15.900611px;}
._7{width:17.514583px;}
._3{width:19.049332px;}
._1d{width:20.338253px;}
._e{width:21.419516px;}
._27{width:23.554673px;}
._29{width:24.897849px;}
._b{width:26.188451px;}
._28{width:27.479052px;}
._23{width:28.535108px;}
._a{width:29.845154px;}
._1f{width:31.415914px;}
._25{width:32.587682px;}
._20{width:33.985833px;}
._15{width:36.078883px;}
._21{width:37.737123px;}
._22{width:39.321087px;}
._26{width:41.333570px;}
._24{width:42.482292px;}
._1e{width:66.273912px;}
._14{width:71.591738px;}
._13{width:78.782009px;}
._18{width:91.003146px;}
._1a{width:92.990497px;}
._17{width:100.463264px;}
._19{width:101.705432px;}
._1c{width:104.623239px;}
._1b{width:114.428377px;}
._16{width:129.559742px;}
._12{width:177.838898px;}
._11{width:398.054224px;}
._8{width:424.941750px;}
._f{width:1515.596088px;}
._4{width:1542.483615px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:19.375573px;}
.fs5{font-size:29.063345px;}
.fs9{font-size:32.699054px;}
.fs7{font-size:34.876014px;}
.fs3{font-size:35.890046px;}
.fs8{font-size:39.238865px;}
.fs2{font-size:41.831710px;}
.fs4{font-size:53.775053px;}
.fs0{font-size:59.776733px;}
.fs1{font-size:86.064091px;}
.y0{bottom:0.000000px;}
.y143{bottom:12.351806px;}
.y105{bottom:13.744667px;}
.y173{bottom:13.896968px;}
.y16a{bottom:15.123183px;}
.y136{bottom:22.100379px;}
.yff{bottom:23.493240px;}
.y15f{bottom:24.865048px;}
.y137{bottom:29.063230px;}
.y100{bottom:29.608167px;}
.y160{bottom:32.698924px;}
.y147{bottom:40.325276px;}
.y116{bottom:45.835686px;}
.y146{bottom:51.042384px;}
.y138{bottom:53.040489px;}
.y149{bottom:59.034804px;}
.y145{bottom:61.759493px;}
.y117{bottom:66.118994px;}
.y161{bottom:71.188980px;}
.y144{bottom:72.476601px;}
.y139{bottom:76.957442px;}
.y118{bottom:86.403029px;}
.y16e{bottom:86.584512px;}
.y14a{bottom:88.946072px;}
.y168{bottom:90.263156px;}
.y13a{bottom:100.874395px;}
.y172{bottom:101.299087px;}
.y119{bottom:106.687064px;}
.y169{bottom:107.771047px;}
.y101{bottom:109.411753px;}
.y162{bottom:109.678219px;}
.y14f{bottom:110.198643px;}
.y14b{bottom:118.857340px;}
.y13b{bottom:124.851655px;}
.y11a{bottom:126.970373px;}
.y142{bottom:128.726525px;}
.y104{bottom:131.451214px;}
.y121{bottom:134.478888px;}
.y156{bottom:136.900591px;}
.y16f{bottom:140.470101px;}
.y11b{bottom:147.254408px;}
.y163{bottom:148.167458px;}
.y13c{bottom:148.767882px;}
.y11c{bottom:167.538443px;}
.y13d{bottom:172.684835px;}
.y158{bottom:177.649581px;}
.y14c{bottom:178.679150px;}
.y164{bottom:186.588846px;}
.y11d{bottom:187.821751px;}
.y157{bottom:188.488028px;}
.y102{bottom:189.214612px;}
.y170{bottom:194.287021px;}
.y13e{bottom:196.662094px;}
.y11e{bottom:208.105786px;}
.y14d{bottom:208.590418px;}
.y13f{bottom:220.579047px;}
.y165{bottom:225.078902px;}
.y11f{bottom:228.389821px;}
.y125{bottom:231.598415px;}
.y14e{bottom:238.500959px;}
.y108{bottom:240.499064px;}
.y124{bottom:240.680710px;}
.y140{bottom:244.495274px;}
.y171{bottom:248.172609px;}
.y120{bottom:248.673130px;}
.y107{bottom:249.581359px;}
.y123{bottom:249.702699px;}
.y106{bottom:258.724688px;}
.y122{bottom:258.784994px;}
.y166{bottom:263.568141px;}
.y141{bottom:268.412227px;}
.y103{bottom:268.957165px;}
.y22{bottom:297.480037px;}
.y199{bottom:300.720944px;}
.y167{bottom:301.989530px;}
.y1c6{bottom:313.924640px;}
.y50{bottom:315.410056px;}
.y198{bottom:318.650963px;}
.y21{bottom:328.313668px;}
.y1f3{bottom:329.889109px;}
.y1c5{bottom:330.354239px;}
.y4f{bottom:333.340075px;}
.y197{bottom:336.580982px;}
.y20{bottom:346.243687px;}
.y1f2{bottom:346.333712px;}
.y1c4{bottom:346.798843px;}
.y4e{bottom:351.285098px;}
.y154{bottom:352.170346px;}
.y196{bottom:354.511001px;}
.yd0{bottom:362.703295px;}
.y1c3{bottom:362.733303px;}
.y1f1{bottom:362.763311px;}
.y1f{bottom:364.173706px;}
.y175{bottom:367.249567px;}
.y4d{bottom:369.215117px;}
.y153{bottom:370.100365px;}
.y15d{bottom:370.655521px;}
.y195{bottom:372.441020px;}
.y1f0{bottom:378.727780px;}
.y1c2{bottom:379.177906px;}
.ycf{bottom:380.633314px;}
.y1e{bottom:382.103725px;}
.y174{bottom:383.694170px;}
.ya8{bottom:384.624431px;}
.y4c{bottom:387.145136px;}
.y152{bottom:388.030384px;}
.y15c{bottom:388.585540px;}
.y194{bottom:390.386044px;}
.y1ef{bottom:394.707253px;}
.y1c1{bottom:395.607505px;}
.yce{bottom:398.563333px;}
.y1d{bottom:400.033744px;}
.y93{bottom:400.288816px;}
.y4b{bottom:405.075155px;}
.y16d{bottom:405.291662px;}
.y6c{bottom:405.765349px;}
.yef{bottom:405.825365px;}
.y151{bottom:405.960403px;}
.y15b{bottom:406.515559px;}
.y193{bottom:408.316063px;}
.y1ee{bottom:411.136852px;}
.y1c0{bottom:411.556970px;}
.ycd{bottom:416.493352px;}
.y135{bottom:417.858734px;}
.y1c{bottom:417.978767px;}
.y4a{bottom:423.005174px;}
.y6b{bottom:423.695368px;}
.yee{bottom:423.755384px;}
.y192{bottom:426.246082px;}
.y1ed{bottom:427.581455px;}
.y1bf{bottom:428.001573px;}
.ycc{bottom:434.438375px;}
.ya7{bottom:434.768467px;}
.y1b{bottom:435.908786px;}
.y49{bottom:440.935193px;}
.y6a{bottom:441.640391px;}
.yed{bottom:441.685403px;}
.y1ec{bottom:444.026059px;}
.y191{bottom:444.176101px;}
.y1be{bottom:444.431172px;}
.y92{bottom:448.167218px;}
.y134{bottom:451.648192px;}
.ycb{bottom:452.368394px;}
.ya6{bottom:452.698486px;}
.y1a{bottom:453.838805px;}
.y15a{bottom:454.378957px;}
.y150{bottom:455.489267px;}
.y48{bottom:458.880217px;}
.y69{bottom:459.570410px;}
.yec{bottom:459.630427px;}
.y1eb{bottom:459.990527px;}
.y1bd{bottom:460.380637px;}
.y190{bottom:462.106120px;}
.y91{bottom:466.097237px;}
.y133{bottom:469.578211px;}
.yca{bottom:470.298413px;}
.ya5{bottom:470.628505px;}
.y159{bottom:470.823560px;}
.y19{bottom:471.768824px;}
.y1ea{bottom:476.435131px;}
.y47{bottom:476.810236px;}
.y148{bottom:477.010969px;}
.y68{bottom:477.500429px;}
.yeb{bottom:477.560446px;}
.y18f{bottom:480.036139px;}
.y90{bottom:484.042260px;}
.y132{bottom:487.508230px;}
.yc9{bottom:488.228432px;}
.ya4{bottom:488.558524px;}
.y18{bottom:489.698843px;}
.y155{bottom:492.345262px;}
.y1e9{bottom:492.864730px;}
.y1bc{bottom:493.254839px;}
.y46{bottom:494.740255px;}
.y67{bottom:495.430448px;}
.yea{bottom:495.490465px;}
.y18e{bottom:501.447132px;}
.y8f{bottom:501.972279px;}
.y131{bottom:505.438249px;}
.yc8{bottom:506.158451px;}
.ya3{bottom:506.488543px;}
.yaa{bottom:508.048980px;}
.y1e8{bottom:508.844203px;}
.y1bb{bottom:509.189299px;}
.yd8{bottom:512.670274px;}
.y66{bottom:513.360467px;}
.ye9{bottom:513.420484px;}
.y45{bottom:515.461055px;}
.y18d{bottom:519.377151px;}
.y8e{bottom:519.902298px;}
.y130{bottom:523.368268px;}
.yc7{bottom:524.103474px;}
.ya2{bottom:524.433566px;}
.y1e7{bottom:525.273802px;}
.y1ba{bottom:525.633902px;}
.y17{bottom:527.164331px;}
.yd7{bottom:530.600293px;}
.y65{bottom:531.305490px;}
.ye8{bottom:531.350503px;}
.y115{bottom:532.550839px;}
.y44{bottom:533.391074px;}
.y18c{bottom:537.307170px;}
.y8d{bottom:537.832317px;}
.y1e6{bottom:541.238270px;}
.y12f{bottom:541.313291px;}
.yc6{bottom:542.033493px;}
.y1b9{bottom:542.063501px;}
.ya1{bottom:542.363585px;}
.yfd{bottom:546.024610px;}
.yd6{bottom:548.545316px;}
.y64{bottom:549.235509px;}
.ye7{bottom:549.295526px;}
.y43{bottom:551.321093px;}
.y18b{bottom:555.237189px;}
.y1e5{bottom:557.682874px;}
.y1b8{bottom:558.012966px;}
.y12e{bottom:559.243310px;}
.yc5{bottom:559.963512px;}
.ya0{bottom:560.293604px;}
.yd5{bottom:566.475335px;}
.y63{bottom:567.165528px;}
.ye6{bottom:567.225545px;}
.y42{bottom:569.266116px;}
.y18a{bottom:573.182212px;}
.y1e4{bottom:573.647342px;}
.y1b7{bottom:574.442565px;}
.y12d{bottom:577.173329px;}
.yc4{bottom:577.893531px;}
.y9f{bottom:578.223623px;}
.y16{bottom:581.419518px;}
.y8c{bottom:581.944665px;}
.yd4{bottom:584.405354px;}
.y62{bottom:585.095547px;}
.ye5{bottom:585.155564px;}
.y114{bottom:587.166127px;}
.y41{bottom:587.196135px;}
.y1e3{bottom:590.091946px;}
.y1b6{bottom:590.392030px;}
.y189{bottom:591.112231px;}
.y12c{bottom:595.103348px;}
.yc3{bottom:595.823550px;}
.y9e{bottom:596.153642px;}
.y15{bottom:599.349537px;}
.yd3{bottom:602.335373px;}
.y61{bottom:603.025566px;}
.ye4{bottom:603.085583px;}
.y8b{bottom:604.976112px;}
.y113{bottom:605.096146px;}
.y40{bottom:605.126154px;}
.y1e2{bottom:606.056414px;}
.y1b5{bottom:606.836633px;}
.y188{bottom:609.042250px;}
.y12b{bottom:613.033367px;}
.yc2{bottom:613.753569px;}
.yfc{bottom:614.083661px;}
.y14{bottom:617.279556px;}
.ye3{bottom:621.015602px;}
.y60{bottom:621.660782px;}
.y1e1{bottom:622.501018px;}
.y112{bottom:623.026165px;}
.y3f{bottom:623.056173px;}
.y1b4{bottom:623.266232px;}
.y187{bottom:626.972269px;}
.y9d{bottom:629.507979px;}
.y8a{bottom:630.378223px;}
.y12a{bottom:630.978391px;}
.yc1{bottom:631.698592px;}
.yfb{bottom:632.028685px;}
.y13{bottom:635.209575px;}
.y1e0{bottom:638.465486px;}
.ye2{bottom:638.960625px;}
.y5f{bottom:639.590801px;}
.y1b3{bottom:639.710835px;}
.y111{bottom:640.956184px;}
.y3e{bottom:640.986192px;}
.y186{bottom:644.902288px;}
.y89{bottom:646.807822px;}
.y129{bottom:648.908410px;}
.yc0{bottom:649.628611px;}
.yfa{bottom:649.958704px;}
.y12{bottom:653.139594px;}
.y1df{bottom:654.910090px;}
.y1b2{bottom:655.645295px;}
.ye1{bottom:656.890644px;}
.y5e{bottom:657.520820px;}
.y110{bottom:658.886203px;}
.y3d{bottom:658.916211px;}
.y185{bottom:662.847311px;}
.y88{bottom:663.252425px;}
.ybf{bottom:667.558630px;}
.yd2{bottom:667.573634px;}
.yf9{bottom:667.888723px;}
.y11{bottom:671.084617px;}
.y1de{bottom:671.339689px;}
.y1b1{bottom:672.089899px;}
.y5d{bottom:675.450839px;}
.ye0{bottom:675.570873px;}
.y128{bottom:675.645894px;}
.y10f{bottom:676.831226px;}
.y3c{bottom:676.861234px;}
.y9c{bottom:679.637011px;}
.y87{bottom:679.697028px;}
.y184{bottom:680.777330px;}
.yd1{bottom:684.018238px;}
.ybe{bottom:685.488649px;}
.yf8{bottom:685.818742px;}
.y1dd{bottom:687.319162px;}
.y1b0{bottom:688.024359px;}
.y10{bottom:689.014636px;}
.y5c{bottom:693.380858px;}
.ydf{bottom:693.500892px;}
.y127{bottom:693.575913px;}
.y10e{bottom:694.761245px;}
.y3b{bottom:694.791253px;}
.y86{bottom:696.126627px;}
.y9b{bottom:697.582034px;}
.y183{bottom:698.707349px;}
.ybd{bottom:703.418668px;}
.yf7{bottom:703.748761px;}
.y1af{bottom:704.468962px;}
.yf{bottom:706.944655px;}
.y5b{bottom:711.325882px;}
.yde{bottom:711.430911px;}
.y126{bottom:711.520936px;}
.y85{bottom:712.571230px;}
.y10d{bottom:712.691264px;}
.y3a{bottom:712.721272px;}
.y9a{bottom:715.512053px;}
.y1dc{bottom:719.728234px;}
.y182{bottom:720.103339px;}
.y1ae{bottom:720.403423px;}
.ybc{bottom:721.363691px;}
.yf6{bottom:721.693784px;}
.ye{bottom:724.874674px;}
.y84{bottom:729.000829px;}
.y5a{bottom:729.255901px;}
.ydd{bottom:729.360930px;}
.y10c{bottom:730.621283px;}
.y39{bottom:730.651291px;}
.y99{bottom:733.442072px;}
.y1db{bottom:736.157833px;}
.y1ad{bottom:736.848026px;}
.y181{bottom:738.048362px;}
.yf5{bottom:739.623803px;}
.yd{bottom:742.804693px;}
.y83{bottom:745.445432px;}
.y59{bottom:747.185920px;}
.ydc{bottom:747.305953px;}
.y38{bottom:748.581310px;}
.y98{bottom:751.372091px;}
.y1da{bottom:752.602436px;}
.y1ac{bottom:753.292629px;}
.ybb{bottom:755.648288px;}
.y180{bottom:755.978381px;}
.y16c{bottom:756.533536px;}
.yf4{bottom:757.553822px;}
.yc{bottom:760.734712px;}
.y82{bottom:761.890036px;}
.y58{bottom:765.115939px;}
.ydb{bottom:765.235972px;}
.y37{bottom:766.526333px;}
.y1d9{bottom:768.566905px;}
.y1ab{bottom:769.227089px;}
.y97{bottom:769.302110px;}
.y16b{bottom:772.978139px;}
.y17f{bottom:773.908400px;}
.yf3{bottom:775.483841px;}
.y10b{bottom:776.879231px;}
.y81{bottom:778.319635px;}
.yb{bottom:778.679735px;}
.y57{bottom:783.045958px;}
.yda{bottom:783.165991px;}
.y36{bottom:784.456352px;}
.y1d8{bottom:785.011508px;}
.y1aa{bottom:785.671693px;}
.y96{bottom:787.232129px;}
.y17e{bottom:791.838419px;}
.y10a{bottom:793.323835px;}
.yf2{bottom:793.413860px;}
.y15e{bottom:794.575631px;}
.y80{bottom:794.764238px;}
.y1d7{bottom:800.975977px;}
.y56{bottom:800.990981px;}
.y1a9{bottom:801.606153px;}
.y35{bottom:802.386371px;}
.y95{bottom:805.177153px;}
.yba{bottom:806.737589px;}
.y109{bottom:809.753434px;}
.y17d{bottom:809.768438px;}
.y7f{bottom:811.193837px;}
.yf1{bottom:811.358883px;}
.y1d6{bottom:817.420580px;}
.y1a8{bottom:818.050756px;}
.y34{bottom:820.316390px;}
.yd9{bottom:821.636760px;}
.y94{bottom:823.107172px;}
.yb9{bottom:824.667608px;}
.ya9{bottom:824.817650px;}
.ya{bottom:826.002982px;}
.y7e{bottom:827.638440px;}
.y17c{bottom:827.698457px;}
.yfe{bottom:831.290140px;}
.y1d5{bottom:833.385049px;}
.y1a7{bottom:833.985217px;}
.y55{bottom:839.161666px;}
.y33{bottom:841.037191px;}
.yb8{bottom:842.612632px;}
.y7d{bottom:844.083043px;}
.yf0{bottom:844.698215px;}
.y17b{bottom:845.643480px;}
.y1d4{bottom:849.829652px;}
.y1a6{bottom:850.429820px;}
.y32{bottom:858.967210px;}
.y7c{bottom:860.512642px;}
.yb7{bottom:860.542651px;}
.y9{bottom:862.193113px;}
.y17a{bottom:863.573499px;}
.y1d3{bottom:865.794121px;}
.y1a5{bottom:866.364280px;}
.y31{bottom:876.897229px;}
.y7b{bottom:876.957245px;}
.yb6{bottom:878.472670px;}
.y179{bottom:881.503518px;}
.y1d2{bottom:882.238724px;}
.y1a4{bottom:882.808883px;}
.y8{bottom:884.354316px;}
.y7a{bottom:893.386844px;}
.y54{bottom:894.137054px;}
.y30{bottom:894.842252px;}
.yb5{bottom:896.402689px;}
.y1d1{bottom:898.203193px;}
.y1a3{bottom:899.238482px;}
.y178{bottom:899.433537px;}
.y7{bottom:900.783915px;}
.y79{bottom:909.831448px;}
.y53{bottom:912.082078px;}
.y2f{bottom:912.772271px;}
.yb4{bottom:914.332708px;}
.y1d0{bottom:914.647796px;}
.y1a2{bottom:915.187947px;}
.y177{bottom:917.363556px;}
.y6{bottom:922.314942px;}
.y78{bottom:926.261047px;}
.y52{bottom:930.012097px;}
.y2e{bottom:930.702290px;}
.y1cf{bottom:931.077395px;}
.y1a1{bottom:931.632550px;}
.yb3{bottom:932.277731px;}
.y5{bottom:940.244961px;}
.y77{bottom:942.705650px;}
.y1ce{bottom:947.056868px;}
.y51{bottom:947.942116px;}
.y1a0{bottom:948.062149px;}
.y2d{bottom:948.632309px;}
.yb2{bottom:950.207750px;}
.y76{bottom:959.150253px;}
.y1cd{bottom:963.486467px;}
.y19f{bottom:964.011614px;}
.y2c{bottom:966.562328px;}
.yb1{bottom:968.137769px;}
.y176{bottom:969.443134px;}
.y4{bottom:975.534839px;}
.y75{bottom:975.579852px;}
.y1cc{bottom:979.465940px;}
.y19e{bottom:980.441213px;}
.y2b{bottom:984.507351px;}
.yb0{bottom:986.067788px;}
.y74{bottom:992.024455px;}
.y1cb{bottom:995.895539px;}
.y3{bottom:1001.117000px;}
.y2a{bottom:1002.437370px;}
.yaf{bottom:1003.997807px;}
.y73{bottom:1008.454054px;}
.y19d{bottom:1011.184819px;}
.y1f6{bottom:1011.394877px;}
.y1ca{bottom:1012.340142px;}
.y29{bottom:1020.367389px;}
.yae{bottom:1021.927826px;}
.y72{bottom:1024.898657px;}
.y1f5{bottom:1027.839481px;}
.y1c9{bottom:1028.304611px;}
.y28{bottom:1038.297408px;}
.yad{bottom:1039.872849px;}
.y71{bottom:1041.343261px;}
.y1f4{bottom:1044.269080px;}
.y1c8{bottom:1044.749214px;}
.y27{bottom:1056.227427px;}
.y70{bottom:1057.772860px;}
.yac{bottom:1057.802868px;}
.y19c{bottom:1060.713683px;}
.y1c7{bottom:1061.178813px;}
.y26{bottom:1074.157446px;}
.y6f{bottom:1074.217463px;}
.yab{bottom:1075.732887px;}
.y19b{bottom:1077.158286px;}
.y25{bottom:1092.102469px;}
.y19a{bottom:1093.587885px;}
.y6e{bottom:1099.619573px;}
.y24{bottom:1110.032488px;}
.y6d{bottom:1116.049172px;}
.y2{bottom:1138.435439px;}
.y23{bottom:1151.744164px;}
.y1{bottom:1154.429916px;}
.h5{height:23.866881px;}
.h13{height:29.031206px;}
.hf{height:30.312161px;}
.h7{height:33.555633px;}
.h16{height:34.104091px;}
.h8{height:35.545310px;}
.h11{height:36.374593px;}
.h17{height:36.889686px;}
.h6{height:36.997236px;}
.ha{height:37.212337px;}
.h10{height:38.130523px;}
.h15{height:40.924910px;}
.hb{height:41.006839px;}
.h2{height:41.126392px;}
.h1{height:41.365499px;}
.hc{height:44.832550px;}
.h9{height:47.754353px;}
.hd{height:50.757288px;}
.h4{height:53.099864px;}
.h3{height:59.556351px;}
.h12{height:60.361897px;}
.he{height:293.659614px;}
.h14{height:330.395264px;}
.h0{height:1263.000000px;}
.w1{width:390.900765px;}
.w2{width:439.800897px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:28.942191px;}
.xa{left:32.756828px;}
.x14{left:34.209922px;}
.x10{left:35.420919px;}
.x9{left:38.024559px;}
.x13{left:39.053910px;}
.xf{left:40.688650px;}
.xe{left:44.745457px;}
.x8{left:48.862716px;}
.x1a{left:54.498414px;}
.xd{left:69.388776px;}
.x11{left:85.736908px;}
.x5{left:106.799664px;}
.x2{left:108.000000px;}
.x1{left:113.086424px;}
.x6{left:115.472092px;}
.x3{left:120.948625px;}
.x4{left:130.416275px;}
.x19{left:132.441865px;}
.x7{left:156.868700px;}
.xb{left:159.182160px;}
.x18{left:162.633432px;}
.x16{left:173.532187px;}
.x1d{left:190.608552px;}
.x1e{left:192.720094px;}
.x17{left:296.324819px;}
.xc{left:315.034347px;}
.x1b{left:400.767824px;}
.x1c{left:427.948912px;}
.x12{left:573.640343px;}
@media print{
.v2{vertical-align:-20.325690pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.931027pt;}
.v1{vertical-align:19.312073pt;}
.v3{vertical-align:20.325690pt;}
.v5{vertical-align:25.767213pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.009325pt;}
.ls19{letter-spacing:0.013999pt;}
.ls1a{letter-spacing:0.018373pt;}
.ls1b{letter-spacing:0.028632pt;}
.ls8{letter-spacing:0.029107pt;}
.ls1d{letter-spacing:0.034607pt;}
.lsc{letter-spacing:0.046776pt;}
.ls21{letter-spacing:0.048675pt;}
.ls0{letter-spacing:2.620904pt;}
.ls1{letter-spacing:2.674253pt;}
.ls16{letter-spacing:10.848071pt;}
.ls4{letter-spacing:11.977326pt;}
.ls15{letter-spacing:12.709627pt;}
.ls17{letter-spacing:12.762975pt;}
.ls13{letter-spacing:13.844515pt;}
.ls5{letter-spacing:13.936637pt;}
.ls18{letter-spacing:14.742495pt;}
.ls14{letter-spacing:14.804784pt;}
.ls10{letter-spacing:15.167510pt;}
.lse{letter-spacing:15.251096pt;}
.ls6{letter-spacing:17.045411pt;}
.ls22{letter-spacing:17.799948pt;}
.ls11{letter-spacing:17.871669pt;}
.lsf{letter-spacing:19.205376pt;}
.ls20{letter-spacing:19.482830pt;}
.ls1e{letter-spacing:19.490490pt;}
.ls1f{letter-spacing:26.265720pt;}
.ls2{letter-spacing:26.544081pt;}
.ls12{letter-spacing:26.567437pt;}
.lsb{letter-spacing:28.677126pt;}
.ls7{letter-spacing:28.683869pt;}
.lsd{letter-spacing:30.393404pt;}
.ls9{letter-spacing:44.912668pt;}
.lsa{letter-spacing:44.958590pt;}
.wsa5{word-spacing:-31.880924pt;}
.ws97{word-spacing:-20.112297pt;}
.wsa3{word-spacing:-19.066671pt;}
.wsa9{word-spacing:-18.095732pt;}
.wsa6{word-spacing:-17.562249pt;}
.wsac{word-spacing:-17.135463pt;}
.wsa7{word-spacing:-15.748408pt;}
.wsae{word-spacing:-15.214926pt;}
.ws7{word-spacing:-13.283718pt;}
.ws96{word-spacing:-12.707557pt;}
.wsbc{word-spacing:-11.950012pt;}
.ws9f{word-spacing:-10.733671pt;}
.ws95{word-spacing:-9.229250pt;}
.wsa2{word-spacing:-8.599741pt;}
.wsb8{word-spacing:-7.181875pt;}
.ws7f{word-spacing:-3.134958pt;}
.wsb1{word-spacing:-2.869283pt;}
.ws3c{word-spacing:-2.816148pt;}
.wsc7{word-spacing:-2.763013pt;}
.ws58{word-spacing:-2.709879pt;}
.wsbe{word-spacing:-2.656744pt;}
.ws7e{word-spacing:-2.603609pt;}
.wsaa{word-spacing:-2.497339pt;}
.ws44{word-spacing:-2.444204pt;}
.wsb9{word-spacing:-2.437802pt;}
.wsba{word-spacing:-2.390002pt;}
.ws7b{word-spacing:-2.284800pt;}
.ws47{word-spacing:-2.231665pt;}
.ws113{word-spacing:-2.103202pt;}
.ws4e{word-spacing:-2.072260pt;}
.wsc0{word-spacing:-2.019125pt;}
.ws107{word-spacing:-2.007602pt;}
.ws57{word-spacing:-1.965990pt;}
.wsf8{word-spacing:-1.959802pt;}
.ws6e{word-spacing:-1.912855pt;}
.ws8{word-spacing:-1.912002pt;}
.ws8a{word-spacing:-1.859721pt;}
.ws63{word-spacing:-1.806586pt;}
.ws67{word-spacing:-1.753451pt;}
.ws7d{word-spacing:-1.700316pt;}
.ws110{word-spacing:-1.673002pt;}
.wsec{word-spacing:-1.625202pt;}
.ws5f{word-spacing:-1.594046pt;}
.ws89{word-spacing:-1.540911pt;}
.ws34{word-spacing:-1.487776pt;}
.ws6d{word-spacing:-1.434642pt;}
.ws4c{word-spacing:-1.381507pt;}
.ws74{word-spacing:-1.328372pt;}
.wsda{word-spacing:-1.290601pt;}
.ws2e{word-spacing:-1.275237pt;}
.wsdb{word-spacing:-1.242801pt;}
.ws55{word-spacing:-1.238960pt;}
.ws77{word-spacing:-1.168967pt;}
.ws6f{word-spacing:-1.115832pt;}
.ws10c{word-spacing:-1.099401pt;}
.ws62{word-spacing:-1.062697pt;}
.wsdd{word-spacing:-1.009563pt;}
.wsed{word-spacing:-1.003801pt;}
.ws54{word-spacing:-0.956428pt;}
.wse0{word-spacing:-0.956001pt;}
.ws50{word-spacing:-0.903293pt;}
.ws7c{word-spacing:-0.850158pt;}
.wsc4{word-spacing:-0.812601pt;}
.ws3a{word-spacing:-0.797023pt;}
.wsd5{word-spacing:-0.764801pt;}
.ws12{word-spacing:-0.743888pt;}
.wsd6{word-spacing:-0.717001pt;}
.ws98{word-spacing:-0.690753pt;}
.ws1e{word-spacing:-0.637618pt;}
.wsfe{word-spacing:-0.621401pt;}
.ws2a{word-spacing:-0.584484pt;}
.ws81{word-spacing:-0.478214pt;}
.ws10b{word-spacing:-0.478000pt;}
.ws10a{word-spacing:-0.430200pt;}
.ws5a{word-spacing:-0.425079pt;}
.ws5b{word-spacing:-0.371944pt;}
.ws100{word-spacing:-0.334600pt;}
.wsb2{word-spacing:-0.318809pt;}
.wsf9{word-spacing:-0.286800pt;}
.ws2b{word-spacing:-0.265674pt;}
.ws86{word-spacing:-0.212539pt;}
.ws10d{word-spacing:-0.191200pt;}
.ws79{word-spacing:-0.159405pt;}
.wsff{word-spacing:-0.156631pt;}
.ws3{word-spacing:-0.076501pt;}
.ws0{word-spacing:-0.053135pt;}
.ws20{word-spacing:-0.047800pt;}
.wscb{word-spacing:-0.037184pt;}
.ws1{word-spacing:0.000000pt;}
.ws59{word-spacing:0.106270pt;}
.ws101{word-spacing:0.143400pt;}
.ws60{word-spacing:0.149375pt;}
.ws37{word-spacing:0.159405pt;}
.wsd8{word-spacing:0.191200pt;}
.ws80{word-spacing:0.212539pt;}
.wsd9{word-spacing:0.239000pt;}
.ws26{word-spacing:0.265674pt;}
.ws27{word-spacing:0.318809pt;}
.wsc2{word-spacing:0.334600pt;}
.ws2f{word-spacing:0.371944pt;}
.wsc3{word-spacing:0.382400pt;}
.wsf{word-spacing:0.425079pt;}
.wsd1{word-spacing:0.430200pt;}
.wsa8{word-spacing:0.476080pt;}
.wsfb{word-spacing:0.478000pt;}
.ws84{word-spacing:0.478214pt;}
.wsf3{word-spacing:0.525801pt;}
.ws99{word-spacing:0.531349pt;}
.ws46{word-spacing:0.584484pt;}
.ws1a{word-spacing:0.637618pt;}
.ws41{word-spacing:0.690753pt;}
.ws87{word-spacing:0.743888pt;}
.wse1{word-spacing:0.764801pt;}
.ws53{word-spacing:0.797023pt;}
.wse3{word-spacing:0.812601pt;}
.ws52{word-spacing:0.850158pt;}
.wsbb{word-spacing:0.860401pt;}
.ws2d{word-spacing:0.903293pt;}
.ws114{word-spacing:0.908201pt;}
.ws31{word-spacing:0.956428pt;}
.ws2{word-spacing:0.994518pt;}
.wsa4{word-spacing:1.009563pt;}
.ws21{word-spacing:1.062697pt;}
.wse{word-spacing:1.115832pt;}
.ws16{word-spacing:1.168967pt;}
.ws103{word-spacing:1.195001pt;}
.wsdc{word-spacing:1.222102pt;}
.ws5e{word-spacing:1.275237pt;}
.ws8b{word-spacing:1.290601pt;}
.ws69{word-spacing:1.328372pt;}
.ws13{word-spacing:1.381507pt;}
.ws8c{word-spacing:1.386201pt;}
.wsab{word-spacing:1.434642pt;}
.ws109{word-spacing:1.481801pt;}
.ws3e{word-spacing:1.487776pt;}
.ws5c{word-spacing:1.540911pt;}
.ws108{word-spacing:1.577402pt;}
.ws48{word-spacing:1.594046pt;}
.ws1f{word-spacing:1.647181pt;}
.ws10e{word-spacing:1.673002pt;}
.ws9c{word-spacing:1.700316pt;}
.ws43{word-spacing:1.753451pt;}
.ws88{word-spacing:1.806586pt;}
.ws118{word-spacing:1.816402pt;}
.ws5d{word-spacing:1.859721pt;}
.wsf4{word-spacing:1.864202pt;}
.ws5{word-spacing:1.912855pt;}
.ws4{word-spacing:1.965990pt;}
.ws10f{word-spacing:2.007602pt;}
.ws6{word-spacing:2.019125pt;}
.wsb4{word-spacing:2.125395pt;}
.ws33{word-spacing:2.178530pt;}
.ws39{word-spacing:2.231665pt;}
.wsfc{word-spacing:2.246602pt;}
.ws3f{word-spacing:2.284800pt;}
.wsfd{word-spacing:2.294402pt;}
.ws11b{word-spacing:2.342202pt;}
.ws11a{word-spacing:2.390002pt;}
.ws35{word-spacing:2.391069pt;}
.ws24{word-spacing:2.444204pt;}
.ws112{word-spacing:2.485602pt;}
.ws30{word-spacing:2.497339pt;}
.ws22{word-spacing:2.550474pt;}
.ws102{word-spacing:2.581203pt;}
.ws78{word-spacing:2.603609pt;}
.ws83{word-spacing:2.656744pt;}
.ws71{word-spacing:2.709879pt;}
.wsea{word-spacing:2.724603pt;}
.ws14{word-spacing:2.763013pt;}
.ws72{word-spacing:2.816148pt;}
.ws3b{word-spacing:2.869283pt;}
.ws8f{word-spacing:2.922418pt;}
.wsd2{word-spacing:2.975553pt;}
.ws3d{word-spacing:3.028688pt;}
.ws104{word-spacing:3.059203pt;}
.wsb5{word-spacing:3.081823pt;}
.ws4f{word-spacing:3.134958pt;}
.ws36{word-spacing:3.188092pt;}
.ws17{word-spacing:3.294362pt;}
.ws45{word-spacing:3.347497pt;}
.ws64{word-spacing:3.400632pt;}
.wsad{word-spacing:3.426026pt;}
.wsc8{word-spacing:3.453767pt;}
.ws38{word-spacing:3.506902pt;}
.wse6{word-spacing:3.537203pt;}
.ws42{word-spacing:3.560037pt;}
.wsee{word-spacing:3.585004pt;}
.wsa{word-spacing:3.613171pt;}
.ws119{word-spacing:3.632804pt;}
.ws32{word-spacing:3.666306pt;}
.ws56{word-spacing:3.719441pt;}
.wsbd{word-spacing:3.772576pt;}
.ws91{word-spacing:3.878846pt;}
.wsbf{word-spacing:3.931981pt;}
.ws65{word-spacing:4.038250pt;}
.ws10{word-spacing:4.091385pt;}
.ws111{word-spacing:4.110804pt;}
.ws2c{word-spacing:4.144520pt;}
.wsf0{word-spacing:4.158604pt;}
.ws117{word-spacing:4.206404pt;}
.ws40{word-spacing:4.303925pt;}
.wsf5{word-spacing:4.349804pt;}
.ws76{word-spacing:4.357060pt;}
.ws15{word-spacing:4.410195pt;}
.ws4d{word-spacing:4.516464pt;}
.ws11{word-spacing:4.569599pt;}
.ws85{word-spacing:4.622734pt;}
.wse2{word-spacing:4.636605pt;}
.ws90{word-spacing:4.729004pt;}
.wsf7{word-spacing:4.732205pt;}
.wsf6{word-spacing:4.780005pt;}
.ws9a{word-spacing:4.782139pt;}
.ws4a{word-spacing:4.835273pt;}
.ws28{word-spacing:4.888408pt;}
.wsaf{word-spacing:4.941543pt;}
.ws8e{word-spacing:5.047813pt;}
.wsc9{word-spacing:5.100948pt;}
.wse7{word-spacing:5.114605pt;}
.ws105{word-spacing:5.162405pt;}
.ws25{word-spacing:5.207218pt;}
.ws82{word-spacing:5.260352pt;}
.ws70{word-spacing:5.313487pt;}
.wsef{word-spacing:5.333973pt;}
.wse9{word-spacing:5.353605pt;}
.wsc5{word-spacing:5.366622pt;}
.wse8{word-spacing:5.449205pt;}
.wsb{word-spacing:5.472892pt;}
.ws7a{word-spacing:5.526027pt;}
.ws29{word-spacing:5.579162pt;}
.wsc{word-spacing:5.632297pt;}
.ws106{word-spacing:5.640406pt;}
.wsd3{word-spacing:5.685431pt;}
.ws116{word-spacing:5.688206pt;}
.ws115{word-spacing:5.736006pt;}
.ws68{word-spacing:5.791701pt;}
.ws19{word-spacing:5.844836pt;}
.ws6b{word-spacing:5.897971pt;}
.wsf2{word-spacing:5.927206pt;}
.ws8d{word-spacing:6.004241pt;}
.ws1b{word-spacing:6.110510pt;}
.wscd{word-spacing:6.163645pt;}
.wscc{word-spacing:6.176236pt;}
.wsdf{word-spacing:6.214006pt;}
.ws1d{word-spacing:6.216780pt;}
.wsb6{word-spacing:6.269915pt;}
.wsfa{word-spacing:6.309606pt;}
.ws75{word-spacing:6.323050pt;}
.wseb{word-spacing:6.405206pt;}
.ws9b{word-spacing:6.535589pt;}
.ws23{word-spacing:6.588724pt;}
.wsb0{word-spacing:6.641859pt;}
.ws93{word-spacing:6.694994pt;}
.ws66{word-spacing:6.854399pt;}
.wsb3{word-spacing:6.960668pt;}
.wsc6{word-spacing:7.013803pt;}
.ws1c{word-spacing:7.120073pt;}
.ws4b{word-spacing:7.173208pt;}
.wsf1{word-spacing:7.265607pt;}
.ws49{word-spacing:7.279478pt;}
.ws6a{word-spacing:7.312767pt;}
.ws9d{word-spacing:7.492017pt;}
.wscf{word-spacing:7.545152pt;}
.ws51{word-spacing:7.598287pt;}
.ws18{word-spacing:7.704557pt;}
.wsa0{word-spacing:7.863961pt;}
.ws9e{word-spacing:7.907280pt;}
.wsd{word-spacing:8.448445pt;}
.ws6c{word-spacing:8.554715pt;}
.ws94{word-spacing:9.404873pt;}
.ws92{word-spacing:9.936221pt;}
.wsa1{word-spacing:9.989356pt;}
.wse5{word-spacing:12.667012pt;}
.wse4{word-spacing:12.714812pt;}
.ws73{word-spacing:18.315751pt;}
.wsce{word-spacing:19.434091pt;}
.wsca{word-spacing:24.070098pt;}
.ws61{word-spacing:31.278462pt;}
.wsde{word-spacing:38.631827pt;}
.ws9{word-spacing:39.844967pt;}
.wsc1{word-spacing:55.370193pt;}
.wsd4{word-spacing:64.766050pt;}
.wsd7{word-spacing:72.868025pt;}
.wsd0{word-spacing:89.509936pt;}
.wsb7{word-spacing:143.851932pt;}
._5{margin-left:-5.862121pt;}
._1{margin-left:-4.374344pt;}
._2{margin-left:-3.325731pt;}
._0{margin-left:-1.683031pt;}
._2b{width:1.001667pt;}
._9{width:5.969671pt;}
._d{width:8.129636pt;}
._10{width:9.564277pt;}
._2a{width:10.756291pt;}
._6{width:12.947624pt;}
._c{width:14.133876pt;}
._7{width:15.568518pt;}
._3{width:16.932740pt;}
._1d{width:18.078447pt;}
._e{width:19.039570pt;}
._27{width:20.937488pt;}
._29{width:22.131422pt;}
._b{width:23.278623pt;}
._28{width:24.425824pt;}
._23{width:25.364540pt;}
._a{width:26.529026pt;}
._1f{width:27.925257pt;}
._25{width:28.966828pt;}
._20{width:30.209630pt;}
._15{width:32.070118pt;}
._21{width:33.544110pt;}
._22{width:34.952077pt;}
._26{width:36.740951pt;}
._24{width:37.762037pt;}
._1e{width:58.910144pt;}
._14{width:63.637100pt;}
._13{width:70.028453pt;}
._18{width:80.891685pt;}
._1a{width:82.658220pt;}
._17{width:89.300679pt;}
._19{width:90.404828pt;}
._1c{width:92.998434pt;}
._1b{width:101.714113pt;}
._16{width:115.164215pt;}
._12{width:158.079021pt;}
._11{width:353.825977pt;}
._8{width:377.726000pt;}
._f{width:1347.196523pt;}
._4{width:1371.096546pt;}
.fs6{font-size:17.222732pt;}
.fs5{font-size:25.834084pt;}
.fs9{font-size:29.065826pt;}
.fs7{font-size:31.000901pt;}
.fs3{font-size:31.902263pt;}
.fs8{font-size:34.878991pt;}
.fs2{font-size:37.183742pt;}
.fs4{font-size:47.800047pt;}
.fs0{font-size:53.134874pt;}
.fs1{font-size:76.501414pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:10.979383pt;}
.y105{bottom:12.217482pt;}
.y173{bottom:12.352861pt;}
.y16a{bottom:13.442829pt;}
.y136{bottom:19.644781pt;}
.yff{bottom:20.882880pt;}
.y15f{bottom:22.102265pt;}
.y137{bottom:25.833982pt;}
.y100{bottom:26.318371pt;}
.y160{bottom:29.065710pt;}
.y147{bottom:35.844690pt;}
.y116{bottom:40.742832pt;}
.y146{bottom:45.371008pt;}
.y138{bottom:47.147101pt;}
.y149{bottom:52.475381pt;}
.y145{bottom:54.897327pt;}
.y117{bottom:58.772439pt;}
.y161{bottom:63.279094pt;}
.y144{bottom:64.423645pt;}
.y139{bottom:68.406615pt;}
.y118{bottom:76.802693pt;}
.y16e{bottom:76.964011pt;}
.y14a{bottom:79.063175pt;}
.y168{bottom:80.233916pt;}
.y13a{bottom:89.666129pt;}
.y172{bottom:90.043633pt;}
.y119{bottom:94.832946pt;}
.y169{bottom:95.796486pt;}
.y101{bottom:97.254892pt;}
.y162{bottom:97.491750pt;}
.y14f{bottom:97.954349pt;}
.y14b{bottom:105.650969pt;}
.y13b{bottom:110.979249pt;}
.y11a{bottom:112.862554pt;}
.y142{bottom:114.423578pt;}
.y104{bottom:116.845524pt;}
.y121{bottom:119.536789pt;}
.y156{bottom:121.689414pt;}
.y16f{bottom:124.862312pt;}
.y11b{bottom:130.892807pt;}
.y163{bottom:131.704407pt;}
.y13c{bottom:132.238117pt;}
.y11c{bottom:148.923060pt;}
.y13d{bottom:153.497631pt;}
.y158{bottom:157.910738pt;}
.y14c{bottom:158.825911pt;}
.y164{bottom:165.856752pt;}
.y11d{bottom:166.952668pt;}
.y157{bottom:167.544914pt;}
.y102{bottom:168.190766pt;}
.y170{bottom:172.699574pt;}
.y13e{bottom:174.810750pt;}
.y11e{bottom:184.982921pt;}
.y14d{bottom:185.413705pt;}
.y13f{bottom:196.070264pt;}
.y165{bottom:200.070136pt;}
.y11f{bottom:203.013175pt;}
.y125{bottom:205.865257pt;}
.y14e{bottom:212.000852pt;}
.y108{bottom:213.776946pt;}
.y124{bottom:213.938409pt;}
.y140{bottom:217.329132pt;}
.y171{bottom:220.597875pt;}
.y120{bottom:221.042782pt;}
.y107{bottom:221.850097pt;}
.y123{bottom:221.957954pt;}
.y106{bottom:229.977500pt;}
.y122{bottom:230.031106pt;}
.y166{bottom:234.282792pt;}
.y141{bottom:238.588646pt;}
.y103{bottom:239.073035pt;}
.y22{bottom:264.426700pt;}
.y199{bottom:267.307506pt;}
.y167{bottom:268.435137pt;}
.y1c6{bottom:279.044125pt;}
.y50{bottom:280.364494pt;}
.y198{bottom:283.245301pt;}
.y21{bottom:291.834372pt;}
.y1f3{bottom:293.234764pt;}
.y1c5{bottom:293.648213pt;}
.y4f{bottom:296.302289pt;}
.y197{bottom:299.183095pt;}
.y20{bottom:307.772166pt;}
.y1f2{bottom:307.852189pt;}
.y1c4{bottom:308.265638pt;}
.y4e{bottom:312.253421pt;}
.y154{bottom:313.040308pt;}
.y196{bottom:315.120890pt;}
.yd0{bottom:322.402929pt;}
.y1c3{bottom:322.429603pt;}
.y1f1{bottom:322.456277pt;}
.y1f{bottom:323.709961pt;}
.y175{bottom:326.444060pt;}
.y4d{bottom:328.191215pt;}
.y153{bottom:328.978102pt;}
.y15d{bottom:329.471574pt;}
.y195{bottom:331.058685pt;}
.y1f0{bottom:336.646916pt;}
.y1c2{bottom:337.047028pt;}
.ycf{bottom:338.340723pt;}
.y1e{bottom:339.647756pt;}
.y174{bottom:341.061485pt;}
.ya8{bottom:341.888383pt;}
.y4c{bottom:344.129010pt;}
.y152{bottom:344.915897pt;}
.y15c{bottom:345.409369pt;}
.y194{bottom:347.009817pt;}
.y1ef{bottom:350.850892pt;}
.y1c1{bottom:351.651116pt;}
.yce{bottom:354.278518pt;}
.y1d{bottom:355.585550pt;}
.y93{bottom:355.812281pt;}
.y4b{bottom:360.066805pt;}
.y16d{bottom:360.259255pt;}
.y6c{bottom:360.680310pt;}
.yef{bottom:360.733658pt;}
.y151{bottom:360.853692pt;}
.y15b{bottom:361.347163pt;}
.y193{bottom:362.947611pt;}
.y1ee{bottom:365.454980pt;}
.y1c0{bottom:365.828418pt;}
.ycd{bottom:370.216313pt;}
.y135{bottom:371.429986pt;}
.y1c{bottom:371.536682pt;}
.y4a{bottom:376.004599pt;}
.y6b{bottom:376.618105pt;}
.yee{bottom:376.671453pt;}
.y192{bottom:378.885406pt;}
.y1ed{bottom:380.072405pt;}
.y1bf{bottom:380.445843pt;}
.ycc{bottom:386.167444pt;}
.ya7{bottom:386.460860pt;}
.y1b{bottom:387.474477pt;}
.y49{bottom:391.942394pt;}
.y6a{bottom:392.569236pt;}
.yed{bottom:392.609247pt;}
.y1ec{bottom:394.689830pt;}
.y191{bottom:394.823201pt;}
.y1be{bottom:395.049931pt;}
.y92{bottom:398.370860pt;}
.y134{bottom:401.465060pt;}
.ycb{bottom:402.105239pt;}
.ya6{bottom:402.398654pt;}
.y1a{bottom:403.412271pt;}
.y15a{bottom:403.892406pt;}
.y150{bottom:404.879349pt;}
.y48{bottom:407.893526pt;}
.y69{bottom:408.507031pt;}
.yec{bottom:408.560379pt;}
.y1eb{bottom:408.880469pt;}
.y1bd{bottom:409.227233pt;}
.y190{bottom:410.760995pt;}
.y91{bottom:414.308655pt;}
.y133{bottom:417.402854pt;}
.yca{bottom:418.043034pt;}
.ya5{bottom:418.336449pt;}
.y159{bottom:418.509831pt;}
.y19{bottom:419.350066pt;}
.y1ea{bottom:423.497894pt;}
.y47{bottom:423.831321pt;}
.y148{bottom:424.009751pt;}
.y68{bottom:424.444826pt;}
.yeb{bottom:424.498174pt;}
.y18f{bottom:426.698790pt;}
.y90{bottom:430.259787pt;}
.y132{bottom:433.340649pt;}
.yc9{bottom:433.980828pt;}
.ya4{bottom:434.274244pt;}
.y18{bottom:435.287861pt;}
.y155{bottom:437.640233pt;}
.y1e9{bottom:438.101982pt;}
.y1bc{bottom:438.448746pt;}
.y46{bottom:439.769115pt;}
.y67{bottom:440.382620pt;}
.yea{bottom:440.435969pt;}
.y18e{bottom:445.730784pt;}
.y8f{bottom:446.197581pt;}
.y131{bottom:449.278444pt;}
.yc8{bottom:449.918623pt;}
.ya3{bottom:450.212038pt;}
.yaa{bottom:451.599093pt;}
.y1e8{bottom:452.305958pt;}
.y1bb{bottom:452.612710pt;}
.yd8{bottom:455.706910pt;}
.y66{bottom:456.320415pt;}
.ye9{bottom:456.373763pt;}
.y45{bottom:458.187604pt;}
.y18d{bottom:461.668579pt;}
.y8e{bottom:462.135376pt;}
.y130{bottom:465.216238pt;}
.yc7{bottom:465.869755pt;}
.ya2{bottom:466.163170pt;}
.y1e7{bottom:466.910046pt;}
.y1ba{bottom:467.230135pt;}
.y17{bottom:468.590516pt;}
.yd7{bottom:471.644705pt;}
.y65{bottom:472.271547pt;}
.ye8{bottom:472.311558pt;}
.y115{bottom:473.378523pt;}
.y44{bottom:474.125399pt;}
.y18c{bottom:477.606373pt;}
.y8d{bottom:478.073171pt;}
.y1e6{bottom:481.100685pt;}
.y12f{bottom:481.167370pt;}
.yc6{bottom:481.807549pt;}
.y1b9{bottom:481.834223pt;}
.ya1{bottom:482.100965pt;}
.yfd{bottom:485.355209pt;}
.yd6{bottom:487.595836pt;}
.y64{bottom:488.209341pt;}
.ye7{bottom:488.262690pt;}
.y43{bottom:490.063194pt;}
.y18b{bottom:493.544168pt;}
.y1e5{bottom:495.718110pt;}
.y1b8{bottom:496.011525pt;}
.y12e{bottom:497.105165pt;}
.yc5{bottom:497.745344pt;}
.ya0{bottom:498.038759pt;}
.yd5{bottom:503.533631pt;}
.y63{bottom:504.147136pt;}
.ye6{bottom:504.200484pt;}
.y42{bottom:506.014325pt;}
.y18a{bottom:509.495300pt;}
.y1e4{bottom:509.908749pt;}
.y1b7{bottom:510.615613pt;}
.y12d{bottom:513.042959pt;}
.yc4{bottom:513.683139pt;}
.y9f{bottom:513.976554pt;}
.y16{bottom:516.817349pt;}
.y8c{bottom:517.284147pt;}
.yd4{bottom:519.471426pt;}
.y62{bottom:520.084931pt;}
.ye5{bottom:520.138279pt;}
.y114{bottom:521.925446pt;}
.y41{bottom:521.952120pt;}
.y1e3{bottom:524.526174pt;}
.y1b6{bottom:524.792915pt;}
.y189{bottom:525.433094pt;}
.y12c{bottom:528.980754pt;}
.yc3{bottom:529.620933pt;}
.y9e{bottom:529.914349pt;}
.y15{bottom:532.755144pt;}
.yd3{bottom:535.409220pt;}
.y61{bottom:536.022725pt;}
.ye4{bottom:536.076074pt;}
.y8b{bottom:537.756544pt;}
.y113{bottom:537.863241pt;}
.y40{bottom:537.889915pt;}
.y1e2{bottom:538.716813pt;}
.y1b5{bottom:539.410340pt;}
.y188{bottom:541.370889pt;}
.y12b{bottom:544.918549pt;}
.yc2{bottom:545.558728pt;}
.yfc{bottom:545.852143pt;}
.y14{bottom:548.692939pt;}
.ye3{bottom:552.013868pt;}
.y60{bottom:552.587362pt;}
.y1e1{bottom:553.334238pt;}
.y112{bottom:553.801035pt;}
.y3f{bottom:553.827709pt;}
.y1b4{bottom:554.014428pt;}
.y187{bottom:557.308684pt;}
.y9d{bottom:559.562648pt;}
.y8a{bottom:560.336198pt;}
.y12a{bottom:560.869681pt;}
.yc1{bottom:561.509860pt;}
.yfb{bottom:561.803275pt;}
.y13{bottom:564.630733pt;}
.y1e0{bottom:567.524877pt;}
.ye2{bottom:567.965000pt;}
.y5f{bottom:568.525157pt;}
.y1b3{bottom:568.631853pt;}
.y111{bottom:569.738830pt;}
.y3e{bottom:569.765504pt;}
.y186{bottom:573.246478pt;}
.y89{bottom:574.940286pt;}
.y129{bottom:576.807475pt;}
.yc0{bottom:577.447654pt;}
.yfa{bottom:577.741070pt;}
.y12{bottom:580.568528pt;}
.y1df{bottom:582.142302pt;}
.y1b2{bottom:582.795818pt;}
.ye1{bottom:583.902795pt;}
.y5e{bottom:584.462951pt;}
.y110{bottom:585.676625pt;}
.y3d{bottom:585.703299pt;}
.y185{bottom:589.197610pt;}
.y88{bottom:589.557711pt;}
.ybf{bottom:593.385449pt;}
.yd2{bottom:593.398786pt;}
.yf9{bottom:593.678865pt;}
.y11{bottom:596.519660pt;}
.y1de{bottom:596.746390pt;}
.y1b1{bottom:597.413243pt;}
.y5d{bottom:600.400746pt;}
.ye0{bottom:600.507443pt;}
.y128{bottom:600.574128pt;}
.y10f{bottom:601.627756pt;}
.y3c{bottom:601.654430pt;}
.y9c{bottom:604.121788pt;}
.y87{bottom:604.175136pt;}
.y184{bottom:605.135405pt;}
.yd1{bottom:608.016211pt;}
.ybe{bottom:609.323244pt;}
.yf8{bottom:609.616659pt;}
.y1dd{bottom:610.950366pt;}
.y1b0{bottom:611.577208pt;}
.y10{bottom:612.457454pt;}
.y5c{bottom:616.338541pt;}
.ydf{bottom:616.445237pt;}
.y127{bottom:616.511923pt;}
.y10e{bottom:617.565551pt;}
.y3b{bottom:617.592225pt;}
.y86{bottom:618.779224pt;}
.y9b{bottom:620.072919pt;}
.y183{bottom:621.073199pt;}
.ybd{bottom:625.261038pt;}
.yf7{bottom:625.554454pt;}
.y1af{bottom:626.194633pt;}
.yf{bottom:628.395249pt;}
.y5b{bottom:632.289673pt;}
.yde{bottom:632.383032pt;}
.y126{bottom:632.463054pt;}
.y85{bottom:633.396649pt;}
.y10d{bottom:633.503346pt;}
.y3a{bottom:633.530020pt;}
.y9a{bottom:636.010714pt;}
.y1dc{bottom:639.758430pt;}
.y182{bottom:640.091857pt;}
.y1ae{bottom:640.358598pt;}
.ybc{bottom:641.212170pt;}
.yf6{bottom:641.505586pt;}
.ye{bottom:644.333044pt;}
.y84{bottom:648.000737pt;}
.y5a{bottom:648.227467pt;}
.ydd{bottom:648.320827pt;}
.y10c{bottom:649.441140pt;}
.y39{bottom:649.467814pt;}
.y99{bottom:651.948509pt;}
.y1db{bottom:654.362518pt;}
.y1ad{bottom:654.976023pt;}
.y181{bottom:656.042988pt;}
.yf5{bottom:657.443380pt;}
.yd{bottom:660.270838pt;}
.y83{bottom:662.618162pt;}
.y59{bottom:664.165262pt;}
.ydc{bottom:664.271958pt;}
.y38{bottom:665.405609pt;}
.y98{bottom:667.886303pt;}
.y1da{bottom:668.979943pt;}
.y1ac{bottom:669.593448pt;}
.ybb{bottom:671.687367pt;}
.y180{bottom:671.980783pt;}
.y16c{bottom:672.474254pt;}
.yf4{bottom:673.381175pt;}
.yc{bottom:676.208633pt;}
.y82{bottom:677.235587pt;}
.y58{bottom:680.103057pt;}
.ydb{bottom:680.209753pt;}
.y37{bottom:681.356741pt;}
.y1d9{bottom:683.170582pt;}
.y1ab{bottom:683.757413pt;}
.y97{bottom:683.824098pt;}
.y16b{bottom:687.091679pt;}
.y17f{bottom:687.918578pt;}
.yf3{bottom:689.318970pt;}
.y10b{bottom:690.559317pt;}
.y81{bottom:691.839675pt;}
.yb{bottom:692.159765pt;}
.y57{bottom:696.040851pt;}
.yda{bottom:696.147548pt;}
.y36{bottom:697.294535pt;}
.y1d8{bottom:697.788007pt;}
.y1aa{bottom:698.374838pt;}
.y96{bottom:699.761893pt;}
.y17e{bottom:703.856372pt;}
.y10a{bottom:705.176742pt;}
.yf2{bottom:705.256764pt;}
.y15e{bottom:706.289449pt;}
.y80{bottom:706.457100pt;}
.y1d7{bottom:711.978646pt;}
.y56{bottom:711.991983pt;}
.y1a9{bottom:712.538803pt;}
.y35{bottom:713.232330pt;}
.y95{bottom:715.713025pt;}
.yba{bottom:717.100079pt;}
.y109{bottom:719.780830pt;}
.y17d{bottom:719.794167pt;}
.y7f{bottom:721.061188pt;}
.yf1{bottom:721.207896pt;}
.y1d6{bottom:726.596071pt;}
.y1a8{bottom:727.156228pt;}
.y34{bottom:729.170125pt;}
.yd9{bottom:730.343787pt;}
.y94{bottom:731.650819pt;}
.yb9{bottom:733.037874pt;}
.ya9{bottom:733.171245pt;}
.ya{bottom:734.224873pt;}
.y7e{bottom:735.678613pt;}
.y17c{bottom:735.731962pt;}
.yfe{bottom:738.924569pt;}
.y1d5{bottom:740.786710pt;}
.y1a7{bottom:741.320193pt;}
.y55{bottom:745.921481pt;}
.y33{bottom:747.588614pt;}
.yb8{bottom:748.989006pt;}
.y7d{bottom:750.296038pt;}
.yf0{bottom:750.842858pt;}
.y17b{bottom:751.683093pt;}
.y1d4{bottom:755.404135pt;}
.y1a6{bottom:755.937618pt;}
.y32{bottom:763.526409pt;}
.y7c{bottom:764.900126pt;}
.yb7{bottom:764.926801pt;}
.y9{bottom:766.393878pt;}
.y17a{bottom:767.620888pt;}
.y1d3{bottom:769.594774pt;}
.y1a5{bottom:770.101582pt;}
.y31{bottom:779.464203pt;}
.y7b{bottom:779.517551pt;}
.yb6{bottom:780.864595pt;}
.y179{bottom:783.558683pt;}
.y1d2{bottom:784.212199pt;}
.y1a4{bottom:784.719007pt;}
.y8{bottom:786.092725pt;}
.y7a{bottom:794.121639pt;}
.y54{bottom:794.788493pt;}
.y30{bottom:795.415335pt;}
.yb5{bottom:796.802390pt;}
.y1d1{bottom:798.402838pt;}
.y1a3{bottom:799.323095pt;}
.y178{bottom:799.496477pt;}
.y7{bottom:800.696813pt;}
.y79{bottom:808.739065pt;}
.y53{bottom:810.739625pt;}
.y2f{bottom:811.353130pt;}
.yb4{bottom:812.740185pt;}
.y1d0{bottom:813.020263pt;}
.y1a2{bottom:813.500397pt;}
.y177{bottom:815.434272pt;}
.y6{bottom:819.835504pt;}
.y78{bottom:823.343153pt;}
.y52{bottom:826.677419pt;}
.y2e{bottom:827.290924pt;}
.y1cf{bottom:827.624351pt;}
.y1a1{bottom:828.117822pt;}
.yb3{bottom:828.691316pt;}
.y5{bottom:835.773299pt;}
.y77{bottom:837.960578pt;}
.y1ce{bottom:841.828327pt;}
.y51{bottom:842.615214pt;}
.y1a0{bottom:842.721910pt;}
.y2d{bottom:843.228719pt;}
.yb2{bottom:844.629111pt;}
.y76{bottom:852.578003pt;}
.y1cd{bottom:856.432415pt;}
.y19f{bottom:856.899212pt;}
.y2c{bottom:859.166514pt;}
.yb1{bottom:860.566906pt;}
.y176{bottom:861.727230pt;}
.y4{bottom:867.142079pt;}
.y75{bottom:867.182091pt;}
.y1cc{bottom:870.636391pt;}
.y19e{bottom:871.503300pt;}
.y2b{bottom:875.117645pt;}
.yb0{bottom:876.504700pt;}
.y74{bottom:881.799516pt;}
.y1cb{bottom:885.240479pt;}
.y3{bottom:889.881778pt;}
.y2a{bottom:891.055440pt;}
.yaf{bottom:892.442495pt;}
.y73{bottom:896.403604pt;}
.y19d{bottom:898.830950pt;}
.y1f6{bottom:899.017669pt;}
.y1ca{bottom:899.857904pt;}
.y29{bottom:906.993235pt;}
.yae{bottom:908.380290pt;}
.y72{bottom:911.021029pt;}
.y1f5{bottom:913.635094pt;}
.y1c9{bottom:914.048543pt;}
.y28{bottom:922.931029pt;}
.yad{bottom:924.331421pt;}
.y71{bottom:925.638454pt;}
.y1f4{bottom:928.239182pt;}
.y1c8{bottom:928.665968pt;}
.y27{bottom:938.868824pt;}
.y70{bottom:940.242542pt;}
.yac{bottom:940.269216pt;}
.y19c{bottom:942.856607pt;}
.y1c7{bottom:943.270056pt;}
.y26{bottom:954.806619pt;}
.y6f{bottom:954.859967pt;}
.yab{bottom:956.207011pt;}
.y19b{bottom:957.474032pt;}
.y25{bottom:970.757750pt;}
.y19a{bottom:972.078120pt;}
.y6e{bottom:977.439621pt;}
.y24{bottom:986.695545pt;}
.y6d{bottom:992.043709pt;}
.y2{bottom:1011.942612pt;}
.y23{bottom:1023.772590pt;}
.y1{bottom:1026.159925pt;}
.h5{height:21.215005pt;}
.h13{height:25.805517pt;}
.hf{height:26.944143pt;}
.h7{height:29.827229pt;}
.h16{height:30.314748pt;}
.h8{height:31.595831pt;}
.h11{height:32.332971pt;}
.h17{height:32.790832pt;}
.h6{height:32.886432pt;}
.ha{height:33.077632pt;}
.h10{height:33.893798pt;}
.h15{height:36.377697pt;}
.hb{height:36.450523pt;}
.h2{height:36.556793pt;}
.h1{height:36.769333pt;}
.hc{height:39.851155pt;}
.h9{height:42.448314pt;}
.hd{height:45.117589pt;}
.h4{height:47.199879pt;}
.h3{height:52.938979pt;}
.h12{height:53.655019pt;}
.he{height:261.030768pt;}
.h14{height:293.684679pt;}
.h0{height:1122.666667pt;}
.w1{width:347.467347pt;}
.w2{width:390.934131pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:25.726392pt;}
.xa{left:29.117180pt;}
.x14{left:30.408820pt;}
.x10{left:31.485261pt;}
.x9{left:33.799608pt;}
.x13{left:34.714587pt;}
.xf{left:36.167689pt;}
.xe{left:39.773740pt;}
.x8{left:43.433525pt;}
.x1a{left:48.443034pt;}
.xd{left:61.678912pt;}
.x11{left:76.210585pt;}
.x5{left:94.933035pt;}
.x2{left:96.000000pt;}
.x1{left:100.521266pt;}
.x6{left:102.641859pt;}
.x3{left:107.509889pt;}
.x4{left:115.925578pt;}
.x19{left:117.726102pt;}
.x7{left:139.438844pt;}
.xb{left:141.495253pt;}
.x18{left:144.563051pt;}
.x16{left:154.250833pt;}
.x1d{left:169.429824pt;}
.x1e{left:171.306750pt;}
.x17{left:263.399839pt;}
.xc{left:280.030531pt;}
.x1b{left:356.238066pt;}
.x1c{left:380.399033pt;}
.x12{left:509.902527pt;}
}




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