
    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_3b740560aeae8d08f5640a2b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4b2ef1a2fc08a93215876b04.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d395effa8be24ebeb22d1e5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_4a224b748e4ce721fbb143e4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e05cedae07db19edf5ecced.woff')format("woff");}.ff5{font-family:ff5;line-height:1.206055;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_0c663dae8947f75d1cd4319d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_516c3c47bacca4f110faa6eb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_16f7fd3548ae8e58d6e53181.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_eb54bfc854e25c15ad727014.woff')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_0c663dae8947f75d1cd4319d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_9f2256e3faf57b947149e18d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_7e05cedae07db19edf5ecced.woff')format("woff");}.ffc{font-family:ffc;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5f827325640c2d593c0a8e0c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_83d0f11ffb939c212b52b52e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.695000;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;}
.m1{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);}
.m1d{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);}
.m29{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);}
.m1b{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);}
.m23{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);}
.m2{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);}
.m1a{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);}
.md{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);}
.m18{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);}
.m1e{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);}
.m25{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);}
.m15{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);}
.m5{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);}
.m1c{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);}
.m27{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);}
.m16{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);}
.m13{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);}
.m7{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);}
.m8{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);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m4{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);}
.m19{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);}
.m1f{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);}
.me{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);}
.m28{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);}
.m11{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);}
.m22{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);}
.m26{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);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m21{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);}
.m17{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{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);}
.m14{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);}
.m6{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);}
.mf{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);}
.v5{vertical-align:-31.043683px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.882670px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:35.868000px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000088px;}
.ls22{letter-spacing:0.000292px;}
.ls14{letter-spacing:0.000306px;}
.ls15{letter-spacing:0.000406px;}
.ls16{letter-spacing:0.000422px;}
.ls13{letter-spacing:0.001899px;}
.ls23{letter-spacing:0.002841px;}
.ls24{letter-spacing:0.003866px;}
.ls21{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.010584px;}
.lsd{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.019440px;}
.ls19{letter-spacing:0.026460px;}
.lsc{letter-spacing:0.032400px;}
.ls1b{letter-spacing:0.137592px;}
.ls1d{letter-spacing:0.148176px;}
.lse{letter-spacing:0.168480px;}
.lsf{letter-spacing:0.187920px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls2a{letter-spacing:13.042237px;}
.ls25{letter-spacing:13.371117px;}
.ls29{letter-spacing:13.389686px;}
.ls20{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.592996px;}
.lsb{letter-spacing:14.943900px;}
.ls7{letter-spacing:15.063451px;}
.ls28{letter-spacing:15.362165px;}
.ls27{letter-spacing:16.915106px;}
.ls1{letter-spacing:57.415200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls6{letter-spacing:94.292700px;}
.ls9{letter-spacing:189.904200px;}
.ls8{letter-spacing:203.206200px;}
.lsa{letter-spacing:251.176200px;}
.ls18{letter-spacing:1142.206017px;}
.ls1c{letter-spacing:1152.793545px;}
.ls10{letter-spacing:1321.822800px;}
.ls12{letter-spacing:1326.890149px;}
.ls17{letter-spacing:1398.597816px;}
.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;}
}
.ws7c{word-spacing:-16.200000px;}
.ws76{word-spacing:-14.943900px;}
.ws75{word-spacing:-13.449600px;}
.ws86{word-spacing:-13.230000px;}
.ws1f{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws77{word-spacing:-3.466985px;}
.wsa7{word-spacing:-3.347434px;}
.ws42{word-spacing:-3.227882px;}
.ws45{word-spacing:-3.168107px;}
.ws83{word-spacing:-3.108331px;}
.ws68{word-spacing:-2.749678px;}
.ws31{word-spacing:-2.689902px;}
.ws30{word-spacing:-2.630126px;}
.ws4a{word-spacing:-2.510575px;}
.ws8c{word-spacing:-2.391024px;}
.ws72{word-spacing:-2.331248px;}
.wsbe{word-spacing:-2.313331px;}
.ws5f{word-spacing:-2.271473px;}
.wsb5{word-spacing:-2.259533px;}
.ws5e{word-spacing:-2.211697px;}
.ws47{word-spacing:-2.151922px;}
.ws38{word-spacing:-2.092146px;}
.wsd5{word-spacing:-2.044339px;}
.wsa6{word-spacing:-2.032370px;}
.ws6b{word-spacing:-1.972595px;}
.ws67{word-spacing:-1.793268px;}
.ws28{word-spacing:-1.733492px;}
.ws98{word-spacing:-1.613941px;}
.wsd4{word-spacing:-1.560154px;}
.wsaf{word-spacing:-1.554166px;}
.ws6e{word-spacing:-1.494390px;}
.ws9b{word-spacing:-1.434614px;}
.wsc3{word-spacing:-1.398758px;}
.ws29{word-spacing:-1.374839px;}
.ws49{word-spacing:-1.315063px;}
.wsab{word-spacing:-1.255288px;}
.wsdd{word-spacing:-1.183565px;}
.ws9c{word-spacing:-1.135736px;}
.wsb1{word-spacing:-1.075961px;}
.ws7b{word-spacing:-1.016185px;}
.ws9f{word-spacing:-0.956410px;}
.ws1b{word-spacing:-0.896634px;}
.ws62{word-spacing:-0.812950px;}
.ws8d{word-spacing:-0.777083px;}
.wsc5{word-spacing:-0.753178px;}
.ws78{word-spacing:-0.717307px;}
.ws27{word-spacing:-0.657532px;}
.wsef{word-spacing:-0.591782px;}
.wsaa{word-spacing:-0.537980px;}
.ws96{word-spacing:-0.478205px;}
.wsf1{word-spacing:-0.430387px;}
.ws69{word-spacing:-0.418429px;}
.wsee{word-spacing:-0.376589px;}
.ws11{word-spacing:-0.358654px;}
.ws52{word-spacing:-0.322790px;}
.ws84{word-spacing:-0.312831px;}
.ws19{word-spacing:-0.298878px;}
.ws7f{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.239102px;}
.ws80{word-spacing:-0.215194px;}
.ws61{word-spacing:-0.191282px;}
.ws9{word-spacing:-0.179327px;}
.ws74{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.wsb6{word-spacing:-0.107597px;}
.wsea{word-spacing:-0.069418px;}
.ws10{word-spacing:-0.059776px;}
.ws5c{word-spacing:-0.053798px;}
.ws63{word-spacing:-0.047821px;}
.wse1{word-spacing:-0.026304px;}
.wseb{word-spacing:-0.024672px;}
.wse8{word-spacing:-0.023386px;}
.wsed{word-spacing:-0.011318px;}
.wse0{word-spacing:-0.010982px;}
.wsd9{word-spacing:-0.009302px;}
.wsd0{word-spacing:-0.006979px;}
.wsc9{word-spacing:-0.006557px;}
.wsdc{word-spacing:-0.003302px;}
.wscd{word-spacing:-0.003110px;}
.ws1e{word-spacing:-0.003082px;}
.wscb{word-spacing:-0.002573px;}
.wsd2{word-spacing:-0.000979px;}
.wse2{word-spacing:-0.000806px;}
.ws5{word-spacing:-0.000191px;}
.ws0{word-spacing:0.000000px;}
.ws53{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws2{word-spacing:0.083686px;}
.wsb3{word-spacing:0.107597px;}
.ws8{word-spacing:0.119551px;}
.wsd6{word-spacing:0.137082px;}
.ws87{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.wsd8{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.ws92{word-spacing:0.268992px;}
.ws1a{word-spacing:0.298878px;}
.ws73{word-spacing:0.322790px;}
.ws65{word-spacing:0.358654px;}
.ws21{word-spacing:0.418429px;}
.wse6{word-spacing:0.430387px;}
.ws6a{word-spacing:0.478205px;}
.wsf{word-spacing:0.537980px;}
.wsba{word-spacing:0.537984px;}
.ws4f{word-spacing:0.597756px;}
.wsbf{word-spacing:0.645581px;}
.wsec{word-spacing:0.699379px;}
.ws99{word-spacing:0.717307px;}
.ws66{word-spacing:0.777083px;}
.wsce{word-spacing:0.806976px;}
.ws82{word-spacing:0.836858px;}
.wsa0{word-spacing:0.896634px;}
.wsc8{word-spacing:0.914573px;}
.ws18{word-spacing:0.956410px;}
.ws36{word-spacing:1.016185px;}
.ws93{word-spacing:1.075961px;}
.ws89{word-spacing:1.075968px;}
.wse5{word-spacing:1.077734px;}
.ws2d{word-spacing:1.135736px;}
.ws2a{word-spacing:1.195512px;}
.ws9d{word-spacing:1.255288px;}
.ws64{word-spacing:1.315063px;}
.wsb7{word-spacing:1.344960px;}
.ws43{word-spacing:1.374839px;}
.ws4d{word-spacing:1.434614px;}
.wse7{word-spacing:1.452557px;}
.ws41{word-spacing:1.494390px;}
.ws97{word-spacing:1.554166px;}
.wsd7{word-spacing:1.560154px;}
.ws59{word-spacing:1.613941px;}
.wsd{word-spacing:1.673717px;}
.ws24{word-spacing:1.733492px;}
.ws3d{word-spacing:1.793268px;}
.ws54{word-spacing:1.853044px;}
.ws35{word-spacing:1.912819px;}
.ws81{word-spacing:1.972595px;}
.ws95{word-spacing:2.092146px;}
.ws37{word-spacing:2.271473px;}
.ws2f{word-spacing:2.331248px;}
.ws50{word-spacing:2.391024px;}
.ws4b{word-spacing:2.450800px;}
.ws4{word-spacing:2.510252px;}
.ws20{word-spacing:2.510575px;}
.ws79{word-spacing:2.570351px;}
.ws8a{word-spacing:2.582323px;}
.ws57{word-spacing:2.630126px;}
.ws1d{word-spacing:2.689902px;}
.wsde{word-spacing:2.689920px;}
.ws7a{word-spacing:2.749678px;}
.ws4e{word-spacing:2.809453px;}
.ws3a{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws1c{word-spacing:2.929004px;}
.ws3e{word-spacing:2.988780px;}
.ws17{word-spacing:3.048556px;}
.ws9a{word-spacing:3.108331px;}
.ws51{word-spacing:3.168107px;}
.wsca{word-spacing:3.218640px;}
.wsdb{word-spacing:3.220243px;}
.wscf{word-spacing:3.220454px;}
.wsc4{word-spacing:3.222566px;}
.wsc1{word-spacing:3.222912px;}
.wsc2{word-spacing:3.223776px;}
.wsf2{word-spacing:3.224093px;}
.wsc0{word-spacing:3.224861px;}
.wsda{word-spacing:3.226378px;}
.ws8b{word-spacing:3.227882px;}
.ws7e{word-spacing:3.227904px;}
.wsd3{word-spacing:3.230179px;}
.wse3{word-spacing:3.230496px;}
.wsf0{word-spacing:3.281702px;}
.ws91{word-spacing:3.287658px;}
.ws88{word-spacing:3.335501px;}
.ws46{word-spacing:3.347434px;}
.ws3f{word-spacing:3.407209px;}
.wsb4{word-spacing:3.409885px;}
.ws40{word-spacing:3.466985px;}
.wsf3{word-spacing:3.496896px;}
.wsbb{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.wsc6{word-spacing:3.590797px;}
.ws55{word-spacing:3.646312px;}
.wsb8{word-spacing:3.658291px;}
.wsc7{word-spacing:3.712090px;}
.ws3c{word-spacing:3.765863px;}
.ws39{word-spacing:3.825638px;}
.ws48{word-spacing:3.885414px;}
.ws8e{word-spacing:3.945190px;}
.ws26{word-spacing:4.004965px;}
.ws2e{word-spacing:4.124516px;}
.ws6c{word-spacing:4.184292px;}
.wsa1{word-spacing:4.244068px;}
.ws5d{word-spacing:4.303843px;}
.ws14{word-spacing:4.303872px;}
.ws5b{word-spacing:4.363619px;}
.wsa9{word-spacing:4.423394px;}
.wsbd{word-spacing:4.465267px;}
.ws85{word-spacing:4.483170px;}
.wsd1{word-spacing:4.519066px;}
.ws13{word-spacing:4.542946px;}
.wsa5{word-spacing:4.602721px;}
.ws2c{word-spacing:4.662497px;}
.ws16{word-spacing:4.722272px;}
.ws5a{word-spacing:4.782048px;}
.ws6d{word-spacing:4.841824px;}
.wsb2{word-spacing:4.949453px;}
.ws71{word-spacing:5.080926px;}
.ws56{word-spacing:5.200477px;}
.ws70{word-spacing:5.260253px;}
.wsc{word-spacing:5.320028px;}
.ws8f{word-spacing:5.379804px;}
.wsa2{word-spacing:5.439580px;}
.wsae{word-spacing:5.559131px;}
.wsb0{word-spacing:5.738458px;}
.wscc{word-spacing:5.756429px;}
.wsa4{word-spacing:5.858009px;}
.ws4c{word-spacing:5.917784px;}
.wse9{word-spacing:5.917824px;}
.ws6f{word-spacing:6.037336px;}
.ws9e{word-spacing:6.216662px;}
.ws3b{word-spacing:6.455765px;}
.wsac{word-spacing:6.515540px;}
.ws94{word-spacing:6.575316px;}
.wse{word-spacing:6.635092px;}
.ws2b{word-spacing:6.814418px;}
.ws90{word-spacing:6.874194px;}
.wsb9{word-spacing:6.886195px;}
.wsa8{word-spacing:7.232848px;}
.ws33{word-spacing:7.352399px;}
.wse4{word-spacing:7.424179px;}
.ws32{word-spacing:7.591501px;}
.ws58{word-spacing:7.711052px;}
.wsad{word-spacing:8.308808px;}
.wsa3{word-spacing:8.428360px;}
.ws44{word-spacing:8.488135px;}
.wsdf{word-spacing:11.835648px;}
.wsbc{word-spacing:12.314223px;}
.ws12{word-spacing:12.974769px;}
.ws34{word-spacing:26.241488px;}
.ws1{word-spacing:28.455541px;}
.ws60{word-spacing:928.016190px;}
.ws7d{word-spacing:1320.066720px;}
._3b{margin-left:-22.416001px;}
._4{margin-left:-11.943245px;}
._15{margin-left:-7.579550px;}
._10{margin-left:-6.073210px;}
._8{margin-left:-4.895654px;}
._2{margin-left:-3.807695px;}
._2f{margin-left:-2.618197px;}
._1{margin-left:-1.506341px;}
._2d{width:1.147687px;}
._6{width:2.998544px;}
._c{width:4.602721px;}
._a{width:11.094379px;}
._0{width:12.971268px;}
._18{width:14.178768px;}
._9{width:15.320545px;}
._16{width:17.137702px;}
._b{width:18.410885px;}
._1c{width:19.534670px;}
._f{width:20.682358px;}
._e{width:22.427801px;}
._13{width:24.209118px;}
._3{width:25.946136px;}
._30{width:27.209849px;}
._14{width:28.214083px;}
._1a{width:29.349820px;}
._31{width:30.461654px;}
._1d{width:31.920170px;}
._5{width:33.355008px;}
._d{width:35.148053px;}
._1b{width:36.295740px;}
._19{width:38.435711px;}
._33{width:40.121378px;}
._17{width:41.962471px;}
._32{width:44.473046px;}
._7{width:54.410536px;}
._3a{width:61.868160px;}
._37{width:71.713267px;}
._2e{width:82.276080px;}
._39{width:88.767360px;}
._29{width:124.867244px;}
._34{width:126.157248px;}
._38{width:143.534131px;}
._2c{width:147.645732px;}
._35{width:157.145126px;}
._2b{width:159.899730px;}
._36{width:180.870221px;}
._23{width:218.295731px;}
._21{width:229.717631px;}
._2a{width:233.543269px;}
._24{width:240.918403px;}
._27{width:273.736291px;}
._25{width:321.174835px;}
._1f{width:356.322352px;}
._28{width:379.156631px;}
._22{width:582.453446px;}
._20{width:798.243362px;}
._1e{width:820.898315px;}
._11{width:1788.278700px;}
._26{width:2410.328700px;}
._12{width:2434.238700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fse{font-size:52.920000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fsf{font-size:61.923600px;}
.fs7{font-size:62.286600px;}
.fsc{font-size:64.800000px;}
.fs6{font-size:71.731200px;}
.fsb{font-size:72.144000px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yb7{bottom:0.510794px;}
.y238{bottom:5.155677px;}
.y218{bottom:6.837390px;}
.y1e8{bottom:7.448031px;}
.y1ee{bottom:8.481607px;}
.y217{bottom:20.684810px;}
.y1e5{bottom:24.402951px;}
.y1ed{bottom:25.438147px;}
.y1e7{bottom:43.088031px;}
.y42{bottom:45.921000px;}
.y1e6{bottom:60.151491px;}
.y41{bottom:99.720000px;}
.y17{bottom:100.260000px;}
.ydd{bottom:103.915500px;}
.y295{bottom:109.963500px;}
.y23a{bottom:110.142000px;}
.y257{bottom:111.945000px;}
.y26d{bottom:114.882000px;}
.y1dd{bottom:115.534500px;}
.y135{bottom:116.407500px;}
.y16{bottom:118.147500px;}
.y74{bottom:118.365000px;}
.y91{bottom:119.320500px;}
.y208{bottom:119.928000px;}
.y40{bottom:120.610500px;}
.y2c6{bottom:124.384500px;}
.ydc{bottom:124.807500px;}
.y2f7{bottom:125.112000px;}
.y12b{bottom:127.878000px;}
.y239{bottom:129.375000px;}
.y294{bottom:129.462000px;}
.yce{bottom:131.784000px;}
.y256{bottom:132.837000px;}
.y197{bottom:134.695500px;}
.y26c{bottom:135.774000px;}
.y15{bottom:136.035000px;}
.y1dc{bottom:136.426500px;}
.y134{bottom:137.298000px;}
.y73{bottom:139.255500px;}
.y90{bottom:140.212500px;}
.y207{bottom:140.820000px;}
.y3f{bottom:141.502500px;}
.y2c5{bottom:143.535000px;}
.y2f6{bottom:144.262500px;}
.ydb{bottom:145.699500px;}
.y12a{bottom:148.770000px;}
.y293{bottom:148.960500px;}
.y237{bottom:151.803882px;}
.y196{bottom:152.629500px;}
.ycd{bottom:152.676000px;}
.yf9{bottom:153.519000px;}
.y255{bottom:153.729000px;}
.y14{bottom:153.924000px;}
.yb2{bottom:156.666000px;}
.y1db{bottom:157.317000px;}
.y133{bottom:158.190000px;}
.y72{bottom:160.147500px;}
.y8f{bottom:161.104500px;}
.y193{bottom:161.595000px;}
.y206{bottom:161.712000px;}
.y3e{bottom:162.394500px;}
.y2c4{bottom:162.685500px;}
.y2f5{bottom:163.413000px;}
.yda{bottom:166.591500px;}
.y292{bottom:168.459000px;}
.y129{bottom:169.660500px;}
.y222{bottom:170.131500px;}
.y18e{bottom:170.562000px;}
.yf8{bottom:171.451500px;}
.y13{bottom:171.811500px;}
.ycc{bottom:173.566500px;}
.y254{bottom:174.621000px;}
.y178{bottom:176.376000px;}
.yb1{bottom:177.556500px;}
.y1da{bottom:178.209000px;}
.y132{bottom:179.082000px;}
.y192{bottom:179.527500px;}
.y71{bottom:181.039500px;}
.y2c3{bottom:181.836000px;}
.y8e{bottom:181.995000px;}
.y2f4{bottom:182.563500px;}
.y205{bottom:182.602500px;}
.y3d{bottom:183.285000px;}
.yd9{bottom:187.482000px;}
.y18d{bottom:188.494500px;}
.yf7{bottom:189.384000px;}
.y12{bottom:189.699000px;}
.y128{bottom:190.552500px;}
.y221{bottom:191.023500px;}
.ycb{bottom:194.458500px;}
.y253{bottom:195.511500px;}
.y291{bottom:196.924500px;}
.y177{bottom:197.268000px;}
.y191{bottom:197.461500px;}
.yb0{bottom:198.448500px;}
.y216{bottom:198.848828px;}
.y1d9{bottom:199.101000px;}
.y131{bottom:199.972500px;}
.y2c2{bottom:200.986500px;}
.y2f3{bottom:201.714000px;}
.y70{bottom:201.930000px;}
.y8d{bottom:202.887000px;}
.y204{bottom:203.494500px;}
.y3c{bottom:204.177000px;}
.y1e9{bottom:205.146000px;}
.y18c{bottom:206.427000px;}
.yf6{bottom:207.316500px;}
.y11{bottom:207.586500px;}
.yd8{bottom:208.374000px;}
.y127{bottom:211.444500px;}
.y220{bottom:211.914000px;}
.y215{bottom:213.049033px;}
.yca{bottom:215.350500px;}
.y190{bottom:215.394000px;}
.y252{bottom:216.403500px;}
.y290{bottom:216.423000px;}
.y176{bottom:218.158500px;}
.yaf{bottom:219.340500px;}
.y1d8{bottom:219.991500px;}
.y2c1{bottom:220.137000px;}
.y130{bottom:220.864500px;}
.y6f{bottom:222.822000px;}
.y8c{bottom:223.779000px;}
.y18b{bottom:224.359500px;}
.y203{bottom:224.386500px;}
.y3b{bottom:225.069000px;}
.yf5{bottom:225.249000px;}
.y10{bottom:225.475500px;}
.yd7{bottom:229.266000px;}
.y1e1{bottom:230.563140px;}
.y126{bottom:232.335000px;}
.y21f{bottom:232.806000px;}
.y18f{bottom:233.326500px;}
.yf4{bottom:234.216000px;}
.yc9{bottom:236.241000px;}
.yc8{bottom:236.242500px;}
.y251{bottom:237.295500px;}
.y175{bottom:239.050500px;}
.y2c0{bottom:239.287500px;}
.y2f2{bottom:240.015000px;}
.yae{bottom:240.232500px;}
.y1d7{bottom:240.883500px;}
.y1e4{bottom:240.943491px;}
.y12f{bottom:241.756500px;}
.y1ec{bottom:242.085600px;}
.y195{bottom:242.293500px;}
.y6e{bottom:243.714000px;}
.y8b{bottom:244.669500px;}
.y28f{bottom:244.888500px;}
.y202{bottom:245.277000px;}
.y3a{bottom:245.961000px;}
.yd6{bottom:250.156500px;}
.yf{bottom:252.330000px;}
.y125{bottom:253.227000px;}
.y1e2{bottom:257.903207px;}
.y250{bottom:258.186000px;}
.y2bf{bottom:258.438000px;}
.y1eb{bottom:259.042140px;}
.y2f1{bottom:259.165500px;}
.y174{bottom:259.942500px;}
.y194{bottom:260.226000px;}
.yf3{bottom:261.115500px;}
.yad{bottom:261.123000px;}
.y1d6{bottom:261.775500px;}
.y12e{bottom:262.647000px;}
.y28e{bottom:264.387000px;}
.y6d{bottom:264.606000px;}
.y201{bottom:266.169000px;}
.y39{bottom:266.851500px;}
.y21e{bottom:268.434000px;}
.y8a{bottom:270.045000px;}
.yf2{bottom:270.081000px;}
.ye{bottom:270.217500px;}
.yd5{bottom:271.048500px;}
.y124{bottom:274.119000px;}
.y1e3{bottom:276.259491px;}
.y2be{bottom:277.588500px;}
.y2f0{bottom:278.316000px;}
.y24f{bottom:279.078000px;}
.y173{bottom:280.834500px;}
.y26b{bottom:282.015000px;}
.y1d5{bottom:282.666000px;}
.y12d{bottom:283.539000px;}
.y28d{bottom:283.885500px;}
.y188{bottom:285.361500px;}
.y6c{bottom:285.496500px;}
.yac{bottom:286.498500px;}
.y200{bottom:287.061000px;}
.y21d{bottom:287.667000px;}
.y38{bottom:287.743500px;}
.yd{bottom:288.105000px;}
.y89{bottom:290.935500px;}
.yd4{bottom:291.940500px;}
.y18a{bottom:294.327000px;}
.y123{bottom:295.011000px;}
.y2bd{bottom:296.739000px;}
.yf1{bottom:296.980500px;}
.y2ef{bottom:297.466500px;}
.y24e{bottom:299.970000px;}
.y172{bottom:301.725000px;}
.y26a{bottom:302.907000px;}
.y187{bottom:303.294000px;}
.y28c{bottom:303.384000px;}
.y1d4{bottom:303.558000px;}
.y12c{bottom:304.431000px;}
.yf0{bottom:305.947500px;}
.yc{bottom:305.994000px;}
.y6b{bottom:306.388500px;}
.y21c{bottom:306.900000px;}
.y1ff{bottom:307.951500px;}
.y37{bottom:308.635500px;}
.y88{bottom:311.827500px;}
.y189{bottom:312.259500px;}
.yd3{bottom:312.831000px;}
.y2bc{bottom:315.889500px;}
.y2ee{bottom:316.617000px;}
.y122{bottom:320.385000px;}
.y24d{bottom:320.860500px;}
.y186{bottom:321.226500px;}
.y171{bottom:322.617000px;}
.y269{bottom:323.797500px;}
.yb{bottom:323.881500px;}
.y1d3{bottom:324.450000px;}
.yab{bottom:325.323000px;}
.y21b{bottom:326.133000px;}
.y6a{bottom:327.280500px;}
.y1fe{bottom:328.843500px;}
.yc6{bottom:329.526000px;}
.y28b{bottom:331.849500px;}
.y87{bottom:332.719500px;}
.yd2{bottom:333.723000px;}
.y36{bottom:334.009500px;}
.y2bb{bottom:335.040000px;}
.y2ed{bottom:335.767500px;}
.yef{bottom:340.048500px;}
.y24c{bottom:341.752500px;}
.ya{bottom:341.769000px;}
.y268{bottom:344.689500px;}
.y1d2{bottom:345.342000px;}
.y21a{bottom:345.364500px;}
.yaa{bottom:346.213500px;}
.y69{bottom:348.171000px;}
.y1fd{bottom:349.735500px;}
.yc5{bottom:350.418000px;}
.y28a{bottom:351.348000px;}
.y86{bottom:353.611500px;}
.y2ba{bottom:354.190500px;}
.yd1{bottom:354.615000px;}
.y2ec{bottom:354.918000px;}
.y121{bottom:355.728000px;}
.y185{bottom:356.880000px;}
.y9{bottom:359.658000px;}
.y24b{bottom:362.644500px;}
.y219{bottom:364.597500px;}
.y267{bottom:365.581500px;}
.y1d1{bottom:366.232500px;}
.ya9{bottom:367.105500px;}
.y68{bottom:369.063000px;}
.y16b{bottom:369.094500px;}
.y2fa{bottom:369.339000px;}
.y1fc{bottom:370.627500px;}
.y289{bottom:370.848000px;}
.yc4{bottom:371.310000px;}
.yee{bottom:372.714000px;}
.y2b9{bottom:373.341000px;}
.y214{bottom:374.014033px;}
.y2eb{bottom:374.070000px;}
.y85{bottom:374.502000px;}
.y184{bottom:376.113000px;}
.y120{bottom:376.618500px;}
.y8{bottom:377.545500px;}
.y170{bottom:378.061500px;}
.y24a{bottom:383.535000px;}
.y266{bottom:386.472000px;}
.y169{bottom:387.027000px;}
.y1d0{bottom:387.124500px;}
.ya8{bottom:387.997500px;}
.y2f9{bottom:388.489500px;}
.y67{bottom:389.955000px;}
.yd0{bottom:390.243000px;}
.y1fb{bottom:391.518000px;}
.yc3{bottom:392.200500px;}
.y2b8{bottom:392.491500px;}
.y2ea{bottom:393.220500px;}
.y183{bottom:395.346000px;}
.y84{bottom:395.394000px;}
.y213{bottom:395.623357px;}
.y16f{bottom:395.994000px;}
.y11f{bottom:397.510500px;}
.y288{bottom:399.312000px;}
.y7{bottom:401.410500px;}
.y249{bottom:404.427000px;}
.y167{bottom:404.961000px;}
.y265{bottom:407.364000px;}
.y2f8{bottom:407.640000px;}
.y1cf{bottom:408.016500px;}
.ya7{bottom:408.888000px;}
.ycf{bottom:409.476000px;}
.yed{bottom:410.805000px;}
.y66{bottom:410.845500px;}
.y2b7{bottom:411.643500px;}
.y2e9{bottom:412.371000px;}
.y1fa{bottom:412.410000px;}
.yc1{bottom:413.092500px;}
.y35{bottom:413.221500px;}
.y16e{bottom:413.926500px;}
.y83{bottom:416.286000px;}
.y11e{bottom:418.402500px;}
.yc2{bottom:418.518000px;}
.y287{bottom:418.810500px;}
.y6{bottom:419.299500px;}
.y166{bottom:422.893500px;}
.y248{bottom:425.319000px;}
.y264{bottom:428.256000px;}
.y1ce{bottom:428.907000px;}
.ya6{bottom:429.780000px;}
.yec{bottom:430.096500px;}
.y2b6{bottom:430.794000px;}
.y2e8{bottom:431.521500px;}
.y65{bottom:431.737500px;}
.y16d{bottom:431.859000px;}
.y182{bottom:432.450000px;}
.y1f9{bottom:433.302000px;}
.yc0{bottom:433.984500px;}
.y34{bottom:434.113500px;}
.y82{bottom:437.176500px;}
.y5{bottom:437.187000px;}
.y286{bottom:438.310500px;}
.y11d{bottom:439.293000px;}
.y168{bottom:440.826000px;}
.y247{bottom:446.211000px;}
.yeb{bottom:448.029000px;}
.y263{bottom:449.146500px;}
.y16c{bottom:449.791500px;}
.y1cc{bottom:449.799000px;}
.y2b5{bottom:449.944500px;}
.ya5{bottom:450.672000px;}
.y64{bottom:452.629500px;}
.y181{bottom:453.342000px;}
.y1f8{bottom:454.192500px;}
.ybf{bottom:454.875000px;}
.y4{bottom:455.074500px;}
.y1cd{bottom:455.223000px;}
.yea{bottom:456.996000px;}
.y285{bottom:457.809000px;}
.y81{bottom:458.068500px;}
.y16a{bottom:458.758500px;}
.y11c{bottom:460.185000px;}
.y246{bottom:467.101500px;}
.y2b4{bottom:469.095000px;}
.y2e7{bottom:469.822500px;}
.y262{bottom:470.038500px;}
.y1cb{bottom:470.691000px;}
.ya4{bottom:471.562500px;}
.y33{bottom:472.936500px;}
.y63{bottom:473.520000px;}
.y180{bottom:474.234000px;}
.y1f7{bottom:475.084500px;}
.ybe{bottom:475.767000px;}
.y284{bottom:477.307500px;}
.y3{bottom:478.941000px;}
.y80{bottom:478.960500px;}
.y11b{bottom:481.077000px;}
.ye9{bottom:483.894000px;}
.y245{bottom:487.993500px;}
.y2b3{bottom:488.245500px;}
.y2e6{bottom:488.973000px;}
.y261{bottom:490.930500px;}
.ya3{bottom:492.454500px;}
.ye8{bottom:492.861000px;}
.y32{bottom:493.828500px;}
.y62{bottom:494.412000px;}
.y17f{bottom:495.124500px;}
.y1f6{bottom:495.976500px;}
.y1ca{bottom:496.065000px;}
.ybd{bottom:496.659000px;}
.y283{bottom:496.806000px;}
.y2{bottom:496.828500px;}
.y258{bottom:498.895500px;}
.y164{bottom:501.826500px;}
.y11a{bottom:501.967500px;}
.y7f{bottom:504.334500px;}
.y2b2{bottom:507.396000px;}
.y2e5{bottom:508.123500px;}
.y244{bottom:508.885500px;}
.y161{bottom:510.793500px;}
.y260{bottom:511.822500px;}
.ya2{bottom:513.346500px;}
.y1{bottom:514.716000px;}
.y31{bottom:514.720500px;}
.y61{bottom:515.304000px;}
.y17e{bottom:516.016500px;}
.y1f5{bottom:516.867000px;}
.ybc{bottom:517.551000px;}
.y163{bottom:519.759000px;}
.ye7{bottom:519.760500px;}
.y7e{bottom:521.745000px;}
.y119{bottom:522.859500px;}
.y2b1{bottom:526.546500px;}
.y2e4{bottom:527.274000px;}
.ye6{bottom:528.726000px;}
.y243{bottom:529.776000px;}
.y25f{bottom:532.713000px;}
.ya1{bottom:534.237000px;}
.y1c9{bottom:534.778500px;}
.y30{bottom:535.612500px;}
.y60{bottom:536.194500px;}
.y162{bottom:537.691500px;}
.y1f4{bottom:537.759000px;}
.ybb{bottom:538.441500px;}
.y17d{bottom:541.392000px;}
.y118{bottom:543.751500px;}
.y2b0{bottom:545.697000px;}
.y2e3{bottom:546.424500px;}
.y160{bottom:546.658500px;}
.y242{bottom:550.668000px;}
.y25e{bottom:553.605000px;}
.ya0{bottom:555.129000px;}
.y165{bottom:555.624000px;}
.ye5{bottom:555.625500px;}
.y2f{bottom:556.503000px;}
.y1c8{bottom:557.059500px;}
.y5f{bottom:557.086500px;}
.y1f3{bottom:558.651000px;}
.y117{bottom:564.643500px;}
.y2af{bottom:564.847500px;}
.y2e2{bottom:565.575000px;}
.y241{bottom:571.560000px;}
.yba{bottom:571.798500px;}
.y17c{bottom:573.537000px;}
.ye4{bottom:573.558000px;}
.y25d{bottom:574.497000px;}
.y1c7{bottom:574.992000px;}
.y9f{bottom:576.021000px;}
.y2e{bottom:577.395000px;}
.y5e{bottom:577.978500px;}
.y1f2{bottom:579.541500px;}
.ye2{bottom:582.525000px;}
.y1c4{bottom:583.959000px;}
.y2ae{bottom:583.998000px;}
.y2e1{bottom:584.725500px;}
.y116{bottom:585.534000px;}
.yb9{bottom:591.031500px;}
.ye3{bottom:591.490500px;}
.y240{bottom:592.450500px;}
.y1bf{bottom:592.924500px;}
.y25c{bottom:595.387500px;}
.y9e{bottom:596.913000px;}
.y2d{bottom:598.287000px;}
.y15f{bottom:598.692000px;}
.y5d{bottom:598.870500px;}
.y1c3{bottom:601.891500px;}
.y2ad{bottom:603.148500px;}
.y2e0{bottom:603.876000px;}
.y115{bottom:606.426000px;}
.ye1{bottom:609.424500px;}
.yb8{bottom:610.263000px;}
.y1be{bottom:610.858500px;}
.y23f{bottom:613.342500px;}
.y1f1{bottom:615.169500px;}
.y25b{bottom:616.279500px;}
.y15e{bottom:616.624500px;}
.y9d{bottom:617.803500px;}
.y2c{bottom:619.177500px;}
.y5c{bottom:619.761000px;}
.y1c2{bottom:619.824000px;}
.y2ac{bottom:622.299000px;}
.y2df{bottom:623.026500px;}
.y114{bottom:627.318000px;}
.ye0{bottom:627.357000px;}
.y1bd{bottom:628.791000px;}
.y1f0{bottom:634.402500px;}
.y15a{bottom:634.558500px;}
.yb6{bottom:635.682000px;}
.y25a{bottom:637.171500px;}
.y1c1{bottom:637.756500px;}
.y9c{bottom:638.695500px;}
.y23e{bottom:638.718000px;}
.y2b{bottom:640.069500px;}
.y5b{bottom:640.653000px;}
.y2ab{bottom:641.449500px;}
.y2de{bottom:642.177000px;}
.y1bc{bottom:646.723500px;}
.y236{bottom:647.098500px;}
.y113{bottom:648.208500px;}
.y159{bottom:652.491000px;}
.ydf{bottom:652.492500px;}
.y1ef{bottom:653.635500px;}
.y1c0{bottom:655.690500px;}
.y282{bottom:658.062000px;}
.y9b{bottom:659.587500px;}
.y2aa{bottom:660.600000px;}
.y23d{bottom:660.610500px;}
.y2a{bottom:660.961500px;}
.y2dd{bottom:661.327500px;}
.y151{bottom:661.456500px;}
.y5a{bottom:661.545000px;}
.y259{bottom:662.545500px;}
.y1c6{bottom:664.656000px;}
.y235{bottom:667.990500px;}
.y112{bottom:669.100500px;}
.y158{bottom:670.423500px;}
.y281{bottom:678.954000px;}
.y1ea{bottom:679.054500px;}
.y150{bottom:679.390500px;}
.y2a9{bottom:679.750500px;}
.y9a{bottom:680.478000px;}
.y29{bottom:681.852000px;}
.y59{bottom:682.435500px;}
.y1c5{bottom:682.588500px;}
.yde{bottom:685.158000px;}
.y157{bottom:688.356000px;}
.y234{bottom:688.881000px;}
.y111{bottom:689.992500px;}
.y23c{bottom:692.755500px;}
.y14d{bottom:697.323000px;}
.y2a8{bottom:698.901000px;}
.y2dc{bottom:699.628500px;}
.y280{bottom:699.846000px;}
.y99{bottom:701.370000px;}
.y28{bottom:702.744000px;}
.y58{bottom:703.327500px;}
.y156{bottom:706.288500px;}
.y1ba{bottom:707.724000px;}
.y233{bottom:709.773000px;}
.y110{bottom:710.883000px;}
.y23b{bottom:711.988500px;}
.y14c{bottom:715.255500px;}
.y2a7{bottom:718.051500px;}
.y2db{bottom:718.779000px;}
.y27f{bottom:720.736500px;}
.y98{bottom:722.262000px;}
.y27{bottom:723.636000px;}
.y57{bottom:724.219500px;}
.y15d{bottom:724.221000px;}
.y155{bottom:724.222500px;}
.y1b8{bottom:725.656500px;}
.y232{bottom:730.665000px;}
.y10f{bottom:731.775000px;}
.y14f{bottom:733.188000px;}
.y2a6{bottom:737.202000px;}
.y2da{bottom:737.929500px;}
.y27e{bottom:741.628500px;}
.y154{bottom:742.155000px;}
.y97{bottom:743.152500px;}
.y1b7{bottom:743.589000px;}
.y26{bottom:744.526500px;}
.y56{bottom:745.110000px;}
.y14e{bottom:751.120500px;}
.y231{bottom:751.557000px;}
.y10e{bottom:752.667000px;}
.y2a5{bottom:756.352500px;}
.y2d9{bottom:757.081500px;}
.y153{bottom:760.087500px;}
.y1bb{bottom:761.521500px;}
.y1b6{bottom:761.523000px;}
.y27d{bottom:762.520500px;}
.y96{bottom:764.044500px;}
.y25{bottom:765.418500px;}
.y55{bottom:766.002000px;}
.y230{bottom:772.447500px;}
.y10d{bottom:773.557500px;}
.y2a4{bottom:775.503000px;}
.y2d8{bottom:776.232000px;}
.y152{bottom:778.020000px;}
.y1b9{bottom:779.455500px;}
.y27c{bottom:783.411000px;}
.y95{bottom:784.936500px;}
.y24{bottom:786.310500px;}
.y54{bottom:786.894000px;}
.yc7{bottom:791.377500px;}
.y22f{bottom:793.339500px;}
.y10c{bottom:794.449500px;}
.y2a3{bottom:794.653500px;}
.y2d7{bottom:795.382500px;}
.y15c{bottom:795.952500px;}
.y27b{bottom:804.303000px;}
.y1b4{bottom:804.589500px;}
.y94{bottom:805.827000px;}
.y53{bottom:807.784500px;}
.y15b{bottom:813.885000px;}
.y22e{bottom:814.231500px;}
.y2d6{bottom:814.533000px;}
.y10b{bottom:815.341500px;}
.y23{bottom:816.168000px;}
.y2a2{bottom:818.287500px;}
.y1b3{bottom:822.523500px;}
.y27a{bottom:825.195000px;}
.y93{bottom:826.719000px;}
.y77{bottom:828.676500px;}
.y1b5{bottom:831.489000px;}
.y52{bottom:833.160000px;}
.y2d5{bottom:833.683500px;}
.y22d{bottom:835.122000px;}
.y10a{bottom:836.232000px;}
.y14b{bottom:839.020500px;}
.y1b2{bottom:840.456000px;}
.y279{bottom:846.087000px;}
.y92{bottom:847.611000px;}
.y146{bottom:847.987500px;}
.y76{bottom:849.568500px;}
.y2d4{bottom:852.834000px;}
.y22{bottom:853.674000px;}
.y22c{bottom:856.014000px;}
.y14a{bottom:856.953000px;}
.y2a1{bottom:858.189000px;}
.y1b1{bottom:858.388500px;}
.y145{bottom:865.920000px;}
.y278{bottom:866.977500px;}
.y51{bottom:868.503000px;}
.y21{bottom:869.814000px;}
.y7d{bottom:870.460500px;}
.y2d3{bottom:871.984500px;}
.y149{bottom:874.885500px;}
.y13d{bottom:874.887000px;}
.y75{bottom:874.942500px;}
.y22b{bottom:876.906000px;}
.y2a0{bottom:877.687500px;}
.y109{bottom:878.428500px;}
.y1b0{bottom:883.524000px;}
.y144{bottom:883.852500px;}
.y277{bottom:887.869500px;}
.y50{bottom:889.393500px;}
.y20{bottom:890.292000px;}
.y2d2{bottom:891.135000px;}
.y7c{bottom:891.351000px;}
.y108{bottom:892.624500px;}
.y13c{bottom:892.819500px;}
.y212{bottom:894.834000px;}
.y29f{bottom:897.186000px;}
.y22a{bottom:897.796500px;}
.y1af{bottom:901.456500px;}
.y143{bottom:901.785000px;}
.y1f{bottom:906.432000px;}
.y107{bottom:906.822000px;}
.y276{bottom:908.761500px;}
.y4f{bottom:910.285500px;}
.y139{bottom:910.752000px;}
.y7b{bottom:912.243000px;}
.y211{bottom:915.724500px;}
.y29e{bottom:916.684500px;}
.y1e{bottom:918.232500px;}
.y229{bottom:918.688500px;}
.y1ae{bottom:919.389000px;}
.y142{bottom:919.717500px;}
.y106{bottom:921.018000px;}
.y138{bottom:928.684500px;}
.y2d1{bottom:929.436000px;}
.y275{bottom:929.652000px;}
.y1a7{bottom:930.096000px;}
.y4e{bottom:931.177500px;}
.y7a{bottom:933.135000px;}
.y29d{bottom:936.183000px;}
.y210{bottom:936.616500px;}
.y1ad{bottom:937.321500px;}
.y141{bottom:937.651500px;}
.y1d{bottom:938.710500px;}
.y228{bottom:939.580500px;}
.y105{bottom:940.311000px;}
.y13b{bottom:946.617000px;}
.y1a0{bottom:948.028500px;}
.y2d0{bottom:948.586500px;}
.y274{bottom:950.544000px;}
.y4d{bottom:952.068000px;}
.y79{bottom:954.025500px;}
.y1a6{bottom:955.254000px;}
.y140{bottom:955.584000px;}
.y29c{bottom:955.683000px;}
.y20f{bottom:957.508500px;}
.y104{bottom:958.243500px;}
.y227{bottom:960.471000px;}
.y1ac{bottom:964.221000px;}
.y13a{bottom:964.549500px;}
.y19f{bottom:965.962500px;}
.y2cf{bottom:967.737000px;}
.y273{bottom:971.436000px;}
.y4c{bottom:972.960000px;}
.y1a5{bottom:973.186500px;}
.y13f{bottom:973.516500px;}
.y1e0{bottom:974.917500px;}
.y103{bottom:976.176000px;}
.y20e{bottom:978.399000px;}
.y78{bottom:979.401000px;}
.y1c{bottom:980.874000px;}
.y226{bottom:981.363000px;}
.y1ab{bottom:982.153500px;}
.y148{bottom:982.483500px;}
.y19e{bottom:983.895000px;}
.y2ce{bottom:986.887500px;}
.y29b{bottom:990.324000px;}
.y1a4{bottom:991.120500px;}
.y13e{bottom:991.449000px;}
.y272{bottom:992.326500px;}
.y4b{bottom:993.852000px;}
.y102{bottom:994.108500px;}
.y1df{bottom:995.809500px;}
.y20d{bottom:999.291000px;}
.y1aa{bottom:1000.086000px;}
.y147{bottom:1000.416000px;}
.y1b{bottom:1001.764500px;}
.y19d{bottom:1001.827500px;}
.y225{bottom:1002.255000px;}
.y101{bottom:1003.075500px;}
.y2cd{bottom:1006.038000px;}
.y1a3{bottom:1009.053000px;}
.y17b{bottom:1010.260500px;}
.y271{bottom:1013.218500px;}
.y29a{bottom:1014.306000px;}
.y4a{bottom:1014.742500px;}
.y1a9{bottom:1018.018500px;}
.y20c{bottom:1020.183000px;}
.y1de{bottom:1021.183500px;}
.y224{bottom:1023.147000px;}
.y2cc{bottom:1025.188500px;}
.y137{bottom:1025.550000px;}
.y1a2{bottom:1026.985500px;}
.y100{bottom:1029.975000px;}
.y17a{bottom:1031.151000px;}
.y270{bottom:1034.110500px;}
.y49{bottom:1035.634500px;}
.y1a8{bottom:1035.952500px;}
.y1a{bottom:1040.589000px;}
.y20b{bottom:1041.073500px;}
.y2cb{bottom:1044.339000px;}
.y1a1{bottom:1044.918000px;}
.yff{bottom:1047.907500px;}
.y179{bottom:1052.043000px;}
.y299{bottom:1053.130500px;}
.y26f{bottom:1055.001000px;}
.y48{bottom:1056.526500px;}
.yfc{bottom:1056.873000px;}
.y223{bottom:1058.773500px;}
.y136{bottom:1061.205000px;}
.y2ca{bottom:1063.489500px;}
.yfe{bottom:1065.840000px;}
.y20a{bottom:1066.449000px;}
.y19a{bottom:1070.053500px;}
.y19{bottom:1071.927000px;}
.y298{bottom:1072.629000px;}
.yb5{bottom:1072.935000px;}
.y47{bottom:1077.417000px;}
.y19c{bottom:1079.020500px;}
.y26e{bottom:1080.376500px;}
.y2c9{bottom:1082.640000px;}
.yfd{bottom:1083.772500px;}
.y209{bottom:1083.858000px;}
.y199{bottom:1087.986000px;}
.y297{bottom:1092.129000px;}
.yb4{bottom:1093.825500px;}
.y19b{bottom:1096.953000px;}
.y46{bottom:1098.309000px;}
.y2c8{bottom:1101.790500px;}
.y18{bottom:1103.263500px;}
.y198{bottom:1105.918500px;}
.yfb{bottom:1108.908000px;}
.yb3{bottom:1114.717500px;}
.y45{bottom:1119.201000px;}
.y296{bottom:1120.593000px;}
.y2c7{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.yfa{bottom:1141.573500px;}
.y43{bottom:1200.196500px;}
.h10{height:21.017894px;}
.hc{height:27.655250px;}
.h7{height:32.565965px;}
.h2{height:37.993262px;}
.h13{height:39.488026px;}
.h14{height:41.250077px;}
.h9{height:43.217759px;}
.h1d{height:43.382686px;}
.h8{height:43.421105px;}
.h3{height:43.875290px;}
.h1e{height:47.265356px;}
.h17{height:47.714062px;}
.hf{height:48.848947px;}
.h1c{height:48.940664px;}
.hb{height:51.861658px;}
.ha{height:54.276245px;}
.h1b{height:54.487273px;}
.h6{height:54.541601px;}
.h5{height:54.547601px;}
.he{height:55.599258px;}
.h20{height:57.267236px;}
.h18{height:59.927344px;}
.h16{height:66.719109px;}
.h4{height:77.792486px;}
.h12{height:90.138245px;}
.h11{height:90.144245px;}
.hd{height:415.884000px;}
.h1f{height:471.655128px;}
.h19{height:475.984800px;}
.h1a{height:484.168020px;}
.h15{height:511.799760px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:376.192050px;}
.w5{width:578.077500px;}
.w4{width:705.965400px;}
.w2{width:706.130100px;}
.w3{width:707.850000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x76{left:62.754000px;}
.x85{left:67.519500px;}
.x86{left:70.485000px;}
.x87{left:72.727500px;}
.x89{left:75.925500px;}
.x80{left:80.161500px;}
.x81{left:81.349500px;}
.x7b{left:84.369000px;}
.xa1{left:85.848000px;}
.x75{left:88.789500px;}
.x7a{left:91.063500px;}
.x7c{left:92.109000px;}
.x4e{left:93.179400px;}
.x82{left:98.715000px;}
.x88{left:102.748500px;}
.x91{left:166.105273px;}
.x8e{left:170.817569px;}
.x83{left:194.181000px;}
.x7d{left:199.998000px;}
.x77{left:204.982500px;}
.x49{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x7e{left:254.289000px;}
.x59{left:262.777500px;}
.x3{left:269.914500px;}
.x6b{left:271.557000px;}
.x63{left:277.692000px;}
.x5{left:281.479500px;}
.x96{left:282.617801px;}
.x95{left:284.117185px;}
.x5a{left:285.184500px;}
.x94{left:286.763943px;}
.x61{left:288.168000px;}
.x50{left:295.110000px;}
.x65{left:296.176500px;}
.x20{left:298.011000px;}
.x69{left:299.226000px;}
.x3f{left:301.149000px;}
.x1b{left:302.523000px;}
.x71{left:305.301000px;}
.x8a{left:306.358500px;}
.xc{left:309.186000px;}
.x21{left:312.954000px;}
.x32{left:314.317500px;}
.x8b{left:315.589500px;}
.xd{left:316.657500px;}
.x6f{left:320.076000px;}
.x5f{left:324.249000px;}
.x33{left:329.262000px;}
.x70{left:335.020500px;}
.x5b{left:337.239000px;}
.x93{left:342.468190px;}
.x55{left:343.731000px;}
.x78{left:347.211000px;}
.x8f{left:351.718211px;}
.x8d{left:356.467111px;}
.x56{left:358.675500px;}
.x1c{left:369.226500px;}
.x38{left:370.761000px;}
.x97{left:372.410081px;}
.x47{left:378.687000px;}
.x99{left:382.894500px;}
.x1d{left:384.171000px;}
.x39{left:385.704000px;}
.x5d{left:392.586000px;}
.x48{left:393.630000px;}
.x6{left:395.160000px;}
.x9a{left:397.837500px;}
.x4a{left:399.226500px;}
.x7{left:402.633000px;}
.x98{left:406.303500px;}
.x51{left:409.369500px;}
.x84{left:412.009500px;}
.xe{left:414.255000px;}
.x52{left:416.175000px;}
.x3a{left:417.846000px;}
.xf{left:421.726500px;}
.x10{left:425.415000px;}
.x6d{left:431.827500px;}
.x11{left:432.886500px;}
.x4b{left:441.922500px;}
.x9e{left:444.814500px;}
.x6e{left:446.770500px;}
.x64{left:449.388000px;}
.x7f{left:453.015000px;}
.x4c{left:456.867000px;}
.x57{left:459.069000px;}
.x67{left:461.776500px;}
.x34{left:463.204500px;}
.x22{left:464.901000px;}
.x9f{left:467.253000px;}
.x58{left:474.013500px;}
.x62{left:475.987500px;}
.x35{left:478.149000px;}
.x23{left:479.845500px;}
.xa0{left:482.196000px;}
.x1e{left:484.108500px;}
.x1a{left:486.640500px;}
.x12{left:493.971000px;}
.x1f{left:499.051500px;}
.x13{left:501.442500px;}
.x68{left:504.552000px;}
.x6a{left:515.917500px;}
.x92{left:523.799650px;}
.x42{left:526.263000px;}
.x90{left:534.022821px;}
.x43{left:541.207500px;}
.x8c{left:546.606000px;}
.x5c{left:548.958000px;}
.x5e{left:556.011000px;}
.x45{left:560.950500px;}
.x60{left:565.740000px;}
.x9d{left:572.760000px;}
.x30{left:574.398000px;}
.x46{left:575.893500px;}
.x66{left:585.877500px;}
.x14{left:587.187000px;}
.x31{left:589.342500px;}
.x15{left:594.658500px;}
.x28{left:596.283000px;}
.x79{left:597.438000px;}
.x9b{left:601.386000px;}
.x40{left:607.330500px;}
.x29{left:611.227500px;}
.x9c{left:616.329000px;}
.x36{left:617.604000px;}
.x41{left:622.275000px;}
.x53{left:625.905000px;}
.x3d{left:627.429000px;}
.x37{left:632.548500px;}
.x6c{left:636.960000px;}
.x3e{left:642.373500px;}
.x54{left:667.599000px;}
.x2a{left:682.783500px;}
.x72{left:690.825000px;}
.x2b{left:697.726500px;}
.x16{left:703.738500px;}
.x4f{left:705.274785px;}
.x17{left:711.210000px;}
.x73{left:713.278500px;}
.x2c{left:715.299000px;}
.x2e{left:726.846000px;}
.x74{left:728.223000px;}
.x2d{left:730.242000px;}
.x2f{left:741.790500px;}
.x4d{left:768.628500px;}
.x3b{left:775.468500px;}
.x24{left:781.053000px;}
.x44{left:782.863500px;}
.x26{left:786.040500px;}
.x3c{left:790.413000px;}
.x25{left:795.997500px;}
.x18{left:798.607500px;}
.x27{left:800.983500px;}
.x8{left:813.177000px;}
.x19{left:817.237500px;}
.x9{left:820.650000px;}
.xa{left:824.449500px;}
.xb{left:831.921000px;}
@media print{
.v5{vertical-align:-27.594385pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.451262pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:31.882667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000078pt;}
.ls22{letter-spacing:0.000260pt;}
.ls14{letter-spacing:0.000272pt;}
.ls15{letter-spacing:0.000361pt;}
.ls16{letter-spacing:0.000375pt;}
.ls13{letter-spacing:0.001688pt;}
.ls23{letter-spacing:0.002525pt;}
.ls24{letter-spacing:0.003436pt;}
.ls21{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.009408pt;}
.lsd{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.017280pt;}
.ls19{letter-spacing:0.023520pt;}
.lsc{letter-spacing:0.028800pt;}
.ls1b{letter-spacing:0.122304pt;}
.ls1d{letter-spacing:0.131712pt;}
.lse{letter-spacing:0.149760pt;}
.lsf{letter-spacing:0.167040pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:11.593099pt;}
.ls25{letter-spacing:11.885437pt;}
.ls29{letter-spacing:11.901943pt;}
.ls20{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.959467pt;}
.ls26{letter-spacing:12.082663pt;}
.lsb{letter-spacing:13.283467pt;}
.ls7{letter-spacing:13.389734pt;}
.ls28{letter-spacing:13.655258pt;}
.ls27{letter-spacing:15.035650pt;}
.ls1{letter-spacing:51.035733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls6{letter-spacing:83.815733pt;}
.ls9{letter-spacing:168.803733pt;}
.ls8{letter-spacing:180.627733pt;}
.lsa{letter-spacing:223.267733pt;}
.ls18{letter-spacing:1015.294238pt;}
.ls1c{letter-spacing:1024.705373pt;}
.ls10{letter-spacing:1174.953600pt;}
.ls12{letter-spacing:1179.457910pt;}
.ls17{letter-spacing:1243.198059pt;}
.ws7c{word-spacing:-14.400000pt;}
.ws76{word-spacing:-13.283467pt;}
.ws75{word-spacing:-11.955200pt;}
.ws86{word-spacing:-11.760000pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws77{word-spacing:-3.081764pt;}
.wsa7{word-spacing:-2.975497pt;}
.ws42{word-spacing:-2.869229pt;}
.ws45{word-spacing:-2.816095pt;}
.ws83{word-spacing:-2.762961pt;}
.ws68{word-spacing:-2.444158pt;}
.ws31{word-spacing:-2.391024pt;}
.ws30{word-spacing:-2.337890pt;}
.ws4a{word-spacing:-2.231622pt;}
.ws8c{word-spacing:-2.125355pt;}
.ws72{word-spacing:-2.072221pt;}
.wsbe{word-spacing:-2.056294pt;}
.ws5f{word-spacing:-2.019087pt;}
.wsb5{word-spacing:-2.008474pt;}
.ws5e{word-spacing:-1.965953pt;}
.ws47{word-spacing:-1.912819pt;}
.ws38{word-spacing:-1.859685pt;}
.wsd5{word-spacing:-1.817190pt;}
.wsa6{word-spacing:-1.806551pt;}
.ws6b{word-spacing:-1.753418pt;}
.ws67{word-spacing:-1.594016pt;}
.ws28{word-spacing:-1.540882pt;}
.ws98{word-spacing:-1.434614pt;}
.wsd4{word-spacing:-1.386803pt;}
.wsaf{word-spacing:-1.381481pt;}
.ws6e{word-spacing:-1.328347pt;}
.ws9b{word-spacing:-1.275213pt;}
.wsc3{word-spacing:-1.243341pt;}
.ws29{word-spacing:-1.222079pt;}
.ws49{word-spacing:-1.168945pt;}
.wsab{word-spacing:-1.115811pt;}
.wsdd{word-spacing:-1.052058pt;}
.ws9c{word-spacing:-1.009543pt;}
.wsb1{word-spacing:-0.956410pt;}
.ws7b{word-spacing:-0.903276pt;}
.ws9f{word-spacing:-0.850142pt;}
.ws1b{word-spacing:-0.797008pt;}
.ws62{word-spacing:-0.722622pt;}
.ws8d{word-spacing:-0.690740pt;}
.wsc5{word-spacing:-0.669491pt;}
.ws78{word-spacing:-0.637606pt;}
.ws27{word-spacing:-0.584473pt;}
.wsef{word-spacing:-0.526029pt;}
.wsaa{word-spacing:-0.478205pt;}
.ws96{word-spacing:-0.425071pt;}
.wsf1{word-spacing:-0.382566pt;}
.ws69{word-spacing:-0.371937pt;}
.wsee{word-spacing:-0.334746pt;}
.ws11{word-spacing:-0.318803pt;}
.ws52{word-spacing:-0.286925pt;}
.ws84{word-spacing:-0.278072pt;}
.ws19{word-spacing:-0.265669pt;}
.ws7f{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.212535pt;}
.ws80{word-spacing:-0.191283pt;}
.ws61{word-spacing:-0.170029pt;}
.ws9{word-spacing:-0.159402pt;}
.ws74{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.wsb6{word-spacing:-0.095642pt;}
.wsea{word-spacing:-0.061705pt;}
.ws10{word-spacing:-0.053134pt;}
.ws5c{word-spacing:-0.047821pt;}
.ws63{word-spacing:-0.042507pt;}
.wse1{word-spacing:-0.023381pt;}
.wseb{word-spacing:-0.021931pt;}
.wse8{word-spacing:-0.020787pt;}
.wsed{word-spacing:-0.010061pt;}
.wse0{word-spacing:-0.009762pt;}
.wsd9{word-spacing:-0.008269pt;}
.wsd0{word-spacing:-0.006204pt;}
.wsc9{word-spacing:-0.005828pt;}
.wsdc{word-spacing:-0.002935pt;}
.wscd{word-spacing:-0.002765pt;}
.ws1e{word-spacing:-0.002739pt;}
.wscb{word-spacing:-0.002287pt;}
.wsd2{word-spacing:-0.000870pt;}
.wse2{word-spacing:-0.000717pt;}
.ws5{word-spacing:-0.000170pt;}
.ws0{word-spacing:0.000000pt;}
.ws53{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws2{word-spacing:0.074387pt;}
.wsb3{word-spacing:0.095642pt;}
.ws8{word-spacing:0.106268pt;}
.wsd6{word-spacing:0.121850pt;}
.ws87{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.wsd8{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.ws92{word-spacing:0.239104pt;}
.ws1a{word-spacing:0.265669pt;}
.ws73{word-spacing:0.286925pt;}
.ws65{word-spacing:0.318803pt;}
.ws21{word-spacing:0.371937pt;}
.wse6{word-spacing:0.382566pt;}
.ws6a{word-spacing:0.425071pt;}
.wsf{word-spacing:0.478205pt;}
.wsba{word-spacing:0.478208pt;}
.ws4f{word-spacing:0.531339pt;}
.wsbf{word-spacing:0.573850pt;}
.wsec{word-spacing:0.621670pt;}
.ws99{word-spacing:0.637606pt;}
.ws66{word-spacing:0.690740pt;}
.wsce{word-spacing:0.717312pt;}
.ws82{word-spacing:0.743874pt;}
.wsa0{word-spacing:0.797008pt;}
.wsc8{word-spacing:0.812954pt;}
.ws18{word-spacing:0.850142pt;}
.ws36{word-spacing:0.903276pt;}
.ws93{word-spacing:0.956410pt;}
.ws89{word-spacing:0.956416pt;}
.wse5{word-spacing:0.957986pt;}
.ws2d{word-spacing:1.009543pt;}
.ws2a{word-spacing:1.062677pt;}
.ws9d{word-spacing:1.115811pt;}
.ws64{word-spacing:1.168945pt;}
.wsb7{word-spacing:1.195520pt;}
.ws43{word-spacing:1.222079pt;}
.ws4d{word-spacing:1.275213pt;}
.wse7{word-spacing:1.291162pt;}
.ws41{word-spacing:1.328347pt;}
.ws97{word-spacing:1.381481pt;}
.wsd7{word-spacing:1.386803pt;}
.ws59{word-spacing:1.434614pt;}
.wsd{word-spacing:1.487748pt;}
.ws24{word-spacing:1.540882pt;}
.ws3d{word-spacing:1.594016pt;}
.ws54{word-spacing:1.647150pt;}
.ws35{word-spacing:1.700284pt;}
.ws81{word-spacing:1.753418pt;}
.ws95{word-spacing:1.859685pt;}
.ws37{word-spacing:2.019087pt;}
.ws2f{word-spacing:2.072221pt;}
.ws50{word-spacing:2.125355pt;}
.ws4b{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231335pt;}
.ws20{word-spacing:2.231622pt;}
.ws79{word-spacing:2.284756pt;}
.ws8a{word-spacing:2.295398pt;}
.ws57{word-spacing:2.337890pt;}
.ws1d{word-spacing:2.391024pt;}
.wsde{word-spacing:2.391040pt;}
.ws7a{word-spacing:2.444158pt;}
.ws4e{word-spacing:2.497292pt;}
.ws3a{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws1c{word-spacing:2.603559pt;}
.ws3e{word-spacing:2.656693pt;}
.ws17{word-spacing:2.709827pt;}
.ws9a{word-spacing:2.762961pt;}
.ws51{word-spacing:2.816095pt;}
.wsca{word-spacing:2.861013pt;}
.wsdb{word-spacing:2.862438pt;}
.wscf{word-spacing:2.862626pt;}
.wsc4{word-spacing:2.864503pt;}
.wsc1{word-spacing:2.864811pt;}
.wsc2{word-spacing:2.865579pt;}
.wsf2{word-spacing:2.865860pt;}
.wsc0{word-spacing:2.866543pt;}
.wsda{word-spacing:2.867891pt;}
.ws8b{word-spacing:2.869229pt;}
.ws7e{word-spacing:2.869248pt;}
.wsd3{word-spacing:2.871270pt;}
.wse3{word-spacing:2.871552pt;}
.wsf0{word-spacing:2.917069pt;}
.ws91{word-spacing:2.922363pt;}
.ws88{word-spacing:2.964890pt;}
.ws46{word-spacing:2.975497pt;}
.ws3f{word-spacing:3.028630pt;}
.wsb4{word-spacing:3.031008pt;}
.ws40{word-spacing:3.081764pt;}
.wsf3{word-spacing:3.108352pt;}
.wsbb{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.wsc6{word-spacing:3.191820pt;}
.ws55{word-spacing:3.241166pt;}
.wsb8{word-spacing:3.251814pt;}
.wsc7{word-spacing:3.299635pt;}
.ws3c{word-spacing:3.347434pt;}
.ws39{word-spacing:3.400567pt;}
.ws48{word-spacing:3.453701pt;}
.ws8e{word-spacing:3.506835pt;}
.ws26{word-spacing:3.559969pt;}
.ws2e{word-spacing:3.666237pt;}
.ws6c{word-spacing:3.719371pt;}
.wsa1{word-spacing:3.772505pt;}
.ws5d{word-spacing:3.825638pt;}
.ws14{word-spacing:3.825664pt;}
.ws5b{word-spacing:3.878772pt;}
.wsa9{word-spacing:3.931906pt;}
.wsbd{word-spacing:3.969126pt;}
.ws85{word-spacing:3.985040pt;}
.wsd1{word-spacing:4.016947pt;}
.ws13{word-spacing:4.038174pt;}
.wsa5{word-spacing:4.091308pt;}
.ws2c{word-spacing:4.144442pt;}
.ws16{word-spacing:4.197575pt;}
.ws5a{word-spacing:4.250709pt;}
.ws6d{word-spacing:4.303843pt;}
.wsb2{word-spacing:4.399514pt;}
.ws71{word-spacing:4.516379pt;}
.ws56{word-spacing:4.622646pt;}
.ws70{word-spacing:4.675780pt;}
.wsc{word-spacing:4.728914pt;}
.ws8f{word-spacing:4.782048pt;}
.wsa2{word-spacing:4.835182pt;}
.wsae{word-spacing:4.941450pt;}
.wsb0{word-spacing:5.100851pt;}
.wscc{word-spacing:5.116826pt;}
.wsa4{word-spacing:5.207119pt;}
.ws4c{word-spacing:5.260253pt;}
.wse9{word-spacing:5.260288pt;}
.ws6f{word-spacing:5.366521pt;}
.ws9e{word-spacing:5.525922pt;}
.ws3b{word-spacing:5.738458pt;}
.wsac{word-spacing:5.791591pt;}
.ws94{word-spacing:5.844725pt;}
.wse{word-spacing:5.897859pt;}
.ws2b{word-spacing:6.057261pt;}
.ws90{word-spacing:6.110395pt;}
.wsb9{word-spacing:6.121062pt;}
.wsa8{word-spacing:6.429198pt;}
.ws33{word-spacing:6.535466pt;}
.wse4{word-spacing:6.599270pt;}
.ws32{word-spacing:6.748001pt;}
.ws58{word-spacing:6.854269pt;}
.wsad{word-spacing:7.385607pt;}
.wsa3{word-spacing:7.491875pt;}
.ws44{word-spacing:7.545009pt;}
.wsdf{word-spacing:10.520576pt;}
.wsbc{word-spacing:10.945976pt;}
.ws12{word-spacing:11.533128pt;}
.ws34{word-spacing:23.325767pt;}
.ws1{word-spacing:25.293814pt;}
.ws60{word-spacing:824.903280pt;}
.ws7d{word-spacing:1173.392640pt;}
._3b{margin-left:-19.925334pt;}
._4{margin-left:-10.616218pt;}
._15{margin-left:-6.737378pt;}
._10{margin-left:-5.398409pt;}
._8{margin-left:-4.351693pt;}
._2{margin-left:-3.384618pt;}
._2f{margin-left:-2.327286pt;}
._1{margin-left:-1.338970pt;}
._2d{width:1.020166pt;}
._6{width:2.665373pt;}
._c{width:4.091308pt;}
._a{width:9.861670pt;}
._0{width:11.530016pt;}
._18{width:12.603349pt;}
._9{width:13.618262pt;}
._16{width:15.233513pt;}
._b{width:16.365231pt;}
._1c{width:17.364151pt;}
._f{width:18.384318pt;}
._e{width:19.935823pt;}
._13{width:21.519216pt;}
._3{width:23.063232pt;}
._30{width:24.186532pt;}
._14{width:25.079185pt;}
._1a{width:26.088729pt;}
._31{width:27.077026pt;}
._1d{width:28.373485pt;}
._5{width:29.648896pt;}
._d{width:31.242714pt;}
._1b{width:32.262880pt;}
._19{width:34.165076pt;}
._33{width:35.663447pt;}
._17{width:37.299974pt;}
._32{width:39.531597pt;}
._7{width:48.364921pt;}
._3a{width:54.993920pt;}
._37{width:63.745126pt;}
._2e{width:73.134293pt;}
._39{width:78.904320pt;}
._29{width:110.993106pt;}
._34{width:112.139776pt;}
._38{width:127.585894pt;}
._2c{width:131.240651pt;}
._35{width:139.684557pt;}
._2b{width:142.133093pt;}
._36{width:160.773530pt;}
._23{width:194.040650pt;}
._21{width:204.193450pt;}
._2a{width:207.594017pt;}
._24{width:214.149692pt;}
._27{width:243.321148pt;}
._25{width:285.488742pt;}
._1f{width:316.730979pt;}
._28{width:337.028116pt;}
._22{width:517.736397pt;}
._20{width:709.549655pt;}
._1e{width:729.687391pt;}
._11{width:1589.581067pt;}
._26{width:2142.514400pt;}
._12{width:2163.767733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fse{font-size:47.040000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fsf{font-size:55.043200pt;}
.fs7{font-size:55.365867pt;}
.fsc{font-size:57.600000pt;}
.fs6{font-size:63.761067pt;}
.fsb{font-size:64.128000pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:0.454039pt;}
.y238{bottom:4.582824pt;}
.y218{bottom:6.077680pt;}
.y1e8{bottom:6.620472pt;}
.y1ee{bottom:7.539206pt;}
.y217{bottom:18.386497pt;}
.y1e5{bottom:21.691512pt;}
.y1ed{bottom:22.611686pt;}
.y1e7{bottom:38.300472pt;}
.y42{bottom:40.818667pt;}
.y1e6{bottom:53.467992pt;}
.y41{bottom:88.640000pt;}
.y17{bottom:89.120000pt;}
.ydd{bottom:92.369333pt;}
.y295{bottom:97.745333pt;}
.y23a{bottom:97.904000pt;}
.y257{bottom:99.506667pt;}
.y26d{bottom:102.117333pt;}
.y1dd{bottom:102.697333pt;}
.y135{bottom:103.473333pt;}
.y16{bottom:105.020000pt;}
.y74{bottom:105.213333pt;}
.y91{bottom:106.062667pt;}
.y208{bottom:106.602667pt;}
.y40{bottom:107.209333pt;}
.y2c6{bottom:110.564000pt;}
.ydc{bottom:110.940000pt;}
.y2f7{bottom:111.210667pt;}
.y12b{bottom:113.669333pt;}
.y239{bottom:115.000000pt;}
.y294{bottom:115.077333pt;}
.yce{bottom:117.141333pt;}
.y256{bottom:118.077333pt;}
.y197{bottom:119.729333pt;}
.y26c{bottom:120.688000pt;}
.y15{bottom:120.920000pt;}
.y1dc{bottom:121.268000pt;}
.y134{bottom:122.042667pt;}
.y73{bottom:123.782667pt;}
.y90{bottom:124.633333pt;}
.y207{bottom:125.173333pt;}
.y3f{bottom:125.780000pt;}
.y2c5{bottom:127.586667pt;}
.y2f6{bottom:128.233333pt;}
.ydb{bottom:129.510667pt;}
.y12a{bottom:132.240000pt;}
.y293{bottom:132.409333pt;}
.y237{bottom:134.936784pt;}
.y196{bottom:135.670667pt;}
.ycd{bottom:135.712000pt;}
.yf9{bottom:136.461333pt;}
.y255{bottom:136.648000pt;}
.y14{bottom:136.821333pt;}
.yb2{bottom:139.258667pt;}
.y1db{bottom:139.837333pt;}
.y133{bottom:140.613333pt;}
.y72{bottom:142.353333pt;}
.y8f{bottom:143.204000pt;}
.y193{bottom:143.640000pt;}
.y206{bottom:143.744000pt;}
.y3e{bottom:144.350667pt;}
.y2c4{bottom:144.609333pt;}
.y2f5{bottom:145.256000pt;}
.yda{bottom:148.081333pt;}
.y292{bottom:149.741333pt;}
.y129{bottom:150.809333pt;}
.y222{bottom:151.228000pt;}
.y18e{bottom:151.610667pt;}
.yf8{bottom:152.401333pt;}
.y13{bottom:152.721333pt;}
.ycc{bottom:154.281333pt;}
.y254{bottom:155.218667pt;}
.y178{bottom:156.778667pt;}
.yb1{bottom:157.828000pt;}
.y1da{bottom:158.408000pt;}
.y132{bottom:159.184000pt;}
.y192{bottom:159.580000pt;}
.y71{bottom:160.924000pt;}
.y2c3{bottom:161.632000pt;}
.y8e{bottom:161.773333pt;}
.y2f4{bottom:162.278667pt;}
.y205{bottom:162.313333pt;}
.y3d{bottom:162.920000pt;}
.yd9{bottom:166.650667pt;}
.y18d{bottom:167.550667pt;}
.yf7{bottom:168.341333pt;}
.y12{bottom:168.621333pt;}
.y128{bottom:169.380000pt;}
.y221{bottom:169.798667pt;}
.ycb{bottom:172.852000pt;}
.y253{bottom:173.788000pt;}
.y291{bottom:175.044000pt;}
.y177{bottom:175.349333pt;}
.y191{bottom:175.521333pt;}
.yb0{bottom:176.398667pt;}
.y216{bottom:176.754513pt;}
.y1d9{bottom:176.978667pt;}
.y131{bottom:177.753333pt;}
.y2c2{bottom:178.654667pt;}
.y2f3{bottom:179.301333pt;}
.y70{bottom:179.493333pt;}
.y8d{bottom:180.344000pt;}
.y204{bottom:180.884000pt;}
.y3c{bottom:181.490667pt;}
.y1e9{bottom:182.352000pt;}
.y18c{bottom:183.490667pt;}
.yf6{bottom:184.281333pt;}
.y11{bottom:184.521333pt;}
.yd8{bottom:185.221333pt;}
.y127{bottom:187.950667pt;}
.y220{bottom:188.368000pt;}
.y215{bottom:189.376918pt;}
.yca{bottom:191.422667pt;}
.y190{bottom:191.461333pt;}
.y252{bottom:192.358667pt;}
.y290{bottom:192.376000pt;}
.y176{bottom:193.918667pt;}
.yaf{bottom:194.969333pt;}
.y1d8{bottom:195.548000pt;}
.y2c1{bottom:195.677333pt;}
.y130{bottom:196.324000pt;}
.y6f{bottom:198.064000pt;}
.y8c{bottom:198.914667pt;}
.y18b{bottom:199.430667pt;}
.y203{bottom:199.454667pt;}
.y3b{bottom:200.061333pt;}
.yf5{bottom:200.221333pt;}
.y10{bottom:200.422667pt;}
.yd7{bottom:203.792000pt;}
.y1e1{bottom:204.945013pt;}
.y126{bottom:206.520000pt;}
.y21f{bottom:206.938667pt;}
.y18f{bottom:207.401333pt;}
.yf4{bottom:208.192000pt;}
.yc9{bottom:209.992000pt;}
.yc8{bottom:209.993333pt;}
.y251{bottom:210.929333pt;}
.y175{bottom:212.489333pt;}
.y2c0{bottom:212.700000pt;}
.y2f2{bottom:213.346667pt;}
.yae{bottom:213.540000pt;}
.y1d7{bottom:214.118667pt;}
.y1e4{bottom:214.171992pt;}
.y12f{bottom:214.894667pt;}
.y1ec{bottom:215.187200pt;}
.y195{bottom:215.372000pt;}
.y6e{bottom:216.634667pt;}
.y8b{bottom:217.484000pt;}
.y28f{bottom:217.678667pt;}
.y202{bottom:218.024000pt;}
.y3a{bottom:218.632000pt;}
.yd6{bottom:222.361333pt;}
.yf{bottom:224.293333pt;}
.y125{bottom:225.090667pt;}
.y1e2{bottom:229.247295pt;}
.y250{bottom:229.498667pt;}
.y2bf{bottom:229.722667pt;}
.y1eb{bottom:230.259680pt;}
.y2f1{bottom:230.369333pt;}
.y174{bottom:231.060000pt;}
.y194{bottom:231.312000pt;}
.yf3{bottom:232.102667pt;}
.yad{bottom:232.109333pt;}
.y1d6{bottom:232.689333pt;}
.y12e{bottom:233.464000pt;}
.y28e{bottom:235.010667pt;}
.y6d{bottom:235.205333pt;}
.y201{bottom:236.594667pt;}
.y39{bottom:237.201333pt;}
.y21e{bottom:238.608000pt;}
.y8a{bottom:240.040000pt;}
.yf2{bottom:240.072000pt;}
.ye{bottom:240.193333pt;}
.yd5{bottom:240.932000pt;}
.y124{bottom:243.661333pt;}
.y1e3{bottom:245.563992pt;}
.y2be{bottom:246.745333pt;}
.y2f0{bottom:247.392000pt;}
.y24f{bottom:248.069333pt;}
.y173{bottom:249.630667pt;}
.y26b{bottom:250.680000pt;}
.y1d5{bottom:251.258667pt;}
.y12d{bottom:252.034667pt;}
.y28d{bottom:252.342667pt;}
.y188{bottom:253.654667pt;}
.y6c{bottom:253.774667pt;}
.yac{bottom:254.665333pt;}
.y200{bottom:255.165333pt;}
.y21d{bottom:255.704000pt;}
.y38{bottom:255.772000pt;}
.yd{bottom:256.093333pt;}
.y89{bottom:258.609333pt;}
.yd4{bottom:259.502667pt;}
.y18a{bottom:261.624000pt;}
.y123{bottom:262.232000pt;}
.y2bd{bottom:263.768000pt;}
.yf1{bottom:263.982667pt;}
.y2ef{bottom:264.414667pt;}
.y24e{bottom:266.640000pt;}
.y172{bottom:268.200000pt;}
.y26a{bottom:269.250667pt;}
.y187{bottom:269.594667pt;}
.y28c{bottom:269.674667pt;}
.y1d4{bottom:269.829333pt;}
.y12c{bottom:270.605333pt;}
.yf0{bottom:271.953333pt;}
.yc{bottom:271.994667pt;}
.y6b{bottom:272.345333pt;}
.y21c{bottom:272.800000pt;}
.y1ff{bottom:273.734667pt;}
.y37{bottom:274.342667pt;}
.y88{bottom:277.180000pt;}
.y189{bottom:277.564000pt;}
.yd3{bottom:278.072000pt;}
.y2bc{bottom:280.790667pt;}
.y2ee{bottom:281.437333pt;}
.y122{bottom:284.786667pt;}
.y24d{bottom:285.209333pt;}
.y186{bottom:285.534667pt;}
.y171{bottom:286.770667pt;}
.y269{bottom:287.820000pt;}
.yb{bottom:287.894667pt;}
.y1d3{bottom:288.400000pt;}
.yab{bottom:289.176000pt;}
.y21b{bottom:289.896000pt;}
.y6a{bottom:290.916000pt;}
.y1fe{bottom:292.305333pt;}
.yc6{bottom:292.912000pt;}
.y28b{bottom:294.977333pt;}
.y87{bottom:295.750667pt;}
.yd2{bottom:296.642667pt;}
.y36{bottom:296.897333pt;}
.y2bb{bottom:297.813333pt;}
.y2ed{bottom:298.460000pt;}
.yef{bottom:302.265333pt;}
.y24c{bottom:303.780000pt;}
.ya{bottom:303.794667pt;}
.y268{bottom:306.390667pt;}
.y1d2{bottom:306.970667pt;}
.y21a{bottom:306.990667pt;}
.yaa{bottom:307.745333pt;}
.y69{bottom:309.485333pt;}
.y1fd{bottom:310.876000pt;}
.yc5{bottom:311.482667pt;}
.y28a{bottom:312.309333pt;}
.y86{bottom:314.321333pt;}
.y2ba{bottom:314.836000pt;}
.yd1{bottom:315.213333pt;}
.y2ec{bottom:315.482667pt;}
.y121{bottom:316.202667pt;}
.y185{bottom:317.226667pt;}
.y9{bottom:319.696000pt;}
.y24b{bottom:322.350667pt;}
.y219{bottom:324.086667pt;}
.y267{bottom:324.961333pt;}
.y1d1{bottom:325.540000pt;}
.ya9{bottom:326.316000pt;}
.y68{bottom:328.056000pt;}
.y16b{bottom:328.084000pt;}
.y2fa{bottom:328.301333pt;}
.y1fc{bottom:329.446667pt;}
.y289{bottom:329.642667pt;}
.yc4{bottom:330.053333pt;}
.yee{bottom:331.301333pt;}
.y2b9{bottom:331.858667pt;}
.y214{bottom:332.456918pt;}
.y2eb{bottom:332.506667pt;}
.y85{bottom:332.890667pt;}
.y184{bottom:334.322667pt;}
.y120{bottom:334.772000pt;}
.y8{bottom:335.596000pt;}
.y170{bottom:336.054667pt;}
.y24a{bottom:340.920000pt;}
.y266{bottom:343.530667pt;}
.y169{bottom:344.024000pt;}
.y1d0{bottom:344.110667pt;}
.ya8{bottom:344.886667pt;}
.y2f9{bottom:345.324000pt;}
.y67{bottom:346.626667pt;}
.yd0{bottom:346.882667pt;}
.y1fb{bottom:348.016000pt;}
.yc3{bottom:348.622667pt;}
.y2b8{bottom:348.881333pt;}
.y2ea{bottom:349.529333pt;}
.y183{bottom:351.418667pt;}
.y84{bottom:351.461333pt;}
.y213{bottom:351.665206pt;}
.y16f{bottom:351.994667pt;}
.y11f{bottom:353.342667pt;}
.y288{bottom:354.944000pt;}
.y7{bottom:356.809333pt;}
.y249{bottom:359.490667pt;}
.y167{bottom:359.965333pt;}
.y265{bottom:362.101333pt;}
.y2f8{bottom:362.346667pt;}
.y1cf{bottom:362.681333pt;}
.ya7{bottom:363.456000pt;}
.ycf{bottom:363.978667pt;}
.yed{bottom:365.160000pt;}
.y66{bottom:365.196000pt;}
.y2b7{bottom:365.905333pt;}
.y2e9{bottom:366.552000pt;}
.y1fa{bottom:366.586667pt;}
.yc1{bottom:367.193333pt;}
.y35{bottom:367.308000pt;}
.y16e{bottom:367.934667pt;}
.y83{bottom:370.032000pt;}
.y11e{bottom:371.913333pt;}
.yc2{bottom:372.016000pt;}
.y287{bottom:372.276000pt;}
.y6{bottom:372.710667pt;}
.y166{bottom:375.905333pt;}
.y248{bottom:378.061333pt;}
.y264{bottom:380.672000pt;}
.y1ce{bottom:381.250667pt;}
.ya6{bottom:382.026667pt;}
.yec{bottom:382.308000pt;}
.y2b6{bottom:382.928000pt;}
.y2e8{bottom:383.574667pt;}
.y65{bottom:383.766667pt;}
.y16d{bottom:383.874667pt;}
.y182{bottom:384.400000pt;}
.y1f9{bottom:385.157333pt;}
.yc0{bottom:385.764000pt;}
.y34{bottom:385.878667pt;}
.y82{bottom:388.601333pt;}
.y5{bottom:388.610667pt;}
.y286{bottom:389.609333pt;}
.y11d{bottom:390.482667pt;}
.y168{bottom:391.845333pt;}
.y247{bottom:396.632000pt;}
.yeb{bottom:398.248000pt;}
.y263{bottom:399.241333pt;}
.y16c{bottom:399.814667pt;}
.y1cc{bottom:399.821333pt;}
.y2b5{bottom:399.950667pt;}
.ya5{bottom:400.597333pt;}
.y64{bottom:402.337333pt;}
.y181{bottom:402.970667pt;}
.y1f8{bottom:403.726667pt;}
.ybf{bottom:404.333333pt;}
.y4{bottom:404.510667pt;}
.y1cd{bottom:404.642667pt;}
.yea{bottom:406.218667pt;}
.y285{bottom:406.941333pt;}
.y81{bottom:407.172000pt;}
.y16a{bottom:407.785333pt;}
.y11c{bottom:409.053333pt;}
.y246{bottom:415.201333pt;}
.y2b4{bottom:416.973333pt;}
.y2e7{bottom:417.620000pt;}
.y262{bottom:417.812000pt;}
.y1cb{bottom:418.392000pt;}
.ya4{bottom:419.166667pt;}
.y33{bottom:420.388000pt;}
.y63{bottom:420.906667pt;}
.y180{bottom:421.541333pt;}
.y1f7{bottom:422.297333pt;}
.ybe{bottom:422.904000pt;}
.y284{bottom:424.273333pt;}
.y3{bottom:425.725333pt;}
.y80{bottom:425.742667pt;}
.y11b{bottom:427.624000pt;}
.ye9{bottom:430.128000pt;}
.y245{bottom:433.772000pt;}
.y2b3{bottom:433.996000pt;}
.y2e6{bottom:434.642667pt;}
.y261{bottom:436.382667pt;}
.ya3{bottom:437.737333pt;}
.ye8{bottom:438.098667pt;}
.y32{bottom:438.958667pt;}
.y62{bottom:439.477333pt;}
.y17f{bottom:440.110667pt;}
.y1f6{bottom:440.868000pt;}
.y1ca{bottom:440.946667pt;}
.ybd{bottom:441.474667pt;}
.y283{bottom:441.605333pt;}
.y2{bottom:441.625333pt;}
.y258{bottom:443.462667pt;}
.y164{bottom:446.068000pt;}
.y11a{bottom:446.193333pt;}
.y7f{bottom:448.297333pt;}
.y2b2{bottom:451.018667pt;}
.y2e5{bottom:451.665333pt;}
.y244{bottom:452.342667pt;}
.y161{bottom:454.038667pt;}
.y260{bottom:454.953333pt;}
.ya2{bottom:456.308000pt;}
.y1{bottom:457.525333pt;}
.y31{bottom:457.529333pt;}
.y61{bottom:458.048000pt;}
.y17e{bottom:458.681333pt;}
.y1f5{bottom:459.437333pt;}
.ybc{bottom:460.045333pt;}
.y163{bottom:462.008000pt;}
.ye7{bottom:462.009333pt;}
.y7e{bottom:463.773333pt;}
.y119{bottom:464.764000pt;}
.y2b1{bottom:468.041333pt;}
.y2e4{bottom:468.688000pt;}
.ye6{bottom:469.978667pt;}
.y243{bottom:470.912000pt;}
.y25f{bottom:473.522667pt;}
.ya1{bottom:474.877333pt;}
.y1c9{bottom:475.358667pt;}
.y30{bottom:476.100000pt;}
.y60{bottom:476.617333pt;}
.y162{bottom:477.948000pt;}
.y1f4{bottom:478.008000pt;}
.ybb{bottom:478.614667pt;}
.y17d{bottom:481.237333pt;}
.y118{bottom:483.334667pt;}
.y2b0{bottom:485.064000pt;}
.y2e3{bottom:485.710667pt;}
.y160{bottom:485.918667pt;}
.y242{bottom:489.482667pt;}
.y25e{bottom:492.093333pt;}
.ya0{bottom:493.448000pt;}
.y165{bottom:493.888000pt;}
.ye5{bottom:493.889333pt;}
.y2f{bottom:494.669333pt;}
.y1c8{bottom:495.164000pt;}
.y5f{bottom:495.188000pt;}
.y1f3{bottom:496.578667pt;}
.y117{bottom:501.905333pt;}
.y2af{bottom:502.086667pt;}
.y2e2{bottom:502.733333pt;}
.y241{bottom:508.053333pt;}
.yba{bottom:508.265333pt;}
.y17c{bottom:509.810667pt;}
.ye4{bottom:509.829333pt;}
.y25d{bottom:510.664000pt;}
.y1c7{bottom:511.104000pt;}
.y9f{bottom:512.018667pt;}
.y2e{bottom:513.240000pt;}
.y5e{bottom:513.758667pt;}
.y1f2{bottom:515.148000pt;}
.ye2{bottom:517.800000pt;}
.y1c4{bottom:519.074667pt;}
.y2ae{bottom:519.109333pt;}
.y2e1{bottom:519.756000pt;}
.y116{bottom:520.474667pt;}
.yb9{bottom:525.361333pt;}
.ye3{bottom:525.769333pt;}
.y240{bottom:526.622667pt;}
.y1bf{bottom:527.044000pt;}
.y25c{bottom:529.233333pt;}
.y9e{bottom:530.589333pt;}
.y2d{bottom:531.810667pt;}
.y15f{bottom:532.170667pt;}
.y5d{bottom:532.329333pt;}
.y1c3{bottom:535.014667pt;}
.y2ad{bottom:536.132000pt;}
.y2e0{bottom:536.778667pt;}
.y115{bottom:539.045333pt;}
.ye1{bottom:541.710667pt;}
.yb8{bottom:542.456000pt;}
.y1be{bottom:542.985333pt;}
.y23f{bottom:545.193333pt;}
.y1f1{bottom:546.817333pt;}
.y25b{bottom:547.804000pt;}
.y15e{bottom:548.110667pt;}
.y9d{bottom:549.158667pt;}
.y2c{bottom:550.380000pt;}
.y5c{bottom:550.898667pt;}
.y1c2{bottom:550.954667pt;}
.y2ac{bottom:553.154667pt;}
.y2df{bottom:553.801333pt;}
.y114{bottom:557.616000pt;}
.ye0{bottom:557.650667pt;}
.y1bd{bottom:558.925333pt;}
.y1f0{bottom:563.913333pt;}
.y15a{bottom:564.052000pt;}
.yb6{bottom:565.050667pt;}
.y25a{bottom:566.374667pt;}
.y1c1{bottom:566.894667pt;}
.y9c{bottom:567.729333pt;}
.y23e{bottom:567.749333pt;}
.y2b{bottom:568.950667pt;}
.y5b{bottom:569.469333pt;}
.y2ab{bottom:570.177333pt;}
.y2de{bottom:570.824000pt;}
.y1bc{bottom:574.865333pt;}
.y236{bottom:575.198667pt;}
.y113{bottom:576.185333pt;}
.y159{bottom:579.992000pt;}
.ydf{bottom:579.993333pt;}
.y1ef{bottom:581.009333pt;}
.y1c0{bottom:582.836000pt;}
.y282{bottom:584.944000pt;}
.y9b{bottom:586.300000pt;}
.y2aa{bottom:587.200000pt;}
.y23d{bottom:587.209333pt;}
.y2a{bottom:587.521333pt;}
.y2dd{bottom:587.846667pt;}
.y151{bottom:587.961333pt;}
.y5a{bottom:588.040000pt;}
.y259{bottom:588.929333pt;}
.y1c6{bottom:590.805333pt;}
.y235{bottom:593.769333pt;}
.y112{bottom:594.756000pt;}
.y158{bottom:595.932000pt;}
.y281{bottom:603.514667pt;}
.y1ea{bottom:603.604000pt;}
.y150{bottom:603.902667pt;}
.y2a9{bottom:604.222667pt;}
.y9a{bottom:604.869333pt;}
.y29{bottom:606.090667pt;}
.y59{bottom:606.609333pt;}
.y1c5{bottom:606.745333pt;}
.yde{bottom:609.029333pt;}
.y157{bottom:611.872000pt;}
.y234{bottom:612.338667pt;}
.y111{bottom:613.326667pt;}
.y23c{bottom:615.782667pt;}
.y14d{bottom:619.842667pt;}
.y2a8{bottom:621.245333pt;}
.y2dc{bottom:621.892000pt;}
.y280{bottom:622.085333pt;}
.y99{bottom:623.440000pt;}
.y28{bottom:624.661333pt;}
.y58{bottom:625.180000pt;}
.y156{bottom:627.812000pt;}
.y1ba{bottom:629.088000pt;}
.y233{bottom:630.909333pt;}
.y110{bottom:631.896000pt;}
.y23b{bottom:632.878667pt;}
.y14c{bottom:635.782667pt;}
.y2a7{bottom:638.268000pt;}
.y2db{bottom:638.914667pt;}
.y27f{bottom:640.654667pt;}
.y98{bottom:642.010667pt;}
.y27{bottom:643.232000pt;}
.y57{bottom:643.750667pt;}
.y15d{bottom:643.752000pt;}
.y155{bottom:643.753333pt;}
.y1b8{bottom:645.028000pt;}
.y232{bottom:649.480000pt;}
.y10f{bottom:650.466667pt;}
.y14f{bottom:651.722667pt;}
.y2a6{bottom:655.290667pt;}
.y2da{bottom:655.937333pt;}
.y27e{bottom:659.225333pt;}
.y154{bottom:659.693333pt;}
.y97{bottom:660.580000pt;}
.y1b7{bottom:660.968000pt;}
.y26{bottom:661.801333pt;}
.y56{bottom:662.320000pt;}
.y14e{bottom:667.662667pt;}
.y231{bottom:668.050667pt;}
.y10e{bottom:669.037333pt;}
.y2a5{bottom:672.313333pt;}
.y2d9{bottom:672.961333pt;}
.y153{bottom:675.633333pt;}
.y1bb{bottom:676.908000pt;}
.y1b6{bottom:676.909333pt;}
.y27d{bottom:677.796000pt;}
.y96{bottom:679.150667pt;}
.y25{bottom:680.372000pt;}
.y55{bottom:680.890667pt;}
.y230{bottom:686.620000pt;}
.y10d{bottom:687.606667pt;}
.y2a4{bottom:689.336000pt;}
.y2d8{bottom:689.984000pt;}
.y152{bottom:691.573333pt;}
.y1b9{bottom:692.849333pt;}
.y27c{bottom:696.365333pt;}
.y95{bottom:697.721333pt;}
.y24{bottom:698.942667pt;}
.y54{bottom:699.461333pt;}
.yc7{bottom:703.446667pt;}
.y22f{bottom:705.190667pt;}
.y10c{bottom:706.177333pt;}
.y2a3{bottom:706.358667pt;}
.y2d7{bottom:707.006667pt;}
.y15c{bottom:707.513333pt;}
.y27b{bottom:714.936000pt;}
.y1b4{bottom:715.190667pt;}
.y94{bottom:716.290667pt;}
.y53{bottom:718.030667pt;}
.y15b{bottom:723.453333pt;}
.y22e{bottom:723.761333pt;}
.y2d6{bottom:724.029333pt;}
.y10b{bottom:724.748000pt;}
.y23{bottom:725.482667pt;}
.y2a2{bottom:727.366667pt;}
.y1b3{bottom:731.132000pt;}
.y27a{bottom:733.506667pt;}
.y93{bottom:734.861333pt;}
.y77{bottom:736.601333pt;}
.y1b5{bottom:739.101333pt;}
.y52{bottom:740.586667pt;}
.y2d5{bottom:741.052000pt;}
.y22d{bottom:742.330667pt;}
.y10a{bottom:743.317333pt;}
.y14b{bottom:745.796000pt;}
.y1b2{bottom:747.072000pt;}
.y279{bottom:752.077333pt;}
.y92{bottom:753.432000pt;}
.y146{bottom:753.766667pt;}
.y76{bottom:755.172000pt;}
.y2d4{bottom:758.074667pt;}
.y22{bottom:758.821333pt;}
.y22c{bottom:760.901333pt;}
.y14a{bottom:761.736000pt;}
.y2a1{bottom:762.834667pt;}
.y1b1{bottom:763.012000pt;}
.y145{bottom:769.706667pt;}
.y278{bottom:770.646667pt;}
.y51{bottom:772.002667pt;}
.y21{bottom:773.168000pt;}
.y7d{bottom:773.742667pt;}
.y2d3{bottom:775.097333pt;}
.y149{bottom:777.676000pt;}
.y13d{bottom:777.677333pt;}
.y75{bottom:777.726667pt;}
.y22b{bottom:779.472000pt;}
.y2a0{bottom:780.166667pt;}
.y109{bottom:780.825333pt;}
.y1b0{bottom:785.354667pt;}
.y144{bottom:785.646667pt;}
.y277{bottom:789.217333pt;}
.y50{bottom:790.572000pt;}
.y20{bottom:791.370667pt;}
.y2d2{bottom:792.120000pt;}
.y7c{bottom:792.312000pt;}
.y108{bottom:793.444000pt;}
.y13c{bottom:793.617333pt;}
.y212{bottom:795.408000pt;}
.y29f{bottom:797.498667pt;}
.y22a{bottom:798.041333pt;}
.y1af{bottom:801.294667pt;}
.y143{bottom:801.586667pt;}
.y1f{bottom:805.717333pt;}
.y107{bottom:806.064000pt;}
.y276{bottom:807.788000pt;}
.y4f{bottom:809.142667pt;}
.y139{bottom:809.557333pt;}
.y7b{bottom:810.882667pt;}
.y211{bottom:813.977333pt;}
.y29e{bottom:814.830667pt;}
.y1e{bottom:816.206667pt;}
.y229{bottom:816.612000pt;}
.y1ae{bottom:817.234667pt;}
.y142{bottom:817.526667pt;}
.y106{bottom:818.682667pt;}
.y138{bottom:825.497333pt;}
.y2d1{bottom:826.165333pt;}
.y275{bottom:826.357333pt;}
.y1a7{bottom:826.752000pt;}
.y4e{bottom:827.713333pt;}
.y7a{bottom:829.453333pt;}
.y29d{bottom:832.162667pt;}
.y210{bottom:832.548000pt;}
.y1ad{bottom:833.174667pt;}
.y141{bottom:833.468000pt;}
.y1d{bottom:834.409333pt;}
.y228{bottom:835.182667pt;}
.y105{bottom:835.832000pt;}
.y13b{bottom:841.437333pt;}
.y1a0{bottom:842.692000pt;}
.y2d0{bottom:843.188000pt;}
.y274{bottom:844.928000pt;}
.y4d{bottom:846.282667pt;}
.y79{bottom:848.022667pt;}
.y1a6{bottom:849.114667pt;}
.y140{bottom:849.408000pt;}
.y29c{bottom:849.496000pt;}
.y20f{bottom:851.118667pt;}
.y104{bottom:851.772000pt;}
.y227{bottom:853.752000pt;}
.y1ac{bottom:857.085333pt;}
.y13a{bottom:857.377333pt;}
.y19f{bottom:858.633333pt;}
.y2cf{bottom:860.210667pt;}
.y273{bottom:863.498667pt;}
.y4c{bottom:864.853333pt;}
.y1a5{bottom:865.054667pt;}
.y13f{bottom:865.348000pt;}
.y1e0{bottom:866.593333pt;}
.y103{bottom:867.712000pt;}
.y20e{bottom:869.688000pt;}
.y78{bottom:870.578667pt;}
.y1c{bottom:871.888000pt;}
.y226{bottom:872.322667pt;}
.y1ab{bottom:873.025333pt;}
.y148{bottom:873.318667pt;}
.y19e{bottom:874.573333pt;}
.y2ce{bottom:877.233333pt;}
.y29b{bottom:880.288000pt;}
.y1a4{bottom:880.996000pt;}
.y13e{bottom:881.288000pt;}
.y272{bottom:882.068000pt;}
.y4b{bottom:883.424000pt;}
.y102{bottom:883.652000pt;}
.y1df{bottom:885.164000pt;}
.y20d{bottom:888.258667pt;}
.y1aa{bottom:888.965333pt;}
.y147{bottom:889.258667pt;}
.y1b{bottom:890.457333pt;}
.y19d{bottom:890.513333pt;}
.y225{bottom:890.893333pt;}
.y101{bottom:891.622667pt;}
.y2cd{bottom:894.256000pt;}
.y1a3{bottom:896.936000pt;}
.y17b{bottom:898.009333pt;}
.y271{bottom:900.638667pt;}
.y29a{bottom:901.605333pt;}
.y4a{bottom:901.993333pt;}
.y1a9{bottom:904.905333pt;}
.y20c{bottom:906.829333pt;}
.y1de{bottom:907.718667pt;}
.y224{bottom:909.464000pt;}
.y2cc{bottom:911.278667pt;}
.y137{bottom:911.600000pt;}
.y1a2{bottom:912.876000pt;}
.y100{bottom:915.533333pt;}
.y17a{bottom:916.578667pt;}
.y270{bottom:919.209333pt;}
.y49{bottom:920.564000pt;}
.y1a8{bottom:920.846667pt;}
.y1a{bottom:924.968000pt;}
.y20b{bottom:925.398667pt;}
.y2cb{bottom:928.301333pt;}
.y1a1{bottom:928.816000pt;}
.yff{bottom:931.473333pt;}
.y179{bottom:935.149333pt;}
.y299{bottom:936.116000pt;}
.y26f{bottom:937.778667pt;}
.y48{bottom:939.134667pt;}
.yfc{bottom:939.442667pt;}
.y223{bottom:941.132000pt;}
.y136{bottom:943.293333pt;}
.y2ca{bottom:945.324000pt;}
.yfe{bottom:947.413333pt;}
.y20a{bottom:947.954667pt;}
.y19a{bottom:951.158667pt;}
.y19{bottom:952.824000pt;}
.y298{bottom:953.448000pt;}
.yb5{bottom:953.720000pt;}
.y47{bottom:957.704000pt;}
.y19c{bottom:959.129333pt;}
.y26e{bottom:960.334667pt;}
.y2c9{bottom:962.346667pt;}
.yfd{bottom:963.353333pt;}
.y209{bottom:963.429333pt;}
.y199{bottom:967.098667pt;}
.y297{bottom:970.781333pt;}
.yb4{bottom:972.289333pt;}
.y19b{bottom:975.069333pt;}
.y46{bottom:976.274667pt;}
.y2c8{bottom:979.369333pt;}
.y18{bottom:980.678667pt;}
.y198{bottom:983.038667pt;}
.yfb{bottom:985.696000pt;}
.yb3{bottom:990.860000pt;}
.y45{bottom:994.845333pt;}
.y296{bottom:996.082667pt;}
.y2c7{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.yfa{bottom:1014.732000pt;}
.y43{bottom:1066.841333pt;}
.h10{height:18.682573pt;}
.hc{height:24.582445pt;}
.h7{height:28.947524pt;}
.h2{height:33.771789pt;}
.h13{height:35.100467pt;}
.h14{height:36.666735pt;}
.h9{height:38.415786pt;}
.h1d{height:38.562387pt;}
.h8{height:38.596538pt;}
.h3{height:39.000258pt;}
.h1e{height:42.013650pt;}
.h17{height:42.412500pt;}
.hf{height:43.421286pt;}
.h1c{height:43.502813pt;}
.hb{height:46.099251pt;}
.ha{height:48.245551pt;}
.h1b{height:48.433131pt;}
.h6{height:48.481423pt;}
.h5{height:48.486756pt;}
.he{height:49.421563pt;}
.h20{height:50.904209pt;}
.h18{height:53.268750pt;}
.h16{height:59.305875pt;}
.h4{height:69.148877pt;}
.h12{height:80.122884pt;}
.h11{height:80.128218pt;}
.hd{height:369.674667pt;}
.h1f{height:419.249003pt;}
.h19{height:423.097600pt;}
.h1a{height:430.371573pt;}
.h15{height:454.933120pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:334.392933pt;}
.w5{width:513.846667pt;}
.w4{width:627.524800pt;}
.w2{width:627.671200pt;}
.w3{width:629.200000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x76{left:55.781333pt;}
.x85{left:60.017333pt;}
.x86{left:62.653333pt;}
.x87{left:64.646667pt;}
.x89{left:67.489333pt;}
.x80{left:71.254667pt;}
.x81{left:72.310667pt;}
.x7b{left:74.994667pt;}
.xa1{left:76.309333pt;}
.x75{left:78.924000pt;}
.x7a{left:80.945333pt;}
.x7c{left:81.874667pt;}
.x4e{left:82.826133pt;}
.x82{left:87.746667pt;}
.x88{left:91.332000pt;}
.x91{left:147.649132pt;}
.x8e{left:151.837839pt;}
.x83{left:172.605333pt;}
.x7d{left:177.776000pt;}
.x77{left:182.206667pt;}
.x49{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x7e{left:226.034667pt;}
.x59{left:233.580000pt;}
.x3{left:239.924000pt;}
.x6b{left:241.384000pt;}
.x63{left:246.837333pt;}
.x5{left:250.204000pt;}
.x96{left:251.215823pt;}
.x95{left:252.548609pt;}
.x5a{left:253.497333pt;}
.x94{left:254.901283pt;}
.x61{left:256.149333pt;}
.x50{left:262.320000pt;}
.x65{left:263.268000pt;}
.x20{left:264.898667pt;}
.x69{left:265.978667pt;}
.x3f{left:267.688000pt;}
.x1b{left:268.909333pt;}
.x71{left:271.378667pt;}
.x8a{left:272.318667pt;}
.xc{left:274.832000pt;}
.x21{left:278.181333pt;}
.x32{left:279.393333pt;}
.x8b{left:280.524000pt;}
.xd{left:281.473333pt;}
.x6f{left:284.512000pt;}
.x5f{left:288.221333pt;}
.x33{left:292.677333pt;}
.x70{left:297.796000pt;}
.x5b{left:299.768000pt;}
.x93{left:304.416169pt;}
.x55{left:305.538667pt;}
.x78{left:308.632000pt;}
.x8f{left:312.638410pt;}
.x8d{left:316.859654pt;}
.x56{left:318.822667pt;}
.x1c{left:328.201333pt;}
.x38{left:329.565333pt;}
.x97{left:331.031183pt;}
.x47{left:336.610667pt;}
.x99{left:340.350667pt;}
.x1d{left:341.485333pt;}
.x39{left:342.848000pt;}
.x5d{left:348.965333pt;}
.x48{left:349.893333pt;}
.x6{left:351.253333pt;}
.x9a{left:353.633333pt;}
.x4a{left:354.868000pt;}
.x7{left:357.896000pt;}
.x98{left:361.158667pt;}
.x51{left:363.884000pt;}
.x84{left:366.230667pt;}
.xe{left:368.226667pt;}
.x52{left:369.933333pt;}
.x3a{left:371.418667pt;}
.xf{left:374.868000pt;}
.x10{left:378.146667pt;}
.x6d{left:383.846667pt;}
.x11{left:384.788000pt;}
.x4b{left:392.820000pt;}
.x9e{left:395.390667pt;}
.x6e{left:397.129333pt;}
.x64{left:399.456000pt;}
.x7f{left:402.680000pt;}
.x4c{left:406.104000pt;}
.x57{left:408.061333pt;}
.x67{left:410.468000pt;}
.x34{left:411.737333pt;}
.x22{left:413.245333pt;}
.x9f{left:415.336000pt;}
.x58{left:421.345333pt;}
.x62{left:423.100000pt;}
.x35{left:425.021333pt;}
.x23{left:426.529333pt;}
.xa0{left:428.618667pt;}
.x1e{left:430.318667pt;}
.x1a{left:432.569333pt;}
.x12{left:439.085333pt;}
.x1f{left:443.601333pt;}
.x13{left:445.726667pt;}
.x68{left:448.490667pt;}
.x6a{left:458.593333pt;}
.x92{left:465.599689pt;}
.x42{left:467.789333pt;}
.x90{left:474.686952pt;}
.x43{left:481.073333pt;}
.x8c{left:485.872000pt;}
.x5c{left:487.962667pt;}
.x5e{left:494.232000pt;}
.x45{left:498.622667pt;}
.x60{left:502.880000pt;}
.x9d{left:509.120000pt;}
.x30{left:510.576000pt;}
.x46{left:511.905333pt;}
.x66{left:520.780000pt;}
.x14{left:521.944000pt;}
.x31{left:523.860000pt;}
.x15{left:528.585333pt;}
.x28{left:530.029333pt;}
.x79{left:531.056000pt;}
.x9b{left:534.565333pt;}
.x40{left:539.849333pt;}
.x29{left:543.313333pt;}
.x9c{left:547.848000pt;}
.x36{left:548.981333pt;}
.x41{left:553.133333pt;}
.x53{left:556.360000pt;}
.x3d{left:557.714667pt;}
.x37{left:562.265333pt;}
.x6c{left:566.186667pt;}
.x3e{left:570.998667pt;}
.x54{left:593.421333pt;}
.x2a{left:606.918667pt;}
.x72{left:614.066667pt;}
.x2b{left:620.201333pt;}
.x16{left:625.545333pt;}
.x4f{left:626.910920pt;}
.x17{left:632.186667pt;}
.x73{left:634.025333pt;}
.x2c{left:635.821333pt;}
.x2e{left:646.085333pt;}
.x74{left:647.309333pt;}
.x2d{left:649.104000pt;}
.x2f{left:659.369333pt;}
.x4d{left:683.225333pt;}
.x3b{left:689.305333pt;}
.x24{left:694.269333pt;}
.x44{left:695.878667pt;}
.x26{left:698.702667pt;}
.x3c{left:702.589333pt;}
.x25{left:707.553333pt;}
.x18{left:709.873333pt;}
.x27{left:711.985333pt;}
.x8{left:722.824000pt;}
.x19{left:726.433333pt;}
.x9{left:729.466667pt;}
.xa{left:732.844000pt;}
.xb{left:739.485333pt;}
}




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