
    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_0a3518388ee4a9b850eb08a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5054eed217c75cecd6369398.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d72196b09212e6214d211d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_550acc4b7b3779c11ec2d55b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_632d79b9fd9129c1413fc82e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.493000;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_9016838b2f68541ce089b38f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_5b8f4fee5430a3e6529e2c0e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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_21f49345deb4125714c43e43.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;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;}
.m5{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);}
.m26{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);}
.mb{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);}
.mf{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);}
.m20{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);}
.m16{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);}
.m25{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);}
.m19{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);}
.m15{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);}
.m14{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);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m9{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);}
.m1d{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);}
.m11{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);}
.m12{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);}
.md{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);}
.m3{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);}
.m1c{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);}
.m24{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);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m21{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);}
.m1b{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);}
.m18{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);}
.me{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);}
.m23{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);}
.m1a{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m13{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{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);}
.m4{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.398000px;}
.v6{vertical-align:7.182000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:23.910000px;}
.v4{vertical-align:32.880000px;}
.v7{vertical-align:65.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.002841px;}
.ls20{letter-spacing:0.497764px;}
.ls1f{letter-spacing:0.503764px;}
.ls21{letter-spacing:0.642088px;}
.ls1c{letter-spacing:0.648088px;}
.ls1a{letter-spacing:0.717483px;}
.ls5{letter-spacing:11.954850px;}
.ls18{letter-spacing:14.047266px;}
.ls1e{letter-spacing:14.166817px;}
.lsf{letter-spacing:14.645022px;}
.ls1d{letter-spacing:14.704798px;}
.ls11{letter-spacing:14.764573px;}
.ls9{letter-spacing:14.824349px;}
.lsb{letter-spacing:14.884124px;}
.ls6{letter-spacing:14.943900px;}
.ls13{letter-spacing:15.003676px;}
.lsd{letter-spacing:15.123227px;}
.ls4{letter-spacing:15.183002px;}
.ls15{letter-spacing:15.302554px;}
.ls14{letter-spacing:15.481880px;}
.lsc{letter-spacing:15.601432px;}
.ls22{letter-spacing:15.780758px;}
.ls19{letter-spacing:17.036046px;}
.ls12{letter-spacing:17.813129px;}
.ls8{letter-spacing:17.872904px;}
.ls10{letter-spacing:19.367294px;}
.ls23{letter-spacing:20.323704px;}
.lse{letter-spacing:20.383480px;}
.lsa{letter-spacing:20.562806px;}
.ls7{letter-spacing:21.519216px;}
.ls17{letter-spacing:23.491811px;}
.ls16{letter-spacing:23.551586px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.ls1b{letter-spacing:181.729555px;}
.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;}
}
.ws8e{word-spacing:-47.337600px;}
.wsb{word-spacing:-22.718660px;}
.ws28{word-spacing:-14.943900px;}
.wsa0{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws59{word-spacing:-3.227882px;}
.ws5a{word-spacing:-3.168107px;}
.ws92{word-spacing:-2.929004px;}
.wseb{word-spacing:-2.869229px;}
.ws87{word-spacing:-2.749678px;}
.ws7f{word-spacing:-2.450800px;}
.ws41{word-spacing:-2.331248px;}
.ws42{word-spacing:-2.271473px;}
.wsdb{word-spacing:-2.211697px;}
.ws80{word-spacing:-2.151922px;}
.ws75{word-spacing:-2.092146px;}
.ws5e{word-spacing:-1.972595px;}
.ws11{word-spacing:-1.882944px;}
.ws138{word-spacing:-1.721549px;}
.ws43{word-spacing:-1.673717px;}
.ws9c{word-spacing:-1.613941px;}
.ws58{word-spacing:-1.554166px;}
.ws97{word-spacing:-1.494390px;}
.wsae{word-spacing:-1.434614px;}
.ws76{word-spacing:-1.374839px;}
.ws8b{word-spacing:-1.315063px;}
.ws137{word-spacing:-1.291162px;}
.ws9a{word-spacing:-1.255288px;}
.ws4d{word-spacing:-1.135736px;}
.ws73{word-spacing:-1.075961px;}
.ws19{word-spacing:-1.022170px;}
.ws8c{word-spacing:-1.016185px;}
.ws90{word-spacing:-0.956410px;}
.wsfa{word-spacing:-0.806976px;}
.ws81{word-spacing:-0.597756px;}
.ws74{word-spacing:-0.537980px;}
.ws83{word-spacing:-0.478205px;}
.ws47{word-spacing:-0.418429px;}
.ws122{word-spacing:-0.376589px;}
.ws3c{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws25{word-spacing:-0.298878px;}
.wsee{word-spacing:-0.268992px;}
.ws34{word-spacing:-0.239102px;}
.wsf{word-spacing:-0.215194px;}
.ws44{word-spacing:-0.179327px;}
.ws12{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.ws101{word-spacing:-0.107597px;}
.ws26{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.wsef{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.wsf4{word-spacing:0.107597px;}
.ws36{word-spacing:0.119551px;}
.ws9f{word-spacing:0.161395px;}
.ws32{word-spacing:0.179327px;}
.ws22{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws103{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws1a{word-spacing:0.322790px;}
.ws60{word-spacing:0.358654px;}
.ws1d{word-spacing:0.376589px;}
.ws84{word-spacing:0.418429px;}
.ws127{word-spacing:0.430387px;}
.ws6a{word-spacing:0.478205px;}
.ws6e{word-spacing:0.537980px;}
.ws1c{word-spacing:0.537984px;}
.ws96{word-spacing:0.597756px;}
.wsfd{word-spacing:0.645581px;}
.ws46{word-spacing:0.657532px;}
.ws51{word-spacing:0.717307px;}
.ws8f{word-spacing:0.777083px;}
.wsf7{word-spacing:0.806976px;}
.ws65{word-spacing:0.836858px;}
.ws91{word-spacing:0.896634px;}
.ws109{word-spacing:0.914573px;}
.ws2f{word-spacing:0.956410px;}
.ws10d{word-spacing:0.968371px;}
.ws3e{word-spacing:1.016185px;}
.ws11a{word-spacing:1.022170px;}
.ws49{word-spacing:1.075961px;}
.ws48{word-spacing:1.135736px;}
.ws1e{word-spacing:1.183565px;}
.ws6c{word-spacing:1.195512px;}
.ws82{word-spacing:1.255288px;}
.ws4a{word-spacing:1.315063px;}
.ws33{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws20{word-spacing:1.398758px;}
.ws3b{word-spacing:1.434614px;}
.ws13{word-spacing:1.452557px;}
.wsec{word-spacing:1.494390px;}
.ws9d{word-spacing:1.554166px;}
.wsa7{word-spacing:1.613941px;}
.ws116{word-spacing:1.613952px;}
.wsff{word-spacing:1.667750px;}
.ws128{word-spacing:1.721549px;}
.ws3d{word-spacing:1.733492px;}
.ws39{word-spacing:1.793268px;}
.ws14{word-spacing:1.829146px;}
.ws38{word-spacing:1.853044px;}
.ws50{word-spacing:1.912819px;}
.ws4f{word-spacing:1.972595px;}
.wsf1{word-spacing:2.044339px;}
.ws52{word-spacing:2.092146px;}
.ws30{word-spacing:2.151922px;}
.ws108{word-spacing:2.151936px;}
.ws62{word-spacing:2.211697px;}
.ws57{word-spacing:2.271473px;}
.ws1f{word-spacing:2.313331px;}
.ws105{word-spacing:2.367130px;}
.ws45{word-spacing:2.391024px;}
.ws111{word-spacing:2.420928px;}
.ws3a{word-spacing:2.450800px;}
.ws6f{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws89{word-spacing:2.570351px;}
.ws94{word-spacing:2.689902px;}
.ws61{word-spacing:2.749678px;}
.ws133{word-spacing:2.797517px;}
.ws9b{word-spacing:2.809453px;}
.ws7e{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.ws115{word-spacing:2.905114px;}
.ws139{word-spacing:2.907212px;}
.ws77{word-spacing:2.929004px;}
.wse{word-spacing:2.955154px;}
.ws99{word-spacing:2.988780px;}
.wsf6{word-spacing:3.012710px;}
.ws5c{word-spacing:3.048556px;}
.wse9{word-spacing:3.108331px;}
.ws24{word-spacing:3.168107px;}
.ws12c{word-spacing:3.174106px;}
.ws118{word-spacing:3.221510px;}
.ws10e{word-spacing:3.223344px;}
.wsf0{word-spacing:3.224822px;}
.ws4e{word-spacing:3.227882px;}
.wsa2{word-spacing:3.227904px;}
.wsf3{word-spacing:3.331490px;}
.ws12b{word-spacing:3.335501px;}
.ws71{word-spacing:3.347434px;}
.ws120{word-spacing:3.389299px;}
.ws53{word-spacing:3.407209px;}
.ws10{word-spacing:3.443098px;}
.ws54{word-spacing:3.466985px;}
.ws21{word-spacing:3.492640px;}
.ws143{word-spacing:3.496896px;}
.ws70{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws10f{word-spacing:3.604493px;}
.ws4c{word-spacing:3.646312px;}
.ws5d{word-spacing:3.706087px;}
.ws69{word-spacing:3.765863px;}
.ws4b{word-spacing:3.825638px;}
.ws6b{word-spacing:3.885414px;}
.ws31{word-spacing:3.945190px;}
.ws88{word-spacing:4.064741px;}
.ws63{word-spacing:4.124516px;}
.ws3f{word-spacing:4.184292px;}
.ws37{word-spacing:4.244068px;}
.ws12e{word-spacing:4.250074px;}
.ws13d{word-spacing:4.303872px;}
.ws66{word-spacing:4.363619px;}
.ws132{word-spacing:4.411469px;}
.ws67{word-spacing:4.423394px;}
.ws29{word-spacing:4.483170px;}
.ws64{word-spacing:4.542946px;}
.ws85{word-spacing:4.602721px;}
.ws8a{word-spacing:4.662497px;}
.ws72{word-spacing:4.782048px;}
.ws1b{word-spacing:4.895654px;}
.wsed{word-spacing:4.901599px;}
.ws18{word-spacing:5.057050px;}
.ws40{word-spacing:5.080926px;}
.wsa1{word-spacing:5.200477px;}
.ws8d{word-spacing:5.320028px;}
.ws8{word-spacing:5.481407px;}
.ws56{word-spacing:5.499355px;}
.ws93{word-spacing:5.618906px;}
.ws15{word-spacing:5.648832px;}
.ws6d{word-spacing:5.738458px;}
.ws7a{word-spacing:5.858009px;}
.ws7d{word-spacing:5.917784px;}
.ws78{word-spacing:5.977560px;}
.ws141{word-spacing:6.348211px;}
.wse8{word-spacing:6.395989px;}
.wsf2{word-spacing:6.455808px;}
.ws7b{word-spacing:6.515540px;}
.wsa8{word-spacing:6.814418px;}
.wsfc{word-spacing:7.262784px;}
.ws98{word-spacing:7.292623px;}
.ws5f{word-spacing:7.471950px;}
.ws5b{word-spacing:7.531726px;}
.ws79{word-spacing:7.711052px;}
.ws13f{word-spacing:8.284954px;}
.wsd9{word-spacing:8.547911px;}
.ws86{word-spacing:8.667462px;}
.ws95{word-spacing:9.623872px;}
.ws6{word-spacing:9.833058px;}
.ws2{word-spacing:10.418831px;}
.ws13a{word-spacing:11.674253px;}
.ws7{word-spacing:11.841512px;}
.ws2c{word-spacing:11.910929px;}
.ws123{word-spacing:13.019213px;}
.ws114{word-spacing:13.073011px;}
.ws130{word-spacing:13.180608px;}
.ws124{word-spacing:13.234406px;}
.ws113{word-spacing:13.288205px;}
.wsfe{word-spacing:13.342003px;}
.ws11c{word-spacing:13.382582px;}
.ws12a{word-spacing:13.384291px;}
.ws121{word-spacing:13.384512px;}
.ws107{word-spacing:13.384925px;}
.wsfb{word-spacing:13.385462px;}
.ws136{word-spacing:13.386470px;}
.ws10c{word-spacing:13.387334px;}
.ws129{word-spacing:13.387536px;}
.ws142{word-spacing:13.387949px;}
.ws140{word-spacing:13.388534px;}
.ws131{word-spacing:13.389091px;}
.ws13c{word-spacing:13.389120px;}
.ws11f{word-spacing:13.389226px;}
.ws135{word-spacing:13.390118px;}
.ws13b{word-spacing:13.391002px;}
.ws10b{word-spacing:13.391904px;}
.ws119{word-spacing:13.392499px;}
.ws102{word-spacing:13.394141px;}
.wsf9{word-spacing:13.395802px;}
.ws125{word-spacing:13.395936px;}
.ws11e{word-spacing:13.396253px;}
.ws12f{word-spacing:13.449600px;}
.wsf8{word-spacing:13.503398px;}
.ws106{word-spacing:13.557197px;}
.wsf5{word-spacing:13.610995px;}
.ws11d{word-spacing:13.664794px;}
.ws104{word-spacing:13.718592px;}
.ws12d{word-spacing:13.772390px;}
.ws126{word-spacing:13.826189px;}
.ws10a{word-spacing:14.310374px;}
.ws11b{word-spacing:14.417971px;}
.ws117{word-spacing:14.633165px;}
.ws7c{word-spacing:14.704798px;}
.ws55{word-spacing:14.884124px;}
.ws100{word-spacing:15.117350px;}
.ws3{word-spacing:15.481836px;}
.wsda{word-spacing:15.661207px;}
.ws13e{word-spacing:15.816730px;}
.ws112{word-spacing:15.870528px;}
.ws9{word-spacing:16.067635px;}
.ws134{word-spacing:16.193318px;}
.ws110{word-spacing:17.000294px;}
.ws68{word-spacing:17.275148px;}
.ws5{word-spacing:22.339429px;}
.wsbd{word-spacing:70.881703px;}
.wsd2{word-spacing:78.009000px;}
.wsc5{word-spacing:78.013534px;}
.wsc0{word-spacing:82.137000px;}
.wsaa{word-spacing:90.540000px;}
.wsc9{word-spacing:93.686029px;}
.wsc6{word-spacing:97.828466px;}
.wsd7{word-spacing:99.338230px;}
.wsbe{word-spacing:99.593690px;}
.wsca{word-spacing:99.595921px;}
.wsd6{word-spacing:99.608832px;}
.wsd5{word-spacing:100.451898px;}
.wsba{word-spacing:101.845375px;}
.wsc1{word-spacing:102.489000px;}
.wsbb{word-spacing:111.454751px;}
.wsd1{word-spacing:113.880976px;}
.wscd{word-spacing:114.970801px;}
.wsd0{word-spacing:116.269055px;}
.wsc4{word-spacing:119.407475px;}
.wsc7{word-spacing:119.419351px;}
.wscb{word-spacing:119.961000px;}
.wsa5{word-spacing:122.601686px;}
.wsc2{word-spacing:124.089000px;}
.wsbf{word-spacing:124.095000px;}
.wsd4{word-spacing:134.194334px;}
.wsbc{word-spacing:135.758897px;}
.wsce{word-spacing:136.909642px;}
.wscf{word-spacing:141.052079px;}
.wscc{word-spacing:141.161987px;}
.wsd3{word-spacing:141.561000px;}
.wsc3{word-spacing:145.695000px;}
.wsc8{word-spacing:150.702304px;}
.wsac{word-spacing:156.445747px;}
.wsd8{word-spacing:162.642964px;}
.wse7{word-spacing:172.014442px;}
.wsab{word-spacing:179.471462px;}
.wsa4{word-spacing:185.389286px;}
.wsa3{word-spacing:185.443085px;}
.wsa9{word-spacing:200.395200px;}
.wsad{word-spacing:200.904038px;}
.wsaf{word-spacing:202.927565px;}
.wsb8{word-spacing:204.972000px;}
.wsb7{word-spacing:204.978000px;}
.wse1{word-spacing:206.316000px;}
.wsb4{word-spacing:226.760256px;}
.wse4{word-spacing:228.105216px;}
.wse6{word-spacing:228.772982px;}
.wse3{word-spacing:230.281776px;}
.wsde{word-spacing:237.755731px;}
.wsdf{word-spacing:239.856710px;}
.wsb9{word-spacing:240.209856px;}
.wsea{word-spacing:241.339622px;}
.wse5{word-spacing:248.195510px;}
.wsb5{word-spacing:249.194189px;}
.wsdc{word-spacing:249.672422px;}
.wsdd{word-spacing:250.539149px;}
.wsb3{word-spacing:291.372000px;}
.wsa6{word-spacing:297.612749px;}
.wse2{word-spacing:304.950134px;}
.wsb6{word-spacing:307.159421px;}
.wsb2{word-spacing:334.572000px;}
.wsb0{word-spacing:361.041062px;}
.wse0{word-spacing:379.116000px;}
.wsb1{word-spacing:393.351494px;}
.ws9e{word-spacing:641.707315px;}
._16{margin-left:-7.890379px;}
._e{margin-left:-6.832397px;}
._1{margin-left:-4.979293px;}
._0{margin-left:-3.096367px;}
._5{margin-left:-1.464498px;}
._1d{width:1.136102px;}
._7{width:2.998087px;}
._17{width:4.859785px;}
._2{width:12.301783px;}
._10{width:14.260630px;}
._c{width:15.386342px;}
._9{width:16.408512px;}
._d{width:17.765413px;}
._f{width:19.158076px;}
._19{width:20.204144px;}
._a{width:21.411763px;}
._14{width:22.565285px;}
._13{width:24.197144px;}
._3{width:25.314894px;}
._1b{width:27.036490px;}
._b{width:28.190362px;}
._15{width:29.947576px;}
._4{width:31.256572px;}
._6{width:33.355008px;}
._1e{width:35.345298px;}
._1a{width:36.582667px;}
._60{width:37.916497px;}
._39{width:39.720882px;}
._18{width:42.141798px;}
._1c{width:45.847954px;}
._8{width:54.404993px;}
._45{width:95.761152px;}
._27{width:97.213709px;}
._3a{width:103.613510px;}
._55{width:108.289166px;}
._28{width:109.372147px;}
._3b{width:114.590592px;}
._58{width:130.434671px;}
._53{width:145.038174px;}
._3c{width:146.869632px;}
._59{width:151.512779px;}
._54{width:156.701286px;}
._3d{width:160.048666px;}
._56{width:169.492294px;}
._35{width:171.878419px;}
._44{width:173.768832px;}
._5c{width:183.237350px;}
._5e{width:185.278157px;}
._57{width:190.593954px;}
._42{width:192.921062px;}
._43{width:196.794547px;}
._30{width:198.946483px;}
._38{width:200.279530px;}
._52{width:203.465549px;}
._4e{width:206.155469px;}
._3f{width:214.322275px;}
._2b{width:219.067085px;}
._48{width:220.143053px;}
._21{width:223.119379px;}
._41{width:236.121178px;}
._3e{width:239.994662px;}
._2c{width:250.216358px;}
._40{width:256.833562px;}
._4d{width:261.920640px;}
._33{width:263.396966px;}
._26{width:274.856026px;}
._2f{width:276.039590px;}
._20{width:278.043485px;}
._31{width:285.346714px;}
._34{width:288.520819px;}
._2a{width:290.565158px;}
._24{width:292.071514px;}
._46{width:293.685466px;}
._22{width:306.450595px;}
._25{width:332.743104px;}
._2e{width:339.091315px;}
._47{width:340.113485px;}
._50{width:342.050227px;}
._32{width:345.439526px;}
._4b{width:349.097818px;}
._37{width:350.388979px;}
._5b{width:356.145408px;}
._4f{width:369.810202px;}
._29{width:371.531750px;}
._51{width:380.734445px;}
._4a{width:392.244134px;}
._36{width:393.642893px;}
._4c{width:396.171418px;}
._2d{width:411.772954px;}
._5d{width:436.789210px;}
._49{width:468.853056px;}
._5a{width:557.405222px;}
._5f{width:590.276045px;}
._11{width:881.285837px;}
._1f{width:950.270980px;}
._23{width:2513.366756px;}
._12{width:2537.276756px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.600200px;}
.fs9{font-size:45.429600px;}
.fsd{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3c{bottom:9.233944px;}
.y3b{bottom:26.903761px;}
.y69{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y39{bottom:104.646000px;}
.y1bf{bottom:109.524000px;}
.y68{bottom:114.535500px;}
.yb7{bottom:117.802500px;}
.yda{bottom:118.699500px;}
.yd7{bottom:119.148000px;}
.ya0{bottom:119.596500px;}
.y38{bottom:122.535000px;}
.y163{bottom:122.683500px;}
.y195{bottom:125.688000px;}
.y1d2{bottom:126.501000px;}
.y1be{bottom:128.353500px;}
.y67{bottom:133.365000px;}
.y23f{bottom:133.719000px;}
.y139{bottom:134.839500px;}
.yb6{bottom:136.632000px;}
.yd9{bottom:137.529000px;}
.yc0{bottom:137.977500px;}
.y9f{bottom:138.426000px;}
.y23{bottom:139.264499px;}
.y37{bottom:140.422500px;}
.y162{bottom:141.513000px;}
.ydd{bottom:142.057500px;}
.y1d1{bottom:144.075000px;}
.y194{bottom:144.517500px;}
.y20a{bottom:146.496000px;}
.y1bd{bottom:147.183000px;}
.y23e{bottom:150.978000px;}
.y66{bottom:152.194500px;}
.y138{bottom:153.669000px;}
.yb5{bottom:155.461500px;}
.ybf{bottom:156.807000px;}
.y9e{bottom:157.255500px;}
.y36{bottom:158.310000px;}
.y161{bottom:160.342500px;}
.yd8{bottom:160.842000px;}
.y193{bottom:163.347000px;}
.y209{bottom:163.756500px;}
.y1bc{bottom:166.012500px;}
.y23d{bottom:168.238500px;}
.y1d0{bottom:170.616000px;}
.y65{bottom:171.024000px;}
.y137{bottom:172.498500px;}
.yb4{bottom:174.291000px;}
.ybe{bottom:175.636500px;}
.y9d{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.y160{bottom:179.172000px;}
.y208{bottom:181.015500px;}
.y192{bottom:182.176500px;}
.y23c{bottom:185.499000px;}
.y1cf{bottom:188.190000px;}
.y1bb{bottom:189.325500px;}
.y64{bottom:189.853500px;}
.y136{bottom:191.328000px;}
.yb3{bottom:193.120500px;}
.y34{bottom:194.086500px;}
.ybd{bottom:194.466000px;}
.y9c{bottom:194.914500px;}
.y1a{bottom:196.933500px;}
.y15f{bottom:198.001500px;}
.y207{bottom:198.276000px;}
.y191{bottom:201.006000px;}
.y23b{bottom:202.759500px;}
.y63{bottom:208.683000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y135{bottom:210.157500px;}
.yb2{bottom:211.950000px;}
.y33{bottom:211.974000px;}
.ybc{bottom:213.295500px;}
.y9b{bottom:213.744000px;}
.y1ce{bottom:214.729500px;}
.y206{bottom:215.536500px;}
.y15e{bottom:216.831000px;}
.y190{bottom:219.835500px;}
.y23a{bottom:220.020000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y62{bottom:227.512500px;}
.y134{bottom:228.987000px;}
.y32{bottom:229.863000px;}
.yb1{bottom:230.779500px;}
.y1ba{bottom:231.649500px;}
.ybb{bottom:232.125000px;}
.y9a{bottom:232.573500px;}
.y205{bottom:232.797000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y15d{bottom:235.660500px;}
.y239{bottom:237.280500px;}
.y18f{bottom:238.663500px;}
.y1cd{bottom:241.270500px;}
.y61{bottom:246.342000px;}
.y133{bottom:247.816500px;}
.yb0{bottom:249.609000px;}
.y204{bottom:250.057500px;}
.yba{bottom:250.954500px;}
.y99{bottom:251.403000px;}
.y238{bottom:254.541000px;}
.y10a{bottom:255.040500px;}
.y1b9{bottom:255.289500px;}
.y18e{bottom:257.493000px;}
.y1cc{bottom:258.844500px;}
.y15c{bottom:258.973500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y60{bottom:265.171500px;}
.y132{bottom:266.646000px;}
.y203{bottom:267.318000px;}
.yaf{bottom:268.438500px;}
.yb9{bottom:269.784000px;}
.y98{bottom:270.232500px;}
.y237{bottom:271.801500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y109{bottom:273.870000px;}
.y18d{bottom:276.322500px;}
.y1b8{bottom:278.931000px;}
.y5f{bottom:284.001000px;}
.y202{bottom:284.578500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1cb{bottom:285.385500px;}
.y131{bottom:285.475500px;}
.yae{bottom:287.268000px;}
.yd6{bottom:288.613500px;}
.y97{bottom:289.062000px;}
.y108{bottom:292.699500px;}
.yb8{bottom:293.095500px;}
.y18c{bottom:295.152000px;}
.y31{bottom:297.166500px;}
.y201{bottom:301.839000px;}
.y1b7{bottom:302.571000px;}
.y1ca{bottom:302.959500px;}
.y15b{bottom:304.285500px;}
.yad{bottom:306.097500px;}
.y236{bottom:306.321000px;}
.y5e{bottom:307.314000px;}
.yd5{bottom:307.443000px;}
.y96{bottom:307.891500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ydc{bottom:310.581000px;}
.y107{bottom:311.529000px;}
.y18b{bottom:313.981500px;}
.y30{bottom:315.054000px;}
.y200{bottom:319.099500px;}
.y1c9{bottom:320.533500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y235{bottom:323.581500px;}
.yac{bottom:324.927000px;}
.y1b6{bottom:326.212500px;}
.yd4{bottom:326.272500px;}
.y95{bottom:326.719500px;}
.y15a{bottom:327.927000px;}
.y106{bottom:330.358500px;}
.ydb{bottom:330.754500px;}
.y18a{bottom:332.811000px;}
.y2f{bottom:332.941500px;}
.y130{bottom:333.925500px;}
.y1ff{bottom:336.358500px;}
.y1c8{bottom:338.107500px;}
.y234{bottom:340.842000px;}
.yab{bottom:343.756500px;}
.yd3{bottom:345.102000px;}
.y94{bottom:345.549000px;}
.y11{bottom:348.133500px;}
.y105{bottom:349.188000px;}
.y1b5{bottom:349.852500px;}
.y2e{bottom:350.830500px;}
.y159{bottom:351.567000px;}
.y189{bottom:351.640500px;}
.y1fe{bottom:353.619000px;}
.y12f{bottom:357.567000px;}
.y233{bottom:358.102500px;}
.yaa{bottom:362.586000px;}
.yd2{bottom:363.931500px;}
.y93{bottom:364.378500px;}
.y1c7{bottom:364.648500px;}
.y104{bottom:368.017500px;}
.y188{bottom:370.470000px;}
.y1fd{bottom:370.879500px;}
.y1b4{bottom:373.494000px;}
.y158{bottom:375.208500px;}
.y232{bottom:375.363000px;}
.y2d{bottom:377.685000px;}
.y5d{bottom:378.960000px;}
.y12e{bottom:381.207000px;}
.ya9{bottom:381.415500px;}
.yd1{bottom:382.761000px;}
.y92{bottom:383.208000px;}
.y10{bottom:386.785499px;}
.y1fc{bottom:388.140000px;}
.y187{bottom:389.299500px;}
.y1c6{bottom:391.189500px;}
.y103{bottom:391.330500px;}
.y231{bottom:392.623500px;}
.y2c{bottom:395.572500px;}
.y1b3{bottom:397.134000px;}
.y5c{bottom:398.416500px;}
.y157{bottom:398.848500px;}
.ya8{bottom:400.245000px;}
.yd0{bottom:401.589000px;}
.y91{bottom:402.037500px;}
.y12d{bottom:404.848500px;}
.y1fb{bottom:405.400500px;}
.yf{bottom:408.044999px;}
.y186{bottom:408.129000px;}
.y1c5{bottom:408.763500px;}
.y230{bottom:409.884000px;}
.y102{bottom:411.505500px;}
.y2b{bottom:413.460000px;}
.ya7{bottom:419.074500px;}
.ycf{bottom:420.418500px;}
.y1b2{bottom:420.775500px;}
.y90{bottom:420.867000px;}
.y156{bottom:422.490000px;}
.y1fa{bottom:422.661000px;}
.y1c4{bottom:426.337500px;}
.y185{bottom:426.958500px;}
.y22f{bottom:427.144500px;}
.y12c{bottom:428.488500px;}
.y2a{bottom:431.349000px;}
.y5b{bottom:435.807000px;}
.ya6{bottom:437.904000px;}
.yce{bottom:439.248000px;}
.y129{bottom:439.503000px;}
.y8f{bottom:439.696500px;}
.y1f9{bottom:439.921500px;}
.y127{bottom:441.147000px;}
.y1c3{bottom:443.911500px;}
.y22e{bottom:444.403500px;}
.y12b{bottom:444.927000px;}
.y184{bottom:445.788000px;}
.y155{bottom:446.130000px;}
.y126{bottom:447.721500px;}
.y29{bottom:449.236500px;}
.y1b1{bottom:452.394000px;}
.y5a{bottom:455.263500px;}
.y128{bottom:455.941500px;}
.ya5{bottom:456.733500px;}
.y101{bottom:456.817500px;}
.y1f8{bottom:457.182000px;}
.ycd{bottom:458.077500px;}
.y8e{bottom:458.526000px;}
.y1c2{bottom:461.485500px;}
.y22d{bottom:461.664000px;}
.y183{bottom:464.617500px;}
.y28{bottom:467.124000px;}
.y12a{bottom:468.568500px;}
.y154{bottom:469.771500px;}
.y100{bottom:473.256000px;}
.y1f7{bottom:474.441000px;}
.y59{bottom:474.721500px;}
.ya4{bottom:475.563000px;}
.ycc{bottom:476.907000px;}
.y8d{bottom:477.355500px;}
.y22c{bottom:478.924500px;}
.y1c1{bottom:479.059500px;}
.y182{bottom:483.447000px;}
.ye{bottom:484.864502px;}
.y27{bottom:485.013000px;}
.y1b0{bottom:485.605500px;}
.y1f6{bottom:491.701500px;}
.y153{bottom:493.411500px;}
.y58{bottom:494.178000px;}
.ya3{bottom:494.392500px;}
.ycb{bottom:495.736500px;}
.y8c{bottom:496.185000px;}
.yff{bottom:496.896000px;}
.y181{bottom:502.276500px;}
.yd{bottom:502.864502px;}
.y26{bottom:502.900500px;}
.y125{bottom:503.176500px;}
.y1af{bottom:504.435000px;}
.y1f5{bottom:508.962000px;}
.yfe{bottom:513.334500px;}
.y22b{bottom:513.445500px;}
.y57{bottom:513.634500px;}
.yca{bottom:514.566000px;}
.y8b{bottom:515.014500px;}
.y152{bottom:517.053000px;}
.ya2{bottom:517.704000px;}
.y25{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.y180{bottom:521.106000px;}
.y1ae{bottom:523.264500px;}
.y1f4{bottom:526.222500px;}
.y22a{bottom:530.706000px;}
.y56{bottom:533.092500px;}
.yc9{bottom:533.395500px;}
.y8a{bottom:533.844000px;}
.yfd{bottom:536.976000px;}
.ya1{bottom:537.879000px;}
.y24{bottom:538.677000px;}
.yb{bottom:538.864499px;}
.y17f{bottom:539.935500px;}
.y124{bottom:540.280500px;}
.y151{bottom:540.693000px;}
.y1ad{bottom:542.094000px;}
.y1f3{bottom:543.483000px;}
.y229{bottom:547.966500px;}
.yc8{bottom:552.225000px;}
.y55{bottom:552.549000px;}
.y89{bottom:552.673500px;}
.ya{bottom:556.864499px;}
.y17e{bottom:558.765000px;}
.y123{bottom:559.110000px;}
.yfc{bottom:560.616000px;}
.y1f2{bottom:560.743500px;}
.y1ac{bottom:560.923500px;}
.y150{bottom:564.334500px;}
.y228{bottom:565.227000px;}
.yfa{bottom:568.836000px;}
.yc7{bottom:571.054500px;}
.y88{bottom:571.503000px;}
.y54{bottom:572.007000px;}
.yfb{bottom:577.054500px;}
.y17d{bottom:577.594500px;}
.y122{bottom:577.939500px;}
.y1f1{bottom:578.004000px;}
.y1ab{bottom:579.753000px;}
.y227{bottom:582.487500px;}
.y14f{bottom:587.974500px;}
.yc6{bottom:589.884000px;}
.y87{bottom:590.332500px;}
.y53{bottom:591.463500px;}
.y1f0{bottom:595.264500px;}
.y17c{bottom:596.424000px;}
.y121{bottom:596.769000px;}
.y1aa{bottom:598.582500px;}
.y226{bottom:599.746500px;}
.yf9{bottom:600.696000px;}
.yc5{bottom:608.713500px;}
.y86{bottom:609.162000px;}
.y52{bottom:610.920000px;}
.y14e{bottom:611.616000px;}
.y1ef{bottom:612.525000px;}
.y17b{bottom:615.253500px;}
.y120{bottom:615.598500px;}
.y225{bottom:617.007000px;}
.yf8{bottom:617.133000px;}
.y1a9{bottom:617.412000px;}
.yc4{bottom:627.543000px;}
.y85{bottom:627.991500px;}
.y1ee{bottom:629.784000px;}
.y51{bottom:630.378000px;}
.y17a{bottom:634.083000px;}
.y224{bottom:634.267500px;}
.y11f{bottom:634.428000px;}
.y14d{bottom:635.256000px;}
.y1a8{bottom:636.241500px;}
.yf7{bottom:640.774500px;}
.y9{bottom:645.510000px;}
.yc3{bottom:646.372500px;}
.y84{bottom:646.821000px;}
.y1ed{bottom:647.044500px;}
.y50{bottom:649.834500px;}
.y223{bottom:651.528000px;}
.y179{bottom:652.912500px;}
.y11e{bottom:653.257500px;}
.y1a7{bottom:655.071000px;}
.y14c{bottom:658.896000px;}
.y1ec{bottom:664.305000px;}
.yf6{bottom:664.414500px;}
.yc2{bottom:665.202000px;}
.y83{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y222{bottom:668.788500px;}
.y4f{bottom:669.291000px;}
.y178{bottom:671.742000px;}
.y11d{bottom:672.087000px;}
.y1a6{bottom:673.900500px;}
.yf5{bottom:680.853000px;}
.y1eb{bottom:681.565500px;}
.y14b{bottom:682.537500px;}
.yf0{bottom:684.031500px;}
.y82{bottom:684.480000px;}
.y221{bottom:686.049000px;}
.yc1{bottom:688.515000px;}
.y4e{bottom:688.749000px;}
.y177{bottom:690.571500px;}
.y1a5{bottom:692.730000px;}
.y11c{bottom:695.398500px;}
.y1ea{bottom:698.826000px;}
.yef{bottom:702.861000px;}
.y81{bottom:703.309500px;}
.yf4{bottom:704.494500px;}
.y14a{bottom:706.177500px;}
.y4d{bottom:708.205500px;}
.y176{bottom:709.401000px;}
.y1a4{bottom:711.559500px;}
.yf3{bottom:712.713000px;}
.y1e9{bottom:716.086500px;}
.y220{bottom:720.570000px;}
.yee{bottom:721.690500px;}
.y80{bottom:722.139000px;}
.y7{bottom:726.298500px;}
.y4c{bottom:727.663500px;}
.y175{bottom:728.230500px;}
.y149{bottom:729.819000px;}
.y1a3{bottom:730.389000px;}
.y1e8{bottom:733.347000px;}
.y11b{bottom:737.722500px;}
.y21f{bottom:737.829000px;}
.yed{bottom:740.520000px;}
.y7f{bottom:740.968500px;}
.yf2{bottom:744.573000px;}
.y4b{bottom:747.120000px;}
.y1a2{bottom:749.218500px;}
.y1e7{bottom:750.607500px;}
.y174{bottom:751.542000px;}
.y3{bottom:752.599495px;}
.y148{bottom:753.459000px;}
.y21e{bottom:755.089500px;}
.yec{bottom:759.349500px;}
.y7e{bottom:759.798000px;}
.y11a{bottom:761.364000px;}
.y1c0{bottom:763.833000px;}
.y4a{bottom:766.576500px;}
.y1e6{bottom:767.866500px;}
.y21d{bottom:772.350000px;}
.y147{bottom:777.100500px;}
.yeb{bottom:778.179000px;}
.y7d{bottom:778.627500px;}
.yf1{bottom:779.181000px;}
.y118{bottom:785.004000px;}
.y1e5{bottom:785.127000px;}
.y49{bottom:786.034500px;}
.y21c{bottom:789.610500px;}
.y117{bottom:793.224000px;}
.y1a1{bottom:794.680500px;}
.y173{bottom:795.510000px;}
.yea{bottom:797.008500px;}
.y7c{bottom:797.457000px;}
.y146{bottom:800.740500px;}
.y119{bottom:801.442500px;}
.y1e4{bottom:802.387500px;}
.y48{bottom:805.491000px;}
.y21b{bottom:806.871000px;}
.y172{bottom:814.668000px;}
.ye9{bottom:815.838000px;}
.y7b{bottom:816.286500px;}
.y1a0{bottom:818.320500px;}
.y1e3{bottom:819.648000px;}
.y21a{bottom:824.131500px;}
.y145{bottom:824.382000px;}
.y47{bottom:824.947500px;}
.y116{bottom:833.062500px;}
.y171{bottom:833.824500px;}
.ye8{bottom:834.667500px;}
.y7a{bottom:835.114500px;}
.y1e2{bottom:836.908500px;}
.y219{bottom:841.392000px;}
.y19f{bottom:841.962000px;}
.y46{bottom:844.405500px;}
.y170{bottom:845.779500px;}
.y144{bottom:848.022000px;}
.ye7{bottom:853.497000px;}
.y79{bottom:853.944000px;}
.y1e1{bottom:854.169000px;}
.y218{bottom:858.652500px;}
.y16f{bottom:864.937500px;}
.y19e{bottom:865.602000px;}
.y1e0{bottom:871.429500px;}
.y143{bottom:871.663500px;}
.ye6{bottom:872.326500px;}
.y78{bottom:872.773500px;}
.y115{bottom:874.651500px;}
.y217{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y45{bottom:882.990000px;}
.y16e{bottom:884.095500px;}
.y1df{bottom:888.690000px;}
.y19d{bottom:889.243500px;}
.ye5{bottom:891.156000px;}
.y77{bottom:891.603000px;}
.y216{bottom:893.172000px;}
.y142{bottom:895.303500px;}
.y114{bottom:898.293000px;}
.y16d{bottom:903.253500px;}
.y44{bottom:903.469500px;}
.y1de{bottom:905.950500px;}
.ye4{bottom:909.984000px;}
.y76{bottom:910.432500px;}
.y19c{bottom:912.883500px;}
.y43{bottom:915.270000px;}
.y141{bottom:918.945000px;}
.y113{bottom:921.933000px;}
.y16c{bottom:922.410000px;}
.y1dd{bottom:923.209500px;}
.y215{bottom:927.693000px;}
.ye3{bottom:928.813500px;}
.y75{bottom:929.262000px;}
.y42{bottom:935.749500px;}
.y19b{bottom:936.525000px;}
.y1dc{bottom:940.470000px;}
.y16b{bottom:941.568000px;}
.y140{bottom:942.585000px;}
.y214{bottom:944.953500px;}
.y112{bottom:945.574500px;}
.ye2{bottom:947.643000px;}
.y74{bottom:948.091500px;}
.y41{bottom:951.888000px;}
.y1db{bottom:957.730500px;}
.y19a{bottom:960.165000px;}
.y16a{bottom:960.726000px;}
.y213{bottom:962.214000px;}
.y13f{bottom:966.226500px;}
.ye1{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y73{bottom:966.921000px;}
.y111{bottom:969.214500px;}
.y1da{bottom:974.991000px;}
.y212{bottom:979.474500px;}
.y169{bottom:979.882500px;}
.y199{bottom:983.805000px;}
.ye0{bottom:985.302000px;}
.y72{bottom:985.750500px;}
.y13e{bottom:989.866500px;}
.y242{bottom:992.176500px;}
.y1d9{bottom:992.251500px;}
.y110{bottom:992.856000px;}
.y40{bottom:996.565500px;}
.y211{bottom:996.735000px;}
.y168{bottom:999.040500px;}
.ydf{bottom:1004.131500px;}
.y71{bottom:1004.580000px;}
.y198{bottom:1007.446500px;}
.y241{bottom:1009.437000px;}
.y1d8{bottom:1009.512000px;}
.y13d{bottom:1013.508000px;}
.y210{bottom:1013.995500px;}
.y10f{bottom:1016.496000px;}
.y166{bottom:1018.198500px;}
.y70{bottom:1023.409500px;}
.y165{bottom:1024.176000px;}
.y240{bottom:1026.697500px;}
.y1d7{bottom:1026.772500px;}
.yde{bottom:1027.444500px;}
.y167{bottom:1030.153500px;}
.y197{bottom:1031.086500px;}
.y20f{bottom:1031.254500px;}
.y3f{bottom:1036.485000px;}
.y13c{bottom:1037.148000px;}
.y10e{bottom:1040.137500px;}
.y6f{bottom:1042.239000px;}
.y1d6{bottom:1044.033000px;}
.y20e{bottom:1048.515000px;}
.y13b{bottom:1060.789500px;}
.y6e{bottom:1061.068500px;}
.y1d5{bottom:1061.292000px;}
.y164{bottom:1061.623500px;}
.y196{bottom:1062.706500px;}
.y10d{bottom:1063.777500px;}
.y3e{bottom:1064.728500px;}
.y20d{bottom:1065.775500px;}
.y1d4{bottom:1078.552500px;}
.y6d{bottom:1079.898000px;}
.y20c{bottom:1083.036000px;}
.y13a{bottom:1084.429500px;}
.y10c{bottom:1087.419000px;}
.y3d{bottom:1092.972000px;}
.y1d3{bottom:1095.813000px;}
.y6c{bottom:1098.727500px;}
.y20b{bottom:1100.296500px;}
.y6b{bottom:1117.557000px;}
.y10b{bottom:1119.037500px;}
.y3a{bottom:1136.460000px;}
.y6a{bottom:1177.662000px;}
.h13{height:25.930829px;}
.h10{height:26.110157px;}
.h22{height:27.729727px;}
.h19{height:28.811839px;}
.h18{height:30.106714px;}
.h20{height:30.252344px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h17{height:33.072749px;}
.h11{height:34.813397px;}
.h16{height:35.052500px;}
.h1b{height:38.896243px;}
.h12{height:39.165235px;}
.h23{height:39.434227px;}
.h1a{height:39.614278px;}
.h14{height:43.217759px;}
.h15{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h21{height:54.162344px;}
.hf{height:54.541601px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h1d{height:71.770243px;}
.h1c{height:72.045235px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h1e{height:78.352243px;}
.h1f{height:104.650243px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x65{left:62.541000px;}
.x67{left:66.789000px;}
.x64{left:70.747500px;}
.x4a{left:72.646500px;}
.x5e{left:74.325000px;}
.x68{left:75.555000px;}
.x28{left:78.234000px;}
.x63{left:79.681500px;}
.x2f{left:85.335000px;}
.x4f{left:89.458500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x27{left:128.844000px;}
.x56{left:138.511500px;}
.x59{left:139.690500px;}
.x57{left:172.573500px;}
.x55{left:176.997000px;}
.x54{left:186.015000px;}
.x58{left:187.602000px;}
.x53{left:194.118000px;}
.x4{left:203.484001px;}
.x5f{left:243.805500px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x60{left:252.409500px;}
.x3a{left:258.568500px;}
.x6b{left:262.068000px;}
.x75{left:264.072000px;}
.x45{left:265.693500px;}
.x74{left:268.356000px;}
.x9{left:269.914500px;}
.x3f{left:271.015500px;}
.x3c{left:274.182000px;}
.x3d{left:276.502500px;}
.x73{left:277.521000px;}
.x70{left:279.391500px;}
.xd{left:281.479500px;}
.x6e{left:282.747000px;}
.x71{left:285.363000px;}
.x39{left:289.945500px;}
.x3e{left:291.532500px;}
.x61{left:293.382000px;}
.x72{left:296.190000px;}
.x37{left:298.048500px;}
.x40{left:301.360500px;}
.xe{left:306.091500px;}
.x38{left:308.109000px;}
.xf{left:316.597500px;}
.xb{left:319.789500px;}
.x51{left:322.798500px;}
.x52{left:326.154000px;}
.xc{left:330.585000px;}
.x24{left:347.173500px;}
.x20{left:349.864500px;}
.x5a{left:353.034000px;}
.x66{left:357.684000px;}
.x6c{left:368.899500px;}
.x6d{left:381.192000px;}
.x25{left:386.164500px;}
.x6f{left:390.369000px;}
.x26{left:398.455500px;}
.x34{left:401.649000px;}
.x3b{left:435.433500px;}
.x33{left:439.918500px;}
.x3{left:454.959000px;}
.x46{left:461.361000px;}
.x47{left:473.652000px;}
.x2d{left:478.374000px;}
.x2a{left:482.509500px;}
.x2c{left:487.048500px;}
.x31{left:490.908000px;}
.x4c{left:500.272500px;}
.x41{left:502.236000px;}
.x4d{left:504.939000px;}
.x62{left:529.180500px;}
.x5b{left:532.978500px;}
.x10{left:574.411500px;}
.x30{left:575.424000px;}
.x11{left:581.217000px;}
.x2b{left:585.094500px;}
.x5c{left:593.356500px;}
.x5d{left:595.395000px;}
.x12{left:596.602500px;}
.x13{left:600.751500px;}
.x4b{left:611.016000px;}
.x2e{left:612.517500px;}
.x14{left:616.135500px;}
.x42{left:620.430000px;}
.x32{left:622.168500px;}
.x15{left:623.827500px;}
.x29{left:635.274000px;}
.x16{left:647.190000px;}
.x17{left:653.997000px;}
.x21{left:659.926500px;}
.x35{left:662.239500px;}
.x18{left:669.381000px;}
.x22{left:672.219000px;}
.x19{left:673.530000px;}
.x1a{left:681.294000px;}
.x1b{left:688.986000px;}
.x50{left:692.608500px;}
.x1c{left:699.441000px;}
.x1d{left:710.808000px;}
.x69{left:719.383500px;}
.x6a{left:731.674500px;}
.x1e{left:736.846500px;}
.x23{left:746.260500px;}
.x43{left:756.411000px;}
.x36{left:759.765000px;}
.x44{left:771.466500px;}
.x4e{left:775.705500px;}
.x48{left:791.205000px;}
.x49{left:803.496000px;}
.x1f{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.242667pt;}
.v6{vertical-align:6.384000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:21.253333pt;}
.v4{vertical-align:29.226667pt;}
.v7{vertical-align:58.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.002525pt;}
.ls20{letter-spacing:0.442457pt;}
.ls1f{letter-spacing:0.447791pt;}
.ls21{letter-spacing:0.570745pt;}
.ls1c{letter-spacing:0.576078pt;}
.ls1a{letter-spacing:0.637762pt;}
.ls5{letter-spacing:10.626533pt;}
.ls18{letter-spacing:12.486459pt;}
.ls1e{letter-spacing:12.592726pt;}
.lsf{letter-spacing:13.017797pt;}
.ls1d{letter-spacing:13.070931pt;}
.ls11{letter-spacing:13.124065pt;}
.ls9{letter-spacing:13.177199pt;}
.lsb{letter-spacing:13.230333pt;}
.ls6{letter-spacing:13.283467pt;}
.ls13{letter-spacing:13.336601pt;}
.lsd{letter-spacing:13.442868pt;}
.ls4{letter-spacing:13.496002pt;}
.ls15{letter-spacing:13.602270pt;}
.ls14{letter-spacing:13.761671pt;}
.lsc{letter-spacing:13.867939pt;}
.ls22{letter-spacing:14.027341pt;}
.ls19{letter-spacing:15.143152pt;}
.ls12{letter-spacing:15.833892pt;}
.ls8{letter-spacing:15.887026pt;}
.ls10{letter-spacing:17.215373pt;}
.ls23{letter-spacing:18.065515pt;}
.lse{letter-spacing:18.118649pt;}
.lsa{letter-spacing:18.278050pt;}
.ls7{letter-spacing:19.128192pt;}
.ls17{letter-spacing:20.881610pt;}
.ls16{letter-spacing:20.934743pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ls1b{letter-spacing:161.537382pt;}
.ws8e{word-spacing:-42.077867pt;}
.wsb{word-spacing:-20.194365pt;}
.ws28{word-spacing:-13.283467pt;}
.wsa0{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws59{word-spacing:-2.869229pt;}
.ws5a{word-spacing:-2.816095pt;}
.ws92{word-spacing:-2.603559pt;}
.wseb{word-spacing:-2.550426pt;}
.ws87{word-spacing:-2.444158pt;}
.ws7f{word-spacing:-2.178489pt;}
.ws41{word-spacing:-2.072221pt;}
.ws42{word-spacing:-2.019087pt;}
.wsdb{word-spacing:-1.965953pt;}
.ws80{word-spacing:-1.912819pt;}
.ws75{word-spacing:-1.859685pt;}
.ws5e{word-spacing:-1.753418pt;}
.ws11{word-spacing:-1.673728pt;}
.ws138{word-spacing:-1.530266pt;}
.ws43{word-spacing:-1.487748pt;}
.ws9c{word-spacing:-1.434614pt;}
.ws58{word-spacing:-1.381481pt;}
.ws97{word-spacing:-1.328347pt;}
.wsae{word-spacing:-1.275213pt;}
.ws76{word-spacing:-1.222079pt;}
.ws8b{word-spacing:-1.168945pt;}
.ws137{word-spacing:-1.147699pt;}
.ws9a{word-spacing:-1.115811pt;}
.ws4d{word-spacing:-1.009543pt;}
.ws73{word-spacing:-0.956410pt;}
.ws19{word-spacing:-0.908595pt;}
.ws8c{word-spacing:-0.903276pt;}
.ws90{word-spacing:-0.850142pt;}
.wsfa{word-spacing:-0.717312pt;}
.ws81{word-spacing:-0.531339pt;}
.ws74{word-spacing:-0.478205pt;}
.ws83{word-spacing:-0.425071pt;}
.ws47{word-spacing:-0.371937pt;}
.ws122{word-spacing:-0.334746pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws25{word-spacing:-0.265669pt;}
.wsee{word-spacing:-0.239104pt;}
.ws34{word-spacing:-0.212535pt;}
.wsf{word-spacing:-0.191283pt;}
.ws44{word-spacing:-0.159402pt;}
.ws12{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws101{word-spacing:-0.095642pt;}
.ws26{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.wsef{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.wsf4{word-spacing:0.095642pt;}
.ws36{word-spacing:0.106268pt;}
.ws9f{word-spacing:0.143462pt;}
.ws32{word-spacing:0.159402pt;}
.ws22{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws103{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws1a{word-spacing:0.286925pt;}
.ws60{word-spacing:0.318803pt;}
.ws1d{word-spacing:0.334746pt;}
.ws84{word-spacing:0.371937pt;}
.ws127{word-spacing:0.382566pt;}
.ws6a{word-spacing:0.425071pt;}
.ws6e{word-spacing:0.478205pt;}
.ws1c{word-spacing:0.478208pt;}
.ws96{word-spacing:0.531339pt;}
.wsfd{word-spacing:0.573850pt;}
.ws46{word-spacing:0.584473pt;}
.ws51{word-spacing:0.637606pt;}
.ws8f{word-spacing:0.690740pt;}
.wsf7{word-spacing:0.717312pt;}
.ws65{word-spacing:0.743874pt;}
.ws91{word-spacing:0.797008pt;}
.ws109{word-spacing:0.812954pt;}
.ws2f{word-spacing:0.850142pt;}
.ws10d{word-spacing:0.860774pt;}
.ws3e{word-spacing:0.903276pt;}
.ws11a{word-spacing:0.908595pt;}
.ws49{word-spacing:0.956410pt;}
.ws48{word-spacing:1.009543pt;}
.ws1e{word-spacing:1.052058pt;}
.ws6c{word-spacing:1.062677pt;}
.ws82{word-spacing:1.115811pt;}
.ws4a{word-spacing:1.168945pt;}
.ws33{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws20{word-spacing:1.243341pt;}
.ws3b{word-spacing:1.275213pt;}
.ws13{word-spacing:1.291162pt;}
.wsec{word-spacing:1.328347pt;}
.ws9d{word-spacing:1.381481pt;}
.wsa7{word-spacing:1.434614pt;}
.ws116{word-spacing:1.434624pt;}
.wsff{word-spacing:1.482445pt;}
.ws128{word-spacing:1.530266pt;}
.ws3d{word-spacing:1.540882pt;}
.ws39{word-spacing:1.594016pt;}
.ws14{word-spacing:1.625907pt;}
.ws38{word-spacing:1.647150pt;}
.ws50{word-spacing:1.700284pt;}
.ws4f{word-spacing:1.753418pt;}
.wsf1{word-spacing:1.817190pt;}
.ws52{word-spacing:1.859685pt;}
.ws30{word-spacing:1.912819pt;}
.ws108{word-spacing:1.912832pt;}
.ws62{word-spacing:1.965953pt;}
.ws57{word-spacing:2.019087pt;}
.ws1f{word-spacing:2.056294pt;}
.ws105{word-spacing:2.104115pt;}
.ws45{word-spacing:2.125355pt;}
.ws111{word-spacing:2.151936pt;}
.ws3a{word-spacing:2.178489pt;}
.ws6f{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws89{word-spacing:2.284756pt;}
.ws94{word-spacing:2.391024pt;}
.ws61{word-spacing:2.444158pt;}
.ws133{word-spacing:2.486682pt;}
.ws9b{word-spacing:2.497292pt;}
.ws7e{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.ws115{word-spacing:2.582323pt;}
.ws139{word-spacing:2.584188pt;}
.ws77{word-spacing:2.603559pt;}
.wse{word-spacing:2.626804pt;}
.ws99{word-spacing:2.656693pt;}
.wsf6{word-spacing:2.677965pt;}
.ws5c{word-spacing:2.709827pt;}
.wse9{word-spacing:2.762961pt;}
.ws24{word-spacing:2.816095pt;}
.ws12c{word-spacing:2.821427pt;}
.ws118{word-spacing:2.863565pt;}
.ws10e{word-spacing:2.865195pt;}
.wsf0{word-spacing:2.866509pt;}
.ws4e{word-spacing:2.869229pt;}
.wsa2{word-spacing:2.869248pt;}
.wsf3{word-spacing:2.961325pt;}
.ws12b{word-spacing:2.964890pt;}
.ws71{word-spacing:2.975497pt;}
.ws120{word-spacing:3.012710pt;}
.ws53{word-spacing:3.028630pt;}
.ws10{word-spacing:3.060531pt;}
.ws54{word-spacing:3.081764pt;}
.ws21{word-spacing:3.104569pt;}
.ws143{word-spacing:3.108352pt;}
.ws70{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws10f{word-spacing:3.203994pt;}
.ws4c{word-spacing:3.241166pt;}
.ws5d{word-spacing:3.294300pt;}
.ws69{word-spacing:3.347434pt;}
.ws4b{word-spacing:3.400567pt;}
.ws6b{word-spacing:3.453701pt;}
.ws31{word-spacing:3.506835pt;}
.ws88{word-spacing:3.613103pt;}
.ws63{word-spacing:3.666237pt;}
.ws3f{word-spacing:3.719371pt;}
.ws37{word-spacing:3.772505pt;}
.ws12e{word-spacing:3.777843pt;}
.ws13d{word-spacing:3.825664pt;}
.ws66{word-spacing:3.878772pt;}
.ws132{word-spacing:3.921306pt;}
.ws67{word-spacing:3.931906pt;}
.ws29{word-spacing:3.985040pt;}
.ws64{word-spacing:4.038174pt;}
.ws85{word-spacing:4.091308pt;}
.ws8a{word-spacing:4.144442pt;}
.ws72{word-spacing:4.250709pt;}
.ws1b{word-spacing:4.351693pt;}
.wsed{word-spacing:4.356977pt;}
.ws18{word-spacing:4.495155pt;}
.ws40{word-spacing:4.516379pt;}
.wsa1{word-spacing:4.622646pt;}
.ws8d{word-spacing:4.728914pt;}
.ws8{word-spacing:4.872362pt;}
.ws56{word-spacing:4.888316pt;}
.ws93{word-spacing:4.994583pt;}
.ws15{word-spacing:5.021184pt;}
.ws6d{word-spacing:5.100851pt;}
.ws7a{word-spacing:5.207119pt;}
.ws7d{word-spacing:5.260253pt;}
.ws78{word-spacing:5.313387pt;}
.ws141{word-spacing:5.642854pt;}
.wse8{word-spacing:5.685324pt;}
.wsf2{word-spacing:5.738496pt;}
.ws7b{word-spacing:5.791591pt;}
.wsa8{word-spacing:6.057261pt;}
.wsfc{word-spacing:6.455808pt;}
.ws98{word-spacing:6.482332pt;}
.ws5f{word-spacing:6.641733pt;}
.ws5b{word-spacing:6.694867pt;}
.ws79{word-spacing:6.854269pt;}
.ws13f{word-spacing:7.364403pt;}
.wsd9{word-spacing:7.598143pt;}
.ws86{word-spacing:7.704411pt;}
.ws95{word-spacing:8.554553pt;}
.ws6{word-spacing:8.740496pt;}
.ws2{word-spacing:9.261183pt;}
.ws13a{word-spacing:10.377114pt;}
.ws7{word-spacing:10.525789pt;}
.ws2c{word-spacing:10.587492pt;}
.ws123{word-spacing:11.572634pt;}
.ws114{word-spacing:11.620454pt;}
.ws130{word-spacing:11.716096pt;}
.ws124{word-spacing:11.763917pt;}
.ws113{word-spacing:11.811738pt;}
.wsfe{word-spacing:11.859558pt;}
.ws11c{word-spacing:11.895629pt;}
.ws12a{word-spacing:11.897148pt;}
.ws121{word-spacing:11.897344pt;}
.ws107{word-spacing:11.897711pt;}
.wsfb{word-spacing:11.898189pt;}
.ws136{word-spacing:11.899085pt;}
.ws10c{word-spacing:11.899853pt;}
.ws129{word-spacing:11.900032pt;}
.ws142{word-spacing:11.900399pt;}
.ws140{word-spacing:11.900919pt;}
.ws131{word-spacing:11.901414pt;}
.ws13c{word-spacing:11.901440pt;}
.ws11f{word-spacing:11.901534pt;}
.ws135{word-spacing:11.902327pt;}
.ws13b{word-spacing:11.903113pt;}
.ws10b{word-spacing:11.903915pt;}
.ws119{word-spacing:11.904444pt;}
.ws102{word-spacing:11.905903pt;}
.wsf9{word-spacing:11.907379pt;}
.ws125{word-spacing:11.907499pt;}
.ws11e{word-spacing:11.907780pt;}
.ws12f{word-spacing:11.955200pt;}
.wsf8{word-spacing:12.003021pt;}
.ws106{word-spacing:12.050842pt;}
.wsf5{word-spacing:12.098662pt;}
.ws11d{word-spacing:12.146483pt;}
.ws104{word-spacing:12.194304pt;}
.ws12d{word-spacing:12.242125pt;}
.ws126{word-spacing:12.289946pt;}
.ws10a{word-spacing:12.720333pt;}
.ws11b{word-spacing:12.815974pt;}
.ws117{word-spacing:13.007258pt;}
.ws7c{word-spacing:13.070931pt;}
.ws55{word-spacing:13.230333pt;}
.ws100{word-spacing:13.437645pt;}
.ws3{word-spacing:13.761632pt;}
.wsda{word-spacing:13.921073pt;}
.ws13e{word-spacing:14.059315pt;}
.ws112{word-spacing:14.107136pt;}
.ws9{word-spacing:14.282342pt;}
.ws134{word-spacing:14.394061pt;}
.ws110{word-spacing:15.111373pt;}
.ws68{word-spacing:15.355687pt;}
.ws5{word-spacing:19.857270pt;}
.wsbd{word-spacing:63.005958pt;}
.wsd2{word-spacing:69.341333pt;}
.wsc5{word-spacing:69.345363pt;}
.wsc0{word-spacing:73.010667pt;}
.wsaa{word-spacing:80.480000pt;}
.wsc9{word-spacing:83.276470pt;}
.wsc6{word-spacing:86.958637pt;}
.wsd7{word-spacing:88.300649pt;}
.wsbe{word-spacing:88.527725pt;}
.wsca{word-spacing:88.529708pt;}
.wsd6{word-spacing:88.541184pt;}
.wsd5{word-spacing:89.290576pt;}
.wsba{word-spacing:90.529222pt;}
.wsc1{word-spacing:91.101333pt;}
.wsbb{word-spacing:99.070890pt;}
.wsd1{word-spacing:101.227534pt;}
.wscd{word-spacing:102.196268pt;}
.wsd0{word-spacing:103.350271pt;}
.wsc4{word-spacing:106.139978pt;}
.wsc7{word-spacing:106.150534pt;}
.wscb{word-spacing:106.632000pt;}
.wsa5{word-spacing:108.979277pt;}
.wsc2{word-spacing:110.301333pt;}
.wsbf{word-spacing:110.306667pt;}
.wsd4{word-spacing:119.283853pt;}
.wsbc{word-spacing:120.674575pt;}
.wsce{word-spacing:121.697459pt;}
.wscf{word-spacing:125.379626pt;}
.wscc{word-spacing:125.477322pt;}
.wsd3{word-spacing:125.832000pt;}
.wsc3{word-spacing:129.506667pt;}
.wsc8{word-spacing:133.957603pt;}
.wsac{word-spacing:139.062886pt;}
.wsd8{word-spacing:144.571523pt;}
.wse7{word-spacing:152.901726pt;}
.wsab{word-spacing:159.530189pt;}
.wsa4{word-spacing:164.790477pt;}
.wsa3{word-spacing:164.838298pt;}
.wsa9{word-spacing:178.129067pt;}
.wsad{word-spacing:178.581367pt;}
.wsaf{word-spacing:180.380058pt;}
.wsb8{word-spacing:182.197333pt;}
.wsb7{word-spacing:182.202667pt;}
.wse1{word-spacing:183.392000pt;}
.wsb4{word-spacing:201.564672pt;}
.wse4{word-spacing:202.760192pt;}
.wse6{word-spacing:203.353762pt;}
.wse3{word-spacing:204.694912pt;}
.wsde{word-spacing:211.338428pt;}
.wsdf{word-spacing:213.205965pt;}
.wsb9{word-spacing:213.519872pt;}
.wsea{word-spacing:214.524109pt;}
.wse5{word-spacing:220.618231pt;}
.wsb5{word-spacing:221.505946pt;}
.wsdc{word-spacing:221.931042pt;}
.wsdd{word-spacing:222.701466pt;}
.wsb3{word-spacing:258.997333pt;}
.wsa6{word-spacing:264.544666pt;}
.wse2{word-spacing:271.066786pt;}
.wsb6{word-spacing:273.030596pt;}
.wsb2{word-spacing:297.397333pt;}
.wsb0{word-spacing:320.925389pt;}
.wse0{word-spacing:336.992000pt;}
.wsb1{word-spacing:349.645773pt;}
.ws9e{word-spacing:570.406502pt;}
._16{margin-left:-7.013670pt;}
._e{margin-left:-6.073242pt;}
._1{margin-left:-4.426038pt;}
._0{margin-left:-2.752326pt;}
._5{margin-left:-1.301776pt;}
._1d{width:1.009869pt;}
._7{width:2.664966pt;}
._17{width:4.319809pt;}
._2{width:10.934918pt;}
._10{width:12.676115pt;}
._c{width:13.676749pt;}
._9{width:14.585344pt;}
._d{width:15.791478pt;}
._f{width:17.029401pt;}
._19{width:17.959239pt;}
._a{width:19.032678pt;}
._14{width:20.058031pt;}
._13{width:21.508573pt;}
._3{width:22.502128pt;}
._1b{width:24.032435pt;}
._b{width:25.058099pt;}
._15{width:26.620067pt;}
._4{width:27.783619pt;}
._6{width:29.648896pt;}
._1e{width:31.418043pt;}
._1a{width:32.517926pt;}
._60{width:33.703553pt;}
._39{width:35.307451pt;}
._18{width:37.459376pt;}
._1c{width:40.753737pt;}
._8{width:48.359994pt;}
._45{width:85.121024pt;}
._27{width:86.412186pt;}
._3a{width:92.100898pt;}
._55{width:96.257037pt;}
._28{width:97.219686pt;}
._3b{width:101.858304pt;}
._58{width:115.941930pt;}
._53{width:128.922821pt;}
._3c{width:130.550784pt;}
._59{width:134.678026pt;}
._54{width:139.290032pt;}
._3d{width:142.265481pt;}
._56{width:150.659817pt;}
._35{width:152.780817pt;}
._44{width:154.461184pt;}
._5c{width:162.877645pt;}
._5e{width:164.691695pt;}
._57{width:169.416848pt;}
._42{width:171.485389pt;}
._43{width:174.928486pt;}
._30{width:176.841318pt;}
._38{width:178.026249pt;}
._52{width:180.858266pt;}
._4e{width:183.249306pt;}
._3f{width:190.508689pt;}
._2b{width:194.726298pt;}
._48{width:195.682714pt;}
._21{width:198.328337pt;}
._41{width:209.885491pt;}
._3e{width:213.328589pt;}
._2c{width:222.414541pt;}
._40{width:228.296499pt;}
._4d{width:232.818347pt;}
._33{width:234.130637pt;}
._26{width:244.316467pt;}
._2f{width:245.368525pt;}
._20{width:247.149764pt;}
._31{width:253.641523pt;}
._34{width:256.462950pt;}
._2a{width:258.280141pt;}
._24{width:259.619123pt;}
._46{width:261.053747pt;}
._22{width:272.400529pt;}
._25{width:295.771648pt;}
._2e{width:301.414502pt;}
._47{width:302.323098pt;}
._50{width:304.044646pt;}
._32{width:307.057357pt;}
._4b{width:310.309171pt;}
._37{width:311.456870pt;}
._5b{width:316.573696pt;}
._4f{width:328.720179pt;}
._29{width:330.250445pt;}
._51{width:338.430618pt;}
._4a{width:348.661453pt;}
._36{width:349.904794pt;}
._4c{width:352.152371pt;}
._2d{width:366.020403pt;}
._5d{width:388.257075pt;}
._49{width:416.758272pt;}
._5a{width:495.471309pt;}
._5f{width:524.689818pt;}
._11{width:783.365189pt;}
._1f{width:844.685315pt;}
._23{width:2234.103783pt;}
._12{width:2255.357117pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.755733pt;}
.fs9{font-size:40.381867pt;}
.fsd{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:8.207950pt;}
.y3b{bottom:23.914454pt;}
.y69{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y39{bottom:93.018667pt;}
.y1bf{bottom:97.354667pt;}
.y68{bottom:101.809333pt;}
.yb7{bottom:104.713333pt;}
.yda{bottom:105.510667pt;}
.yd7{bottom:105.909333pt;}
.ya0{bottom:106.308000pt;}
.y38{bottom:108.920000pt;}
.y163{bottom:109.052000pt;}
.y195{bottom:111.722667pt;}
.y1d2{bottom:112.445333pt;}
.y1be{bottom:114.092000pt;}
.y67{bottom:118.546667pt;}
.y23f{bottom:118.861333pt;}
.y139{bottom:119.857333pt;}
.yb6{bottom:121.450667pt;}
.yd9{bottom:122.248000pt;}
.yc0{bottom:122.646667pt;}
.y9f{bottom:123.045333pt;}
.y23{bottom:123.790666pt;}
.y37{bottom:124.820000pt;}
.y162{bottom:125.789333pt;}
.ydd{bottom:126.273333pt;}
.y1d1{bottom:128.066667pt;}
.y194{bottom:128.460000pt;}
.y20a{bottom:130.218667pt;}
.y1bd{bottom:130.829333pt;}
.y23e{bottom:134.202667pt;}
.y66{bottom:135.284000pt;}
.y138{bottom:136.594667pt;}
.yb5{bottom:138.188000pt;}
.ybf{bottom:139.384000pt;}
.y9e{bottom:139.782667pt;}
.y36{bottom:140.720000pt;}
.y161{bottom:142.526667pt;}
.yd8{bottom:142.970667pt;}
.y193{bottom:145.197333pt;}
.y209{bottom:145.561333pt;}
.y1bc{bottom:147.566667pt;}
.y23d{bottom:149.545333pt;}
.y1d0{bottom:151.658667pt;}
.y65{bottom:152.021333pt;}
.y137{bottom:153.332000pt;}
.yb4{bottom:154.925333pt;}
.ybe{bottom:156.121333pt;}
.y9d{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.y160{bottom:159.264000pt;}
.y208{bottom:160.902667pt;}
.y192{bottom:161.934667pt;}
.y23c{bottom:164.888000pt;}
.y1cf{bottom:167.280000pt;}
.y1bb{bottom:168.289333pt;}
.y64{bottom:168.758667pt;}
.y136{bottom:170.069333pt;}
.yb3{bottom:171.662667pt;}
.y34{bottom:172.521333pt;}
.ybd{bottom:172.858667pt;}
.y9c{bottom:173.257333pt;}
.y1a{bottom:175.052000pt;}
.y15f{bottom:176.001333pt;}
.y207{bottom:176.245333pt;}
.y191{bottom:178.672000pt;}
.y23b{bottom:180.230667pt;}
.y63{bottom:185.496000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y135{bottom:186.806667pt;}
.yb2{bottom:188.400000pt;}
.y33{bottom:188.421333pt;}
.ybc{bottom:189.596000pt;}
.y9b{bottom:189.994667pt;}
.y1ce{bottom:190.870667pt;}
.y206{bottom:191.588000pt;}
.y15e{bottom:192.738667pt;}
.y190{bottom:195.409333pt;}
.y23a{bottom:195.573333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y62{bottom:202.233333pt;}
.y134{bottom:203.544000pt;}
.y32{bottom:204.322667pt;}
.yb1{bottom:205.137333pt;}
.y1ba{bottom:205.910667pt;}
.ybb{bottom:206.333333pt;}
.y9a{bottom:206.732000pt;}
.y205{bottom:206.930667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y15d{bottom:209.476000pt;}
.y239{bottom:210.916000pt;}
.y18f{bottom:212.145333pt;}
.y1cd{bottom:214.462667pt;}
.y61{bottom:218.970667pt;}
.y133{bottom:220.281333pt;}
.yb0{bottom:221.874667pt;}
.y204{bottom:222.273333pt;}
.yba{bottom:223.070667pt;}
.y99{bottom:223.469333pt;}
.y238{bottom:226.258667pt;}
.y10a{bottom:226.702667pt;}
.y1b9{bottom:226.924000pt;}
.y18e{bottom:228.882667pt;}
.y1cc{bottom:230.084000pt;}
.y15c{bottom:230.198667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y60{bottom:235.708000pt;}
.y132{bottom:237.018667pt;}
.y203{bottom:237.616000pt;}
.yaf{bottom:238.612000pt;}
.yb9{bottom:239.808000pt;}
.y98{bottom:240.206667pt;}
.y237{bottom:241.601333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y109{bottom:243.440000pt;}
.y18d{bottom:245.620000pt;}
.y1b8{bottom:247.938667pt;}
.y5f{bottom:252.445333pt;}
.y202{bottom:252.958667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1cb{bottom:253.676000pt;}
.y131{bottom:253.756000pt;}
.yae{bottom:255.349333pt;}
.yd6{bottom:256.545333pt;}
.y97{bottom:256.944000pt;}
.y108{bottom:260.177333pt;}
.yb8{bottom:260.529333pt;}
.y18c{bottom:262.357333pt;}
.y31{bottom:264.148000pt;}
.y201{bottom:268.301333pt;}
.y1b7{bottom:268.952000pt;}
.y1ca{bottom:269.297333pt;}
.y15b{bottom:270.476000pt;}
.yad{bottom:272.086667pt;}
.y236{bottom:272.285333pt;}
.y5e{bottom:273.168000pt;}
.yd5{bottom:273.282667pt;}
.y96{bottom:273.681333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ydc{bottom:276.072000pt;}
.y107{bottom:276.914667pt;}
.y18b{bottom:279.094667pt;}
.y30{bottom:280.048000pt;}
.y200{bottom:283.644000pt;}
.y1c9{bottom:284.918667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y235{bottom:287.628000pt;}
.yac{bottom:288.824000pt;}
.y1b6{bottom:289.966667pt;}
.yd4{bottom:290.020000pt;}
.y95{bottom:290.417333pt;}
.y15a{bottom:291.490667pt;}
.y106{bottom:293.652000pt;}
.ydb{bottom:294.004000pt;}
.y18a{bottom:295.832000pt;}
.y2f{bottom:295.948000pt;}
.y130{bottom:296.822667pt;}
.y1ff{bottom:298.985333pt;}
.y1c8{bottom:300.540000pt;}
.y234{bottom:302.970667pt;}
.yab{bottom:305.561333pt;}
.yd3{bottom:306.757333pt;}
.y94{bottom:307.154667pt;}
.y11{bottom:309.452000pt;}
.y105{bottom:310.389333pt;}
.y1b5{bottom:310.980000pt;}
.y2e{bottom:311.849333pt;}
.y159{bottom:312.504000pt;}
.y189{bottom:312.569333pt;}
.y1fe{bottom:314.328000pt;}
.y12f{bottom:317.837333pt;}
.y233{bottom:318.313333pt;}
.yaa{bottom:322.298667pt;}
.yd2{bottom:323.494667pt;}
.y93{bottom:323.892000pt;}
.y1c7{bottom:324.132000pt;}
.y104{bottom:327.126667pt;}
.y188{bottom:329.306667pt;}
.y1fd{bottom:329.670667pt;}
.y1b4{bottom:331.994667pt;}
.y158{bottom:333.518667pt;}
.y232{bottom:333.656000pt;}
.y2d{bottom:335.720000pt;}
.y5d{bottom:336.853333pt;}
.y12e{bottom:338.850667pt;}
.ya9{bottom:339.036000pt;}
.yd1{bottom:340.232000pt;}
.y92{bottom:340.629333pt;}
.y10{bottom:343.809333pt;}
.y1fc{bottom:345.013333pt;}
.y187{bottom:346.044000pt;}
.y1c6{bottom:347.724000pt;}
.y103{bottom:347.849333pt;}
.y231{bottom:348.998667pt;}
.y2c{bottom:351.620000pt;}
.y1b3{bottom:353.008000pt;}
.y5c{bottom:354.148000pt;}
.y157{bottom:354.532000pt;}
.ya8{bottom:355.773333pt;}
.yd0{bottom:356.968000pt;}
.y91{bottom:357.366667pt;}
.y12d{bottom:359.865333pt;}
.y1fb{bottom:360.356000pt;}
.yf{bottom:362.706666pt;}
.y186{bottom:362.781333pt;}
.y1c5{bottom:363.345333pt;}
.y230{bottom:364.341333pt;}
.y102{bottom:365.782667pt;}
.y2b{bottom:367.520000pt;}
.ya7{bottom:372.510667pt;}
.ycf{bottom:373.705333pt;}
.y1b2{bottom:374.022667pt;}
.y90{bottom:374.104000pt;}
.y156{bottom:375.546667pt;}
.y1fa{bottom:375.698667pt;}
.y1c4{bottom:378.966667pt;}
.y185{bottom:379.518667pt;}
.y22f{bottom:379.684000pt;}
.y12c{bottom:380.878667pt;}
.y2a{bottom:383.421333pt;}
.y5b{bottom:387.384000pt;}
.ya6{bottom:389.248000pt;}
.yce{bottom:390.442667pt;}
.y129{bottom:390.669333pt;}
.y8f{bottom:390.841333pt;}
.y1f9{bottom:391.041333pt;}
.y127{bottom:392.130667pt;}
.y1c3{bottom:394.588000pt;}
.y22e{bottom:395.025333pt;}
.y12b{bottom:395.490667pt;}
.y184{bottom:396.256000pt;}
.y155{bottom:396.560000pt;}
.y126{bottom:397.974667pt;}
.y29{bottom:399.321333pt;}
.y1b1{bottom:402.128000pt;}
.y5a{bottom:404.678667pt;}
.y128{bottom:405.281333pt;}
.ya5{bottom:405.985333pt;}
.y101{bottom:406.060000pt;}
.y1f8{bottom:406.384000pt;}
.ycd{bottom:407.180000pt;}
.y8e{bottom:407.578667pt;}
.y1c2{bottom:410.209333pt;}
.y22d{bottom:410.368000pt;}
.y183{bottom:412.993333pt;}
.y28{bottom:415.221333pt;}
.y12a{bottom:416.505333pt;}
.y154{bottom:417.574667pt;}
.y100{bottom:420.672000pt;}
.y1f7{bottom:421.725333pt;}
.y59{bottom:421.974667pt;}
.ya4{bottom:422.722667pt;}
.ycc{bottom:423.917333pt;}
.y8d{bottom:424.316000pt;}
.y22c{bottom:425.710667pt;}
.y1c1{bottom:425.830667pt;}
.y182{bottom:429.730667pt;}
.ye{bottom:430.990669pt;}
.y27{bottom:431.122667pt;}
.y1b0{bottom:431.649333pt;}
.y1f6{bottom:437.068000pt;}
.y153{bottom:438.588000pt;}
.y58{bottom:439.269333pt;}
.ya3{bottom:439.460000pt;}
.ycb{bottom:440.654667pt;}
.y8c{bottom:441.053333pt;}
.yff{bottom:441.685333pt;}
.y181{bottom:446.468000pt;}
.yd{bottom:446.990669pt;}
.y26{bottom:447.022667pt;}
.y125{bottom:447.268000pt;}
.y1af{bottom:448.386667pt;}
.y1f5{bottom:452.410667pt;}
.yfe{bottom:456.297333pt;}
.y22b{bottom:456.396000pt;}
.y57{bottom:456.564000pt;}
.yca{bottom:457.392000pt;}
.y8b{bottom:457.790667pt;}
.y152{bottom:459.602667pt;}
.ya2{bottom:460.181333pt;}
.y25{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.y180{bottom:463.205333pt;}
.y1ae{bottom:465.124000pt;}
.y1f4{bottom:467.753333pt;}
.y22a{bottom:471.738667pt;}
.y56{bottom:473.860000pt;}
.yc9{bottom:474.129333pt;}
.y8a{bottom:474.528000pt;}
.yfd{bottom:477.312000pt;}
.ya1{bottom:478.114667pt;}
.y24{bottom:478.824000pt;}
.yb{bottom:478.990666pt;}
.y17f{bottom:479.942667pt;}
.y124{bottom:480.249333pt;}
.y151{bottom:480.616000pt;}
.y1ad{bottom:481.861333pt;}
.y1f3{bottom:483.096000pt;}
.y229{bottom:487.081333pt;}
.yc8{bottom:490.866667pt;}
.y55{bottom:491.154667pt;}
.y89{bottom:491.265333pt;}
.ya{bottom:494.990666pt;}
.y17e{bottom:496.680000pt;}
.y123{bottom:496.986667pt;}
.yfc{bottom:498.325333pt;}
.y1f2{bottom:498.438667pt;}
.y1ac{bottom:498.598667pt;}
.y150{bottom:501.630667pt;}
.y228{bottom:502.424000pt;}
.yfa{bottom:505.632000pt;}
.yc7{bottom:507.604000pt;}
.y88{bottom:508.002667pt;}
.y54{bottom:508.450667pt;}
.yfb{bottom:512.937333pt;}
.y17d{bottom:513.417333pt;}
.y122{bottom:513.724000pt;}
.y1f1{bottom:513.781333pt;}
.y1ab{bottom:515.336000pt;}
.y227{bottom:517.766667pt;}
.y14f{bottom:522.644000pt;}
.yc6{bottom:524.341333pt;}
.y87{bottom:524.740000pt;}
.y53{bottom:525.745333pt;}
.y1f0{bottom:529.124000pt;}
.y17c{bottom:530.154667pt;}
.y121{bottom:530.461333pt;}
.y1aa{bottom:532.073333pt;}
.y226{bottom:533.108000pt;}
.yf9{bottom:533.952000pt;}
.yc5{bottom:541.078667pt;}
.y86{bottom:541.477333pt;}
.y52{bottom:543.040000pt;}
.y14e{bottom:543.658667pt;}
.y1ef{bottom:544.466667pt;}
.y17b{bottom:546.892000pt;}
.y120{bottom:547.198667pt;}
.y225{bottom:548.450667pt;}
.yf8{bottom:548.562667pt;}
.y1a9{bottom:548.810667pt;}
.yc4{bottom:557.816000pt;}
.y85{bottom:558.214667pt;}
.y1ee{bottom:559.808000pt;}
.y51{bottom:560.336000pt;}
.y17a{bottom:563.629333pt;}
.y224{bottom:563.793333pt;}
.y11f{bottom:563.936000pt;}
.y14d{bottom:564.672000pt;}
.y1a8{bottom:565.548000pt;}
.yf7{bottom:569.577333pt;}
.y9{bottom:573.786667pt;}
.yc3{bottom:574.553333pt;}
.y84{bottom:574.952000pt;}
.y1ed{bottom:575.150667pt;}
.y50{bottom:577.630667pt;}
.y223{bottom:579.136000pt;}
.y179{bottom:580.366667pt;}
.y11e{bottom:580.673333pt;}
.y1a7{bottom:582.285333pt;}
.y14c{bottom:585.685333pt;}
.y1ec{bottom:590.493333pt;}
.yf6{bottom:590.590667pt;}
.yc2{bottom:591.290667pt;}
.y83{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y222{bottom:594.478667pt;}
.y4f{bottom:594.925333pt;}
.y178{bottom:597.104000pt;}
.y11d{bottom:597.410667pt;}
.y1a6{bottom:599.022667pt;}
.yf5{bottom:605.202667pt;}
.y1eb{bottom:605.836000pt;}
.y14b{bottom:606.700000pt;}
.yf0{bottom:608.028000pt;}
.y82{bottom:608.426667pt;}
.y221{bottom:609.821333pt;}
.yc1{bottom:612.013333pt;}
.y4e{bottom:612.221333pt;}
.y177{bottom:613.841333pt;}
.y1a5{bottom:615.760000pt;}
.y11c{bottom:618.132000pt;}
.y1ea{bottom:621.178667pt;}
.yef{bottom:624.765333pt;}
.y81{bottom:625.164000pt;}
.yf4{bottom:626.217333pt;}
.y14a{bottom:627.713333pt;}
.y4d{bottom:629.516000pt;}
.y176{bottom:630.578667pt;}
.y1a4{bottom:632.497333pt;}
.yf3{bottom:633.522667pt;}
.y1e9{bottom:636.521333pt;}
.y220{bottom:640.506667pt;}
.yee{bottom:641.502667pt;}
.y80{bottom:641.901333pt;}
.y7{bottom:645.598667pt;}
.y4c{bottom:646.812000pt;}
.y175{bottom:647.316000pt;}
.y149{bottom:648.728000pt;}
.y1a3{bottom:649.234667pt;}
.y1e8{bottom:651.864000pt;}
.y11b{bottom:655.753333pt;}
.y21f{bottom:655.848000pt;}
.yed{bottom:658.240000pt;}
.y7f{bottom:658.638667pt;}
.yf2{bottom:661.842667pt;}
.y4b{bottom:664.106667pt;}
.y1a2{bottom:665.972000pt;}
.y1e7{bottom:667.206667pt;}
.y174{bottom:668.037333pt;}
.y3{bottom:668.977329pt;}
.y148{bottom:669.741333pt;}
.y21e{bottom:671.190667pt;}
.yec{bottom:674.977333pt;}
.y7e{bottom:675.376000pt;}
.y11a{bottom:676.768000pt;}
.y1c0{bottom:678.962667pt;}
.y4a{bottom:681.401333pt;}
.y1e6{bottom:682.548000pt;}
.y21d{bottom:686.533333pt;}
.y147{bottom:690.756000pt;}
.yeb{bottom:691.714667pt;}
.y7d{bottom:692.113333pt;}
.yf1{bottom:692.605333pt;}
.y118{bottom:697.781333pt;}
.y1e5{bottom:697.890667pt;}
.y49{bottom:698.697333pt;}
.y21c{bottom:701.876000pt;}
.y117{bottom:705.088000pt;}
.y1a1{bottom:706.382667pt;}
.y173{bottom:707.120000pt;}
.yea{bottom:708.452000pt;}
.y7c{bottom:708.850667pt;}
.y146{bottom:711.769333pt;}
.y119{bottom:712.393333pt;}
.y1e4{bottom:713.233333pt;}
.y48{bottom:715.992000pt;}
.y21b{bottom:717.218667pt;}
.y172{bottom:724.149333pt;}
.ye9{bottom:725.189333pt;}
.y7b{bottom:725.588000pt;}
.y1a0{bottom:727.396000pt;}
.y1e3{bottom:728.576000pt;}
.y21a{bottom:732.561333pt;}
.y145{bottom:732.784000pt;}
.y47{bottom:733.286667pt;}
.y116{bottom:740.500000pt;}
.y171{bottom:741.177333pt;}
.ye8{bottom:741.926667pt;}
.y7a{bottom:742.324000pt;}
.y1e2{bottom:743.918667pt;}
.y219{bottom:747.904000pt;}
.y19f{bottom:748.410667pt;}
.y46{bottom:750.582667pt;}
.y170{bottom:751.804000pt;}
.y144{bottom:753.797333pt;}
.ye7{bottom:758.664000pt;}
.y79{bottom:759.061333pt;}
.y1e1{bottom:759.261333pt;}
.y218{bottom:763.246667pt;}
.y16f{bottom:768.833333pt;}
.y19e{bottom:769.424000pt;}
.y1e0{bottom:774.604000pt;}
.y143{bottom:774.812000pt;}
.ye6{bottom:775.401333pt;}
.y78{bottom:775.798667pt;}
.y115{bottom:777.468000pt;}
.y217{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y45{bottom:784.880000pt;}
.y16e{bottom:785.862667pt;}
.y1df{bottom:789.946667pt;}
.y19d{bottom:790.438667pt;}
.ye5{bottom:792.138667pt;}
.y77{bottom:792.536000pt;}
.y216{bottom:793.930667pt;}
.y142{bottom:795.825333pt;}
.y114{bottom:798.482667pt;}
.y16d{bottom:802.892000pt;}
.y44{bottom:803.084000pt;}
.y1de{bottom:805.289333pt;}
.ye4{bottom:808.874667pt;}
.y76{bottom:809.273333pt;}
.y19c{bottom:811.452000pt;}
.y43{bottom:813.573333pt;}
.y141{bottom:816.840000pt;}
.y113{bottom:819.496000pt;}
.y16c{bottom:819.920000pt;}
.y1dd{bottom:820.630667pt;}
.y215{bottom:824.616000pt;}
.ye3{bottom:825.612000pt;}
.y75{bottom:826.010667pt;}
.y42{bottom:831.777333pt;}
.y19b{bottom:832.466667pt;}
.y1dc{bottom:835.973333pt;}
.y16b{bottom:836.949333pt;}
.y140{bottom:837.853333pt;}
.y214{bottom:839.958667pt;}
.y112{bottom:840.510667pt;}
.ye2{bottom:842.349333pt;}
.y74{bottom:842.748000pt;}
.y41{bottom:846.122667pt;}
.y1db{bottom:851.316000pt;}
.y19a{bottom:853.480000pt;}
.y16a{bottom:853.978667pt;}
.y213{bottom:855.301333pt;}
.y13f{bottom:858.868000pt;}
.ye1{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:859.485333pt;}
.y111{bottom:861.524000pt;}
.y1da{bottom:866.658667pt;}
.y212{bottom:870.644000pt;}
.y169{bottom:871.006667pt;}
.y199{bottom:874.493333pt;}
.ye0{bottom:875.824000pt;}
.y72{bottom:876.222667pt;}
.y13e{bottom:879.881333pt;}
.y242{bottom:881.934667pt;}
.y1d9{bottom:882.001333pt;}
.y110{bottom:882.538667pt;}
.y40{bottom:885.836000pt;}
.y211{bottom:885.986667pt;}
.y168{bottom:888.036000pt;}
.ydf{bottom:892.561333pt;}
.y71{bottom:892.960000pt;}
.y198{bottom:895.508000pt;}
.y241{bottom:897.277333pt;}
.y1d8{bottom:897.344000pt;}
.y13d{bottom:900.896000pt;}
.y210{bottom:901.329333pt;}
.y10f{bottom:903.552000pt;}
.y166{bottom:905.065333pt;}
.y70{bottom:909.697333pt;}
.y165{bottom:910.378667pt;}
.y240{bottom:912.620000pt;}
.y1d7{bottom:912.686667pt;}
.yde{bottom:913.284000pt;}
.y167{bottom:915.692000pt;}
.y197{bottom:916.521333pt;}
.y20f{bottom:916.670667pt;}
.y3f{bottom:921.320000pt;}
.y13c{bottom:921.909333pt;}
.y10e{bottom:924.566667pt;}
.y6f{bottom:926.434667pt;}
.y1d6{bottom:928.029333pt;}
.y20e{bottom:932.013333pt;}
.y13b{bottom:942.924000pt;}
.y6e{bottom:943.172000pt;}
.y1d5{bottom:943.370667pt;}
.y164{bottom:943.665333pt;}
.y196{bottom:944.628000pt;}
.y10d{bottom:945.580000pt;}
.y3e{bottom:946.425333pt;}
.y20d{bottom:947.356000pt;}
.y1d4{bottom:958.713333pt;}
.y6d{bottom:959.909333pt;}
.y20c{bottom:962.698667pt;}
.y13a{bottom:963.937333pt;}
.y10c{bottom:966.594667pt;}
.y3d{bottom:971.530667pt;}
.y1d3{bottom:974.056000pt;}
.y6c{bottom:976.646667pt;}
.y20b{bottom:978.041333pt;}
.y6b{bottom:993.384000pt;}
.y10b{bottom:994.700000pt;}
.y3a{bottom:1010.186667pt;}
.y6a{bottom:1046.810667pt;}
.h13{height:23.049626pt;}
.h10{height:23.209028pt;}
.h22{height:24.648646pt;}
.h19{height:25.610524pt;}
.h18{height:26.761523pt;}
.h20{height:26.890973pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h17{height:29.397999pt;}
.h11{height:30.945242pt;}
.h16{height:31.157778pt;}
.h1b{height:34.574438pt;}
.h12{height:34.813542pt;}
.h23{height:35.052646pt;}
.h1a{height:35.212691pt;}
.h14{height:38.415786pt;}
.h15{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h21{height:48.144306pt;}
.hf{height:48.481423pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h1d{height:63.795772pt;}
.h1c{height:64.040209pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h1e{height:69.646438pt;}
.h1f{height:93.022438pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x65{left:55.592000pt;}
.x67{left:59.368000pt;}
.x64{left:62.886667pt;}
.x4a{left:64.574667pt;}
.x5e{left:66.066667pt;}
.x68{left:67.160000pt;}
.x28{left:69.541333pt;}
.x63{left:70.828000pt;}
.x2f{left:75.853333pt;}
.x4f{left:79.518667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x27{left:114.528000pt;}
.x56{left:123.121333pt;}
.x59{left:124.169333pt;}
.x57{left:153.398667pt;}
.x55{left:157.330667pt;}
.x54{left:165.346667pt;}
.x58{left:166.757333pt;}
.x53{left:172.549333pt;}
.x4{left:180.874667pt;}
.x5f{left:216.716000pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x60{left:224.364000pt;}
.x3a{left:229.838667pt;}
.x6b{left:232.949333pt;}
.x75{left:234.730667pt;}
.x45{left:236.172000pt;}
.x74{left:238.538667pt;}
.x9{left:239.924000pt;}
.x3f{left:240.902667pt;}
.x3c{left:243.717333pt;}
.x3d{left:245.780000pt;}
.x73{left:246.685333pt;}
.x70{left:248.348000pt;}
.xd{left:250.204000pt;}
.x6e{left:251.330667pt;}
.x71{left:253.656000pt;}
.x39{left:257.729333pt;}
.x3e{left:259.140000pt;}
.x61{left:260.784000pt;}
.x72{left:263.280000pt;}
.x37{left:264.932000pt;}
.x40{left:267.876000pt;}
.xe{left:272.081333pt;}
.x38{left:273.874667pt;}
.xf{left:281.420000pt;}
.xb{left:284.257333pt;}
.x51{left:286.932000pt;}
.x52{left:289.914667pt;}
.xc{left:293.853333pt;}
.x24{left:308.598667pt;}
.x20{left:310.990667pt;}
.x5a{left:313.808000pt;}
.x66{left:317.941333pt;}
.x6c{left:327.910667pt;}
.x6d{left:338.837333pt;}
.x25{left:343.257333pt;}
.x6f{left:346.994667pt;}
.x26{left:354.182667pt;}
.x34{left:357.021333pt;}
.x3b{left:387.052000pt;}
.x33{left:391.038667pt;}
.x3{left:404.408000pt;}
.x46{left:410.098667pt;}
.x47{left:421.024000pt;}
.x2d{left:425.221333pt;}
.x2a{left:428.897333pt;}
.x2c{left:432.932000pt;}
.x31{left:436.362667pt;}
.x4c{left:444.686667pt;}
.x41{left:446.432000pt;}
.x4d{left:448.834667pt;}
.x62{left:470.382667pt;}
.x5b{left:473.758667pt;}
.x10{left:510.588000pt;}
.x30{left:511.488000pt;}
.x11{left:516.637333pt;}
.x2b{left:520.084000pt;}
.x5c{left:527.428000pt;}
.x5d{left:529.240000pt;}
.x12{left:530.313333pt;}
.x13{left:534.001333pt;}
.x4b{left:543.125333pt;}
.x2e{left:544.460000pt;}
.x14{left:547.676000pt;}
.x42{left:551.493333pt;}
.x32{left:553.038667pt;}
.x15{left:554.513333pt;}
.x29{left:564.688000pt;}
.x16{left:575.280000pt;}
.x17{left:581.330667pt;}
.x21{left:586.601333pt;}
.x35{left:588.657333pt;}
.x18{left:595.005333pt;}
.x22{left:597.528000pt;}
.x19{left:598.693333pt;}
.x1a{left:605.594667pt;}
.x1b{left:612.432000pt;}
.x50{left:615.652000pt;}
.x1c{left:621.725333pt;}
.x1d{left:631.829333pt;}
.x69{left:639.452000pt;}
.x6a{left:650.377333pt;}
.x1e{left:654.974667pt;}
.x23{left:663.342667pt;}
.x43{left:672.365333pt;}
.x36{left:675.346667pt;}
.x44{left:685.748000pt;}
.x4e{left:689.516000pt;}
.x48{left:703.293333pt;}
.x49{left:714.218667pt;}
.x1f{left:744.106667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  