
    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_3bf28d55c7c0a9391d2ca394.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_92f1dc58e2dbbe12d200898a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_79e18959f6060ff07afcca00.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_47689ff136bf54f1297adb3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_388132fbd463bf9145a769c8.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_1aed4d8f7ab72fa568ac3310.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_61190a5f2e0d1283982cae70.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab0fec7af38fcf830203d145.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_41aa9502100eb25be6444f84.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_a4c141872c921588c55df690.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200684;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_a04588c7d5b1d5a0dbb2c6d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_fb32a1b948a8f336273f3c5c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_38009a746fad4941debad541.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.967285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ff0f33bff0a3a4c336624405.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_03268b9761fd961496d2d618.woff2')format("woff");}.fff{font-family:fff;line-height:0.234000;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;}
.m1{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);}
.m1f{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);}
.m25{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);}
.m6{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);}
.m24{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);}
.m1d{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);}
.m5{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);}
.m1a{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);}
.ma{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);}
.m12{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);}
.mf{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);}
.m1c{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);}
.m14{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);}
.m8{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);}
.m21{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);}
.m1e{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);}
.me{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);}
.m3{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);}
.m20{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);}
.m19{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m22{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);}
.m7{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);}
.m1b{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);}
.mb{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);}
.m17{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);}
.m27{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m9{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);}
.m2{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);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m18{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);}
.m11{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);}
.m4{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:23.910000px;}
.v6{vertical-align:31.980000px;}
.v4{vertical-align:47.820000px;}
.v5{vertical-align:71.736000px;}
.ls31{letter-spacing:-0.168336px;}
.ls29{letter-spacing:-0.138276px;}
.ls2c{letter-spacing:-0.132264px;}
.ls2f{letter-spacing:-0.102204px;}
.ls26{letter-spacing:-0.090972px;}
.ls2e{letter-spacing:-0.072144px;}
.ls2d{letter-spacing:-0.060120px;}
.ls2a{letter-spacing:-0.024048px;}
.ls30{letter-spacing:-0.018036px;}
.ls27{letter-spacing:-0.014364px;}
.ls2b{letter-spacing:-0.012024px;}
.ls28{letter-spacing:-0.006012px;}
.lse{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000583px;}
.ls0{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.001155px;}
.lsb{letter-spacing:0.001573px;}
.ls47{letter-spacing:0.001584px;}
.lsa{letter-spacing:0.001933px;}
.ls36{letter-spacing:0.003403px;}
.ls45{letter-spacing:0.004028px;}
.ls2{letter-spacing:0.004200px;}
.ls1c{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.012024px;}
.ls1e{letter-spacing:0.024048px;}
.ls1d{letter-spacing:0.030060px;}
.ls13{letter-spacing:0.036072px;}
.ls20{letter-spacing:0.042084px;}
.ls1a{letter-spacing:0.048096px;}
.ls16{letter-spacing:0.048600px;}
.ls1f{letter-spacing:0.054108px;}
.ls12{letter-spacing:0.060120px;}
.ls18{letter-spacing:0.066132px;}
.ls1b{letter-spacing:0.072144px;}
.ls15{letter-spacing:0.081000px;}
.ls14{letter-spacing:0.084168px;}
.ls10{letter-spacing:0.086184px;}
.ls21{letter-spacing:0.090180px;}
.ls17{letter-spacing:0.118800px;}
.ls22{letter-spacing:0.126252px;}
.ls11{letter-spacing:0.167580px;}
.ls25{letter-spacing:0.181944px;}
.ls3f{letter-spacing:0.717483px;}
.ls37{letter-spacing:1.044000px;}
.ls39{letter-spacing:1.194000px;}
.ls5{letter-spacing:2.989200px;}
.ls38{letter-spacing:10.460700px;}
.ls3a{letter-spacing:11.839948px;}
.lsd{letter-spacing:11.954850px;}
.ls4d{letter-spacing:12.534073px;}
.ls4a{letter-spacing:13.259886px;}
.ls4b{letter-spacing:13.430160px;}
.ls49{letter-spacing:13.448400px;}
.ls48{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.475174px;}
.ls4e{letter-spacing:13.592739px;}
.ls50{letter-spacing:13.601863px;}
.ls41{letter-spacing:14.675192px;}
.ls40{letter-spacing:14.684053px;}
.ls42{letter-spacing:14.943900px;}
.ls8{letter-spacing:14.944200px;}
.ls6{letter-spacing:14.944766px;}
.ls3{letter-spacing:14.945108px;}
.ls35{letter-spacing:15.088006px;}
.ls33{letter-spacing:15.091052px;}
.ls34{letter-spacing:15.094055px;}
.ls4c{letter-spacing:15.403341px;}
.ls23{letter-spacing:15.663483px;}
.ls54{letter-spacing:15.709224px;}
.ls51{letter-spacing:16.944518px;}
.ls32{letter-spacing:17.659259px;}
.lsf{letter-spacing:17.935200px;}
.ls3e{letter-spacing:19.106318px;}
.ls3c{letter-spacing:20.106318px;}
.ls3b{letter-spacing:20.112200px;}
.ls3d{letter-spacing:20.220806px;}
.ls24{letter-spacing:20.323704px;}
.ls52{letter-spacing:29.068047px;}
.ls4{letter-spacing:57.415200px;}
.ls9{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls7{letter-spacing:72.361200px;}
.ls44{letter-spacing:163.420800px;}
.ls43{letter-spacing:176.866800px;}
.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;}
}
.ws68{word-spacing:-60.120000px;}
.ws67{word-spacing:-54.000000px;}
.wsb2{word-spacing:-20.921400px;}
.ws14{word-spacing:-14.943900px;}
.wsef{word-spacing:-13.449600px;}
.ws65{word-spacing:-12.151944px;}
.ws66{word-spacing:-11.970000px;}
.ws17{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws7e{word-spacing:-3.559104px;}
.ws7d{word-spacing:-3.523032px;}
.wsde{word-spacing:-2.988780px;}
.ws46{word-spacing:-2.929004px;}
.ws80{word-spacing:-2.861712px;}
.wseb{word-spacing:-2.797517px;}
.ws81{word-spacing:-2.795580px;}
.wsec{word-spacing:-2.743718px;}
.wsed{word-spacing:-2.582323px;}
.wsd3{word-spacing:-2.510575px;}
.wsd4{word-spacing:-2.450800px;}
.wsd7{word-spacing:-2.331248px;}
.ws35{word-spacing:-2.271473px;}
.ws5a{word-spacing:-2.211697px;}
.ws4b{word-spacing:-2.092146px;}
.ws63{word-spacing:-1.853044px;}
.wse8{word-spacing:-1.775347px;}
.wse9{word-spacing:-1.560154px;}
.ws77{word-spacing:-1.436868px;}
.ws5f{word-spacing:-1.434614px;}
.ws62{word-spacing:-1.374839px;}
.wsf4{word-spacing:-1.344960px;}
.wse4{word-spacing:-1.291162px;}
.wsea{word-spacing:-1.237363px;}
.ws78{word-spacing:-1.214424px;}
.ws4{word-spacing:-1.171598px;}
.ws2e{word-spacing:-1.135736px;}
.ws20{word-spacing:-1.129766px;}
.ws2d{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.wse3{word-spacing:-1.022170px;}
.ws117{word-spacing:-0.968371px;}
.wsfe{word-spacing:-0.914573px;}
.ws39{word-spacing:-0.836858px;}
.ws45{word-spacing:-0.777083px;}
.ws8c{word-spacing:-0.691380px;}
.ws7f{word-spacing:-0.679356px;}
.ws98{word-spacing:-0.673344px;}
.ws108{word-spacing:-0.591782px;}
.wsdc{word-spacing:-0.537980px;}
.ws29{word-spacing:-0.358654px;}
.ws8a{word-spacing:-0.354708px;}
.ws7c{word-spacing:-0.336672px;}
.wse1{word-spacing:-0.322790px;}
.ws8d{word-spacing:-0.306612px;}
.ws83{word-spacing:-0.300600px;}
.ws4f{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.ws7a{word-spacing:-0.259200px;}
.wsa3{word-spacing:-0.246492px;}
.ws33{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.161395px;}
.wsc9{word-spacing:-0.143462px;}
.ws27{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.wsca{word-spacing:-0.095641px;}
.ws70{word-spacing:-0.076608px;}
.wsf{word-spacing:-0.059776px;}
.wse2{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.ws10{word-spacing:-0.002050px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.000350px;}
.wse{word-spacing:0.000575px;}
.ws16{word-spacing:0.001225px;}
.ws13{word-spacing:0.001842px;}
.ws12{word-spacing:0.003608px;}
.ws89{word-spacing:0.018036px;}
.ws91{word-spacing:0.024048px;}
.ws76{word-spacing:0.030060px;}
.ws92{word-spacing:0.048096px;}
.ws22{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.ws9b{word-spacing:0.078156px;}
.wsa2{word-spacing:0.084168px;}
.ws1e{word-spacing:0.107597px;}
.ws41{word-spacing:0.119551px;}
.ws7b{word-spacing:0.129600px;}
.ws21{word-spacing:0.161395px;}
.ws79{word-spacing:0.178200px;}
.ws30{word-spacing:0.179327px;}
.ws1f{word-spacing:0.215194px;}
.ws88{word-spacing:0.222444px;}
.ws26{word-spacing:0.239102px;}
.wsa1{word-spacing:0.258516px;}
.ws69{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.ws2b{word-spacing:0.358654px;}
.wsd8{word-spacing:0.478205px;}
.wsad{word-spacing:0.527095px;}
.ws38{word-spacing:0.537980px;}
.ws50{word-spacing:0.597756px;}
.ws56{word-spacing:0.777083px;}
.ws1d{word-spacing:0.806976px;}
.ws106{word-spacing:0.860774px;}
.ws5{word-spacing:0.962384px;}
.wsf0{word-spacing:1.022170px;}
.wsdd{word-spacing:1.075961px;}
.ws82{word-spacing:1.106208px;}
.ws105{word-spacing:1.129766px;}
.ws64{word-spacing:1.195512px;}
.ws10a{word-spacing:1.344960px;}
.ws44{word-spacing:1.494390px;}
.wsf9{word-spacing:1.506355px;}
.ws100{word-spacing:1.560154px;}
.ws5c{word-spacing:1.613941px;}
.wsdb{word-spacing:1.733492px;}
.ws114{word-spacing:1.775347px;}
.ws36{word-spacing:1.793268px;}
.ws6b{word-spacing:1.912819px;}
.wsfb{word-spacing:1.936742px;}
.ws51{word-spacing:1.972595px;}
.wsff{word-spacing:1.990541px;}
.ws4a{word-spacing:2.032370px;}
.ws6d{word-spacing:2.092146px;}
.ws6c{word-spacing:2.151922px;}
.ws86{word-spacing:2.200392px;}
.ws74{word-spacing:2.212416px;}
.ws87{word-spacing:2.224440px;}
.ws75{word-spacing:2.254500px;}
.wsd9{word-spacing:2.271473px;}
.ws37{word-spacing:2.450800px;}
.ws43{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws8e{word-spacing:2.537064px;}
.ws8b{word-spacing:2.555100px;}
.ws47{word-spacing:2.570351px;}
.ws97{word-spacing:2.573136px;}
.ws32{word-spacing:2.689902px;}
.ws10b{word-spacing:2.689920px;}
.ws10c{word-spacing:2.743718px;}
.ws5e{word-spacing:2.749678px;}
.ws59{word-spacing:2.809453px;}
.wsd6{word-spacing:2.869229px;}
.ws19{word-spacing:2.869236px;}
.ws101{word-spacing:2.905114px;}
.ws3a{word-spacing:2.988780px;}
.ws4c{word-spacing:3.108331px;}
.wsda{word-spacing:3.168107px;}
.ws11a{word-spacing:3.213782px;}
.ws24{word-spacing:3.219667px;}
.ws10e{word-spacing:3.220051px;}
.wse5{word-spacing:3.224822px;}
.wsf5{word-spacing:3.227136px;}
.ws4e{word-spacing:3.227882px;}
.ws104{word-spacing:3.227904px;}
.wsd5{word-spacing:3.287658px;}
.ws34{word-spacing:3.347434px;}
.ws2c{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws9c{word-spacing:3.619224px;}
.ws48{word-spacing:3.646312px;}
.ws60{word-spacing:3.706087px;}
.ws42{word-spacing:3.885414px;}
.ws72{word-spacing:4.052088px;}
.ws9a{word-spacing:4.070124px;}
.wscc{word-spacing:4.184292px;}
.wse7{word-spacing:4.196275px;}
.ws3f{word-spacing:4.244068px;}
.ws4d{word-spacing:4.303843px;}
.ws73{word-spacing:4.352688px;}
.ws9d{word-spacing:4.418820px;}
.ws85{word-spacing:4.424832px;}
.ws84{word-spacing:4.436856px;}
.ws99{word-spacing:4.472928px;}
.wse6{word-spacing:4.519066px;}
.ws6a{word-spacing:4.542946px;}
.ws90{word-spacing:4.761504px;}
.wsc{word-spacing:4.770079px;}
.ws3e{word-spacing:4.782048px;}
.ws8f{word-spacing:4.827636px;}
.wsd{word-spacing:4.853765px;}
.ws40{word-spacing:5.140702px;}
.ws6f{word-spacing:5.379804px;}
.ws3c{word-spacing:5.499355px;}
.ws61{word-spacing:5.738458px;}
.ws52{word-spacing:5.798233px;}
.ws55{word-spacing:5.917784px;}
.wsdf{word-spacing:6.097111px;}
.ws6e{word-spacing:6.395989px;}
.wsa0{word-spacing:6.444864px;}
.wse0{word-spacing:6.455765px;}
.ws93{word-spacing:6.504984px;}
.wscb{word-spacing:6.528865px;}
.wsfc{word-spacing:6.563405px;}
.ws53{word-spacing:6.575316px;}
.ws94{word-spacing:6.595164px;}
.ws3b{word-spacing:6.754643px;}
.ws9f{word-spacing:6.871716px;}
.ws54{word-spacing:7.113296px;}
.ws95{word-spacing:7.364700px;}
.ws96{word-spacing:7.394760px;}
.ws5d{word-spacing:7.412174px;}
.ws58{word-spacing:7.591501px;}
.ws49{word-spacing:7.651277px;}
.wsa{word-spacing:7.782761px;}
.ws2{word-spacing:10.420488px;}
.ws71{word-spacing:11.620476px;}
.ws31{word-spacing:11.909076px;}
.ws9e{word-spacing:11.987928px;}
.ws8{word-spacing:12.176255px;}
.ws110{word-spacing:12.427430px;}
.wsf6{word-spacing:13.386394px;}
.ws102{word-spacing:13.389446px;}
.ws116{word-spacing:13.389600px;}
.wsf1{word-spacing:13.392230px;}
.ws107{word-spacing:13.392394px;}
.wsf2{word-spacing:13.395802px;}
.ws113{word-spacing:13.449600px;}
.ws103{word-spacing:13.557197px;}
.ws119{word-spacing:13.664794px;}
.ws10f{word-spacing:13.718592px;}
.ws5b{word-spacing:14.884124px;}
.wsfa{word-spacing:14.902157px;}
.ws115{word-spacing:15.171149px;}
.ws112{word-spacing:15.601536px;}
.ws9{word-spacing:16.109478px;}
.wsf3{word-spacing:16.408512px;}
.wsfd{word-spacing:16.516109px;}
.wsf7{word-spacing:16.616602px;}
.ws118{word-spacing:16.622986px;}
.wsee{word-spacing:16.623706px;}
.wsf8{word-spacing:16.677504px;}
.ws109{word-spacing:16.838899px;}
.ws57{word-spacing:18.470660px;}
.ws3d{word-spacing:20.622582px;}
.ws10d{word-spacing:25.339046px;}
.ws111{word-spacing:25.823232px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.wsa4{word-spacing:62.776097px;}
.wsa5{word-spacing:63.973943px;}
.wsce{word-spacing:69.023347px;}
.wsd1{word-spacing:70.475904px;}
.wsa6{word-spacing:82.636097px;}
.wsc6{word-spacing:88.424263px;}
.wsbe{word-spacing:96.560263px;}
.wsc1{word-spacing:96.566263px;}
.wscf{word-spacing:97.375104px;}
.wsc5{word-spacing:99.839095px;}
.wsb0{word-spacing:99.845095px;}
.wsb9{word-spacing:102.059695px;}
.wsb8{word-spacing:102.065695px;}
.wsc7{word-spacing:107.944565px;}
.wsc0{word-spacing:110.024263px;}
.wsbd{word-spacing:112.517095px;}
.wsa9{word-spacing:112.523095px;}
.wsb7{word-spacing:112.859695px;}
.wsbf{word-spacing:113.045095px;}
.wsbb{word-spacing:113.561095px;}
.wsaf{word-spacing:117.381000px;}
.wsb1{word-spacing:118.166263px;}
.wsba{word-spacing:121.751095px;}
.wsa8{word-spacing:122.981095px;}
.wsbc{word-spacing:123.323095px;}
.wsac{word-spacing:123.503095px;}
.wsc2{word-spacing:123.845095px;}
.wsb5{word-spacing:124.025095px;}
.wsd2{word-spacing:129.794400px;}
.wsa7{word-spacing:133.781095px;}
.wsb4{word-spacing:134.831095px;}
.wsc8{word-spacing:138.981000px;}
.wsd0{word-spacing:143.240400px;}
.wsab{word-spacing:153.525562px;}
.wsb3{word-spacing:154.047562px;}
.wsae{word-spacing:177.288240px;}
.wsc4{word-spacing:224.347510px;}
.wscd{word-spacing:303.907162px;}
.wsc3{word-spacing:367.617000px;}
.wsaa{word-spacing:378.075000px;}
.wsb6{word-spacing:379.125000px;}
._8{margin-left:-11.943245px;}
._29{margin-left:-10.460700px;}
._17{margin-left:-7.179067px;}
._0{margin-left:-6.150892px;}
._c{margin-left:-5.126614px;}
._1{margin-left:-3.849538px;}
._1d{margin-left:-2.671956px;}
._2{margin-left:-1.506341px;}
._1b{width:1.187424px;}
._5{width:2.301354px;}
._a{width:3.667129px;}
._35{width:9.688580px;}
._6{width:11.582422px;}
._3{width:12.971268px;}
._f{width:14.541290px;}
._b{width:15.693353px;}
._d{width:16.731302px;}
._19{width:17.872904px;}
._e{width:18.883238px;}
._10{width:20.333344px;}
._14{width:21.937645px;}
._16{width:23.623313px;}
._4{width:25.942536px;}
._34{width:28.226034px;}
._7{width:30.587087px;}
._15{width:31.860395px;}
._9{width:33.355008px;}
._13{width:35.566482px;}
._1a{width:37.192374px;}
._1e{width:38.899828px;}
._3a{width:40.832986px;}
._18{width:41.842920px;}
._3b{width:54.513955px;}
._3c{width:61.868160px;}
._37{width:71.713267px;}
._21{width:80.971889px;}
._1f{width:82.304788px;}
._36{width:83.871706px;}
._20{width:87.786194px;}
._33{width:97.590298px;}
._38{width:104.315098px;}
._39{width:112.492454px;}
._2a{width:113.812627px;}
._2d{width:120.733816px;}
._2f{width:123.337771px;}
._2c{width:124.526141px;}
._26{width:126.197885px;}
._22{width:136.843898px;}
._27{width:139.671266px;}
._28{width:145.822158px;}
._23{width:147.788770px;}
._24{width:160.861433px;}
._2e{width:163.564876px;}
._25{width:168.520219px;}
._2b{width:189.591179px;}
._32{width:214.817011px;}
._30{width:216.444490px;}
._31{width:330.806362px;}
._11{width:881.463734px;}
._1c{width:2148.543180px;}
._12{width:2584.104229px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(62,123,157);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fsd{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:148.440000px;}
.yac{bottom:-734.602050px;}
.yd1{bottom:-657.917604px;}
.yd0{bottom:-638.658162px;}
.ycf{bottom:-619.488900px;}
.yce{bottom:-600.229458px;}
.ycd{bottom:-581.060196px;}
.ycc{bottom:-561.800754px;}
.ycb{bottom:-542.541312px;}
.yca{bottom:-523.362555px;}
.yc9{bottom:-504.103113px;}
.yc8{bottom:-484.843671px;}
.yc7{bottom:-465.674409px;}
.yc6{bottom:-446.414967px;}
.yc5{bottom:-427.245705px;}
.yc4{bottom:-407.986263px;}
.yc3{bottom:-388.726821px;}
.yc2{bottom:-369.557559px;}
.yc1{bottom:-350.298117px;}
.yc0{bottom:-331.128855px;}
.ybf{bottom:-311.869413px;}
.ybe{bottom:-292.609971px;}
.ybd{bottom:-268.939224px;}
.ybc{bottom:-231.679854px;}
.ybb{bottom:-212.509089px;}
.yba{bottom:-193.249647px;}
.yb9{bottom:-173.990205px;}
.yb8{bottom:-154.820943px;}
.yb7{bottom:-135.561501px;}
.yb6{bottom:-116.302059px;}
.yb5{bottom:-97.132797px;}
.yb4{bottom:-73.462050px;}
.yb3{bottom:-36.562500px;}
.yb2{bottom:-19.192050px;}
.y0{bottom:0.000000px;}
.yb1{bottom:3.218364px;}
.y20{bottom:14.712816px;}
.y4e{bottom:31.890000px;}
.yf4{bottom:91.665000px;}
.y12c{bottom:103.354500px;}
.y1e{bottom:104.646000px;}
.y160{bottom:105.204000px;}
.y4d{bottom:107.482500px;}
.y85{bottom:107.641500px;}
.yf3{bottom:110.494500px;}
.y177{bottom:114.546000px;}
.y12b{bottom:119.793000px;}
.y1d{bottom:122.535000px;}
.y15f{bottom:124.033500px;}
.ya8{bottom:124.228500px;}
.y4c{bottom:126.312000px;}
.y84{bottom:126.471000px;}
.yf2{bottom:129.324000px;}
.y1ae{bottom:130.789500px;}
.y12a{bottom:136.231500px;}
.y1c{bottom:140.422500px;}
.y176{bottom:141.087000px;}
.y15e{bottom:142.863000px;}
.ya7{bottom:143.058000px;}
.y4b{bottom:145.141500px;}
.y83{bottom:145.300500px;}
.y1ad{bottom:148.050000px;}
.yf1{bottom:152.637000px;}
.y129{bottom:152.668500px;}
.y1b{bottom:158.310000px;}
.y175{bottom:158.661000px;}
.y15d{bottom:161.692500px;}
.ya6{bottom:161.887500px;}
.y4a{bottom:163.971000px;}
.y82{bottom:164.130000px;}
.y1ac{bottom:165.310500px;}
.y128{bottom:169.107000px;}
.y1a{bottom:176.199000px;}
.y174{bottom:176.235000px;}
.y15c{bottom:180.522000px;}
.ya5{bottom:180.717000px;}
.y1ab{bottom:182.571000px;}
.y49{bottom:182.800500px;}
.y81{bottom:182.959500px;}
.yf0{bottom:186.261000px;}
.y127{bottom:192.748500px;}
.y173{bottom:193.809000px;}
.y19{bottom:194.086500px;}
.y15b{bottom:199.351500px;}
.ya4{bottom:199.546500px;}
.y1aa{bottom:199.831500px;}
.y126{bottom:201.193500px;}
.y48{bottom:201.630000px;}
.y80{bottom:201.789000px;}
.yef{bottom:205.090500px;}
.y18{bottom:211.974000px;}
.y1a9{bottom:217.092000px;}
.y15a{bottom:218.181000px;}
.ya3{bottom:218.376000px;}
.y172{bottom:220.348500px;}
.y47{bottom:220.459500px;}
.y7f{bottom:220.618500px;}
.yee{bottom:223.920000px;}
.y17{bottom:229.863000px;}
.y125{bottom:232.827000px;}
.y1a8{bottom:234.351000px;}
.y159{bottom:237.010500px;}
.ya2{bottom:237.205500px;}
.y171{bottom:237.924000px;}
.y46{bottom:239.289000px;}
.y7e{bottom:239.446500px;}
.yed{bottom:242.749500px;}
.y1a7{bottom:251.611500px;}
.y158{bottom:255.840000px;}
.ya1{bottom:256.035000px;}
.y124{bottom:256.468500px;}
.y45{bottom:258.117000px;}
.y7d{bottom:258.276000px;}
.yec{bottom:261.579000px;}
.y170{bottom:264.463500px;}
.y1a6{bottom:268.872000px;}
.y123{bottom:272.907000px;}
.y157{bottom:274.669500px;}
.ya0{bottom:274.864500px;}
.y44{bottom:276.946500px;}
.y7c{bottom:277.105500px;}
.yeb{bottom:280.408500px;}
.y16f{bottom:282.037500px;}
.y1a5{bottom:286.132500px;}
.yb0{bottom:287.078733px;}
.y122{bottom:289.345500px;}
.y156{bottom:293.499000px;}
.y9f{bottom:293.694000px;}
.y43{bottom:295.776000px;}
.y7b{bottom:295.935000px;}
.yea{bottom:299.238000px;}
.y16{bottom:300.154500px;}
.y1a4{bottom:303.393000px;}
.y121{bottom:305.782500px;}
.yaf{bottom:306.338175px;}
.y16e{bottom:308.578500px;}
.y155{bottom:312.328500px;}
.y9e{bottom:312.523500px;}
.y7a{bottom:314.764500px;}
.y15{bottom:318.043500px;}
.ye9{bottom:318.067500px;}
.y42{bottom:319.089000px;}
.y1a3{bottom:320.653500px;}
.y120{bottom:322.221000px;}
.yae{bottom:325.597617px;}
.y16d{bottom:326.152500px;}
.y154{bottom:331.158000px;}
.y9d{bottom:331.353000px;}
.y79{bottom:333.594000px;}
.y14{bottom:335.931000px;}
.ye8{bottom:336.897000px;}
.y1a2{bottom:337.914000px;}
.yad{bottom:344.768382px;}
.y11f{bottom:345.862500px;}
.y153{bottom:349.987500px;}
.y9c{bottom:350.182500px;}
.y78{bottom:352.423500px;}
.y16c{bottom:352.693500px;}
.y13{bottom:353.818500px;}
.y11e{bottom:354.306000px;}
.y1a1{bottom:355.174500px;}
.ye7{bottom:355.726500px;}
.y152{bottom:368.817000px;}
.y9b{bottom:369.012000px;}
.y77{bottom:371.253000px;}
.y1a0{bottom:372.435000px;}
.ye6{bottom:374.556000px;}
.y16b{bottom:379.233000px;}
.y12{bottom:380.673000px;}
.y11d{bottom:385.941000px;}
.y151{bottom:387.646500px;}
.y9a{bottom:387.841500px;}
.y19f{bottom:389.694000px;}
.y76{bottom:390.082500px;}
.ye5{bottom:393.385500px;}
.y41{bottom:394.239000px;}
.y16a{bottom:396.808500px;}
.y11{bottom:398.562000px;}
.yab{bottom:399.488085px;}
.y150{bottom:406.476000px;}
.y99{bottom:406.671000px;}
.y19e{bottom:406.954500px;}
.y75{bottom:408.912000px;}
.yaa{bottom:409.117950px;}
.ye4{bottom:412.215000px;}
.y169{bottom:414.382500px;}
.y10{bottom:416.449500px;}
.y11c{bottom:420.549000px;}
.y19d{bottom:424.215000px;}
.y14f{bottom:425.305500px;}
.y98{bottom:425.500500px;}
.y74{bottom:427.741500px;}
.ye3{bottom:431.044500px;}
.y40{bottom:431.629500px;}
.y168{bottom:431.956500px;}
.y19c{bottom:441.475500px;}
.y14e{bottom:444.135000px;}
.yf{bottom:444.798000px;}
.y73{bottom:446.571000px;}
.y97{bottom:448.813500px;}
.y167{bottom:449.530500px;}
.ye2{bottom:449.874000px;}
.y3f{bottom:451.086000px;}
.y11b{bottom:455.169000px;}
.y19b{bottom:458.736000px;}
.y14d{bottom:462.964500px;}
.y72{bottom:465.400500px;}
.y166{bottom:467.104500px;}
.ye1{bottom:468.702000px;}
.y3e{bottom:470.544000px;}
.ye{bottom:471.652500px;}
.y11a{bottom:473.998500px;}
.y19a{bottom:475.996500px;}
.y14c{bottom:481.794000px;}
.y96{bottom:482.437500px;}
.y71{bottom:484.230000px;}
.ye0{bottom:487.531500px;}
.yd{bottom:489.540000px;}
.y3d{bottom:490.000500px;}
.y119{bottom:492.828000px;}
.y199{bottom:493.257000px;}
.y14b{bottom:500.623500px;}
.y95{bottom:501.267000px;}
.y165{bottom:502.611000px;}
.y70{bottom:503.059500px;}
.ydf{bottom:506.361000px;}
.yc{bottom:507.429000px;}
.y3c{bottom:509.457000px;}
.y198{bottom:510.517500px;}
.y118{bottom:511.657500px;}
.y14a{bottom:519.453000px;}
.y94{bottom:520.095000px;}
.y164{bottom:521.440500px;}
.y6f{bottom:521.889000px;}
.yde{bottom:525.190500px;}
.yb{bottom:525.316500px;}
.y197{bottom:527.776500px;}
.y3b{bottom:528.915000px;}
.y117{bottom:530.487000px;}
.y149{bottom:538.282500px;}
.y93{bottom:538.924500px;}
.y163{bottom:540.270000px;}
.y6e{bottom:540.718500px;}
.ya{bottom:543.204000px;}
.ydd{bottom:544.020000px;}
.y196{bottom:545.037000px;}
.y3a{bottom:548.371500px;}
.y1cd{bottom:553.272000px;}
.y148{bottom:557.112000px;}
.y92{bottom:557.754000px;}
.y162{bottom:559.099500px;}
.y6d{bottom:559.548000px;}
.y9{bottom:561.093000px;}
.y195{bottom:562.297500px;}
.y116{bottom:563.652000px;}
.ydc{bottom:567.333000px;}
.y39{bottom:567.828000px;}
.y1cc{bottom:570.531000px;}
.y147{bottom:575.941500px;}
.y91{bottom:576.583500px;}
.y115{bottom:577.849500px;}
.y6c{bottom:578.377500px;}
.y8{bottom:578.980500px;}
.y194{bottom:579.558000px;}
.y161{bottom:582.412500px;}
.y38{bottom:587.286000px;}
.y1cb{bottom:587.791500px;}
.y146{bottom:594.771000px;}
.y90{bottom:595.413000px;}
.y193{bottom:596.818500px;}
.y7{bottom:596.868000px;}
.y6b{bottom:597.207000px;}
.y114{bottom:598.338000px;}
.ydb{bottom:600.957000px;}
.y113{bottom:604.315500px;}
.y1ca{bottom:605.052000px;}
.y37{bottom:606.742500px;}
.y145{bottom:613.599000px;}
.y192{bottom:614.079000px;}
.y8f{bottom:614.242500px;}
.y6{bottom:614.757000px;}
.y6a{bottom:616.036500px;}
.yda{bottom:619.786500px;}
.y112{bottom:622.248000px;}
.y1c9{bottom:622.312500px;}
.y36{bottom:626.200500px;}
.y111{bottom:628.225500px;}
.y191{bottom:631.339500px;}
.y144{bottom:632.428500px;}
.y5{bottom:632.644500px;}
.y8d{bottom:633.072000px;}
.y69{bottom:634.866000px;}
.y8e{bottom:638.497500px;}
.yd9{bottom:638.616000px;}
.y1c8{bottom:639.573000px;}
.y35{bottom:645.657000px;}
.y110{bottom:646.158000px;}
.y190{bottom:648.600000px;}
.y4{bottom:650.532000px;}
.y143{bottom:651.258000px;}
.y8c{bottom:651.901500px;}
.y10f{bottom:652.135500px;}
.y68{bottom:653.695500px;}
.y1c7{bottom:656.833500px;}
.yd8{bottom:657.445500px;}
.y34{bottom:665.113500px;}
.y18f{bottom:665.860500px;}
.y3{bottom:668.421000px;}
.y10e{bottom:670.068000px;}
.y142{bottom:670.087500px;}
.y8b{bottom:670.731000px;}
.y67{bottom:672.525000px;}
.y1c6{bottom:674.094000px;}
.y10d{bottom:676.045500px;}
.yd7{bottom:676.275000px;}
.y10c{bottom:682.023000px;}
.y18e{bottom:683.119500px;}
.y2{bottom:686.308500px;}
.y141{bottom:688.917000px;}
.y8a{bottom:689.560500px;}
.y66{bottom:691.354500px;}
.yd6{bottom:695.104500px;}
.y18d{bottom:700.380000px;}
.y33{bottom:703.699500px;}
.y1{bottom:704.196000px;}
.y10a{bottom:705.933000px;}
.y140{bottom:707.746500px;}
.y89{bottom:708.390000px;}
.y1c5{bottom:708.613500px;}
.y65{bottom:710.184000px;}
.y109{bottom:711.910500px;}
.yd5{bottom:713.934000px;}
.y18c{bottom:717.640500px;}
.y108{bottom:717.888000px;}
.y32{bottom:719.839500px;}
.y10b{bottom:723.865500px;}
.y1c4{bottom:725.874000px;}
.y88{bottom:727.219500px;}
.y64{bottom:729.013500px;}
.y13f{bottom:731.059500px;}
.yd4{bottom:732.763500px;}
.y18b{bottom:734.901000px;}
.y31{bottom:740.317500px;}
.y1c3{bottom:743.134500px;}
.y107{bottom:747.777000px;}
.y63{bottom:747.843000px;}
.y87{bottom:750.532500px;}
.y18a{bottom:752.161500px;}
.y106{bottom:753.754500px;}
.yd3{bottom:756.076500px;}
.y30{bottom:756.457500px;}
.y1c2{bottom:760.395000px;}
.y62{bottom:766.671000px;}
.y13e{bottom:768.055500px;}
.y189{bottom:769.422000px;}
.y86{bottom:770.706000px;}
.y2f{bottom:772.597500px;}
.y1c1{bottom:777.655500px;}
.y105{bottom:777.664500px;}
.y2e{bottom:784.396500px;}
.yd2{bottom:785.298000px;}
.y61{bottom:785.500500px;}
.y188{bottom:786.682500px;}
.y104{bottom:789.619500px;}
.y13d{bottom:789.888000px;}
.y1c0{bottom:794.916000px;}
.y103{bottom:801.574500px;}
.y186{bottom:803.943000px;}
.y60{bottom:804.330000px;}
.y2d{bottom:804.876000px;}
.y13c{bottom:806.325000px;}
.ya9{bottom:807.727500px;}
.y187{bottom:808.824000px;}
.y1bf{bottom:812.176500px;}
.y102{bottom:813.529500px;}
.y2c{bottom:816.676500px;}
.y185{bottom:821.202000px;}
.y13b{bottom:822.763500px;}
.y5f{bottom:823.159500px;}
.y101{bottom:825.484500px;}
.y1be{bottom:829.437000px;}
.y2b{bottom:837.156000px;}
.y100{bottom:837.441000px;}
.y184{bottom:838.462500px;}
.y13a{bottom:839.202000px;}
.y5e{bottom:841.989000px;}
.y1bd{bottom:846.697500px;}
.yff{bottom:849.396000px;}
.y2a{bottom:853.294500px;}
.y139{bottom:855.640500px;}
.y183{bottom:855.723000px;}
.y5d{bottom:860.818500px;}
.yfe{bottom:861.351000px;}
.y1bc{bottom:863.956500px;}
.y29{bottom:865.095000px;}
.y182{bottom:872.983500px;}
.yfd{bottom:873.306000px;}
.y138{bottom:879.282000px;}
.yfc{bottom:879.283500px;}
.y5c{bottom:879.648000px;}
.y1bb{bottom:881.217000px;}
.y28{bottom:885.574500px;}
.y137{bottom:887.725500px;}
.y181{bottom:890.244000px;}
.yfb{bottom:897.216000px;}
.y5b{bottom:898.477500px;}
.y180{bottom:907.504500px;}
.yfa{bottom:909.171000px;}
.y1ba{bottom:915.738000px;}
.y5a{bottom:917.307000px;}
.y136{bottom:919.360500px;}
.yf9{bottom:921.126000px;}
.y17f{bottom:924.765000px;}
.yf8{bottom:927.103500px;}
.y27{bottom:930.250500px;}
.y1b9{bottom:932.998500px;}
.y59{bottom:936.136500px;}
.y17e{bottom:942.025500px;}
.y135{bottom:943.000500px;}
.y26{bottom:949.080000px;}
.y1b8{bottom:950.259000px;}
.yf7{bottom:952.239000px;}
.y58{bottom:954.966000px;}
.yf6{bottom:958.216500px;}
.y134{bottom:959.439000px;}
.y17d{bottom:963.768000px;}
.y1b7{bottom:967.519500px;}
.y25{bottom:967.909500px;}
.y57{bottom:973.795500px;}
.y133{bottom:975.877500px;}
.y1b6{bottom:984.780000px;}
.y132{bottom:992.316000px;}
.y56{bottom:992.625000px;}
.yf5{bottom:995.664000px;}
.y17c{bottom:999.451500px;}
.y1b4{bottom:1002.039000px;}
.y1b5{bottom:1002.040500px;}
.y24{bottom:1008.240000px;}
.y131{bottom:1008.754500px;}
.y55{bottom:1011.454500px;}
.y17b{bottom:1017.025500px;}
.y1b3{bottom:1019.299500px;}
.y54{bottom:1030.284000px;}
.y130{bottom:1032.396000px;}
.y17a{bottom:1034.599500px;}
.y23{bottom:1036.485000px;}
.y1b2{bottom:1036.560000px;}
.y12f{bottom:1040.839500px;}
.y53{bottom:1049.113500px;}
.y179{bottom:1052.173500px;}
.y1b1{bottom:1053.820500px;}
.y22{bottom:1064.728500px;}
.y52{bottom:1067.943000px;}
.y178{bottom:1069.747500px;}
.y1b0{bottom:1071.081000px;}
.y12e{bottom:1072.474500px;}
.y51{bottom:1086.772500px;}
.y1af{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y50{bottom:1105.602000px;}
.y12d{bottom:1107.082500px;}
.y1f{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h1d{height:30.252344px;}
.h8{height:32.565965px;}
.h24{height:35.677850px;}
.h2{height:37.993262px;}
.hb{height:38.896243px;}
.hf{height:41.245164px;}
.h11{height:41.250077px;}
.hd{height:43.217759px;}
.h19{height:43.269961px;}
.ha{height:43.421105px;}
.h9{height:43.660208px;}
.h5{height:43.815515px;}
.h15{height:44.279648px;}
.h14{height:44.536816px;}
.h10{height:44.597206px;}
.hc{height:48.848947px;}
.h27{height:49.117939px;}
.h18{height:49.939453px;}
.h17{height:50.229492px;}
.h3{height:50.336282px;}
.h1b{height:54.162344px;}
.he{height:54.276245px;}
.h7{height:55.352206px;}
.h16{height:55.599258px;}
.h1a{height:55.922168px;}
.h1e{height:61.903262px;}
.h21{height:61.909262px;}
.h12{height:62.946077px;}
.h26{height:70.870243px;}
.h25{height:70.876243px;}
.h6{height:77.792486px;}
.h1c{height:78.072344px;}
.h1f{height:85.813262px;}
.h20{height:85.819262px;}
.h4{height:100.642320px;}
.h22{height:109.723262px;}
.h23{height:109.729262px;}
.h13{height:261.091500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.014688px;}
.w3{width:510.199500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x49{left:-198.892500px;}
.x4a{left:-3.322140px;}
.x0{left:0.000000px;}
.x4c{left:28.538094px;}
.x1{left:53.574000px;}
.x2{left:57.178067px;}
.x6d{left:63.477000px;}
.x7f{left:65.476500px;}
.x5d{left:66.631500px;}
.x66{left:73.404000px;}
.x68{left:74.670000px;}
.x77{left:76.045500px;}
.x81{left:78.892500px;}
.x6b{left:80.067000px;}
.x65{left:81.631500px;}
.x69{left:82.986000px;}
.x67{left:85.716000px;}
.x78{left:91.239000px;}
.x80{left:131.697000px;}
.x5a{left:156.054000px;}
.x6e{left:161.118000px;}
.x5e{left:163.732500px;}
.x6f{left:218.794500px;}
.x5f{left:221.410500px;}
.x9e{left:247.513500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x58{left:254.038500px;}
.x79{left:262.858500px;}
.x4{left:269.556000px;}
.x70{left:273.772500px;}
.x60{left:276.388500px;}
.x1a{left:279.064500px;}
.x8{left:281.479500px;}
.x23{left:282.645000px;}
.x24{left:290.116500px;}
.x1b{left:294.009000px;}
.x99{left:295.975500px;}
.x2b{left:298.302000px;}
.x59{left:304.191000px;}
.x4d{left:306.817500px;}
.x6{left:308.086500px;}
.x7b{left:310.227000px;}
.x7c{left:312.106500px;}
.x8f{left:321.621000px;}
.x56{left:324.055500px;}
.x40{left:325.200000px;}
.x71{left:328.750500px;}
.x61{left:331.365000px;}
.x57{left:337.588500px;}
.x41{left:341.335500px;}
.x8b{left:351.919500px;}
.x2c{left:358.233000px;}
.x29{left:362.221500px;}
.x8c{left:364.210500px;}
.x2d{left:373.177500px;}
.x2a{left:377.166000px;}
.x7d{left:380.640000px;}
.x46{left:385.465500px;}
.x9f{left:390.585000px;}
.x55{left:399.249000px;}
.x47{left:400.410000px;}
.x84{left:421.294500px;}
.x7e{left:425.671500px;}
.xa1{left:426.891000px;}
.x3c{left:428.691000px;}
.x38{left:430.689000px;}
.x82{left:433.809000px;}
.x5b{left:435.709500px;}
.x39{left:438.162000px;}
.x73{left:440.439000px;}
.x3d{left:443.635500px;}
.xb{left:448.434000px;}
.x83{left:451.737000px;}
.x97{left:453.463500px;}
.xc{left:455.905500px;}
.x1e{left:457.546500px;}
.x4e{left:463.596000px;}
.x98{left:468.406500px;}
.x1f{left:472.489500px;}
.x16{left:477.073500px;}
.x17{left:484.545000px;}
.x36{left:487.948500px;}
.xa0{left:489.088500px;}
.x6a{left:498.592500px;}
.x85{left:500.461500px;}
.x37{left:502.891500px;}
.x62{left:504.399000px;}
.x74{left:505.440000px;}
.x86{left:507.934500px;}
.x87{left:511.594500px;}
.x4b{left:512.646879px;}
.x88{left:519.067500px;}
.x89{left:522.729000px;}
.x13{left:529.473000px;}
.x9{left:530.901000px;}
.x14{left:536.944500px;}
.xa{left:538.374000px;}
.x95{left:539.710500px;}
.x7a{left:540.982500px;}
.x50{left:543.348000px;}
.x31{left:545.272500px;}
.x32{left:552.894000px;}
.x96{left:554.655000px;}
.x51{left:557.541000px;}
.x72{left:559.461000px;}
.x63{left:562.077000px;}
.x26{left:563.344500px;}
.x3e{left:566.313000px;}
.x33{left:567.837000px;}
.x27{left:570.817500px;}
.x4f{left:576.670500px;}
.x3f{left:579.891000px;}
.x90{left:585.403500px;}
.x91{left:589.168500px;}
.x3a{left:595.059000px;}
.x3b{left:602.532000px;}
.x92{left:604.113000px;}
.x93{left:607.878000px;}
.x2f{left:609.817500px;}
.x64{left:617.055000px;}
.x9a{left:618.765000px;}
.x94{left:622.822500px;}
.x30{left:624.762000px;}
.x9b{left:633.709500px;}
.x42{left:652.291500px;}
.x53{left:659.892000px;}
.x43{left:668.427000px;}
.xa7{left:671.658000px;}
.x54{left:672.849000px;}
.x20{left:678.712500px;}
.x34{left:686.991000px;}
.x21{left:693.655500px;}
.x48{left:695.278500px;}
.x2e{left:696.534000px;}
.x8a{left:698.608500px;}
.x35{left:701.934000px;}
.x11{left:704.329500px;}
.x12{left:711.802500px;}
.x52{left:712.969500px;}
.xa2{left:722.590500px;}
.xa9{left:727.521000px;}
.xa4{left:737.196000px;}
.x44{left:738.591000px;}
.xa6{left:740.812500px;}
.x45{left:745.017000px;}
.xa3{left:749.490000px;}
.xaa{left:754.420500px;}
.x9c{left:756.297000px;}
.x7{left:757.678500px;}
.xa5{left:764.095500px;}
.xd{left:768.699000px;}
.x9d{left:771.241500px;}
.x8d{left:775.147500px;}
.xe{left:776.170500px;}
.x5c{left:781.776000px;}
.xf{left:783.747000px;}
.x75{left:784.878000px;}
.x6c{left:786.505500px;}
.x76{left:788.539500px;}
.x8e{left:790.092000px;}
.x10{left:791.220000px;}
.x15{left:792.528000px;}
.x25{left:795.904500px;}
.x22{left:797.433000px;}
.x18{left:804.049500px;}
.x19{left:811.521000px;}
.xa8{left:815.695500px;}
.x28{left:817.698000px;}
.x1c{left:825.492000px;}
.x1d{left:832.963500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.253333pt;}
.v6{vertical-align:28.426667pt;}
.v4{vertical-align:42.506667pt;}
.v5{vertical-align:63.765333pt;}
.ls31{letter-spacing:-0.149632pt;}
.ls29{letter-spacing:-0.122912pt;}
.ls2c{letter-spacing:-0.117568pt;}
.ls2f{letter-spacing:-0.090848pt;}
.ls26{letter-spacing:-0.080864pt;}
.ls2e{letter-spacing:-0.064128pt;}
.ls2d{letter-spacing:-0.053440pt;}
.ls2a{letter-spacing:-0.021376pt;}
.ls30{letter-spacing:-0.016032pt;}
.ls27{letter-spacing:-0.012768pt;}
.ls2b{letter-spacing:-0.010688pt;}
.ls28{letter-spacing:-0.005344pt;}
.lse{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000518pt;}
.ls0{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.001026pt;}
.lsb{letter-spacing:0.001398pt;}
.ls47{letter-spacing:0.001408pt;}
.lsa{letter-spacing:0.001718pt;}
.ls36{letter-spacing:0.003025pt;}
.ls45{letter-spacing:0.003581pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1c{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.010688pt;}
.ls1e{letter-spacing:0.021376pt;}
.ls1d{letter-spacing:0.026720pt;}
.ls13{letter-spacing:0.032064pt;}
.ls20{letter-spacing:0.037408pt;}
.ls1a{letter-spacing:0.042752pt;}
.ls16{letter-spacing:0.043200pt;}
.ls1f{letter-spacing:0.048096pt;}
.ls12{letter-spacing:0.053440pt;}
.ls18{letter-spacing:0.058784pt;}
.ls1b{letter-spacing:0.064128pt;}
.ls15{letter-spacing:0.072000pt;}
.ls14{letter-spacing:0.074816pt;}
.ls10{letter-spacing:0.076608pt;}
.ls21{letter-spacing:0.080160pt;}
.ls17{letter-spacing:0.105600pt;}
.ls22{letter-spacing:0.112224pt;}
.ls11{letter-spacing:0.148960pt;}
.ls25{letter-spacing:0.161728pt;}
.ls3f{letter-spacing:0.637762pt;}
.ls37{letter-spacing:0.928000pt;}
.ls39{letter-spacing:1.061333pt;}
.ls5{letter-spacing:2.657067pt;}
.ls38{letter-spacing:9.298400pt;}
.ls3a{letter-spacing:10.524398pt;}
.lsd{letter-spacing:10.626533pt;}
.ls4d{letter-spacing:11.141399pt;}
.ls4a{letter-spacing:11.786565pt;}
.ls4b{letter-spacing:11.937920pt;}
.ls49{letter-spacing:11.954133pt;}
.ls48{letter-spacing:11.959467pt;}
.ls53{letter-spacing:11.977933pt;}
.ls4e{letter-spacing:12.082434pt;}
.ls50{letter-spacing:12.090545pt;}
.ls41{letter-spacing:13.044615pt;}
.ls40{letter-spacing:13.052491pt;}
.ls42{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.283733pt;}
.ls6{letter-spacing:13.284237pt;}
.ls3{letter-spacing:13.284541pt;}
.ls35{letter-spacing:13.411561pt;}
.ls33{letter-spacing:13.414268pt;}
.ls34{letter-spacing:13.416938pt;}
.ls4c{letter-spacing:13.691859pt;}
.ls23{letter-spacing:13.923096pt;}
.ls54{letter-spacing:13.963754pt;}
.ls51{letter-spacing:15.061793pt;}
.ls32{letter-spacing:15.697119pt;}
.lsf{letter-spacing:15.942400pt;}
.ls3e{letter-spacing:16.983393pt;}
.ls3c{letter-spacing:17.872282pt;}
.ls3b{letter-spacing:17.877511pt;}
.ls3d{letter-spacing:17.974050pt;}
.ls24{letter-spacing:18.065515pt;}
.ls52{letter-spacing:25.838264pt;}
.ls4{letter-spacing:51.035733pt;}
.ls9{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls7{letter-spacing:64.321067pt;}
.ls44{letter-spacing:145.262933pt;}
.ls43{letter-spacing:157.214933pt;}
.ws68{word-spacing:-53.440000pt;}
.ws67{word-spacing:-48.000000pt;}
.wsb2{word-spacing:-18.596800pt;}
.ws14{word-spacing:-13.283467pt;}
.wsef{word-spacing:-11.955200pt;}
.ws65{word-spacing:-10.801728pt;}
.ws66{word-spacing:-10.640000pt;}
.ws17{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws7e{word-spacing:-3.163648pt;}
.ws7d{word-spacing:-3.131584pt;}
.wsde{word-spacing:-2.656693pt;}
.ws46{word-spacing:-2.603559pt;}
.ws80{word-spacing:-2.543744pt;}
.wseb{word-spacing:-2.486682pt;}
.ws81{word-spacing:-2.484960pt;}
.wsec{word-spacing:-2.438861pt;}
.wsed{word-spacing:-2.295398pt;}
.wsd3{word-spacing:-2.231622pt;}
.wsd4{word-spacing:-2.178489pt;}
.wsd7{word-spacing:-2.072221pt;}
.ws35{word-spacing:-2.019087pt;}
.ws5a{word-spacing:-1.965953pt;}
.ws4b{word-spacing:-1.859685pt;}
.ws63{word-spacing:-1.647150pt;}
.wse8{word-spacing:-1.578086pt;}
.wse9{word-spacing:-1.386803pt;}
.ws77{word-spacing:-1.277216pt;}
.ws5f{word-spacing:-1.275213pt;}
.ws62{word-spacing:-1.222079pt;}
.wsf4{word-spacing:-1.195520pt;}
.wse4{word-spacing:-1.147699pt;}
.wsea{word-spacing:-1.099878pt;}
.ws78{word-spacing:-1.079488pt;}
.ws4{word-spacing:-1.041421pt;}
.ws2e{word-spacing:-1.009543pt;}
.ws20{word-spacing:-1.004237pt;}
.ws2d{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.wse3{word-spacing:-0.908595pt;}
.ws117{word-spacing:-0.860774pt;}
.wsfe{word-spacing:-0.812954pt;}
.ws39{word-spacing:-0.743874pt;}
.ws45{word-spacing:-0.690740pt;}
.ws8c{word-spacing:-0.614560pt;}
.ws7f{word-spacing:-0.603872pt;}
.ws98{word-spacing:-0.598528pt;}
.ws108{word-spacing:-0.526029pt;}
.wsdc{word-spacing:-0.478205pt;}
.ws29{word-spacing:-0.318803pt;}
.ws8a{word-spacing:-0.315296pt;}
.ws7c{word-spacing:-0.299264pt;}
.wse1{word-spacing:-0.286925pt;}
.ws8d{word-spacing:-0.272544pt;}
.ws83{word-spacing:-0.267200pt;}
.ws4f{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws7a{word-spacing:-0.230400pt;}
.wsa3{word-spacing:-0.219104pt;}
.ws33{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.143462pt;}
.wsc9{word-spacing:-0.127522pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.wsca{word-spacing:-0.085014pt;}
.ws70{word-spacing:-0.068096pt;}
.wsf{word-spacing:-0.053134pt;}
.wse2{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.ws10{word-spacing:-0.001822pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.000311pt;}
.wse{word-spacing:0.000511pt;}
.ws16{word-spacing:0.001089pt;}
.ws13{word-spacing:0.001637pt;}
.ws12{word-spacing:0.003207pt;}
.ws89{word-spacing:0.016032pt;}
.ws91{word-spacing:0.021376pt;}
.ws76{word-spacing:0.026720pt;}
.ws92{word-spacing:0.042752pt;}
.ws22{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.ws9b{word-spacing:0.069472pt;}
.wsa2{word-spacing:0.074816pt;}
.ws1e{word-spacing:0.095642pt;}
.ws41{word-spacing:0.106268pt;}
.ws7b{word-spacing:0.115200pt;}
.ws21{word-spacing:0.143462pt;}
.ws79{word-spacing:0.158400pt;}
.ws30{word-spacing:0.159402pt;}
.ws1f{word-spacing:0.191283pt;}
.ws88{word-spacing:0.197728pt;}
.ws26{word-spacing:0.212535pt;}
.wsa1{word-spacing:0.229792pt;}
.ws69{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.ws2b{word-spacing:0.318803pt;}
.wsd8{word-spacing:0.425071pt;}
.wsad{word-spacing:0.468529pt;}
.ws38{word-spacing:0.478205pt;}
.ws50{word-spacing:0.531339pt;}
.ws56{word-spacing:0.690740pt;}
.ws1d{word-spacing:0.717312pt;}
.ws106{word-spacing:0.765133pt;}
.ws5{word-spacing:0.855453pt;}
.wsf0{word-spacing:0.908595pt;}
.wsdd{word-spacing:0.956410pt;}
.ws82{word-spacing:0.983296pt;}
.ws105{word-spacing:1.004237pt;}
.ws64{word-spacing:1.062677pt;}
.ws10a{word-spacing:1.195520pt;}
.ws44{word-spacing:1.328347pt;}
.wsf9{word-spacing:1.338982pt;}
.ws100{word-spacing:1.386803pt;}
.ws5c{word-spacing:1.434614pt;}
.wsdb{word-spacing:1.540882pt;}
.ws114{word-spacing:1.578086pt;}
.ws36{word-spacing:1.594016pt;}
.ws6b{word-spacing:1.700284pt;}
.wsfb{word-spacing:1.721549pt;}
.ws51{word-spacing:1.753418pt;}
.wsff{word-spacing:1.769370pt;}
.ws4a{word-spacing:1.806551pt;}
.ws6d{word-spacing:1.859685pt;}
.ws6c{word-spacing:1.912819pt;}
.ws86{word-spacing:1.955904pt;}
.ws74{word-spacing:1.966592pt;}
.ws87{word-spacing:1.977280pt;}
.ws75{word-spacing:2.004000pt;}
.wsd9{word-spacing:2.019087pt;}
.ws37{word-spacing:2.178489pt;}
.ws43{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws8e{word-spacing:2.255168pt;}
.ws8b{word-spacing:2.271200pt;}
.ws47{word-spacing:2.284756pt;}
.ws97{word-spacing:2.287232pt;}
.ws32{word-spacing:2.391024pt;}
.ws10b{word-spacing:2.391040pt;}
.ws10c{word-spacing:2.438861pt;}
.ws5e{word-spacing:2.444158pt;}
.ws59{word-spacing:2.497292pt;}
.wsd6{word-spacing:2.550426pt;}
.ws19{word-spacing:2.550432pt;}
.ws101{word-spacing:2.582323pt;}
.ws3a{word-spacing:2.656693pt;}
.ws4c{word-spacing:2.762961pt;}
.wsda{word-spacing:2.816095pt;}
.ws11a{word-spacing:2.856695pt;}
.ws24{word-spacing:2.861926pt;}
.ws10e{word-spacing:2.862268pt;}
.wse5{word-spacing:2.866509pt;}
.wsf5{word-spacing:2.868565pt;}
.ws4e{word-spacing:2.869229pt;}
.ws104{word-spacing:2.869248pt;}
.wsd5{word-spacing:2.922363pt;}
.ws34{word-spacing:2.975497pt;}
.ws2c{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws9c{word-spacing:3.217088pt;}
.ws48{word-spacing:3.241166pt;}
.ws60{word-spacing:3.294300pt;}
.ws42{word-spacing:3.453701pt;}
.ws72{word-spacing:3.601856pt;}
.ws9a{word-spacing:3.617888pt;}
.wscc{word-spacing:3.719371pt;}
.wse7{word-spacing:3.730022pt;}
.ws3f{word-spacing:3.772505pt;}
.ws4d{word-spacing:3.825638pt;}
.ws73{word-spacing:3.869056pt;}
.ws9d{word-spacing:3.927840pt;}
.ws85{word-spacing:3.933184pt;}
.ws84{word-spacing:3.943872pt;}
.ws99{word-spacing:3.975936pt;}
.wse6{word-spacing:4.016947pt;}
.ws6a{word-spacing:4.038174pt;}
.ws90{word-spacing:4.232448pt;}
.wsc{word-spacing:4.240070pt;}
.ws3e{word-spacing:4.250709pt;}
.ws8f{word-spacing:4.291232pt;}
.wsd{word-spacing:4.314458pt;}
.ws40{word-spacing:4.569513pt;}
.ws6f{word-spacing:4.782048pt;}
.ws3c{word-spacing:4.888316pt;}
.ws61{word-spacing:5.100851pt;}
.ws52{word-spacing:5.153985pt;}
.ws55{word-spacing:5.260253pt;}
.wsdf{word-spacing:5.419654pt;}
.ws6e{word-spacing:5.685324pt;}
.wsa0{word-spacing:5.728768pt;}
.wse0{word-spacing:5.738458pt;}
.ws93{word-spacing:5.782208pt;}
.wscb{word-spacing:5.803435pt;}
.wsfc{word-spacing:5.834138pt;}
.ws53{word-spacing:5.844725pt;}
.ws94{word-spacing:5.862368pt;}
.ws3b{word-spacing:6.004127pt;}
.ws9f{word-spacing:6.108192pt;}
.ws54{word-spacing:6.322930pt;}
.ws95{word-spacing:6.546400pt;}
.ws96{word-spacing:6.573120pt;}
.ws5d{word-spacing:6.588599pt;}
.ws58{word-spacing:6.748001pt;}
.ws49{word-spacing:6.801135pt;}
.wsa{word-spacing:6.918010pt;}
.ws2{word-spacing:9.262656pt;}
.ws71{word-spacing:10.329312pt;}
.ws31{word-spacing:10.585845pt;}
.ws9e{word-spacing:10.655936pt;}
.ws8{word-spacing:10.823338pt;}
.ws110{word-spacing:11.046605pt;}
.wsf6{word-spacing:11.899017pt;}
.ws102{word-spacing:11.901730pt;}
.ws116{word-spacing:11.901867pt;}
.wsf1{word-spacing:11.904205pt;}
.ws107{word-spacing:11.904350pt;}
.wsf2{word-spacing:11.907379pt;}
.ws113{word-spacing:11.955200pt;}
.ws103{word-spacing:12.050842pt;}
.ws119{word-spacing:12.146483pt;}
.ws10f{word-spacing:12.194304pt;}
.ws5b{word-spacing:13.230333pt;}
.wsfa{word-spacing:13.246362pt;}
.ws115{word-spacing:13.485466pt;}
.ws112{word-spacing:13.868032pt;}
.ws9{word-spacing:14.319536pt;}
.wsf3{word-spacing:14.585344pt;}
.wsfd{word-spacing:14.680986pt;}
.wsf7{word-spacing:14.770313pt;}
.ws118{word-spacing:14.775987pt;}
.wsee{word-spacing:14.776627pt;}
.wsf8{word-spacing:14.824448pt;}
.ws109{word-spacing:14.967910pt;}
.ws57{word-spacing:16.418365pt;}
.ws3d{word-spacing:18.331184pt;}
.ws10d{word-spacing:22.523597pt;}
.ws111{word-spacing:22.953984pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.wsa4{word-spacing:55.800975pt;}
.wsa5{word-spacing:56.865727pt;}
.wsce{word-spacing:61.354086pt;}
.wsd1{word-spacing:62.645248pt;}
.wsa6{word-spacing:73.454308pt;}
.wsc6{word-spacing:78.599345pt;}
.wsbe{word-spacing:85.831345pt;}
.wsc1{word-spacing:85.836678pt;}
.wscf{word-spacing:86.555648pt;}
.wsc5{word-spacing:88.745862pt;}
.wsb0{word-spacing:88.751196pt;}
.wsb9{word-spacing:90.719729pt;}
.wsb8{word-spacing:90.725062pt;}
.wsc7{word-spacing:95.950724pt;}
.wsc0{word-spacing:97.799345pt;}
.wsbd{word-spacing:100.015196pt;}
.wsa9{word-spacing:100.020529pt;}
.wsb7{word-spacing:100.319729pt;}
.wsbf{word-spacing:100.484529pt;}
.wsbb{word-spacing:100.943196pt;}
.wsaf{word-spacing:104.338667pt;}
.wsb1{word-spacing:105.036678pt;}
.wsba{word-spacing:108.223196pt;}
.wsa8{word-spacing:109.316529pt;}
.wsbc{word-spacing:109.620529pt;}
.wsac{word-spacing:109.780529pt;}
.wsc2{word-spacing:110.084529pt;}
.wsb5{word-spacing:110.244529pt;}
.wsd2{word-spacing:115.372800pt;}
.wsa7{word-spacing:118.916529pt;}
.wsb4{word-spacing:119.849862pt;}
.wsc8{word-spacing:123.538667pt;}
.wsd0{word-spacing:127.324800pt;}
.wsab{word-spacing:136.467166pt;}
.wsb3{word-spacing:136.931166pt;}
.wsae{word-spacing:157.589547pt;}
.wsc4{word-spacing:199.420009pt;}
.wscd{word-spacing:270.139699pt;}
.wsc3{word-spacing:326.770667pt;}
.wsaa{word-spacing:336.066667pt;}
.wsb6{word-spacing:337.000000pt;}
._8{margin-left:-10.616218pt;}
._29{margin-left:-9.298400pt;}
._17{margin-left:-6.381393pt;}
._0{margin-left:-5.467459pt;}
._c{margin-left:-4.556990pt;}
._1{margin-left:-3.421811pt;}
._1d{margin-left:-2.375072pt;}
._2{margin-left:-1.338970pt;}
._1b{width:1.055488pt;}
._5{width:2.045648pt;}
._a{width:3.259670pt;}
._35{width:8.612071pt;}
._6{width:10.295486pt;}
._3{width:11.530016pt;}
._f{width:12.925591pt;}
._b{width:13.949647pt;}
._d{width:14.872269pt;}
._19{width:15.887026pt;}
._e{width:16.785101pt;}
._10{width:18.074083pt;}
._14{width:19.500129pt;}
._16{width:20.998500pt;}
._4{width:23.060032pt;}
._34{width:25.089808pt;}
._7{width:27.188522pt;}
._15{width:28.320351pt;}
._9{width:29.648896pt;}
._13{width:31.614651pt;}
._1a{width:33.059888pt;}
._1e{width:34.577625pt;}
._3a{width:36.295987pt;}
._18{width:37.193707pt;}
._3b{width:48.456849pt;}
._3c{width:54.993920pt;}
._37{width:63.745126pt;}
._21{width:71.975012pt;}
._1f{width:73.159811pt;}
._36{width:74.552627pt;}
._20{width:78.032173pt;}
._33{width:86.746931pt;}
._38{width:92.724531pt;}
._39{width:99.993293pt;}
._2a{width:101.166780pt;}
._2d{width:107.318947pt;}
._2f{width:109.633574pt;}
._2c{width:110.689903pt;}
._26{width:112.175898pt;}
._22{width:121.639021pt;}
._27{width:124.152237pt;}
._28{width:129.619696pt;}
._23{width:131.367795pt;}
._24{width:142.987940pt;}
._2e{width:145.391001pt;}
._25{width:149.795750pt;}
._2b{width:168.525492pt;}
._32{width:190.948454pt;}
._30{width:192.395102pt;}
._31{width:294.050099pt;}
._11{width:783.523319pt;}
._1c{width:1909.816160pt;}
._12{width:2296.981537pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fsd{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.946667pt;}
.yac{bottom:-652.979600pt;}
.yd1{bottom:-584.815648pt;}
.yd0{bottom:-567.696144pt;}
.ycf{bottom:-550.656800pt;}
.yce{bottom:-533.537296pt;}
.ycd{bottom:-516.497952pt;}
.ycc{bottom:-499.378448pt;}
.ycb{bottom:-482.258944pt;}
.yca{bottom:-465.211160pt;}
.yc9{bottom:-448.091656pt;}
.yc8{bottom:-430.972152pt;}
.yc7{bottom:-413.932808pt;}
.yc6{bottom:-396.813304pt;}
.yc5{bottom:-379.773960pt;}
.yc4{bottom:-362.654456pt;}
.yc3{bottom:-345.534952pt;}
.yc2{bottom:-328.495608pt;}
.yc1{bottom:-311.376104pt;}
.yc0{bottom:-294.336760pt;}
.ybf{bottom:-277.217256pt;}
.ybe{bottom:-260.097752pt;}
.ybd{bottom:-239.057088pt;}
.ybc{bottom:-205.937648pt;}
.ybb{bottom:-188.896968pt;}
.yba{bottom:-171.777464pt;}
.yb9{bottom:-154.657960pt;}
.yb8{bottom:-137.618616pt;}
.yb7{bottom:-120.499112pt;}
.yb6{bottom:-103.379608pt;}
.yb5{bottom:-86.340264pt;}
.yb4{bottom:-65.299600pt;}
.yb3{bottom:-32.500000pt;}
.yb2{bottom:-17.059600pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:2.860768pt;}
.y20{bottom:13.078059pt;}
.y4e{bottom:28.346667pt;}
.yf4{bottom:81.480000pt;}
.y12c{bottom:91.870667pt;}
.y1e{bottom:93.018667pt;}
.y160{bottom:93.514667pt;}
.y4d{bottom:95.540000pt;}
.y85{bottom:95.681333pt;}
.yf3{bottom:98.217333pt;}
.y177{bottom:101.818667pt;}
.y12b{bottom:106.482667pt;}
.y1d{bottom:108.920000pt;}
.y15f{bottom:110.252000pt;}
.ya8{bottom:110.425333pt;}
.y4c{bottom:112.277333pt;}
.y84{bottom:112.418667pt;}
.yf2{bottom:114.954667pt;}
.y1ae{bottom:116.257333pt;}
.y12a{bottom:121.094667pt;}
.y1c{bottom:124.820000pt;}
.y176{bottom:125.410667pt;}
.y15e{bottom:126.989333pt;}
.ya7{bottom:127.162667pt;}
.y4b{bottom:129.014667pt;}
.y83{bottom:129.156000pt;}
.y1ad{bottom:131.600000pt;}
.yf1{bottom:135.677333pt;}
.y129{bottom:135.705333pt;}
.y1b{bottom:140.720000pt;}
.y175{bottom:141.032000pt;}
.y15d{bottom:143.726667pt;}
.ya6{bottom:143.900000pt;}
.y4a{bottom:145.752000pt;}
.y82{bottom:145.893333pt;}
.y1ac{bottom:146.942667pt;}
.y128{bottom:150.317333pt;}
.y1a{bottom:156.621333pt;}
.y174{bottom:156.653333pt;}
.y15c{bottom:160.464000pt;}
.ya5{bottom:160.637333pt;}
.y1ab{bottom:162.285333pt;}
.y49{bottom:162.489333pt;}
.y81{bottom:162.630667pt;}
.yf0{bottom:165.565333pt;}
.y127{bottom:171.332000pt;}
.y173{bottom:172.274667pt;}
.y19{bottom:172.521333pt;}
.y15b{bottom:177.201333pt;}
.ya4{bottom:177.374667pt;}
.y1aa{bottom:177.628000pt;}
.y126{bottom:178.838667pt;}
.y48{bottom:179.226667pt;}
.y80{bottom:179.368000pt;}
.yef{bottom:182.302667pt;}
.y18{bottom:188.421333pt;}
.y1a9{bottom:192.970667pt;}
.y15a{bottom:193.938667pt;}
.ya3{bottom:194.112000pt;}
.y172{bottom:195.865333pt;}
.y47{bottom:195.964000pt;}
.y7f{bottom:196.105333pt;}
.yee{bottom:199.040000pt;}
.y17{bottom:204.322667pt;}
.y125{bottom:206.957333pt;}
.y1a8{bottom:208.312000pt;}
.y159{bottom:210.676000pt;}
.ya2{bottom:210.849333pt;}
.y171{bottom:211.488000pt;}
.y46{bottom:212.701333pt;}
.y7e{bottom:212.841333pt;}
.yed{bottom:215.777333pt;}
.y1a7{bottom:223.654667pt;}
.y158{bottom:227.413333pt;}
.ya1{bottom:227.586667pt;}
.y124{bottom:227.972000pt;}
.y45{bottom:229.437333pt;}
.y7d{bottom:229.578667pt;}
.yec{bottom:232.514667pt;}
.y170{bottom:235.078667pt;}
.y1a6{bottom:238.997333pt;}
.y123{bottom:242.584000pt;}
.y157{bottom:244.150667pt;}
.ya0{bottom:244.324000pt;}
.y44{bottom:246.174667pt;}
.y7c{bottom:246.316000pt;}
.yeb{bottom:249.252000pt;}
.y16f{bottom:250.700000pt;}
.y1a5{bottom:254.340000pt;}
.yb0{bottom:255.181096pt;}
.y122{bottom:257.196000pt;}
.y156{bottom:260.888000pt;}
.y9f{bottom:261.061333pt;}
.y43{bottom:262.912000pt;}
.y7b{bottom:263.053333pt;}
.yea{bottom:265.989333pt;}
.y16{bottom:266.804000pt;}
.y1a4{bottom:269.682667pt;}
.y121{bottom:271.806667pt;}
.yaf{bottom:272.300600pt;}
.y16e{bottom:274.292000pt;}
.y155{bottom:277.625333pt;}
.y9e{bottom:277.798667pt;}
.y7a{bottom:279.790667pt;}
.y15{bottom:282.705333pt;}
.ye9{bottom:282.726667pt;}
.y42{bottom:283.634667pt;}
.y1a3{bottom:285.025333pt;}
.y120{bottom:286.418667pt;}
.yae{bottom:289.420104pt;}
.y16d{bottom:289.913333pt;}
.y154{bottom:294.362667pt;}
.y9d{bottom:294.536000pt;}
.y79{bottom:296.528000pt;}
.y14{bottom:298.605333pt;}
.ye8{bottom:299.464000pt;}
.y1a2{bottom:300.368000pt;}
.yad{bottom:306.460784pt;}
.y11f{bottom:307.433333pt;}
.y153{bottom:311.100000pt;}
.y9c{bottom:311.273333pt;}
.y78{bottom:313.265333pt;}
.y16c{bottom:313.505333pt;}
.y13{bottom:314.505333pt;}
.y11e{bottom:314.938667pt;}
.y1a1{bottom:315.710667pt;}
.ye7{bottom:316.201333pt;}
.y152{bottom:327.837333pt;}
.y9b{bottom:328.010667pt;}
.y77{bottom:330.002667pt;}
.y1a0{bottom:331.053333pt;}
.ye6{bottom:332.938667pt;}
.y16b{bottom:337.096000pt;}
.y12{bottom:338.376000pt;}
.y11d{bottom:343.058667pt;}
.y151{bottom:344.574667pt;}
.y9a{bottom:344.748000pt;}
.y19f{bottom:346.394667pt;}
.y76{bottom:346.740000pt;}
.ye5{bottom:349.676000pt;}
.y41{bottom:350.434667pt;}
.y16a{bottom:352.718667pt;}
.y11{bottom:354.277333pt;}
.yab{bottom:355.100520pt;}
.y150{bottom:361.312000pt;}
.y99{bottom:361.485333pt;}
.y19e{bottom:361.737333pt;}
.y75{bottom:363.477333pt;}
.yaa{bottom:363.660400pt;}
.ye4{bottom:366.413333pt;}
.y169{bottom:368.340000pt;}
.y10{bottom:370.177333pt;}
.y11c{bottom:373.821333pt;}
.y19d{bottom:377.080000pt;}
.y14f{bottom:378.049333pt;}
.y98{bottom:378.222667pt;}
.y74{bottom:380.214667pt;}
.ye3{bottom:383.150667pt;}
.y40{bottom:383.670667pt;}
.y168{bottom:383.961333pt;}
.y19c{bottom:392.422667pt;}
.y14e{bottom:394.786667pt;}
.yf{bottom:395.376000pt;}
.y73{bottom:396.952000pt;}
.y97{bottom:398.945333pt;}
.y167{bottom:399.582667pt;}
.ye2{bottom:399.888000pt;}
.y3f{bottom:400.965333pt;}
.y11b{bottom:404.594667pt;}
.y19b{bottom:407.765333pt;}
.y14d{bottom:411.524000pt;}
.y72{bottom:413.689333pt;}
.y166{bottom:415.204000pt;}
.ye1{bottom:416.624000pt;}
.y3e{bottom:418.261333pt;}
.ye{bottom:419.246667pt;}
.y11a{bottom:421.332000pt;}
.y19a{bottom:423.108000pt;}
.y14c{bottom:428.261333pt;}
.y96{bottom:428.833333pt;}
.y71{bottom:430.426667pt;}
.ye0{bottom:433.361333pt;}
.yd{bottom:435.146667pt;}
.y3d{bottom:435.556000pt;}
.y119{bottom:438.069333pt;}
.y199{bottom:438.450667pt;}
.y14b{bottom:444.998667pt;}
.y95{bottom:445.570667pt;}
.y165{bottom:446.765333pt;}
.y70{bottom:447.164000pt;}
.ydf{bottom:450.098667pt;}
.yc{bottom:451.048000pt;}
.y3c{bottom:452.850667pt;}
.y198{bottom:453.793333pt;}
.y118{bottom:454.806667pt;}
.y14a{bottom:461.736000pt;}
.y94{bottom:462.306667pt;}
.y164{bottom:463.502667pt;}
.y6f{bottom:463.901333pt;}
.yde{bottom:466.836000pt;}
.yb{bottom:466.948000pt;}
.y197{bottom:469.134667pt;}
.y3b{bottom:470.146667pt;}
.y117{bottom:471.544000pt;}
.y149{bottom:478.473333pt;}
.y93{bottom:479.044000pt;}
.y163{bottom:480.240000pt;}
.y6e{bottom:480.638667pt;}
.ya{bottom:482.848000pt;}
.ydd{bottom:483.573333pt;}
.y196{bottom:484.477333pt;}
.y3a{bottom:487.441333pt;}
.y1cd{bottom:491.797333pt;}
.y148{bottom:495.210667pt;}
.y92{bottom:495.781333pt;}
.y162{bottom:496.977333pt;}
.y6d{bottom:497.376000pt;}
.y9{bottom:498.749333pt;}
.y195{bottom:499.820000pt;}
.y116{bottom:501.024000pt;}
.ydc{bottom:504.296000pt;}
.y39{bottom:504.736000pt;}
.y1cc{bottom:507.138667pt;}
.y147{bottom:511.948000pt;}
.y91{bottom:512.518667pt;}
.y115{bottom:513.644000pt;}
.y6c{bottom:514.113333pt;}
.y8{bottom:514.649333pt;}
.y194{bottom:515.162667pt;}
.y161{bottom:517.700000pt;}
.y38{bottom:522.032000pt;}
.y1cb{bottom:522.481333pt;}
.y146{bottom:528.685333pt;}
.y90{bottom:529.256000pt;}
.y193{bottom:530.505333pt;}
.y7{bottom:530.549333pt;}
.y6b{bottom:530.850667pt;}
.y114{bottom:531.856000pt;}
.ydb{bottom:534.184000pt;}
.y113{bottom:537.169333pt;}
.y1ca{bottom:537.824000pt;}
.y37{bottom:539.326667pt;}
.y145{bottom:545.421333pt;}
.y192{bottom:545.848000pt;}
.y8f{bottom:545.993333pt;}
.y6{bottom:546.450667pt;}
.y6a{bottom:547.588000pt;}
.yda{bottom:550.921333pt;}
.y112{bottom:553.109333pt;}
.y1c9{bottom:553.166667pt;}
.y36{bottom:556.622667pt;}
.y111{bottom:558.422667pt;}
.y191{bottom:561.190667pt;}
.y144{bottom:562.158667pt;}
.y5{bottom:562.350667pt;}
.y8d{bottom:562.730667pt;}
.y69{bottom:564.325333pt;}
.y8e{bottom:567.553333pt;}
.yd9{bottom:567.658667pt;}
.y1c8{bottom:568.509333pt;}
.y35{bottom:573.917333pt;}
.y110{bottom:574.362667pt;}
.y190{bottom:576.533333pt;}
.y4{bottom:578.250667pt;}
.y143{bottom:578.896000pt;}
.y8c{bottom:579.468000pt;}
.y10f{bottom:579.676000pt;}
.y68{bottom:581.062667pt;}
.y1c7{bottom:583.852000pt;}
.yd8{bottom:584.396000pt;}
.y34{bottom:591.212000pt;}
.y18f{bottom:591.876000pt;}
.y3{bottom:594.152000pt;}
.y10e{bottom:595.616000pt;}
.y142{bottom:595.633333pt;}
.y8b{bottom:596.205333pt;}
.y67{bottom:597.800000pt;}
.y1c6{bottom:599.194667pt;}
.y10d{bottom:600.929333pt;}
.yd7{bottom:601.133333pt;}
.y10c{bottom:606.242667pt;}
.y18e{bottom:607.217333pt;}
.y2{bottom:610.052000pt;}
.y141{bottom:612.370667pt;}
.y8a{bottom:612.942667pt;}
.y66{bottom:614.537333pt;}
.yd6{bottom:617.870667pt;}
.y18d{bottom:622.560000pt;}
.y33{bottom:625.510667pt;}
.y1{bottom:625.952000pt;}
.y10a{bottom:627.496000pt;}
.y140{bottom:629.108000pt;}
.y89{bottom:629.680000pt;}
.y1c5{bottom:629.878667pt;}
.y65{bottom:631.274667pt;}
.y109{bottom:632.809333pt;}
.yd5{bottom:634.608000pt;}
.y18c{bottom:637.902667pt;}
.y108{bottom:638.122667pt;}
.y32{bottom:639.857333pt;}
.y10b{bottom:643.436000pt;}
.y1c4{bottom:645.221333pt;}
.y88{bottom:646.417333pt;}
.y64{bottom:648.012000pt;}
.y13f{bottom:649.830667pt;}
.yd4{bottom:651.345333pt;}
.y18b{bottom:653.245333pt;}
.y31{bottom:658.060000pt;}
.y1c3{bottom:660.564000pt;}
.y107{bottom:664.690667pt;}
.y63{bottom:664.749333pt;}
.y87{bottom:667.140000pt;}
.y18a{bottom:668.588000pt;}
.y106{bottom:670.004000pt;}
.yd3{bottom:672.068000pt;}
.y30{bottom:672.406667pt;}
.y1c2{bottom:675.906667pt;}
.y62{bottom:681.485333pt;}
.y13e{bottom:682.716000pt;}
.y189{bottom:683.930667pt;}
.y86{bottom:685.072000pt;}
.y2f{bottom:686.753333pt;}
.y1c1{bottom:691.249333pt;}
.y105{bottom:691.257333pt;}
.y2e{bottom:697.241333pt;}
.yd2{bottom:698.042667pt;}
.y61{bottom:698.222667pt;}
.y188{bottom:699.273333pt;}
.y104{bottom:701.884000pt;}
.y13d{bottom:702.122667pt;}
.y1c0{bottom:706.592000pt;}
.y103{bottom:712.510667pt;}
.y186{bottom:714.616000pt;}
.y60{bottom:714.960000pt;}
.y2d{bottom:715.445333pt;}
.y13c{bottom:716.733333pt;}
.ya9{bottom:717.980000pt;}
.y187{bottom:718.954667pt;}
.y1bf{bottom:721.934667pt;}
.y102{bottom:723.137333pt;}
.y2c{bottom:725.934667pt;}
.y185{bottom:729.957333pt;}
.y13b{bottom:731.345333pt;}
.y5f{bottom:731.697333pt;}
.y101{bottom:733.764000pt;}
.y1be{bottom:737.277333pt;}
.y2b{bottom:744.138667pt;}
.y100{bottom:744.392000pt;}
.y184{bottom:745.300000pt;}
.y13a{bottom:745.957333pt;}
.y5e{bottom:748.434667pt;}
.y1bd{bottom:752.620000pt;}
.yff{bottom:755.018667pt;}
.y2a{bottom:758.484000pt;}
.y139{bottom:760.569333pt;}
.y183{bottom:760.642667pt;}
.y5d{bottom:765.172000pt;}
.yfe{bottom:765.645333pt;}
.y1bc{bottom:767.961333pt;}
.y29{bottom:768.973333pt;}
.y182{bottom:775.985333pt;}
.yfd{bottom:776.272000pt;}
.y138{bottom:781.584000pt;}
.yfc{bottom:781.585333pt;}
.y5c{bottom:781.909333pt;}
.y1bb{bottom:783.304000pt;}
.y28{bottom:787.177333pt;}
.y137{bottom:789.089333pt;}
.y181{bottom:791.328000pt;}
.yfb{bottom:797.525333pt;}
.y5b{bottom:798.646667pt;}
.y180{bottom:806.670667pt;}
.yfa{bottom:808.152000pt;}
.y1ba{bottom:813.989333pt;}
.y5a{bottom:815.384000pt;}
.y136{bottom:817.209333pt;}
.yf9{bottom:818.778667pt;}
.y17f{bottom:822.013333pt;}
.yf8{bottom:824.092000pt;}
.y27{bottom:826.889333pt;}
.y1b9{bottom:829.332000pt;}
.y59{bottom:832.121333pt;}
.y17e{bottom:837.356000pt;}
.y135{bottom:838.222667pt;}
.y26{bottom:843.626667pt;}
.y1b8{bottom:844.674667pt;}
.yf7{bottom:846.434667pt;}
.y58{bottom:848.858667pt;}
.yf6{bottom:851.748000pt;}
.y134{bottom:852.834667pt;}
.y17d{bottom:856.682667pt;}
.y1b7{bottom:860.017333pt;}
.y25{bottom:860.364000pt;}
.y57{bottom:865.596000pt;}
.y133{bottom:867.446667pt;}
.y1b6{bottom:875.360000pt;}
.y132{bottom:882.058667pt;}
.y56{bottom:882.333333pt;}
.yf5{bottom:885.034667pt;}
.y17c{bottom:888.401333pt;}
.y1b4{bottom:890.701333pt;}
.y1b5{bottom:890.702667pt;}
.y24{bottom:896.213333pt;}
.y131{bottom:896.670667pt;}
.y55{bottom:899.070667pt;}
.y17b{bottom:904.022667pt;}
.y1b3{bottom:906.044000pt;}
.y54{bottom:915.808000pt;}
.y130{bottom:917.685333pt;}
.y17a{bottom:919.644000pt;}
.y23{bottom:921.320000pt;}
.y1b2{bottom:921.386667pt;}
.y12f{bottom:925.190667pt;}
.y53{bottom:932.545333pt;}
.y179{bottom:935.265333pt;}
.y1b1{bottom:936.729333pt;}
.y22{bottom:946.425333pt;}
.y52{bottom:949.282667pt;}
.y178{bottom:950.886667pt;}
.y1b0{bottom:952.072000pt;}
.y12e{bottom:953.310667pt;}
.y51{bottom:966.020000pt;}
.y1af{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y50{bottom:982.757333pt;}
.y12d{bottom:984.073333pt;}
.y1f{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h1d{height:26.890973pt;}
.h8{height:28.947524pt;}
.h24{height:31.713645pt;}
.h2{height:33.771789pt;}
.hb{height:34.574438pt;}
.hf{height:36.662368pt;}
.h11{height:36.666735pt;}
.hd{height:38.415786pt;}
.h19{height:38.462187pt;}
.ha{height:38.596538pt;}
.h9{height:38.809074pt;}
.h5{height:38.947124pt;}
.h15{height:39.359687pt;}
.h14{height:39.588281pt;}
.h10{height:39.641961pt;}
.hc{height:43.421286pt;}
.h27{height:43.660390pt;}
.h18{height:44.390625pt;}
.h17{height:44.648438pt;}
.h3{height:44.743362pt;}
.h1b{height:48.144306pt;}
.he{height:48.245551pt;}
.h7{height:49.201961pt;}
.h16{height:49.421563pt;}
.h1a{height:49.708594pt;}
.h1e{height:55.025122pt;}
.h21{height:55.030455pt;}
.h12{height:55.952068pt;}
.h26{height:62.995772pt;}
.h25{height:63.001105pt;}
.h6{height:69.148877pt;}
.h1c{height:69.397639pt;}
.h1f{height:76.278455pt;}
.h20{height:76.283789pt;}
.h4{height:89.459840pt;}
.h22{height:97.531789pt;}
.h23{height:97.537122pt;}
.h13{height:232.081333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:164.457501pt;}
.w3{width:453.510667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x49{left:-176.793333pt;}
.x4a{left:-2.953013pt;}
.x0{left:0.000000pt;}
.x4c{left:25.367195pt;}
.x1{left:47.621333pt;}
.x2{left:50.824949pt;}
.x6d{left:56.424000pt;}
.x7f{left:58.201333pt;}
.x5d{left:59.228000pt;}
.x66{left:65.248000pt;}
.x68{left:66.373333pt;}
.x77{left:67.596000pt;}
.x81{left:70.126667pt;}
.x6b{left:71.170667pt;}
.x65{left:72.561333pt;}
.x69{left:73.765333pt;}
.x67{left:76.192000pt;}
.x78{left:81.101333pt;}
.x80{left:117.064000pt;}
.x5a{left:138.714667pt;}
.x6e{left:143.216000pt;}
.x5e{left:145.540000pt;}
.x6f{left:194.484000pt;}
.x5f{left:196.809333pt;}
.x9e{left:220.012000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x58{left:225.812000pt;}
.x79{left:233.652000pt;}
.x4{left:239.605333pt;}
.x70{left:243.353333pt;}
.x60{left:245.678667pt;}
.x1a{left:248.057333pt;}
.x8{left:250.204000pt;}
.x23{left:251.240000pt;}
.x24{left:257.881333pt;}
.x1b{left:261.341333pt;}
.x99{left:263.089333pt;}
.x2b{left:265.157333pt;}
.x59{left:270.392000pt;}
.x4d{left:272.726667pt;}
.x6{left:273.854667pt;}
.x7b{left:275.757333pt;}
.x7c{left:277.428000pt;}
.x8f{left:285.885333pt;}
.x56{left:288.049333pt;}
.x40{left:289.066667pt;}
.x71{left:292.222667pt;}
.x61{left:294.546667pt;}
.x57{left:300.078667pt;}
.x41{left:303.409333pt;}
.x8b{left:312.817333pt;}
.x2c{left:318.429333pt;}
.x29{left:321.974667pt;}
.x8c{left:323.742667pt;}
.x2d{left:331.713333pt;}
.x2a{left:335.258667pt;}
.x7d{left:338.346667pt;}
.x46{left:342.636000pt;}
.x9f{left:347.186667pt;}
.x55{left:354.888000pt;}
.x47{left:355.920000pt;}
.x84{left:374.484000pt;}
.x7e{left:378.374667pt;}
.xa1{left:379.458667pt;}
.x3c{left:381.058667pt;}
.x38{left:382.834667pt;}
.x82{left:385.608000pt;}
.x5b{left:387.297333pt;}
.x39{left:389.477333pt;}
.x73{left:391.501333pt;}
.x3d{left:394.342667pt;}
.xb{left:398.608000pt;}
.x83{left:401.544000pt;}
.x97{left:403.078667pt;}
.xc{left:405.249333pt;}
.x1e{left:406.708000pt;}
.x4e{left:412.085333pt;}
.x98{left:416.361333pt;}
.x1f{left:419.990667pt;}
.x16{left:424.065333pt;}
.x17{left:430.706667pt;}
.x36{left:433.732000pt;}
.xa0{left:434.745333pt;}
.x6a{left:443.193333pt;}
.x85{left:444.854667pt;}
.x37{left:447.014667pt;}
.x62{left:448.354667pt;}
.x74{left:449.280000pt;}
.x86{left:451.497333pt;}
.x87{left:454.750667pt;}
.x4b{left:455.686115pt;}
.x88{left:461.393333pt;}
.x89{left:464.648000pt;}
.x13{left:470.642667pt;}
.x9{left:471.912000pt;}
.x14{left:477.284000pt;}
.xa{left:478.554667pt;}
.x95{left:479.742667pt;}
.x7a{left:480.873333pt;}
.x50{left:482.976000pt;}
.x31{left:484.686667pt;}
.x32{left:491.461333pt;}
.x96{left:493.026667pt;}
.x51{left:495.592000pt;}
.x72{left:497.298667pt;}
.x63{left:499.624000pt;}
.x26{left:500.750667pt;}
.x3e{left:503.389333pt;}
.x33{left:504.744000pt;}
.x27{left:507.393333pt;}
.x4f{left:512.596000pt;}
.x3f{left:515.458667pt;}
.x90{left:520.358667pt;}
.x91{left:523.705333pt;}
.x3a{left:528.941333pt;}
.x3b{left:535.584000pt;}
.x92{left:536.989333pt;}
.x93{left:540.336000pt;}
.x2f{left:542.060000pt;}
.x64{left:548.493333pt;}
.x9a{left:550.013333pt;}
.x94{left:553.620000pt;}
.x30{left:555.344000pt;}
.x9b{left:563.297333pt;}
.x42{left:579.814667pt;}
.x53{left:586.570667pt;}
.x43{left:594.157333pt;}
.xa7{left:597.029333pt;}
.x54{left:598.088000pt;}
.x20{left:603.300000pt;}
.x34{left:610.658667pt;}
.x21{left:616.582667pt;}
.x48{left:618.025333pt;}
.x2e{left:619.141333pt;}
.x8a{left:620.985333pt;}
.x35{left:623.941333pt;}
.x11{left:626.070667pt;}
.x12{left:632.713333pt;}
.x52{left:633.750667pt;}
.xa2{left:642.302667pt;}
.xa9{left:646.685333pt;}
.xa4{left:655.285333pt;}
.x44{left:656.525333pt;}
.xa6{left:658.500000pt;}
.x45{left:662.237333pt;}
.xa3{left:666.213333pt;}
.xaa{left:670.596000pt;}
.x9c{left:672.264000pt;}
.x7{left:673.492000pt;}
.xa5{left:679.196000pt;}
.xd{left:683.288000pt;}
.x9d{left:685.548000pt;}
.x8d{left:689.020000pt;}
.xe{left:689.929333pt;}
.x5c{left:694.912000pt;}
.xf{left:696.664000pt;}
.x75{left:697.669333pt;}
.x6c{left:699.116000pt;}
.x76{left:700.924000pt;}
.x8e{left:702.304000pt;}
.x10{left:703.306667pt;}
.x15{left:704.469333pt;}
.x25{left:707.470667pt;}
.x22{left:708.829333pt;}
.x18{left:714.710667pt;}
.x19{left:721.352000pt;}
.xa8{left:725.062667pt;}
.x28{left:726.842667pt;}
.x1c{left:733.770667pt;}
.x1d{left:740.412000pt;}
}




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