
    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_74e79f000cb5a94ac1535c15.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_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_45ed176d4fa514e780fd6881.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_b92d6520e823c64965f261f4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_93c1a219f5a1484efbd4c361.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b945b5192319ceb1097b1657.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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_75282b42a3bb75d78ba90894.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_af74295c760441d5a043ae80.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.653000;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_d84f65f4e193d3f95c02fe58.woff2')format("woff");}.fff{font-family:fff;line-height:0.663000;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;}
.m2{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);}
.m25{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);}
.m1a{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);}
.m27{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);}
.m18{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);}
.m1e{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);}
.m1d{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);}
.m21{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);}
.m20{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);}
.m19{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);}
.md{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);}
.m4{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);}
.mc{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);}
.mb{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);}
.m26{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);}
.m10{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);}
.m9{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);}
.m1b{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);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m1c{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);}
.mf{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m8{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);}
.m12{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);}
.m24{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);}
.m7{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);}
.m14{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);}
.m1f{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);}
.m13{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);}
.m6{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);}
.m23{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);}
.v1{vertical-align:-11.760000px;}
.v4{vertical-align:-10.488000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.248000px;}
.v3{vertical-align:19.530000px;}
.v5{vertical-align:31.632000px;}
.v2{vertical-align:32.874000px;}
.v6{vertical-align:51.156000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000030px;}
.ls2e{letter-spacing:0.004929px;}
.ls47{letter-spacing:0.005476px;}
.ls33{letter-spacing:0.497764px;}
.ls31{letter-spacing:0.503764px;}
.ls39{letter-spacing:0.517133px;}
.ls35{letter-spacing:0.523133px;}
.ls3c{letter-spacing:0.542815px;}
.ls15{letter-spacing:0.548815px;}
.ls36{letter-spacing:0.642088px;}
.ls1f{letter-spacing:0.648088px;}
.lse{letter-spacing:0.994200px;}
.ls9{letter-spacing:1.000200px;}
.ls8{letter-spacing:1.275394px;}
.lsf{letter-spacing:1.420741px;}
.lsc{letter-spacing:1.452571px;}
.ls12{letter-spacing:1.458571px;}
.lsb{letter-spacing:1.594200px;}
.ls1{letter-spacing:1.861130px;}
.ls11{letter-spacing:2.434741px;}
.lsd{letter-spacing:2.505986px;}
.ls13{letter-spacing:2.511986px;}
.ls32{letter-spacing:2.988600px;}
.ls27{letter-spacing:11.951700px;}
.ls7{letter-spacing:11.954850px;}
.ls26{letter-spacing:11.955787px;}
.ls41{letter-spacing:13.444800px;}
.ls24{letter-spacing:13.447133px;}
.ls40{letter-spacing:13.450800px;}
.ls23{letter-spacing:13.453133px;}
.ls51{letter-spacing:13.869343px;}
.ls30{letter-spacing:14.094088px;}
.ls34{letter-spacing:14.100088px;}
.ls45{letter-spacing:14.623006px;}
.ls2f{letter-spacing:14.704798px;}
.ls52{letter-spacing:14.747786px;}
.ls53{letter-spacing:14.751497px;}
.ls14{letter-spacing:14.752853px;}
.ls4{letter-spacing:14.764573px;}
.ls43{letter-spacing:14.782823px;}
.ls4f{letter-spacing:14.817163px;}
.ls4e{letter-spacing:14.818255px;}
.ls3{letter-spacing:14.824349px;}
.ls48{letter-spacing:14.864455px;}
.ls49{letter-spacing:14.869626px;}
.ls4a{letter-spacing:14.871604px;}
.ls1b{letter-spacing:14.884124px;}
.ls42{letter-spacing:14.896631px;}
.ls1a{letter-spacing:14.943900px;}
.ls18{letter-spacing:15.021496px;}
.ls19{letter-spacing:15.024161px;}
.ls3e{letter-spacing:15.063451px;}
.ls54{letter-spacing:15.085607px;}
.ls3d{letter-spacing:15.123227px;}
.ls2d{letter-spacing:15.138380px;}
.ls50{letter-spacing:15.155057px;}
.ls2b{letter-spacing:15.183002px;}
.ls2c{letter-spacing:15.257658px;}
.ls10{letter-spacing:16.059483px;}
.ls38{letter-spacing:16.434600px;}
.ls37{letter-spacing:16.440600px;}
.lsa{letter-spacing:16.545483px;}
.ls16{letter-spacing:16.653549px;}
.ls55{letter-spacing:17.095822px;}
.ls3b{letter-spacing:17.215373px;}
.ls28{letter-spacing:17.753353px;}
.ls29{letter-spacing:17.753549px;}
.ls2a{letter-spacing:17.759431px;}
.ls44{letter-spacing:18.141612px;}
.ls46{letter-spacing:18.530436px;}
.ls4d{letter-spacing:18.599516px;}
.ls4b{letter-spacing:18.600030px;}
.ls4c{letter-spacing:18.600608px;}
.ls3f{letter-spacing:19.187968px;}
.ls6{letter-spacing:22.774504px;}
.ls5{letter-spacing:23.192933px;}
.ls2{letter-spacing:28.453654px;}
.ls3a{letter-spacing:151.879133px;}
.ls1d{letter-spacing:262.351133px;}
.ls1e{letter-spacing:266.761133px;}
.ls1c{letter-spacing:267.187133px;}
.ls22{letter-spacing:357.113779px;}
.ls21{letter-spacing:392.671133px;}
.ls25{letter-spacing:410.239133px;}
.ls20{letter-spacing:412.849133px;}
.ls56{letter-spacing:565.554600px;}
.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;}
}
.ws5f{word-spacing:-370.563379px;}
.ws1{word-spacing:-16.529216px;}
.ws48{word-spacing:-14.943900px;}
.ws67{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws94{word-spacing:-2.749678px;}
.ws80{word-spacing:-2.391024px;}
.ws7b{word-spacing:-2.151922px;}
.ws7c{word-spacing:-2.092146px;}
.ws7a{word-spacing:-1.972595px;}
.ws3{word-spacing:-1.908367px;}
.ws40{word-spacing:-1.853044px;}
.ws64{word-spacing:-1.733492px;}
.ws3d{word-spacing:-1.494390px;}
.ws2{word-spacing:-1.322630px;}
.ws4a{word-spacing:-1.075961px;}
.ws8d{word-spacing:-1.072562px;}
.ws50{word-spacing:-0.896634px;}
.ws97{word-spacing:-0.860774px;}
.ws42{word-spacing:-0.597756px;}
.ws98{word-spacing:-0.591782px;}
.wsac{word-spacing:-0.484186px;}
.ws49{word-spacing:-0.418429px;}
.wsaa{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.239102px;}
.ws1e{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws1f{word-spacing:-0.119551px;}
.ws95{word-spacing:-0.107597px;}
.ws8a{word-spacing:-0.075518px;}
.ws3a{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws43{word-spacing:-0.045430px;}
.ws5c{word-spacing:-0.001267px;}
.ws0{word-spacing:0.000000px;}
.ws99{word-spacing:0.000096px;}
.ws6a{word-spacing:0.000922px;}
.ws72{word-spacing:0.002210px;}
.ws16{word-spacing:0.053798px;}
.ws3f{word-spacing:0.059776px;}
.ws54{word-spacing:0.077740px;}
.ws60{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws8e{word-spacing:0.141723px;}
.ws89{word-spacing:0.156212px;}
.ws6c{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws8c{word-spacing:0.213152px;}
.ws65{word-spacing:0.239102px;}
.ws9a{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws4b{word-spacing:0.298878px;}
.ws14{word-spacing:0.322790px;}
.ws4e{word-spacing:0.358654px;}
.ws9e{word-spacing:0.376589px;}
.ws3b{word-spacing:0.418429px;}
.ws2d{word-spacing:0.537980px;}
.ws27{word-spacing:0.657532px;}
.ws6b{word-spacing:0.667200px;}
.ws69{word-spacing:0.668333px;}
.ws66{word-spacing:0.673200px;}
.ws68{word-spacing:0.674333px;}
.ws37{word-spacing:0.717307px;}
.ws25{word-spacing:0.777083px;}
.ws3c{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws17{word-spacing:0.914573px;}
.ws2a{word-spacing:0.956410px;}
.ws7e{word-spacing:1.374839px;}
.ws47{word-spacing:1.434614px;}
.ws33{word-spacing:1.494390px;}
.ws56{word-spacing:1.554166px;}
.ws39{word-spacing:1.613941px;}
.ws52{word-spacing:1.673717px;}
.ws51{word-spacing:1.733492px;}
.ws4c{word-spacing:1.853044px;}
.wsa0{word-spacing:1.936742px;}
.ws1d{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws24{word-spacing:2.032370px;}
.ws75{word-spacing:2.092146px;}
.ws85{word-spacing:2.151922px;}
.ws38{word-spacing:2.271473px;}
.ws92{word-spacing:2.331248px;}
.ws82{word-spacing:2.450800px;}
.ws73{word-spacing:2.689902px;}
.ws22{word-spacing:2.749678px;}
.ws53{word-spacing:2.809453px;}
.ws2e{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws4f{word-spacing:2.988780px;}
.ws93{word-spacing:3.048556px;}
.ws77{word-spacing:3.168107px;}
.ws1a{word-spacing:3.219667px;}
.ws96{word-spacing:3.224822px;}
.wsa1{word-spacing:3.227088px;}
.ws78{word-spacing:3.227882px;}
.ws9c{word-spacing:3.227904px;}
.ws21{word-spacing:3.287658px;}
.wsa6{word-spacing:3.335501px;}
.ws15{word-spacing:3.389299px;}
.ws4d{word-spacing:3.407209px;}
.ws87{word-spacing:3.526760px;}
.wsa8{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.ws28{word-spacing:3.646312px;}
.ws8b{word-spacing:3.657925px;}
.ws74{word-spacing:3.706087px;}
.ws3e{word-spacing:3.825638px;}
.ws90{word-spacing:3.945190px;}
.ws79{word-spacing:4.040427px;}
.ws7f{word-spacing:4.124516px;}
.ws76{word-spacing:4.244068px;}
.ws20{word-spacing:4.483170px;}
.ws7d{word-spacing:4.662497px;}
.ws46{word-spacing:4.841824px;}
.ws35{word-spacing:4.901599px;}
.ws1c{word-spacing:4.961375px;}
.ws2c{word-spacing:5.140702px;}
.ws84{word-spacing:5.200477px;}
.ws2b{word-spacing:5.379804px;}
.ws44{word-spacing:5.499355px;}
.ws83{word-spacing:5.738458px;}
.ws86{word-spacing:5.858009px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.ws55{word-spacing:6.572537px;}
.ws29{word-spacing:7.053521px;}
.ws91{word-spacing:7.292623px;}
.ws34{word-spacing:7.352399px;}
.ws81{word-spacing:8.009930px;}
.ws8f{word-spacing:8.069706px;}
.wsf{word-spacing:8.661460px;}
.ws6{word-spacing:10.167800px;}
.ws5{word-spacing:10.418857px;}
.ws30{word-spacing:11.907329px;}
.wsab{word-spacing:12.857818px;}
.wsa4{word-spacing:13.392970px;}
.wsa3{word-spacing:13.393882px;}
.ws9b{word-spacing:13.394275px;}
.wsa9{word-spacing:13.394534px;}
.ws9d{word-spacing:13.395802px;}
.wsa5{word-spacing:13.449600px;}
.wsa2{word-spacing:13.503398px;}
.wsa7{word-spacing:13.610995px;}
.ws9f{word-spacing:13.772390px;}
.ws88{word-spacing:14.558976px;}
.ws7{word-spacing:15.230779px;}
.ws4{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wse{word-spacing:17.699504px;}
.ws45{word-spacing:20.401150px;}
.ws10{word-spacing:27.448877px;}
.ws57{word-spacing:108.726566px;}
.ws59{word-spacing:132.613056px;}
.ws5d{word-spacing:166.237056px;}
.ws5a{word-spacing:184.809379px;}
.ws58{word-spacing:193.136256px;}
.ws5b{word-spacing:219.174682px;}
.ws61{word-spacing:225.393466px;}
.ws5e{word-spacing:228.212813px;}
.ws62{word-spacing:232.791466px;}
.ws71{word-spacing:253.390464px;}
.ws70{word-spacing:288.036634px;}
.ws63{word-spacing:337.773466px;}
.ws6f{word-spacing:360.987264px;}
.ws6e{word-spacing:448.571059px;}
.ws6d{word-spacing:592.774435px;}
._2d{margin-left:-357.113779px;}
._2{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._b{margin-left:-6.724800px;}
._9{margin-left:-5.260266px;}
._7{margin-left:-3.849538px;}
._3{margin-left:-1.936742px;}
._5{width:1.091170px;}
._8{width:2.301354px;}
._19{width:4.661344px;}
._6{width:12.218098px;}
._d{width:13.342003px;}
._11{width:14.591256px;}
._e{width:16.785101px;}
._16{width:18.375032px;}
._c{width:19.690214px;}
._f{width:21.244261px;}
._15{width:22.415863px;}
._12{width:24.771022px;}
._39{width:25.846982px;}
._a{width:27.329587px;}
._10{width:29.792172px;}
._37{width:32.242972px;}
._1{width:33.355008px;}
._14{width:35.411078px;}
._13{width:41.161465px;}
._38{width:43.444946px;}
._4{width:69.367284px;}
._24{width:159.566054px;}
._22{width:164.826182px;}
._1e{width:166.290854px;}
._23{width:181.139213px;}
._1c{width:183.398746px;}
._1f{width:185.320708px;}
._1a{width:186.519053px;}
._28{width:191.738765px;}
._1d{width:193.190054px;}
._1b{width:196.902144px;}
._2c{width:198.463565px;}
._2b{width:206.585856px;}
._30{width:208.039680px;}
._2a{width:213.364454px;}
._2e{width:217.178563px;}
._27{width:220.196851px;}
._2f{width:225.093773px;}
._20{width:228.212813px;}
._26{width:232.708426px;}
._29{width:234.937613px;}
._21{width:241.716211px;}
._25{width:255.004416px;}
._32{width:292.555699px;}
._36{width:312.461107px;}
._31{width:339.790694px;}
._3a{width:344.566617px;}
._35{width:356.737190px;}
._34{width:371.155162px;}
._33{width:582.851866px;}
._17{width:704.532229px;}
._18{width:2270.516102px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:43.600200px;}
.fse{font-size:45.429600px;}
.fs9{font-size:47.236800px;}
.fs10{font-size:47.337600px;}
.fsc{font-size:47.820600px;}
.fs5{font-size:52.197584px;}
.fsd{font-size:53.798400px;}
.fs11{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.425340px;}
.y27{bottom:5.788613px;}
.y2e{bottom:14.151273px;}
.y26{bottom:22.317924px;}
.y70{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y25{bottom:38.654567px;}
.y5{bottom:66.525004px;}
.ya8{bottom:93.228000px;}
.ydb{bottom:96.106500px;}
.y4{bottom:97.125005px;}
.y1bd{bottom:97.732500px;}
.y152{bottom:98.394000px;}
.y151{bottom:101.124000px;}
.y48{bottom:102.823500px;}
.y6f{bottom:112.029000px;}
.ya7{bottom:112.057500px;}
.yda{bottom:114.936000px;}
.y1bc{bottom:114.993000px;}
.y150{bottom:117.223500px;}
.y14f{bottom:119.953500px;}
.y47{bottom:120.711000px;}
.y6e{bottom:130.858500px;}
.ya6{bottom:130.887000px;}
.y1bb{bottom:132.252000px;}
.yd9{bottom:133.765500px;}
.y14e{bottom:136.053000px;}
.y46{bottom:138.600000px;}
.y14d{bottom:138.783000px;}
.y23{bottom:139.264499px;}
.y1ba{bottom:149.512500px;}
.y6d{bottom:149.688000px;}
.ya5{bottom:149.716500px;}
.yd8{bottom:152.595000px;}
.y14c{bottom:154.882500px;}
.y45{bottom:156.487500px;}
.y14b{bottom:157.612500px;}
.y119{bottom:162.183000px;}
.y1b9{bottom:166.773000px;}
.y6c{bottom:168.517500px;}
.ya4{bottom:168.546000px;}
.yd7{bottom:171.424500px;}
.y44{bottom:174.375000px;}
.y14a{bottom:176.442000px;}
.y118{bottom:181.012500px;}
.y1b8{bottom:184.033500px;}
.y6b{bottom:187.347000px;}
.ya3{bottom:187.375500px;}
.y43{bottom:192.264000px;}
.y149{bottom:195.271500px;}
.y1a{bottom:196.933500px;}
.y117{bottom:199.842000px;}
.y1b7{bottom:201.294000px;}
.yd6{bottom:202.519500px;}
.y6a{bottom:206.176500px;}
.ya2{bottom:206.205000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y42{bottom:210.151500px;}
.y148{bottom:214.101000px;}
.y1b6{bottom:218.554500px;}
.y116{bottom:218.671500px;}
.yd5{bottom:221.362500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y69{bottom:225.006000px;}
.ya1{bottom:225.034500px;}
.y41{bottom:228.039000px;}
.y147{bottom:232.930500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1b5{bottom:235.815000px;}
.y115{bottom:237.501000px;}
.yd4{bottom:237.801000px;}
.y68{bottom:243.835500px;}
.ya0{bottom:243.862500px;}
.y146{bottom:251.760000px;}
.y1b4{bottom:253.075500px;}
.yd3{bottom:254.239500px;}
.y114{bottom:256.330500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y67{bottom:262.665000px;}
.y9f{bottom:262.692000px;}
.y1b3{bottom:270.334500px;}
.y145{bottom:270.589500px;}
.yd2{bottom:270.678000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y113{bottom:275.158500px;}
.y17a{bottom:277.774500px;}
.y66{bottom:281.494500px;}
.y9e{bottom:281.521500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yd1{bottom:287.116500px;}
.y1b2{bottom:287.595000px;}
.y144{bottom:289.419000px;}
.y112{bottom:293.988000px;}
.y65{bottom:300.324000px;}
.y9d{bottom:300.351000px;}
.yd0{bottom:303.555000px;}
.y179{bottom:304.315500px;}
.y1b1{bottom:304.855500px;}
.y40{bottom:307.299000px;}
.y143{bottom:308.248500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y111{bottom:312.817500px;}
.y9c{bottom:316.450500px;}
.y64{bottom:319.153500px;}
.y9b{bottom:319.180500px;}
.ycf{bottom:319.993500px;}
.y178{bottom:321.889500px;}
.y1b0{bottom:322.116000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y3f{bottom:325.186500px;}
.y142{bottom:327.078000px;}
.y110{bottom:331.647000px;}
.yce{bottom:336.432000px;}
.y63{bottom:337.983000px;}
.y9a{bottom:338.010000px;}
.y1af{bottom:339.376500px;}
.y3e{bottom:343.074000px;}
.y141{bottom:345.906000px;}
.y11{bottom:348.133500px;}
.y177{bottom:348.429000px;}
.y10f{bottom:350.476500px;}
.ycd{bottom:352.870500px;}
.y1ae{bottom:356.637000px;}
.y62{bottom:356.812500px;}
.y99{bottom:356.839500px;}
.y3d{bottom:360.963000px;}
.y140{bottom:364.735500px;}
.y10e{bottom:369.306000px;}
.y1ad{bottom:373.897500px;}
.y176{bottom:374.970000px;}
.y61{bottom:375.642000px;}
.y98{bottom:375.669000px;}
.ycc{bottom:376.510500px;}
.y13f{bottom:383.565000px;}
.y10{bottom:386.785499px;}
.y10d{bottom:388.135500px;}
.y1ac{bottom:391.158000px;}
.y175{bottom:392.544000px;}
.y60{bottom:394.471500px;}
.y97{bottom:394.498500px;}
.y3c{bottom:399.024000px;}
.y13e{bottom:402.394500px;}
.y10c{bottom:404.235000px;}
.y10b{bottom:406.965000px;}
.yf{bottom:408.044999px;}
.ycb{bottom:408.130500px;}
.y1ab{bottom:408.418500px;}
.y174{bottom:410.118000px;}
.y5f{bottom:413.301000px;}
.y96{bottom:413.328000px;}
.y3b{bottom:416.913000px;}
.y13d{bottom:421.224000px;}
.y1aa{bottom:425.677500px;}
.y10a{bottom:425.794500px;}
.y5e{bottom:432.130500px;}
.y95{bottom:432.157500px;}
.y3a{bottom:434.800500px;}
.y13c{bottom:440.053500px;}
.y1a9{bottom:442.938000px;}
.y173{bottom:445.626000px;}
.y5d{bottom:450.960000px;}
.y94{bottom:450.987000px;}
.yca{bottom:458.686500px;}
.y13b{bottom:458.883000px;}
.y1a8{bottom:460.198500px;}
.y172{bottom:464.454000px;}
.y109{bottom:467.422500px;}
.y5c{bottom:469.789500px;}
.y93{bottom:469.816500px;}
.y39{bottom:470.622000px;}
.yc9{bottom:475.125000px;}
.y1a7{bottom:477.459000px;}
.y13a{bottom:477.712500px;}
.y171{bottom:483.283500px;}
.ye{bottom:484.864502px;}
.y38{bottom:488.509500px;}
.y5b{bottom:488.619000px;}
.y92{bottom:488.646000px;}
.y108{bottom:490.170000px;}
.y1a6{bottom:494.719500px;}
.y139{bottom:496.542000px;}
.yc8{bottom:498.765000px;}
.y170{bottom:502.113000px;}
.yd{bottom:502.864502px;}
.y5a{bottom:507.448500px;}
.y91{bottom:507.475500px;}
.y1a5{bottom:511.980000px;}
.y107{bottom:513.810000px;}
.yc7{bottom:515.203500px;}
.y138{bottom:515.371500px;}
.yc{bottom:520.864502px;}
.y16f{bottom:520.942500px;}
.y37{bottom:524.329500px;}
.y59{bottom:526.276500px;}
.y90{bottom:526.305000px;}
.y1a4{bottom:533.722500px;}
.y137{bottom:534.201000px;}
.y106{bottom:537.451500px;}
.yc6{bottom:538.845000px;}
.yb{bottom:538.864499px;}
.y16e{bottom:539.772000px;}
.y36{bottom:542.218500px;}
.y58{bottom:545.106000px;}
.y8f{bottom:545.134500px;}
.y136{bottom:553.030500px;}
.y105{bottom:553.890000px;}
.yc5{bottom:555.283500px;}
.ya{bottom:556.864499px;}
.y16d{bottom:558.601500px;}
.y35{bottom:560.106000px;}
.y57{bottom:563.935500px;}
.y8e{bottom:563.964000px;}
.y135{bottom:571.860000px;}
.y1a3{bottom:572.362500px;}
.y16c{bottom:577.431000px;}
.y104{bottom:577.530000px;}
.y34{bottom:577.993500px;}
.yc4{bottom:578.923500px;}
.y56{bottom:582.765000px;}
.y8d{bottom:582.793500px;}
.y134{bottom:590.689500px;}
.y103{bottom:593.968500px;}
.y1a2{bottom:595.110000px;}
.yc3{bottom:595.362000px;}
.y33{bottom:595.882500px;}
.y16b{bottom:596.260500px;}
.y8c{bottom:601.623000px;}
.y55{bottom:606.078000px;}
.y133{bottom:609.519000px;}
.y32{bottom:613.770000px;}
.y16a{bottom:615.090000px;}
.y102{bottom:617.610000px;}
.y100{bottom:617.922000px;}
.y1a1{bottom:618.750000px;}
.yc2{bottom:619.002000px;}
.y8b{bottom:620.452500px;}
.y132{bottom:628.348500px;}
.y31{bottom:631.657500px;}
.y169{bottom:633.919500px;}
.y101{bottom:634.047000px;}
.yff{bottom:634.360500px;}
.y8a{bottom:639.282000px;}
.yc1{bottom:642.643500px;}
.y1a0{bottom:643.015500px;}
.y9{bottom:645.510000px;}
.y131{bottom:647.178000px;}
.y30{bottom:649.546500px;}
.yfd{bottom:651.111000px;}
.y168{bottom:652.749000px;}
.y89{bottom:658.111500px;}
.y19f{bottom:659.454000px;}
.yfc{bottom:659.641500px;}
.y130{bottom:666.007500px;}
.y8{bottom:666.771000px;}
.yfe{bottom:667.549500px;}
.y167{bottom:671.578500px;}
.y2d{bottom:671.917464px;}
.yc0{bottom:674.263500px;}
.y88{bottom:676.941000px;}
.y54{bottom:681.228000px;}
.y19e{bottom:683.094000px;}
.yfb{bottom:684.612000px;}
.y12f{bottom:684.837000px;}
.yf9{bottom:684.924000px;}
.y166{bottom:690.408000px;}
.y87{bottom:695.770500px;}
.y19d{bottom:699.532500px;}
.yfa{bottom:701.050500px;}
.yf8{bottom:701.362500px;}
.y12e{bottom:703.666500px;}
.ybf{bottom:708.789000px;}
.y165{bottom:709.237500px;}
.y86{bottom:714.600000px;}
.yf7{bottom:718.113000px;}
.y53{bottom:718.618500px;}
.y12d{bottom:722.496000px;}
.y19c{bottom:723.174000px;}
.y19a{bottom:723.486000px;}
.y7{bottom:726.298500px;}
.yf5{bottom:726.645000px;}
.ybe{bottom:727.618500px;}
.y164{bottom:728.067000px;}
.y85{bottom:733.429500px;}
.yf6{bottom:734.551500px;}
.y52{bottom:738.075000px;}
.y19b{bottom:739.612500px;}
.y199{bottom:739.924500px;}
.y12c{bottom:741.325500px;}
.ybd{bottom:746.448000px;}
.y163{bottom:746.896500px;}
.yf2{bottom:751.614000px;}
.y84{bottom:752.257500px;}
.y3{bottom:752.599495px;}
.y197{bottom:756.675000px;}
.y51{bottom:757.531500px;}
.yf4{bottom:759.522000px;}
.y12b{bottom:764.637000px;}
.y196{bottom:765.207000px;}
.ybc{bottom:765.277500px;}
.y162{bottom:765.726000px;}
.yf1{bottom:768.052500px;}
.y83{bottom:771.087000px;}
.y198{bottom:773.113500px;}
.yf3{bottom:775.960500px;}
.y50{bottom:776.989500px;}
.ybb{bottom:784.107000px;}
.yf0{bottom:784.491000px;}
.y161{bottom:784.555500px;}
.y82{bottom:789.916500px;}
.y195{bottom:790.176000px;}
.y193{bottom:790.488000px;}
.y4f{bottom:796.446000px;}
.y12a{bottom:798.261000px;}
.yef{bottom:800.929500px;}
.yed{bottom:801.241500px;}
.yba{bottom:802.936500px;}
.y160{bottom:803.385000px;}
.y194{bottom:806.614500px;}
.y192{bottom:806.926500px;}
.y81{bottom:808.746000px;}
.y4e{bottom:815.904000px;}
.y129{bottom:817.090500px;}
.yee{bottom:817.368000px;}
.yec{bottom:817.680000px;}
.yb9{bottom:821.766000px;}
.y15f{bottom:822.214500px;}
.y191{bottom:823.677000px;}
.y80{bottom:827.575500px;}
.y18f{bottom:832.209000px;}
.ye9{bottom:834.430500px;}
.y4d{bottom:835.360500px;}
.y128{bottom:835.920000px;}
.y190{bottom:840.115500px;}
.yb8{bottom:840.595500px;}
.y15e{bottom:841.044000px;}
.yeb{bottom:842.338500px;}
.y7f{bottom:846.405000px;}
.ye8{bottom:850.869000px;}
.y127{bottom:854.749500px;}
.y4c{bottom:854.817000px;}
.yb7{bottom:856.695000px;}
.y18c{bottom:857.179500px;}
.yea{bottom:858.777000px;}
.yb6{bottom:859.425000px;}
.y15d{bottom:859.873500px;}
.y18e{bottom:865.086000px;}
.y7e{bottom:865.234500px;}
.ye7{bottom:867.307500px;}
.y126{bottom:873.579000px;}
.y18b{bottom:873.616500px;}
.yb5{bottom:878.254500px;}
.y15c{bottom:878.703000px;}
.y2{bottom:879.369000px;}
.y18d{bottom:881.524500px;}
.ye6{bottom:883.746000px;}
.ye4{bottom:884.058000px;}
.y7d{bottom:884.064000px;}
.y18a{bottom:890.055000px;}
.y125{bottom:892.408500px;}
.y4b{bottom:893.403000px;}
.yb4{bottom:897.084000px;}
.y15b{bottom:897.532500px;}
.ye5{bottom:900.184500px;}
.ye3{bottom:900.496500px;}
.y7c{bottom:902.893500px;}
.y189{bottom:906.493500px;}
.y187{bottom:906.807000px;}
.y4a{bottom:909.543000px;}
.y124{bottom:911.238000px;}
.yb3{bottom:915.913500px;}
.y15a{bottom:916.362000px;}
.y7b{bottom:921.723000px;}
.y188{bottom:922.932000px;}
.y186{bottom:923.244000px;}
.ye2{bottom:924.450000px;}
.y49{bottom:925.681500px;}
.y123{bottom:930.067500px;}
.yb2{bottom:932.013000px;}
.yb1{bottom:934.743000px;}
.y159{bottom:935.191500px;}
.y183{bottom:939.996000px;}
.y7a{bottom:940.552500px;}
.y185{bottom:947.902500px;}
.y122{bottom:948.897000px;}
.yb0{bottom:953.572500px;}
.y158{bottom:954.021000px;}
.ye1{bottom:956.070000px;}
.y182{bottom:956.433000px;}
.y79{bottom:959.382000px;}
.y184{bottom:964.341000px;}
.y1{bottom:966.726000px;}
.y157{bottom:970.120500px;}
.y2c{bottom:970.215000px;}
.yaf{bottom:972.402000px;}
.y156{bottom:972.849000px;}
.y181{bottom:972.871500px;}
.y78{bottom:978.211500px;}
.y180{bottom:989.310000px;}
.y17e{bottom:989.623500px;}
.yae{bottom:991.231500px;}
.ye0{bottom:991.678500px;}
.y121{bottom:994.359000px;}
.y77{bottom:997.041000px;}
.y11e{bottom:1002.579000px;}
.y17f{bottom:1005.748500px;}
.y17d{bottom:1006.060500px;}
.yad{bottom:1010.061000px;}
.ydf{bottom:1010.508000px;}
.y120{bottom:1010.797500px;}
.y2b{bottom:1012.954500px;}
.y11d{bottom:1019.017500px;}
.y76{bottom:1020.354000px;}
.y11f{bottom:1027.236000px;}
.yac{bottom:1028.890500px;}
.yde{bottom:1029.337500px;}
.y17c{bottom:1030.014000px;}
.y1c1{bottom:1035.615000px;}
.y75{bottom:1036.045500px;}
.y2a{bottom:1041.199500px;}
.ydd{bottom:1048.167000px;}
.y11c{bottom:1050.876000px;}
.yab{bottom:1052.202000px;}
.y1c0{bottom:1052.875500px;}
.y17b{bottom:1061.634000px;}
.y155{bottom:1064.266500px;}
.ydc{bottom:1066.996500px;}
.y29{bottom:1069.443000px;}
.y74{bottom:1069.669500px;}
.y1bf{bottom:1070.134500px;}
.y11b{bottom:1074.517500px;}
.yaa{bottom:1085.826000px;}
.y1be{bottom:1087.395000px;}
.y73{bottom:1088.499000px;}
.y154{bottom:1091.251500px;}
.y28{bottom:1097.688000px;}
.ya9{bottom:1104.655500px;}
.y11a{bottom:1106.137500px;}
.y72{bottom:1107.327000px;}
.y153{bottom:1110.081000px;}
.y24{bottom:1141.174500px;}
.y71{bottom:1173.397500px;}
.hf{height:25.508090px;}
.h12{height:30.461558px;}
.h1b{height:30.582721px;}
.h13{height:30.670772px;}
.h7{height:32.130000px;}
.h1a{height:33.072749px;}
.h11{height:33.112997px;}
.h10{height:34.199443px;}
.h14{height:34.813397px;}
.h18{height:35.052500px;}
.ha{height:36.277321px;}
.h15{height:38.734848px;}
.h16{height:39.165235px;}
.h1c{height:39.434227px;}
.he{height:43.038432px;}
.h17{height:43.516637px;}
.hc{height:43.815515px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h19{height:46.714950px;}
.h3{height:48.195000px;}
.h20{height:49.985558px;}
.h1f{height:49.991558px;}
.h9{height:50.931027px;}
.h2{height:55.080000px;}
.h1d{height:72.039235px;}
.h1e{height:72.045235px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.h21{height:81.617558px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x7{left:52.951500px;}
.x5{left:54.000000px;}
.x6{left:60.141348px;}
.x32{left:63.309000px;}
.x51{left:64.552500px;}
.x49{left:66.375000px;}
.x34{left:72.831000px;}
.x40{left:74.391000px;}
.x36{left:75.615000px;}
.x4e{left:76.758000px;}
.x53{left:79.501500px;}
.x77{left:86.272500px;}
.x52{left:91.647000px;}
.x33{left:94.780500px;}
.x31{left:97.671000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x56{left:109.863000px;}
.x3e{left:111.573000px;}
.x4f{left:113.610000px;}
.x41{left:120.966000px;}
.x46{left:123.750000px;}
.x35{left:129.042000px;}
.x54{left:147.804000px;}
.x76{left:151.609500px;}
.x55{left:153.318000px;}
.x43{left:158.860500px;}
.x4{left:203.484001px;}
.xa{left:249.832500px;}
.x9{left:250.897500px;}
.x73{left:255.951000px;}
.x1e{left:260.083500px;}
.x5b{left:263.152500px;}
.x3a{left:268.672500px;}
.x3c{left:271.456500px;}
.x74{left:275.440500px;}
.x39{left:281.098500px;}
.xc{left:282.786000px;}
.x38{left:283.990500px;}
.x1f{left:293.641500px;}
.xb{left:309.474000px;}
.x1a{left:313.756500px;}
.x3b{left:315.361500px;}
.x4b{left:321.243000px;}
.x1b{left:323.239500px;}
.x3d{left:324.883500px;}
.x57{left:338.236500px;}
.x3f{left:339.856500px;}
.x47{left:345.243000px;}
.x58{left:354.003000px;}
.x30{left:357.771000px;}
.x20{left:367.740000px;}
.x75{left:391.975500px;}
.x21{left:408.547500px;}
.x6d{left:429.142500px;}
.x5c{left:437.418000px;}
.x6e{left:444.832500px;}
.x67{left:447.967500px;}
.x22{left:449.893500px;}
.x5e{left:451.230000px;}
.x3{left:454.959000px;}
.x42{left:460.183500px;}
.x68{left:463.972500px;}
.x5d{left:467.019000px;}
.xd{left:472.071000px;}
.x69{left:478.759500px;}
.x48{left:480.625500px;}
.xe{left:483.394500px;}
.x6a{left:498.240000px;}
.x37{left:499.540500px;}
.x15{left:528.672000px;}
.x24{left:546.882000px;}
.x25{left:554.635500px;}
.xf{left:558.853500px;}
.x10{left:566.814000px;}
.x5a{left:569.898000px;}
.x16{left:575.232000px;}
.x66{left:590.533500px;}
.x4c{left:592.009500px;}
.x4d{left:596.313000px;}
.x17{left:603.208500px;}
.x62{left:604.735500px;}
.x6f{left:609.333000px;}
.x11{left:614.391000px;}
.x12{left:623.070000px;}
.x63{left:624.225000px;}
.x6b{left:629.734500px;}
.x13{left:637.495500px;}
.x70{left:639.808500px;}
.x26{left:645.427500px;}
.x5f{left:651.874500px;}
.x27{left:657.762000px;}
.x71{left:658.974000px;}
.x61{left:661.398000px;}
.x23{left:672.670500px;}
.x60{left:673.824000px;}
.x6c{left:680.007000px;}
.x28{left:683.967000px;}
.x14{left:688.920000px;}
.x2e{left:690.120000px;}
.x29{left:700.837500px;}
.x59{left:708.367500px;}
.x72{left:712.561500px;}
.x2a{left:717.772500px;}
.x2b{left:725.527500px;}
.x50{left:727.392000px;}
.x45{left:731.695500px;}
.x44{left:736.396500px;}
.x18{left:743.671500px;}
.x4a{left:751.392000px;}
.x19{left:756.693000px;}
.x64{left:766.170000px;}
.x2f{left:768.346500px;}
.x1c{left:784.399500px;}
.x65{left:785.670000px;}
.x2c{left:789.960000px;}
.x1d{left:793.024500px;}
.x2d{left:802.293000px;}
@media print{
.v1{vertical-align:-10.453333pt;}
.v4{vertical-align:-9.322667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.109333pt;}
.v3{vertical-align:17.360000pt;}
.v5{vertical-align:28.117333pt;}
.v2{vertical-align:29.221333pt;}
.v6{vertical-align:45.472000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000027pt;}
.ls2e{letter-spacing:0.004382pt;}
.ls47{letter-spacing:0.004867pt;}
.ls33{letter-spacing:0.442457pt;}
.ls31{letter-spacing:0.447791pt;}
.ls39{letter-spacing:0.459674pt;}
.ls35{letter-spacing:0.465007pt;}
.ls3c{letter-spacing:0.482502pt;}
.ls15{letter-spacing:0.487835pt;}
.ls36{letter-spacing:0.570745pt;}
.ls1f{letter-spacing:0.576078pt;}
.lse{letter-spacing:0.883733pt;}
.ls9{letter-spacing:0.889067pt;}
.ls8{letter-spacing:1.133683pt;}
.lsf{letter-spacing:1.262881pt;}
.lsc{letter-spacing:1.291174pt;}
.ls12{letter-spacing:1.296508pt;}
.lsb{letter-spacing:1.417067pt;}
.ls1{letter-spacing:1.654338pt;}
.ls11{letter-spacing:2.164214pt;}
.lsd{letter-spacing:2.227543pt;}
.ls13{letter-spacing:2.232877pt;}
.ls32{letter-spacing:2.656533pt;}
.ls27{letter-spacing:10.623733pt;}
.ls7{letter-spacing:10.626533pt;}
.ls26{letter-spacing:10.627366pt;}
.ls41{letter-spacing:11.950933pt;}
.ls24{letter-spacing:11.953007pt;}
.ls40{letter-spacing:11.956267pt;}
.ls23{letter-spacing:11.958340pt;}
.ls51{letter-spacing:12.328305pt;}
.ls30{letter-spacing:12.528078pt;}
.ls34{letter-spacing:12.533411pt;}
.ls45{letter-spacing:12.998227pt;}
.ls2f{letter-spacing:13.070931pt;}
.ls52{letter-spacing:13.109143pt;}
.ls53{letter-spacing:13.112441pt;}
.ls14{letter-spacing:13.113647pt;}
.ls4{letter-spacing:13.124065pt;}
.ls43{letter-spacing:13.140287pt;}
.ls4f{letter-spacing:13.170811pt;}
.ls4e{letter-spacing:13.171782pt;}
.ls3{letter-spacing:13.177199pt;}
.ls48{letter-spacing:13.212849pt;}
.ls49{letter-spacing:13.217445pt;}
.ls4a{letter-spacing:13.219203pt;}
.ls1b{letter-spacing:13.230333pt;}
.ls42{letter-spacing:13.241450pt;}
.ls1a{letter-spacing:13.283467pt;}
.ls18{letter-spacing:13.352441pt;}
.ls19{letter-spacing:13.354809pt;}
.ls3e{letter-spacing:13.389734pt;}
.ls54{letter-spacing:13.409428pt;}
.ls3d{letter-spacing:13.442868pt;}
.ls2d{letter-spacing:13.456338pt;}
.ls50{letter-spacing:13.471162pt;}
.ls2b{letter-spacing:13.496002pt;}
.ls2c{letter-spacing:13.562363pt;}
.ls10{letter-spacing:14.275096pt;}
.ls38{letter-spacing:14.608533pt;}
.ls37{letter-spacing:14.613867pt;}
.lsa{letter-spacing:14.707096pt;}
.ls16{letter-spacing:14.803154pt;}
.ls55{letter-spacing:15.196286pt;}
.ls3b{letter-spacing:15.302554pt;}
.ls28{letter-spacing:15.780758pt;}
.ls29{letter-spacing:15.780932pt;}
.ls2a{letter-spacing:15.786161pt;}
.ls44{letter-spacing:16.125877pt;}
.ls46{letter-spacing:16.471499pt;}
.ls4d{letter-spacing:16.532903pt;}
.ls4b{letter-spacing:16.533360pt;}
.ls4c{letter-spacing:16.533873pt;}
.ls3f{letter-spacing:17.055971pt;}
.ls6{letter-spacing:20.244003pt;}
.ls5{letter-spacing:20.615940pt;}
.ls2{letter-spacing:25.292137pt;}
.ls3a{letter-spacing:135.003674pt;}
.ls1d{letter-spacing:233.201007pt;}
.ls1e{letter-spacing:237.121007pt;}
.ls1c{letter-spacing:237.499674pt;}
.ls22{letter-spacing:317.434470pt;}
.ls21{letter-spacing:349.041007pt;}
.ls25{letter-spacing:364.657007pt;}
.ls20{letter-spacing:366.977007pt;}
.ls56{letter-spacing:502.715200pt;}
.ws5f{word-spacing:-329.389670pt;}
.ws1{word-spacing:-14.692637pt;}
.ws48{word-spacing:-13.283467pt;}
.ws67{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws94{word-spacing:-2.444158pt;}
.ws80{word-spacing:-2.125355pt;}
.ws7b{word-spacing:-1.912819pt;}
.ws7c{word-spacing:-1.859685pt;}
.ws7a{word-spacing:-1.753418pt;}
.ws3{word-spacing:-1.696326pt;}
.ws40{word-spacing:-1.647150pt;}
.ws64{word-spacing:-1.540882pt;}
.ws3d{word-spacing:-1.328347pt;}
.ws2{word-spacing:-1.175671pt;}
.ws4a{word-spacing:-0.956410pt;}
.ws8d{word-spacing:-0.953389pt;}
.ws50{word-spacing:-0.797008pt;}
.ws97{word-spacing:-0.765133pt;}
.ws42{word-spacing:-0.531339pt;}
.ws98{word-spacing:-0.526029pt;}
.wsac{word-spacing:-0.430387pt;}
.ws49{word-spacing:-0.371937pt;}
.wsaa{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.212535pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws1f{word-spacing:-0.106268pt;}
.ws95{word-spacing:-0.095642pt;}
.ws8a{word-spacing:-0.067127pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws43{word-spacing:-0.040382pt;}
.ws5c{word-spacing:-0.001126pt;}
.ws0{word-spacing:0.000000pt;}
.ws99{word-spacing:0.000085pt;}
.ws6a{word-spacing:0.000819pt;}
.ws72{word-spacing:0.001964pt;}
.ws16{word-spacing:0.047821pt;}
.ws3f{word-spacing:0.053134pt;}
.ws54{word-spacing:0.069102pt;}
.ws60{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws8e{word-spacing:0.125976pt;}
.ws89{word-spacing:0.138855pt;}
.ws6c{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws8c{word-spacing:0.189468pt;}
.ws65{word-spacing:0.212535pt;}
.ws9a{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws4b{word-spacing:0.265669pt;}
.ws14{word-spacing:0.286925pt;}
.ws4e{word-spacing:0.318803pt;}
.ws9e{word-spacing:0.334746pt;}
.ws3b{word-spacing:0.371937pt;}
.ws2d{word-spacing:0.478205pt;}
.ws27{word-spacing:0.584473pt;}
.ws6b{word-spacing:0.593067pt;}
.ws69{word-spacing:0.594074pt;}
.ws66{word-spacing:0.598400pt;}
.ws68{word-spacing:0.599407pt;}
.ws37{word-spacing:0.637606pt;}
.ws25{word-spacing:0.690740pt;}
.ws3c{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws17{word-spacing:0.812954pt;}
.ws2a{word-spacing:0.850142pt;}
.ws7e{word-spacing:1.222079pt;}
.ws47{word-spacing:1.275213pt;}
.ws33{word-spacing:1.328347pt;}
.ws56{word-spacing:1.381481pt;}
.ws39{word-spacing:1.434614pt;}
.ws52{word-spacing:1.487748pt;}
.ws51{word-spacing:1.540882pt;}
.ws4c{word-spacing:1.647150pt;}
.wsa0{word-spacing:1.721549pt;}
.ws1d{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws24{word-spacing:1.806551pt;}
.ws75{word-spacing:1.859685pt;}
.ws85{word-spacing:1.912819pt;}
.ws38{word-spacing:2.019087pt;}
.ws92{word-spacing:2.072221pt;}
.ws82{word-spacing:2.178489pt;}
.ws73{word-spacing:2.391024pt;}
.ws22{word-spacing:2.444158pt;}
.ws53{word-spacing:2.497292pt;}
.ws2e{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws4f{word-spacing:2.656693pt;}
.ws93{word-spacing:2.709827pt;}
.ws77{word-spacing:2.816095pt;}
.ws1a{word-spacing:2.861926pt;}
.ws96{word-spacing:2.866509pt;}
.wsa1{word-spacing:2.868523pt;}
.ws78{word-spacing:2.869229pt;}
.ws9c{word-spacing:2.869248pt;}
.ws21{word-spacing:2.922363pt;}
.wsa6{word-spacing:2.964890pt;}
.ws15{word-spacing:3.012710pt;}
.ws4d{word-spacing:3.028630pt;}
.ws87{word-spacing:3.134898pt;}
.wsa8{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.ws28{word-spacing:3.241166pt;}
.ws8b{word-spacing:3.251489pt;}
.ws74{word-spacing:3.294300pt;}
.ws3e{word-spacing:3.400567pt;}
.ws90{word-spacing:3.506835pt;}
.ws79{word-spacing:3.591490pt;}
.ws7f{word-spacing:3.666237pt;}
.ws76{word-spacing:3.772505pt;}
.ws20{word-spacing:3.985040pt;}
.ws7d{word-spacing:4.144442pt;}
.ws46{word-spacing:4.303843pt;}
.ws35{word-spacing:4.356977pt;}
.ws1c{word-spacing:4.410111pt;}
.ws2c{word-spacing:4.569513pt;}
.ws84{word-spacing:4.622646pt;}
.ws2b{word-spacing:4.782048pt;}
.ws44{word-spacing:4.888316pt;}
.ws83{word-spacing:5.100851pt;}
.ws86{word-spacing:5.207119pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.ws55{word-spacing:5.842255pt;}
.ws29{word-spacing:6.269796pt;}
.ws91{word-spacing:6.482332pt;}
.ws34{word-spacing:6.535466pt;}
.ws81{word-spacing:7.119938pt;}
.ws8f{word-spacing:7.173072pt;}
.wsf{word-spacing:7.699075pt;}
.ws6{word-spacing:9.038045pt;}
.ws5{word-spacing:9.261206pt;}
.ws30{word-spacing:10.584293pt;}
.wsab{word-spacing:11.429171pt;}
.wsa4{word-spacing:11.904862pt;}
.wsa3{word-spacing:11.905673pt;}
.ws9b{word-spacing:11.906022pt;}
.wsa9{word-spacing:11.906253pt;}
.ws9d{word-spacing:11.907379pt;}
.wsa5{word-spacing:11.955200pt;}
.wsa2{word-spacing:12.003021pt;}
.wsa7{word-spacing:12.098662pt;}
.ws9f{word-spacing:12.242125pt;}
.ws88{word-spacing:12.941312pt;}
.ws7{word-spacing:13.538470pt;}
.ws4{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wse{word-spacing:15.732893pt;}
.ws45{word-spacing:18.134355pt;}
.ws10{word-spacing:24.399002pt;}
.ws57{word-spacing:96.645837pt;}
.ws59{word-spacing:117.878272pt;}
.ws5d{word-spacing:147.766272pt;}
.ws5a{word-spacing:164.275004pt;}
.ws58{word-spacing:171.676672pt;}
.ws5b{word-spacing:194.821939pt;}
.ws61{word-spacing:200.349747pt;}
.ws5e{word-spacing:202.855834pt;}
.ws62{word-spacing:206.925747pt;}
.ws71{word-spacing:225.235968pt;}
.ws70{word-spacing:256.032563pt;}
.ws63{word-spacing:300.243081pt;}
.ws6f{word-spacing:320.877568pt;}
.ws6e{word-spacing:398.729830pt;}
.ws6d{word-spacing:526.910609pt;}
._2d{margin-left:-317.434470pt;}
._2{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._b{margin-left:-5.977600pt;}
._9{margin-left:-4.675792pt;}
._7{margin-left:-3.421811pt;}
._3{margin-left:-1.721549pt;}
._5{width:0.969929pt;}
._8{width:2.045648pt;}
._19{width:4.143417pt;}
._6{width:10.860531pt;}
._d{width:11.859558pt;}
._11{width:12.970005pt;}
._e{width:14.920090pt;}
._16{width:16.333362pt;}
._c{width:17.502413pt;}
._f{width:18.883788pt;}
._15{width:19.925212pt;}
._12{width:22.018686pt;}
._39{width:22.975095pt;}
._a{width:24.292966pt;}
._10{width:26.481931pt;}
._37{width:28.660419pt;}
._1{width:29.648896pt;}
._14{width:31.476514pt;}
._13{width:36.587969pt;}
._38{width:38.617730pt;}
._4{width:61.659808pt;}
._24{width:141.836493pt;}
._22{width:146.512162pt;}
._1e{width:147.814093pt;}
._23{width:161.012634pt;}
._1c{width:163.021107pt;}
._1f{width:164.729518pt;}
._1a{width:165.794714pt;}
._28{width:170.434458pt;}
._1d{width:171.724493pt;}
._1b{width:175.024128pt;}
._2c{width:176.412058pt;}
._2b{width:183.631872pt;}
._30{width:184.924160pt;}
._2a{width:189.657293pt;}
._2e{width:193.047612pt;}
._27{width:195.730534pt;}
._2f{width:200.083354pt;}
._20{width:202.855834pt;}
._26{width:206.851934pt;}
._29{width:208.833434pt;}
._21{width:214.858854pt;}
._25{width:226.670592pt;}
._32{width:260.049510pt;}
._36{width:277.743206pt;}
._31{width:302.036173pt;}
._3a{width:306.281438pt;}
._35{width:317.099725pt;}
._34{width:329.915699pt;}
._33{width:518.090547pt;}
._17{width:626.250870pt;}
._18{width:2018.236535pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:38.755733pt;}
.fse{font-size:40.381867pt;}
.fs9{font-size:41.988267pt;}
.fs10{font-size:42.077867pt;}
.fsc{font-size:42.507200pt;}
.fs5{font-size:46.397853pt;}
.fsd{font-size:47.820800pt;}
.fs11{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.044747pt;}
.y27{bottom:5.145434pt;}
.y2e{bottom:12.578910pt;}
.y26{bottom:19.838154pt;}
.y70{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y25{bottom:34.359615pt;}
.y5{bottom:59.133337pt;}
.ya8{bottom:82.869333pt;}
.ydb{bottom:85.428000pt;}
.y4{bottom:86.333337pt;}
.y1bd{bottom:86.873333pt;}
.y152{bottom:87.461333pt;}
.y151{bottom:89.888000pt;}
.y48{bottom:91.398667pt;}
.y6f{bottom:99.581333pt;}
.ya7{bottom:99.606667pt;}
.yda{bottom:102.165333pt;}
.y1bc{bottom:102.216000pt;}
.y150{bottom:104.198667pt;}
.y14f{bottom:106.625333pt;}
.y47{bottom:107.298667pt;}
.y6e{bottom:116.318667pt;}
.ya6{bottom:116.344000pt;}
.y1bb{bottom:117.557333pt;}
.yd9{bottom:118.902667pt;}
.y14e{bottom:120.936000pt;}
.y46{bottom:123.200000pt;}
.y14d{bottom:123.362667pt;}
.y23{bottom:123.790666pt;}
.y1ba{bottom:132.900000pt;}
.y6d{bottom:133.056000pt;}
.ya5{bottom:133.081333pt;}
.yd8{bottom:135.640000pt;}
.y14c{bottom:137.673333pt;}
.y45{bottom:139.100000pt;}
.y14b{bottom:140.100000pt;}
.y119{bottom:144.162667pt;}
.y1b9{bottom:148.242667pt;}
.y6c{bottom:149.793333pt;}
.ya4{bottom:149.818667pt;}
.yd7{bottom:152.377333pt;}
.y44{bottom:155.000000pt;}
.y14a{bottom:156.837333pt;}
.y118{bottom:160.900000pt;}
.y1b8{bottom:163.585333pt;}
.y6b{bottom:166.530667pt;}
.ya3{bottom:166.556000pt;}
.y43{bottom:170.901333pt;}
.y149{bottom:173.574667pt;}
.y1a{bottom:175.052000pt;}
.y117{bottom:177.637333pt;}
.y1b7{bottom:178.928000pt;}
.yd6{bottom:180.017333pt;}
.y6a{bottom:183.268000pt;}
.ya2{bottom:183.293333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y42{bottom:186.801333pt;}
.y148{bottom:190.312000pt;}
.y1b6{bottom:194.270667pt;}
.y116{bottom:194.374667pt;}
.yd5{bottom:196.766667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y69{bottom:200.005333pt;}
.ya1{bottom:200.030667pt;}
.y41{bottom:202.701333pt;}
.y147{bottom:207.049333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1b5{bottom:209.613333pt;}
.y115{bottom:211.112000pt;}
.yd4{bottom:211.378667pt;}
.y68{bottom:216.742667pt;}
.ya0{bottom:216.766667pt;}
.y146{bottom:223.786667pt;}
.y1b4{bottom:224.956000pt;}
.yd3{bottom:225.990667pt;}
.y114{bottom:227.849333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y67{bottom:233.480000pt;}
.y9f{bottom:233.504000pt;}
.y1b3{bottom:240.297333pt;}
.y145{bottom:240.524000pt;}
.yd2{bottom:240.602667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y113{bottom:244.585333pt;}
.y17a{bottom:246.910667pt;}
.y66{bottom:250.217333pt;}
.y9e{bottom:250.241333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yd1{bottom:255.214667pt;}
.y1b2{bottom:255.640000pt;}
.y144{bottom:257.261333pt;}
.y112{bottom:261.322667pt;}
.y65{bottom:266.954667pt;}
.y9d{bottom:266.978667pt;}
.yd0{bottom:269.826667pt;}
.y179{bottom:270.502667pt;}
.y1b1{bottom:270.982667pt;}
.y40{bottom:273.154667pt;}
.y143{bottom:273.998667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y111{bottom:278.060000pt;}
.y9c{bottom:281.289333pt;}
.y64{bottom:283.692000pt;}
.y9b{bottom:283.716000pt;}
.ycf{bottom:284.438667pt;}
.y178{bottom:286.124000pt;}
.y1b0{bottom:286.325333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y3f{bottom:289.054667pt;}
.y142{bottom:290.736000pt;}
.y110{bottom:294.797333pt;}
.yce{bottom:299.050667pt;}
.y63{bottom:300.429333pt;}
.y9a{bottom:300.453333pt;}
.y1af{bottom:301.668000pt;}
.y3e{bottom:304.954667pt;}
.y141{bottom:307.472000pt;}
.y11{bottom:309.452000pt;}
.y177{bottom:309.714667pt;}
.y10f{bottom:311.534667pt;}
.ycd{bottom:313.662667pt;}
.y1ae{bottom:317.010667pt;}
.y62{bottom:317.166667pt;}
.y99{bottom:317.190667pt;}
.y3d{bottom:320.856000pt;}
.y140{bottom:324.209333pt;}
.y10e{bottom:328.272000pt;}
.y1ad{bottom:332.353333pt;}
.y176{bottom:333.306667pt;}
.y61{bottom:333.904000pt;}
.y98{bottom:333.928000pt;}
.ycc{bottom:334.676000pt;}
.y13f{bottom:340.946667pt;}
.y10{bottom:343.809333pt;}
.y10d{bottom:345.009333pt;}
.y1ac{bottom:347.696000pt;}
.y175{bottom:348.928000pt;}
.y60{bottom:350.641333pt;}
.y97{bottom:350.665333pt;}
.y3c{bottom:354.688000pt;}
.y13e{bottom:357.684000pt;}
.y10c{bottom:359.320000pt;}
.y10b{bottom:361.746667pt;}
.yf{bottom:362.706666pt;}
.ycb{bottom:362.782667pt;}
.y1ab{bottom:363.038667pt;}
.y174{bottom:364.549333pt;}
.y5f{bottom:367.378667pt;}
.y96{bottom:367.402667pt;}
.y3b{bottom:370.589333pt;}
.y13d{bottom:374.421333pt;}
.y1aa{bottom:378.380000pt;}
.y10a{bottom:378.484000pt;}
.y5e{bottom:384.116000pt;}
.y95{bottom:384.140000pt;}
.y3a{bottom:386.489333pt;}
.y13c{bottom:391.158667pt;}
.y1a9{bottom:393.722667pt;}
.y173{bottom:396.112000pt;}
.y5d{bottom:400.853333pt;}
.y94{bottom:400.877333pt;}
.yca{bottom:407.721333pt;}
.y13b{bottom:407.896000pt;}
.y1a8{bottom:409.065333pt;}
.y172{bottom:412.848000pt;}
.y109{bottom:415.486667pt;}
.y5c{bottom:417.590667pt;}
.y93{bottom:417.614667pt;}
.y39{bottom:418.330667pt;}
.yc9{bottom:422.333333pt;}
.y1a7{bottom:424.408000pt;}
.y13a{bottom:424.633333pt;}
.y171{bottom:429.585333pt;}
.ye{bottom:430.990669pt;}
.y38{bottom:434.230667pt;}
.y5b{bottom:434.328000pt;}
.y92{bottom:434.352000pt;}
.y108{bottom:435.706667pt;}
.y1a6{bottom:439.750667pt;}
.y139{bottom:441.370667pt;}
.yc8{bottom:443.346667pt;}
.y170{bottom:446.322667pt;}
.yd{bottom:446.990669pt;}
.y5a{bottom:451.065333pt;}
.y91{bottom:451.089333pt;}
.y1a5{bottom:455.093333pt;}
.y107{bottom:456.720000pt;}
.yc7{bottom:457.958667pt;}
.y138{bottom:458.108000pt;}
.yc{bottom:462.990669pt;}
.y16f{bottom:463.060000pt;}
.y37{bottom:466.070667pt;}
.y59{bottom:467.801333pt;}
.y90{bottom:467.826667pt;}
.y1a4{bottom:474.420000pt;}
.y137{bottom:474.845333pt;}
.y106{bottom:477.734667pt;}
.yc6{bottom:478.973333pt;}
.yb{bottom:478.990666pt;}
.y16e{bottom:479.797333pt;}
.y36{bottom:481.972000pt;}
.y58{bottom:484.538667pt;}
.y8f{bottom:484.564000pt;}
.y136{bottom:491.582667pt;}
.y105{bottom:492.346667pt;}
.yc5{bottom:493.585333pt;}
.ya{bottom:494.990666pt;}
.y16d{bottom:496.534667pt;}
.y35{bottom:497.872000pt;}
.y57{bottom:501.276000pt;}
.y8e{bottom:501.301333pt;}
.y135{bottom:508.320000pt;}
.y1a3{bottom:508.766667pt;}
.y16c{bottom:513.272000pt;}
.y104{bottom:513.360000pt;}
.y34{bottom:513.772000pt;}
.yc4{bottom:514.598667pt;}
.y56{bottom:518.013333pt;}
.y8d{bottom:518.038667pt;}
.y134{bottom:525.057333pt;}
.y103{bottom:527.972000pt;}
.y1a2{bottom:528.986667pt;}
.yc3{bottom:529.210667pt;}
.y33{bottom:529.673333pt;}
.y16b{bottom:530.009333pt;}
.y8c{bottom:534.776000pt;}
.y55{bottom:538.736000pt;}
.y133{bottom:541.794667pt;}
.y32{bottom:545.573333pt;}
.y16a{bottom:546.746667pt;}
.y102{bottom:548.986667pt;}
.y100{bottom:549.264000pt;}
.y1a1{bottom:550.000000pt;}
.yc2{bottom:550.224000pt;}
.y8b{bottom:551.513333pt;}
.y132{bottom:558.532000pt;}
.y31{bottom:561.473333pt;}
.y169{bottom:563.484000pt;}
.y101{bottom:563.597333pt;}
.yff{bottom:563.876000pt;}
.y8a{bottom:568.250667pt;}
.yc1{bottom:571.238667pt;}
.y1a0{bottom:571.569333pt;}
.y9{bottom:573.786667pt;}
.y131{bottom:575.269333pt;}
.y30{bottom:577.374667pt;}
.yfd{bottom:578.765333pt;}
.y168{bottom:580.221333pt;}
.y89{bottom:584.988000pt;}
.y19f{bottom:586.181333pt;}
.yfc{bottom:586.348000pt;}
.y130{bottom:592.006667pt;}
.y8{bottom:592.685334pt;}
.yfe{bottom:593.377333pt;}
.y167{bottom:596.958667pt;}
.y2d{bottom:597.259968pt;}
.yc0{bottom:599.345333pt;}
.y88{bottom:601.725333pt;}
.y54{bottom:605.536000pt;}
.y19e{bottom:607.194667pt;}
.yfb{bottom:608.544000pt;}
.y12f{bottom:608.744000pt;}
.yf9{bottom:608.821333pt;}
.y166{bottom:613.696000pt;}
.y87{bottom:618.462667pt;}
.y19d{bottom:621.806667pt;}
.yfa{bottom:623.156000pt;}
.yf8{bottom:623.433333pt;}
.y12e{bottom:625.481333pt;}
.ybf{bottom:630.034667pt;}
.y165{bottom:630.433333pt;}
.y86{bottom:635.200000pt;}
.yf7{bottom:638.322667pt;}
.y53{bottom:638.772000pt;}
.y12d{bottom:642.218667pt;}
.y19c{bottom:642.821333pt;}
.y19a{bottom:643.098667pt;}
.y7{bottom:645.598667pt;}
.yf5{bottom:645.906667pt;}
.ybe{bottom:646.772000pt;}
.y164{bottom:647.170667pt;}
.y85{bottom:651.937333pt;}
.yf6{bottom:652.934667pt;}
.y52{bottom:656.066667pt;}
.y19b{bottom:657.433333pt;}
.y199{bottom:657.710667pt;}
.y12c{bottom:658.956000pt;}
.ybd{bottom:663.509333pt;}
.y163{bottom:663.908000pt;}
.yf2{bottom:668.101333pt;}
.y84{bottom:668.673333pt;}
.y3{bottom:668.977329pt;}
.y197{bottom:672.600000pt;}
.y51{bottom:673.361333pt;}
.yf4{bottom:675.130667pt;}
.y12b{bottom:679.677333pt;}
.y196{bottom:680.184000pt;}
.ybc{bottom:680.246667pt;}
.y162{bottom:680.645333pt;}
.yf1{bottom:682.713333pt;}
.y83{bottom:685.410667pt;}
.y198{bottom:687.212000pt;}
.yf3{bottom:689.742667pt;}
.y50{bottom:690.657333pt;}
.ybb{bottom:696.984000pt;}
.yf0{bottom:697.325333pt;}
.y161{bottom:697.382667pt;}
.y82{bottom:702.148000pt;}
.y195{bottom:702.378667pt;}
.y193{bottom:702.656000pt;}
.y4f{bottom:707.952000pt;}
.y12a{bottom:709.565333pt;}
.yef{bottom:711.937333pt;}
.yed{bottom:712.214667pt;}
.yba{bottom:713.721333pt;}
.y160{bottom:714.120000pt;}
.y194{bottom:716.990667pt;}
.y192{bottom:717.268000pt;}
.y81{bottom:718.885333pt;}
.y4e{bottom:725.248000pt;}
.y129{bottom:726.302667pt;}
.yee{bottom:726.549333pt;}
.yec{bottom:726.826667pt;}
.yb9{bottom:730.458667pt;}
.y15f{bottom:730.857333pt;}
.y191{bottom:732.157333pt;}
.y80{bottom:735.622667pt;}
.y18f{bottom:739.741333pt;}
.ye9{bottom:741.716000pt;}
.y4d{bottom:742.542667pt;}
.y128{bottom:743.040000pt;}
.y190{bottom:746.769333pt;}
.yb8{bottom:747.196000pt;}
.y15e{bottom:747.594667pt;}
.yeb{bottom:748.745333pt;}
.y7f{bottom:752.360000pt;}
.ye8{bottom:756.328000pt;}
.y127{bottom:759.777333pt;}
.y4c{bottom:759.837333pt;}
.yb7{bottom:761.506667pt;}
.y18c{bottom:761.937333pt;}
.yea{bottom:763.357333pt;}
.yb6{bottom:763.933333pt;}
.y15d{bottom:764.332000pt;}
.y18e{bottom:768.965333pt;}
.y7e{bottom:769.097333pt;}
.ye7{bottom:770.940000pt;}
.y126{bottom:776.514667pt;}
.y18b{bottom:776.548000pt;}
.yb5{bottom:780.670667pt;}
.y15c{bottom:781.069333pt;}
.y2{bottom:781.661334pt;}
.y18d{bottom:783.577333pt;}
.ye6{bottom:785.552000pt;}
.ye4{bottom:785.829333pt;}
.y7d{bottom:785.834667pt;}
.y18a{bottom:791.160000pt;}
.y125{bottom:793.252000pt;}
.y4b{bottom:794.136000pt;}
.yb4{bottom:797.408000pt;}
.y15b{bottom:797.806667pt;}
.ye5{bottom:800.164000pt;}
.ye3{bottom:800.441333pt;}
.y7c{bottom:802.572000pt;}
.y189{bottom:805.772000pt;}
.y187{bottom:806.050667pt;}
.y4a{bottom:808.482667pt;}
.y124{bottom:809.989333pt;}
.yb3{bottom:814.145333pt;}
.y15a{bottom:814.544000pt;}
.y7b{bottom:819.309333pt;}
.y188{bottom:820.384000pt;}
.y186{bottom:820.661333pt;}
.ye2{bottom:821.733333pt;}
.y49{bottom:822.828000pt;}
.y123{bottom:826.726667pt;}
.yb2{bottom:828.456000pt;}
.yb1{bottom:830.882667pt;}
.y159{bottom:831.281333pt;}
.y183{bottom:835.552000pt;}
.y7a{bottom:836.046667pt;}
.y185{bottom:842.580000pt;}
.y122{bottom:843.464000pt;}
.yb0{bottom:847.620000pt;}
.y158{bottom:848.018667pt;}
.ye1{bottom:849.840000pt;}
.y182{bottom:850.162667pt;}
.y79{bottom:852.784000pt;}
.y184{bottom:857.192000pt;}
.y1{bottom:859.312000pt;}
.y157{bottom:862.329333pt;}
.y2c{bottom:862.413333pt;}
.yaf{bottom:864.357333pt;}
.y156{bottom:864.754667pt;}
.y181{bottom:864.774667pt;}
.y78{bottom:869.521333pt;}
.y180{bottom:879.386667pt;}
.y17e{bottom:879.665333pt;}
.yae{bottom:881.094667pt;}
.ye0{bottom:881.492000pt;}
.y121{bottom:883.874667pt;}
.y77{bottom:886.258667pt;}
.y11e{bottom:891.181333pt;}
.y17f{bottom:893.998667pt;}
.y17d{bottom:894.276000pt;}
.yad{bottom:897.832000pt;}
.ydf{bottom:898.229333pt;}
.y120{bottom:898.486667pt;}
.y2b{bottom:900.404000pt;}
.y11d{bottom:905.793333pt;}
.y76{bottom:906.981333pt;}
.y11f{bottom:913.098667pt;}
.yac{bottom:914.569333pt;}
.yde{bottom:914.966667pt;}
.y17c{bottom:915.568000pt;}
.y1c1{bottom:920.546667pt;}
.y75{bottom:920.929333pt;}
.y2a{bottom:925.510667pt;}
.ydd{bottom:931.704000pt;}
.y11c{bottom:934.112000pt;}
.yab{bottom:935.290667pt;}
.y1c0{bottom:935.889333pt;}
.y17b{bottom:943.674667pt;}
.y155{bottom:946.014667pt;}
.ydc{bottom:948.441333pt;}
.y29{bottom:950.616000pt;}
.y74{bottom:950.817333pt;}
.y1bf{bottom:951.230667pt;}
.y11b{bottom:955.126667pt;}
.yaa{bottom:965.178667pt;}
.y1be{bottom:966.573333pt;}
.y73{bottom:967.554667pt;}
.y154{bottom:970.001333pt;}
.y28{bottom:975.722667pt;}
.ya9{bottom:981.916000pt;}
.y11a{bottom:983.233333pt;}
.y72{bottom:984.290667pt;}
.y153{bottom:986.738667pt;}
.y24{bottom:1014.377333pt;}
.y71{bottom:1043.020000pt;}
.hf{height:22.673858pt;}
.h12{height:27.076941pt;}
.h1b{height:27.184641pt;}
.h13{height:27.262909pt;}
.h7{height:28.560000pt;}
.h1a{height:29.397999pt;}
.h11{height:29.433775pt;}
.h10{height:30.399505pt;}
.h14{height:30.945242pt;}
.h18{height:31.157778pt;}
.ha{height:32.246508pt;}
.h15{height:34.430976pt;}
.h16{height:34.813542pt;}
.h1c{height:35.052646pt;}
.he{height:38.256384pt;}
.h17{height:38.681455pt;}
.hc{height:38.947124pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h19{height:41.524400pt;}
.h3{height:42.840000pt;}
.h20{height:44.431607pt;}
.h1f{height:44.436941pt;}
.h9{height:45.272024pt;}
.h2{height:48.960000pt;}
.h1d{height:64.034876pt;}
.h1e{height:64.040209pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.h21{height:72.548941pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x7{left:47.068000pt;}
.x5{left:48.000000pt;}
.x6{left:53.458976pt;}
.x32{left:56.274667pt;}
.x51{left:57.380000pt;}
.x49{left:59.000000pt;}
.x34{left:64.738667pt;}
.x40{left:66.125333pt;}
.x36{left:67.213333pt;}
.x4e{left:68.229333pt;}
.x53{left:70.668000pt;}
.x77{left:76.686667pt;}
.x52{left:81.464000pt;}
.x33{left:84.249333pt;}
.x31{left:86.818667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x56{left:97.656000pt;}
.x3e{left:99.176000pt;}
.x4f{left:100.986667pt;}
.x41{left:107.525333pt;}
.x46{left:110.000000pt;}
.x35{left:114.704000pt;}
.x54{left:131.381333pt;}
.x76{left:134.764000pt;}
.x55{left:136.282667pt;}
.x43{left:141.209333pt;}
.x4{left:180.874667pt;}
.xa{left:222.073333pt;}
.x9{left:223.020000pt;}
.x73{left:227.512000pt;}
.x1e{left:231.185333pt;}
.x5b{left:233.913333pt;}
.x3a{left:238.820000pt;}
.x3c{left:241.294667pt;}
.x74{left:244.836000pt;}
.x39{left:249.865333pt;}
.xc{left:251.365333pt;}
.x38{left:252.436000pt;}
.x1f{left:261.014667pt;}
.xb{left:275.088000pt;}
.x1a{left:278.894667pt;}
.x3b{left:280.321333pt;}
.x4b{left:285.549333pt;}
.x1b{left:287.324000pt;}
.x3d{left:288.785333pt;}
.x57{left:300.654667pt;}
.x3f{left:302.094667pt;}
.x47{left:306.882667pt;}
.x58{left:314.669333pt;}
.x30{left:318.018667pt;}
.x20{left:326.880000pt;}
.x75{left:348.422667pt;}
.x21{left:363.153333pt;}
.x6d{left:381.460000pt;}
.x5c{left:388.816000pt;}
.x6e{left:395.406667pt;}
.x67{left:398.193333pt;}
.x22{left:399.905333pt;}
.x5e{left:401.093333pt;}
.x3{left:404.408000pt;}
.x42{left:409.052000pt;}
.x68{left:412.420000pt;}
.x5d{left:415.128000pt;}
.xd{left:419.618667pt;}
.x69{left:425.564000pt;}
.x48{left:427.222667pt;}
.xe{left:429.684000pt;}
.x6a{left:442.880000pt;}
.x37{left:444.036000pt;}
.x15{left:469.930667pt;}
.x24{left:486.117333pt;}
.x25{left:493.009333pt;}
.xf{left:496.758667pt;}
.x10{left:503.834667pt;}
.x5a{left:506.576000pt;}
.x16{left:511.317333pt;}
.x66{left:524.918667pt;}
.x4c{left:526.230667pt;}
.x4d{left:530.056000pt;}
.x17{left:536.185333pt;}
.x62{left:537.542667pt;}
.x6f{left:541.629333pt;}
.x11{left:546.125333pt;}
.x12{left:553.840000pt;}
.x63{left:554.866667pt;}
.x6b{left:559.764000pt;}
.x13{left:566.662667pt;}
.x70{left:568.718667pt;}
.x26{left:573.713333pt;}
.x5f{left:579.444000pt;}
.x27{left:584.677333pt;}
.x71{left:585.754667pt;}
.x61{left:587.909333pt;}
.x23{left:597.929333pt;}
.x60{left:598.954667pt;}
.x6c{left:604.450667pt;}
.x28{left:607.970667pt;}
.x14{left:612.373333pt;}
.x2e{left:613.440000pt;}
.x29{left:622.966667pt;}
.x59{left:629.660000pt;}
.x72{left:633.388000pt;}
.x2a{left:638.020000pt;}
.x2b{left:644.913333pt;}
.x50{left:646.570667pt;}
.x45{left:650.396000pt;}
.x44{left:654.574667pt;}
.x18{left:661.041333pt;}
.x4a{left:667.904000pt;}
.x19{left:672.616000pt;}
.x64{left:681.040000pt;}
.x2f{left:682.974667pt;}
.x1c{left:697.244000pt;}
.x65{left:698.373333pt;}
.x2c{left:702.186667pt;}
.x1d{left:704.910667pt;}
.x2d{left:713.149333pt;}
}




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