
    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_7a6032f11d3b11ce96970c9c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_75c9400859f11f9eb5698b33.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8017a32fda45cdee79631ead.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e631dee82aada824486c117.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.040000;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_1fb89886104b160b705b2269.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.423000;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_fb5ff4784f13a8193798c5e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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;}
.ma{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);}
.m8{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);}
.m17{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);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2{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);}
.m22{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);}
.mb{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);}
.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);}
.m11{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);}
.m20{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);}
.m15{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);}
.m13{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);}
.m12{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);}
.md{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);}
.m18{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);}
.m14{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);}
.m7{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);}
.m28{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);}
.m1a{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);}
.m10{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);}
.m26{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);}
.m16{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);}
.m1f{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);}
.mc{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.mf{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);}
.m1b{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);}
.m21{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);}
.m1e{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);}
.m6{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);}
.m1{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-10.464000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000422px;}
.ls14{letter-spacing:0.000800px;}
.lse{letter-spacing:0.001133px;}
.ls12{letter-spacing:0.001746px;}
.ls13{letter-spacing:0.002841px;}
.ls11{letter-spacing:0.003070px;}
.lsf{letter-spacing:0.003178px;}
.ls1b{letter-spacing:0.004800px;}
.ls18{letter-spacing:0.749413px;}
.ls17{letter-spacing:1.461483px;}
.ls15{letter-spacing:1.467483px;}
.lsa{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.lsd{letter-spacing:3.733200px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls1c{letter-spacing:12.674890px;}
.ls1d{letter-spacing:13.194168px;}
.ls1a{letter-spacing:13.448400px;}
.ls1e{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.464686px;}
.ls8{letter-spacing:14.645022px;}
.ls19{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.541656px;}
.ls16{letter-spacing:15.689413px;}
.lsc{letter-spacing:18.112007px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls9{letter-spacing:578.322600px;}
.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;}
}
.ws76{word-spacing:-14.943900px;}
.ws83{word-spacing:-13.449600px;}
.wsd{word-spacing:-11.955150px;}
.wsb{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws75{word-spacing:-4.483170px;}
.ws70{word-spacing:-3.108331px;}
.ws3d{word-spacing:-2.929004px;}
.ws71{word-spacing:-2.630126px;}
.ws8d{word-spacing:-2.570351px;}
.wsbd{word-spacing:-2.474726px;}
.ws3e{word-spacing:-2.450800px;}
.ws30{word-spacing:-2.391024px;}
.ws63{word-spacing:-2.211697px;}
.wsa6{word-spacing:-2.151936px;}
.ws7c{word-spacing:-2.151922px;}
.ws58{word-spacing:-2.032370px;}
.ws77{word-spacing:-1.853044px;}
.ws2f{word-spacing:-1.793268px;}
.ws4a{word-spacing:-1.733492px;}
.ws2e{word-spacing:-1.673717px;}
.ws65{word-spacing:-1.554166px;}
.ws89{word-spacing:-1.452557px;}
.ws6e{word-spacing:-1.374839px;}
.ws1b{word-spacing:-1.255288px;}
.ws2c{word-spacing:-1.135736px;}
.wsc1{word-spacing:-1.075968px;}
.ws79{word-spacing:-1.075961px;}
.wsbf{word-spacing:-1.022170px;}
.ws1d{word-spacing:-1.016185px;}
.ws94{word-spacing:-0.896634px;}
.wsab{word-spacing:-0.860774px;}
.ws39{word-spacing:-0.836858px;}
.ws50{word-spacing:-0.777083px;}
.ws38{word-spacing:-0.657532px;}
.ws67{word-spacing:-0.597756px;}
.wsbc{word-spacing:-0.537984px;}
.ws31{word-spacing:-0.478205px;}
.ws4c{word-spacing:-0.418429px;}
.ws4b{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws32{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.268992px;}
.ws36{word-spacing:-0.239102px;}
.wsb2{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws11{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.ws9a{word-spacing:-0.107597px;}
.ws25{word-spacing:-0.059776px;}
.ws3f{word-spacing:-0.053798px;}
.ws24{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wsb8{word-spacing:-0.000125px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.053798px;}
.ws22{word-spacing:0.059776px;}
.wsc5{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.wsc{word-spacing:0.143462px;}
.ws9f{word-spacing:0.161395px;}
.ws1f{word-spacing:0.179327px;}
.ws10{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws12{word-spacing:0.268992px;}
.ws2b{word-spacing:0.298878px;}
.ws99{word-spacing:0.322790px;}
.ws4f{word-spacing:0.358654px;}
.ws5e{word-spacing:0.418429px;}
.wsa3{word-spacing:0.470141px;}
.ws96{word-spacing:0.537980px;}
.ws88{word-spacing:0.537984px;}
.ws7d{word-spacing:0.597756px;}
.ws9d{word-spacing:0.645581px;}
.ws93{word-spacing:0.657532px;}
.wsb5{word-spacing:0.699379px;}
.ws90{word-spacing:0.717307px;}
.ws91{word-spacing:0.749777px;}
.ws7f{word-spacing:0.777083px;}
.ws97{word-spacing:0.836858px;}
.wsa0{word-spacing:0.860774px;}
.ws8b{word-spacing:0.914573px;}
.ws62{word-spacing:0.956410px;}
.ws8c{word-spacing:0.968371px;}
.ws82{word-spacing:1.016185px;}
.wsb6{word-spacing:1.022170px;}
.ws7a{word-spacing:1.075961px;}
.ws55{word-spacing:1.135736px;}
.ws6d{word-spacing:1.195512px;}
.ws13{word-spacing:1.237363px;}
.ws7e{word-spacing:1.255288px;}
.ws51{word-spacing:1.315063px;}
.wsc3{word-spacing:1.344960px;}
.wsa{word-spacing:1.380812px;}
.ws78{word-spacing:1.494390px;}
.ws5f{word-spacing:1.554166px;}
.ws5b{word-spacing:1.613941px;}
.ws14{word-spacing:1.613952px;}
.ws47{word-spacing:1.673717px;}
.ws60{word-spacing:1.733492px;}
.ws27{word-spacing:1.793268px;}
.ws56{word-spacing:1.853044px;}
.ws66{word-spacing:1.912819px;}
.ws3a{word-spacing:1.972595px;}
.ws81{word-spacing:2.032370px;}
.ws72{word-spacing:2.092146px;}
.ws68{word-spacing:2.151922px;}
.ws29{word-spacing:2.211697px;}
.ws80{word-spacing:2.271473px;}
.ws53{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws3b{word-spacing:2.570351px;}
.ws4d{word-spacing:2.630126px;}
.ws6b{word-spacing:2.689902px;}
.ws6a{word-spacing:2.749678px;}
.ws5a{word-spacing:2.809453px;}
.wse{word-spacing:2.869236px;}
.ws49{word-spacing:2.988780px;}
.ws2a{word-spacing:3.048556px;}
.ws3c{word-spacing:3.108331px;}
.ws46{word-spacing:3.168107px;}
.ws57{word-spacing:3.227882px;}
.wsa5{word-spacing:3.227904px;}
.ws95{word-spacing:3.347434px;}
.ws8f{word-spacing:3.407209px;}
.ws9e{word-spacing:3.466273px;}
.wsca{word-spacing:3.496896px;}
.wsf{word-spacing:3.558529px;}
.ws1a{word-spacing:3.586536px;}
.ws64{word-spacing:3.646312px;}
.ws9b{word-spacing:3.658291px;}
.ws33{word-spacing:3.706087px;}
.ws8a{word-spacing:3.825638px;}
.ws8e{word-spacing:3.885414px;}
.ws6f{word-spacing:4.004965px;}
.ws26{word-spacing:4.423394px;}
.ws7b{word-spacing:4.602721px;}
.ws74{word-spacing:4.662497px;}
.ws9c{word-spacing:4.772940px;}
.ws35{word-spacing:4.841824px;}
.wsaf{word-spacing:5.164646px;}
.ws48{word-spacing:5.260253px;}
.ws87{word-spacing:5.326042px;}
.ws52{word-spacing:5.379804px;}
.ws8{word-spacing:5.481407px;}
.wsc6{word-spacing:5.595034px;}
.ws61{word-spacing:5.618906px;}
.ws54{word-spacing:5.678682px;}
.ws37{word-spacing:5.858009px;}
.ws17{word-spacing:5.917824px;}
.ws5d{word-spacing:5.977560px;}
.ws59{word-spacing:6.037336px;}
.ws6c{word-spacing:6.097111px;}
.ws98{word-spacing:6.276438px;}
.wsa1{word-spacing:6.348211px;}
.ws1c{word-spacing:6.814418px;}
.wsa2{word-spacing:6.939994px;}
.wsad{word-spacing:6.993792px;}
.ws73{word-spacing:7.173072px;}
.ws92{word-spacing:7.232848px;}
.ws19{word-spacing:7.531776px;}
.ws20{word-spacing:7.651277px;}
.ws69{word-spacing:8.069706px;}
.ws5c{word-spacing:8.308808px;}
.ws1e{word-spacing:8.428360px;}
.wsa9{word-spacing:9.140093px;}
.ws6{word-spacing:9.833058px;}
.ws2{word-spacing:10.415996px;}
.ws7{word-spacing:11.841512px;}
.ws23{word-spacing:11.904248px;}
.wsb3{word-spacing:13.180608px;}
.ws18{word-spacing:13.282491px;}
.wsc9{word-spacing:13.342003px;}
.wsc2{word-spacing:13.386499px;}
.wsb1{word-spacing:13.388534px;}
.wsa7{word-spacing:13.388611px;}
.wsbe{word-spacing:13.394534px;}
.wsaa{word-spacing:13.395802px;}
.wsae{word-spacing:13.449600px;}
.wsba{word-spacing:13.610995px;}
.wsa4{word-spacing:13.879987px;}
.wsb7{word-spacing:14.417971px;}
.ws4e{word-spacing:14.884124px;}
.wsc4{word-spacing:16.300915px;}
.wsc0{word-spacing:16.516109px;}
.wsb4{word-spacing:16.618646px;}
.wsc8{word-spacing:16.618742px;}
.wsbb{word-spacing:16.623706px;}
.wsb0{word-spacing:16.838899px;}
.wsb9{word-spacing:16.892698px;}
.wsc7{word-spacing:17.807270px;}
.wsac{word-spacing:20.389594px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws41{word-spacing:555.087696px;}
.ws42{word-spacing:571.177613px;}
.ws40{word-spacing:584.681011px;}
.ws43{word-spacing:622.430093px;}
.ws45{word-spacing:631.952477px;}
.ws44{word-spacing:659.018467px;}
.ws85{word-spacing:981.609533px;}
.ws84{word-spacing:983.115533px;}
.ws86{word-spacing:986.073533px;}
._6{margin-left:-7.962163px;}
._5{margin-left:-5.917824px;}
._0{margin-left:-4.644551px;}
._a{margin-left:-3.538724px;}
._2{margin-left:-2.301354px;}
._9{margin-left:-1.111804px;}
._16{width:1.014750px;}
._7{width:2.272908px;}
._23{width:3.287658px;}
._13{width:4.578789px;}
._1{width:12.971268px;}
._1c{width:14.286257px;}
._b{width:15.649481px;}
._d{width:16.677504px;}
._e{width:18.399053px;}
._20{width:19.594473px;}
._c{width:20.927578px;}
._15{width:22.451693px;}
._f{width:23.491811px;}
._1f{width:24.567772px;}
._3{width:25.946136px;}
._22{width:26.958796px;}
._12{width:28.094532px;}
._34{width:29.104801px;}
._14{width:30.246454px;}
._25{width:31.471847px;}
._4{width:33.355008px;}
._1b{width:34.729624px;}
._1e{width:35.984911px;}
._21{width:40.647408px;}
._1d{width:44.495876px;}
._33{width:50.779938px;}
._8{width:54.423634px;}
._35{width:61.868160px;}
._30{width:71.713267px;}
._32{width:90.381312px;}
._26{width:93.548814px;}
._2c{width:144.018317px;}
._28{width:147.084826px;}
._29{width:149.667149px;}
._2e{width:150.958310px;}
._2b{width:155.584973px;}
._2f{width:159.942643px;}
._2a{width:174.199219px;}
._2d{width:179.686656px;}
._27{width:182.484173px;}
._31{width:188.670989px;}
._18{width:417.367987px;}
._17{width:481.657075px;}
._19{width:631.143529px;}
._1a{width:643.799528px;}
._10{width:747.810563px;}
._24{width:2411.522700px;}
._11{width:2435.432700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(61,100,144);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs1{font-size:102.515176px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y18{bottom:18.594411px;}
.y47{bottom:31.890000px;}
.y46{bottom:103.621500px;}
.y16{bottom:104.646000px;}
.ycc{bottom:106.455000px;}
.y12b{bottom:107.280000px;}
.y133{bottom:107.610000px;}
.y18b{bottom:107.793000px;}
.y155{bottom:108.775500px;}
.y1e7{bottom:111.975000px;}
.yef{bottom:118.699500px;}
.y107{bottom:119.446500px;}
.y45{bottom:122.449500px;}
.y15{bottom:122.535000px;}
.ycb{bottom:125.284500px;}
.y15c{bottom:126.052500px;}
.y12a{bottom:126.109500px;}
.y18a{bottom:126.622500px;}
.y132{bottom:126.841500px;}
.y154{bottom:127.605000px;}
.y1e6{bottom:129.235500px;}
.yee{bottom:137.529000px;}
.y106{bottom:138.276000px;}
.y14{bottom:140.422500px;}
.y44{bottom:141.279000px;}
.yca{bottom:144.114000px;}
.y15b{bottom:144.882000px;}
.y129{bottom:144.939000px;}
.y189{bottom:145.452000px;}
.y131{bottom:146.074500px;}
.y153{bottom:146.434500px;}
.y1e5{bottom:146.496000px;}
.yed{bottom:156.358500px;}
.y105{bottom:157.105500px;}
.y7c{bottom:157.255500px;}
.y13{bottom:158.310000px;}
.y43{bottom:160.108500px;}
.yac{bottom:160.530000px;}
.y16b{bottom:162.343500px;}
.yc9{bottom:162.943500px;}
.y1e4{bottom:163.756500px;}
.y128{bottom:163.768500px;}
.y188{bottom:164.281500px;}
.y152{bottom:165.264000px;}
.y130{bottom:165.307500px;}
.yec{bottom:175.188000px;}
.y104{bottom:175.935000px;}
.y7b{bottom:176.085000px;}
.y12{bottom:176.199000px;}
.y15a{bottom:178.447500px;}
.y42{bottom:178.938000px;}
.yab{bottom:179.359500px;}
.y1e3{bottom:181.015500px;}
.y1ae{bottom:181.092000px;}
.y16a{bottom:181.173000px;}
.yc8{bottom:181.773000px;}
.y127{bottom:182.598000px;}
.y187{bottom:183.111000px;}
.y151{bottom:184.093500px;}
.y12f{bottom:193.507500px;}
.yeb{bottom:194.017500px;}
.y11{bottom:194.086500px;}
.y103{bottom:194.764500px;}
.y7a{bottom:194.914500px;}
.y41{bottom:197.767500px;}
.yaa{bottom:198.189000px;}
.y1e2{bottom:198.276000px;}
.y1ad{bottom:198.666000px;}
.y169{bottom:200.002500px;}
.yc7{bottom:200.602500px;}
.y126{bottom:201.427500px;}
.y186{bottom:201.940500px;}
.y150{bottom:202.923000px;}
.y10{bottom:211.974000px;}
.yea{bottom:212.847000px;}
.y79{bottom:213.744000px;}
.y1e1{bottom:215.536500px;}
.y1ac{bottom:216.240000px;}
.y40{bottom:216.597000px;}
.ya9{bottom:217.018500px;}
.y168{bottom:218.832000px;}
.yc6{bottom:219.432000px;}
.y125{bottom:220.257000px;}
.y185{bottom:220.770000px;}
.y102{bottom:221.065500px;}
.y14f{bottom:221.752500px;}
.yf{bottom:229.863000px;}
.ye9{bottom:231.676500px;}
.y78{bottom:232.573500px;}
.y1e0{bottom:232.797000px;}
.y1ab{bottom:233.814000px;}
.y3f{bottom:235.426500px;}
.ya8{bottom:235.848000px;}
.y167{bottom:237.661500px;}
.yc5{bottom:238.260000px;}
.y124{bottom:239.086500px;}
.y184{bottom:239.599500px;}
.y101{bottom:239.895000px;}
.y14e{bottom:240.582000px;}
.y1df{bottom:250.057500px;}
.y1aa{bottom:251.388000px;}
.y77{bottom:251.403000px;}
.y3e{bottom:254.256000px;}
.ya7{bottom:254.677500px;}
.ye8{bottom:254.989500px;}
.y166{bottom:256.491000px;}
.yc4{bottom:257.089500px;}
.y123{bottom:257.916000px;}
.y100{bottom:258.724500px;}
.y14d{bottom:259.411500px;}
.y183{bottom:262.911000px;}
.y1de{bottom:267.318000px;}
.y1a9{bottom:268.962000px;}
.y76{bottom:270.232500px;}
.y3d{bottom:273.085500px;}
.ya6{bottom:273.507000px;}
.y165{bottom:275.320500px;}
.yc3{bottom:275.919000px;}
.y122{bottom:276.745500px;}
.y14c{bottom:278.241000px;}
.yff{bottom:282.037500px;}
.y1dd{bottom:284.578500px;}
.y1a8{bottom:286.537500px;}
.ye7{bottom:288.613500px;}
.y75{bottom:289.062000px;}
.y3c{bottom:291.915000px;}
.ya5{bottom:292.336500px;}
.y182{bottom:293.338500px;}
.y164{bottom:294.150000px;}
.yc2{bottom:294.748500px;}
.y121{bottom:295.575000px;}
.y14b{bottom:297.070500px;}
.ye{bottom:299.892000px;}
.yfe{bottom:300.867000px;}
.y1dc{bottom:301.839000px;}
.y1a7{bottom:304.111500px;}
.ye6{bottom:307.443000px;}
.y74{bottom:307.891500px;}
.y17b{bottom:310.744500px;}
.ya4{bottom:311.166000px;}
.y163{bottom:312.979500px;}
.yc1{bottom:313.578000px;}
.y120{bottom:314.404500px;}
.y3b{bottom:315.228000px;}
.y14a{bottom:315.900000px;}
.yd{bottom:317.779500px;}
.y1db{bottom:319.099500px;}
.y1a6{bottom:321.685500px;}
.yfd{bottom:324.180000px;}
.ye5{bottom:326.272500px;}
.y73{bottom:326.719500px;}
.y17a{bottom:329.574000px;}
.ya3{bottom:329.995500px;}
.y162{bottom:331.809000px;}
.yc0{bottom:332.407500px;}
.y11f{bottom:333.234000px;}
.y149{bottom:334.729500px;}
.yc{bottom:335.667000px;}
.y1da{bottom:336.358500px;}
.y1a5{bottom:339.259500px;}
.yfc{bottom:343.009500px;}
.ye4{bottom:345.102000px;}
.y72{bottom:345.549000px;}
.y179{bottom:348.403500px;}
.ya2{bottom:348.825000px;}
.ybf{bottom:351.237000px;}
.y11e{bottom:352.062000px;}
.yb{bottom:353.556000px;}
.y148{bottom:353.559000px;}
.y1d9{bottom:353.619000px;}
.y161{bottom:355.120500px;}
.y1a4{bottom:356.833500px;}
.yfb{bottom:361.839000px;}
.ye3{bottom:363.931500px;}
.y71{bottom:364.378500px;}
.ya1{bottom:367.654500px;}
.ybe{bottom:370.066500px;}
.y1d8{bottom:370.879500px;}
.y11d{bottom:370.891500px;}
.y178{bottom:371.716500px;}
.y1a3{bottom:374.407500px;}
.y147{bottom:376.872000px;}
.yfa{bottom:380.668500px;}
.ya{bottom:381.904500px;}
.ye2{bottom:382.761000px;}
.y70{bottom:383.208000px;}
.y160{bottom:385.548000px;}
.ya0{bottom:386.484000px;}
.y1d7{bottom:388.140000px;}
.ybd{bottom:388.896000px;}
.y11c{bottom:389.721000px;}
.y3a{bottom:390.378000px;}
.y177{bottom:390.546000px;}
.y1a2{bottom:391.981500px;}
.yf9{bottom:399.498000px;}
.y9{bottom:399.792000px;}
.ye1{bottom:401.589000px;}
.y6f{bottom:402.037500px;}
.y9f{bottom:405.313500px;}
.y1d6{bottom:405.400500px;}
.y146{bottom:407.299500px;}
.ybc{bottom:407.725500px;}
.y11b{bottom:408.550500px;}
.y176{bottom:409.375500px;}
.y1a1{bottom:409.555500px;}
.y39{bottom:409.834500px;}
.y12e{bottom:410.016000px;}
.ye0{bottom:420.418500px;}
.y6e{bottom:420.867000px;}
.y1d5{bottom:422.661000px;}
.yf8{bottom:422.811000px;}
.y9e{bottom:424.143000px;}
.y145{bottom:426.531000px;}
.ybb{bottom:426.555000px;}
.y8{bottom:426.646500px;}
.y1a0{bottom:427.129500px;}
.y11a{bottom:427.380000px;}
.y175{bottom:428.205000px;}
.ydf{bottom:439.248000px;}
.y6d{bottom:439.696500px;}
.y1d4{bottom:439.921500px;}
.yf7{bottom:441.639000px;}
.y9d{bottom:442.972500px;}
.y7{bottom:444.534000px;}
.y19f{bottom:444.703500px;}
.yba{bottom:445.384500px;}
.y119{bottom:446.209500px;}
.y174{bottom:447.034500px;}
.y38{bottom:447.225000px;}
.y144{bottom:454.731000px;}
.y1d3{bottom:457.182000px;}
.yde{bottom:458.077500px;}
.y6c{bottom:458.526000px;}
.yf6{bottom:460.468500px;}
.y9c{bottom:461.802000px;}
.y19e{bottom:462.292500px;}
.y6{bottom:462.423000px;}
.yb9{bottom:464.214000px;}
.y118{bottom:465.039000px;}
.y173{bottom:465.864000px;}
.y37{bottom:466.681500px;}
.y1d2{bottom:474.441000px;}
.ydd{bottom:476.907000px;}
.y6b{bottom:477.355500px;}
.y5{bottom:480.310500px;}
.y9b{bottom:480.631500px;}
.yb8{bottom:483.043500px;}
.yf5{bottom:483.781500px;}
.y117{bottom:483.868500px;}
.y19d{bottom:484.350000px;}
.y172{bottom:484.693500px;}
.y36{bottom:486.139500px;}
.y1d1{bottom:491.701500px;}
.ydc{bottom:495.736500px;}
.y6a{bottom:496.185000px;}
.y4{bottom:498.198000px;}
.y9a{bottom:499.459500px;}
.yb7{bottom:501.873000px;}
.yf4{bottom:502.611000px;}
.y116{bottom:502.698000px;}
.y171{bottom:503.523000px;}
.y35{bottom:505.596000px;}
.y1d0{bottom:508.962000px;}
.ydb{bottom:514.566000px;}
.y69{bottom:515.014500px;}
.y3{bottom:516.087000px;}
.y99{bottom:518.289000px;}
.yb6{bottom:520.702500px;}
.y19c{bottom:521.112000px;}
.yf3{bottom:521.440500px;}
.y115{bottom:521.527500px;}
.y170{bottom:522.351000px;}
.y34{bottom:525.052500px;}
.y1cf{bottom:526.222500px;}
.yda{bottom:533.395500px;}
.y68{bottom:533.844000px;}
.y2{bottom:533.974500px;}
.y98{bottom:537.118500px;}
.yb5{bottom:539.532000px;}
.y114{bottom:540.357000px;}
.y1ce{bottom:543.483000px;}
.y33{bottom:544.510500px;}
.yf2{bottom:544.753500px;}
.y16f{bottom:545.664000px;}
.y19b{bottom:547.653000px;}
.y1{bottom:551.862000px;}
.yd9{bottom:552.225000px;}
.y67{bottom:552.673500px;}
.y97{bottom:555.948000px;}
.yb4{bottom:558.361500px;}
.y1cd{bottom:560.743500px;}
.yf1{bottom:563.583000px;}
.y113{bottom:563.670000px;}
.y32{bottom:563.967000px;}
.y159{bottom:564.484500px;}
.y16e{bottom:564.493500px;}
.y19a{bottom:565.227000px;}
.yd8{bottom:571.054500px;}
.y66{bottom:571.503000px;}
.y96{bottom:574.777500px;}
.yb3{bottom:577.191000px;}
.y1cc{bottom:578.004000px;}
.y199{bottom:582.801000px;}
.y158{bottom:583.314000px;}
.y31{bottom:583.423500px;}
.y16d{bottom:587.806500px;}
.yd7{bottom:589.884000px;}
.y65{bottom:590.332500px;}
.y112{bottom:594.097500px;}
.y1cb{bottom:595.264500px;}
.yb2{bottom:596.020500px;}
.y95{bottom:598.090500px;}
.y198{bottom:600.375000px;}
.y157{bottom:602.143500px;}
.y30{bottom:602.881500px;}
.yd6{bottom:608.713500px;}
.y64{bottom:609.162000px;}
.y1ca{bottom:612.525000px;}
.yb1{bottom:614.850000px;}
.y16c{bottom:616.342500px;}
.y12d{bottom:617.628000px;}
.y197{bottom:617.949000px;}
.y2f{bottom:622.338000px;}
.yd5{bottom:627.543000px;}
.y63{bottom:627.991500px;}
.y1c9{bottom:629.784000px;}
.y181{bottom:630.841500px;}
.y94{bottom:631.714500px;}
.yf0{bottom:632.026500px;}
.yb0{bottom:633.679500px;}
.y196{bottom:635.523000px;}
.y156{bottom:635.709000px;}
.y2e{bottom:641.796000px;}
.y143{bottom:641.952000px;}
.yd4{bottom:646.372500px;}
.y62{bottom:646.821000px;}
.y1c8{bottom:647.044500px;}
.y180{bottom:649.671000px;}
.y93{bottom:650.544000px;}
.yaf{bottom:652.509000px;}
.y2d{bottom:661.252500px;}
.y195{bottom:662.064000px;}
.y1c7{bottom:664.305000px;}
.yd3{bottom:665.202000px;}
.y61{bottom:665.650500px;}
.y17f{bottom:668.499000px;}
.y92{bottom:669.373500px;}
.yae{bottom:671.338500px;}
.y194{bottom:679.638000px;}
.y2c{bottom:680.709000px;}
.y1c6{bottom:681.565500px;}
.yd2{bottom:684.031500px;}
.y60{bottom:684.480000px;}
.y17e{bottom:687.328500px;}
.y91{bottom:692.686500px;}
.y1c5{bottom:698.826000px;}
.yd1{bottom:702.861000px;}
.y5f{bottom:703.309500px;}
.y15f{bottom:703.699500px;}
.yad{bottom:704.904000px;}
.y17d{bottom:706.158000px;}
.y193{bottom:706.179000px;}
.y1c4{bottom:716.086500px;}
.y1fc{bottom:719.001000px;}
.y2b{bottom:719.118000px;}
.yd0{bottom:721.690500px;}
.y5e{bottom:722.139000px;}
.y15e{bottom:722.529000px;}
.y90{bottom:726.310500px;}
.y192{bottom:732.718500px;}
.y1c3{bottom:733.347000px;}
.y2a{bottom:735.258000px;}
.y1fb{bottom:736.260000px;}
.y17c{bottom:739.725000px;}
.ycf{bottom:740.520000px;}
.y5d{bottom:740.968500px;}
.y8f{bottom:745.140000px;}
.y1c2{bottom:750.607500px;}
.y1fa{bottom:753.520500px;}
.y29{bottom:755.736000px;}
.y15d{bottom:756.096000px;}
.y191{bottom:759.259500px;}
.yce{bottom:759.349500px;}
.y5c{bottom:759.798000px;}
.y8e{bottom:763.969500px;}
.y28{bottom:767.536500px;}
.y1c1{bottom:767.866500px;}
.y190{bottom:776.833500px;}
.y111{bottom:778.179000px;}
.y5b{bottom:778.627500px;}
.ycd{bottom:782.662500px;}
.y8d{bottom:782.799000px;}
.y1c0{bottom:785.127000px;}
.y27{bottom:788.016000px;}
.y1f9{bottom:789.610500px;}
.y110{bottom:797.008500px;}
.y5a{bottom:797.457000px;}
.y26{bottom:799.815000px;}
.y8c{bottom:801.628500px;}
.y1bf{bottom:802.387500px;}
.y18f{bottom:803.374500px;}
.y1f8{bottom:806.871000px;}
.y10f{bottom:815.838000px;}
.y59{bottom:816.286500px;}
.y12c{bottom:816.615000px;}
.y1be{bottom:819.648000px;}
.y25{bottom:820.294500px;}
.y8b{bottom:820.458000px;}
.y18e{bottom:820.948500px;}
.y1f7{bottom:824.131500px;}
.y142{bottom:830.632500px;}
.y24{bottom:832.095000px;}
.y10e{bottom:834.667500px;}
.y58{bottom:835.114500px;}
.y1bd{bottom:836.908500px;}
.y18d{bottom:838.522500px;}
.y8a{bottom:839.286000px;}
.y1f6{bottom:841.392000px;}
.y23{bottom:848.233500px;}
.y141{bottom:849.462000px;}
.y10d{bottom:853.497000px;}
.y57{bottom:853.944000px;}
.y1bc{bottom:854.169000px;}
.y18c{bottom:856.096500px;}
.y89{bottom:858.115500px;}
.y1f5{bottom:858.652500px;}
.y140{bottom:868.291500px;}
.y22{bottom:868.713000px;}
.y1bb{bottom:871.429500px;}
.y10c{bottom:872.326500px;}
.y56{bottom:872.773500px;}
.y1f4{bottom:875.913000px;}
.y88{bottom:876.945000px;}
.y21{bottom:880.513500px;}
.y13f{bottom:887.121000px;}
.y1ba{bottom:888.690000px;}
.y10b{bottom:891.156000px;}
.y55{bottom:891.603000px;}
.y1f3{bottom:893.172000px;}
.y87{bottom:895.774500px;}
.y20{bottom:900.993000px;}
.y13e{bottom:905.950500px;}
.y10a{bottom:909.984000px;}
.y54{bottom:910.432500px;}
.y1f{bottom:912.792000px;}
.y86{bottom:914.604000px;}
.y1b9{bottom:923.209500px;}
.y13d{bottom:924.778500px;}
.y1f2{bottom:927.693000px;}
.y109{bottom:928.813500px;}
.y53{bottom:929.262000px;}
.y1e{bottom:933.271500px;}
.y85{bottom:933.433500px;}
.y1b8{bottom:940.470000px;}
.y13c{bottom:943.608000px;}
.y1f1{bottom:944.953500px;}
.y52{bottom:948.091500px;}
.y108{bottom:952.126500px;}
.y84{bottom:952.263000px;}
.y1b7{bottom:957.730500px;}
.y1f0{bottom:962.214000px;}
.y13b{bottom:962.437500px;}
.y51{bottom:966.921000px;}
.y1b6{bottom:974.991000px;}
.y1d{bottom:977.770500px;}
.y1ef{bottom:979.474500px;}
.y13a{bottom:981.267000px;}
.y50{bottom:985.750500px;}
.y1b5{bottom:992.251500px;}
.y1c{bottom:996.600000px;}
.y1ee{bottom:996.735000px;}
.y83{bottom:997.725000px;}
.y139{bottom:1000.096500px;}
.y4f{bottom:1004.580000px;}
.y1b4{bottom:1009.512000px;}
.y1ed{bottom:1013.995500px;}
.y82{bottom:1014.163500px;}
.y138{bottom:1018.926000px;}
.y4e{bottom:1023.409500px;}
.y1b3{bottom:1026.772500px;}
.y81{bottom:1030.602000px;}
.y1ec{bottom:1031.254500px;}
.y1b{bottom:1036.519500px;}
.y137{bottom:1037.755500px;}
.y4d{bottom:1042.239000px;}
.y1b2{bottom:1044.033000px;}
.y80{bottom:1047.040500px;}
.y1eb{bottom:1048.515000px;}
.y136{bottom:1056.585000px;}
.y4c{bottom:1061.068500px;}
.y1b1{bottom:1061.292000px;}
.y7f{bottom:1063.479000px;}
.y1a{bottom:1064.764500px;}
.y1ea{bottom:1065.775500px;}
.y135{bottom:1075.414500px;}
.y1b0{bottom:1078.552500px;}
.y4b{bottom:1079.898000px;}
.y1e9{bottom:1083.036000px;}
.y7e{bottom:1087.419000px;}
.y19{bottom:1093.008000px;}
.y134{bottom:1094.244000px;}
.y1af{bottom:1095.813000px;}
.y4a{bottom:1098.727500px;}
.y1e8{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.y7d{bottom:1119.037500px;}
.y17{bottom:1136.494500px;}
.y48{bottom:1177.662000px;}
.h9{height:26.110157px;}
.h11{height:28.273859px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.ha{height:34.813397px;}
.he{height:35.052500px;}
.hf{height:38.734848px;}
.hb{height:39.165235px;}
.h10{height:39.434227px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h6{height:43.815515px;}
.h4{height:50.931027px;}
.h8{height:54.411312px;}
.h5{height:69.505289px;}
.h7{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.230000px;}
.x1{left:53.574000px;}
.x2{left:57.111683px;}
.x5f{left:85.848000px;}
.x52{left:247.348500px;}
.x7{left:248.526000px;}
.x4{left:249.591000px;}
.x5{left:269.914500px;}
.x8{left:281.479500px;}
.x4b{left:282.828000px;}
.x4a{left:284.184000px;}
.x4c{left:313.489500px;}
.x24{left:322.035000px;}
.x26{left:328.101000px;}
.x25{left:330.181500px;}
.x27{left:333.016500px;}
.x29{left:335.814000px;}
.x28{left:339.216000px;}
.x2b{left:345.961500px;}
.x47{left:353.689500px;}
.x42{left:359.746500px;}
.xb{left:360.936000px;}
.xc{left:368.407500px;}
.x16{left:370.233000px;}
.x1c{left:371.713500px;}
.x5d{left:373.189500px;}
.x43{left:374.691000px;}
.x17{left:377.704500px;}
.x44{left:383.011500px;}
.x53{left:384.714000px;}
.x36{left:387.175500px;}
.x30{left:391.774500px;}
.x6{left:394.008000px;}
.x45{left:397.956000px;}
.x54{left:399.658500px;}
.x37{left:402.120000px;}
.x1d{left:404.971500px;}
.xd{left:409.999500px;}
.xe{left:417.471000px;}
.x4f{left:420.739500px;}
.x3a{left:426.591000px;}
.x34{left:432.471000px;}
.x3b{left:441.535500px;}
.x35{left:447.414000px;}
.x12{left:468.654000px;}
.x13{left:476.125500px;}
.x18{left:480.351000px;}
.x57{left:492.450000px;}
.x41{left:495.925500px;}
.x59{left:497.611500px;}
.x5e{left:504.292500px;}
.x9{left:505.926000px;}
.x2c{left:507.039000px;}
.x2e{left:508.734000px;}
.xa{left:513.399000px;}
.x2d{left:514.510500px;}
.x2f{left:516.207000px;}
.x19{left:519.796500px;}
.x3e{left:521.736000px;}
.x46{left:523.980000px;}
.x3f{left:536.680500px;}
.x1e{left:544.795500px;}
.x58{left:550.686000px;}
.x5a{left:555.847500px;}
.x22{left:561.226500px;}
.x1f{left:564.276000px;}
.x23{left:568.698000px;}
.x10{left:598.531500px;}
.x11{left:606.003000px;}
.x3c{left:659.368500px;}
.x3d{left:674.311500px;}
.x55{left:676.242000px;}
.x4d{left:684.181500px;}
.x4e{left:699.124500px;}
.x38{left:713.128500px;}
.x5b{left:714.187500px;}
.x2a{left:718.105500px;}
.x56{left:719.431500px;}
.xf{left:720.823500px;}
.x14{left:726.318000px;}
.x39{left:728.073000px;}
.x15{left:733.791000px;}
.x33{left:739.671000px;}
.x40{left:741.447000px;}
.x1a{left:751.060500px;}
.x5c{left:757.350000px;}
.x20{left:759.463500px;}
.x48{left:782.283000px;}
.x21{left:786.505500px;}
.x31{left:790.798500px;}
.x1b{left:795.241500px;}
.x32{left:805.743000px;}
.x50{left:816.951000px;}
.x51{left:831.894000px;}
.x49{left:840.108000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-9.301333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000375pt;}
.ls14{letter-spacing:0.000711pt;}
.lse{letter-spacing:0.001007pt;}
.ls12{letter-spacing:0.001552pt;}
.ls13{letter-spacing:0.002525pt;}
.ls11{letter-spacing:0.002729pt;}
.lsf{letter-spacing:0.002825pt;}
.ls1b{letter-spacing:0.004267pt;}
.ls18{letter-spacing:0.666145pt;}
.ls17{letter-spacing:1.299096pt;}
.ls15{letter-spacing:1.304429pt;}
.lsa{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.lsd{letter-spacing:3.318400pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.266569pt;}
.ls1d{letter-spacing:11.728150pt;}
.ls1a{letter-spacing:11.954133pt;}
.ls1e{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:11.968610pt;}
.ls8{letter-spacing:13.017797pt;}
.ls19{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.814805pt;}
.ls16{letter-spacing:13.946145pt;}
.lsc{letter-spacing:16.099562pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls9{letter-spacing:514.064533pt;}
.ws76{word-spacing:-13.283467pt;}
.ws83{word-spacing:-11.955200pt;}
.wsd{word-spacing:-10.626800pt;}
.wsb{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws75{word-spacing:-3.985040pt;}
.ws70{word-spacing:-2.762961pt;}
.ws3d{word-spacing:-2.603559pt;}
.ws71{word-spacing:-2.337890pt;}
.ws8d{word-spacing:-2.284756pt;}
.wsbd{word-spacing:-2.199757pt;}
.ws3e{word-spacing:-2.178489pt;}
.ws30{word-spacing:-2.125355pt;}
.ws63{word-spacing:-1.965953pt;}
.wsa6{word-spacing:-1.912832pt;}
.ws7c{word-spacing:-1.912819pt;}
.ws58{word-spacing:-1.806551pt;}
.ws77{word-spacing:-1.647150pt;}
.ws2f{word-spacing:-1.594016pt;}
.ws4a{word-spacing:-1.540882pt;}
.ws2e{word-spacing:-1.487748pt;}
.ws65{word-spacing:-1.381481pt;}
.ws89{word-spacing:-1.291162pt;}
.ws6e{word-spacing:-1.222079pt;}
.ws1b{word-spacing:-1.115811pt;}
.ws2c{word-spacing:-1.009543pt;}
.wsc1{word-spacing:-0.956416pt;}
.ws79{word-spacing:-0.956410pt;}
.wsbf{word-spacing:-0.908595pt;}
.ws1d{word-spacing:-0.903276pt;}
.ws94{word-spacing:-0.797008pt;}
.wsab{word-spacing:-0.765133pt;}
.ws39{word-spacing:-0.743874pt;}
.ws50{word-spacing:-0.690740pt;}
.ws38{word-spacing:-0.584473pt;}
.ws67{word-spacing:-0.531339pt;}
.wsbc{word-spacing:-0.478208pt;}
.ws31{word-spacing:-0.425071pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws4b{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws32{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.239104pt;}
.ws36{word-spacing:-0.212535pt;}
.wsb2{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws11{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.ws9a{word-spacing:-0.095642pt;}
.ws25{word-spacing:-0.053134pt;}
.ws3f{word-spacing:-0.047821pt;}
.ws24{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wsb8{word-spacing:-0.000111pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.047821pt;}
.ws22{word-spacing:0.053134pt;}
.wsc5{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.wsc{word-spacing:0.127522pt;}
.ws9f{word-spacing:0.143462pt;}
.ws1f{word-spacing:0.159402pt;}
.ws10{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws12{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.265669pt;}
.ws99{word-spacing:0.286925pt;}
.ws4f{word-spacing:0.318803pt;}
.ws5e{word-spacing:0.371937pt;}
.wsa3{word-spacing:0.417903pt;}
.ws96{word-spacing:0.478205pt;}
.ws88{word-spacing:0.478208pt;}
.ws7d{word-spacing:0.531339pt;}
.ws9d{word-spacing:0.573850pt;}
.ws93{word-spacing:0.584473pt;}
.wsb5{word-spacing:0.621670pt;}
.ws90{word-spacing:0.637606pt;}
.ws91{word-spacing:0.666468pt;}
.ws7f{word-spacing:0.690740pt;}
.ws97{word-spacing:0.743874pt;}
.wsa0{word-spacing:0.765133pt;}
.ws8b{word-spacing:0.812954pt;}
.ws62{word-spacing:0.850142pt;}
.ws8c{word-spacing:0.860774pt;}
.ws82{word-spacing:0.903276pt;}
.wsb6{word-spacing:0.908595pt;}
.ws7a{word-spacing:0.956410pt;}
.ws55{word-spacing:1.009543pt;}
.ws6d{word-spacing:1.062677pt;}
.ws13{word-spacing:1.099878pt;}
.ws7e{word-spacing:1.115811pt;}
.ws51{word-spacing:1.168945pt;}
.wsc3{word-spacing:1.195520pt;}
.wsa{word-spacing:1.227389pt;}
.ws78{word-spacing:1.328347pt;}
.ws5f{word-spacing:1.381481pt;}
.ws5b{word-spacing:1.434614pt;}
.ws14{word-spacing:1.434624pt;}
.ws47{word-spacing:1.487748pt;}
.ws60{word-spacing:1.540882pt;}
.ws27{word-spacing:1.594016pt;}
.ws56{word-spacing:1.647150pt;}
.ws66{word-spacing:1.700284pt;}
.ws3a{word-spacing:1.753418pt;}
.ws81{word-spacing:1.806551pt;}
.ws72{word-spacing:1.859685pt;}
.ws68{word-spacing:1.912819pt;}
.ws29{word-spacing:1.965953pt;}
.ws80{word-spacing:2.019087pt;}
.ws53{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws3b{word-spacing:2.284756pt;}
.ws4d{word-spacing:2.337890pt;}
.ws6b{word-spacing:2.391024pt;}
.ws6a{word-spacing:2.444158pt;}
.ws5a{word-spacing:2.497292pt;}
.wse{word-spacing:2.550432pt;}
.ws49{word-spacing:2.656693pt;}
.ws2a{word-spacing:2.709827pt;}
.ws3c{word-spacing:2.762961pt;}
.ws46{word-spacing:2.816095pt;}
.ws57{word-spacing:2.869229pt;}
.wsa5{word-spacing:2.869248pt;}
.ws95{word-spacing:2.975497pt;}
.ws8f{word-spacing:3.028630pt;}
.ws9e{word-spacing:3.081132pt;}
.wsca{word-spacing:3.108352pt;}
.wsf{word-spacing:3.163137pt;}
.ws1a{word-spacing:3.188032pt;}
.ws64{word-spacing:3.241166pt;}
.ws9b{word-spacing:3.251814pt;}
.ws33{word-spacing:3.294300pt;}
.ws8a{word-spacing:3.400567pt;}
.ws8e{word-spacing:3.453701pt;}
.ws6f{word-spacing:3.559969pt;}
.ws26{word-spacing:3.931906pt;}
.ws7b{word-spacing:4.091308pt;}
.ws74{word-spacing:4.144442pt;}
.ws9c{word-spacing:4.242613pt;}
.ws35{word-spacing:4.303843pt;}
.wsaf{word-spacing:4.590797pt;}
.ws48{word-spacing:4.675780pt;}
.ws87{word-spacing:4.734259pt;}
.ws52{word-spacing:4.782048pt;}
.ws8{word-spacing:4.872362pt;}
.wsc6{word-spacing:4.973363pt;}
.ws61{word-spacing:4.994583pt;}
.ws54{word-spacing:5.047717pt;}
.ws37{word-spacing:5.207119pt;}
.ws17{word-spacing:5.260288pt;}
.ws5d{word-spacing:5.313387pt;}
.ws59{word-spacing:5.366521pt;}
.ws6c{word-spacing:5.419654pt;}
.ws98{word-spacing:5.579056pt;}
.wsa1{word-spacing:5.642854pt;}
.ws1c{word-spacing:6.057261pt;}
.wsa2{word-spacing:6.168883pt;}
.wsad{word-spacing:6.216704pt;}
.ws73{word-spacing:6.376064pt;}
.ws92{word-spacing:6.429198pt;}
.ws19{word-spacing:6.694912pt;}
.ws20{word-spacing:6.801135pt;}
.ws69{word-spacing:7.173072pt;}
.ws5c{word-spacing:7.385607pt;}
.ws1e{word-spacing:7.491875pt;}
.wsa9{word-spacing:8.124527pt;}
.ws6{word-spacing:8.740496pt;}
.ws2{word-spacing:9.258663pt;}
.ws7{word-spacing:10.525789pt;}
.ws23{word-spacing:10.581554pt;}
.wsb3{word-spacing:11.716096pt;}
.ws18{word-spacing:11.806658pt;}
.wsc9{word-spacing:11.859558pt;}
.wsc2{word-spacing:11.899110pt;}
.wsb1{word-spacing:11.900919pt;}
.wsa7{word-spacing:11.900988pt;}
.wsbe{word-spacing:11.906253pt;}
.wsaa{word-spacing:11.907379pt;}
.wsae{word-spacing:11.955200pt;}
.wsba{word-spacing:12.098662pt;}
.wsa4{word-spacing:12.337766pt;}
.wsb7{word-spacing:12.815974pt;}
.ws4e{word-spacing:13.230333pt;}
.wsc4{word-spacing:14.489702pt;}
.wsc0{word-spacing:14.680986pt;}
.wsb4{word-spacing:14.772130pt;}
.wsc8{word-spacing:14.772215pt;}
.wsbb{word-spacing:14.776627pt;}
.wsb0{word-spacing:14.967910pt;}
.wsb9{word-spacing:15.015731pt;}
.wsc7{word-spacing:15.828685pt;}
.wsac{word-spacing:18.124083pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws41{word-spacing:493.411285pt;}
.ws42{word-spacing:507.713434pt;}
.ws40{word-spacing:519.716454pt;}
.ws43{word-spacing:553.271194pt;}
.ws45{word-spacing:561.735535pt;}
.ws44{word-spacing:585.794193pt;}
.ws85{word-spacing:872.541807pt;}
.ws84{word-spacing:873.880474pt;}
.ws86{word-spacing:876.509807pt;}
._6{margin-left:-7.077478pt;}
._5{margin-left:-5.260288pt;}
._0{margin-left:-4.128490pt;}
._a{margin-left:-3.145533pt;}
._2{margin-left:-2.045648pt;}
._9{margin-left:-0.988270pt;}
._16{width:0.902000pt;}
._7{width:2.020363pt;}
._23{width:2.922363pt;}
._13{width:4.070035pt;}
._1{width:11.530016pt;}
._1c{width:12.698895pt;}
._b{width:13.910650pt;}
._d{width:14.824448pt;}
._e{width:16.354714pt;}
._20{width:17.417309pt;}
._c{width:18.602291pt;}
._15{width:19.957061pt;}
._f{width:20.881610pt;}
._1f{width:21.838019pt;}
._3{width:23.063232pt;}
._22{width:23.963374pt;}
._12{width:24.972917pt;}
._34{width:25.870934pt;}
._14{width:26.885737pt;}
._25{width:27.974975pt;}
._4{width:29.648896pt;}
._1b{width:30.870777pt;}
._1e{width:31.986588pt;}
._21{width:36.131029pt;}
._1d{width:39.551890pt;}
._33{width:45.137723pt;}
._8{width:48.376563pt;}
._35{width:54.993920pt;}
._30{width:63.745126pt;}
._32{width:80.338944pt;}
._26{width:83.154501pt;}
._2c{width:128.016282pt;}
._28{width:130.742067pt;}
._29{width:133.037466pt;}
._2e{width:134.185165pt;}
._2b{width:138.297754pt;}
._2f{width:142.171238pt;}
._2a{width:154.843750pt;}
._2d{width:159.721472pt;}
._27{width:162.208154pt;}
._31{width:167.707546pt;}
._18{width:370.993766pt;}
._17{width:428.139622pt;}
._19{width:561.016470pt;}
._1a{width:572.266247pt;}
._10{width:664.720501pt;}
._24{width:2143.575733pt;}
._11{width:2164.829067pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs1{font-size:91.124601pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:16.528366pt;}
.y47{bottom:28.346667pt;}
.y46{bottom:92.108000pt;}
.y16{bottom:93.018667pt;}
.ycc{bottom:94.626667pt;}
.y12b{bottom:95.360000pt;}
.y133{bottom:95.653333pt;}
.y18b{bottom:95.816000pt;}
.y155{bottom:96.689333pt;}
.y1e7{bottom:99.533333pt;}
.yef{bottom:105.510667pt;}
.y107{bottom:106.174667pt;}
.y45{bottom:108.844000pt;}
.y15{bottom:108.920000pt;}
.ycb{bottom:111.364000pt;}
.y15c{bottom:112.046667pt;}
.y12a{bottom:112.097333pt;}
.y18a{bottom:112.553333pt;}
.y132{bottom:112.748000pt;}
.y154{bottom:113.426667pt;}
.y1e6{bottom:114.876000pt;}
.yee{bottom:122.248000pt;}
.y106{bottom:122.912000pt;}
.y14{bottom:124.820000pt;}
.y44{bottom:125.581333pt;}
.yca{bottom:128.101333pt;}
.y15b{bottom:128.784000pt;}
.y129{bottom:128.834667pt;}
.y189{bottom:129.290667pt;}
.y131{bottom:129.844000pt;}
.y153{bottom:130.164000pt;}
.y1e5{bottom:130.218667pt;}
.yed{bottom:138.985333pt;}
.y105{bottom:139.649333pt;}
.y7c{bottom:139.782667pt;}
.y13{bottom:140.720000pt;}
.y43{bottom:142.318667pt;}
.yac{bottom:142.693333pt;}
.y16b{bottom:144.305333pt;}
.yc9{bottom:144.838667pt;}
.y1e4{bottom:145.561333pt;}
.y128{bottom:145.572000pt;}
.y188{bottom:146.028000pt;}
.y152{bottom:146.901333pt;}
.y130{bottom:146.940000pt;}
.yec{bottom:155.722667pt;}
.y104{bottom:156.386667pt;}
.y7b{bottom:156.520000pt;}
.y12{bottom:156.621333pt;}
.y15a{bottom:158.620000pt;}
.y42{bottom:159.056000pt;}
.yab{bottom:159.430667pt;}
.y1e3{bottom:160.902667pt;}
.y1ae{bottom:160.970667pt;}
.y16a{bottom:161.042667pt;}
.yc8{bottom:161.576000pt;}
.y127{bottom:162.309333pt;}
.y187{bottom:162.765333pt;}
.y151{bottom:163.638667pt;}
.y12f{bottom:172.006667pt;}
.yeb{bottom:172.460000pt;}
.y11{bottom:172.521333pt;}
.y103{bottom:173.124000pt;}
.y7a{bottom:173.257333pt;}
.y41{bottom:175.793333pt;}
.yaa{bottom:176.168000pt;}
.y1e2{bottom:176.245333pt;}
.y1ad{bottom:176.592000pt;}
.y169{bottom:177.780000pt;}
.yc7{bottom:178.313333pt;}
.y126{bottom:179.046667pt;}
.y186{bottom:179.502667pt;}
.y150{bottom:180.376000pt;}
.y10{bottom:188.421333pt;}
.yea{bottom:189.197333pt;}
.y79{bottom:189.994667pt;}
.y1e1{bottom:191.588000pt;}
.y1ac{bottom:192.213333pt;}
.y40{bottom:192.530667pt;}
.ya9{bottom:192.905333pt;}
.y168{bottom:194.517333pt;}
.yc6{bottom:195.050667pt;}
.y125{bottom:195.784000pt;}
.y185{bottom:196.240000pt;}
.y102{bottom:196.502667pt;}
.y14f{bottom:197.113333pt;}
.yf{bottom:204.322667pt;}
.ye9{bottom:205.934667pt;}
.y78{bottom:206.732000pt;}
.y1e0{bottom:206.930667pt;}
.y1ab{bottom:207.834667pt;}
.y3f{bottom:209.268000pt;}
.ya8{bottom:209.642667pt;}
.y167{bottom:211.254667pt;}
.yc5{bottom:211.786667pt;}
.y124{bottom:212.521333pt;}
.y184{bottom:212.977333pt;}
.y101{bottom:213.240000pt;}
.y14e{bottom:213.850667pt;}
.y1df{bottom:222.273333pt;}
.y1aa{bottom:223.456000pt;}
.y77{bottom:223.469333pt;}
.y3e{bottom:226.005333pt;}
.ya7{bottom:226.380000pt;}
.ye8{bottom:226.657333pt;}
.y166{bottom:227.992000pt;}
.yc4{bottom:228.524000pt;}
.y123{bottom:229.258667pt;}
.y100{bottom:229.977333pt;}
.y14d{bottom:230.588000pt;}
.y183{bottom:233.698667pt;}
.y1de{bottom:237.616000pt;}
.y1a9{bottom:239.077333pt;}
.y76{bottom:240.206667pt;}
.y3d{bottom:242.742667pt;}
.ya6{bottom:243.117333pt;}
.y165{bottom:244.729333pt;}
.yc3{bottom:245.261333pt;}
.y122{bottom:245.996000pt;}
.y14c{bottom:247.325333pt;}
.yff{bottom:250.700000pt;}
.y1dd{bottom:252.958667pt;}
.y1a8{bottom:254.700000pt;}
.ye7{bottom:256.545333pt;}
.y75{bottom:256.944000pt;}
.y3c{bottom:259.480000pt;}
.ya5{bottom:259.854667pt;}
.y182{bottom:260.745333pt;}
.y164{bottom:261.466667pt;}
.yc2{bottom:261.998667pt;}
.y121{bottom:262.733333pt;}
.y14b{bottom:264.062667pt;}
.ye{bottom:266.570667pt;}
.yfe{bottom:267.437333pt;}
.y1dc{bottom:268.301333pt;}
.y1a7{bottom:270.321333pt;}
.ye6{bottom:273.282667pt;}
.y74{bottom:273.681333pt;}
.y17b{bottom:276.217333pt;}
.ya4{bottom:276.592000pt;}
.y163{bottom:278.204000pt;}
.yc1{bottom:278.736000pt;}
.y120{bottom:279.470667pt;}
.y3b{bottom:280.202667pt;}
.y14a{bottom:280.800000pt;}
.yd{bottom:282.470667pt;}
.y1db{bottom:283.644000pt;}
.y1a6{bottom:285.942667pt;}
.yfd{bottom:288.160000pt;}
.ye5{bottom:290.020000pt;}
.y73{bottom:290.417333pt;}
.y17a{bottom:292.954667pt;}
.ya3{bottom:293.329333pt;}
.y162{bottom:294.941333pt;}
.yc0{bottom:295.473333pt;}
.y11f{bottom:296.208000pt;}
.y149{bottom:297.537333pt;}
.yc{bottom:298.370667pt;}
.y1da{bottom:298.985333pt;}
.y1a5{bottom:301.564000pt;}
.yfc{bottom:304.897333pt;}
.ye4{bottom:306.757333pt;}
.y72{bottom:307.154667pt;}
.y179{bottom:309.692000pt;}
.ya2{bottom:310.066667pt;}
.ybf{bottom:312.210667pt;}
.y11e{bottom:312.944000pt;}
.yb{bottom:314.272000pt;}
.y148{bottom:314.274667pt;}
.y1d9{bottom:314.328000pt;}
.y161{bottom:315.662667pt;}
.y1a4{bottom:317.185333pt;}
.yfb{bottom:321.634667pt;}
.ye3{bottom:323.494667pt;}
.y71{bottom:323.892000pt;}
.ya1{bottom:326.804000pt;}
.ybe{bottom:328.948000pt;}
.y1d8{bottom:329.670667pt;}
.y11d{bottom:329.681333pt;}
.y178{bottom:330.414667pt;}
.y1a3{bottom:332.806667pt;}
.y147{bottom:334.997333pt;}
.yfa{bottom:338.372000pt;}
.ya{bottom:339.470667pt;}
.ye2{bottom:340.232000pt;}
.y70{bottom:340.629333pt;}
.y160{bottom:342.709333pt;}
.ya0{bottom:343.541333pt;}
.y1d7{bottom:345.013333pt;}
.ybd{bottom:345.685333pt;}
.y11c{bottom:346.418667pt;}
.y3a{bottom:347.002667pt;}
.y177{bottom:347.152000pt;}
.y1a2{bottom:348.428000pt;}
.yf9{bottom:355.109333pt;}
.y9{bottom:355.370667pt;}
.ye1{bottom:356.968000pt;}
.y6f{bottom:357.366667pt;}
.y9f{bottom:360.278667pt;}
.y1d6{bottom:360.356000pt;}
.y146{bottom:362.044000pt;}
.ybc{bottom:362.422667pt;}
.y11b{bottom:363.156000pt;}
.y176{bottom:363.889333pt;}
.y1a1{bottom:364.049333pt;}
.y39{bottom:364.297333pt;}
.y12e{bottom:364.458667pt;}
.ye0{bottom:373.705333pt;}
.y6e{bottom:374.104000pt;}
.y1d5{bottom:375.698667pt;}
.yf8{bottom:375.832000pt;}
.y9e{bottom:377.016000pt;}
.y145{bottom:379.138667pt;}
.ybb{bottom:379.160000pt;}
.y8{bottom:379.241333pt;}
.y1a0{bottom:379.670667pt;}
.y11a{bottom:379.893333pt;}
.y175{bottom:380.626667pt;}
.ydf{bottom:390.442667pt;}
.y6d{bottom:390.841333pt;}
.y1d4{bottom:391.041333pt;}
.yf7{bottom:392.568000pt;}
.y9d{bottom:393.753333pt;}
.y7{bottom:395.141333pt;}
.y19f{bottom:395.292000pt;}
.yba{bottom:395.897333pt;}
.y119{bottom:396.630667pt;}
.y174{bottom:397.364000pt;}
.y38{bottom:397.533333pt;}
.y144{bottom:404.205333pt;}
.y1d3{bottom:406.384000pt;}
.yde{bottom:407.180000pt;}
.y6c{bottom:407.578667pt;}
.yf6{bottom:409.305333pt;}
.y9c{bottom:410.490667pt;}
.y19e{bottom:410.926667pt;}
.y6{bottom:411.042667pt;}
.yb9{bottom:412.634667pt;}
.y118{bottom:413.368000pt;}
.y173{bottom:414.101333pt;}
.y37{bottom:414.828000pt;}
.y1d2{bottom:421.725333pt;}
.ydd{bottom:423.917333pt;}
.y6b{bottom:424.316000pt;}
.y5{bottom:426.942667pt;}
.y9b{bottom:427.228000pt;}
.yb8{bottom:429.372000pt;}
.yf5{bottom:430.028000pt;}
.y117{bottom:430.105333pt;}
.y19d{bottom:430.533333pt;}
.y172{bottom:430.838667pt;}
.y36{bottom:432.124000pt;}
.y1d1{bottom:437.068000pt;}
.ydc{bottom:440.654667pt;}
.y6a{bottom:441.053333pt;}
.y4{bottom:442.842667pt;}
.y9a{bottom:443.964000pt;}
.yb7{bottom:446.109333pt;}
.yf4{bottom:446.765333pt;}
.y116{bottom:446.842667pt;}
.y171{bottom:447.576000pt;}
.y35{bottom:449.418667pt;}
.y1d0{bottom:452.410667pt;}
.ydb{bottom:457.392000pt;}
.y69{bottom:457.790667pt;}
.y3{bottom:458.744000pt;}
.y99{bottom:460.701333pt;}
.yb6{bottom:462.846667pt;}
.y19c{bottom:463.210667pt;}
.yf3{bottom:463.502667pt;}
.y115{bottom:463.580000pt;}
.y170{bottom:464.312000pt;}
.y34{bottom:466.713333pt;}
.y1cf{bottom:467.753333pt;}
.yda{bottom:474.129333pt;}
.y68{bottom:474.528000pt;}
.y2{bottom:474.644000pt;}
.y98{bottom:477.438667pt;}
.yb5{bottom:479.584000pt;}
.y114{bottom:480.317333pt;}
.y1ce{bottom:483.096000pt;}
.y33{bottom:484.009333pt;}
.yf2{bottom:484.225333pt;}
.y16f{bottom:485.034667pt;}
.y19b{bottom:486.802667pt;}
.y1{bottom:490.544000pt;}
.yd9{bottom:490.866667pt;}
.y67{bottom:491.265333pt;}
.y97{bottom:494.176000pt;}
.yb4{bottom:496.321333pt;}
.y1cd{bottom:498.438667pt;}
.yf1{bottom:500.962667pt;}
.y113{bottom:501.040000pt;}
.y32{bottom:501.304000pt;}
.y159{bottom:501.764000pt;}
.y16e{bottom:501.772000pt;}
.y19a{bottom:502.424000pt;}
.yd8{bottom:507.604000pt;}
.y66{bottom:508.002667pt;}
.y96{bottom:510.913333pt;}
.yb3{bottom:513.058667pt;}
.y1cc{bottom:513.781333pt;}
.y199{bottom:518.045333pt;}
.y158{bottom:518.501333pt;}
.y31{bottom:518.598667pt;}
.y16d{bottom:522.494667pt;}
.yd7{bottom:524.341333pt;}
.y65{bottom:524.740000pt;}
.y112{bottom:528.086667pt;}
.y1cb{bottom:529.124000pt;}
.yb2{bottom:529.796000pt;}
.y95{bottom:531.636000pt;}
.y198{bottom:533.666667pt;}
.y157{bottom:535.238667pt;}
.y30{bottom:535.894667pt;}
.yd6{bottom:541.078667pt;}
.y64{bottom:541.477333pt;}
.y1ca{bottom:544.466667pt;}
.yb1{bottom:546.533333pt;}
.y16c{bottom:547.860000pt;}
.y12d{bottom:549.002667pt;}
.y197{bottom:549.288000pt;}
.y2f{bottom:553.189333pt;}
.yd5{bottom:557.816000pt;}
.y63{bottom:558.214667pt;}
.y1c9{bottom:559.808000pt;}
.y181{bottom:560.748000pt;}
.y94{bottom:561.524000pt;}
.yf0{bottom:561.801333pt;}
.yb0{bottom:563.270667pt;}
.y196{bottom:564.909333pt;}
.y156{bottom:565.074667pt;}
.y2e{bottom:570.485333pt;}
.y143{bottom:570.624000pt;}
.yd4{bottom:574.553333pt;}
.y62{bottom:574.952000pt;}
.y1c8{bottom:575.150667pt;}
.y180{bottom:577.485333pt;}
.y93{bottom:578.261333pt;}
.yaf{bottom:580.008000pt;}
.y2d{bottom:587.780000pt;}
.y195{bottom:588.501333pt;}
.y1c7{bottom:590.493333pt;}
.yd3{bottom:591.290667pt;}
.y61{bottom:591.689333pt;}
.y17f{bottom:594.221333pt;}
.y92{bottom:594.998667pt;}
.yae{bottom:596.745333pt;}
.y194{bottom:604.122667pt;}
.y2c{bottom:605.074667pt;}
.y1c6{bottom:605.836000pt;}
.yd2{bottom:608.028000pt;}
.y60{bottom:608.426667pt;}
.y17e{bottom:610.958667pt;}
.y91{bottom:615.721333pt;}
.y1c5{bottom:621.178667pt;}
.yd1{bottom:624.765333pt;}
.y5f{bottom:625.164000pt;}
.y15f{bottom:625.510667pt;}
.yad{bottom:626.581333pt;}
.y17d{bottom:627.696000pt;}
.y193{bottom:627.714667pt;}
.y1c4{bottom:636.521333pt;}
.y1fc{bottom:639.112000pt;}
.y2b{bottom:639.216000pt;}
.yd0{bottom:641.502667pt;}
.y5e{bottom:641.901333pt;}
.y15e{bottom:642.248000pt;}
.y90{bottom:645.609333pt;}
.y192{bottom:651.305333pt;}
.y1c3{bottom:651.864000pt;}
.y2a{bottom:653.562667pt;}
.y1fb{bottom:654.453333pt;}
.y17c{bottom:657.533333pt;}
.ycf{bottom:658.240000pt;}
.y5d{bottom:658.638667pt;}
.y8f{bottom:662.346667pt;}
.y1c2{bottom:667.206667pt;}
.y1fa{bottom:669.796000pt;}
.y29{bottom:671.765333pt;}
.y15d{bottom:672.085333pt;}
.y191{bottom:674.897333pt;}
.yce{bottom:674.977333pt;}
.y5c{bottom:675.376000pt;}
.y8e{bottom:679.084000pt;}
.y28{bottom:682.254667pt;}
.y1c1{bottom:682.548000pt;}
.y190{bottom:690.518667pt;}
.y111{bottom:691.714667pt;}
.y5b{bottom:692.113333pt;}
.ycd{bottom:695.700000pt;}
.y8d{bottom:695.821333pt;}
.y1c0{bottom:697.890667pt;}
.y27{bottom:700.458667pt;}
.y1f9{bottom:701.876000pt;}
.y110{bottom:708.452000pt;}
.y5a{bottom:708.850667pt;}
.y26{bottom:710.946667pt;}
.y8c{bottom:712.558667pt;}
.y1bf{bottom:713.233333pt;}
.y18f{bottom:714.110667pt;}
.y1f8{bottom:717.218667pt;}
.y10f{bottom:725.189333pt;}
.y59{bottom:725.588000pt;}
.y12c{bottom:725.880000pt;}
.y1be{bottom:728.576000pt;}
.y25{bottom:729.150667pt;}
.y8b{bottom:729.296000pt;}
.y18e{bottom:729.732000pt;}
.y1f7{bottom:732.561333pt;}
.y142{bottom:738.340000pt;}
.y24{bottom:739.640000pt;}
.y10e{bottom:741.926667pt;}
.y58{bottom:742.324000pt;}
.y1bd{bottom:743.918667pt;}
.y18d{bottom:745.353333pt;}
.y8a{bottom:746.032000pt;}
.y1f6{bottom:747.904000pt;}
.y23{bottom:753.985333pt;}
.y141{bottom:755.077333pt;}
.y10d{bottom:758.664000pt;}
.y57{bottom:759.061333pt;}
.y1bc{bottom:759.261333pt;}
.y18c{bottom:760.974667pt;}
.y89{bottom:762.769333pt;}
.y1f5{bottom:763.246667pt;}
.y140{bottom:771.814667pt;}
.y22{bottom:772.189333pt;}
.y1bb{bottom:774.604000pt;}
.y10c{bottom:775.401333pt;}
.y56{bottom:775.798667pt;}
.y1f4{bottom:778.589333pt;}
.y88{bottom:779.506667pt;}
.y21{bottom:782.678667pt;}
.y13f{bottom:788.552000pt;}
.y1ba{bottom:789.946667pt;}
.y10b{bottom:792.138667pt;}
.y55{bottom:792.536000pt;}
.y1f3{bottom:793.930667pt;}
.y87{bottom:796.244000pt;}
.y20{bottom:800.882667pt;}
.y13e{bottom:805.289333pt;}
.y10a{bottom:808.874667pt;}
.y54{bottom:809.273333pt;}
.y1f{bottom:811.370667pt;}
.y86{bottom:812.981333pt;}
.y1b9{bottom:820.630667pt;}
.y13d{bottom:822.025333pt;}
.y1f2{bottom:824.616000pt;}
.y109{bottom:825.612000pt;}
.y53{bottom:826.010667pt;}
.y1e{bottom:829.574667pt;}
.y85{bottom:829.718667pt;}
.y1b8{bottom:835.973333pt;}
.y13c{bottom:838.762667pt;}
.y1f1{bottom:839.958667pt;}
.y52{bottom:842.748000pt;}
.y108{bottom:846.334667pt;}
.y84{bottom:846.456000pt;}
.y1b7{bottom:851.316000pt;}
.y1f0{bottom:855.301333pt;}
.y13b{bottom:855.500000pt;}
.y51{bottom:859.485333pt;}
.y1b6{bottom:866.658667pt;}
.y1d{bottom:869.129333pt;}
.y1ef{bottom:870.644000pt;}
.y13a{bottom:872.237333pt;}
.y50{bottom:876.222667pt;}
.y1b5{bottom:882.001333pt;}
.y1c{bottom:885.866667pt;}
.y1ee{bottom:885.986667pt;}
.y83{bottom:886.866667pt;}
.y139{bottom:888.974667pt;}
.y4f{bottom:892.960000pt;}
.y1b4{bottom:897.344000pt;}
.y1ed{bottom:901.329333pt;}
.y82{bottom:901.478667pt;}
.y138{bottom:905.712000pt;}
.y4e{bottom:909.697333pt;}
.y1b3{bottom:912.686667pt;}
.y81{bottom:916.090667pt;}
.y1ec{bottom:916.670667pt;}
.y1b{bottom:921.350667pt;}
.y137{bottom:922.449333pt;}
.y4d{bottom:926.434667pt;}
.y1b2{bottom:928.029333pt;}
.y80{bottom:930.702667pt;}
.y1eb{bottom:932.013333pt;}
.y136{bottom:939.186667pt;}
.y4c{bottom:943.172000pt;}
.y1b1{bottom:943.370667pt;}
.y7f{bottom:945.314667pt;}
.y1a{bottom:946.457333pt;}
.y1ea{bottom:947.356000pt;}
.y135{bottom:955.924000pt;}
.y1b0{bottom:958.713333pt;}
.y4b{bottom:959.909333pt;}
.y1e9{bottom:962.698667pt;}
.y7e{bottom:966.594667pt;}
.y19{bottom:971.562667pt;}
.y134{bottom:972.661333pt;}
.y1af{bottom:974.056000pt;}
.y4a{bottom:976.646667pt;}
.y1e8{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.y7d{bottom:994.700000pt;}
.y17{bottom:1010.217333pt;}
.y48{bottom:1046.810667pt;}
.h9{height:23.209028pt;}
.h11{height:25.132319pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.ha{height:30.945242pt;}
.he{height:31.157778pt;}
.hf{height:34.430976pt;}
.hb{height:34.813542pt;}
.h10{height:35.052646pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h6{height:38.947124pt;}
.h4{height:45.272024pt;}
.h8{height:48.365611pt;}
.h5{height:61.782479pt;}
.h7{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.426667pt;}
.x1{left:47.621333pt;}
.x2{left:50.765941pt;}
.x5f{left:76.309333pt;}
.x52{left:219.865333pt;}
.x7{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5{left:239.924000pt;}
.x8{left:250.204000pt;}
.x4b{left:251.402667pt;}
.x4a{left:252.608000pt;}
.x4c{left:278.657333pt;}
.x24{left:286.253333pt;}
.x26{left:291.645333pt;}
.x25{left:293.494667pt;}
.x27{left:296.014667pt;}
.x29{left:298.501333pt;}
.x28{left:301.525333pt;}
.x2b{left:307.521333pt;}
.x47{left:314.390667pt;}
.x42{left:319.774667pt;}
.xb{left:320.832000pt;}
.xc{left:327.473333pt;}
.x16{left:329.096000pt;}
.x1c{left:330.412000pt;}
.x5d{left:331.724000pt;}
.x43{left:333.058667pt;}
.x17{left:335.737333pt;}
.x44{left:340.454667pt;}
.x53{left:341.968000pt;}
.x36{left:344.156000pt;}
.x30{left:348.244000pt;}
.x6{left:350.229333pt;}
.x45{left:353.738667pt;}
.x54{left:355.252000pt;}
.x37{left:357.440000pt;}
.x1d{left:359.974667pt;}
.xd{left:364.444000pt;}
.xe{left:371.085333pt;}
.x4f{left:373.990667pt;}
.x3a{left:379.192000pt;}
.x34{left:384.418667pt;}
.x3b{left:392.476000pt;}
.x35{left:397.701333pt;}
.x12{left:416.581333pt;}
.x13{left:423.222667pt;}
.x18{left:426.978667pt;}
.x57{left:437.733333pt;}
.x41{left:440.822667pt;}
.x59{left:442.321333pt;}
.x5e{left:448.260000pt;}
.x9{left:449.712000pt;}
.x2c{left:450.701333pt;}
.x2e{left:452.208000pt;}
.xa{left:456.354667pt;}
.x2d{left:457.342667pt;}
.x2f{left:458.850667pt;}
.x19{left:462.041333pt;}
.x3e{left:463.765333pt;}
.x46{left:465.760000pt;}
.x3f{left:477.049333pt;}
.x1e{left:484.262667pt;}
.x58{left:489.498667pt;}
.x5a{left:494.086667pt;}
.x22{left:498.868000pt;}
.x1f{left:501.578667pt;}
.x23{left:505.509333pt;}
.x10{left:532.028000pt;}
.x11{left:538.669333pt;}
.x3c{left:586.105333pt;}
.x3d{left:599.388000pt;}
.x55{left:601.104000pt;}
.x4d{left:608.161333pt;}
.x4e{left:621.444000pt;}
.x38{left:633.892000pt;}
.x5b{left:634.833333pt;}
.x2a{left:638.316000pt;}
.x56{left:639.494667pt;}
.xf{left:640.732000pt;}
.x14{left:645.616000pt;}
.x39{left:647.176000pt;}
.x15{left:652.258667pt;}
.x33{left:657.485333pt;}
.x40{left:659.064000pt;}
.x1a{left:667.609333pt;}
.x5c{left:673.200000pt;}
.x20{left:675.078667pt;}
.x48{left:695.362667pt;}
.x21{left:699.116000pt;}
.x31{left:702.932000pt;}
.x1b{left:706.881333pt;}
.x32{left:716.216000pt;}
.x50{left:726.178667pt;}
.x51{left:739.461333pt;}
.x49{left:746.762667pt;}
}




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