
    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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4ec87cd9065ba45999e3849.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c4e1c8c6b7bcc2f6942f4b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bab5208e9fb442cdcf61e1e4.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_9c6cd0a0e8ede2e64d878c8c.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_4ae58bb46c8c9c1abf7ba8c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_0d41d63839eb4615d7afbedc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.486000;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_3164dcc5bc03f32bf5ae704a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1f3ec8db0826542e0686d4ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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_f3acdaae4680d55b1ab4f90d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;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);}
.m7{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);}
.m13{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);}
.mf{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);}
.m17{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);}
.m24{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);}
.m21{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);}
.m1{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);}
.m6{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.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);}
.m27{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);}
.m1b{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);}
.m18{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);}
.m1a{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);}
.m10{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);}
.m9{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);}
.m1e{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);}
.m5{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);}
.m11{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);}
.m29{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);}
.mc{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);}
.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);}
.m12{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);}
.m22{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);}
.m16{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);}
.m1d{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);}
.m14{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);}
.m20{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);}
.mb{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);}
.m25{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);}
.m15{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);}
.m1f{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);}
.ma{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);}
.me{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);}
.m4{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);}
.m26{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);}
.m23{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);}
.m28{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000583px;}
.ls1a{letter-spacing:0.000676px;}
.ls12{letter-spacing:0.000800px;}
.ls14{letter-spacing:0.001036px;}
.ls1c{letter-spacing:0.001155px;}
.ls1e{letter-spacing:0.001200px;}
.ls1d{letter-spacing:0.002053px;}
.ls10{letter-spacing:0.003668px;}
.ls13{letter-spacing:0.004523px;}
.lsd{letter-spacing:1.195512px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.lsc{letter-spacing:2.983200px;}
.ls2{letter-spacing:2.998354px;}
.ls11{letter-spacing:3.513900px;}
.ls1{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls19{letter-spacing:13.280903px;}
.ls1f{letter-spacing:13.413223px;}
.ls15{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.450090px;}
.ls17{letter-spacing:13.454400px;}
.ls18{letter-spacing:13.583633px;}
.ls16{letter-spacing:13.668941px;}
.ls4{letter-spacing:14.944200px;}
.lsb{letter-spacing:15.422105px;}
.ls1b{letter-spacing:15.626871px;}
.lse{letter-spacing:16.856719px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.lsf{letter-spacing:93.734700px;}
.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;}
}
.wsb3{word-spacing:-13.449600px;}
.ws19{word-spacing:-11.955150px;}
.ws16{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws6f{word-spacing:-4.244068px;}
.ws97{word-spacing:-4.064741px;}
.ws7e{word-spacing:-3.466985px;}
.ws41{word-spacing:-3.347434px;}
.ws9c{word-spacing:-3.227882px;}
.ws82{word-spacing:-3.174106px;}
.wsaf{word-spacing:-2.689920px;}
.ws91{word-spacing:-2.510575px;}
.ws4f{word-spacing:-2.450800px;}
.ws50{word-spacing:-2.391024px;}
.ws51{word-spacing:-2.331248px;}
.ws5c{word-spacing:-2.271473px;}
.ws43{word-spacing:-2.211697px;}
.ws45{word-spacing:-2.032370px;}
.ws1{word-spacing:-1.908367px;}
.ws1b{word-spacing:-1.829146px;}
.wsd4{word-spacing:-1.775347px;}
.ws76{word-spacing:-1.733492px;}
.ws7f{word-spacing:-1.613941px;}
.ws1c{word-spacing:-1.506355px;}
.ws8{word-spacing:-1.506341px;}
.ws2b{word-spacing:-1.494390px;}
.ws53{word-spacing:-1.434614px;}
.ws98{word-spacing:-1.389783px;}
.wsb1{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.ws52{word-spacing:-1.255288px;}
.ws9{word-spacing:-1.171598px;}
.ws70{word-spacing:-1.135736px;}
.ws3e{word-spacing:-1.075961px;}
.wsb{word-spacing:-1.046070px;}
.ws42{word-spacing:-1.016185px;}
.ws4d{word-spacing:-0.956410px;}
.ws80{word-spacing:-0.896634px;}
.wscb{word-spacing:-0.806976px;}
.ws3{word-spacing:-0.795013px;}
.ws88{word-spacing:-0.777083px;}
.ws7d{word-spacing:-0.717307px;}
.ws35{word-spacing:-0.657532px;}
.ws89{word-spacing:-0.597756px;}
.wscc{word-spacing:-0.591782px;}
.ws2{word-spacing:-0.572459px;}
.wsd0{word-spacing:-0.537984px;}
.ws73{word-spacing:-0.478205px;}
.ws59{word-spacing:-0.358654px;}
.ws2a{word-spacing:-0.298878px;}
.ws22{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.wsc7{word-spacing:-0.215194px;}
.ws39{word-spacing:-0.179327px;}
.wsc5{word-spacing:-0.170014px;}
.wsb0{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.wsb5{word-spacing:-0.107597px;}
.ws17{word-spacing:-0.059776px;}
.ws74{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.025066px;}
.wsd3{word-spacing:-0.005894px;}
.ws15{word-spacing:-0.005434px;}
.ws26{word-spacing:-0.004867px;}
.wsc6{word-spacing:-0.003466px;}
.wscd{word-spacing:-0.002170px;}
.ws13{word-spacing:-0.001957px;}
.wsbb{word-spacing:-0.001171px;}
.ws6{word-spacing:-0.001129px;}
.ws4{word-spacing:0.000000px;}
.ws34{word-spacing:0.000727px;}
.ws21{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.ws1d{word-spacing:0.107597px;}
.ws3f{word-spacing:0.119551px;}
.ws18{word-spacing:0.143462px;}
.ws23{word-spacing:0.161395px;}
.ws3c{word-spacing:0.179327px;}
.ws5e{word-spacing:0.215194px;}
.ws38{word-spacing:0.239102px;}
.ws36{word-spacing:0.298878px;}
.ws24{word-spacing:0.322790px;}
.ws3d{word-spacing:0.358654px;}
.ws87{word-spacing:0.418429px;}
.ws5d{word-spacing:0.478205px;}
.ws4e{word-spacing:0.537980px;}
.ws49{word-spacing:0.597756px;}
.wsae{word-spacing:0.645581px;}
.ws4a{word-spacing:0.657532px;}
.ws20{word-spacing:0.753178px;}
.wsc0{word-spacing:0.860774px;}
.ws58{word-spacing:0.896634px;}
.wsa{word-spacing:1.004227px;}
.ws8a{word-spacing:1.016185px;}
.ws9d{word-spacing:1.075961px;}
.wsba{word-spacing:1.075968px;}
.wsda{word-spacing:1.129766px;}
.ws4b{word-spacing:1.135736px;}
.ws9a{word-spacing:1.195512px;}
.ws6d{word-spacing:1.255288px;}
.wsd2{word-spacing:1.291162px;}
.ws92{word-spacing:1.315063px;}
.wsa6{word-spacing:1.344960px;}
.ws57{word-spacing:1.374839px;}
.ws33{word-spacing:1.434614px;}
.wsb9{word-spacing:1.452557px;}
.ws54{word-spacing:1.613941px;}
.wsa4{word-spacing:1.667750px;}
.ws46{word-spacing:1.733492px;}
.wsa5{word-spacing:1.775347px;}
.ws2f{word-spacing:1.793268px;}
.ws37{word-spacing:1.853044px;}
.ws95{word-spacing:1.912819px;}
.ws94{word-spacing:1.972595px;}
.ws4c{word-spacing:2.032370px;}
.ws78{word-spacing:2.151922px;}
.wsd6{word-spacing:2.205734px;}
.ws7a{word-spacing:2.211697px;}
.ws77{word-spacing:2.271473px;}
.ws30{word-spacing:2.331248px;}
.ws47{word-spacing:2.391024px;}
.ws40{word-spacing:2.450800px;}
.ws5{word-spacing:2.510856px;}
.ws99{word-spacing:2.630126px;}
.ws93{word-spacing:2.689902px;}
.wsad{word-spacing:2.743718px;}
.ws1a{word-spacing:2.869236px;}
.ws2d{word-spacing:2.988780px;}
.wsac{word-spacing:3.066509px;}
.wsd1{word-spacing:3.218035px;}
.wsb6{word-spacing:3.218736px;}
.ws25{word-spacing:3.219667px;}
.wsb7{word-spacing:3.221030px;}
.wsc9{word-spacing:3.221760px;}
.wsbe{word-spacing:3.221808px;}
.wsce{word-spacing:3.223094px;}
.wsd9{word-spacing:3.223584px;}
.wsab{word-spacing:3.224822px;}
.wsca{word-spacing:3.225571px;}
.wsa0{word-spacing:3.227882px;}
.wsb8{word-spacing:3.227904px;}
.wscf{word-spacing:3.281702px;}
.wsa1{word-spacing:3.347434px;}
.wsa3{word-spacing:3.407209px;}
.wsc3{word-spacing:3.443098px;}
.wsa2{word-spacing:3.466985px;}
.ws27{word-spacing:3.586536px;}
.wsbd{word-spacing:3.604493px;}
.wsd8{word-spacing:3.765888px;}
.wsc2{word-spacing:3.873485px;}
.ws3b{word-spacing:3.885414px;}
.wsb4{word-spacing:3.927283px;}
.ws1e{word-spacing:4.034880px;}
.ws7b{word-spacing:4.064741px;}
.ws9b{word-spacing:4.124516px;}
.wsa9{word-spacing:4.142477px;}
.wsa7{word-spacing:4.196275px;}
.ws44{word-spacing:4.244068px;}
.ws7c{word-spacing:4.303843px;}
.wsc4{word-spacing:4.357670px;}
.wsc8{word-spacing:4.411469px;}
.ws6e{word-spacing:4.483170px;}
.ws9f{word-spacing:4.542946px;}
.ws71{word-spacing:4.722272px;}
.ws11{word-spacing:4.770079px;}
.ws12{word-spacing:4.853765px;}
.ws69{word-spacing:5.021150px;}
.ws3a{word-spacing:5.140702px;}
.ws96{word-spacing:5.260253px;}
.wsa8{word-spacing:5.272243px;}
.ws56{word-spacing:5.320028px;}
.ws9e{word-spacing:5.379804px;}
.wsbc{word-spacing:5.487437px;}
.ws6a{word-spacing:5.499355px;}
.wsaa{word-spacing:5.541235px;}
.ws1f{word-spacing:5.756429px;}
.ws32{word-spacing:5.858009px;}
.ws31{word-spacing:5.917784px;}
.ws55{word-spacing:6.097111px;}
.ws72{word-spacing:6.455765px;}
.ws6c{word-spacing:6.575316px;}
.wsd7{word-spacing:6.671002px;}
.ws2e{word-spacing:7.053521px;}
.ws75{word-spacing:7.651277px;}
.wsf{word-spacing:7.782761px;}
.ws48{word-spacing:8.428360px;}
.ws79{word-spacing:8.488135px;}
.ws6b{word-spacing:8.667462px;}
.wsd5{word-spacing:8.769139px;}
.wsc1{word-spacing:10.329293px;}
.wsd{word-spacing:12.176255px;}
.wse{word-spacing:16.109478px;}
.ws10{word-spacing:26.109907px;}
.wsc{word-spacing:26.840252px;}
.ws14{word-spacing:40.042186px;}
.ws8b{word-spacing:84.517286px;}
.ws86{word-spacing:85.270464px;}
.ws85{word-spacing:109.372147px;}
.ws83{word-spacing:112.169664px;}
.ws5a{word-spacing:129.331354px;}
.ws84{word-spacing:136.271347px;}
.ws81{word-spacing:153.638122px;}
.ws8e{word-spacing:165.268685px;}
.ws8f{word-spacing:203.573146px;}
.ws5b{word-spacing:211.320115px;}
.wsb2{word-spacing:343.986970px;}
.ws90{word-spacing:424.469376px;}
.ws8d{word-spacing:437.918976px;}
.ws8c{word-spacing:451.368576px;}
.ws60{word-spacing:943.623936px;}
.ws64{word-spacing:970.361741px;}
.ws66{word-spacing:976.279565px;}
.ws63{word-spacing:981.175219px;}
.ws61{word-spacing:983.918938px;}
.ws5f{word-spacing:992.903270px;}
.ws68{word-spacing:997.368538px;}
.ws67{word-spacing:1004.093338px;}
.ws65{word-spacing:1010.549146px;}
.ws62{word-spacing:1014.960614px;}
._93{margin-left:-24.532070px;}
._91{margin-left:-21.220085px;}
._94{margin-left:-17.921058px;}
._72{margin-left:-9.429107px;}
._3a{margin-left:-7.890379px;}
._d{margin-left:-6.694867px;}
._9{margin-left:-5.057050px;}
._2{margin-left:-3.745534px;}
._3e{margin-left:-2.528198px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._7{width:3.688062px;}
._92{width:6.737412px;}
._71{width:9.160801px;}
._3{width:11.176007px;}
._4{width:12.971268px;}
._12{width:14.822586px;}
._a{width:16.332384px;}
._c{width:17.430682px;}
._b{width:18.506650px;}
._e{width:19.606397px;}
._15{width:21.100787px;}
._11{width:22.901622px;}
._f{width:24.448220px;}
._3d{width:25.785985px;}
._16{width:27.974981px;}
._6{width:30.587087px;}
._3b{width:34.378537px;}
._3c{width:35.506706px;}
._10{width:36.702218px;}
._8f{width:37.981670px;}
._3f{width:44.353495px;}
._8e{width:48.095770px;}
._90{width:61.868160px;}
._8{width:69.369634px;}
._81{width:71.713267px;}
._80{width:72.950304px;}
._8d{width:88.767360px;}
._82{width:100.283729px;}
._49{width:109.178690px;}
._74{width:117.818496px;}
._48{width:120.293222px;}
._1c{width:128.578176px;}
._46{width:136.271347px;}
._20{width:142.027776px;}
._47{width:144.201449px;}
._43{width:147.192422px;}
._1e{width:155.315981px;}
._60{width:169.088371px;}
._42{width:170.782128px;}
._1d{width:174.306816px;}
._5b{width:178.449293px;}
._62{width:180.063245px;}
._61{width:181.515802px;}
._1b{width:185.443085px;}
._51{width:193.190054px;}
._21{width:195.557184px;}
._17{width:198.163373px;}
._26{width:199.753459px;}
._23{width:203.389421px;}
._22{width:205.456090px;}
._41{width:209.867558px;}
._1f{width:212.342285px;}
._4c{width:217.022746px;}
._2b{width:231.019908px;}
._40{width:240.263654px;}
._30{width:245.535898px;}
._2a{width:257.317747px;}
._5d{width:258.608909px;}
._5c{width:259.684877px;}
._32{width:267.162854px;}
._24{width:272.650291px;}
._84{width:276.362381px;}
._5a{width:281.042842px;}
._45{width:288.219766px;}
._1a{width:290.780352px;}
._59{width:295.514611px;}
._29{width:299.549491px;}
._44{width:301.970419px;}
._18{width:303.799565px;}
._6d{width:305.036928px;}
._57{width:306.220493px;}
._28{width:312.945293px;}
._6e{width:317.464358px;}
._4e{width:319.401101px;}
._19{width:323.024573px;}
._2e{width:325.856909px;}
._58{width:326.986675px;}
._8c{width:328.008845px;}
._55{width:329.300006px;}
._4b{width:332.043725px;}
._2c{width:334.679846px;}
._4d{width:339.521702px;}
._50{width:341.081856px;}
._54{width:343.771776px;}
._69{width:345.493325px;}
._4a{width:346.515494px;}
._64{width:348.021850px;}
._63{width:349.097818px;}
._66{width:352.164326px;}
._65{width:353.240294px;}
._4f{width:355.607424px;}
._89{width:357.705562px;}
._5f{width:358.727731px;}
._5e{width:359.803699px;}
._6c{width:363.031603px;}
._6b{width:364.107571px;}
._75{width:365.129741px;}
._67{width:366.474701px;}
._6f{width:369.971597px;}
._7f{width:372.876710px;}
._6a{width:376.965389px;}
._68{width:378.902131px;}
._70{width:381.269261px;}
._7d{width:383.743987px;}
._86{width:393.642893px;}
._8a{width:395.633434px;}
._83{width:399.453120px;}
._7e{width:405.370944px;}
._31{width:408.007066px;}
._85{width:419.735117px;}
._88{width:428.504256px;}
._7a{width:430.440998px;}
._7c{width:431.570765px;}
._53{width:437.918976px;}
._7b{width:440.393702px;}
._87{width:443.245018px;}
._76{width:445.773542px;}
._8b{width:449.109043px;}
._52{width:451.368576px;}
._2d{width:454.680211px;}
._56{width:464.818176px;}
._79{width:472.672742px;}
._77{width:477.783590px;}
._78{width:486.068544px;}
._37{width:489.135053px;}
._25{width:509.524646px;}
._35{width:525.341376px;}
._2f{width:531.097805px;}
._33{width:551.379802px;}
._39{width:560.202739px;}
._34{width:563.299181px;}
._36{width:574.943501px;}
._27{width:576.826445px;}
._38{width:582.744269px;}
._13{width:745.140589px;}
._73{width:2454.273000px;}
._14{width:2478.183000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(50,38,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsd{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:55.591308px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:113.389200px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1d{bottom:18.595167px;}
.y4a{bottom:31.890000px;}
.y11c{bottom:91.665000px;}
.yd9{bottom:100.597500px;}
.y206{bottom:104.503500px;}
.y1b{bottom:104.646000px;}
.y143{bottom:105.447000px;}
.y196{bottom:105.652500px;}
.y1cf{bottom:106.207500px;}
.y80{bottom:107.193000px;}
.y157{bottom:110.491500px;}
.y11b{bottom:110.494500px;}
.yd8{bottom:119.427000px;}
.y205{bottom:121.762500px;}
.y142{bottom:121.885500px;}
.yf7{bottom:121.908000px;}
.y1a{bottom:122.535000px;}
.y195{bottom:123.226500px;}
.y1ce{bottom:123.468000px;}
.y49{bottom:123.756000px;}
.yb6{bottom:124.486500px;}
.y7f{bottom:126.022500px;}
.y96{bottom:126.471000px;}
.y156{bottom:129.321000px;}
.y11a{bottom:129.324000px;}
.yd7{bottom:138.256500px;}
.y141{bottom:138.322500px;}
.y204{bottom:139.023000px;}
.y19{bottom:140.422500px;}
.y1cd{bottom:140.728500px;}
.yf6{bottom:140.737500px;}
.y194{bottom:140.800500px;}
.y48{bottom:142.585500px;}
.yb5{bottom:143.316000px;}
.y7e{bottom:144.852000px;}
.y95{bottom:145.300500px;}
.y155{bottom:148.150500px;}
.y119{bottom:148.153500px;}
.y140{bottom:154.761000px;}
.y203{bottom:156.283500px;}
.yd6{bottom:157.086000px;}
.y1cc{bottom:157.989000px;}
.y18{bottom:158.310000px;}
.y193{bottom:158.374500px;}
.yf5{bottom:159.567000px;}
.y47{bottom:161.415000px;}
.yb4{bottom:162.145500px;}
.y7d{bottom:163.681500px;}
.y94{bottom:164.130000px;}
.y154{bottom:166.980000px;}
.y118{bottom:166.983000px;}
.y13f{bottom:171.199500px;}
.y202{bottom:173.544000px;}
.y1cb{bottom:175.249500px;}
.yd5{bottom:175.915500px;}
.y192{bottom:175.948500px;}
.y17{bottom:176.199000px;}
.yf4{bottom:178.396500px;}
.y46{bottom:180.244500px;}
.yb3{bottom:180.975000px;}
.y7c{bottom:182.511000px;}
.y93{bottom:182.959500px;}
.y153{bottom:185.809500px;}
.y117{bottom:185.812500px;}
.y13e{bottom:187.638000px;}
.y201{bottom:190.804500px;}
.y1ca{bottom:192.510000px;}
.y191{bottom:193.522500px;}
.y16{bottom:194.086500px;}
.yd4{bottom:194.745000px;}
.yf3{bottom:197.226000px;}
.y45{bottom:199.074000px;}
.yb2{bottom:199.804500px;}
.y7b{bottom:201.340500px;}
.y92{bottom:201.789000px;}
.y13d{bottom:204.076500px;}
.y152{bottom:204.639000px;}
.y116{bottom:204.642000px;}
.y200{bottom:208.065000px;}
.y1c9{bottom:209.770500px;}
.y190{bottom:211.096500px;}
.y15{bottom:211.974000px;}
.yd2{bottom:213.574500px;}
.yf2{bottom:216.055500px;}
.y44{bottom:217.903500px;}
.yb1{bottom:218.634000px;}
.yd3{bottom:218.998500px;}
.y7a{bottom:220.170000px;}
.y13c{bottom:220.515000px;}
.y91{bottom:220.618500px;}
.y151{bottom:223.468500px;}
.y115{bottom:223.471500px;}
.y1ff{bottom:225.325500px;}
.y1c8{bottom:227.031000px;}
.y18f{bottom:228.670500px;}
.y14{bottom:229.863000px;}
.yd1{bottom:232.404000px;}
.yf1{bottom:234.885000px;}
.y43{bottom:236.733000px;}
.y13b{bottom:236.953500px;}
.yb0{bottom:237.462000px;}
.y79{bottom:238.999500px;}
.y90{bottom:239.446500px;}
.y150{bottom:242.298000px;}
.y114{bottom:242.301000px;}
.y1fe{bottom:242.586000px;}
.y1c7{bottom:244.290000px;}
.y18e{bottom:246.244500px;}
.yd0{bottom:251.233500px;}
.y13a{bottom:253.392000px;}
.yf0{bottom:253.714500px;}
.y42{bottom:255.562500px;}
.yaf{bottom:256.291500px;}
.y78{bottom:257.829000px;}
.y8f{bottom:258.276000px;}
.y1fd{bottom:259.846500px;}
.y14f{bottom:261.127500px;}
.y113{bottom:261.130500px;}
.y1c6{bottom:261.550500px;}
.y18d{bottom:263.818500px;}
.y139{bottom:269.830500px;}
.ycf{bottom:270.063000px;}
.yef{bottom:272.544000px;}
.y41{bottom:274.392000px;}
.yae{bottom:275.121000px;}
.y77{bottom:276.658500px;}
.y8e{bottom:277.105500px;}
.y1c5{bottom:278.811000px;}
.y14e{bottom:279.957000px;}
.y112{bottom:279.960000px;}
.y18c{bottom:281.392500px;}
.y138{bottom:286.269000px;}
.yce{bottom:288.892500px;}
.yee{bottom:291.373500px;}
.y40{bottom:293.221500px;}
.yad{bottom:293.950500px;}
.y1fc{bottom:294.366000px;}
.y76{bottom:295.488000px;}
.y8d{bottom:295.935000px;}
.y1c4{bottom:296.071500px;}
.y14d{bottom:298.786500px;}
.y13{bottom:300.154500px;}
.y137{bottom:302.706000px;}
.y111{bottom:303.273000px;}
.ycd{bottom:307.722000px;}
.yed{bottom:310.203000px;}
.y18b{bottom:311.269500px;}
.y1fb{bottom:311.626500px;}
.y3f{bottom:312.051000px;}
.y1c3{bottom:313.332000px;}
.y75{bottom:314.317500px;}
.y8c{bottom:314.764500px;}
.yac{bottom:317.263500px;}
.y14c{bottom:317.616000px;}
.y12{bottom:318.043500px;}
.y136{bottom:319.144500px;}
.ycc{bottom:326.551500px;}
.y1fa{bottom:328.887000px;}
.yec{bottom:329.032500px;}
.y1c2{bottom:330.592500px;}
.y3e{bottom:330.880500px;}
.y110{bottom:331.248000px;}
.y74{bottom:333.145500px;}
.y8b{bottom:333.594000px;}
.y135{bottom:335.583000px;}
.y11{bottom:335.931000px;}
.y14b{bottom:336.445500px;}
.ycb{bottom:345.381000px;}
.y1f9{bottom:346.147500px;}
.y1c1{bottom:347.853000px;}
.yeb{bottom:347.862000px;}
.y18a{bottom:348.031500px;}
.y3d{bottom:349.710000px;}
.y73{bottom:351.975000px;}
.y134{bottom:352.021500px;}
.y8a{bottom:352.423500px;}
.y10{bottom:353.818500px;}
.y14a{bottom:355.275000px;}
.yab{bottom:359.587500px;}
.y1f8{bottom:363.408000px;}
.yca{bottom:364.210500px;}
.yea{bottom:366.691500px;}
.y133{bottom:368.460000px;}
.y3c{bottom:368.539500px;}
.y1c0{bottom:369.597000px;}
.y72{bottom:370.804500px;}
.y89{bottom:371.253000px;}
.y149{bottom:374.104500px;}
.y189{bottom:374.571000px;}
.yaa{bottom:376.026000px;}
.y1f7{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.yc9{bottom:383.040000px;}
.y132{bottom:384.898500px;}
.ye9{bottom:385.521000px;}
.y3b{bottom:387.369000px;}
.y71{bottom:389.634000px;}
.y88{bottom:390.082500px;}
.y188{bottom:392.145000px;}
.ya9{bottom:392.464500px;}
.y148{bottom:392.934000px;}
.y1f6{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y131{bottom:401.337000px;}
.yc8{bottom:401.869500px;}
.ye8{bottom:404.350500px;}
.y1bf{bottom:405.279000px;}
.y70{bottom:408.463500px;}
.ya8{bottom:408.903000px;}
.y87{bottom:408.912000px;}
.y3a{bottom:410.680500px;}
.y1f5{bottom:415.188000px;}
.y147{bottom:416.245500px;}
.yd{bottom:416.449500px;}
.y130{bottom:417.775500px;}
.y187{bottom:418.686000px;}
.yc7{bottom:420.699000px;}
.y1be{bottom:422.854500px;}
.ye7{bottom:423.180000px;}
.ya7{bottom:425.341500px;}
.y6f{bottom:427.293000px;}
.y86{bottom:427.741500px;}
.y1f4{bottom:432.448500px;}
.y12f{bottom:434.214000px;}
.y146{bottom:435.075000px;}
.y186{bottom:436.260000px;}
.yc6{bottom:439.528500px;}
.y1bd{bottom:440.428500px;}
.ya6{bottom:441.778500px;}
.yc{bottom:444.798000px;}
.y6e{bottom:446.122500px;}
.ye6{bottom:446.491500px;}
.y85{bottom:446.571000px;}
.y1f3{bottom:449.709000px;}
.y12e{bottom:450.652500px;}
.y185{bottom:453.834000px;}
.y145{bottom:453.904500px;}
.y1bc{bottom:458.002500px;}
.ya5{bottom:458.217000px;}
.yc5{bottom:458.358000px;}
.y6d{bottom:464.952000px;}
.y84{bottom:465.400500px;}
.y1f2{bottom:466.969500px;}
.y12d{bottom:467.089500px;}
.y184{bottom:471.408000px;}
.yb{bottom:471.652500px;}
.ya4{bottom:474.655500px;}
.y1bb{bottom:475.576500px;}
.yc4{bottom:477.187500px;}
.ye5{bottom:480.115500px;}
.y12c{bottom:483.528000px;}
.y6c{bottom:483.781500px;}
.y83{bottom:484.230000px;}
.y39{bottom:484.243500px;}
.y144{bottom:487.471500px;}
.y183{bottom:488.982000px;}
.ya{bottom:489.540000px;}
.ya3{bottom:491.094000px;}
.y1ba{bottom:493.150500px;}
.yc3{bottom:496.015500px;}
.ye4{bottom:498.945000px;}
.y12b{bottom:499.966500px;}
.y1f1{bottom:501.490500px;}
.y16d{bottom:502.611000px;}
.y82{bottom:503.059500px;}
.y182{bottom:506.557500px;}
.y6b{bottom:507.094500px;}
.y9{bottom:507.429000px;}
.ya2{bottom:507.532500px;}
.y1b9{bottom:510.724500px;}
.y12a{bottom:516.405000px;}
.ye3{bottom:517.774500px;}
.y1f0{bottom:518.751000px;}
.y16c{bottom:521.440500px;}
.y38{bottom:521.634000px;}
.y81{bottom:521.889000px;}
.yc2{bottom:522.466500px;}
.ya1{bottom:523.971000px;}
.y181{bottom:524.131500px;}
.y8{bottom:525.316500px;}
.y1b8{bottom:528.298500px;}
.y129{bottom:532.843500px;}
.y1ef{bottom:536.011500px;}
.ye2{bottom:536.604000px;}
.yc1{bottom:539.727000px;}
.y16b{bottom:540.270000px;}
.ya0{bottom:540.409500px;}
.y6a{bottom:540.718500px;}
.y180{bottom:541.705500px;}
.y7{bottom:543.204000px;}
.y1b7{bottom:545.872500px;}
.y128{bottom:549.282000px;}
.y1ee{bottom:553.272000px;}
.ye1{bottom:555.433500px;}
.y9f{bottom:556.848000px;}
.yc0{bottom:556.987500px;}
.y37{bottom:559.023000px;}
.y16a{bottom:559.099500px;}
.y17f{bottom:559.279500px;}
.y69{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y1b6{bottom:563.446500px;}
.y127{bottom:565.720500px;}
.y1ed{bottom:570.531000px;}
.y9e{bottom:573.286500px;}
.ybf{bottom:574.248000px;}
.ye0{bottom:574.263000px;}
.y169{bottom:577.929000px;}
.y68{bottom:578.377500px;}
.y36{bottom:578.481000px;}
.y5{bottom:578.980500px;}
.y1b5{bottom:581.020500px;}
.y126{bottom:582.159000px;}
.y17e{bottom:585.819000px;}
.y1ec{bottom:587.791500px;}
.y9d{bottom:589.725000px;}
.ybe{bottom:591.508500px;}
.ydf{bottom:593.092500px;}
.y168{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y67{bottom:597.207000px;}
.y35{bottom:597.937500px;}
.y1b4{bottom:598.594500px;}
.y125{bottom:598.597500px;}
.y17d{bottom:603.394500px;}
.y1eb{bottom:605.052000px;}
.y9c{bottom:606.163500px;}
.ybd{bottom:608.769000px;}
.yde{bottom:611.922000px;}
.y1{bottom:614.756964px;}
.y167{bottom:615.588000px;}
.y66{bottom:616.036500px;}
.y1b3{bottom:616.168500px;}
.y34{bottom:617.395500px;}
.y124{bottom:622.237500px;}
.y1ea{bottom:622.312500px;}
.y9b{bottom:622.600500px;}
.ybc{bottom:626.028000px;}
.y17c{bottom:629.934000px;}
.ydd{bottom:630.751500px;}
.y1b2{bottom:633.742500px;}
.y166{bottom:634.417500px;}
.y65{bottom:634.866000px;}
.y33{bottom:636.852000px;}
.y9a{bottom:639.039000px;}
.y1e9{bottom:639.573000px;}
.ybb{bottom:643.288500px;}
.y17b{bottom:647.508000px;}
.ydc{bottom:649.581000px;}
.y1b1{bottom:651.316500px;}
.y165{bottom:653.247000px;}
.y64{bottom:653.695500px;}
.y99{bottom:655.477500px;}
.y32{bottom:656.308500px;}
.y1e8{bottom:656.833500px;}
.y123{bottom:656.845500px;}
.yba{bottom:660.549000px;}
.y10f{bottom:662.112000px;}
.y17a{bottom:665.082000px;}
.ydb{bottom:668.410500px;}
.y1b0{bottom:668.892000px;}
.y164{bottom:672.076500px;}
.y63{bottom:672.525000px;}
.y1e7{bottom:674.094000px;}
.y31{bottom:675.766500px;}
.yb9{bottom:677.809500px;}
.y98{bottom:679.119000px;}
.y10e{bottom:680.941500px;}
.y179{bottom:682.657500px;}
.y1af{bottom:686.466000px;}
.y163{bottom:690.906000px;}
.y62{bottom:691.354500px;}
.y122{bottom:693.949500px;}
.y30{bottom:695.223000px;}
.y10d{bottom:699.771000px;}
.yda{bottom:701.976000px;}
.y1ae{bottom:704.040000px;}
.yb8{bottom:704.566500px;}
.y1e6{bottom:708.613500px;}
.y178{bottom:709.197000px;}
.y162{bottom:709.735500px;}
.y61{bottom:710.184000px;}
.y97{bottom:710.737500px;}
.y121{bottom:712.779000px;}
.y2f{bottom:714.681000px;}
.y10c{bottom:718.600500px;}
.y1ad{bottom:721.614000px;}
.y1e5{bottom:725.874000px;}
.y161{bottom:728.565000px;}
.y60{bottom:729.013500px;}
.y120{bottom:731.608500px;}
.y2e{bottom:734.137500px;}
.y177{bottom:735.738000px;}
.y10b{bottom:737.430000px;}
.yb7{bottom:738.132000px;}
.y1ac{bottom:739.188000px;}
.y1e4{bottom:743.134500px;}
.y160{bottom:747.394500px;}
.y5f{bottom:747.843000px;}
.y11f{bottom:750.438000px;}
.y176{bottom:753.312000px;}
.y2d{bottom:753.594000px;}
.y10a{bottom:756.259500px;}
.y1ab{bottom:756.762000px;}
.y1e3{bottom:760.395000px;}
.y15f{bottom:766.224000px;}
.y5e{bottom:766.671000px;}
.y175{bottom:770.886000px;}
.y2c{bottom:773.052000px;}
.y11e{bottom:773.751000px;}
.y1aa{bottom:774.336000px;}
.y1e2{bottom:777.655500px;}
.y15e{bottom:785.053500px;}
.y5d{bottom:785.500500px;}
.y174{bottom:788.460000px;}
.y1a9{bottom:791.910000px;}
.y2b{bottom:792.508500px;}
.y1e1{bottom:794.916000px;}
.y109{bottom:802.258500px;}
.y15d{bottom:803.883000px;}
.y11d{bottom:804.178500px;}
.y5c{bottom:804.330000px;}
.y173{bottom:806.034000px;}
.y1a8{bottom:809.484000px;}
.y2a{bottom:811.965000px;}
.y1e0{bottom:812.176500px;}
.y108{bottom:818.697000px;}
.y15c{bottom:822.712500px;}
.y5b{bottom:823.159500px;}
.y1a7{bottom:827.058000px;}
.y1df{bottom:829.437000px;}
.y29{bottom:831.423000px;}
.y107{bottom:835.135500px;}
.y15b{bottom:841.540500px;}
.y5a{bottom:841.989000px;}
.y1a6{bottom:844.632000px;}
.y1de{bottom:846.697500px;}
.y106{bottom:851.574000px;}
.y15a{bottom:860.370000px;}
.y59{bottom:860.818500px;}
.y1a5{bottom:862.206000px;}
.y1dd{bottom:863.956500px;}
.y105{bottom:868.012500px;}
.y28{bottom:870.007500px;}
.y159{bottom:879.199500px;}
.y58{bottom:879.648000px;}
.y1a4{bottom:879.780000px;}
.y1dc{bottom:881.217000px;}
.y104{bottom:884.449500px;}
.y27{bottom:890.487000px;}
.y1a3{bottom:897.354000px;}
.y172{bottom:898.029000px;}
.y57{bottom:898.477500px;}
.y103{bottom:900.888000px;}
.y158{bottom:902.512500px;}
.y26{bottom:906.627000px;}
.y1a2{bottom:914.928000px;}
.y1db{bottom:915.738000px;}
.y171{bottom:916.858500px;}
.y56{bottom:917.307000px;}
.y102{bottom:917.326500px;}
.y25{bottom:922.767000px;}
.y1a1{bottom:932.503500px;}
.y1da{bottom:932.998500px;}
.y101{bottom:933.765000px;}
.y24{bottom:934.566000px;}
.y170{bottom:935.688000px;}
.y55{bottom:936.136500px;}
.y1a0{bottom:950.077500px;}
.y100{bottom:950.203500px;}
.y1d9{bottom:950.259000px;}
.y23{bottom:950.706000px;}
.y16f{bottom:954.517500px;}
.y54{bottom:954.966000px;}
.y22{bottom:955.045500px;}
.yff{bottom:966.642000px;}
.y1d8{bottom:967.519500px;}
.y19f{bottom:967.651500px;}
.y53{bottom:973.795500px;}
.y16e{bottom:977.830500px;}
.yfe{bottom:983.080500px;}
.y1d7{bottom:984.780000px;}
.y19e{bottom:985.225500px;}
.y52{bottom:992.625000px;}
.yfd{bottom:999.519000px;}
.y21{bottom:999.721500px;}
.y1d5{bottom:1002.039000px;}
.y1d6{bottom:1002.040500px;}
.y19d{bottom:1002.799500px;}
.y51{bottom:1011.454500px;}
.yfc{bottom:1015.957500px;}
.y1d4{bottom:1019.299500px;}
.y19c{bottom:1020.373500px;}
.y50{bottom:1030.284000px;}
.yfb{bottom:1032.396000px;}
.y20{bottom:1036.485000px;}
.y1d3{bottom:1036.560000px;}
.y19b{bottom:1037.947500px;}
.yfa{bottom:1048.833000px;}
.y4f{bottom:1049.113500px;}
.y1d2{bottom:1053.820500px;}
.y19a{bottom:1055.521500px;}
.y1f{bottom:1064.728500px;}
.y4e{bottom:1067.943000px;}
.y1d1{bottom:1071.081000px;}
.yf9{bottom:1072.474500px;}
.y199{bottom:1073.095500px;}
.y4d{bottom:1086.772500px;}
.y1d0{bottom:1088.341500px;}
.y198{bottom:1090.669500px;}
.y1e{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.yf8{bottom:1107.082500px;}
.y197{bottom:1108.243500px;}
.y1c{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.h12{height:21.017894px;}
.h2{height:25.508090px;}
.h13{height:27.655250px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:37.993262px;}
.hd{height:38.896243px;}
.hf{height:43.217759px;}
.hc{height:43.421105px;}
.h8{height:43.815515px;}
.he{height:48.848947px;}
.h15{height:49.117939px;}
.h14{height:50.476908px;}
.h6{height:50.930649px;}
.h10{height:54.276245px;}
.ha{height:55.352206px;}
.h11{height:62.946077px;}
.h7{height:76.877878px;}
.h9{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:204.673175px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:56.639606px;}
.x4b{left:74.791500px;}
.x57{left:81.315000px;}
.x56{left:84.678000px;}
.x64{left:85.848000px;}
.x48{left:98.664000px;}
.x4a{left:110.325000px;}
.x55{left:159.769500px;}
.x4c{left:230.805000px;}
.x49{left:234.168000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x2f{left:258.556500px;}
.x2e{left:264.538500px;}
.x5{left:269.764500px;}
.x8{left:281.479500px;}
.x5a{left:288.880500px;}
.x5c{left:290.326500px;}
.x24{left:299.625000px;}
.x51{left:302.688000px;}
.x5b{left:303.825000px;}
.x5d{left:305.271000px;}
.x38{left:306.817500px;}
.x7{left:307.881000px;}
.x5e{left:309.066000px;}
.x25{left:314.568000px;}
.x52{left:317.631000px;}
.x53{left:321.300000px;}
.x5f{left:324.010500px;}
.x54{left:336.244500px;}
.x11{left:355.849500px;}
.x12{left:363.321000px;}
.x3a{left:370.102500px;}
.x39{left:372.450000px;}
.x3c{left:376.794000px;}
.x3e{left:378.267000px;}
.x26{left:379.308000px;}
.x40{left:383.545500px;}
.x3f{left:385.219500px;}
.x3d{left:386.833500px;}
.x3b{left:387.937500px;}
.x60{left:391.941000px;}
.x27{left:394.252500px;}
.x63{left:427.984500px;}
.x62{left:434.937000px;}
.x4f{left:436.384500px;}
.x50{left:451.329000px;}
.x30{left:452.965500px;}
.x31{left:467.910000px;}
.x1b{left:483.697500px;}
.x61{left:492.889500px;}
.x1c{left:498.642000px;}
.x15{left:509.676000px;}
.x1e{left:515.470500px;}
.x2a{left:519.196500px;}
.x16{left:524.619000px;}
.x17{left:528.280500px;}
.x1f{left:530.415000px;}
.x2b{left:534.141000px;}
.x2c{left:537.801000px;}
.x18{left:543.225000px;}
.x2d{left:552.745500px;}
.x58{left:555.724500px;}
.x13{left:558.396000px;}
.x14{left:565.867500px;}
.x59{left:570.669000px;}
.xf{left:572.941500px;}
.x10{left:580.413000px;}
.x4d{left:586.347000px;}
.x4e{left:601.291500px;}
.x1d{left:645.367500px;}
.xb{left:653.116500px;}
.x46{left:658.117500px;}
.xc{left:660.588000px;}
.x69{left:662.892000px;}
.xd{left:664.399500px;}
.xe{left:671.871000px;}
.x47{left:673.062000px;}
.x9{left:674.199000px;}
.xa{left:681.670500px;}
.x66{left:686.859000px;}
.x32{left:689.545500px;}
.x20{left:693.336000px;}
.x33{left:704.488500px;}
.x21{left:708.279000px;}
.x67{left:713.758500px;}
.x41{left:742.147500px;}
.x6a{left:743.355000px;}
.x43{left:754.588500px;}
.x65{left:757.842000px;}
.x34{left:761.592000px;}
.x6b{left:770.253000px;}
.x44{left:772.333500px;}
.x35{left:776.536500px;}
.x45{left:779.140500px;}
.x28{left:784.801500px;}
.x22{left:798.657000px;}
.x29{left:799.746000px;}
.x36{left:801.936000px;}
.x68{left:810.292500px;}
.x23{left:813.600000px;}
.x37{left:816.880500px;}
.x19{left:818.046000px;}
.x1a{left:832.990500px;}
.x42{left:837.120000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000518pt;}
.ls1a{letter-spacing:0.000600pt;}
.ls12{letter-spacing:0.000711pt;}
.ls14{letter-spacing:0.000921pt;}
.ls1c{letter-spacing:0.001026pt;}
.ls1e{letter-spacing:0.001067pt;}
.ls1d{letter-spacing:0.001825pt;}
.ls10{letter-spacing:0.003261pt;}
.ls13{letter-spacing:0.004021pt;}
.lsd{letter-spacing:1.062677pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.lsc{letter-spacing:2.651733pt;}
.ls2{letter-spacing:2.665203pt;}
.ls11{letter-spacing:3.123467pt;}
.ls1{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls19{letter-spacing:11.805248pt;}
.ls1f{letter-spacing:11.922865pt;}
.ls15{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.955635pt;}
.ls17{letter-spacing:11.959467pt;}
.ls18{letter-spacing:12.074340pt;}
.ls16{letter-spacing:12.150170pt;}
.ls4{letter-spacing:13.283733pt;}
.lsb{letter-spacing:13.708538pt;}
.ls1b{letter-spacing:13.890552pt;}
.lse{letter-spacing:14.983750pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.lsf{letter-spacing:83.319733pt;}
.wsb3{word-spacing:-11.955200pt;}
.ws19{word-spacing:-10.626800pt;}
.ws16{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-3.772505pt;}
.ws97{word-spacing:-3.613103pt;}
.ws7e{word-spacing:-3.081764pt;}
.ws41{word-spacing:-2.975497pt;}
.ws9c{word-spacing:-2.869229pt;}
.ws82{word-spacing:-2.821427pt;}
.wsaf{word-spacing:-2.391040pt;}
.ws91{word-spacing:-2.231622pt;}
.ws4f{word-spacing:-2.178489pt;}
.ws50{word-spacing:-2.125355pt;}
.ws51{word-spacing:-2.072221pt;}
.ws5c{word-spacing:-2.019087pt;}
.ws43{word-spacing:-1.965953pt;}
.ws45{word-spacing:-1.806551pt;}
.ws1{word-spacing:-1.696326pt;}
.ws1b{word-spacing:-1.625907pt;}
.wsd4{word-spacing:-1.578086pt;}
.ws76{word-spacing:-1.540882pt;}
.ws7f{word-spacing:-1.434614pt;}
.ws1c{word-spacing:-1.338982pt;}
.ws8{word-spacing:-1.338970pt;}
.ws2b{word-spacing:-1.328347pt;}
.ws53{word-spacing:-1.275213pt;}
.ws98{word-spacing:-1.235362pt;}
.wsb1{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.ws52{word-spacing:-1.115811pt;}
.ws9{word-spacing:-1.041421pt;}
.ws70{word-spacing:-1.009543pt;}
.ws3e{word-spacing:-0.956410pt;}
.wsb{word-spacing:-0.929840pt;}
.ws42{word-spacing:-0.903276pt;}
.ws4d{word-spacing:-0.850142pt;}
.ws80{word-spacing:-0.797008pt;}
.wscb{word-spacing:-0.717312pt;}
.ws3{word-spacing:-0.706678pt;}
.ws88{word-spacing:-0.690740pt;}
.ws7d{word-spacing:-0.637606pt;}
.ws35{word-spacing:-0.584473pt;}
.ws89{word-spacing:-0.531339pt;}
.wscc{word-spacing:-0.526029pt;}
.ws2{word-spacing:-0.508852pt;}
.wsd0{word-spacing:-0.478208pt;}
.ws73{word-spacing:-0.425071pt;}
.ws59{word-spacing:-0.318803pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws22{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsc7{word-spacing:-0.191283pt;}
.ws39{word-spacing:-0.159402pt;}
.wsc5{word-spacing:-0.151123pt;}
.wsb0{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.wsb5{word-spacing:-0.095642pt;}
.ws17{word-spacing:-0.053134pt;}
.ws74{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.022281pt;}
.wsd3{word-spacing:-0.005239pt;}
.ws15{word-spacing:-0.004830pt;}
.ws26{word-spacing:-0.004326pt;}
.wsc6{word-spacing:-0.003081pt;}
.wscd{word-spacing:-0.001929pt;}
.ws13{word-spacing:-0.001740pt;}
.wsbb{word-spacing:-0.001041pt;}
.ws6{word-spacing:-0.001004pt;}
.ws4{word-spacing:0.000000pt;}
.ws34{word-spacing:0.000646pt;}
.ws21{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.ws1d{word-spacing:0.095642pt;}
.ws3f{word-spacing:0.106268pt;}
.ws18{word-spacing:0.127522pt;}
.ws23{word-spacing:0.143462pt;}
.ws3c{word-spacing:0.159402pt;}
.ws5e{word-spacing:0.191283pt;}
.ws38{word-spacing:0.212535pt;}
.ws36{word-spacing:0.265669pt;}
.ws24{word-spacing:0.286925pt;}
.ws3d{word-spacing:0.318803pt;}
.ws87{word-spacing:0.371937pt;}
.ws5d{word-spacing:0.425071pt;}
.ws4e{word-spacing:0.478205pt;}
.ws49{word-spacing:0.531339pt;}
.wsae{word-spacing:0.573850pt;}
.ws4a{word-spacing:0.584473pt;}
.ws20{word-spacing:0.669491pt;}
.wsc0{word-spacing:0.765133pt;}
.ws58{word-spacing:0.797008pt;}
.wsa{word-spacing:0.892646pt;}
.ws8a{word-spacing:0.903276pt;}
.ws9d{word-spacing:0.956410pt;}
.wsba{word-spacing:0.956416pt;}
.wsda{word-spacing:1.004237pt;}
.ws4b{word-spacing:1.009543pt;}
.ws9a{word-spacing:1.062677pt;}
.ws6d{word-spacing:1.115811pt;}
.wsd2{word-spacing:1.147699pt;}
.ws92{word-spacing:1.168945pt;}
.wsa6{word-spacing:1.195520pt;}
.ws57{word-spacing:1.222079pt;}
.ws33{word-spacing:1.275213pt;}
.wsb9{word-spacing:1.291162pt;}
.ws54{word-spacing:1.434614pt;}
.wsa4{word-spacing:1.482445pt;}
.ws46{word-spacing:1.540882pt;}
.wsa5{word-spacing:1.578086pt;}
.ws2f{word-spacing:1.594016pt;}
.ws37{word-spacing:1.647150pt;}
.ws95{word-spacing:1.700284pt;}
.ws94{word-spacing:1.753418pt;}
.ws4c{word-spacing:1.806551pt;}
.ws78{word-spacing:1.912819pt;}
.wsd6{word-spacing:1.960653pt;}
.ws7a{word-spacing:1.965953pt;}
.ws77{word-spacing:2.019087pt;}
.ws30{word-spacing:2.072221pt;}
.ws47{word-spacing:2.125355pt;}
.ws40{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231872pt;}
.ws99{word-spacing:2.337890pt;}
.ws93{word-spacing:2.391024pt;}
.wsad{word-spacing:2.438861pt;}
.ws1a{word-spacing:2.550432pt;}
.ws2d{word-spacing:2.656693pt;}
.wsac{word-spacing:2.725786pt;}
.wsd1{word-spacing:2.860476pt;}
.wsb6{word-spacing:2.861099pt;}
.ws25{word-spacing:2.861926pt;}
.wsb7{word-spacing:2.863138pt;}
.wsc9{word-spacing:2.863787pt;}
.wsbe{word-spacing:2.863829pt;}
.wsce{word-spacing:2.864973pt;}
.wsd9{word-spacing:2.865408pt;}
.wsab{word-spacing:2.866509pt;}
.wsca{word-spacing:2.867174pt;}
.wsa0{word-spacing:2.869229pt;}
.wsb8{word-spacing:2.869248pt;}
.wscf{word-spacing:2.917069pt;}
.wsa1{word-spacing:2.975497pt;}
.wsa3{word-spacing:3.028630pt;}
.wsc3{word-spacing:3.060531pt;}
.wsa2{word-spacing:3.081764pt;}
.ws27{word-spacing:3.188032pt;}
.wsbd{word-spacing:3.203994pt;}
.wsd8{word-spacing:3.347456pt;}
.wsc2{word-spacing:3.443098pt;}
.ws3b{word-spacing:3.453701pt;}
.wsb4{word-spacing:3.490918pt;}
.ws1e{word-spacing:3.586560pt;}
.ws7b{word-spacing:3.613103pt;}
.ws9b{word-spacing:3.666237pt;}
.wsa9{word-spacing:3.682202pt;}
.wsa7{word-spacing:3.730022pt;}
.ws44{word-spacing:3.772505pt;}
.ws7c{word-spacing:3.825638pt;}
.wsc4{word-spacing:3.873485pt;}
.wsc8{word-spacing:3.921306pt;}
.ws6e{word-spacing:3.985040pt;}
.ws9f{word-spacing:4.038174pt;}
.ws71{word-spacing:4.197575pt;}
.ws11{word-spacing:4.240070pt;}
.ws12{word-spacing:4.314458pt;}
.ws69{word-spacing:4.463245pt;}
.ws3a{word-spacing:4.569513pt;}
.ws96{word-spacing:4.675780pt;}
.wsa8{word-spacing:4.686438pt;}
.ws56{word-spacing:4.728914pt;}
.ws9e{word-spacing:4.782048pt;}
.wsbc{word-spacing:4.877722pt;}
.ws6a{word-spacing:4.888316pt;}
.wsaa{word-spacing:4.925542pt;}
.ws1f{word-spacing:5.116826pt;}
.ws32{word-spacing:5.207119pt;}
.ws31{word-spacing:5.260253pt;}
.ws55{word-spacing:5.419654pt;}
.ws72{word-spacing:5.738458pt;}
.ws6c{word-spacing:5.844725pt;}
.wsd7{word-spacing:5.929779pt;}
.ws2e{word-spacing:6.269796pt;}
.ws75{word-spacing:6.801135pt;}
.wsf{word-spacing:6.918010pt;}
.ws48{word-spacing:7.491875pt;}
.ws79{word-spacing:7.545009pt;}
.ws6b{word-spacing:7.704411pt;}
.wsd5{word-spacing:7.794790pt;}
.wsc1{word-spacing:9.181594pt;}
.wsd{word-spacing:10.823338pt;}
.wse{word-spacing:14.319536pt;}
.ws10{word-spacing:23.208806pt;}
.wsc{word-spacing:23.858002pt;}
.ws14{word-spacing:35.593054pt;}
.ws8b{word-spacing:75.126477pt;}
.ws86{word-spacing:75.795968pt;}
.ws85{word-spacing:97.219686pt;}
.ws83{word-spacing:99.706368pt;}
.ws5a{word-spacing:114.961203pt;}
.ws84{word-spacing:121.130086pt;}
.ws81{word-spacing:136.567219pt;}
.ws8e{word-spacing:146.905498pt;}
.ws8f{word-spacing:180.953907pt;}
.ws5b{word-spacing:187.840102pt;}
.wsb2{word-spacing:305.766195pt;}
.ws90{word-spacing:377.306112pt;}
.ws8d{word-spacing:389.261312pt;}
.ws8c{word-spacing:401.216512pt;}
.ws60{word-spacing:838.776832pt;}
.ws64{word-spacing:862.543770pt;}
.ws66{word-spacing:867.804058pt;}
.ws63{word-spacing:872.155750pt;}
.ws61{word-spacing:874.594611pt;}
.ws5f{word-spacing:882.580685pt;}
.ws68{word-spacing:886.549811pt;}
.ws67{word-spacing:892.527411pt;}
.ws65{word-spacing:898.265907pt;}
.ws62{word-spacing:902.187213pt;}
._93{margin-left:-21.806285pt;}
._91{margin-left:-18.862297pt;}
._94{margin-left:-15.929829pt;}
._72{margin-left:-8.381428pt;}
._3a{margin-left:-7.013670pt;}
._d{margin-left:-5.950993pt;}
._9{margin-left:-4.495155pt;}
._2{margin-left:-3.329363pt;}
._3e{margin-left:-2.247287pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._7{width:3.278277pt;}
._92{width:5.988811pt;}
._71{width:8.142934pt;}
._3{width:9.934228pt;}
._4{width:11.530016pt;}
._12{width:13.175632pt;}
._a{width:14.517675pt;}
._c{width:15.493939pt;}
._b{width:16.450355pt;}
._e{width:17.427908pt;}
._15{width:18.756255pt;}
._11{width:20.356997pt;}
._f{width:21.731751pt;}
._3d{width:22.920876pt;}
._16{width:24.866650pt;}
._6{width:27.188522pt;}
._3b{width:30.558700pt;}
._3c{width:31.561517pt;}
._10{width:32.624194pt;}
._8f{width:33.761485pt;}
._3f{width:39.425329pt;}
._8e{width:42.751795pt;}
._90{width:54.993920pt;}
._8{width:61.661897pt;}
._81{width:63.745126pt;}
._80{width:64.844715pt;}
._8d{width:78.904320pt;}
._82{width:89.141092pt;}
._49{width:97.047725pt;}
._74{width:104.727552pt;}
._48{width:106.927309pt;}
._1c{width:114.291712pt;}
._46{width:121.130086pt;}
._20{width:126.246912pt;}
._47{width:128.179066pt;}
._43{width:130.837709pt;}
._1e{width:138.058650pt;}
._60{width:150.300774pt;}
._42{width:151.806336pt;}
._1d{width:154.939392pt;}
._5b{width:158.621594pt;}
._62{width:160.056218pt;}
._61{width:161.347379pt;}
._1b{width:164.838298pt;}
._51{width:171.724493pt;}
._21{width:173.828608pt;}
._17{width:176.145220pt;}
._26{width:177.558630pt;}
._23{width:180.790596pt;}
._22{width:182.627635pt;}
._41{width:186.548941pt;}
._1f{width:188.748698pt;}
._4c{width:192.909107pt;}
._2b{width:205.351029pt;}
._40{width:213.567693pt;}
._30{width:218.254131pt;}
._2a{width:228.726886pt;}
._5d{width:229.874586pt;}
._5c{width:230.831002pt;}
._32{width:237.478093pt;}
._24{width:242.355814pt;}
._84{width:245.655450pt;}
._5a{width:249.815859pt;}
._45{width:256.195347pt;}
._1a{width:258.471424pt;}
._59{width:262.679654pt;}
._29{width:266.266214pt;}
._44{width:268.418150pt;}
._18{width:270.044058pt;}
._6d{width:271.143936pt;}
._57{width:272.195994pt;}
._28{width:278.173594pt;}
._6e{width:282.190541pt;}
._4e{width:283.912090pt;}
._19{width:287.132954pt;}
._2e{width:289.650586pt;}
._58{width:290.654822pt;}
._8c{width:291.563418pt;}
._55{width:292.711117pt;}
._4b{width:295.149978pt;}
._2c{width:297.493197pt;}
._4d{width:301.797069pt;}
._50{width:303.183872pt;}
._54{width:305.574912pt;}
._69{width:307.105178pt;}
._4a{width:308.013773pt;}
._64{width:309.352755pt;}
._63{width:310.309171pt;}
._66{width:313.034957pt;}
._65{width:313.991373pt;}
._4f{width:316.095488pt;}
._89{width:317.960499pt;}
._5f{width:318.869094pt;}
._5e{width:319.825510pt;}
._6c{width:322.694758pt;}
._6b{width:323.651174pt;}
._75{width:324.559770pt;}
._67{width:325.755290pt;}
._6f{width:328.863642pt;}
._7f{width:331.445965pt;}
._6a{width:335.080346pt;}
._68{width:336.801894pt;}
._70{width:338.906010pt;}
._7d{width:341.105766pt;}
._86{width:349.904794pt;}
._8a{width:351.674163pt;}
._83{width:355.069440pt;}
._7e{width:360.329728pt;}
._31{width:362.672947pt;}
._85{width:373.097882pt;}
._88{width:380.892672pt;}
._7a{width:382.614221pt;}
._7c{width:383.618458pt;}
._53{width:389.261312pt;}
._7b{width:391.461069pt;}
._87{width:393.995571pt;}
._76{width:396.243149pt;}
._8b{width:399.208038pt;}
._52{width:401.216512pt;}
._2d{width:404.160188pt;}
._56{width:413.171712pt;}
._79{width:420.153549pt;}
._77{width:424.696525pt;}
._78{width:432.060928pt;}
._37{width:434.786714pt;}
._25{width:452.910797pt;}
._35{width:466.970112pt;}
._2f{width:472.086938pt;}
._33{width:490.115379pt;}
._39{width:497.957990pt;}
._34{width:500.710383pt;}
._36{width:511.060890pt;}
._27{width:512.734618pt;}
._38{width:517.994906pt;}
._13{width:662.347190pt;}
._73{width:2181.576000pt;}
._14{width:2202.829333pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsd{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:49.414496pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:100.790400pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:16.529038pt;}
.y4a{bottom:28.346667pt;}
.y11c{bottom:81.480000pt;}
.yd9{bottom:89.420000pt;}
.y206{bottom:92.892000pt;}
.y1b{bottom:93.018667pt;}
.y143{bottom:93.730667pt;}
.y196{bottom:93.913333pt;}
.y1cf{bottom:94.406667pt;}
.y80{bottom:95.282667pt;}
.y157{bottom:98.214667pt;}
.y11b{bottom:98.217333pt;}
.yd8{bottom:106.157333pt;}
.y205{bottom:108.233333pt;}
.y142{bottom:108.342667pt;}
.yf7{bottom:108.362667pt;}
.y1a{bottom:108.920000pt;}
.y195{bottom:109.534667pt;}
.y1ce{bottom:109.749333pt;}
.y49{bottom:110.005333pt;}
.yb6{bottom:110.654667pt;}
.y7f{bottom:112.020000pt;}
.y96{bottom:112.418667pt;}
.y156{bottom:114.952000pt;}
.y11a{bottom:114.954667pt;}
.yd7{bottom:122.894667pt;}
.y141{bottom:122.953333pt;}
.y204{bottom:123.576000pt;}
.y19{bottom:124.820000pt;}
.y1cd{bottom:125.092000pt;}
.yf6{bottom:125.100000pt;}
.y194{bottom:125.156000pt;}
.y48{bottom:126.742667pt;}
.yb5{bottom:127.392000pt;}
.y7e{bottom:128.757333pt;}
.y95{bottom:129.156000pt;}
.y155{bottom:131.689333pt;}
.y119{bottom:131.692000pt;}
.y140{bottom:137.565333pt;}
.y203{bottom:138.918667pt;}
.yd6{bottom:139.632000pt;}
.y1cc{bottom:140.434667pt;}
.y18{bottom:140.720000pt;}
.y193{bottom:140.777333pt;}
.yf5{bottom:141.837333pt;}
.y47{bottom:143.480000pt;}
.yb4{bottom:144.129333pt;}
.y7d{bottom:145.494667pt;}
.y94{bottom:145.893333pt;}
.y154{bottom:148.426667pt;}
.y118{bottom:148.429333pt;}
.y13f{bottom:152.177333pt;}
.y202{bottom:154.261333pt;}
.y1cb{bottom:155.777333pt;}
.yd5{bottom:156.369333pt;}
.y192{bottom:156.398667pt;}
.y17{bottom:156.621333pt;}
.yf4{bottom:158.574667pt;}
.y46{bottom:160.217333pt;}
.yb3{bottom:160.866667pt;}
.y7c{bottom:162.232000pt;}
.y93{bottom:162.630667pt;}
.y153{bottom:165.164000pt;}
.y117{bottom:165.166667pt;}
.y13e{bottom:166.789333pt;}
.y201{bottom:169.604000pt;}
.y1ca{bottom:171.120000pt;}
.y191{bottom:172.020000pt;}
.y16{bottom:172.521333pt;}
.yd4{bottom:173.106667pt;}
.yf3{bottom:175.312000pt;}
.y45{bottom:176.954667pt;}
.yb2{bottom:177.604000pt;}
.y7b{bottom:178.969333pt;}
.y92{bottom:179.368000pt;}
.y13d{bottom:181.401333pt;}
.y152{bottom:181.901333pt;}
.y116{bottom:181.904000pt;}
.y200{bottom:184.946667pt;}
.y1c9{bottom:186.462667pt;}
.y190{bottom:187.641333pt;}
.y15{bottom:188.421333pt;}
.yd2{bottom:189.844000pt;}
.yf2{bottom:192.049333pt;}
.y44{bottom:193.692000pt;}
.yb1{bottom:194.341333pt;}
.yd3{bottom:194.665333pt;}
.y7a{bottom:195.706667pt;}
.y13c{bottom:196.013333pt;}
.y91{bottom:196.105333pt;}
.y151{bottom:198.638667pt;}
.y115{bottom:198.641333pt;}
.y1ff{bottom:200.289333pt;}
.y1c8{bottom:201.805333pt;}
.y18f{bottom:203.262667pt;}
.y14{bottom:204.322667pt;}
.yd1{bottom:206.581333pt;}
.yf1{bottom:208.786667pt;}
.y43{bottom:210.429333pt;}
.y13b{bottom:210.625333pt;}
.yb0{bottom:211.077333pt;}
.y79{bottom:212.444000pt;}
.y90{bottom:212.841333pt;}
.y150{bottom:215.376000pt;}
.y114{bottom:215.378667pt;}
.y1fe{bottom:215.632000pt;}
.y1c7{bottom:217.146667pt;}
.y18e{bottom:218.884000pt;}
.yd0{bottom:223.318667pt;}
.y13a{bottom:225.237333pt;}
.yf0{bottom:225.524000pt;}
.y42{bottom:227.166667pt;}
.yaf{bottom:227.814667pt;}
.y78{bottom:229.181333pt;}
.y8f{bottom:229.578667pt;}
.y1fd{bottom:230.974667pt;}
.y14f{bottom:232.113333pt;}
.y113{bottom:232.116000pt;}
.y1c6{bottom:232.489333pt;}
.y18d{bottom:234.505333pt;}
.y139{bottom:239.849333pt;}
.ycf{bottom:240.056000pt;}
.yef{bottom:242.261333pt;}
.y41{bottom:243.904000pt;}
.yae{bottom:244.552000pt;}
.y77{bottom:245.918667pt;}
.y8e{bottom:246.316000pt;}
.y1c5{bottom:247.832000pt;}
.y14e{bottom:248.850667pt;}
.y112{bottom:248.853333pt;}
.y18c{bottom:250.126667pt;}
.y138{bottom:254.461333pt;}
.yce{bottom:256.793333pt;}
.yee{bottom:258.998667pt;}
.y40{bottom:260.641333pt;}
.yad{bottom:261.289333pt;}
.y1fc{bottom:261.658667pt;}
.y76{bottom:262.656000pt;}
.y8d{bottom:263.053333pt;}
.y1c4{bottom:263.174667pt;}
.y14d{bottom:265.588000pt;}
.y13{bottom:266.804000pt;}
.y137{bottom:269.072000pt;}
.y111{bottom:269.576000pt;}
.ycd{bottom:273.530667pt;}
.yed{bottom:275.736000pt;}
.y18b{bottom:276.684000pt;}
.y1fb{bottom:277.001333pt;}
.y3f{bottom:277.378667pt;}
.y1c3{bottom:278.517333pt;}
.y75{bottom:279.393333pt;}
.y8c{bottom:279.790667pt;}
.yac{bottom:282.012000pt;}
.y14c{bottom:282.325333pt;}
.y12{bottom:282.705333pt;}
.y136{bottom:283.684000pt;}
.ycc{bottom:290.268000pt;}
.y1fa{bottom:292.344000pt;}
.yec{bottom:292.473333pt;}
.y1c2{bottom:293.860000pt;}
.y3e{bottom:294.116000pt;}
.y110{bottom:294.442667pt;}
.y74{bottom:296.129333pt;}
.y8b{bottom:296.528000pt;}
.y135{bottom:298.296000pt;}
.y11{bottom:298.605333pt;}
.y14b{bottom:299.062667pt;}
.ycb{bottom:307.005333pt;}
.y1f9{bottom:307.686667pt;}
.y1c1{bottom:309.202667pt;}
.yeb{bottom:309.210667pt;}
.y18a{bottom:309.361333pt;}
.y3d{bottom:310.853333pt;}
.y73{bottom:312.866667pt;}
.y134{bottom:312.908000pt;}
.y8a{bottom:313.265333pt;}
.y10{bottom:314.505333pt;}
.y14a{bottom:315.800000pt;}
.yab{bottom:319.633333pt;}
.y1f8{bottom:323.029333pt;}
.yca{bottom:323.742667pt;}
.yea{bottom:325.948000pt;}
.y133{bottom:327.520000pt;}
.y3c{bottom:327.590667pt;}
.y1c0{bottom:328.530667pt;}
.y72{bottom:329.604000pt;}
.y89{bottom:330.002667pt;}
.y149{bottom:332.537333pt;}
.y189{bottom:332.952000pt;}
.yaa{bottom:334.245333pt;}
.y1f7{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.yc9{bottom:340.480000pt;}
.y132{bottom:342.132000pt;}
.ye9{bottom:342.685333pt;}
.y3b{bottom:344.328000pt;}
.y71{bottom:346.341333pt;}
.y88{bottom:346.740000pt;}
.y188{bottom:348.573333pt;}
.ya9{bottom:348.857333pt;}
.y148{bottom:349.274667pt;}
.y1f6{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y131{bottom:356.744000pt;}
.yc8{bottom:357.217333pt;}
.ye8{bottom:359.422667pt;}
.y1bf{bottom:360.248000pt;}
.y70{bottom:363.078667pt;}
.ya8{bottom:363.469333pt;}
.y87{bottom:363.477333pt;}
.y3a{bottom:365.049333pt;}
.y1f5{bottom:369.056000pt;}
.y147{bottom:369.996000pt;}
.yd{bottom:370.177333pt;}
.y130{bottom:371.356000pt;}
.y187{bottom:372.165333pt;}
.yc7{bottom:373.954667pt;}
.y1be{bottom:375.870667pt;}
.ye7{bottom:376.160000pt;}
.ya7{bottom:378.081333pt;}
.y6f{bottom:379.816000pt;}
.y86{bottom:380.214667pt;}
.y1f4{bottom:384.398667pt;}
.y12f{bottom:385.968000pt;}
.y146{bottom:386.733333pt;}
.y186{bottom:387.786667pt;}
.yc6{bottom:390.692000pt;}
.y1bd{bottom:391.492000pt;}
.ya6{bottom:392.692000pt;}
.yc{bottom:395.376000pt;}
.y6e{bottom:396.553333pt;}
.ye6{bottom:396.881333pt;}
.y85{bottom:396.952000pt;}
.y1f3{bottom:399.741333pt;}
.y12e{bottom:400.580000pt;}
.y185{bottom:403.408000pt;}
.y145{bottom:403.470667pt;}
.y1bc{bottom:407.113333pt;}
.ya5{bottom:407.304000pt;}
.yc5{bottom:407.429333pt;}
.y6d{bottom:413.290667pt;}
.y84{bottom:413.689333pt;}
.y1f2{bottom:415.084000pt;}
.y12d{bottom:415.190667pt;}
.y184{bottom:419.029333pt;}
.yb{bottom:419.246667pt;}
.ya4{bottom:421.916000pt;}
.y1bb{bottom:422.734667pt;}
.yc4{bottom:424.166667pt;}
.ye5{bottom:426.769333pt;}
.y12c{bottom:429.802667pt;}
.y6c{bottom:430.028000pt;}
.y83{bottom:430.426667pt;}
.y39{bottom:430.438667pt;}
.y144{bottom:433.308000pt;}
.y183{bottom:434.650667pt;}
.ya{bottom:435.146667pt;}
.ya3{bottom:436.528000pt;}
.y1ba{bottom:438.356000pt;}
.yc3{bottom:440.902667pt;}
.ye4{bottom:443.506667pt;}
.y12b{bottom:444.414667pt;}
.y1f1{bottom:445.769333pt;}
.y16d{bottom:446.765333pt;}
.y82{bottom:447.164000pt;}
.y182{bottom:450.273333pt;}
.y6b{bottom:450.750667pt;}
.y9{bottom:451.048000pt;}
.ya2{bottom:451.140000pt;}
.y1b9{bottom:453.977333pt;}
.y12a{bottom:459.026667pt;}
.ye3{bottom:460.244000pt;}
.y1f0{bottom:461.112000pt;}
.y16c{bottom:463.502667pt;}
.y38{bottom:463.674667pt;}
.y81{bottom:463.901333pt;}
.yc2{bottom:464.414667pt;}
.ya1{bottom:465.752000pt;}
.y181{bottom:465.894667pt;}
.y8{bottom:466.948000pt;}
.y1b8{bottom:469.598667pt;}
.y129{bottom:473.638667pt;}
.y1ef{bottom:476.454667pt;}
.ye2{bottom:476.981333pt;}
.yc1{bottom:479.757333pt;}
.y16b{bottom:480.240000pt;}
.ya0{bottom:480.364000pt;}
.y6a{bottom:480.638667pt;}
.y180{bottom:481.516000pt;}
.y7{bottom:482.848000pt;}
.y1b7{bottom:485.220000pt;}
.y128{bottom:488.250667pt;}
.y1ee{bottom:491.797333pt;}
.ye1{bottom:493.718667pt;}
.y9f{bottom:494.976000pt;}
.yc0{bottom:495.100000pt;}
.y37{bottom:496.909333pt;}
.y16a{bottom:496.977333pt;}
.y17f{bottom:497.137333pt;}
.y69{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y1b6{bottom:500.841333pt;}
.y127{bottom:502.862667pt;}
.y1ed{bottom:507.138667pt;}
.y9e{bottom:509.588000pt;}
.ybf{bottom:510.442667pt;}
.ye0{bottom:510.456000pt;}
.y169{bottom:513.714667pt;}
.y68{bottom:514.113333pt;}
.y36{bottom:514.205333pt;}
.y5{bottom:514.649333pt;}
.y1b5{bottom:516.462667pt;}
.y126{bottom:517.474667pt;}
.y17e{bottom:520.728000pt;}
.y1ec{bottom:522.481333pt;}
.y9d{bottom:524.200000pt;}
.ybe{bottom:525.785333pt;}
.ydf{bottom:527.193333pt;}
.y168{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y67{bottom:530.850667pt;}
.y35{bottom:531.500000pt;}
.y1b4{bottom:532.084000pt;}
.y125{bottom:532.086667pt;}
.y17d{bottom:536.350667pt;}
.y1eb{bottom:537.824000pt;}
.y9c{bottom:538.812000pt;}
.ybd{bottom:541.128000pt;}
.yde{bottom:543.930667pt;}
.y1{bottom:546.450634pt;}
.y167{bottom:547.189333pt;}
.y66{bottom:547.588000pt;}
.y1b3{bottom:547.705333pt;}
.y34{bottom:548.796000pt;}
.y124{bottom:553.100000pt;}
.y1ea{bottom:553.166667pt;}
.y9b{bottom:553.422667pt;}
.ybc{bottom:556.469333pt;}
.y17c{bottom:559.941333pt;}
.ydd{bottom:560.668000pt;}
.y1b2{bottom:563.326667pt;}
.y166{bottom:563.926667pt;}
.y65{bottom:564.325333pt;}
.y33{bottom:566.090667pt;}
.y9a{bottom:568.034667pt;}
.y1e9{bottom:568.509333pt;}
.ybb{bottom:571.812000pt;}
.y17b{bottom:575.562667pt;}
.ydc{bottom:577.405333pt;}
.y1b1{bottom:578.948000pt;}
.y165{bottom:580.664000pt;}
.y64{bottom:581.062667pt;}
.y99{bottom:582.646667pt;}
.y32{bottom:583.385333pt;}
.y1e8{bottom:583.852000pt;}
.y123{bottom:583.862667pt;}
.yba{bottom:587.154667pt;}
.y10f{bottom:588.544000pt;}
.y17a{bottom:591.184000pt;}
.ydb{bottom:594.142667pt;}
.y1b0{bottom:594.570667pt;}
.y164{bottom:597.401333pt;}
.y63{bottom:597.800000pt;}
.y1e7{bottom:599.194667pt;}
.y31{bottom:600.681333pt;}
.yb9{bottom:602.497333pt;}
.y98{bottom:603.661333pt;}
.y10e{bottom:605.281333pt;}
.y179{bottom:606.806667pt;}
.y1af{bottom:610.192000pt;}
.y163{bottom:614.138667pt;}
.y62{bottom:614.537333pt;}
.y122{bottom:616.844000pt;}
.y30{bottom:617.976000pt;}
.y10d{bottom:622.018667pt;}
.yda{bottom:623.978667pt;}
.y1ae{bottom:625.813333pt;}
.yb8{bottom:626.281333pt;}
.y1e6{bottom:629.878667pt;}
.y178{bottom:630.397333pt;}
.y162{bottom:630.876000pt;}
.y61{bottom:631.274667pt;}
.y97{bottom:631.766667pt;}
.y121{bottom:633.581333pt;}
.y2f{bottom:635.272000pt;}
.y10c{bottom:638.756000pt;}
.y1ad{bottom:641.434667pt;}
.y1e5{bottom:645.221333pt;}
.y161{bottom:647.613333pt;}
.y60{bottom:648.012000pt;}
.y120{bottom:650.318667pt;}
.y2e{bottom:652.566667pt;}
.y177{bottom:653.989333pt;}
.y10b{bottom:655.493333pt;}
.yb7{bottom:656.117333pt;}
.y1ac{bottom:657.056000pt;}
.y1e4{bottom:660.564000pt;}
.y160{bottom:664.350667pt;}
.y5f{bottom:664.749333pt;}
.y11f{bottom:667.056000pt;}
.y176{bottom:669.610667pt;}
.y2d{bottom:669.861333pt;}
.y10a{bottom:672.230667pt;}
.y1ab{bottom:672.677333pt;}
.y1e3{bottom:675.906667pt;}
.y15f{bottom:681.088000pt;}
.y5e{bottom:681.485333pt;}
.y175{bottom:685.232000pt;}
.y2c{bottom:687.157333pt;}
.y11e{bottom:687.778667pt;}
.y1aa{bottom:688.298667pt;}
.y1e2{bottom:691.249333pt;}
.y15e{bottom:697.825333pt;}
.y5d{bottom:698.222667pt;}
.y174{bottom:700.853333pt;}
.y1a9{bottom:703.920000pt;}
.y2b{bottom:704.452000pt;}
.y1e1{bottom:706.592000pt;}
.y109{bottom:713.118667pt;}
.y15d{bottom:714.562667pt;}
.y11d{bottom:714.825333pt;}
.y5c{bottom:714.960000pt;}
.y173{bottom:716.474667pt;}
.y1a8{bottom:719.541333pt;}
.y2a{bottom:721.746667pt;}
.y1e0{bottom:721.934667pt;}
.y108{bottom:727.730667pt;}
.y15c{bottom:731.300000pt;}
.y5b{bottom:731.697333pt;}
.y1a7{bottom:735.162667pt;}
.y1df{bottom:737.277333pt;}
.y29{bottom:739.042667pt;}
.y107{bottom:742.342667pt;}
.y15b{bottom:748.036000pt;}
.y5a{bottom:748.434667pt;}
.y1a6{bottom:750.784000pt;}
.y1de{bottom:752.620000pt;}
.y106{bottom:756.954667pt;}
.y15a{bottom:764.773333pt;}
.y59{bottom:765.172000pt;}
.y1a5{bottom:766.405333pt;}
.y1dd{bottom:767.961333pt;}
.y105{bottom:771.566667pt;}
.y28{bottom:773.340000pt;}
.y159{bottom:781.510667pt;}
.y58{bottom:781.909333pt;}
.y1a4{bottom:782.026667pt;}
.y1dc{bottom:783.304000pt;}
.y104{bottom:786.177333pt;}
.y27{bottom:791.544000pt;}
.y1a3{bottom:797.648000pt;}
.y172{bottom:798.248000pt;}
.y57{bottom:798.646667pt;}
.y103{bottom:800.789333pt;}
.y158{bottom:802.233333pt;}
.y26{bottom:805.890667pt;}
.y1a2{bottom:813.269333pt;}
.y1db{bottom:813.989333pt;}
.y171{bottom:814.985333pt;}
.y56{bottom:815.384000pt;}
.y102{bottom:815.401333pt;}
.y25{bottom:820.237333pt;}
.y1a1{bottom:828.892000pt;}
.y1da{bottom:829.332000pt;}
.y101{bottom:830.013333pt;}
.y24{bottom:830.725333pt;}
.y170{bottom:831.722667pt;}
.y55{bottom:832.121333pt;}
.y1a0{bottom:844.513333pt;}
.y100{bottom:844.625333pt;}
.y1d9{bottom:844.674667pt;}
.y23{bottom:845.072000pt;}
.y16f{bottom:848.460000pt;}
.y54{bottom:848.858667pt;}
.y22{bottom:848.929333pt;}
.yff{bottom:859.237333pt;}
.y1d8{bottom:860.017333pt;}
.y19f{bottom:860.134667pt;}
.y53{bottom:865.596000pt;}
.y16e{bottom:869.182667pt;}
.yfe{bottom:873.849333pt;}
.y1d7{bottom:875.360000pt;}
.y19e{bottom:875.756000pt;}
.y52{bottom:882.333333pt;}
.yfd{bottom:888.461333pt;}
.y21{bottom:888.641333pt;}
.y1d5{bottom:890.701333pt;}
.y1d6{bottom:890.702667pt;}
.y19d{bottom:891.377333pt;}
.y51{bottom:899.070667pt;}
.yfc{bottom:903.073333pt;}
.y1d4{bottom:906.044000pt;}
.y19c{bottom:906.998667pt;}
.y50{bottom:915.808000pt;}
.yfb{bottom:917.685333pt;}
.y20{bottom:921.320000pt;}
.y1d3{bottom:921.386667pt;}
.y19b{bottom:922.620000pt;}
.yfa{bottom:932.296000pt;}
.y4f{bottom:932.545333pt;}
.y1d2{bottom:936.729333pt;}
.y19a{bottom:938.241333pt;}
.y1f{bottom:946.425333pt;}
.y4e{bottom:949.282667pt;}
.y1d1{bottom:952.072000pt;}
.yf9{bottom:953.310667pt;}
.y199{bottom:953.862667pt;}
.y4d{bottom:966.020000pt;}
.y1d0{bottom:967.414667pt;}
.y198{bottom:969.484000pt;}
.y1e{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.yf8{bottom:984.073333pt;}
.y197{bottom:985.105333pt;}
.y1c{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.h12{height:18.682573pt;}
.h2{height:22.673858pt;}
.h13{height:24.582445pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:33.771789pt;}
.hd{height:34.574438pt;}
.hf{height:38.415786pt;}
.hc{height:38.596538pt;}
.h8{height:38.947124pt;}
.he{height:43.421286pt;}
.h15{height:43.660390pt;}
.h14{height:44.868362pt;}
.h6{height:45.271688pt;}
.h10{height:48.245551pt;}
.ha{height:49.201961pt;}
.h11{height:55.952068pt;}
.h7{height:68.335891pt;}
.h9{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:181.931712pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:50.346317pt;}
.x4b{left:66.481333pt;}
.x57{left:72.280000pt;}
.x56{left:75.269333pt;}
.x64{left:76.309333pt;}
.x48{left:87.701333pt;}
.x4a{left:98.066667pt;}
.x55{left:142.017333pt;}
.x4c{left:205.160000pt;}
.x49{left:208.149333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x2f{left:229.828000pt;}
.x2e{left:235.145333pt;}
.x5{left:239.790667pt;}
.x8{left:250.204000pt;}
.x5a{left:256.782667pt;}
.x5c{left:258.068000pt;}
.x24{left:266.333333pt;}
.x51{left:269.056000pt;}
.x5b{left:270.066667pt;}
.x5d{left:271.352000pt;}
.x38{left:272.726667pt;}
.x7{left:273.672000pt;}
.x5e{left:274.725333pt;}
.x25{left:279.616000pt;}
.x52{left:282.338667pt;}
.x53{left:285.600000pt;}
.x5f{left:288.009333pt;}
.x54{left:298.884000pt;}
.x11{left:316.310667pt;}
.x12{left:322.952000pt;}
.x3a{left:328.980000pt;}
.x39{left:331.066667pt;}
.x3c{left:334.928000pt;}
.x3e{left:336.237333pt;}
.x26{left:337.162667pt;}
.x40{left:340.929333pt;}
.x3f{left:342.417333pt;}
.x3d{left:343.852000pt;}
.x3b{left:344.833333pt;}
.x60{left:348.392000pt;}
.x27{left:350.446667pt;}
.x63{left:380.430667pt;}
.x62{left:386.610667pt;}
.x4f{left:387.897333pt;}
.x50{left:401.181333pt;}
.x30{left:402.636000pt;}
.x31{left:415.920000pt;}
.x1b{left:429.953333pt;}
.x61{left:438.124000pt;}
.x1c{left:443.237333pt;}
.x15{left:453.045333pt;}
.x1e{left:458.196000pt;}
.x2a{left:461.508000pt;}
.x16{left:466.328000pt;}
.x17{left:469.582667pt;}
.x1f{left:471.480000pt;}
.x2b{left:474.792000pt;}
.x2c{left:478.045333pt;}
.x18{left:482.866667pt;}
.x2d{left:491.329333pt;}
.x58{left:493.977333pt;}
.x13{left:496.352000pt;}
.x14{left:502.993333pt;}
.x59{left:507.261333pt;}
.xf{left:509.281333pt;}
.x10{left:515.922667pt;}
.x4d{left:521.197333pt;}
.x4e{left:534.481333pt;}
.x1d{left:573.660000pt;}
.xb{left:580.548000pt;}
.x46{left:584.993333pt;}
.xc{left:587.189333pt;}
.x69{left:589.237333pt;}
.xd{left:590.577333pt;}
.xe{left:597.218667pt;}
.x47{left:598.277333pt;}
.x9{left:599.288000pt;}
.xa{left:605.929333pt;}
.x66{left:610.541333pt;}
.x32{left:612.929333pt;}
.x20{left:616.298667pt;}
.x33{left:626.212000pt;}
.x21{left:629.581333pt;}
.x67{left:634.452000pt;}
.x41{left:659.686667pt;}
.x6a{left:660.760000pt;}
.x43{left:670.745333pt;}
.x65{left:673.637333pt;}
.x34{left:676.970667pt;}
.x6b{left:684.669333pt;}
.x44{left:686.518667pt;}
.x35{left:690.254667pt;}
.x45{left:692.569333pt;}
.x28{left:697.601333pt;}
.x22{left:709.917333pt;}
.x29{left:710.885333pt;}
.x36{left:712.832000pt;}
.x68{left:720.260000pt;}
.x23{left:723.200000pt;}
.x37{left:726.116000pt;}
.x19{left:727.152000pt;}
.x1a{left:740.436000pt;}
.x42{left:744.106667pt;}
}




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