
    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_a373d63d4378ddc0a85c7426.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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1ea6ba25171be31b48eead7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986000;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_f2fafa211ade0e58302cf9c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.151000;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_83129d52a43da79f6680133b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_238e7e70545870c0f235b614.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;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_0e64d8bc8fc5ef312a869f93.woff2')format("woff");}.ffc{font-family:ffc;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;}
.mf{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);}
.m10{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);}
.m8{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);}
.m1b{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);}
.m1f{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);}
.mb{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);}
.m3{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);}
.m29{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);}
.m7{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);}
.m17{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);}
.m1e{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);}
.m23{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);}
.m16{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);}
.m1d{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);}
.m15{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);}
.m22{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);}
.m1a{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);}
.mc{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);}
.m21{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);}
.md{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);}
.m26{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);}
.ma{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);}
.m27{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);}
.m25{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);}
.m14{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);}
.m12{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);}
.m2{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);}
.m13{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);}
.m5{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);}
.m28{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);}
.m24{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);}
.m11{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);}
.me{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);}
.m6{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);}
.m19{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);}
.m18{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);}
.m20{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);}
.m4{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);}
.m1c{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);}
.m9{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000566px;}
.ls1d{letter-spacing:0.003155px;}
.ls8{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls7{letter-spacing:11.954850px;}
.ls15{letter-spacing:13.031081px;}
.ls14{letter-spacing:13.389734px;}
.ls1a{letter-spacing:13.613746px;}
.ls11{letter-spacing:13.748388px;}
.ls10{letter-spacing:13.808164px;}
.ls18{letter-spacing:13.987490px;}
.ls19{letter-spacing:14.047266px;}
.lsf{letter-spacing:14.645022px;}
.lsa{letter-spacing:15.003676px;}
.lse{letter-spacing:15.063451px;}
.ls13{letter-spacing:15.123227px;}
.ls4{letter-spacing:15.183002px;}
.ls1b{letter-spacing:15.495272px;}
.ls9{letter-spacing:16.438290px;}
.ls16{letter-spacing:18.470660px;}
.lsb{letter-spacing:18.889090px;}
.lsc{letter-spacing:19.068416px;}
.lsd{letter-spacing:20.024826px;}
.ls17{letter-spacing:23.192933px;}
.ls12{letter-spacing:26.301264px;}
.ls6{letter-spacing:26.899020px;}
.ls5{letter-spacing:27.616327px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.ws11{word-spacing:-16.529216px;}
.ws24{word-spacing:-14.943900px;}
.ws95{word-spacing:-13.449600px;}
.ws34{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws8e{word-spacing:-3.819686px;}
.ws32{word-spacing:-3.347434px;}
.wsa4{word-spacing:-3.287658px;}
.wsaf{word-spacing:-3.227904px;}
.wsc4{word-spacing:-3.174106px;}
.ws61{word-spacing:-3.108331px;}
.ws8d{word-spacing:-3.066509px;}
.ws99{word-spacing:-3.012710px;}
.ws8b{word-spacing:-2.689902px;}
.ws76{word-spacing:-2.630126px;}
.ws8c{word-spacing:-2.510575px;}
.ws6b{word-spacing:-2.450800px;}
.ws75{word-spacing:-2.331248px;}
.ws6f{word-spacing:-2.271473px;}
.ws5f{word-spacing:-2.211697px;}
.wsb3{word-spacing:-2.098138px;}
.ws65{word-spacing:-1.912819px;}
.ws2{word-spacing:-1.908367px;}
.ws64{word-spacing:-1.853044px;}
.wsaa{word-spacing:-1.829146px;}
.ws6d{word-spacing:-1.793268px;}
.wsb0{word-spacing:-1.775347px;}
.ws89{word-spacing:-1.613941px;}
.wsb1{word-spacing:-1.560154px;}
.ws43{word-spacing:-1.554166px;}
.ws85{word-spacing:-1.494390px;}
.ws84{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws73{word-spacing:-1.315063px;}
.wsab{word-spacing:-1.237363px;}
.ws7{word-spacing:-1.171598px;}
.ws74{word-spacing:-1.135736px;}
.wsce{word-spacing:-1.129766px;}
.wsa0{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.ws70{word-spacing:-1.016185px;}
.wsad{word-spacing:-0.968371px;}
.ws47{word-spacing:-0.896634px;}
.ws49{word-spacing:-0.777083px;}
.ws7f{word-spacing:-0.717307px;}
.wsae{word-spacing:-0.699379px;}
.ws23{word-spacing:-0.597756px;}
.ws91{word-spacing:-0.591782px;}
.ws83{word-spacing:-0.537980px;}
.ws9c{word-spacing:-0.478205px;}
.ws46{word-spacing:-0.418429px;}
.ws81{word-spacing:-0.358654px;}
.wsba{word-spacing:-0.322790px;}
.ws4b{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.268992px;}
.ws36{word-spacing:-0.239102px;}
.wsb5{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws3a{word-spacing:-0.119551px;}
.ws94{word-spacing:-0.107597px;}
.ws39{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.wsbc{word-spacing:-0.013334px;}
.wscf{word-spacing:-0.010637px;}
.wscd{word-spacing:-0.008554px;}
.ws8f{word-spacing:-0.007382px;}
.ws0{word-spacing:0.000000px;}
.wsc6{word-spacing:0.026088px;}
.ws19{word-spacing:0.053798px;}
.ws44{word-spacing:0.059776px;}
.ws1b{word-spacing:0.107597px;}
.ws42{word-spacing:0.119551px;}
.ws15{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.ws1e{word-spacing:0.215194px;}
.ws33{word-spacing:0.239102px;}
.ws1a{word-spacing:0.268992px;}
.ws41{word-spacing:0.298878px;}
.ws1c{word-spacing:0.322790px;}
.ws52{word-spacing:0.358654px;}
.ws5e{word-spacing:0.418429px;}
.wsa3{word-spacing:0.478205px;}
.ws6c{word-spacing:0.537980px;}
.ws1d{word-spacing:0.537984px;}
.ws53{word-spacing:0.597756px;}
.ws9f{word-spacing:0.657532px;}
.ws62{word-spacing:0.717307px;}
.ws7a{word-spacing:0.777083px;}
.wsd2{word-spacing:0.806976px;}
.ws6e{word-spacing:0.836858px;}
.ws3f{word-spacing:0.896634px;}
.ws4d{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws54{word-spacing:1.195512px;}
.wsbf{word-spacing:1.237363px;}
.ws3b{word-spacing:1.255288px;}
.ws80{word-spacing:1.315063px;}
.ws88{word-spacing:1.434614px;}
.wsc3{word-spacing:1.452557px;}
.ws27{word-spacing:1.494390px;}
.wsd5{word-spacing:1.506355px;}
.ws38{word-spacing:1.613941px;}
.wsd7{word-spacing:1.613952px;}
.ws60{word-spacing:1.673717px;}
.wsd1{word-spacing:1.721549px;}
.ws3c{word-spacing:1.733492px;}
.wsc1{word-spacing:1.829146px;}
.ws8a{word-spacing:1.853044px;}
.ws18{word-spacing:1.882944px;}
.ws72{word-spacing:1.912819px;}
.ws69{word-spacing:1.972595px;}
.ws6a{word-spacing:2.032370px;}
.wsca{word-spacing:2.044339px;}
.ws45{word-spacing:2.092146px;}
.ws2f{word-spacing:2.151922px;}
.ws48{word-spacing:2.271473px;}
.wsa1{word-spacing:2.391024px;}
.ws63{word-spacing:2.450800px;}
.wsb2{word-spacing:2.474726px;}
.ws4{word-spacing:2.510568px;}
.ws55{word-spacing:2.510575px;}
.ws3{word-spacing:2.511541px;}
.ws2e{word-spacing:2.570351px;}
.wsc9{word-spacing:2.582323px;}
.ws2d{word-spacing:2.630126px;}
.wsa9{word-spacing:2.689902px;}
.wscb{word-spacing:2.743718px;}
.ws59{word-spacing:2.749678px;}
.wscc{word-spacing:2.797517px;}
.ws5c{word-spacing:2.809453px;}
.ws13{word-spacing:2.869236px;}
.ws28{word-spacing:2.988780px;}
.ws29{word-spacing:3.048556px;}
.wsb6{word-spacing:3.066509px;}
.wsb7{word-spacing:3.120307px;}
.wsb8{word-spacing:3.174106px;}
.wsbe{word-spacing:3.222893px;}
.wsc0{word-spacing:3.223978px;}
.wsac{word-spacing:3.224822px;}
.wsa2{word-spacing:3.227882px;}
.wsb4{word-spacing:3.227904px;}
.ws56{word-spacing:3.287658px;}
.ws78{word-spacing:3.347434px;}
.wsb9{word-spacing:3.389299px;}
.ws9d{word-spacing:3.407209px;}
.wsc7{word-spacing:3.443098px;}
.wsc5{word-spacing:3.476262px;}
.wsbb{word-spacing:3.496896px;}
.wsd4{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws50{word-spacing:3.646312px;}
.ws4f{word-spacing:3.825638px;}
.ws31{word-spacing:3.945190px;}
.ws86{word-spacing:4.004965px;}
.wsc8{word-spacing:4.034880px;}
.ws4e{word-spacing:4.124516px;}
.ws25{word-spacing:4.184292px;}
.ws35{word-spacing:4.244068px;}
.ws3d{word-spacing:4.363619px;}
.ws7e{word-spacing:4.423394px;}
.ws21{word-spacing:4.483170px;}
.ws71{word-spacing:4.542946px;}
.wsf{word-spacing:4.770079px;}
.ws87{word-spacing:4.782048px;}
.wsd0{word-spacing:4.788058px;}
.ws10{word-spacing:4.853765px;}
.ws4c{word-spacing:4.901599px;}
.wsa7{word-spacing:4.961375px;}
.ws37{word-spacing:5.021150px;}
.ws58{word-spacing:5.200477px;}
.wsd3{word-spacing:5.272243px;}
.ws40{word-spacing:5.320028px;}
.ws4a{word-spacing:5.379804px;}
.wsc2{word-spacing:5.379840px;}
.ws82{word-spacing:5.499355px;}
.wsa6{word-spacing:5.559131px;}
.ws2c{word-spacing:5.798233px;}
.ws51{word-spacing:5.858009px;}
.wsa8{word-spacing:6.037336px;}
.wsa5{word-spacing:6.097111px;}
.ws5b{word-spacing:6.276438px;}
.wsbd{word-spacing:6.294413px;}
.ws5a{word-spacing:6.395989px;}
.ws9e{word-spacing:6.455765px;}
.ws79{word-spacing:6.874194px;}
.ws5d{word-spacing:6.933970px;}
.ws7d{word-spacing:7.412174px;}
.ws68{word-spacing:7.471950px;}
.wsd{word-spacing:7.782761px;}
.ws9a{word-spacing:8.009930px;}
.ws9b{word-spacing:8.189257px;}
.ws77{word-spacing:8.249033px;}
.ws2a{word-spacing:8.368584px;}
.ws2b{word-spacing:8.428360px;}
.ws66{word-spacing:8.488135px;}
.ws67{word-spacing:8.547911px;}
.wsd6{word-spacing:8.553946px;}
.ws26{word-spacing:8.846789px;}
.ws30{word-spacing:9.743423px;}
.ws7c{word-spacing:10.640057px;}
.ws7b{word-spacing:10.699832px;}
.wsb{word-spacing:12.176255px;}
.ws57{word-spacing:13.927715px;}
.ws5{word-spacing:15.481836px;}
.wsc{word-spacing:16.109478px;}
.ws3e{word-spacing:17.215373px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws90{word-spacing:82.587917px;}
.ws92{word-spacing:87.024653px;}
.ws98{word-spacing:91.062413px;}
.ws93{word-spacing:101.228208px;}
.ws96{word-spacing:131.654198px;}
.ws97{word-spacing:142.897930px;}
._15{margin-left:-6.627524px;}
._13{margin-left:-5.379804px;}
._9{margin-left:-3.538724px;}
._1b{margin-left:-2.461660px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._7{width:3.677912px;}
._1d{width:5.208044px;}
._2{width:9.707530px;}
._5{width:11.398711px;}
._3{width:12.969638px;}
._10{width:14.821688px;}
._a{width:16.300915px;}
._f{width:17.693578px;}
._b{width:19.152230px;}
._c{width:20.595961px;}
._1a{width:22.270711px;}
._14{width:24.286938px;}
._d{width:25.954574px;}
._e{width:26.958796px;}
._2b{width:28.341202px;}
._6{width:30.587087px;}
._17{width:31.688635px;}
._19{width:32.824372px;}
._2d{width:34.012316px;}
._16{width:35.387155px;}
._2e{width:37.307542px;}
._18{width:44.495748px;}
._1c{width:51.354808px;}
._8{width:69.369634px;}
._29{width:76.286131px;}
._21{width:90.865498px;}
._26{width:100.172621px;}
._1e{width:110.717107px;}
._25{width:117.926093px;}
._20{width:125.888256px;}
._1f{width:132.828250px;}
._22{width:141.540710px;}
._28{width:144.663898px;}
._23{width:157.355664px;}
._24{width:329.515164px;}
._27{width:419.412290px;}
._11{width:741.888788px;}
._2a{width:956.589350px;}
._2c{width:2248.310402px;}
._12{width:2272.220402px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(40,65,113);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fse{font-size:47.820600px;}
.fs8{font-size:52.197584px;}
.fsf{font-size:53.798400px;}
.fsa{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y24{bottom:3.425340px;}
.y40{bottom:5.788613px;}
.y23{bottom:14.151273px;}
.y3f{bottom:22.317924px;}
.y6c{bottom:31.890000px;}
.y3e{bottom:38.654567px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y1c2{bottom:100.128000px;}
.y3c{bottom:104.646000px;}
.ya2{bottom:105.847500px;}
.y1c9{bottom:107.641500px;}
.ya7{bottom:108.987000px;}
.y1c1{bottom:118.957500px;}
.y265{bottom:121.762500px;}
.y3b{bottom:122.535000px;}
.ya1{bottom:124.677000px;}
.yd6{bottom:125.574000px;}
.y230{bottom:125.842500px;}
.y1c8{bottom:126.471000px;}
.ya6{bottom:127.815000px;}
.y6b{bottom:128.247000px;}
.y264{bottom:139.023000px;}
.y21{bottom:139.264499px;}
.y3a{bottom:140.422500px;}
.y1c0{bottom:142.269000px;}
.y22f{bottom:143.103000px;}
.ya0{bottom:143.506500px;}
.yd5{bottom:144.403500px;}
.y1c7{bottom:145.300500px;}
.yb0{bottom:146.644500px;}
.y6a{bottom:147.076500px;}
.ya5{bottom:151.128000px;}
.y1f9{bottom:154.804500px;}
.y263{bottom:156.283500px;}
.y39{bottom:158.310000px;}
.y22e{bottom:160.363500px;}
.y19a{bottom:162.094500px;}
.y9f{bottom:162.336000px;}
.yd4{bottom:163.233000px;}
.y1c6{bottom:164.130000px;}
.yaf{bottom:165.474000px;}
.y69{bottom:165.906000px;}
.y195{bottom:170.314500px;}
.y1f8{bottom:172.378500px;}
.y262{bottom:173.544000px;}
.y1bf{bottom:175.893000px;}
.y38{bottom:176.199000px;}
.y22d{bottom:177.624000px;}
.y199{bottom:178.533000px;}
.yd3{bottom:182.062500px;}
.y1c5{bottom:182.959500px;}
.yae{bottom:184.303500px;}
.y68{bottom:184.735500px;}
.y9e{bottom:185.649000px;}
.y194{bottom:186.751500px;}
.y261{bottom:190.804500px;}
.y37{bottom:194.086500px;}
.y1be{bottom:194.722500px;}
.y22c{bottom:194.884500px;}
.y191{bottom:194.971500px;}
.y18{bottom:196.933500px;}
.y114{bottom:197.776500px;}
.y161{bottom:198.376500px;}
.y1f7{bottom:198.919500px;}
.yd2{bottom:200.892000px;}
.y1c4{bottom:201.789000px;}
.ya4{bottom:202.684500px;}
.y190{bottom:203.190000px;}
.y67{bottom:203.565000px;}
.y9d{bottom:205.824000px;}
.yad{bottom:207.616500px;}
.y260{bottom:208.065000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y198{bottom:211.410000px;}
.y36{bottom:211.974000px;}
.y22b{bottom:212.145000px;}
.y1bd{bottom:213.552000px;}
.y113{bottom:214.215000px;}
.y15f{bottom:214.815000px;}
.y193{bottom:219.628500px;}
.yd1{bottom:219.721500px;}
.y1c3{bottom:220.618500px;}
.ya3{bottom:221.514000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y66{bottom:222.394500px;}
.y25f{bottom:225.325500px;}
.y1f6{bottom:225.460500px;}
.y197{bottom:227.848500px;}
.y22a{bottom:229.405500px;}
.y35{bottom:229.863000px;}
.y112{bottom:230.653500px;}
.y15e{bottom:231.253500px;}
.y1bc{bottom:232.381500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y192{bottom:236.067000px;}
.yd0{bottom:238.551000px;}
.y10e{bottom:238.873500px;}
.y9c{bottom:239.446500px;}
.y65{bottom:241.224000px;}
.yac{bottom:241.240500px;}
.y25e{bottom:242.586000px;}
.y1f5{bottom:243.034500px;}
.y196{bottom:244.287000px;}
.y229{bottom:246.666000px;}
.y10d{bottom:247.092000px;}
.y160{bottom:247.690500px;}
.y1bb{bottom:251.211000px;}
.ycf{bottom:257.380500px;}
.y9b{bottom:258.276000px;}
.y25d{bottom:259.846500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y64{bottom:260.053500px;}
.yab{bottom:260.070000px;}
.y111{bottom:263.530500px;}
.y228{bottom:263.925000px;}
.y18f{bottom:267.927000px;}
.y1f4{bottom:269.574000px;}
.y1ba{bottom:270.040500px;}
.y14f{bottom:271.332000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yce{bottom:276.210000px;}
.y9a{bottom:277.105500px;}
.y63{bottom:278.883000px;}
.yaa{bottom:278.899500px;}
.y110{bottom:279.969000px;}
.y227{bottom:281.185500px;}
.y15d{bottom:284.034000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y14e{bottom:287.770500px;}
.y18b{bottom:291.568500px;}
.y1b9{bottom:293.353500px;}
.y25c{bottom:294.366000px;}
.ycd{bottom:295.039500px;}
.y99{bottom:295.935000px;}
.y1f3{bottom:296.115000px;}
.y10f{bottom:296.407500px;}
.y62{bottom:297.712500px;}
.ya9{bottom:297.729000px;}
.y226{bottom:298.446000px;}
.y18e{bottom:299.787000px;}
.y34{bottom:300.154500px;}
.y15c{bottom:300.472500px;}
.y14d{bottom:304.209000px;}
.y18a{bottom:308.005500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y25b{bottom:311.626500px;}
.y1f2{bottom:313.689000px;}
.ycc{bottom:313.869000px;}
.y98{bottom:314.764500px;}
.y225{bottom:315.706500px;}
.y18c{bottom:316.225500px;}
.y61{bottom:316.542000px;}
.y15b{bottom:316.911000px;}
.y33{bottom:318.043500px;}
.y10c{bottom:320.047500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y189{bottom:324.444000px;}
.y14c{bottom:325.129500px;}
.y1b8{bottom:326.977500px;}
.y108{bottom:328.267500px;}
.y25a{bottom:328.887000px;}
.y1f1{bottom:331.263000px;}
.y18d{bottom:332.664000px;}
.ycb{bottom:332.698500px;}
.y224{bottom:332.967000px;}
.y15a{bottom:333.349500px;}
.y97{bottom:333.594000px;}
.ya8{bottom:334.491000px;}
.y60{bottom:335.371500px;}
.y32{bottom:335.931000px;}
.y10b{bottom:336.486000px;}
.y188{bottom:340.882500px;}
.y14b{bottom:341.568000px;}
.y107{bottom:344.706000px;}
.y1b7{bottom:345.807000px;}
.y259{bottom:346.147500px;}
.yf{bottom:348.133500px;}
.y159{bottom:349.788000px;}
.y223{bottom:350.227500px;}
.yca{bottom:351.528000px;}
.y96{bottom:352.423500px;}
.y10a{bottom:352.924500px;}
.y31{bottom:353.818500px;}
.y5f{bottom:354.201000px;}
.y14a{bottom:358.006500px;}
.y106{bottom:361.143000px;}
.y258{bottom:363.408000px;}
.y187{bottom:364.524000px;}
.y1b6{bottom:364.636500px;}
.y158{bottom:366.226500px;}
.y1f0{bottom:366.769500px;}
.y222{bottom:367.488000px;}
.y109{bottom:369.363000px;}
.yc9{bottom:370.357500px;}
.y95{bottom:371.253000px;}
.y5e{bottom:373.030500px;}
.y143{bottom:374.445000px;}
.y257{bottom:380.668500px;}
.y30{bottom:380.673000px;}
.y186{bottom:380.962500px;}
.yfe{bottom:382.189500px;}
.y157{bottom:382.665000px;}
.y1b5{bottom:383.466000px;}
.y221{bottom:384.748500px;}
.y1ef{bottom:385.599000px;}
.ye{bottom:386.785499px;}
.y181{bottom:389.181000px;}
.yc8{bottom:389.187000px;}
.y94{bottom:390.082500px;}
.y141{bottom:390.883500px;}
.y5d{bottom:391.860000px;}
.y102{bottom:393.003000px;}
.y185{bottom:397.401000px;}
.y256{bottom:397.929000px;}
.y2f{bottom:398.562000px;}
.y156{bottom:399.102000px;}
.y105{bottom:401.223000px;}
.y220{bottom:402.007500px;}
.y1b4{bottom:402.295500px;}
.y1ee{bottom:404.428500px;}
.y17f{bottom:405.619500px;}
.y142{bottom:407.322000px;}
.yc7{bottom:408.015000px;}
.yd{bottom:408.044999px;}
.y93{bottom:408.912000px;}
.y101{bottom:409.441500px;}
.y5c{bottom:410.689500px;}
.y184{bottom:413.838000px;}
.y255{bottom:415.188000px;}
.y155{bottom:415.540500px;}
.y2e{bottom:416.449500px;}
.y104{bottom:417.661500px;}
.y21f{bottom:419.268000px;}
.y1b3{bottom:421.125000px;}
.y180{bottom:422.058000px;}
.y1ed{bottom:423.258000px;}
.y149{bottom:423.760500px;}
.y100{bottom:425.880000px;}
.yc6{bottom:426.844500px;}
.y92{bottom:427.741500px;}
.y5b{bottom:429.519000px;}
.y183{bottom:430.276500px;}
.y154{bottom:431.979000px;}
.y254{bottom:432.448500px;}
.y103{bottom:434.100000px;}
.y21e{bottom:436.528500px;}
.y1b2{bottom:439.954500px;}
.y1ec{bottom:442.087500px;}
.yff{bottom:442.318500px;}
.y148{bottom:444.682500px;}
.y2d{bottom:444.798000px;}
.yc5{bottom:445.674000px;}
.y91{bottom:446.571000px;}
.y182{bottom:446.715000px;}
.y153{bottom:448.417500px;}
.y253{bottom:449.709000px;}
.y5a{bottom:452.832000px;}
.y21d{bottom:453.789000px;}
.y1b1{bottom:458.784000px;}
.y1eb{bottom:460.917000px;}
.y147{bottom:461.119500px;}
.yc4{bottom:464.503500px;}
.y152{bottom:464.856000px;}
.y90{bottom:465.400500px;}
.yfd{bottom:465.960000px;}
.y252{bottom:466.969500px;}
.y17e{bottom:470.356500px;}
.y21c{bottom:471.049500px;}
.y2c{bottom:471.652500px;}
.y146{bottom:477.558000px;}
.y1b0{bottom:477.613500px;}
.y1ea{bottom:479.746500px;}
.y151{bottom:481.294500px;}
.yfb{bottom:482.397000px;}
.yc3{bottom:483.333000px;}
.y8f{bottom:484.230000px;}
.y17d{bottom:486.795000px;}
.y21b{bottom:488.310000px;}
.y2b{bottom:489.540000px;}
.yf8{bottom:490.617000px;}
.y145{bottom:493.996500px;}
.y17a{bottom:495.013500px;}
.y1af{bottom:496.443000px;}
.y150{bottom:497.733000px;}
.y1e9{bottom:498.576000px;}
.yfa{bottom:498.835500px;}
.y251{bottom:501.490500px;}
.yc2{bottom:502.162500px;}
.yc{bottom:502.864502px;}
.y8e{bottom:503.059500px;}
.y17c{bottom:503.233500px;}
.y21a{bottom:505.570500px;}
.yf7{bottom:507.055500px;}
.y2a{bottom:507.429000px;}
.y144{bottom:510.435000px;}
.y1ae{bottom:515.272500px;}
.yf9{bottom:515.274000px;}
.y1e8{bottom:517.405500px;}
.y250{bottom:518.751000px;}
.y17b{bottom:519.670500px;}
.yb{bottom:520.864502px;}
.yc1{bottom:520.992000px;}
.y8d{bottom:521.889000px;}
.y219{bottom:522.831000px;}
.y29{bottom:525.316500px;}
.y59{bottom:527.982000px;}
.yfc{bottom:531.712500px;}
.yf1{bottom:532.326000px;}
.y140{bottom:534.076500px;}
.y1ad{bottom:534.102000px;}
.y24f{bottom:536.011500px;}
.y1e7{bottom:536.235000px;}
.ya{bottom:538.864499px;}
.yc0{bottom:539.821500px;}
.y218{bottom:540.091500px;}
.y8c{bottom:540.718500px;}
.y28{bottom:543.204000px;}
.y179{bottom:543.312000px;}
.y58{bottom:547.438500px;}
.y13f{bottom:550.515000px;}
.y1ac{bottom:552.931500px;}
.y24e{bottom:553.272000px;}
.y1e6{bottom:555.064500px;}
.yf6{bottom:555.354000px;}
.y9{bottom:556.864499px;}
.y217{bottom:557.350500px;}
.y13c{bottom:558.733500px;}
.y8b{bottom:559.548000px;}
.y178{bottom:559.750500px;}
.y27{bottom:561.093000px;}
.ybf{bottom:563.134500px;}
.yf3{bottom:563.572500px;}
.y13e{bottom:566.952000px;}
.y24d{bottom:570.531000px;}
.y1ab{bottom:571.761000px;}
.yf5{bottom:571.792500px;}
.y1e5{bottom:573.894000px;}
.y216{bottom:574.611000px;}
.y174{bottom:576.189000px;}
.y8a{bottom:578.377500px;}
.y26{bottom:578.980500px;}
.yf2{bottom:580.011000px;}
.y13d{bottom:583.390500px;}
.y173{bottom:584.407500px;}
.y57{bottom:584.829000px;}
.y24c{bottom:587.791500px;}
.yf4{bottom:588.229500px;}
.y1aa{bottom:590.589000px;}
.y215{bottom:591.871500px;}
.y177{bottom:592.627500px;}
.y1e4{bottom:592.723500px;}
.ybe{bottom:596.758500px;}
.y25{bottom:596.868000px;}
.y89{bottom:597.207000px;}
.y56{bottom:604.285500px;}
.y24b{bottom:605.052000px;}
.y13b{bottom:607.032000px;}
.y176{bottom:609.066000px;}
.y214{bottom:609.132000px;}
.y1a9{bottom:609.418500px;}
.y1e3{bottom:611.553000px;}
.yec{bottom:611.871000px;}
.y22{bottom:614.756964px;}
.ybd{bottom:615.588000px;}
.y88{bottom:616.036500px;}
.yf0{bottom:620.089500px;}
.y24a{bottom:622.312500px;}
.y13a{bottom:623.470500px;}
.y55{bottom:623.742000px;}
.y175{bottom:625.503000px;}
.y213{bottom:626.392500px;}
.y1a8{bottom:628.248000px;}
.yeb{bottom:628.309500px;}
.y1e2{bottom:630.382500px;}
.ybc{bottom:634.417500px;}
.y87{bottom:634.866000px;}
.yef{bottom:636.528000px;}
.y249{bottom:639.573000px;}
.y136{bottom:639.909000px;}
.y54{bottom:643.200000px;}
.y212{bottom:643.653000px;}
.yea{bottom:644.748000px;}
.y8{bottom:645.510000px;}
.y1a7{bottom:647.077500px;}
.y135{bottom:648.127500px;}
.y172{bottom:649.144500px;}
.y1e1{bottom:649.212000px;}
.ye6{bottom:652.966500px;}
.ybb{bottom:653.247000px;}
.y86{bottom:653.695500px;}
.y137{bottom:656.347500px;}
.y248{bottom:656.833500px;}
.y211{bottom:660.913500px;}
.ye9{bottom:661.186500px;}
.y53{bottom:662.656500px;}
.y171{bottom:665.583000px;}
.y1a6{bottom:665.907000px;}
.y7{bottom:666.771000px;}
.y1e0{bottom:668.041500px;}
.yee{bottom:669.405000px;}
.yba{bottom:672.076500px;}
.y85{bottom:672.525000px;}
.y139{bottom:672.784500px;}
.y247{bottom:674.094000px;}
.ye8{bottom:677.625000px;}
.y210{bottom:678.174000px;}
.y16e{bottom:682.021500px;}
.y52{bottom:682.113000px;}
.y1a5{bottom:684.736500px;}
.yed{bottom:685.843500px;}
.y1df{bottom:686.871000px;}
.y138{bottom:689.223000px;}
.yb9{bottom:690.906000px;}
.y84{bottom:691.354500px;}
.ye7{bottom:694.062000px;}
.y20f{bottom:695.433000px;}
.y170{bottom:698.460000px;}
.y51{bottom:701.571000px;}
.y1a4{bottom:703.566000px;}
.y1de{bottom:705.700500px;}
.y246{bottom:708.613500px;}
.yb8{bottom:709.735500px;}
.y83{bottom:710.184000px;}
.y20e{bottom:712.693500px;}
.y134{bottom:712.864500px;}
.y16f{bottom:714.898500px;}
.y50{bottom:721.027500px;}
.y130{bottom:721.083000px;}
.y1a3{bottom:722.395500px;}
.y1dd{bottom:724.530000px;}
.y245{bottom:725.874000px;}
.y6{bottom:726.298500px;}
.yb7{bottom:728.565000px;}
.ye5{bottom:728.671500px;}
.y82{bottom:729.013500px;}
.y133{bottom:729.303000px;}
.y20d{bottom:729.954000px;}
.y12e{bottom:737.521500px;}
.y16d{bottom:738.538500px;}
.y4f{bottom:740.485500px;}
.y1a2{bottom:741.225000px;}
.y244{bottom:743.134500px;}
.y1dc{bottom:743.359500px;}
.y132{bottom:745.741500px;}
.y16c{bottom:746.758500px;}
.y20c{bottom:747.214500px;}
.yb6{bottom:747.394500px;}
.y81{bottom:747.843000px;}
.y3{bottom:752.599495px;}
.y12f{bottom:753.960000px;}
.y4e{bottom:759.942000px;}
.y1a1{bottom:760.054500px;}
.y243{bottom:760.395000px;}
.y131{bottom:762.180000px;}
.y1db{bottom:762.189000px;}
.y20b{bottom:764.475000px;}
.ye4{bottom:765.775500px;}
.yb5{bottom:766.224000px;}
.y80{bottom:766.671000px;}
.y242{bottom:777.655500px;}
.y16b{bottom:778.617000px;}
.y4d{bottom:779.398500px;}
.y1da{bottom:781.018500px;}
.y20a{bottom:781.735500px;}
.y1a0{bottom:783.367500px;}
.yb4{bottom:785.053500px;}
.y7f{bottom:785.500500px;}
.y12d{bottom:785.820000px;}
.ye3{bottom:789.088500px;}
.y241{bottom:794.916000px;}
.y16a{bottom:795.055500px;}
.y4c{bottom:798.856500px;}
.y209{bottom:798.996000px;}
.y19f{bottom:799.059000px;}
.y1d9{bottom:799.848000px;}
.y12c{bottom:802.258500px;}
.yb3{bottom:803.883000px;}
.y7e{bottom:804.330000px;}
.y240{bottom:812.176500px;}
.y208{bottom:816.256500px;}
.y4b{bottom:818.313000px;}
.y1d8{bottom:818.677500px;}
.y12b{bottom:818.697000px;}
.yb2{bottom:822.712500px;}
.y7d{bottom:823.159500px;}
.y169{bottom:826.915500px;}
.y23f{bottom:829.437000px;}
.y207{bottom:833.517000px;}
.y12a{bottom:835.135500px;}
.y1d7{bottom:837.507000px;}
.y4a{bottom:837.769500px;}
.ye2{bottom:841.540500px;}
.y7c{bottom:841.989000px;}
.y168{bottom:843.354000px;}
.y19e{bottom:844.371000px;}
.yb1{bottom:846.024000px;}
.y23e{bottom:846.697500px;}
.y206{bottom:850.776000px;}
.y129{bottom:851.574000px;}
.y1d6{bottom:856.335000px;}
.y49{bottom:857.227500px;}
.y167{bottom:859.792500px;}
.ye1{bottom:860.370000px;}
.y19c{bottom:860.809500px;}
.y7b{bottom:860.818500px;}
.y23d{bottom:863.956500px;}
.y123{bottom:868.012500px;}
.y205{bottom:868.036500px;}
.y1d5{bottom:875.164500px;}
.y121{bottom:876.231000px;}
.y48{bottom:876.684000px;}
.y19d{bottom:877.248000px;}
.ye0{bottom:879.199500px;}
.y2{bottom:879.369000px;}
.y7a{bottom:879.648000px;}
.y23c{bottom:881.217000px;}
.y122{bottom:884.449500px;}
.y204{bottom:885.297000px;}
.y162{bottom:892.669500px;}
.y1d4{bottom:893.994000px;}
.ydf{bottom:898.029000px;}
.y79{bottom:898.477500px;}
.y128{bottom:900.888000px;}
.y203{bottom:902.557500px;}
.y166{bottom:909.108000px;}
.y1d3{bottom:912.823500px;}
.y47{bottom:915.270000px;}
.y23b{bottom:915.738000px;}
.yde{bottom:916.858500px;}
.y78{bottom:917.307000px;}
.y127{bottom:917.326500px;}
.y202{bottom:919.818000px;}
.y165{bottom:925.546500px;}
.y1d2{bottom:931.653000px;}
.y23a{bottom:932.998500px;}
.y126{bottom:933.765000px;}
.ydd{bottom:935.688000px;}
.y46{bottom:935.749500px;}
.y77{bottom:936.136500px;}
.y201{bottom:937.078500px;}
.y164{bottom:941.985000px;}
.y125{bottom:950.203500px;}
.y239{bottom:950.259000px;}
.y1d1{bottom:950.482500px;}
.y45{bottom:951.888000px;}
.y200{bottom:954.339000px;}
.ydc{bottom:954.517500px;}
.y76{bottom:954.966000px;}
.y19b{bottom:958.422000px;}
.y163{bottom:958.423500px;}
.y124{bottom:966.642000px;}
.y1{bottom:966.726000px;}
.y238{bottom:967.519500px;}
.y1d0{bottom:969.312000px;}
.y1ff{bottom:971.599500px;}
.ydb{bottom:973.347000px;}
.y75{bottom:973.795500px;}
.y237{bottom:984.780000px;}
.y1cf{bottom:988.141500px;}
.y1fe{bottom:988.860000px;}
.y11c{bottom:990.282000px;}
.yda{bottom:992.176500px;}
.y74{bottom:992.625000px;}
.y44{bottom:996.565500px;}
.y120{bottom:998.502000px;}
.y236{bottom:1002.040500px;}
.y1fd{bottom:1006.119000px;}
.y11b{bottom:1006.720500px;}
.y1ce{bottom:1006.971000px;}
.yd9{bottom:1011.006000px;}
.y73{bottom:1011.454500px;}
.y11f{bottom:1014.940500px;}
.y235{bottom:1019.299500px;}
.y11a{bottom:1023.159000px;}
.y1cd{bottom:1025.800500px;}
.y1fc{bottom:1027.863000px;}
.yd8{bottom:1029.835500px;}
.y72{bottom:1030.284000px;}
.y116{bottom:1031.379000px;}
.y43{bottom:1036.485000px;}
.y234{bottom:1036.560000px;}
.y119{bottom:1039.597500px;}
.y1cc{bottom:1044.630000px;}
.y11e{bottom:1047.817500px;}
.y71{bottom:1049.113500px;}
.yd7{bottom:1053.148500px;}
.y233{bottom:1053.820500px;}
.y118{bottom:1056.036000px;}
.y1fb{bottom:1061.487000px;}
.y1cb{bottom:1063.459500px;}
.y11d{bottom:1064.256000px;}
.y42{bottom:1064.728500px;}
.y70{bottom:1067.943000px;}
.y232{bottom:1071.081000px;}
.y117{bottom:1072.474500px;}
.y1ca{bottom:1082.289000px;}
.y6f{bottom:1086.772500px;}
.y1fa{bottom:1088.028000px;}
.y231{bottom:1088.341500px;}
.y41{bottom:1092.972000px;}
.y6e{bottom:1105.602000px;}
.y115{bottom:1107.082500px;}
.y3d{bottom:1136.460000px;}
.y6d{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h13{height:31.131341px;}
.h7{height:32.130000px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.he{height:36.277321px;}
.hc{height:36.319550px;}
.h15{height:38.734848px;}
.h1a{height:39.434227px;}
.h14{height:41.508281px;}
.h17{height:43.038432px;}
.h10{height:43.815515px;}
.hf{height:44.827234px;}
.h6{height:45.900000px;}
.h16{height:46.697011px;}
.h3{height:48.195000px;}
.hd{height:50.931027px;}
.h18{height:51.885221px;}
.h12{height:54.405312px;}
.h2{height:55.080000px;}
.h11{height:77.469696px;}
.h5{height:78.030000px;}
.h19{height:79.571011px;}
.h1b{height:79.577011px;}
.h1c{height:112.451011px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:75.364879px;}
.w5{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:29.274117px;}
.x5{left:53.574073px;}
.x7{left:60.141348px;}
.x2a{left:62.754000px;}
.x2f{left:64.803000px;}
.x25{left:68.830500px;}
.x23{left:70.014000px;}
.x21{left:72.495000px;}
.x30{left:73.813500px;}
.x26{left:75.024000px;}
.x29{left:76.537500px;}
.x27{left:78.024000px;}
.x31{left:79.180500px;}
.x2e{left:80.538000px;}
.x2d{left:83.766000px;}
.x3e{left:85.174500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x24{left:150.982500px;}
.x4{left:203.484001px;}
.x1a{left:247.513500px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.xc{left:281.479500px;}
.x16{left:285.423000px;}
.x20{left:299.274000px;}
.xa{left:308.151000px;}
.xb{left:319.920000px;}
.x1e{left:346.350000px;}
.x1b{left:351.636000px;}
.x2b{left:352.893000px;}
.x1c{left:363.681000px;}
.x3d{left:373.794000px;}
.x2c{left:380.086500px;}
.x39{left:390.013500px;}
.x36{left:405.186000px;}
.xd{left:409.030500px;}
.x37{left:410.320500px;}
.x11{left:422.869500px;}
.x3c{left:426.891000px;}
.x17{left:431.574000px;}
.x3b{left:432.919500px;}
.xe{left:443.826000px;}
.x3{left:454.959000px;}
.x3f{left:465.454500px;}
.x3a{left:488.262000px;}
.x1d{left:505.179000px;}
.x1f{left:514.813500px;}
.x10{left:522.778500px;}
.x12{left:575.010000px;}
.xf{left:591.501000px;}
.x28{left:606.369000px;}
.x22{left:608.239500px;}
.x32{left:612.966000px;}
.x14{left:624.469500px;}
.x38{left:680.269500px;}
.x18{left:728.505000px;}
.x13{left:730.167000px;}
.x33{left:767.994000px;}
.x15{left:781.543500px;}
.x34{left:786.754500px;}
.x35{left:832.990500px;}
.x19{left:837.849000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000503pt;}
.ls1d{letter-spacing:0.002805pt;}
.ls8{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls7{letter-spacing:10.626533pt;}
.ls15{letter-spacing:11.583183pt;}
.ls14{letter-spacing:11.901986pt;}
.ls1a{letter-spacing:12.101108pt;}
.ls11{letter-spacing:12.220789pt;}
.ls10{letter-spacing:12.273923pt;}
.ls18{letter-spacing:12.433325pt;}
.ls19{letter-spacing:12.486459pt;}
.lsf{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.336601pt;}
.lse{letter-spacing:13.389734pt;}
.ls13{letter-spacing:13.442868pt;}
.ls4{letter-spacing:13.496002pt;}
.ls1b{letter-spacing:13.773575pt;}
.ls9{letter-spacing:14.611813pt;}
.ls16{letter-spacing:16.418365pt;}
.lsb{letter-spacing:16.790302pt;}
.lsc{letter-spacing:16.949703pt;}
.lsd{letter-spacing:17.799845pt;}
.ls17{letter-spacing:20.615940pt;}
.ls12{letter-spacing:23.378901pt;}
.ls6{letter-spacing:23.910240pt;}
.ls5{letter-spacing:24.547846pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ws11{word-spacing:-14.692637pt;}
.ws24{word-spacing:-13.283467pt;}
.ws95{word-spacing:-11.955200pt;}
.ws34{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws8e{word-spacing:-3.395277pt;}
.ws32{word-spacing:-2.975497pt;}
.wsa4{word-spacing:-2.922363pt;}
.wsaf{word-spacing:-2.869248pt;}
.wsc4{word-spacing:-2.821427pt;}
.ws61{word-spacing:-2.762961pt;}
.ws8d{word-spacing:-2.725786pt;}
.ws99{word-spacing:-2.677965pt;}
.ws8b{word-spacing:-2.391024pt;}
.ws76{word-spacing:-2.337890pt;}
.ws8c{word-spacing:-2.231622pt;}
.ws6b{word-spacing:-2.178489pt;}
.ws75{word-spacing:-2.072221pt;}
.ws6f{word-spacing:-2.019087pt;}
.ws5f{word-spacing:-1.965953pt;}
.wsb3{word-spacing:-1.865011pt;}
.ws65{word-spacing:-1.700284pt;}
.ws2{word-spacing:-1.696326pt;}
.ws64{word-spacing:-1.647150pt;}
.wsaa{word-spacing:-1.625907pt;}
.ws6d{word-spacing:-1.594016pt;}
.wsb0{word-spacing:-1.578086pt;}
.ws89{word-spacing:-1.434614pt;}
.wsb1{word-spacing:-1.386803pt;}
.ws43{word-spacing:-1.381481pt;}
.ws85{word-spacing:-1.328347pt;}
.ws84{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws73{word-spacing:-1.168945pt;}
.wsab{word-spacing:-1.099878pt;}
.ws7{word-spacing:-1.041421pt;}
.ws74{word-spacing:-1.009543pt;}
.wsce{word-spacing:-1.004237pt;}
.wsa0{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.ws70{word-spacing:-0.903276pt;}
.wsad{word-spacing:-0.860774pt;}
.ws47{word-spacing:-0.797008pt;}
.ws49{word-spacing:-0.690740pt;}
.ws7f{word-spacing:-0.637606pt;}
.wsae{word-spacing:-0.621670pt;}
.ws23{word-spacing:-0.531339pt;}
.ws91{word-spacing:-0.526029pt;}
.ws83{word-spacing:-0.478205pt;}
.ws9c{word-spacing:-0.425071pt;}
.ws46{word-spacing:-0.371937pt;}
.ws81{word-spacing:-0.318803pt;}
.wsba{word-spacing:-0.286925pt;}
.ws4b{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.239104pt;}
.ws36{word-spacing:-0.212535pt;}
.wsb5{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws3a{word-spacing:-0.106268pt;}
.ws94{word-spacing:-0.095642pt;}
.ws39{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.wsbc{word-spacing:-0.011853pt;}
.wscf{word-spacing:-0.009455pt;}
.wscd{word-spacing:-0.007603pt;}
.ws8f{word-spacing:-0.006562pt;}
.ws0{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.023189pt;}
.ws19{word-spacing:0.047821pt;}
.ws44{word-spacing:0.053134pt;}
.ws1b{word-spacing:0.095642pt;}
.ws42{word-spacing:0.106268pt;}
.ws15{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.ws1e{word-spacing:0.191283pt;}
.ws33{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.239104pt;}
.ws41{word-spacing:0.265669pt;}
.ws1c{word-spacing:0.286925pt;}
.ws52{word-spacing:0.318803pt;}
.ws5e{word-spacing:0.371937pt;}
.wsa3{word-spacing:0.425071pt;}
.ws6c{word-spacing:0.478205pt;}
.ws1d{word-spacing:0.478208pt;}
.ws53{word-spacing:0.531339pt;}
.ws9f{word-spacing:0.584473pt;}
.ws62{word-spacing:0.637606pt;}
.ws7a{word-spacing:0.690740pt;}
.wsd2{word-spacing:0.717312pt;}
.ws6e{word-spacing:0.743874pt;}
.ws3f{word-spacing:0.797008pt;}
.ws4d{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws54{word-spacing:1.062677pt;}
.wsbf{word-spacing:1.099878pt;}
.ws3b{word-spacing:1.115811pt;}
.ws80{word-spacing:1.168945pt;}
.ws88{word-spacing:1.275213pt;}
.wsc3{word-spacing:1.291162pt;}
.ws27{word-spacing:1.328347pt;}
.wsd5{word-spacing:1.338982pt;}
.ws38{word-spacing:1.434614pt;}
.wsd7{word-spacing:1.434624pt;}
.ws60{word-spacing:1.487748pt;}
.wsd1{word-spacing:1.530266pt;}
.ws3c{word-spacing:1.540882pt;}
.wsc1{word-spacing:1.625907pt;}
.ws8a{word-spacing:1.647150pt;}
.ws18{word-spacing:1.673728pt;}
.ws72{word-spacing:1.700284pt;}
.ws69{word-spacing:1.753418pt;}
.ws6a{word-spacing:1.806551pt;}
.wsca{word-spacing:1.817190pt;}
.ws45{word-spacing:1.859685pt;}
.ws2f{word-spacing:1.912819pt;}
.ws48{word-spacing:2.019087pt;}
.wsa1{word-spacing:2.125355pt;}
.ws63{word-spacing:2.178489pt;}
.wsb2{word-spacing:2.199757pt;}
.ws4{word-spacing:2.231616pt;}
.ws55{word-spacing:2.231622pt;}
.ws3{word-spacing:2.232481pt;}
.ws2e{word-spacing:2.284756pt;}
.wsc9{word-spacing:2.295398pt;}
.ws2d{word-spacing:2.337890pt;}
.wsa9{word-spacing:2.391024pt;}
.wscb{word-spacing:2.438861pt;}
.ws59{word-spacing:2.444158pt;}
.wscc{word-spacing:2.486682pt;}
.ws5c{word-spacing:2.497292pt;}
.ws13{word-spacing:2.550432pt;}
.ws28{word-spacing:2.656693pt;}
.ws29{word-spacing:2.709827pt;}
.wsb6{word-spacing:2.725786pt;}
.wsb7{word-spacing:2.773606pt;}
.wsb8{word-spacing:2.821427pt;}
.wsbe{word-spacing:2.864794pt;}
.wsc0{word-spacing:2.865758pt;}
.wsac{word-spacing:2.866509pt;}
.wsa2{word-spacing:2.869229pt;}
.wsb4{word-spacing:2.869248pt;}
.ws56{word-spacing:2.922363pt;}
.ws78{word-spacing:2.975497pt;}
.wsb9{word-spacing:3.012710pt;}
.ws9d{word-spacing:3.028630pt;}
.wsc7{word-spacing:3.060531pt;}
.wsc5{word-spacing:3.090011pt;}
.wsbb{word-spacing:3.108352pt;}
.wsd4{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws50{word-spacing:3.241166pt;}
.ws4f{word-spacing:3.400567pt;}
.ws31{word-spacing:3.506835pt;}
.ws86{word-spacing:3.559969pt;}
.wsc8{word-spacing:3.586560pt;}
.ws4e{word-spacing:3.666237pt;}
.ws25{word-spacing:3.719371pt;}
.ws35{word-spacing:3.772505pt;}
.ws3d{word-spacing:3.878772pt;}
.ws7e{word-spacing:3.931906pt;}
.ws21{word-spacing:3.985040pt;}
.ws71{word-spacing:4.038174pt;}
.wsf{word-spacing:4.240070pt;}
.ws87{word-spacing:4.250709pt;}
.wsd0{word-spacing:4.256051pt;}
.ws10{word-spacing:4.314458pt;}
.ws4c{word-spacing:4.356977pt;}
.wsa7{word-spacing:4.410111pt;}
.ws37{word-spacing:4.463245pt;}
.ws58{word-spacing:4.622646pt;}
.wsd3{word-spacing:4.686438pt;}
.ws40{word-spacing:4.728914pt;}
.ws4a{word-spacing:4.782048pt;}
.wsc2{word-spacing:4.782080pt;}
.ws82{word-spacing:4.888316pt;}
.wsa6{word-spacing:4.941450pt;}
.ws2c{word-spacing:5.153985pt;}
.ws51{word-spacing:5.207119pt;}
.wsa8{word-spacing:5.366521pt;}
.wsa5{word-spacing:5.419654pt;}
.ws5b{word-spacing:5.579056pt;}
.wsbd{word-spacing:5.595034pt;}
.ws5a{word-spacing:5.685324pt;}
.ws9e{word-spacing:5.738458pt;}
.ws79{word-spacing:6.110395pt;}
.ws5d{word-spacing:6.163529pt;}
.ws7d{word-spacing:6.588599pt;}
.ws68{word-spacing:6.641733pt;}
.wsd{word-spacing:6.918010pt;}
.ws9a{word-spacing:7.119938pt;}
.ws9b{word-spacing:7.279340pt;}
.ws77{word-spacing:7.332474pt;}
.ws2a{word-spacing:7.438741pt;}
.ws2b{word-spacing:7.491875pt;}
.ws66{word-spacing:7.545009pt;}
.ws67{word-spacing:7.598143pt;}
.wsd6{word-spacing:7.603507pt;}
.ws26{word-spacing:7.863812pt;}
.ws30{word-spacing:8.660820pt;}
.ws7c{word-spacing:9.457828pt;}
.ws7b{word-spacing:9.510962pt;}
.wsb{word-spacing:10.823338pt;}
.ws57{word-spacing:12.380191pt;}
.ws5{word-spacing:13.761632pt;}
.wsc{word-spacing:14.319536pt;}
.ws3e{word-spacing:15.302554pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws90{word-spacing:73.411482pt;}
.ws92{word-spacing:77.355247pt;}
.ws98{word-spacing:80.944367pt;}
.ws93{word-spacing:89.980629pt;}
.ws96{word-spacing:117.025954pt;}
.ws97{word-spacing:127.020382pt;}
._15{margin-left:-5.891133pt;}
._13{margin-left:-4.782048pt;}
._9{margin-left:-3.145533pt;}
._1b{margin-left:-2.188142pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._7{width:3.269255pt;}
._1d{width:4.629373pt;}
._2{width:8.628915pt;}
._5{width:10.132188pt;}
._3{width:11.528567pt;}
._10{width:13.174834pt;}
._a{width:14.489702pt;}
._f{width:15.727625pt;}
._b{width:17.024205pt;}
._c{width:18.307521pt;}
._1a{width:19.796188pt;}
._14{width:21.588390pt;}
._d{width:23.070733pt;}
._e{width:23.963374pt;}
._2b{width:25.192179pt;}
._6{width:27.188522pt;}
._17{width:28.167676pt;}
._19{width:29.177219pt;}
._2d{width:30.233170pt;}
._16{width:31.455249pt;}
._2e{width:33.162259pt;}
._18{width:39.551776pt;}
._1c{width:45.648718pt;}
._8{width:61.661897pt;}
._29{width:67.809894pt;}
._21{width:80.769331pt;}
._26{width:89.042330pt;}
._1e{width:98.415206pt;}
._25{width:104.823194pt;}
._20{width:111.900672pt;}
._1f{width:118.069555pt;}
._22{width:125.813965pt;}
._28{width:128.590131pt;}
._23{width:139.871701pt;}
._24{width:292.902368pt;}
._27{width:372.810925pt;}
._11{width:659.456701pt;}
._2a{width:850.301645pt;}
._2c{width:1998.498135pt;}
._12{width:2019.751469pt;}
.fsd{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fse{font-size:42.507200pt;}
.fs8{font-size:46.397853pt;}
.fsf{font-size:47.820800pt;}
.fsa{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:3.044747pt;}
.y40{bottom:5.145434pt;}
.y23{bottom:12.578910pt;}
.y3f{bottom:19.838154pt;}
.y6c{bottom:28.346667pt;}
.y3e{bottom:34.359615pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y1c2{bottom:89.002667pt;}
.y3c{bottom:93.018667pt;}
.ya2{bottom:94.086667pt;}
.y1c9{bottom:95.681333pt;}
.ya7{bottom:96.877333pt;}
.y1c1{bottom:105.740000pt;}
.y265{bottom:108.233333pt;}
.y3b{bottom:108.920000pt;}
.ya1{bottom:110.824000pt;}
.yd6{bottom:111.621333pt;}
.y230{bottom:111.860000pt;}
.y1c8{bottom:112.418667pt;}
.ya6{bottom:113.613333pt;}
.y6b{bottom:113.997333pt;}
.y264{bottom:123.576000pt;}
.y21{bottom:123.790666pt;}
.y3a{bottom:124.820000pt;}
.y1c0{bottom:126.461333pt;}
.y22f{bottom:127.202667pt;}
.ya0{bottom:127.561333pt;}
.yd5{bottom:128.358667pt;}
.y1c7{bottom:129.156000pt;}
.yb0{bottom:130.350667pt;}
.y6a{bottom:130.734667pt;}
.ya5{bottom:134.336000pt;}
.y1f9{bottom:137.604000pt;}
.y263{bottom:138.918667pt;}
.y39{bottom:140.720000pt;}
.y22e{bottom:142.545333pt;}
.y19a{bottom:144.084000pt;}
.y9f{bottom:144.298667pt;}
.yd4{bottom:145.096000pt;}
.y1c6{bottom:145.893333pt;}
.yaf{bottom:147.088000pt;}
.y69{bottom:147.472000pt;}
.y195{bottom:151.390667pt;}
.y1f8{bottom:153.225333pt;}
.y262{bottom:154.261333pt;}
.y1bf{bottom:156.349333pt;}
.y38{bottom:156.621333pt;}
.y22d{bottom:157.888000pt;}
.y199{bottom:158.696000pt;}
.yd3{bottom:161.833333pt;}
.y1c5{bottom:162.630667pt;}
.yae{bottom:163.825333pt;}
.y68{bottom:164.209333pt;}
.y9e{bottom:165.021333pt;}
.y194{bottom:166.001333pt;}
.y261{bottom:169.604000pt;}
.y37{bottom:172.521333pt;}
.y1be{bottom:173.086667pt;}
.y22c{bottom:173.230667pt;}
.y191{bottom:173.308000pt;}
.y18{bottom:175.052000pt;}
.y114{bottom:175.801333pt;}
.y161{bottom:176.334667pt;}
.y1f7{bottom:176.817333pt;}
.yd2{bottom:178.570667pt;}
.y1c4{bottom:179.368000pt;}
.ya4{bottom:180.164000pt;}
.y190{bottom:180.613333pt;}
.y67{bottom:180.946667pt;}
.y9d{bottom:182.954667pt;}
.yad{bottom:184.548000pt;}
.y260{bottom:184.946667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y198{bottom:187.920000pt;}
.y36{bottom:188.421333pt;}
.y22b{bottom:188.573333pt;}
.y1bd{bottom:189.824000pt;}
.y113{bottom:190.413333pt;}
.y15f{bottom:190.946667pt;}
.y193{bottom:195.225333pt;}
.yd1{bottom:195.308000pt;}
.y1c3{bottom:196.105333pt;}
.ya3{bottom:196.901333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y66{bottom:197.684000pt;}
.y25f{bottom:200.289333pt;}
.y1f6{bottom:200.409333pt;}
.y197{bottom:202.532000pt;}
.y22a{bottom:203.916000pt;}
.y35{bottom:204.322667pt;}
.y112{bottom:205.025333pt;}
.y15e{bottom:205.558667pt;}
.y1bc{bottom:206.561333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y192{bottom:209.837333pt;}
.yd0{bottom:212.045333pt;}
.y10e{bottom:212.332000pt;}
.y9c{bottom:212.841333pt;}
.y65{bottom:214.421333pt;}
.yac{bottom:214.436000pt;}
.y25e{bottom:215.632000pt;}
.y1f5{bottom:216.030667pt;}
.y196{bottom:217.144000pt;}
.y229{bottom:219.258667pt;}
.y10d{bottom:219.637333pt;}
.y160{bottom:220.169333pt;}
.y1bb{bottom:223.298667pt;}
.ycf{bottom:228.782667pt;}
.y9b{bottom:229.578667pt;}
.y25d{bottom:230.974667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y64{bottom:231.158667pt;}
.yab{bottom:231.173333pt;}
.y111{bottom:234.249333pt;}
.y228{bottom:234.600000pt;}
.y18f{bottom:238.157333pt;}
.y1f4{bottom:239.621333pt;}
.y1ba{bottom:240.036000pt;}
.y14f{bottom:241.184000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yce{bottom:245.520000pt;}
.y9a{bottom:246.316000pt;}
.y63{bottom:247.896000pt;}
.yaa{bottom:247.910667pt;}
.y110{bottom:248.861333pt;}
.y227{bottom:249.942667pt;}
.y15d{bottom:252.474667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y14e{bottom:255.796000pt;}
.y18b{bottom:259.172000pt;}
.y1b9{bottom:260.758667pt;}
.y25c{bottom:261.658667pt;}
.ycd{bottom:262.257333pt;}
.y99{bottom:263.053333pt;}
.y1f3{bottom:263.213333pt;}
.y10f{bottom:263.473333pt;}
.y62{bottom:264.633333pt;}
.ya9{bottom:264.648000pt;}
.y226{bottom:265.285333pt;}
.y18e{bottom:266.477333pt;}
.y34{bottom:266.804000pt;}
.y15c{bottom:267.086667pt;}
.y14d{bottom:270.408000pt;}
.y18a{bottom:273.782667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y25b{bottom:277.001333pt;}
.y1f2{bottom:278.834667pt;}
.ycc{bottom:278.994667pt;}
.y98{bottom:279.790667pt;}
.y225{bottom:280.628000pt;}
.y18c{bottom:281.089333pt;}
.y61{bottom:281.370667pt;}
.y15b{bottom:281.698667pt;}
.y33{bottom:282.705333pt;}
.y10c{bottom:284.486667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y189{bottom:288.394667pt;}
.y14c{bottom:289.004000pt;}
.y1b8{bottom:290.646667pt;}
.y108{bottom:291.793333pt;}
.y25a{bottom:292.344000pt;}
.y1f1{bottom:294.456000pt;}
.y18d{bottom:295.701333pt;}
.ycb{bottom:295.732000pt;}
.y224{bottom:295.970667pt;}
.y15a{bottom:296.310667pt;}
.y97{bottom:296.528000pt;}
.ya8{bottom:297.325333pt;}
.y60{bottom:298.108000pt;}
.y32{bottom:298.605333pt;}
.y10b{bottom:299.098667pt;}
.y188{bottom:303.006667pt;}
.y14b{bottom:303.616000pt;}
.y107{bottom:306.405333pt;}
.y1b7{bottom:307.384000pt;}
.y259{bottom:307.686667pt;}
.yf{bottom:309.452000pt;}
.y159{bottom:310.922667pt;}
.y223{bottom:311.313333pt;}
.yca{bottom:312.469333pt;}
.y96{bottom:313.265333pt;}
.y10a{bottom:313.710667pt;}
.y31{bottom:314.505333pt;}
.y5f{bottom:314.845333pt;}
.y14a{bottom:318.228000pt;}
.y106{bottom:321.016000pt;}
.y258{bottom:323.029333pt;}
.y187{bottom:324.021333pt;}
.y1b6{bottom:324.121333pt;}
.y158{bottom:325.534667pt;}
.y1f0{bottom:326.017333pt;}
.y222{bottom:326.656000pt;}
.y109{bottom:328.322667pt;}
.yc9{bottom:329.206667pt;}
.y95{bottom:330.002667pt;}
.y5e{bottom:331.582667pt;}
.y143{bottom:332.840000pt;}
.y257{bottom:338.372000pt;}
.y30{bottom:338.376000pt;}
.y186{bottom:338.633333pt;}
.yfe{bottom:339.724000pt;}
.y157{bottom:340.146667pt;}
.y1b5{bottom:340.858667pt;}
.y221{bottom:341.998667pt;}
.y1ef{bottom:342.754667pt;}
.ye{bottom:343.809333pt;}
.y181{bottom:345.938667pt;}
.yc8{bottom:345.944000pt;}
.y94{bottom:346.740000pt;}
.y141{bottom:347.452000pt;}
.y5d{bottom:348.320000pt;}
.y102{bottom:349.336000pt;}
.y185{bottom:353.245333pt;}
.y256{bottom:353.714667pt;}
.y2f{bottom:354.277333pt;}
.y156{bottom:354.757333pt;}
.y105{bottom:356.642667pt;}
.y220{bottom:357.340000pt;}
.y1b4{bottom:357.596000pt;}
.y1ee{bottom:359.492000pt;}
.y17f{bottom:360.550667pt;}
.y142{bottom:362.064000pt;}
.yc7{bottom:362.680000pt;}
.yd{bottom:362.706666pt;}
.y93{bottom:363.477333pt;}
.y101{bottom:363.948000pt;}
.y5c{bottom:365.057333pt;}
.y184{bottom:367.856000pt;}
.y255{bottom:369.056000pt;}
.y155{bottom:369.369333pt;}
.y2e{bottom:370.177333pt;}
.y104{bottom:371.254667pt;}
.y21f{bottom:372.682667pt;}
.y1b3{bottom:374.333333pt;}
.y180{bottom:375.162667pt;}
.y1ed{bottom:376.229333pt;}
.y149{bottom:376.676000pt;}
.y100{bottom:378.560000pt;}
.yc6{bottom:379.417333pt;}
.y92{bottom:380.214667pt;}
.y5b{bottom:381.794667pt;}
.y183{bottom:382.468000pt;}
.y154{bottom:383.981333pt;}
.y254{bottom:384.398667pt;}
.y103{bottom:385.866667pt;}
.y21e{bottom:388.025333pt;}
.y1b2{bottom:391.070667pt;}
.y1ec{bottom:392.966667pt;}
.yff{bottom:393.172000pt;}
.y148{bottom:395.273333pt;}
.y2d{bottom:395.376000pt;}
.yc5{bottom:396.154667pt;}
.y91{bottom:396.952000pt;}
.y182{bottom:397.080000pt;}
.y153{bottom:398.593333pt;}
.y253{bottom:399.741333pt;}
.y5a{bottom:402.517333pt;}
.y21d{bottom:403.368000pt;}
.y1b1{bottom:407.808000pt;}
.y1eb{bottom:409.704000pt;}
.y147{bottom:409.884000pt;}
.yc4{bottom:412.892000pt;}
.y152{bottom:413.205333pt;}
.y90{bottom:413.689333pt;}
.yfd{bottom:414.186667pt;}
.y252{bottom:415.084000pt;}
.y17e{bottom:418.094667pt;}
.y21c{bottom:418.710667pt;}
.y2c{bottom:419.246667pt;}
.y146{bottom:424.496000pt;}
.y1b0{bottom:424.545333pt;}
.y1ea{bottom:426.441333pt;}
.y151{bottom:427.817333pt;}
.yfb{bottom:428.797333pt;}
.yc3{bottom:429.629333pt;}
.y8f{bottom:430.426667pt;}
.y17d{bottom:432.706667pt;}
.y21b{bottom:434.053333pt;}
.y2b{bottom:435.146667pt;}
.yf8{bottom:436.104000pt;}
.y145{bottom:439.108000pt;}
.y17a{bottom:440.012000pt;}
.y1af{bottom:441.282667pt;}
.y150{bottom:442.429333pt;}
.y1e9{bottom:443.178667pt;}
.yfa{bottom:443.409333pt;}
.y251{bottom:445.769333pt;}
.yc2{bottom:446.366667pt;}
.yc{bottom:446.990669pt;}
.y8e{bottom:447.164000pt;}
.y17c{bottom:447.318667pt;}
.y21a{bottom:449.396000pt;}
.yf7{bottom:450.716000pt;}
.y2a{bottom:451.048000pt;}
.y144{bottom:453.720000pt;}
.y1ae{bottom:458.020000pt;}
.yf9{bottom:458.021333pt;}
.y1e8{bottom:459.916000pt;}
.y250{bottom:461.112000pt;}
.y17b{bottom:461.929333pt;}
.yb{bottom:462.990669pt;}
.yc1{bottom:463.104000pt;}
.y8d{bottom:463.901333pt;}
.y219{bottom:464.738667pt;}
.y29{bottom:466.948000pt;}
.y59{bottom:469.317333pt;}
.yfc{bottom:472.633333pt;}
.yf1{bottom:473.178667pt;}
.y140{bottom:474.734667pt;}
.y1ad{bottom:474.757333pt;}
.y24f{bottom:476.454667pt;}
.y1e7{bottom:476.653333pt;}
.ya{bottom:478.990666pt;}
.yc0{bottom:479.841333pt;}
.y218{bottom:480.081333pt;}
.y8c{bottom:480.638667pt;}
.y28{bottom:482.848000pt;}
.y179{bottom:482.944000pt;}
.y58{bottom:486.612000pt;}
.y13f{bottom:489.346667pt;}
.y1ac{bottom:491.494667pt;}
.y24e{bottom:491.797333pt;}
.y1e6{bottom:493.390667pt;}
.yf6{bottom:493.648000pt;}
.y9{bottom:494.990666pt;}
.y217{bottom:495.422667pt;}
.y13c{bottom:496.652000pt;}
.y8b{bottom:497.376000pt;}
.y178{bottom:497.556000pt;}
.y27{bottom:498.749333pt;}
.ybf{bottom:500.564000pt;}
.yf3{bottom:500.953333pt;}
.y13e{bottom:503.957333pt;}
.y24d{bottom:507.138667pt;}
.y1ab{bottom:508.232000pt;}
.yf5{bottom:508.260000pt;}
.y1e5{bottom:510.128000pt;}
.y216{bottom:510.765333pt;}
.y174{bottom:512.168000pt;}
.y8a{bottom:514.113333pt;}
.y26{bottom:514.649333pt;}
.yf2{bottom:515.565333pt;}
.y13d{bottom:518.569333pt;}
.y173{bottom:519.473333pt;}
.y57{bottom:519.848000pt;}
.y24c{bottom:522.481333pt;}
.yf4{bottom:522.870667pt;}
.y1aa{bottom:524.968000pt;}
.y215{bottom:526.108000pt;}
.y177{bottom:526.780000pt;}
.y1e4{bottom:526.865333pt;}
.ybe{bottom:530.452000pt;}
.y25{bottom:530.549333pt;}
.y89{bottom:530.850667pt;}
.y56{bottom:537.142667pt;}
.y24b{bottom:537.824000pt;}
.y13b{bottom:539.584000pt;}
.y176{bottom:541.392000pt;}
.y214{bottom:541.450667pt;}
.y1a9{bottom:541.705333pt;}
.y1e3{bottom:543.602667pt;}
.yec{bottom:543.885333pt;}
.y22{bottom:546.450634pt;}
.ybd{bottom:547.189333pt;}
.y88{bottom:547.588000pt;}
.yf0{bottom:551.190667pt;}
.y24a{bottom:553.166667pt;}
.y13a{bottom:554.196000pt;}
.y55{bottom:554.437333pt;}
.y175{bottom:556.002667pt;}
.y213{bottom:556.793333pt;}
.y1a8{bottom:558.442667pt;}
.yeb{bottom:558.497333pt;}
.y1e2{bottom:560.340000pt;}
.ybc{bottom:563.926667pt;}
.y87{bottom:564.325333pt;}
.yef{bottom:565.802667pt;}
.y249{bottom:568.509333pt;}
.y136{bottom:568.808000pt;}
.y54{bottom:571.733333pt;}
.y212{bottom:572.136000pt;}
.yea{bottom:573.109333pt;}
.y8{bottom:573.786667pt;}
.y1a7{bottom:575.180000pt;}
.y135{bottom:576.113333pt;}
.y172{bottom:577.017333pt;}
.y1e1{bottom:577.077333pt;}
.ye6{bottom:580.414667pt;}
.ybb{bottom:580.664000pt;}
.y86{bottom:581.062667pt;}
.y137{bottom:583.420000pt;}
.y248{bottom:583.852000pt;}
.y211{bottom:587.478667pt;}
.ye9{bottom:587.721333pt;}
.y53{bottom:589.028000pt;}
.y171{bottom:591.629333pt;}
.y1a6{bottom:591.917333pt;}
.y7{bottom:592.685334pt;}
.y1e0{bottom:593.814667pt;}
.yee{bottom:595.026667pt;}
.yba{bottom:597.401333pt;}
.y85{bottom:597.800000pt;}
.y139{bottom:598.030667pt;}
.y247{bottom:599.194667pt;}
.ye8{bottom:602.333333pt;}
.y210{bottom:602.821333pt;}
.y16e{bottom:606.241333pt;}
.y52{bottom:606.322667pt;}
.y1a5{bottom:608.654667pt;}
.yed{bottom:609.638667pt;}
.y1df{bottom:610.552000pt;}
.y138{bottom:612.642667pt;}
.yb9{bottom:614.138667pt;}
.y84{bottom:614.537333pt;}
.ye7{bottom:616.944000pt;}
.y20f{bottom:618.162667pt;}
.y170{bottom:620.853333pt;}
.y51{bottom:623.618667pt;}
.y1a4{bottom:625.392000pt;}
.y1de{bottom:627.289333pt;}
.y246{bottom:629.878667pt;}
.yb8{bottom:630.876000pt;}
.y83{bottom:631.274667pt;}
.y20e{bottom:633.505333pt;}
.y134{bottom:633.657333pt;}
.y16f{bottom:635.465333pt;}
.y50{bottom:640.913333pt;}
.y130{bottom:640.962667pt;}
.y1a3{bottom:642.129333pt;}
.y1dd{bottom:644.026667pt;}
.y245{bottom:645.221333pt;}
.y6{bottom:645.598667pt;}
.yb7{bottom:647.613333pt;}
.ye5{bottom:647.708000pt;}
.y82{bottom:648.012000pt;}
.y133{bottom:648.269333pt;}
.y20d{bottom:648.848000pt;}
.y12e{bottom:655.574667pt;}
.y16d{bottom:656.478667pt;}
.y4f{bottom:658.209333pt;}
.y1a2{bottom:658.866667pt;}
.y244{bottom:660.564000pt;}
.y1dc{bottom:660.764000pt;}
.y132{bottom:662.881333pt;}
.y16c{bottom:663.785333pt;}
.y20c{bottom:664.190667pt;}
.yb6{bottom:664.350667pt;}
.y81{bottom:664.749333pt;}
.y3{bottom:668.977329pt;}
.y12f{bottom:670.186667pt;}
.y4e{bottom:675.504000pt;}
.y1a1{bottom:675.604000pt;}
.y243{bottom:675.906667pt;}
.y131{bottom:677.493333pt;}
.y1db{bottom:677.501333pt;}
.y20b{bottom:679.533333pt;}
.ye4{bottom:680.689333pt;}
.yb5{bottom:681.088000pt;}
.y80{bottom:681.485333pt;}
.y242{bottom:691.249333pt;}
.y16b{bottom:692.104000pt;}
.y4d{bottom:692.798667pt;}
.y1da{bottom:694.238667pt;}
.y20a{bottom:694.876000pt;}
.y1a0{bottom:696.326667pt;}
.yb4{bottom:697.825333pt;}
.y7f{bottom:698.222667pt;}
.y12d{bottom:698.506667pt;}
.ye3{bottom:701.412000pt;}
.y241{bottom:706.592000pt;}
.y16a{bottom:706.716000pt;}
.y4c{bottom:710.094667pt;}
.y209{bottom:710.218667pt;}
.y19f{bottom:710.274667pt;}
.y1d9{bottom:710.976000pt;}
.y12c{bottom:713.118667pt;}
.yb3{bottom:714.562667pt;}
.y7e{bottom:714.960000pt;}
.y240{bottom:721.934667pt;}
.y208{bottom:725.561333pt;}
.y4b{bottom:727.389333pt;}
.y1d8{bottom:727.713333pt;}
.y12b{bottom:727.730667pt;}
.yb2{bottom:731.300000pt;}
.y7d{bottom:731.697333pt;}
.y169{bottom:735.036000pt;}
.y23f{bottom:737.277333pt;}
.y207{bottom:740.904000pt;}
.y12a{bottom:742.342667pt;}
.y1d7{bottom:744.450667pt;}
.y4a{bottom:744.684000pt;}
.ye2{bottom:748.036000pt;}
.y7c{bottom:748.434667pt;}
.y168{bottom:749.648000pt;}
.y19e{bottom:750.552000pt;}
.yb1{bottom:752.021333pt;}
.y23e{bottom:752.620000pt;}
.y206{bottom:756.245333pt;}
.y129{bottom:756.954667pt;}
.y1d6{bottom:761.186667pt;}
.y49{bottom:761.980000pt;}
.y167{bottom:764.260000pt;}
.ye1{bottom:764.773333pt;}
.y19c{bottom:765.164000pt;}
.y7b{bottom:765.172000pt;}
.y23d{bottom:767.961333pt;}
.y123{bottom:771.566667pt;}
.y205{bottom:771.588000pt;}
.y1d5{bottom:777.924000pt;}
.y121{bottom:778.872000pt;}
.y48{bottom:779.274667pt;}
.y19d{bottom:779.776000pt;}
.ye0{bottom:781.510667pt;}
.y2{bottom:781.661334pt;}
.y7a{bottom:781.909333pt;}
.y23c{bottom:783.304000pt;}
.y122{bottom:786.177333pt;}
.y204{bottom:786.930667pt;}
.y162{bottom:793.484000pt;}
.y1d4{bottom:794.661333pt;}
.ydf{bottom:798.248000pt;}
.y79{bottom:798.646667pt;}
.y128{bottom:800.789333pt;}
.y203{bottom:802.273333pt;}
.y166{bottom:808.096000pt;}
.y1d3{bottom:811.398667pt;}
.y47{bottom:813.573333pt;}
.y23b{bottom:813.989333pt;}
.yde{bottom:814.985333pt;}
.y78{bottom:815.384000pt;}
.y127{bottom:815.401333pt;}
.y202{bottom:817.616000pt;}
.y165{bottom:822.708000pt;}
.y1d2{bottom:828.136000pt;}
.y23a{bottom:829.332000pt;}
.y126{bottom:830.013333pt;}
.ydd{bottom:831.722667pt;}
.y46{bottom:831.777333pt;}
.y77{bottom:832.121333pt;}
.y201{bottom:832.958667pt;}
.y164{bottom:837.320000pt;}
.y125{bottom:844.625333pt;}
.y239{bottom:844.674667pt;}
.y1d1{bottom:844.873333pt;}
.y45{bottom:846.122667pt;}
.y200{bottom:848.301333pt;}
.ydc{bottom:848.460000pt;}
.y76{bottom:848.858667pt;}
.y19b{bottom:851.930667pt;}
.y163{bottom:851.932000pt;}
.y124{bottom:859.237333pt;}
.y1{bottom:859.312000pt;}
.y238{bottom:860.017333pt;}
.y1d0{bottom:861.610667pt;}
.y1ff{bottom:863.644000pt;}
.ydb{bottom:865.197333pt;}
.y75{bottom:865.596000pt;}
.y237{bottom:875.360000pt;}
.y1cf{bottom:878.348000pt;}
.y1fe{bottom:878.986667pt;}
.y11c{bottom:880.250667pt;}
.yda{bottom:881.934667pt;}
.y74{bottom:882.333333pt;}
.y44{bottom:885.836000pt;}
.y120{bottom:887.557333pt;}
.y236{bottom:890.702667pt;}
.y1fd{bottom:894.328000pt;}
.y11b{bottom:894.862667pt;}
.y1ce{bottom:895.085333pt;}
.yd9{bottom:898.672000pt;}
.y73{bottom:899.070667pt;}
.y11f{bottom:902.169333pt;}
.y235{bottom:906.044000pt;}
.y11a{bottom:909.474667pt;}
.y1cd{bottom:911.822667pt;}
.y1fc{bottom:913.656000pt;}
.yd8{bottom:915.409333pt;}
.y72{bottom:915.808000pt;}
.y116{bottom:916.781333pt;}
.y43{bottom:921.320000pt;}
.y234{bottom:921.386667pt;}
.y119{bottom:924.086667pt;}
.y1cc{bottom:928.560000pt;}
.y11e{bottom:931.393333pt;}
.y71{bottom:932.545333pt;}
.yd7{bottom:936.132000pt;}
.y233{bottom:936.729333pt;}
.y118{bottom:938.698667pt;}
.y1fb{bottom:943.544000pt;}
.y1cb{bottom:945.297333pt;}
.y11d{bottom:946.005333pt;}
.y42{bottom:946.425333pt;}
.y70{bottom:949.282667pt;}
.y232{bottom:952.072000pt;}
.y117{bottom:953.310667pt;}
.y1ca{bottom:962.034667pt;}
.y6f{bottom:966.020000pt;}
.y1fa{bottom:967.136000pt;}
.y231{bottom:967.414667pt;}
.y41{bottom:971.530667pt;}
.y6e{bottom:982.757333pt;}
.y115{bottom:984.073333pt;}
.y3d{bottom:1010.186667pt;}
.y6d{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h13{height:27.672303pt;}
.h7{height:28.560000pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.he{height:32.246508pt;}
.hc{height:32.284045pt;}
.h15{height:34.430976pt;}
.h1a{height:35.052646pt;}
.h14{height:36.896250pt;}
.h17{height:38.256384pt;}
.h10{height:38.947124pt;}
.hf{height:39.846430pt;}
.h6{height:40.800000pt;}
.h16{height:41.508454pt;}
.h3{height:42.840000pt;}
.hd{height:45.272024pt;}
.h18{height:46.120196pt;}
.h12{height:48.360277pt;}
.h2{height:48.960000pt;}
.h11{height:68.861952pt;}
.h5{height:69.360000pt;}
.h19{height:70.729788pt;}
.h1b{height:70.735121pt;}
.h1c{height:99.956454pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:66.991004pt;}
.w5{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:26.021437pt;}
.x5{left:47.621398pt;}
.x7{left:53.458976pt;}
.x2a{left:55.781333pt;}
.x2f{left:57.602667pt;}
.x25{left:61.182667pt;}
.x23{left:62.234667pt;}
.x21{left:64.440000pt;}
.x30{left:65.612000pt;}
.x26{left:66.688000pt;}
.x29{left:68.033333pt;}
.x27{left:69.354667pt;}
.x31{left:70.382667pt;}
.x2e{left:71.589333pt;}
.x2d{left:74.458667pt;}
.x3e{left:75.710667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x24{left:134.206667pt;}
.x4{left:180.874667pt;}
.x1a{left:220.012000pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.xc{left:250.204000pt;}
.x16{left:253.709333pt;}
.x20{left:266.021333pt;}
.xa{left:273.912000pt;}
.xb{left:284.373333pt;}
.x1e{left:307.866667pt;}
.x1b{left:312.565333pt;}
.x2b{left:313.682667pt;}
.x1c{left:323.272000pt;}
.x3d{left:332.261333pt;}
.x2c{left:337.854667pt;}
.x39{left:346.678667pt;}
.x36{left:360.165333pt;}
.xd{left:363.582667pt;}
.x37{left:364.729333pt;}
.x11{left:375.884000pt;}
.x3c{left:379.458667pt;}
.x17{left:383.621333pt;}
.x3b{left:384.817333pt;}
.xe{left:394.512000pt;}
.x3{left:404.408000pt;}
.x3f{left:413.737333pt;}
.x3a{left:434.010667pt;}
.x1d{left:449.048000pt;}
.x1f{left:457.612000pt;}
.x10{left:464.692000pt;}
.x12{left:511.120000pt;}
.xf{left:525.778667pt;}
.x28{left:538.994667pt;}
.x22{left:540.657333pt;}
.x32{left:544.858667pt;}
.x14{left:555.084000pt;}
.x38{left:604.684000pt;}
.x18{left:647.560000pt;}
.x13{left:649.037333pt;}
.x33{left:682.661333pt;}
.x15{left:694.705333pt;}
.x34{left:699.337333pt;}
.x35{left:740.436000pt;}
.x19{left:744.754667pt;}
}




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