
    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_a71f329cbf8eaf3d9ab3d12a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a95cf246bf3a03140292b8df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.226000;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_5e90ef0c8e5d9ce0536ef025.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.638000;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_a0635c3a6de9323c3e6db3d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_810ac6144c4f5059b406a1ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_43a06ca0e516c5248c1406fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.773000;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_ca40eb9508c1d97521deb907.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;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_f0af765216a8e9c77293a659.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_cd4683388fa55eaeb7c2258a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.695000;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;}
.m6{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);}
.m21{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);}
.m1{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);}
.mc{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);}
.m9{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);}
.m12{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);}
.m1b{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);}
.m24{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);}
.m1f{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);}
.m18{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m29{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);}
.m15{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);}
.m1d{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);}
.m7{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);}
.m28{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);}
.m23{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);}
.m14{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);}
.m26{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);}
.m1e{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);}
.me{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);}
.m5{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);}
.m8{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);}
.m3{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);}
.m17{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);}
.m16{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);}
.m10{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);}
.m4{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);}
.mf{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);}
.m27{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);}
.m19{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);}
.mb{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);}
.m25{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);}
.m13{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);}
.m1c{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);}
.m22{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);}
.ma{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);}
.m2{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);}
.md{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;}
.v7{vertical-align:-11.724000px;}
.v4{vertical-align:-10.488000px;}
.ve{vertical-align:-8.400000px;}
.vf{vertical-align:-7.170000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.650000px;}
.va{vertical-align:8.400000px;}
.vc{vertical-align:9.498000px;}
.v3{vertical-align:10.920000px;}
.v10{vertical-align:12.300000px;}
.vd{vertical-align:17.364000px;}
.v6{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.vb{vertical-align:24.534000px;}
.v9{vertical-align:25.764000px;}
.v8{vertical-align:30.018000px;}
.v11{vertical-align:34.002000px;}
.lsa{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000027px;}
.ls41{letter-spacing:0.000208px;}
.ls45{letter-spacing:0.000292px;}
.ls3b{letter-spacing:0.000435px;}
.ls3{letter-spacing:0.000583px;}
.lsc{letter-spacing:0.000612px;}
.ls30{letter-spacing:0.000638px;}
.ls48{letter-spacing:0.000800px;}
.ls3d{letter-spacing:0.001036px;}
.ls3f{letter-spacing:0.001155px;}
.ls38{letter-spacing:0.001342px;}
.ls35{letter-spacing:0.001580px;}
.ls2e{letter-spacing:0.001959px;}
.ls10{letter-spacing:0.002458px;}
.ls1f{letter-spacing:0.002669px;}
.ls4{letter-spacing:0.002725px;}
.ls47{letter-spacing:0.002892px;}
.ls11{letter-spacing:0.003178px;}
.ls7{letter-spacing:0.003488px;}
.ls42{letter-spacing:0.003646px;}
.ls3c{letter-spacing:0.003657px;}
.ls39{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.503764px;}
.ls27{letter-spacing:0.642088px;}
.ls26{letter-spacing:0.648088px;}
.ls28{letter-spacing:2.983200px;}
.ls21{letter-spacing:2.984932px;}
.ls2a{letter-spacing:2.987674px;}
.lsf{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls23{letter-spacing:2.990932px;}
.ls2d{letter-spacing:2.993674px;}
.lse{letter-spacing:3.559200px;}
.lsd{letter-spacing:3.733200px;}
.lsb{letter-spacing:3.739200px;}
.ls0{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.960850px;}
.ls40{letter-spacing:13.400998px;}
.ls3e{letter-spacing:13.448400px;}
.ls14{letter-spacing:13.449341px;}
.ls15{letter-spacing:13.450051px;}
.ls13{letter-spacing:13.451510px;}
.ls46{letter-spacing:13.454400px;}
.ls43{letter-spacing:13.944518px;}
.ls17{letter-spacing:14.119267px;}
.ls18{letter-spacing:14.121178px;}
.ls1d{letter-spacing:14.121533px;}
.ls16{letter-spacing:14.122445px;}
.ls3a{letter-spacing:14.405920px;}
.ls12{letter-spacing:14.739178px;}
.ls33{letter-spacing:14.909400px;}
.ls32{letter-spacing:14.914660px;}
.ls2c{letter-spacing:14.941200px;}
.ls5{letter-spacing:14.944200px;}
.ls19{letter-spacing:15.169555px;}
.ls2b{letter-spacing:15.565200px;}
.ls29{letter-spacing:15.571200px;}
.ls24{letter-spacing:16.434600px;}
.ls22{letter-spacing:16.437797px;}
.ls20{letter-spacing:16.440600px;}
.ls44{letter-spacing:16.720988px;}
.ls34{letter-spacing:17.627400px;}
.ls2f{letter-spacing:17.929200px;}
.ls31{letter-spacing:17.935200px;}
.ls37{letter-spacing:20.825400px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls1c{letter-spacing:545.731133px;}
.ls1a{letter-spacing:606.697133px;}
.ls1e{letter-spacing:618.121133px;}
.ls25{letter-spacing:631.422600px;}
.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;}
}
.ws75{word-spacing:-50.888152px;}
.ws12{word-spacing:-14.943900px;}
.ws51{word-spacing:-13.449600px;}
.ws16{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsc0{word-spacing:-3.389299px;}
.ws47{word-spacing:-3.287658px;}
.ws4d{word-spacing:-3.108331px;}
.ws99{word-spacing:-2.929004px;}
.ws42{word-spacing:-2.689902px;}
.ws48{word-spacing:-2.570351px;}
.ws20{word-spacing:-2.271473px;}
.wsb9{word-spacing:-2.044339px;}
.ws7d{word-spacing:-2.032370px;}
.ws41{word-spacing:-1.912819px;}
.ws40{word-spacing:-1.793268px;}
.wsb8{word-spacing:-1.775347px;}
.ws9a{word-spacing:-1.733492px;}
.ws67{word-spacing:-1.434614px;}
.ws25{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.297127px;}
.wsa6{word-spacing:-1.291162px;}
.ws17{word-spacing:-1.291156px;}
.ws4b{word-spacing:-1.255288px;}
.ws6{word-spacing:-1.171598px;}
.ws8{word-spacing:-1.046070px;}
.wsb3{word-spacing:-1.022170px;}
.ws7e{word-spacing:-0.956410px;}
.wsb2{word-spacing:-0.914573px;}
.ws2d{word-spacing:-0.896634px;}
.ws76{word-spacing:-0.836858px;}
.ws1{word-spacing:-0.795013px;}
.ws32{word-spacing:-0.777083px;}
.ws2e{word-spacing:-0.657532px;}
.ws36{word-spacing:-0.597756px;}
.ws0{word-spacing:-0.572459px;}
.ws95{word-spacing:-0.537980px;}
.ws80{word-spacing:-0.478205px;}
.ws31{word-spacing:-0.358654px;}
.wsce{word-spacing:-0.322790px;}
.ws2b{word-spacing:-0.298878px;}
.wsac{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.239102px;}
.ws1b{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.179327px;}
.ws78{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.wsa9{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.wsc6{word-spacing:-0.028147px;}
.wsd3{word-spacing:-0.007190px;}
.ws98{word-spacing:-0.006442px;}
.wsc9{word-spacing:-0.005702px;}
.ws9f{word-spacing:-0.004694px;}
.wsc2{word-spacing:-0.004003px;}
.ws3e{word-spacing:-0.003300px;}
.ws5f{word-spacing:-0.003110px;}
.ws30{word-spacing:-0.002857px;}
.ws10{word-spacing:-0.001808px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.000506px;}
.wsa3{word-spacing:0.001306px;}
.ws13{word-spacing:0.002375px;}
.ws61{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws97{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.wsa7{word-spacing:0.161395px;}
.ws34{word-spacing:0.179327px;}
.wsd2{word-spacing:0.215194px;}
.ws24{word-spacing:0.239102px;}
.wsa8{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.wsba{word-spacing:0.322790px;}
.ws21{word-spacing:0.358654px;}
.ws38{word-spacing:0.418429px;}
.wscb{word-spacing:0.430387px;}
.ws4e{word-spacing:0.478205px;}
.ws92{word-spacing:0.537980px;}
.ws43{word-spacing:0.568500px;}
.ws37{word-spacing:0.597756px;}
.wsca{word-spacing:0.645581px;}
.ws72{word-spacing:0.657532px;}
.wscc{word-spacing:0.699379px;}
.ws46{word-spacing:0.836858px;}
.ws19{word-spacing:0.860774px;}
.ws77{word-spacing:0.896634px;}
.ws7{word-spacing:1.004227px;}
.ws45{word-spacing:1.255288px;}
.wsd1{word-spacing:1.344960px;}
.ws66{word-spacing:1.374839px;}
.ws93{word-spacing:1.434614px;}
.ws7c{word-spacing:1.494390px;}
.ws49{word-spacing:1.613941px;}
.ws7f{word-spacing:1.793268px;}
.wsb0{word-spacing:1.882944px;}
.wsa5{word-spacing:1.936742px;}
.ws3b{word-spacing:2.032370px;}
.wsad{word-spacing:2.044339px;}
.ws3f{word-spacing:2.092146px;}
.ws7a{word-spacing:2.151922px;}
.ws83{word-spacing:2.211697px;}
.ws87{word-spacing:2.271473px;}
.wsaa{word-spacing:2.313331px;}
.ws2a{word-spacing:2.331248px;}
.wsaf{word-spacing:2.367130px;}
.ws91{word-spacing:2.391024px;}
.ws3d{word-spacing:2.450800px;}
.ws4c{word-spacing:2.510575px;}
.wsbc{word-spacing:2.582323px;}
.wsa0{word-spacing:2.636122px;}
.ws79{word-spacing:2.869229px;}
.wsbb{word-spacing:2.905114px;}
.ws39{word-spacing:2.988780px;}
.ws3a{word-spacing:3.048556px;}
.wsb4{word-spacing:3.076314px;}
.ws7b{word-spacing:3.108331px;}
.wsb5{word-spacing:3.120307px;}
.ws6f{word-spacing:3.168107px;}
.wsa4{word-spacing:3.174106px;}
.ws1e{word-spacing:3.219667px;}
.wsae{word-spacing:3.219830px;}
.wsb1{word-spacing:3.222077px;}
.wscf{word-spacing:3.222557px;}
.wsd0{word-spacing:3.224045px;}
.wsc5{word-spacing:3.224141px;}
.wsc7{word-spacing:3.227002px;}
.ws29{word-spacing:3.227882px;}
.ws94{word-spacing:3.227904px;}
.wsbe{word-spacing:3.281702px;}
.ws70{word-spacing:3.287658px;}
.ws26{word-spacing:3.407209px;}
.wsb6{word-spacing:3.496896px;}
.ws73{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws8c{word-spacing:3.706087px;}
.wsbf{word-spacing:3.712090px;}
.ws9b{word-spacing:3.765863px;}
.ws1d{word-spacing:3.819686px;}
.ws1c{word-spacing:3.873485px;}
.ws18{word-spacing:3.981082px;}
.ws65{word-spacing:4.064741px;}
.ws6a{word-spacing:4.124516px;}
.ws33{word-spacing:4.184292px;}
.ws64{word-spacing:4.303843px;}
.wscd{word-spacing:4.303872px;}
.wsab{word-spacing:4.357670px;}
.ws88{word-spacing:4.363619px;}
.wsa2{word-spacing:4.411469px;}
.ws4a{word-spacing:4.542946px;}
.wsb7{word-spacing:4.626662px;}
.ws68{word-spacing:4.662497px;}
.ws86{word-spacing:4.722272px;}
.wse{word-spacing:4.770079px;}
.ws6c{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws96{word-spacing:4.901599px;}
.ws8e{word-spacing:4.961375px;}
.ws89{word-spacing:5.080926px;}
.ws9d{word-spacing:5.164646px;}
.ws69{word-spacing:5.200477px;}
.ws8b{word-spacing:5.260253px;}
.ws9c{word-spacing:5.487437px;}
.ws35{word-spacing:5.678682px;}
.wsc8{word-spacing:5.702630px;}
.ws71{word-spacing:5.738458px;}
.ws8a{word-spacing:5.858009px;}
.wsc1{word-spacing:6.348211px;}
.ws74{word-spacing:6.395989px;}
.ws6b{word-spacing:6.578148px;}
.ws84{word-spacing:6.579485px;}
.ws62{word-spacing:6.598291px;}
.ws9e{word-spacing:7.101389px;}
.wsa1{word-spacing:7.155187px;}
.ws44{word-spacing:7.352399px;}
.wsc{word-spacing:7.782761px;}
.ws6d{word-spacing:7.890379px;}
.ws6e{word-spacing:8.129482px;}
.ws8f{word-spacing:8.189257px;}
.ws63{word-spacing:8.966340px;}
.ws81{word-spacing:9.253862px;}
.ws82{word-spacing:9.259862px;}
.ws90{word-spacing:9.324994px;}
.ws3c{word-spacing:9.623872px;}
.ws8d{word-spacing:9.862974px;}
.wsc4{word-spacing:10.490688px;}
.wsbd{word-spacing:11.351462px;}
.wsa{word-spacing:12.176255px;}
.ws85{word-spacing:12.463862px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.wsc3{word-spacing:48.398400px;}
.ws52{word-spacing:332.932500px;}
.ws5d{word-spacing:362.827738px;}
.ws5e{word-spacing:422.209843px;}
.ws50{word-spacing:469.713830px;}
.ws4f{word-spacing:562.408474px;}
.ws53{word-spacing:575.911872px;}
.ws57{word-spacing:586.133510px;}
.ws56{word-spacing:586.643510px;}
.ws58{word-spacing:614.537510px;}
.ws5c{word-spacing:616.206874px;}
.ws60{word-spacing:629.656474px;}
.ws5a{word-spacing:643.106074px;}
.ws55{word-spacing:670.005274px;}
.ws54{word-spacing:673.028333px;}
.ws5b{word-spacing:684.720752px;}
.ws59{word-spacing:723.803674px;}
._9{margin-left:-7.712336px;}
._13{margin-left:-6.455765px;}
._2{margin-left:-5.397721px;}
._1{margin-left:-3.598481px;}
._7{margin-left:-2.301354px;}
._0{margin-left:-1.255284px;}
._6{width:2.301354px;}
._a{width:3.667408px;}
._4{width:11.883355px;}
._5{width:12.971268px;}
._b{width:14.166512px;}
._11{width:15.308430px;}
._2a{width:16.408396px;}
._c{width:17.418704px;}
._e{width:19.278992px;}
._12{width:20.323704px;}
._14{width:21.788200px;}
._29{width:23.826456px;}
._3{width:25.940136px;}
._d{width:27.759974px;}
._8{width:30.587087px;}
._27{width:31.621289px;}
._28{width:33.534112px;}
._2c{width:34.968726px;}
._2b{width:36.582667px;}
._2e{width:47.342272px;}
._2d{width:48.597563px;}
._30{width:61.868160px;}
._26{width:359.831827px;}
._25{width:383.864938px;}
._15{width:445.827341px;}
._23{width:483.593818px;}
._1c{width:499.679539px;}
._1d{width:513.129139px;}
._18{width:522.328666px;}
._1f{width:540.028339px;}
._19{width:573.616422px;}
._21{width:598.507200px;}
._20{width:599.636966px;}
._1e{width:600.712934px;}
._1a{width:609.286800px;}
._16{width:624.384230px;}
._24{width:629.710272px;}
._17{width:683.670067px;}
._1b{width:694.967731px;}
._22{width:765.174643px;}
._f{width:1027.268715px;}
._2f{width:2535.800700px;}
._10{width:2559.710700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(54,121,123);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsc{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1c{bottom:16.015847px;}
.y4c{bottom:31.890000px;}
.y126{bottom:92.616000px;}
.y158{bottom:95.539500px;}
.ydd{bottom:100.686000px;}
.yc4{bottom:101.713500px;}
.y1a{bottom:104.646000px;}
.y4b{bottom:104.934000px;}
.y89{bottom:104.952000px;}
.y125{bottom:111.445500px;}
.y179{bottom:114.591000px;}
.y157{bottom:114.771000px;}
.y140{bottom:117.189000px;}
.ydc{bottom:119.919000px;}
.yc3{bottom:120.543000px;}
.yf6{bottom:120.681000px;}
.y19{bottom:122.535000px;}
.y4a{bottom:123.763500px;}
.y88{bottom:123.781500px;}
.y124{bottom:130.275000px;}
.y178{bottom:131.851500px;}
.y13f{bottom:136.017000px;}
.y1b1{bottom:139.023000px;}
.yc2{bottom:139.372500px;}
.yf5{bottom:139.510500px;}
.y18{bottom:140.422500px;}
.y49{bottom:142.593000px;}
.y87{bottom:142.611000px;}
.y123{bottom:146.028000px;}
.y121{bottom:149.104500px;}
.y177{bottom:149.112000px;}
.y122{bottom:154.528500px;}
.y13e{bottom:154.846500px;}
.y1b0{bottom:156.283500px;}
.yc1{bottom:158.202000px;}
.y17{bottom:158.310000px;}
.yf4{bottom:158.340000px;}
.y48{bottom:161.422500px;}
.y86{bottom:165.922500px;}
.y176{bottom:166.371000px;}
.y120{bottom:167.934000px;}
.y1af{bottom:173.544000px;}
.y13d{bottom:173.676000px;}
.y16{bottom:176.199000px;}
.yc0{bottom:177.031500px;}
.yf3{bottom:177.169500px;}
.y47{bottom:180.252000px;}
.y175{bottom:183.631500px;}
.y11f{bottom:186.763500px;}
.y1ae{bottom:190.804500px;}
.y13c{bottom:192.505500px;}
.y15{bottom:194.086500px;}
.ybf{bottom:195.861000px;}
.yf2{bottom:195.999000px;}
.y46{bottom:199.081500px;}
.y85{bottom:199.546500px;}
.y174{bottom:200.892000px;}
.y11e{bottom:205.593000px;}
.y1ad{bottom:208.065000px;}
.y13b{bottom:211.335000px;}
.y14{bottom:211.974000px;}
.ybe{bottom:214.690500px;}
.yf1{bottom:214.828500px;}
.y45{bottom:217.911000px;}
.y173{bottom:218.152500px;}
.y83{bottom:218.376000px;}
.y84{bottom:223.801500px;}
.y11d{bottom:224.422500px;}
.y1ac{bottom:225.325500px;}
.y13{bottom:229.863000px;}
.y13a{bottom:230.164500px;}
.yf0{bottom:233.658000px;}
.y44{bottom:236.740500px;}
.y82{bottom:237.205500px;}
.ybd{bottom:238.003500px;}
.y172{bottom:239.896500px;}
.y1ab{bottom:242.586000px;}
.y11c{bottom:243.252000px;}
.y139{bottom:248.994000px;}
.yef{bottom:252.487500px;}
.y43{bottom:255.570000px;}
.y81{bottom:256.035000px;}
.y1aa{bottom:259.846500px;}
.y11b{bottom:262.081500px;}
.y138{bottom:267.823500px;}
.ybc{bottom:269.647500px;}
.yee{bottom:271.317000px;}
.y80{bottom:272.134500px;}
.y42{bottom:274.399500px;}
.y7f{bottom:274.864500px;}
.y171{bottom:276.658500px;}
.y1a9{bottom:277.105500px;}
.y11a{bottom:277.834500px;}
.y118{bottom:280.911000px;}
.ybb{bottom:283.642500px;}
.yb9{bottom:283.917000px;}
.yba{bottom:284.224500px;}
.yb8{bottom:286.017000px;}
.y119{bottom:286.335000px;}
.y137{bottom:286.653000px;}
.yed{bottom:287.070000px;}
.yec{bottom:290.146500px;}
.yb7{bottom:290.358000px;}
.y7e{bottom:290.964000px;}
.y41{bottom:293.229000px;}
.y7d{bottom:293.694000px;}
.y1a8{bottom:294.366000px;}
.y117{bottom:299.740500px;}
.y12{bottom:300.154500px;}
.y170{bottom:303.199500px;}
.y136{bottom:305.482500px;}
.yb4{bottom:307.038000px;}
.yb6{bottom:307.452000px;}
.yeb{bottom:308.976000px;}
.y1a7{bottom:311.626500px;}
.yb5{bottom:311.920500px;}
.y40{bottom:312.058500px;}
.y7c{bottom:317.007000px;}
.y11{bottom:318.043500px;}
.y116{bottom:318.570000px;}
.yb3{bottom:324.303000px;}
.y135{bottom:324.312000px;}
.yea{bottom:325.075500px;}
.ye9{bottom:327.805500px;}
.y1a6{bottom:328.887000px;}
.y16f{bottom:329.739000px;}
.y3f{bottom:330.888000px;}
.y10{bottom:335.931000px;}
.y115{bottom:337.399500px;}
.y134{bottom:340.411500px;}
.yb2{bottom:340.741500px;}
.y133{bottom:343.141500px;}
.y1a5{bottom:346.147500px;}
.ye8{bottom:346.635000px;}
.y3e{bottom:349.717500px;}
.y7b{bottom:350.631000px;}
.ydb{bottom:351.079500px;}
.yf{bottom:353.818500px;}
.y114{bottom:356.229000px;}
.y16e{bottom:356.280000px;}
.yb1{bottom:358.123500px;}
.y132{bottom:361.971000px;}
.ye7{bottom:362.734500px;}
.y1a4{bottom:363.408000px;}
.ye6{bottom:365.464500px;}
.yda{bottom:367.179000px;}
.y3d{bottom:368.547000px;}
.y79{bottom:369.460500px;}
.yd9{bottom:369.909000px;}
.y113{bottom:371.982000px;}
.y16d{bottom:373.854000px;}
.y7a{bottom:374.884500px;}
.y112{bottom:375.057000px;}
.yb0{bottom:375.505500px;}
.y111{bottom:380.482500px;}
.y1a3{bottom:380.668500px;}
.ye{bottom:380.673000px;}
.y131{bottom:380.800500px;}
.ye5{bottom:384.294000px;}
.y3c{bottom:387.376500px;}
.y78{bottom:388.290000px;}
.yd8{bottom:388.738500px;}
.y16c{bottom:391.428000px;}
.yaf{bottom:391.944000px;}
.y110{bottom:393.886500px;}
.y1a2{bottom:397.929000px;}
.yd{bottom:398.562000px;}
.y130{bottom:399.630000px;}
.ye4{bottom:403.123500px;}
.y3b{bottom:406.206000px;}
.y76{bottom:407.119500px;}
.yd7{bottom:407.568000px;}
.yae{bottom:408.382500px;}
.y16b{bottom:409.002000px;}
.y77{bottom:412.543500px;}
.y10f{bottom:412.716000px;}
.y1a1{bottom:415.188000px;}
.y12f{bottom:415.729500px;}
.yc{bottom:416.449500px;}
.y12e{bottom:418.459500px;}
.y3a{bottom:425.035500px;}
.yad{bottom:425.445000px;}
.y75{bottom:425.949000px;}
.yd6{bottom:426.397500px;}
.y16a{bottom:426.576000px;}
.y10e{bottom:431.545500px;}
.y1a0{bottom:432.448500px;}
.ye3{bottom:436.689000px;}
.y12d{bottom:437.289000px;}
.y74{bottom:442.048500px;}
.yac{bottom:442.509000px;}
.y169{bottom:444.150000px;}
.y73{bottom:444.778500px;}
.yb{bottom:444.798000px;}
.yd5{bottom:445.227000px;}
.y156{bottom:446.403000px;}
.y39{bottom:448.347000px;}
.y19f{bottom:449.709000px;}
.y10d{bottom:450.375000px;}
.ye2{bottom:455.922000px;}
.y12c{bottom:456.118500px;}
.yab{bottom:458.947500px;}
.y72{bottom:460.878000px;}
.y168{bottom:461.724000px;}
.y71{bottom:463.608000px;}
.yd4{bottom:464.056500px;}
.y155{bottom:465.231000px;}
.y19d{bottom:466.969500px;}
.y10c{bottom:469.204500px;}
.ya{bottom:471.652500px;}
.y19e{bottom:471.852000px;}
.y12b{bottom:474.948000px;}
.yaa{bottom:476.211000px;}
.y70{bottom:479.707500px;}
.y6f{bottom:482.437500px;}
.yd3{bottom:482.886000px;}
.y154{bottom:484.060500px;}
.y19c{bottom:484.230000px;}
.y10b{bottom:488.034000px;}
.y167{bottom:488.265000px;}
.y9{bottom:489.540000px;}
.ya9{bottom:492.649500px;}
.y6e{bottom:498.537000px;}
.y6d{bottom:501.267000px;}
.y19b{bottom:501.490500px;}
.yd2{bottom:501.714000px;}
.y153{bottom:502.890000px;}
.y166{bottom:505.839000px;}
.y8{bottom:507.429000px;}
.y12a{bottom:508.513500px;}
.ya8{bottom:509.088000px;}
.y19a{bottom:518.751000px;}
.y6c{bottom:520.095000px;}
.yd1{bottom:520.543500px;}
.y10a{bottom:521.599500px;}
.y152{bottom:521.719500px;}
.y165{bottom:523.413000px;}
.y38{bottom:523.498500px;}
.y7{bottom:525.316500px;}
.ya7{bottom:525.526500px;}
.y199{bottom:536.011500px;}
.yd0{bottom:539.373000px;}
.y151{bottom:540.549000px;}
.y109{bottom:540.832500px;}
.y164{bottom:540.987000px;}
.ya6{bottom:542.791500px;}
.y6{bottom:543.204000px;}
.y6b{bottom:543.408000px;}
.y198{bottom:553.272000px;}
.ycf{bottom:558.202500px;}
.y162{bottom:558.561000px;}
.y163{bottom:558.562500px;}
.y150{bottom:559.378500px;}
.ya5{bottom:560.056500px;}
.y37{bottom:560.887500px;}
.y5{bottom:561.093000px;}
.y6a{bottom:563.583000px;}
.y197{bottom:570.531000px;}
.ya4{bottom:577.321500px;}
.y14f{bottom:578.208000px;}
.y4{bottom:578.980500px;}
.y36{bottom:580.344000px;}
.yce{bottom:581.515500px;}
.y161{bottom:585.102000px;}
.y196{bottom:587.791500px;}
.ya3{bottom:593.760000px;}
.y3{bottom:596.868000px;}
.y14d{bottom:597.037500px;}
.y69{bottom:597.207000px;}
.y35{bottom:599.802000px;}
.y14e{bottom:602.463000px;}
.y160{bottom:603.147000px;}
.y195{bottom:605.052000px;}
.ya2{bottom:610.197000px;}
.y2{bottom:614.757000px;}
.ycd{bottom:615.139500px;}
.y14b{bottom:615.867000px;}
.y68{bottom:616.036500px;}
.y34{bottom:619.258500px;}
.y15f{bottom:621.192000px;}
.y14c{bottom:621.292500px;}
.y194{bottom:622.312500px;}
.ya1{bottom:626.635500px;}
.y1{bottom:632.644500px;}
.ycc{bottom:633.969000px;}
.y14a{bottom:634.696500px;}
.y67{bottom:634.866000px;}
.y33{bottom:638.716500px;}
.y15e{bottom:639.237000px;}
.y193{bottom:639.573000px;}
.ya0{bottom:643.074000px;}
.ye1{bottom:650.965500px;}
.yca{bottom:652.798500px;}
.y149{bottom:653.526000px;}
.y66{bottom:653.695500px;}
.y192{bottom:656.833500px;}
.y15d{bottom:657.282000px;}
.y32{bottom:658.173000px;}
.ycb{bottom:658.222500px;}
.y9f{bottom:659.512500px;}
.yc9{bottom:671.628000px;}
.y148{bottom:672.355500px;}
.y65{bottom:672.525000px;}
.y191{bottom:674.094000px;}
.y15c{bottom:675.327000px;}
.y31{bottom:677.629500px;}
.y9e{bottom:683.154000px;}
.y147{bottom:691.185000px;}
.y64{bottom:691.354500px;}
.y15b{bottom:693.372000px;}
.yc8{bottom:694.941000px;}
.y190{bottom:708.613500px;}
.y146{bottom:710.014500px;}
.y63{bottom:710.184000px;}
.y15a{bottom:711.417000px;}
.y9d{bottom:714.772500px;}
.y30{bottom:716.215500px;}
.y18f{bottom:725.874000px;}
.yc7{bottom:728.565000px;}
.y145{bottom:728.844000px;}
.y62{bottom:729.013500px;}
.y2f{bottom:732.355500px;}
.y18e{bottom:743.134500px;}
.y9c{bottom:747.394500px;}
.y144{bottom:747.673500px;}
.y61{bottom:747.843000px;}
.y2e{bottom:752.833500px;}
.y18d{bottom:760.395000px;}
.y2d{bottom:764.634000px;}
.y9b{bottom:766.224000px;}
.y143{bottom:766.503000px;}
.y60{bottom:766.671000px;}
.y18c{bottom:777.655500px;}
.y2c{bottom:780.774000px;}
.y9a{bottom:785.053500px;}
.y2b{bottom:785.113500px;}
.y5f{bottom:785.500500px;}
.y142{bottom:789.816000px;}
.y129{bottom:790.764000px;}
.y18b{bottom:794.916000px;}
.y2a{bottom:796.912500px;}
.y108{bottom:799.848000px;}
.y99{bottom:803.883000px;}
.y5e{bottom:804.330000px;}
.y128{bottom:809.997000px;}
.y18a{bottom:812.176500px;}
.y29{bottom:817.392000px;}
.y107{bottom:818.677500px;}
.y141{bottom:820.243500px;}
.y98{bottom:822.712500px;}
.y5d{bottom:823.159500px;}
.y28{bottom:829.192500px;}
.y189{bottom:829.437000px;}
.y106{bottom:837.507000px;}
.y97{bottom:841.540500px;}
.y5c{bottom:841.989000px;}
.y188{bottom:846.697500px;}
.y27{bottom:849.672000px;}
.y105{bottom:856.335000px;}
.y96{bottom:860.370000px;}
.y5b{bottom:860.818500px;}
.y26{bottom:861.471000px;}
.y187{bottom:863.956500px;}
.y104{bottom:872.089500px;}
.y102{bottom:875.164500px;}
.y95{bottom:879.199500px;}
.y5a{bottom:879.648000px;}
.y103{bottom:880.590000px;}
.y186{bottom:881.217000px;}
.y25{bottom:881.950500px;}
.y24{bottom:893.751000px;}
.y101{bottom:893.994000px;}
.y94{bottom:898.029000px;}
.y59{bottom:898.477500px;}
.y100{bottom:912.823500px;}
.y23{bottom:914.229000px;}
.y185{bottom:915.738000px;}
.y93{bottom:916.858500px;}
.y58{bottom:917.307000px;}
.yff{bottom:931.653000px;}
.y184{bottom:932.998500px;}
.y91{bottom:935.688000px;}
.y57{bottom:936.136500px;}
.y92{bottom:941.113500px;}
.y183{bottom:950.259000px;}
.yfe{bottom:950.482500px;}
.yc6{bottom:951.787500px;}
.ye0{bottom:952.725000px;}
.y90{bottom:954.517500px;}
.y56{bottom:954.966000px;}
.y22{bottom:958.906500px;}
.y182{bottom:967.519500px;}
.yfd{bottom:969.312000px;}
.ydf{bottom:970.719000px;}
.y8f{bottom:973.347000px;}
.y55{bottom:973.795500px;}
.y21{bottom:977.736000px;}
.y181{bottom:984.780000px;}
.yfc{bottom:988.141500px;}
.y8e{bottom:992.176500px;}
.y54{bottom:992.625000px;}
.y20{bottom:996.565500px;}
.y159{bottom:996.660000px;}
.y180{bottom:1002.040500px;}
.yfb{bottom:1006.971000px;}
.y8d{bottom:1011.006000px;}
.y53{bottom:1011.454500px;}
.yc5{bottom:1015.489500px;}
.y17f{bottom:1019.299500px;}
.yfa{bottom:1025.800500px;}
.y8c{bottom:1029.835500px;}
.y52{bottom:1030.284000px;}
.y1f{bottom:1036.485000px;}
.y17e{bottom:1036.560000px;}
.yf9{bottom:1044.630000px;}
.y51{bottom:1049.113500px;}
.y8b{bottom:1053.148500px;}
.y17d{bottom:1053.820500px;}
.yf8{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y50{bottom:1067.943000px;}
.y17c{bottom:1071.081000px;}
.yf7{bottom:1082.289000px;}
.yde{bottom:1084.042500px;}
.y127{bottom:1084.530000px;}
.y17b{bottom:1085.719500px;}
.y4f{bottom:1086.772500px;}
.y17a{bottom:1088.341500px;}
.y1d{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.y8a{bottom:1111.026000px;}
.y1b{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.h13{height:30.106714px;}
.h18{height:33.091855px;}
.h9{height:33.821261px;}
.h1e{height:37.120896px;}
.hb{height:38.734848px;}
.h2{height:39.457760px;}
.hf{height:39.614278px;}
.h1b{height:41.189498px;}
.h12{height:41.245164px;}
.h10{height:42.840113px;}
.hd{height:43.038432px;}
.h5{height:43.815515px;}
.ha{height:45.094826px;}
.h11{height:50.534278px;}
.hc{height:50.731891px;}
.h3{height:50.930649px;}
.h1c{height:51.185261px;}
.h14{height:52.381891px;}
.h15{height:52.387891px;}
.h7{height:54.405312px;}
.h8{height:55.352206px;}
.he{height:56.368391px;}
.h1a{height:58.355261px;}
.h16{height:58.981760px;}
.h17{height:58.987760px;}
.h19{height:59.585261px;}
.h1d{height:76.842113px;}
.h6{height:77.469696px;}
.h4{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.555600px;}
.xe5{left:85.848000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x89{left:254.173500px;}
.xc2{left:256.015500px;}
.x6b{left:258.556500px;}
.x2c{left:266.854500px;}
.xc3{left:268.698000px;}
.x4{left:269.914500px;}
.x2d{left:273.280500px;}
.x8e{left:276.859500px;}
.x9{left:281.479500px;}
.xd4{left:287.892000px;}
.x4f{left:289.027500px;}
.x68{left:292.030500px;}
.xe2{left:294.499500px;}
.x2e{left:296.754000px;}
.x2f{left:303.180000px;}
.xe3{left:304.584000px;}
.x95{left:306.853500px;}
.x62{left:308.532000px;}
.x6{left:310.312500px;}
.x30{left:315.862500px;}
.x9a{left:319.228500px;}
.x31{left:322.288500px;}
.x67{left:323.899500px;}
.x6a{left:326.310000px;}
.x12{left:328.696500px;}
.xd8{left:330.160500px;}
.x65{left:332.431500px;}
.x61{left:333.702000px;}
.x13{left:336.168000px;}
.x63{left:337.899000px;}
.x64{left:339.082500px;}
.x69{left:342.249000px;}
.x59{left:343.942500px;}
.xd9{left:345.105000px;}
.x9b{left:346.173000px;}
.x49{left:347.560500px;}
.x66{left:348.726000px;}
.xb5{left:350.869500px;}
.x4a{left:353.986500px;}
.x18{left:356.889000px;}
.x50{left:358.014000px;}
.xcb{left:359.922000px;}
.x6e{left:362.478000px;}
.x19{left:364.360500px;}
.xaf{left:367.120500px;}
.xc8{left:371.575500px;}
.x93{left:372.831000px;}
.x9d{left:373.945500px;}
.xc9{left:378.001500px;}
.x32{left:379.357500px;}
.x6f{left:383.659500px;}
.x33{left:385.783500px;}
.xe4{left:390.691500px;}
.xa4{left:391.995000px;}
.x57{left:394.621500px;}
.xcc{left:397.662000px;}
.x34{left:403.540500px;}
.xb6{left:406.192500px;}
.x58{left:408.180000px;}
.x35{left:409.966500px;}
.xd5{left:412.758000px;}
.x70{left:414.034500px;}
.x9c{left:415.197000px;}
.xc1{left:416.875500px;}
.xbb{left:418.318500px;}
.x71{left:423.979500px;}
.x1a{left:428.023500px;}
.xcd{left:433.677000px;}
.x1b{left:435.495000px;}
.xb2{left:436.957500px;}
.xe0{left:438.783000px;}
.x6c{left:443.413500px;}
.xce{left:445.968000px;}
.x5c{left:447.132000px;}
.xde{left:449.139000px;}
.x14{left:451.606500px;}
.x5d{left:453.558000px;}
.xdb{left:454.600500px;}
.x15{left:459.078000px;}
.x72{left:461.160000px;}
.x20{left:462.816000px;}
.xdc{left:464.754000px;}
.xb7{left:467.901000px;}
.x3c{left:470.383500px;}
.xdd{left:471.912000px;}
.xb8{left:474.325500px;}
.x73{left:476.307000px;}
.x21{left:477.760500px;}
.xe1{left:479.232000px;}
.x74{left:483.024000px;}
.xa2{left:485.688000px;}
.xb9{left:487.008000px;}
.x3d{left:489.318000px;}
.x75{left:491.724000px;}
.x3e{left:495.744000px;}
.x76{left:499.717500px;}
.x6d{left:501.727500px;}
.x77{left:507.943500px;}
.x91{left:510.192000px;}
.x60{left:512.562000px;}
.x92{left:516.997500px;}
.x78{left:518.340000px;}
.x3f{left:523.159500px;}
.x79{left:526.462500px;}
.xc0{left:530.361000px;}
.x43{left:531.646500px;}
.x8a{left:532.987500px;}
.xca{left:534.355500px;}
.x40{left:535.452000px;}
.xbc{left:537.912000px;}
.x44{left:540.877500px;}
.x8b{left:542.217000px;}
.x9f{left:544.020000px;}
.xbd{left:546.129000px;}
.x27{left:547.693500px;}
.xa0{left:550.744500px;}
.x7a{left:552.850500px;}
.x28{left:558.813000px;}
.x55{left:561.489000px;}
.x36{left:563.182500px;}
.xab{left:566.715000px;}
.x56{left:568.294500px;}
.x37{left:569.608500px;}
.xa1{left:571.447500px;}
.x48{left:574.401000px;}
.xd7{left:575.718000px;}
.xac{left:577.656000px;}
.x29{left:579.115500px;}
.x16{left:580.258500px;}
.x96{left:582.150000px;}
.x2a{left:585.541500px;}
.x17{left:587.730000px;}
.x97{left:588.874500px;}
.xa{left:593.901000px;}
.x9e{left:597.697500px;}
.xad{left:603.832500px;}
.xb{left:606.192000px;}
.x4b{left:609.265500px;}
.x45{left:612.129000px;}
.x7b{left:614.749500px;}
.x2b{left:617.550000px;}
.xae{left:618.780000px;}
.x4c{left:620.383500px;}
.xc6{left:626.193000px;}
.x7c{left:628.654500px;}
.xa9{left:630.150000px;}
.x98{left:632.458500px;}
.x7d{left:633.885000px;}
.xbe{left:636.922500px;}
.x4d{left:640.468500px;}
.x99{left:643.504500px;}
.xaa{left:644.848500px;}
.x4e{left:646.893000px;}
.x5e{left:651.787500px;}
.x7e{left:655.576500px;}
.xa5{left:662.434500px;}
.xc7{left:665.224500px;}
.x5f{left:666.732000px;}
.x51{left:670.018500px;}
.x7f{left:673.551000px;}
.x46{left:674.764500px;}
.xdf{left:675.780000px;}
.x52{left:677.491500px;}
.xd3{left:679.254000px;}
.x80{left:681.777000px;}
.xa6{left:683.796000px;}
.x47{left:685.927500px;}
.xd6{left:687.274500px;}
.xba{left:689.203500px;}
.x1c{left:696.343500px;}
.xb0{left:698.295000px;}
.xa7{left:699.496500px;}
.x81{left:704.281500px;}
.xa8{left:706.968000px;}
.x7{left:708.486000px;}
.x1d{left:711.286500px;}
.xb1{left:713.238000px;}
.x1e{left:715.098000px;}
.x41{left:716.926500px;}
.x8{left:719.626500px;}
.x5a{left:721.294500px;}
.x42{left:723.352500px;}
.x82{left:724.900500px;}
.xcf{left:726.025500px;}
.xd0{left:727.239000px;}
.xb3{left:728.943000px;}
.x1f{left:730.041000px;}
.x38{left:732.145500px;}
.x5b{left:736.237500px;}
.x39{left:738.571500px;}
.xda{left:741.192000px;}
.x8d{left:742.980000px;}
.xb4{left:747.699000px;}
.x3a{left:751.252500px;}
.x22{left:753.720000px;}
.x8c{left:754.830000px;}
.x3b{left:757.678500px;}
.x23{left:760.146000px;}
.xd1{left:762.678000px;}
.x24{left:765.222000px;}
.x83{left:767.946000px;}
.xd2{left:769.104000px;}
.x8f{left:770.365500px;}
.x25{left:771.648000px;}
.xc{left:774.969000px;}
.x84{left:777.160500px;}
.x90{left:779.595000px;}
.xe{left:780.670500px;}
.xd{left:782.440500px;}
.x85{left:784.563000px;}
.xf{left:788.142000px;}
.xa3{left:790.539000px;}
.x26{left:792.415500px;}
.x10{left:797.728500px;}
.xc4{left:800.217000px;}
.x53{left:801.643500px;}
.x11{left:805.200000px;}
.x86{left:809.320500px;}
.xc5{left:812.071500px;}
.xe6{left:816.975000px;}
.x87{left:819.781500px;}
.x88{left:823.765500px;}
.xbf{left:830.473500px;}
.x94{left:832.488000px;}
.x54{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-10.421333pt;}
.v4{vertical-align:-9.322667pt;}
.ve{vertical-align:-7.466667pt;}
.vf{vertical-align:-6.373333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.466667pt;}
.va{vertical-align:7.466667pt;}
.vc{vertical-align:8.442667pt;}
.v3{vertical-align:9.706667pt;}
.v10{vertical-align:10.933333pt;}
.vd{vertical-align:15.434667pt;}
.v6{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.vb{vertical-align:21.808000pt;}
.v9{vertical-align:22.901333pt;}
.v8{vertical-align:26.682667pt;}
.v11{vertical-align:30.224000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000024pt;}
.ls41{letter-spacing:0.000185pt;}
.ls45{letter-spacing:0.000260pt;}
.ls3b{letter-spacing:0.000387pt;}
.ls3{letter-spacing:0.000518pt;}
.lsc{letter-spacing:0.000544pt;}
.ls30{letter-spacing:0.000567pt;}
.ls48{letter-spacing:0.000711pt;}
.ls3d{letter-spacing:0.000921pt;}
.ls3f{letter-spacing:0.001026pt;}
.ls38{letter-spacing:0.001193pt;}
.ls35{letter-spacing:0.001404pt;}
.ls2e{letter-spacing:0.001742pt;}
.ls10{letter-spacing:0.002185pt;}
.ls1f{letter-spacing:0.002372pt;}
.ls4{letter-spacing:0.002422pt;}
.ls47{letter-spacing:0.002571pt;}
.ls11{letter-spacing:0.002825pt;}
.ls7{letter-spacing:0.003100pt;}
.ls42{letter-spacing:0.003241pt;}
.ls3c{letter-spacing:0.003251pt;}
.ls39{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.447791pt;}
.ls27{letter-spacing:0.570745pt;}
.ls26{letter-spacing:0.576078pt;}
.ls28{letter-spacing:2.651733pt;}
.ls21{letter-spacing:2.653273pt;}
.ls2a{letter-spacing:2.655710pt;}
.lsf{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls23{letter-spacing:2.658606pt;}
.ls2d{letter-spacing:2.661043pt;}
.lse{letter-spacing:3.163733pt;}
.lsd{letter-spacing:3.318400pt;}
.lsb{letter-spacing:3.323733pt;}
.ls0{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.631867pt;}
.ls40{letter-spacing:11.911998pt;}
.ls3e{letter-spacing:11.954133pt;}
.ls14{letter-spacing:11.954970pt;}
.ls15{letter-spacing:11.955601pt;}
.ls13{letter-spacing:11.956898pt;}
.ls46{letter-spacing:11.959467pt;}
.ls43{letter-spacing:12.395127pt;}
.ls17{letter-spacing:12.550460pt;}
.ls18{letter-spacing:12.552158pt;}
.ls1d{letter-spacing:12.552474pt;}
.ls16{letter-spacing:12.553284pt;}
.ls3a{letter-spacing:12.805262pt;}
.ls12{letter-spacing:13.101491pt;}
.ls33{letter-spacing:13.252800pt;}
.ls32{letter-spacing:13.257475pt;}
.ls2c{letter-spacing:13.281067pt;}
.ls5{letter-spacing:13.283733pt;}
.ls19{letter-spacing:13.484049pt;}
.ls2b{letter-spacing:13.835733pt;}
.ls29{letter-spacing:13.841067pt;}
.ls24{letter-spacing:14.608533pt;}
.ls22{letter-spacing:14.611375pt;}
.ls20{letter-spacing:14.613867pt;}
.ls44{letter-spacing:14.863101pt;}
.ls34{letter-spacing:15.668800pt;}
.ls2f{letter-spacing:15.937067pt;}
.ls31{letter-spacing:15.942400pt;}
.ls37{letter-spacing:18.511467pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls1c{letter-spacing:485.094340pt;}
.ls1a{letter-spacing:539.286340pt;}
.ls1e{letter-spacing:549.441007pt;}
.ls25{letter-spacing:561.264533pt;}
.ws75{word-spacing:-45.233913pt;}
.ws12{word-spacing:-13.283467pt;}
.ws51{word-spacing:-11.955200pt;}
.ws16{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsc0{word-spacing:-3.012710pt;}
.ws47{word-spacing:-2.922363pt;}
.ws4d{word-spacing:-2.762961pt;}
.ws99{word-spacing:-2.603559pt;}
.ws42{word-spacing:-2.391024pt;}
.ws48{word-spacing:-2.284756pt;}
.ws20{word-spacing:-2.019087pt;}
.wsb9{word-spacing:-1.817190pt;}
.ws7d{word-spacing:-1.806551pt;}
.ws41{word-spacing:-1.700284pt;}
.ws40{word-spacing:-1.594016pt;}
.wsb8{word-spacing:-1.578086pt;}
.ws9a{word-spacing:-1.540882pt;}
.ws67{word-spacing:-1.275213pt;}
.ws25{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.153002pt;}
.wsa6{word-spacing:-1.147699pt;}
.ws17{word-spacing:-1.147694pt;}
.ws4b{word-spacing:-1.115811pt;}
.ws6{word-spacing:-1.041421pt;}
.ws8{word-spacing:-0.929840pt;}
.wsb3{word-spacing:-0.908595pt;}
.ws7e{word-spacing:-0.850142pt;}
.wsb2{word-spacing:-0.812954pt;}
.ws2d{word-spacing:-0.797008pt;}
.ws76{word-spacing:-0.743874pt;}
.ws1{word-spacing:-0.706678pt;}
.ws32{word-spacing:-0.690740pt;}
.ws2e{word-spacing:-0.584473pt;}
.ws36{word-spacing:-0.531339pt;}
.ws0{word-spacing:-0.508852pt;}
.ws95{word-spacing:-0.478205pt;}
.ws80{word-spacing:-0.425071pt;}
.ws31{word-spacing:-0.318803pt;}
.wsce{word-spacing:-0.286925pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsac{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.212535pt;}
.ws1b{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.159402pt;}
.ws78{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.wsa9{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.wsc6{word-spacing:-0.025020pt;}
.wsd3{word-spacing:-0.006391pt;}
.ws98{word-spacing:-0.005726pt;}
.wsc9{word-spacing:-0.005069pt;}
.ws9f{word-spacing:-0.004173pt;}
.wsc2{word-spacing:-0.003558pt;}
.ws3e{word-spacing:-0.002933pt;}
.ws5f{word-spacing:-0.002765pt;}
.ws30{word-spacing:-0.002540pt;}
.ws10{word-spacing:-0.001607pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.000450pt;}
.wsa3{word-spacing:0.001161pt;}
.ws13{word-spacing:0.002111pt;}
.ws61{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws97{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.wsa7{word-spacing:0.143462pt;}
.ws34{word-spacing:0.159402pt;}
.wsd2{word-spacing:0.191283pt;}
.ws24{word-spacing:0.212535pt;}
.wsa8{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.wsba{word-spacing:0.286925pt;}
.ws21{word-spacing:0.318803pt;}
.ws38{word-spacing:0.371937pt;}
.wscb{word-spacing:0.382566pt;}
.ws4e{word-spacing:0.425071pt;}
.ws92{word-spacing:0.478205pt;}
.ws43{word-spacing:0.505333pt;}
.ws37{word-spacing:0.531339pt;}
.wsca{word-spacing:0.573850pt;}
.ws72{word-spacing:0.584473pt;}
.wscc{word-spacing:0.621670pt;}
.ws46{word-spacing:0.743874pt;}
.ws19{word-spacing:0.765133pt;}
.ws77{word-spacing:0.797008pt;}
.ws7{word-spacing:0.892646pt;}
.ws45{word-spacing:1.115811pt;}
.wsd1{word-spacing:1.195520pt;}
.ws66{word-spacing:1.222079pt;}
.ws93{word-spacing:1.275213pt;}
.ws7c{word-spacing:1.328347pt;}
.ws49{word-spacing:1.434614pt;}
.ws7f{word-spacing:1.594016pt;}
.wsb0{word-spacing:1.673728pt;}
.wsa5{word-spacing:1.721549pt;}
.ws3b{word-spacing:1.806551pt;}
.wsad{word-spacing:1.817190pt;}
.ws3f{word-spacing:1.859685pt;}
.ws7a{word-spacing:1.912819pt;}
.ws83{word-spacing:1.965953pt;}
.ws87{word-spacing:2.019087pt;}
.wsaa{word-spacing:2.056294pt;}
.ws2a{word-spacing:2.072221pt;}
.wsaf{word-spacing:2.104115pt;}
.ws91{word-spacing:2.125355pt;}
.ws3d{word-spacing:2.178489pt;}
.ws4c{word-spacing:2.231622pt;}
.wsbc{word-spacing:2.295398pt;}
.wsa0{word-spacing:2.343219pt;}
.ws79{word-spacing:2.550426pt;}
.wsbb{word-spacing:2.582323pt;}
.ws39{word-spacing:2.656693pt;}
.ws3a{word-spacing:2.709827pt;}
.wsb4{word-spacing:2.734502pt;}
.ws7b{word-spacing:2.762961pt;}
.wsb5{word-spacing:2.773606pt;}
.ws6f{word-spacing:2.816095pt;}
.wsa4{word-spacing:2.821427pt;}
.ws1e{word-spacing:2.861926pt;}
.wsae{word-spacing:2.862071pt;}
.wsb1{word-spacing:2.864068pt;}
.wscf{word-spacing:2.864495pt;}
.wsd0{word-spacing:2.865818pt;}
.wsc5{word-spacing:2.865903pt;}
.wsc7{word-spacing:2.868446pt;}
.ws29{word-spacing:2.869229pt;}
.ws94{word-spacing:2.869248pt;}
.wsbe{word-spacing:2.917069pt;}
.ws70{word-spacing:2.922363pt;}
.ws26{word-spacing:3.028630pt;}
.wsb6{word-spacing:3.108352pt;}
.ws73{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws8c{word-spacing:3.294300pt;}
.wsbf{word-spacing:3.299635pt;}
.ws9b{word-spacing:3.347434pt;}
.ws1d{word-spacing:3.395277pt;}
.ws1c{word-spacing:3.443098pt;}
.ws18{word-spacing:3.538739pt;}
.ws65{word-spacing:3.613103pt;}
.ws6a{word-spacing:3.666237pt;}
.ws33{word-spacing:3.719371pt;}
.ws64{word-spacing:3.825638pt;}
.wscd{word-spacing:3.825664pt;}
.wsab{word-spacing:3.873485pt;}
.ws88{word-spacing:3.878772pt;}
.wsa2{word-spacing:3.921306pt;}
.ws4a{word-spacing:4.038174pt;}
.wsb7{word-spacing:4.112589pt;}
.ws68{word-spacing:4.144442pt;}
.ws86{word-spacing:4.197575pt;}
.wse{word-spacing:4.240070pt;}
.ws6c{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws96{word-spacing:4.356977pt;}
.ws8e{word-spacing:4.410111pt;}
.ws89{word-spacing:4.516379pt;}
.ws9d{word-spacing:4.590797pt;}
.ws69{word-spacing:4.622646pt;}
.ws8b{word-spacing:4.675780pt;}
.ws9c{word-spacing:4.877722pt;}
.ws35{word-spacing:5.047717pt;}
.wsc8{word-spacing:5.069005pt;}
.ws71{word-spacing:5.100851pt;}
.ws8a{word-spacing:5.207119pt;}
.wsc1{word-spacing:5.642854pt;}
.ws74{word-spacing:5.685324pt;}
.ws6b{word-spacing:5.847243pt;}
.ws84{word-spacing:5.848431pt;}
.ws62{word-spacing:5.865148pt;}
.ws9e{word-spacing:6.312346pt;}
.wsa1{word-spacing:6.360166pt;}
.ws44{word-spacing:6.535466pt;}
.wsc{word-spacing:6.918010pt;}
.ws6d{word-spacing:7.013670pt;}
.ws6e{word-spacing:7.226206pt;}
.ws8f{word-spacing:7.279340pt;}
.ws63{word-spacing:7.970080pt;}
.ws81{word-spacing:8.225655pt;}
.ws82{word-spacing:8.230989pt;}
.ws90{word-spacing:8.288883pt;}
.ws3c{word-spacing:8.554553pt;}
.ws8d{word-spacing:8.767088pt;}
.wsc4{word-spacing:9.325056pt;}
.wsbd{word-spacing:10.090189pt;}
.wsa{word-spacing:10.823338pt;}
.ws85{word-spacing:11.078989pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.wsc3{word-spacing:43.020800pt;}
.ws52{word-spacing:295.940000pt;}
.ws5d{word-spacing:322.513545pt;}
.ws5e{word-spacing:375.297638pt;}
.ws50{word-spacing:417.523405pt;}
.ws4f{word-spacing:499.918643pt;}
.ws53{word-spacing:511.921664pt;}
.ws57{word-spacing:521.007565pt;}
.ws56{word-spacing:521.460898pt;}
.ws58{word-spacing:546.255565pt;}
.ws5c{word-spacing:547.739443pt;}
.ws60{word-spacing:559.694643pt;}
.ws5a{word-spacing:571.649843pt;}
.ws55{word-spacing:595.560243pt;}
.ws54{word-spacing:598.247407pt;}
.ws5b{word-spacing:608.640669pt;}
.ws59{word-spacing:643.381043pt;}
._9{margin-left:-6.855410pt;}
._13{margin-left:-5.738458pt;}
._2{margin-left:-4.797974pt;}
._1{margin-left:-3.198650pt;}
._7{margin-left:-2.045648pt;}
._0{margin-left:-1.115808pt;}
._6{width:2.045648pt;}
._a{width:3.259918pt;}
._4{width:10.562982pt;}
._5{width:11.530016pt;}
._b{width:12.592455pt;}
._11{width:13.607493pt;}
._2a{width:14.585241pt;}
._c{width:15.483293pt;}
._e{width:17.136882pt;}
._12{width:18.065515pt;}
._14{width:19.367289pt;}
._29{width:21.179072pt;}
._3{width:23.057899pt;}
._d{width:24.675533pt;}
._8{width:27.188522pt;}
._27{width:28.107812pt;}
._28{width:29.808099pt;}
._2c{width:31.083312pt;}
._2b{width:32.517926pt;}
._2e{width:42.082019pt;}
._2d{width:43.197834pt;}
._30{width:54.993920pt;}
._26{width:319.850513pt;}
._25{width:341.213278pt;}
._15{width:396.290970pt;}
._23{width:429.861171pt;}
._1c{width:444.159590pt;}
._1d{width:456.114790pt;}
._18{width:464.292147pt;}
._1f{width:480.025190pt;}
._19{width:509.881264pt;}
._21{width:532.006400pt;}
._20{width:533.010637pt;}
._1e{width:533.967053pt;}
._1a{width:541.588267pt;}
._16{width:555.008205pt;}
._24{width:559.742464pt;}
._17{width:607.706726pt;}
._1b{width:617.749094pt;}
._22{width:680.155238pt;}
._f{width:913.127747pt;}
._2f{width:2254.045067pt;}
._10{width:2275.298400pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsc{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:14.236308pt;}
.y4c{bottom:28.346667pt;}
.y126{bottom:82.325333pt;}
.y158{bottom:84.924000pt;}
.ydd{bottom:89.498667pt;}
.yc4{bottom:90.412000pt;}
.y1a{bottom:93.018667pt;}
.y4b{bottom:93.274667pt;}
.y89{bottom:93.290667pt;}
.y125{bottom:99.062667pt;}
.y179{bottom:101.858667pt;}
.y157{bottom:102.018667pt;}
.y140{bottom:104.168000pt;}
.ydc{bottom:106.594667pt;}
.yc3{bottom:107.149333pt;}
.yf6{bottom:107.272000pt;}
.y19{bottom:108.920000pt;}
.y4a{bottom:110.012000pt;}
.y88{bottom:110.028000pt;}
.y124{bottom:115.800000pt;}
.y178{bottom:117.201333pt;}
.y13f{bottom:120.904000pt;}
.y1b1{bottom:123.576000pt;}
.yc2{bottom:123.886667pt;}
.yf5{bottom:124.009333pt;}
.y18{bottom:124.820000pt;}
.y49{bottom:126.749333pt;}
.y87{bottom:126.765333pt;}
.y123{bottom:129.802667pt;}
.y121{bottom:132.537333pt;}
.y177{bottom:132.544000pt;}
.y122{bottom:137.358667pt;}
.y13e{bottom:137.641333pt;}
.y1b0{bottom:138.918667pt;}
.yc1{bottom:140.624000pt;}
.y17{bottom:140.720000pt;}
.yf4{bottom:140.746667pt;}
.y48{bottom:143.486667pt;}
.y86{bottom:147.486667pt;}
.y176{bottom:147.885333pt;}
.y120{bottom:149.274667pt;}
.y1af{bottom:154.261333pt;}
.y13d{bottom:154.378667pt;}
.y16{bottom:156.621333pt;}
.yc0{bottom:157.361333pt;}
.yf3{bottom:157.484000pt;}
.y47{bottom:160.224000pt;}
.y175{bottom:163.228000pt;}
.y11f{bottom:166.012000pt;}
.y1ae{bottom:169.604000pt;}
.y13c{bottom:171.116000pt;}
.y15{bottom:172.521333pt;}
.ybf{bottom:174.098667pt;}
.yf2{bottom:174.221333pt;}
.y46{bottom:176.961333pt;}
.y85{bottom:177.374667pt;}
.y174{bottom:178.570667pt;}
.y11e{bottom:182.749333pt;}
.y1ad{bottom:184.946667pt;}
.y13b{bottom:187.853333pt;}
.y14{bottom:188.421333pt;}
.ybe{bottom:190.836000pt;}
.yf1{bottom:190.958667pt;}
.y45{bottom:193.698667pt;}
.y173{bottom:193.913333pt;}
.y83{bottom:194.112000pt;}
.y84{bottom:198.934667pt;}
.y11d{bottom:199.486667pt;}
.y1ac{bottom:200.289333pt;}
.y13{bottom:204.322667pt;}
.y13a{bottom:204.590667pt;}
.yf0{bottom:207.696000pt;}
.y44{bottom:210.436000pt;}
.y82{bottom:210.849333pt;}
.ybd{bottom:211.558667pt;}
.y172{bottom:213.241333pt;}
.y1ab{bottom:215.632000pt;}
.y11c{bottom:216.224000pt;}
.y139{bottom:221.328000pt;}
.yef{bottom:224.433333pt;}
.y43{bottom:227.173333pt;}
.y81{bottom:227.586667pt;}
.y1aa{bottom:230.974667pt;}
.y11b{bottom:232.961333pt;}
.y138{bottom:238.065333pt;}
.ybc{bottom:239.686667pt;}
.yee{bottom:241.170667pt;}
.y80{bottom:241.897333pt;}
.y42{bottom:243.910667pt;}
.y7f{bottom:244.324000pt;}
.y171{bottom:245.918667pt;}
.y1a9{bottom:246.316000pt;}
.y11a{bottom:246.964000pt;}
.y118{bottom:249.698667pt;}
.ybb{bottom:252.126667pt;}
.yb9{bottom:252.370667pt;}
.yba{bottom:252.644000pt;}
.yb8{bottom:254.237333pt;}
.y119{bottom:254.520000pt;}
.y137{bottom:254.802667pt;}
.yed{bottom:255.173333pt;}
.yec{bottom:257.908000pt;}
.yb7{bottom:258.096000pt;}
.y7e{bottom:258.634667pt;}
.y41{bottom:260.648000pt;}
.y7d{bottom:261.061333pt;}
.y1a8{bottom:261.658667pt;}
.y117{bottom:266.436000pt;}
.y12{bottom:266.804000pt;}
.y170{bottom:269.510667pt;}
.y136{bottom:271.540000pt;}
.yb4{bottom:272.922667pt;}
.yb6{bottom:273.290667pt;}
.yeb{bottom:274.645333pt;}
.y1a7{bottom:277.001333pt;}
.yb5{bottom:277.262667pt;}
.y40{bottom:277.385333pt;}
.y7c{bottom:281.784000pt;}
.y11{bottom:282.705333pt;}
.y116{bottom:283.173333pt;}
.yb3{bottom:288.269333pt;}
.y135{bottom:288.277333pt;}
.yea{bottom:288.956000pt;}
.ye9{bottom:291.382667pt;}
.y1a6{bottom:292.344000pt;}
.y16f{bottom:293.101333pt;}
.y3f{bottom:294.122667pt;}
.y10{bottom:298.605333pt;}
.y115{bottom:299.910667pt;}
.y134{bottom:302.588000pt;}
.yb2{bottom:302.881333pt;}
.y133{bottom:305.014667pt;}
.y1a5{bottom:307.686667pt;}
.ye8{bottom:308.120000pt;}
.y3e{bottom:310.860000pt;}
.y7b{bottom:311.672000pt;}
.ydb{bottom:312.070667pt;}
.yf{bottom:314.505333pt;}
.y114{bottom:316.648000pt;}
.y16e{bottom:316.693333pt;}
.yb1{bottom:318.332000pt;}
.y132{bottom:321.752000pt;}
.ye7{bottom:322.430667pt;}
.y1a4{bottom:323.029333pt;}
.ye6{bottom:324.857333pt;}
.yda{bottom:326.381333pt;}
.y3d{bottom:327.597333pt;}
.y79{bottom:328.409333pt;}
.yd9{bottom:328.808000pt;}
.y113{bottom:330.650667pt;}
.y16d{bottom:332.314667pt;}
.y7a{bottom:333.230667pt;}
.y112{bottom:333.384000pt;}
.yb0{bottom:333.782667pt;}
.y111{bottom:338.206667pt;}
.y1a3{bottom:338.372000pt;}
.ye{bottom:338.376000pt;}
.y131{bottom:338.489333pt;}
.ye5{bottom:341.594667pt;}
.y3c{bottom:344.334667pt;}
.y78{bottom:345.146667pt;}
.yd8{bottom:345.545333pt;}
.y16c{bottom:347.936000pt;}
.yaf{bottom:348.394667pt;}
.y110{bottom:350.121333pt;}
.y1a2{bottom:353.714667pt;}
.yd{bottom:354.277333pt;}
.y130{bottom:355.226667pt;}
.ye4{bottom:358.332000pt;}
.y3b{bottom:361.072000pt;}
.y76{bottom:361.884000pt;}
.yd7{bottom:362.282667pt;}
.yae{bottom:363.006667pt;}
.y16b{bottom:363.557333pt;}
.y77{bottom:366.705333pt;}
.y10f{bottom:366.858667pt;}
.y1a1{bottom:369.056000pt;}
.y12f{bottom:369.537333pt;}
.yc{bottom:370.177333pt;}
.y12e{bottom:371.964000pt;}
.y3a{bottom:377.809333pt;}
.yad{bottom:378.173333pt;}
.y75{bottom:378.621333pt;}
.yd6{bottom:379.020000pt;}
.y16a{bottom:379.178667pt;}
.y10e{bottom:383.596000pt;}
.y1a0{bottom:384.398667pt;}
.ye3{bottom:388.168000pt;}
.y12d{bottom:388.701333pt;}
.y74{bottom:392.932000pt;}
.yac{bottom:393.341333pt;}
.y169{bottom:394.800000pt;}
.y73{bottom:395.358667pt;}
.yb{bottom:395.376000pt;}
.yd5{bottom:395.757333pt;}
.y156{bottom:396.802667pt;}
.y39{bottom:398.530667pt;}
.y19f{bottom:399.741333pt;}
.y10d{bottom:400.333333pt;}
.ye2{bottom:405.264000pt;}
.y12c{bottom:405.438667pt;}
.yab{bottom:407.953333pt;}
.y72{bottom:409.669333pt;}
.y168{bottom:410.421333pt;}
.y71{bottom:412.096000pt;}
.yd4{bottom:412.494667pt;}
.y155{bottom:413.538667pt;}
.y19d{bottom:415.084000pt;}
.y10c{bottom:417.070667pt;}
.ya{bottom:419.246667pt;}
.y19e{bottom:419.424000pt;}
.y12b{bottom:422.176000pt;}
.yaa{bottom:423.298667pt;}
.y70{bottom:426.406667pt;}
.y6f{bottom:428.833333pt;}
.yd3{bottom:429.232000pt;}
.y154{bottom:430.276000pt;}
.y19c{bottom:430.426667pt;}
.y10b{bottom:433.808000pt;}
.y167{bottom:434.013333pt;}
.y9{bottom:435.146667pt;}
.ya9{bottom:437.910667pt;}
.y6e{bottom:443.144000pt;}
.y6d{bottom:445.570667pt;}
.y19b{bottom:445.769333pt;}
.yd2{bottom:445.968000pt;}
.y153{bottom:447.013333pt;}
.y166{bottom:449.634667pt;}
.y8{bottom:451.048000pt;}
.y12a{bottom:452.012000pt;}
.ya8{bottom:452.522667pt;}
.y19a{bottom:461.112000pt;}
.y6c{bottom:462.306667pt;}
.yd1{bottom:462.705333pt;}
.y10a{bottom:463.644000pt;}
.y152{bottom:463.750667pt;}
.y165{bottom:465.256000pt;}
.y38{bottom:465.332000pt;}
.y7{bottom:466.948000pt;}
.ya7{bottom:467.134667pt;}
.y199{bottom:476.454667pt;}
.yd0{bottom:479.442667pt;}
.y151{bottom:480.488000pt;}
.y109{bottom:480.740000pt;}
.y164{bottom:480.877333pt;}
.ya6{bottom:482.481333pt;}
.y6{bottom:482.848000pt;}
.y6b{bottom:483.029333pt;}
.y198{bottom:491.797333pt;}
.ycf{bottom:496.180000pt;}
.y162{bottom:496.498667pt;}
.y163{bottom:496.500000pt;}
.y150{bottom:497.225333pt;}
.ya5{bottom:497.828000pt;}
.y37{bottom:498.566667pt;}
.y5{bottom:498.749333pt;}
.y6a{bottom:500.962667pt;}
.y197{bottom:507.138667pt;}
.ya4{bottom:513.174667pt;}
.y14f{bottom:513.962667pt;}
.y4{bottom:514.649333pt;}
.y36{bottom:515.861333pt;}
.yce{bottom:516.902667pt;}
.y161{bottom:520.090667pt;}
.y196{bottom:522.481333pt;}
.ya3{bottom:527.786667pt;}
.y3{bottom:530.549333pt;}
.y14d{bottom:530.700000pt;}
.y69{bottom:530.850667pt;}
.y35{bottom:533.157333pt;}
.y14e{bottom:535.522667pt;}
.y160{bottom:536.130667pt;}
.y195{bottom:537.824000pt;}
.ya2{bottom:542.397333pt;}
.y2{bottom:546.450667pt;}
.ycd{bottom:546.790667pt;}
.y14b{bottom:547.437333pt;}
.y68{bottom:547.588000pt;}
.y34{bottom:550.452000pt;}
.y15f{bottom:552.170667pt;}
.y14c{bottom:552.260000pt;}
.y194{bottom:553.166667pt;}
.ya1{bottom:557.009333pt;}
.y1{bottom:562.350667pt;}
.ycc{bottom:563.528000pt;}
.y14a{bottom:564.174667pt;}
.y67{bottom:564.325333pt;}
.y33{bottom:567.748000pt;}
.y15e{bottom:568.210667pt;}
.y193{bottom:568.509333pt;}
.ya0{bottom:571.621333pt;}
.ye1{bottom:578.636000pt;}
.yca{bottom:580.265333pt;}
.y149{bottom:580.912000pt;}
.y66{bottom:581.062667pt;}
.y192{bottom:583.852000pt;}
.y15d{bottom:584.250667pt;}
.y32{bottom:585.042667pt;}
.ycb{bottom:585.086667pt;}
.y9f{bottom:586.233333pt;}
.yc9{bottom:597.002667pt;}
.y148{bottom:597.649333pt;}
.y65{bottom:597.800000pt;}
.y191{bottom:599.194667pt;}
.y15c{bottom:600.290667pt;}
.y31{bottom:602.337333pt;}
.y9e{bottom:607.248000pt;}
.y147{bottom:614.386667pt;}
.y64{bottom:614.537333pt;}
.y15b{bottom:616.330667pt;}
.yc8{bottom:617.725333pt;}
.y190{bottom:629.878667pt;}
.y146{bottom:631.124000pt;}
.y63{bottom:631.274667pt;}
.y15a{bottom:632.370667pt;}
.y9d{bottom:635.353333pt;}
.y30{bottom:636.636000pt;}
.y18f{bottom:645.221333pt;}
.yc7{bottom:647.613333pt;}
.y145{bottom:647.861333pt;}
.y62{bottom:648.012000pt;}
.y2f{bottom:650.982667pt;}
.y18e{bottom:660.564000pt;}
.y9c{bottom:664.350667pt;}
.y144{bottom:664.598667pt;}
.y61{bottom:664.749333pt;}
.y2e{bottom:669.185333pt;}
.y18d{bottom:675.906667pt;}
.y2d{bottom:679.674667pt;}
.y9b{bottom:681.088000pt;}
.y143{bottom:681.336000pt;}
.y60{bottom:681.485333pt;}
.y18c{bottom:691.249333pt;}
.y2c{bottom:694.021333pt;}
.y9a{bottom:697.825333pt;}
.y2b{bottom:697.878667pt;}
.y5f{bottom:698.222667pt;}
.y142{bottom:702.058667pt;}
.y129{bottom:702.901333pt;}
.y18b{bottom:706.592000pt;}
.y2a{bottom:708.366667pt;}
.y108{bottom:710.976000pt;}
.y99{bottom:714.562667pt;}
.y5e{bottom:714.960000pt;}
.y128{bottom:719.997333pt;}
.y18a{bottom:721.934667pt;}
.y29{bottom:726.570667pt;}
.y107{bottom:727.713333pt;}
.y141{bottom:729.105333pt;}
.y98{bottom:731.300000pt;}
.y5d{bottom:731.697333pt;}
.y28{bottom:737.060000pt;}
.y189{bottom:737.277333pt;}
.y106{bottom:744.450667pt;}
.y97{bottom:748.036000pt;}
.y5c{bottom:748.434667pt;}
.y188{bottom:752.620000pt;}
.y27{bottom:755.264000pt;}
.y105{bottom:761.186667pt;}
.y96{bottom:764.773333pt;}
.y5b{bottom:765.172000pt;}
.y26{bottom:765.752000pt;}
.y187{bottom:767.961333pt;}
.y104{bottom:775.190667pt;}
.y102{bottom:777.924000pt;}
.y95{bottom:781.510667pt;}
.y5a{bottom:781.909333pt;}
.y103{bottom:782.746667pt;}
.y186{bottom:783.304000pt;}
.y25{bottom:783.956000pt;}
.y24{bottom:794.445333pt;}
.y101{bottom:794.661333pt;}
.y94{bottom:798.248000pt;}
.y59{bottom:798.646667pt;}
.y100{bottom:811.398667pt;}
.y23{bottom:812.648000pt;}
.y185{bottom:813.989333pt;}
.y93{bottom:814.985333pt;}
.y58{bottom:815.384000pt;}
.yff{bottom:828.136000pt;}
.y184{bottom:829.332000pt;}
.y91{bottom:831.722667pt;}
.y57{bottom:832.121333pt;}
.y92{bottom:836.545333pt;}
.y183{bottom:844.674667pt;}
.yfe{bottom:844.873333pt;}
.yc6{bottom:846.033333pt;}
.ye0{bottom:846.866667pt;}
.y90{bottom:848.460000pt;}
.y56{bottom:848.858667pt;}
.y22{bottom:852.361333pt;}
.y182{bottom:860.017333pt;}
.yfd{bottom:861.610667pt;}
.ydf{bottom:862.861333pt;}
.y8f{bottom:865.197333pt;}
.y55{bottom:865.596000pt;}
.y21{bottom:869.098667pt;}
.y181{bottom:875.360000pt;}
.yfc{bottom:878.348000pt;}
.y8e{bottom:881.934667pt;}
.y54{bottom:882.333333pt;}
.y20{bottom:885.836000pt;}
.y159{bottom:885.920000pt;}
.y180{bottom:890.702667pt;}
.yfb{bottom:895.085333pt;}
.y8d{bottom:898.672000pt;}
.y53{bottom:899.070667pt;}
.yc5{bottom:902.657333pt;}
.y17f{bottom:906.044000pt;}
.yfa{bottom:911.822667pt;}
.y8c{bottom:915.409333pt;}
.y52{bottom:915.808000pt;}
.y1f{bottom:921.320000pt;}
.y17e{bottom:921.386667pt;}
.yf9{bottom:928.560000pt;}
.y51{bottom:932.545333pt;}
.y8b{bottom:936.132000pt;}
.y17d{bottom:936.729333pt;}
.yf8{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y50{bottom:949.282667pt;}
.y17c{bottom:952.072000pt;}
.yf7{bottom:962.034667pt;}
.yde{bottom:963.593333pt;}
.y127{bottom:964.026667pt;}
.y17b{bottom:965.084000pt;}
.y4f{bottom:966.020000pt;}
.y17a{bottom:967.414667pt;}
.y1d{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.y8a{bottom:987.578667pt;}
.y1b{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.h13{height:26.761523pt;}
.h18{height:29.414982pt;}
.h9{height:30.063343pt;}
.h1e{height:32.996352pt;}
.hb{height:34.430976pt;}
.h2{height:35.073565pt;}
.hf{height:35.212691pt;}
.h1b{height:36.612887pt;}
.h12{height:36.662368pt;}
.h10{height:38.080100pt;}
.hd{height:38.256384pt;}
.h5{height:38.947124pt;}
.ha{height:40.084290pt;}
.h11{height:44.919358pt;}
.hc{height:45.095014pt;}
.h3{height:45.271688pt;}
.h1c{height:45.498010pt;}
.h14{height:46.561681pt;}
.h15{height:46.567014pt;}
.h7{height:48.360277pt;}
.h8{height:49.201961pt;}
.he{height:50.105236pt;}
.h1a{height:51.871343pt;}
.h16{height:52.428231pt;}
.h17{height:52.433565pt;}
.h19{height:52.964676pt;}
.h1d{height:68.304100pt;}
.h6{height:68.861952pt;}
.h4{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:52.049422pt;}
.xe5{left:76.309333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x89{left:225.932000pt;}
.xc2{left:227.569333pt;}
.x6b{left:229.828000pt;}
.x2c{left:237.204000pt;}
.xc3{left:238.842667pt;}
.x4{left:239.924000pt;}
.x2d{left:242.916000pt;}
.x8e{left:246.097333pt;}
.x9{left:250.204000pt;}
.xd4{left:255.904000pt;}
.x4f{left:256.913333pt;}
.x68{left:259.582667pt;}
.xe2{left:261.777333pt;}
.x2e{left:263.781333pt;}
.x2f{left:269.493333pt;}
.xe3{left:270.741333pt;}
.x95{left:272.758667pt;}
.x62{left:274.250667pt;}
.x6{left:275.833333pt;}
.x30{left:280.766667pt;}
.x9a{left:283.758667pt;}
.x31{left:286.478667pt;}
.x67{left:287.910667pt;}
.x6a{left:290.053333pt;}
.x12{left:292.174667pt;}
.xd8{left:293.476000pt;}
.x65{left:295.494667pt;}
.x61{left:296.624000pt;}
.x13{left:298.816000pt;}
.x63{left:300.354667pt;}
.x64{left:301.406667pt;}
.x69{left:304.221333pt;}
.x59{left:305.726667pt;}
.xd9{left:306.760000pt;}
.x9b{left:307.709333pt;}
.x49{left:308.942667pt;}
.x66{left:309.978667pt;}
.xb5{left:311.884000pt;}
.x4a{left:314.654667pt;}
.x18{left:317.234667pt;}
.x50{left:318.234667pt;}
.xcb{left:319.930667pt;}
.x6e{left:322.202667pt;}
.x19{left:323.876000pt;}
.xaf{left:326.329333pt;}
.xc8{left:330.289333pt;}
.x93{left:331.405333pt;}
.x9d{left:332.396000pt;}
.xc9{left:336.001333pt;}
.x32{left:337.206667pt;}
.x6f{left:341.030667pt;}
.x33{left:342.918667pt;}
.xe4{left:347.281333pt;}
.xa4{left:348.440000pt;}
.x57{left:350.774667pt;}
.xcc{left:353.477333pt;}
.x34{left:358.702667pt;}
.xb6{left:361.060000pt;}
.x58{left:362.826667pt;}
.x35{left:364.414667pt;}
.xd5{left:366.896000pt;}
.x70{left:368.030667pt;}
.x9c{left:369.064000pt;}
.xc1{left:370.556000pt;}
.xbb{left:371.838667pt;}
.x71{left:376.870667pt;}
.x1a{left:380.465333pt;}
.xcd{left:385.490667pt;}
.x1b{left:387.106667pt;}
.xb2{left:388.406667pt;}
.xe0{left:390.029333pt;}
.x6c{left:394.145333pt;}
.xce{left:396.416000pt;}
.x5c{left:397.450667pt;}
.xde{left:399.234667pt;}
.x14{left:401.428000pt;}
.x5d{left:403.162667pt;}
.xdb{left:404.089333pt;}
.x15{left:408.069333pt;}
.x72{left:409.920000pt;}
.x20{left:411.392000pt;}
.xdc{left:413.114667pt;}
.xb7{left:415.912000pt;}
.x3c{left:418.118667pt;}
.xdd{left:419.477333pt;}
.xb8{left:421.622667pt;}
.x73{left:423.384000pt;}
.x21{left:424.676000pt;}
.xe1{left:425.984000pt;}
.x74{left:429.354667pt;}
.xa2{left:431.722667pt;}
.xb9{left:432.896000pt;}
.x3d{left:434.949333pt;}
.x75{left:437.088000pt;}
.x3e{left:440.661333pt;}
.x76{left:444.193333pt;}
.x6d{left:445.980000pt;}
.x77{left:451.505333pt;}
.x91{left:453.504000pt;}
.x60{left:455.610667pt;}
.x92{left:459.553333pt;}
.x78{left:460.746667pt;}
.x3f{left:465.030667pt;}
.x79{left:467.966667pt;}
.xc0{left:471.432000pt;}
.x43{left:472.574667pt;}
.x8a{left:473.766667pt;}
.xca{left:474.982667pt;}
.x40{left:475.957333pt;}
.xbc{left:478.144000pt;}
.x44{left:480.780000pt;}
.x8b{left:481.970667pt;}
.x9f{left:483.573333pt;}
.xbd{left:485.448000pt;}
.x27{left:486.838667pt;}
.xa0{left:489.550667pt;}
.x7a{left:491.422667pt;}
.x28{left:496.722667pt;}
.x55{left:499.101333pt;}
.x36{left:500.606667pt;}
.xab{left:503.746667pt;}
.x56{left:505.150667pt;}
.x37{left:506.318667pt;}
.xa1{left:507.953333pt;}
.x48{left:510.578667pt;}
.xd7{left:511.749333pt;}
.xac{left:513.472000pt;}
.x29{left:514.769333pt;}
.x16{left:515.785333pt;}
.x96{left:517.466667pt;}
.x2a{left:520.481333pt;}
.x17{left:522.426667pt;}
.x97{left:523.444000pt;}
.xa{left:527.912000pt;}
.x9e{left:531.286667pt;}
.xad{left:536.740000pt;}
.xb{left:538.837333pt;}
.x4b{left:541.569333pt;}
.x45{left:544.114667pt;}
.x7b{left:546.444000pt;}
.x2b{left:548.933333pt;}
.xae{left:550.026667pt;}
.x4c{left:551.452000pt;}
.xc6{left:556.616000pt;}
.x7c{left:558.804000pt;}
.xa9{left:560.133333pt;}
.x98{left:562.185333pt;}
.x7d{left:563.453333pt;}
.xbe{left:566.153333pt;}
.x4d{left:569.305333pt;}
.x99{left:572.004000pt;}
.xaa{left:573.198667pt;}
.x4e{left:575.016000pt;}
.x5e{left:579.366667pt;}
.x7e{left:582.734667pt;}
.xa5{left:588.830667pt;}
.xc7{left:591.310667pt;}
.x5f{left:592.650667pt;}
.x51{left:595.572000pt;}
.x7f{left:598.712000pt;}
.x46{left:599.790667pt;}
.xdf{left:600.693333pt;}
.x52{left:602.214667pt;}
.xd3{left:603.781333pt;}
.x80{left:606.024000pt;}
.xa6{left:607.818667pt;}
.x47{left:609.713333pt;}
.xd6{left:610.910667pt;}
.xba{left:612.625333pt;}
.x1c{left:618.972000pt;}
.xb0{left:620.706667pt;}
.xa7{left:621.774667pt;}
.x81{left:626.028000pt;}
.xa8{left:628.416000pt;}
.x7{left:629.765333pt;}
.x1d{left:632.254667pt;}
.xb1{left:633.989333pt;}
.x1e{left:635.642667pt;}
.x41{left:637.268000pt;}
.x8{left:639.668000pt;}
.x5a{left:641.150667pt;}
.x42{left:642.980000pt;}
.x82{left:644.356000pt;}
.xcf{left:645.356000pt;}
.xd0{left:646.434667pt;}
.xb3{left:647.949333pt;}
.x1f{left:648.925333pt;}
.x38{left:650.796000pt;}
.x5b{left:654.433333pt;}
.x39{left:656.508000pt;}
.xda{left:658.837333pt;}
.x8d{left:660.426667pt;}
.xb4{left:664.621333pt;}
.x3a{left:667.780000pt;}
.x22{left:669.973333pt;}
.x8c{left:670.960000pt;}
.x3b{left:673.492000pt;}
.x23{left:675.685333pt;}
.xd1{left:677.936000pt;}
.x24{left:680.197333pt;}
.x83{left:682.618667pt;}
.xd2{left:683.648000pt;}
.x8f{left:684.769333pt;}
.x25{left:685.909333pt;}
.xc{left:688.861333pt;}
.x84{left:690.809333pt;}
.x90{left:692.973333pt;}
.xe{left:693.929333pt;}
.xd{left:695.502667pt;}
.x85{left:697.389333pt;}
.xf{left:700.570667pt;}
.xa3{left:702.701333pt;}
.x26{left:704.369333pt;}
.x10{left:709.092000pt;}
.xc4{left:711.304000pt;}
.x53{left:712.572000pt;}
.x11{left:715.733333pt;}
.x86{left:719.396000pt;}
.xc5{left:721.841333pt;}
.xe6{left:726.200000pt;}
.x87{left:728.694667pt;}
.x88{left:732.236000pt;}
.xbf{left:738.198667pt;}
.x94{left:739.989333pt;}
.x54{left:744.770667pt;}
}




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