
    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_db97c61c5039ef5af17bd6fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_55914ee3ca3cbe3559823709.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_0210e7630bc99fdf00835d4c.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_9ac5d9c028cdea7f4f9e5d93.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_255b0283edb19aaa615a5984.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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_229e9631e5291d215117a5bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_edde272e5b2649506a019a10.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_1254db3494f82414cc265221.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9910a2a087ccbfb2b58c469b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_733228f809e8e949fbada45d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d346790694809d2ad99478d3.woff2')format("woff");}.ffd{font-family:ffd;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;}
.md{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);}
.m5{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);}
.m19{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);}
.m6{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);}
.m20{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);}
.m28{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);}
.ma{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);}
.m27{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);}
.m13{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);}
.mb{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);}
.m21{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);}
.m10{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);}
.m11{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);}
.me{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);}
.mc{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);}
.m12{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);}
.m24{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);}
.m3{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);}
.m1e{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);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m9{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);}
.m1c{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);}
.m7{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);}
.m26{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);}
.m16{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);}
.m14{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);}
.mf{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);}
.m15{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);}
.m1a{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);}
.m4{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);}
.m1d{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);}
.m17{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);}
.m18{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);}
.m22{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);}
.m8{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);}
.m25{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);}
.m1b{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);}
.m1f{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);}
.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);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.874000px;}
.ls21{letter-spacing:-0.390780px;}
.ls18{letter-spacing:-0.204408px;}
.ls20{letter-spacing:-0.156312px;}
.ls14{letter-spacing:-0.126252px;}
.ls1d{letter-spacing:-0.108216px;}
.ls1b{letter-spacing:-0.102204px;}
.ls1e{letter-spacing:-0.090180px;}
.ls16{letter-spacing:-0.072144px;}
.ls19{letter-spacing:-0.042084px;}
.ls22{letter-spacing:-0.036072px;}
.ls1a{letter-spacing:-0.030060px;}
.ls12{letter-spacing:-0.028728px;}
.ls15{letter-spacing:-0.018036px;}
.ls1c{letter-spacing:-0.012024px;}
.ls1f{letter-spacing:-0.006012px;}
.ls13{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002544px;}
.ls8{letter-spacing:0.006012px;}
.ls9{letter-spacing:0.012024px;}
.lse{letter-spacing:0.030060px;}
.lsc{letter-spacing:0.042084px;}
.ls11{letter-spacing:0.048096px;}
.lsd{letter-spacing:0.054108px;}
.ls10{letter-spacing:0.066132px;}
.lsf{letter-spacing:0.072144px;}
.lsa{letter-spacing:0.084168px;}
.lsb{letter-spacing:0.120240px;}
.ls7{letter-spacing:0.177156px;}
.ls6{letter-spacing:0.191520px;}
.ls17{letter-spacing:2.615220px;}
.ls1{letter-spacing:11.954850px;}
.ls5{letter-spacing:14.824349px;}
.ls2{letter-spacing:17.454475px;}
.ls3{letter-spacing:17.514251px;}
.ls4{letter-spacing:94.292700px;}
.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;}
}
.ws7b{word-spacing:-60.120000px;}
.wsa8{word-spacing:-14.943900px;}
.wsd4{word-spacing:-13.449600px;}
.ws78{word-spacing:-12.161520px;}
.ws79{word-spacing:-11.970000px;}
.ws29{word-spacing:-11.955150px;}
.wsa{word-spacing:-10.460700px;}
.ws5b{word-spacing:-3.347434px;}
.wsac{word-spacing:-3.108331px;}
.ws86{word-spacing:-2.795580px;}
.wsaf{word-spacing:-2.749678px;}
.ws3c{word-spacing:-2.570351px;}
.ws7f{word-spacing:-2.510575px;}
.ws84{word-spacing:-2.428848px;}
.ws85{word-spacing:-2.296584px;}
.wsb6{word-spacing:-2.271473px;}
.wsae{word-spacing:-2.211697px;}
.wsff{word-spacing:-1.936742px;}
.wsa6{word-spacing:-1.912819px;}
.wsb2{word-spacing:-1.853044px;}
.wsa3{word-spacing:-1.755504px;}
.ws6a{word-spacing:-1.733492px;}
.wsa4{word-spacing:-1.671336px;}
.ws7d{word-spacing:-1.613941px;}
.wsb0{word-spacing:-1.554166px;}
.ws70{word-spacing:-1.494390px;}
.ws6d{word-spacing:-1.434614px;}
.ws2e{word-spacing:-1.315063px;}
.ws100{word-spacing:-1.291162px;}
.ws27{word-spacing:-1.255288px;}
.ws58{word-spacing:-1.195512px;}
.wse1{word-spacing:-1.183565px;}
.ws57{word-spacing:-1.135736px;}
.ws6b{word-spacing:-1.075961px;}
.ws54{word-spacing:-1.016185px;}
.ws65{word-spacing:-0.956410px;}
.wsb5{word-spacing:-0.896634px;}
.ws6f{word-spacing:-0.777083px;}
.ws2a{word-spacing:-0.657532px;}
.wsef{word-spacing:-0.537984px;}
.ws5e{word-spacing:-0.537980px;}
.ws20{word-spacing:-0.418429px;}
.ws35{word-spacing:-0.358654px;}
.ws92{word-spacing:-0.336672px;}
.ws8a{word-spacing:-0.318636px;}
.ws47{word-spacing:-0.298878px;}
.ws81{word-spacing:-0.277704px;}
.ws89{word-spacing:-0.270540px;}
.ws11{word-spacing:-0.268992px;}
.ws8b{word-spacing:-0.246492px;}
.ws2f{word-spacing:-0.239102px;}
.wsc{word-spacing:-0.215194px;}
.ws1a{word-spacing:-0.179327px;}
.wse4{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.wsd9{word-spacing:-0.107597px;}
.ws82{word-spacing:-0.081396px;}
.ws7a{word-spacing:-0.060120px;}
.ws1f{word-spacing:-0.059776px;}
.ws80{word-spacing:-0.057456px;}
.ws10{word-spacing:-0.053798px;}
.wsf7{word-spacing:-0.015658px;}
.wsf2{word-spacing:-0.012326px;}
.ws102{word-spacing:-0.009888px;}
.wsed{word-spacing:-0.008467px;}
.wsfb{word-spacing:-0.006902px;}
.wsf8{word-spacing:-0.006422px;}
.wsf9{word-spacing:-0.006202px;}
.ws105{word-spacing:-0.004838px;}
.wsf1{word-spacing:-0.004243px;}
.wsf3{word-spacing:-0.004147px;}
.ws2{word-spacing:-0.000779px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.003599px;}
.ws87{word-spacing:0.012024px;}
.ws12{word-spacing:0.053798px;}
.ws88{word-spacing:0.054108px;}
.ws1c{word-spacing:0.059776px;}
.wsa0{word-spacing:0.090180px;}
.ws9e{word-spacing:0.102204px;}
.ws13{word-spacing:0.107597px;}
.ws9f{word-spacing:0.114228px;}
.ws1d{word-spacing:0.119551px;}
.wse{word-spacing:0.161395px;}
.ws8c{word-spacing:0.168336px;}
.ws1b{word-spacing:0.179327px;}
.wsd{word-spacing:0.215194px;}
.ws1e{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.wsd6{word-spacing:0.322790px;}
.ws44{word-spacing:0.358654px;}
.wsdd{word-spacing:0.376589px;}
.ws93{word-spacing:0.390780px;}
.ws66{word-spacing:0.418429px;}
.ws94{word-spacing:0.426852px;}
.wse6{word-spacing:0.430387px;}
.wsb4{word-spacing:0.478205px;}
.wsec{word-spacing:0.537984px;}
.wsc5{word-spacing:0.597756px;}
.ws3d{word-spacing:0.657532px;}
.wsf{word-spacing:0.699379px;}
.ws2d{word-spacing:0.717307px;}
.ws96{word-spacing:0.751500px;}
.wseb{word-spacing:0.753178px;}
.wsaa{word-spacing:0.777083px;}
.ws39{word-spacing:0.836858px;}
.ws95{word-spacing:0.847692px;}
.wsfa{word-spacing:0.860774px;}
.ws3a{word-spacing:0.896634px;}
.wsc9{word-spacing:0.956410px;}
.wsab{word-spacing:1.016185px;}
.ws4f{word-spacing:1.075961px;}
.wsee{word-spacing:1.075968px;}
.ws59{word-spacing:1.135736px;}
.ws3f{word-spacing:1.195512px;}
.wsc6{word-spacing:1.255288px;}
.ws74{word-spacing:1.374839px;}
.ws9{word-spacing:1.380812px;}
.ws21{word-spacing:1.434614px;}
.ws50{word-spacing:1.494390px;}
.ws14{word-spacing:1.506355px;}
.ws9c{word-spacing:1.551096px;}
.wsb1{word-spacing:1.554166px;}
.wsf0{word-spacing:1.560154px;}
.ws2b{word-spacing:1.613941px;}
.ws2c{word-spacing:1.673717px;}
.ws5c{word-spacing:1.733492px;}
.ws43{word-spacing:1.793268px;}
.wsfc{word-spacing:1.829146px;}
.ws56{word-spacing:1.853044px;}
.ws9d{word-spacing:1.899792px;}
.ws9b{word-spacing:1.911816px;}
.wscd{word-spacing:1.912819px;}
.ws52{word-spacing:2.032370px;}
.ws53{word-spacing:2.092146px;}
.wse3{word-spacing:2.098138px;}
.ws63{word-spacing:2.151922px;}
.wse9{word-spacing:2.151936px;}
.ws26{word-spacing:2.211697px;}
.ws98{word-spacing:2.266524px;}
.wsca{word-spacing:2.271473px;}
.ws73{word-spacing:2.331248px;}
.ws97{word-spacing:2.356704px;}
.wscb{word-spacing:2.391024px;}
.wsc4{word-spacing:2.450800px;}
.ws101{word-spacing:2.474726px;}
.ws5a{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws75{word-spacing:2.570351px;}
.wscf{word-spacing:2.582323px;}
.ws42{word-spacing:2.630126px;}
.ws91{word-spacing:2.657304px;}
.ws48{word-spacing:2.689902px;}
.wsa2{word-spacing:2.723436px;}
.wsc8{word-spacing:2.749678px;}
.wsa1{word-spacing:2.771532px;}
.ws33{word-spacing:2.809453px;}
.ws90{word-spacing:2.819628px;}
.wsc1{word-spacing:2.869229px;}
.ws24{word-spacing:2.929004px;}
.wsb{word-spacing:3.030480px;}
.ws72{word-spacing:3.048556px;}
.ws9a{word-spacing:3.084156px;}
.ws37{word-spacing:3.108331px;}
.wsc2{word-spacing:3.168107px;}
.wsf4{word-spacing:3.218045px;}
.wsd8{word-spacing:3.218707px;}
.wsf5{word-spacing:3.219370px;}
.ws18{word-spacing:3.219667px;}
.wsfe{word-spacing:3.219725px;}
.wsde{word-spacing:3.220618px;}
.wse8{word-spacing:3.221146px;}
.wsda{word-spacing:3.223219px;}
.wsce{word-spacing:3.224822px;}
.ws46{word-spacing:3.227882px;}
.wsd7{word-spacing:3.227904px;}
.wsdc{word-spacing:3.281702px;}
.ws55{word-spacing:3.287658px;}
.wsdb{word-spacing:3.308745px;}
.wse2{word-spacing:3.335501px;}
.ws38{word-spacing:3.347434px;}
.wsd1{word-spacing:3.389299px;}
.wsd0{word-spacing:3.443098px;}
.wsc0{word-spacing:3.466985px;}
.wse7{word-spacing:3.496896px;}
.ws36{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.ws104{word-spacing:3.604493px;}
.ws76{word-spacing:3.646312px;}
.ws8e{word-spacing:3.667320px;}
.wsb9{word-spacing:3.706087px;}
.ws8d{word-spacing:3.715416px;}
.ws60{word-spacing:3.765863px;}
.ws25{word-spacing:3.825638px;}
.ws67{word-spacing:3.885414px;}
.ws41{word-spacing:3.945190px;}
.ws4e{word-spacing:4.064741px;}
.ws49{word-spacing:4.124516px;}
.ws40{word-spacing:4.184292px;}
.wse0{word-spacing:4.196275px;}
.ws3b{word-spacing:4.244068px;}
.ws5f{word-spacing:4.303843px;}
.ws16{word-spacing:4.303872px;}
.wsad{word-spacing:4.363619px;}
.ws4a{word-spacing:4.423394px;}
.wsa9{word-spacing:4.542946px;}
.wsdf{word-spacing:4.626662px;}
.ws34{word-spacing:4.722272px;}
.ws45{word-spacing:4.841824px;}
.ws71{word-spacing:4.901599px;}
.ws3e{word-spacing:4.961375px;}
.wsa5{word-spacing:5.021150px;}
.ws15{word-spacing:5.057050px;}
.ws4d{word-spacing:5.080926px;}
.wscc{word-spacing:5.140702px;}
.wsbc{word-spacing:5.260253px;}
.wsf6{word-spacing:5.433638px;}
.wsba{word-spacing:5.439580px;}
.ws8f{word-spacing:5.464908px;}
.ws7{word-spacing:5.481407px;}
.wsb3{word-spacing:5.678682px;}
.ws6c{word-spacing:5.738458px;}
.wsbb{word-spacing:5.798233px;}
.ws62{word-spacing:5.858009px;}
.wsbf{word-spacing:5.917784px;}
.wsb8{word-spacing:6.037336px;}
.wse5{word-spacing:6.133018px;}
.ws7c{word-spacing:6.156887px;}
.ws69{word-spacing:6.276438px;}
.ws64{word-spacing:6.336214px;}
.wsc7{word-spacing:6.515540px;}
.ws103{word-spacing:6.617203px;}
.ws32{word-spacing:6.635092px;}
.ws31{word-spacing:6.993745px;}
.ws4b{word-spacing:7.053521px;}
.wsfd{word-spacing:7.101389px;}
.ws7e{word-spacing:7.173072px;}
.ws4c{word-spacing:7.412174px;}
.ws77{word-spacing:7.531726px;}
.wsbd{word-spacing:7.591501px;}
.ws99{word-spacing:7.617204px;}
.wsea{word-spacing:7.746970px;}
.ws61{word-spacing:7.890379px;}
.wsa7{word-spacing:8.009930px;}
.ws5d{word-spacing:8.249033px;}
.ws30{word-spacing:8.488135px;}
.ws6e{word-spacing:8.846789px;}
.ws68{word-spacing:8.906564px;}
.ws83{word-spacing:11.620476px;}
.ws6{word-spacing:11.841512px;}
.ws5{word-spacing:13.306010px;}
.wsc3{word-spacing:13.628837px;}
.ws3{word-spacing:15.481836px;}
.ws51{word-spacing:15.960085px;}
.ws8{word-spacing:16.067635px;}
.wsb7{word-spacing:19.128192px;}
.wsbe{word-spacing:21.877870px;}
.ws4{word-spacing:29.262958px;}
.wsd2{word-spacing:74.887373px;}
.wsd5{word-spacing:115.232400px;}
.wsd3{word-spacing:142.131600px;}
._6{margin-left:-7.962163px;}
._9{margin-left:-6.402010px;}
._2{margin-left:-4.602708px;}
._0{margin-left:-3.054524px;}
._5{margin-left:-1.464498px;}
._1d{width:1.254456px;}
._33{width:2.612167px;}
._34{width:3.706200px;}
._1{width:12.971268px;}
._e{width:14.824386px;}
._20{width:15.840534px;}
._7{width:17.000294px;}
._b{width:18.082115px;}
._8{width:19.259827px;}
._d{width:20.550714px;}
._13{width:21.651089px;}
._12{width:22.894046px;}
._c{width:24.268885px;}
._3{width:25.314894px;}
._14{width:26.630026px;}
._15{width:28.393397px;}
._a{width:29.804314px;}
._4{width:31.256572px;}
._16{width:33.055907px;}
._17{width:34.341078px;}
._1b{width:35.715917px;}
._1a{width:37.222315px;}
._22{width:38.734589px;}
._11{width:39.810541px;}
._1c{width:41.573921px;}
._1f{width:43.492834px;}
._2f{width:74.988893px;}
._2c{width:88.336973px;}
._26{width:89.926970px;}
._19{width:93.548814px;}
._18{width:96.537594px;}
._23{width:107.758195px;}
._2e{width:117.657101px;}
._30{width:128.685773px;}
._29{width:147.521077px;}
._32{width:153.540634px;}
._2a{width:155.584973px;}
._28{width:204.039439px;}
._27{width:311.409056px;}
._2b{width:531.689612px;}
._2d{width:567.244829px;}
._31{width:592.423738px;}
._24{width:667.584346px;}
._f{width:881.284037px;}
._25{width:946.463267px;}
._1e{width:2105.489484px;}
._21{width:2512.803000px;}
._10{width:2536.713000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y14a{bottom:-422.732550px;}
.y15f{bottom:-343.253973px;}
.y15e{bottom:-324.084711px;}
.y15d{bottom:-304.825269px;}
.y15c{bottom:-285.656007px;}
.y15b{bottom:-266.396565px;}
.y15a{bottom:-247.137123px;}
.y159{bottom:-227.967861px;}
.y158{bottom:-208.708419px;}
.y157{bottom:-189.539157px;}
.y156{bottom:-170.279715px;}
.y155{bottom:-151.020273px;}
.y154{bottom:-131.851011px;}
.y153{bottom:-112.591569px;}
.y152{bottom:-93.332127px;}
.y151{bottom:-74.162865px;}
.y150{bottom:-36.992172px;}
.y14f{bottom:-12.962208px;}
.y0{bottom:0.000000px;}
.y60{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y33{bottom:104.646000px;}
.y171{bottom:108.916500px;}
.y5f{bottom:109.257000px;}
.y146{bottom:110.629500px;}
.yf9{bottom:113.767500px;}
.y23e{bottom:115.602000px;}
.y18e{bottom:117.804000px;}
.y11e{bottom:118.699500px;}
.y97{bottom:119.596500px;}
.y32{bottom:122.535000px;}
.y170{bottom:127.746000px;}
.y5e{bottom:128.086500px;}
.y145{bottom:129.459000px;}
.yf8{bottom:132.597000px;}
.y23d{bottom:132.862500px;}
.y1cd{bottom:133.045500px;}
.y273{bottom:133.719000px;}
.y18d{bottom:136.632000px;}
.y19d{bottom:137.080500px;}
.y11d{bottom:137.529000px;}
.y96{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y31{bottom:140.422500px;}
.y5d{bottom:146.916000px;}
.y144{bottom:148.288500px;}
.yc4{bottom:149.185500px;}
.y23c{bottom:150.123000px;}
.y272{bottom:150.978000px;}
.y16f{bottom:151.059000px;}
.y200{bottom:151.407000px;}
.yf7{bottom:151.426500px;}
.y1cc{bottom:151.875000px;}
.y18c{bottom:155.461500px;}
.y19c{bottom:155.910000px;}
.y11c{bottom:156.358500px;}
.y95{bottom:157.255500px;}
.y30{bottom:158.310000px;}
.y1ff{bottom:159.625500px;}
.y5c{bottom:165.745500px;}
.y143{bottom:167.118000px;}
.y23b{bottom:167.383500px;}
.yc3{bottom:168.015000px;}
.y271{bottom:168.238500px;}
.yf6{bottom:170.256000px;}
.y1cb{bottom:170.704500px;}
.y16e{bottom:171.234000px;}
.y18b{bottom:174.291000px;}
.y19b{bottom:174.739500px;}
.y11b{bottom:175.188000px;}
.y94{bottom:176.085000px;}
.y2f{bottom:176.199000px;}
.y5b{bottom:184.575000px;}
.y23a{bottom:184.644000px;}
.y270{bottom:185.499000px;}
.y142{bottom:185.947500px;}
.yc2{bottom:186.844500px;}
.yf5{bottom:189.085500px;}
.y1ca{bottom:189.534000px;}
.y1fe{bottom:191.485500px;}
.y18a{bottom:193.120500px;}
.y19a{bottom:193.569000px;}
.y11a{bottom:194.017500px;}
.y2e{bottom:194.086500px;}
.y93{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y239{bottom:201.904500px;}
.y26f{bottom:202.759500px;}
.y5a{bottom:203.404500px;}
.y141{bottom:204.777000px;}
.y16d{bottom:204.858000px;}
.yc1{bottom:205.674000px;}
.yf4{bottom:207.915000px;}
.y1c9{bottom:208.363500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y189{bottom:211.950000px;}
.y2d{bottom:211.974000px;}
.y199{bottom:212.398500px;}
.y119{bottom:212.847000px;}
.y92{bottom:213.744000px;}
.y1fc{bottom:215.127000px;}
.y238{bottom:219.163500px;}
.y26e{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y59{bottom:222.234000px;}
.y1fb{bottom:223.345500px;}
.y140{bottom:223.606500px;}
.y16c{bottom:223.686000px;}
.yc0{bottom:224.503500px;}
.yf3{bottom:226.744500px;}
.y1c8{bottom:227.193000px;}
.y2c{bottom:229.863000px;}
.y198{bottom:231.228000px;}
.y1fd{bottom:231.564000px;}
.y118{bottom:231.676500px;}
.y91{bottom:232.573500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y188{bottom:235.263000px;}
.y1df{bottom:236.160000px;}
.y237{bottom:236.424000px;}
.y26d{bottom:237.280500px;}
.y58{bottom:241.063500px;}
.y13f{bottom:242.436000px;}
.y16b{bottom:242.515500px;}
.ybf{bottom:243.333000px;}
.yf2{bottom:245.574000px;}
.y1c7{bottom:246.022500px;}
.y197{bottom:250.057500px;}
.y117{bottom:250.506000px;}
.y90{bottom:251.403000px;}
.y236{bottom:253.684500px;}
.y26c{bottom:254.541000px;}
.y1fa{bottom:255.205500px;}
.y57{bottom:259.893000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y13e{bottom:261.265500px;}
.y16a{bottom:261.345000px;}
.ybe{bottom:262.162500px;}
.yf1{bottom:264.403500px;}
.y1c6{bottom:264.852000px;}
.y187{bottom:268.887000px;}
.y116{bottom:269.335500px;}
.y1de{bottom:269.784000px;}
.y8f{bottom:270.232500px;}
.y235{bottom:270.945000px;}
.y1f9{bottom:271.644000px;}
.y26b{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y56{bottom:278.722500px;}
.y1f6{bottom:279.862500px;}
.y13d{bottom:280.095000px;}
.y169{bottom:280.174500px;}
.ybd{bottom:280.992000px;}
.yf0{bottom:283.233000px;}
.y1c5{bottom:283.681500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y186{bottom:287.716500px;}
.y1f5{bottom:288.082500px;}
.y115{bottom:288.165000px;}
.y234{bottom:288.205500px;}
.y1dd{bottom:288.613500px;}
.y8e{bottom:289.062000px;}
.y2b{bottom:297.166500px;}
.y55{bottom:297.552000px;}
.y13c{bottom:298.924500px;}
.y168{bottom:299.004000px;}
.ybc{bottom:299.821500px;}
.yef{bottom:302.062500px;}
.y1c4{bottom:302.511000px;}
.y1f8{bottom:304.521000px;}
.y233{bottom:305.466000px;}
.y26a{bottom:306.321000px;}
.y185{bottom:306.546000px;}
.y114{bottom:306.994500px;}
.y1dc{bottom:307.443000px;}
.y8d{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2a{bottom:315.054000px;}
.y54{bottom:316.381500px;}
.y13b{bottom:317.754000px;}
.y167{bottom:317.833500px;}
.ybb{bottom:318.651000px;}
.yee{bottom:320.892000px;}
.y1f7{bottom:320.959500px;}
.y1c3{bottom:321.340500px;}
.y232{bottom:322.726500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y269{bottom:323.581500px;}
.y184{bottom:325.375500px;}
.y113{bottom:325.824000px;}
.y1db{bottom:326.272500px;}
.y8c{bottom:326.719500px;}
.y29{bottom:332.941500px;}
.y53{bottom:335.211000px;}
.y13a{bottom:336.583500px;}
.y166{bottom:336.663000px;}
.yba{bottom:337.480500px;}
.yed{bottom:339.721500px;}
.y1c2{bottom:340.170000px;}
.y268{bottom:340.842000px;}
.y183{bottom:344.205000px;}
.y231{bottom:344.469000px;}
.y1f3{bottom:344.599500px;}
.y112{bottom:344.653500px;}
.y1da{bottom:345.102000px;}
.y8b{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y28{bottom:350.830500px;}
.y1f2{bottom:352.818000px;}
.y276{bottom:353.544000px;}
.y52{bottom:354.040500px;}
.y139{bottom:355.413000px;}
.y165{bottom:355.492500px;}
.yb9{bottom:356.310000px;}
.y267{bottom:358.102500px;}
.yec{bottom:358.551000px;}
.y1c1{bottom:358.999500px;}
.y1f4{bottom:361.038000px;}
.y182{bottom:363.034500px;}
.y111{bottom:363.483000px;}
.y1d9{bottom:363.931500px;}
.y8a{bottom:364.378500px;}
.y196{bottom:367.518000px;}
.y275{bottom:370.804500px;}
.y51{bottom:372.870000px;}
.y138{bottom:374.242500px;}
.y164{bottom:374.322000px;}
.yb8{bottom:375.139500px;}
.y266{bottom:375.363000px;}
.yeb{bottom:377.380500px;}
.y27{bottom:377.685000px;}
.y1c0{bottom:377.829000px;}
.y181{bottom:381.864000px;}
.y110{bottom:382.312500px;}
.y1d8{bottom:382.761000px;}
.y89{bottom:383.208000px;}
.y1f0{bottom:384.678000px;}
.ye{bottom:386.785499px;}
.y274{bottom:388.065000px;}
.y230{bottom:389.782500px;}
.y50{bottom:391.699500px;}
.y265{bottom:392.623500px;}
.y1ef{bottom:392.898000px;}
.y137{bottom:393.072000px;}
.y163{bottom:393.151500px;}
.yb7{bottom:393.969000px;}
.y26{bottom:395.572500px;}
.yea{bottom:396.210000px;}
.y1bf{bottom:396.658500px;}
.y22e{bottom:398.001000px;}
.y180{bottom:400.693500px;}
.y1f1{bottom:401.116500px;}
.y10f{bottom:401.142000px;}
.y1d7{bottom:401.589000px;}
.y88{bottom:402.037500px;}
.y22d{bottom:406.221000px;}
.yd{bottom:408.044999px;}
.y264{bottom:409.884000px;}
.y4f{bottom:410.529000px;}
.y136{bottom:411.901500px;}
.y162{bottom:411.981000px;}
.yb6{bottom:412.798500px;}
.y25{bottom:413.460000px;}
.ye9{bottom:415.039500px;}
.y1be{bottom:415.488000px;}
.y17f{bottom:419.523000px;}
.y10e{bottom:419.971500px;}
.y1d6{bottom:420.418500px;}
.y87{bottom:420.867000px;}
.y22f{bottom:422.659500px;}
.y1ee{bottom:424.758000px;}
.y263{bottom:427.144500px;}
.y4e{bottom:429.358500px;}
.y135{bottom:430.731000px;}
.y161{bottom:430.810500px;}
.y24{bottom:431.349000px;}
.yb5{bottom:431.628000px;}
.ye8{bottom:433.869000px;}
.y1bd{bottom:434.317500px;}
.y17e{bottom:438.352500px;}
.y10d{bottom:438.801000px;}
.y1d5{bottom:439.248000px;}
.y86{bottom:439.696500px;}
.y1ec{bottom:441.196500px;}
.y262{bottom:444.403500px;}
.y22c{bottom:446.299500px;}
.y23{bottom:449.236500px;}
.y134{bottom:449.560500px;}
.y4d{bottom:452.671500px;}
.ye7{bottom:452.698500px;}
.y1bc{bottom:453.147000px;}
.yb4{bottom:454.939500px;}
.y17d{bottom:457.182000px;}
.y10c{bottom:457.630500px;}
.y1ed{bottom:457.635000px;}
.y1d4{bottom:458.077500px;}
.y85{bottom:458.526000px;}
.y261{bottom:461.664000px;}
.y22b{bottom:462.738000px;}
.y160{bottom:464.376000px;}
.y22{bottom:467.124000px;}
.y133{bottom:468.390000px;}
.y228{bottom:470.956500px;}
.ye6{bottom:471.528000px;}
.y1bb{bottom:471.976500px;}
.y10b{bottom:476.458500px;}
.y1d3{bottom:476.907000px;}
.y84{bottom:477.355500px;}
.y260{bottom:478.924500px;}
.y22a{bottom:479.176500px;}
.y17c{bottom:480.493500px;}
.y1eb{bottom:481.275000px;}
.y147{bottom:486.805500px;}
.y132{bottom:487.219500px;}
.yb3{bottom:488.563500px;}
.ye5{bottom:490.357500px;}
.y1ba{bottom:490.806000px;}
.y10a{bottom:495.288000px;}
.y229{bottom:495.615000px;}
.y1d2{bottom:495.736500px;}
.y83{bottom:496.185000px;}
.yc{bottom:502.864502px;}
.y131{bottom:506.049000px;}
.yb2{bottom:507.393000px;}
.ye4{bottom:509.187000px;}
.y1b9{bottom:509.635500px;}
.y25f{bottom:513.445500px;}
.y109{bottom:514.117500px;}
.y1d1{bottom:514.566000px;}
.y82{bottom:515.014500px;}
.y1ea{bottom:515.883000px;}
.y227{bottom:519.255000px;}
.yb{bottom:520.864502px;}
.y130{bottom:524.877000px;}
.yb1{bottom:526.222500px;}
.y226{bottom:527.475000px;}
.y4c{bottom:527.821500px;}
.ye3{bottom:528.016500px;}
.y1b8{bottom:528.465000px;}
.y25e{bottom:530.706000px;}
.y17b{bottom:532.947000px;}
.y1d0{bottom:533.395500px;}
.y81{bottom:533.844000px;}
.y1e9{bottom:535.116000px;}
.y108{bottom:537.430500px;}
.ya{bottom:538.864499px;}
.y12f{bottom:543.706500px;}
.yb0{bottom:545.052000px;}
.ye2{bottom:546.846000px;}
.y1b7{bottom:547.294500px;}
.y25d{bottom:547.966500px;}
.y17a{bottom:551.776500px;}
.y1cf{bottom:552.225000px;}
.y80{bottom:552.673500px;}
.y9{bottom:556.864499px;}
.y225{bottom:559.335000px;}
.y12e{bottom:562.536000px;}
.yaf{bottom:563.881500px;}
.y4b{bottom:565.210500px;}
.y25c{bottom:565.227000px;}
.ye1{bottom:565.675500px;}
.y1b6{bottom:566.124000px;}
.y221{bottom:567.553500px;}
.y179{bottom:570.606000px;}
.y107{bottom:571.054500px;}
.y7f{bottom:571.503000px;}
.y224{bottom:575.772000px;}
.y1e8{bottom:578.139000px;}
.y12d{bottom:581.365500px;}
.y25b{bottom:582.487500px;}
.y21f{bottom:583.992000px;}
.ye0{bottom:584.505000px;}
.y4a{bottom:584.668500px;}
.y178{bottom:589.435500px;}
.y106{bottom:589.884000px;}
.yae{bottom:590.182500px;}
.y7e{bottom:590.332500px;}
.y223{bottom:592.210500px;}
.y25a{bottom:599.746500px;}
.y12c{bottom:600.195000px;}
.y220{bottom:600.430500px;}
.y14e{bottom:601.017801px;}
.ydf{bottom:603.333000px;}
.y49{bottom:604.125000px;}
.y177{bottom:608.265000px;}
.y222{bottom:608.649000px;}
.y105{bottom:608.713500px;}
.y7d{bottom:609.162000px;}
.y1ce{bottom:613.197000px;}
.y1e7{bottom:614.901000px;}
.yad{bottom:616.485000px;}
.y259{bottom:617.007000px;}
.y12b{bottom:619.024500px;}
.y14d{bottom:620.277243px;}
.yde{bottom:622.162500px;}
.y1b5{bottom:623.059500px;}
.y48{bottom:623.581500px;}
.y176{bottom:627.094500px;}
.y104{bottom:627.543000px;}
.y7c{bottom:627.991500px;}
.y21e{bottom:632.290500px;}
.y258{bottom:634.267500px;}
.yac{bottom:635.314500px;}
.y12a{bottom:637.854000px;}
.y14c{bottom:639.536685px;}
.ydd{bottom:640.992000px;}
.y1e6{bottom:641.440500px;}
.y1b4{bottom:641.889000px;}
.y47{bottom:643.039500px;}
.y8{bottom:645.510000px;}
.y175{bottom:645.924000px;}
.y103{bottom:646.372500px;}
.y7b{bottom:646.821000px;}
.y21b{bottom:648.729000px;}
.y257{bottom:651.528000px;}
.y129{bottom:656.683500px;}
.y21a{bottom:656.947500px;}
.y14b{bottom:658.707450px;}
.y1e5{bottom:659.016000px;}
.ydc{bottom:659.821500px;}
.y1b3{bottom:660.718500px;}
.yab{bottom:661.615500px;}
.y46{bottom:662.496000px;}
.y174{bottom:664.753500px;}
.y21d{bottom:665.167500px;}
.y102{bottom:665.202000px;}
.y7a{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y256{bottom:668.788500px;}
.y128{bottom:675.513000px;}
.ydb{bottom:678.651000px;}
.y1b2{bottom:679.548000px;}
.y21c{bottom:681.606000px;}
.y45{bottom:681.952500px;}
.y173{bottom:683.583000px;}
.y101{bottom:684.031500px;}
.y79{bottom:684.480000px;}
.y1e4{bottom:685.555500px;}
.y255{bottom:686.049000px;}
.yaa{bottom:687.916500px;}
.yda{bottom:697.480500px;}
.y1b1{bottom:698.377500px;}
.y127{bottom:698.826000px;}
.y44{bottom:701.410500px;}
.y195{bottom:702.412500px;}
.y100{bottom:702.861000px;}
.y78{bottom:703.309500px;}
.y219{bottom:705.246000px;}
.ya9{bottom:706.746000px;}
.y172{bottom:706.896000px;}
.y1e3{bottom:712.096500px;}
.y149{bottom:713.427585px;}
.yd9{bottom:716.310000px;}
.y1b0{bottom:717.207000px;}
.y126{bottom:717.655500px;}
.y254{bottom:720.570000px;}
.y43{bottom:720.867000px;}
.y194{bottom:721.242000px;}
.y217{bottom:721.684500px;}
.yff{bottom:721.690500px;}
.y77{bottom:722.139000px;}
.y148{bottom:723.057450px;}
.ya8{bottom:725.575500px;}
.y6{bottom:726.298500px;}
.yd8{bottom:735.139500px;}
.y1af{bottom:736.036500px;}
.y125{bottom:736.485000px;}
.y253{bottom:737.829000px;}
.y218{bottom:738.123000px;}
.y1e2{bottom:738.637500px;}
.y193{bottom:740.071500px;}
.y42{bottom:740.325000px;}
.yfe{bottom:740.520000px;}
.y76{bottom:740.968500px;}
.ya7{bottom:744.405000px;}
.y3{bottom:752.599495px;}
.yd7{bottom:753.969000px;}
.y1ae{bottom:754.866000px;}
.y252{bottom:755.089500px;}
.y124{bottom:755.314500px;}
.y192{bottom:758.901000px;}
.yfd{bottom:759.349500px;}
.y41{bottom:759.781500px;}
.y75{bottom:759.798000px;}
.y216{bottom:761.763000px;}
.ya6{bottom:763.234500px;}
.y251{bottom:772.350000px;}
.yd6{bottom:772.798500px;}
.y1ad{bottom:773.695500px;}
.y123{bottom:774.144000px;}
.y191{bottom:777.730500px;}
.yfc{bottom:778.179000px;}
.y214{bottom:778.201500px;}
.y74{bottom:778.627500px;}
.y40{bottom:779.238000px;}
.ya5{bottom:789.535500px;}
.y250{bottom:789.610500px;}
.yd5{bottom:791.628000px;}
.y1ac{bottom:792.525000px;}
.y122{bottom:792.973500px;}
.y215{bottom:794.640000px;}
.yfb{bottom:797.008500px;}
.y73{bottom:797.457000px;}
.y3f{bottom:798.696000px;}
.y190{bottom:801.043500px;}
.y24f{bottom:806.871000px;}
.yd4{bottom:810.457500px;}
.y1ab{bottom:811.354500px;}
.y121{bottom:811.803000px;}
.ya4{bottom:815.838000px;}
.y72{bottom:816.286500px;}
.y3e{bottom:818.152500px;}
.y213{bottom:818.281500px;}
.y24e{bottom:824.131500px;}
.yd3{bottom:829.287000px;}
.y1aa{bottom:830.184000px;}
.y120{bottom:830.632500px;}
.ya3{bottom:834.667500px;}
.y211{bottom:834.718500px;}
.y71{bottom:835.114500px;}
.y3d{bottom:837.609000px;}
.y24d{bottom:841.392000px;}
.yd2{bottom:848.116500px;}
.y1a9{bottom:849.013500px;}
.y11f{bottom:849.462000px;}
.y212{bottom:851.157000px;}
.ya2{bottom:853.497000px;}
.y70{bottom:853.944000px;}
.y3c{bottom:857.067000px;}
.y24c{bottom:858.652500px;}
.yd1{bottom:866.946000px;}
.y1e1{bottom:868.291500px;}
.ya1{bottom:872.326500px;}
.y6f{bottom:872.773500px;}
.y20f{bottom:874.798500px;}
.y24b{bottom:875.913000px;}
.y3b{bottom:876.523500px;}
.y2{bottom:879.369000px;}
.y20e{bottom:883.017000px;}
.yd0{bottom:885.775500px;}
.y1e0{bottom:887.121000px;}
.ya0{bottom:891.156000px;}
.y210{bottom:891.237000px;}
.y6e{bottom:891.603000px;}
.y24a{bottom:893.172000px;}
.y3a{bottom:895.981500px;}
.ycf{bottom:904.605000px;}
.y1a8{bottom:905.950500px;}
.y9f{bottom:909.984000px;}
.y6d{bottom:910.432500px;}
.y20d{bottom:914.877000px;}
.y20b{bottom:923.097000px;}
.yce{bottom:923.434500px;}
.y1a7{bottom:924.778500px;}
.y249{bottom:927.693000px;}
.y9e{bottom:928.813500px;}
.y6c{bottom:929.262000px;}
.y20a{bottom:931.315500px;}
.y39{bottom:934.566000px;}
.ycd{bottom:942.264000px;}
.y1a6{bottom:943.608000px;}
.y248{bottom:944.953500px;}
.y9d{bottom:947.643000px;}
.y20c{bottom:947.754000px;}
.y6b{bottom:948.091500px;}
.y38{bottom:950.706000px;}
.yfa{bottom:952.126500px;}
.ycc{bottom:961.093500px;}
.y247{bottom:962.214000px;}
.y1a5{bottom:962.437500px;}
.y9c{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6a{bottom:966.921000px;}
.y209{bottom:971.394000px;}
.y246{bottom:979.474500px;}
.ycb{bottom:979.923000px;}
.y1a4{bottom:981.267000px;}
.y9b{bottom:985.302000px;}
.y69{bottom:985.750500px;}
.y207{bottom:987.832500px;}
.y245{bottom:996.735000px;}
.yca{bottom:998.752500px;}
.y37{bottom:999.721500px;}
.y1a3{bottom:1000.096500px;}
.y9a{bottom:1004.131500px;}
.y208{bottom:1004.271000px;}
.y68{bottom:1004.580000px;}
.y18f{bottom:1008.615000px;}
.y244{bottom:1013.995500px;}
.yc9{bottom:1017.582000px;}
.y1a2{bottom:1018.926000px;}
.y99{bottom:1022.961000px;}
.y67{bottom:1023.409500px;}
.y206{bottom:1027.912500px;}
.y243{bottom:1031.254500px;}
.y204{bottom:1036.131000px;}
.yc8{bottom:1036.411500px;}
.y36{bottom:1036.485000px;}
.y1a1{bottom:1037.755500px;}
.y66{bottom:1042.239000px;}
.y203{bottom:1044.351000px;}
.y98{bottom:1046.274000px;}
.y242{bottom:1048.515000px;}
.yc7{bottom:1055.241000px;}
.y1a0{bottom:1056.585000px;}
.y205{bottom:1060.789500px;}
.y65{bottom:1061.068500px;}
.y35{bottom:1064.728500px;}
.y241{bottom:1065.775500px;}
.yc6{bottom:1074.070500px;}
.y19f{bottom:1075.414500px;}
.y64{bottom:1079.898000px;}
.y240{bottom:1083.036000px;}
.y202{bottom:1084.429500px;}
.y34{bottom:1092.972000px;}
.y19e{bottom:1094.244000px;}
.yc5{bottom:1097.382000px;}
.y63{bottom:1098.727500px;}
.y23f{bottom:1100.296500px;}
.y62{bottom:1117.557000px;}
.y201{bottom:1119.037500px;}
.y61{bottom:1177.662000px;}
.h12{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.he{height:34.813397px;}
.h15{height:34.951465px;}
.h11{height:35.052500px;}
.h14{height:35.255391px;}
.h18{height:38.734848px;}
.hf{height:39.165235px;}
.h1b{height:39.434227px;}
.hd{height:43.038432px;}
.h10{height:43.516637px;}
.hb{height:43.815515px;}
.h16{height:43.886426px;}
.h17{height:44.268047px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h19{height:72.039235px;}
.h1a{height:72.045235px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h13{height:569.452500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:415.503000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xc{left:-206.770500px;}
.xd{left:-11.200500px;}
.x0{left:0.000000px;}
.xe{left:20.660897px;}
.x6{left:52.525500px;}
.x5{left:53.574000px;}
.x10{left:62.541000px;}
.x15{left:84.220500px;}
.x14{left:85.323000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:111.523500px;}
.x4{left:203.484001px;}
.x7{left:249.591000px;}
.x8{left:281.479500px;}
.xa{left:283.602000px;}
.x12{left:322.506000px;}
.xf{left:428.269529px;}
.x3{left:454.959000px;}
.x13{left:587.488500px;}
.x9{left:683.782500px;}
.xb{left:696.132000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.221333pt;}
.ls21{letter-spacing:-0.347360pt;}
.ls18{letter-spacing:-0.181696pt;}
.ls20{letter-spacing:-0.138944pt;}
.ls14{letter-spacing:-0.112224pt;}
.ls1d{letter-spacing:-0.096192pt;}
.ls1b{letter-spacing:-0.090848pt;}
.ls1e{letter-spacing:-0.080160pt;}
.ls16{letter-spacing:-0.064128pt;}
.ls19{letter-spacing:-0.037408pt;}
.ls22{letter-spacing:-0.032064pt;}
.ls1a{letter-spacing:-0.026720pt;}
.ls12{letter-spacing:-0.025536pt;}
.ls15{letter-spacing:-0.016032pt;}
.ls1c{letter-spacing:-0.010688pt;}
.ls1f{letter-spacing:-0.005344pt;}
.ls13{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.002262pt;}
.ls8{letter-spacing:0.005344pt;}
.ls9{letter-spacing:0.010688pt;}
.lse{letter-spacing:0.026720pt;}
.lsc{letter-spacing:0.037408pt;}
.ls11{letter-spacing:0.042752pt;}
.lsd{letter-spacing:0.048096pt;}
.ls10{letter-spacing:0.058784pt;}
.lsf{letter-spacing:0.064128pt;}
.lsa{letter-spacing:0.074816pt;}
.lsb{letter-spacing:0.106880pt;}
.ls7{letter-spacing:0.157472pt;}
.ls6{letter-spacing:0.170240pt;}
.ls17{letter-spacing:2.324640pt;}
.ls1{letter-spacing:10.626533pt;}
.ls5{letter-spacing:13.177199pt;}
.ls2{letter-spacing:15.515089pt;}
.ls3{letter-spacing:15.568223pt;}
.ls4{letter-spacing:83.815733pt;}
.ws7b{word-spacing:-53.440000pt;}
.wsa8{word-spacing:-13.283467pt;}
.wsd4{word-spacing:-11.955200pt;}
.ws78{word-spacing:-10.810240pt;}
.ws79{word-spacing:-10.640000pt;}
.ws29{word-spacing:-10.626800pt;}
.wsa{word-spacing:-9.298400pt;}
.ws5b{word-spacing:-2.975497pt;}
.wsac{word-spacing:-2.762961pt;}
.ws86{word-spacing:-2.484960pt;}
.wsaf{word-spacing:-2.444158pt;}
.ws3c{word-spacing:-2.284756pt;}
.ws7f{word-spacing:-2.231622pt;}
.ws84{word-spacing:-2.158976pt;}
.ws85{word-spacing:-2.041408pt;}
.wsb6{word-spacing:-2.019087pt;}
.wsae{word-spacing:-1.965953pt;}
.wsff{word-spacing:-1.721549pt;}
.wsa6{word-spacing:-1.700284pt;}
.wsb2{word-spacing:-1.647150pt;}
.wsa3{word-spacing:-1.560448pt;}
.ws6a{word-spacing:-1.540882pt;}
.wsa4{word-spacing:-1.485632pt;}
.ws7d{word-spacing:-1.434614pt;}
.wsb0{word-spacing:-1.381481pt;}
.ws70{word-spacing:-1.328347pt;}
.ws6d{word-spacing:-1.275213pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws100{word-spacing:-1.147699pt;}
.ws27{word-spacing:-1.115811pt;}
.ws58{word-spacing:-1.062677pt;}
.wse1{word-spacing:-1.052058pt;}
.ws57{word-spacing:-1.009543pt;}
.ws6b{word-spacing:-0.956410pt;}
.ws54{word-spacing:-0.903276pt;}
.ws65{word-spacing:-0.850142pt;}
.wsb5{word-spacing:-0.797008pt;}
.ws6f{word-spacing:-0.690740pt;}
.ws2a{word-spacing:-0.584473pt;}
.wsef{word-spacing:-0.478208pt;}
.ws5e{word-spacing:-0.478205pt;}
.ws20{word-spacing:-0.371937pt;}
.ws35{word-spacing:-0.318803pt;}
.ws92{word-spacing:-0.299264pt;}
.ws8a{word-spacing:-0.283232pt;}
.ws47{word-spacing:-0.265669pt;}
.ws81{word-spacing:-0.246848pt;}
.ws89{word-spacing:-0.240480pt;}
.ws11{word-spacing:-0.239104pt;}
.ws8b{word-spacing:-0.219104pt;}
.ws2f{word-spacing:-0.212535pt;}
.wsc{word-spacing:-0.191283pt;}
.ws1a{word-spacing:-0.159402pt;}
.wse4{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.wsd9{word-spacing:-0.095642pt;}
.ws82{word-spacing:-0.072352pt;}
.ws7a{word-spacing:-0.053440pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws80{word-spacing:-0.051072pt;}
.ws10{word-spacing:-0.047821pt;}
.wsf7{word-spacing:-0.013918pt;}
.wsf2{word-spacing:-0.010957pt;}
.ws102{word-spacing:-0.008789pt;}
.wsed{word-spacing:-0.007526pt;}
.wsfb{word-spacing:-0.006135pt;}
.wsf8{word-spacing:-0.005709pt;}
.wsf9{word-spacing:-0.005513pt;}
.ws105{word-spacing:-0.004301pt;}
.wsf1{word-spacing:-0.003772pt;}
.wsf3{word-spacing:-0.003686pt;}
.ws2{word-spacing:-0.000692pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.003199pt;}
.ws87{word-spacing:0.010688pt;}
.ws12{word-spacing:0.047821pt;}
.ws88{word-spacing:0.048096pt;}
.ws1c{word-spacing:0.053134pt;}
.wsa0{word-spacing:0.080160pt;}
.ws9e{word-spacing:0.090848pt;}
.ws13{word-spacing:0.095642pt;}
.ws9f{word-spacing:0.101536pt;}
.ws1d{word-spacing:0.106268pt;}
.wse{word-spacing:0.143462pt;}
.ws8c{word-spacing:0.149632pt;}
.ws1b{word-spacing:0.159402pt;}
.wsd{word-spacing:0.191283pt;}
.ws1e{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.wsd6{word-spacing:0.286925pt;}
.ws44{word-spacing:0.318803pt;}
.wsdd{word-spacing:0.334746pt;}
.ws93{word-spacing:0.347360pt;}
.ws66{word-spacing:0.371937pt;}
.ws94{word-spacing:0.379424pt;}
.wse6{word-spacing:0.382566pt;}
.wsb4{word-spacing:0.425071pt;}
.wsec{word-spacing:0.478208pt;}
.wsc5{word-spacing:0.531339pt;}
.ws3d{word-spacing:0.584473pt;}
.wsf{word-spacing:0.621670pt;}
.ws2d{word-spacing:0.637606pt;}
.ws96{word-spacing:0.668000pt;}
.wseb{word-spacing:0.669491pt;}
.wsaa{word-spacing:0.690740pt;}
.ws39{word-spacing:0.743874pt;}
.ws95{word-spacing:0.753504pt;}
.wsfa{word-spacing:0.765133pt;}
.ws3a{word-spacing:0.797008pt;}
.wsc9{word-spacing:0.850142pt;}
.wsab{word-spacing:0.903276pt;}
.ws4f{word-spacing:0.956410pt;}
.wsee{word-spacing:0.956416pt;}
.ws59{word-spacing:1.009543pt;}
.ws3f{word-spacing:1.062677pt;}
.wsc6{word-spacing:1.115811pt;}
.ws74{word-spacing:1.222079pt;}
.ws9{word-spacing:1.227389pt;}
.ws21{word-spacing:1.275213pt;}
.ws50{word-spacing:1.328347pt;}
.ws14{word-spacing:1.338982pt;}
.ws9c{word-spacing:1.378752pt;}
.wsb1{word-spacing:1.381481pt;}
.wsf0{word-spacing:1.386803pt;}
.ws2b{word-spacing:1.434614pt;}
.ws2c{word-spacing:1.487748pt;}
.ws5c{word-spacing:1.540882pt;}
.ws43{word-spacing:1.594016pt;}
.wsfc{word-spacing:1.625907pt;}
.ws56{word-spacing:1.647150pt;}
.ws9d{word-spacing:1.688704pt;}
.ws9b{word-spacing:1.699392pt;}
.wscd{word-spacing:1.700284pt;}
.ws52{word-spacing:1.806551pt;}
.ws53{word-spacing:1.859685pt;}
.wse3{word-spacing:1.865011pt;}
.ws63{word-spacing:1.912819pt;}
.wse9{word-spacing:1.912832pt;}
.ws26{word-spacing:1.965953pt;}
.ws98{word-spacing:2.014688pt;}
.wsca{word-spacing:2.019087pt;}
.ws73{word-spacing:2.072221pt;}
.ws97{word-spacing:2.094848pt;}
.wscb{word-spacing:2.125355pt;}
.wsc4{word-spacing:2.178489pt;}
.ws101{word-spacing:2.199757pt;}
.ws5a{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws75{word-spacing:2.284756pt;}
.wscf{word-spacing:2.295398pt;}
.ws42{word-spacing:2.337890pt;}
.ws91{word-spacing:2.362048pt;}
.ws48{word-spacing:2.391024pt;}
.wsa2{word-spacing:2.420832pt;}
.wsc8{word-spacing:2.444158pt;}
.wsa1{word-spacing:2.463584pt;}
.ws33{word-spacing:2.497292pt;}
.ws90{word-spacing:2.506336pt;}
.wsc1{word-spacing:2.550426pt;}
.ws24{word-spacing:2.603559pt;}
.wsb{word-spacing:2.693760pt;}
.ws72{word-spacing:2.709827pt;}
.ws9a{word-spacing:2.741472pt;}
.ws37{word-spacing:2.762961pt;}
.wsc2{word-spacing:2.816095pt;}
.wsf4{word-spacing:2.860484pt;}
.wsd8{word-spacing:2.861073pt;}
.wsf5{word-spacing:2.861662pt;}
.ws18{word-spacing:2.861926pt;}
.wsfe{word-spacing:2.861978pt;}
.wsde{word-spacing:2.862771pt;}
.wse8{word-spacing:2.863241pt;}
.wsda{word-spacing:2.865084pt;}
.wsce{word-spacing:2.866509pt;}
.ws46{word-spacing:2.869229pt;}
.wsd7{word-spacing:2.869248pt;}
.wsdc{word-spacing:2.917069pt;}
.ws55{word-spacing:2.922363pt;}
.wsdb{word-spacing:2.941107pt;}
.wse2{word-spacing:2.964890pt;}
.ws38{word-spacing:2.975497pt;}
.wsd1{word-spacing:3.012710pt;}
.wsd0{word-spacing:3.060531pt;}
.wsc0{word-spacing:3.081764pt;}
.wse7{word-spacing:3.108352pt;}
.ws36{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.ws104{word-spacing:3.203994pt;}
.ws76{word-spacing:3.241166pt;}
.ws8e{word-spacing:3.259840pt;}
.wsb9{word-spacing:3.294300pt;}
.ws8d{word-spacing:3.302592pt;}
.ws60{word-spacing:3.347434pt;}
.ws25{word-spacing:3.400567pt;}
.ws67{word-spacing:3.453701pt;}
.ws41{word-spacing:3.506835pt;}
.ws4e{word-spacing:3.613103pt;}
.ws49{word-spacing:3.666237pt;}
.ws40{word-spacing:3.719371pt;}
.wse0{word-spacing:3.730022pt;}
.ws3b{word-spacing:3.772505pt;}
.ws5f{word-spacing:3.825638pt;}
.ws16{word-spacing:3.825664pt;}
.wsad{word-spacing:3.878772pt;}
.ws4a{word-spacing:3.931906pt;}
.wsa9{word-spacing:4.038174pt;}
.wsdf{word-spacing:4.112589pt;}
.ws34{word-spacing:4.197575pt;}
.ws45{word-spacing:4.303843pt;}
.ws71{word-spacing:4.356977pt;}
.ws3e{word-spacing:4.410111pt;}
.wsa5{word-spacing:4.463245pt;}
.ws15{word-spacing:4.495155pt;}
.ws4d{word-spacing:4.516379pt;}
.wscc{word-spacing:4.569513pt;}
.wsbc{word-spacing:4.675780pt;}
.wsf6{word-spacing:4.829901pt;}
.wsba{word-spacing:4.835182pt;}
.ws8f{word-spacing:4.857696pt;}
.ws7{word-spacing:4.872362pt;}
.wsb3{word-spacing:5.047717pt;}
.ws6c{word-spacing:5.100851pt;}
.wsbb{word-spacing:5.153985pt;}
.ws62{word-spacing:5.207119pt;}
.wsbf{word-spacing:5.260253pt;}
.wsb8{word-spacing:5.366521pt;}
.wse5{word-spacing:5.451571pt;}
.ws7c{word-spacing:5.472788pt;}
.ws69{word-spacing:5.579056pt;}
.ws64{word-spacing:5.632190pt;}
.wsc7{word-spacing:5.791591pt;}
.ws103{word-spacing:5.881958pt;}
.ws32{word-spacing:5.897859pt;}
.ws31{word-spacing:6.216662pt;}
.ws4b{word-spacing:6.269796pt;}
.wsfd{word-spacing:6.312346pt;}
.ws7e{word-spacing:6.376064pt;}
.ws4c{word-spacing:6.588599pt;}
.ws77{word-spacing:6.694867pt;}
.wsbd{word-spacing:6.748001pt;}
.ws99{word-spacing:6.770848pt;}
.wsea{word-spacing:6.886195pt;}
.ws61{word-spacing:7.013670pt;}
.wsa7{word-spacing:7.119938pt;}
.ws5d{word-spacing:7.332474pt;}
.ws30{word-spacing:7.545009pt;}
.ws6e{word-spacing:7.863812pt;}
.ws68{word-spacing:7.916946pt;}
.ws83{word-spacing:10.329312pt;}
.ws6{word-spacing:10.525789pt;}
.ws5{word-spacing:11.827565pt;}
.wsc3{word-spacing:12.114522pt;}
.ws3{word-spacing:13.761632pt;}
.ws51{word-spacing:14.186742pt;}
.ws8{word-spacing:14.282342pt;}
.wsb7{word-spacing:17.002837pt;}
.wsbe{word-spacing:19.446995pt;}
.ws4{word-spacing:26.011518pt;}
.wsd2{word-spacing:66.566554pt;}
.wsd5{word-spacing:102.428800pt;}
.wsd3{word-spacing:126.339200pt;}
._6{margin-left:-7.077478pt;}
._9{margin-left:-5.690675pt;}
._2{margin-left:-4.091296pt;}
._0{margin-left:-2.715133pt;}
._5{margin-left:-1.301776pt;}
._1d{width:1.115072pt;}
._33{width:2.321926pt;}
._34{width:3.294400pt;}
._1{width:11.530016pt;}
._e{width:13.177232pt;}
._20{width:14.080475pt;}
._7{width:15.111373pt;}
._b{width:16.072991pt;}
._8{width:17.119846pt;}
._d{width:18.267301pt;}
._13{width:19.245412pt;}
._12{width:20.350263pt;}
._c{width:21.572342pt;}
._3{width:22.502128pt;}
._14{width:23.671134pt;}
._15{width:25.238575pt;}
._a{width:26.492723pt;}
._4{width:27.783619pt;}
._16{width:29.383028pt;}
._17{width:30.525403pt;}
._1b{width:31.747482pt;}
._1a{width:33.086502pt;}
._22{width:34.430746pt;}
._11{width:35.387148pt;}
._1c{width:36.954596pt;}
._1f{width:38.660297pt;}
._2f{width:66.656794pt;}
._2c{width:78.521754pt;}
._26{width:79.935085pt;}
._19{width:83.154501pt;}
._18{width:85.811195pt;}
._23{width:95.785062pt;}
._2e{width:104.584090pt;}
._30{width:114.387354pt;}
._29{width:131.129846pt;}
._32{width:136.480563pt;}
._2a{width:138.297754pt;}
._28{width:181.368390pt;}
._27{width:276.808050pt;}
._2b{width:472.612989pt;}
._2d{width:504.217626pt;}
._31{width:526.598878pt;}
._24{width:593.408307pt;}
._f{width:783.363589pt;}
._25{width:841.300682pt;}
._1e{width:1871.546208pt;}
._21{width:2233.602667pt;}
._10{width:2254.856000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y14a{bottom:-375.762267pt;}
.y15f{bottom:-305.114643pt;}
.y15e{bottom:-288.075299pt;}
.y15d{bottom:-270.955795pt;}
.y15c{bottom:-253.916451pt;}
.y15b{bottom:-236.796947pt;}
.y15a{bottom:-219.677443pt;}
.y159{bottom:-202.638099pt;}
.y158{bottom:-185.518595pt;}
.y157{bottom:-168.479251pt;}
.y156{bottom:-151.359747pt;}
.y155{bottom:-134.240243pt;}
.y154{bottom:-117.200899pt;}
.y153{bottom:-100.081395pt;}
.y152{bottom:-82.961891pt;}
.y151{bottom:-65.922547pt;}
.y150{bottom:-32.881931pt;}
.y14f{bottom:-11.521963pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y33{bottom:93.018667pt;}
.y171{bottom:96.814667pt;}
.y5f{bottom:97.117333pt;}
.y146{bottom:98.337333pt;}
.yf9{bottom:101.126667pt;}
.y23e{bottom:102.757333pt;}
.y18e{bottom:104.714667pt;}
.y11e{bottom:105.510667pt;}
.y97{bottom:106.308000pt;}
.y32{bottom:108.920000pt;}
.y170{bottom:113.552000pt;}
.y5e{bottom:113.854667pt;}
.y145{bottom:115.074667pt;}
.yf8{bottom:117.864000pt;}
.y23d{bottom:118.100000pt;}
.y1cd{bottom:118.262667pt;}
.y273{bottom:118.861333pt;}
.y18d{bottom:121.450667pt;}
.y19d{bottom:121.849333pt;}
.y11d{bottom:122.248000pt;}
.y96{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y31{bottom:124.820000pt;}
.y5d{bottom:130.592000pt;}
.y144{bottom:131.812000pt;}
.yc4{bottom:132.609333pt;}
.y23c{bottom:133.442667pt;}
.y272{bottom:134.202667pt;}
.y16f{bottom:134.274667pt;}
.y200{bottom:134.584000pt;}
.yf7{bottom:134.601333pt;}
.y1cc{bottom:135.000000pt;}
.y18c{bottom:138.188000pt;}
.y19c{bottom:138.586667pt;}
.y11c{bottom:138.985333pt;}
.y95{bottom:139.782667pt;}
.y30{bottom:140.720000pt;}
.y1ff{bottom:141.889333pt;}
.y5c{bottom:147.329333pt;}
.y143{bottom:148.549333pt;}
.y23b{bottom:148.785333pt;}
.yc3{bottom:149.346667pt;}
.y271{bottom:149.545333pt;}
.yf6{bottom:151.338667pt;}
.y1cb{bottom:151.737333pt;}
.y16e{bottom:152.208000pt;}
.y18b{bottom:154.925333pt;}
.y19b{bottom:155.324000pt;}
.y11b{bottom:155.722667pt;}
.y94{bottom:156.520000pt;}
.y2f{bottom:156.621333pt;}
.y5b{bottom:164.066667pt;}
.y23a{bottom:164.128000pt;}
.y270{bottom:164.888000pt;}
.y142{bottom:165.286667pt;}
.yc2{bottom:166.084000pt;}
.yf5{bottom:168.076000pt;}
.y1ca{bottom:168.474667pt;}
.y1fe{bottom:170.209333pt;}
.y18a{bottom:171.662667pt;}
.y19a{bottom:172.061333pt;}
.y11a{bottom:172.460000pt;}
.y2e{bottom:172.521333pt;}
.y93{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y239{bottom:179.470667pt;}
.y26f{bottom:180.230667pt;}
.y5a{bottom:180.804000pt;}
.y141{bottom:182.024000pt;}
.y16d{bottom:182.096000pt;}
.yc1{bottom:182.821333pt;}
.yf4{bottom:184.813333pt;}
.y1c9{bottom:185.212000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y189{bottom:188.400000pt;}
.y2d{bottom:188.421333pt;}
.y199{bottom:188.798667pt;}
.y119{bottom:189.197333pt;}
.y92{bottom:189.994667pt;}
.y1fc{bottom:191.224000pt;}
.y238{bottom:194.812000pt;}
.y26e{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y59{bottom:197.541333pt;}
.y1fb{bottom:198.529333pt;}
.y140{bottom:198.761333pt;}
.y16c{bottom:198.832000pt;}
.yc0{bottom:199.558667pt;}
.yf3{bottom:201.550667pt;}
.y1c8{bottom:201.949333pt;}
.y2c{bottom:204.322667pt;}
.y198{bottom:205.536000pt;}
.y1fd{bottom:205.834667pt;}
.y118{bottom:205.934667pt;}
.y91{bottom:206.732000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y188{bottom:209.122667pt;}
.y1df{bottom:209.920000pt;}
.y237{bottom:210.154667pt;}
.y26d{bottom:210.916000pt;}
.y58{bottom:214.278667pt;}
.y13f{bottom:215.498667pt;}
.y16b{bottom:215.569333pt;}
.ybf{bottom:216.296000pt;}
.yf2{bottom:218.288000pt;}
.y1c7{bottom:218.686667pt;}
.y197{bottom:222.273333pt;}
.y117{bottom:222.672000pt;}
.y90{bottom:223.469333pt;}
.y236{bottom:225.497333pt;}
.y26c{bottom:226.258667pt;}
.y1fa{bottom:226.849333pt;}
.y57{bottom:231.016000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y13e{bottom:232.236000pt;}
.y16a{bottom:232.306667pt;}
.ybe{bottom:233.033333pt;}
.yf1{bottom:235.025333pt;}
.y1c6{bottom:235.424000pt;}
.y187{bottom:239.010667pt;}
.y116{bottom:239.409333pt;}
.y1de{bottom:239.808000pt;}
.y8f{bottom:240.206667pt;}
.y235{bottom:240.840000pt;}
.y1f9{bottom:241.461333pt;}
.y26b{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y56{bottom:247.753333pt;}
.y1f6{bottom:248.766667pt;}
.y13d{bottom:248.973333pt;}
.y169{bottom:249.044000pt;}
.ybd{bottom:249.770667pt;}
.yf0{bottom:251.762667pt;}
.y1c5{bottom:252.161333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y186{bottom:255.748000pt;}
.y1f5{bottom:256.073333pt;}
.y115{bottom:256.146667pt;}
.y234{bottom:256.182667pt;}
.y1dd{bottom:256.545333pt;}
.y8e{bottom:256.944000pt;}
.y2b{bottom:264.148000pt;}
.y55{bottom:264.490667pt;}
.y13c{bottom:265.710667pt;}
.y168{bottom:265.781333pt;}
.ybc{bottom:266.508000pt;}
.yef{bottom:268.500000pt;}
.y1c4{bottom:268.898667pt;}
.y1f8{bottom:270.685333pt;}
.y233{bottom:271.525333pt;}
.y26a{bottom:272.285333pt;}
.y185{bottom:272.485333pt;}
.y114{bottom:272.884000pt;}
.y1dc{bottom:273.282667pt;}
.y8d{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2a{bottom:280.048000pt;}
.y54{bottom:281.228000pt;}
.y13b{bottom:282.448000pt;}
.y167{bottom:282.518667pt;}
.ybb{bottom:283.245333pt;}
.yee{bottom:285.237333pt;}
.y1f7{bottom:285.297333pt;}
.y1c3{bottom:285.636000pt;}
.y232{bottom:286.868000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y269{bottom:287.628000pt;}
.y184{bottom:289.222667pt;}
.y113{bottom:289.621333pt;}
.y1db{bottom:290.020000pt;}
.y8c{bottom:290.417333pt;}
.y29{bottom:295.948000pt;}
.y53{bottom:297.965333pt;}
.y13a{bottom:299.185333pt;}
.y166{bottom:299.256000pt;}
.yba{bottom:299.982667pt;}
.yed{bottom:301.974667pt;}
.y1c2{bottom:302.373333pt;}
.y268{bottom:302.970667pt;}
.y183{bottom:305.960000pt;}
.y231{bottom:306.194667pt;}
.y1f3{bottom:306.310667pt;}
.y112{bottom:306.358667pt;}
.y1da{bottom:306.757333pt;}
.y8b{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y28{bottom:311.849333pt;}
.y1f2{bottom:313.616000pt;}
.y276{bottom:314.261333pt;}
.y52{bottom:314.702667pt;}
.y139{bottom:315.922667pt;}
.y165{bottom:315.993333pt;}
.yb9{bottom:316.720000pt;}
.y267{bottom:318.313333pt;}
.yec{bottom:318.712000pt;}
.y1c1{bottom:319.110667pt;}
.y1f4{bottom:320.922667pt;}
.y182{bottom:322.697333pt;}
.y111{bottom:323.096000pt;}
.y1d9{bottom:323.494667pt;}
.y8a{bottom:323.892000pt;}
.y196{bottom:326.682667pt;}
.y275{bottom:329.604000pt;}
.y51{bottom:331.440000pt;}
.y138{bottom:332.660000pt;}
.y164{bottom:332.730667pt;}
.yb8{bottom:333.457333pt;}
.y266{bottom:333.656000pt;}
.yeb{bottom:335.449333pt;}
.y27{bottom:335.720000pt;}
.y1c0{bottom:335.848000pt;}
.y181{bottom:339.434667pt;}
.y110{bottom:339.833333pt;}
.y1d8{bottom:340.232000pt;}
.y89{bottom:340.629333pt;}
.y1f0{bottom:341.936000pt;}
.ye{bottom:343.809333pt;}
.y274{bottom:344.946667pt;}
.y230{bottom:346.473333pt;}
.y50{bottom:348.177333pt;}
.y265{bottom:348.998667pt;}
.y1ef{bottom:349.242667pt;}
.y137{bottom:349.397333pt;}
.y163{bottom:349.468000pt;}
.yb7{bottom:350.194667pt;}
.y26{bottom:351.620000pt;}
.yea{bottom:352.186667pt;}
.y1bf{bottom:352.585333pt;}
.y22e{bottom:353.778667pt;}
.y180{bottom:356.172000pt;}
.y1f1{bottom:356.548000pt;}
.y10f{bottom:356.570667pt;}
.y1d7{bottom:356.968000pt;}
.y88{bottom:357.366667pt;}
.y22d{bottom:361.085333pt;}
.yd{bottom:362.706666pt;}
.y264{bottom:364.341333pt;}
.y4f{bottom:364.914667pt;}
.y136{bottom:366.134667pt;}
.y162{bottom:366.205333pt;}
.yb6{bottom:366.932000pt;}
.y25{bottom:367.520000pt;}
.ye9{bottom:368.924000pt;}
.y1be{bottom:369.322667pt;}
.y17f{bottom:372.909333pt;}
.y10e{bottom:373.308000pt;}
.y1d6{bottom:373.705333pt;}
.y87{bottom:374.104000pt;}
.y22f{bottom:375.697333pt;}
.y1ee{bottom:377.562667pt;}
.y263{bottom:379.684000pt;}
.y4e{bottom:381.652000pt;}
.y135{bottom:382.872000pt;}
.y161{bottom:382.942667pt;}
.y24{bottom:383.421333pt;}
.yb5{bottom:383.669333pt;}
.ye8{bottom:385.661333pt;}
.y1bd{bottom:386.060000pt;}
.y17e{bottom:389.646667pt;}
.y10d{bottom:390.045333pt;}
.y1d5{bottom:390.442667pt;}
.y86{bottom:390.841333pt;}
.y1ec{bottom:392.174667pt;}
.y262{bottom:395.025333pt;}
.y22c{bottom:396.710667pt;}
.y23{bottom:399.321333pt;}
.y134{bottom:399.609333pt;}
.y4d{bottom:402.374667pt;}
.ye7{bottom:402.398667pt;}
.y1bc{bottom:402.797333pt;}
.yb4{bottom:404.390667pt;}
.y17d{bottom:406.384000pt;}
.y10c{bottom:406.782667pt;}
.y1ed{bottom:406.786667pt;}
.y1d4{bottom:407.180000pt;}
.y85{bottom:407.578667pt;}
.y261{bottom:410.368000pt;}
.y22b{bottom:411.322667pt;}
.y160{bottom:412.778667pt;}
.y22{bottom:415.221333pt;}
.y133{bottom:416.346667pt;}
.y228{bottom:418.628000pt;}
.ye6{bottom:419.136000pt;}
.y1bb{bottom:419.534667pt;}
.y10b{bottom:423.518667pt;}
.y1d3{bottom:423.917333pt;}
.y84{bottom:424.316000pt;}
.y260{bottom:425.710667pt;}
.y22a{bottom:425.934667pt;}
.y17c{bottom:427.105333pt;}
.y1eb{bottom:427.800000pt;}
.y147{bottom:432.716000pt;}
.y132{bottom:433.084000pt;}
.yb3{bottom:434.278667pt;}
.ye5{bottom:435.873333pt;}
.y1ba{bottom:436.272000pt;}
.y10a{bottom:440.256000pt;}
.y229{bottom:440.546667pt;}
.y1d2{bottom:440.654667pt;}
.y83{bottom:441.053333pt;}
.yc{bottom:446.990669pt;}
.y131{bottom:449.821333pt;}
.yb2{bottom:451.016000pt;}
.ye4{bottom:452.610667pt;}
.y1b9{bottom:453.009333pt;}
.y25f{bottom:456.396000pt;}
.y109{bottom:456.993333pt;}
.y1d1{bottom:457.392000pt;}
.y82{bottom:457.790667pt;}
.y1ea{bottom:458.562667pt;}
.y227{bottom:461.560000pt;}
.yb{bottom:462.990669pt;}
.y130{bottom:466.557333pt;}
.yb1{bottom:467.753333pt;}
.y226{bottom:468.866667pt;}
.y4c{bottom:469.174667pt;}
.ye3{bottom:469.348000pt;}
.y1b8{bottom:469.746667pt;}
.y25e{bottom:471.738667pt;}
.y17b{bottom:473.730667pt;}
.y1d0{bottom:474.129333pt;}
.y81{bottom:474.528000pt;}
.y1e9{bottom:475.658667pt;}
.y108{bottom:477.716000pt;}
.ya{bottom:478.990666pt;}
.y12f{bottom:483.294667pt;}
.yb0{bottom:484.490667pt;}
.ye2{bottom:486.085333pt;}
.y1b7{bottom:486.484000pt;}
.y25d{bottom:487.081333pt;}
.y17a{bottom:490.468000pt;}
.y1cf{bottom:490.866667pt;}
.y80{bottom:491.265333pt;}
.y9{bottom:494.990666pt;}
.y225{bottom:497.186667pt;}
.y12e{bottom:500.032000pt;}
.yaf{bottom:501.228000pt;}
.y4b{bottom:502.409333pt;}
.y25c{bottom:502.424000pt;}
.ye1{bottom:502.822667pt;}
.y1b6{bottom:503.221333pt;}
.y221{bottom:504.492000pt;}
.y179{bottom:507.205333pt;}
.y107{bottom:507.604000pt;}
.y7f{bottom:508.002667pt;}
.y224{bottom:511.797333pt;}
.y1e8{bottom:513.901333pt;}
.y12d{bottom:516.769333pt;}
.y25b{bottom:517.766667pt;}
.y21f{bottom:519.104000pt;}
.ye0{bottom:519.560000pt;}
.y4a{bottom:519.705333pt;}
.y178{bottom:523.942667pt;}
.y106{bottom:524.341333pt;}
.yae{bottom:524.606667pt;}
.y7e{bottom:524.740000pt;}
.y223{bottom:526.409333pt;}
.y25a{bottom:533.108000pt;}
.y12c{bottom:533.506667pt;}
.y220{bottom:533.716000pt;}
.y14e{bottom:534.238045pt;}
.ydf{bottom:536.296000pt;}
.y49{bottom:537.000000pt;}
.y177{bottom:540.680000pt;}
.y222{bottom:541.021333pt;}
.y105{bottom:541.078667pt;}
.y7d{bottom:541.477333pt;}
.y1ce{bottom:545.064000pt;}
.y1e7{bottom:546.578667pt;}
.yad{bottom:547.986667pt;}
.y259{bottom:548.450667pt;}
.y12b{bottom:550.244000pt;}
.y14d{bottom:551.357549pt;}
.yde{bottom:553.033333pt;}
.y1b5{bottom:553.830667pt;}
.y48{bottom:554.294667pt;}
.y176{bottom:557.417333pt;}
.y104{bottom:557.816000pt;}
.y7c{bottom:558.214667pt;}
.y21e{bottom:562.036000pt;}
.y258{bottom:563.793333pt;}
.yac{bottom:564.724000pt;}
.y12a{bottom:566.981333pt;}
.y14c{bottom:568.477053pt;}
.ydd{bottom:569.770667pt;}
.y1e6{bottom:570.169333pt;}
.y1b4{bottom:570.568000pt;}
.y47{bottom:571.590667pt;}
.y8{bottom:573.786667pt;}
.y175{bottom:574.154667pt;}
.y103{bottom:574.553333pt;}
.y7b{bottom:574.952000pt;}
.y21b{bottom:576.648000pt;}
.y257{bottom:579.136000pt;}
.y129{bottom:583.718667pt;}
.y21a{bottom:583.953333pt;}
.y14b{bottom:585.517733pt;}
.y1e5{bottom:585.792000pt;}
.ydc{bottom:586.508000pt;}
.y1b3{bottom:587.305333pt;}
.yab{bottom:588.102667pt;}
.y46{bottom:588.885333pt;}
.y174{bottom:590.892000pt;}
.y21d{bottom:591.260000pt;}
.y102{bottom:591.290667pt;}
.y7a{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y256{bottom:594.478667pt;}
.y128{bottom:600.456000pt;}
.ydb{bottom:603.245333pt;}
.y1b2{bottom:604.042667pt;}
.y21c{bottom:605.872000pt;}
.y45{bottom:606.180000pt;}
.y173{bottom:607.629333pt;}
.y101{bottom:608.028000pt;}
.y79{bottom:608.426667pt;}
.y1e4{bottom:609.382667pt;}
.y255{bottom:609.821333pt;}
.yaa{bottom:611.481333pt;}
.yda{bottom:619.982667pt;}
.y1b1{bottom:620.780000pt;}
.y127{bottom:621.178667pt;}
.y44{bottom:623.476000pt;}
.y195{bottom:624.366667pt;}
.y100{bottom:624.765333pt;}
.y78{bottom:625.164000pt;}
.y219{bottom:626.885333pt;}
.ya9{bottom:628.218667pt;}
.y172{bottom:628.352000pt;}
.y1e3{bottom:632.974667pt;}
.y149{bottom:634.157853pt;}
.yd9{bottom:636.720000pt;}
.y1b0{bottom:637.517333pt;}
.y126{bottom:637.916000pt;}
.y254{bottom:640.506667pt;}
.y43{bottom:640.770667pt;}
.y194{bottom:641.104000pt;}
.y217{bottom:641.497333pt;}
.yff{bottom:641.502667pt;}
.y77{bottom:641.901333pt;}
.y148{bottom:642.717733pt;}
.ya8{bottom:644.956000pt;}
.y6{bottom:645.598667pt;}
.yd8{bottom:653.457333pt;}
.y1af{bottom:654.254667pt;}
.y125{bottom:654.653333pt;}
.y253{bottom:655.848000pt;}
.y218{bottom:656.109333pt;}
.y1e2{bottom:656.566667pt;}
.y193{bottom:657.841333pt;}
.y42{bottom:658.066667pt;}
.yfe{bottom:658.240000pt;}
.y76{bottom:658.638667pt;}
.ya7{bottom:661.693333pt;}
.y3{bottom:668.977329pt;}
.yd7{bottom:670.194667pt;}
.y1ae{bottom:670.992000pt;}
.y252{bottom:671.190667pt;}
.y124{bottom:671.390667pt;}
.y192{bottom:674.578667pt;}
.yfd{bottom:674.977333pt;}
.y41{bottom:675.361333pt;}
.y75{bottom:675.376000pt;}
.y216{bottom:677.122667pt;}
.ya6{bottom:678.430667pt;}
.y251{bottom:686.533333pt;}
.yd6{bottom:686.932000pt;}
.y1ad{bottom:687.729333pt;}
.y123{bottom:688.128000pt;}
.y191{bottom:691.316000pt;}
.yfc{bottom:691.714667pt;}
.y214{bottom:691.734667pt;}
.y74{bottom:692.113333pt;}
.y40{bottom:692.656000pt;}
.ya5{bottom:701.809333pt;}
.y250{bottom:701.876000pt;}
.yd5{bottom:703.669333pt;}
.y1ac{bottom:704.466667pt;}
.y122{bottom:704.865333pt;}
.y215{bottom:706.346667pt;}
.yfb{bottom:708.452000pt;}
.y73{bottom:708.850667pt;}
.y3f{bottom:709.952000pt;}
.y190{bottom:712.038667pt;}
.y24f{bottom:717.218667pt;}
.yd4{bottom:720.406667pt;}
.y1ab{bottom:721.204000pt;}
.y121{bottom:721.602667pt;}
.ya4{bottom:725.189333pt;}
.y72{bottom:725.588000pt;}
.y3e{bottom:727.246667pt;}
.y213{bottom:727.361333pt;}
.y24e{bottom:732.561333pt;}
.yd3{bottom:737.144000pt;}
.y1aa{bottom:737.941333pt;}
.y120{bottom:738.340000pt;}
.ya3{bottom:741.926667pt;}
.y211{bottom:741.972000pt;}
.y71{bottom:742.324000pt;}
.y3d{bottom:744.541333pt;}
.y24d{bottom:747.904000pt;}
.yd2{bottom:753.881333pt;}
.y1a9{bottom:754.678667pt;}
.y11f{bottom:755.077333pt;}
.y212{bottom:756.584000pt;}
.ya2{bottom:758.664000pt;}
.y70{bottom:759.061333pt;}
.y3c{bottom:761.837333pt;}
.y24c{bottom:763.246667pt;}
.yd1{bottom:770.618667pt;}
.y1e1{bottom:771.814667pt;}
.ya1{bottom:775.401333pt;}
.y6f{bottom:775.798667pt;}
.y20f{bottom:777.598667pt;}
.y24b{bottom:778.589333pt;}
.y3b{bottom:779.132000pt;}
.y2{bottom:781.661334pt;}
.y20e{bottom:784.904000pt;}
.yd0{bottom:787.356000pt;}
.y1e0{bottom:788.552000pt;}
.ya0{bottom:792.138667pt;}
.y210{bottom:792.210667pt;}
.y6e{bottom:792.536000pt;}
.y24a{bottom:793.930667pt;}
.y3a{bottom:796.428000pt;}
.ycf{bottom:804.093333pt;}
.y1a8{bottom:805.289333pt;}
.y9f{bottom:808.874667pt;}
.y6d{bottom:809.273333pt;}
.y20d{bottom:813.224000pt;}
.y20b{bottom:820.530667pt;}
.yce{bottom:820.830667pt;}
.y1a7{bottom:822.025333pt;}
.y249{bottom:824.616000pt;}
.y9e{bottom:825.612000pt;}
.y6c{bottom:826.010667pt;}
.y20a{bottom:827.836000pt;}
.y39{bottom:830.725333pt;}
.ycd{bottom:837.568000pt;}
.y1a6{bottom:838.762667pt;}
.y248{bottom:839.958667pt;}
.y9d{bottom:842.349333pt;}
.y20c{bottom:842.448000pt;}
.y6b{bottom:842.748000pt;}
.y38{bottom:845.072000pt;}
.yfa{bottom:846.334667pt;}
.ycc{bottom:854.305333pt;}
.y247{bottom:855.301333pt;}
.y1a5{bottom:855.500000pt;}
.y9c{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6a{bottom:859.485333pt;}
.y209{bottom:863.461333pt;}
.y246{bottom:870.644000pt;}
.ycb{bottom:871.042667pt;}
.y1a4{bottom:872.237333pt;}
.y9b{bottom:875.824000pt;}
.y69{bottom:876.222667pt;}
.y207{bottom:878.073333pt;}
.y245{bottom:885.986667pt;}
.yca{bottom:887.780000pt;}
.y37{bottom:888.641333pt;}
.y1a3{bottom:888.974667pt;}
.y9a{bottom:892.561333pt;}
.y208{bottom:892.685333pt;}
.y68{bottom:892.960000pt;}
.y18f{bottom:896.546667pt;}
.y244{bottom:901.329333pt;}
.yc9{bottom:904.517333pt;}
.y1a2{bottom:905.712000pt;}
.y99{bottom:909.298667pt;}
.y67{bottom:909.697333pt;}
.y206{bottom:913.700000pt;}
.y243{bottom:916.670667pt;}
.y204{bottom:921.005333pt;}
.yc8{bottom:921.254667pt;}
.y36{bottom:921.320000pt;}
.y1a1{bottom:922.449333pt;}
.y66{bottom:926.434667pt;}
.y203{bottom:928.312000pt;}
.y98{bottom:930.021333pt;}
.y242{bottom:932.013333pt;}
.yc7{bottom:937.992000pt;}
.y1a0{bottom:939.186667pt;}
.y205{bottom:942.924000pt;}
.y65{bottom:943.172000pt;}
.y35{bottom:946.425333pt;}
.y241{bottom:947.356000pt;}
.yc6{bottom:954.729333pt;}
.y19f{bottom:955.924000pt;}
.y64{bottom:959.909333pt;}
.y240{bottom:962.698667pt;}
.y202{bottom:963.937333pt;}
.y34{bottom:971.530667pt;}
.y19e{bottom:972.661333pt;}
.yc5{bottom:975.450667pt;}
.y63{bottom:976.646667pt;}
.y23f{bottom:978.041333pt;}
.y62{bottom:993.384000pt;}
.y201{bottom:994.700000pt;}
.y61{bottom:1046.810667pt;}
.h12{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.he{height:30.945242pt;}
.h15{height:31.067969pt;}
.h11{height:31.157778pt;}
.h14{height:31.338125pt;}
.h18{height:34.430976pt;}
.hf{height:34.813542pt;}
.h1b{height:35.052646pt;}
.hd{height:38.256384pt;}
.h10{height:38.681455pt;}
.hb{height:38.947124pt;}
.h16{height:39.010156pt;}
.h17{height:39.349375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h19{height:64.034876pt;}
.h1a{height:64.040209pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h13{height:506.180000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:369.336000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc{left:-183.796000pt;}
.xd{left:-9.956000pt;}
.x0{left:0.000000pt;}
.xe{left:18.365242pt;}
.x6{left:46.689333pt;}
.x5{left:47.621333pt;}
.x10{left:55.592000pt;}
.x15{left:74.862667pt;}
.x14{left:75.842667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:99.132000pt;}
.x4{left:180.874667pt;}
.x7{left:221.858667pt;}
.x8{left:250.204000pt;}
.xa{left:252.090667pt;}
.x12{left:286.672000pt;}
.xf{left:380.684026pt;}
.x3{left:404.408000pt;}
.x13{left:522.212000pt;}
.x9{left:607.806667pt;}
.xb{left:618.784000pt;}
}




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