
    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_abec2c48419070d546c4cc8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_55d240f881deb6da3e2147cb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_df41690a4fabfffb6f39912f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fd5b70fd9731b3120757aed3.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_12bf921ad65216e075a74765.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_55f0d9a5228ad8d9533bf031.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.761000;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_3a7b3f31175c8ff6fa14f1b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m17{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);}
.m23{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);}
.m1e{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);}
.m6{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);}
.m16{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);}
.m29{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);}
.m10{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);}
.m27{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);}
.mf{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);}
.m2{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);}
.mb{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);}
.m7{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);}
.m25{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);}
.m18{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);}
.m4{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);}
.m12{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);}
.m24{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);}
.me{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);}
.m9{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);}
.m21{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);}
.m28{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);}
.m8{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);}
.m1a{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);}
.m20{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);}
.m26{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);}
.m11{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);}
.m1c{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);}
.m15{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);}
.m14{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);}
.mc{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);}
.m22{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);}
.m1d{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);}
.m19{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);}
.m1b{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);}
.v5{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000435px;}
.ls1{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.002555px;}
.ls2{letter-spacing:0.003299px;}
.lse{letter-spacing:0.004200px;}
.ls18{letter-spacing:0.004267px;}
.ls11{letter-spacing:0.022114px;}
.lsf{letter-spacing:0.022366px;}
.ls13{letter-spacing:0.024789px;}
.ls15{letter-spacing:0.648088px;}
.ls16{letter-spacing:2.271428px;}
.ls3{letter-spacing:2.989200px;}
.lsb{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.440400px;}
.lsc{letter-spacing:14.131910px;}
.ls14{letter-spacing:14.764573px;}
.lsa{letter-spacing:14.943900px;}
.lsd{letter-spacing:14.946860px;}
.ls8{letter-spacing:15.003676px;}
.ls7{letter-spacing:15.063451px;}
.ls9{letter-spacing:19.128192px;}
.ls4{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{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;}
}
.wsd{word-spacing:-22.718660px;}
.ws4f{word-spacing:-14.943900px;}
.ws4c{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.wsa0{word-spacing:-3.466985px;}
.ws79{word-spacing:-3.168107px;}
.wsa9{word-spacing:-3.120307px;}
.ws5f{word-spacing:-2.809453px;}
.ws82{word-spacing:-2.630126px;}
.ws97{word-spacing:-2.570351px;}
.ws2c{word-spacing:-2.211697px;}
.wsc6{word-spacing:-2.151936px;}
.ws40{word-spacing:-2.151922px;}
.ws38{word-spacing:-2.032370px;}
.ws22{word-spacing:-1.613941px;}
.ws46{word-spacing:-1.494390px;}
.ws6b{word-spacing:-1.434614px;}
.ws9a{word-spacing:-1.374839px;}
.ws8c{word-spacing:-1.315063px;}
.ws6a{word-spacing:-1.255288px;}
.ws9f{word-spacing:-1.195512px;}
.ws3c{word-spacing:-1.135736px;}
.ws56{word-spacing:-1.075961px;}
.wsbd{word-spacing:-1.022170px;}
.ws73{word-spacing:-0.956410px;}
.ws2f{word-spacing:-0.896634px;}
.ws4e{word-spacing:-0.836858px;}
.wsba{word-spacing:-0.806976px;}
.ws50{word-spacing:-0.777083px;}
.wsbb{word-spacing:-0.753178px;}
.ws64{word-spacing:-0.657532px;}
.wsa4{word-spacing:-0.645581px;}
.ws26{word-spacing:-0.597756px;}
.wsa2{word-spacing:-0.430387px;}
.ws98{word-spacing:-0.418429px;}
.ws6f{word-spacing:-0.358654px;}
.ws1e{word-spacing:-0.298878px;}
.wsa7{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.wsb0{word-spacing:-0.215194px;}
.ws3f{word-spacing:-0.179327px;}
.wsc5{word-spacing:-0.161395px;}
.ws3b{word-spacing:-0.119551px;}
.wsae{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.wsb3{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.ws2{word-spacing:0.083686px;}
.ws17{word-spacing:0.107597px;}
.ws24{word-spacing:0.119551px;}
.ws16{word-spacing:0.161395px;}
.ws23{word-spacing:0.179327px;}
.wsa8{word-spacing:0.215194px;}
.ws45{word-spacing:0.239102px;}
.wsb5{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.ws2a{word-spacing:0.358654px;}
.ws5d{word-spacing:0.418429px;}
.ws5c{word-spacing:0.478205px;}
.ws1b{word-spacing:0.645581px;}
.ws85{word-spacing:0.657532px;}
.ws30{word-spacing:0.717307px;}
.ws69{word-spacing:0.777083px;}
.wsa6{word-spacing:0.806976px;}
.ws99{word-spacing:0.836858px;}
.ws42{word-spacing:1.016185px;}
.ws70{word-spacing:1.075961px;}
.ws86{word-spacing:1.135736px;}
.ws62{word-spacing:1.195512px;}
.ws28{word-spacing:1.255288px;}
.wsbf{word-spacing:1.291162px;}
.ws3d{word-spacing:1.315063px;}
.ws37{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws36{word-spacing:1.434614px;}
.ws63{word-spacing:1.494390px;}
.ws95{word-spacing:1.554166px;}
.ws21{word-spacing:1.613941px;}
.ws47{word-spacing:1.673717px;}
.ws15{word-spacing:1.721549px;}
.ws19{word-spacing:1.882944px;}
.ws72{word-spacing:1.912819px;}
.ws49{word-spacing:2.032370px;}
.ws89{word-spacing:2.092146px;}
.ws3e{word-spacing:2.151922px;}
.ws34{word-spacing:2.211697px;}
.ws57{word-spacing:2.271473px;}
.ws5b{word-spacing:2.331248px;}
.ws4{word-spacing:2.510568px;}
.ws5a{word-spacing:2.510575px;}
.ws33{word-spacing:2.570351px;}
.ws1{word-spacing:2.619444px;}
.ws8b{word-spacing:2.630126px;}
.ws27{word-spacing:2.689902px;}
.wsb8{word-spacing:2.797517px;}
.ws32{word-spacing:2.809453px;}
.ws94{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws68{word-spacing:2.929004px;}
.ws14{word-spacing:2.958912px;}
.ws3a{word-spacing:2.988780px;}
.ws78{word-spacing:3.048556px;}
.ws75{word-spacing:3.108331px;}
.ws77{word-spacing:3.168107px;}
.wsaa{word-spacing:3.174106px;}
.wsc0{word-spacing:3.222710px;}
.wsc2{word-spacing:3.223814px;}
.wsc1{word-spacing:3.224026px;}
.wsa3{word-spacing:3.224822px;}
.ws6d{word-spacing:3.227882px;}
.ws13{word-spacing:3.227904px;}
.ws4a{word-spacing:3.287658px;}
.wsac{word-spacing:3.443098px;}
.ws93{word-spacing:3.466985px;}
.wsd1{word-spacing:3.496896px;}
.ws8a{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wsa1{word-spacing:3.646312px;}
.ws80{word-spacing:3.825638px;}
.ws43{word-spacing:3.885414px;}
.ws9e{word-spacing:3.945190px;}
.ws41{word-spacing:4.004965px;}
.ws48{word-spacing:4.064741px;}
.wsaf{word-spacing:4.088678px;}
.ws44{word-spacing:4.124516px;}
.ws8d{word-spacing:4.184292px;}
.ws6c{word-spacing:4.303843px;}
.ws6e{word-spacing:4.483170px;}
.ws60{word-spacing:4.542946px;}
.ws61{word-spacing:4.602721px;}
.ws8e{word-spacing:4.722272px;}
.ws1a{word-spacing:4.770726px;}
.ws59{word-spacing:4.782048px;}
.ws7f{word-spacing:4.961375px;}
.wsa5{word-spacing:5.037752px;}
.ws5e{word-spacing:5.260253px;}
.wscc{word-spacing:5.272243px;}
.ws67{word-spacing:5.379804px;}
.ws20{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.ws1f{word-spacing:5.499355px;}
.ws76{word-spacing:5.559131px;}
.ws1d{word-spacing:5.618906px;}
.ws51{word-spacing:5.678682px;}
.ws52{word-spacing:5.738458px;}
.ws71{word-spacing:5.798233px;}
.ws66{word-spacing:5.858009px;}
.ws74{word-spacing:5.917784px;}
.ws31{word-spacing:6.156887px;}
.ws87{word-spacing:6.216662px;}
.ws88{word-spacing:6.336214px;}
.wsb2{word-spacing:6.402010px;}
.ws7e{word-spacing:6.455765px;}
.ws58{word-spacing:6.635092px;}
.ws8f{word-spacing:6.754643px;}
.ws81{word-spacing:7.113296px;}
.ws9d{word-spacing:7.173072px;}
.wsb4{word-spacing:7.208986px;}
.ws2b{word-spacing:7.412174px;}
.wsc9{word-spacing:7.477978px;}
.ws54{word-spacing:7.651277px;}
.ws9c{word-spacing:7.830604px;}
.ws55{word-spacing:8.129482px;}
.ws9b{word-spacing:8.189257px;}
.ws96{word-spacing:8.787013px;}
.ws8{word-spacing:9.833058px;}
.ws12{word-spacing:9.927684px;}
.ws5{word-spacing:10.418078px;}
.ws9{word-spacing:11.841512px;}
.ws2d{word-spacing:11.910929px;}
.wsbc{word-spacing:12.373632px;}
.wsc8{word-spacing:12.965414px;}
.wsb1{word-spacing:13.144254px;}
.wscf{word-spacing:13.234406px;}
.wsb6{word-spacing:13.288205px;}
.wsc3{word-spacing:13.382995px;}
.wsce{word-spacing:13.386499px;}
.wsc7{word-spacing:13.387958px;}
.wsbe{word-spacing:13.389120px;}
.wsc4{word-spacing:13.389485px;}
.wsb7{word-spacing:13.391002px;}
.wsad{word-spacing:13.395802px;}
.wsd0{word-spacing:13.503398px;}
.wsab{word-spacing:13.554572px;}
.wscd{word-spacing:13.610995px;}
.ws35{word-spacing:14.884124px;}
.ws6{word-spacing:15.481836px;}
.wsb9{word-spacing:16.193318px;}
.ws65{word-spacing:18.470660px;}
.wscb{word-spacing:18.668045px;}
.wsca{word-spacing:20.873779px;}
.ws53{word-spacing:21.220338px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.ws4d{word-spacing:95.330765px;}
.ws90{word-spacing:172.800461px;}
.ws84{word-spacing:190.009200px;}
.ws83{word-spacing:301.486234px;}
.ws91{word-spacing:342.265421px;}
.ws92{word-spacing:350.873165px;}
.ws4b{word-spacing:890.309722px;}
.ws7d{word-spacing:1043.527565px;}
.ws7b{word-spacing:1048.477018px;}
.ws7a{word-spacing:1061.926618px;}
.ws7c{word-spacing:1085.974502px;}
._f{margin-left:-33.928679px;}
._3a{margin-left:-31.400316px;}
._11{margin-left:-27.437000px;}
._3b{margin-left:-25.500391px;}
._3c{margin-left:-20.343425px;}
._17{margin-left:-6.874194px;}
._8{margin-left:-5.666782px;}
._0{margin-left:-4.602708px;}
._1{margin-left:-3.096367px;}
._5{margin-left:-1.464498px;}
._37{width:1.548446px;}
._7{width:2.996386px;}
._10{width:7.531726px;}
._2{width:9.707530px;}
._3{width:12.971268px;}
._c{width:14.148979px;}
._9{width:15.386342px;}
._d{width:16.785101px;}
._a{width:17.831423px;}
._14{width:18.907073px;}
._15{width:20.353588px;}
._b{width:21.483511px;}
._21{width:22.714720px;}
._e{width:23.790689px;}
._4{width:25.314894px;}
._16{width:27.048455px;}
._1e{width:28.273859px;}
._20{width:29.887800px;}
._19{width:31.770727px;}
._6{width:33.355008px;}
._1c{width:35.476814px;}
._18{width:36.498821px;}
._2e{width:37.556983px;}
._38{width:39.177494px;}
._39{width:40.492554px;}
._1d{width:42.709662px;}
._1b{width:106.682227px;}
._1a{width:108.780365px;}
._2b{width:203.196557px;}
._29{width:216.646157px;}
._30{width:219.903919px;}
._25{width:225.938822px;}
._2a{width:242.845978px;}
._24{width:247.687834px;}
._2d{width:256.349376px;}
._31{width:261.992354px;}
._2c{width:269.745178px;}
._28{width:274.640832px;}
._27{width:288.036634px;}
._35{width:329.300006px;}
._32{width:334.141862px;}
._2f{width:363.246797px;}
._33{width:385.190690px;}
._34{width:434.523823px;}
._26{width:653.273971px;}
._23{width:670.561207px;}
._1f{width:731.819635px;}
._22{width:882.281759px;}
._12{width:905.307788px;}
._36{width:2537.388707px;}
._13{width:2561.298707px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3b{bottom:9.233944px;}
.y3a{bottom:26.903761px;}
.y68{bottom:31.890000px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.yd1{bottom:103.621500px;}
.y167{bottom:104.116500px;}
.y38{bottom:104.646000px;}
.y158{bottom:107.871000px;}
.y20e{bottom:110.559000px;}
.y18c{bottom:113.547000px;}
.y9e{bottom:117.802500px;}
.yfa{bottom:118.251000px;}
.yd0{bottom:122.449500px;}
.y37{bottom:122.535000px;}
.y166{bottom:122.946000px;}
.y157{bottom:126.700500px;}
.y20d{bottom:127.819500px;}
.y67{bottom:128.881500px;}
.y18b{bottom:132.376500px;}
.y125{bottom:133.045500px;}
.y9d{bottom:136.632000px;}
.yf9{bottom:137.080500px;}
.y138{bottom:137.529000px;}
.y23{bottom:139.264499px;}
.y36{bottom:140.422500px;}
.ycf{bottom:141.279000px;}
.y165{bottom:141.775500px;}
.y20c{bottom:145.080000px;}
.y156{bottom:145.530000px;}
.y66{bottom:147.711000px;}
.y18a{bottom:151.206000px;}
.y124{bottom:151.875000px;}
.y1a4{bottom:154.117500px;}
.y9c{bottom:155.461500px;}
.yf8{bottom:155.910000px;}
.y137{bottom:156.358500px;}
.y35{bottom:158.310000px;}
.yce{bottom:160.108500px;}
.y164{bottom:160.605000px;}
.y20b{bottom:162.340500px;}
.y155{bottom:164.359500px;}
.y65{bottom:166.540500px;}
.y189{bottom:170.035500px;}
.y123{bottom:170.704500px;}
.y1d5{bottom:171.660000px;}
.y9b{bottom:174.291000px;}
.yf7{bottom:174.739500px;}
.y136{bottom:175.188000px;}
.y34{bottom:176.199000px;}
.y163{bottom:179.434500px;}
.y20a{bottom:179.601000px;}
.y1a3{bottom:180.658500px;}
.ycd{bottom:183.421500px;}
.y64{bottom:185.370000px;}
.y1d4{bottom:188.097000px;}
.y188{bottom:188.865000px;}
.y122{bottom:189.534000px;}
.y9a{bottom:193.120500px;}
.yf6{bottom:193.569000px;}
.y135{bottom:194.017500px;}
.y33{bottom:194.086500px;}
.y209{bottom:196.860000px;}
.y1a{bottom:196.933500px;}
.y1a2{bottom:198.232500px;}
.y162{bottom:198.264000px;}
.y63{bottom:204.199500px;}
.y1d3{bottom:204.535500px;}
.y187{bottom:207.694500px;}
.y121{bottom:208.363500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y154{bottom:209.821500px;}
.y99{bottom:211.950000px;}
.y32{bottom:211.974000px;}
.yf5{bottom:212.398500px;}
.y134{bottom:212.847000px;}
.y208{bottom:214.120500px;}
.y1a1{bottom:215.806500px;}
.ycc{bottom:217.045500px;}
.y161{bottom:217.093500px;}
.y1d2{bottom:220.974000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y62{bottom:223.029000px;}
.y153{bottom:226.258500px;}
.y186{bottom:226.524000px;}
.y120{bottom:227.193000px;}
.y31{bottom:229.863000px;}
.y98{bottom:230.779500px;}
.yf4{bottom:231.228000px;}
.y207{bottom:231.381000px;}
.y133{bottom:231.676500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ycb{bottom:235.875000px;}
.y160{bottom:235.923000px;}
.y61{bottom:241.858500px;}
.y1a0{bottom:242.346000px;}
.y152{bottom:242.697000px;}
.y1d1{bottom:244.615500px;}
.y185{bottom:245.353500px;}
.y11f{bottom:246.022500px;}
.y206{bottom:248.641500px;}
.y97{bottom:249.609000px;}
.yf3{bottom:250.057500px;}
.y132{bottom:250.506000px;}
.yca{bottom:254.704500px;}
.y15f{bottom:254.752500px;}
.y151{bottom:259.135500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y60{bottom:260.688000px;}
.y184{bottom:264.183000px;}
.y11e{bottom:264.852000px;}
.y205{bottom:265.902000px;}
.y1d0{bottom:268.255500px;}
.y96{bottom:268.438500px;}
.yf2{bottom:268.887000px;}
.y131{bottom:269.335500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.yc9{bottom:273.534000px;}
.y15e{bottom:273.582000px;}
.y5f{bottom:279.517500px;}
.y150{bottom:282.777000px;}
.y183{bottom:283.012500px;}
.y203{bottom:283.162500px;}
.y11d{bottom:283.681500px;}
.y1cf{bottom:284.694000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y95{bottom:287.268000px;}
.yf1{bottom:287.716500px;}
.y204{bottom:288.045000px;}
.y130{bottom:288.165000px;}
.yc8{bottom:292.363500px;}
.y15d{bottom:292.411500px;}
.y19f{bottom:295.428000px;}
.y30{bottom:297.166500px;}
.y5e{bottom:298.347000px;}
.y202{bottom:300.423000px;}
.y1ce{bottom:301.132500px;}
.y182{bottom:301.842000px;}
.y11c{bottom:302.511000px;}
.y94{bottom:306.097500px;}
.y14f{bottom:306.417000px;}
.y12f{bottom:306.994500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yf0{bottom:311.029500px;}
.yc7{bottom:311.193000px;}
.y15c{bottom:311.241000px;}
.y2f{bottom:315.054000px;}
.y5d{bottom:317.176500px;}
.y1cd{bottom:317.571000px;}
.y201{bottom:317.683500px;}
.y181{bottom:320.671500px;}
.y11b{bottom:321.340500px;}
.y19e{bottom:321.967500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y93{bottom:324.927000px;}
.y12e{bottom:325.824000px;}
.yc6{bottom:330.022500px;}
.y15b{bottom:330.070500px;}
.y2e{bottom:332.941500px;}
.y1cc{bottom:334.009500px;}
.y200{bottom:334.944000px;}
.y5c{bottom:336.006000px;}
.y14e{bottom:338.037000px;}
.y180{bottom:339.501000px;}
.y11a{bottom:340.170000px;}
.y92{bottom:343.756500px;}
.yef{bottom:344.653500px;}
.y11{bottom:348.133500px;}
.y19d{bottom:348.508500px;}
.yc5{bottom:348.852000px;}
.y15a{bottom:348.900000px;}
.y2d{bottom:350.830500px;}
.y1ff{bottom:352.203000px;}
.y5b{bottom:354.835500px;}
.y1cb{bottom:357.649500px;}
.y17f{bottom:358.329000px;}
.y119{bottom:358.999500px;}
.y91{bottom:362.586000px;}
.yee{bottom:363.483000px;}
.y19c{bottom:366.082500px;}
.yc4{bottom:367.681500px;}
.y1fe{bottom:369.463500px;}
.y5a{bottom:373.665000px;}
.y1ca{bottom:374.088000px;}
.y14d{bottom:375.141000px;}
.y17e{bottom:377.158500px;}
.y2c{bottom:377.685000px;}
.y118{bottom:377.829000px;}
.y90{bottom:381.415500px;}
.yed{bottom:382.312500px;}
.y159{bottom:382.465500px;}
.yc3{bottom:386.511000px;}
.y1fd{bottom:386.724000px;}
.y10{bottom:386.785499px;}
.y1c9{bottom:390.526500px;}
.y59{bottom:392.494500px;}
.y14c{bottom:393.970500px;}
.y2b{bottom:395.572500px;}
.y17d{bottom:395.988000px;}
.y117{bottom:396.658500px;}
.y8f{bottom:400.245000px;}
.yec{bottom:401.142000px;}
.y19b{bottom:401.589000px;}
.y1fc{bottom:403.984500px;}
.yc2{bottom:405.340500px;}
.y1c8{bottom:406.965000px;}
.yf{bottom:408.044999px;}
.y58{bottom:411.324000px;}
.y14b{bottom:412.800000px;}
.y2a{bottom:413.460000px;}
.y116{bottom:415.488000px;}
.y8e{bottom:419.074500px;}
.yeb{bottom:419.971500px;}
.y19a{bottom:420.418500px;}
.y1fb{bottom:421.245000px;}
.y1c7{bottom:423.403500px;}
.yc1{bottom:424.170000px;}
.y29{bottom:431.349000px;}
.y14a{bottom:431.629500px;}
.y115{bottom:434.317500px;}
.y57{bottom:434.635500px;}
.y8d{bottom:437.904000px;}
.y1fa{bottom:438.505500px;}
.yea{bottom:438.801000px;}
.y199{bottom:439.248000px;}
.y17c{bottom:441.450000px;}
.yc0{bottom:442.999500px;}
.y1c6{bottom:447.043500px;}
.y28{bottom:449.236500px;}
.y149{bottom:450.459000px;}
.y114{bottom:453.147000px;}
.y1f9{bottom:455.766000px;}
.y8c{bottom:456.733500px;}
.ye9{bottom:457.630500px;}
.y17b{bottom:457.888500px;}
.y198{bottom:458.077500px;}
.ybf{bottom:461.829000px;}
.y1c5{bottom:463.482000px;}
.y27{bottom:467.124000px;}
.y148{bottom:469.288500px;}
.y113{bottom:471.976500px;}
.y1f8{bottom:473.026500px;}
.y17a{bottom:474.327000px;}
.y8b{bottom:475.563000px;}
.ye8{bottom:476.458500px;}
.y197{bottom:476.907000px;}
.y1c4{bottom:479.920500px;}
.ybe{bottom:480.658500px;}
.ye{bottom:484.864502px;}
.y26{bottom:485.013000px;}
.y147{bottom:488.118000px;}
.y1f7{bottom:490.287000px;}
.y112{bottom:490.806000px;}
.y22f{bottom:491.628000px;}
.y8a{bottom:494.392500px;}
.ye7{bottom:495.288000px;}
.y196{bottom:495.736500px;}
.y1c3{bottom:496.359000px;}
.y179{bottom:497.968500px;}
.ybd{bottom:499.488000px;}
.yd{bottom:502.864502px;}
.y25{bottom:502.900500px;}
.y56{bottom:506.283000px;}
.y146{bottom:506.947500px;}
.y1f6{bottom:507.546000px;}
.y22e{bottom:508.887000px;}
.y111{bottom:509.635500px;}
.y1c2{bottom:512.797500px;}
.y89{bottom:513.222000px;}
.ye6{bottom:514.117500px;}
.y195{bottom:514.566000px;}
.ybc{bottom:518.317500px;}
.y24{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.y178{bottom:521.608500px;}
.y1f5{bottom:524.806500px;}
.y55{bottom:525.739500px;}
.y145{bottom:525.777000px;}
.y22d{bottom:526.147500px;}
.y110{bottom:528.465000px;}
.y88{bottom:532.051500px;}
.ye5{bottom:532.947000px;}
.y194{bottom:533.395500px;}
.y1c1{bottom:536.439000px;}
.ybb{bottom:537.145500px;}
.yb{bottom:538.864499px;}
.y1f4{bottom:542.067000px;}
.y144{bottom:544.606500px;}
.y10f{bottom:547.294500px;}
.y87{bottom:550.881000px;}
.ye4{bottom:551.776500px;}
.y193{bottom:552.225000px;}
.y1c0{bottom:552.876000px;}
.y177{bottom:553.228500px;}
.yba{bottom:555.975000px;}
.ya{bottom:556.864499px;}
.y1f3{bottom:559.327500px;}
.y54{bottom:563.130000px;}
.y143{bottom:563.436000px;}
.y22c{bottom:565.227000px;}
.y10e{bottom:566.124000px;}
.y1bf{bottom:569.314500px;}
.y86{bottom:569.710500px;}
.ye3{bottom:570.606000px;}
.y192{bottom:571.054500px;}
.yb9{bottom:574.804500px;}
.y1f2{bottom:576.588000px;}
.y142{bottom:582.265500px;}
.y22b{bottom:582.487500px;}
.y53{bottom:582.586500px;}
.y10d{bottom:584.952000px;}
.y1be{bottom:585.753000px;}
.y85{bottom:588.538500px;}
.ye2{bottom:589.435500px;}
.y191{bottom:589.884000px;}
.y176{bottom:590.332500px;}
.yb8{bottom:593.634000px;}
.y1f1{bottom:593.848500px;}
.y22a{bottom:599.746500px;}
.y141{bottom:601.095000px;}
.y52{bottom:602.043000px;}
.y10c{bottom:603.781500px;}
.y84{bottom:607.368000px;}
.ye1{bottom:608.265000px;}
.y190{bottom:608.713500px;}
.y175{bottom:609.162000px;}
.y1bd{bottom:609.394500px;}
.y1f0{bottom:611.109000px;}
.yb7{bottom:612.463500px;}
.y12d{bottom:612.748500px;}
.y229{bottom:617.007000px;}
.y51{bottom:621.501000px;}
.y10b{bottom:622.611000px;}
.y1bc{bottom:625.833000px;}
.y83{bottom:626.197500px;}
.ye0{bottom:627.094500px;}
.y18f{bottom:627.543000px;}
.y174{bottom:627.991500px;}
.y1ef{bottom:628.369500px;}
.yb6{bottom:631.293000px;}
.y228{bottom:634.267500px;}
.y50{bottom:640.957500px;}
.y10a{bottom:641.440500px;}
.y1bb{bottom:642.271500px;}
.y82{bottom:645.027000px;}
.y9{bottom:645.510000px;}
.y1ee{bottom:645.628500px;}
.ydf{bottom:645.924000px;}
.y12c{bottom:646.372500px;}
.y140{bottom:646.557000px;}
.y173{bottom:646.821000px;}
.yb5{bottom:650.122500px;}
.y227{bottom:651.528000px;}
.y1ba{bottom:658.708500px;}
.y4f{bottom:660.415500px;}
.y1ed{bottom:662.889000px;}
.y81{bottom:663.856500px;}
.yde{bottom:664.753500px;}
.y12b{bottom:665.202000px;}
.y172{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y226{bottom:668.788500px;}
.yb4{bottom:668.952000px;}
.y13f{bottom:670.197000px;}
.y1b9{bottom:675.147000px;}
.y4e{bottom:679.872000px;}
.y1ec{bottom:680.149500px;}
.y80{bottom:682.686000px;}
.y12a{bottom:684.031500px;}
.y171{bottom:684.480000px;}
.y225{bottom:686.049000px;}
.y13e{bottom:686.635500px;}
.ydd{bottom:688.066500px;}
.yb3{bottom:692.265000px;}
.y1eb{bottom:697.410000px;}
.y109{bottom:698.377500px;}
.y1b8{bottom:698.788500px;}
.y4d{bottom:699.328500px;}
.y7f{bottom:701.515500px;}
.y129{bottom:702.861000px;}
.y13d{bottom:703.074000px;}
.y170{bottom:703.309500px;}
.y1ea{bottom:714.670500px;}
.y1b7{bottom:715.227000px;}
.y108{bottom:717.207000px;}
.y4c{bottom:718.786500px;}
.y13c{bottom:719.512500px;}
.y7e{bottom:720.345000px;}
.y224{bottom:720.570000px;}
.ydc{bottom:721.690500px;}
.y16f{bottom:722.139000px;}
.y7{bottom:726.298500px;}
.yb2{bottom:727.765500px;}
.y1b6{bottom:731.665500px;}
.y1e9{bottom:731.931000px;}
.y107{bottom:736.036500px;}
.y223{bottom:737.829000px;}
.y4b{bottom:738.243000px;}
.y7d{bottom:739.174500px;}
.ydb{bottom:740.520000px;}
.y16e{bottom:740.968500px;}
.y13b{bottom:743.152500px;}
.yb1{bottom:746.608500px;}
.y1b5{bottom:748.104000px;}
.y1e8{bottom:749.191500px;}
.y4{bottom:752.599495px;}
.y106{bottom:754.866000px;}
.y222{bottom:755.089500px;}
.y4a{bottom:757.699500px;}
.y7c{bottom:758.004000px;}
.yda{bottom:759.349500px;}
.y16d{bottom:759.798000px;}
.yb0{bottom:763.047000px;}
.y1b4{bottom:764.541000px;}
.y1e7{bottom:770.934000px;}
.yad{bottom:771.265500px;}
.y221{bottom:772.350000px;}
.y105{bottom:773.695500px;}
.y13a{bottom:774.772500px;}
.y7b{bottom:776.833500px;}
.y49{bottom:777.157500px;}
.yd9{bottom:778.179000px;}
.y16c{bottom:778.627500px;}
.yaf{bottom:779.485500px;}
.y1b3{bottom:788.182500px;}
.y220{bottom:789.610500px;}
.y104{bottom:792.525000px;}
.y7a{bottom:795.663000px;}
.yae{bottom:795.924000px;}
.yd8{bottom:797.008500px;}
.y16b{bottom:797.457000px;}
.y1b2{bottom:804.621000px;}
.y21f{bottom:806.871000px;}
.y103{bottom:811.354500px;}
.y139{bottom:813.432000px;}
.y79{bottom:814.492500px;}
.y48{bottom:815.742000px;}
.yd7{bottom:815.838000px;}
.y1e6{bottom:816.247500px;}
.y16a{bottom:816.286500px;}
.yac{bottom:821.059500px;}
.y21e{bottom:824.131500px;}
.y102{bottom:830.184000px;}
.y47{bottom:831.882000px;}
.y1e5{bottom:832.686000px;}
.y78{bottom:833.322000px;}
.yd6{bottom:834.667500px;}
.y169{bottom:835.114500px;}
.y1b1{bottom:837.498000px;}
.y128{bottom:839.149500px;}
.y21d{bottom:841.392000px;}
.yab{bottom:841.980000px;}
.y101{bottom:849.013500px;}
.y1e4{bottom:849.124500px;}
.y46{bottom:852.361500px;}
.yd5{bottom:853.497000px;}
.y168{bottom:853.944000px;}
.y77{bottom:856.635000px;}
.y21c{bottom:858.652500px;}
.y1b0{bottom:861.138000px;}
.yaa{bottom:862.902000px;}
.y45{bottom:864.160500px;}
.y1e3{bottom:865.563000px;}
.y100{bottom:867.843000px;}
.yd4{bottom:872.326500px;}
.y127{bottom:872.773500px;}
.y21b{bottom:875.913000px;}
.y76{bottom:876.808500px;}
.y1af{bottom:877.576500px;}
.ya9{bottom:879.340500px;}
.y3{bottom:879.369000px;}
.y1e2{bottom:882.000000px;}
.y44{bottom:884.640000px;}
.yff{bottom:886.672500px;}
.yd3{bottom:891.156000px;}
.y126{bottom:891.603000px;}
.y21a{bottom:893.172000px;}
.y1ae{bottom:894.015000px;}
.ya8{bottom:895.779000px;}
.y1e1{bottom:898.438500px;}
.y43{bottom:900.780000px;}
.yfe{bottom:905.502000px;}
.y18e{bottom:909.984000px;}
.y75{bottom:910.432500px;}
.y1ad{bottom:910.453500px;}
.ya7{bottom:912.217500px;}
.y42{bottom:912.580500px;}
.ya1{bottom:913.711500px;}
.yd2{bottom:914.467500px;}
.y1e0{bottom:922.080000px;}
.y219{bottom:927.693000px;}
.yfd{bottom:928.813500px;}
.y74{bottom:929.262000px;}
.y41{bottom:933.058500px;}
.ya6{bottom:933.138000px;}
.y18d{bottom:933.297000px;}
.y1ac{bottom:934.093500px;}
.y1df{bottom:938.518500px;}
.y218{bottom:944.953500px;}
.y2{bottom:945.126001px;}
.y73{bottom:948.091500px;}
.y1ab{bottom:950.532000px;}
.ya5{bottom:954.060000px;}
.y1de{bottom:954.957000px;}
.y217{bottom:962.214000px;}
.yfc{bottom:962.437500px;}
.y1{bottom:966.726000px;}
.y72{bottom:966.921000px;}
.y1aa{bottom:966.970500px;}
.ya4{bottom:970.498500px;}
.y1dd{bottom:971.395500px;}
.y40{bottom:977.736000px;}
.y216{bottom:979.474500px;}
.yfb{bottom:981.267000px;}
.y1a9{bottom:983.409000px;}
.y71{bottom:985.750500px;}
.ya3{bottom:986.937000px;}
.y1dc{bottom:987.832500px;}
.y3f{bottom:996.565500px;}
.y215{bottom:996.735000px;}
.y1a8{bottom:999.847500px;}
.y70{bottom:1004.580000px;}
.ya2{bottom:1007.859000px;}
.y1db{bottom:1011.474000px;}
.y214{bottom:1013.995500px;}
.y1a7{bottom:1016.286000px;}
.y6f{bottom:1023.409500px;}
.y1da{bottom:1027.912500px;}
.y213{bottom:1031.254500px;}
.ya0{bottom:1031.499000px;}
.y3e{bottom:1036.485000px;}
.y1a6{bottom:1039.926000px;}
.y6e{bottom:1042.239000px;}
.y1d9{bottom:1044.351000px;}
.y212{bottom:1048.515000px;}
.y1d8{bottom:1060.789500px;}
.y6d{bottom:1061.068500px;}
.y9f{bottom:1063.119000px;}
.y3d{bottom:1064.728500px;}
.y211{bottom:1065.775500px;}
.y1a5{bottom:1074.534000px;}
.y6c{bottom:1079.898000px;}
.y210{bottom:1083.036000px;}
.y1d7{bottom:1084.429500px;}
.y3c{bottom:1092.972000px;}
.y6b{bottom:1098.727500px;}
.y20f{bottom:1100.296500px;}
.y6a{bottom:1117.557000px;}
.y1d6{bottom:1119.037500px;}
.y39{bottom:1136.460000px;}
.y69{bottom:1177.662000px;}
.h12{height:26.110157px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h13{height:34.813397px;}
.h17{height:35.052500px;}
.h18{height:38.734848px;}
.h14{height:39.165235px;}
.h19{height:39.434227px;}
.h15{height:43.038432px;}
.h16{height:43.516637px;}
.hf{height:43.815515px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1a{height:49.991558px;}
.hd{height:50.930649px;}
.h11{height:54.405312px;}
.h2{height:55.152000px;}
.he{height:61.613006px;}
.h10{height:77.469696px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x16{left:62.541000px;}
.x17{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xb{left:258.556500px;}
.x8{left:269.914500px;}
.xa{left:281.479500px;}
.xe{left:284.184000px;}
.xf{left:327.804000px;}
.x11{left:380.109000px;}
.x13{left:382.234500px;}
.x10{left:383.472000px;}
.x12{left:386.121000px;}
.x3{left:454.959000px;}
.xc{left:553.218000px;}
.xd{left:554.418000px;}
.x15{left:588.591000px;}
.x14{left:642.591000px;}
.x18{left:778.998000px;}
.x19{left:787.380000px;}
.x1a{left:819.129000px;}
.x1b{left:830.824500px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000387pt;}
.ls1{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.002271pt;}
.ls2{letter-spacing:0.002932pt;}
.lse{letter-spacing:0.003733pt;}
.ls18{letter-spacing:0.003793pt;}
.ls11{letter-spacing:0.019657pt;}
.lsf{letter-spacing:0.019881pt;}
.ls13{letter-spacing:0.022035pt;}
.ls15{letter-spacing:0.576078pt;}
.ls16{letter-spacing:2.019047pt;}
.ls3{letter-spacing:2.657067pt;}
.lsb{letter-spacing:10.626533pt;}
.ls17{letter-spacing:11.058133pt;}
.lsc{letter-spacing:12.561698pt;}
.ls14{letter-spacing:13.124065pt;}
.lsa{letter-spacing:13.283467pt;}
.lsd{letter-spacing:13.286098pt;}
.ls8{letter-spacing:13.336601pt;}
.ls7{letter-spacing:13.389734pt;}
.ls9{letter-spacing:17.002837pt;}
.ls4{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wsd{word-spacing:-20.194365pt;}
.ws4f{word-spacing:-13.283467pt;}
.ws4c{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.wsa0{word-spacing:-3.081764pt;}
.ws79{word-spacing:-2.816095pt;}
.wsa9{word-spacing:-2.773606pt;}
.ws5f{word-spacing:-2.497292pt;}
.ws82{word-spacing:-2.337890pt;}
.ws97{word-spacing:-2.284756pt;}
.ws2c{word-spacing:-1.965953pt;}
.wsc6{word-spacing:-1.912832pt;}
.ws40{word-spacing:-1.912819pt;}
.ws38{word-spacing:-1.806551pt;}
.ws22{word-spacing:-1.434614pt;}
.ws46{word-spacing:-1.328347pt;}
.ws6b{word-spacing:-1.275213pt;}
.ws9a{word-spacing:-1.222079pt;}
.ws8c{word-spacing:-1.168945pt;}
.ws6a{word-spacing:-1.115811pt;}
.ws9f{word-spacing:-1.062677pt;}
.ws3c{word-spacing:-1.009543pt;}
.ws56{word-spacing:-0.956410pt;}
.wsbd{word-spacing:-0.908595pt;}
.ws73{word-spacing:-0.850142pt;}
.ws2f{word-spacing:-0.797008pt;}
.ws4e{word-spacing:-0.743874pt;}
.wsba{word-spacing:-0.717312pt;}
.ws50{word-spacing:-0.690740pt;}
.wsbb{word-spacing:-0.669491pt;}
.ws64{word-spacing:-0.584473pt;}
.wsa4{word-spacing:-0.573850pt;}
.ws26{word-spacing:-0.531339pt;}
.wsa2{word-spacing:-0.382566pt;}
.ws98{word-spacing:-0.371937pt;}
.ws6f{word-spacing:-0.318803pt;}
.ws1e{word-spacing:-0.265669pt;}
.wsa7{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.wsb0{word-spacing:-0.191283pt;}
.ws3f{word-spacing:-0.159402pt;}
.wsc5{word-spacing:-0.143462pt;}
.ws3b{word-spacing:-0.106268pt;}
.wsae{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.ws2{word-spacing:0.074387pt;}
.ws17{word-spacing:0.095642pt;}
.ws24{word-spacing:0.106268pt;}
.ws16{word-spacing:0.143462pt;}
.ws23{word-spacing:0.159402pt;}
.wsa8{word-spacing:0.191283pt;}
.ws45{word-spacing:0.212535pt;}
.wsb5{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.ws2a{word-spacing:0.318803pt;}
.ws5d{word-spacing:0.371937pt;}
.ws5c{word-spacing:0.425071pt;}
.ws1b{word-spacing:0.573850pt;}
.ws85{word-spacing:0.584473pt;}
.ws30{word-spacing:0.637606pt;}
.ws69{word-spacing:0.690740pt;}
.wsa6{word-spacing:0.717312pt;}
.ws99{word-spacing:0.743874pt;}
.ws42{word-spacing:0.903276pt;}
.ws70{word-spacing:0.956410pt;}
.ws86{word-spacing:1.009543pt;}
.ws62{word-spacing:1.062677pt;}
.ws28{word-spacing:1.115811pt;}
.wsbf{word-spacing:1.147699pt;}
.ws3d{word-spacing:1.168945pt;}
.ws37{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws36{word-spacing:1.275213pt;}
.ws63{word-spacing:1.328347pt;}
.ws95{word-spacing:1.381481pt;}
.ws21{word-spacing:1.434614pt;}
.ws47{word-spacing:1.487748pt;}
.ws15{word-spacing:1.530266pt;}
.ws19{word-spacing:1.673728pt;}
.ws72{word-spacing:1.700284pt;}
.ws49{word-spacing:1.806551pt;}
.ws89{word-spacing:1.859685pt;}
.ws3e{word-spacing:1.912819pt;}
.ws34{word-spacing:1.965953pt;}
.ws57{word-spacing:2.019087pt;}
.ws5b{word-spacing:2.072221pt;}
.ws4{word-spacing:2.231616pt;}
.ws5a{word-spacing:2.231622pt;}
.ws33{word-spacing:2.284756pt;}
.ws1{word-spacing:2.328395pt;}
.ws8b{word-spacing:2.337890pt;}
.ws27{word-spacing:2.391024pt;}
.wsb8{word-spacing:2.486682pt;}
.ws32{word-spacing:2.497292pt;}
.ws94{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws68{word-spacing:2.603559pt;}
.ws14{word-spacing:2.630144pt;}
.ws3a{word-spacing:2.656693pt;}
.ws78{word-spacing:2.709827pt;}
.ws75{word-spacing:2.762961pt;}
.ws77{word-spacing:2.816095pt;}
.wsaa{word-spacing:2.821427pt;}
.wsc0{word-spacing:2.864631pt;}
.wsc2{word-spacing:2.865613pt;}
.wsc1{word-spacing:2.865801pt;}
.wsa3{word-spacing:2.866509pt;}
.ws6d{word-spacing:2.869229pt;}
.ws13{word-spacing:2.869248pt;}
.ws4a{word-spacing:2.922363pt;}
.wsac{word-spacing:3.060531pt;}
.ws93{word-spacing:3.081764pt;}
.wsd1{word-spacing:3.108352pt;}
.ws8a{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wsa1{word-spacing:3.241166pt;}
.ws80{word-spacing:3.400567pt;}
.ws43{word-spacing:3.453701pt;}
.ws9e{word-spacing:3.506835pt;}
.ws41{word-spacing:3.559969pt;}
.ws48{word-spacing:3.613103pt;}
.wsaf{word-spacing:3.634381pt;}
.ws44{word-spacing:3.666237pt;}
.ws8d{word-spacing:3.719371pt;}
.ws6c{word-spacing:3.825638pt;}
.ws6e{word-spacing:3.985040pt;}
.ws60{word-spacing:4.038174pt;}
.ws61{word-spacing:4.091308pt;}
.ws8e{word-spacing:4.197575pt;}
.ws1a{word-spacing:4.240645pt;}
.ws59{word-spacing:4.250709pt;}
.ws7f{word-spacing:4.410111pt;}
.wsa5{word-spacing:4.478002pt;}
.ws5e{word-spacing:4.675780pt;}
.wscc{word-spacing:4.686438pt;}
.ws67{word-spacing:4.782048pt;}
.ws20{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.ws1f{word-spacing:4.888316pt;}
.ws76{word-spacing:4.941450pt;}
.ws1d{word-spacing:4.994583pt;}
.ws51{word-spacing:5.047717pt;}
.ws52{word-spacing:5.100851pt;}
.ws71{word-spacing:5.153985pt;}
.ws66{word-spacing:5.207119pt;}
.ws74{word-spacing:5.260253pt;}
.ws31{word-spacing:5.472788pt;}
.ws87{word-spacing:5.525922pt;}
.ws88{word-spacing:5.632190pt;}
.wsb2{word-spacing:5.690675pt;}
.ws7e{word-spacing:5.738458pt;}
.ws58{word-spacing:5.897859pt;}
.ws8f{word-spacing:6.004127pt;}
.ws81{word-spacing:6.322930pt;}
.ws9d{word-spacing:6.376064pt;}
.wsb4{word-spacing:6.407987pt;}
.ws2b{word-spacing:6.588599pt;}
.wsc9{word-spacing:6.647091pt;}
.ws54{word-spacing:6.801135pt;}
.ws9c{word-spacing:6.960537pt;}
.ws55{word-spacing:7.226206pt;}
.ws9b{word-spacing:7.279340pt;}
.ws96{word-spacing:7.810678pt;}
.ws8{word-spacing:8.740496pt;}
.ws12{word-spacing:8.824608pt;}
.ws5{word-spacing:9.260514pt;}
.ws9{word-spacing:10.525789pt;}
.ws2d{word-spacing:10.587492pt;}
.wsbc{word-spacing:10.998784pt;}
.wsc8{word-spacing:11.524813pt;}
.wsb1{word-spacing:11.683782pt;}
.wscf{word-spacing:11.763917pt;}
.wsb6{word-spacing:11.811738pt;}
.wsc3{word-spacing:11.895996pt;}
.wsce{word-spacing:11.899110pt;}
.wsc7{word-spacing:11.900407pt;}
.wsbe{word-spacing:11.901440pt;}
.wsc4{word-spacing:11.901764pt;}
.wsb7{word-spacing:11.903113pt;}
.wsad{word-spacing:11.907379pt;}
.wsd0{word-spacing:12.003021pt;}
.wsab{word-spacing:12.048509pt;}
.wscd{word-spacing:12.098662pt;}
.ws35{word-spacing:13.230333pt;}
.ws6{word-spacing:13.761632pt;}
.wsb9{word-spacing:14.394061pt;}
.ws65{word-spacing:16.418365pt;}
.wscb{word-spacing:16.593818pt;}
.wsca{word-spacing:18.554470pt;}
.ws53{word-spacing:18.862523pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.ws4d{word-spacing:84.738458pt;}
.ws90{word-spacing:153.600410pt;}
.ws84{word-spacing:168.897067pt;}
.ws83{word-spacing:267.987763pt;}
.ws91{word-spacing:304.235930pt;}
.ws92{word-spacing:311.887258pt;}
.ws4b{word-spacing:791.386419pt;}
.ws7d{word-spacing:927.580058pt;}
.ws7b{word-spacing:931.979571pt;}
.ws7a{word-spacing:943.934771pt;}
.ws7c{word-spacing:965.310669pt;}
._f{margin-left:-30.158826pt;}
._3a{margin-left:-27.911392pt;}
._11{margin-left:-24.388445pt;}
._3b{margin-left:-22.667014pt;}
._3c{margin-left:-18.083044pt;}
._17{margin-left:-6.110395pt;}
._8{margin-left:-5.037139pt;}
._0{margin-left:-4.091296pt;}
._1{margin-left:-2.752326pt;}
._5{margin-left:-1.301776pt;}
._37{width:1.376397pt;}
._7{width:2.663454pt;}
._10{width:6.694867pt;}
._2{width:8.628915pt;}
._3{width:11.530016pt;}
._c{width:12.576870pt;}
._9{width:13.676749pt;}
._d{width:14.920090pt;}
._a{width:15.850154pt;}
._14{width:16.806287pt;}
._15{width:18.092078pt;}
._b{width:19.096454pt;}
._21{width:20.190862pt;}
._e{width:21.147279pt;}
._4{width:22.502128pt;}
._16{width:24.043071pt;}
._1e{width:25.132319pt;}
._20{width:26.566933pt;}
._19{width:28.240646pt;}
._6{width:29.648896pt;}
._1c{width:31.534946pt;}
._18{width:32.443396pt;}
._2e{width:33.383985pt;}
._38{width:34.824439pt;}
._39{width:35.993381pt;}
._1d{width:37.964144pt;}
._1b{width:94.828646pt;}
._1a{width:96.693658pt;}
._2b{width:180.619162pt;}
._29{width:192.574362pt;}
._30{width:195.470150pt;}
._25{width:200.834509pt;}
._2a{width:215.863091pt;}
._24{width:220.166963pt;}
._2d{width:227.866112pt;}
._31{width:232.882093pt;}
._2c{width:239.773491pt;}
._28{width:244.125184pt;}
._27{width:256.032563pt;}
._35{width:292.711117pt;}
._32{width:297.014989pt;}
._2f{width:322.886042pt;}
._33{width:342.391725pt;}
._34{width:386.243398pt;}
._26{width:580.687974pt;}
._23{width:596.054406pt;}
._1f{width:650.506342pt;}
._22{width:784.250452pt;}
._12{width:804.718034pt;}
._36{width:2255.456628pt;}
._13{width:2276.709962pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:8.207950pt;}
.y3a{bottom:23.914454pt;}
.y68{bottom:28.346667pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.yd1{bottom:92.108000pt;}
.y167{bottom:92.548000pt;}
.y38{bottom:93.018667pt;}
.y158{bottom:95.885333pt;}
.y20e{bottom:98.274667pt;}
.y18c{bottom:100.930667pt;}
.y9e{bottom:104.713333pt;}
.yfa{bottom:105.112000pt;}
.yd0{bottom:108.844000pt;}
.y37{bottom:108.920000pt;}
.y166{bottom:109.285333pt;}
.y157{bottom:112.622667pt;}
.y20d{bottom:113.617333pt;}
.y67{bottom:114.561333pt;}
.y18b{bottom:117.668000pt;}
.y125{bottom:118.262667pt;}
.y9d{bottom:121.450667pt;}
.yf9{bottom:121.849333pt;}
.y138{bottom:122.248000pt;}
.y23{bottom:123.790666pt;}
.y36{bottom:124.820000pt;}
.ycf{bottom:125.581333pt;}
.y165{bottom:126.022667pt;}
.y20c{bottom:128.960000pt;}
.y156{bottom:129.360000pt;}
.y66{bottom:131.298667pt;}
.y18a{bottom:134.405333pt;}
.y124{bottom:135.000000pt;}
.y1a4{bottom:136.993333pt;}
.y9c{bottom:138.188000pt;}
.yf8{bottom:138.586667pt;}
.y137{bottom:138.985333pt;}
.y35{bottom:140.720000pt;}
.yce{bottom:142.318667pt;}
.y164{bottom:142.760000pt;}
.y20b{bottom:144.302667pt;}
.y155{bottom:146.097333pt;}
.y65{bottom:148.036000pt;}
.y189{bottom:151.142667pt;}
.y123{bottom:151.737333pt;}
.y1d5{bottom:152.586667pt;}
.y9b{bottom:154.925333pt;}
.yf7{bottom:155.324000pt;}
.y136{bottom:155.722667pt;}
.y34{bottom:156.621333pt;}
.y163{bottom:159.497333pt;}
.y20a{bottom:159.645333pt;}
.y1a3{bottom:160.585333pt;}
.ycd{bottom:163.041333pt;}
.y64{bottom:164.773333pt;}
.y1d4{bottom:167.197333pt;}
.y188{bottom:167.880000pt;}
.y122{bottom:168.474667pt;}
.y9a{bottom:171.662667pt;}
.yf6{bottom:172.061333pt;}
.y135{bottom:172.460000pt;}
.y33{bottom:172.521333pt;}
.y209{bottom:174.986667pt;}
.y1a{bottom:175.052000pt;}
.y1a2{bottom:176.206667pt;}
.y162{bottom:176.234667pt;}
.y63{bottom:181.510667pt;}
.y1d3{bottom:181.809333pt;}
.y187{bottom:184.617333pt;}
.y121{bottom:185.212000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y154{bottom:186.508000pt;}
.y99{bottom:188.400000pt;}
.y32{bottom:188.421333pt;}
.yf5{bottom:188.798667pt;}
.y134{bottom:189.197333pt;}
.y208{bottom:190.329333pt;}
.y1a1{bottom:191.828000pt;}
.ycc{bottom:192.929333pt;}
.y161{bottom:192.972000pt;}
.y1d2{bottom:196.421333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y62{bottom:198.248000pt;}
.y153{bottom:201.118667pt;}
.y186{bottom:201.354667pt;}
.y120{bottom:201.949333pt;}
.y31{bottom:204.322667pt;}
.y98{bottom:205.137333pt;}
.yf4{bottom:205.536000pt;}
.y207{bottom:205.672000pt;}
.y133{bottom:205.934667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ycb{bottom:209.666667pt;}
.y160{bottom:209.709333pt;}
.y61{bottom:214.985333pt;}
.y1a0{bottom:215.418667pt;}
.y152{bottom:215.730667pt;}
.y1d1{bottom:217.436000pt;}
.y185{bottom:218.092000pt;}
.y11f{bottom:218.686667pt;}
.y206{bottom:221.014667pt;}
.y97{bottom:221.874667pt;}
.yf3{bottom:222.273333pt;}
.y132{bottom:222.672000pt;}
.yca{bottom:226.404000pt;}
.y15f{bottom:226.446667pt;}
.y151{bottom:230.342667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y60{bottom:231.722667pt;}
.y184{bottom:234.829333pt;}
.y11e{bottom:235.424000pt;}
.y205{bottom:236.357333pt;}
.y1d0{bottom:238.449333pt;}
.y96{bottom:238.612000pt;}
.yf2{bottom:239.010667pt;}
.y131{bottom:239.409333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.yc9{bottom:243.141333pt;}
.y15e{bottom:243.184000pt;}
.y5f{bottom:248.460000pt;}
.y150{bottom:251.357333pt;}
.y183{bottom:251.566667pt;}
.y203{bottom:251.700000pt;}
.y11d{bottom:252.161333pt;}
.y1cf{bottom:253.061333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y95{bottom:255.349333pt;}
.yf1{bottom:255.748000pt;}
.y204{bottom:256.040000pt;}
.y130{bottom:256.146667pt;}
.yc8{bottom:259.878667pt;}
.y15d{bottom:259.921333pt;}
.y19f{bottom:262.602667pt;}
.y30{bottom:264.148000pt;}
.y5e{bottom:265.197333pt;}
.y202{bottom:267.042667pt;}
.y1ce{bottom:267.673333pt;}
.y182{bottom:268.304000pt;}
.y11c{bottom:268.898667pt;}
.y94{bottom:272.086667pt;}
.y14f{bottom:272.370667pt;}
.y12f{bottom:272.884000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yf0{bottom:276.470667pt;}
.yc7{bottom:276.616000pt;}
.y15c{bottom:276.658667pt;}
.y2f{bottom:280.048000pt;}
.y5d{bottom:281.934667pt;}
.y1cd{bottom:282.285333pt;}
.y201{bottom:282.385333pt;}
.y181{bottom:285.041333pt;}
.y11b{bottom:285.636000pt;}
.y19e{bottom:286.193333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y93{bottom:288.824000pt;}
.y12e{bottom:289.621333pt;}
.yc6{bottom:293.353333pt;}
.y15b{bottom:293.396000pt;}
.y2e{bottom:295.948000pt;}
.y1cc{bottom:296.897333pt;}
.y200{bottom:297.728000pt;}
.y5c{bottom:298.672000pt;}
.y14e{bottom:300.477333pt;}
.y180{bottom:301.778667pt;}
.y11a{bottom:302.373333pt;}
.y92{bottom:305.561333pt;}
.yef{bottom:306.358667pt;}
.y11{bottom:309.452000pt;}
.y19d{bottom:309.785333pt;}
.yc5{bottom:310.090667pt;}
.y15a{bottom:310.133333pt;}
.y2d{bottom:311.849333pt;}
.y1ff{bottom:313.069333pt;}
.y5b{bottom:315.409333pt;}
.y1cb{bottom:317.910667pt;}
.y17f{bottom:318.514667pt;}
.y119{bottom:319.110667pt;}
.y91{bottom:322.298667pt;}
.yee{bottom:323.096000pt;}
.y19c{bottom:325.406667pt;}
.yc4{bottom:326.828000pt;}
.y1fe{bottom:328.412000pt;}
.y5a{bottom:332.146667pt;}
.y1ca{bottom:332.522667pt;}
.y14d{bottom:333.458667pt;}
.y17e{bottom:335.252000pt;}
.y2c{bottom:335.720000pt;}
.y118{bottom:335.848000pt;}
.y90{bottom:339.036000pt;}
.yed{bottom:339.833333pt;}
.y159{bottom:339.969333pt;}
.yc3{bottom:343.565333pt;}
.y1fd{bottom:343.754667pt;}
.y10{bottom:343.809333pt;}
.y1c9{bottom:347.134667pt;}
.y59{bottom:348.884000pt;}
.y14c{bottom:350.196000pt;}
.y2b{bottom:351.620000pt;}
.y17d{bottom:351.989333pt;}
.y117{bottom:352.585333pt;}
.y8f{bottom:355.773333pt;}
.yec{bottom:356.570667pt;}
.y19b{bottom:356.968000pt;}
.y1fc{bottom:359.097333pt;}
.yc2{bottom:360.302667pt;}
.y1c8{bottom:361.746667pt;}
.yf{bottom:362.706666pt;}
.y58{bottom:365.621333pt;}
.y14b{bottom:366.933333pt;}
.y2a{bottom:367.520000pt;}
.y116{bottom:369.322667pt;}
.y8e{bottom:372.510667pt;}
.yeb{bottom:373.308000pt;}
.y19a{bottom:373.705333pt;}
.y1fb{bottom:374.440000pt;}
.y1c7{bottom:376.358667pt;}
.yc1{bottom:377.040000pt;}
.y29{bottom:383.421333pt;}
.y14a{bottom:383.670667pt;}
.y115{bottom:386.060000pt;}
.y57{bottom:386.342667pt;}
.y8d{bottom:389.248000pt;}
.y1fa{bottom:389.782667pt;}
.yea{bottom:390.045333pt;}
.y199{bottom:390.442667pt;}
.y17c{bottom:392.400000pt;}
.yc0{bottom:393.777333pt;}
.y1c6{bottom:397.372000pt;}
.y28{bottom:399.321333pt;}
.y149{bottom:400.408000pt;}
.y114{bottom:402.797333pt;}
.y1f9{bottom:405.125333pt;}
.y8c{bottom:405.985333pt;}
.ye9{bottom:406.782667pt;}
.y17b{bottom:407.012000pt;}
.y198{bottom:407.180000pt;}
.ybf{bottom:410.514667pt;}
.y1c5{bottom:411.984000pt;}
.y27{bottom:415.221333pt;}
.y148{bottom:417.145333pt;}
.y113{bottom:419.534667pt;}
.y1f8{bottom:420.468000pt;}
.y17a{bottom:421.624000pt;}
.y8b{bottom:422.722667pt;}
.ye8{bottom:423.518667pt;}
.y197{bottom:423.917333pt;}
.y1c4{bottom:426.596000pt;}
.ybe{bottom:427.252000pt;}
.ye{bottom:430.990669pt;}
.y26{bottom:431.122667pt;}
.y147{bottom:433.882667pt;}
.y1f7{bottom:435.810667pt;}
.y112{bottom:436.272000pt;}
.y22f{bottom:437.002667pt;}
.y8a{bottom:439.460000pt;}
.ye7{bottom:440.256000pt;}
.y196{bottom:440.654667pt;}
.y1c3{bottom:441.208000pt;}
.y179{bottom:442.638667pt;}
.ybd{bottom:443.989333pt;}
.yd{bottom:446.990669pt;}
.y25{bottom:447.022667pt;}
.y56{bottom:450.029333pt;}
.y146{bottom:450.620000pt;}
.y1f6{bottom:451.152000pt;}
.y22e{bottom:452.344000pt;}
.y111{bottom:453.009333pt;}
.y1c2{bottom:455.820000pt;}
.y89{bottom:456.197333pt;}
.ye6{bottom:456.993333pt;}
.y195{bottom:457.392000pt;}
.ybc{bottom:460.726667pt;}
.y24{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.y178{bottom:463.652000pt;}
.y1f5{bottom:466.494667pt;}
.y55{bottom:467.324000pt;}
.y145{bottom:467.357333pt;}
.y22d{bottom:467.686667pt;}
.y110{bottom:469.746667pt;}
.y88{bottom:472.934667pt;}
.ye5{bottom:473.730667pt;}
.y194{bottom:474.129333pt;}
.y1c1{bottom:476.834667pt;}
.ybb{bottom:477.462667pt;}
.yb{bottom:478.990666pt;}
.y1f4{bottom:481.837333pt;}
.y144{bottom:484.094667pt;}
.y10f{bottom:486.484000pt;}
.y87{bottom:489.672000pt;}
.ye4{bottom:490.468000pt;}
.y193{bottom:490.866667pt;}
.y1c0{bottom:491.445333pt;}
.y177{bottom:491.758667pt;}
.yba{bottom:494.200000pt;}
.ya{bottom:494.990666pt;}
.y1f3{bottom:497.180000pt;}
.y54{bottom:500.560000pt;}
.y143{bottom:500.832000pt;}
.y22c{bottom:502.424000pt;}
.y10e{bottom:503.221333pt;}
.y1bf{bottom:506.057333pt;}
.y86{bottom:506.409333pt;}
.ye3{bottom:507.205333pt;}
.y192{bottom:507.604000pt;}
.yb9{bottom:510.937333pt;}
.y1f2{bottom:512.522667pt;}
.y142{bottom:517.569333pt;}
.y22b{bottom:517.766667pt;}
.y53{bottom:517.854667pt;}
.y10d{bottom:519.957333pt;}
.y1be{bottom:520.669333pt;}
.y85{bottom:523.145333pt;}
.ye2{bottom:523.942667pt;}
.y191{bottom:524.341333pt;}
.y176{bottom:524.740000pt;}
.yb8{bottom:527.674667pt;}
.y1f1{bottom:527.865333pt;}
.y22a{bottom:533.108000pt;}
.y141{bottom:534.306667pt;}
.y52{bottom:535.149333pt;}
.y10c{bottom:536.694667pt;}
.y84{bottom:539.882667pt;}
.ye1{bottom:540.680000pt;}
.y190{bottom:541.078667pt;}
.y175{bottom:541.477333pt;}
.y1bd{bottom:541.684000pt;}
.y1f0{bottom:543.208000pt;}
.yb7{bottom:544.412000pt;}
.y12d{bottom:544.665333pt;}
.y229{bottom:548.450667pt;}
.y51{bottom:552.445333pt;}
.y10b{bottom:553.432000pt;}
.y1bc{bottom:556.296000pt;}
.y83{bottom:556.620000pt;}
.ye0{bottom:557.417333pt;}
.y18f{bottom:557.816000pt;}
.y174{bottom:558.214667pt;}
.y1ef{bottom:558.550667pt;}
.yb6{bottom:561.149333pt;}
.y228{bottom:563.793333pt;}
.y50{bottom:569.740000pt;}
.y10a{bottom:570.169333pt;}
.y1bb{bottom:570.908000pt;}
.y82{bottom:573.357333pt;}
.y9{bottom:573.786667pt;}
.y1ee{bottom:573.892000pt;}
.ydf{bottom:574.154667pt;}
.y12c{bottom:574.553333pt;}
.y140{bottom:574.717333pt;}
.y173{bottom:574.952000pt;}
.yb5{bottom:577.886667pt;}
.y227{bottom:579.136000pt;}
.y1ba{bottom:585.518667pt;}
.y4f{bottom:587.036000pt;}
.y1ed{bottom:589.234667pt;}
.y81{bottom:590.094667pt;}
.yde{bottom:590.892000pt;}
.y12b{bottom:591.290667pt;}
.y172{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y226{bottom:594.478667pt;}
.yb4{bottom:594.624000pt;}
.y13f{bottom:595.730667pt;}
.y1b9{bottom:600.130667pt;}
.y4e{bottom:604.330667pt;}
.y1ec{bottom:604.577333pt;}
.y80{bottom:606.832000pt;}
.y12a{bottom:608.028000pt;}
.y171{bottom:608.426667pt;}
.y225{bottom:609.821333pt;}
.y13e{bottom:610.342667pt;}
.ydd{bottom:611.614667pt;}
.yb3{bottom:615.346667pt;}
.y1eb{bottom:619.920000pt;}
.y109{bottom:620.780000pt;}
.y1b8{bottom:621.145333pt;}
.y4d{bottom:621.625333pt;}
.y7f{bottom:623.569333pt;}
.y129{bottom:624.765333pt;}
.y13d{bottom:624.954667pt;}
.y170{bottom:625.164000pt;}
.y1ea{bottom:635.262667pt;}
.y1b7{bottom:635.757333pt;}
.y108{bottom:637.517333pt;}
.y4c{bottom:638.921333pt;}
.y13c{bottom:639.566667pt;}
.y7e{bottom:640.306667pt;}
.y224{bottom:640.506667pt;}
.ydc{bottom:641.502667pt;}
.y16f{bottom:641.901333pt;}
.y7{bottom:645.598667pt;}
.yb2{bottom:646.902667pt;}
.y1b6{bottom:650.369333pt;}
.y1e9{bottom:650.605333pt;}
.y107{bottom:654.254667pt;}
.y223{bottom:655.848000pt;}
.y4b{bottom:656.216000pt;}
.y7d{bottom:657.044000pt;}
.ydb{bottom:658.240000pt;}
.y16e{bottom:658.638667pt;}
.y13b{bottom:660.580000pt;}
.yb1{bottom:663.652000pt;}
.y1b5{bottom:664.981333pt;}
.y1e8{bottom:665.948000pt;}
.y4{bottom:668.977329pt;}
.y106{bottom:670.992000pt;}
.y222{bottom:671.190667pt;}
.y4a{bottom:673.510667pt;}
.y7c{bottom:673.781333pt;}
.yda{bottom:674.977333pt;}
.y16d{bottom:675.376000pt;}
.yb0{bottom:678.264000pt;}
.y1b4{bottom:679.592000pt;}
.y1e7{bottom:685.274667pt;}
.yad{bottom:685.569333pt;}
.y221{bottom:686.533333pt;}
.y105{bottom:687.729333pt;}
.y13a{bottom:688.686667pt;}
.y7b{bottom:690.518667pt;}
.y49{bottom:690.806667pt;}
.yd9{bottom:691.714667pt;}
.y16c{bottom:692.113333pt;}
.yaf{bottom:692.876000pt;}
.y1b3{bottom:700.606667pt;}
.y220{bottom:701.876000pt;}
.y104{bottom:704.466667pt;}
.y7a{bottom:707.256000pt;}
.yae{bottom:707.488000pt;}
.yd8{bottom:708.452000pt;}
.y16b{bottom:708.850667pt;}
.y1b2{bottom:715.218667pt;}
.y21f{bottom:717.218667pt;}
.y103{bottom:721.204000pt;}
.y139{bottom:723.050667pt;}
.y79{bottom:723.993333pt;}
.y48{bottom:725.104000pt;}
.yd7{bottom:725.189333pt;}
.y1e6{bottom:725.553333pt;}
.y16a{bottom:725.588000pt;}
.yac{bottom:729.830667pt;}
.y21e{bottom:732.561333pt;}
.y102{bottom:737.941333pt;}
.y47{bottom:739.450667pt;}
.y1e5{bottom:740.165333pt;}
.y78{bottom:740.730667pt;}
.yd6{bottom:741.926667pt;}
.y169{bottom:742.324000pt;}
.y1b1{bottom:744.442667pt;}
.y128{bottom:745.910667pt;}
.y21d{bottom:747.904000pt;}
.yab{bottom:748.426667pt;}
.y101{bottom:754.678667pt;}
.y1e4{bottom:754.777333pt;}
.y46{bottom:757.654667pt;}
.yd5{bottom:758.664000pt;}
.y168{bottom:759.061333pt;}
.y77{bottom:761.453333pt;}
.y21c{bottom:763.246667pt;}
.y1b0{bottom:765.456000pt;}
.yaa{bottom:767.024000pt;}
.y45{bottom:768.142667pt;}
.y1e3{bottom:769.389333pt;}
.y100{bottom:771.416000pt;}
.yd4{bottom:775.401333pt;}
.y127{bottom:775.798667pt;}
.y21b{bottom:778.589333pt;}
.y76{bottom:779.385333pt;}
.y1af{bottom:780.068000pt;}
.ya9{bottom:781.636000pt;}
.y3{bottom:781.661334pt;}
.y1e2{bottom:784.000000pt;}
.y44{bottom:786.346667pt;}
.yff{bottom:788.153333pt;}
.yd3{bottom:792.138667pt;}
.y126{bottom:792.536000pt;}
.y21a{bottom:793.930667pt;}
.y1ae{bottom:794.680000pt;}
.ya8{bottom:796.248000pt;}
.y1e1{bottom:798.612000pt;}
.y43{bottom:800.693333pt;}
.yfe{bottom:804.890667pt;}
.y18e{bottom:808.874667pt;}
.y75{bottom:809.273333pt;}
.y1ad{bottom:809.292000pt;}
.ya7{bottom:810.860000pt;}
.y42{bottom:811.182667pt;}
.ya1{bottom:812.188000pt;}
.yd2{bottom:812.860000pt;}
.y1e0{bottom:819.626667pt;}
.y219{bottom:824.616000pt;}
.yfd{bottom:825.612000pt;}
.y74{bottom:826.010667pt;}
.y41{bottom:829.385333pt;}
.ya6{bottom:829.456000pt;}
.y18d{bottom:829.597333pt;}
.y1ac{bottom:830.305333pt;}
.y1df{bottom:834.238667pt;}
.y218{bottom:839.958667pt;}
.y2{bottom:840.112001pt;}
.y73{bottom:842.748000pt;}
.y1ab{bottom:844.917333pt;}
.ya5{bottom:848.053333pt;}
.y1de{bottom:848.850667pt;}
.y217{bottom:855.301333pt;}
.yfc{bottom:855.500000pt;}
.y1{bottom:859.312000pt;}
.y72{bottom:859.485333pt;}
.y1aa{bottom:859.529333pt;}
.ya4{bottom:862.665333pt;}
.y1dd{bottom:863.462667pt;}
.y40{bottom:869.098667pt;}
.y216{bottom:870.644000pt;}
.yfb{bottom:872.237333pt;}
.y1a9{bottom:874.141333pt;}
.y71{bottom:876.222667pt;}
.ya3{bottom:877.277333pt;}
.y1dc{bottom:878.073333pt;}
.y3f{bottom:885.836000pt;}
.y215{bottom:885.986667pt;}
.y1a8{bottom:888.753333pt;}
.y70{bottom:892.960000pt;}
.ya2{bottom:895.874667pt;}
.y1db{bottom:899.088000pt;}
.y214{bottom:901.329333pt;}
.y1a7{bottom:903.365333pt;}
.y6f{bottom:909.697333pt;}
.y1da{bottom:913.700000pt;}
.y213{bottom:916.670667pt;}
.ya0{bottom:916.888000pt;}
.y3e{bottom:921.320000pt;}
.y1a6{bottom:924.378667pt;}
.y6e{bottom:926.434667pt;}
.y1d9{bottom:928.312000pt;}
.y212{bottom:932.013333pt;}
.y1d8{bottom:942.924000pt;}
.y6d{bottom:943.172000pt;}
.y9f{bottom:944.994667pt;}
.y3d{bottom:946.425333pt;}
.y211{bottom:947.356000pt;}
.y1a5{bottom:955.141333pt;}
.y6c{bottom:959.909333pt;}
.y210{bottom:962.698667pt;}
.y1d7{bottom:963.937333pt;}
.y3c{bottom:971.530667pt;}
.y6b{bottom:976.646667pt;}
.y20f{bottom:978.041333pt;}
.y6a{bottom:993.384000pt;}
.y1d6{bottom:994.700000pt;}
.y39{bottom:1010.186667pt;}
.y69{bottom:1046.810667pt;}
.h12{height:23.209028pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h13{height:30.945242pt;}
.h17{height:31.157778pt;}
.h18{height:34.430976pt;}
.h14{height:34.813542pt;}
.h19{height:35.052646pt;}
.h15{height:38.256384pt;}
.h16{height:38.681455pt;}
.hf{height:38.947124pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1a{height:44.436941pt;}
.hd{height:45.271688pt;}
.h11{height:48.360277pt;}
.h2{height:49.024000pt;}
.he{height:54.767117pt;}
.h10{height:68.861952pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x16{left:55.592000pt;}
.x17{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xb{left:229.828000pt;}
.x8{left:239.924000pt;}
.xa{left:250.204000pt;}
.xe{left:252.608000pt;}
.xf{left:291.381333pt;}
.x11{left:337.874667pt;}
.x13{left:339.764000pt;}
.x10{left:340.864000pt;}
.x12{left:343.218667pt;}
.x3{left:404.408000pt;}
.xc{left:491.749333pt;}
.xd{left:492.816000pt;}
.x15{left:523.192000pt;}
.x14{left:571.192000pt;}
.x18{left:692.442667pt;}
.x19{left:699.893333pt;}
.x1a{left:728.114667pt;}
.x1b{left:738.510667pt;}
}




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