
    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_496ff186f7144804664ac8a6.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_932b739c267906831ff565e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ccbf07d596c378b3e9b6089c.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_00c49c2d28a1330996e8466f.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_c819dfa7b857e63ae64ee307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_7aaaba1bf5e8d8ee60fb859c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_0dc69e87aa4da55e46b66a3b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5562cf207c250f1dff96b3da.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.486000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_152ab8a89c3b3cff7883202a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1d{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);}
.ma{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);}
.m26{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);}
.mb{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);}
.md{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);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1b{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);}
.m18{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);}
.m1f{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);}
.m4{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);}
.mf{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);}
.m17{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);}
.me{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);}
.m24{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);}
.m28{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);}
.m29{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);}
.m5{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);}
.m1e{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m11{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);}
.m25{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);}
.m10{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);}
.m19{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);}
.m12{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);}
.m14{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);}
.m2{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.mc{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);}
.m15{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);}
.m13{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);}
.m1c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-37.494000px;}
.v4{vertical-align:-6.744000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.874000px;}
.v3{vertical-align:49.608000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000800px;}
.ls26{letter-spacing:0.001036px;}
.ls18{letter-spacing:0.003573px;}
.ls23{letter-spacing:0.648088px;}
.ls1b{letter-spacing:0.673133px;}
.ls8{letter-spacing:11.954850px;}
.ls13{letter-spacing:13.031081px;}
.ls12{letter-spacing:13.389734px;}
.ls21{letter-spacing:13.444800px;}
.ls24{letter-spacing:13.450090px;}
.ls22{letter-spacing:13.450800px;}
.ls17{letter-spacing:13.569061px;}
.ls10{letter-spacing:13.808164px;}
.lsf{letter-spacing:13.987490px;}
.ls1c{letter-spacing:14.122445px;}
.ls16{letter-spacing:14.405920px;}
.ls15{letter-spacing:14.585246px;}
.ls7{letter-spacing:14.704798px;}
.ls6{letter-spacing:14.764573px;}
.ls5{letter-spacing:14.824349px;}
.ls4{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.lsa{letter-spacing:15.003676px;}
.ls2{letter-spacing:15.063451px;}
.ls1{letter-spacing:15.123227px;}
.lsb{letter-spacing:15.183002px;}
.lsc{letter-spacing:15.242778px;}
.ls3{letter-spacing:15.302554px;}
.ls1d{letter-spacing:15.406318px;}
.ls1f{letter-spacing:16.088671px;}
.ls14{letter-spacing:16.318739px;}
.ls11{letter-spacing:17.215373px;}
.lse{letter-spacing:17.693578px;}
.ls19{letter-spacing:17.813129px;}
.ls25{letter-spacing:18.052231px;}
.ls1a{letter-spacing:18.223965px;}
.ls20{letter-spacing:19.265141px;}
.ls27{letter-spacing:19.407037px;}
.lsd{letter-spacing:20.383480px;}
.ls1e{letter-spacing:235.820880px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws3e{word-spacing:-14.943900px;}
.ws1a{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.wsb{word-spacing:-10.460700px;}
.wsc3{word-spacing:-4.465267px;}
.ws78{word-spacing:-2.869229px;}
.ws84{word-spacing:-2.809453px;}
.wscb{word-spacing:-2.689902px;}
.wsff{word-spacing:-2.636122px;}
.ws20{word-spacing:-2.630126px;}
.ws50{word-spacing:-2.570351px;}
.ws69{word-spacing:-2.510575px;}
.ws60{word-spacing:-2.450800px;}
.ws72{word-spacing:-2.391024px;}
.ws71{word-spacing:-2.331248px;}
.ws85{word-spacing:-2.271473px;}
.ws62{word-spacing:-2.211697px;}
.ws16{word-spacing:-2.151936px;}
.ws96{word-spacing:-2.151922px;}
.ws6f{word-spacing:-2.092146px;}
.ws76{word-spacing:-2.032370px;}
.wscf{word-spacing:-1.990541px;}
.wscc{word-spacing:-1.972595px;}
.ws4c{word-spacing:-1.912819px;}
.ws38{word-spacing:-1.853044px;}
.ws5c{word-spacing:-1.793268px;}
.wsd0{word-spacing:-1.775347px;}
.ws5d{word-spacing:-1.733492px;}
.ws80{word-spacing:-1.673717px;}
.ws75{word-spacing:-1.494390px;}
.ws9b{word-spacing:-1.434614px;}
.ws57{word-spacing:-1.315063px;}
.ws6b{word-spacing:-1.195512px;}
.ws59{word-spacing:-1.135736px;}
.ws51{word-spacing:-1.075961px;}
.ws54{word-spacing:-1.016185px;}
.ws87{word-spacing:-0.956410px;}
.wsd{word-spacing:-0.908591px;}
.ws58{word-spacing:-0.836858px;}
.ws83{word-spacing:-0.777083px;}
.wse5{word-spacing:-0.753178px;}
.ws7a{word-spacing:-0.657532px;}
.ws39{word-spacing:-0.597756px;}
.wsb0{word-spacing:-0.591782px;}
.wsd9{word-spacing:-0.537984px;}
.ws25{word-spacing:-0.537980px;}
.wsa6{word-spacing:-0.478205px;}
.ws63{word-spacing:-0.418429px;}
.wsdf{word-spacing:-0.376589px;}
.ws3a{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.wsd3{word-spacing:-0.268992px;}
.ws27{word-spacing:-0.239102px;}
.wsb9{word-spacing:-0.215194px;}
.wse9{word-spacing:-0.185355px;}
.ws2a{word-spacing:-0.179327px;}
.wsd6{word-spacing:-0.169053px;}
.ws18{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.wsf{word-spacing:-0.107597px;}
.ws32{word-spacing:-0.059776px;}
.wsd2{word-spacing:-0.053798px;}
.wse8{word-spacing:-0.007910px;}
.wse2{word-spacing:-0.007843px;}
.wse7{word-spacing:-0.006163px;}
.wsaa{word-spacing:-0.002401px;}
.wsf4{word-spacing:-0.001882px;}
.ws0{word-spacing:0.000000px;}
.ws2e{word-spacing:0.003599px;}
.wsb8{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.wsbc{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.ws12{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.wse0{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.wsd1{word-spacing:0.322790px;}
.ws5e{word-spacing:0.358654px;}
.ws28{word-spacing:0.418429px;}
.wsf1{word-spacing:0.430387px;}
.ws29{word-spacing:0.478205px;}
.ws5a{word-spacing:0.537980px;}
.wsdb{word-spacing:0.537984px;}
.wsf0{word-spacing:0.591782px;}
.ws6a{word-spacing:0.597756px;}
.wsed{word-spacing:0.645581px;}
.wsc8{word-spacing:0.657532px;}
.wsec{word-spacing:0.699379px;}
.ws7c{word-spacing:0.717307px;}
.ws6d{word-spacing:0.777083px;}
.ws90{word-spacing:0.836858px;}
.ws4d{word-spacing:0.896634px;}
.ws5b{word-spacing:0.956410px;}
.ws64{word-spacing:1.016185px;}
.ws86{word-spacing:1.075961px;}
.ws13{word-spacing:1.075968px;}
.ws21{word-spacing:1.135736px;}
.ws6c{word-spacing:1.195512px;}
.ws65{word-spacing:1.255288px;}
.ws6e{word-spacing:1.315063px;}
.wsf9{word-spacing:1.398758px;}
.ws3b{word-spacing:1.434614px;}
.ws9c{word-spacing:1.494390px;}
.wsd4{word-spacing:1.506355px;}
.ws35{word-spacing:1.554166px;}
.wsa4{word-spacing:1.613941px;}
.ws14{word-spacing:1.613952px;}
.ws56{word-spacing:1.673717px;}
.wsda{word-spacing:1.721549px;}
.ws4e{word-spacing:1.733492px;}
.wsfe{word-spacing:1.775347px;}
.ws42{word-spacing:1.793268px;}
.ws74{word-spacing:1.853044px;}
.wse1{word-spacing:1.882944px;}
.ws91{word-spacing:1.912819px;}
.ws30{word-spacing:1.972595px;}
.ws11{word-spacing:1.990541px;}
.ws34{word-spacing:2.032370px;}
.ws8e{word-spacing:2.092146px;}
.wsfb{word-spacing:2.098138px;}
.ws70{word-spacing:2.151922px;}
.ws46{word-spacing:2.211697px;}
.ws73{word-spacing:2.271473px;}
.ws77{word-spacing:2.331248px;}
.ws44{word-spacing:2.391024px;}
.ws3c{word-spacing:2.450800px;}
.ws45{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws2{word-spacing:2.513732px;}
.wse4{word-spacing:2.528525px;}
.ws8d{word-spacing:2.570351px;}
.wsee{word-spacing:2.582323px;}
.ws53{word-spacing:2.630126px;}
.wsde{word-spacing:2.636122px;}
.ws52{word-spacing:2.689902px;}
.ws10{word-spacing:2.689920px;}
.wse3{word-spacing:2.743718px;}
.wsb5{word-spacing:2.749678px;}
.ws7b{word-spacing:2.809453px;}
.wsf8{word-spacing:2.851315px;}
.ws49{word-spacing:2.869229px;}
.ws33{word-spacing:2.929004px;}
.wsf3{word-spacing:2.958912px;}
.ws8f{word-spacing:2.988780px;}
.wsd7{word-spacing:3.012710px;}
.ws61{word-spacing:3.048556px;}
.wse6{word-spacing:3.066509px;}
.ws1c{word-spacing:3.108331px;}
.ws97{word-spacing:3.168107px;}
.ws100{word-spacing:3.220934px;}
.wseb{word-spacing:3.222403px;}
.wsfc{word-spacing:3.224794px;}
.wsce{word-spacing:3.224822px;}
.wsa5{word-spacing:3.227882px;}
.wsc2{word-spacing:3.227904px;}
.wse{word-spacing:3.267331px;}
.ws2c{word-spacing:3.287658px;}
.ws7d{word-spacing:3.407209px;}
.wsfa{word-spacing:3.443098px;}
.ws5f{word-spacing:3.466985px;}
.ws2d{word-spacing:3.526760px;}
.ws81{word-spacing:3.583525px;}
.ws82{word-spacing:3.584434px;}
.ws1b{word-spacing:3.586536px;}
.ws36{word-spacing:3.646312px;}
.wsd5{word-spacing:3.658291px;}
.ws4a{word-spacing:3.765863px;}
.wsea{word-spacing:3.819686px;}
.ws1e{word-spacing:3.825638px;}
.ws8c{word-spacing:3.885414px;}
.ws24{word-spacing:3.945190px;}
.wsc7{word-spacing:4.004965px;}
.wsd8{word-spacing:4.142477px;}
.wsca{word-spacing:4.184292px;}
.ws94{word-spacing:4.244068px;}
.ws102{word-spacing:4.250074px;}
.wsc1{word-spacing:4.303843px;}
.wsa7{word-spacing:4.423394px;}
.wsc9{word-spacing:4.602721px;}
.ws101{word-spacing:4.626662px;}
.ws43{word-spacing:4.662497px;}
.wsa8{word-spacing:4.722272px;}
.ws9{word-spacing:4.770079px;}
.ws48{word-spacing:4.782048px;}
.wsa{word-spacing:4.853765px;}
.ws88{word-spacing:4.901599px;}
.ws37{word-spacing:4.961375px;}
.wscd{word-spacing:5.021150px;}
.wsf2{word-spacing:5.057050px;}
.ws92{word-spacing:5.080926px;}
.ws66{word-spacing:5.140702px;}
.ws67{word-spacing:5.200477px;}
.wsb7{word-spacing:5.260253px;}
.ws3d{word-spacing:5.379804px;}
.wsc0{word-spacing:5.433638px;}
.ws3f{word-spacing:5.618906px;}
.ws55{word-spacing:5.678682px;}
.wsfd{word-spacing:5.702630px;}
.ws68{word-spacing:5.738458px;}
.ws79{word-spacing:5.798233px;}
.wsbf{word-spacing:5.810227px;}
.wsf7{word-spacing:5.917824px;}
.wsf6{word-spacing:5.971622px;}
.ws47{word-spacing:6.097111px;}
.ws93{word-spacing:6.216662px;}
.ws7e{word-spacing:6.455765px;}
.ws8b{word-spacing:6.575316px;}
.wsb6{word-spacing:6.694867px;}
.ws4b{word-spacing:7.053521px;}
.wsdd{word-spacing:7.101389px;}
.wsc6{word-spacing:7.263245px;}
.ws8a{word-spacing:7.352399px;}
.ws89{word-spacing:7.412174px;}
.ws41{word-spacing:7.471950px;}
.ws40{word-spacing:7.531726px;}
.wsf5{word-spacing:7.531776px;}
.ws7{word-spacing:7.782761px;}
.wsdc{word-spacing:8.984333px;}
.ws4f{word-spacing:9.324994px;}
.ws19{word-spacing:12.427430px;}
.ws7f{word-spacing:14.465695px;}
.ws3{word-spacing:15.481836px;}
.ws5{word-spacing:15.649207px;}
.wsef{word-spacing:15.978125px;}
.ws6{word-spacing:16.109478px;}
.wsa9{word-spacing:18.291334px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:33.788252px;}
.wsac{word-spacing:86.954045px;}
.wsad{word-spacing:103.067510px;}
.wsb4{word-spacing:128.051357px;}
.wsb1{word-spacing:138.315686px;}
.wsaf{word-spacing:139.768243px;}
.wsbe{word-spacing:170.648525px;}
.wsbd{word-spacing:171.993485px;}
.wsba{word-spacing:200.399040px;}
.ws95{word-spacing:212.880269px;}
.wsb2{word-spacing:226.921651px;}
.wsae{word-spacing:227.567232px;}
.wsb3{word-spacing:228.912192px;}
.ws98{word-spacing:237.143347px;}
.ws99{word-spacing:250.539149px;}
.wsbb{word-spacing:266.140685px;}
.ws9a{word-spacing:277.438349px;}
.wsab{word-spacing:347.776109px;}
.wsc5{word-spacing:617.815747px;}
.wsc4{word-spacing:671.558045px;}
.wsa1{word-spacing:1157.257382px;}
.wsa0{word-spacing:1163.874586px;}
.ws9f{word-spacing:1412.476992px;}
.wsa2{word-spacing:1417.157453px;}
.wsa3{word-spacing:1539.979200px;}
.ws9e{word-spacing:1563.865690px;}
.ws9d{word-spacing:1572.850022px;}
._14{margin-left:-8.368692px;}
._10{margin-left:-7.280672px;}
._5{margin-left:-5.917853px;}
._8{margin-left:-4.303886px;}
._0{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._78{width:2.636179px;}
._16{width:4.303843px;}
._1{width:12.218098px;}
._19{width:13.700563px;}
._d{width:14.824386px;}
._6{width:16.623706px;}
._b{width:18.590212px;}
._7{width:20.497190px;}
._a{width:22.475626px;}
._12{width:24.388445px;}
._15{width:26.109845px;}
._13{width:27.209849px;}
._c{width:28.991166px;}
._3{width:30.587087px;}
._9{width:31.794840px;}
._4{width:32.924606px;}
._17{width:34.550297px;}
._11{width:35.984911px;}
._18{width:37.790130px;}
._1b{width:38.794364px;}
._1a{width:41.125613px;}
._62{width:68.808154px;}
._60{width:77.039309px;}
._5f{width:92.533248px;}
._67{width:95.169370px;}
._42{width:96.944717px;}
._63{width:98.074483px;}
._69{width:108.134784px;}
._53{width:129.349550px;}
._41{width:133.043443px;}
._40{width:136.863130px;}
._68{width:138.369485px;}
._45{width:141.489792px;}
._50{width:144.341107px;}
._47{width:151.765286px;}
._44{width:153.217843px;}
._43{width:158.051990px;}
._48{width:173.392243px;}
._58{width:185.443085px;}
._4f{width:187.003238px;}
._6a{width:191.737483px;}
._65{width:199.592064px;}
._6c{width:201.851582px;}
._6e{width:204.971904px;}
._4b{width:207.016243px;}
._1e{width:214.655645px;}
._52{width:223.173974px;}
._4a{width:226.007078px;}
._35{width:227.782426px;}
._49{width:249.194189px;}
._4d{width:250.539149px;}
._1f{width:256.887360px;}
._1c{width:260.653248px;}
._5d{width:267.162854px;}
._2b{width:275.985792px;}
._51{width:278.606400px;}
._32{width:290.296166px;}
._2a{width:292.394304px;}
._6d{width:296.321587px;}
._2d{width:297.612749px;}
._64{width:309.771187px;}
._2e{width:311.654131px;}
._1d{width:321.983424px;}
._6b{width:323.973965px;}
._2f{width:329.031014px;}
._4e{width:334.357056px;}
._66{width:358.530426px;}
._20{width:361.901837px;}
._5e{width:424.415578px;}
._5c{width:425.760538px;}
._21{width:441.684864px;}
._22{width:444.536179px;}
._46{width:447.495091px;}
._57{width:449.055245px;}
._74{width:464.710579px;}
._23{width:466.754918px;}
._29{width:471.435379px;}
._24{width:474.286694px;}
._70{width:486.445133px;}
._59{width:488.597069px;}
._26{width:497.904192px;}
._5a{width:502.853645px;}
._72{width:509.524646px;}
._75{width:519.741264px;}
._77{width:522.969542px;}
._28{width:524.803392px;}
._34{width:534.487104px;}
._54{width:547.780445px;}
._4c{width:555.845069px;}
._33{width:582.744269px;}
._5b{width:601.842701px;}
._55{width:612.171994px;}
._30{width:641.276928px;}
._71{width:653.704358px;}
._25{width:656.232883px;}
._27{width:683.185882px;}
._3b{width:686.037226px;}
._31{width:699.002611px;}
._6f{width:735.424128px;}
._76{width:744.031872px;}
._56{width:777.924864px;}
._73{width:839.147443px;}
._2c{width:849.315341px;}
._e{width:905.194337px;}
._3c{width:943.032154px;}
._61{width:1040.622480px;}
._37{width:1132.510118px;}
._39{width:1164.789158px;}
._38{width:1186.147109px;}
._3f{width:1286.911555px;}
._3a{width:1392.302592px;}
._36{width:1406.559168px;}
._3d{width:2536.713300px;}
._f{width:2560.623300px;}
._3e{width:4014.699300px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.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;}
.y37{bottom:9.233944px;}
.y36{bottom:26.903761px;}
.y64{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y163{bottom:91.665000px;}
.y1b3{bottom:92.248500px;}
.y4{bottom:97.125005px;}
.yff{bottom:103.158000px;}
.y63{bottom:103.621500px;}
.y34{bottom:104.646000px;}
.y282{bottom:106.146000px;}
.y138{bottom:107.193000px;}
.y2e9{bottom:107.491500px;}
.y24d{bottom:108.801000px;}
.y109{bottom:109.434000px;}
.y162{bottom:110.494500px;}
.y1b2{bottom:111.078000px;}
.y212{bottom:112.105500px;}
.y2b2{bottom:121.479000px;}
.yfe{bottom:121.987500px;}
.y62{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y2e8{bottom:124.752000px;}
.y281{bottom:124.975500px;}
.y137{bottom:126.022500px;}
.y131{bottom:127.368000px;}
.y24c{bottom:127.630500px;}
.y108{bottom:128.263500px;}
.y161{bottom:129.324000px;}
.y1b1{bottom:129.907500px;}
.y211{bottom:130.935000px;}
.y2b1{bottom:138.739500px;}
.y21{bottom:139.264499px;}
.yca{bottom:139.471500px;}
.y32{bottom:140.422500px;}
.yfd{bottom:140.817000px;}
.y61{bottom:141.279000px;}
.y2e7{bottom:142.012500px;}
.y280{bottom:143.805000px;}
.y136{bottom:144.852000px;}
.y130{bottom:146.197500px;}
.y24b{bottom:146.460000px;}
.y107{bottom:147.093000px;}
.y160{bottom:148.153500px;}
.y1b0{bottom:148.737000px;}
.y210{bottom:149.764500px;}
.y2b0{bottom:156.000000px;}
.yc9{bottom:158.301000px;}
.y31{bottom:158.310000px;}
.y2e6{bottom:159.273000px;}
.yfc{bottom:159.646500px;}
.y60{bottom:160.108500px;}
.y27f{bottom:162.634500px;}
.y135{bottom:163.681500px;}
.y12f{bottom:165.027000px;}
.y106{bottom:165.922500px;}
.y15f{bottom:166.983000px;}
.y1af{bottom:167.566500px;}
.y20f{bottom:168.594000px;}
.y2af{bottom:173.260500px;}
.y30{bottom:176.199000px;}
.y2e5{bottom:176.533500px;}
.yc8{bottom:177.130500px;}
.yfb{bottom:178.476000px;}
.y5f{bottom:178.938000px;}
.y27e{bottom:181.464000px;}
.y134{bottom:182.511000px;}
.y97{bottom:182.959500px;}
.y12e{bottom:183.856500px;}
.y105{bottom:184.752000px;}
.y15e{bottom:185.812500px;}
.y1ae{bottom:186.396000px;}
.y20e{bottom:187.423500px;}
.y24a{bottom:191.922000px;}
.y2e4{bottom:193.794000px;}
.y2f{bottom:194.086500px;}
.y2ae{bottom:195.004500px;}
.yc7{bottom:195.960000px;}
.y18{bottom:196.933500px;}
.yfa{bottom:197.305500px;}
.y5e{bottom:197.767500px;}
.y27d{bottom:200.293500px;}
.y133{bottom:201.340500px;}
.y96{bottom:201.789000px;}
.y12d{bottom:202.684500px;}
.y104{bottom:203.581500px;}
.y15d{bottom:204.642000px;}
.y1ad{bottom:205.225500px;}
.y20d{bottom:206.253000px;}
.y249{bottom:208.359000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2e3{bottom:211.053000px;}
.y2e{bottom:211.974000px;}
.yc6{bottom:214.789500px;}
.yf9{bottom:216.135000px;}
.y5d{bottom:216.597000px;}
.y27c{bottom:219.123000px;}
.y95{bottom:220.618500px;}
.y12c{bottom:221.514000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y103{bottom:222.411000px;}
.y15c{bottom:223.471500px;}
.y1ac{bottom:224.055000px;}
.y132{bottom:224.652000px;}
.y2e2{bottom:228.313500px;}
.y2ad{bottom:228.628500px;}
.y2d{bottom:229.863000px;}
.y248{bottom:232.000500px;}
.yc5{bottom:233.619000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yf8{bottom:234.964500px;}
.y5c{bottom:235.426500px;}
.y27b{bottom:237.952500px;}
.y94{bottom:239.446500px;}
.y12b{bottom:240.343500px;}
.y102{bottom:241.240500px;}
.y15b{bottom:242.301000px;}
.y1ab{bottom:242.884500px;}
.y2e1{bottom:245.574000px;}
.y247{bottom:248.439000px;}
.y20c{bottom:251.715000px;}
.yc4{bottom:252.448500px;}
.yf7{bottom:253.794000px;}
.y5b{bottom:254.256000px;}
.y2ac{bottom:255.168000px;}
.y243{bottom:255.225000px;}
.y27a{bottom:256.782000px;}
.y93{bottom:258.276000px;}
.y12a{bottom:259.173000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y15a{bottom:261.130500px;}
.y2e0{bottom:262.834500px;}
.y246{bottom:264.877500px;}
.y1aa{bottom:266.197500px;}
.y20b{bottom:268.153500px;}
.yc3{bottom:271.278000px;}
.y242{bottom:271.663500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yf6{bottom:272.623500px;}
.y2ab{bottom:272.742000px;}
.y5a{bottom:273.085500px;}
.y279{bottom:275.611500px;}
.y92{bottom:277.105500px;}
.y101{bottom:278.002500px;}
.y159{bottom:279.960000px;}
.y2df{bottom:280.095000px;}
.y245{bottom:281.316000px;}
.y20a{bottom:284.592000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y188{bottom:286.902000px;}
.yc2{bottom:290.107500px;}
.y2aa{bottom:290.317500px;}
.yf5{bottom:291.453000px;}
.y59{bottom:291.915000px;}
.y278{bottom:294.441000px;}
.y91{bottom:295.935000px;}
.y100{bottom:296.832000px;}
.y2de{bottom:297.355500px;}
.y244{bottom:297.754500px;}
.y158{bottom:298.789500px;}
.y1a9{bottom:299.821500px;}
.y2c{bottom:299.890500px;}
.y209{bottom:308.232000px;}
.yc1{bottom:308.937000px;}
.yf4{bottom:310.282500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y58{bottom:310.744500px;}
.y187{bottom:312.673500px;}
.y277{bottom:313.270500px;}
.y2dd{bottom:314.616000px;}
.y90{bottom:314.764500px;}
.y129{bottom:315.661500px;}
.y2a9{bottom:316.857000px;}
.y157{bottom:317.619000px;}
.y2b{bottom:317.779500px;}
.y1a8{bottom:318.651000px;}
.y241{bottom:321.394500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y208{bottom:324.670500px;}
.yc0{bottom:327.766500px;}
.yf3{bottom:329.112000px;}
.y57{bottom:329.574000px;}
.y186{bottom:331.503000px;}
.y2dc{bottom:331.876500px;}
.y276{bottom:332.100000px;}
.y8f{bottom:333.594000px;}
.y2a8{bottom:334.431000px;}
.y128{bottom:334.491000px;}
.y2a{bottom:335.667000px;}
.y156{bottom:336.448500px;}
.y1a7{bottom:337.480500px;}
.y240{bottom:337.833000px;}
.y207{bottom:341.109000px;}
.ybf{bottom:346.596000px;}
.yf2{bottom:347.940000px;}
.yf{bottom:348.133500px;}
.y56{bottom:348.403500px;}
.y2db{bottom:349.135500px;}
.y185{bottom:350.332500px;}
.y23a{bottom:350.584500px;}
.y275{bottom:350.929500px;}
.y8e{bottom:352.423500px;}
.y127{bottom:353.320500px;}
.y29{bottom:353.554500px;}
.y23f{bottom:354.271500px;}
.y155{bottom:355.278000px;}
.y1a6{bottom:356.310000px;}
.y206{bottom:357.547500px;}
.y2a7{bottom:360.972000px;}
.y201{bottom:364.614000px;}
.ybe{bottom:365.425500px;}
.y2da{bottom:366.396000px;}
.yf1{bottom:366.769500px;}
.y239{bottom:367.023000px;}
.y55{bottom:367.233000px;}
.y184{bottom:369.162000px;}
.y274{bottom:369.759000px;}
.y8d{bottom:371.253000px;}
.y126{bottom:372.150000px;}
.y205{bottom:373.986000px;}
.y1a5{bottom:375.139500px;}
.y23e{bottom:377.911500px;}
.y28{bottom:380.409000px;}
.y238{bottom:383.461500px;}
.y2d9{bottom:383.656500px;}
.ybd{bottom:384.255000px;}
.yf0{bottom:385.599000px;}
.y54{bottom:386.062500px;}
.ye{bottom:386.785499px;}
.y2a6{bottom:387.513000px;}
.y183{bottom:387.991500px;}
.y273{bottom:388.588500px;}
.y8c{bottom:390.082500px;}
.y204{bottom:390.424500px;}
.y125{bottom:390.979500px;}
.y1db{bottom:391.630500px;}
.y1a4{bottom:393.969000px;}
.y23d{bottom:394.350000px;}
.y27{bottom:398.298000px;}
.y154{bottom:399.699000px;}
.y1da{bottom:399.850500px;}
.y2d8{bottom:400.917000px;}
.y1d4{bottom:401.626500px;}
.ybc{bottom:403.084500px;}
.yef{bottom:404.428500px;}
.y53{bottom:404.892000px;}
.y182{bottom:406.821000px;}
.y203{bottom:406.863000px;}
.y272{bottom:407.418000px;}
.yd{bottom:408.044999px;}
.y8b{bottom:408.912000px;}
.y124{bottom:409.809000px;}
.y23c{bottom:410.788500px;}
.y1a3{bottom:412.797000px;}
.y2a5{bottom:414.052500px;}
.y153{bottom:416.137500px;}
.y26{bottom:416.185500px;}
.y1d3{bottom:418.065000px;}
.y2d7{bottom:418.177500px;}
.ybb{bottom:421.914000px;}
.yee{bottom:423.258000px;}
.y202{bottom:423.301500px;}
.y52{bottom:423.721500px;}
.y1d9{bottom:424.507500px;}
.y181{bottom:425.650500px;}
.y271{bottom:426.247500px;}
.y23b{bottom:427.227000px;}
.y8a{bottom:427.741500px;}
.y123{bottom:428.638500px;}
.y1a2{bottom:431.626500px;}
.y152{bottom:432.576000px;}
.y1d8{bottom:432.727500px;}
.y25{bottom:434.073000px;}
.y1d2{bottom:434.503500px;}
.y2d6{bottom:435.438000px;}
.y200{bottom:439.740000px;}
.yba{bottom:440.743500px;}
.yed{bottom:442.087500px;}
.y180{bottom:444.480000px;}
.y270{bottom:445.077000px;}
.y89{bottom:446.571000px;}
.y51{bottom:447.034500px;}
.y122{bottom:447.468000px;}
.y1d7{bottom:448.012500px;}
.y151{bottom:449.014500px;}
.y2a4{bottom:449.560500px;}
.y1a1{bottom:450.456000px;}
.y237{bottom:450.868500px;}
.y1d1{bottom:450.942000px;}
.y24{bottom:451.962000px;}
.y2d5{bottom:452.698500px;}
.y1ff{bottom:456.178500px;}
.y1d6{bottom:457.384500px;}
.yb9{bottom:459.573000px;}
.yec{bottom:460.917000px;}
.y17f{bottom:463.309500px;}
.y26f{bottom:463.906500px;}
.y88{bottom:465.400500px;}
.y150{bottom:465.453000px;}
.y1d5{bottom:465.603000px;}
.y121{bottom:466.297500px;}
.y1d0{bottom:467.379000px;}
.y2a3{bottom:468.390000px;}
.y1a0{bottom:469.285500px;}
.y23{bottom:469.849500px;}
.y2d4{bottom:469.959000px;}
.y236{bottom:474.508500px;}
.yb8{bottom:478.402500px;}
.yeb{bottom:479.746500px;}
.y1fe{bottom:479.818500px;}
.y14f{bottom:481.890000px;}
.y17e{bottom:482.137500px;}
.y26e{bottom:482.736000px;}
.y87{bottom:484.230000px;}
.y120{bottom:485.127000px;}
.y2a2{bottom:487.219500px;}
.y22{bottom:487.737000px;}
.y19f{bottom:488.115000px;}
.y1fc{bottom:491.058000px;}
.y1fd{bottom:491.100000px;}
.y1cc{bottom:494.136000px;}
.yb7{bottom:497.232000px;}
.y14e{bottom:498.328500px;}
.yea{bottom:498.576000px;}
.y17d{bottom:500.967000px;}
.y26d{bottom:501.565500px;}
.y1cf{bottom:502.491000px;}
.yc{bottom:502.864502px;}
.y86{bottom:503.059500px;}
.y11f{bottom:503.956500px;}
.y2d3{bottom:504.478500px;}
.y2a1{bottom:506.049000px;}
.y235{bottom:506.128500px;}
.y19e{bottom:506.944500px;}
.y1cb{bottom:510.574500px;}
.y1ce{bottom:510.709500px;}
.yb6{bottom:516.061500px;}
.ye9{bottom:517.405500px;}
.y17c{bottom:519.796500px;}
.y26c{bottom:520.395000px;}
.yb{bottom:520.864502px;}
.y2d2{bottom:521.739000px;}
.y85{bottom:521.889000px;}
.y14d{bottom:521.970000px;}
.y50{bottom:522.184500px;}
.y11e{bottom:522.786000px;}
.y2a0{bottom:524.877000px;}
.y19d{bottom:525.774000px;}
.y1ca{bottom:527.013000px;}
.yb5{bottom:534.889500px;}
.y1fb{bottom:535.078500px;}
.ye8{bottom:536.235000px;}
.y17b{bottom:538.626000px;}
.ya{bottom:538.864499px;}
.y2d1{bottom:538.999500px;}
.y26b{bottom:539.224500px;}
.y84{bottom:540.718500px;}
.y11d{bottom:541.615500px;}
.y4f{bottom:541.641000px;}
.y1cd{bottom:541.675500px;}
.y234{bottom:543.232500px;}
.y1c9{bottom:543.451500px;}
.y29f{bottom:543.706500px;}
.y19c{bottom:544.603500px;}
.y14c{bottom:553.590000px;}
.yb4{bottom:553.719000px;}
.y1fa{bottom:554.311500px;}
.ye7{bottom:555.064500px;}
.y2d0{bottom:556.260000px;}
.y9{bottom:556.864499px;}
.y26a{bottom:558.054000px;}
.y83{bottom:559.548000px;}
.y11c{bottom:560.445000px;}
.y233{bottom:562.062000px;}
.y1c4{bottom:562.417500px;}
.y29e{bottom:562.536000px;}
.y19b{bottom:563.433000px;}
.y17a{bottom:564.397500px;}
.y1c8{bottom:569.100000px;}
.yb3{bottom:572.548500px;}
.y2cf{bottom:573.520500px;}
.ye6{bottom:573.894000px;}
.y269{bottom:576.883500px;}
.y82{bottom:578.377500px;}
.y1c3{bottom:578.856000px;}
.y4e{bottom:579.031500px;}
.y11b{bottom:579.274500px;}
.y232{bottom:580.891500px;}
.y29d{bottom:581.365500px;}
.y19a{bottom:582.262500px;}
.y1c7{bottom:589.323000px;}
.y14b{bottom:589.653000px;}
.y179{bottom:590.169000px;}
.y1f9{bottom:590.332500px;}
.y2ce{bottom:590.781000px;}
.yb2{bottom:591.378000px;}
.y1c6{bottom:591.955500px;}
.ye5{bottom:592.723500px;}
.y1c2{bottom:595.294500px;}
.y268{bottom:595.713000px;}
.y81{bottom:597.207000px;}
.y11a{bottom:598.104000px;}
.y4d{bottom:598.488000px;}
.y231{bottom:599.721000px;}
.y29c{bottom:600.195000px;}
.y199{bottom:601.092000px;}
.y2cd{bottom:608.041500px;}
.y14a{bottom:608.482500px;}
.y178{bottom:608.998500px;}
.y1f8{bottom:609.162000px;}
.y1c5{bottom:609.546000px;}
.yb1{bottom:610.207500px;}
.ye4{bottom:611.553000px;}
.y1c1{bottom:611.733000px;}
.y267{bottom:614.541000px;}
.y80{bottom:616.036500px;}
.y119{bottom:616.933500px;}
.y4c{bottom:617.944500px;}
.y230{bottom:618.550500px;}
.y29b{bottom:619.024500px;}
.y198{bottom:619.921500px;}
.y2cc{bottom:625.302000px;}
.y149{bottom:627.312000px;}
.y177{bottom:627.828000px;}
.y1f7{bottom:627.991500px;}
.yb0{bottom:629.037000px;}
.y1bc{bottom:629.878500px;}
.ye3{bottom:630.382500px;}
.y266{bottom:633.370500px;}
.y7f{bottom:634.866000px;}
.y118{bottom:635.763000px;}
.y1c0{bottom:636.972000px;}
.y22f{bottom:637.380000px;}
.y4b{bottom:637.402500px;}
.y29a{bottom:637.854000px;}
.y197{bottom:638.751000px;}
.y2cb{bottom:642.561000px;}
.y8{bottom:645.510000px;}
.y148{bottom:646.141500px;}
.y1bb{bottom:646.317000px;}
.y1f6{bottom:646.821000px;}
.yaf{bottom:647.866500px;}
.ye2{bottom:649.212000px;}
.y176{bottom:651.141000px;}
.y265{bottom:652.200000px;}
.y7e{bottom:653.695500px;}
.y117{bottom:654.592500px;}
.y22e{bottom:656.209500px;}
.y299{bottom:656.683500px;}
.y4a{bottom:656.859000px;}
.y1bf{bottom:657.195000px;}
.y196{bottom:657.580500px;}
.y2ca{bottom:659.821500px;}
.y1be{bottom:659.826000px;}
.y1ba{bottom:662.755500px;}
.y147{bottom:664.971000px;}
.y1f5{bottom:665.650500px;}
.yae{bottom:666.696000px;}
.y7{bottom:666.771000px;}
.ye1{bottom:668.041500px;}
.y264{bottom:671.029500px;}
.y7d{bottom:672.525000px;}
.y116{bottom:673.422000px;}
.y22d{bottom:675.039000px;}
.y298{bottom:675.513000px;}
.y49{bottom:676.315500px;}
.y195{bottom:676.410000px;}
.y2c9{bottom:677.082000px;}
.y1bd{bottom:677.418000px;}
.y1b9{bottom:679.194000px;}
.y146{bottom:683.800500px;}
.y1f4{bottom:684.480000px;}
.yad{bottom:685.525500px;}
.ye0{bottom:686.871000px;}
.y263{bottom:689.859000px;}
.y7c{bottom:691.354500px;}
.y115{bottom:692.251500px;}
.y175{bottom:692.404500px;}
.y22c{bottom:693.868500px;}
.y297{bottom:694.342500px;}
.y194{bottom:695.239500px;}
.y48{bottom:695.773500px;}
.y1b7{bottom:701.059500px;}
.y145{bottom:702.628500px;}
.y1f3{bottom:703.309500px;}
.yac{bottom:704.355000px;}
.ydf{bottom:705.700500px;}
.y262{bottom:708.688500px;}
.y174{bottom:708.843000px;}
.y1b6{bottom:709.278000px;}
.y7b{bottom:710.184000px;}
.y114{bottom:711.079500px;}
.y2c8{bottom:711.603000px;}
.y22b{bottom:712.696500px;}
.y296{bottom:713.172000px;}
.y193{bottom:714.069000px;}
.y47{bottom:715.230000px;}
.y1b8{bottom:717.496500px;}
.y144{bottom:721.458000px;}
.y1f2{bottom:722.139000px;}
.yab{bottom:723.184500px;}
.yde{bottom:724.530000px;}
.y173{bottom:725.281500px;}
.y6{bottom:726.298500px;}
.y261{bottom:727.518000px;}
.y2c7{bottom:728.863500px;}
.y7a{bottom:729.013500px;}
.y113{bottom:729.909000px;}
.y22a{bottom:731.526000px;}
.y295{bottom:732.001500px;}
.y192{bottom:732.898500px;}
.y46{bottom:734.688000px;}
.y143{bottom:740.287500px;}
.y1f1{bottom:740.968500px;}
.y172{bottom:741.720000px;}
.yaa{bottom:742.014000px;}
.ydd{bottom:743.359500px;}
.y2c6{bottom:746.124000px;}
.y260{bottom:746.347500px;}
.y79{bottom:747.843000px;}
.y1b5{bottom:749.116500px;}
.y229{bottom:750.355500px;}
.y294{bottom:750.831000px;}
.y191{bottom:751.728000px;}
.y3{bottom:752.599495px;}
.y112{bottom:753.222000px;}
.y45{bottom:754.144500px;}
.y171{bottom:758.158500px;}
.y142{bottom:759.117000px;}
.y1f0{bottom:759.798000px;}
.ya9{bottom:760.843500px;}
.ydc{bottom:762.189000px;}
.y2c5{bottom:763.384500px;}
.y25f{bottom:765.177000px;}
.y78{bottom:766.671000px;}
.y228{bottom:769.185000px;}
.y293{bottom:769.660500px;}
.y190{bottom:770.557500px;}
.y44{bottom:773.601000px;}
.y170{bottom:774.595500px;}
.y141{bottom:777.946500px;}
.y1ef{bottom:778.627500px;}
.ya8{bottom:779.673000px;}
.y2c4{bottom:780.645000px;}
.ydb{bottom:781.018500px;}
.y25e{bottom:784.006500px;}
.y77{bottom:785.500500px;}
.y111{bottom:786.846000px;}
.y227{bottom:788.014500px;}
.y292{bottom:788.490000px;}
.y18f{bottom:789.387000px;}
.y16f{bottom:791.034000px;}
.y43{bottom:793.059000px;}
.y140{bottom:796.776000px;}
.y1ee{bottom:797.457000px;}
.y2c3{bottom:797.904000px;}
.ya7{bottom:798.502500px;}
.yda{bottom:799.848000px;}
.y1b4{bottom:801.433500px;}
.y25d{bottom:802.836000px;}
.y76{bottom:804.330000px;}
.y110{bottom:805.675500px;}
.y291{bottom:807.319500px;}
.y16e{bottom:807.472500px;}
.y18e{bottom:808.216500px;}
.y42{bottom:812.515500px;}
.y2c2{bottom:815.164500px;}
.y1ed{bottom:816.286500px;}
.ya6{bottom:817.332000px;}
.yd9{bottom:818.677500px;}
.y25c{bottom:821.665500px;}
.y75{bottom:823.159500px;}
.y16d{bottom:823.911000px;}
.y10f{bottom:824.505000px;}
.y290{bottom:826.149000px;}
.y18d{bottom:827.046000px;}
.y41{bottom:831.972000px;}
.y2c1{bottom:832.425000px;}
.y1ec{bottom:835.114500px;}
.ya5{bottom:836.161500px;}
.y226{bottom:836.466000px;}
.yd8{bottom:837.507000px;}
.y16c{bottom:840.349500px;}
.y25b{bottom:840.495000px;}
.y74{bottom:841.989000px;}
.y10e{bottom:843.334500px;}
.y13f{bottom:844.186500px;}
.y28f{bottom:844.978500px;}
.y2eb{bottom:845.127000px;}
.y18c{bottom:845.875500px;}
.y2c0{bottom:849.685500px;}
.y40{bottom:851.430000px;}
.y225{bottom:852.904500px;}
.y1eb{bottom:853.944000px;}
.ya4{bottom:854.991000px;}
.yd7{bottom:856.335000px;}
.y16b{bottom:856.788000px;}
.y25a{bottom:859.324500px;}
.y13e{bottom:860.625000px;}
.y73{bottom:860.818500px;}
.y10d{bottom:862.164000px;}
.y2ea{bottom:862.387500px;}
.y28e{bottom:863.808000px;}
.y18b{bottom:864.705000px;}
.y2bf{bottom:866.946000px;}
.y3f{bottom:870.886500px;}
.y1ea{bottom:872.773500px;}
.y16a{bottom:873.226500px;}
.ya3{bottom:873.820500px;}
.yd6{bottom:875.164500px;}
.y224{bottom:876.544500px;}
.y259{bottom:878.154000px;}
.y2{bottom:879.369000px;}
.y72{bottom:879.648000px;}
.y28d{bottom:882.637500px;}
.y18a{bottom:883.534500px;}
.y2be{bottom:884.206500px;}
.y13d{bottom:884.265000px;}
.y21d{bottom:884.595000px;}
.y10c{bottom:885.477000px;}
.y169{bottom:889.665000px;}
.y3e{bottom:890.344500px;}
.y1e9{bottom:891.603000px;}
.ya2{bottom:892.650000px;}
.y223{bottom:892.983000px;}
.yd5{bottom:893.994000px;}
.y258{bottom:896.983500px;}
.y71{bottom:898.477500px;}
.y13c{bottom:900.703500px;}
.y21c{bottom:901.033500px;}
.y28c{bottom:901.467000px;}
.y168{bottom:906.103500px;}
.y222{bottom:909.421500px;}
.y3d{bottom:909.801000px;}
.y189{bottom:909.835500px;}
.y1e8{bottom:910.432500px;}
.ya1{bottom:911.479500px;}
.yd4{bottom:912.823500px;}
.y257{bottom:915.813000px;}
.y13b{bottom:917.142000px;}
.y70{bottom:917.307000px;}
.y21b{bottom:917.472000px;}
.y2bd{bottom:918.727500px;}
.y10b{bottom:919.101000px;}
.y28b{bottom:920.296500px;}
.y167{bottom:922.542000px;}
.y221{bottom:925.860000px;}
.y1e7{bottom:929.262000px;}
.ya0{bottom:930.309000px;}
.yd3{bottom:931.653000px;}
.y21a{bottom:933.910500px;}
.y256{bottom:934.642500px;}
.y2bc{bottom:935.986500px;}
.y6f{bottom:936.136500px;}
.y166{bottom:938.979000px;}
.y28a{bottom:939.126000px;}
.y13a{bottom:940.783500px;}
.y220{bottom:942.298500px;}
.y3c{bottom:948.006000px;}
.y1e6{bottom:948.091500px;}
.y9f{bottom:949.138500px;}
.y219{bottom:950.349000px;}
.yd2{bottom:950.482500px;}
.y2bb{bottom:953.247000px;}
.y255{bottom:953.472000px;}
.y6e{bottom:954.966000px;}
.y10a{bottom:955.863000px;}
.y289{bottom:957.955500px;}
.y21f{bottom:958.737000px;}
.y165{bottom:962.620500px;}
.y1{bottom:966.726000px;}
.y218{bottom:966.787500px;}
.y1e5{bottom:966.921000px;}
.y9e{bottom:967.968000px;}
.yd1{bottom:969.312000px;}
.y2ba{bottom:970.507500px;}
.y254{bottom:972.301500px;}
.y6d{bottom:973.795500px;}
.y21e{bottom:975.175500px;}
.y139{bottom:975.391500px;}
.y288{bottom:976.785000px;}
.y1e4{bottom:985.750500px;}
.y9d{bottom:986.797500px;}
.y2b9{bottom:987.768000px;}
.yd0{bottom:988.141500px;}
.y253{bottom:991.131000px;}
.y6c{bottom:992.625000px;}
.y164{bottom:994.240500px;}
.y287{bottom:995.614500px;}
.y3b{bottom:996.642000px;}
.y217{bottom:998.815500px;}
.y1e3{bottom:1004.580000px;}
.y2b8{bottom:1005.028500px;}
.y9c{bottom:1005.627000px;}
.ycf{bottom:1006.971000px;}
.y252{bottom:1009.960500px;}
.y6b{bottom:1011.454500px;}
.y286{bottom:1014.444000px;}
.y2b7{bottom:1022.289000px;}
.y1e2{bottom:1023.409500px;}
.y9b{bottom:1024.456500px;}
.yce{bottom:1025.800500px;}
.y251{bottom:1028.790000px;}
.y6a{bottom:1030.284000px;}
.y285{bottom:1033.272000px;}
.y216{bottom:1033.423500px;}
.y3a{bottom:1036.560000px;}
.y2b6{bottom:1039.549500px;}
.y1e1{bottom:1042.239000px;}
.y9a{bottom:1043.284500px;}
.ycd{bottom:1044.630000px;}
.y250{bottom:1047.619500px;}
.y69{bottom:1049.113500px;}
.y284{bottom:1052.101500px;}
.y215{bottom:1052.656500px;}
.y2b5{bottom:1056.810000px;}
.y1e0{bottom:1061.068500px;}
.y99{bottom:1062.114000px;}
.ycc{bottom:1063.459500px;}
.y39{bottom:1064.805000px;}
.y24f{bottom:1066.449000px;}
.y68{bottom:1067.943000px;}
.y283{bottom:1070.931000px;}
.y2b4{bottom:1074.070500px;}
.y1df{bottom:1079.898000px;}
.ycb{bottom:1082.289000px;}
.y24e{bottom:1085.278500px;}
.y98{bottom:1085.427000px;}
.y67{bottom:1086.772500px;}
.y214{bottom:1089.760500px;}
.y2b3{bottom:1091.329500px;}
.y38{bottom:1093.048500px;}
.y1de{bottom:1098.727500px;}
.y66{bottom:1105.602000px;}
.y213{bottom:1108.590000px;}
.y1dd{bottom:1117.557000px;}
.y35{bottom:1136.536500px;}
.y65{bottom:1168.366500px;}
.y1dc{bottom:1171.354500px;}
.h20{height:25.177651px;}
.h1d{height:25.930829px;}
.h16{height:27.974981px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h1f{height:31.990848px;}
.h7{height:32.130000px;}
.h10{height:34.813397px;}
.h14{height:35.052500px;}
.h12{height:38.734848px;}
.h11{height:39.165235px;}
.h21{height:39.434227px;}
.hf{height:43.038432px;}
.h13{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h22{height:49.117939px;}
.hb{height:50.930649px;}
.h15{height:54.575123px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h19{height:71.608848px;}
.h1c{height:72.039235px;}
.h1b{height:72.045235px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h1e{height:88.342848px;}
.h1a{height:104.482848px;}
.h4{height:119.055004px;}
.h17{height:892.914000px;}
.h18{height:893.250000px;}
.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;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x3d{left:61.411500px;}
.xc{left:62.541000px;}
.x1b{left:73.053000px;}
.x20{left:76.416000px;}
.x46{left:83.977500px;}
.x45{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3e{left:174.672000px;}
.x3c{left:198.846000px;}
.x3a{left:202.207500px;}
.x4{left:203.484001px;}
.x1c{left:213.775500px;}
.x17{left:216.204000px;}
.x47{left:238.488000px;}
.x7{left:249.501000px;}
.x32{left:257.427000px;}
.xe{left:258.556500px;}
.x40{left:265.084500px;}
.x19{left:268.702500px;}
.x10{left:272.007000px;}
.x18{left:275.554500px;}
.xa{left:280.228500px;}
.x9{left:281.479500px;}
.x3f{left:285.681000px;}
.x2b{left:300.432000px;}
.x38{left:306.208500px;}
.x41{left:311.080500px;}
.x8{left:326.358000px;}
.x1e{left:344.616000px;}
.x36{left:346.872000px;}
.xb{left:348.900000px;}
.x37{left:355.489500px;}
.x44{left:372.396000px;}
.x43{left:428.001000px;}
.x42{left:433.692000px;}
.x3{left:454.959000px;}
.x15{left:465.468000px;}
.x16{left:474.085500px;}
.x34{left:475.627500px;}
.x33{left:478.990500px;}
.x2f{left:490.759500px;}
.xd{left:496.386000px;}
.x35{left:552.081000px;}
.x30{left:555.610500px;}
.x23{left:586.261500px;}
.x24{left:599.632500px;}
.x31{left:632.232000px;}
.x27{left:639.501000px;}
.x2e{left:643.663500px;}
.x28{left:653.074500px;}
.x11{left:656.581500px;}
.x21{left:670.069500px;}
.xf{left:678.423000px;}
.x22{left:683.646000px;}
.x12{left:703.650000px;}
.x25{left:717.030000px;}
.x1f{left:729.306000px;}
.x26{left:731.380500px;}
.x13{left:739.927500px;}
.x3b{left:792.252000px;}
.x29{left:822.675000px;}
.x39{left:828.309000px;}
.x2c{left:829.896000px;}
.x2a{left:831.292500px;}
.x14{left:832.422000px;}
.x2d{left:837.165000px;}
.x1d{left:942.793500px;}
.x1a{left:1025.023500px;}
@media print{
.v2{vertical-align:-33.328000pt;}
.v4{vertical-align:-5.994667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.221333pt;}
.v3{vertical-align:44.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000711pt;}
.ls26{letter-spacing:0.000921pt;}
.ls18{letter-spacing:0.003176pt;}
.ls23{letter-spacing:0.576078pt;}
.ls1b{letter-spacing:0.598340pt;}
.ls8{letter-spacing:10.626533pt;}
.ls13{letter-spacing:11.583183pt;}
.ls12{letter-spacing:11.901986pt;}
.ls21{letter-spacing:11.950933pt;}
.ls24{letter-spacing:11.955635pt;}
.ls22{letter-spacing:11.956267pt;}
.ls17{letter-spacing:12.061388pt;}
.ls10{letter-spacing:12.273923pt;}
.lsf{letter-spacing:12.433325pt;}
.ls1c{letter-spacing:12.553284pt;}
.ls16{letter-spacing:12.805262pt;}
.ls15{letter-spacing:12.964663pt;}
.ls7{letter-spacing:13.070931pt;}
.ls6{letter-spacing:13.124065pt;}
.ls5{letter-spacing:13.177199pt;}
.ls4{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.lsa{letter-spacing:13.336601pt;}
.ls2{letter-spacing:13.389734pt;}
.ls1{letter-spacing:13.442868pt;}
.lsb{letter-spacing:13.496002pt;}
.lsc{letter-spacing:13.549136pt;}
.ls3{letter-spacing:13.602270pt;}
.ls1d{letter-spacing:13.694505pt;}
.ls1f{letter-spacing:14.301041pt;}
.ls14{letter-spacing:14.505546pt;}
.ls11{letter-spacing:15.302554pt;}
.lse{letter-spacing:15.727625pt;}
.ls19{letter-spacing:15.833892pt;}
.ls25{letter-spacing:16.046428pt;}
.ls1a{letter-spacing:16.199080pt;}
.ls20{letter-spacing:17.124570pt;}
.ls27{letter-spacing:17.250700pt;}
.lsd{letter-spacing:18.118649pt;}
.ls1e{letter-spacing:209.618560pt;}
.wsc{word-spacing:-20.194365pt;}
.ws3e{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsb{word-spacing:-9.298400pt;}
.wsc3{word-spacing:-3.969126pt;}
.ws78{word-spacing:-2.550426pt;}
.ws84{word-spacing:-2.497292pt;}
.wscb{word-spacing:-2.391024pt;}
.wsff{word-spacing:-2.343219pt;}
.ws20{word-spacing:-2.337890pt;}
.ws50{word-spacing:-2.284756pt;}
.ws69{word-spacing:-2.231622pt;}
.ws60{word-spacing:-2.178489pt;}
.ws72{word-spacing:-2.125355pt;}
.ws71{word-spacing:-2.072221pt;}
.ws85{word-spacing:-2.019087pt;}
.ws62{word-spacing:-1.965953pt;}
.ws16{word-spacing:-1.912832pt;}
.ws96{word-spacing:-1.912819pt;}
.ws6f{word-spacing:-1.859685pt;}
.ws76{word-spacing:-1.806551pt;}
.wscf{word-spacing:-1.769370pt;}
.wscc{word-spacing:-1.753418pt;}
.ws4c{word-spacing:-1.700284pt;}
.ws38{word-spacing:-1.647150pt;}
.ws5c{word-spacing:-1.594016pt;}
.wsd0{word-spacing:-1.578086pt;}
.ws5d{word-spacing:-1.540882pt;}
.ws80{word-spacing:-1.487748pt;}
.ws75{word-spacing:-1.328347pt;}
.ws9b{word-spacing:-1.275213pt;}
.ws57{word-spacing:-1.168945pt;}
.ws6b{word-spacing:-1.062677pt;}
.ws59{word-spacing:-1.009543pt;}
.ws51{word-spacing:-0.956410pt;}
.ws54{word-spacing:-0.903276pt;}
.ws87{word-spacing:-0.850142pt;}
.wsd{word-spacing:-0.807637pt;}
.ws58{word-spacing:-0.743874pt;}
.ws83{word-spacing:-0.690740pt;}
.wse5{word-spacing:-0.669491pt;}
.ws7a{word-spacing:-0.584473pt;}
.ws39{word-spacing:-0.531339pt;}
.wsb0{word-spacing:-0.526029pt;}
.wsd9{word-spacing:-0.478208pt;}
.ws25{word-spacing:-0.478205pt;}
.wsa6{word-spacing:-0.425071pt;}
.ws63{word-spacing:-0.371937pt;}
.wsdf{word-spacing:-0.334746pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.wsd3{word-spacing:-0.239104pt;}
.ws27{word-spacing:-0.212535pt;}
.wsb9{word-spacing:-0.191283pt;}
.wse9{word-spacing:-0.164760pt;}
.ws2a{word-spacing:-0.159402pt;}
.wsd6{word-spacing:-0.150269pt;}
.ws18{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.wsf{word-spacing:-0.095642pt;}
.ws32{word-spacing:-0.053134pt;}
.wsd2{word-spacing:-0.047821pt;}
.wse8{word-spacing:-0.007031pt;}
.wse2{word-spacing:-0.006972pt;}
.wse7{word-spacing:-0.005478pt;}
.wsaa{word-spacing:-0.002134pt;}
.wsf4{word-spacing:-0.001673pt;}
.ws0{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.003199pt;}
.wsb8{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.wsbc{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.ws12{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.wse0{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.wsd1{word-spacing:0.286925pt;}
.ws5e{word-spacing:0.318803pt;}
.ws28{word-spacing:0.371937pt;}
.wsf1{word-spacing:0.382566pt;}
.ws29{word-spacing:0.425071pt;}
.ws5a{word-spacing:0.478205pt;}
.wsdb{word-spacing:0.478208pt;}
.wsf0{word-spacing:0.526029pt;}
.ws6a{word-spacing:0.531339pt;}
.wsed{word-spacing:0.573850pt;}
.wsc8{word-spacing:0.584473pt;}
.wsec{word-spacing:0.621670pt;}
.ws7c{word-spacing:0.637606pt;}
.ws6d{word-spacing:0.690740pt;}
.ws90{word-spacing:0.743874pt;}
.ws4d{word-spacing:0.797008pt;}
.ws5b{word-spacing:0.850142pt;}
.ws64{word-spacing:0.903276pt;}
.ws86{word-spacing:0.956410pt;}
.ws13{word-spacing:0.956416pt;}
.ws21{word-spacing:1.009543pt;}
.ws6c{word-spacing:1.062677pt;}
.ws65{word-spacing:1.115811pt;}
.ws6e{word-spacing:1.168945pt;}
.wsf9{word-spacing:1.243341pt;}
.ws3b{word-spacing:1.275213pt;}
.ws9c{word-spacing:1.328347pt;}
.wsd4{word-spacing:1.338982pt;}
.ws35{word-spacing:1.381481pt;}
.wsa4{word-spacing:1.434614pt;}
.ws14{word-spacing:1.434624pt;}
.ws56{word-spacing:1.487748pt;}
.wsda{word-spacing:1.530266pt;}
.ws4e{word-spacing:1.540882pt;}
.wsfe{word-spacing:1.578086pt;}
.ws42{word-spacing:1.594016pt;}
.ws74{word-spacing:1.647150pt;}
.wse1{word-spacing:1.673728pt;}
.ws91{word-spacing:1.700284pt;}
.ws30{word-spacing:1.753418pt;}
.ws11{word-spacing:1.769370pt;}
.ws34{word-spacing:1.806551pt;}
.ws8e{word-spacing:1.859685pt;}
.wsfb{word-spacing:1.865011pt;}
.ws70{word-spacing:1.912819pt;}
.ws46{word-spacing:1.965953pt;}
.ws73{word-spacing:2.019087pt;}
.ws77{word-spacing:2.072221pt;}
.ws44{word-spacing:2.125355pt;}
.ws3c{word-spacing:2.178489pt;}
.ws45{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws2{word-spacing:2.234429pt;}
.wse4{word-spacing:2.247578pt;}
.ws8d{word-spacing:2.284756pt;}
.wsee{word-spacing:2.295398pt;}
.ws53{word-spacing:2.337890pt;}
.wsde{word-spacing:2.343219pt;}
.ws52{word-spacing:2.391024pt;}
.ws10{word-spacing:2.391040pt;}
.wse3{word-spacing:2.438861pt;}
.wsb5{word-spacing:2.444158pt;}
.ws7b{word-spacing:2.497292pt;}
.wsf8{word-spacing:2.534502pt;}
.ws49{word-spacing:2.550426pt;}
.ws33{word-spacing:2.603559pt;}
.wsf3{word-spacing:2.630144pt;}
.ws8f{word-spacing:2.656693pt;}
.wsd7{word-spacing:2.677965pt;}
.ws61{word-spacing:2.709827pt;}
.wse6{word-spacing:2.725786pt;}
.ws1c{word-spacing:2.762961pt;}
.ws97{word-spacing:2.816095pt;}
.ws100{word-spacing:2.863053pt;}
.wseb{word-spacing:2.864358pt;}
.wsfc{word-spacing:2.866483pt;}
.wsce{word-spacing:2.866509pt;}
.wsa5{word-spacing:2.869229pt;}
.wsc2{word-spacing:2.869248pt;}
.wse{word-spacing:2.904294pt;}
.ws2c{word-spacing:2.922363pt;}
.ws7d{word-spacing:3.028630pt;}
.wsfa{word-spacing:3.060531pt;}
.ws5f{word-spacing:3.081764pt;}
.ws2d{word-spacing:3.134898pt;}
.ws81{word-spacing:3.185356pt;}
.ws82{word-spacing:3.186163pt;}
.ws1b{word-spacing:3.188032pt;}
.ws36{word-spacing:3.241166pt;}
.wsd5{word-spacing:3.251814pt;}
.ws4a{word-spacing:3.347434pt;}
.wsea{word-spacing:3.395277pt;}
.ws1e{word-spacing:3.400567pt;}
.ws8c{word-spacing:3.453701pt;}
.ws24{word-spacing:3.506835pt;}
.wsc7{word-spacing:3.559969pt;}
.wsd8{word-spacing:3.682202pt;}
.wsca{word-spacing:3.719371pt;}
.ws94{word-spacing:3.772505pt;}
.ws102{word-spacing:3.777843pt;}
.wsc1{word-spacing:3.825638pt;}
.wsa7{word-spacing:3.931906pt;}
.wsc9{word-spacing:4.091308pt;}
.ws101{word-spacing:4.112589pt;}
.ws43{word-spacing:4.144442pt;}
.wsa8{word-spacing:4.197575pt;}
.ws9{word-spacing:4.240070pt;}
.ws48{word-spacing:4.250709pt;}
.wsa{word-spacing:4.314458pt;}
.ws88{word-spacing:4.356977pt;}
.ws37{word-spacing:4.410111pt;}
.wscd{word-spacing:4.463245pt;}
.wsf2{word-spacing:4.495155pt;}
.ws92{word-spacing:4.516379pt;}
.ws66{word-spacing:4.569513pt;}
.ws67{word-spacing:4.622646pt;}
.wsb7{word-spacing:4.675780pt;}
.ws3d{word-spacing:4.782048pt;}
.wsc0{word-spacing:4.829901pt;}
.ws3f{word-spacing:4.994583pt;}
.ws55{word-spacing:5.047717pt;}
.wsfd{word-spacing:5.069005pt;}
.ws68{word-spacing:5.100851pt;}
.ws79{word-spacing:5.153985pt;}
.wsbf{word-spacing:5.164646pt;}
.wsf7{word-spacing:5.260288pt;}
.wsf6{word-spacing:5.308109pt;}
.ws47{word-spacing:5.419654pt;}
.ws93{word-spacing:5.525922pt;}
.ws7e{word-spacing:5.738458pt;}
.ws8b{word-spacing:5.844725pt;}
.wsb6{word-spacing:5.950993pt;}
.ws4b{word-spacing:6.269796pt;}
.wsdd{word-spacing:6.312346pt;}
.wsc6{word-spacing:6.456218pt;}
.ws8a{word-spacing:6.535466pt;}
.ws89{word-spacing:6.588599pt;}
.ws41{word-spacing:6.641733pt;}
.ws40{word-spacing:6.694867pt;}
.wsf5{word-spacing:6.694912pt;}
.ws7{word-spacing:6.918010pt;}
.wsdc{word-spacing:7.986074pt;}
.ws4f{word-spacing:8.288883pt;}
.ws19{word-spacing:11.046605pt;}
.ws7f{word-spacing:12.858396pt;}
.ws3{word-spacing:13.761632pt;}
.ws5{word-spacing:13.910406pt;}
.wsef{word-spacing:14.202778pt;}
.ws6{word-spacing:14.319536pt;}
.wsa9{word-spacing:16.258963pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:30.034002pt;}
.wsac{word-spacing:77.292484pt;}
.wsad{word-spacing:91.615565pt;}
.wsb4{word-spacing:113.823428pt;}
.wsb1{word-spacing:122.947277pt;}
.wsaf{word-spacing:124.238438pt;}
.wsbe{word-spacing:151.687578pt;}
.wsbd{word-spacing:152.883098pt;}
.wsba{word-spacing:178.132480pt;}
.ws95{word-spacing:189.226906pt;}
.wsb2{word-spacing:201.708134pt;}
.wsae{word-spacing:202.281984pt;}
.wsb3{word-spacing:203.477504pt;}
.ws98{word-spacing:210.794086pt;}
.ws99{word-spacing:222.701466pt;}
.wsbb{word-spacing:236.569498pt;}
.ws9a{word-spacing:246.611866pt;}
.wsab{word-spacing:309.134319pt;}
.wsc5{word-spacing:549.169553pt;}
.wsc4{word-spacing:596.940484pt;}
.wsa1{word-spacing:1028.673229pt;}
.wsa0{word-spacing:1034.555187pt;}
.ws9f{word-spacing:1255.535104pt;}
.wsa2{word-spacing:1259.695514pt;}
.wsa3{word-spacing:1368.870400pt;}
.ws9e{word-spacing:1390.102835pt;}
.ws9d{word-spacing:1398.088909pt;}
._14{margin-left:-7.438837pt;}
._10{margin-left:-6.471709pt;}
._5{margin-left:-5.260314pt;}
._8{margin-left:-3.825677pt;}
._0{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._78{width:2.343270pt;}
._16{width:3.825638pt;}
._1{width:10.860531pt;}
._19{width:12.178278pt;}
._d{width:13.177232pt;}
._6{width:14.776627pt;}
._b{width:16.524633pt;}
._7{width:18.219725pt;}
._a{width:19.978334pt;}
._12{width:21.678618pt;}
._15{width:23.208751pt;}
._13{width:24.186532pt;}
._c{width:25.769925pt;}
._3{width:27.188522pt;}
._9{width:28.262080pt;}
._4{width:29.266317pt;}
._17{width:30.711375pt;}
._11{width:31.986588pt;}
._18{width:33.591227pt;}
._1b{width:34.483879pt;}
._1a{width:36.556100pt;}
._62{width:61.162803pt;}
._60{width:68.479386pt;}
._5f{width:82.251776pt;}
._67{width:84.594995pt;}
._42{width:86.173082pt;}
._63{width:87.177318pt;}
._69{width:96.119808pt;}
._53{width:114.977378pt;}
._41{width:118.260838pt;}
._40{width:121.656115pt;}
._68{width:122.995098pt;}
._45{width:125.768704pt;}
._50{width:128.303206pt;}
._47{width:134.902477pt;}
._44{width:136.193638pt;}
._43{width:140.490658pt;}
._48{width:154.126438pt;}
._58{width:164.838298pt;}
._4f{width:166.225101pt;}
._6a{width:170.433318pt;}
._65{width:177.415168pt;}
._6c{width:179.423629pt;}
._6e{width:182.197248pt;}
._4b{width:184.014438pt;}
._1e{width:190.805018pt;}
._52{width:198.376866pt;}
._4a{width:200.895181pt;}
._35{width:202.473267pt;}
._49{width:221.505946pt;}
._4d{width:222.701466pt;}
._1f{width:228.344320pt;}
._1c{width:231.691776pt;}
._5d{width:237.478093pt;}
._2b{width:245.320704pt;}
._51{width:247.650133pt;}
._32{width:258.041037pt;}
._2a{width:259.906048pt;}
._6d{width:263.396966pt;}
._2d{width:264.544666pt;}
._64{width:275.352166pt;}
._2e{width:277.025894pt;}
._1d{width:286.207488pt;}
._6b{width:287.976858pt;}
._2f{width:292.472013pt;}
._4e{width:297.206272pt;}
._66{width:318.693712pt;}
._20{width:321.690522pt;}
._5e{width:377.258291pt;}
._5c{width:378.453811pt;}
._21{width:392.608768pt;}
._22{width:395.143270pt;}
._46{width:397.773414pt;}
._57{width:399.160218pt;}
._74{width:413.076070pt;}
._23{width:414.893261pt;}
._29{width:419.053670pt;}
._24{width:421.588173pt;}
._70{width:432.395674pt;}
._59{width:434.308506pt;}
._26{width:442.581504pt;}
._5a{width:446.981018pt;}
._72{width:452.910797pt;}
._75{width:461.992235pt;}
._77{width:464.861815pt;}
._28{width:466.491904pt;}
._34{width:475.099648pt;}
._54{width:486.915951pt;}
._4c{width:494.084506pt;}
._33{width:517.994906pt;}
._5b{width:534.971290pt;}
._55{width:544.152883pt;}
._30{width:570.023936pt;}
._71{width:581.070541pt;}
._25{width:583.318118pt;}
._27{width:607.276339pt;}
._3b{width:609.810867pt;}
._31{width:621.335654pt;}
._6f{width:653.710336pt;}
._76{width:661.361664pt;}
._56{width:691.488768pt;}
._73{width:745.908838pt;}
._2c{width:754.946970pt;}
._e{width:804.617189pt;}
._3c{width:838.250803pt;}
._61{width:924.997760pt;}
._37{width:1006.675661pt;}
._39{width:1035.368141pt;}
._38{width:1054.352986pt;}
._3f{width:1143.921382pt;}
._3a{width:1237.602304pt;}
._36{width:1250.274816pt;}
._3d{width:2254.856267pt;}
._f{width:2276.109600pt;}
._3e{width:3568.621600pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.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;}
.y37{bottom:8.207950pt;}
.y36{bottom:23.914454pt;}
.y64{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y163{bottom:81.480000pt;}
.y1b3{bottom:81.998667pt;}
.y4{bottom:86.333337pt;}
.yff{bottom:91.696000pt;}
.y63{bottom:92.108000pt;}
.y34{bottom:93.018667pt;}
.y282{bottom:94.352000pt;}
.y138{bottom:95.282667pt;}
.y2e9{bottom:95.548000pt;}
.y24d{bottom:96.712000pt;}
.y109{bottom:97.274667pt;}
.y162{bottom:98.217333pt;}
.y1b2{bottom:98.736000pt;}
.y212{bottom:99.649333pt;}
.y2b2{bottom:107.981333pt;}
.yfe{bottom:108.433333pt;}
.y62{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y2e8{bottom:110.890667pt;}
.y281{bottom:111.089333pt;}
.y137{bottom:112.020000pt;}
.y131{bottom:113.216000pt;}
.y24c{bottom:113.449333pt;}
.y108{bottom:114.012000pt;}
.y161{bottom:114.954667pt;}
.y1b1{bottom:115.473333pt;}
.y211{bottom:116.386667pt;}
.y2b1{bottom:123.324000pt;}
.y21{bottom:123.790666pt;}
.yca{bottom:123.974667pt;}
.y32{bottom:124.820000pt;}
.yfd{bottom:125.170667pt;}
.y61{bottom:125.581333pt;}
.y2e7{bottom:126.233333pt;}
.y280{bottom:127.826667pt;}
.y136{bottom:128.757333pt;}
.y130{bottom:129.953333pt;}
.y24b{bottom:130.186667pt;}
.y107{bottom:130.749333pt;}
.y160{bottom:131.692000pt;}
.y1b0{bottom:132.210667pt;}
.y210{bottom:133.124000pt;}
.y2b0{bottom:138.666667pt;}
.yc9{bottom:140.712000pt;}
.y31{bottom:140.720000pt;}
.y2e6{bottom:141.576000pt;}
.yfc{bottom:141.908000pt;}
.y60{bottom:142.318667pt;}
.y27f{bottom:144.564000pt;}
.y135{bottom:145.494667pt;}
.y12f{bottom:146.690667pt;}
.y106{bottom:147.486667pt;}
.y15f{bottom:148.429333pt;}
.y1af{bottom:148.948000pt;}
.y20f{bottom:149.861333pt;}
.y2af{bottom:154.009333pt;}
.y30{bottom:156.621333pt;}
.y2e5{bottom:156.918667pt;}
.yc8{bottom:157.449333pt;}
.yfb{bottom:158.645333pt;}
.y5f{bottom:159.056000pt;}
.y27e{bottom:161.301333pt;}
.y134{bottom:162.232000pt;}
.y97{bottom:162.630667pt;}
.y12e{bottom:163.428000pt;}
.y105{bottom:164.224000pt;}
.y15e{bottom:165.166667pt;}
.y1ae{bottom:165.685333pt;}
.y20e{bottom:166.598667pt;}
.y24a{bottom:170.597333pt;}
.y2e4{bottom:172.261333pt;}
.y2f{bottom:172.521333pt;}
.y2ae{bottom:173.337333pt;}
.yc7{bottom:174.186667pt;}
.y18{bottom:175.052000pt;}
.yfa{bottom:175.382667pt;}
.y5e{bottom:175.793333pt;}
.y27d{bottom:178.038667pt;}
.y133{bottom:178.969333pt;}
.y96{bottom:179.368000pt;}
.y12d{bottom:180.164000pt;}
.y104{bottom:180.961333pt;}
.y15d{bottom:181.904000pt;}
.y1ad{bottom:182.422667pt;}
.y20d{bottom:183.336000pt;}
.y249{bottom:185.208000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2e3{bottom:187.602667pt;}
.y2e{bottom:188.421333pt;}
.yc6{bottom:190.924000pt;}
.yf9{bottom:192.120000pt;}
.y5d{bottom:192.530667pt;}
.y27c{bottom:194.776000pt;}
.y95{bottom:196.105333pt;}
.y12c{bottom:196.901333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y103{bottom:197.698667pt;}
.y15c{bottom:198.641333pt;}
.y1ac{bottom:199.160000pt;}
.y132{bottom:199.690667pt;}
.y2e2{bottom:202.945333pt;}
.y2ad{bottom:203.225333pt;}
.y2d{bottom:204.322667pt;}
.y248{bottom:206.222667pt;}
.yc5{bottom:207.661333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yf8{bottom:208.857333pt;}
.y5c{bottom:209.268000pt;}
.y27b{bottom:211.513333pt;}
.y94{bottom:212.841333pt;}
.y12b{bottom:213.638667pt;}
.y102{bottom:214.436000pt;}
.y15b{bottom:215.378667pt;}
.y1ab{bottom:215.897333pt;}
.y2e1{bottom:218.288000pt;}
.y247{bottom:220.834667pt;}
.y20c{bottom:223.746667pt;}
.yc4{bottom:224.398667pt;}
.yf7{bottom:225.594667pt;}
.y5b{bottom:226.005333pt;}
.y2ac{bottom:226.816000pt;}
.y243{bottom:226.866667pt;}
.y27a{bottom:228.250667pt;}
.y93{bottom:229.578667pt;}
.y12a{bottom:230.376000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y15a{bottom:232.116000pt;}
.y2e0{bottom:233.630667pt;}
.y246{bottom:235.446667pt;}
.y1aa{bottom:236.620000pt;}
.y20b{bottom:238.358667pt;}
.yc3{bottom:241.136000pt;}
.y242{bottom:241.478667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yf6{bottom:242.332000pt;}
.y2ab{bottom:242.437333pt;}
.y5a{bottom:242.742667pt;}
.y279{bottom:244.988000pt;}
.y92{bottom:246.316000pt;}
.y101{bottom:247.113333pt;}
.y159{bottom:248.853333pt;}
.y2df{bottom:248.973333pt;}
.y245{bottom:250.058667pt;}
.y20a{bottom:252.970667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y188{bottom:255.024000pt;}
.yc2{bottom:257.873333pt;}
.y2aa{bottom:258.060000pt;}
.yf5{bottom:259.069333pt;}
.y59{bottom:259.480000pt;}
.y278{bottom:261.725333pt;}
.y91{bottom:263.053333pt;}
.y100{bottom:263.850667pt;}
.y2de{bottom:264.316000pt;}
.y244{bottom:264.670667pt;}
.y158{bottom:265.590667pt;}
.y1a9{bottom:266.508000pt;}
.y2c{bottom:266.569333pt;}
.y209{bottom:273.984000pt;}
.yc1{bottom:274.610667pt;}
.yf4{bottom:275.806667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y58{bottom:276.217333pt;}
.y187{bottom:277.932000pt;}
.y277{bottom:278.462667pt;}
.y2dd{bottom:279.658667pt;}
.y90{bottom:279.790667pt;}
.y129{bottom:280.588000pt;}
.y2a9{bottom:281.650667pt;}
.y157{bottom:282.328000pt;}
.y2b{bottom:282.470667pt;}
.y1a8{bottom:283.245333pt;}
.y241{bottom:285.684000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y208{bottom:288.596000pt;}
.yc0{bottom:291.348000pt;}
.yf3{bottom:292.544000pt;}
.y57{bottom:292.954667pt;}
.y186{bottom:294.669333pt;}
.y2dc{bottom:295.001333pt;}
.y276{bottom:295.200000pt;}
.y8f{bottom:296.528000pt;}
.y2a8{bottom:297.272000pt;}
.y128{bottom:297.325333pt;}
.y2a{bottom:298.370667pt;}
.y156{bottom:299.065333pt;}
.y1a7{bottom:299.982667pt;}
.y240{bottom:300.296000pt;}
.y207{bottom:303.208000pt;}
.ybf{bottom:308.085333pt;}
.yf2{bottom:309.280000pt;}
.yf{bottom:309.452000pt;}
.y56{bottom:309.692000pt;}
.y2db{bottom:310.342667pt;}
.y185{bottom:311.406667pt;}
.y23a{bottom:311.630667pt;}
.y275{bottom:311.937333pt;}
.y8e{bottom:313.265333pt;}
.y127{bottom:314.062667pt;}
.y29{bottom:314.270667pt;}
.y23f{bottom:314.908000pt;}
.y155{bottom:315.802667pt;}
.y1a6{bottom:316.720000pt;}
.y206{bottom:317.820000pt;}
.y2a7{bottom:320.864000pt;}
.y201{bottom:324.101333pt;}
.ybe{bottom:324.822667pt;}
.y2da{bottom:325.685333pt;}
.yf1{bottom:326.017333pt;}
.y239{bottom:326.242667pt;}
.y55{bottom:326.429333pt;}
.y184{bottom:328.144000pt;}
.y274{bottom:328.674667pt;}
.y8d{bottom:330.002667pt;}
.y126{bottom:330.800000pt;}
.y205{bottom:332.432000pt;}
.y1a5{bottom:333.457333pt;}
.y23e{bottom:335.921333pt;}
.y28{bottom:338.141333pt;}
.y238{bottom:340.854667pt;}
.y2d9{bottom:341.028000pt;}
.ybd{bottom:341.560000pt;}
.yf0{bottom:342.754667pt;}
.y54{bottom:343.166667pt;}
.ye{bottom:343.809333pt;}
.y2a6{bottom:344.456000pt;}
.y183{bottom:344.881333pt;}
.y273{bottom:345.412000pt;}
.y8c{bottom:346.740000pt;}
.y204{bottom:347.044000pt;}
.y125{bottom:347.537333pt;}
.y1db{bottom:348.116000pt;}
.y1a4{bottom:350.194667pt;}
.y23d{bottom:350.533333pt;}
.y27{bottom:354.042667pt;}
.y154{bottom:355.288000pt;}
.y1da{bottom:355.422667pt;}
.y2d8{bottom:356.370667pt;}
.y1d4{bottom:357.001333pt;}
.ybc{bottom:358.297333pt;}
.yef{bottom:359.492000pt;}
.y53{bottom:359.904000pt;}
.y182{bottom:361.618667pt;}
.y203{bottom:361.656000pt;}
.y272{bottom:362.149333pt;}
.yd{bottom:362.706666pt;}
.y8b{bottom:363.477333pt;}
.y124{bottom:364.274667pt;}
.y23c{bottom:365.145333pt;}
.y1a3{bottom:366.930667pt;}
.y2a5{bottom:368.046667pt;}
.y153{bottom:369.900000pt;}
.y26{bottom:369.942667pt;}
.y1d3{bottom:371.613333pt;}
.y2d7{bottom:371.713333pt;}
.ybb{bottom:375.034667pt;}
.yee{bottom:376.229333pt;}
.y202{bottom:376.268000pt;}
.y52{bottom:376.641333pt;}
.y1d9{bottom:377.340000pt;}
.y181{bottom:378.356000pt;}
.y271{bottom:378.886667pt;}
.y23b{bottom:379.757333pt;}
.y8a{bottom:380.214667pt;}
.y123{bottom:381.012000pt;}
.y1a2{bottom:383.668000pt;}
.y152{bottom:384.512000pt;}
.y1d8{bottom:384.646667pt;}
.y25{bottom:385.842667pt;}
.y1d2{bottom:386.225333pt;}
.y2d6{bottom:387.056000pt;}
.y200{bottom:390.880000pt;}
.yba{bottom:391.772000pt;}
.yed{bottom:392.966667pt;}
.y180{bottom:395.093333pt;}
.y270{bottom:395.624000pt;}
.y89{bottom:396.952000pt;}
.y51{bottom:397.364000pt;}
.y122{bottom:397.749333pt;}
.y1d7{bottom:398.233333pt;}
.y151{bottom:399.124000pt;}
.y2a4{bottom:399.609333pt;}
.y1a1{bottom:400.405333pt;}
.y237{bottom:400.772000pt;}
.y1d1{bottom:400.837333pt;}
.y24{bottom:401.744000pt;}
.y2d5{bottom:402.398667pt;}
.y1ff{bottom:405.492000pt;}
.y1d6{bottom:406.564000pt;}
.yb9{bottom:408.509333pt;}
.yec{bottom:409.704000pt;}
.y17f{bottom:411.830667pt;}
.y26f{bottom:412.361333pt;}
.y88{bottom:413.689333pt;}
.y150{bottom:413.736000pt;}
.y1d5{bottom:413.869333pt;}
.y121{bottom:414.486667pt;}
.y1d0{bottom:415.448000pt;}
.y2a3{bottom:416.346667pt;}
.y1a0{bottom:417.142667pt;}
.y23{bottom:417.644000pt;}
.y2d4{bottom:417.741333pt;}
.y236{bottom:421.785333pt;}
.yb8{bottom:425.246667pt;}
.yeb{bottom:426.441333pt;}
.y1fe{bottom:426.505333pt;}
.y14f{bottom:428.346667pt;}
.y17e{bottom:428.566667pt;}
.y26e{bottom:429.098667pt;}
.y87{bottom:430.426667pt;}
.y120{bottom:431.224000pt;}
.y2a2{bottom:433.084000pt;}
.y22{bottom:433.544000pt;}
.y19f{bottom:433.880000pt;}
.y1fc{bottom:436.496000pt;}
.y1fd{bottom:436.533333pt;}
.y1cc{bottom:439.232000pt;}
.yb7{bottom:441.984000pt;}
.y14e{bottom:442.958667pt;}
.yea{bottom:443.178667pt;}
.y17d{bottom:445.304000pt;}
.y26d{bottom:445.836000pt;}
.y1cf{bottom:446.658667pt;}
.yc{bottom:446.990669pt;}
.y86{bottom:447.164000pt;}
.y11f{bottom:447.961333pt;}
.y2d3{bottom:448.425333pt;}
.y2a1{bottom:449.821333pt;}
.y235{bottom:449.892000pt;}
.y19e{bottom:450.617333pt;}
.y1cb{bottom:453.844000pt;}
.y1ce{bottom:453.964000pt;}
.yb6{bottom:458.721333pt;}
.ye9{bottom:459.916000pt;}
.y17c{bottom:462.041333pt;}
.y26c{bottom:462.573333pt;}
.yb{bottom:462.990669pt;}
.y2d2{bottom:463.768000pt;}
.y85{bottom:463.901333pt;}
.y14d{bottom:463.973333pt;}
.y50{bottom:464.164000pt;}
.y11e{bottom:464.698667pt;}
.y2a0{bottom:466.557333pt;}
.y19d{bottom:467.354667pt;}
.y1ca{bottom:468.456000pt;}
.yb5{bottom:475.457333pt;}
.y1fb{bottom:475.625333pt;}
.ye8{bottom:476.653333pt;}
.y17b{bottom:478.778667pt;}
.ya{bottom:478.990666pt;}
.y2d1{bottom:479.110667pt;}
.y26b{bottom:479.310667pt;}
.y84{bottom:480.638667pt;}
.y11d{bottom:481.436000pt;}
.y4f{bottom:481.458667pt;}
.y1cd{bottom:481.489333pt;}
.y234{bottom:482.873333pt;}
.y1c9{bottom:483.068000pt;}
.y29f{bottom:483.294667pt;}
.y19c{bottom:484.092000pt;}
.y14c{bottom:492.080000pt;}
.yb4{bottom:492.194667pt;}
.y1fa{bottom:492.721333pt;}
.ye7{bottom:493.390667pt;}
.y2d0{bottom:494.453333pt;}
.y9{bottom:494.990666pt;}
.y26a{bottom:496.048000pt;}
.y83{bottom:497.376000pt;}
.y11c{bottom:498.173333pt;}
.y233{bottom:499.610667pt;}
.y1c4{bottom:499.926667pt;}
.y29e{bottom:500.032000pt;}
.y19b{bottom:500.829333pt;}
.y17a{bottom:501.686667pt;}
.y1c8{bottom:505.866667pt;}
.yb3{bottom:508.932000pt;}
.y2cf{bottom:509.796000pt;}
.ye6{bottom:510.128000pt;}
.y269{bottom:512.785333pt;}
.y82{bottom:514.113333pt;}
.y1c3{bottom:514.538667pt;}
.y4e{bottom:514.694667pt;}
.y11b{bottom:514.910667pt;}
.y232{bottom:516.348000pt;}
.y29d{bottom:516.769333pt;}
.y19a{bottom:517.566667pt;}
.y1c7{bottom:523.842667pt;}
.y14b{bottom:524.136000pt;}
.y179{bottom:524.594667pt;}
.y1f9{bottom:524.740000pt;}
.y2ce{bottom:525.138667pt;}
.yb2{bottom:525.669333pt;}
.y1c6{bottom:526.182667pt;}
.ye5{bottom:526.865333pt;}
.y1c2{bottom:529.150667pt;}
.y268{bottom:529.522667pt;}
.y81{bottom:530.850667pt;}
.y11a{bottom:531.648000pt;}
.y4d{bottom:531.989333pt;}
.y231{bottom:533.085333pt;}
.y29c{bottom:533.506667pt;}
.y199{bottom:534.304000pt;}
.y2cd{bottom:540.481333pt;}
.y14a{bottom:540.873333pt;}
.y178{bottom:541.332000pt;}
.y1f8{bottom:541.477333pt;}
.y1c5{bottom:541.818667pt;}
.yb1{bottom:542.406667pt;}
.ye4{bottom:543.602667pt;}
.y1c1{bottom:543.762667pt;}
.y267{bottom:546.258667pt;}
.y80{bottom:547.588000pt;}
.y119{bottom:548.385333pt;}
.y4c{bottom:549.284000pt;}
.y230{bottom:549.822667pt;}
.y29b{bottom:550.244000pt;}
.y198{bottom:551.041333pt;}
.y2cc{bottom:555.824000pt;}
.y149{bottom:557.610667pt;}
.y177{bottom:558.069333pt;}
.y1f7{bottom:558.214667pt;}
.yb0{bottom:559.144000pt;}
.y1bc{bottom:559.892000pt;}
.ye3{bottom:560.340000pt;}
.y266{bottom:562.996000pt;}
.y7f{bottom:564.325333pt;}
.y118{bottom:565.122667pt;}
.y1c0{bottom:566.197333pt;}
.y22f{bottom:566.560000pt;}
.y4b{bottom:566.580000pt;}
.y29a{bottom:566.981333pt;}
.y197{bottom:567.778667pt;}
.y2cb{bottom:571.165333pt;}
.y8{bottom:573.786667pt;}
.y148{bottom:574.348000pt;}
.y1bb{bottom:574.504000pt;}
.y1f6{bottom:574.952000pt;}
.yaf{bottom:575.881333pt;}
.ye2{bottom:577.077333pt;}
.y176{bottom:578.792000pt;}
.y265{bottom:579.733333pt;}
.y7e{bottom:581.062667pt;}
.y117{bottom:581.860000pt;}
.y22e{bottom:583.297333pt;}
.y299{bottom:583.718667pt;}
.y4a{bottom:583.874667pt;}
.y1bf{bottom:584.173333pt;}
.y196{bottom:584.516000pt;}
.y2ca{bottom:586.508000pt;}
.y1be{bottom:586.512000pt;}
.y1ba{bottom:589.116000pt;}
.y147{bottom:591.085333pt;}
.y1f5{bottom:591.689333pt;}
.yae{bottom:592.618667pt;}
.y7{bottom:592.685334pt;}
.ye1{bottom:593.814667pt;}
.y264{bottom:596.470667pt;}
.y7d{bottom:597.800000pt;}
.y116{bottom:598.597333pt;}
.y22d{bottom:600.034667pt;}
.y298{bottom:600.456000pt;}
.y49{bottom:601.169333pt;}
.y195{bottom:601.253333pt;}
.y2c9{bottom:601.850667pt;}
.y1bd{bottom:602.149333pt;}
.y1b9{bottom:603.728000pt;}
.y146{bottom:607.822667pt;}
.y1f4{bottom:608.426667pt;}
.yad{bottom:609.356000pt;}
.ye0{bottom:610.552000pt;}
.y263{bottom:613.208000pt;}
.y7c{bottom:614.537333pt;}
.y115{bottom:615.334667pt;}
.y175{bottom:615.470667pt;}
.y22c{bottom:616.772000pt;}
.y297{bottom:617.193333pt;}
.y194{bottom:617.990667pt;}
.y48{bottom:618.465333pt;}
.y1b7{bottom:623.164000pt;}
.y145{bottom:624.558667pt;}
.y1f3{bottom:625.164000pt;}
.yac{bottom:626.093333pt;}
.ydf{bottom:627.289333pt;}
.y262{bottom:629.945333pt;}
.y174{bottom:630.082667pt;}
.y1b6{bottom:630.469333pt;}
.y7b{bottom:631.274667pt;}
.y114{bottom:632.070667pt;}
.y2c8{bottom:632.536000pt;}
.y22b{bottom:633.508000pt;}
.y296{bottom:633.930667pt;}
.y193{bottom:634.728000pt;}
.y47{bottom:635.760000pt;}
.y1b8{bottom:637.774667pt;}
.y144{bottom:641.296000pt;}
.y1f2{bottom:641.901333pt;}
.yab{bottom:642.830667pt;}
.yde{bottom:644.026667pt;}
.y173{bottom:644.694667pt;}
.y6{bottom:645.598667pt;}
.y261{bottom:646.682667pt;}
.y2c7{bottom:647.878667pt;}
.y7a{bottom:648.012000pt;}
.y113{bottom:648.808000pt;}
.y22a{bottom:650.245333pt;}
.y295{bottom:650.668000pt;}
.y192{bottom:651.465333pt;}
.y46{bottom:653.056000pt;}
.y143{bottom:658.033333pt;}
.y1f1{bottom:658.638667pt;}
.y172{bottom:659.306667pt;}
.yaa{bottom:659.568000pt;}
.ydd{bottom:660.764000pt;}
.y2c6{bottom:663.221333pt;}
.y260{bottom:663.420000pt;}
.y79{bottom:664.749333pt;}
.y1b5{bottom:665.881333pt;}
.y229{bottom:666.982667pt;}
.y294{bottom:667.405333pt;}
.y191{bottom:668.202667pt;}
.y3{bottom:668.977329pt;}
.y112{bottom:669.530667pt;}
.y45{bottom:670.350667pt;}
.y171{bottom:673.918667pt;}
.y142{bottom:674.770667pt;}
.y1f0{bottom:675.376000pt;}
.ya9{bottom:676.305333pt;}
.ydc{bottom:677.501333pt;}
.y2c5{bottom:678.564000pt;}
.y25f{bottom:680.157333pt;}
.y78{bottom:681.485333pt;}
.y228{bottom:683.720000pt;}
.y293{bottom:684.142667pt;}
.y190{bottom:684.940000pt;}
.y44{bottom:687.645333pt;}
.y170{bottom:688.529333pt;}
.y141{bottom:691.508000pt;}
.y1ef{bottom:692.113333pt;}
.ya8{bottom:693.042667pt;}
.y2c4{bottom:693.906667pt;}
.ydb{bottom:694.238667pt;}
.y25e{bottom:696.894667pt;}
.y77{bottom:698.222667pt;}
.y111{bottom:699.418667pt;}
.y227{bottom:700.457333pt;}
.y292{bottom:700.880000pt;}
.y18f{bottom:701.677333pt;}
.y16f{bottom:703.141333pt;}
.y43{bottom:704.941333pt;}
.y140{bottom:708.245333pt;}
.y1ee{bottom:708.850667pt;}
.y2c3{bottom:709.248000pt;}
.ya7{bottom:709.780000pt;}
.yda{bottom:710.976000pt;}
.y1b4{bottom:712.385333pt;}
.y25d{bottom:713.632000pt;}
.y76{bottom:714.960000pt;}
.y110{bottom:716.156000pt;}
.y291{bottom:717.617333pt;}
.y16e{bottom:717.753333pt;}
.y18e{bottom:718.414667pt;}
.y42{bottom:722.236000pt;}
.y2c2{bottom:724.590667pt;}
.y1ed{bottom:725.588000pt;}
.ya6{bottom:726.517333pt;}
.yd9{bottom:727.713333pt;}
.y25c{bottom:730.369333pt;}
.y75{bottom:731.697333pt;}
.y16d{bottom:732.365333pt;}
.y10f{bottom:732.893333pt;}
.y290{bottom:734.354667pt;}
.y18d{bottom:735.152000pt;}
.y41{bottom:739.530667pt;}
.y2c1{bottom:739.933333pt;}
.y1ec{bottom:742.324000pt;}
.ya5{bottom:743.254667pt;}
.y226{bottom:743.525333pt;}
.yd8{bottom:744.450667pt;}
.y16c{bottom:746.977333pt;}
.y25b{bottom:747.106667pt;}
.y74{bottom:748.434667pt;}
.y10e{bottom:749.630667pt;}
.y13f{bottom:750.388000pt;}
.y28f{bottom:751.092000pt;}
.y2eb{bottom:751.224000pt;}
.y18c{bottom:751.889333pt;}
.y2c0{bottom:755.276000pt;}
.y40{bottom:756.826667pt;}
.y225{bottom:758.137333pt;}
.y1eb{bottom:759.061333pt;}
.ya4{bottom:759.992000pt;}
.yd7{bottom:761.186667pt;}
.y16b{bottom:761.589333pt;}
.y25a{bottom:763.844000pt;}
.y13e{bottom:765.000000pt;}
.y73{bottom:765.172000pt;}
.y10d{bottom:766.368000pt;}
.y2ea{bottom:766.566667pt;}
.y28e{bottom:767.829333pt;}
.y18b{bottom:768.626667pt;}
.y2bf{bottom:770.618667pt;}
.y3f{bottom:774.121333pt;}
.y1ea{bottom:775.798667pt;}
.y16a{bottom:776.201333pt;}
.ya3{bottom:776.729333pt;}
.yd6{bottom:777.924000pt;}
.y224{bottom:779.150667pt;}
.y259{bottom:780.581333pt;}
.y2{bottom:781.661334pt;}
.y72{bottom:781.909333pt;}
.y28d{bottom:784.566667pt;}
.y18a{bottom:785.364000pt;}
.y2be{bottom:785.961333pt;}
.y13d{bottom:786.013333pt;}
.y21d{bottom:786.306667pt;}
.y10c{bottom:787.090667pt;}
.y169{bottom:790.813333pt;}
.y3e{bottom:791.417333pt;}
.y1e9{bottom:792.536000pt;}
.ya2{bottom:793.466667pt;}
.y223{bottom:793.762667pt;}
.yd5{bottom:794.661333pt;}
.y258{bottom:797.318667pt;}
.y71{bottom:798.646667pt;}
.y13c{bottom:800.625333pt;}
.y21c{bottom:800.918667pt;}
.y28c{bottom:801.304000pt;}
.y168{bottom:805.425333pt;}
.y222{bottom:808.374667pt;}
.y3d{bottom:808.712000pt;}
.y189{bottom:808.742667pt;}
.y1e8{bottom:809.273333pt;}
.ya1{bottom:810.204000pt;}
.yd4{bottom:811.398667pt;}
.y257{bottom:814.056000pt;}
.y13b{bottom:815.237333pt;}
.y70{bottom:815.384000pt;}
.y21b{bottom:815.530667pt;}
.y2bd{bottom:816.646667pt;}
.y10b{bottom:816.978667pt;}
.y28b{bottom:818.041333pt;}
.y167{bottom:820.037333pt;}
.y221{bottom:822.986667pt;}
.y1e7{bottom:826.010667pt;}
.ya0{bottom:826.941333pt;}
.yd3{bottom:828.136000pt;}
.y21a{bottom:830.142667pt;}
.y256{bottom:830.793333pt;}
.y2bc{bottom:831.988000pt;}
.y6f{bottom:832.121333pt;}
.y166{bottom:834.648000pt;}
.y28a{bottom:834.778667pt;}
.y13a{bottom:836.252000pt;}
.y220{bottom:837.598667pt;}
.y3c{bottom:842.672000pt;}
.y1e6{bottom:842.748000pt;}
.y9f{bottom:843.678667pt;}
.y219{bottom:844.754667pt;}
.yd2{bottom:844.873333pt;}
.y2bb{bottom:847.330667pt;}
.y255{bottom:847.530667pt;}
.y6e{bottom:848.858667pt;}
.y10a{bottom:849.656000pt;}
.y289{bottom:851.516000pt;}
.y21f{bottom:852.210667pt;}
.y165{bottom:855.662667pt;}
.y1{bottom:859.312000pt;}
.y218{bottom:859.366667pt;}
.y1e5{bottom:859.485333pt;}
.y9e{bottom:860.416000pt;}
.yd1{bottom:861.610667pt;}
.y2ba{bottom:862.673333pt;}
.y254{bottom:864.268000pt;}
.y6d{bottom:865.596000pt;}
.y21e{bottom:866.822667pt;}
.y139{bottom:867.014667pt;}
.y288{bottom:868.253333pt;}
.y1e4{bottom:876.222667pt;}
.y9d{bottom:877.153333pt;}
.y2b9{bottom:878.016000pt;}
.yd0{bottom:878.348000pt;}
.y253{bottom:881.005333pt;}
.y6c{bottom:882.333333pt;}
.y164{bottom:883.769333pt;}
.y287{bottom:884.990667pt;}
.y3b{bottom:885.904000pt;}
.y217{bottom:887.836000pt;}
.y1e3{bottom:892.960000pt;}
.y2b8{bottom:893.358667pt;}
.y9c{bottom:893.890667pt;}
.ycf{bottom:895.085333pt;}
.y252{bottom:897.742667pt;}
.y6b{bottom:899.070667pt;}
.y286{bottom:901.728000pt;}
.y2b7{bottom:908.701333pt;}
.y1e2{bottom:909.697333pt;}
.y9b{bottom:910.628000pt;}
.yce{bottom:911.822667pt;}
.y251{bottom:914.480000pt;}
.y6a{bottom:915.808000pt;}
.y285{bottom:918.464000pt;}
.y216{bottom:918.598667pt;}
.y3a{bottom:921.386667pt;}
.y2b6{bottom:924.044000pt;}
.y1e1{bottom:926.434667pt;}
.y9a{bottom:927.364000pt;}
.ycd{bottom:928.560000pt;}
.y250{bottom:931.217333pt;}
.y69{bottom:932.545333pt;}
.y284{bottom:935.201333pt;}
.y215{bottom:935.694667pt;}
.y2b5{bottom:939.386667pt;}
.y1e0{bottom:943.172000pt;}
.y99{bottom:944.101333pt;}
.ycc{bottom:945.297333pt;}
.y39{bottom:946.493333pt;}
.y24f{bottom:947.954667pt;}
.y68{bottom:949.282667pt;}
.y283{bottom:951.938667pt;}
.y2b4{bottom:954.729333pt;}
.y1df{bottom:959.909333pt;}
.ycb{bottom:962.034667pt;}
.y24e{bottom:964.692000pt;}
.y98{bottom:964.824000pt;}
.y67{bottom:966.020000pt;}
.y214{bottom:968.676000pt;}
.y2b3{bottom:970.070667pt;}
.y38{bottom:971.598667pt;}
.y1de{bottom:976.646667pt;}
.y66{bottom:982.757333pt;}
.y213{bottom:985.413333pt;}
.y1dd{bottom:993.384000pt;}
.y35{bottom:1010.254667pt;}
.y65{bottom:1038.548000pt;}
.y1dc{bottom:1041.204000pt;}
.h20{height:22.380134pt;}
.h1d{height:23.049626pt;}
.h16{height:24.866650pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h1f{height:28.436309pt;}
.h7{height:28.560000pt;}
.h10{height:30.945242pt;}
.h14{height:31.157778pt;}
.h12{height:34.430976pt;}
.h11{height:34.813542pt;}
.h21{height:35.052646pt;}
.hf{height:38.256384pt;}
.h13{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h22{height:43.660390pt;}
.hb{height:45.271688pt;}
.h15{height:48.511220pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h19{height:63.652309pt;}
.h1c{height:64.034876pt;}
.h1b{height:64.040209pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h1e{height:78.526976pt;}
.h1a{height:92.873643pt;}
.h4{height:105.826671pt;}
.h17{height:793.701333pt;}
.h18{height:794.000000pt;}
.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;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x3d{left:54.588000pt;}
.xc{left:55.592000pt;}
.x1b{left:64.936000pt;}
.x20{left:67.925333pt;}
.x46{left:74.646667pt;}
.x45{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3e{left:155.264000pt;}
.x3c{left:176.752000pt;}
.x3a{left:179.740000pt;}
.x4{left:180.874667pt;}
.x1c{left:190.022667pt;}
.x17{left:192.181333pt;}
.x47{left:211.989333pt;}
.x7{left:221.778667pt;}
.x32{left:228.824000pt;}
.xe{left:229.828000pt;}
.x40{left:235.630667pt;}
.x19{left:238.846667pt;}
.x10{left:241.784000pt;}
.x18{left:244.937333pt;}
.xa{left:249.092000pt;}
.x9{left:250.204000pt;}
.x3f{left:253.938667pt;}
.x2b{left:267.050667pt;}
.x38{left:272.185333pt;}
.x41{left:276.516000pt;}
.x8{left:290.096000pt;}
.x1e{left:306.325333pt;}
.x36{left:308.330667pt;}
.xb{left:310.133333pt;}
.x37{left:315.990667pt;}
.x44{left:331.018667pt;}
.x43{left:380.445333pt;}
.x42{left:385.504000pt;}
.x3{left:404.408000pt;}
.x15{left:413.749333pt;}
.x16{left:421.409333pt;}
.x34{left:422.780000pt;}
.x33{left:425.769333pt;}
.x2f{left:436.230667pt;}
.xd{left:441.232000pt;}
.x35{left:490.738667pt;}
.x30{left:493.876000pt;}
.x23{left:521.121333pt;}
.x24{left:533.006667pt;}
.x31{left:561.984000pt;}
.x27{left:568.445333pt;}
.x2e{left:572.145333pt;}
.x28{left:580.510667pt;}
.x11{left:583.628000pt;}
.x21{left:595.617333pt;}
.xf{left:603.042667pt;}
.x22{left:607.685333pt;}
.x12{left:625.466667pt;}
.x25{left:637.360000pt;}
.x1f{left:648.272000pt;}
.x26{left:650.116000pt;}
.x13{left:657.713333pt;}
.x3b{left:704.224000pt;}
.x29{left:731.266667pt;}
.x39{left:736.274667pt;}
.x2c{left:737.685333pt;}
.x2a{left:738.926667pt;}
.x14{left:739.930667pt;}
.x2d{left:744.146667pt;}
.x1d{left:838.038667pt;}
.x1a{left:911.132000pt;}
}




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