
    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_1996df4b100c803530187b28.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_097b3960b714af83ebdcb4bd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f24c4c3fd25dccc8e505b5c7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c5d84a43a2caa4b6210ddbf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_36517fb9a8a2d200c694736d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e0a0bed90f79bc3137370973.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2a3cb400a12a186d6f8d88eb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.703000;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_c0d0a8c21f2d2fe5ddc09744.woff')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_4624fd6f237f03568b7b0698.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_896cef9bcbc3e336b3dc3dd1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.702000;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_aec3d1071078a9394f184b2a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.867000;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_36fe08017f87eaf629655c1e.woff')format("woff");}.ffc{font-family:ffc;line-height:2.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cfb43973f63ead1d301f2841.woff')format("woff");}.ffd{font-family:ffd;line-height:0.847000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a1fa38446b5516443131f598.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d978347d9c9d8fe91390e40d.woff')format("woff");}.fff{font-family:fff;line-height:0.703000;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;}
.m4{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);}
.m13{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);}
.m1{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);}
.ma{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);}
.m22{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);}
.m1a{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);}
.m24{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);}
.m6{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);}
.mb{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);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m12{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);}
.m5{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);}
.m1f{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m20{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);}
.m25{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);}
.m27{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);}
.m14{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);}
.m19{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);}
.m1e{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);}
.m15{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);}
.m10{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);}
.m1d{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);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m1c{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);}
.m3{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);}
.m23{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);}
.m17{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);}
.m1b{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);}
.m21{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);}
.m8{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);}
.m2{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);}
.m18{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);}
.v4{vertical-align:-48.414000px;}
.v6{vertical-align:-14.946000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:15.444000px;}
.v7{vertical-align:40.440000px;}
.v2{vertical-align:48.420000px;}
.v5{vertical-align:50.814000px;}
.v3{vertical-align:56.790000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000843px;}
.ls36{letter-spacing:0.003507px;}
.ls4f{letter-spacing:0.004172px;}
.ls48{letter-spacing:0.004896px;}
.ls24{letter-spacing:0.006843px;}
.ls51{letter-spacing:0.013251px;}
.ls49{letter-spacing:0.015856px;}
.ls3c{letter-spacing:0.239102px;}
.ls39{letter-spacing:0.298878px;}
.ls4c{letter-spacing:2.092146px;}
.ls43{letter-spacing:2.151922px;}
.ls30{letter-spacing:2.630126px;}
.ls4e{letter-spacing:2.988157px;}
.ls1e{letter-spacing:2.988710px;}
.ls52{letter-spacing:2.994157px;}
.ls20{letter-spacing:2.994710px;}
.ls3d{letter-spacing:4.244068px;}
.ls18{letter-spacing:4.303843px;}
.ls8{letter-spacing:4.722272px;}
.ls23{letter-spacing:5.408908px;}
.ls2a{letter-spacing:6.635092px;}
.ls33{letter-spacing:6.694867px;}
.ls4d{letter-spacing:8.249033px;}
.ls2d{letter-spacing:8.308808px;}
.ls27{letter-spacing:9.630710px;}
.ls31{letter-spacing:9.922750px;}
.ls34{letter-spacing:9.957507px;}
.ls26{letter-spacing:9.982525px;}
.ls32{letter-spacing:10.938935px;}
.ls2f{letter-spacing:11.297588px;}
.ls29{letter-spacing:11.357364px;}
.lsa{letter-spacing:13.270183px;}
.ls35{letter-spacing:13.329959px;}
.ls53{letter-spacing:13.598910px;}
.ls50{letter-spacing:16.272710px;}
.ls7{letter-spacing:16.557841px;}
.ls3f{letter-spacing:16.604793px;}
.lsd{letter-spacing:16.617617px;}
.ls55{letter-spacing:16.626603px;}
.ls11{letter-spacing:16.677392px;}
.ls28{letter-spacing:17.215373px;}
.ls41{letter-spacing:17.872904px;}
.ls42{letter-spacing:17.932680px;}
.ls2e{letter-spacing:18.769538px;}
.ls3{letter-spacing:18.829314px;}
.ls1d{letter-spacing:19.187968px;}
.ls4a{letter-spacing:19.596157px;}
.ls4b{letter-spacing:19.596710px;}
.ls1f{letter-spacing:19.666172px;}
.ls9{letter-spacing:19.905275px;}
.ls54{letter-spacing:19.926538px;}
.lsb{letter-spacing:19.965050px;}
.ls17{letter-spacing:20.144377px;}
.ls4{letter-spacing:20.562806px;}
.ls16{letter-spacing:20.861684px;}
.ls6{letter-spacing:20.921460px;}
.ls3e{letter-spacing:21.265558px;}
.lsc{letter-spacing:21.280114px;}
.ls13{letter-spacing:21.399665px;}
.ls15{letter-spacing:21.459440px;}
.ls40{letter-spacing:22.176748px;}
.lse{letter-spacing:22.595177px;}
.ls5{letter-spacing:23.013606px;}
.ls1c{letter-spacing:23.432035px;}
.ls1a{letter-spacing:23.491811px;}
.ls2c{letter-spacing:24.209118px;}
.ls10{letter-spacing:24.388445px;}
.ls14{letter-spacing:25.703508px;}
.ls12{letter-spacing:26.121937px;}
.ls2{letter-spacing:26.540366px;}
.ls45{letter-spacing:26.600142px;}
.ls19{letter-spacing:28.214083px;}
.lsf{letter-spacing:29.110717px;}
.ls1{letter-spacing:29.887800px;}
.ls1b{letter-spacing:30.007351px;}
.ls2b{letter-spacing:33.175458px;}
.ls37{letter-spacing:33.210843px;}
.ls22{letter-spacing:33.235234px;}
.ls3b{letter-spacing:36.202654px;}
.ls38{letter-spacing:37.897730px;}
.ls21{letter-spacing:38.612908px;}
.ls44{letter-spacing:49.793075px;}
.ls3a{letter-spacing:129.533725px;}
.ls47{letter-spacing:328.706024px;}
.ls46{letter-spacing:590.403601px;}
.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;}
}
.wsc3{word-spacing:-59.775600px;}
.wsa9{word-spacing:-49.852850px;}
.wsc0{word-spacing:-47.324343px;}
.wsc2{word-spacing:-43.217759px;}
.wsaf{word-spacing:-43.157983px;}
.ws37{word-spacing:-30.551309px;}
.ws42{word-spacing:-29.887800px;}
.wsb3{word-spacing:-26.540366px;}
.ws88{word-spacing:-18.769538px;}
.ws0{word-spacing:-17.932725px;}
.ws4b{word-spacing:-17.753353px;}
.wsdc{word-spacing:-17.095822px;}
.ws8c{word-spacing:-16.258963px;}
.wsbb{word-spacing:-16.139412px;}
.ws94{word-spacing:-16.019861px;}
.ws8f{word-spacing:-15.960085px;}
.ws3c{word-spacing:-15.720983px;}
.wsd5{word-spacing:-15.601432px;}
.ws4c{word-spacing:-15.422105px;}
.ws98{word-spacing:-15.302554px;}
.ws62{word-spacing:-15.242778px;}
.wsd6{word-spacing:-15.123227px;}
.wsdd{word-spacing:-14.884124px;}
.ws9b{word-spacing:-14.585246px;}
.ws95{word-spacing:-14.465695px;}
.ws3e{word-spacing:-14.405920px;}
.wsdb{word-spacing:-14.346144px;}
.ws87{word-spacing:-14.286368px;}
.ws8b{word-spacing:-14.226593px;}
.ws83{word-spacing:-14.166817px;}
.ws50{word-spacing:-14.047266px;}
.ws93{word-spacing:-13.987490px;}
.ws8a{word-spacing:-13.927715px;}
.ws2d{word-spacing:-13.867939px;}
.ws97{word-spacing:-13.808164px;}
.ws89{word-spacing:-13.748388px;}
.ws67{word-spacing:-13.688612px;}
.ws3d{word-spacing:-13.628837px;}
.wsba{word-spacing:-13.509286px;}
.ws85{word-spacing:-13.449510px;}
.ws77{word-spacing:-13.150632px;}
.ws14{word-spacing:-13.090856px;}
.ws24{word-spacing:-13.031081px;}
.ws51{word-spacing:-12.971305px;}
.ws32{word-spacing:-12.911530px;}
.wsed{word-spacing:-12.851754px;}
.wsb8{word-spacing:-12.732203px;}
.wsaa{word-spacing:-12.672427px;}
.wsf8{word-spacing:-12.558854px;}
.ws7b{word-spacing:-12.552876px;}
.ws6a{word-spacing:-12.493100px;}
.ws52{word-spacing:-12.433325px;}
.wsa0{word-spacing:-12.394516px;}
.wsfd{word-spacing:-12.373549px;}
.ws1{word-spacing:-12.328762px;}
.ws23{word-spacing:-12.253998px;}
.ws39{word-spacing:-12.197256px;}
.wsd3{word-spacing:-12.134447px;}
.ws46{word-spacing:-12.065749px;}
.ws68{word-spacing:-12.014896px;}
.wsbc{word-spacing:-11.999995px;}
.ws45{word-spacing:-11.955120px;}
.ws3b{word-spacing:-11.895344px;}
.ws33{word-spacing:-11.835569px;}
.ws92{word-spacing:-11.716018px;}
.ws6e{word-spacing:-11.656242px;}
.ws59{word-spacing:-11.596466px;}
.ws63{word-spacing:-11.536691px;}
.ws2e{word-spacing:-11.482893px;}
.ws1d{word-spacing:-11.476915px;}
.ws7c{word-spacing:-11.423117px;}
.ws66{word-spacing:-11.417140px;}
.wsfe{word-spacing:-11.303566px;}
.ws5d{word-spacing:-11.297588px;}
.ws40{word-spacing:-11.237813px;}
.ws2{word-spacing:-11.178037px;}
.ws43{word-spacing:-11.118262px;}
.ws99{word-spacing:-11.058486px;}
.ws3a{word-spacing:-10.998710px;}
.wse9{word-spacing:-10.938935px;}
.ws65{word-spacing:-10.879159px;}
.ws58{word-spacing:-10.819384px;}
.ws61{word-spacing:-10.759608px;}
.ws5f{word-spacing:-10.699832px;}
.ws80{word-spacing:-10.640057px;}
.ws6d{word-spacing:-10.580281px;}
.ws48{word-spacing:-10.520506px;}
.wsc{word-spacing:-10.460730px;}
.wsf{word-spacing:-10.400954px;}
.wsb{word-spacing:-10.341179px;}
.ws22{word-spacing:-10.281403px;}
.ws8{word-spacing:-10.221628px;}
.ws6{word-spacing:-10.161852px;}
.wse3{word-spacing:-10.108054px;}
.ws4d{word-spacing:-10.102076px;}
.ws1b{word-spacing:-10.042301px;}
.ws9{word-spacing:-9.982525px;}
.ws20{word-spacing:-9.922750px;}
.ws2b{word-spacing:-9.862974px;}
.wse{word-spacing:-9.803198px;}
.wsa{word-spacing:-9.743423px;}
.ws1e{word-spacing:-9.683647px;}
.wse4{word-spacing:-9.629849px;}
.ws15{word-spacing:-9.623872px;}
.ws11{word-spacing:-9.564096px;}
.ws53{word-spacing:-9.510298px;}
.ws13{word-spacing:-9.504320px;}
.ws55{word-spacing:-9.444545px;}
.wse8{word-spacing:-9.390747px;}
.ws28{word-spacing:-9.384769px;}
.wse5{word-spacing:-9.330971px;}
.ws91{word-spacing:-9.271196px;}
.ws81{word-spacing:-9.265218px;}
.ws8e{word-spacing:-9.211420px;}
.ws49{word-spacing:-9.205442px;}
.ws54{word-spacing:-9.151644px;}
.ws7{word-spacing:-9.145667px;}
.wsa2{word-spacing:-9.085891px;}
.wse6{word-spacing:-9.032093px;}
.ws4a{word-spacing:-9.026116px;}
.ws57{word-spacing:-8.966340px;}
.ws6f{word-spacing:-8.912542px;}
.wsd4{word-spacing:-8.906564px;}
.wsf5{word-spacing:-8.852766px;}
.ws38{word-spacing:-8.846789px;}
.wscd{word-spacing:-8.787013px;}
.wse7{word-spacing:-8.733215px;}
.ws18{word-spacing:-8.727238px;}
.wsff{word-spacing:-8.613664px;}
.wsd9{word-spacing:-8.607686px;}
.wsd{word-spacing:-8.547911px;}
.ws76{word-spacing:-8.488135px;}
.ws2f{word-spacing:-8.428360px;}
.ws47{word-spacing:-8.368584px;}
.ws70{word-spacing:-8.255010px;}
.ws64{word-spacing:-8.249033px;}
.ws101{word-spacing:-8.195235px;}
.ws7e{word-spacing:-8.189257px;}
.ws1a{word-spacing:-8.129482px;}
.ws5{word-spacing:-8.069706px;}
.ws72{word-spacing:-8.009930px;}
.ws29{word-spacing:-7.950155px;}
.ws69{word-spacing:-7.890379px;}
.wsf9{word-spacing:-7.836581px;}
.ws74{word-spacing:-7.830604px;}
.wsb6{word-spacing:-7.770828px;}
.ws1f{word-spacing:-7.711052px;}
.ws56{word-spacing:-7.651277px;}
.ws5a{word-spacing:-7.591501px;}
.ws7f{word-spacing:-7.537703px;}
.ws5e{word-spacing:-7.531726px;}
.ws8d{word-spacing:-7.477928px;}
.ws26{word-spacing:-7.471950px;}
.wsea{word-spacing:-7.358376px;}
.ws21{word-spacing:-7.352399px;}
.ws9a{word-spacing:-7.298601px;}
.ws35{word-spacing:-7.292623px;}
.wsf6{word-spacing:-7.238825px;}
.ws41{word-spacing:-7.232848px;}
.ws36{word-spacing:-7.173072px;}
.ws7a{word-spacing:-7.059498px;}
.ws84{word-spacing:-7.053521px;}
.ws34{word-spacing:-6.933970px;}
.ws9f{word-spacing:-6.754643px;}
.ws10{word-spacing:-6.635092px;}
.ws100{word-spacing:-6.581294px;}
.ws25{word-spacing:-6.575316px;}
.wsee{word-spacing:-6.455765px;}
.ws9e{word-spacing:-6.395989px;}
.ws7d{word-spacing:-6.336214px;}
.ws86{word-spacing:-6.276438px;}
.ws9c{word-spacing:-6.216662px;}
.ws44{word-spacing:-6.037336px;}
.ws3f{word-spacing:-5.977560px;}
.wsce{word-spacing:-5.917784px;}
.ws5b{word-spacing:-5.798233px;}
.ws6b{word-spacing:-5.738458px;}
.wsbe{word-spacing:-5.678682px;}
.ws12{word-spacing:-5.559131px;}
.wsd8{word-spacing:-5.379804px;}
.ws4f{word-spacing:-5.260253px;}
.wsd7{word-spacing:-5.140702px;}
.ws4{word-spacing:-5.080926px;}
.ws16{word-spacing:-5.021150px;}
.wsb9{word-spacing:-4.961375px;}
.ws78{word-spacing:-4.907577px;}
.wsdf{word-spacing:-4.901599px;}
.ws60{word-spacing:-4.662497px;}
.wsda{word-spacing:-4.483170px;}
.ws19{word-spacing:-4.423394px;}
.ws2c{word-spacing:-4.303843px;}
.ws71{word-spacing:-4.184292px;}
.wsfb{word-spacing:-4.130494px;}
.ws5c{word-spacing:-4.124516px;}
.wseb{word-spacing:-4.109587px;}
.ws31{word-spacing:-3.945190px;}
.wsec{word-spacing:-3.885414px;}
.ws82{word-spacing:-3.765863px;}
.ws75{word-spacing:-3.652289px;}
.wsb4{word-spacing:-3.646312px;}
.ws6c{word-spacing:-3.586536px;}
.ws73{word-spacing:-3.526760px;}
.ws27{word-spacing:-3.407209px;}
.wsde{word-spacing:-3.347434px;}
.wsf3{word-spacing:-2.809453px;}
.wsf4{word-spacing:-2.695880px;}
.wsfc{word-spacing:-2.510575px;}
.wsef{word-spacing:-2.211697px;}
.ws30{word-spacing:-1.972595px;}
.ws17{word-spacing:-1.912819px;}
.wse0{word-spacing:-1.733492px;}
.ws96{word-spacing:-1.673717px;}
.wse1{word-spacing:-1.494390px;}
.wse2{word-spacing:-1.440592px;}
.wsb7{word-spacing:-1.315063px;}
.wsa1{word-spacing:-0.896634px;}
.wsf1{word-spacing:-0.424407px;}
.wsf0{word-spacing:-0.418429px;}
.wsa4{word-spacing:-0.059776px;}
.ws1c{word-spacing:0.000000px;}
.ws4e{word-spacing:1.912819px;}
.wsf7{word-spacing:3.825638px;}
.ws3{word-spacing:7.531726px;}
.wsb2{word-spacing:9.890304px;}
.wsa5{word-spacing:9.922750px;}
.wsfa{word-spacing:10.341179px;}
.wsb0{word-spacing:13.210408px;}
.wsca{word-spacing:13.557067px;}
.wsd2{word-spacing:16.199188px;}
.wsd1{word-spacing:16.258963px;}
.wsa3{word-spacing:16.318739px;}
.wsa8{word-spacing:16.498066px;}
.wsab{word-spacing:16.557841px;}
.ws90{word-spacing:16.617617px;}
.wsc4{word-spacing:16.856719px;}
.wscf{word-spacing:19.546621px;}
.wsc5{word-spacing:19.549642px;}
.wscb{word-spacing:19.562952px;}
.wsd0{word-spacing:19.606397px;}
.wsad{word-spacing:19.725948px;}
.wsa6{word-spacing:19.845499px;}
.wsa7{word-spacing:19.965050px;}
.wscc{word-spacing:20.240903px;}
.wsc9{word-spacing:20.248380px;}
.ws2a{word-spacing:20.263928px;}
.wsbd{word-spacing:23.910240px;}
.wsbf{word-spacing:24.029791px;}
.wsf2{word-spacing:26.002386px;}
.ws9d{word-spacing:28.668482px;}
.wsb1{word-spacing:33.115682px;}
.wsb5{word-spacing:33.127822px;}
.wsae{word-spacing:33.142422px;}
.wsc1{word-spacing:33.175458px;}
.wsc8{word-spacing:36.881545px;}
.wsac{word-spacing:69.698350px;}
.wsc6{word-spacing:90.132824px;}
.wsc7{word-spacing:129.414174px;}
.ws79{word-spacing:407.550041px;}
._34{margin-left:-29.886303px;}
._30{margin-left:-10.042301px;}
._0{margin-left:-8.990273px;}
._3e{margin-left:-7.950155px;}
._5{margin-left:-6.778546px;}
._8{margin-left:-5.045053px;}
._d{margin-left:-4.004965px;}
._1{margin-left:-2.964877px;}
._4{margin-left:-1.853044px;}
._6{width:1.853044px;}
._2{width:2.964877px;}
._18{width:5.475452px;}
._31{width:6.632312px;}
._3b{width:8.354132px;}
._1a{width:9.862974px;}
._33{width:13.270183px;}
._29{width:15.242778px;}
._13{width:16.737168px;}
._16{width:17.992456px;}
._15{width:19.128192px;}
._9{width:20.933430px;}
._17{width:22.045264px;}
._28{width:23.073382px;}
._3{width:24.244991px;}
._14{width:25.583957px;}
._7{width:26.600142px;}
._b{width:27.795654px;}
._10{width:28.847712px;}
._e{width:30.067127px;}
._19{width:31.166990px;}
._c{width:32.876700px;}
._f{width:34.669848px;}
._12{width:35.925136px;}
._3c{width:36.941321px;}
._a{width:37.957506px;}
._1f{width:39.690998px;}
._4a{width:41.316910px;}
._11{width:42.679778px;}
._47{width:45.429347px;}
._1e{width:46.744519px;}
._48{width:48.980119px;}
._49{width:50.833163px;}
._3a{width:55.627169px;}
._35{width:70.714535px;}
._1c{width:71.730720px;}
._32{width:76.393217px;}
._3f{width:77.935412px;}
._22{width:109.449124px;}
._40{width:121.404244px;}
._20{width:128.696867px;}
._2f{width:130.158426px;}
._21{width:131.506320px;}
._3d{width:133.323491px;}
._1d{width:138.619616px;}
._1b{width:167.252129px;}
._23{width:169.284499px;}
._41{width:186.918301px;}
._44{width:212.024053px;}
._2a{width:246.454799px;}
._24{width:248.965374px;}
._25{width:256.616651px;}
._26{width:286.504451px;}
._42{width:294.514381px;}
._27{width:315.854270px;}
._2d{width:318.125743px;}
._2c{width:360.291444px;}
._37{width:367.141735px;}
._43{width:382.264962px;}
._38{width:398.942354px;}
._45{width:454.772765px;}
._36{width:458.717954px;}
._2b{width:490.279471px;}
._46{width:573.068677px;}
._39{width:657.950029px;}
._2e{width:1027.805569px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y2a{bottom:45.235500px;}
.y155{bottom:108.000000px;}
.ya3{bottom:108.576000px;}
.y106{bottom:110.601000px;}
.y29{bottom:116.524500px;}
.y24a{bottom:116.736000px;}
.y222{bottom:119.553000px;}
.y274{bottom:121.668000px;}
.y154{bottom:125.932500px;}
.ya2{bottom:126.508500px;}
.y1b9{bottom:127.935000px;}
.y105{bottom:128.535000px;}
.y1fd{bottom:128.590500px;}
.y28{bottom:134.458500px;}
.y249{bottom:134.668500px;}
.y12d{bottom:136.180500px;}
.y221{bottom:137.485500px;}
.y7d{bottom:138.463500px;}
.ycc{bottom:138.531000px;}
.y273{bottom:139.600500px;}
.y153{bottom:143.865000px;}
.ya1{bottom:144.441000px;}
.y19b{bottom:144.817500px;}
.y1b8{bottom:145.867500px;}
.y1fc{bottom:146.523000px;}
.y58{bottom:146.716500px;}
.y27{bottom:152.391000px;}
.y248{bottom:152.601000px;}
.y12c{bottom:154.114500px;}
.y220{bottom:155.418000px;}
.y7c{bottom:156.396000px;}
.ycb{bottom:156.463500px;}
.y272{bottom:157.533000px;}
.y1d7{bottom:157.689000px;}
.yef{bottom:158.671500px;}
.y152{bottom:161.797500px;}
.y19a{bottom:162.003000px;}
.ya0{bottom:162.373500px;}
.y1b7{bottom:163.800000px;}
.y1fb{bottom:164.455500px;}
.y57{bottom:164.649000px;}
.y26{bottom:170.323500px;}
.y247{bottom:170.533500px;}
.y12b{bottom:172.047000px;}
.y21f{bottom:173.352000px;}
.y7b{bottom:174.328500px;}
.yca{bottom:174.396000px;}
.y1d6{bottom:176.244000px;}
.yee{bottom:176.604000px;}
.y151{bottom:179.731500px;}
.y9f{bottom:180.306000px;}
.y1b6{bottom:181.734000px;}
.y1fa{bottom:182.389500px;}
.y104{bottom:182.514000px;}
.y56{bottom:182.581500px;}
.y271{bottom:184.432500px;}
.y246{bottom:188.467500px;}
.y12a{bottom:189.979500px;}
.y21e{bottom:191.284500px;}
.y7a{bottom:192.261000px;}
.yc9{bottom:192.328500px;}
.yed{bottom:194.536500px;}
.y150{bottom:197.664000px;}
.y199{bottom:197.868000px;}
.y25{bottom:200.211000px;}
.y1f9{bottom:200.322000px;}
.y2aa{bottom:200.385000px;}
.y103{bottom:200.446500px;}
.y55{bottom:200.514000px;}
.y270{bottom:202.365000px;}
.y245{bottom:206.400000px;}
.y129{bottom:207.912000px;}
.y79{bottom:210.193500px;}
.yc8{bottom:210.261000px;}
.y1d5{bottom:212.109000px;}
.yec{bottom:212.469000px;}
.y198{bottom:215.802000px;}
.y24{bottom:218.143500px;}
.y2a9{bottom:218.317500px;}
.y54{bottom:218.446500px;}
.y26f{bottom:220.297500px;}
.y1b5{bottom:221.497500px;}
.y244{bottom:224.332500px;}
.y128{bottom:225.844500px;}
.y102{bottom:225.880500px;}
.y1f8{bottom:227.221500px;}
.y14f{bottom:227.515500px;}
.y78{bottom:228.127500px;}
.yc7{bottom:228.195000px;}
.y289{bottom:228.840000px;}
.y1d4{bottom:230.043000px;}
.y21d{bottom:231.048000px;}
.y2a8{bottom:236.250000px;}
.yeb{bottom:239.368500px;}
.y243{bottom:242.265000px;}
.y127{bottom:243.777000px;}
.y23{bottom:245.043000px;}
.y1f7{bottom:245.154000px;}
.y53{bottom:245.346000px;}
.y77{bottom:246.060000px;}
.yc6{bottom:246.127500px;}
.y288{bottom:246.772500px;}
.y26e{bottom:247.197000px;}
.y197{bottom:248.677500px;}
.y178{bottom:251.323500px;}
.y2a7{bottom:254.184000px;}
.y14e{bottom:254.413500px;}
.yea{bottom:257.301000px;}
.y126{bottom:261.711000px;}
.y22{bottom:262.975500px;}
.y1f6{bottom:263.086500px;}
.y52{bottom:263.278500px;}
.y9e{bottom:263.992500px;}
.yc5{bottom:264.060000px;}
.y101{bottom:264.649500px;}
.y287{bottom:264.706500px;}
.y26d{bottom:265.129500px;}
.y1d3{bottom:266.655000px;}
.y241{bottom:267.699000px;}
.y1b4{bottom:269.188500px;}
.y177{bottom:269.256000px;}
.y2a6{bottom:272.116500px;}
.y14d{bottom:272.347500px;}
.y1d2{bottom:275.023500px;}
.ye9{bottom:275.233500px;}
.y76{bottom:275.947500px;}
.y21c{bottom:278.740500px;}
.y125{bottom:279.643500px;}
.y21{bottom:280.908000px;}
.y51{bottom:281.211000px;}
.y196{bottom:281.554500px;}
.y9d{bottom:281.925000px;}
.y286{bottom:282.639000px;}
.y242{bottom:285.631500px;}
.y1b3{bottom:287.122500px;}
.y176{bottom:287.190000px;}
.y2a5{bottom:290.049000px;}
.y14c{bottom:290.280000px;}
.y100{bottom:291.547500px;}
.ye8{bottom:293.167500px;}
.y75{bottom:293.880000px;}
.yc4{bottom:293.947500px;}
.y1d1{bottom:295.795500px;}
.y21b{bottom:296.673000px;}
.y20{bottom:298.842000px;}
.y50{bottom:299.145000px;}
.y195{bottom:299.487000px;}
.y285{bottom:300.571500px;}
.y26c{bottom:304.894500px;}
.y1f5{bottom:304.929000px;}
.y1b2{bottom:305.055000px;}
.y175{bottom:305.122500px;}
.y2a4{bottom:307.981500px;}
.y14b{bottom:308.212500px;}
.y1f4{bottom:308.305500px;}
.y9c{bottom:308.824500px;}
.yff{bottom:309.480000px;}
.y124{bottom:309.531000px;}
.y74{bottom:311.812500px;}
.yc3{bottom:311.880000px;}
.y21a{bottom:314.605500px;}
.y1f{bottom:316.774500px;}
.y194{bottom:317.421000px;}
.ye7{bottom:320.065500px;}
.y1cf{bottom:322.695000px;}
.y1b1{bottom:322.987500px;}
.y174{bottom:323.055000px;}
.y2a3{bottom:325.914000px;}
.y4f{bottom:326.043000px;}
.y14a{bottom:326.145000px;}
.yfe{bottom:327.414000px;}
.y123{bottom:327.463500px;}
.y284{bottom:327.471000px;}
.yc2{bottom:329.812500px;}
.y219{bottom:332.538000px;}
.y1e{bottom:334.707000px;}
.y1d0{bottom:334.800000px;}
.y9b{bottom:335.724000px;}
.ye6{bottom:337.998000px;}
.y1ce{bottom:340.627500px;}
.y1f3{bottom:340.809000px;}
.y173{bottom:340.987500px;}
.y2a2{bottom:343.846500px;}
.y4e{bottom:343.977000px;}
.yfd{bottom:345.346500px;}
.y122{bottom:345.396000px;}
.y283{bottom:345.403500px;}
.y240{bottom:349.954500px;}
.y193{bottom:350.296500px;}
.y218{bottom:350.470500px;}
.y73{bottom:351.577500px;}
.y26b{bottom:352.585500px;}
.y1d{bottom:352.639500px;}
.y149{bottom:353.044500px;}
.ye5{bottom:355.932000px;}
.yc1{bottom:356.712000px;}
.y1f2{bottom:358.741500px;}
.y172{bottom:358.920000px;}
.y2a1{bottom:361.780500px;}
.y4d{bottom:361.909500px;}
.y9a{bottom:362.622000px;}
.y1b0{bottom:362.752500px;}
.y121{bottom:363.330000px;}
.y282{bottom:363.336000px;}
.y23f{bottom:367.887000px;}
.y217{bottom:368.403000px;}
.y26a{bottom:370.518000px;}
.y1c{bottom:370.572000px;}
.yfc{bottom:372.246000px;}
.ye4{bottom:373.864500px;}
.y2a0{bottom:379.713000px;}
.y4c{bottom:379.842000px;}
.y148{bottom:379.944000px;}
.y1cd{bottom:380.392500px;}
.y99{bottom:380.556000px;}
.y120{bottom:381.262500px;}
.y281{bottom:381.268500px;}
.y192{bottom:383.173500px;}
.y23e{bottom:385.819500px;}
.y216{bottom:386.337000px;}
.yc0{bottom:386.599500px;}
.y1b{bottom:388.504500px;}
.yfb{bottom:390.178500px;}
.ye3{bottom:391.797000px;}
.y29f{bottom:397.645500px;}
.y147{bottom:397.876500px;}
.y98{bottom:398.488500px;}
.y171{bottom:398.685000px;}
.y11f{bottom:399.195000px;}
.y280{bottom:399.201000px;}
.y72{bottom:399.268500px;}
.y1f1{bottom:400.734000px;}
.y191{bottom:401.106000px;}
.y23d{bottom:403.752000px;}
.ybf{bottom:404.533500px;}
.y1a{bottom:406.438500px;}
.y4b{bottom:406.741500px;}
.yfa{bottom:408.111000px;}
.y269{bottom:410.283000px;}
.y1af{bottom:410.443500px;}
.y29e{bottom:415.578000px;}
.y146{bottom:415.809000px;}
.y97{bottom:416.421000px;}
.y11e{bottom:417.127500px;}
.y27f{bottom:417.135000px;}
.y71{bottom:417.201000px;}
.ye2{bottom:418.696500px;}
.y23c{bottom:421.684500px;}
.ybe{bottom:422.466000px;}
.y4a{bottom:424.674000px;}
.y215{bottom:426.100500px;}
.y1f0{bottom:426.582000px;}
.y1cc{bottom:427.501500px;}
.y1ae{bottom:428.376000px;}
.y29d{bottom:433.510500px;}
.y145{bottom:433.741500px;}
.y96{bottom:434.353500px;}
.y11d{bottom:435.060000px;}
.y70{bottom:435.135000px;}
.ye1{bottom:436.629000px;}
.y23b{bottom:439.617000px;}
.ybd{bottom:440.398500px;}
.y190{bottom:440.871000px;}
.y49{bottom:442.606500px;}
.y1cb{bottom:445.434000px;}
.y19{bottom:446.202000px;}
.y1ad{bottom:446.308500px;}
.y170{bottom:446.376000px;}
.y1ef{bottom:448.998000px;}
.y29c{bottom:451.443000px;}
.y95{bottom:452.286000px;}
.y11c{bottom:452.992500px;}
.y6f{bottom:453.067500px;}
.ye0{bottom:454.561500px;}
.y27e{bottom:456.898500px;}
.y23a{bottom:457.551000px;}
.ybc{bottom:458.331000px;}
.y48{bottom:460.539000px;}
.yf9{bottom:462.091500px;}
.y1ca{bottom:463.366500px;}
.y144{bottom:463.593000px;}
.y1ac{bottom:464.241000px;}
.y16f{bottom:464.308500px;}
.y29b{bottom:469.377000px;}
.y94{bottom:470.218500px;}
.y11b{bottom:470.926500px;}
.y6e{bottom:471.000000px;}
.y1ee{bottom:471.414000px;}
.ydf{bottom:472.494000px;}
.y214{bottom:473.791500px;}
.ybb{bottom:476.263500px;}
.y47{bottom:478.471500px;}
.yf8{bottom:480.024000px;}
.y1c9{bottom:481.300500px;}
.y143{bottom:481.525500px;}
.y1ab{bottom:482.173500px;}
.y16e{bottom:482.241000px;}
.y239{bottom:484.449000px;}
.y29a{bottom:487.309500px;}
.y18{bottom:487.461000px;}
.y18f{bottom:488.562000px;}
.y11a{bottom:488.859000px;}
.y213{bottom:491.725500px;}
.y1ed{bottom:494.055000px;}
.yba{bottom:494.197500px;}
.y46{bottom:496.404000px;}
.y1c8{bottom:499.233000px;}
.yde{bottom:499.393500px;}
.y142{bottom:499.458000px;}
.y268{bottom:499.818000px;}
.y1aa{bottom:500.107500px;}
.y16d{bottom:500.175000px;}
.y6d{bottom:500.887500px;}
.y238{bottom:502.383000px;}
.y27d{bottom:504.589500px;}
.y299{bottom:505.242000px;}
.yf7{bottom:505.458000px;}
.y18e{bottom:506.494500px;}
.y119{bottom:506.791500px;}
.y212{bottom:509.658000px;}
.y93{bottom:509.983500px;}
.yb9{bottom:512.130000px;}
.y1ec{bottom:512.610000px;}
.y1eb{bottom:516.471000px;}
.ydd{bottom:517.326000px;}
.y141{bottom:517.390500px;}
.y267{bottom:517.750500px;}
.y1a9{bottom:518.040000px;}
.y16c{bottom:518.107500px;}
.y6c{bottom:518.820000px;}
.y237{bottom:520.315500px;}
.y27c{bottom:522.523500px;}
.y298{bottom:523.174500px;}
.y18d{bottom:524.428500px;}
.y45{bottom:526.293000px;}
.y211{bottom:527.590500px;}
.yb8{bottom:530.062500px;}
.ydc{bottom:535.258500px;}
.y266{bottom:535.683000px;}
.y118{bottom:536.679000px;}
.y6b{bottom:536.754000px;}
.y236{bottom:538.248000px;}
.y1c7{bottom:538.996500px;}
.y27b{bottom:540.456000px;}
.y297{bottom:541.107000px;}
.y44{bottom:544.225500px;}
.y16b{bottom:545.005500px;}
.y210{bottom:545.523000px;}
.y140{bottom:547.242000px;}
.yb7{bottom:547.995000px;}
.y1ea{bottom:548.625000px;}
.ydb{bottom:553.191000px;}
.y265{bottom:553.615500px;}
.y6a{bottom:554.686500px;}
.y235{bottom:556.180500px;}
.y92{bottom:557.674500px;}
.y1a8{bottom:557.803500px;}
.y27a{bottom:558.388500px;}
.y1c6{bottom:558.424500px;}
.y296{bottom:559.039500px;}
.yf6{bottom:562.158000px;}
.y16a{bottom:562.939500px;}
.y20f{bottom:563.455500px;}
.y117{bottom:563.578500px;}
.y18c{bottom:564.192000px;}
.y13f{bottom:565.176000px;}
.yb6{bottom:565.927500px;}
.y43{bottom:571.125000px;}
.y264{bottom:571.548000px;}
.y69{bottom:572.619000px;}
.y234{bottom:574.113000px;}
.y1e9{bottom:574.474500px;}
.y91{bottom:575.607000px;}
.y295{bottom:576.973500px;}
.y17{bottom:576.996000px;}
.yda{bottom:580.090500px;}
.y169{bottom:580.872000px;}
.y20e{bottom:581.388000px;}
.y116{bottom:581.511000px;}
.y13e{bottom:583.108500px;}
.y18b{bottom:583.620000px;}
.yb5{bottom:583.860000px;}
.y41{bottom:589.057500px;}
.y263{bottom:589.480500px;}
.y68{bottom:590.551500px;}
.y233{bottom:592.045500px;}
.y90{bottom:593.541000px;}
.y42{bottom:594.480000px;}
.y294{bottom:594.906000px;}
.y16{bottom:594.928500px;}
.y1e8{bottom:596.890500px;}
.yd9{bottom:598.023000px;}
.y279{bottom:598.153500px;}
.y168{bottom:598.804500px;}
.y115{bottom:599.443500px;}
.yb4{bottom:601.794000px;}
.y1a7{bottom:605.496000px;}
.y1c5{bottom:605.533500px;}
.y40{bottom:606.990000px;}
.y262{bottom:607.414500px;}
.y67{bottom:608.484000px;}
.y13d{bottom:610.006500px;}
.y293{bottom:612.838500px;}
.y15{bottom:612.861000px;}
.yd8{bottom:615.957000px;}
.y167{bottom:616.737000px;}
.y232{bottom:618.945000px;}
.y1e7{bottom:619.306500px;}
.yb3{bottom:619.726500px;}
.y20d{bottom:621.153000px;}
.y8f{bottom:623.428500px;}
.y1c4{bottom:623.466000px;}
.y3f{bottom:624.922500px;}
.y114{bottom:626.343000px;}
.y66{bottom:626.416500px;}
.y292{bottom:630.771000px;}
.y14{bottom:630.793500px;}
.yd7{bottom:633.889500px;}
.y1a6{bottom:634.636500px;}
.y166{bottom:634.669500px;}
.y231{bottom:636.877500px;}
.y13c{bottom:636.906000px;}
.yb2{bottom:637.659000px;}
.y8e{bottom:641.361000px;}
.y1c3{bottom:641.398500px;}
.y1e6{bottom:641.946000px;}
.y3e{bottom:642.855000px;}
.y113{bottom:644.275500px;}
.y65{bottom:644.350500px;}
.y278{bottom:645.844500px;}
.y291{bottom:648.703500px;}
.y13{bottom:648.726000px;}
.yf5{bottom:651.822000px;}
.y165{bottom:652.602000px;}
.y230{bottom:654.810000px;}
.y13b{bottom:654.838500px;}
.yb1{bottom:655.591500px;}
.y8d{bottom:659.293500px;}
.y1c2{bottom:659.331000px;}
.y1e5{bottom:660.501000px;}
.y3d{bottom:660.789000px;}
.y261{bottom:661.393500px;}
.y112{bottom:662.208000px;}
.y64{bottom:662.283000px;}
.y277{bottom:663.777000px;}
.y1e4{bottom:664.362000px;}
.y290{bottom:666.636000px;}
.y12{bottom:666.660000px;}
.y20c{bottom:668.844000px;}
.yf4{bottom:669.754500px;}
.y22f{bottom:672.744000px;}
.yb0{bottom:673.524000px;}
.y8c{bottom:677.226000px;}
.y1c1{bottom:677.265000px;}
.y3c{bottom:678.721500px;}
.y260{bottom:679.326000px;}
.y111{bottom:680.142000px;}
.y63{bottom:680.215500px;}
.y18a{bottom:682.302000px;}
.y164{bottom:682.491000px;}
.y28f{bottom:684.570000px;}
.y1a5{bottom:684.699000px;}
.y20b{bottom:686.778000px;}
.yf3{bottom:687.687000px;}
.y22e{bottom:690.676500px;}
.yaf{bottom:691.456500px;}
.y11{bottom:693.558000px;}
.y13a{bottom:694.603500px;}
.y8b{bottom:695.160000px;}
.y1c0{bottom:695.197500px;}
.y1e3{bottom:696.367500px;}
.yd6{bottom:696.654000px;}
.y25f{bottom:697.258500px;}
.y110{bottom:698.074500px;}
.y189{bottom:700.234500px;}
.y163{bottom:700.423500px;}
.y28e{bottom:702.502500px;}
.y1a4{bottom:702.631500px;}
.y20a{bottom:704.710500px;}
.y276{bottom:708.609000px;}
.yae{bottom:709.390500px;}
.y62{bottom:710.103000px;}
.y10{bottom:711.492000px;}
.y8a{bottom:713.092500px;}
.y1bf{bottom:713.130000px;}
.yd5{bottom:714.586500px;}
.y25e{bottom:715.192500px;}
.y10f{bottom:716.007000px;}
.y22d{bottom:717.576000px;}
.y188{bottom:718.167000px;}
.y162{bottom:718.356000px;}
.y3b{bottom:718.485000px;}
.y28d{bottom:720.435000px;}
.yf2{bottom:727.452000px;}
.yf{bottom:729.424500px;}
.y89{bottom:731.025000px;}
.y1be{bottom:731.062500px;}
.yd4{bottom:732.519000px;}
.y1e2{bottom:732.979500px;}
.y25d{bottom:733.125000px;}
.y10e{bottom:733.939500px;}
.y22c{bottom:735.508500px;}
.y187{bottom:736.099500px;}
.y161{bottom:736.288500px;}
.y28c{bottom:738.367500px;}
.yad{bottom:739.278000px;}
.y139{bottom:742.266000px;}
.y1e1{bottom:743.230500px;}
.y209{bottom:744.474000px;}
.ye{bottom:747.357000px;}
.y1a3{bottom:747.612000px;}
.y88{bottom:748.957500px;}
.y1bd{bottom:748.995000px;}
.y61{bottom:749.868000px;}
.y25c{bottom:751.057500px;}
.y10d{bottom:751.872000px;}
.y22b{bottom:753.441000px;}
.y186{bottom:754.033500px;}
.y160{bottom:754.221000px;}
.y28b{bottom:756.300000px;}
.yac{bottom:757.210500px;}
.y138{bottom:760.198500px;}
.yd3{bottom:762.406500px;}
.yd{bottom:765.289500px;}
.y3a{bottom:766.177500px;}
.y87{bottom:766.890000px;}
.y1bc{bottom:766.927500px;}
.y1a2{bottom:768.384000px;}
.y25b{bottom:768.990000px;}
.y60{bottom:769.294500px;}
.y185{bottom:771.966000px;}
.y15f{bottom:772.155000px;}
.y28a{bottom:774.232500px;}
.yab{bottom:775.143000px;}
.y137{bottom:778.132500px;}
.y22a{bottom:780.340500px;}
.y1e0{bottom:782.925000px;}
.yc{bottom:783.222000px;}
.y39{bottom:784.110000px;}
.y86{bottom:784.822500px;}
.y25a{bottom:786.922500px;}
.yd2{bottom:789.306000px;}
.y184{bottom:789.898500px;}
.y15e{bottom:790.087500px;}
.y208{bottom:792.166500px;}
.yaa{bottom:793.075500px;}
.y1a1{bottom:795.283500px;}
.y136{bottom:796.065000px;}
.y229{bottom:798.273000px;}
.yb{bottom:801.154500px;}
.y38{bottom:802.042500px;}
.y85{bottom:802.756500px;}
.y259{bottom:804.856500px;}
.y10c{bottom:805.852500px;}
.yd1{bottom:807.238500px;}
.y183{bottom:807.831000px;}
.y15d{bottom:808.020000px;}
.y207{bottom:810.099000px;}
.ya9{bottom:811.008000px;}
.y1a0{bottom:813.216000px;}
.y135{bottom:813.997500px;}
.y228{bottom:816.205500px;}
.y37{bottom:819.975000px;}
.y84{bottom:820.689000px;}
.y258{bottom:822.789000px;}
.y1bb{bottom:822.964500px;}
.y10b{bottom:823.785000px;}
.yd0{bottom:825.172500px;}
.y182{bottom:825.763500px;}
.y15c{bottom:825.952500px;}
.y206{bottom:828.031500px;}
.ya{bottom:828.054000px;}
.yf1{bottom:828.942000px;}
.y19f{bottom:831.150000px;}
.y134{bottom:831.930000px;}
.y1df{bottom:836.905500px;}
.y36{bottom:837.907500px;}
.y83{bottom:838.621500px;}
.y257{bottom:840.721500px;}
.y1ba{bottom:840.897000px;}
.ycf{bottom:843.105000px;}
.y181{bottom:843.697500px;}
.y205{bottom:845.964000px;}
.y9{bottom:845.986500px;}
.yf0{bottom:846.874500px;}
.y109{bottom:849.219000px;}
.y133{bottom:849.862500px;}
.y1de{bottom:854.838000px;}
.y35{bottom:855.840000px;}
.y275{bottom:855.970500px;}
.y256{bottom:858.654000px;}
.y5f{bottom:858.829500px;}
.yce{bottom:861.037500px;}
.y180{bottom:861.630000px;}
.y204{bottom:863.896500px;}
.y8{bottom:863.919000px;}
.y19e{bottom:864.025500px;}
.ya8{bottom:864.807000px;}
.y10a{bottom:867.151500px;}
.y132{bottom:867.796500px;}
.y82{bottom:868.509000px;}
.y1dd{bottom:872.770500px;}
.y34{bottom:873.774000px;}
.y255{bottom:876.586500px;}
.y5e{bottom:876.762000px;}
.y227{bottom:878.970000px;}
.y17f{bottom:879.562500px;}
.y203{bottom:881.829000px;}
.y7{bottom:881.853000px;}
.y15b{bottom:882.739500px;}
.y131{bottom:885.729000px;}
.y81{bottom:886.441500px;}
.y1dc{bottom:890.704500px;}
.y33{bottom:891.706500px;}
.y254{bottom:894.519000px;}
.y5d{bottom:894.694500px;}
.y19d{bottom:896.902500px;}
.y17e{bottom:897.495000px;}
.y202{bottom:899.763000px;}
.y6{bottom:899.785500px;}
.y15a{bottom:900.672000px;}
.ycd{bottom:900.801000px;}
.y108{bottom:903.661500px;}
.y80{bottom:904.375500px;}
.y226{bottom:905.869500px;}
.y1db{bottom:908.637000px;}
.y32{bottom:909.639000px;}
.y253{bottom:912.453000px;}
.y5c{bottom:912.627000px;}
.y201{bottom:917.695500px;}
.y5{bottom:917.718000px;}
.y159{bottom:918.604500px;}
.y107{bottom:921.594000px;}
.y17d{bottom:922.929000px;}
.y225{bottom:923.802000px;}
.y1da{bottom:926.569500px;}
.ya7{bottom:927.571500px;}
.y252{bottom:930.385500px;}
.y5b{bottom:930.561000px;}
.y200{bottom:935.628000px;}
.y158{bottom:936.538500px;}
.y19c{bottom:936.667500px;}
.y31{bottom:939.526500px;}
.y224{bottom:941.734500px;}
.y7f{bottom:944.139000px;}
.ya6{bottom:945.504000px;}
.y251{bottom:948.318000px;}
.y5a{bottom:948.493500px;}
.y1d8{bottom:952.003500px;}
.y1ff{bottom:953.560500px;}
.y157{bottom:954.471000px;}
.y30{bottom:957.459000px;}
.y17c{bottom:962.527500px;}
.ya5{bottom:963.436500px;}
.y7e{bottom:963.567000px;}
.y250{bottom:966.250500px;}
.y59{bottom:966.426000px;}
.y1d9{bottom:969.936000px;}
.y4{bottom:970.768500px;}
.y1fe{bottom:971.493000px;}
.y2f{bottom:975.393000px;}
.ya4{bottom:981.370500px;}
.y223{bottom:981.499500px;}
.y24f{bottom:984.183000px;}
.y130{bottom:984.358500px;}
.y17b{bottom:989.425500px;}
.y3{bottom:993.325500px;}
.y156{bottom:999.303000px;}
.y24e{bottom:1002.115500px;}
.y12f{bottom:1002.291000px;}
.y17a{bottom:1007.359500px;}
.y2e{bottom:1011.258000px;}
.y24d{bottom:1020.049500px;}
.y12e{bottom:1020.223500px;}
.y179{bottom:1025.292000px;}
.y2{bottom:1026.201000px;}
.y2d{bottom:1029.190500px;}
.y24b{bottom:1045.483500px;}
.y2c{bottom:1047.123000px;}
.y1{bottom:1053.100500px;}
.y24c{bottom:1063.416000px;}
.y2b{bottom:1065.055500px;}
.h7{height:27.741776px;}
.h4{height:28.578632px;}
.hb{height:31.382100px;}
.h8{height:44.473046px;}
.h3{height:44.831700px;}
.ha{height:46.867046px;}
.h2{height:49.315050px;}
.h9{height:50.629933px;}
.hf{height:59.917046px;}
.h1{height:71.730900px;}
.hc{height:85.271700px;}
.he{height:85.835700px;}
.h5{height:92.893046px;}
.h6{height:101.263046px;}
.hd{height:126.275700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:159.235500px;}
.x2d{left:160.854000px;}
.x4{left:162.000000px;}
.x5{left:176.940000px;}
.x6{left:180.264000px;}
.xaf{left:183.295500px;}
.xae{left:184.410000px;}
.x2{left:188.178000px;}
.x1{left:190.803000px;}
.x13{left:197.238000px;}
.x12{left:198.244500px;}
.x7{left:199.360500px;}
.x80{left:201.138000px;}
.x9a{left:204.195000px;}
.x4e{left:205.243500px;}
.x81{left:206.880000px;}
.xf{left:213.141000px;}
.x82{left:215.421000px;}
.xa2{left:217.290000px;}
.x9b{left:221.902500px;}
.xab{left:226.042500px;}
.x4f{left:227.056500px;}
.x11{left:230.742000px;}
.x10{left:232.236000px;}
.x2a{left:237.561000px;}
.x61{left:241.513500px;}
.x83{left:246.742500px;}
.x8c{left:249.964500px;}
.x84{left:254.260500px;}
.x14{left:255.979500px;}
.x3f{left:257.626500px;}
.x69{left:259.450500px;}
.x8e{left:264.447000px;}
.xa7{left:265.984500px;}
.x15{left:269.533500px;}
.x96{left:271.063500px;}
.x47{left:272.640000px;}
.x8f{left:279.405000px;}
.x95{left:284.320500px;}
.xa3{left:290.955000px;}
.xd{left:294.664500px;}
.x50{left:298.638000px;}
.x45{left:300.253500px;}
.xe{left:302.182500px;}
.x58{left:304.309500px;}
.x39{left:306.477000px;}
.x1e{left:311.719500px;}
.x88{left:313.101000px;}
.x2b{left:314.983500px;}
.x46{left:316.155000px;}
.x91{left:319.167000px;}
.x89{left:320.619000px;}
.x48{left:322.467000px;}
.x90{left:324.678000px;}
.x54{left:328.050000px;}
.x40{left:341.149500px;}
.xa5{left:343.707000px;}
.x9{left:346.444500px;}
.x29{left:352.338000px;}
.x2e{left:355.960500px;}
.x59{left:359.236500px;}
.xa{left:360.595500px;}
.x1f{left:365.280000px;}
.x86{left:367.201500px;}
.x3c{left:370.527000px;}
.x76{left:373.425000px;}
.x5a{left:376.069500px;}
.x3{left:377.950500px;}
.x87{left:379.198500px;}
.x62{left:381.375000px;}
.x63{left:387.226500px;}
.x3a{left:388.953000px;}
.xb{left:392.874000px;}
.x20{left:394.657500px;}
.x16{left:397.125000px;}
.x7b{left:399.501000px;}
.x79{left:402.025500px;}
.xa4{left:403.074000px;}
.xc{left:405.177000px;}
.x97{left:406.501500px;}
.x17{left:409.120500px;}
.x9c{left:414.003000px;}
.x85{left:417.090000px;}
.x7a{left:418.378500px;}
.x70{left:420.436500px;}
.x41{left:422.428500px;}
.xa1{left:424.567500px;}
.x5b{left:427.234500px;}
.x6a{left:430.387500px;}
.x9d{left:431.710500px;}
.x64{left:433.303500px;}
.x3b{left:435.945000px;}
.x7c{left:439.650000px;}
.x21{left:441.673500px;}
.x5c{left:443.424000px;}
.x2f{left:444.699000px;}
.x6b{left:446.740500px;}
.x65{left:448.516500px;}
.x4d{left:451.528500px;}
.x7d{left:453.834000px;}
.x8{left:455.263500px;}
.x98{left:457.011000px;}
.x66{left:461.881500px;}
.x8d{left:464.872500px;}
.x2c{left:467.967000px;}
.x49{left:471.220500px;}
.x8a{left:472.420500px;}
.x42{left:473.989500px;}
.x30{left:478.123500px;}
.x71{left:479.754000px;}
.x36{left:481.219500px;}
.x4a{left:483.217500px;}
.x51{left:484.422000px;}
.x55{left:487.176000px;}
.x4b{left:489.145500px;}
.x92{left:491.971500px;}
.x4c{left:497.686500px;}
.x52{left:500.406000px;}
.x99{left:505.588500px;}
.x77{left:508.281000px;}
.x72{left:513.550500px;}
.x78{left:515.944500px;}
.x93{left:519.249000px;}
.x26{left:520.542000px;}
.x53{left:522.219000px;}
.x73{left:525.547500px;}
.x31{left:530.062500px;}
.x74{left:531.475500px;}
.x37{left:534.775500px;}
.x1a{left:542.329500px;}
.x75{left:545.028000px;}
.x94{left:551.118000px;}
.x18{left:555.372000px;}
.x1b{left:560.229000px;}
.x19{left:567.121500px;}
.x56{left:568.516500px;}
.xad{left:569.944500px;}
.x32{left:578.172000px;}
.x38{left:587.136000px;}
.x33{left:589.921500px;}
.xac{left:594.549000px;}
.x8b{left:602.754000px;}
.x7e{left:605.409000px;}
.x27{left:609.153000px;}
.x67{left:614.553000px;}
.xa0{left:617.076000px;}
.x68{left:622.216500px;}
.x43{left:641.791500px;}
.x9e{left:643.755000px;}
.x6c{left:650.542500px;}
.x5d{left:656.755500px;}
.x44{left:658.110000px;}
.x9f{left:659.658000px;}
.x22{left:662.641500px;}
.x34{left:664.708500px;}
.x5e{left:668.425500px;}
.x5f{left:674.121000px;}
.x7f{left:676.468500px;}
.x35{left:678.261000px;}
.x23{left:681.183000px;}
.x3d{left:683.146500px;}
.x60{left:686.158500px;}
.x1c{left:688.267500px;}
.xa6{left:691.029000px;}
.x3e{left:696.700500px;}
.x24{left:699.627000px;}
.x6d{left:704.305500px;}
.xa8{left:710.613000px;}
.x25{left:711.624000px;}
.xa9{left:725.826000px;}
.xaa{left:739.156500px;}
.x6e{left:742.726500px;}
.x57{left:744.250500px;}
.x1d{left:747.108000px;}
.x6f{left:753.996000px;}
@media print{
.v4{vertical-align:-43.034667pt;}
.v6{vertical-align:-13.285333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.728000pt;}
.v7{vertical-align:35.946667pt;}
.v2{vertical-align:43.040000pt;}
.v5{vertical-align:45.168000pt;}
.v3{vertical-align:50.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000749pt;}
.ls36{letter-spacing:0.003118pt;}
.ls4f{letter-spacing:0.003709pt;}
.ls48{letter-spacing:0.004352pt;}
.ls24{letter-spacing:0.006082pt;}
.ls51{letter-spacing:0.011778pt;}
.ls49{letter-spacing:0.014095pt;}
.ls3c{letter-spacing:0.212535pt;}
.ls39{letter-spacing:0.265669pt;}
.ls4c{letter-spacing:1.859685pt;}
.ls43{letter-spacing:1.912819pt;}
.ls30{letter-spacing:2.337890pt;}
.ls4e{letter-spacing:2.656140pt;}
.ls1e{letter-spacing:2.656631pt;}
.ls52{letter-spacing:2.661473pt;}
.ls20{letter-spacing:2.661964pt;}
.ls3d{letter-spacing:3.772505pt;}
.ls18{letter-spacing:3.825638pt;}
.ls8{letter-spacing:4.197575pt;}
.ls23{letter-spacing:4.807919pt;}
.ls2a{letter-spacing:5.897859pt;}
.ls33{letter-spacing:5.950993pt;}
.ls4d{letter-spacing:7.332474pt;}
.ls2d{letter-spacing:7.385607pt;}
.ls27{letter-spacing:8.560631pt;}
.ls31{letter-spacing:8.820222pt;}
.ls34{letter-spacing:8.851118pt;}
.ls26{letter-spacing:8.873356pt;}
.ls32{letter-spacing:9.723498pt;}
.ls2f{letter-spacing:10.042301pt;}
.ls29{letter-spacing:10.095435pt;}
.lsa{letter-spacing:11.795718pt;}
.ls35{letter-spacing:11.848852pt;}
.ls53{letter-spacing:12.087920pt;}
.ls50{letter-spacing:14.464631pt;}
.ls7{letter-spacing:14.718081pt;}
.ls3f{letter-spacing:14.759816pt;}
.lsd{letter-spacing:14.771215pt;}
.ls55{letter-spacing:14.779203pt;}
.ls11{letter-spacing:14.824349pt;}
.ls28{letter-spacing:15.302554pt;}
.ls41{letter-spacing:15.887026pt;}
.ls42{letter-spacing:15.940160pt;}
.ls2e{letter-spacing:16.684034pt;}
.ls3{letter-spacing:16.737168pt;}
.ls1d{letter-spacing:17.055971pt;}
.ls4a{letter-spacing:17.418807pt;}
.ls4b{letter-spacing:17.419297pt;}
.ls1f{letter-spacing:17.481042pt;}
.ls9{letter-spacing:17.693578pt;}
.ls54{letter-spacing:17.712479pt;}
.lsb{letter-spacing:17.746711pt;}
.ls17{letter-spacing:17.906113pt;}
.ls4{letter-spacing:18.278050pt;}
.ls16{letter-spacing:18.543719pt;}
.ls6{letter-spacing:18.596853pt;}
.ls3e{letter-spacing:18.902719pt;}
.lsc{letter-spacing:18.915657pt;}
.ls13{letter-spacing:19.021924pt;}
.ls15{letter-spacing:19.075058pt;}
.ls40{letter-spacing:19.712665pt;}
.lse{letter-spacing:20.084602pt;}
.ls5{letter-spacing:20.456539pt;}
.ls1c{letter-spacing:20.828476pt;}
.ls1a{letter-spacing:20.881610pt;}
.ls2c{letter-spacing:21.519216pt;}
.ls10{letter-spacing:21.678618pt;}
.ls14{letter-spacing:22.847563pt;}
.ls12{letter-spacing:23.219500pt;}
.ls2{letter-spacing:23.591437pt;}
.ls45{letter-spacing:23.644571pt;}
.ls19{letter-spacing:25.079185pt;}
.lsf{letter-spacing:25.876193pt;}
.ls1{letter-spacing:26.566933pt;}
.ls1b{letter-spacing:26.673201pt;}
.ls2b{letter-spacing:29.489296pt;}
.ls37{letter-spacing:29.520749pt;}
.ls22{letter-spacing:29.542430pt;}
.ls3b{letter-spacing:32.180137pt;}
.ls38{letter-spacing:33.686871pt;}
.ls21{letter-spacing:34.322585pt;}
.ls44{letter-spacing:44.260511pt;}
.ls3a{letter-spacing:115.141089pt;}
.ls47{letter-spacing:292.183133pt;}
.ls46{letter-spacing:524.803201pt;}
.wsc3{word-spacing:-53.133867pt;}
.wsa9{word-spacing:-44.313645pt;}
.wsc0{word-spacing:-42.066082pt;}
.wsc2{word-spacing:-38.415786pt;}
.wsaf{word-spacing:-38.362652pt;}
.ws37{word-spacing:-27.156719pt;}
.ws42{word-spacing:-26.566933pt;}
.wsb3{word-spacing:-23.591437pt;}
.ws88{word-spacing:-16.684034pt;}
.ws0{word-spacing:-15.940200pt;}
.ws4b{word-spacing:-15.780758pt;}
.wsdc{word-spacing:-15.196286pt;}
.ws8c{word-spacing:-14.452412pt;}
.wsbb{word-spacing:-14.346144pt;}
.ws94{word-spacing:-14.239876pt;}
.ws8f{word-spacing:-14.186742pt;}
.ws3c{word-spacing:-13.974207pt;}
.wsd5{word-spacing:-13.867939pt;}
.ws4c{word-spacing:-13.708538pt;}
.ws98{word-spacing:-13.602270pt;}
.ws62{word-spacing:-13.549136pt;}
.wsd6{word-spacing:-13.442868pt;}
.wsdd{word-spacing:-13.230333pt;}
.ws9b{word-spacing:-12.964663pt;}
.ws95{word-spacing:-12.858396pt;}
.ws3e{word-spacing:-12.805262pt;}
.wsdb{word-spacing:-12.752128pt;}
.ws87{word-spacing:-12.698994pt;}
.ws8b{word-spacing:-12.645860pt;}
.ws83{word-spacing:-12.592726pt;}
.ws50{word-spacing:-12.486459pt;}
.ws93{word-spacing:-12.433325pt;}
.ws8a{word-spacing:-12.380191pt;}
.ws2d{word-spacing:-12.327057pt;}
.ws97{word-spacing:-12.273923pt;}
.ws89{word-spacing:-12.220789pt;}
.ws67{word-spacing:-12.167655pt;}
.ws3d{word-spacing:-12.114522pt;}
.wsba{word-spacing:-12.008254pt;}
.ws85{word-spacing:-11.955120pt;}
.ws77{word-spacing:-11.689451pt;}
.ws14{word-spacing:-11.636317pt;}
.ws24{word-spacing:-11.583183pt;}
.ws51{word-spacing:-11.530049pt;}
.ws32{word-spacing:-11.476915pt;}
.wsed{word-spacing:-11.423781pt;}
.wsb8{word-spacing:-11.317514pt;}
.wsaa{word-spacing:-11.264380pt;}
.wsf8{word-spacing:-11.163425pt;}
.ws7b{word-spacing:-11.158112pt;}
.ws6a{word-spacing:-11.104978pt;}
.ws52{word-spacing:-11.051844pt;}
.wsa0{word-spacing:-11.017347pt;}
.wsfd{word-spacing:-10.998710pt;}
.ws1{word-spacing:-10.958900pt;}
.ws23{word-spacing:-10.892443pt;}
.ws39{word-spacing:-10.842005pt;}
.wsd3{word-spacing:-10.786175pt;}
.ws46{word-spacing:-10.725110pt;}
.ws68{word-spacing:-10.679907pt;}
.wsbc{word-spacing:-10.666663pt;}
.ws45{word-spacing:-10.626773pt;}
.ws3b{word-spacing:-10.573639pt;}
.ws33{word-spacing:-10.520506pt;}
.ws92{word-spacing:-10.414238pt;}
.ws6e{word-spacing:-10.361104pt;}
.ws59{word-spacing:-10.307970pt;}
.ws63{word-spacing:-10.254836pt;}
.ws2e{word-spacing:-10.207016pt;}
.ws1d{word-spacing:-10.201702pt;}
.ws7c{word-spacing:-10.153882pt;}
.ws66{word-spacing:-10.148569pt;}
.wsfe{word-spacing:-10.047614pt;}
.ws5d{word-spacing:-10.042301pt;}
.ws40{word-spacing:-9.989167pt;}
.ws2{word-spacing:-9.936033pt;}
.ws43{word-spacing:-9.882899pt;}
.ws99{word-spacing:-9.829765pt;}
.ws3a{word-spacing:-9.776631pt;}
.wse9{word-spacing:-9.723498pt;}
.ws65{word-spacing:-9.670364pt;}
.ws58{word-spacing:-9.617230pt;}
.ws61{word-spacing:-9.564096pt;}
.ws5f{word-spacing:-9.510962pt;}
.ws80{word-spacing:-9.457828pt;}
.ws6d{word-spacing:-9.404694pt;}
.ws48{word-spacing:-9.351561pt;}
.wsc{word-spacing:-9.298427pt;}
.wsf{word-spacing:-9.245293pt;}
.wsb{word-spacing:-9.192159pt;}
.ws22{word-spacing:-9.139025pt;}
.ws8{word-spacing:-9.085891pt;}
.ws6{word-spacing:-9.032757pt;}
.wse3{word-spacing:-8.984937pt;}
.ws4d{word-spacing:-8.979623pt;}
.ws1b{word-spacing:-8.926490pt;}
.ws9{word-spacing:-8.873356pt;}
.ws20{word-spacing:-8.820222pt;}
.ws2b{word-spacing:-8.767088pt;}
.wse{word-spacing:-8.713954pt;}
.wsa{word-spacing:-8.660820pt;}
.ws1e{word-spacing:-8.607686pt;}
.wse4{word-spacing:-8.559866pt;}
.ws15{word-spacing:-8.554553pt;}
.ws11{word-spacing:-8.501419pt;}
.ws53{word-spacing:-8.453598pt;}
.ws13{word-spacing:-8.448285pt;}
.ws55{word-spacing:-8.395151pt;}
.wse8{word-spacing:-8.347330pt;}
.ws28{word-spacing:-8.342017pt;}
.wse5{word-spacing:-8.294197pt;}
.ws91{word-spacing:-8.241063pt;}
.ws81{word-spacing:-8.235749pt;}
.ws8e{word-spacing:-8.187929pt;}
.ws49{word-spacing:-8.182615pt;}
.ws54{word-spacing:-8.134795pt;}
.ws7{word-spacing:-8.129482pt;}
.wsa2{word-spacing:-8.076348pt;}
.wse6{word-spacing:-8.028527pt;}
.ws4a{word-spacing:-8.023214pt;}
.ws57{word-spacing:-7.970080pt;}
.ws6f{word-spacing:-7.922260pt;}
.wsd4{word-spacing:-7.916946pt;}
.wsf5{word-spacing:-7.869126pt;}
.ws38{word-spacing:-7.863812pt;}
.wscd{word-spacing:-7.810678pt;}
.wse7{word-spacing:-7.762858pt;}
.ws18{word-spacing:-7.757545pt;}
.wsff{word-spacing:-7.656590pt;}
.wsd9{word-spacing:-7.651277pt;}
.wsd{word-spacing:-7.598143pt;}
.ws76{word-spacing:-7.545009pt;}
.ws2f{word-spacing:-7.491875pt;}
.ws47{word-spacing:-7.438741pt;}
.ws70{word-spacing:-7.337787pt;}
.ws64{word-spacing:-7.332474pt;}
.ws101{word-spacing:-7.284653pt;}
.ws7e{word-spacing:-7.279340pt;}
.ws1a{word-spacing:-7.226206pt;}
.ws5{word-spacing:-7.173072pt;}
.ws72{word-spacing:-7.119938pt;}
.ws29{word-spacing:-7.066804pt;}
.ws69{word-spacing:-7.013670pt;}
.wsf9{word-spacing:-6.965850pt;}
.ws74{word-spacing:-6.960537pt;}
.wsb6{word-spacing:-6.907403pt;}
.ws1f{word-spacing:-6.854269pt;}
.ws56{word-spacing:-6.801135pt;}
.ws5a{word-spacing:-6.748001pt;}
.ws7f{word-spacing:-6.700181pt;}
.ws5e{word-spacing:-6.694867pt;}
.ws8d{word-spacing:-6.647047pt;}
.ws26{word-spacing:-6.641733pt;}
.wsea{word-spacing:-6.540779pt;}
.ws21{word-spacing:-6.535466pt;}
.ws9a{word-spacing:-6.487645pt;}
.ws35{word-spacing:-6.482332pt;}
.wsf6{word-spacing:-6.434511pt;}
.ws41{word-spacing:-6.429198pt;}
.ws36{word-spacing:-6.376064pt;}
.ws7a{word-spacing:-6.275110pt;}
.ws84{word-spacing:-6.269796pt;}
.ws34{word-spacing:-6.163529pt;}
.ws9f{word-spacing:-6.004127pt;}
.ws10{word-spacing:-5.897859pt;}
.ws100{word-spacing:-5.850039pt;}
.ws25{word-spacing:-5.844725pt;}
.wsee{word-spacing:-5.738458pt;}
.ws9e{word-spacing:-5.685324pt;}
.ws7d{word-spacing:-5.632190pt;}
.ws86{word-spacing:-5.579056pt;}
.ws9c{word-spacing:-5.525922pt;}
.ws44{word-spacing:-5.366521pt;}
.ws3f{word-spacing:-5.313387pt;}
.wsce{word-spacing:-5.260253pt;}
.ws5b{word-spacing:-5.153985pt;}
.ws6b{word-spacing:-5.100851pt;}
.wsbe{word-spacing:-5.047717pt;}
.ws12{word-spacing:-4.941450pt;}
.wsd8{word-spacing:-4.782048pt;}
.ws4f{word-spacing:-4.675780pt;}
.wsd7{word-spacing:-4.569513pt;}
.ws4{word-spacing:-4.516379pt;}
.ws16{word-spacing:-4.463245pt;}
.wsb9{word-spacing:-4.410111pt;}
.ws78{word-spacing:-4.362290pt;}
.wsdf{word-spacing:-4.356977pt;}
.ws60{word-spacing:-4.144442pt;}
.wsda{word-spacing:-3.985040pt;}
.ws19{word-spacing:-3.931906pt;}
.ws2c{word-spacing:-3.825638pt;}
.ws71{word-spacing:-3.719371pt;}
.wsfb{word-spacing:-3.671550pt;}
.ws5c{word-spacing:-3.666237pt;}
.wseb{word-spacing:-3.652967pt;}
.ws31{word-spacing:-3.506835pt;}
.wsec{word-spacing:-3.453701pt;}
.ws82{word-spacing:-3.347434pt;}
.ws75{word-spacing:-3.246479pt;}
.wsb4{word-spacing:-3.241166pt;}
.ws6c{word-spacing:-3.188032pt;}
.ws73{word-spacing:-3.134898pt;}
.ws27{word-spacing:-3.028630pt;}
.wsde{word-spacing:-2.975497pt;}
.wsf3{word-spacing:-2.497292pt;}
.wsf4{word-spacing:-2.396337pt;}
.wsfc{word-spacing:-2.231622pt;}
.wsef{word-spacing:-1.965953pt;}
.ws30{word-spacing:-1.753418pt;}
.ws17{word-spacing:-1.700284pt;}
.wse0{word-spacing:-1.540882pt;}
.ws96{word-spacing:-1.487748pt;}
.wse1{word-spacing:-1.328347pt;}
.wse2{word-spacing:-1.280526pt;}
.wsb7{word-spacing:-1.168945pt;}
.wsa1{word-spacing:-0.797008pt;}
.wsf1{word-spacing:-0.377250pt;}
.wsf0{word-spacing:-0.371937pt;}
.wsa4{word-spacing:-0.053134pt;}
.ws1c{word-spacing:0.000000pt;}
.ws4e{word-spacing:1.700284pt;}
.wsf7{word-spacing:3.400567pt;}
.ws3{word-spacing:6.694867pt;}
.wsb2{word-spacing:8.791382pt;}
.wsa5{word-spacing:8.820222pt;}
.wsfa{word-spacing:9.192159pt;}
.wsb0{word-spacing:11.742585pt;}
.wsca{word-spacing:12.050726pt;}
.wsd2{word-spacing:14.399278pt;}
.wsd1{word-spacing:14.452412pt;}
.wsa3{word-spacing:14.505546pt;}
.wsa8{word-spacing:14.664947pt;}
.wsab{word-spacing:14.718081pt;}
.ws90{word-spacing:14.771215pt;}
.wsc4{word-spacing:14.983750pt;}
.wscf{word-spacing:17.374774pt;}
.wsc5{word-spacing:17.377460pt;}
.wscb{word-spacing:17.389291pt;}
.wsd0{word-spacing:17.427908pt;}
.wsad{word-spacing:17.534176pt;}
.wsa6{word-spacing:17.640444pt;}
.wsa7{word-spacing:17.746711pt;}
.wscc{word-spacing:17.991914pt;}
.wsc9{word-spacing:17.998560pt;}
.ws2a{word-spacing:18.012381pt;}
.wsbd{word-spacing:21.253547pt;}
.wsbf{word-spacing:21.359814pt;}
.wsf2{word-spacing:23.113232pt;}
.ws9d{word-spacing:25.483095pt;}
.wsb1{word-spacing:29.436162pt;}
.wsb5{word-spacing:29.446953pt;}
.wsae{word-spacing:29.459931pt;}
.wsc1{word-spacing:29.489296pt;}
.wsc8{word-spacing:32.783596pt;}
.wsac{word-spacing:61.954089pt;}
.wsc6{word-spacing:80.118066pt;}
.wsc7{word-spacing:115.034821pt;}
.ws79{word-spacing:362.266703pt;}
._34{margin-left:-26.565603pt;}
._30{margin-left:-8.926490pt;}
._0{margin-left:-7.991354pt;}
._3e{margin-left:-7.066804pt;}
._5{margin-left:-6.025374pt;}
._8{margin-left:-4.484492pt;}
._d{margin-left:-3.559969pt;}
._1{margin-left:-2.635446pt;}
._4{margin-left:-1.647150pt;}
._6{width:1.647150pt;}
._2{width:2.635446pt;}
._18{width:4.867069pt;}
._31{width:5.895388pt;}
._3b{width:7.425895pt;}
._1a{width:8.767088pt;}
._33{width:11.795718pt;}
._29{width:13.549136pt;}
._13{width:14.877483pt;}
._16{width:15.993294pt;}
._15{width:17.002837pt;}
._9{width:18.607493pt;}
._17{width:19.595790pt;}
._28{width:20.509673pt;}
._3{width:21.551103pt;}
._14{width:22.741295pt;}
._7{width:23.644571pt;}
._b{width:24.707248pt;}
._10{width:25.642411pt;}
._e{width:26.726335pt;}
._19{width:27.703991pt;}
._c{width:29.223733pt;}
._f{width:30.817643pt;}
._12{width:31.933454pt;}
._3c{width:32.836730pt;}
._a{width:33.740005pt;}
._1f{width:35.280887pt;}
._4a{width:36.726142pt;}
._11{width:37.937581pt;}
._47{width:40.381642pt;}
._1e{width:41.550684pt;}
._48{width:43.537884pt;}
._49{width:45.185034pt;}
._3a{width:49.446373pt;}
._35{width:62.857364pt;}
._1c{width:63.760640pt;}
._32{width:67.905082pt;}
._3f{width:69.275922pt;}
._22{width:97.288110pt;}
._40{width:107.914883pt;}
._20{width:114.397215pt;}
._2f{width:115.696378pt;}
._21{width:116.894507pt;}
._3d{width:118.509770pt;}
._1d{width:123.217437pt;}
._1b{width:148.668559pt;}
._23{width:150.475110pt;}
._41{width:166.149601pt;}
._44{width:188.465825pt;}
._2a{width:219.070932pt;}
._24{width:221.302555pt;}
._25{width:228.103690pt;}
._26{width:254.670623pt;}
._42{width:261.790561pt;}
._27{width:280.759351pt;}
._2d{width:282.778438pt;}
._2c{width:320.259061pt;}
._37{width:326.348209pt;}
._43{width:339.791077pt;}
._38{width:354.615426pt;}
._45{width:404.242458pt;}
._36{width:407.749293pt;}
._2b{width:435.803974pt;}
._46{width:509.394380pt;}
._39{width:584.844470pt;}
._2e{width:913.604950pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:40.209333pt;}
.y155{bottom:96.000000pt;}
.ya3{bottom:96.512000pt;}
.y106{bottom:98.312000pt;}
.y29{bottom:103.577333pt;}
.y24a{bottom:103.765333pt;}
.y222{bottom:106.269333pt;}
.y274{bottom:108.149333pt;}
.y154{bottom:111.940000pt;}
.ya2{bottom:112.452000pt;}
.y1b9{bottom:113.720000pt;}
.y105{bottom:114.253333pt;}
.y1fd{bottom:114.302667pt;}
.y28{bottom:119.518667pt;}
.y249{bottom:119.705333pt;}
.y12d{bottom:121.049333pt;}
.y221{bottom:122.209333pt;}
.y7d{bottom:123.078667pt;}
.ycc{bottom:123.138667pt;}
.y273{bottom:124.089333pt;}
.y153{bottom:127.880000pt;}
.ya1{bottom:128.392000pt;}
.y19b{bottom:128.726667pt;}
.y1b8{bottom:129.660000pt;}
.y1fc{bottom:130.242667pt;}
.y58{bottom:130.414667pt;}
.y27{bottom:135.458667pt;}
.y248{bottom:135.645333pt;}
.y12c{bottom:136.990667pt;}
.y220{bottom:138.149333pt;}
.y7c{bottom:139.018667pt;}
.ycb{bottom:139.078667pt;}
.y272{bottom:140.029333pt;}
.y1d7{bottom:140.168000pt;}
.yef{bottom:141.041333pt;}
.y152{bottom:143.820000pt;}
.y19a{bottom:144.002667pt;}
.ya0{bottom:144.332000pt;}
.y1b7{bottom:145.600000pt;}
.y1fb{bottom:146.182667pt;}
.y57{bottom:146.354667pt;}
.y26{bottom:151.398667pt;}
.y247{bottom:151.585333pt;}
.y12b{bottom:152.930667pt;}
.y21f{bottom:154.090667pt;}
.y7b{bottom:154.958667pt;}
.yca{bottom:155.018667pt;}
.y1d6{bottom:156.661333pt;}
.yee{bottom:156.981333pt;}
.y151{bottom:159.761333pt;}
.y9f{bottom:160.272000pt;}
.y1b6{bottom:161.541333pt;}
.y1fa{bottom:162.124000pt;}
.y104{bottom:162.234667pt;}
.y56{bottom:162.294667pt;}
.y271{bottom:163.940000pt;}
.y246{bottom:167.526667pt;}
.y12a{bottom:168.870667pt;}
.y21e{bottom:170.030667pt;}
.y7a{bottom:170.898667pt;}
.yc9{bottom:170.958667pt;}
.yed{bottom:172.921333pt;}
.y150{bottom:175.701333pt;}
.y199{bottom:175.882667pt;}
.y25{bottom:177.965333pt;}
.y1f9{bottom:178.064000pt;}
.y2aa{bottom:178.120000pt;}
.y103{bottom:178.174667pt;}
.y55{bottom:178.234667pt;}
.y270{bottom:179.880000pt;}
.y245{bottom:183.466667pt;}
.y129{bottom:184.810667pt;}
.y79{bottom:186.838667pt;}
.yc8{bottom:186.898667pt;}
.y1d5{bottom:188.541333pt;}
.yec{bottom:188.861333pt;}
.y198{bottom:191.824000pt;}
.y24{bottom:193.905333pt;}
.y2a9{bottom:194.060000pt;}
.y54{bottom:194.174667pt;}
.y26f{bottom:195.820000pt;}
.y1b5{bottom:196.886667pt;}
.y244{bottom:199.406667pt;}
.y128{bottom:200.750667pt;}
.y102{bottom:200.782667pt;}
.y1f8{bottom:201.974667pt;}
.y14f{bottom:202.236000pt;}
.y78{bottom:202.780000pt;}
.yc7{bottom:202.840000pt;}
.y289{bottom:203.413333pt;}
.y1d4{bottom:204.482667pt;}
.y21d{bottom:205.376000pt;}
.y2a8{bottom:210.000000pt;}
.yeb{bottom:212.772000pt;}
.y243{bottom:215.346667pt;}
.y127{bottom:216.690667pt;}
.y23{bottom:217.816000pt;}
.y1f7{bottom:217.914667pt;}
.y53{bottom:218.085333pt;}
.y77{bottom:218.720000pt;}
.yc6{bottom:218.780000pt;}
.y288{bottom:219.353333pt;}
.y26e{bottom:219.730667pt;}
.y197{bottom:221.046667pt;}
.y178{bottom:223.398667pt;}
.y2a7{bottom:225.941333pt;}
.y14e{bottom:226.145333pt;}
.yea{bottom:228.712000pt;}
.y126{bottom:232.632000pt;}
.y22{bottom:233.756000pt;}
.y1f6{bottom:233.854667pt;}
.y52{bottom:234.025333pt;}
.y9e{bottom:234.660000pt;}
.yc5{bottom:234.720000pt;}
.y101{bottom:235.244000pt;}
.y287{bottom:235.294667pt;}
.y26d{bottom:235.670667pt;}
.y1d3{bottom:237.026667pt;}
.y241{bottom:237.954667pt;}
.y1b4{bottom:239.278667pt;}
.y177{bottom:239.338667pt;}
.y2a6{bottom:241.881333pt;}
.y14d{bottom:242.086667pt;}
.y1d2{bottom:244.465333pt;}
.ye9{bottom:244.652000pt;}
.y76{bottom:245.286667pt;}
.y21c{bottom:247.769333pt;}
.y125{bottom:248.572000pt;}
.y21{bottom:249.696000pt;}
.y51{bottom:249.965333pt;}
.y196{bottom:250.270667pt;}
.y9d{bottom:250.600000pt;}
.y286{bottom:251.234667pt;}
.y242{bottom:253.894667pt;}
.y1b3{bottom:255.220000pt;}
.y176{bottom:255.280000pt;}
.y2a5{bottom:257.821333pt;}
.y14c{bottom:258.026667pt;}
.y100{bottom:259.153333pt;}
.ye8{bottom:260.593333pt;}
.y75{bottom:261.226667pt;}
.yc4{bottom:261.286667pt;}
.y1d1{bottom:262.929333pt;}
.y21b{bottom:263.709333pt;}
.y20{bottom:265.637333pt;}
.y50{bottom:265.906667pt;}
.y195{bottom:266.210667pt;}
.y285{bottom:267.174667pt;}
.y26c{bottom:271.017333pt;}
.y1f5{bottom:271.048000pt;}
.y1b2{bottom:271.160000pt;}
.y175{bottom:271.220000pt;}
.y2a4{bottom:273.761333pt;}
.y14b{bottom:273.966667pt;}
.y1f4{bottom:274.049333pt;}
.y9c{bottom:274.510667pt;}
.yff{bottom:275.093333pt;}
.y124{bottom:275.138667pt;}
.y74{bottom:277.166667pt;}
.yc3{bottom:277.226667pt;}
.y21a{bottom:279.649333pt;}
.y1f{bottom:281.577333pt;}
.y194{bottom:282.152000pt;}
.ye7{bottom:284.502667pt;}
.y1cf{bottom:286.840000pt;}
.y1b1{bottom:287.100000pt;}
.y174{bottom:287.160000pt;}
.y2a3{bottom:289.701333pt;}
.y4f{bottom:289.816000pt;}
.y14a{bottom:289.906667pt;}
.yfe{bottom:291.034667pt;}
.y123{bottom:291.078667pt;}
.y284{bottom:291.085333pt;}
.yc2{bottom:293.166667pt;}
.y219{bottom:295.589333pt;}
.y1e{bottom:297.517333pt;}
.y1d0{bottom:297.600000pt;}
.y9b{bottom:298.421333pt;}
.ye6{bottom:300.442667pt;}
.y1ce{bottom:302.780000pt;}
.y1f3{bottom:302.941333pt;}
.y173{bottom:303.100000pt;}
.y2a2{bottom:305.641333pt;}
.y4e{bottom:305.757333pt;}
.yfd{bottom:306.974667pt;}
.y122{bottom:307.018667pt;}
.y283{bottom:307.025333pt;}
.y240{bottom:311.070667pt;}
.y193{bottom:311.374667pt;}
.y218{bottom:311.529333pt;}
.y73{bottom:312.513333pt;}
.y26b{bottom:313.409333pt;}
.y1d{bottom:313.457333pt;}
.y149{bottom:313.817333pt;}
.ye5{bottom:316.384000pt;}
.yc1{bottom:317.077333pt;}
.y1f2{bottom:318.881333pt;}
.y172{bottom:319.040000pt;}
.y2a1{bottom:321.582667pt;}
.y4d{bottom:321.697333pt;}
.y9a{bottom:322.330667pt;}
.y1b0{bottom:322.446667pt;}
.y121{bottom:322.960000pt;}
.y282{bottom:322.965333pt;}
.y23f{bottom:327.010667pt;}
.y217{bottom:327.469333pt;}
.y26a{bottom:329.349333pt;}
.y1c{bottom:329.397333pt;}
.yfc{bottom:330.885333pt;}
.ye4{bottom:332.324000pt;}
.y2a0{bottom:337.522667pt;}
.y4c{bottom:337.637333pt;}
.y148{bottom:337.728000pt;}
.y1cd{bottom:338.126667pt;}
.y99{bottom:338.272000pt;}
.y120{bottom:338.900000pt;}
.y281{bottom:338.905333pt;}
.y192{bottom:340.598667pt;}
.y23e{bottom:342.950667pt;}
.y216{bottom:343.410667pt;}
.yc0{bottom:343.644000pt;}
.y1b{bottom:345.337333pt;}
.yfb{bottom:346.825333pt;}
.ye3{bottom:348.264000pt;}
.y29f{bottom:353.462667pt;}
.y147{bottom:353.668000pt;}
.y98{bottom:354.212000pt;}
.y171{bottom:354.386667pt;}
.y11f{bottom:354.840000pt;}
.y280{bottom:354.845333pt;}
.y72{bottom:354.905333pt;}
.y1f1{bottom:356.208000pt;}
.y191{bottom:356.538667pt;}
.y23d{bottom:358.890667pt;}
.ybf{bottom:359.585333pt;}
.y1a{bottom:361.278667pt;}
.y4b{bottom:361.548000pt;}
.yfa{bottom:362.765333pt;}
.y269{bottom:364.696000pt;}
.y1af{bottom:364.838667pt;}
.y29e{bottom:369.402667pt;}
.y146{bottom:369.608000pt;}
.y97{bottom:370.152000pt;}
.y11e{bottom:370.780000pt;}
.y27f{bottom:370.786667pt;}
.y71{bottom:370.845333pt;}
.ye2{bottom:372.174667pt;}
.y23c{bottom:374.830667pt;}
.ybe{bottom:375.525333pt;}
.y4a{bottom:377.488000pt;}
.y215{bottom:378.756000pt;}
.y1f0{bottom:379.184000pt;}
.y1cc{bottom:380.001333pt;}
.y1ae{bottom:380.778667pt;}
.y29d{bottom:385.342667pt;}
.y145{bottom:385.548000pt;}
.y96{bottom:386.092000pt;}
.y11d{bottom:386.720000pt;}
.y70{bottom:386.786667pt;}
.ye1{bottom:388.114667pt;}
.y23b{bottom:390.770667pt;}
.ybd{bottom:391.465333pt;}
.y190{bottom:391.885333pt;}
.y49{bottom:393.428000pt;}
.y1cb{bottom:395.941333pt;}
.y19{bottom:396.624000pt;}
.y1ad{bottom:396.718667pt;}
.y170{bottom:396.778667pt;}
.y1ef{bottom:399.109333pt;}
.y29c{bottom:401.282667pt;}
.y95{bottom:402.032000pt;}
.y11c{bottom:402.660000pt;}
.y6f{bottom:402.726667pt;}
.ye0{bottom:404.054667pt;}
.y27e{bottom:406.132000pt;}
.y23a{bottom:406.712000pt;}
.ybc{bottom:407.405333pt;}
.y48{bottom:409.368000pt;}
.yf9{bottom:410.748000pt;}
.y1ca{bottom:411.881333pt;}
.y144{bottom:412.082667pt;}
.y1ac{bottom:412.658667pt;}
.y16f{bottom:412.718667pt;}
.y29b{bottom:417.224000pt;}
.y94{bottom:417.972000pt;}
.y11b{bottom:418.601333pt;}
.y6e{bottom:418.666667pt;}
.y1ee{bottom:419.034667pt;}
.ydf{bottom:419.994667pt;}
.y214{bottom:421.148000pt;}
.ybb{bottom:423.345333pt;}
.y47{bottom:425.308000pt;}
.yf8{bottom:426.688000pt;}
.y1c9{bottom:427.822667pt;}
.y143{bottom:428.022667pt;}
.y1ab{bottom:428.598667pt;}
.y16e{bottom:428.658667pt;}
.y239{bottom:430.621333pt;}
.y29a{bottom:433.164000pt;}
.y18{bottom:433.298667pt;}
.y18f{bottom:434.277333pt;}
.y11a{bottom:434.541333pt;}
.y213{bottom:437.089333pt;}
.y1ed{bottom:439.160000pt;}
.yba{bottom:439.286667pt;}
.y46{bottom:441.248000pt;}
.y1c8{bottom:443.762667pt;}
.yde{bottom:443.905333pt;}
.y142{bottom:443.962667pt;}
.y268{bottom:444.282667pt;}
.y1aa{bottom:444.540000pt;}
.y16d{bottom:444.600000pt;}
.y6d{bottom:445.233333pt;}
.y238{bottom:446.562667pt;}
.y27d{bottom:448.524000pt;}
.y299{bottom:449.104000pt;}
.yf7{bottom:449.296000pt;}
.y18e{bottom:450.217333pt;}
.y119{bottom:450.481333pt;}
.y212{bottom:453.029333pt;}
.y93{bottom:453.318667pt;}
.yb9{bottom:455.226667pt;}
.y1ec{bottom:455.653333pt;}
.y1eb{bottom:459.085333pt;}
.ydd{bottom:459.845333pt;}
.y141{bottom:459.902667pt;}
.y267{bottom:460.222667pt;}
.y1a9{bottom:460.480000pt;}
.y16c{bottom:460.540000pt;}
.y6c{bottom:461.173333pt;}
.y237{bottom:462.502667pt;}
.y27c{bottom:464.465333pt;}
.y298{bottom:465.044000pt;}
.y18d{bottom:466.158667pt;}
.y45{bottom:467.816000pt;}
.y211{bottom:468.969333pt;}
.yb8{bottom:471.166667pt;}
.ydc{bottom:475.785333pt;}
.y266{bottom:476.162667pt;}
.y118{bottom:477.048000pt;}
.y6b{bottom:477.114667pt;}
.y236{bottom:478.442667pt;}
.y1c7{bottom:479.108000pt;}
.y27b{bottom:480.405333pt;}
.y297{bottom:480.984000pt;}
.y44{bottom:483.756000pt;}
.y16b{bottom:484.449333pt;}
.y210{bottom:484.909333pt;}
.y140{bottom:486.437333pt;}
.yb7{bottom:487.106667pt;}
.y1ea{bottom:487.666667pt;}
.ydb{bottom:491.725333pt;}
.y265{bottom:492.102667pt;}
.y6a{bottom:493.054667pt;}
.y235{bottom:494.382667pt;}
.y92{bottom:495.710667pt;}
.y1a8{bottom:495.825333pt;}
.y27a{bottom:496.345333pt;}
.y1c6{bottom:496.377333pt;}
.y296{bottom:496.924000pt;}
.yf6{bottom:499.696000pt;}
.y16a{bottom:500.390667pt;}
.y20f{bottom:500.849333pt;}
.y117{bottom:500.958667pt;}
.y18c{bottom:501.504000pt;}
.y13f{bottom:502.378667pt;}
.yb6{bottom:503.046667pt;}
.y43{bottom:507.666667pt;}
.y264{bottom:508.042667pt;}
.y69{bottom:508.994667pt;}
.y234{bottom:510.322667pt;}
.y1e9{bottom:510.644000pt;}
.y91{bottom:511.650667pt;}
.y295{bottom:512.865333pt;}
.y17{bottom:512.885333pt;}
.yda{bottom:515.636000pt;}
.y169{bottom:516.330667pt;}
.y20e{bottom:516.789333pt;}
.y116{bottom:516.898667pt;}
.y13e{bottom:518.318667pt;}
.y18b{bottom:518.773333pt;}
.yb5{bottom:518.986667pt;}
.y41{bottom:523.606667pt;}
.y263{bottom:523.982667pt;}
.y68{bottom:524.934667pt;}
.y233{bottom:526.262667pt;}
.y90{bottom:527.592000pt;}
.y42{bottom:528.426667pt;}
.y294{bottom:528.805333pt;}
.y16{bottom:528.825333pt;}
.y1e8{bottom:530.569333pt;}
.yd9{bottom:531.576000pt;}
.y279{bottom:531.692000pt;}
.y168{bottom:532.270667pt;}
.y115{bottom:532.838667pt;}
.yb4{bottom:534.928000pt;}
.y1a7{bottom:538.218667pt;}
.y1c5{bottom:538.252000pt;}
.y40{bottom:539.546667pt;}
.y262{bottom:539.924000pt;}
.y67{bottom:540.874667pt;}
.y13d{bottom:542.228000pt;}
.y293{bottom:544.745333pt;}
.y15{bottom:544.765333pt;}
.yd8{bottom:547.517333pt;}
.y167{bottom:548.210667pt;}
.y232{bottom:550.173333pt;}
.y1e7{bottom:550.494667pt;}
.yb3{bottom:550.868000pt;}
.y20d{bottom:552.136000pt;}
.y8f{bottom:554.158667pt;}
.y1c4{bottom:554.192000pt;}
.y3f{bottom:555.486667pt;}
.y114{bottom:556.749333pt;}
.y66{bottom:556.814667pt;}
.y292{bottom:560.685333pt;}
.y14{bottom:560.705333pt;}
.yd7{bottom:563.457333pt;}
.y1a6{bottom:564.121333pt;}
.y166{bottom:564.150667pt;}
.y231{bottom:566.113333pt;}
.y13c{bottom:566.138667pt;}
.yb2{bottom:566.808000pt;}
.y8e{bottom:570.098667pt;}
.y1c3{bottom:570.132000pt;}
.y1e6{bottom:570.618667pt;}
.y3e{bottom:571.426667pt;}
.y113{bottom:572.689333pt;}
.y65{bottom:572.756000pt;}
.y278{bottom:574.084000pt;}
.y291{bottom:576.625333pt;}
.y13{bottom:576.645333pt;}
.yf5{bottom:579.397333pt;}
.y165{bottom:580.090667pt;}
.y230{bottom:582.053333pt;}
.y13b{bottom:582.078667pt;}
.yb1{bottom:582.748000pt;}
.y8d{bottom:586.038667pt;}
.y1c2{bottom:586.072000pt;}
.y1e5{bottom:587.112000pt;}
.y3d{bottom:587.368000pt;}
.y261{bottom:587.905333pt;}
.y112{bottom:588.629333pt;}
.y64{bottom:588.696000pt;}
.y277{bottom:590.024000pt;}
.y1e4{bottom:590.544000pt;}
.y290{bottom:592.565333pt;}
.y12{bottom:592.586667pt;}
.y20c{bottom:594.528000pt;}
.yf4{bottom:595.337333pt;}
.y22f{bottom:597.994667pt;}
.yb0{bottom:598.688000pt;}
.y8c{bottom:601.978667pt;}
.y1c1{bottom:602.013333pt;}
.y3c{bottom:603.308000pt;}
.y260{bottom:603.845333pt;}
.y111{bottom:604.570667pt;}
.y63{bottom:604.636000pt;}
.y18a{bottom:606.490667pt;}
.y164{bottom:606.658667pt;}
.y28f{bottom:608.506667pt;}
.y1a5{bottom:608.621333pt;}
.y20b{bottom:610.469333pt;}
.yf3{bottom:611.277333pt;}
.y22e{bottom:613.934667pt;}
.yaf{bottom:614.628000pt;}
.y11{bottom:616.496000pt;}
.y13a{bottom:617.425333pt;}
.y8b{bottom:617.920000pt;}
.y1c0{bottom:617.953333pt;}
.y1e3{bottom:618.993333pt;}
.yd6{bottom:619.248000pt;}
.y25f{bottom:619.785333pt;}
.y110{bottom:620.510667pt;}
.y189{bottom:622.430667pt;}
.y163{bottom:622.598667pt;}
.y28e{bottom:624.446667pt;}
.y1a4{bottom:624.561333pt;}
.y20a{bottom:626.409333pt;}
.y276{bottom:629.874667pt;}
.yae{bottom:630.569333pt;}
.y62{bottom:631.202667pt;}
.y10{bottom:632.437333pt;}
.y8a{bottom:633.860000pt;}
.y1bf{bottom:633.893333pt;}
.yd5{bottom:635.188000pt;}
.y25e{bottom:635.726667pt;}
.y10f{bottom:636.450667pt;}
.y22d{bottom:637.845333pt;}
.y188{bottom:638.370667pt;}
.y162{bottom:638.538667pt;}
.y3b{bottom:638.653333pt;}
.y28d{bottom:640.386667pt;}
.yf2{bottom:646.624000pt;}
.yf{bottom:648.377333pt;}
.y89{bottom:649.800000pt;}
.y1be{bottom:649.833333pt;}
.yd4{bottom:651.128000pt;}
.y1e2{bottom:651.537333pt;}
.y25d{bottom:651.666667pt;}
.y10e{bottom:652.390667pt;}
.y22c{bottom:653.785333pt;}
.y187{bottom:654.310667pt;}
.y161{bottom:654.478667pt;}
.y28c{bottom:656.326667pt;}
.yad{bottom:657.136000pt;}
.y139{bottom:659.792000pt;}
.y1e1{bottom:660.649333pt;}
.y209{bottom:661.754667pt;}
.ye{bottom:664.317333pt;}
.y1a3{bottom:664.544000pt;}
.y88{bottom:665.740000pt;}
.y1bd{bottom:665.773333pt;}
.y61{bottom:666.549333pt;}
.y25c{bottom:667.606667pt;}
.y10d{bottom:668.330667pt;}
.y22b{bottom:669.725333pt;}
.y186{bottom:670.252000pt;}
.y160{bottom:670.418667pt;}
.y28b{bottom:672.266667pt;}
.yac{bottom:673.076000pt;}
.y138{bottom:675.732000pt;}
.yd3{bottom:677.694667pt;}
.yd{bottom:680.257333pt;}
.y3a{bottom:681.046667pt;}
.y87{bottom:681.680000pt;}
.y1bc{bottom:681.713333pt;}
.y1a2{bottom:683.008000pt;}
.y25b{bottom:683.546667pt;}
.y60{bottom:683.817333pt;}
.y185{bottom:686.192000pt;}
.y15f{bottom:686.360000pt;}
.y28a{bottom:688.206667pt;}
.yab{bottom:689.016000pt;}
.y137{bottom:691.673333pt;}
.y22a{bottom:693.636000pt;}
.y1e0{bottom:695.933333pt;}
.yc{bottom:696.197333pt;}
.y39{bottom:696.986667pt;}
.y86{bottom:697.620000pt;}
.y25a{bottom:699.486667pt;}
.yd2{bottom:701.605333pt;}
.y184{bottom:702.132000pt;}
.y15e{bottom:702.300000pt;}
.y208{bottom:704.148000pt;}
.yaa{bottom:704.956000pt;}
.y1a1{bottom:706.918667pt;}
.y136{bottom:707.613333pt;}
.y229{bottom:709.576000pt;}
.yb{bottom:712.137333pt;}
.y38{bottom:712.926667pt;}
.y85{bottom:713.561333pt;}
.y259{bottom:715.428000pt;}
.y10c{bottom:716.313333pt;}
.yd1{bottom:717.545333pt;}
.y183{bottom:718.072000pt;}
.y15d{bottom:718.240000pt;}
.y207{bottom:720.088000pt;}
.ya9{bottom:720.896000pt;}
.y1a0{bottom:722.858667pt;}
.y135{bottom:723.553333pt;}
.y228{bottom:725.516000pt;}
.y37{bottom:728.866667pt;}
.y84{bottom:729.501333pt;}
.y258{bottom:731.368000pt;}
.y1bb{bottom:731.524000pt;}
.y10b{bottom:732.253333pt;}
.yd0{bottom:733.486667pt;}
.y182{bottom:734.012000pt;}
.y15c{bottom:734.180000pt;}
.y206{bottom:736.028000pt;}
.ya{bottom:736.048000pt;}
.yf1{bottom:736.837333pt;}
.y19f{bottom:738.800000pt;}
.y134{bottom:739.493333pt;}
.y1df{bottom:743.916000pt;}
.y36{bottom:744.806667pt;}
.y83{bottom:745.441333pt;}
.y257{bottom:747.308000pt;}
.y1ba{bottom:747.464000pt;}
.ycf{bottom:749.426667pt;}
.y181{bottom:749.953333pt;}
.y205{bottom:751.968000pt;}
.y9{bottom:751.988000pt;}
.yf0{bottom:752.777333pt;}
.y109{bottom:754.861333pt;}
.y133{bottom:755.433333pt;}
.y1de{bottom:759.856000pt;}
.y35{bottom:760.746667pt;}
.y275{bottom:760.862667pt;}
.y256{bottom:763.248000pt;}
.y5f{bottom:763.404000pt;}
.yce{bottom:765.366667pt;}
.y180{bottom:765.893333pt;}
.y204{bottom:767.908000pt;}
.y8{bottom:767.928000pt;}
.y19e{bottom:768.022667pt;}
.ya8{bottom:768.717333pt;}
.y10a{bottom:770.801333pt;}
.y132{bottom:771.374667pt;}
.y82{bottom:772.008000pt;}
.y1dd{bottom:775.796000pt;}
.y34{bottom:776.688000pt;}
.y255{bottom:779.188000pt;}
.y5e{bottom:779.344000pt;}
.y227{bottom:781.306667pt;}
.y17f{bottom:781.833333pt;}
.y203{bottom:783.848000pt;}
.y7{bottom:783.869333pt;}
.y15b{bottom:784.657333pt;}
.y131{bottom:787.314667pt;}
.y81{bottom:787.948000pt;}
.y1dc{bottom:791.737333pt;}
.y33{bottom:792.628000pt;}
.y254{bottom:795.128000pt;}
.y5d{bottom:795.284000pt;}
.y19d{bottom:797.246667pt;}
.y17e{bottom:797.773333pt;}
.y202{bottom:799.789333pt;}
.y6{bottom:799.809333pt;}
.y15a{bottom:800.597333pt;}
.ycd{bottom:800.712000pt;}
.y108{bottom:803.254667pt;}
.y80{bottom:803.889333pt;}
.y226{bottom:805.217333pt;}
.y1db{bottom:807.677333pt;}
.y32{bottom:808.568000pt;}
.y253{bottom:811.069333pt;}
.y5c{bottom:811.224000pt;}
.y201{bottom:815.729333pt;}
.y5{bottom:815.749333pt;}
.y159{bottom:816.537333pt;}
.y107{bottom:819.194667pt;}
.y17d{bottom:820.381333pt;}
.y225{bottom:821.157333pt;}
.y1da{bottom:823.617333pt;}
.ya7{bottom:824.508000pt;}
.y252{bottom:827.009333pt;}
.y5b{bottom:827.165333pt;}
.y200{bottom:831.669333pt;}
.y158{bottom:832.478667pt;}
.y19c{bottom:832.593333pt;}
.y31{bottom:835.134667pt;}
.y224{bottom:837.097333pt;}
.y7f{bottom:839.234667pt;}
.ya6{bottom:840.448000pt;}
.y251{bottom:842.949333pt;}
.y5a{bottom:843.105333pt;}
.y1d8{bottom:846.225333pt;}
.y1ff{bottom:847.609333pt;}
.y157{bottom:848.418667pt;}
.y30{bottom:851.074667pt;}
.y17c{bottom:855.580000pt;}
.ya5{bottom:856.388000pt;}
.y7e{bottom:856.504000pt;}
.y250{bottom:858.889333pt;}
.y59{bottom:859.045333pt;}
.y1d9{bottom:862.165333pt;}
.y4{bottom:862.905333pt;}
.y1fe{bottom:863.549333pt;}
.y2f{bottom:867.016000pt;}
.ya4{bottom:872.329333pt;}
.y223{bottom:872.444000pt;}
.y24f{bottom:874.829333pt;}
.y130{bottom:874.985333pt;}
.y17b{bottom:879.489333pt;}
.y3{bottom:882.956000pt;}
.y156{bottom:888.269333pt;}
.y24e{bottom:890.769333pt;}
.y12f{bottom:890.925333pt;}
.y17a{bottom:895.430667pt;}
.y2e{bottom:898.896000pt;}
.y24d{bottom:906.710667pt;}
.y12e{bottom:906.865333pt;}
.y179{bottom:911.370667pt;}
.y2{bottom:912.178667pt;}
.y2d{bottom:914.836000pt;}
.y24b{bottom:929.318667pt;}
.y2c{bottom:930.776000pt;}
.y1{bottom:936.089333pt;}
.y24c{bottom:945.258667pt;}
.y2b{bottom:946.716000pt;}
.h7{height:24.659357pt;}
.h4{height:25.403229pt;}
.hb{height:27.895200pt;}
.h8{height:39.531597pt;}
.h3{height:39.850400pt;}
.ha{height:41.659597pt;}
.h2{height:43.835600pt;}
.h9{height:45.004385pt;}
.hf{height:53.259597pt;}
.h1{height:63.760800pt;}
.hc{height:75.797067pt;}
.he{height:76.298400pt;}
.h5{height:82.571597pt;}
.h6{height:90.011597pt;}
.hd{height:112.245067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:141.542667pt;}
.x2d{left:142.981333pt;}
.x4{left:144.000000pt;}
.x5{left:157.280000pt;}
.x6{left:160.234667pt;}
.xaf{left:162.929333pt;}
.xae{left:163.920000pt;}
.x2{left:167.269333pt;}
.x1{left:169.602667pt;}
.x13{left:175.322667pt;}
.x12{left:176.217333pt;}
.x7{left:177.209333pt;}
.x80{left:178.789333pt;}
.x9a{left:181.506667pt;}
.x4e{left:182.438667pt;}
.x81{left:183.893333pt;}
.xf{left:189.458667pt;}
.x82{left:191.485333pt;}
.xa2{left:193.146667pt;}
.x9b{left:197.246667pt;}
.xab{left:200.926667pt;}
.x4f{left:201.828000pt;}
.x11{left:205.104000pt;}
.x10{left:206.432000pt;}
.x2a{left:211.165333pt;}
.x61{left:214.678667pt;}
.x83{left:219.326667pt;}
.x8c{left:222.190667pt;}
.x84{left:226.009333pt;}
.x14{left:227.537333pt;}
.x3f{left:229.001333pt;}
.x69{left:230.622667pt;}
.x8e{left:235.064000pt;}
.xa7{left:236.430667pt;}
.x15{left:239.585333pt;}
.x96{left:240.945333pt;}
.x47{left:242.346667pt;}
.x8f{left:248.360000pt;}
.x95{left:252.729333pt;}
.xa3{left:258.626667pt;}
.xd{left:261.924000pt;}
.x50{left:265.456000pt;}
.x45{left:266.892000pt;}
.xe{left:268.606667pt;}
.x58{left:270.497333pt;}
.x39{left:272.424000pt;}
.x1e{left:277.084000pt;}
.x88{left:278.312000pt;}
.x2b{left:279.985333pt;}
.x46{left:281.026667pt;}
.x91{left:283.704000pt;}
.x89{left:284.994667pt;}
.x48{left:286.637333pt;}
.x90{left:288.602667pt;}
.x54{left:291.600000pt;}
.x40{left:303.244000pt;}
.xa5{left:305.517333pt;}
.x9{left:307.950667pt;}
.x29{left:313.189333pt;}
.x2e{left:316.409333pt;}
.x59{left:319.321333pt;}
.xa{left:320.529333pt;}
.x1f{left:324.693333pt;}
.x86{left:326.401333pt;}
.x3c{left:329.357333pt;}
.x76{left:331.933333pt;}
.x5a{left:334.284000pt;}
.x3{left:335.956000pt;}
.x87{left:337.065333pt;}
.x62{left:339.000000pt;}
.x63{left:344.201333pt;}
.x3a{left:345.736000pt;}
.xb{left:349.221333pt;}
.x20{left:350.806667pt;}
.x16{left:353.000000pt;}
.x7b{left:355.112000pt;}
.x79{left:357.356000pt;}
.xa4{left:358.288000pt;}
.xc{left:360.157333pt;}
.x97{left:361.334667pt;}
.x17{left:363.662667pt;}
.x9c{left:368.002667pt;}
.x85{left:370.746667pt;}
.x7a{left:371.892000pt;}
.x70{left:373.721333pt;}
.x41{left:375.492000pt;}
.xa1{left:377.393333pt;}
.x5b{left:379.764000pt;}
.x6a{left:382.566667pt;}
.x9d{left:383.742667pt;}
.x64{left:385.158667pt;}
.x3b{left:387.506667pt;}
.x7c{left:390.800000pt;}
.x21{left:392.598667pt;}
.x5c{left:394.154667pt;}
.x2f{left:395.288000pt;}
.x6b{left:397.102667pt;}
.x65{left:398.681333pt;}
.x4d{left:401.358667pt;}
.x7d{left:403.408000pt;}
.x8{left:404.678667pt;}
.x98{left:406.232000pt;}
.x66{left:410.561333pt;}
.x8d{left:413.220000pt;}
.x2c{left:415.970667pt;}
.x49{left:418.862667pt;}
.x8a{left:419.929333pt;}
.x42{left:421.324000pt;}
.x30{left:424.998667pt;}
.x71{left:426.448000pt;}
.x36{left:427.750667pt;}
.x4a{left:429.526667pt;}
.x51{left:430.597333pt;}
.x55{left:433.045333pt;}
.x4b{left:434.796000pt;}
.x92{left:437.308000pt;}
.x4c{left:442.388000pt;}
.x52{left:444.805333pt;}
.x99{left:449.412000pt;}
.x77{left:451.805333pt;}
.x72{left:456.489333pt;}
.x78{left:458.617333pt;}
.x93{left:461.554667pt;}
.x26{left:462.704000pt;}
.x53{left:464.194667pt;}
.x73{left:467.153333pt;}
.x31{left:471.166667pt;}
.x74{left:472.422667pt;}
.x37{left:475.356000pt;}
.x1a{left:482.070667pt;}
.x75{left:484.469333pt;}
.x94{left:489.882667pt;}
.x18{left:493.664000pt;}
.x1b{left:497.981333pt;}
.x19{left:504.108000pt;}
.x56{left:505.348000pt;}
.xad{left:506.617333pt;}
.x32{left:513.930667pt;}
.x38{left:521.898667pt;}
.x33{left:524.374667pt;}
.xac{left:528.488000pt;}
.x8b{left:535.781333pt;}
.x7e{left:538.141333pt;}
.x27{left:541.469333pt;}
.x67{left:546.269333pt;}
.xa0{left:548.512000pt;}
.x68{left:553.081333pt;}
.x43{left:570.481333pt;}
.x9e{left:572.226667pt;}
.x6c{left:578.260000pt;}
.x5d{left:583.782667pt;}
.x44{left:584.986667pt;}
.x9f{left:586.362667pt;}
.x22{left:589.014667pt;}
.x34{left:590.852000pt;}
.x5e{left:594.156000pt;}
.x5f{left:599.218667pt;}
.x7f{left:601.305333pt;}
.x35{left:602.898667pt;}
.x23{left:605.496000pt;}
.x3d{left:607.241333pt;}
.x60{left:609.918667pt;}
.x1c{left:611.793333pt;}
.xa6{left:614.248000pt;}
.x3e{left:619.289333pt;}
.x24{left:621.890667pt;}
.x6d{left:626.049333pt;}
.xa8{left:631.656000pt;}
.x25{left:632.554667pt;}
.xa9{left:645.178667pt;}
.xaa{left:657.028000pt;}
.x6e{left:660.201333pt;}
.x57{left:661.556000pt;}
.x1d{left:664.096000pt;}
.x6f{left:670.218667pt;}
}




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