
    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_8d919a7c13ed42110ca1c5b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0bac060d6f1b5a27c1243c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_d928545d8527ac272c609b4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;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_966d39fb1636b50427be2824.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_d3cc15a48757818744e49cce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_f9c932a7521126c7838218f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.522000;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_730d95202b5f9743f1324f04.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.488000;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_816ea0e2b89695d17b84d40f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.696777;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_255e5bac5212b9d7d5e8690a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_9286441938589c22692aff27.woff2')format("woff");}.fff{font-family:fff;line-height:0.679688;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_816ea0e2b89695d17b84d40f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.696777;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_255e5bac5212b9d7d5e8690a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_9286441938589c22692aff27.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.679688;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_a771bf8969ec260900b1340a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.734000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.448000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:30.150000px;}
.ls20{letter-spacing:-0.180360px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.642088px;}
.ls16{letter-spacing:0.648088px;}
.ls19{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.678000px;}
.lsb{letter-spacing:1.275394px;}
.ls8{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls6{letter-spacing:6.177300px;}
.lse{letter-spacing:6.996600px;}
.ls2{letter-spacing:7.590600px;}
.lsa{letter-spacing:11.954850px;}
.ls18{letter-spacing:11.957700px;}
.lsd{letter-spacing:13.031081px;}
.ls1e{letter-spacing:13.444800px;}
.ls22{letter-spacing:13.450800px;}
.ls1d{letter-spacing:13.452422px;}
.ls1f{letter-spacing:13.600800px;}
.ls23{letter-spacing:13.628837px;}
.ls9{letter-spacing:14.704798px;}
.ls11{letter-spacing:14.764573px;}
.ls13{letter-spacing:14.943900px;}
.ls10{letter-spacing:15.003676px;}
.ls21{letter-spacing:15.712565px;}
.ls15{letter-spacing:16.378514px;}
.ls3{letter-spacing:17.935200px;}
.lsc{letter-spacing:17.992456px;}
.ls12{letter-spacing:18.829314px;}
.ls14{letter-spacing:26.241488px;}
.lsf{letter-spacing:41.544042px;}
.ls5{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.353510px;}
.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:-72.000000px;}
.ws1{word-spacing:-22.718660px;}
.ws16{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.355754px;}
.ws7a{word-spacing:-13.449600px;}
.ws1c{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws3a{word-spacing:-3.227882px;}
.ws39{word-spacing:-3.168107px;}
.ws5d{word-spacing:-3.048556px;}
.ws32{word-spacing:-2.929004px;}
.ws54{word-spacing:-2.869229px;}
.wsec{word-spacing:-2.689920px;}
.ws8c{word-spacing:-2.570351px;}
.ws96{word-spacing:-2.331248px;}
.wsa6{word-spacing:-2.271473px;}
.wsc{word-spacing:-2.211697px;}
.ws95{word-spacing:-2.092146px;}
.ws65{word-spacing:-1.972595px;}
.ws60{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws28{word-spacing:-1.793268px;}
.ws37{word-spacing:-1.613941px;}
.ws6b{word-spacing:-1.554166px;}
.wsa9{word-spacing:-1.506355px;}
.wsa2{word-spacing:-1.494390px;}
.wseb{word-spacing:-1.452557px;}
.ws66{word-spacing:-1.434614px;}
.ws6{word-spacing:-1.322630px;}
.ws82{word-spacing:-1.315063px;}
.wsaa{word-spacing:-1.291162px;}
.wsa3{word-spacing:-1.195512px;}
.ws29{word-spacing:-1.135736px;}
.wsac{word-spacing:-0.968371px;}
.ws2f{word-spacing:-0.956410px;}
.ws91{word-spacing:-0.896634px;}
.ws22{word-spacing:-0.777083px;}
.wsb5{word-spacing:-0.753178px;}
.ws51{word-spacing:-0.717307px;}
.ws5f{word-spacing:-0.597756px;}
.ws64{word-spacing:-0.537980px;}
.wsdd{word-spacing:-0.484186px;}
.ws6f{word-spacing:-0.478205px;}
.ws47{word-spacing:-0.418429px;}
.ws21{word-spacing:-0.358654px;}
.wse4{word-spacing:-0.322790px;}
.ws2a{word-spacing:-0.298878px;}
.wsc3{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.239102px;}
.wsab{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.wsc4{word-spacing:-0.161395px;}
.ws18{word-spacing:-0.119551px;}
.wsad{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws80{word-spacing:-0.053798px;}
.wsef{word-spacing:-0.011846px;}
.wsee{word-spacing:-0.010243px;}
.wsb9{word-spacing:-0.010176px;}
.wse0{word-spacing:-0.010128px;}
.wsdb{word-spacing:-0.009888px;}
.wsf4{word-spacing:-0.009542px;}
.wsc1{word-spacing:-0.006787px;}
.wsbe{word-spacing:-0.006038px;}
.wsb8{word-spacing:-0.004128px;}
.wsdf{word-spacing:-0.003888px;}
.wsc7{word-spacing:-0.003302px;}
.ws8a{word-spacing:-0.002755px;}
.ws4{word-spacing:-0.000592px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.001225px;}
.ws1b{word-spacing:0.003599px;}
.wsbd{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.wsba{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.ws81{word-spacing:0.146858px;}
.ws76{word-spacing:0.161395px;}
.ws13{word-spacing:0.179327px;}
.ws8b{word-spacing:0.215194px;}
.ws8{word-spacing:0.239102px;}
.wsc0{word-spacing:0.268992px;}
.ws1e{word-spacing:0.298878px;}
.wsc8{word-spacing:0.322790px;}
.ws31{word-spacing:0.358654px;}
.wsd9{word-spacing:0.360834px;}
.wsda{word-spacing:0.376589px;}
.ws5a{word-spacing:0.418429px;}
.ws63{word-spacing:0.537980px;}
.wsd4{word-spacing:0.537984px;}
.ws24{word-spacing:0.597756px;}
.ws9{word-spacing:0.657532px;}
.ws27{word-spacing:0.717307px;}
.wsd3{word-spacing:0.753178px;}
.ws6e{word-spacing:0.777083px;}
.ws44{word-spacing:0.836858px;}
.ws3f{word-spacing:0.896634px;}
.wse{word-spacing:0.956410px;}
.ws4b{word-spacing:1.016185px;}
.ws61{word-spacing:1.075961px;}
.wsc9{word-spacing:1.075968px;}
.ws23{word-spacing:1.135736px;}
.wsa8{word-spacing:1.195512px;}
.ws6a{word-spacing:1.255288px;}
.wse8{word-spacing:1.291162px;}
.ws1d{word-spacing:1.374839px;}
.ws46{word-spacing:1.434614px;}
.wsd8{word-spacing:1.452557px;}
.ws30{word-spacing:1.494390px;}
.ws93{word-spacing:1.613941px;}
.wsdc{word-spacing:1.667750px;}
.ws6c{word-spacing:1.673717px;}
.wsaf{word-spacing:1.775347px;}
.ws38{word-spacing:1.793268px;}
.wse3{word-spacing:1.829146px;}
.ws68{word-spacing:1.853044px;}
.ws17{word-spacing:1.912819px;}
.ws50{word-spacing:1.972595px;}
.ws56{word-spacing:2.032370px;}
.wsb4{word-spacing:2.098138px;}
.wsbf{word-spacing:2.151936px;}
.ws89{word-spacing:2.259533px;}
.ws86{word-spacing:2.271473px;}
.ws9f{word-spacing:2.331248px;}
.wsb3{word-spacing:2.420928px;}
.ws57{word-spacing:2.450800px;}
.ws42{word-spacing:2.510575px;}
.ws69{word-spacing:2.630126px;}
.wsf1{word-spacing:2.636122px;}
.wsf0{word-spacing:2.672041px;}
.wsf2{word-spacing:2.689920px;}
.ws48{word-spacing:2.809453px;}
.wse5{word-spacing:2.851315px;}
.ws55{word-spacing:2.869229px;}
.ws3b{word-spacing:2.929004px;}
.ws62{word-spacing:2.988780px;}
.ws41{word-spacing:3.108331px;}
.wsea{word-spacing:3.120307px;}
.ws84{word-spacing:3.168107px;}
.wse2{word-spacing:3.223661px;}
.wsca{word-spacing:3.225408px;}
.wsb7{word-spacing:3.225562px;}
.wsf3{word-spacing:3.226339px;}
.wsae{word-spacing:3.227904px;}
.ws14{word-spacing:3.287658px;}
.ws5c{word-spacing:3.347434px;}
.ws40{word-spacing:3.407209px;}
.ws83{word-spacing:3.466985px;}
.wsc5{word-spacing:3.496896px;}
.ws52{word-spacing:3.526760px;}
.wsf{word-spacing:3.583475px;}
.ws10{word-spacing:3.586536px;}
.ws5e{word-spacing:3.646312px;}
.ws26{word-spacing:3.706087px;}
.ws25{word-spacing:3.765863px;}
.ws98{word-spacing:3.885414px;}
.ws9c{word-spacing:4.004965px;}
.ws12{word-spacing:4.064741px;}
.ws36{word-spacing:4.124516px;}
.wsa4{word-spacing:4.184292px;}
.wsb0{word-spacing:4.196275px;}
.ws1a{word-spacing:4.303843px;}
.ws85{word-spacing:4.363619px;}
.ws19{word-spacing:4.423394px;}
.wsa0{word-spacing:4.483170px;}
.ws94{word-spacing:4.542946px;}
.ws45{word-spacing:4.662497px;}
.ws72{word-spacing:4.722272px;}
.ws73{word-spacing:4.782048px;}
.wsce{word-spacing:4.827428px;}
.ws5b{word-spacing:4.841824px;}
.wscd{word-spacing:4.841856px;}
.wsb6{word-spacing:4.895654px;}
.ws2b{word-spacing:4.901599px;}
.ws3d{word-spacing:4.961375px;}
.wsd7{word-spacing:5.003251px;}
.ws8f{word-spacing:5.080926px;}
.ws4d{word-spacing:5.140702px;}
.wsa{word-spacing:5.200477px;}
.wsa5{word-spacing:5.379804px;}
.wse1{word-spacing:5.379840px;}
.ws3c{word-spacing:5.439580px;}
.ws9b{word-spacing:5.618906px;}
.wsb2{word-spacing:5.648832px;}
.ws2c{word-spacing:5.738458px;}
.wsf6{word-spacing:5.810227px;}
.wsf7{word-spacing:5.841861px;}
.ws4c{word-spacing:5.917784px;}
.wse9{word-spacing:5.917824px;}
.wsed{word-spacing:5.971622px;}
.ws70{word-spacing:6.037336px;}
.wsd1{word-spacing:6.038840px;}
.wsd0{word-spacing:6.079219px;}
.wsa1{word-spacing:6.097111px;}
.ws97{word-spacing:6.395989px;}
.ws6d{word-spacing:6.455765px;}
.ws9a{word-spacing:6.515540px;}
.ws67{word-spacing:6.575316px;}
.wsbc{word-spacing:6.724800px;}
.wsbb{word-spacing:6.756729px;}
.wscc{word-spacing:6.832397px;}
.wsd5{word-spacing:6.886195px;}
.wsd6{word-spacing:6.939994px;}
.ws2d{word-spacing:7.113296px;}
.wsb1{word-spacing:7.155187px;}
.ws90{word-spacing:7.173072px;}
.ws53{word-spacing:7.232848px;}
.ws8e{word-spacing:7.292623px;}
.ws4a{word-spacing:7.412174px;}
.ws58{word-spacing:7.531726px;}
.ws3e{word-spacing:7.770828px;}
.wsa7{word-spacing:7.950155px;}
.ws59{word-spacing:8.009930px;}
.ws49{word-spacing:8.249033px;}
.wse6{word-spacing:8.338752px;}
.ws43{word-spacing:8.368584px;}
.wscb{word-spacing:8.822938px;}
.wsc6{word-spacing:9.307123px;}
.ws92{word-spacing:9.683647px;}
.ws33{word-spacing:9.803198px;}
.ws9d{word-spacing:9.862974px;}
.wsc2{word-spacing:10.114099px;}
.ws71{word-spacing:10.400954px;}
.ws2e{word-spacing:10.460730px;}
.ws11{word-spacing:10.520506px;}
.wsf5{word-spacing:11.028672px;}
.ws4f{word-spacing:11.895344px;}
.ws8d{word-spacing:12.194222px;}
.wsde{word-spacing:12.373632px;}
.wscf{word-spacing:13.126810px;}
.ws9e{word-spacing:14.764573px;}
.wsf8{word-spacing:15.063552px;}
.wse7{word-spacing:15.278746px;}
.wsd2{word-spacing:15.547738px;}
.ws7f{word-spacing:16.408512px;}
.ws7e{word-spacing:17.000294px;}
.ws34{word-spacing:17.633802px;}
.ws35{word-spacing:17.693578px;}
.ws4e{word-spacing:19.546621px;}
.ws88{word-spacing:21.949747px;}
.ws87{word-spacing:22.649126px;}
.ws99{word-spacing:30.186678px;}
.ws77{word-spacing:95.711846px;}
.ws78{word-spacing:112.146000px;}
.ws75{word-spacing:148.057200px;}
.ws79{word-spacing:156.391949px;}
.ws7c{word-spacing:198.393715px;}
.ws74{word-spacing:211.642906px;}
.ws7b{word-spacing:276.105715px;}
._f{margin-left:-22.311810px;}
._52{margin-left:-20.913221px;}
._1{margin-left:-11.943245px;}
._6{margin-left:-7.370381px;}
._4{margin-left:-5.971622px;}
._7{margin-left:-4.949453px;}
._3{margin-left:-2.998354px;}
._5{margin-left:-1.344960px;}
._a{width:1.091170px;}
._2{width:2.998354px;}
._19{width:4.483170px;}
._51{width:12.319834px;}
._e{width:13.658734px;}
._8{width:15.709133px;}
._9{width:17.645875px;}
._10{width:19.002703px;}
._d{width:20.084602px;}
._15{width:21.459458px;}
._55{width:22.541530px;}
._14{width:23.581483px;}
._1c{width:25.075873px;}
._18{width:26.827322px;}
._b{width:28.363531px;}
._1f{width:29.588976px;}
._c{width:30.844210px;}
._11{width:31.979946px;}
._0{width:33.355008px;}
._1a{width:34.520418px;}
._16{width:36.672340px;}
._17{width:39.362242px;}
._1e{width:40.378427px;}
._1b{width:42.440676px;}
._1d{width:43.456861px;}
._54{width:45.232817px;}
._53{width:47.862936px;}
._50{width:49.512179px;}
._20{width:50.765042px;}
._56{width:55.309162px;}
._57{width:62.836531px;}
._4d{width:66.225830px;}
._38{width:75.694349px;}
._42{width:80.858995px;}
._4e{width:82.957133px;}
._45{width:86.131238px;}
._31{width:93.789206px;}
._34{width:102.539750px;}
._40{width:104.099904px;}
._41{width:109.157395px;}
._22{width:113.998810px;}
._3e{width:116.204544px;}
._30{width:119.755238px;}
._37{width:122.714150px;}
._3f{width:127.932595px;}
._39{width:130.192128px;}
._3d{width:131.272147px;}
._44{width:133.870848px;}
._3c{width:135.464371px;}
._28{width:137.401114px;}
._29{width:143.157542px;}
._33{width:144.329174px;}
._2e{width:148.073626px;}
._32{width:150.097536px;}
._35{width:151.711488px;}
._36{width:152.928422px;}
._2a{width:155.154586px;}
._4c{width:156.409967px;}
._2b{width:161.519174px;}
._3b{width:166.075661px;}
._47{width:167.635814px;}
._43{width:169.175539px;}
._3a{width:170.809920px;}
._49{width:175.759373px;}
._2d{width:183.291149px;}
._2c{width:185.335488px;}
._2f{width:186.804115px;}
._4b{width:195.933773px;}
._27{width:198.193306px;}
._26{width:211.750502px;}
._4a{width:234.560510px;}
._23{width:238.649702px;}
._25{width:244.513728px;}
._24{width:263.988749px;}
._48{width:311.584084px;}
._46{width:341.189453px;}
._12{width:923.294669px;}
._4f{width:2071.608853px;}
._13{width:2095.518853px;}
._21{width:3575.208853px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fsd{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsf{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.yfd{bottom:-836.191050px;}
.yfc{bottom:-816.571050px;}
.y109{bottom:-486.361050px;}
.y108{bottom:-460.891050px;}
.y110{bottom:-455.149050px;}
.y10f{bottom:-435.529050px;}
.y107{bottom:-435.331050px;}
.y106{bottom:-409.861050px;}
.y105{bottom:-383.311050px;}
.y104{bottom:-139.861050px;}
.y103{bottom:-114.391050px;}
.y11c{bottom:-105.319050px;}
.y102{bottom:-88.831050px;}
.y11b{bottom:-79.849050px;}
.y101{bottom:-63.361050px;}
.y11a{bottom:-54.289050px;}
.y100{bottom:-37.891050px;}
.y119{bottom:-28.819050px;}
.yff{bottom:-5.401050px;}
.y118{bottom:-2.269050px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.425340px;}
.y25{bottom:9.233944px;}
.y34{bottom:14.151273px;}
.y24{bottom:26.903761px;}
.y6{bottom:35.925007px;}
.y57{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y56{bottom:108.612000px;}
.y172{bottom:110.704500px;}
.y13e{bottom:113.398500px;}
.y9a{bottom:119.863500px;}
.yd0{bottom:122.314500px;}
.ya3{bottom:123.121500px;}
.y8a{bottom:125.572500px;}
.y1a8{bottom:128.325000px;}
.y55{bottom:128.875500px;}
.y171{bottom:130.072500px;}
.y13d{bottom:133.662000px;}
.y22{bottom:139.264499px;}
.y99{bottom:140.128500px;}
.ycf{bottom:142.579500px;}
.ya2{bottom:143.386500px;}
.y89{bottom:145.837500px;}
.y1a7{bottom:147.691500px;}
.y54{bottom:149.139000px;}
.y170{bottom:149.440500px;}
.y13c{bottom:153.927000px;}
.y98{bottom:160.392000px;}
.yce{bottom:162.843000px;}
.ya1{bottom:163.650000px;}
.y88{bottom:166.101000px;}
.y1a6{bottom:167.059500px;}
.y16f{bottom:168.807000px;}
.y53{bottom:169.404000px;}
.y13b{bottom:174.190500px;}
.y97{bottom:180.657000px;}
.ycd{bottom:183.108000px;}
.ya0{bottom:183.913500px;}
.y87{bottom:186.364500px;}
.y1a5{bottom:186.427500px;}
.y16e{bottom:188.175000px;}
.y52{bottom:189.667500px;}
.y13a{bottom:194.455500px;}
.y19{bottom:196.933500px;}
.y96{bottom:200.920500px;}
.ycc{bottom:203.371500px;}
.y9f{bottom:204.178500px;}
.y1a4{bottom:205.794000px;}
.y86{bottom:206.629500px;}
.y16d{bottom:207.541500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y51{bottom:209.932500px;}
.y139{bottom:214.719000px;}
.y95{bottom:221.184000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ycb{bottom:223.635000px;}
.y9e{bottom:224.442000px;}
.y1a3{bottom:225.162000px;}
.y85{bottom:226.893000px;}
.y16c{bottom:226.909500px;}
.y50{bottom:230.196000px;}
.yfe{bottom:233.458950px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y138{bottom:234.982500px;}
.y117{bottom:241.180950px;}
.ydc{bottom:241.449000px;}
.yca{bottom:243.900000px;}
.y1a2{bottom:244.528500px;}
.y9d{bottom:244.707000px;}
.y16b{bottom:246.277500px;}
.y84{bottom:247.158000px;}
.y94{bottom:250.414500px;}
.y4f{bottom:250.459500px;}
.y137{bottom:255.247500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ydb{bottom:261.712500px;}
.y1a1{bottom:263.896500px;}
.yc9{bottom:264.163500px;}
.y9c{bottom:264.970500px;}
.y83{bottom:265.318500px;}
.y16a{bottom:265.644000px;}
.y116{bottom:266.650950px;}
.y82{bottom:267.421500px;}
.y4e{bottom:270.724500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y136{bottom:275.511000px;}
.yda{bottom:281.977500px;}
.y1a0{bottom:283.264500px;}
.yc8{bottom:284.428500px;}
.y169{bottom:285.012000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y93{bottom:285.234000px;}
.y81{bottom:287.685000px;}
.y4d{bottom:290.988000px;}
.y115{bottom:292.210950px;}
.y135{bottom:295.776000px;}
.yd9{bottom:302.241000px;}
.y19f{bottom:302.631000px;}
.y168{bottom:304.378500px;}
.yc7{bottom:304.692000px;}
.y92{bottom:305.499000px;}
.y80{bottom:307.950000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y4c{bottom:311.253000px;}
.y134{bottom:316.039500px;}
.y114{bottom:317.680950px;}
.y19e{bottom:321.999000px;}
.yd8{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y167{bottom:323.746500px;}
.yc6{bottom:324.955500px;}
.y91{bottom:325.762500px;}
.y4b{bottom:331.516500px;}
.y133{bottom:336.303000px;}
.y7f{bottom:337.180500px;}
.y19d{bottom:341.367000px;}
.yd7{bottom:342.769500px;}
.y166{bottom:343.114500px;}
.y113{bottom:343.150950px;}
.y90{bottom:346.027500px;}
.y10{bottom:348.133500px;}
.y4a{bottom:349.678500px;}
.y49{bottom:351.780000px;}
.yc5{bottom:354.186000px;}
.y132{bottom:356.568000px;}
.y19c{bottom:360.733500px;}
.y165{bottom:362.481000px;}
.yd6{bottom:363.033000px;}
.y8f{bottom:366.291000px;}
.y1ab{bottom:366.517500px;}
.y7e{bottom:372.000000px;}
.y48{bottom:372.045000px;}
.y112{bottom:375.640950px;}
.y131{bottom:376.831500px;}
.y19b{bottom:380.101500px;}
.y164{bottom:381.849000px;}
.yd5{bottom:383.298000px;}
.y1aa{bottom:385.885500px;}
.y8e{bottom:386.554500px;}
.yf{bottom:386.785499px;}
.yc4{bottom:389.005500px;}
.y47{bottom:392.308500px;}
.y130{bottom:397.095000px;}
.y19a{bottom:399.468000px;}
.y163{bottom:401.215500px;}
.yd4{bottom:403.561500px;}
.y8d{bottom:404.716500px;}
.y1a9{bottom:405.253500px;}
.y7d{bottom:406.819500px;}
.ye{bottom:408.044999px;}
.yc3{bottom:409.270500px;}
.y46{bottom:412.573500px;}
.y12f{bottom:417.360000px;}
.y199{bottom:418.836000px;}
.y162{bottom:420.583500px;}
.yd3{bottom:423.825000px;}
.y10d{bottom:424.711500px;}
.y7c{bottom:427.083000px;}
.yc2{bottom:429.534000px;}
.y45{bottom:430.734000px;}
.y44{bottom:432.837000px;}
.y12e{bottom:437.623500px;}
.y198{bottom:438.204000px;}
.y161{bottom:439.951500px;}
.y10c{bottom:443.943000px;}
.yd2{bottom:444.090000px;}
.y7b{bottom:447.348000px;}
.yc1{bottom:449.799000px;}
.y43{bottom:453.100500px;}
.y197{bottom:457.570500px;}
.y12d{bottom:457.888500px;}
.y160{bottom:459.318000px;}
.y10b{bottom:463.176000px;}
.y7a{bottom:467.611500px;}
.yc0{bottom:470.062500px;}
.yd1{bottom:473.320500px;}
.y42{bottom:473.365500px;}
.yed{bottom:474.670500px;}
.y196{bottom:476.938500px;}
.y12c{bottom:478.152000px;}
.y15f{bottom:478.686000px;}
.y10a{bottom:482.409000px;}
.y79{bottom:487.875000px;}
.yec{bottom:488.866500px;}
.ybf{bottom:490.326000px;}
.y195{bottom:496.305000px;}
.y15e{bottom:498.052500px;}
.y12b{bottom:498.415500px;}
.y41{bottom:502.596000px;}
.yd{bottom:502.864502px;}
.yfb{bottom:504.838500px;}
.y78{bottom:508.140000px;}
.ybe{bottom:510.591000px;}
.yeb{bottom:510.643500px;}
.y194{bottom:515.673000px;}
.y15d{bottom:517.420500px;}
.yc{bottom:520.864502px;}
.yea{bottom:527.155500px;}
.y12a{bottom:527.646000px;}
.y77{bottom:528.403500px;}
.ybd{bottom:530.854500px;}
.y193{bottom:535.041000px;}
.y15c{bottom:536.788500px;}
.yb{bottom:538.864499px;}
.ye9{bottom:543.669000px;}
.y76{bottom:548.667000px;}
.ybc{bottom:551.119500px;}
.y192{bottom:554.407500px;}
.y15b{bottom:556.155000px;}
.ya{bottom:556.864499px;}
.ye8{bottom:560.182500px;}
.y129{bottom:562.465500px;}
.y9b{bottom:566.829000px;}
.y75{bottom:568.932000px;}
.ybb{bottom:571.383000px;}
.y191{bottom:573.775500px;}
.y15a{bottom:575.523000px;}
.ye7{bottom:576.696000px;}
.y40{bottom:579.004500px;}
.y128{bottom:582.730500px;}
.y74{bottom:589.195500px;}
.yba{bottom:591.646500px;}
.y190{bottom:593.142000px;}
.ye6{bottom:593.208000px;}
.y159{bottom:594.889500px;}
.y127{bottom:602.994000px;}
.y73{bottom:609.460500px;}
.ye5{bottom:609.721500px;}
.yb9{bottom:611.911500px;}
.y18f{bottom:612.510000px;}
.y158{bottom:614.257500px;}
.y111{bottom:614.500950px;}
.y3f{bottom:617.200500px;}
.y126{bottom:623.259000px;}
.ye4{bottom:626.235000px;}
.y72{bottom:629.724000px;}
.y18e{bottom:631.878000px;}
.yb8{bottom:632.175000px;}
.y157{bottom:633.625500px;}
.y3e{bottom:637.465500px;}
.ye3{bottom:642.748500px;}
.y125{bottom:643.522500px;}
.y9{bottom:645.510000px;}
.y71{bottom:649.987500px;}
.y18d{bottom:651.244500px;}
.yb7{bottom:652.438500px;}
.y3d{bottom:657.729000px;}
.ye2{bottom:659.260500px;}
.y156{bottom:661.959000px;}
.y124{bottom:663.786000px;}
.y8{bottom:666.771000px;}
.y70{bottom:670.252500px;}
.y18c{bottom:670.612500px;}
.yb6{bottom:672.703500px;}
.ye1{bottom:675.774000px;}
.y3c{bottom:677.992500px;}
.y123{bottom:684.051000px;}
.y18b{bottom:689.979000px;}
.y6f{bottom:690.516000px;}
.ye0{bottom:692.287500px;}
.yb5{bottom:692.967000px;}
.y3b{bottom:698.257500px;}
.y155{bottom:701.410500px;}
.y122{bottom:704.314500px;}
.y140{bottom:708.678000px;}
.y18a{bottom:709.347000px;}
.y6e{bottom:710.781000px;}
.yb4{bottom:713.232000px;}
.ydf{bottom:716.002500px;}
.y3a{bottom:718.521000px;}
.y154{bottom:725.575500px;}
.y7{bottom:726.298500px;}
.y189{bottom:728.715000px;}
.y6d{bottom:731.044500px;}
.yb3{bottom:733.495500px;}
.y39{bottom:738.786000px;}
.y121{bottom:739.315500px;}
.y153{bottom:740.773500px;}
.yfa{bottom:745.870500px;}
.yde{bottom:747.622500px;}
.y188{bottom:748.081500px;}
.y6c{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.yb2{bottom:753.759000px;}
.y152{bottom:755.971500px;}
.y120{bottom:758.548500px;}
.y38{bottom:759.049500px;}
.yf9{bottom:760.066500px;}
.y187{bottom:767.449500px;}
.y6b{bottom:771.573000px;}
.yb1{bottom:774.024000px;}
.y11e{bottom:777.781500px;}
.y37{bottom:779.313000px;}
.y151{bottom:780.136500px;}
.yf8{bottom:781.842000px;}
.y11f{bottom:782.662500px;}
.y186{bottom:786.816000px;}
.y6a{bottom:791.836500px;}
.yb0{bottom:794.287500px;}
.y150{bottom:795.334500px;}
.y11d{bottom:797.014500px;}
.yf7{bottom:798.355500px;}
.ydd{bottom:798.445500px;}
.y36{bottom:799.578000px;}
.y185{bottom:806.184000px;}
.y14f{bottom:810.532500px;}
.y69{bottom:812.101500px;}
.yaf{bottom:814.552500px;}
.yf6{bottom:814.869000px;}
.y10e{bottom:819.442500px;}
.y184{bottom:825.552000px;}
.yf5{bottom:831.382500px;}
.y33{bottom:831.632964px;}
.y32{bottom:832.026000px;}
.y68{bottom:832.365000px;}
.yae{bottom:834.816000px;}
.y14e{bottom:843.663000px;}
.y183{bottom:844.918500px;}
.yf4{bottom:847.894500px;}
.y67{bottom:852.628500px;}
.yad{bottom:855.079500px;}
.y14d{bottom:863.926500px;}
.y182{bottom:864.286500px;}
.yf3{bottom:864.408000px;}
.y31{bottom:871.398000px;}
.y66{bottom:872.893500px;}
.yac{bottom:875.344500px;}
.y2{bottom:879.369000px;}
.yf2{bottom:880.921500px;}
.y181{bottom:883.653000px;}
.y14c{bottom:884.191500px;}
.y141{bottom:891.055500px;}
.y65{bottom:893.157000px;}
.y30{bottom:894.436500px;}
.yab{bottom:895.608000px;}
.y180{bottom:903.021000px;}
.y14b{bottom:904.455000px;}
.yf1{bottom:904.636500px;}
.y2f{bottom:907.711500px;}
.y64{bottom:913.422000px;}
.yef{bottom:914.979000px;}
.yaa{bottom:915.873000px;}
.y17f{bottom:922.389000px;}
.y14a{bottom:924.718500px;}
.y2e{bottom:925.869000px;}
.yf0{bottom:928.353000px;}
.y63{bottom:933.685500px;}
.ya9{bottom:936.136500px;}
.y17e{bottom:941.755500px;}
.y2d{bottom:942.133500px;}
.y149{bottom:944.983500px;}
.y2c{bottom:948.907500px;}
.y62{bottom:953.949000px;}
.ya8{bottom:956.400000px;}
.y17d{bottom:959.230500px;}
.yee{bottom:959.971500px;}
.y17c{bottom:961.123500px;}
.y148{bottom:965.247000px;}
.y2b{bottom:965.659500px;}
.y1{bottom:966.726000px;}
.y2a{bottom:967.771500px;}
.y61{bottom:972.111000px;}
.y60{bottom:974.214000px;}
.ya7{bottom:976.665000px;}
.y17b{bottom:980.490000px;}
.y147{bottom:985.512000px;}
.y5f{bottom:994.477500px;}
.ya6{bottom:996.928500px;}
.y17a{bottom:999.858000px;}
.y146{bottom:1005.775500px;}
.y29{bottom:1010.451000px;}
.y13f{bottom:1012.639500px;}
.y5e{bottom:1014.742500px;}
.y179{bottom:1017.333000px;}
.y178{bottom:1019.226000px;}
.y145{bottom:1026.039000px;}
.ya5{bottom:1026.159000px;}
.y5d{bottom:1035.006000px;}
.y177{bottom:1038.592500px;}
.y28{bottom:1040.848500px;}
.y144{bottom:1046.304000px;}
.y8c{bottom:1053.168000px;}
.y5c{bottom:1055.269500px;}
.y176{bottom:1057.960500px;}
.ya4{bottom:1060.978500px;}
.y143{bottom:1066.567500px;}
.y27{bottom:1071.244500px;}
.y175{bottom:1075.435500px;}
.y5b{bottom:1075.534500px;}
.y174{bottom:1077.327000px;}
.y142{bottom:1086.832500px;}
.y5a{bottom:1095.798000px;}
.y173{bottom:1096.695000px;}
.y26{bottom:1100.145000px;}
.y8b{bottom:1113.960000px;}
.y59{bottom:1116.063000px;}
.y23{bottom:1137.954000px;}
.y58{bottom:1168.366500px;}
.h13{height:25.508090px;}
.h1c{height:27.974981px;}
.h21{height:28.645638px;}
.h10{height:30.461558px;}
.h1b{height:31.828453px;}
.h7{height:32.130000px;}
.h18{height:33.072749px;}
.h15{height:33.112997px;}
.h14{height:34.199443px;}
.h20{height:34.813397px;}
.h19{height:35.100320px;}
.h24{height:37.494141px;}
.h1f{height:38.896243px;}
.h12{height:39.165235px;}
.h26{height:39.488026px;}
.h23{height:41.655410px;}
.h16{height:43.217759px;}
.h17{height:43.516637px;}
.hb{height:43.875290px;}
.h6{height:45.900000px;}
.h11{height:46.737235px;}
.h3{height:48.195000px;}
.h25{height:49.992188px;}
.h9{height:50.930649px;}
.h1a{height:51.922637px;}
.h28{height:51.928637px;}
.hd{height:54.547601px;}
.h2{height:55.080000px;}
.ha{height:61.613006px;}
.hf{height:62.989601px;}
.he{height:62.995601px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h22{height:219.271500px;}
.h27{height:232.450500px;}
.h1d{height:892.914000px;}
.h1e{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.527766px;}
.w9{width:620.053200px;}
.w8{width:625.743450px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x50{left:-7.266300px;}
.x0{left:0.000000px;}
.x41{left:1.603950px;}
.xe{left:29.274117px;}
.x6{left:58.054042px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x22{left:112.561500px;}
.x5{left:114.802500px;}
.xc{left:122.110500px;}
.x9{left:123.307500px;}
.x48{left:127.281000px;}
.x3f{left:133.585050px;}
.x39{left:135.726000px;}
.x34{left:137.427000px;}
.x65{left:139.296000px;}
.x66{left:143.455500px;}
.x12{left:145.008000px;}
.xb{left:146.170500px;}
.x13{left:151.345500px;}
.x45{left:153.898500px;}
.x38{left:155.154000px;}
.x2f{left:159.409500px;}
.x49{left:163.948500px;}
.x37{left:174.580500px;}
.xf{left:188.403000px;}
.x10{left:197.161500px;}
.x11{left:198.909000px;}
.x4{left:203.484001px;}
.x55{left:204.606000px;}
.x1a{left:215.704500px;}
.x1b{left:217.452000px;}
.x42{left:220.915500px;}
.x1c{left:222.040500px;}
.x4a{left:223.605000px;}
.x52{left:226.578000px;}
.x59{left:235.885500px;}
.x56{left:237.489000px;}
.x33{left:240.990000px;}
.x17{left:246.024000px;}
.x18{left:247.773000px;}
.x19{left:252.361500px;}
.x68{left:254.101500px;}
.x64{left:255.343500px;}
.x57{left:257.190000px;}
.x67{left:265.518000px;}
.x2e{left:270.796500px;}
.x30{left:282.027000px;}
.x62{left:284.626500px;}
.x63{left:289.215000px;}
.x4b{left:296.791500px;}
.x4c{left:309.082500px;}
.x7{left:317.815500px;}
.x4f{left:320.603700px;}
.x40{left:329.473950px;}
.x23{left:331.044000px;}
.x31{left:332.361000px;}
.x36{left:336.409500px;}
.xa{left:340.786500px;}
.x24{left:343.260000px;}
.x4d{left:344.967000px;}
.x2d{left:356.013000px;}
.x4e{left:357.258000px;}
.x35{left:361.911000px;}
.x5d{left:394.642500px;}
.x5e{left:406.933500px;}
.x29{left:423.600000px;}
.x2a{left:437.184000px;}
.x3a{left:451.732500px;}
.x58{left:453.661500px;}
.x3{left:454.959000px;}
.x3b{left:456.325500px;}
.x25{left:462.082500px;}
.x3c{left:467.388000px;}
.x26{left:474.300000px;}
.x3d{left:497.479500px;}
.x2b{left:508.969500px;}
.x5a{left:510.205500px;}
.x5b{left:511.953000px;}
.x5c{left:516.541500px;}
.x2c{left:522.553500px;}
.x32{left:546.133500px;}
.x3e{left:569.463000px;}
.x1f{left:571.360500px;}
.x20{left:573.109500px;}
.x21{left:577.696500px;}
.x8{left:582.427500px;}
.x5f{left:589.713000px;}
.x44{left:591.616500px;}
.x60{left:626.295000px;}
.x61{left:638.586000px;}
.x51{left:656.483700px;}
.x1d{left:661.794000px;}
.x14{left:663.289500px;}
.x15{left:665.037000px;}
.x1e{left:668.130000px;}
.x16{left:669.625500px;}
.x27{left:676.633500px;}
.x53{left:687.162000px;}
.x28{left:688.924500px;}
.x43{left:690.808500px;}
.x54{left:697.278000px;}
.xd{left:701.339982px;}
.x46{left:711.784500px;}
.x47{left:771.441000px;}
@media print{
.v4{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.509333pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:26.800000pt;}
.ls20{letter-spacing:-0.160320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.570745pt;}
.ls16{letter-spacing:0.576078pt;}
.ls19{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.602667pt;}
.lsb{letter-spacing:1.133683pt;}
.ls8{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls6{letter-spacing:5.490933pt;}
.lse{letter-spacing:6.219200pt;}
.ls2{letter-spacing:6.747200pt;}
.lsa{letter-spacing:10.626533pt;}
.ls18{letter-spacing:10.629067pt;}
.lsd{letter-spacing:11.583183pt;}
.ls1e{letter-spacing:11.950933pt;}
.ls22{letter-spacing:11.956267pt;}
.ls1d{letter-spacing:11.957709pt;}
.ls1f{letter-spacing:12.089600pt;}
.ls23{letter-spacing:12.114522pt;}
.ls9{letter-spacing:13.070931pt;}
.ls11{letter-spacing:13.124065pt;}
.ls13{letter-spacing:13.283467pt;}
.ls10{letter-spacing:13.336601pt;}
.ls21{letter-spacing:13.966724pt;}
.ls15{letter-spacing:14.558679pt;}
.ls3{letter-spacing:15.942400pt;}
.lsc{letter-spacing:15.993294pt;}
.ls12{letter-spacing:16.737168pt;}
.ls14{letter-spacing:23.325767pt;}
.lsf{letter-spacing:36.928037pt;}
.ls5{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.314231pt;}
.ws7d{word-spacing:-64.000000pt;}
.ws1{word-spacing:-20.194365pt;}
.ws16{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.760670pt;}
.ws7a{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws3a{word-spacing:-2.869229pt;}
.ws39{word-spacing:-2.816095pt;}
.ws5d{word-spacing:-2.709827pt;}
.ws32{word-spacing:-2.603559pt;}
.ws54{word-spacing:-2.550426pt;}
.wsec{word-spacing:-2.391040pt;}
.ws8c{word-spacing:-2.284756pt;}
.ws96{word-spacing:-2.072221pt;}
.wsa6{word-spacing:-2.019087pt;}
.wsc{word-spacing:-1.965953pt;}
.ws95{word-spacing:-1.859685pt;}
.ws65{word-spacing:-1.753418pt;}
.ws60{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws28{word-spacing:-1.594016pt;}
.ws37{word-spacing:-1.434614pt;}
.ws6b{word-spacing:-1.381481pt;}
.wsa9{word-spacing:-1.338982pt;}
.wsa2{word-spacing:-1.328347pt;}
.wseb{word-spacing:-1.291162pt;}
.ws66{word-spacing:-1.275213pt;}
.ws6{word-spacing:-1.175671pt;}
.ws82{word-spacing:-1.168945pt;}
.wsaa{word-spacing:-1.147699pt;}
.wsa3{word-spacing:-1.062677pt;}
.ws29{word-spacing:-1.009543pt;}
.wsac{word-spacing:-0.860774pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws91{word-spacing:-0.797008pt;}
.ws22{word-spacing:-0.690740pt;}
.wsb5{word-spacing:-0.669491pt;}
.ws51{word-spacing:-0.637606pt;}
.ws5f{word-spacing:-0.531339pt;}
.ws64{word-spacing:-0.478205pt;}
.wsdd{word-spacing:-0.430387pt;}
.ws6f{word-spacing:-0.425071pt;}
.ws47{word-spacing:-0.371937pt;}
.ws21{word-spacing:-0.318803pt;}
.wse4{word-spacing:-0.286925pt;}
.ws2a{word-spacing:-0.265669pt;}
.wsc3{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.212535pt;}
.wsab{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.wsc4{word-spacing:-0.143462pt;}
.ws18{word-spacing:-0.106268pt;}
.wsad{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws80{word-spacing:-0.047821pt;}
.wsef{word-spacing:-0.010530pt;}
.wsee{word-spacing:-0.009105pt;}
.wsb9{word-spacing:-0.009045pt;}
.wse0{word-spacing:-0.009003pt;}
.wsdb{word-spacing:-0.008789pt;}
.wsf4{word-spacing:-0.008482pt;}
.wsc1{word-spacing:-0.006033pt;}
.wsbe{word-spacing:-0.005367pt;}
.wsb8{word-spacing:-0.003669pt;}
.wsdf{word-spacing:-0.003456pt;}
.wsc7{word-spacing:-0.002935pt;}
.ws8a{word-spacing:-0.002449pt;}
.ws4{word-spacing:-0.000526pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.001089pt;}
.ws1b{word-spacing:0.003199pt;}
.wsbd{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.wsba{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.ws81{word-spacing:0.130540pt;}
.ws76{word-spacing:0.143462pt;}
.ws13{word-spacing:0.159402pt;}
.ws8b{word-spacing:0.191283pt;}
.ws8{word-spacing:0.212535pt;}
.wsc0{word-spacing:0.239104pt;}
.ws1e{word-spacing:0.265669pt;}
.wsc8{word-spacing:0.286925pt;}
.ws31{word-spacing:0.318803pt;}
.wsd9{word-spacing:0.320742pt;}
.wsda{word-spacing:0.334746pt;}
.ws5a{word-spacing:0.371937pt;}
.ws63{word-spacing:0.478205pt;}
.wsd4{word-spacing:0.478208pt;}
.ws24{word-spacing:0.531339pt;}
.ws9{word-spacing:0.584473pt;}
.ws27{word-spacing:0.637606pt;}
.wsd3{word-spacing:0.669491pt;}
.ws6e{word-spacing:0.690740pt;}
.ws44{word-spacing:0.743874pt;}
.ws3f{word-spacing:0.797008pt;}
.wse{word-spacing:0.850142pt;}
.ws4b{word-spacing:0.903276pt;}
.ws61{word-spacing:0.956410pt;}
.wsc9{word-spacing:0.956416pt;}
.ws23{word-spacing:1.009543pt;}
.wsa8{word-spacing:1.062677pt;}
.ws6a{word-spacing:1.115811pt;}
.wse8{word-spacing:1.147699pt;}
.ws1d{word-spacing:1.222079pt;}
.ws46{word-spacing:1.275213pt;}
.wsd8{word-spacing:1.291162pt;}
.ws30{word-spacing:1.328347pt;}
.ws93{word-spacing:1.434614pt;}
.wsdc{word-spacing:1.482445pt;}
.ws6c{word-spacing:1.487748pt;}
.wsaf{word-spacing:1.578086pt;}
.ws38{word-spacing:1.594016pt;}
.wse3{word-spacing:1.625907pt;}
.ws68{word-spacing:1.647150pt;}
.ws17{word-spacing:1.700284pt;}
.ws50{word-spacing:1.753418pt;}
.ws56{word-spacing:1.806551pt;}
.wsb4{word-spacing:1.865011pt;}
.wsbf{word-spacing:1.912832pt;}
.ws89{word-spacing:2.008474pt;}
.ws86{word-spacing:2.019087pt;}
.ws9f{word-spacing:2.072221pt;}
.wsb3{word-spacing:2.151936pt;}
.ws57{word-spacing:2.178489pt;}
.ws42{word-spacing:2.231622pt;}
.ws69{word-spacing:2.337890pt;}
.wsf1{word-spacing:2.343219pt;}
.wsf0{word-spacing:2.375148pt;}
.wsf2{word-spacing:2.391040pt;}
.ws48{word-spacing:2.497292pt;}
.wse5{word-spacing:2.534502pt;}
.ws55{word-spacing:2.550426pt;}
.ws3b{word-spacing:2.603559pt;}
.ws62{word-spacing:2.656693pt;}
.ws41{word-spacing:2.762961pt;}
.wsea{word-spacing:2.773606pt;}
.ws84{word-spacing:2.816095pt;}
.wse2{word-spacing:2.865476pt;}
.wsca{word-spacing:2.867029pt;}
.wsb7{word-spacing:2.867166pt;}
.wsf3{word-spacing:2.867857pt;}
.wsae{word-spacing:2.869248pt;}
.ws14{word-spacing:2.922363pt;}
.ws5c{word-spacing:2.975497pt;}
.ws40{word-spacing:3.028630pt;}
.ws83{word-spacing:3.081764pt;}
.wsc5{word-spacing:3.108352pt;}
.ws52{word-spacing:3.134898pt;}
.wsf{word-spacing:3.185311pt;}
.ws10{word-spacing:3.188032pt;}
.ws5e{word-spacing:3.241166pt;}
.ws26{word-spacing:3.294300pt;}
.ws25{word-spacing:3.347434pt;}
.ws98{word-spacing:3.453701pt;}
.ws9c{word-spacing:3.559969pt;}
.ws12{word-spacing:3.613103pt;}
.ws36{word-spacing:3.666237pt;}
.wsa4{word-spacing:3.719371pt;}
.wsb0{word-spacing:3.730022pt;}
.ws1a{word-spacing:3.825638pt;}
.ws85{word-spacing:3.878772pt;}
.ws19{word-spacing:3.931906pt;}
.wsa0{word-spacing:3.985040pt;}
.ws94{word-spacing:4.038174pt;}
.ws45{word-spacing:4.144442pt;}
.ws72{word-spacing:4.197575pt;}
.ws73{word-spacing:4.250709pt;}
.wsce{word-spacing:4.291047pt;}
.ws5b{word-spacing:4.303843pt;}
.wscd{word-spacing:4.303872pt;}
.wsb6{word-spacing:4.351693pt;}
.ws2b{word-spacing:4.356977pt;}
.ws3d{word-spacing:4.410111pt;}
.wsd7{word-spacing:4.447334pt;}
.ws8f{word-spacing:4.516379pt;}
.ws4d{word-spacing:4.569513pt;}
.wsa{word-spacing:4.622646pt;}
.wsa5{word-spacing:4.782048pt;}
.wse1{word-spacing:4.782080pt;}
.ws3c{word-spacing:4.835182pt;}
.ws9b{word-spacing:4.994583pt;}
.wsb2{word-spacing:5.021184pt;}
.ws2c{word-spacing:5.100851pt;}
.wsf6{word-spacing:5.164646pt;}
.wsf7{word-spacing:5.192765pt;}
.ws4c{word-spacing:5.260253pt;}
.wse9{word-spacing:5.260288pt;}
.wsed{word-spacing:5.308109pt;}
.ws70{word-spacing:5.366521pt;}
.wsd1{word-spacing:5.367858pt;}
.wsd0{word-spacing:5.403750pt;}
.wsa1{word-spacing:5.419654pt;}
.ws97{word-spacing:5.685324pt;}
.ws6d{word-spacing:5.738458pt;}
.ws9a{word-spacing:5.791591pt;}
.ws67{word-spacing:5.844725pt;}
.wsbc{word-spacing:5.977600pt;}
.wsbb{word-spacing:6.005982pt;}
.wscc{word-spacing:6.073242pt;}
.wsd5{word-spacing:6.121062pt;}
.wsd6{word-spacing:6.168883pt;}
.ws2d{word-spacing:6.322930pt;}
.wsb1{word-spacing:6.360166pt;}
.ws90{word-spacing:6.376064pt;}
.ws53{word-spacing:6.429198pt;}
.ws8e{word-spacing:6.482332pt;}
.ws4a{word-spacing:6.588599pt;}
.ws58{word-spacing:6.694867pt;}
.ws3e{word-spacing:6.907403pt;}
.wsa7{word-spacing:7.066804pt;}
.ws59{word-spacing:7.119938pt;}
.ws49{word-spacing:7.332474pt;}
.wse6{word-spacing:7.412224pt;}
.ws43{word-spacing:7.438741pt;}
.wscb{word-spacing:7.842611pt;}
.wsc6{word-spacing:8.272998pt;}
.ws92{word-spacing:8.607686pt;}
.ws33{word-spacing:8.713954pt;}
.ws9d{word-spacing:8.767088pt;}
.wsc2{word-spacing:8.990310pt;}
.ws71{word-spacing:9.245293pt;}
.ws2e{word-spacing:9.298427pt;}
.ws11{word-spacing:9.351561pt;}
.wsf5{word-spacing:9.803264pt;}
.ws4f{word-spacing:10.573639pt;}
.ws8d{word-spacing:10.839309pt;}
.wsde{word-spacing:10.998784pt;}
.wscf{word-spacing:11.668275pt;}
.ws9e{word-spacing:13.124065pt;}
.wsf8{word-spacing:13.389824pt;}
.wse7{word-spacing:13.581107pt;}
.wsd2{word-spacing:13.820211pt;}
.ws7f{word-spacing:14.585344pt;}
.ws7e{word-spacing:15.111373pt;}
.ws34{word-spacing:15.674491pt;}
.ws35{word-spacing:15.727625pt;}
.ws4e{word-spacing:17.374774pt;}
.ws88{word-spacing:19.510886pt;}
.ws87{word-spacing:20.132557pt;}
.ws99{word-spacing:26.832603pt;}
.ws77{word-spacing:85.077197pt;}
.ws78{word-spacing:99.685333pt;}
.ws75{word-spacing:131.606400pt;}
.ws79{word-spacing:139.015066pt;}
.ws7c{word-spacing:176.349969pt;}
.ws74{word-spacing:188.127027pt;}
.ws7b{word-spacing:245.427302pt;}
._f{margin-left:-19.832720pt;}
._52{margin-left:-18.589530pt;}
._1{margin-left:-10.616218pt;}
._6{margin-left:-6.551450pt;}
._4{margin-left:-5.308109pt;}
._7{margin-left:-4.399514pt;}
._3{margin-left:-2.665203pt;}
._5{margin-left:-1.195520pt;}
._a{width:0.969929pt;}
._2{width:2.665203pt;}
._19{width:3.985040pt;}
._51{width:10.950963pt;}
._e{width:12.141097pt;}
._8{width:13.963674pt;}
._9{width:15.685222pt;}
._10{width:16.891292pt;}
._d{width:17.852979pt;}
._15{width:19.075074pt;}
._55{width:20.036915pt;}
._14{width:20.961318pt;}
._1c{width:22.289665pt;}
._18{width:23.846509pt;}
._b{width:25.212028pt;}
._1f{width:26.301312pt;}
._c{width:27.417075pt;}
._11{width:28.426619pt;}
._0{width:29.648896pt;}
._1a{width:30.684816pt;}
._16{width:32.597635pt;}
._17{width:34.988659pt;}
._1e{width:35.891935pt;}
._1b{width:37.725045pt;}
._1d{width:38.628321pt;}
._54{width:40.206948pt;}
._53{width:42.544832pt;}
._50{width:44.010826pt;}
._20{width:45.124482pt;}
._56{width:49.163699pt;}
._57{width:55.854694pt;}
._4d{width:58.867405pt;}
._38{width:67.283866pt;}
._42{width:71.874662pt;}
._4e{width:73.739674pt;}
._45{width:76.561101pt;}
._31{width:83.368183pt;}
._34{width:91.146445pt;}
._40{width:92.533248pt;}
._41{width:97.028796pt;}
._22{width:101.332275pt;}
._3e{width:103.292928pt;}
._30{width:106.449101pt;}
._37{width:109.079245pt;}
._3f{width:113.717862pt;}
._39{width:115.726336pt;}
._3d{width:116.686353pt;}
._44{width:118.996309pt;}
._3c{width:120.412774pt;}
._28{width:122.134323pt;}
._29{width:127.251149pt;}
._33{width:128.292599pt;}
._2e{width:131.621001pt;}
._32{width:133.420032pt;}
._35{width:134.854656pt;}
._36{width:135.936375pt;}
._2a{width:137.915187pt;}
._4c{width:139.031082pt;}
._2b{width:143.572599pt;}
._3b{width:147.622810pt;}
._47{width:149.009613pt;}
._43{width:150.378257pt;}
._3a{width:151.831040pt;}
._49{width:156.230554pt;}
._2d{width:162.925466pt;}
._2c{width:164.742656pt;}
._2f{width:166.048102pt;}
._4b{width:174.163354pt;}
._27{width:176.171827pt;}
._26{width:188.222669pt;}
._4a{width:208.498231pt;}
._23{width:212.133069pt;}
._25{width:217.345536pt;}
._24{width:234.656666pt;}
._48{width:276.963631pt;}
._46{width:303.279514pt;}
._12{width:820.706372pt;}
._4f{width:1841.430092pt;}
._13{width:1862.683425pt;}
._21{width:3177.963425pt;}
.fs9{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fsd{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsf{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.yfd{bottom:-743.280933pt;}
.yfc{bottom:-725.840933pt;}
.y109{bottom:-432.320933pt;}
.y108{bottom:-409.680933pt;}
.y110{bottom:-404.576933pt;}
.y10f{bottom:-387.136933pt;}
.y107{bottom:-386.960933pt;}
.y106{bottom:-364.320933pt;}
.y105{bottom:-340.720933pt;}
.y104{bottom:-124.320933pt;}
.y103{bottom:-101.680933pt;}
.y11c{bottom:-93.616933pt;}
.y102{bottom:-78.960933pt;}
.y11b{bottom:-70.976933pt;}
.y101{bottom:-56.320933pt;}
.y11a{bottom:-48.256933pt;}
.y100{bottom:-33.680933pt;}
.y119{bottom:-25.616933pt;}
.yff{bottom:-4.800933pt;}
.y118{bottom:-2.016933pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.044747pt;}
.y25{bottom:8.207950pt;}
.y34{bottom:12.578910pt;}
.y24{bottom:23.914454pt;}
.y6{bottom:31.933340pt;}
.y57{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y56{bottom:96.544000pt;}
.y172{bottom:98.404000pt;}
.y13e{bottom:100.798667pt;}
.y9a{bottom:106.545333pt;}
.yd0{bottom:108.724000pt;}
.ya3{bottom:109.441333pt;}
.y8a{bottom:111.620000pt;}
.y1a8{bottom:114.066667pt;}
.y55{bottom:114.556000pt;}
.y171{bottom:115.620000pt;}
.y13d{bottom:118.810667pt;}
.y22{bottom:123.790666pt;}
.y99{bottom:124.558667pt;}
.ycf{bottom:126.737333pt;}
.ya2{bottom:127.454667pt;}
.y89{bottom:129.633333pt;}
.y1a7{bottom:131.281333pt;}
.y54{bottom:132.568000pt;}
.y170{bottom:132.836000pt;}
.y13c{bottom:136.824000pt;}
.y98{bottom:142.570667pt;}
.yce{bottom:144.749333pt;}
.ya1{bottom:145.466667pt;}
.y88{bottom:147.645333pt;}
.y1a6{bottom:148.497333pt;}
.y16f{bottom:150.050667pt;}
.y53{bottom:150.581333pt;}
.y13b{bottom:154.836000pt;}
.y97{bottom:160.584000pt;}
.ycd{bottom:162.762667pt;}
.ya0{bottom:163.478667pt;}
.y87{bottom:165.657333pt;}
.y1a5{bottom:165.713333pt;}
.y16e{bottom:167.266667pt;}
.y52{bottom:168.593333pt;}
.y13a{bottom:172.849333pt;}
.y19{bottom:175.052000pt;}
.y96{bottom:178.596000pt;}
.ycc{bottom:180.774667pt;}
.y9f{bottom:181.492000pt;}
.y1a4{bottom:182.928000pt;}
.y86{bottom:183.670667pt;}
.y16d{bottom:184.481333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y51{bottom:186.606667pt;}
.y139{bottom:190.861333pt;}
.y95{bottom:196.608000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ycb{bottom:198.786667pt;}
.y9e{bottom:199.504000pt;}
.y1a3{bottom:200.144000pt;}
.y85{bottom:201.682667pt;}
.y16c{bottom:201.697333pt;}
.y50{bottom:204.618667pt;}
.yfe{bottom:207.519067pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y138{bottom:208.873333pt;}
.y117{bottom:214.383067pt;}
.ydc{bottom:214.621333pt;}
.yca{bottom:216.800000pt;}
.y1a2{bottom:217.358667pt;}
.y9d{bottom:217.517333pt;}
.y16b{bottom:218.913333pt;}
.y84{bottom:219.696000pt;}
.y94{bottom:222.590667pt;}
.y4f{bottom:222.630667pt;}
.y137{bottom:226.886667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ydb{bottom:232.633333pt;}
.y1a1{bottom:234.574667pt;}
.yc9{bottom:234.812000pt;}
.y9c{bottom:235.529333pt;}
.y83{bottom:235.838667pt;}
.y16a{bottom:236.128000pt;}
.y116{bottom:237.023067pt;}
.y82{bottom:237.708000pt;}
.y4e{bottom:240.644000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y136{bottom:244.898667pt;}
.yda{bottom:250.646667pt;}
.y1a0{bottom:251.790667pt;}
.yc8{bottom:252.825333pt;}
.y169{bottom:253.344000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y93{bottom:253.541333pt;}
.y81{bottom:255.720000pt;}
.y4d{bottom:258.656000pt;}
.y115{bottom:259.743067pt;}
.y135{bottom:262.912000pt;}
.yd9{bottom:268.658667pt;}
.y19f{bottom:269.005333pt;}
.y168{bottom:270.558667pt;}
.yc7{bottom:270.837333pt;}
.y92{bottom:271.554667pt;}
.y80{bottom:273.733333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y4c{bottom:276.669333pt;}
.y134{bottom:280.924000pt;}
.y114{bottom:282.383067pt;}
.y19e{bottom:286.221333pt;}
.yd8{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y167{bottom:287.774667pt;}
.yc6{bottom:288.849333pt;}
.y91{bottom:289.566667pt;}
.y4b{bottom:294.681333pt;}
.y133{bottom:298.936000pt;}
.y7f{bottom:299.716000pt;}
.y19d{bottom:303.437333pt;}
.yd7{bottom:304.684000pt;}
.y166{bottom:304.990667pt;}
.y113{bottom:305.023067pt;}
.y90{bottom:307.580000pt;}
.y10{bottom:309.452000pt;}
.y4a{bottom:310.825333pt;}
.y49{bottom:312.693333pt;}
.yc5{bottom:314.832000pt;}
.y132{bottom:316.949333pt;}
.y19c{bottom:320.652000pt;}
.y165{bottom:322.205333pt;}
.yd6{bottom:322.696000pt;}
.y8f{bottom:325.592000pt;}
.y1ab{bottom:325.793333pt;}
.y7e{bottom:330.666667pt;}
.y48{bottom:330.706667pt;}
.y112{bottom:333.903067pt;}
.y131{bottom:334.961333pt;}
.y19b{bottom:337.868000pt;}
.y164{bottom:339.421333pt;}
.yd5{bottom:340.709333pt;}
.y1aa{bottom:343.009333pt;}
.y8e{bottom:343.604000pt;}
.yf{bottom:343.809333pt;}
.yc4{bottom:345.782667pt;}
.y47{bottom:348.718667pt;}
.y130{bottom:352.973333pt;}
.y19a{bottom:355.082667pt;}
.y163{bottom:356.636000pt;}
.yd4{bottom:358.721333pt;}
.y8d{bottom:359.748000pt;}
.y1a9{bottom:360.225333pt;}
.y7d{bottom:361.617333pt;}
.ye{bottom:362.706666pt;}
.yc3{bottom:363.796000pt;}
.y46{bottom:366.732000pt;}
.y12f{bottom:370.986667pt;}
.y199{bottom:372.298667pt;}
.y162{bottom:373.852000pt;}
.yd3{bottom:376.733333pt;}
.y10d{bottom:377.521333pt;}
.y7c{bottom:379.629333pt;}
.yc2{bottom:381.808000pt;}
.y45{bottom:382.874667pt;}
.y44{bottom:384.744000pt;}
.y12e{bottom:388.998667pt;}
.y198{bottom:389.514667pt;}
.y161{bottom:391.068000pt;}
.y10c{bottom:394.616000pt;}
.yd2{bottom:394.746667pt;}
.y7b{bottom:397.642667pt;}
.yc1{bottom:399.821333pt;}
.y43{bottom:402.756000pt;}
.y197{bottom:406.729333pt;}
.y12d{bottom:407.012000pt;}
.y160{bottom:408.282667pt;}
.y10b{bottom:411.712000pt;}
.y7a{bottom:415.654667pt;}
.yc0{bottom:417.833333pt;}
.yd1{bottom:420.729333pt;}
.y42{bottom:420.769333pt;}
.yed{bottom:421.929333pt;}
.y196{bottom:423.945333pt;}
.y12c{bottom:425.024000pt;}
.y15f{bottom:425.498667pt;}
.y10a{bottom:428.808000pt;}
.y79{bottom:433.666667pt;}
.yec{bottom:434.548000pt;}
.ybf{bottom:435.845333pt;}
.y195{bottom:441.160000pt;}
.y15e{bottom:442.713333pt;}
.y12b{bottom:443.036000pt;}
.y41{bottom:446.752000pt;}
.yd{bottom:446.990669pt;}
.yfb{bottom:448.745333pt;}
.y78{bottom:451.680000pt;}
.ybe{bottom:453.858667pt;}
.yeb{bottom:453.905333pt;}
.y194{bottom:458.376000pt;}
.y15d{bottom:459.929333pt;}
.yc{bottom:462.990669pt;}
.yea{bottom:468.582667pt;}
.y12a{bottom:469.018667pt;}
.y77{bottom:469.692000pt;}
.ybd{bottom:471.870667pt;}
.y193{bottom:475.592000pt;}
.y15c{bottom:477.145333pt;}
.yb{bottom:478.990666pt;}
.ye9{bottom:483.261333pt;}
.y76{bottom:487.704000pt;}
.ybc{bottom:489.884000pt;}
.y192{bottom:492.806667pt;}
.y15b{bottom:494.360000pt;}
.ya{bottom:494.990666pt;}
.ye8{bottom:497.940000pt;}
.y129{bottom:499.969333pt;}
.y9b{bottom:503.848000pt;}
.y75{bottom:505.717333pt;}
.ybb{bottom:507.896000pt;}
.y191{bottom:510.022667pt;}
.y15a{bottom:511.576000pt;}
.ye7{bottom:512.618667pt;}
.y40{bottom:514.670667pt;}
.y128{bottom:517.982667pt;}
.y74{bottom:523.729333pt;}
.yba{bottom:525.908000pt;}
.y190{bottom:527.237333pt;}
.ye6{bottom:527.296000pt;}
.y159{bottom:528.790667pt;}
.y127{bottom:535.994667pt;}
.y73{bottom:541.742667pt;}
.ye5{bottom:541.974667pt;}
.yb9{bottom:543.921333pt;}
.y18f{bottom:544.453333pt;}
.y158{bottom:546.006667pt;}
.y111{bottom:546.223067pt;}
.y3f{bottom:548.622667pt;}
.y126{bottom:554.008000pt;}
.ye4{bottom:556.653333pt;}
.y72{bottom:559.754667pt;}
.y18e{bottom:561.669333pt;}
.yb8{bottom:561.933333pt;}
.y157{bottom:563.222667pt;}
.y3e{bottom:566.636000pt;}
.ye3{bottom:571.332000pt;}
.y125{bottom:572.020000pt;}
.y9{bottom:573.786667pt;}
.y71{bottom:577.766667pt;}
.y18d{bottom:578.884000pt;}
.yb7{bottom:579.945333pt;}
.y3d{bottom:584.648000pt;}
.ye2{bottom:586.009333pt;}
.y156{bottom:588.408000pt;}
.y124{bottom:590.032000pt;}
.y8{bottom:592.685334pt;}
.y70{bottom:595.780000pt;}
.y18c{bottom:596.100000pt;}
.yb6{bottom:597.958667pt;}
.ye1{bottom:600.688000pt;}
.y3c{bottom:602.660000pt;}
.y123{bottom:608.045333pt;}
.y18b{bottom:613.314667pt;}
.y6f{bottom:613.792000pt;}
.ye0{bottom:615.366667pt;}
.yb5{bottom:615.970667pt;}
.y3b{bottom:620.673333pt;}
.y155{bottom:623.476000pt;}
.y122{bottom:626.057333pt;}
.y140{bottom:629.936000pt;}
.y18a{bottom:630.530667pt;}
.y6e{bottom:631.805333pt;}
.yb4{bottom:633.984000pt;}
.ydf{bottom:636.446667pt;}
.y3a{bottom:638.685333pt;}
.y154{bottom:644.956000pt;}
.y7{bottom:645.598667pt;}
.y189{bottom:647.746667pt;}
.y6d{bottom:649.817333pt;}
.yb3{bottom:651.996000pt;}
.y39{bottom:656.698667pt;}
.y121{bottom:657.169333pt;}
.y153{bottom:658.465333pt;}
.yfa{bottom:662.996000pt;}
.yde{bottom:664.553333pt;}
.y188{bottom:664.961333pt;}
.y6c{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.yb2{bottom:670.008000pt;}
.y152{bottom:671.974667pt;}
.y120{bottom:674.265333pt;}
.y38{bottom:674.710667pt;}
.yf9{bottom:675.614667pt;}
.y187{bottom:682.177333pt;}
.y6b{bottom:685.842667pt;}
.yb1{bottom:688.021333pt;}
.y11e{bottom:691.361333pt;}
.y37{bottom:692.722667pt;}
.y151{bottom:693.454667pt;}
.yf8{bottom:694.970667pt;}
.y11f{bottom:695.700000pt;}
.y186{bottom:699.392000pt;}
.y6a{bottom:703.854667pt;}
.yb0{bottom:706.033333pt;}
.y150{bottom:706.964000pt;}
.y11d{bottom:708.457333pt;}
.yf7{bottom:709.649333pt;}
.ydd{bottom:709.729333pt;}
.y36{bottom:710.736000pt;}
.y185{bottom:716.608000pt;}
.y14f{bottom:720.473333pt;}
.y69{bottom:721.868000pt;}
.yaf{bottom:724.046667pt;}
.yf6{bottom:724.328000pt;}
.y10e{bottom:728.393333pt;}
.y184{bottom:733.824000pt;}
.yf5{bottom:739.006667pt;}
.y33{bottom:739.229301pt;}
.y32{bottom:739.578667pt;}
.y68{bottom:739.880000pt;}
.yae{bottom:742.058667pt;}
.y14e{bottom:749.922667pt;}
.y183{bottom:751.038667pt;}
.yf4{bottom:753.684000pt;}
.y67{bottom:757.892000pt;}
.yad{bottom:760.070667pt;}
.y14d{bottom:767.934667pt;}
.y182{bottom:768.254667pt;}
.yf3{bottom:768.362667pt;}
.y31{bottom:774.576000pt;}
.y66{bottom:775.905333pt;}
.yac{bottom:778.084000pt;}
.y2{bottom:781.661334pt;}
.yf2{bottom:783.041333pt;}
.y181{bottom:785.469333pt;}
.y14c{bottom:785.948000pt;}
.y141{bottom:792.049333pt;}
.y65{bottom:793.917333pt;}
.y30{bottom:795.054667pt;}
.yab{bottom:796.096000pt;}
.y180{bottom:802.685333pt;}
.y14b{bottom:803.960000pt;}
.yf1{bottom:804.121333pt;}
.y2f{bottom:806.854667pt;}
.y64{bottom:811.930667pt;}
.yef{bottom:813.314667pt;}
.yaa{bottom:814.109333pt;}
.y17f{bottom:819.901333pt;}
.y14a{bottom:821.972000pt;}
.y2e{bottom:822.994667pt;}
.yf0{bottom:825.202667pt;}
.y63{bottom:829.942667pt;}
.ya9{bottom:832.121333pt;}
.y17e{bottom:837.116000pt;}
.y2d{bottom:837.452000pt;}
.y149{bottom:839.985333pt;}
.y2c{bottom:843.473333pt;}
.y62{bottom:847.954667pt;}
.ya8{bottom:850.133333pt;}
.y17d{bottom:852.649333pt;}
.yee{bottom:853.308000pt;}
.y17c{bottom:854.332000pt;}
.y148{bottom:857.997333pt;}
.y2b{bottom:858.364000pt;}
.y1{bottom:859.312000pt;}
.y2a{bottom:860.241333pt;}
.y61{bottom:864.098667pt;}
.y60{bottom:865.968000pt;}
.ya7{bottom:868.146667pt;}
.y17b{bottom:871.546667pt;}
.y147{bottom:876.010667pt;}
.y5f{bottom:883.980000pt;}
.ya6{bottom:886.158667pt;}
.y17a{bottom:888.762667pt;}
.y146{bottom:894.022667pt;}
.y29{bottom:898.178667pt;}
.y13f{bottom:900.124000pt;}
.y5e{bottom:901.993333pt;}
.y179{bottom:904.296000pt;}
.y178{bottom:905.978667pt;}
.y145{bottom:912.034667pt;}
.ya5{bottom:912.141333pt;}
.y5d{bottom:920.005333pt;}
.y177{bottom:923.193333pt;}
.y28{bottom:925.198667pt;}
.y144{bottom:930.048000pt;}
.y8c{bottom:936.149333pt;}
.y5c{bottom:938.017333pt;}
.y176{bottom:940.409333pt;}
.ya4{bottom:943.092000pt;}
.y143{bottom:948.060000pt;}
.y27{bottom:952.217333pt;}
.y175{bottom:955.942667pt;}
.y5b{bottom:956.030667pt;}
.y174{bottom:957.624000pt;}
.y142{bottom:966.073333pt;}
.y5a{bottom:974.042667pt;}
.y173{bottom:974.840000pt;}
.y26{bottom:977.906667pt;}
.y8b{bottom:990.186667pt;}
.y59{bottom:992.056000pt;}
.y23{bottom:1011.514667pt;}
.y58{bottom:1038.548000pt;}
.h13{height:22.673858pt;}
.h1c{height:24.866650pt;}
.h21{height:25.462789pt;}
.h10{height:27.076941pt;}
.h1b{height:28.291958pt;}
.h7{height:28.560000pt;}
.h18{height:29.397999pt;}
.h15{height:29.433775pt;}
.h14{height:30.399505pt;}
.h20{height:30.945242pt;}
.h19{height:31.200285pt;}
.h24{height:33.328125pt;}
.h1f{height:34.574438pt;}
.h12{height:34.813542pt;}
.h26{height:35.100467pt;}
.h23{height:37.027031pt;}
.h16{height:38.415786pt;}
.h17{height:38.681455pt;}
.hb{height:39.000258pt;}
.h6{height:40.800000pt;}
.h11{height:41.544209pt;}
.h3{height:42.840000pt;}
.h25{height:44.437500pt;}
.h9{height:45.271688pt;}
.h1a{height:46.153455pt;}
.h28{height:46.158788pt;}
.hd{height:48.486756pt;}
.h2{height:48.960000pt;}
.ha{height:54.767117pt;}
.hf{height:55.990756pt;}
.he{height:55.996090pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h22{height:194.908000pt;}
.h27{height:206.622667pt;}
.h1d{height:793.701333pt;}
.h1e{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.580236pt;}
.w9{width:551.158400pt;}
.w8{width:556.216400pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x50{left:-6.458933pt;}
.x0{left:0.000000pt;}
.x41{left:1.425733pt;}
.xe{left:26.021437pt;}
.x6{left:51.603593pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x22{left:100.054667pt;}
.x5{left:102.046667pt;}
.xc{left:108.542667pt;}
.x9{left:109.606667pt;}
.x48{left:113.138667pt;}
.x3f{left:118.742267pt;}
.x39{left:120.645333pt;}
.x34{left:122.157333pt;}
.x65{left:123.818667pt;}
.x66{left:127.516000pt;}
.x12{left:128.896000pt;}
.xb{left:129.929333pt;}
.x13{left:134.529333pt;}
.x45{left:136.798667pt;}
.x38{left:137.914667pt;}
.x2f{left:141.697333pt;}
.x49{left:145.732000pt;}
.x37{left:155.182667pt;}
.xf{left:167.469333pt;}
.x10{left:175.254667pt;}
.x11{left:176.808000pt;}
.x4{left:180.874667pt;}
.x55{left:181.872000pt;}
.x1a{left:191.737333pt;}
.x1b{left:193.290667pt;}
.x42{left:196.369333pt;}
.x1c{left:197.369333pt;}
.x4a{left:198.760000pt;}
.x52{left:201.402667pt;}
.x59{left:209.676000pt;}
.x56{left:211.101333pt;}
.x33{left:214.213333pt;}
.x17{left:218.688000pt;}
.x18{left:220.242667pt;}
.x19{left:224.321333pt;}
.x68{left:225.868000pt;}
.x64{left:226.972000pt;}
.x57{left:228.613333pt;}
.x67{left:236.016000pt;}
.x2e{left:240.708000pt;}
.x30{left:250.690667pt;}
.x62{left:253.001333pt;}
.x63{left:257.080000pt;}
.x4b{left:263.814667pt;}
.x4c{left:274.740000pt;}
.x7{left:282.502667pt;}
.x4f{left:284.981067pt;}
.x40{left:292.865733pt;}
.x23{left:294.261333pt;}
.x31{left:295.432000pt;}
.x36{left:299.030667pt;}
.xa{left:302.921333pt;}
.x24{left:305.120000pt;}
.x4d{left:306.637333pt;}
.x2d{left:316.456000pt;}
.x4e{left:317.562667pt;}
.x35{left:321.698667pt;}
.x5d{left:350.793333pt;}
.x5e{left:361.718667pt;}
.x29{left:376.533333pt;}
.x2a{left:388.608000pt;}
.x3a{left:401.540000pt;}
.x58{left:403.254667pt;}
.x3{left:404.408000pt;}
.x3b{left:405.622667pt;}
.x25{left:410.740000pt;}
.x3c{left:415.456000pt;}
.x26{left:421.600000pt;}
.x3d{left:442.204000pt;}
.x2b{left:452.417333pt;}
.x5a{left:453.516000pt;}
.x5b{left:455.069333pt;}
.x5c{left:459.148000pt;}
.x2c{left:464.492000pt;}
.x32{left:485.452000pt;}
.x3e{left:506.189333pt;}
.x1f{left:507.876000pt;}
.x20{left:509.430667pt;}
.x21{left:513.508000pt;}
.x8{left:517.713333pt;}
.x5f{left:524.189333pt;}
.x44{left:525.881333pt;}
.x60{left:556.706667pt;}
.x61{left:567.632000pt;}
.x51{left:583.541067pt;}
.x1d{left:588.261333pt;}
.x14{left:589.590667pt;}
.x15{left:591.144000pt;}
.x1e{left:593.893333pt;}
.x16{left:595.222667pt;}
.x27{left:601.452000pt;}
.x53{left:610.810667pt;}
.x28{left:612.377333pt;}
.x43{left:614.052000pt;}
.x54{left:619.802667pt;}
.xd{left:623.413317pt;}
.x46{left:632.697333pt;}
.x47{left:685.725333pt;}
}




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