
    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_702ed38ce43e85058b408f72.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_a864e7c994a234793af4a302.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_df0668796656967390e72ccd.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_2210de487b5dfa7dde023b38.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_d74efa75994c40bdde7843e6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_11a65ca41f45833579f97bf6.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_4d6f90d0464930f4ba13a5c1.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_b0f16c40c0f0bad1969d2d0e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_1bec4e9a8e87a10b9f57ff49.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_76bd461369429d49203ebde1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.775391;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_46ffac0956592c72e30d2f8d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_11a65ca41f45833579f97bf6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_606b087e577364bdaebb59b3.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cb88c1789f96fc8d1335de41.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008301;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:ff11;src:url('chunks/assets/font_c4bae1d7d54f76fa963718d6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1bec4e9a8e87a10b9f57ff49.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m7{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);}
.m19{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);}
.m10{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);}
.m24{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);}
.m2{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);}
.me{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);}
.m18{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);}
.m1a{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);}
.m2a{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);}
.m16{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);}
.m15{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);}
.m17{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);}
.m5{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);}
.m22{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);}
.m23{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);}
.m1f{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);}
.m6{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);}
.m4{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);}
.m21{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);}
.m28{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);}
.m2b{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);}
.m29{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);}
.m12{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);}
.m8{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);}
.mf{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);}
.m11{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);}
.m25{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);}
.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);}
.m26{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);}
.mb{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);}
.m13{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);}
.m1e{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);}
.ma{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);}
.m14{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);}
.m2c{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);}
.m9{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);}
.m1c{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);}
.md{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2e{letter-spacing:-0.348696px;}
.ls30{letter-spacing:-0.138276px;}
.ls2f{letter-spacing:-0.132264px;}
.ls36{letter-spacing:-0.126252px;}
.ls33{letter-spacing:-0.114228px;}
.ls39{letter-spacing:-0.108216px;}
.ls35{letter-spacing:-0.090180px;}
.ls31{letter-spacing:-0.066132px;}
.ls29{letter-spacing:-0.054108px;}
.ls37{letter-spacing:-0.048096px;}
.ls2c{letter-spacing:-0.042084px;}
.ls38{letter-spacing:-0.036072px;}
.ls2b{letter-spacing:-0.030060px;}
.ls27{letter-spacing:-0.028728px;}
.ls34{letter-spacing:-0.024048px;}
.ls3a{letter-spacing:-0.018036px;}
.ls2a{letter-spacing:-0.012024px;}
.ls2d{letter-spacing:-0.006012px;}
.ls28{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.006012px;}
.ls23{letter-spacing:0.012024px;}
.ls3d{letter-spacing:0.016200px;}
.ls1a{letter-spacing:0.018036px;}
.ls22{letter-spacing:0.024048px;}
.ls1d{letter-spacing:0.030060px;}
.ls3e{letter-spacing:0.032400px;}
.ls3b{letter-spacing:0.036072px;}
.ls25{letter-spacing:0.042084px;}
.ls3c{letter-spacing:0.048096px;}
.ls21{letter-spacing:0.054108px;}
.ls40{letter-spacing:0.059400px;}
.ls1f{letter-spacing:0.060120px;}
.ls3f{letter-spacing:0.070200px;}
.ls24{letter-spacing:0.072144px;}
.ls20{letter-spacing:0.078156px;}
.ls1c{letter-spacing:0.084168px;}
.ls41{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.096192px;}
.ls32{letter-spacing:0.102204px;}
.ls1e{letter-spacing:0.120240px;}
.ls18{letter-spacing:0.177156px;}
.ls26{letter-spacing:0.180360px;}
.ls17{letter-spacing:0.191520px;}
.ls43{letter-spacing:1.987200px;}
.ls1{letter-spacing:2.998354px;}
.ls42{letter-spacing:7.298568px;}
.ls2{letter-spacing:11.954850px;}
.ls44{letter-spacing:14.585246px;}
.ls6{letter-spacing:14.645022px;}
.ls9{letter-spacing:14.704798px;}
.ls46{letter-spacing:14.764573px;}
.ls4{letter-spacing:14.943900px;}
.ls47{letter-spacing:15.003676px;}
.ls5{letter-spacing:15.063451px;}
.lsb{letter-spacing:15.123227px;}
.ls3{letter-spacing:15.183002px;}
.ls14{letter-spacing:15.302554px;}
.ls13{letter-spacing:15.362329px;}
.ls15{letter-spacing:15.422105px;}
.lsa{letter-spacing:15.481880px;}
.lsd{letter-spacing:15.601432px;}
.lse{letter-spacing:15.780758px;}
.ls7{letter-spacing:17.813129px;}
.ls12{letter-spacing:17.992456px;}
.ls10{letter-spacing:18.231558px;}
.lsc{letter-spacing:18.410885px;}
.ls16{letter-spacing:18.530436px;}
.ls11{letter-spacing:18.889090px;}
.lsf{letter-spacing:18.948865px;}
.ls8{letter-spacing:19.187968px;}
.ls45{letter-spacing:25.942610px;}
.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;}
}
.wsc2{word-spacing:-60.120000px;}
.wsc{word-spacing:-22.718660px;}
.ws78{word-spacing:-14.975892px;}
.ws4a{word-spacing:-14.943900px;}
.wse{word-spacing:-14.355754px;}
.ws10f{word-spacing:-13.449600px;}
.ws76{word-spacing:-12.161520px;}
.ws77{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.wsac{word-spacing:-3.559104px;}
.ws8d{word-spacing:-3.492972px;}
.ws8f{word-spacing:-3.474936px;}
.ws8e{word-spacing:-3.372732px;}
.wse5{word-spacing:-3.180348px;}
.ws8c{word-spacing:-3.156300px;}
.wsab{word-spacing:-3.144276px;}
.wse6{word-spacing:-3.120228px;}
.wsdd{word-spacing:-3.030048px;}
.ws63{word-spacing:-2.988780px;}
.wsf6{word-spacing:-2.428848px;}
.wsf5{word-spacing:-2.416824px;}
.ws35{word-spacing:-2.391024px;}
.wsb7{word-spacing:-2.211697px;}
.ws105{word-spacing:-2.032370px;}
.ws106{word-spacing:-1.972595px;}
.wsb9{word-spacing:-1.912819px;}
.wsb8{word-spacing:-1.793268px;}
.ws107{word-spacing:-1.613941px;}
.ws43{word-spacing:-1.554166px;}
.ws14{word-spacing:-1.452557px;}
.wsfe{word-spacing:-1.434614px;}
.wseb{word-spacing:-1.394784px;}
.wsb0{word-spacing:-1.370736px;}
.wsb1{word-spacing:-1.334664px;}
.ws22{word-spacing:-1.237363px;}
.ws104{word-spacing:-1.016185px;}
.ws83{word-spacing:-1.016028px;}
.wsf1{word-spacing:-0.997992px;}
.ws84{word-spacing:-0.985968px;}
.ws10a{word-spacing:-0.968371px;}
.ws45{word-spacing:-0.956410px;}
.ws47{word-spacing:-0.896634px;}
.wsc3{word-spacing:-0.806976px;}
.wsfd{word-spacing:-0.777083px;}
.ws29{word-spacing:-0.717307px;}
.ws21{word-spacing:-0.699379px;}
.ws9b{word-spacing:-0.679356px;}
.ws49{word-spacing:-0.657532px;}
.ws89{word-spacing:-0.619236px;}
.wsbc{word-spacing:-0.597756px;}
.wsf0{word-spacing:-0.577152px;}
.ws8a{word-spacing:-0.571140px;}
.ws52{word-spacing:-0.537980px;}
.ws61{word-spacing:-0.418429px;}
.ws62{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.322790px;}
.wsce{word-spacing:-0.318636px;}
.ws2e{word-spacing:-0.298878px;}
.ws7b{word-spacing:-0.277704px;}
.wsd9{word-spacing:-0.276552px;}
.ws12e{word-spacing:-0.268992px;}
.wscd{word-spacing:-0.258516px;}
.wsee{word-spacing:-0.243000px;}
.ws33{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.wsed{word-spacing:-0.205200px;}
.ws39{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.161395px;}
.ws90{word-spacing:-0.126252px;}
.ws2b{word-spacing:-0.119551px;}
.ws10d{word-spacing:-0.107597px;}
.ws7c{word-spacing:-0.081396px;}
.ws79{word-spacing:-0.060120px;}
.ws41{word-spacing:-0.059776px;}
.ws7a{word-spacing:-0.057456px;}
.ws16{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.ws138{word-spacing:-0.013267px;}
.ws116{word-spacing:-0.012355px;}
.ws140{word-spacing:-0.011846px;}
.ws124{word-spacing:-0.010339px;}
.ws112{word-spacing:-0.010147px;}
.ws137{word-spacing:-0.009667px;}
.ws11c{word-spacing:-0.007910px;}
.ws13f{word-spacing:-0.007709px;}
.ws12a{word-spacing:-0.007661px;}
.ws13d{word-spacing:-0.006710px;}
.ws113{word-spacing:-0.006422px;}
.ws12b{word-spacing:-0.006038px;}
.ws132{word-spacing:-0.005866px;}
.ws3{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws125{word-spacing:0.001075px;}
.ws30{word-spacing:0.003599px;}
.wsd4{word-spacing:0.006012px;}
.ws82{word-spacing:0.012024px;}
.ws94{word-spacing:0.036072px;}
.ws2{word-spacing:0.041843px;}
.ws12{word-spacing:0.053798px;}
.wsd3{word-spacing:0.054108px;}
.ws2d{word-spacing:0.059776px;}
.wsf3{word-spacing:0.066132px;}
.ws9c{word-spacing:0.072144px;}
.ws80{word-spacing:0.078156px;}
.wsd{word-spacing:0.107597px;}
.wsf2{word-spacing:0.108216px;}
.wsb5{word-spacing:0.114228px;}
.ws42{word-spacing:0.119551px;}
.wsef{word-spacing:0.124200px;}
.ws81{word-spacing:0.126252px;}
.wsb6{word-spacing:0.138276px;}
.ws1e{word-spacing:0.161395px;}
.ws38{word-spacing:0.179327px;}
.wsf{word-spacing:0.191282px;}
.ws25{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws27{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.ws2c{word-spacing:0.358654px;}
.wsd5{word-spacing:0.396792px;}
.ws4c{word-spacing:0.418429px;}
.ws8b{word-spacing:0.426852px;}
.wsd6{word-spacing:0.438876px;}
.wsd7{word-spacing:0.444888px;}
.ws9f{word-spacing:0.456912px;}
.ws3a{word-spacing:0.478205px;}
.wsdb{word-spacing:0.480960px;}
.ws4e{word-spacing:0.537980px;}
.wsdc{word-spacing:0.583164px;}
.ws117{word-spacing:0.591782px;}
.wsf8{word-spacing:0.657532px;}
.ws11a{word-spacing:0.699379px;}
.ws48{word-spacing:0.717307px;}
.ws110{word-spacing:0.753178px;}
.wsa2{word-spacing:0.757512px;}
.ws65{word-spacing:0.777083px;}
.ws32{word-spacing:0.836858px;}
.wsa3{word-spacing:0.907812px;}
.ws20{word-spacing:0.914573px;}
.wsc6{word-spacing:0.956410px;}
.wsc7{word-spacing:1.016185px;}
.ws6f{word-spacing:1.075961px;}
.wsbb{word-spacing:1.135736px;}
.wse2{word-spacing:1.148292px;}
.wsf4{word-spacing:1.178352px;}
.ws7e{word-spacing:1.190376px;}
.ws60{word-spacing:1.195512px;}
.wsdf{word-spacing:1.196388px;}
.wse3{word-spacing:1.208412px;}
.ws13{word-spacing:1.237363px;}
.ws70{word-spacing:1.255288px;}
.ws5d{word-spacing:1.315063px;}
.ws108{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws1b{word-spacing:1.398758px;}
.ws95{word-spacing:1.436868px;}
.ws23{word-spacing:1.452557px;}
.ws36{word-spacing:1.494390px;}
.ws7f{word-spacing:1.533060px;}
.ws99{word-spacing:1.551096px;}
.ws2a{word-spacing:1.554166px;}
.wsa1{word-spacing:1.563120px;}
.wscf{word-spacing:1.581156px;}
.wsde{word-spacing:1.587168px;}
.wsbe{word-spacing:1.613941px;}
.wsa0{word-spacing:1.653300px;}
.ws11d{word-spacing:1.667750px;}
.ws5c{word-spacing:1.733492px;}
.wsbd{word-spacing:1.793268px;}
.ws135{word-spacing:1.829146px;}
.wsb2{word-spacing:1.851696px;}
.ws4b{word-spacing:1.853044px;}
.ws139{word-spacing:1.882944px;}
.ws9a{word-spacing:1.905804px;}
.wsfa{word-spacing:1.912819px;}
.wsec{word-spacing:1.971000px;}
.ws73{word-spacing:1.972595px;}
.ws120{word-spacing:1.990541px;}
.ws133{word-spacing:2.044339px;}
.ws103{word-spacing:2.092146px;}
.ws13c{word-spacing:2.098138px;}
.ws44{word-spacing:2.151922px;}
.ws13b{word-spacing:2.151936px;}
.ws5f{word-spacing:2.211697px;}
.ws4f{word-spacing:2.271473px;}
.ws66{word-spacing:2.331248px;}
.ws6b{word-spacing:2.391024px;}
.ws6a{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws126{word-spacing:2.528525px;}
.ws71{word-spacing:2.570351px;}
.wsb3{word-spacing:2.579148px;}
.ws1f{word-spacing:2.582323px;}
.ws53{word-spacing:2.630126px;}
.ws24{word-spacing:2.636122px;}
.ws4d{word-spacing:2.689902px;}
.wsb4{word-spacing:2.723436px;}
.wsfc{word-spacing:2.749678px;}
.ws127{word-spacing:2.851315px;}
.ws54{word-spacing:2.869229px;}
.wsaf{word-spacing:2.903796px;}
.ws55{word-spacing:2.929004px;}
.ws109{word-spacing:2.942088px;}
.ws92{word-spacing:2.957904px;}
.ws12f{word-spacing:2.958912px;}
.wse4{word-spacing:2.981952px;}
.ws91{word-spacing:3.042072px;}
.wsf7{word-spacing:3.108331px;}
.ws121{word-spacing:3.174106px;}
.ws10c{word-spacing:3.180576px;}
.ws118{word-spacing:3.216451px;}
.ws12c{word-spacing:3.218410px;}
.ws122{word-spacing:3.218688px;}
.ws130{word-spacing:3.219696px;}
.ws136{word-spacing:3.219802px;}
.ws134{word-spacing:3.220320px;}
.ws111{word-spacing:3.220406px;}
.ws11f{word-spacing:3.223296px;}
.ws128{word-spacing:3.225072px;}
.ws37{word-spacing:3.227882px;}
.ws10e{word-spacing:3.227904px;}
.ws123{word-spacing:3.281702px;}
.ws13e{word-spacing:3.335501px;}
.ws3c{word-spacing:3.347434px;}
.wsa5{word-spacing:3.384756px;}
.ws3d{word-spacing:3.407209px;}
.ws119{word-spacing:3.443098px;}
.ws11{word-spacing:3.455535px;}
.wsa4{word-spacing:3.462912px;}
.ws141{word-spacing:3.496896px;}
.ws75{word-spacing:3.526760px;}
.ws15{word-spacing:3.550694px;}
.ws26{word-spacing:3.583749px;}
.ws28{word-spacing:3.586536px;}
.ws101{word-spacing:3.646312px;}
.ws17{word-spacing:3.658291px;}
.ws88{word-spacing:3.667320px;}
.ws6e{word-spacing:3.706087px;}
.ws19{word-spacing:3.712090px;}
.wsc9{word-spacing:3.721428px;}
.ws87{word-spacing:3.739464px;}
.wscc{word-spacing:3.745476px;}
.ws68{word-spacing:3.765863px;}
.wscb{word-spacing:3.787560px;}
.wsca{word-spacing:3.823632px;}
.wsc8{word-spacing:3.825638px;}
.ws5e{word-spacing:3.885414px;}
.ws74{word-spacing:3.945190px;}
.ws58{word-spacing:4.004965px;}
.wsc0{word-spacing:4.124516px;}
.ws129{word-spacing:4.303872px;}
.ws1a{word-spacing:4.357670px;}
.ws64{word-spacing:4.363619px;}
.ws85{word-spacing:4.400784px;}
.wsd2{word-spacing:4.418820px;}
.wsc5{word-spacing:4.423394px;}
.wsea{word-spacing:4.436856px;}
.ws12d{word-spacing:4.465267px;}
.ws3b{word-spacing:4.542946px;}
.ws131{word-spacing:4.572864px;}
.ws50{word-spacing:4.722272px;}
.wse1{word-spacing:4.779540px;}
.wsd0{word-spacing:4.791564px;}
.wse9{word-spacing:4.797576px;}
.ws86{word-spacing:4.809600px;}
.wsd1{word-spacing:4.821624px;}
.wse0{word-spacing:4.833648px;}
.ws3e{word-spacing:4.841824px;}
.ws11b{word-spacing:4.841856px;}
.ws6d{word-spacing:4.901599px;}
.wsf9{word-spacing:4.961375px;}
.ws51{word-spacing:5.021150px;}
.wse8{word-spacing:5.110200px;}
.wsd8{word-spacing:5.116212px;}
.wse7{word-spacing:5.134248px;}
.ws6c{word-spacing:5.140702px;}
.ws57{word-spacing:5.260253px;}
.ws56{word-spacing:5.320028px;}
.ws115{word-spacing:5.326042px;}
.ws114{word-spacing:5.379840px;}
.ws10b{word-spacing:5.433638px;}
.ws9{word-spacing:5.481407px;}
.ws5b{word-spacing:5.559131px;}
.ws72{word-spacing:5.618906px;}
.ws67{word-spacing:5.738458px;}
.wsff{word-spacing:5.798233px;}
.ws59{word-spacing:5.858009px;}
.wsba{word-spacing:5.917784px;}
.wsbf{word-spacing:5.977560px;}
.wsae{word-spacing:6.222420px;}
.wsc1{word-spacing:6.276438px;}
.ws5a{word-spacing:6.336214px;}
.wsad{word-spacing:6.354684px;}
.wsc4{word-spacing:6.402010px;}
.ws2f{word-spacing:6.575316px;}
.ws3f{word-spacing:6.694867px;}
.ws11e{word-spacing:6.724800px;}
.ws69{word-spacing:6.993745px;}
.ws13a{word-spacing:7.208986px;}
.ws100{word-spacing:7.232848px;}
.wsda{word-spacing:7.310592px;}
.wsfb{word-spacing:8.009930px;}
.ws46{word-spacing:8.368584px;}
.ws9e{word-spacing:9.048060px;}
.ws9d{word-spacing:9.096156px;}
.wsa7{word-spacing:10.082124px;}
.wsa6{word-spacing:10.214388px;}
.ws93{word-spacing:10.899756px;}
.ws96{word-spacing:11.182320px;}
.ws97{word-spacing:11.260476px;}
.ws7d{word-spacing:11.620476px;}
.ws8{word-spacing:11.841512px;}
.wsa9{word-spacing:13.088124px;}
.wsaa{word-spacing:13.094136px;}
.wsa8{word-spacing:13.166280px;}
.ws7{word-spacing:13.306010px;}
.ws4{word-spacing:15.481836px;}
.ws98{word-spacing:15.955848px;}
.wsa{word-spacing:16.067635px;}
.ws102{word-spacing:20.024826px;}
.ws6{word-spacing:29.262958px;}
._1b{margin-left:-7.961609px;}
._a{margin-left:-6.939994px;}
._6{margin-left:-5.738831px;}
._5{margin-left:-4.656539px;}
._1{margin-left:-3.060159px;}
._4{margin-left:-1.464498px;}
._18{width:1.254456px;}
._11{width:3.885414px;}
._0{width:12.971268px;}
._7{width:15.081430px;}
._b{width:16.193318px;}
._10{width:17.364808px;}
._9{width:18.410994px;}
._d{width:19.797811px;}
._8{width:21.639426px;}
._17{width:22.660976px;}
._14{width:23.760797px;}
._2{width:25.314894px;}
._1e{width:27.018563px;}
._c{width:28.028966px;}
._12{width:29.170493px;}
._13{width:30.174582px;}
._3{width:31.256572px;}
._1f{width:32.608378px;}
._15{width:34.460629px;}
._16{width:35.745809px;}
._1a{width:37.210307px;}
._1c{width:42.231457px;}
._e{width:882.234448px;}
._19{width:2105.489484px;}
._1d{width:2512.545956px;}
._f{width:2536.455956px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y11b{bottom:-227.792550px;}
.y139{bottom:-159.300546px;}
.y138{bottom:-140.131284px;}
.y137{bottom:-120.871842px;}
.y136{bottom:-101.612400px;}
.ye1{bottom:-87.762150px;}
.y135{bottom:-64.803000px;}
.y134{bottom:-47.432550px;}
.y133{bottom:-30.152550px;}
.y132{bottom:-7.732371px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.062574px;}
.y37{bottom:9.233944px;}
.y36{bottom:26.903761px;}
.y66{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y144{bottom:103.621500px;}
.y34{bottom:104.646000px;}
.y65{bottom:109.777500px;}
.y1a0{bottom:111.975000px;}
.y1d6{bottom:116.458500px;}
.y158{bottom:118.699500px;}
.y9c{bottom:119.148000px;}
.ybf{bottom:119.596500px;}
.y143{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y64{bottom:128.607000px;}
.y19f{bottom:129.235500px;}
.y1d5{bottom:133.719000px;}
.y157{bottom:137.529000px;}
.y9b{bottom:137.977500px;}
.ybe{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y105{bottom:140.833500px;}
.y142{bottom:141.279000px;}
.y19e{bottom:146.496000px;}
.y63{bottom:147.436500px;}
.y1d4{bottom:150.978000px;}
.y156{bottom:156.358500px;}
.y9a{bottom:156.807000px;}
.ybd{bottom:157.255500px;}
.y31{bottom:158.310000px;}
.y104{bottom:160.066500px;}
.y141{bottom:160.108500px;}
.y19d{bottom:163.756500px;}
.y62{bottom:166.266000px;}
.y1d3{bottom:168.238500px;}
.y155{bottom:175.188000px;}
.y99{bottom:175.636500px;}
.ybc{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y140{bottom:178.938000px;}
.y19c{bottom:181.015500px;}
.yde{bottom:182.495100px;}
.y61{bottom:185.095500px;}
.y1d2{bottom:185.499000px;}
.y166{bottom:185.679000px;}
.y154{bottom:194.017500px;}
.y2f{bottom:194.086500px;}
.y98{bottom:194.466000px;}
.ybb{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y13f{bottom:197.767500px;}
.y19b{bottom:198.276000px;}
.y1d1{bottom:202.759500px;}
.y60{bottom:203.925000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2e{bottom:211.974000px;}
.y165{bottom:212.220000px;}
.y153{bottom:212.847000px;}
.y97{bottom:213.295500px;}
.yba{bottom:213.744000px;}
.y19a{bottom:215.536500px;}
.y13e{bottom:216.597000px;}
.y1d0{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y5f{bottom:222.754500px;}
.y164{bottom:229.794000px;}
.y2d{bottom:229.863000px;}
.y152{bottom:231.676500px;}
.y96{bottom:232.125000px;}
.yb9{bottom:232.573500px;}
.y199{bottom:232.797000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y13d{bottom:235.426500px;}
.y1cf{bottom:237.280500px;}
.y5e{bottom:241.582500px;}
.y198{bottom:250.057500px;}
.y151{bottom:250.506000px;}
.y95{bottom:250.954500px;}
.yb8{bottom:251.403000px;}
.y1ce{bottom:254.541000px;}
.y163{bottom:256.335000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y5d{bottom:264.895500px;}
.y197{bottom:267.318000px;}
.y13c{bottom:268.860000px;}
.y150{bottom:269.335500px;}
.y94{bottom:269.784000px;}
.yb7{bottom:270.232500px;}
.y1cd{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y162{bottom:282.874500px;}
.y196{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y13b{bottom:288.093000px;}
.y14f{bottom:288.165000px;}
.y93{bottom:288.613500px;}
.yb6{bottom:289.062000px;}
.y2c{bottom:299.892000px;}
.y195{bottom:301.839000px;}
.y1cc{bottom:306.321000px;}
.y14e{bottom:306.994500px;}
.y13a{bottom:307.324500px;}
.y92{bottom:307.443000px;}
.yb5{bottom:307.891500px;}
.y161{bottom:309.415500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2b{bottom:317.779500px;}
.y194{bottom:319.099500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1cb{bottom:323.581500px;}
.y14d{bottom:325.824000px;}
.y91{bottom:326.272500px;}
.yb4{bottom:326.719500px;}
.y118{bottom:329.754000px;}
.y2a{bottom:335.667000px;}
.y160{bottom:335.956500px;}
.y193{bottom:336.358500px;}
.y5c{bottom:340.045500px;}
.y1ca{bottom:340.842000px;}
.y14c{bottom:344.653500px;}
.yb1{bottom:345.102000px;}
.yb3{bottom:345.549000px;}
.y102{bottom:347.042160px;}
.yf{bottom:348.133500px;}
.y90{bottom:349.584000px;}
.y15f{bottom:353.530500px;}
.y29{bottom:353.554500px;}
.y192{bottom:353.619000px;}
.y1c9{bottom:358.102500px;}
.y5b{bottom:359.503500px;}
.y14b{bottom:363.483000px;}
.yb0{bottom:363.931500px;}
.yb2{bottom:364.378500px;}
.y101{bottom:366.211422px;}
.y191{bottom:370.879500px;}
.y15e{bottom:371.104500px;}
.y1c8{bottom:375.363000px;}
.y28{bottom:380.409000px;}
.y14a{bottom:382.312500px;}
.yaf{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y100{bottom:385.470864px;}
.ye{bottom:386.785499px;}
.y190{bottom:388.140000px;}
.y15d{bottom:388.678500px;}
.y1c7{bottom:392.623500px;}
.y5a{bottom:396.892500px;}
.y27{bottom:398.298000px;}
.y149{bottom:401.142000px;}
.yae{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.yff{bottom:404.641629px;}
.y18f{bottom:405.400500px;}
.y15c{bottom:406.252500px;}
.yd{bottom:408.044999px;}
.y1c6{bottom:409.884000px;}
.y26{bottom:416.185500px;}
.y59{bottom:416.350500px;}
.yad{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.y18e{bottom:422.661000px;}
.y15b{bottom:423.826500px;}
.yfe{bottom:423.901071px;}
.y148{bottom:424.453500px;}
.y1c5{bottom:427.144500px;}
.y131{bottom:427.417692px;}
.y25{bottom:434.073000px;}
.y58{bottom:435.807000px;}
.yac{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.y18d{bottom:439.921500px;}
.y15a{bottom:441.400500px;}
.yfd{bottom:443.160513px;}
.y1c4{bottom:444.403500px;}
.y130{bottom:446.677134px;}
.y24{bottom:451.962000px;}
.y57{bottom:455.263500px;}
.y18c{bottom:457.182000px;}
.yab{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.y1c3{bottom:461.664000px;}
.yfc{bottom:462.329775px;}
.y12f{bottom:465.936576px;}
.y23{bottom:469.849500px;}
.y18b{bottom:474.441000px;}
.y56{bottom:474.721500px;}
.yaa{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y1c2{bottom:478.924500px;}
.yfb{bottom:481.589217px;}
.y12e{bottom:485.105838px;}
.y22{bottom:487.737000px;}
.y18a{bottom:491.701500px;}
.y55{bottom:494.178000px;}
.ya9{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.yfa{bottom:500.848659px;}
.yc{bottom:502.864502px;}
.y12d{bottom:504.365280px;}
.y189{bottom:508.962000px;}
.y1c1{bottom:513.445500px;}
.y54{bottom:513.634500px;}
.ya8{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.yf9{bottom:520.019424px;}
.yb{bottom:520.864502px;}
.y12c{bottom:523.534542px;}
.y188{bottom:526.222500px;}
.y1c0{bottom:530.706000px;}
.y53{bottom:533.092500px;}
.ydd{bottom:533.247000px;}
.ya7{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.y106{bottom:537.879000px;}
.ya{bottom:538.864499px;}
.yf8{bottom:539.278866px;}
.y12b{bottom:542.793984px;}
.y187{bottom:543.483000px;}
.y1bf{bottom:547.966500px;}
.ydc{bottom:552.076500px;}
.ya6{bottom:552.225000px;}
.y52{bottom:552.549000px;}
.y86{bottom:552.673500px;}
.y9{bottom:556.864499px;}
.yf7{bottom:558.448128px;}
.y186{bottom:560.743500px;}
.y12a{bottom:562.053426px;}
.y1be{bottom:565.227000px;}
.ydb{bottom:570.906000px;}
.ya5{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.y51{bottom:572.007000px;}
.yf6{bottom:577.707570px;}
.y185{bottom:578.004000px;}
.y129{bottom:581.224191px;}
.y1bd{bottom:582.487500px;}
.yda{bottom:589.734000px;}
.ya4{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y50{bottom:591.463500px;}
.y184{bottom:595.264500px;}
.yf5{bottom:596.967012px;}
.y1bc{bottom:599.746500px;}
.y128{bottom:600.483633px;}
.yd9{bottom:608.563500px;}
.ya3{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.y4f{bottom:610.920000px;}
.y183{bottom:612.525000px;}
.y1bb{bottom:617.007000px;}
.y127{bottom:619.652895px;}
.yf4{bottom:620.636256px;}
.yd8{bottom:627.393000px;}
.ya2{bottom:627.543000px;}
.y82{bottom:627.991500px;}
.y182{bottom:629.784000px;}
.y4e{bottom:630.378000px;}
.y1ba{bottom:634.267500px;}
.y126{bottom:638.912337px;}
.yf3{bottom:639.895698px;}
.y8{bottom:645.510000px;}
.yd7{bottom:646.222500px;}
.ya1{bottom:646.372500px;}
.y81{bottom:646.821000px;}
.y181{bottom:647.044500px;}
.y4d{bottom:649.834500px;}
.y1b9{bottom:651.528000px;}
.y125{bottom:658.171779px;}
.yf2{bottom:659.064960px;}
.y180{bottom:664.305000px;}
.yd6{bottom:665.052000px;}
.ya0{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1b8{bottom:668.788500px;}
.y4c{bottom:669.291000px;}
.y124{bottom:677.341041px;}
.yf1{bottom:678.324402px;}
.y17f{bottom:681.565500px;}
.yd5{bottom:683.881500px;}
.y9f{bottom:684.031500px;}
.y7f{bottom:684.480000px;}
.y1b7{bottom:686.049000px;}
.y4b{bottom:688.749000px;}
.y123{bottom:696.600483px;}
.yf0{bottom:697.583844px;}
.y17e{bottom:698.826000px;}
.yd4{bottom:702.711000px;}
.y9e{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.y4a{bottom:708.205500px;}
.y122{bottom:715.859925px;}
.y17d{bottom:716.086500px;}
.yef{bottom:716.754609px;}
.y1b6{bottom:720.570000px;}
.yd3{bottom:721.540500px;}
.y147{bottom:721.690500px;}
.y7d{bottom:722.139000px;}
.y9d{bottom:726.174000px;}
.y6{bottom:726.298500px;}
.y49{bottom:727.663500px;}
.y17c{bottom:733.347000px;}
.yee{bottom:736.014051px;}
.y1b5{bottom:737.829000px;}
.y121{bottom:739.529169px;}
.yd2{bottom:740.370000px;}
.y146{bottom:740.520000px;}
.y7c{bottom:740.968500px;}
.y48{bottom:747.120000px;}
.y17b{bottom:750.607500px;}
.y3{bottom:752.599495px;}
.y1b4{bottom:755.089500px;}
.yed{bottom:755.183313px;}
.yd1{bottom:759.199500px;}
.y117{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.y47{bottom:766.576500px;}
.y17a{bottom:767.866500px;}
.y1b3{bottom:772.350000px;}
.yec{bottom:774.442755px;}
.y120{bottom:776.788539px;}
.yd0{bottom:778.029000px;}
.y116{bottom:778.179000px;}
.y7a{bottom:778.627500px;}
.y179{bottom:785.127000px;}
.y46{bottom:786.034500px;}
.y1b2{bottom:789.610500px;}
.y11f{bottom:795.957801px;}
.y115{bottom:797.008500px;}
.y79{bottom:797.457000px;}
.yeb{bottom:798.202179px;}
.y178{bottom:802.387500px;}
.ycf{bottom:804.330000px;}
.y45{bottom:805.491000px;}
.y1b1{bottom:806.871000px;}
.y11e{bottom:815.217243px;}
.y114{bottom:815.838000px;}
.y78{bottom:816.286500px;}
.yea{bottom:817.371441px;}
.y177{bottom:819.648000px;}
.yce{bottom:823.159500px;}
.y1b0{bottom:824.131500px;}
.y44{bottom:824.947500px;}
.y11d{bottom:834.476685px;}
.y113{bottom:834.667500px;}
.y77{bottom:835.114500px;}
.ye9{bottom:836.630883px;}
.y176{bottom:836.908500px;}
.y1af{bottom:841.392000px;}
.ycd{bottom:841.989000px;}
.y43{bottom:844.405500px;}
.y112{bottom:853.497000px;}
.y11c{bottom:853.647450px;}
.y76{bottom:853.944000px;}
.y1d9{bottom:854.094000px;}
.y175{bottom:854.169000px;}
.ye8{bottom:855.890325px;}
.y1ae{bottom:858.652500px;}
.ycc{bottom:860.818500px;}
.y1d8{bottom:871.354500px;}
.y174{bottom:871.429500px;}
.y111{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.ye7{bottom:875.059587px;}
.y1ad{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.ycb{bottom:879.648000px;}
.y42{bottom:882.990000px;}
.y1d7{bottom:888.615000px;}
.y173{bottom:888.690000px;}
.y110{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.y1ac{bottom:893.172000px;}
.ye6{bottom:894.319029px;}
.yca{bottom:898.477500px;}
.y41{bottom:899.130000px;}
.y40{bottom:903.469500px;}
.y172{bottom:905.950500px;}
.y11a{bottom:908.367585px;}
.y10f{bottom:909.984000px;}
.y73{bottom:910.432500px;}
.ye5{bottom:913.488291px;}
.y3f{bottom:915.270000px;}
.yc9{bottom:917.307000px;}
.y119{bottom:917.997450px;}
.y171{bottom:923.209500px;}
.y1ab{bottom:927.693000px;}
.y10e{bottom:928.813500px;}
.y72{bottom:929.262000px;}
.y3e{bottom:931.410000px;}
.yc8{bottom:936.136500px;}
.ye4{bottom:937.247715px;}
.y170{bottom:940.470000px;}
.y1aa{bottom:944.953500px;}
.y3d{bottom:947.548500px;}
.y10d{bottom:947.643000px;}
.y71{bottom:948.091500px;}
.y3c{bottom:951.888000px;}
.yc7{bottom:954.966000px;}
.y16f{bottom:957.730500px;}
.y1a9{bottom:962.214000px;}
.y10c{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.ye3{bottom:974.507085px;}
.y16e{bottom:974.991000px;}
.y1a8{bottom:979.474500px;}
.yc6{bottom:981.267000px;}
.y10b{bottom:985.302000px;}
.y6f{bottom:985.750500px;}
.y145{bottom:989.785500px;}
.y16d{bottom:992.251500px;}
.ye2{bottom:993.677850px;}
.y3b{bottom:996.565500px;}
.y1a7{bottom:996.735000px;}
.yc5{bottom:1000.096500px;}
.y10a{bottom:1004.131500px;}
.y6e{bottom:1004.580000px;}
.y16c{bottom:1009.512000px;}
.y1a6{bottom:1013.995500px;}
.yc4{bottom:1018.926000px;}
.y109{bottom:1022.961000px;}
.y6d{bottom:1023.409500px;}
.y16b{bottom:1026.772500px;}
.y1a5{bottom:1031.254500px;}
.y3a{bottom:1036.485000px;}
.yc3{bottom:1037.755500px;}
.y108{bottom:1041.790500px;}
.y6c{bottom:1042.239000px;}
.y16a{bottom:1044.033000px;}
.y159{bottom:1046.274000px;}
.ye0{bottom:1048.397985px;}
.y1a4{bottom:1048.515000px;}
.yc2{bottom:1056.585000px;}
.ydf{bottom:1058.027850px;}
.y6b{bottom:1061.068500px;}
.y169{bottom:1061.292000px;}
.y39{bottom:1064.728500px;}
.y107{bottom:1065.103500px;}
.y1a3{bottom:1065.775500px;}
.yc1{bottom:1075.414500px;}
.y168{bottom:1078.552500px;}
.y6a{bottom:1079.898000px;}
.y1a2{bottom:1083.036000px;}
.y38{bottom:1092.972000px;}
.yc0{bottom:1094.244000px;}
.y167{bottom:1095.813000px;}
.y69{bottom:1098.727500px;}
.y1a1{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y35{bottom:1136.460000px;}
.y67{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h18{height:34.811191px;}
.h11{height:34.813397px;}
.h15{height:35.052500px;}
.h17{height:35.255391px;}
.h12{height:39.165235px;}
.h1d{height:39.260742px;}
.h1e{height:39.434227px;}
.h1c{height:39.761719px;}
.h13{height:43.038432px;}
.h14{height:43.516637px;}
.h19{height:43.710293px;}
.hd{height:43.815515px;}
.h1a{height:44.268047px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.405312px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h16{height:327.110400px;}
.h1b{height:406.087500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:368.560500px;}
.w6{width:468.261000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xb{left:-203.655000px;}
.xf{left:-196.933500px;}
.xc{left:-8.085000px;}
.x10{left:-1.363500px;}
.x0{left:0.000000px;}
.xd{left:23.773392px;}
.x11{left:30.497897px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x13{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xa{left:247.348500px;}
.x7{left:249.591000px;}
.x8{left:269.764500px;}
.x9{left:281.479500px;}
.xe{left:381.883954px;}
.x3{left:454.959000px;}
.x12{left:468.887700px;}
@media print{
.v2{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2e{letter-spacing:-0.309952pt;}
.ls30{letter-spacing:-0.122912pt;}
.ls2f{letter-spacing:-0.117568pt;}
.ls36{letter-spacing:-0.112224pt;}
.ls33{letter-spacing:-0.101536pt;}
.ls39{letter-spacing:-0.096192pt;}
.ls35{letter-spacing:-0.080160pt;}
.ls31{letter-spacing:-0.058784pt;}
.ls29{letter-spacing:-0.048096pt;}
.ls37{letter-spacing:-0.042752pt;}
.ls2c{letter-spacing:-0.037408pt;}
.ls38{letter-spacing:-0.032064pt;}
.ls2b{letter-spacing:-0.026720pt;}
.ls27{letter-spacing:-0.025536pt;}
.ls34{letter-spacing:-0.021376pt;}
.ls3a{letter-spacing:-0.016032pt;}
.ls2a{letter-spacing:-0.010688pt;}
.ls2d{letter-spacing:-0.005344pt;}
.ls28{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005344pt;}
.ls23{letter-spacing:0.010688pt;}
.ls3d{letter-spacing:0.014400pt;}
.ls1a{letter-spacing:0.016032pt;}
.ls22{letter-spacing:0.021376pt;}
.ls1d{letter-spacing:0.026720pt;}
.ls3e{letter-spacing:0.028800pt;}
.ls3b{letter-spacing:0.032064pt;}
.ls25{letter-spacing:0.037408pt;}
.ls3c{letter-spacing:0.042752pt;}
.ls21{letter-spacing:0.048096pt;}
.ls40{letter-spacing:0.052800pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls3f{letter-spacing:0.062400pt;}
.ls24{letter-spacing:0.064128pt;}
.ls20{letter-spacing:0.069472pt;}
.ls1c{letter-spacing:0.074816pt;}
.ls41{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.085504pt;}
.ls32{letter-spacing:0.090848pt;}
.ls1e{letter-spacing:0.106880pt;}
.ls18{letter-spacing:0.157472pt;}
.ls26{letter-spacing:0.160320pt;}
.ls17{letter-spacing:0.170240pt;}
.ls43{letter-spacing:1.766400pt;}
.ls1{letter-spacing:2.665203pt;}
.ls42{letter-spacing:6.487616pt;}
.ls2{letter-spacing:10.626533pt;}
.ls44{letter-spacing:12.964663pt;}
.ls6{letter-spacing:13.017797pt;}
.ls9{letter-spacing:13.070931pt;}
.ls46{letter-spacing:13.124065pt;}
.ls4{letter-spacing:13.283467pt;}
.ls47{letter-spacing:13.336601pt;}
.ls5{letter-spacing:13.389734pt;}
.lsb{letter-spacing:13.442868pt;}
.ls3{letter-spacing:13.496002pt;}
.ls14{letter-spacing:13.602270pt;}
.ls13{letter-spacing:13.655404pt;}
.ls15{letter-spacing:13.708538pt;}
.lsa{letter-spacing:13.761671pt;}
.lsd{letter-spacing:13.867939pt;}
.lse{letter-spacing:14.027341pt;}
.ls7{letter-spacing:15.833892pt;}
.ls12{letter-spacing:15.993294pt;}
.ls10{letter-spacing:16.205829pt;}
.lsc{letter-spacing:16.365231pt;}
.ls16{letter-spacing:16.471499pt;}
.ls11{letter-spacing:16.790302pt;}
.lsf{letter-spacing:16.843436pt;}
.ls8{letter-spacing:17.055971pt;}
.ls45{letter-spacing:23.060098pt;}
.wsc2{word-spacing:-53.440000pt;}
.wsc{word-spacing:-20.194365pt;}
.ws78{word-spacing:-13.311904pt;}
.ws4a{word-spacing:-13.283467pt;}
.wse{word-spacing:-12.760670pt;}
.ws10f{word-spacing:-11.955200pt;}
.ws76{word-spacing:-10.810240pt;}
.ws77{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.wsac{word-spacing:-3.163648pt;}
.ws8d{word-spacing:-3.104864pt;}
.ws8f{word-spacing:-3.088832pt;}
.ws8e{word-spacing:-2.997984pt;}
.wse5{word-spacing:-2.826976pt;}
.ws8c{word-spacing:-2.805600pt;}
.wsab{word-spacing:-2.794912pt;}
.wse6{word-spacing:-2.773536pt;}
.wsdd{word-spacing:-2.693376pt;}
.ws63{word-spacing:-2.656693pt;}
.wsf6{word-spacing:-2.158976pt;}
.wsf5{word-spacing:-2.148288pt;}
.ws35{word-spacing:-2.125355pt;}
.wsb7{word-spacing:-1.965953pt;}
.ws105{word-spacing:-1.806551pt;}
.ws106{word-spacing:-1.753418pt;}
.wsb9{word-spacing:-1.700284pt;}
.wsb8{word-spacing:-1.594016pt;}
.ws107{word-spacing:-1.434614pt;}
.ws43{word-spacing:-1.381481pt;}
.ws14{word-spacing:-1.291162pt;}
.wsfe{word-spacing:-1.275213pt;}
.wseb{word-spacing:-1.239808pt;}
.wsb0{word-spacing:-1.218432pt;}
.wsb1{word-spacing:-1.186368pt;}
.ws22{word-spacing:-1.099878pt;}
.ws104{word-spacing:-0.903276pt;}
.ws83{word-spacing:-0.903136pt;}
.wsf1{word-spacing:-0.887104pt;}
.ws84{word-spacing:-0.876416pt;}
.ws10a{word-spacing:-0.860774pt;}
.ws45{word-spacing:-0.850142pt;}
.ws47{word-spacing:-0.797008pt;}
.wsc3{word-spacing:-0.717312pt;}
.wsfd{word-spacing:-0.690740pt;}
.ws29{word-spacing:-0.637606pt;}
.ws21{word-spacing:-0.621670pt;}
.ws9b{word-spacing:-0.603872pt;}
.ws49{word-spacing:-0.584473pt;}
.ws89{word-spacing:-0.550432pt;}
.wsbc{word-spacing:-0.531339pt;}
.wsf0{word-spacing:-0.513024pt;}
.ws8a{word-spacing:-0.507680pt;}
.ws52{word-spacing:-0.478205pt;}
.ws61{word-spacing:-0.371937pt;}
.ws62{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.286925pt;}
.wsce{word-spacing:-0.283232pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws7b{word-spacing:-0.246848pt;}
.wsd9{word-spacing:-0.245824pt;}
.ws12e{word-spacing:-0.239104pt;}
.wscd{word-spacing:-0.229792pt;}
.wsee{word-spacing:-0.216000pt;}
.ws33{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.wsed{word-spacing:-0.182400pt;}
.ws39{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws90{word-spacing:-0.112224pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws10d{word-spacing:-0.095642pt;}
.ws7c{word-spacing:-0.072352pt;}
.ws79{word-spacing:-0.053440pt;}
.ws41{word-spacing:-0.053134pt;}
.ws7a{word-spacing:-0.051072pt;}
.ws16{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.042507pt;}
.ws138{word-spacing:-0.011793pt;}
.ws116{word-spacing:-0.010982pt;}
.ws140{word-spacing:-0.010530pt;}
.ws124{word-spacing:-0.009190pt;}
.ws112{word-spacing:-0.009020pt;}
.ws137{word-spacing:-0.008593pt;}
.ws11c{word-spacing:-0.007031pt;}
.ws13f{word-spacing:-0.006852pt;}
.ws12a{word-spacing:-0.006810pt;}
.ws13d{word-spacing:-0.005965pt;}
.ws113{word-spacing:-0.005709pt;}
.ws12b{word-spacing:-0.005367pt;}
.ws132{word-spacing:-0.005214pt;}
.ws3{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws125{word-spacing:0.000956pt;}
.ws30{word-spacing:0.003199pt;}
.wsd4{word-spacing:0.005344pt;}
.ws82{word-spacing:0.010688pt;}
.ws94{word-spacing:0.032064pt;}
.ws2{word-spacing:0.037194pt;}
.ws12{word-spacing:0.047821pt;}
.wsd3{word-spacing:0.048096pt;}
.ws2d{word-spacing:0.053134pt;}
.wsf3{word-spacing:0.058784pt;}
.ws9c{word-spacing:0.064128pt;}
.ws80{word-spacing:0.069472pt;}
.wsd{word-spacing:0.095642pt;}
.wsf2{word-spacing:0.096192pt;}
.wsb5{word-spacing:0.101536pt;}
.ws42{word-spacing:0.106268pt;}
.wsef{word-spacing:0.110400pt;}
.ws81{word-spacing:0.112224pt;}
.wsb6{word-spacing:0.122912pt;}
.ws1e{word-spacing:0.143462pt;}
.ws38{word-spacing:0.159402pt;}
.wsf{word-spacing:0.170029pt;}
.ws25{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws27{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.ws2c{word-spacing:0.318803pt;}
.wsd5{word-spacing:0.352704pt;}
.ws4c{word-spacing:0.371937pt;}
.ws8b{word-spacing:0.379424pt;}
.wsd6{word-spacing:0.390112pt;}
.wsd7{word-spacing:0.395456pt;}
.ws9f{word-spacing:0.406144pt;}
.ws3a{word-spacing:0.425071pt;}
.wsdb{word-spacing:0.427520pt;}
.ws4e{word-spacing:0.478205pt;}
.wsdc{word-spacing:0.518368pt;}
.ws117{word-spacing:0.526029pt;}
.wsf8{word-spacing:0.584473pt;}
.ws11a{word-spacing:0.621670pt;}
.ws48{word-spacing:0.637606pt;}
.ws110{word-spacing:0.669491pt;}
.wsa2{word-spacing:0.673344pt;}
.ws65{word-spacing:0.690740pt;}
.ws32{word-spacing:0.743874pt;}
.wsa3{word-spacing:0.806944pt;}
.ws20{word-spacing:0.812954pt;}
.wsc6{word-spacing:0.850142pt;}
.wsc7{word-spacing:0.903276pt;}
.ws6f{word-spacing:0.956410pt;}
.wsbb{word-spacing:1.009543pt;}
.wse2{word-spacing:1.020704pt;}
.wsf4{word-spacing:1.047424pt;}
.ws7e{word-spacing:1.058112pt;}
.ws60{word-spacing:1.062677pt;}
.wsdf{word-spacing:1.063456pt;}
.wse3{word-spacing:1.074144pt;}
.ws13{word-spacing:1.099878pt;}
.ws70{word-spacing:1.115811pt;}
.ws5d{word-spacing:1.168945pt;}
.ws108{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws1b{word-spacing:1.243341pt;}
.ws95{word-spacing:1.277216pt;}
.ws23{word-spacing:1.291162pt;}
.ws36{word-spacing:1.328347pt;}
.ws7f{word-spacing:1.362720pt;}
.ws99{word-spacing:1.378752pt;}
.ws2a{word-spacing:1.381481pt;}
.wsa1{word-spacing:1.389440pt;}
.wscf{word-spacing:1.405472pt;}
.wsde{word-spacing:1.410816pt;}
.wsbe{word-spacing:1.434614pt;}
.wsa0{word-spacing:1.469600pt;}
.ws11d{word-spacing:1.482445pt;}
.ws5c{word-spacing:1.540882pt;}
.wsbd{word-spacing:1.594016pt;}
.ws135{word-spacing:1.625907pt;}
.wsb2{word-spacing:1.645952pt;}
.ws4b{word-spacing:1.647150pt;}
.ws139{word-spacing:1.673728pt;}
.ws9a{word-spacing:1.694048pt;}
.wsfa{word-spacing:1.700284pt;}
.wsec{word-spacing:1.752000pt;}
.ws73{word-spacing:1.753418pt;}
.ws120{word-spacing:1.769370pt;}
.ws133{word-spacing:1.817190pt;}
.ws103{word-spacing:1.859685pt;}
.ws13c{word-spacing:1.865011pt;}
.ws44{word-spacing:1.912819pt;}
.ws13b{word-spacing:1.912832pt;}
.ws5f{word-spacing:1.965953pt;}
.ws4f{word-spacing:2.019087pt;}
.ws66{word-spacing:2.072221pt;}
.ws6b{word-spacing:2.125355pt;}
.ws6a{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws126{word-spacing:2.247578pt;}
.ws71{word-spacing:2.284756pt;}
.wsb3{word-spacing:2.292576pt;}
.ws1f{word-spacing:2.295398pt;}
.ws53{word-spacing:2.337890pt;}
.ws24{word-spacing:2.343219pt;}
.ws4d{word-spacing:2.391024pt;}
.wsb4{word-spacing:2.420832pt;}
.wsfc{word-spacing:2.444158pt;}
.ws127{word-spacing:2.534502pt;}
.ws54{word-spacing:2.550426pt;}
.wsaf{word-spacing:2.581152pt;}
.ws55{word-spacing:2.603559pt;}
.ws109{word-spacing:2.615189pt;}
.ws92{word-spacing:2.629248pt;}
.ws12f{word-spacing:2.630144pt;}
.wse4{word-spacing:2.650624pt;}
.ws91{word-spacing:2.704064pt;}
.wsf7{word-spacing:2.762961pt;}
.ws121{word-spacing:2.821427pt;}
.ws10c{word-spacing:2.827179pt;}
.ws118{word-spacing:2.859068pt;}
.ws12c{word-spacing:2.860809pt;}
.ws122{word-spacing:2.861056pt;}
.ws130{word-spacing:2.861952pt;}
.ws136{word-spacing:2.862046pt;}
.ws134{word-spacing:2.862507pt;}
.ws111{word-spacing:2.862583pt;}
.ws11f{word-spacing:2.865152pt;}
.ws128{word-spacing:2.866731pt;}
.ws37{word-spacing:2.869229pt;}
.ws10e{word-spacing:2.869248pt;}
.ws123{word-spacing:2.917069pt;}
.ws13e{word-spacing:2.964890pt;}
.ws3c{word-spacing:2.975497pt;}
.wsa5{word-spacing:3.008672pt;}
.ws3d{word-spacing:3.028630pt;}
.ws119{word-spacing:3.060531pt;}
.ws11{word-spacing:3.071587pt;}
.wsa4{word-spacing:3.078144pt;}
.ws141{word-spacing:3.108352pt;}
.ws75{word-spacing:3.134898pt;}
.ws15{word-spacing:3.156173pt;}
.ws26{word-spacing:3.185554pt;}
.ws28{word-spacing:3.188032pt;}
.ws101{word-spacing:3.241166pt;}
.ws17{word-spacing:3.251814pt;}
.ws88{word-spacing:3.259840pt;}
.ws6e{word-spacing:3.294300pt;}
.ws19{word-spacing:3.299635pt;}
.wsc9{word-spacing:3.307936pt;}
.ws87{word-spacing:3.323968pt;}
.wscc{word-spacing:3.329312pt;}
.ws68{word-spacing:3.347434pt;}
.wscb{word-spacing:3.366720pt;}
.wsca{word-spacing:3.398784pt;}
.wsc8{word-spacing:3.400567pt;}
.ws5e{word-spacing:3.453701pt;}
.ws74{word-spacing:3.506835pt;}
.ws58{word-spacing:3.559969pt;}
.wsc0{word-spacing:3.666237pt;}
.ws129{word-spacing:3.825664pt;}
.ws1a{word-spacing:3.873485pt;}
.ws64{word-spacing:3.878772pt;}
.ws85{word-spacing:3.911808pt;}
.wsd2{word-spacing:3.927840pt;}
.wsc5{word-spacing:3.931906pt;}
.wsea{word-spacing:3.943872pt;}
.ws12d{word-spacing:3.969126pt;}
.ws3b{word-spacing:4.038174pt;}
.ws131{word-spacing:4.064768pt;}
.ws50{word-spacing:4.197575pt;}
.wse1{word-spacing:4.248480pt;}
.wsd0{word-spacing:4.259168pt;}
.wse9{word-spacing:4.264512pt;}
.ws86{word-spacing:4.275200pt;}
.wsd1{word-spacing:4.285888pt;}
.wse0{word-spacing:4.296576pt;}
.ws3e{word-spacing:4.303843pt;}
.ws11b{word-spacing:4.303872pt;}
.ws6d{word-spacing:4.356977pt;}
.wsf9{word-spacing:4.410111pt;}
.ws51{word-spacing:4.463245pt;}
.wse8{word-spacing:4.542400pt;}
.wsd8{word-spacing:4.547744pt;}
.wse7{word-spacing:4.563776pt;}
.ws6c{word-spacing:4.569513pt;}
.ws57{word-spacing:4.675780pt;}
.ws56{word-spacing:4.728914pt;}
.ws115{word-spacing:4.734259pt;}
.ws114{word-spacing:4.782080pt;}
.ws10b{word-spacing:4.829901pt;}
.ws9{word-spacing:4.872362pt;}
.ws5b{word-spacing:4.941450pt;}
.ws72{word-spacing:4.994583pt;}
.ws67{word-spacing:5.100851pt;}
.wsff{word-spacing:5.153985pt;}
.ws59{word-spacing:5.207119pt;}
.wsba{word-spacing:5.260253pt;}
.wsbf{word-spacing:5.313387pt;}
.wsae{word-spacing:5.531040pt;}
.wsc1{word-spacing:5.579056pt;}
.ws5a{word-spacing:5.632190pt;}
.wsad{word-spacing:5.648608pt;}
.wsc4{word-spacing:5.690675pt;}
.ws2f{word-spacing:5.844725pt;}
.ws3f{word-spacing:5.950993pt;}
.ws11e{word-spacing:5.977600pt;}
.ws69{word-spacing:6.216662pt;}
.ws13a{word-spacing:6.407987pt;}
.ws100{word-spacing:6.429198pt;}
.wsda{word-spacing:6.498304pt;}
.wsfb{word-spacing:7.119938pt;}
.ws46{word-spacing:7.438741pt;}
.ws9e{word-spacing:8.042720pt;}
.ws9d{word-spacing:8.085472pt;}
.wsa7{word-spacing:8.961888pt;}
.wsa6{word-spacing:9.079456pt;}
.ws93{word-spacing:9.688672pt;}
.ws96{word-spacing:9.939840pt;}
.ws97{word-spacing:10.009312pt;}
.ws7d{word-spacing:10.329312pt;}
.ws8{word-spacing:10.525789pt;}
.wsa9{word-spacing:11.633888pt;}
.wsaa{word-spacing:11.639232pt;}
.wsa8{word-spacing:11.703360pt;}
.ws7{word-spacing:11.827565pt;}
.ws4{word-spacing:13.761632pt;}
.ws98{word-spacing:14.182976pt;}
.wsa{word-spacing:14.282342pt;}
.ws102{word-spacing:17.799845pt;}
.ws6{word-spacing:26.011518pt;}
._1b{margin-left:-7.076986pt;}
._a{margin-left:-6.168883pt;}
._6{margin-left:-5.101183pt;}
._5{margin-left:-4.139146pt;}
._1{margin-left:-2.720142pt;}
._4{margin-left:-1.301776pt;}
._18{width:1.115072pt;}
._11{width:3.453701pt;}
._0{width:11.530016pt;}
._7{width:13.405715pt;}
._b{width:14.394061pt;}
._10{width:15.435385pt;}
._9{width:16.365328pt;}
._d{width:17.598054pt;}
._8{width:19.235046pt;}
._17{width:20.143090pt;}
._14{width:21.120708pt;}
._2{width:22.502128pt;}
._1e{width:24.016500pt;}
._c{width:24.914637pt;}
._12{width:25.929327pt;}
._13{width:26.821851pt;}
._3{width:27.783619pt;}
._1f{width:28.985225pt;}
._15{width:30.631670pt;}
._16{width:31.774052pt;}
._1a{width:33.075828pt;}
._1c{width:37.539073pt;}
._e{width:784.208398pt;}
._19{width:1871.546208pt;}
._1d{width:2233.374183pt;}
._f{width:2254.627517pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y11b{bottom:-202.482267pt;}
.y139{bottom:-141.600485pt;}
.y138{bottom:-124.561141pt;}
.y137{bottom:-107.441637pt;}
.y136{bottom:-90.322133pt;}
.ye1{bottom:-78.010800pt;}
.y135{bottom:-57.602667pt;}
.y134{bottom:-42.162267pt;}
.y133{bottom:-26.802267pt;}
.y132{bottom:-6.873219pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:2.722288pt;}
.y37{bottom:8.207950pt;}
.y36{bottom:23.914454pt;}
.y66{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y144{bottom:92.108000pt;}
.y34{bottom:93.018667pt;}
.y65{bottom:97.580000pt;}
.y1a0{bottom:99.533333pt;}
.y1d6{bottom:103.518667pt;}
.y158{bottom:105.510667pt;}
.y9c{bottom:105.909333pt;}
.ybf{bottom:106.308000pt;}
.y143{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y64{bottom:114.317333pt;}
.y19f{bottom:114.876000pt;}
.y1d5{bottom:118.861333pt;}
.y157{bottom:122.248000pt;}
.y9b{bottom:122.646667pt;}
.ybe{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y105{bottom:125.185333pt;}
.y142{bottom:125.581333pt;}
.y19e{bottom:130.218667pt;}
.y63{bottom:131.054667pt;}
.y1d4{bottom:134.202667pt;}
.y156{bottom:138.985333pt;}
.y9a{bottom:139.384000pt;}
.ybd{bottom:139.782667pt;}
.y31{bottom:140.720000pt;}
.y104{bottom:142.281333pt;}
.y141{bottom:142.318667pt;}
.y19d{bottom:145.561333pt;}
.y62{bottom:147.792000pt;}
.y1d3{bottom:149.545333pt;}
.y155{bottom:155.722667pt;}
.y99{bottom:156.121333pt;}
.ybc{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y140{bottom:159.056000pt;}
.y19c{bottom:160.902667pt;}
.yde{bottom:162.217867pt;}
.y61{bottom:164.529333pt;}
.y1d2{bottom:164.888000pt;}
.y166{bottom:165.048000pt;}
.y154{bottom:172.460000pt;}
.y2f{bottom:172.521333pt;}
.y98{bottom:172.858667pt;}
.ybb{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y13f{bottom:175.793333pt;}
.y19b{bottom:176.245333pt;}
.y1d1{bottom:180.230667pt;}
.y60{bottom:181.266667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2e{bottom:188.421333pt;}
.y165{bottom:188.640000pt;}
.y153{bottom:189.197333pt;}
.y97{bottom:189.596000pt;}
.yba{bottom:189.994667pt;}
.y19a{bottom:191.588000pt;}
.y13e{bottom:192.530667pt;}
.y1d0{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y5f{bottom:198.004000pt;}
.y164{bottom:204.261333pt;}
.y2d{bottom:204.322667pt;}
.y152{bottom:205.934667pt;}
.y96{bottom:206.333333pt;}
.yb9{bottom:206.732000pt;}
.y199{bottom:206.930667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y13d{bottom:209.268000pt;}
.y1cf{bottom:210.916000pt;}
.y5e{bottom:214.740000pt;}
.y198{bottom:222.273333pt;}
.y151{bottom:222.672000pt;}
.y95{bottom:223.070667pt;}
.yb8{bottom:223.469333pt;}
.y1ce{bottom:226.258667pt;}
.y163{bottom:227.853333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y5d{bottom:235.462667pt;}
.y197{bottom:237.616000pt;}
.y13c{bottom:238.986667pt;}
.y150{bottom:239.409333pt;}
.y94{bottom:239.808000pt;}
.yb7{bottom:240.206667pt;}
.y1cd{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y162{bottom:251.444000pt;}
.y196{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y13b{bottom:256.082667pt;}
.y14f{bottom:256.146667pt;}
.y93{bottom:256.545333pt;}
.yb6{bottom:256.944000pt;}
.y2c{bottom:266.570667pt;}
.y195{bottom:268.301333pt;}
.y1cc{bottom:272.285333pt;}
.y14e{bottom:272.884000pt;}
.y13a{bottom:273.177333pt;}
.y92{bottom:273.282667pt;}
.yb5{bottom:273.681333pt;}
.y161{bottom:275.036000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2b{bottom:282.470667pt;}
.y194{bottom:283.644000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1cb{bottom:287.628000pt;}
.y14d{bottom:289.621333pt;}
.y91{bottom:290.020000pt;}
.yb4{bottom:290.417333pt;}
.y118{bottom:293.114667pt;}
.y2a{bottom:298.370667pt;}
.y160{bottom:298.628000pt;}
.y193{bottom:298.985333pt;}
.y5c{bottom:302.262667pt;}
.y1ca{bottom:302.970667pt;}
.y14c{bottom:306.358667pt;}
.yb1{bottom:306.757333pt;}
.yb3{bottom:307.154667pt;}
.y102{bottom:308.481920pt;}
.yf{bottom:309.452000pt;}
.y90{bottom:310.741333pt;}
.y15f{bottom:314.249333pt;}
.y29{bottom:314.270667pt;}
.y192{bottom:314.328000pt;}
.y1c9{bottom:318.313333pt;}
.y5b{bottom:319.558667pt;}
.y14b{bottom:323.096000pt;}
.yb0{bottom:323.494667pt;}
.yb2{bottom:323.892000pt;}
.y101{bottom:325.521264pt;}
.y191{bottom:329.670667pt;}
.y15e{bottom:329.870667pt;}
.y1c8{bottom:333.656000pt;}
.y28{bottom:338.141333pt;}
.y14a{bottom:339.833333pt;}
.yaf{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y100{bottom:342.640768pt;}
.ye{bottom:343.809333pt;}
.y190{bottom:345.013333pt;}
.y15d{bottom:345.492000pt;}
.y1c7{bottom:348.998667pt;}
.y5a{bottom:352.793333pt;}
.y27{bottom:354.042667pt;}
.y149{bottom:356.570667pt;}
.yae{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.yff{bottom:359.681448pt;}
.y18f{bottom:360.356000pt;}
.y15c{bottom:361.113333pt;}
.yd{bottom:362.706666pt;}
.y1c6{bottom:364.341333pt;}
.y26{bottom:369.942667pt;}
.y59{bottom:370.089333pt;}
.yad{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.y18e{bottom:375.698667pt;}
.y15b{bottom:376.734667pt;}
.yfe{bottom:376.800952pt;}
.y148{bottom:377.292000pt;}
.y1c5{bottom:379.684000pt;}
.y131{bottom:379.926837pt;}
.y25{bottom:385.842667pt;}
.y58{bottom:387.384000pt;}
.yac{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.y18d{bottom:391.041333pt;}
.y15a{bottom:392.356000pt;}
.yfd{bottom:393.920456pt;}
.y1c4{bottom:395.025333pt;}
.y130{bottom:397.046341pt;}
.y24{bottom:401.744000pt;}
.y57{bottom:404.678667pt;}
.y18c{bottom:406.384000pt;}
.yab{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.y1c3{bottom:410.368000pt;}
.yfc{bottom:410.959800pt;}
.y12f{bottom:414.165845pt;}
.y23{bottom:417.644000pt;}
.y18b{bottom:421.725333pt;}
.y56{bottom:421.974667pt;}
.yaa{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y1c2{bottom:425.710667pt;}
.yfb{bottom:428.079304pt;}
.y12e{bottom:431.205189pt;}
.y22{bottom:433.544000pt;}
.y18a{bottom:437.068000pt;}
.y55{bottom:439.269333pt;}
.ya9{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.yfa{bottom:445.198808pt;}
.yc{bottom:446.990669pt;}
.y12d{bottom:448.324693pt;}
.y189{bottom:452.410667pt;}
.y1c1{bottom:456.396000pt;}
.y54{bottom:456.564000pt;}
.ya8{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.yf9{bottom:462.239488pt;}
.yb{bottom:462.990669pt;}
.y12c{bottom:465.364037pt;}
.y188{bottom:467.753333pt;}
.y1c0{bottom:471.738667pt;}
.y53{bottom:473.860000pt;}
.ydd{bottom:473.997333pt;}
.ya7{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.y106{bottom:478.114667pt;}
.ya{bottom:478.990666pt;}
.yf8{bottom:479.358992pt;}
.y12b{bottom:482.483541pt;}
.y187{bottom:483.096000pt;}
.y1bf{bottom:487.081333pt;}
.ydc{bottom:490.734667pt;}
.ya6{bottom:490.866667pt;}
.y52{bottom:491.154667pt;}
.y86{bottom:491.265333pt;}
.y9{bottom:494.990666pt;}
.yf7{bottom:496.398336pt;}
.y186{bottom:498.438667pt;}
.y12a{bottom:499.603045pt;}
.y1be{bottom:502.424000pt;}
.ydb{bottom:507.472000pt;}
.ya5{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.y51{bottom:508.450667pt;}
.yf6{bottom:513.517840pt;}
.y185{bottom:513.781333pt;}
.y129{bottom:516.643725pt;}
.y1bd{bottom:517.766667pt;}
.yda{bottom:524.208000pt;}
.ya4{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y50{bottom:525.745333pt;}
.y184{bottom:529.124000pt;}
.yf5{bottom:530.637344pt;}
.y1bc{bottom:533.108000pt;}
.y128{bottom:533.763229pt;}
.yd9{bottom:540.945333pt;}
.ya3{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.y4f{bottom:543.040000pt;}
.y183{bottom:544.466667pt;}
.y1bb{bottom:548.450667pt;}
.y127{bottom:550.802573pt;}
.yf4{bottom:551.676672pt;}
.yd8{bottom:557.682667pt;}
.ya2{bottom:557.816000pt;}
.y82{bottom:558.214667pt;}
.y182{bottom:559.808000pt;}
.y4e{bottom:560.336000pt;}
.y1ba{bottom:563.793333pt;}
.y126{bottom:567.922077pt;}
.yf3{bottom:568.796176pt;}
.y8{bottom:573.786667pt;}
.yd7{bottom:574.420000pt;}
.ya1{bottom:574.553333pt;}
.y81{bottom:574.952000pt;}
.y181{bottom:575.150667pt;}
.y4d{bottom:577.630667pt;}
.y1b9{bottom:579.136000pt;}
.y125{bottom:585.041581pt;}
.yf2{bottom:585.835520pt;}
.y180{bottom:590.493333pt;}
.yd6{bottom:591.157333pt;}
.ya0{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1b8{bottom:594.478667pt;}
.y4c{bottom:594.925333pt;}
.y124{bottom:602.080925pt;}
.yf1{bottom:602.955024pt;}
.y17f{bottom:605.836000pt;}
.yd5{bottom:607.894667pt;}
.y9f{bottom:608.028000pt;}
.y7f{bottom:608.426667pt;}
.y1b7{bottom:609.821333pt;}
.y4b{bottom:612.221333pt;}
.y123{bottom:619.200429pt;}
.yf0{bottom:620.074528pt;}
.y17e{bottom:621.178667pt;}
.yd4{bottom:624.632000pt;}
.y9e{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.y4a{bottom:629.516000pt;}
.y122{bottom:636.319933pt;}
.y17d{bottom:636.521333pt;}
.yef{bottom:637.115208pt;}
.y1b6{bottom:640.506667pt;}
.yd3{bottom:641.369333pt;}
.y147{bottom:641.502667pt;}
.y7d{bottom:641.901333pt;}
.y9d{bottom:645.488000pt;}
.y6{bottom:645.598667pt;}
.y49{bottom:646.812000pt;}
.y17c{bottom:651.864000pt;}
.yee{bottom:654.234712pt;}
.y1b5{bottom:655.848000pt;}
.y121{bottom:657.359261pt;}
.yd2{bottom:658.106667pt;}
.y146{bottom:658.240000pt;}
.y7c{bottom:658.638667pt;}
.y48{bottom:664.106667pt;}
.y17b{bottom:667.206667pt;}
.y3{bottom:668.977329pt;}
.y1b4{bottom:671.190667pt;}
.yed{bottom:671.274056pt;}
.yd1{bottom:674.844000pt;}
.y117{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.y47{bottom:681.401333pt;}
.y17a{bottom:682.548000pt;}
.y1b3{bottom:686.533333pt;}
.yec{bottom:688.393560pt;}
.y120{bottom:690.478701pt;}
.yd0{bottom:691.581333pt;}
.y116{bottom:691.714667pt;}
.y7a{bottom:692.113333pt;}
.y179{bottom:697.890667pt;}
.y46{bottom:698.697333pt;}
.y1b2{bottom:701.876000pt;}
.y11f{bottom:707.518045pt;}
.y115{bottom:708.452000pt;}
.y79{bottom:708.850667pt;}
.yeb{bottom:709.513048pt;}
.y178{bottom:713.233333pt;}
.ycf{bottom:714.960000pt;}
.y45{bottom:715.992000pt;}
.y1b1{bottom:717.218667pt;}
.y11e{bottom:724.637549pt;}
.y114{bottom:725.189333pt;}
.y78{bottom:725.588000pt;}
.yea{bottom:726.552392pt;}
.y177{bottom:728.576000pt;}
.yce{bottom:731.697333pt;}
.y1b0{bottom:732.561333pt;}
.y44{bottom:733.286667pt;}
.y11d{bottom:741.757053pt;}
.y113{bottom:741.926667pt;}
.y77{bottom:742.324000pt;}
.ye9{bottom:743.671896pt;}
.y176{bottom:743.918667pt;}
.y1af{bottom:747.904000pt;}
.ycd{bottom:748.434667pt;}
.y43{bottom:750.582667pt;}
.y112{bottom:758.664000pt;}
.y11c{bottom:758.797733pt;}
.y76{bottom:759.061333pt;}
.y1d9{bottom:759.194667pt;}
.y175{bottom:759.261333pt;}
.ye8{bottom:760.791400pt;}
.y1ae{bottom:763.246667pt;}
.ycc{bottom:765.172000pt;}
.y1d8{bottom:774.537333pt;}
.y174{bottom:774.604000pt;}
.y111{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.ye7{bottom:777.830744pt;}
.y1ad{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.ycb{bottom:781.909333pt;}
.y42{bottom:784.880000pt;}
.y1d7{bottom:789.880000pt;}
.y173{bottom:789.946667pt;}
.y110{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.y1ac{bottom:793.930667pt;}
.ye6{bottom:794.950248pt;}
.yca{bottom:798.646667pt;}
.y41{bottom:799.226667pt;}
.y40{bottom:803.084000pt;}
.y172{bottom:805.289333pt;}
.y11a{bottom:807.437853pt;}
.y10f{bottom:808.874667pt;}
.y73{bottom:809.273333pt;}
.ye5{bottom:811.989592pt;}
.y3f{bottom:813.573333pt;}
.yc9{bottom:815.384000pt;}
.y119{bottom:815.997733pt;}
.y171{bottom:820.630667pt;}
.y1ab{bottom:824.616000pt;}
.y10e{bottom:825.612000pt;}
.y72{bottom:826.010667pt;}
.y3e{bottom:827.920000pt;}
.yc8{bottom:832.121333pt;}
.ye4{bottom:833.109080pt;}
.y170{bottom:835.973333pt;}
.y1aa{bottom:839.958667pt;}
.y3d{bottom:842.265333pt;}
.y10d{bottom:842.349333pt;}
.y71{bottom:842.748000pt;}
.y3c{bottom:846.122667pt;}
.yc7{bottom:848.858667pt;}
.y16f{bottom:851.316000pt;}
.y1a9{bottom:855.301333pt;}
.y10c{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.ye3{bottom:866.228520pt;}
.y16e{bottom:866.658667pt;}
.y1a8{bottom:870.644000pt;}
.yc6{bottom:872.237333pt;}
.y10b{bottom:875.824000pt;}
.y6f{bottom:876.222667pt;}
.y145{bottom:879.809333pt;}
.y16d{bottom:882.001333pt;}
.ye2{bottom:883.269200pt;}
.y3b{bottom:885.836000pt;}
.y1a7{bottom:885.986667pt;}
.yc5{bottom:888.974667pt;}
.y10a{bottom:892.561333pt;}
.y6e{bottom:892.960000pt;}
.y16c{bottom:897.344000pt;}
.y1a6{bottom:901.329333pt;}
.yc4{bottom:905.712000pt;}
.y109{bottom:909.298667pt;}
.y6d{bottom:909.697333pt;}
.y16b{bottom:912.686667pt;}
.y1a5{bottom:916.670667pt;}
.y3a{bottom:921.320000pt;}
.yc3{bottom:922.449333pt;}
.y108{bottom:926.036000pt;}
.y6c{bottom:926.434667pt;}
.y16a{bottom:928.029333pt;}
.y159{bottom:930.021333pt;}
.ye0{bottom:931.909320pt;}
.y1a4{bottom:932.013333pt;}
.yc2{bottom:939.186667pt;}
.ydf{bottom:940.469200pt;}
.y6b{bottom:943.172000pt;}
.y169{bottom:943.370667pt;}
.y39{bottom:946.425333pt;}
.y107{bottom:946.758667pt;}
.y1a3{bottom:947.356000pt;}
.yc1{bottom:955.924000pt;}
.y168{bottom:958.713333pt;}
.y6a{bottom:959.909333pt;}
.y1a2{bottom:962.698667pt;}
.y38{bottom:971.530667pt;}
.yc0{bottom:972.661333pt;}
.y167{bottom:974.056000pt;}
.y69{bottom:976.646667pt;}
.y1a1{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y35{bottom:1010.186667pt;}
.y67{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h18{height:30.943281pt;}
.h11{height:30.945242pt;}
.h15{height:31.157778pt;}
.h17{height:31.338125pt;}
.h12{height:34.813542pt;}
.h1d{height:34.898438pt;}
.h1e{height:35.052646pt;}
.h1c{height:35.343750pt;}
.h13{height:38.256384pt;}
.h14{height:38.681455pt;}
.h19{height:38.853594pt;}
.hd{height:38.947124pt;}
.h1a{height:39.349375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.360277pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h16{height:290.764800pt;}
.h1b{height:360.966667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:327.609333pt;}
.w6{width:416.232000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb{left:-181.026667pt;}
.xf{left:-175.052000pt;}
.xc{left:-7.186667pt;}
.x10{left:-1.212000pt;}
.x0{left:0.000000pt;}
.xd{left:21.131904pt;}
.x11{left:27.109242pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x13{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xa{left:219.865333pt;}
.x7{left:221.858667pt;}
.x8{left:239.790667pt;}
.x9{left:250.204000pt;}
.xe{left:339.452403pt;}
.x3{left:404.408000pt;}
.x12{left:416.789067pt;}
}




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