
    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_62eab454a1428ee5fcbeb2b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cec4fe955db7e33c250ac218.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a7f61fe421f1af0c82f617bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_68bf88cea54212c90fc3e568.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94fed4ae215240943d512154.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f4044369af7cf7910f74ed73.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_70af0a0c1cb694ae6a1a0092.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1f9841d8649090ad43a039eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.800000;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_0aaecb8a6ffe477b0b4563f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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_6cfb58e63b84cca152fa6a70.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_7c001ad9c2082080b4f6f2d6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6f4a5d64728cb0fd40925b64.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_06deaa9cf0aecc9153cb48fe.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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:ff10;src:url('chunks/assets/font_6314a038643edf8c22ff3bbc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973145;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:ff11;src:url('chunks/assets/font_d6fff9bd91cc5b0157835eb1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1594f07449c9c4adeed693f0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{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);}
.m2b{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);}
.me{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);}
.m11{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);}
.m25{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);}
.m12{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);}
.m5{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);}
.m19{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);}
.m2{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);}
.m28{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);}
.m1a{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);}
.m1c{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);}
.mb{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);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m3{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m23{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);}
.m29{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);}
.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);}
.m10{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);}
.mf{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);}
.m1e{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);}
.m15{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);}
.m7{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);}
.m21{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);}
.m17{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);}
.m18{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);}
.m1b{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);}
.m27{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);}
.ma{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);}
.m24{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);}
.m20{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);}
.m14{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);}
.m9{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);}
.m13{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);}
.m26{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);}
.m8{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);}
.m16{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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-53.118000px;}
.v1{vertical-align:-11.958000px;}
.v9{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.162000px;}
.va{vertical-align:19.530000px;}
.v7{vertical-align:20.622000px;}
.vb{vertical-align:31.626000px;}
.v8{vertical-align:32.874000px;}
.v3{vertical-align:44.202000px;}
.v4{vertical-align:48.450000px;}
.vc{vertical-align:51.156000px;}
.v2{vertical-align:92.652000px;}
.ls2a{letter-spacing:-0.162324px;}
.ls2f{letter-spacing:-0.072144px;}
.ls2b{letter-spacing:-0.042084px;}
.ls2d{letter-spacing:-0.036072px;}
.ls32{letter-spacing:-0.030060px;}
.ls28{letter-spacing:-0.028728px;}
.ls30{letter-spacing:-0.024048px;}
.ls2c{letter-spacing:-0.018036px;}
.ls2e{letter-spacing:-0.012024px;}
.ls31{letter-spacing:-0.006012px;}
.ls29{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000061px;}
.ls44{letter-spacing:0.000292px;}
.ls3c{letter-spacing:0.000435px;}
.ls42{letter-spacing:0.000478px;}
.ls46{letter-spacing:0.000699px;}
.ls43{letter-spacing:0.000800px;}
.ls4b{letter-spacing:0.001036px;}
.ls40{letter-spacing:0.001102px;}
.ls13{letter-spacing:0.001200px;}
.ls1a{letter-spacing:0.001565px;}
.ls45{letter-spacing:0.002507px;}
.ls3b{letter-spacing:0.003548px;}
.ls49{letter-spacing:0.003646px;}
.ls34{letter-spacing:0.004090px;}
.ls48{letter-spacing:0.004413px;}
.ls17{letter-spacing:0.004888px;}
.ls1d{letter-spacing:0.006012px;}
.ls1f{letter-spacing:0.012024px;}
.ls25{letter-spacing:0.018036px;}
.ls26{letter-spacing:0.024048px;}
.ls23{letter-spacing:0.030060px;}
.ls22{letter-spacing:0.036072px;}
.ls27{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.054108px;}
.ls20{letter-spacing:0.060120px;}
.ls21{letter-spacing:0.120240px;}
.ls1c{letter-spacing:0.177156px;}
.ls1e{letter-spacing:0.180360px;}
.ls1b{letter-spacing:0.191520px;}
.ls37{letter-spacing:0.503764px;}
.ls12{letter-spacing:0.565142px;}
.ls14{letter-spacing:0.571142px;}
.ls10{letter-spacing:0.748200px;}
.ls33{letter-spacing:1.494000px;}
.lsc{letter-spacing:2.058017px;}
.lsf{letter-spacing:2.064017px;}
.lsb{letter-spacing:2.376843px;}
.ls11{letter-spacing:8.492400px;}
.ls3{letter-spacing:11.954850px;}
.lsd{letter-spacing:12.370200px;}
.ls41{letter-spacing:13.448400px;}
.ls19{letter-spacing:13.449510px;}
.ls3f{letter-spacing:13.454400px;}
.ls47{letter-spacing:13.579404px;}
.ls5{letter-spacing:13.688612px;}
.lse{letter-spacing:13.983483px;}
.ls36{letter-spacing:14.094088px;}
.ls3d{letter-spacing:14.100088px;}
.ls39{letter-spacing:14.226593px;}
.ls38{letter-spacing:14.645022px;}
.ls4{letter-spacing:14.824349px;}
.ls1{letter-spacing:14.943900px;}
.ls2{letter-spacing:14.944200px;}
.ls6{letter-spacing:15.123227px;}
.ls7{letter-spacing:15.174970px;}
.ls3a{letter-spacing:15.183002px;}
.ls3e{letter-spacing:16.856719px;}
.ls9{letter-spacing:17.353154px;}
.ls4a{letter-spacing:18.459978px;}
.ls16{letter-spacing:20.085483px;}
.ls8{letter-spacing:21.100787px;}
.ls35{letter-spacing:24.866650px;}
.ls15{letter-spacing:30.001200px;}
.lsa{letter-spacing:34.629483px;}
.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;}
}
.wsd{word-spacing:-22.718660px;}
.ws23{word-spacing:-14.943900px;}
.ws80{word-spacing:-13.449600px;}
.ws81{word-spacing:-12.161520px;}
.ws82{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.wsc{word-spacing:-10.460700px;}
.ws77{word-spacing:-3.287658px;}
.ws3f{word-spacing:-2.749678px;}
.wsc5{word-spacing:-2.570351px;}
.wsd8{word-spacing:-2.510575px;}
.wsb4{word-spacing:-2.450800px;}
.ws74{word-spacing:-2.331248px;}
.ws5a{word-spacing:-2.271473px;}
.ws40{word-spacing:-2.092146px;}
.ws3a{word-spacing:-1.972595px;}
.ws3e{word-spacing:-1.853044px;}
.ws3d{word-spacing:-1.793268px;}
.ws47{word-spacing:-1.554166px;}
.ws5f{word-spacing:-1.494390px;}
.ws22{word-spacing:-1.434614px;}
.ws91{word-spacing:-1.382760px;}
.wsb5{word-spacing:-1.374839px;}
.wsa6{word-spacing:-1.340676px;}
.ws93{word-spacing:-1.334664px;}
.wsa7{word-spacing:-1.316628px;}
.ws90{word-spacing:-1.310616px;}
.ws107{word-spacing:-1.291162px;}
.wsb7{word-spacing:-1.255288px;}
.wse4{word-spacing:-1.075968px;}
.wsde{word-spacing:-1.075961px;}
.ws8a{word-spacing:-1.046088px;}
.ws92{word-spacing:-1.016028px;}
.wsa1{word-spacing:-0.979956px;}
.ws115{word-spacing:-0.968371px;}
.ws8c{word-spacing:-0.943884px;}
.ws29{word-spacing:-0.896634px;}
.ws79{word-spacing:-0.836858px;}
.ws8b{word-spacing:-0.823644px;}
.ws10e{word-spacing:-0.806976px;}
.ws5b{word-spacing:-0.777083px;}
.ws6c{word-spacing:-0.717307px;}
.wsa2{word-spacing:-0.685368px;}
.ws78{word-spacing:-0.657532px;}
.wseb{word-spacing:-0.645581px;}
.wsa0{word-spacing:-0.589176px;}
.ws7d{word-spacing:-0.478205px;}
.wse3{word-spacing:-0.430387px;}
.wsdf{word-spacing:-0.418429px;}
.ws2e{word-spacing:-0.358654px;}
.ws9f{word-spacing:-0.318636px;}
.wsa3{word-spacing:-0.312624px;}
.ws31{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.277704px;}
.ws16{word-spacing:-0.268992px;}
.wsae{word-spacing:-0.246492px;}
.ws3b{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.wsf8{word-spacing:-0.208659px;}
.ws33{word-spacing:-0.179327px;}
.ws13{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws86{word-spacing:-0.081396px;}
.ws83{word-spacing:-0.060120px;}
.ws24{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.057456px;}
.ws12{word-spacing:-0.053798px;}
.wsf4{word-spacing:-0.013267px;}
.wsf6{word-spacing:-0.012355px;}
.wsff{word-spacing:-0.011798px;}
.ws103{word-spacing:-0.011222px;}
.ws113{word-spacing:-0.010406px;}
.ws110{word-spacing:-0.010339px;}
.ws10a{word-spacing:-0.009302px;}
.ws105{word-spacing:-0.008976px;}
.ws114{word-spacing:-0.007910px;}
.wse5{word-spacing:-0.007488px;}
.wsee{word-spacing:-0.004838px;}
.wsf0{word-spacing:-0.004733px;}
.wsfe{word-spacing:-0.004502px;}
.wsfb{word-spacing:-0.003302px;}
.ws100{word-spacing:-0.001526px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.003599px;}
.ws4{word-spacing:0.024468px;}
.wsaf{word-spacing:0.036072px;}
.wsaa{word-spacing:0.042084px;}
.wscb{word-spacing:0.051060px;}
.wsc9{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.wsad{word-spacing:0.096192px;}
.ws18{word-spacing:0.107597px;}
.ws27{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.wsf{word-spacing:0.161395px;}
.ws7b{word-spacing:0.170210px;}
.ws2a{word-spacing:0.179327px;}
.wsec{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.wsc8{word-spacing:0.268992px;}
.ws20{word-spacing:0.298878px;}
.wsfc{word-spacing:0.322790px;}
.ws4a{word-spacing:0.358654px;}
.ws102{word-spacing:0.376589px;}
.ws7a{word-spacing:0.418429px;}
.ws15{word-spacing:0.430387px;}
.ws108{word-spacing:0.432271px;}
.wsab{word-spacing:0.444888px;}
.wsac{word-spacing:0.456912px;}
.ws2f{word-spacing:0.478205px;}
.ws36{word-spacing:0.597756px;}
.ws7c{word-spacing:0.620715px;}
.wsf7{word-spacing:0.645581px;}
.ws34{word-spacing:0.657532px;}
.wsc4{word-spacing:0.669370px;}
.ws98{word-spacing:0.763524px;}
.wsdd{word-spacing:0.777083px;}
.ws97{word-spacing:0.829656px;}
.ws5c{word-spacing:0.836858px;}
.wsef{word-spacing:0.860774px;}
.ws52{word-spacing:0.896634px;}
.ws41{word-spacing:0.956410px;}
.ws25{word-spacing:1.016185px;}
.wsb9{word-spacing:1.075961px;}
.wsdc{word-spacing:1.135736px;}
.ws9c{word-spacing:1.184364px;}
.wsb8{word-spacing:1.195512px;}
.wsed{word-spacing:1.237363px;}
.ws57{word-spacing:1.255288px;}
.wsb1{word-spacing:1.315063px;}
.ws106{word-spacing:1.344960px;}
.ws71{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.wsd9{word-spacing:1.434614px;}
.ws75{word-spacing:1.494390px;}
.ws89{word-spacing:1.527048px;}
.ws88{word-spacing:1.533060px;}
.wse1{word-spacing:1.554166px;}
.ws94{word-spacing:1.611216px;}
.ws6e{word-spacing:1.613941px;}
.ws73{word-spacing:1.673717px;}
.ws3c{word-spacing:1.733492px;}
.ws72{word-spacing:1.793268px;}
.ws10d{word-spacing:1.829146px;}
.ws6b{word-spacing:1.853044px;}
.wsa5{word-spacing:1.893780px;}
.ws30{word-spacing:1.912819px;}
.ws43{word-spacing:1.972595px;}
.ws112{word-spacing:1.990541px;}
.wsc6{word-spacing:2.032370px;}
.ws48{word-spacing:2.092146px;}
.wsba{word-spacing:2.151922px;}
.wsf3{word-spacing:2.205734px;}
.ws63{word-spacing:2.211697px;}
.ws60{word-spacing:2.271473px;}
.ws2b{word-spacing:2.331248px;}
.ws6f{word-spacing:2.391024px;}
.ws55{word-spacing:2.450800px;}
.ws5d{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws111{word-spacing:2.528525px;}
.ws3{word-spacing:2.559652px;}
.wscc{word-spacing:2.570351px;}
.ws9d{word-spacing:2.591172px;}
.ws9e{word-spacing:2.609208px;}
.ws6a{word-spacing:2.630126px;}
.ws1c{word-spacing:2.749678px;}
.ws1f{word-spacing:2.809453px;}
.ws50{word-spacing:2.869229px;}
.wse8{word-spacing:2.905114px;}
.wse9{word-spacing:2.911521px;}
.wsd4{word-spacing:2.929004px;}
.wsb0{word-spacing:2.988780px;}
.wsf9{word-spacing:3.012710px;}
.ws109{word-spacing:3.066509px;}
.wsfd{word-spacing:3.120307px;}
.wsfa{word-spacing:3.217978px;}
.ws19{word-spacing:3.219667px;}
.ws10f{word-spacing:3.222758px;}
.wsf2{word-spacing:3.223219px;}
.wse2{word-spacing:3.224822px;}
.ws101{word-spacing:3.225686px;}
.ws56{word-spacing:3.227882px;}
.wse6{word-spacing:3.227904px;}
.ws5e{word-spacing:3.287658px;}
.ws104{word-spacing:3.335501px;}
.ws76{word-spacing:3.347434px;}
.ws4e{word-spacing:3.407209px;}
.wse{word-spacing:3.440260px;}
.ws39{word-spacing:3.466985px;}
.ws116{word-spacing:3.496896px;}
.ws1d{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.ws51{word-spacing:3.646312px;}
.wsb6{word-spacing:3.706087px;}
.ws10b{word-spacing:3.712090px;}
.ws49{word-spacing:3.765863px;}
.ws42{word-spacing:3.825638px;}
.wsce{word-spacing:3.885414px;}
.ws37{word-spacing:3.945190px;}
.ws65{word-spacing:4.004965px;}
.wse7{word-spacing:4.034880px;}
.ws4c{word-spacing:4.064741px;}
.ws11{word-spacing:4.088678px;}
.ws58{word-spacing:4.124516px;}
.ws69{word-spacing:4.244068px;}
.wsb2{word-spacing:4.363619px;}
.ws68{word-spacing:4.423394px;}
.wsdb{word-spacing:4.483170px;}
.wsda{word-spacing:4.542946px;}
.wsc7{word-spacing:4.602721px;}
.wsf1{word-spacing:4.626662px;}
.ws59{word-spacing:4.662497px;}
.ws35{word-spacing:4.722272px;}
.ws4b{word-spacing:4.782048px;}
.ws67{word-spacing:4.841824px;}
.ws10{word-spacing:4.841856px;}
.ws10c{word-spacing:5.003251px;}
.wsd7{word-spacing:5.080926px;}
.ws8e{word-spacing:5.128236px;}
.ws32{word-spacing:5.140702px;}
.ws8d{word-spacing:5.158296px;}
.wscd{word-spacing:5.200477px;}
.wsd2{word-spacing:5.260253px;}
.wsc2{word-spacing:5.379804px;}
.ws9{word-spacing:5.481407px;}
.ws54{word-spacing:5.618906px;}
.wsd3{word-spacing:5.678682px;}
.ws21{word-spacing:5.738458px;}
.ws99{word-spacing:5.843664px;}
.ws9a{word-spacing:5.861700px;}
.ws44{word-spacing:6.156887px;}
.ws38{word-spacing:6.216662px;}
.wsf5{word-spacing:6.294413px;}
.wsc1{word-spacing:6.395989px;}
.ws9b{word-spacing:6.559092px;}
.wsb3{word-spacing:6.635092px;}
.wsa8{word-spacing:6.967908px;}
.wsa9{word-spacing:6.979932px;}
.ws4d{word-spacing:7.113296px;}
.ws4f{word-spacing:7.890379px;}
.ws64{word-spacing:7.950155px;}
.wsa4{word-spacing:7.989948px;}
.ws70{word-spacing:8.009930px;}
.ws46{word-spacing:8.069706px;}
.ws45{word-spacing:8.189257px;}
.ws6d{word-spacing:8.249033px;}
.wse0{word-spacing:8.368584px;}
.ws1b{word-spacing:8.488135px;}
.wsea{word-spacing:9.253325px;}
.ws8f{word-spacing:9.781524px;}
.wsc0{word-spacing:9.922750px;}
.ws87{word-spacing:11.620476px;}
.ws8{word-spacing:11.841512px;}
.ws7{word-spacing:13.306010px;}
.ws5{word-spacing:15.481836px;}
.ws66{word-spacing:16.199188px;}
.ws61{word-spacing:18.525325px;}
.ws95{word-spacing:19.202328px;}
.ws96{word-spacing:19.220364px;}
.ws53{word-spacing:20.921460px;}
.wsa{word-spacing:22.720640px;}
.ws6{word-spacing:29.262958px;}
.wsbc{word-spacing:100.353398px;}
.wsc3{word-spacing:118.692672px;}
.wsbf{word-spacing:166.721242px;}
.wsbd{word-spacing:213.741043px;}
.ws7f{word-spacing:257.263949px;}
.ws7e{word-spacing:270.713549px;}
.wsbb{word-spacing:398.452243px;}
.ws62{word-spacing:413.074343px;}
.wsd5{word-spacing:418.814477px;}
.wscf{word-spacing:494.293632px;}
.wsd1{word-spacing:498.489907px;}
.wsbe{word-spacing:536.202586px;}
.wsd0{word-spacing:538.677312px;}
.wsd6{word-spacing:581.285645px;}
.wsca{word-spacing:615.555226px;}
._6{margin-left:-6.712859px;}
._4{margin-left:-5.308087px;}
._34{margin-left:-4.232185px;}
._1{margin-left:-3.060159px;}
._3{margin-left:-1.464498px;}
._38{width:1.254456px;}
._4a{width:3.407341px;}
._15{width:4.811932px;}
._11{width:11.835560px;}
._0{width:12.971268px;}
._10{width:14.268418px;}
._7{width:15.786814px;}
._f{width:17.113772px;}
._8{width:18.303397px;}
._a{width:19.403106px;}
._16{width:20.652466px;}
._b{width:21.877861px;}
._17{width:23.910240px;}
._2{width:25.314894px;}
._9{width:26.319206px;}
._1a{width:27.377293px;}
._5{width:28.566950px;}
._12{width:30.605107px;}
._27{width:31.878337px;}
._19{width:33.295009px;}
._e{width:34.430746px;}
._4b{width:36.278482px;}
._3a{width:38.465594px;}
._18{width:40.796843px;}
._13{width:42.948764px;}
._49{width:44.383379px;}
._41{width:48.047632px;}
._44{width:132.196070px;}
._46{width:142.696070px;}
._3c{width:180.224640px;}
._1c{width:194.438560px;}
._40{width:227.244442px;}
._3f{width:240.640243px;}
._31{width:270.713549px;}
._2b{width:275.931994px;}
._2e{width:284.163149px;}
._47{width:288.736013px;}
._2a{width:295.407014px;}
._37{width:297.612749px;}
._29{width:314.774438px;}
._35{width:324.511949px;}
._32{width:330.280319px;}
._22{width:337.422154px;}
._24{width:344.117038px;}
._3d{width:394.712794px;}
._23{width:413.074343px;}
._1b{width:418.908456px;}
._20{width:425.029493px;}
._45{width:438.462834px;}
._43{width:447.166234px;}
._28{width:459.814925px;}
._3e{width:463.630944px;}
._3b{width:467.555875px;}
._1f{width:511.853762px;}
._48{width:518.831770px;}
._30{width:522.757181px;}
._26{width:549.984721px;}
._21{width:552.692554px;}
._1e{width:692.777032px;}
._1d{width:696.489160px;}
._33{width:746.990784px;}
._2d{width:755.114342px;}
._2f{width:787.070592px;}
._36{width:792.342835px;}
._2c{width:802.672128px;}
._25{width:817.827901px;}
._c{width:906.085028px;}
._39{width:2105.489484px;}
._42{width:2538.463268px;}
._d{width:2560.854872px;}
._14{width:2562.373268px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:29.887800px;}
.fsd{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:43.600200px;}
.fsc{font-size:45.429600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y185{bottom:-103.137750px;}
.y19e{bottom:-31.579983px;}
.y0{bottom:0.000000px;}
.y19d{bottom:2.169882px;}
.y36{bottom:9.233944px;}
.y35{bottom:26.903761px;}
.y62{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y110{bottom:103.621500px;}
.y33{bottom:104.646000px;}
.y19f{bottom:108.645000px;}
.y200{bottom:112.000500px;}
.y16c{bottom:112.320000px;}
.y1ae{bottom:113.875500px;}
.ycd{bottom:115.113000px;}
.y270{bottom:116.458500px;}
.yda{bottom:119.148000px;}
.y21f{bottom:119.596500px;}
.y10f{bottom:122.449500px;}
.y32{bottom:122.535000px;}
.y61{bottom:124.750500px;}
.y139{bottom:126.321000px;}
.y16b{bottom:128.758500px;}
.y1ff{bottom:130.830000px;}
.y1ad{bottom:132.705000px;}
.y26f{bottom:133.719000px;}
.ycc{bottom:133.942500px;}
.y182{bottom:134.062200px;}
.yd9{bottom:137.977500px;}
.y98{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y31{bottom:140.422500px;}
.y10e{bottom:141.279000px;}
.y23b{bottom:142.551000px;}
.y60{bottom:143.580000px;}
.y138{bottom:145.150500px;}
.y16a{bottom:145.197000px;}
.y1fe{bottom:149.659500px;}
.y26e{bottom:150.978000px;}
.y1ac{bottom:151.534500px;}
.ycb{bottom:152.772000px;}
.yd8{bottom:156.807000px;}
.y97{bottom:157.255500px;}
.y30{bottom:158.310000px;}
.y23a{bottom:159.811500px;}
.y10d{bottom:160.108500px;}
.y169{bottom:161.635500px;}
.y5f{bottom:162.409500px;}
.y137{bottom:163.980000px;}
.y26d{bottom:168.238500px;}
.y1fd{bottom:168.489000px;}
.yca{bottom:171.601500px;}
.yd7{bottom:175.636500px;}
.y96{bottom:176.085000px;}
.y2f{bottom:176.199000px;}
.y239{bottom:177.072000px;}
.y168{bottom:178.074000px;}
.y10c{bottom:178.938000px;}
.y5e{bottom:181.239000px;}
.y136{bottom:182.809500px;}
.y26c{bottom:185.499000px;}
.y1fc{bottom:187.318500px;}
.yc9{bottom:190.431000px;}
.y2e{bottom:194.086500px;}
.y238{bottom:194.331000px;}
.yd6{bottom:194.466000px;}
.y167{bottom:194.512500px;}
.y95{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y1ab{bottom:196.996500px;}
.y21e{bottom:197.767500px;}
.y5d{bottom:200.068500px;}
.y135{bottom:201.639000px;}
.y26b{bottom:202.759500px;}
.y1fb{bottom:206.146500px;}
.yc8{bottom:209.260500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y237{bottom:211.591500px;}
.y2d{bottom:211.974000px;}
.yd5{bottom:213.295500px;}
.y1aa{bottom:213.435000px;}
.y94{bottom:213.744000px;}
.y1d1{bottom:215.196000px;}
.y10b{bottom:215.700000px;}
.y21d{bottom:216.597000px;}
.y166{bottom:218.152500px;}
.y5c{bottom:218.898000px;}
.y26a{bottom:220.020000px;}
.y134{bottom:220.468500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1fa{bottom:224.976000px;}
.yc7{bottom:228.090000px;}
.y236{bottom:228.852000px;}
.y2c{bottom:229.863000px;}
.y1a9{bottom:229.873500px;}
.yd4{bottom:232.125000px;}
.y93{bottom:232.573500px;}
.y1d0{bottom:234.025500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y21c{bottom:235.426500px;}
.y269{bottom:237.280500px;}
.y5b{bottom:237.727500px;}
.y133{bottom:239.298000px;}
.y235{bottom:246.112500px;}
.y1a8{bottom:246.310500px;}
.yc6{bottom:246.919500px;}
.y165{bottom:249.772500px;}
.yd3{bottom:250.954500px;}
.y92{bottom:251.403000px;}
.y10a{bottom:252.463500px;}
.y271{bottom:252.585000px;}
.y1cf{bottom:252.855000px;}
.y21b{bottom:254.256000px;}
.y268{bottom:254.541000px;}
.y5a{bottom:256.557000px;}
.y132{bottom:258.127500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1a7{bottom:262.749000px;}
.y234{bottom:263.373000px;}
.yc5{bottom:265.749000px;}
.yd2{bottom:269.784000px;}
.y91{bottom:270.232500px;}
.y1f9{bottom:270.438000px;}
.y109{bottom:271.293000px;}
.y1ce{bottom:271.684500px;}
.y267{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y21a{bottom:273.085500px;}
.y59{bottom:275.386500px;}
.y131{bottom:276.957000px;}
.y1a6{bottom:279.187500px;}
.y233{bottom:280.633500px;}
.y164{bottom:284.049000px;}
.yc4{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1f8{bottom:286.876500px;}
.yd1{bottom:288.613500px;}
.y90{bottom:289.062000px;}
.y108{bottom:290.122500px;}
.y1cd{bottom:290.514000px;}
.y58{bottom:294.216000px;}
.y1a5{bottom:295.626000px;}
.y130{bottom:295.786500px;}
.y219{bottom:296.398500px;}
.y2b{bottom:297.166500px;}
.y232{bottom:297.894000px;}
.y163{bottom:302.878500px;}
.y1f7{bottom:303.315000px;}
.yc3{bottom:303.408000px;}
.y266{bottom:306.321000px;}
.yd0{bottom:307.443000px;}
.y8f{bottom:307.891500px;}
.y107{bottom:308.952000px;}
.y1cc{bottom:309.343500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1a4{bottom:312.064500px;}
.y57{bottom:313.045500px;}
.y12f{bottom:314.616000px;}
.y2a{bottom:315.054000px;}
.y231{bottom:315.154500px;}
.y1f6{bottom:319.753500px;}
.y162{bottom:321.706500px;}
.yc2{bottom:322.237500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y265{bottom:323.581500px;}
.ycf{bottom:326.272500px;}
.y8e{bottom:326.719500px;}
.y106{bottom:327.780000px;}
.y1cb{bottom:328.173000px;}
.y56{bottom:331.875000px;}
.y230{bottom:332.413500px;}
.y29{bottom:332.943000px;}
.y1a2{bottom:335.706000px;}
.y1f5{bottom:336.192000px;}
.y218{bottom:337.128000px;}
.y12e{bottom:337.929000px;}
.y161{bottom:340.536000px;}
.y264{bottom:340.842000px;}
.yc1{bottom:341.067000px;}
.y1a1{bottom:343.924500px;}
.y8d{bottom:345.549000px;}
.y105{bottom:346.609500px;}
.y1ca{bottom:347.002500px;}
.yf{bottom:348.133500px;}
.yce{bottom:349.584000px;}
.y22f{bottom:349.674000px;}
.y55{bottom:350.704500px;}
.y28{bottom:350.830500px;}
.y1a3{bottom:352.143000px;}
.y1f4{bottom:352.630500px;}
.y217{bottom:353.566500px;}
.y263{bottom:358.102500px;}
.y160{bottom:359.365500px;}
.yc0{bottom:359.896500px;}
.y8c{bottom:364.378500px;}
.y104{bottom:365.439000px;}
.y1c9{bottom:365.832000px;}
.y22e{bottom:366.934500px;}
.y54{bottom:369.534000px;}
.y216{bottom:370.005000px;}
.y12d{bottom:371.553000px;}
.y262{bottom:375.363000px;}
.y1f2{bottom:376.270500px;}
.y27{bottom:377.685000px;}
.y15f{bottom:378.195000px;}
.ybf{bottom:378.726000px;}
.y8b{bottom:383.208000px;}
.y1a0{bottom:383.763000px;}
.y22d{bottom:384.195000px;}
.y103{bottom:384.268500px;}
.y1f1{bottom:384.490500px;}
.y1c8{bottom:384.661500px;}
.y215{bottom:386.443500px;}
.ye{bottom:386.785499px;}
.y53{bottom:388.363500px;}
.y261{bottom:392.623500px;}
.y1f3{bottom:392.709000px;}
.y26{bottom:395.572500px;}
.y15e{bottom:397.024500px;}
.ybe{bottom:397.555500px;}
.y22c{bottom:401.455500px;}
.y8a{bottom:402.037500px;}
.y102{bottom:403.098000px;}
.y1c7{bottom:403.489500px;}
.y52{bottom:407.193000px;}
.yd{bottom:408.044999px;}
.y12c{bottom:408.315000px;}
.y260{bottom:409.884000px;}
.y213{bottom:410.083500px;}
.y25{bottom:413.460000px;}
.y15d{bottom:415.854000px;}
.ybd{bottom:416.383500px;}
.y212{bottom:418.303500px;}
.y22b{bottom:418.716000px;}
.y89{bottom:420.867000px;}
.y101{bottom:421.927500px;}
.y1c6{bottom:422.319000px;}
.y1f0{bottom:424.329000px;}
.y51{bottom:426.022500px;}
.y214{bottom:426.522000px;}
.y12b{bottom:427.144500px;}
.y24{bottom:431.349000px;}
.y15c{bottom:434.683500px;}
.ybc{bottom:435.213000px;}
.y22a{bottom:435.976500px;}
.y88{bottom:439.696500px;}
.y100{bottom:440.757000px;}
.y1c5{bottom:441.148500px;}
.y25f{bottom:444.403500px;}
.y50{bottom:444.852000px;}
.y12a{bottom:445.974000px;}
.y23{bottom:449.236500px;}
.y15b{bottom:453.513000px;}
.ybb{bottom:454.042500px;}
.y229{bottom:457.719000px;}
.y211{bottom:458.142000px;}
.y87{bottom:458.526000px;}
.yff{bottom:459.586500px;}
.y1c4{bottom:459.978000px;}
.y1ef{bottom:461.433000px;}
.y25e{bottom:461.664000px;}
.y4f{bottom:463.681500px;}
.y129{bottom:464.803500px;}
.y22{bottom:467.124000px;}
.y15a{bottom:472.342500px;}
.yba{bottom:472.872000px;}
.y86{bottom:477.355500px;}
.yfe{bottom:478.416000px;}
.y1c3{bottom:478.807500px;}
.y25d{bottom:478.924500px;}
.y1ee{bottom:480.262500px;}
.y4e{bottom:482.509500px;}
.y128{bottom:483.633000px;}
.y159{bottom:491.172000px;}
.y228{bottom:491.343000px;}
.yb9{bottom:491.701500px;}
.y210{bottom:493.651500px;}
.y85{bottom:496.185000px;}
.yfd{bottom:497.245500px;}
.y1c2{bottom:497.637000px;}
.y1ed{bottom:499.092000px;}
.y4d{bottom:501.339000px;}
.y127{bottom:502.462500px;}
.yc{bottom:502.864502px;}
.y158{bottom:510.001500px;}
.yb8{bottom:510.531000px;}
.y20f{bottom:512.481000px;}
.y25c{bottom:513.445500px;}
.y84{bottom:515.014500px;}
.y1c1{bottom:516.466500px;}
.y227{bottom:517.884000px;}
.y1ec{bottom:517.921500px;}
.y4c{bottom:520.168500px;}
.yb{bottom:520.864502px;}
.y126{bottom:521.292000px;}
.y157{bottom:528.831000px;}
.yb7{bottom:529.360500px;}
.y25b{bottom:530.706000px;}
.y20e{bottom:531.310500px;}
.y83{bottom:533.844000px;}
.y1c0{bottom:535.296000px;}
.y226{bottom:535.458000px;}
.y1eb{bottom:536.751000px;}
.ya{bottom:538.864499px;}
.y125{bottom:540.121500px;}
.yfc{bottom:542.188500px;}
.y4b{bottom:543.481500px;}
.y156{bottom:547.660500px;}
.y25a{bottom:547.966500px;}
.yb6{bottom:548.190000px;}
.y20d{bottom:550.140000px;}
.y82{bottom:552.673500px;}
.y1bf{bottom:554.125500px;}
.y19c{bottom:555.400134px;}
.y1ea{bottom:555.580500px;}
.yfb{bottom:556.386000px;}
.y9{bottom:556.864499px;}
.y124{bottom:558.951000px;}
.y225{bottom:561.999000px;}
.yf8{bottom:563.484000px;}
.y259{bottom:565.227000px;}
.y155{bottom:566.490000px;}
.yb5{bottom:567.019500px;}
.yfa{bottom:570.582000px;}
.y81{bottom:571.503000px;}
.y1be{bottom:572.955000px;}
.y1e9{bottom:574.410000px;}
.y19b{bottom:574.570899px;}
.y123{bottom:577.780500px;}
.y224{bottom:579.573000px;}
.y258{bottom:582.487500px;}
.yf9{bottom:584.779500px;}
.y154{bottom:585.319500px;}
.yb4{bottom:585.849000px;}
.y80{bottom:590.332500px;}
.y1e8{bottom:593.239500px;}
.y19a{bottom:593.830341px;}
.y20c{bottom:594.009000px;}
.y223{bottom:597.147000px;}
.y257{bottom:599.746500px;}
.y153{bottom:604.149000px;}
.yb3{bottom:604.678500px;}
.yf7{bottom:606.178500px;}
.y7f{bottom:609.162000px;}
.y20b{bottom:610.447500px;}
.y1e7{bottom:612.069000px;}
.y199{bottom:613.089783px;}
.y122{bottom:614.542500px;}
.y222{bottom:614.721000px;}
.y256{bottom:617.007000px;}
.y1bd{bottom:618.417000px;}
.y4a{bottom:618.631500px;}
.yf6{bottom:620.374500px;}
.y152{bottom:622.978500px;}
.yb2{bottom:623.508000px;}
.y20a{bottom:626.884500px;}
.y7e{bottom:627.991500px;}
.y198{bottom:632.260548px;}
.y255{bottom:634.267500px;}
.yf5{bottom:634.572000px;}
.y1bc{bottom:634.855500px;}
.y221{bottom:641.262000px;}
.yf1{bottom:641.670000px;}
.y151{bottom:641.808000px;}
.yb1{bottom:642.337500px;}
.y209{bottom:643.323000px;}
.y8{bottom:645.510000px;}
.y7d{bottom:646.821000px;}
.yf4{bottom:648.768000px;}
.y1bb{bottom:651.294000px;}
.y121{bottom:651.304500px;}
.y197{bottom:651.519990px;}
.y254{bottom:651.528000px;}
.y49{bottom:656.022000px;}
.y1e6{bottom:657.531000px;}
.y208{bottom:659.761500px;}
.y150{bottom:660.637500px;}
.yb0{bottom:661.167000px;}
.yf3{bottom:662.965500px;}
.y7c{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1ba{bottom:667.732500px;}
.y220{bottom:667.801500px;}
.y253{bottom:668.788500px;}
.y196{bottom:670.689252px;}
.y1e5{bottom:673.969500px;}
.y48{bottom:675.478500px;}
.y207{bottom:676.200000px;}
.yf2{bottom:677.161500px;}
.y14f{bottom:679.467000px;}
.yaf{bottom:679.996500px;}
.y1b9{bottom:684.171000px;}
.y7b{bottom:684.480000px;}
.y252{bottom:686.049000px;}
.y120{bottom:688.066500px;}
.y195{bottom:689.948694px;}
.y1e4{bottom:690.408000px;}
.y206{bottom:692.638500px;}
.y47{bottom:694.936500px;}
.y181{bottom:697.168500px;}
.y14e{bottom:698.296500px;}
.yf0{bottom:698.560500px;}
.yae{bottom:698.826000px;}
.y1b8{bottom:700.609500px;}
.y7a{bottom:703.309500px;}
.y1e3{bottom:706.846500px;}
.y205{bottom:709.077000px;}
.y194{bottom:709.208136px;}
.yee{bottom:712.758000px;}
.y46{bottom:714.393000px;}
.y180{bottom:715.998000px;}
.y274{bottom:716.011500px;}
.y1b7{bottom:717.048000px;}
.y14d{bottom:717.126000px;}
.yad{bottom:717.655500px;}
.y251{bottom:720.570000px;}
.y79{bottom:722.139000px;}
.y1e2{bottom:723.283500px;}
.y11f{bottom:724.828500px;}
.y6{bottom:726.298500px;}
.yef{bottom:726.954000px;}
.y193{bottom:728.378901px;}
.y203{bottom:732.717000px;}
.y273{bottom:733.272000px;}
.y1b6{bottom:733.485000px;}
.y45{bottom:733.849500px;}
.y17f{bottom:734.827500px;}
.y14c{bottom:735.955500px;}
.yac{bottom:736.485000px;}
.y250{bottom:737.829000px;}
.y1e1{bottom:739.722000px;}
.y202{bottom:740.937000px;}
.y78{bottom:740.968500px;}
.y11e{bottom:743.658000px;}
.y192{bottom:747.638343px;}
.yed{bottom:748.353000px;}
.y204{bottom:749.155500px;}
.y1b5{bottom:749.923500px;}
.y272{bottom:750.532500px;}
.y3{bottom:752.599495px;}
.y44{bottom:753.307500px;}
.y17e{bottom:753.657000px;}
.y14b{bottom:754.785000px;}
.y24f{bottom:755.089500px;}
.yab{bottom:755.314500px;}
.y1e0{bottom:756.160500px;}
.y77{bottom:759.798000px;}
.y11d{bottom:762.487500px;}
.yeb{bottom:762.550500px;}
.y1b4{bottom:766.362000px;}
.y191{bottom:766.807605px;}
.y24e{bottom:772.350000px;}
.y17d{bottom:772.486500px;}
.y1df{bottom:772.599000px;}
.y43{bottom:772.764000px;}
.y14a{bottom:773.614500px;}
.yaa{bottom:774.144000px;}
.yec{bottom:776.746500px;}
.y76{bottom:778.627500px;}
.y201{bottom:780.775500px;}
.y11c{bottom:781.317000px;}
.y1b3{bottom:782.800500px;}
.y190{bottom:786.067047px;}
.y24d{bottom:789.610500px;}
.y17c{bottom:791.316000px;}
.y42{bottom:792.220500px;}
.y149{bottom:792.444000px;}
.ya9{bottom:792.973500px;}
.y1dd{bottom:796.240500px;}
.y75{bottom:797.457000px;}
.yea{bottom:798.145500px;}
.y11b{bottom:800.146500px;}
.y1dc{bottom:804.459000px;}
.y18f{bottom:805.326489px;}
.y1b1{bottom:806.442000px;}
.y24c{bottom:806.871000px;}
.y17b{bottom:810.145500px;}
.y148{bottom:811.273500px;}
.y41{bottom:811.678500px;}
.ya8{bottom:811.803000px;}
.ye8{bottom:812.343000px;}
.y1de{bottom:812.679000px;}
.y1b0{bottom:814.660500px;}
.y74{bottom:816.286500px;}
.y11a{bottom:818.976000px;}
.y1b2{bottom:822.880500px;}
.y24b{bottom:824.131500px;}
.y18e{bottom:824.495751px;}
.ye9{bottom:826.539000px;}
.y17a{bottom:828.975000px;}
.y147{bottom:830.101500px;}
.ya7{bottom:830.632500px;}
.y40{bottom:831.135000px;}
.y73{bottom:835.114500px;}
.y119{bottom:837.805500px;}
.y24a{bottom:841.392000px;}
.y18d{bottom:843.755193px;}
.y1db{bottom:844.297500px;}
.ye7{bottom:847.939500px;}
.y146{bottom:848.931000px;}
.ya6{bottom:849.462000px;}
.y3f{bottom:850.593000px;}
.y179{bottom:852.288000px;}
.y72{bottom:853.944000px;}
.y1af{bottom:854.499000px;}
.y118{bottom:856.635000px;}
.y249{bottom:858.652500px;}
.ye6{bottom:862.135500px;}
.y18c{bottom:863.014635px;}
.y145{bottom:867.760500px;}
.ya5{bottom:868.291500px;}
.ye3{bottom:869.233500px;}
.y3e{bottom:870.049500px;}
.y178{bottom:871.117500px;}
.y71{bottom:872.773500px;}
.y117{bottom:875.464500px;}
.y248{bottom:875.913000px;}
.ye5{bottom:876.333000px;}
.y2{bottom:879.369000px;}
.y1da{bottom:881.401500px;}
.y18b{bottom:882.183897px;}
.y144{bottom:886.590000px;}
.ya4{bottom:887.121000px;}
.y3d{bottom:889.506000px;}
.y177{bottom:889.947000px;}
.ye4{bottom:890.529000px;}
.y70{bottom:891.603000px;}
.y247{bottom:893.172000px;}
.y116{bottom:894.294000px;}
.y1d9{bottom:900.231000px;}
.y18a{bottom:901.443339px;}
.y143{bottom:905.419500px;}
.ya3{bottom:905.950500px;}
.y176{bottom:908.776500px;}
.y3c{bottom:908.964000px;}
.y6f{bottom:910.432500px;}
.ye2{bottom:911.928000px;}
.y115{bottom:913.123500px;}
.y1d8{bottom:919.060500px;}
.y189{bottom:920.612601px;}
.y142{bottom:924.249000px;}
.ya2{bottom:924.778500px;}
.ye1{bottom:926.125500px;}
.y175{bottom:927.606000px;}
.y246{bottom:927.693000px;}
.y6e{bottom:929.262000px;}
.y114{bottom:931.953000px;}
.yde{bottom:933.223500px;}
.y188{bottom:939.872043px;}
.ye0{bottom:940.321500px;}
.y141{bottom:943.078500px;}
.ya1{bottom:943.608000px;}
.y245{bottom:944.953500px;}
.y174{bottom:946.435500px;}
.y3b{bottom:947.548500px;}
.y6d{bottom:948.091500px;}
.y113{bottom:950.782500px;}
.ydf{bottom:954.519000px;}
.y187{bottom:959.131485px;}
.y140{bottom:961.908000px;}
.y244{bottom:962.214000px;}
.ya0{bottom:962.437500px;}
.y1d7{bottom:964.834500px;}
.y173{bottom:965.265000px;}
.y1{bottom:966.726000px;}
.y6c{bottom:966.921000px;}
.ydd{bottom:975.918000px;}
.y186{bottom:978.302250px;}
.y243{bottom:979.474500px;}
.y13f{bottom:980.737500px;}
.y9f{bottom:981.267000px;}
.y1d6{bottom:981.586500px;}
.y6b{bottom:985.750500px;}
.y112{bottom:987.544500px;}
.y172{bottom:988.576500px;}
.y3a{bottom:996.565500px;}
.y242{bottom:996.735000px;}
.y1d5{bottom:998.025000px;}
.y13e{bottom:999.567000px;}
.y9e{bottom:1000.096500px;}
.y6a{bottom:1004.580000px;}
.ydc{bottom:1008.957000px;}
.y241{bottom:1013.995500px;}
.y1d4{bottom:1014.462000px;}
.y13d{bottom:1018.396500px;}
.y9d{bottom:1018.926000px;}
.y69{bottom:1023.409500px;}
.y111{bottom:1024.306500px;}
.y171{bottom:1030.900500px;}
.y240{bottom:1031.254500px;}
.y184{bottom:1033.022385px;}
.y39{bottom:1036.485000px;}
.y9c{bottom:1037.755500px;}
.y68{bottom:1042.239000px;}
.y183{bottom:1042.652250px;}
.ydb{bottom:1043.136000px;}
.y13c{bottom:1044.702000px;}
.y170{bottom:1047.339000px;}
.y23f{bottom:1048.515000px;}
.y9b{bottom:1056.585000px;}
.y67{bottom:1061.068500px;}
.y16f{bottom:1063.777500px;}
.y38{bottom:1064.728500px;}
.y23e{bottom:1065.775500px;}
.y13a{bottom:1068.549000px;}
.y13b{bottom:1069.026000px;}
.y1d3{bottom:1070.980500px;}
.y9a{bottom:1075.414500px;}
.y1d2{bottom:1079.199000px;}
.y66{bottom:1079.898000px;}
.y23d{bottom:1083.036000px;}
.y16e{bottom:1087.419000px;}
.y37{bottom:1092.972000px;}
.y99{bottom:1094.244000px;}
.y65{bottom:1098.727500px;}
.y23c{bottom:1100.296500px;}
.y64{bottom:1117.557000px;}
.y16d{bottom:1119.037500px;}
.y34{bottom:1136.460000px;}
.y63{bottom:1177.662000px;}
.h16{height:2.391024px;}
.h29{height:21.758318px;}
.h21{height:27.855430px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h18{height:33.299897px;}
.h14{height:34.574294px;}
.h10{height:34.813397px;}
.h1e{height:34.951465px;}
.h13{height:35.052500px;}
.h1d{height:35.255391px;}
.h19{height:38.896243px;}
.h11{height:39.165235px;}
.h1a{height:39.434227px;}
.hf{height:43.217759px;}
.h12{height:43.516637px;}
.hd{height:43.815515px;}
.h1f{height:43.886426px;}
.h20{height:44.268047px;}
.h1b{height:44.597206px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h26{height:49.499743px;}
.hb{height:50.930649px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h22{height:71.770243px;}
.h25{height:71.776243px;}
.h24{height:72.039235px;}
.h23{height:72.045235px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h28{height:81.617558px;}
.h27{height:82.373743px;}
.h17{height:88.450157px;}
.h15{height:95.043024px;}
.h4{height:119.055004px;}
.h1c{height:536.746800px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w5{width:691.880700px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x18{left:-46.149300px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xa{left:62.541000px;}
.x29{left:85.444500px;}
.x17{left:100.303800px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:131.943000px;}
.x19{left:149.420700px;}
.x4{left:203.484001px;}
.x7{left:249.591000px;}
.x16{left:258.556500px;}
.x8{left:281.479500px;}
.x11{left:293.677500px;}
.x2a{left:314.329500px;}
.x12{left:316.185000px;}
.x2b{left:317.308500px;}
.x21{left:320.526000px;}
.x2c{left:322.156500px;}
.x15{left:325.381500px;}
.x13{left:345.298500px;}
.x14{left:367.807500px;}
.x22{left:441.214500px;}
.x3{left:454.959000px;}
.x28{left:463.096500px;}
.xc{left:491.734500px;}
.xb{left:510.825000px;}
.xd{left:519.366000px;}
.x24{left:523.236000px;}
.xe{left:539.047500px;}
.x23{left:543.249000px;}
.xf{left:578.431500px;}
.x26{left:603.387000px;}
.x25{left:624.892500px;}
.x1b{left:638.176500px;}
.x1c{left:647.406000px;}
.x27{left:685.408500px;}
.x1a{left:689.416313px;}
.x1d{left:707.436000px;}
.x1e{left:716.667000px;}
.x1f{left:771.496500px;}
.x20{left:787.914000px;}
.x10{left:822.982500px;}
@media print{
.v5{vertical-align:-47.216000pt;}
.v1{vertical-align:-10.629333pt;}
.v9{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.144000pt;}
.va{vertical-align:17.360000pt;}
.v7{vertical-align:18.330667pt;}
.vb{vertical-align:28.112000pt;}
.v8{vertical-align:29.221333pt;}
.v3{vertical-align:39.290667pt;}
.v4{vertical-align:43.066667pt;}
.vc{vertical-align:45.472000pt;}
.v2{vertical-align:82.357333pt;}
.ls2a{letter-spacing:-0.144288pt;}
.ls2f{letter-spacing:-0.064128pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls2d{letter-spacing:-0.032064pt;}
.ls32{letter-spacing:-0.026720pt;}
.ls28{letter-spacing:-0.025536pt;}
.ls30{letter-spacing:-0.021376pt;}
.ls2c{letter-spacing:-0.016032pt;}
.ls2e{letter-spacing:-0.010688pt;}
.ls31{letter-spacing:-0.005344pt;}
.ls29{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000054pt;}
.ls44{letter-spacing:0.000260pt;}
.ls3c{letter-spacing:0.000387pt;}
.ls42{letter-spacing:0.000425pt;}
.ls46{letter-spacing:0.000621pt;}
.ls43{letter-spacing:0.000711pt;}
.ls4b{letter-spacing:0.000921pt;}
.ls40{letter-spacing:0.000980pt;}
.ls13{letter-spacing:0.001067pt;}
.ls1a{letter-spacing:0.001391pt;}
.ls45{letter-spacing:0.002229pt;}
.ls3b{letter-spacing:0.003154pt;}
.ls49{letter-spacing:0.003241pt;}
.ls34{letter-spacing:0.003635pt;}
.ls48{letter-spacing:0.003922pt;}
.ls17{letter-spacing:0.004345pt;}
.ls1d{letter-spacing:0.005344pt;}
.ls1f{letter-spacing:0.010688pt;}
.ls25{letter-spacing:0.016032pt;}
.ls26{letter-spacing:0.021376pt;}
.ls23{letter-spacing:0.026720pt;}
.ls22{letter-spacing:0.032064pt;}
.ls27{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.048096pt;}
.ls20{letter-spacing:0.053440pt;}
.ls21{letter-spacing:0.106880pt;}
.ls1c{letter-spacing:0.157472pt;}
.ls1e{letter-spacing:0.160320pt;}
.ls1b{letter-spacing:0.170240pt;}
.ls37{letter-spacing:0.447791pt;}
.ls12{letter-spacing:0.502349pt;}
.ls14{letter-spacing:0.507682pt;}
.ls10{letter-spacing:0.665067pt;}
.ls33{letter-spacing:1.328000pt;}
.lsc{letter-spacing:1.829348pt;}
.lsf{letter-spacing:1.834682pt;}
.lsb{letter-spacing:2.112749pt;}
.ls11{letter-spacing:7.548800pt;}
.ls3{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.995733pt;}
.ls41{letter-spacing:11.954133pt;}
.ls19{letter-spacing:11.955120pt;}
.ls3f{letter-spacing:11.959467pt;}
.ls47{letter-spacing:12.070581pt;}
.ls5{letter-spacing:12.167655pt;}
.lse{letter-spacing:12.429762pt;}
.ls36{letter-spacing:12.528078pt;}
.ls3d{letter-spacing:12.533411pt;}
.ls39{letter-spacing:12.645860pt;}
.ls38{letter-spacing:13.017797pt;}
.ls4{letter-spacing:13.177199pt;}
.ls1{letter-spacing:13.283467pt;}
.ls2{letter-spacing:13.283733pt;}
.ls6{letter-spacing:13.442868pt;}
.ls7{letter-spacing:13.488863pt;}
.ls3a{letter-spacing:13.496002pt;}
.ls3e{letter-spacing:14.983750pt;}
.ls9{letter-spacing:15.425026pt;}
.ls4a{letter-spacing:16.408869pt;}
.ls16{letter-spacing:17.853762pt;}
.ls8{letter-spacing:18.756255pt;}
.ls35{letter-spacing:22.103689pt;}
.ls15{letter-spacing:26.667733pt;}
.lsa{letter-spacing:30.781762pt;}
.wsd{word-spacing:-20.194365pt;}
.ws23{word-spacing:-13.283467pt;}
.ws80{word-spacing:-11.955200pt;}
.ws81{word-spacing:-10.810240pt;}
.ws82{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsc{word-spacing:-9.298400pt;}
.ws77{word-spacing:-2.922363pt;}
.ws3f{word-spacing:-2.444158pt;}
.wsc5{word-spacing:-2.284756pt;}
.wsd8{word-spacing:-2.231622pt;}
.wsb4{word-spacing:-2.178489pt;}
.ws74{word-spacing:-2.072221pt;}
.ws5a{word-spacing:-2.019087pt;}
.ws40{word-spacing:-1.859685pt;}
.ws3a{word-spacing:-1.753418pt;}
.ws3e{word-spacing:-1.647150pt;}
.ws3d{word-spacing:-1.594016pt;}
.ws47{word-spacing:-1.381481pt;}
.ws5f{word-spacing:-1.328347pt;}
.ws22{word-spacing:-1.275213pt;}
.ws91{word-spacing:-1.229120pt;}
.wsb5{word-spacing:-1.222079pt;}
.wsa6{word-spacing:-1.191712pt;}
.ws93{word-spacing:-1.186368pt;}
.wsa7{word-spacing:-1.170336pt;}
.ws90{word-spacing:-1.164992pt;}
.ws107{word-spacing:-1.147699pt;}
.wsb7{word-spacing:-1.115811pt;}
.wse4{word-spacing:-0.956416pt;}
.wsde{word-spacing:-0.956410pt;}
.ws8a{word-spacing:-0.929856pt;}
.ws92{word-spacing:-0.903136pt;}
.wsa1{word-spacing:-0.871072pt;}
.ws115{word-spacing:-0.860774pt;}
.ws8c{word-spacing:-0.839008pt;}
.ws29{word-spacing:-0.797008pt;}
.ws79{word-spacing:-0.743874pt;}
.ws8b{word-spacing:-0.732128pt;}
.ws10e{word-spacing:-0.717312pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws6c{word-spacing:-0.637606pt;}
.wsa2{word-spacing:-0.609216pt;}
.ws78{word-spacing:-0.584473pt;}
.wseb{word-spacing:-0.573850pt;}
.wsa0{word-spacing:-0.523712pt;}
.ws7d{word-spacing:-0.425071pt;}
.wse3{word-spacing:-0.382566pt;}
.wsdf{word-spacing:-0.371937pt;}
.ws2e{word-spacing:-0.318803pt;}
.ws9f{word-spacing:-0.283232pt;}
.wsa3{word-spacing:-0.277888pt;}
.ws31{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.246848pt;}
.ws16{word-spacing:-0.239104pt;}
.wsae{word-spacing:-0.219104pt;}
.ws3b{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.wsf8{word-spacing:-0.185475pt;}
.ws33{word-spacing:-0.159402pt;}
.ws13{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws86{word-spacing:-0.072352pt;}
.ws83{word-spacing:-0.053440pt;}
.ws24{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.051072pt;}
.ws12{word-spacing:-0.047821pt;}
.wsf4{word-spacing:-0.011793pt;}
.wsf6{word-spacing:-0.010982pt;}
.wsff{word-spacing:-0.010487pt;}
.ws103{word-spacing:-0.009975pt;}
.ws113{word-spacing:-0.009250pt;}
.ws110{word-spacing:-0.009190pt;}
.ws10a{word-spacing:-0.008269pt;}
.ws105{word-spacing:-0.007979pt;}
.ws114{word-spacing:-0.007031pt;}
.wse5{word-spacing:-0.006656pt;}
.wsee{word-spacing:-0.004301pt;}
.wsf0{word-spacing:-0.004207pt;}
.wsfe{word-spacing:-0.004002pt;}
.wsfb{word-spacing:-0.002935pt;}
.ws100{word-spacing:-0.001357pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.003199pt;}
.ws4{word-spacing:0.021749pt;}
.wsaf{word-spacing:0.032064pt;}
.wsaa{word-spacing:0.037408pt;}
.wscb{word-spacing:0.045387pt;}
.wsc9{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.wsad{word-spacing:0.085504pt;}
.ws18{word-spacing:0.095642pt;}
.ws27{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.wsf{word-spacing:0.143462pt;}
.ws7b{word-spacing:0.151298pt;}
.ws2a{word-spacing:0.159402pt;}
.wsec{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.wsc8{word-spacing:0.239104pt;}
.ws20{word-spacing:0.265669pt;}
.wsfc{word-spacing:0.286925pt;}
.ws4a{word-spacing:0.318803pt;}
.ws102{word-spacing:0.334746pt;}
.ws7a{word-spacing:0.371937pt;}
.ws15{word-spacing:0.382566pt;}
.ws108{word-spacing:0.384241pt;}
.wsab{word-spacing:0.395456pt;}
.wsac{word-spacing:0.406144pt;}
.ws2f{word-spacing:0.425071pt;}
.ws36{word-spacing:0.531339pt;}
.ws7c{word-spacing:0.551747pt;}
.wsf7{word-spacing:0.573850pt;}
.ws34{word-spacing:0.584473pt;}
.wsc4{word-spacing:0.594995pt;}
.ws98{word-spacing:0.678688pt;}
.wsdd{word-spacing:0.690740pt;}
.ws97{word-spacing:0.737472pt;}
.ws5c{word-spacing:0.743874pt;}
.wsef{word-spacing:0.765133pt;}
.ws52{word-spacing:0.797008pt;}
.ws41{word-spacing:0.850142pt;}
.ws25{word-spacing:0.903276pt;}
.wsb9{word-spacing:0.956410pt;}
.wsdc{word-spacing:1.009543pt;}
.ws9c{word-spacing:1.052768pt;}
.wsb8{word-spacing:1.062677pt;}
.wsed{word-spacing:1.099878pt;}
.ws57{word-spacing:1.115811pt;}
.wsb1{word-spacing:1.168945pt;}
.ws106{word-spacing:1.195520pt;}
.ws71{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.wsd9{word-spacing:1.275213pt;}
.ws75{word-spacing:1.328347pt;}
.ws89{word-spacing:1.357376pt;}
.ws88{word-spacing:1.362720pt;}
.wse1{word-spacing:1.381481pt;}
.ws94{word-spacing:1.432192pt;}
.ws6e{word-spacing:1.434614pt;}
.ws73{word-spacing:1.487748pt;}
.ws3c{word-spacing:1.540882pt;}
.ws72{word-spacing:1.594016pt;}
.ws10d{word-spacing:1.625907pt;}
.ws6b{word-spacing:1.647150pt;}
.wsa5{word-spacing:1.683360pt;}
.ws30{word-spacing:1.700284pt;}
.ws43{word-spacing:1.753418pt;}
.ws112{word-spacing:1.769370pt;}
.wsc6{word-spacing:1.806551pt;}
.ws48{word-spacing:1.859685pt;}
.wsba{word-spacing:1.912819pt;}
.wsf3{word-spacing:1.960653pt;}
.ws63{word-spacing:1.965953pt;}
.ws60{word-spacing:2.019087pt;}
.ws2b{word-spacing:2.072221pt;}
.ws6f{word-spacing:2.125355pt;}
.ws55{word-spacing:2.178489pt;}
.ws5d{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws111{word-spacing:2.247578pt;}
.ws3{word-spacing:2.275246pt;}
.wscc{word-spacing:2.284756pt;}
.ws9d{word-spacing:2.303264pt;}
.ws9e{word-spacing:2.319296pt;}
.ws6a{word-spacing:2.337890pt;}
.ws1c{word-spacing:2.444158pt;}
.ws1f{word-spacing:2.497292pt;}
.ws50{word-spacing:2.550426pt;}
.wse8{word-spacing:2.582323pt;}
.wse9{word-spacing:2.588019pt;}
.wsd4{word-spacing:2.603559pt;}
.wsb0{word-spacing:2.656693pt;}
.wsf9{word-spacing:2.677965pt;}
.ws109{word-spacing:2.725786pt;}
.wsfd{word-spacing:2.773606pt;}
.wsfa{word-spacing:2.860425pt;}
.ws19{word-spacing:2.861926pt;}
.ws10f{word-spacing:2.864674pt;}
.wsf2{word-spacing:2.865084pt;}
.wse2{word-spacing:2.866509pt;}
.ws101{word-spacing:2.867277pt;}
.ws56{word-spacing:2.869229pt;}
.wse6{word-spacing:2.869248pt;}
.ws5e{word-spacing:2.922363pt;}
.ws104{word-spacing:2.964890pt;}
.ws76{word-spacing:2.975497pt;}
.ws4e{word-spacing:3.028630pt;}
.wse{word-spacing:3.058009pt;}
.ws39{word-spacing:3.081764pt;}
.ws116{word-spacing:3.108352pt;}
.ws1d{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.ws51{word-spacing:3.241166pt;}
.wsb6{word-spacing:3.294300pt;}
.ws10b{word-spacing:3.299635pt;}
.ws49{word-spacing:3.347434pt;}
.ws42{word-spacing:3.400567pt;}
.wsce{word-spacing:3.453701pt;}
.ws37{word-spacing:3.506835pt;}
.ws65{word-spacing:3.559969pt;}
.wse7{word-spacing:3.586560pt;}
.ws4c{word-spacing:3.613103pt;}
.ws11{word-spacing:3.634381pt;}
.ws58{word-spacing:3.666237pt;}
.ws69{word-spacing:3.772505pt;}
.wsb2{word-spacing:3.878772pt;}
.ws68{word-spacing:3.931906pt;}
.wsdb{word-spacing:3.985040pt;}
.wsda{word-spacing:4.038174pt;}
.wsc7{word-spacing:4.091308pt;}
.wsf1{word-spacing:4.112589pt;}
.ws59{word-spacing:4.144442pt;}
.ws35{word-spacing:4.197575pt;}
.ws4b{word-spacing:4.250709pt;}
.ws67{word-spacing:4.303843pt;}
.ws10{word-spacing:4.303872pt;}
.ws10c{word-spacing:4.447334pt;}
.wsd7{word-spacing:4.516379pt;}
.ws8e{word-spacing:4.558432pt;}
.ws32{word-spacing:4.569513pt;}
.ws8d{word-spacing:4.585152pt;}
.wscd{word-spacing:4.622646pt;}
.wsd2{word-spacing:4.675780pt;}
.wsc2{word-spacing:4.782048pt;}
.ws9{word-spacing:4.872362pt;}
.ws54{word-spacing:4.994583pt;}
.wsd3{word-spacing:5.047717pt;}
.ws21{word-spacing:5.100851pt;}
.ws99{word-spacing:5.194368pt;}
.ws9a{word-spacing:5.210400pt;}
.ws44{word-spacing:5.472788pt;}
.ws38{word-spacing:5.525922pt;}
.wsf5{word-spacing:5.595034pt;}
.wsc1{word-spacing:5.685324pt;}
.ws9b{word-spacing:5.830304pt;}
.wsb3{word-spacing:5.897859pt;}
.wsa8{word-spacing:6.193696pt;}
.wsa9{word-spacing:6.204384pt;}
.ws4d{word-spacing:6.322930pt;}
.ws4f{word-spacing:7.013670pt;}
.ws64{word-spacing:7.066804pt;}
.wsa4{word-spacing:7.102176pt;}
.ws70{word-spacing:7.119938pt;}
.ws46{word-spacing:7.173072pt;}
.ws45{word-spacing:7.279340pt;}
.ws6d{word-spacing:7.332474pt;}
.wse0{word-spacing:7.438741pt;}
.ws1b{word-spacing:7.545009pt;}
.wsea{word-spacing:8.225178pt;}
.ws8f{word-spacing:8.694688pt;}
.wsc0{word-spacing:8.820222pt;}
.ws87{word-spacing:10.329312pt;}
.ws8{word-spacing:10.525789pt;}
.ws7{word-spacing:11.827565pt;}
.ws5{word-spacing:13.761632pt;}
.ws66{word-spacing:14.399278pt;}
.ws61{word-spacing:16.466956pt;}
.ws95{word-spacing:17.068736pt;}
.ws96{word-spacing:17.084768pt;}
.ws53{word-spacing:18.596853pt;}
.wsa{word-spacing:20.196125pt;}
.ws6{word-spacing:26.011518pt;}
.wsbc{word-spacing:89.203021pt;}
.wsc3{word-spacing:105.504597pt;}
.wsbf{word-spacing:148.196659pt;}
.wsbd{word-spacing:189.992038pt;}
.ws7f{word-spacing:228.679066pt;}
.ws7e{word-spacing:240.634266pt;}
.wsbb{word-spacing:354.179772pt;}
.ws62{word-spacing:367.177194pt;}
.wsd5{word-spacing:372.279535pt;}
.wscf{word-spacing:439.372117pt;}
.wsd1{word-spacing:443.102140pt;}
.wsbe{word-spacing:476.624521pt;}
.wsd0{word-spacing:478.824277pt;}
.wsd6{word-spacing:516.698351pt;}
.wsca{word-spacing:547.160201pt;}
._6{margin-left:-5.966986pt;}
._4{margin-left:-4.718299pt;}
._34{margin-left:-3.761942pt;}
._1{margin-left:-2.720142pt;}
._3{margin-left:-1.301776pt;}
._38{width:1.115072pt;}
._4a{width:3.028747pt;}
._15{width:4.277273pt;}
._11{width:10.520498pt;}
._0{width:11.530016pt;}
._10{width:12.683038pt;}
._7{width:14.032723pt;}
._f{width:15.212242pt;}
._8{width:16.269686pt;}
._a{width:17.247205pt;}
._16{width:18.357747pt;}
._b{width:19.446988pt;}
._17{width:21.253547pt;}
._2{width:22.502128pt;}
._9{width:23.394850pt;}
._1a{width:24.335372pt;}
._5{width:25.392845pt;}
._12{width:27.204540pt;}
._27{width:28.336299pt;}
._19{width:29.595564pt;}
._e{width:30.605107pt;}
._4b{width:32.247539pt;}
._3a{width:34.191639pt;}
._18{width:36.263860pt;}
._13{width:38.176679pt;}
._49{width:39.451892pt;}
._41{width:42.709006pt;}
._44{width:117.507618pt;}
._46{width:126.840951pt;}
._3c{width:160.199680pt;}
._1c{width:172.834275pt;}
._40{width:201.995059pt;}
._3f{width:213.902438pt;}
._31{width:240.634266pt;}
._2b{width:245.272883pt;}
._2e{width:252.589466pt;}
._47{width:256.654234pt;}
._2a{width:262.584013pt;}
._37{width:264.544666pt;}
._29{width:279.799501pt;}
._35{width:288.455066pt;}
._32{width:293.582506pt;}
._22{width:299.930803pt;}
._24{width:305.881811pt;}
._3d{width:350.855817pt;}
._23{width:367.177194pt;}
._1b{width:372.363072pt;}
._20{width:377.803994pt;}
._45{width:389.744741pt;}
._43{width:397.481097pt;}
._28{width:408.724378pt;}
._3e{width:412.116395pt;}
._3b{width:415.605222pt;}
._1f{width:454.981122pt;}
._48{width:461.183795pt;}
._30{width:464.673050pt;}
._26{width:488.875307pt;}
._21{width:491.282270pt;}
._1e{width:615.801806pt;}
._1d{width:619.101475pt;}
._33{width:663.991808pt;}
._2d{width:671.212749pt;}
._2f{width:699.618304pt;}
._36{width:704.304742pt;}
._2c{width:713.486336pt;}
._25{width:726.958134pt;}
._c{width:805.408914pt;}
._39{width:1871.546208pt;}
._42{width:2256.411794pt;}
._d{width:2276.315442pt;}
._14{width:2277.665127pt;}
.fs12{font-size:26.566933pt;}
.fsd{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:38.755733pt;}
.fsc{font-size:40.381867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y185{bottom:-91.678000pt;}
.y19e{bottom:-28.071096pt;}
.y0{bottom:0.000000pt;}
.y19d{bottom:1.928784pt;}
.y36{bottom:8.207950pt;}
.y35{bottom:23.914454pt;}
.y62{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y110{bottom:92.108000pt;}
.y33{bottom:93.018667pt;}
.y19f{bottom:96.573333pt;}
.y200{bottom:99.556000pt;}
.y16c{bottom:99.840000pt;}
.y1ae{bottom:101.222667pt;}
.ycd{bottom:102.322667pt;}
.y270{bottom:103.518667pt;}
.yda{bottom:105.909333pt;}
.y21f{bottom:106.308000pt;}
.y10f{bottom:108.844000pt;}
.y32{bottom:108.920000pt;}
.y61{bottom:110.889333pt;}
.y139{bottom:112.285333pt;}
.y16b{bottom:114.452000pt;}
.y1ff{bottom:116.293333pt;}
.y1ad{bottom:117.960000pt;}
.y26f{bottom:118.861333pt;}
.ycc{bottom:119.060000pt;}
.y182{bottom:119.166400pt;}
.yd9{bottom:122.646667pt;}
.y98{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y31{bottom:124.820000pt;}
.y10e{bottom:125.581333pt;}
.y23b{bottom:126.712000pt;}
.y60{bottom:127.626667pt;}
.y138{bottom:129.022667pt;}
.y16a{bottom:129.064000pt;}
.y1fe{bottom:133.030667pt;}
.y26e{bottom:134.202667pt;}
.y1ac{bottom:134.697333pt;}
.ycb{bottom:135.797333pt;}
.yd8{bottom:139.384000pt;}
.y97{bottom:139.782667pt;}
.y30{bottom:140.720000pt;}
.y23a{bottom:142.054667pt;}
.y10d{bottom:142.318667pt;}
.y169{bottom:143.676000pt;}
.y5f{bottom:144.364000pt;}
.y137{bottom:145.760000pt;}
.y26d{bottom:149.545333pt;}
.y1fd{bottom:149.768000pt;}
.yca{bottom:152.534667pt;}
.yd7{bottom:156.121333pt;}
.y96{bottom:156.520000pt;}
.y2f{bottom:156.621333pt;}
.y239{bottom:157.397333pt;}
.y168{bottom:158.288000pt;}
.y10c{bottom:159.056000pt;}
.y5e{bottom:161.101333pt;}
.y136{bottom:162.497333pt;}
.y26c{bottom:164.888000pt;}
.y1fc{bottom:166.505333pt;}
.yc9{bottom:169.272000pt;}
.y2e{bottom:172.521333pt;}
.y238{bottom:172.738667pt;}
.yd6{bottom:172.858667pt;}
.y167{bottom:172.900000pt;}
.y95{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y1ab{bottom:175.108000pt;}
.y21e{bottom:175.793333pt;}
.y5d{bottom:177.838667pt;}
.y135{bottom:179.234667pt;}
.y26b{bottom:180.230667pt;}
.y1fb{bottom:183.241333pt;}
.yc8{bottom:186.009333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y237{bottom:188.081333pt;}
.y2d{bottom:188.421333pt;}
.yd5{bottom:189.596000pt;}
.y1aa{bottom:189.720000pt;}
.y94{bottom:189.994667pt;}
.y1d1{bottom:191.285333pt;}
.y10b{bottom:191.733333pt;}
.y21d{bottom:192.530667pt;}
.y166{bottom:193.913333pt;}
.y5c{bottom:194.576000pt;}
.y26a{bottom:195.573333pt;}
.y134{bottom:195.972000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1fa{bottom:199.978667pt;}
.yc7{bottom:202.746667pt;}
.y236{bottom:203.424000pt;}
.y2c{bottom:204.322667pt;}
.y1a9{bottom:204.332000pt;}
.yd4{bottom:206.333333pt;}
.y93{bottom:206.732000pt;}
.y1d0{bottom:208.022667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y21c{bottom:209.268000pt;}
.y269{bottom:210.916000pt;}
.y5b{bottom:211.313333pt;}
.y133{bottom:212.709333pt;}
.y235{bottom:218.766667pt;}
.y1a8{bottom:218.942667pt;}
.yc6{bottom:219.484000pt;}
.y165{bottom:222.020000pt;}
.yd3{bottom:223.070667pt;}
.y92{bottom:223.469333pt;}
.y10a{bottom:224.412000pt;}
.y271{bottom:224.520000pt;}
.y1cf{bottom:224.760000pt;}
.y21b{bottom:226.005333pt;}
.y268{bottom:226.258667pt;}
.y5a{bottom:228.050667pt;}
.y132{bottom:229.446667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1a7{bottom:233.554667pt;}
.y234{bottom:234.109333pt;}
.yc5{bottom:236.221333pt;}
.yd2{bottom:239.808000pt;}
.y91{bottom:240.206667pt;}
.y1f9{bottom:240.389333pt;}
.y109{bottom:241.149333pt;}
.y1ce{bottom:241.497333pt;}
.y267{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y21a{bottom:242.742667pt;}
.y59{bottom:244.788000pt;}
.y131{bottom:246.184000pt;}
.y1a6{bottom:248.166667pt;}
.y233{bottom:249.452000pt;}
.y164{bottom:252.488000pt;}
.yc4{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1f8{bottom:255.001333pt;}
.yd1{bottom:256.545333pt;}
.y90{bottom:256.944000pt;}
.y108{bottom:257.886667pt;}
.y1cd{bottom:258.234667pt;}
.y58{bottom:261.525333pt;}
.y1a5{bottom:262.778667pt;}
.y130{bottom:262.921333pt;}
.y219{bottom:263.465333pt;}
.y2b{bottom:264.148000pt;}
.y232{bottom:264.794667pt;}
.y163{bottom:269.225333pt;}
.y1f7{bottom:269.613333pt;}
.yc3{bottom:269.696000pt;}
.y266{bottom:272.285333pt;}
.yd0{bottom:273.282667pt;}
.y8f{bottom:273.681333pt;}
.y107{bottom:274.624000pt;}
.y1cc{bottom:274.972000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1a4{bottom:277.390667pt;}
.y57{bottom:278.262667pt;}
.y12f{bottom:279.658667pt;}
.y2a{bottom:280.048000pt;}
.y231{bottom:280.137333pt;}
.y1f6{bottom:284.225333pt;}
.y162{bottom:285.961333pt;}
.yc2{bottom:286.433333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y265{bottom:287.628000pt;}
.ycf{bottom:290.020000pt;}
.y8e{bottom:290.417333pt;}
.y106{bottom:291.360000pt;}
.y1cb{bottom:291.709333pt;}
.y56{bottom:295.000000pt;}
.y230{bottom:295.478667pt;}
.y29{bottom:295.949333pt;}
.y1a2{bottom:298.405333pt;}
.y1f5{bottom:298.837333pt;}
.y218{bottom:299.669333pt;}
.y12e{bottom:300.381333pt;}
.y161{bottom:302.698667pt;}
.y264{bottom:302.970667pt;}
.yc1{bottom:303.170667pt;}
.y1a1{bottom:305.710667pt;}
.y8d{bottom:307.154667pt;}
.y105{bottom:308.097333pt;}
.y1ca{bottom:308.446667pt;}
.yf{bottom:309.452000pt;}
.yce{bottom:310.741333pt;}
.y22f{bottom:310.821333pt;}
.y55{bottom:311.737333pt;}
.y28{bottom:311.849333pt;}
.y1a3{bottom:313.016000pt;}
.y1f4{bottom:313.449333pt;}
.y217{bottom:314.281333pt;}
.y263{bottom:318.313333pt;}
.y160{bottom:319.436000pt;}
.yc0{bottom:319.908000pt;}
.y8c{bottom:323.892000pt;}
.y104{bottom:324.834667pt;}
.y1c9{bottom:325.184000pt;}
.y22e{bottom:326.164000pt;}
.y54{bottom:328.474667pt;}
.y216{bottom:328.893333pt;}
.y12d{bottom:330.269333pt;}
.y262{bottom:333.656000pt;}
.y1f2{bottom:334.462667pt;}
.y27{bottom:335.720000pt;}
.y15f{bottom:336.173333pt;}
.ybf{bottom:336.645333pt;}
.y8b{bottom:340.629333pt;}
.y1a0{bottom:341.122667pt;}
.y22d{bottom:341.506667pt;}
.y103{bottom:341.572000pt;}
.y1f1{bottom:341.769333pt;}
.y1c8{bottom:341.921333pt;}
.y215{bottom:343.505333pt;}
.ye{bottom:343.809333pt;}
.y53{bottom:345.212000pt;}
.y261{bottom:348.998667pt;}
.y1f3{bottom:349.074667pt;}
.y26{bottom:351.620000pt;}
.y15e{bottom:352.910667pt;}
.ybe{bottom:353.382667pt;}
.y22c{bottom:356.849333pt;}
.y8a{bottom:357.366667pt;}
.y102{bottom:358.309333pt;}
.y1c7{bottom:358.657333pt;}
.y52{bottom:361.949333pt;}
.yd{bottom:362.706666pt;}
.y12c{bottom:362.946667pt;}
.y260{bottom:364.341333pt;}
.y213{bottom:364.518667pt;}
.y25{bottom:367.520000pt;}
.y15d{bottom:369.648000pt;}
.ybd{bottom:370.118667pt;}
.y212{bottom:371.825333pt;}
.y22b{bottom:372.192000pt;}
.y89{bottom:374.104000pt;}
.y101{bottom:375.046667pt;}
.y1c6{bottom:375.394667pt;}
.y1f0{bottom:377.181333pt;}
.y51{bottom:378.686667pt;}
.y214{bottom:379.130667pt;}
.y12b{bottom:379.684000pt;}
.y24{bottom:383.421333pt;}
.y15c{bottom:386.385333pt;}
.ybc{bottom:386.856000pt;}
.y22a{bottom:387.534667pt;}
.y88{bottom:390.841333pt;}
.y100{bottom:391.784000pt;}
.y1c5{bottom:392.132000pt;}
.y25f{bottom:395.025333pt;}
.y50{bottom:395.424000pt;}
.y12a{bottom:396.421333pt;}
.y23{bottom:399.321333pt;}
.y15b{bottom:403.122667pt;}
.ybb{bottom:403.593333pt;}
.y229{bottom:406.861333pt;}
.y211{bottom:407.237333pt;}
.y87{bottom:407.578667pt;}
.yff{bottom:408.521333pt;}
.y1c4{bottom:408.869333pt;}
.y1ef{bottom:410.162667pt;}
.y25e{bottom:410.368000pt;}
.y4f{bottom:412.161333pt;}
.y129{bottom:413.158667pt;}
.y22{bottom:415.221333pt;}
.y15a{bottom:419.860000pt;}
.yba{bottom:420.330667pt;}
.y86{bottom:424.316000pt;}
.yfe{bottom:425.258667pt;}
.y1c3{bottom:425.606667pt;}
.y25d{bottom:425.710667pt;}
.y1ee{bottom:426.900000pt;}
.y4e{bottom:428.897333pt;}
.y128{bottom:429.896000pt;}
.y159{bottom:436.597333pt;}
.y228{bottom:436.749333pt;}
.yb9{bottom:437.068000pt;}
.y210{bottom:438.801333pt;}
.y85{bottom:441.053333pt;}
.yfd{bottom:441.996000pt;}
.y1c2{bottom:442.344000pt;}
.y1ed{bottom:443.637333pt;}
.y4d{bottom:445.634667pt;}
.y127{bottom:446.633333pt;}
.yc{bottom:446.990669pt;}
.y158{bottom:453.334667pt;}
.yb8{bottom:453.805333pt;}
.y20f{bottom:455.538667pt;}
.y25c{bottom:456.396000pt;}
.y84{bottom:457.790667pt;}
.y1c1{bottom:459.081333pt;}
.y227{bottom:460.341333pt;}
.y1ec{bottom:460.374667pt;}
.y4c{bottom:462.372000pt;}
.yb{bottom:462.990669pt;}
.y126{bottom:463.370667pt;}
.y157{bottom:470.072000pt;}
.yb7{bottom:470.542667pt;}
.y25b{bottom:471.738667pt;}
.y20e{bottom:472.276000pt;}
.y83{bottom:474.528000pt;}
.y1c0{bottom:475.818667pt;}
.y226{bottom:475.962667pt;}
.y1eb{bottom:477.112000pt;}
.ya{bottom:478.990666pt;}
.y125{bottom:480.108000pt;}
.yfc{bottom:481.945333pt;}
.y4b{bottom:483.094667pt;}
.y156{bottom:486.809333pt;}
.y25a{bottom:487.081333pt;}
.yb6{bottom:487.280000pt;}
.y20d{bottom:489.013333pt;}
.y82{bottom:491.265333pt;}
.y1bf{bottom:492.556000pt;}
.y19c{bottom:493.689008pt;}
.y1ea{bottom:493.849333pt;}
.yfb{bottom:494.565333pt;}
.y9{bottom:494.990666pt;}
.y124{bottom:496.845333pt;}
.y225{bottom:499.554667pt;}
.yf8{bottom:500.874667pt;}
.y259{bottom:502.424000pt;}
.y155{bottom:503.546667pt;}
.yb5{bottom:504.017333pt;}
.yfa{bottom:507.184000pt;}
.y81{bottom:508.002667pt;}
.y1be{bottom:509.293333pt;}
.y1e9{bottom:510.586667pt;}
.y19b{bottom:510.729688pt;}
.y123{bottom:513.582667pt;}
.y224{bottom:515.176000pt;}
.y258{bottom:517.766667pt;}
.yf9{bottom:519.804000pt;}
.y154{bottom:520.284000pt;}
.yb4{bottom:520.754667pt;}
.y80{bottom:524.740000pt;}
.y1e8{bottom:527.324000pt;}
.y19a{bottom:527.849192pt;}
.y20c{bottom:528.008000pt;}
.y223{bottom:530.797333pt;}
.y257{bottom:533.108000pt;}
.y153{bottom:537.021333pt;}
.yb3{bottom:537.492000pt;}
.yf7{bottom:538.825333pt;}
.y7f{bottom:541.477333pt;}
.y20b{bottom:542.620000pt;}
.y1e7{bottom:544.061333pt;}
.y199{bottom:544.968696pt;}
.y122{bottom:546.260000pt;}
.y222{bottom:546.418667pt;}
.y256{bottom:548.450667pt;}
.y1bd{bottom:549.704000pt;}
.y4a{bottom:549.894667pt;}
.yf6{bottom:551.444000pt;}
.y152{bottom:553.758667pt;}
.yb2{bottom:554.229333pt;}
.y20a{bottom:557.230667pt;}
.y7e{bottom:558.214667pt;}
.y198{bottom:562.009376pt;}
.y255{bottom:563.793333pt;}
.yf5{bottom:564.064000pt;}
.y1bc{bottom:564.316000pt;}
.y221{bottom:570.010667pt;}
.yf1{bottom:570.373333pt;}
.y151{bottom:570.496000pt;}
.yb1{bottom:570.966667pt;}
.y209{bottom:571.842667pt;}
.y8{bottom:573.786667pt;}
.y7d{bottom:574.952000pt;}
.yf4{bottom:576.682667pt;}
.y1bb{bottom:578.928000pt;}
.y121{bottom:578.937333pt;}
.y197{bottom:579.128880pt;}
.y254{bottom:579.136000pt;}
.y49{bottom:583.130667pt;}
.y1e6{bottom:584.472000pt;}
.y208{bottom:586.454667pt;}
.y150{bottom:587.233333pt;}
.yb0{bottom:587.704000pt;}
.yf3{bottom:589.302667pt;}
.y7c{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1ba{bottom:593.540000pt;}
.y220{bottom:593.601333pt;}
.y253{bottom:594.478667pt;}
.y196{bottom:596.168224pt;}
.y1e5{bottom:599.084000pt;}
.y48{bottom:600.425333pt;}
.y207{bottom:601.066667pt;}
.yf2{bottom:601.921333pt;}
.y14f{bottom:603.970667pt;}
.yaf{bottom:604.441333pt;}
.y1b9{bottom:608.152000pt;}
.y7b{bottom:608.426667pt;}
.y252{bottom:609.821333pt;}
.y120{bottom:611.614667pt;}
.y195{bottom:613.287728pt;}
.y1e4{bottom:613.696000pt;}
.y206{bottom:615.678667pt;}
.y47{bottom:617.721333pt;}
.y181{bottom:619.705333pt;}
.y14e{bottom:620.708000pt;}
.yf0{bottom:620.942667pt;}
.yae{bottom:621.178667pt;}
.y1b8{bottom:622.764000pt;}
.y7a{bottom:625.164000pt;}
.y1e3{bottom:628.308000pt;}
.y205{bottom:630.290667pt;}
.y194{bottom:630.407232pt;}
.yee{bottom:633.562667pt;}
.y46{bottom:635.016000pt;}
.y180{bottom:636.442667pt;}
.y274{bottom:636.454667pt;}
.y1b7{bottom:637.376000pt;}
.y14d{bottom:637.445333pt;}
.yad{bottom:637.916000pt;}
.y251{bottom:640.506667pt;}
.y79{bottom:641.901333pt;}
.y1e2{bottom:642.918667pt;}
.y11f{bottom:644.292000pt;}
.y6{bottom:645.598667pt;}
.yef{bottom:646.181333pt;}
.y193{bottom:647.447912pt;}
.y203{bottom:651.304000pt;}
.y273{bottom:651.797333pt;}
.y1b6{bottom:651.986667pt;}
.y45{bottom:652.310667pt;}
.y17f{bottom:653.180000pt;}
.y14c{bottom:654.182667pt;}
.yac{bottom:654.653333pt;}
.y250{bottom:655.848000pt;}
.y1e1{bottom:657.530667pt;}
.y202{bottom:658.610667pt;}
.y78{bottom:658.638667pt;}
.y11e{bottom:661.029333pt;}
.y192{bottom:664.567416pt;}
.yed{bottom:665.202667pt;}
.y204{bottom:665.916000pt;}
.y1b5{bottom:666.598667pt;}
.y272{bottom:667.140000pt;}
.y3{bottom:668.977329pt;}
.y44{bottom:669.606667pt;}
.y17e{bottom:669.917333pt;}
.y14b{bottom:670.920000pt;}
.y24f{bottom:671.190667pt;}
.yab{bottom:671.390667pt;}
.y1e0{bottom:672.142667pt;}
.y77{bottom:675.376000pt;}
.y11d{bottom:677.766667pt;}
.yeb{bottom:677.822667pt;}
.y1b4{bottom:681.210667pt;}
.y191{bottom:681.606760pt;}
.y24e{bottom:686.533333pt;}
.y17d{bottom:686.654667pt;}
.y1df{bottom:686.754667pt;}
.y43{bottom:686.901333pt;}
.y14a{bottom:687.657333pt;}
.yaa{bottom:688.128000pt;}
.yec{bottom:690.441333pt;}
.y76{bottom:692.113333pt;}
.y201{bottom:694.022667pt;}
.y11c{bottom:694.504000pt;}
.y1b3{bottom:695.822667pt;}
.y190{bottom:698.726264pt;}
.y24d{bottom:701.876000pt;}
.y17c{bottom:703.392000pt;}
.y42{bottom:704.196000pt;}
.y149{bottom:704.394667pt;}
.ya9{bottom:704.865333pt;}
.y1dd{bottom:707.769333pt;}
.y75{bottom:708.850667pt;}
.yea{bottom:709.462667pt;}
.y11b{bottom:711.241333pt;}
.y1dc{bottom:715.074667pt;}
.y18f{bottom:715.845768pt;}
.y1b1{bottom:716.837333pt;}
.y24c{bottom:717.218667pt;}
.y17b{bottom:720.129333pt;}
.y148{bottom:721.132000pt;}
.y41{bottom:721.492000pt;}
.ya8{bottom:721.602667pt;}
.ye8{bottom:722.082667pt;}
.y1de{bottom:722.381333pt;}
.y1b0{bottom:724.142667pt;}
.y74{bottom:725.588000pt;}
.y11a{bottom:727.978667pt;}
.y1b2{bottom:731.449333pt;}
.y24b{bottom:732.561333pt;}
.y18e{bottom:732.885112pt;}
.ye9{bottom:734.701333pt;}
.y17a{bottom:736.866667pt;}
.y147{bottom:737.868000pt;}
.ya7{bottom:738.340000pt;}
.y40{bottom:738.786667pt;}
.y73{bottom:742.324000pt;}
.y119{bottom:744.716000pt;}
.y24a{bottom:747.904000pt;}
.y18d{bottom:750.004616pt;}
.y1db{bottom:750.486667pt;}
.ye7{bottom:753.724000pt;}
.y146{bottom:754.605333pt;}
.ya6{bottom:755.077333pt;}
.y3f{bottom:756.082667pt;}
.y179{bottom:757.589333pt;}
.y72{bottom:759.061333pt;}
.y1af{bottom:759.554667pt;}
.y118{bottom:761.453333pt;}
.y249{bottom:763.246667pt;}
.ye6{bottom:766.342667pt;}
.y18c{bottom:767.124120pt;}
.y145{bottom:771.342667pt;}
.ya5{bottom:771.814667pt;}
.ye3{bottom:772.652000pt;}
.y3e{bottom:773.377333pt;}
.y178{bottom:774.326667pt;}
.y71{bottom:775.798667pt;}
.y117{bottom:778.190667pt;}
.y248{bottom:778.589333pt;}
.ye5{bottom:778.962667pt;}
.y2{bottom:781.661334pt;}
.y1da{bottom:783.468000pt;}
.y18b{bottom:784.163464pt;}
.y144{bottom:788.080000pt;}
.ya4{bottom:788.552000pt;}
.y3d{bottom:790.672000pt;}
.y177{bottom:791.064000pt;}
.ye4{bottom:791.581333pt;}
.y70{bottom:792.536000pt;}
.y247{bottom:793.930667pt;}
.y116{bottom:794.928000pt;}
.y1d9{bottom:800.205333pt;}
.y18a{bottom:801.282968pt;}
.y143{bottom:804.817333pt;}
.ya3{bottom:805.289333pt;}
.y176{bottom:807.801333pt;}
.y3c{bottom:807.968000pt;}
.y6f{bottom:809.273333pt;}
.ye2{bottom:810.602667pt;}
.y115{bottom:811.665333pt;}
.y1d8{bottom:816.942667pt;}
.y189{bottom:818.322312pt;}
.y142{bottom:821.554667pt;}
.ya2{bottom:822.025333pt;}
.ye1{bottom:823.222667pt;}
.y175{bottom:824.538667pt;}
.y246{bottom:824.616000pt;}
.y6e{bottom:826.010667pt;}
.y114{bottom:828.402667pt;}
.yde{bottom:829.532000pt;}
.y188{bottom:835.441816pt;}
.ye0{bottom:835.841333pt;}
.y141{bottom:838.292000pt;}
.ya1{bottom:838.762667pt;}
.y245{bottom:839.958667pt;}
.y174{bottom:841.276000pt;}
.y3b{bottom:842.265333pt;}
.y6d{bottom:842.748000pt;}
.y113{bottom:845.140000pt;}
.ydf{bottom:848.461333pt;}
.y187{bottom:852.561320pt;}
.y140{bottom:855.029333pt;}
.y244{bottom:855.301333pt;}
.ya0{bottom:855.500000pt;}
.y1d7{bottom:857.630667pt;}
.y173{bottom:858.013333pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:859.485333pt;}
.ydd{bottom:867.482667pt;}
.y186{bottom:869.602000pt;}
.y243{bottom:870.644000pt;}
.y13f{bottom:871.766667pt;}
.y9f{bottom:872.237333pt;}
.y1d6{bottom:872.521333pt;}
.y6b{bottom:876.222667pt;}
.y112{bottom:877.817333pt;}
.y172{bottom:878.734667pt;}
.y3a{bottom:885.836000pt;}
.y242{bottom:885.986667pt;}
.y1d5{bottom:887.133333pt;}
.y13e{bottom:888.504000pt;}
.y9e{bottom:888.974667pt;}
.y6a{bottom:892.960000pt;}
.ydc{bottom:896.850667pt;}
.y241{bottom:901.329333pt;}
.y1d4{bottom:901.744000pt;}
.y13d{bottom:905.241333pt;}
.y9d{bottom:905.712000pt;}
.y69{bottom:909.697333pt;}
.y111{bottom:910.494667pt;}
.y171{bottom:916.356000pt;}
.y240{bottom:916.670667pt;}
.y184{bottom:918.242120pt;}
.y39{bottom:921.320000pt;}
.y9c{bottom:922.449333pt;}
.y68{bottom:926.434667pt;}
.y183{bottom:926.802000pt;}
.ydb{bottom:927.232000pt;}
.y13c{bottom:928.624000pt;}
.y170{bottom:930.968000pt;}
.y23f{bottom:932.013333pt;}
.y9b{bottom:939.186667pt;}
.y67{bottom:943.172000pt;}
.y16f{bottom:945.580000pt;}
.y38{bottom:946.425333pt;}
.y23e{bottom:947.356000pt;}
.y13a{bottom:949.821333pt;}
.y13b{bottom:950.245333pt;}
.y1d3{bottom:951.982667pt;}
.y9a{bottom:955.924000pt;}
.y1d2{bottom:959.288000pt;}
.y66{bottom:959.909333pt;}
.y23d{bottom:962.698667pt;}
.y16e{bottom:966.594667pt;}
.y37{bottom:971.530667pt;}
.y99{bottom:972.661333pt;}
.y65{bottom:976.646667pt;}
.y23c{bottom:978.041333pt;}
.y64{bottom:993.384000pt;}
.y16d{bottom:994.700000pt;}
.y34{bottom:1010.186667pt;}
.y63{bottom:1046.810667pt;}
.h16{height:2.125355pt;}
.h29{height:19.340727pt;}
.h21{height:24.760382pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h18{height:29.599908pt;}
.h14{height:30.732706pt;}
.h10{height:30.945242pt;}
.h1e{height:31.067969pt;}
.h13{height:31.157778pt;}
.h1d{height:31.338125pt;}
.h19{height:34.574438pt;}
.h11{height:34.813542pt;}
.h1a{height:35.052646pt;}
.hf{height:38.415786pt;}
.h12{height:38.681455pt;}
.hd{height:38.947124pt;}
.h1f{height:39.010156pt;}
.h20{height:39.349375pt;}
.h1b{height:39.641961pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h26{height:43.999772pt;}
.hb{height:45.271688pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h22{height:63.795772pt;}
.h25{height:63.801105pt;}
.h24{height:64.034876pt;}
.h23{height:64.040209pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h28{height:72.548941pt;}
.h27{height:73.221105pt;}
.h17{height:78.622362pt;}
.h15{height:84.482688pt;}
.h4{height:105.826671pt;}
.h1c{height:477.108267pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w5{width:615.005067pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x18{left:-41.021600pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xa{left:55.592000pt;}
.x29{left:75.950667pt;}
.x17{left:89.158933pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:117.282667pt;}
.x19{left:132.818400pt;}
.x4{left:180.874667pt;}
.x7{left:221.858667pt;}
.x16{left:229.828000pt;}
.x8{left:250.204000pt;}
.x11{left:261.046667pt;}
.x2a{left:279.404000pt;}
.x12{left:281.053333pt;}
.x2b{left:282.052000pt;}
.x21{left:284.912000pt;}
.x2c{left:286.361333pt;}
.x15{left:289.228000pt;}
.x13{left:306.932000pt;}
.x14{left:326.940000pt;}
.x22{left:392.190667pt;}
.x3{left:404.408000pt;}
.x28{left:411.641333pt;}
.xc{left:437.097333pt;}
.xb{left:454.066667pt;}
.xd{left:461.658667pt;}
.x24{left:465.098667pt;}
.xe{left:479.153333pt;}
.x23{left:482.888000pt;}
.xf{left:514.161333pt;}
.x26{left:536.344000pt;}
.x25{left:555.460000pt;}
.x1b{left:567.268000pt;}
.x1c{left:575.472000pt;}
.x27{left:609.252000pt;}
.x1a{left:612.814500pt;}
.x1d{left:628.832000pt;}
.x1e{left:637.037333pt;}
.x1f{left:685.774667pt;}
.x20{left:700.368000pt;}
.x10{left:731.540000pt;}
}




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