
    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_1157bfe46a8d18775915a047.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_840893fd7f0539006a7e6859.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_6909f2bb6cab3498dc6c1031.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f67a857d5cf80c8dfb3de103.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aeb14c56ecb48ae43eacadf8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_0ffa1892d334b5699846a792.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_f84e4f37afdd43171980707e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.996094;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_b770fcb1346a79c64fb9bf4a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.004883;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_3f9e1fda3d61241d24383f45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.997559;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_464c36b11ef103e09d12a03a.woff2')format("woff");}.fff{font-family:fff;line-height:0.909180;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_f568cbc00a13174fb0d8a004.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.196000;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_17a0a9273d143208a8fef44c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m23{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);}
.m21{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);}
.m14{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);}
.mc{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);}
.m1d{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);}
.m1f{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);}
.m8{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);}
.mf{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);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m29{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.md{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);}
.m19{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);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m6{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);}
.m4{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);}
.m2a{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);}
.m7{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m3{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);}
.m25{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);}
.m20{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);}
.m1a{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);}
.m17{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.912000px;}
.v1{vertical-align:32.874000px;}
.ls2c{letter-spacing:-0.294588px;}
.ls27{letter-spacing:-0.204408px;}
.ls29{letter-spacing:-0.168336px;}
.ls2f{letter-spacing:-0.150300px;}
.ls2b{letter-spacing:-0.090180px;}
.ls24{letter-spacing:-0.086184px;}
.ls30{letter-spacing:-0.048600px;}
.ls2e{letter-spacing:-0.048096px;}
.ls2a{letter-spacing:-0.018036px;}
.ls26{letter-spacing:-0.012024px;}
.ls25{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000250px;}
.ls43{letter-spacing:0.000800px;}
.ls40{letter-spacing:0.001036px;}
.ls31{letter-spacing:0.001135px;}
.lsb{letter-spacing:0.001518px;}
.ls3b{letter-spacing:0.001701px;}
.ls7{letter-spacing:0.002016px;}
.ls4{letter-spacing:0.002360px;}
.ls8{letter-spacing:0.002589px;}
.ls45{letter-spacing:0.002841px;}
.lsa{letter-spacing:0.002982px;}
.ls35{letter-spacing:0.003070px;}
.ls3{letter-spacing:0.003494px;}
.lse{letter-spacing:0.004403px;}
.lsf{letter-spacing:0.004435px;}
.ls36{letter-spacing:0.004800px;}
.lsd{letter-spacing:0.005148px;}
.ls19{letter-spacing:0.006012px;}
.ls10{letter-spacing:0.009576px;}
.ls1b{letter-spacing:0.012024px;}
.ls22{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.018036px;}
.ls1f{letter-spacing:0.024048px;}
.ls1e{letter-spacing:0.030060px;}
.ls16{letter-spacing:0.036072px;}
.ls21{letter-spacing:0.037800px;}
.ls1c{letter-spacing:0.042084px;}
.ls17{letter-spacing:0.048096px;}
.ls15{letter-spacing:0.054108px;}
.ls23{letter-spacing:0.059400px;}
.ls14{letter-spacing:0.060120px;}
.ls20{letter-spacing:0.072144px;}
.ls1d{letter-spacing:0.078156px;}
.ls28{letter-spacing:0.084168px;}
.ls2d{letter-spacing:0.096192px;}
.ls1a{letter-spacing:0.102204px;}
.ls12{letter-spacing:0.181944px;}
.ls11{letter-spacing:0.191520px;}
.ls18{letter-spacing:0.192384px;}
.ls3e{letter-spacing:0.524565px;}
.ls3f{letter-spacing:0.530447px;}
.ls6{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls5{letter-spacing:11.960850px;}
.ls3c{letter-spacing:12.534073px;}
.ls44{letter-spacing:13.201420px;}
.ls34{letter-spacing:13.221673px;}
.ls3a{letter-spacing:13.409259px;}
.ls33{letter-spacing:13.448400px;}
.ls3d{letter-spacing:13.454400px;}
.ls41{letter-spacing:13.517234px;}
.ls37{letter-spacing:13.601967px;}
.ls32{letter-spacing:14.050400px;}
.ls9{letter-spacing:16.199188px;}
.ls42{letter-spacing:18.144518px;}
.ls39{letter-spacing:18.285694px;}
.ls38{letter-spacing:20.868047px;}
.ls1{letter-spacing:32.009510px;}
.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;}
}
.ws27{word-spacing:-17.394700px;}
.ws81{word-spacing:-15.655334px;}
.ws2a{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.915795px;}
.ws82{word-spacing:-13.449600px;}
.ws99{word-spacing:-12.161520px;}
.ws9a{word-spacing:-11.970000px;}
.ws1f{word-spacing:-11.955150px;}
.wsa{word-spacing:-4.662497px;}
.ws119{word-spacing:-4.626662px;}
.ws25{word-spacing:-4.303843px;}
.wse1{word-spacing:-4.196275px;}
.ws18{word-spacing:-4.064741px;}
.wsa6{word-spacing:-3.943872px;}
.ws89{word-spacing:-3.885414px;}
.ws29{word-spacing:-3.765863px;}
.wsa5{word-spacing:-3.565116px;}
.ws120{word-spacing:-3.496896px;}
.wsd1{word-spacing:-3.287658px;}
.ws103{word-spacing:-3.227904px;}
.ws5a{word-spacing:-3.227882px;}
.ws2d{word-spacing:-3.108331px;}
.ws97{word-spacing:-2.929004px;}
.ws26{word-spacing:-2.809453px;}
.ws35{word-spacing:-2.749678px;}
.ws8{word-spacing:-2.689902px;}
.ws1a{word-spacing:-2.630126px;}
.ws19{word-spacing:-2.570351px;}
.wscd{word-spacing:-2.510575px;}
.ws8a{word-spacing:-2.450800px;}
.ws116{word-spacing:-2.420928px;}
.wsd{word-spacing:-2.391024px;}
.ws28{word-spacing:-2.331248px;}
.wsb8{word-spacing:-2.092176px;}
.ws10b{word-spacing:-2.044339px;}
.ws3f{word-spacing:-2.032370px;}
.ws10c{word-spacing:-1.990541px;}
.wsb9{word-spacing:-1.971936px;}
.ws36{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws9f{word-spacing:-1.853044px;}
.ws8f{word-spacing:-1.613941px;}
.ws94{word-spacing:-1.434614px;}
.wsb4{word-spacing:-1.424844px;}
.ws95{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws2b{word-spacing:-1.315063px;}
.wseb{word-spacing:-1.237363px;}
.ws88{word-spacing:-1.195512px;}
.ws5f{word-spacing:-1.016185px;}
.ws8e{word-spacing:-0.956410px;}
.wsec{word-spacing:-0.914573px;}
.ws11d{word-spacing:-0.860774px;}
.ws96{word-spacing:-0.836858px;}
.ws85{word-spacing:-0.717307px;}
.wsed{word-spacing:-0.645581px;}
.ws7b{word-spacing:-0.591782px;}
.ws52{word-spacing:-0.537984px;}
.ws100{word-spacing:-0.430387px;}
.ws101{word-spacing:-0.376589px;}
.wsaa{word-spacing:-0.312624px;}
.ws6{word-spacing:-0.298878px;}
.ws51{word-spacing:-0.268992px;}
.ws1d{word-spacing:-0.239102px;}
.wsd9{word-spacing:-0.215194px;}
.ws7{word-spacing:-0.179327px;}
.ws7a{word-spacing:-0.161395px;}
.wsfa{word-spacing:-0.120760px;}
.ws10{word-spacing:-0.119551px;}
.ws63{word-spacing:-0.107597px;}
.wsa1{word-spacing:-0.095760px;}
.wsb{word-spacing:-0.059776px;}
.ws78{word-spacing:-0.053798px;}
.wsfb{word-spacing:-0.024931px;}
.wsf9{word-spacing:-0.023674px;}
.wsdb{word-spacing:-0.009302px;}
.ws108{word-spacing:-0.007152px;}
.ws57{word-spacing:-0.006106px;}
.wsab{word-spacing:-0.006012px;}
.ws115{word-spacing:-0.005645px;}
.ws4f{word-spacing:-0.005491px;}
.ws55{word-spacing:-0.003869px;}
.wsdd{word-spacing:-0.003389px;}
.ws111{word-spacing:-0.003302px;}
.ws56{word-spacing:-0.000595px;}
.ws53{word-spacing:-0.000067px;}
.ws0{word-spacing:0.000000px;}
.ws54{word-spacing:0.000643px;}
.ws4b{word-spacing:0.000941px;}
.ws4c{word-spacing:0.001421px;}
.ws50{word-spacing:0.001910px;}
.wsbc{word-spacing:0.018036px;}
.ws79{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.wsc6{word-spacing:0.066132px;}
.wsbd{word-spacing:0.090180px;}
.wsc7{word-spacing:0.102204px;}
.ws4d{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.wscc{word-spacing:0.124200px;}
.ws4e{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.wse8{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.wsc8{word-spacing:0.246492px;}
.wsdf{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.wsfd{word-spacing:0.322790px;}
.wsf{word-spacing:0.358654px;}
.wsc{word-spacing:0.418429px;}
.wsd8{word-spacing:0.430387px;}
.ws11f{word-spacing:0.484186px;}
.ws7e{word-spacing:0.537980px;}
.ws7d{word-spacing:0.597756px;}
.ws1c{word-spacing:0.657532px;}
.ws6a{word-spacing:0.717307px;}
.wsac{word-spacing:0.733464px;}
.ws112{word-spacing:0.753178px;}
.ws23{word-spacing:0.777083px;}
.ws113{word-spacing:0.806976px;}
.ws76{word-spacing:0.896634px;}
.ws6f{word-spacing:0.956410px;}
.ws11a{word-spacing:0.968371px;}
.wsd3{word-spacing:1.075961px;}
.wsea{word-spacing:1.075968px;}
.wsda{word-spacing:1.129766px;}
.wsb3{word-spacing:1.178352px;}
.ws33{word-spacing:1.195512px;}
.ws4a{word-spacing:1.255288px;}
.ws38{word-spacing:1.315063px;}
.wsad{word-spacing:1.346688px;}
.ws5d{word-spacing:1.434614px;}
.ws121{word-spacing:1.452557px;}
.ws22{word-spacing:1.613941px;}
.ws60{word-spacing:1.673717px;}
.ws11e{word-spacing:1.775347px;}
.ws2f{word-spacing:1.793268px;}
.ws117{word-spacing:1.990541px;}
.wsd4{word-spacing:2.032370px;}
.wsd0{word-spacing:2.092146px;}
.ws10e{word-spacing:2.151936px;}
.ws45{word-spacing:2.271473px;}
.wsfe{word-spacing:2.313331px;}
.ws9d{word-spacing:2.331248px;}
.wsff{word-spacing:2.367130px;}
.ws7c{word-spacing:2.510575px;}
.ws7f{word-spacing:2.570351px;}
.wscf{word-spacing:2.689902px;}
.ws58{word-spacing:2.749678px;}
.ws3a{word-spacing:2.869229px;}
.ws122{word-spacing:2.905114px;}
.wsa0{word-spacing:2.929004px;}
.ws10f{word-spacing:2.958912px;}
.ws3d{word-spacing:2.988780px;}
.ws15{word-spacing:3.048556px;}
.ws9c{word-spacing:3.120307px;}
.ws69{word-spacing:3.168107px;}
.ws83{word-spacing:3.227882px;}
.wsd5{word-spacing:3.281702px;}
.ws84{word-spacing:3.287658px;}
.ws46{word-spacing:3.347434px;}
.ws106{word-spacing:3.389299px;}
.ws9b{word-spacing:3.496896px;}
.ws70{word-spacing:3.526760px;}
.wsae{word-spacing:3.679344px;}
.wsaf{word-spacing:3.691368px;}
.ws3e{word-spacing:3.706087px;}
.ws10d{word-spacing:3.712090px;}
.wsd6{word-spacing:3.765888px;}
.wse6{word-spacing:3.819686px;}
.ws59{word-spacing:3.825638px;}
.ws2c{word-spacing:4.184292px;}
.ws9{word-spacing:4.244068px;}
.ws105{word-spacing:4.357670px;}
.ws6c{word-spacing:4.363619px;}
.wsb7{word-spacing:4.370724px;}
.ws3c{word-spacing:4.423394px;}
.ws32{word-spacing:4.483170px;}
.ws39{word-spacing:4.722272px;}
.wsbb{word-spacing:4.761504px;}
.ws1e{word-spacing:4.782060px;}
.wse7{word-spacing:4.841856px;}
.ws64{word-spacing:4.901599px;}
.ws8b{word-spacing:4.961375px;}
.ws4{word-spacing:5.021150px;}
.ws68{word-spacing:5.080926px;}
.wsba{word-spacing:5.104188px;}
.wsa8{word-spacing:5.152284px;}
.ws5b{word-spacing:5.260253px;}
.ws98{word-spacing:5.320028px;}
.wsf8{word-spacing:5.326042px;}
.wsdc{word-spacing:5.373101px;}
.wsf1{word-spacing:5.374339px;}
.ws114{word-spacing:5.375568px;}
.wsef{word-spacing:5.375578px;}
.wse0{word-spacing:5.375827px;}
.wsee{word-spacing:5.376048px;}
.ws102{word-spacing:5.376931px;}
.wsde{word-spacing:5.377402px;}
.ws104{word-spacing:5.377987px;}
.wsd7{word-spacing:5.378822px;}
.wsfc{word-spacing:5.379226px;}
.ws109{word-spacing:5.379504px;}
.ws107{word-spacing:5.379590px;}
.ws1{word-spacing:5.379840px;}
.ws118{word-spacing:5.380550px;}
.ws8c{word-spacing:5.439580px;}
.wsa7{word-spacing:5.446872px;}
.ws17{word-spacing:5.499355px;}
.ws11b{word-spacing:5.541235px;}
.ws31{word-spacing:5.559131px;}
.wsf3{word-spacing:5.595034px;}
.ws40{word-spacing:5.618906px;}
.ws90{word-spacing:5.678682px;}
.wsf0{word-spacing:5.702630px;}
.ws9e{word-spacing:5.738458px;}
.wse9{word-spacing:5.756429px;}
.wse5{word-spacing:5.810227px;}
.wsc0{word-spacing:5.825628px;}
.wse2{word-spacing:5.864026px;}
.wse{word-spacing:5.977560px;}
.ws47{word-spacing:6.097111px;}
.wsbf{word-spacing:6.150276px;}
.ws41{word-spacing:6.216662px;}
.ws80{word-spacing:6.515540px;}
.wsc9{word-spacing:6.631200px;}
.wsca{word-spacing:6.652800px;}
.ws12{word-spacing:6.694867px;}
.wscb{word-spacing:6.717600px;}
.ws6b{word-spacing:6.933970px;}
.ws5c{word-spacing:6.993745px;}
.ws91{word-spacing:7.053521px;}
.ws92{word-spacing:7.113296px;}
.ws71{word-spacing:7.292623px;}
.wse4{word-spacing:7.424179px;}
.ws87{word-spacing:7.531726px;}
.ws42{word-spacing:7.651277px;}
.ws43{word-spacing:7.711052px;}
.ws6d{word-spacing:8.069706px;}
.ws13{word-spacing:8.129482px;}
.ws65{word-spacing:8.189257px;}
.wsc3{word-spacing:8.308584px;}
.wsc5{word-spacing:8.392752px;}
.ws86{word-spacing:8.547911px;}
.ws14{word-spacing:8.607686px;}
.wsf4{word-spacing:8.607744px;}
.ws8d{word-spacing:8.787013px;}
.wsc4{word-spacing:8.789544px;}
.ws48{word-spacing:8.846789px;}
.wsa2{word-spacing:9.097200px;}
.ws2e{word-spacing:9.205442px;}
.wsd2{word-spacing:9.324994px;}
.ws67{word-spacing:9.444545px;}
.ws5{word-spacing:9.504320px;}
.ws16{word-spacing:9.564096px;}
.ws44{word-spacing:9.683647px;}
.ws11c{word-spacing:9.683712px;}
.wsa4{word-spacing:9.799560px;}
.wsa3{word-spacing:9.823608px;}
.ws3b{word-spacing:9.922750px;}
.ws93{word-spacing:10.042301px;}
.ws49{word-spacing:10.400954px;}
.ws66{word-spacing:11.058486px;}
.ws74{word-spacing:11.955120px;}
.wsb5{word-spacing:11.999952px;}
.wsb6{word-spacing:12.005964px;}
.ws75{word-spacing:12.253998px;}
.wsf5{word-spacing:13.073011px;}
.ws37{word-spacing:13.210408px;}
.wsce{word-spacing:13.449510px;}
.ws110{word-spacing:14.686963px;}
.ws6e{word-spacing:15.422105px;}
.wsc1{word-spacing:15.865668px;}
.wsc2{word-spacing:15.895728px;}
.ws5e{word-spacing:15.900310px;}
.wsbe{word-spacing:15.919776px;}
.ws72{word-spacing:16.557841px;}
.ws73{word-spacing:17.992456px;}
.wsa9{word-spacing:20.585088px;}
.wsb0{word-spacing:22.683276px;}
.wsb1{word-spacing:22.773456px;}
.wse3{word-spacing:23.456102px;}
.wsf2{word-spacing:24.801062px;}
.wsb2{word-spacing:31.027932px;}
.wsf7{word-spacing:35.775936px;}
.wsf6{word-spacing:35.829734px;}
.ws10a{word-spacing:48.392400px;}
.ws61{word-spacing:194.823600px;}
.ws21{word-spacing:400.019319px;}
.ws77{word-spacing:840.438605px;}
.ws62{word-spacing:1552.746547px;}
._3d{margin-left:-20.981376px;}
._36{margin-left:-9.843233px;}
._a{margin-left:-6.575316px;}
._4{margin-left:-5.003251px;}
._1{margin-left:-3.489596px;}
._6{margin-left:-2.412897px;}
._0{margin-left:-1.241054px;}
._2{width:1.431164px;}
._3c{width:3.066509px;}
._38{width:6.520553px;}
._3a{width:9.609638px;}
._42{width:10.932986px;}
._12{width:11.940887px;}
._39{width:13.241717px;}
._d{width:14.272135px;}
._18{width:15.706750px;}
._3b{width:17.394700px;}
._5{width:18.829440px;}
._13{width:19.831266px;}
._7{width:21.280114px;}
._b{width:23.021246px;}
._15{width:24.374212px;}
._17{width:25.569724px;}
._8{width:26.899020px;}
._41{width:28.264084px;}
._19{width:29.275811px;}
._11{width:30.485556px;}
._30{width:31.621292px;}
._16{width:33.892765px;}
._1b{width:35.791351px;}
._3{width:37.658880px;}
._34{width:38.660580px;}
._c{width:39.876918px;}
._e{width:41.544042px;}
._2b{width:43.277534px;}
._1c{width:44.413271px;}
._f{width:45.728334px;}
._10{width:46.991262px;}
._9{width:49.972402px;}
._1a{width:51.351214px;}
._1d{width:52.542752px;}
._2a{width:54.515347px;}
._2d{width:57.191016px;}
._40{width:61.868160px;}
._2c{width:75.556358px;}
._3e{width:93.609216px;}
._3f{width:126.916119px;}
._21{width:173.008354px;}
._23{width:208.253606px;}
._20{width:218.790793px;}
._29{width:363.479117px;}
._24{width:445.665946px;}
._2f{width:486.663422px;}
._1f{width:487.951488px;}
._1e{width:503.169135px;}
._22{width:566.568077px;}
._32{width:642.740611px;}
._25{width:710.690390px;}
._31{width:799.877707px;}
._2e{width:855.394560px;}
._33{width:994.695744px;}
._27{width:1026.914986px;}
._26{width:1087.820774px;}
._28{width:1101.862157px;}
._37{width:1459.688832px;}
._35{width:1474.086370px;}
._14{width:1497.996670px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:29.887800px;}
.fs6{font-size:38.962980px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:44.529120px;}
.fsb{font-size:47.236800px;}
.fsd{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs5{font-size:55.661400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.y1c7{bottom:-43.846500px;}
.y1c6{bottom:-24.316050px;}
.y0{bottom:0.000000px;}
.y1c5{bottom:1.243950px;}
.y31{bottom:3.425340px;}
.y25{bottom:12.664592px;}
.y30{bottom:14.151273px;}
.y24{bottom:26.023328px;}
.y6{bottom:35.925007px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y1ab{bottom:108.649500px;}
.y220{bottom:108.957000px;}
.y1ec{bottom:109.494000px;}
.y11d{bottom:112.302000px;}
.y51{bottom:117.892500px;}
.y1dc{bottom:122.137500px;}
.y13e{bottom:122.748000px;}
.y82{bottom:123.033000px;}
.yeb{bottom:125.836500px;}
.y21f{bottom:128.325000px;}
.y1eb{bottom:128.860500px;}
.y1aa{bottom:128.913000px;}
.y11c{bottom:132.565500px;}
.y50{bottom:138.156000px;}
.y22{bottom:139.264499px;}
.y1db{bottom:142.401000px;}
.y13d{bottom:143.011500px;}
.yea{bottom:146.101500px;}
.y21e{bottom:147.691500px;}
.y1ea{bottom:148.228500px;}
.y1a9{bottom:149.178000px;}
.y11b{bottom:152.830500px;}
.y81{bottom:155.251500px;}
.y4f{bottom:158.419500px;}
.ye9{bottom:166.365000px;}
.y21d{bottom:167.059500px;}
.y1e9{bottom:167.596500px;}
.y1a8{bottom:169.441500px;}
.y1da{bottom:171.631500px;}
.y11a{bottom:173.094000px;}
.y4e{bottom:178.684500px;}
.y21c{bottom:186.427500px;}
.ye8{bottom:186.630000px;}
.y1e8{bottom:186.963000px;}
.y80{bottom:187.471500px;}
.y1a7{bottom:189.705000px;}
.y13c{bottom:189.909000px;}
.y119{bottom:193.357500px;}
.y19{bottom:196.933500px;}
.y4d{bottom:198.948000px;}
.y21b{bottom:205.794000px;}
.y1e7{bottom:206.331000px;}
.y13b{bottom:206.347500px;}
.y1d9{bottom:206.451000px;}
.ye7{bottom:206.893500px;}
.y7f{bottom:207.735000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1a6{bottom:209.970000px;}
.y118{bottom:213.622500px;}
.y4c{bottom:219.213000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y21a{bottom:225.162000px;}
.y1e6{bottom:225.697500px;}
.y1d8{bottom:226.716000px;}
.ye6{bottom:227.157000px;}
.yab{bottom:227.998500px;}
.y7e{bottom:229.494000px;}
.y13a{bottom:229.987500px;}
.y1a5{bottom:230.233500px;}
.y117{bottom:233.886000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y4b{bottom:239.476500px;}
.y219{bottom:244.528500px;}
.y1e5{bottom:245.065500px;}
.y139{bottom:246.426000px;}
.y1d7{bottom:246.979500px;}
.ye5{bottom:247.422000px;}
.yaa{bottom:248.263500px;}
.y7d{bottom:249.757500px;}
.y1a4{bottom:250.497000px;}
.y116{bottom:254.151000px;}
.y18a{bottom:257.581500px;}
.y4a{bottom:259.740000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y160{bottom:259.966500px;}
.y138{bottom:262.864500px;}
.y218{bottom:263.896500px;}
.y1e4{bottom:264.433500px;}
.y1d6{bottom:267.244500px;}
.ye4{bottom:267.685500px;}
.ya9{bottom:268.527000px;}
.y1a3{bottom:270.762000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y115{bottom:274.414500px;}
.y189{bottom:277.845000px;}
.y49{bottom:280.005000px;}
.y15f{bottom:280.230000px;}
.y7c{bottom:281.977500px;}
.y217{bottom:283.264500px;}
.y1e3{bottom:283.800000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y137{bottom:286.506000px;}
.y1d5{bottom:287.508000px;}
.ye3{bottom:287.950500px;}
.ya8{bottom:288.792000px;}
.y1a2{bottom:291.025500px;}
.y114{bottom:294.678000px;}
.y188{bottom:298.110000px;}
.y12e{bottom:299.922000px;}
.y48{bottom:300.268500px;}
.y15e{bottom:300.493500px;}
.y7b{bottom:302.241000px;}
.y216{bottom:302.631000px;}
.y136{bottom:302.943000px;}
.y1e2{bottom:303.168000px;}
.y1d4{bottom:307.771500px;}
.ye2{bottom:308.214000px;}
.ya7{bottom:309.055500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1a1{bottom:311.290500px;}
.y113{bottom:314.943000px;}
.y187{bottom:318.373500px;}
.y135{bottom:319.381500px;}
.y47{bottom:320.533500px;}
.y15d{bottom:320.758500px;}
.y215{bottom:321.999000px;}
.y7a{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1d3{bottom:328.036500px;}
.ye1{bottom:328.477500px;}
.ya6{bottom:329.319000px;}
.y1e1{bottom:331.501500px;}
.y1a0{bottom:331.554000px;}
.y112{bottom:335.206500px;}
.y186{bottom:338.637000px;}
.y46{bottom:340.797000px;}
.y15c{bottom:341.022000px;}
.y214{bottom:341.367000px;}
.y79{bottom:342.769500px;}
.y134{bottom:343.023000px;}
.y10{bottom:348.133500px;}
.y1d2{bottom:348.300000px;}
.ye0{bottom:348.742500px;}
.ya5{bottom:349.584000px;}
.y19f{bottom:351.817500px;}
.y111{bottom:355.471500px;}
.y185{bottom:358.902000px;}
.y133{bottom:359.461500px;}
.y213{bottom:360.733500px;}
.y45{bottom:361.060500px;}
.y15b{bottom:361.285500px;}
.y78{bottom:363.033000px;}
.y1d1{bottom:368.565000px;}
.ydf{bottom:369.006000px;}
.ya4{bottom:369.847500px;}
.y1e0{bottom:370.953000px;}
.y19e{bottom:372.082500px;}
.y110{bottom:375.735000px;}
.y132{bottom:375.900000px;}
.y184{bottom:379.165500px;}
.y212{bottom:380.101500px;}
.y44{bottom:381.325500px;}
.y15a{bottom:381.550500px;}
.y77{bottom:383.298000px;}
.yf{bottom:386.785499px;}
.y1d0{bottom:388.828500px;}
.yde{bottom:389.271000px;}
.ya3{bottom:390.112500px;}
.y1df{bottom:395.118000px;}
.y10f{bottom:395.998500px;}
.y183{bottom:399.430500px;}
.y211{bottom:399.468000px;}
.y131{bottom:399.540000px;}
.y19d{bottom:401.313000px;}
.y43{bottom:401.589000px;}
.y159{bottom:401.814000px;}
.y76{bottom:403.561500px;}
.ye{bottom:408.044999px;}
.y1cf{bottom:409.092000px;}
.ya2{bottom:410.376000px;}
.y130{bottom:415.978500px;}
.y10e{bottom:416.263500px;}
.y210{bottom:418.836000px;}
.y1de{bottom:419.283000px;}
.y182{bottom:419.694000px;}
.y42{bottom:421.852500px;}
.y158{bottom:422.079000px;}
.y1ce{bottom:429.357000px;}
.ya1{bottom:430.639500px;}
.y12f{bottom:432.417000px;}
.y75{bottom:432.792000px;}
.y1dd{bottom:434.481000px;}
.y19c{bottom:436.132500px;}
.ydb{bottom:436.167000px;}
.y20f{bottom:438.204000px;}
.y181{bottom:439.957500px;}
.y1cd{bottom:449.620500px;}
.ya0{bottom:450.904500px;}
.y41{bottom:451.083000px;}
.yda{bottom:452.605500px;}
.y19b{bottom:456.396000px;}
.y12d{bottom:456.415500px;}
.y20e{bottom:457.570500px;}
.y180{bottom:460.222500px;}
.ydd{bottom:460.824000px;}
.y10d{bottom:463.159500px;}
.y74{bottom:467.611500px;}
.y157{bottom:468.975000px;}
.yd7{bottom:469.044000px;}
.y1cc{bottom:469.885500px;}
.y9f{bottom:471.168000px;}
.y10c{bottom:471.379500px;}
.y19a{bottom:476.661000px;}
.y20d{bottom:476.938500px;}
.ydc{bottom:477.262500px;}
.y17f{bottom:480.486000px;}
.y156{bottom:485.413500px;}
.yd9{bottom:485.482500px;}
.y1c4{bottom:487.153950px;}
.y73{bottom:487.875000px;}
.y12c{bottom:488.034000px;}
.y1cb{bottom:490.149000px;}
.y9e{bottom:491.433000px;}
.y10b{bottom:496.036500px;}
.y20c{bottom:496.305000px;}
.y199{bottom:496.924500px;}
.y17e{bottom:500.751000px;}
.y155{bottom:501.852000px;}
.yd8{bottom:501.921000px;}
.yd{bottom:502.864502px;}
.y1c3{bottom:507.404193px;}
.y72{bottom:508.140000px;}
.y1ca{bottom:510.412500px;}
.y9d{bottom:511.696500px;}
.y109{bottom:512.475000px;}
.y20b{bottom:515.673000px;}
.y198{bottom:517.188000px;}
.yc{bottom:520.864502px;}
.y17d{bottom:521.014500px;}
.y225{bottom:521.611500px;}
.y12b{bottom:525.145500px;}
.y154{bottom:525.492000px;}
.yd4{bottom:525.561000px;}
.y40{bottom:527.499000px;}
.y1c2{bottom:527.654112px;}
.y71{bottom:528.403500px;}
.y10a{bottom:528.913500px;}
.y9c{bottom:531.960000px;}
.y20a{bottom:535.041000px;}
.y197{bottom:537.453000px;}
.yb{bottom:538.864499px;}
.y224{bottom:540.979500px;}
.y17c{bottom:541.278000px;}
.y153{bottom:541.930500px;}
.yd3{bottom:541.999500px;}
.y108{bottom:545.352000px;}
.y12a{bottom:545.410500px;}
.y1c9{bottom:545.413500px;}
.y3f{bottom:547.764000px;}
.y1c1{bottom:547.904031px;}
.y70{bottom:548.667000px;}
.yd6{bottom:550.219500px;}
.y9b{bottom:552.225000px;}
.y107{bottom:553.570500px;}
.y209{bottom:554.407500px;}
.ya{bottom:556.864499px;}
.y196{bottom:557.716500px;}
.y152{bottom:558.369000px;}
.yd0{bottom:558.438000px;}
.y223{bottom:560.346000px;}
.y17b{bottom:561.543000px;}
.y1c8{bottom:564.646500px;}
.y129{bottom:565.674000px;}
.yd5{bottom:566.656500px;}
.y1c0{bottom:568.153950px;}
.y6f{bottom:568.932000px;}
.y9a{bottom:572.488500px;}
.y208{bottom:573.775500px;}
.yd2{bottom:574.876500px;}
.y195{bottom:577.981500px;}
.y106{bottom:578.229000px;}
.y17a{bottom:581.806500px;}
.y151{bottom:582.010500px;}
.y128{bottom:585.939000px;}
.y3e{bottom:585.960000px;}
.y1ac{bottom:587.076000px;}
.y1bf{bottom:588.403950px;}
.y6e{bottom:589.195500px;}
.yd1{bottom:591.315000px;}
.y99{bottom:592.753500px;}
.y207{bottom:593.142000px;}
.y104{bottom:594.666000px;}
.y194{bottom:598.245000px;}
.y150{bottom:598.449000px;}
.y179{bottom:602.071500px;}
.y127{bottom:606.202500px;}
.y3d{bottom:606.225000px;}
.y1be{bottom:608.655237px;}
.y6d{bottom:609.460500px;}
.y105{bottom:611.104500px;}
.y206{bottom:612.510000px;}
.y98{bottom:613.017000px;}
.y14f{bottom:614.887500px;}
.ycd{bottom:614.955000px;}
.y193{bottom:618.508500px;}
.y178{bottom:622.335000px;}
.ycf{bottom:623.175000px;}
.y126{bottom:626.466000px;}
.y3c{bottom:626.488500px;}
.y103{bottom:627.543000px;}
.y1bd{bottom:628.814976px;}
.y6c{bottom:629.724000px;}
.ycc{bottom:631.393500px;}
.y205{bottom:631.878000px;}
.y97{bottom:633.280500px;}
.y101{bottom:635.763000px;}
.y14d{bottom:638.527500px;}
.y192{bottom:638.773500px;}
.yc9{bottom:639.613500px;}
.y177{bottom:642.598500px;}
.y102{bottom:643.981500px;}
.y9{bottom:645.510000px;}
.y125{bottom:646.731000px;}
.y3b{bottom:646.753500px;}
.ycb{bottom:647.832000px;}
.y1bc{bottom:649.064895px;}
.y6b{bottom:649.987500px;}
.y204{bottom:651.244500px;}
.y96{bottom:653.545500px;}
.y14c{bottom:654.966000px;}
.yce{bottom:656.052000px;}
.y191{bottom:659.037000px;}
.y100{bottom:660.420000px;}
.y176{bottom:662.863500px;}
.y14e{bottom:663.184500px;}
.yca{bottom:664.270500px;}
.y8{bottom:666.771000px;}
.y124{bottom:666.994500px;}
.y3a{bottom:667.017000px;}
.y141{bottom:667.365000px;}
.yff{bottom:668.640000px;}
.y1bb{bottom:669.314814px;}
.y6a{bottom:670.252500px;}
.y203{bottom:670.612500px;}
.y14b{bottom:671.404500px;}
.y95{bottom:673.809000px;}
.y190{bottom:679.302000px;}
.y175{bottom:683.127000px;}
.y123{bottom:687.258000px;}
.y39{bottom:687.280500px;}
.y14a{bottom:687.843000px;}
.yc6{bottom:687.910500px;}
.y1ba{bottom:689.564733px;}
.y202{bottom:689.979000px;}
.y69{bottom:690.516000px;}
.yfe{bottom:693.297000px;}
.y94{bottom:694.074000px;}
.yc8{bottom:696.130500px;}
.y18f{bottom:699.565500px;}
.yfd{bottom:701.515500px;}
.yc5{bottom:704.349000px;}
.y122{bottom:707.523000px;}
.y38{bottom:707.545500px;}
.y201{bottom:709.347000px;}
.y1b9{bottom:709.814652px;}
.y68{bottom:710.781000px;}
.y149{bottom:711.483000px;}
.yc2{bottom:712.569000px;}
.y93{bottom:714.337500px;}
.yc4{bottom:720.787500px;}
.y7{bottom:726.298500px;}
.yfc{bottom:726.531000px;}
.y222{bottom:726.759000px;}
.y121{bottom:727.786500px;}
.y37{bottom:727.809000px;}
.y148{bottom:727.921500px;}
.y200{bottom:728.715000px;}
.yc7{bottom:729.007500px;}
.y173{bottom:730.024500px;}
.y1b8{bottom:730.064571px;}
.y67{bottom:731.044500px;}
.y92{bottom:734.601000px;}
.yc3{bottom:737.226000px;}
.yfb{bottom:742.969500px;}
.y172{bottom:746.461500px;}
.y120{bottom:748.051500px;}
.y36{bottom:748.074000px;}
.y1ff{bottom:748.081500px;}
.y1b7{bottom:750.314490px;}
.y66{bottom:751.308000px;}
.y147{bottom:751.563000px;}
.y3{bottom:752.599495px;}
.y174{bottom:754.681500px;}
.y91{bottom:754.866000px;}
.yf9{bottom:759.408000px;}
.yc1{bottom:760.867500px;}
.y171{bottom:762.900000px;}
.y1fe{bottom:767.449500px;}
.y146{bottom:768.000000px;}
.y11f{bottom:768.315000px;}
.y35{bottom:768.337500px;}
.y1b6{bottom:770.474229px;}
.y65{bottom:771.573000px;}
.y90{bottom:775.129500px;}
.yfa{bottom:775.845000px;}
.yc0{bottom:777.306000px;}
.y170{bottom:779.338500px;}
.y145{bottom:784.438500px;}
.y1fd{bottom:786.816000px;}
.y34{bottom:788.601000px;}
.y1b5{bottom:790.724148px;}
.y64{bottom:791.836500px;}
.yf8{bottom:792.283500px;}
.ybd{bottom:793.743000px;}
.y11e{bottom:797.545500px;}
.yf7{bottom:800.503500px;}
.y16f{bottom:802.980000px;}
.y8f{bottom:804.360000px;}
.y1fc{bottom:806.184000px;}
.y144{bottom:808.080000px;}
.y33{bottom:808.866000px;}
.ybf{bottom:810.181500px;}
.y1b4{bottom:810.974067px;}
.y63{bottom:812.101500px;}
.y16e{bottom:819.418500px;}
.y221{bottom:823.596000px;}
.y143{bottom:824.518500px;}
.yf6{bottom:825.160500px;}
.y1fb{bottom:825.552000px;}
.ybe{bottom:826.620000px;}
.y18e{bottom:827.637000px;}
.y32{bottom:829.129500px;}
.y62{bottom:832.365000px;}
.yf5{bottom:833.380500px;}
.y16d{bottom:835.857000px;}
.y8e{bottom:839.179500px;}
.y1b3{bottom:840.223950px;}
.y142{bottom:840.957000px;}
.y1fa{bottom:844.918500px;}
.ybc{bottom:850.261500px;}
.y18d{bottom:852.294000px;}
.y61{bottom:852.628500px;}
.y8d{bottom:859.443000px;}
.y16c{bottom:859.497000px;}
.y1f9{bottom:864.286500px;}
.y2f{bottom:864.562464px;}
.y140{bottom:864.954000px;}
.y2e{bottom:865.329000px;}
.yf4{bottom:865.597500px;}
.ybb{bottom:866.700000px;}
.y60{bottom:872.893500px;}
.yb8{bottom:874.918500px;}
.y16b{bottom:875.935500px;}
.y1b2{bottom:878.473950px;}
.y2{bottom:879.369000px;}
.y8c{bottom:879.708000px;}
.yba{bottom:883.138500px;}
.y1f8{bottom:883.653000px;}
.y16a{bottom:892.374000px;}
.y5f{bottom:893.157000px;}
.y13f{bottom:896.574000px;}
.yf3{bottom:897.216000px;}
.y1b1{bottom:898.724031px;}
.yb9{bottom:899.575500px;}
.y8b{bottom:899.971500px;}
.y1f7{bottom:903.021000px;}
.y2d{bottom:904.335000px;}
.y18c{bottom:908.812500px;}
.y163{bottom:912.813000px;}
.y5e{bottom:913.422000px;}
.y168{bottom:916.014000px;}
.y1b0{bottom:918.973950px;}
.y8a{bottom:920.236500px;}
.y1f6{bottom:922.389000px;}
.y2c{bottom:922.491000px;}
.y18b{bottom:922.747500px;}
.yb7{bottom:923.217000px;}
.y162{bottom:929.251500px;}
.yf2{bottom:930.427500px;}
.y167{bottom:932.452500px;}
.y5d{bottom:933.685500px;}
.y1af{bottom:939.133950px;}
.yb6{bottom:939.655500px;}
.y89{bottom:940.500000px;}
.y2b{bottom:940.648500px;}
.y169{bottom:940.672500px;}
.y1f5{bottom:941.755500px;}
.y161{bottom:945.690000px;}
.y166{bottom:948.891000px;}
.yf1{bottom:950.692500px;}
.y5c{bottom:953.949000px;}
.yb5{bottom:956.094000px;}
.y1ae{bottom:959.383950px;}
.y88{bottom:960.763500px;}
.y1f4{bottom:961.123500px;}
.yb1{bottom:964.312500px;}
.y165{bottom:965.329500px;}
.y1{bottom:966.726000px;}
.y2a{bottom:967.771500px;}
.yf0{bottom:970.956000px;}
.yb4{bottom:972.532500px;}
.y5b{bottom:974.214000px;}
.y1f3{bottom:980.490000px;}
.y87{bottom:981.028500px;}
.yb3{bottom:988.971000px;}
.yef{bottom:991.219500px;}
.y5a{bottom:994.477500px;}
.y1ad{bottom:996.733950px;}
.y1f2{bottom:999.858000px;}
.y86{bottom:1001.292000px;}
.yb2{bottom:1005.408000px;}
.y29{bottom:1010.451000px;}
.yee{bottom:1011.484500px;}
.y59{bottom:1014.742500px;}
.y1f1{bottom:1019.226000px;}
.y85{bottom:1021.557000px;}
.y164{bottom:1021.846500px;}
.yb0{bottom:1029.049500px;}
.yed{bottom:1031.748000px;}
.y58{bottom:1035.006000px;}
.y1f0{bottom:1038.592500px;}
.y28{bottom:1040.848500px;}
.yae{bottom:1045.488000px;}
.y84{bottom:1053.775500px;}
.y57{bottom:1055.269500px;}
.y1ef{bottom:1057.960500px;}
.yec{bottom:1060.978500px;}
.yaf{bottom:1061.926500px;}
.y27{bottom:1071.244500px;}
.y83{bottom:1074.040500px;}
.y56{bottom:1075.534500px;}
.y1ee{bottom:1077.327000px;}
.yad{bottom:1085.923500px;}
.y55{bottom:1095.798000px;}
.y1ed{bottom:1096.695000px;}
.y26{bottom:1100.145000px;}
.y54{bottom:1116.063000px;}
.yac{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h23{height:21.758318px;}
.h10{height:25.508090px;}
.hb{height:30.190743px;}
.h7{height:32.130000px;}
.h12{height:33.112997px;}
.h11{height:34.199443px;}
.h19{height:34.834570px;}
.h14{height:35.100320px;}
.ha{height:37.738429px;}
.h24{height:37.927872px;}
.h15{height:38.896243px;}
.h1f{height:39.076172px;}
.hf{height:39.165235px;}
.h1e{height:39.287109px;}
.h21{height:39.488026px;}
.he{height:43.217759px;}
.h1a{height:43.504805px;}
.h13{height:43.516637px;}
.h1b{height:43.739648px;}
.hc{height:43.875290px;}
.h6{height:45.900000px;}
.h1c{height:46.645840px;}
.h3{height:48.195000px;}
.h20{height:49.117939px;}
.h9{height:51.022950px;}
.h22{height:52.077235px;}
.h1d{height:52.101562px;}
.h2{height:55.080000px;}
.h16{height:72.039235px;}
.h17{height:72.045235px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h18{height:464.811000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:233.211061px;}
.w6{width:493.953000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xc0{left:-88.663500px;}
.xc1{left:-56.803606px;}
.x0{left:0.000000px;}
.xa{left:29.274117px;}
.x6{left:56.951817px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:114.802500px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.x9a{left:127.092000px;}
.xab{left:132.499500px;}
.xb4{left:138.490500px;}
.x48{left:140.508000px;}
.xd{left:146.692500px;}
.x2a{left:149.397000px;}
.xb2{left:154.573500px;}
.x66{left:158.026500px;}
.xaa{left:159.283500px;}
.xa9{left:165.316500px;}
.x40{left:166.458000px;}
.x41{left:168.705000px;}
.xca{left:176.137500px;}
.xda{left:178.861500px;}
.x65{left:181.180500px;}
.x7a{left:183.925500px;}
.xdb{left:186.205500px;}
.xdd{left:189.606000px;}
.xb{left:191.662500px;}
.xde{left:196.330500px;}
.xbf{left:199.480500px;}
.xc{left:202.033500px;}
.x4{left:203.484001px;}
.x7b{left:204.642000px;}
.x28{left:206.460000px;}
.xc3{left:207.933000px;}
.xa1{left:212.064000px;}
.x7c{left:214.752000px;}
.x2c{left:216.463500px;}
.xb3{left:217.749000px;}
.x34{left:218.818500px;}
.x29{left:221.404500px;}
.xaf{left:222.939000px;}
.x9e{left:224.530500px;}
.xa2{left:227.008500px;}
.x7d{left:229.696500px;}
.x2d{left:231.408000px;}
.x7e{left:233.506500px;}
.x67{left:236.872500px;}
.xb0{left:237.883500px;}
.x9f{left:239.475000px;}
.x3f{left:240.849000px;}
.xa0{left:243.174000px;}
.xa3{left:245.613000px;}
.xcb{left:246.987000px;}
.x7f{left:248.451000px;}
.xe1{left:250.056000px;}
.x80{left:252.261000px;}
.xcc{left:253.711500px;}
.x92{left:255.283500px;}
.x42{left:258.471000px;}
.xa4{left:264.219000px;}
.x88{left:265.633500px;}
.x81{left:267.205500px;}
.x93{left:270.228000px;}
.x94{left:274.039500px;}
.xd7{left:275.139000px;}
.xcd{left:280.429500px;}
.xb7{left:282.822000px;}
.x39{left:284.908500px;}
.x2e{left:287.947500px;}
.x95{left:288.982500px;}
.x96{left:296.604000px;}
.x3a{left:299.851500px;}
.x2f{left:302.892000px;}
.x3b{left:307.174500px;}
.x1c{left:312.355500px;}
.x49{left:314.401500px;}
.x14{left:317.508000px;}
.xa8{left:318.823500px;}
.x1d{left:319.827000px;}
.x3c{left:322.119000px;}
.x15{left:324.981000px;}
.xe0{left:327.484500px;}
.x16{left:328.791000px;}
.x97{left:330.303000px;}
.x98{left:334.113000px;}
.x17{left:336.262500px;}
.xa5{left:344.445000px;}
.x59{left:346.624500px;}
.x69{left:349.476000px;}
.x4c{left:351.004500px;}
.x99{left:352.869000px;}
.x38{left:356.190000px;}
.xa6{left:359.388000px;}
.x5a{left:361.569000px;}
.xa7{left:363.165000px;}
.x5b{left:365.379000px;}
.x72{left:367.741500px;}
.x1e{left:370.864500px;}
.xb9{left:373.642500px;}
.x73{left:375.213000px;}
.x74{left:379.017000px;}
.x5c{left:380.323500px;}
.x26{left:384.301500px;}
.x1f{left:385.809000px;}
.xba{left:388.585500px;}
.x89{left:389.742000px;}
.x27{left:391.773000px;}
.x75{left:393.960000px;}
.xb8{left:395.388000px;}
.x76{left:397.764000px;}
.x78{left:404.572500px;}
.x30{left:406.896000px;}
.x77{left:412.708500px;}
.x8a{left:415.669500px;}
.x79{left:419.515500px;}
.x31{left:421.840500px;}
.x44{left:429.922500px;}
.x8b{left:437.935500px;}
.x8c{left:452.880000px;}
.x3{left:454.959000px;}
.x53{left:460.693500px;}
.x24{left:462.487500px;}
.x5d{left:466.602000px;}
.xc4{left:469.815000px;}
.x54{left:475.638000px;}
.x25{left:477.430500px;}
.x55{left:479.298000px;}
.x5e{left:481.545000px;}
.x5f{left:485.356500px;}
.xc5{left:488.460000px;}
.xc2{left:492.736500px;}
.x56{left:494.242500px;}
.x57{left:497.904000px;}
.x60{left:500.301000px;}
.x12{left:501.856500px;}
.xc6{left:507.106500px;}
.x13{left:509.329500px;}
.x58{left:512.848500px;}
.x6f{left:519.847500px;}
.x18{left:520.900500px;}
.x4d{left:522.445500px;}
.x70{left:523.659000px;}
.x4e{left:526.857000px;}
.x19{left:528.372000px;}
.x71{left:538.602000px;}
.x4f{left:540.306000px;}
.x63{left:541.810500px;}
.xe{left:547.146000px;}
.x8d{left:553.296000px;}
.xf{left:554.617500px;}
.x64{left:556.753500px;}
.x10{left:562.239000px;}
.x46{left:565.975500px;}
.x11{left:569.710500px;}
.x3d{left:571.384500px;}
.xbd{left:573.772500px;}
.x4b{left:577.233000px;}
.x3e{left:578.856000px;}
.x4a{left:579.916500px;}
.x32{left:581.572500px;}
.x9c{left:584.721000px;}
.xbe{left:588.717000px;}
.x6a{left:595.032000px;}
.x33{left:596.517000px;}
.x8e{left:597.828000px;}
.x9d{left:599.665500px;}
.x52{left:605.248500px;}
.xd0{left:608.397000px;}
.xad{left:610.467000px;}
.xbb{left:611.475000px;}
.x8f{left:612.772500px;}
.x45{left:614.413500px;}
.x90{left:616.434000px;}
.x43{left:620.755500px;}
.xae{left:625.410000px;}
.xbc{left:626.419500px;}
.xd8{left:627.610500px;}
.x51{left:628.758000px;}
.x91{left:631.377000px;}
.xd1{left:635.296500px;}
.x50{left:644.910000px;}
.x6b{left:648.414000px;}
.xdf{left:649.462500px;}
.xc7{left:653.812500px;}
.x47{left:656.511000px;}
.x22{left:660.516000px;}
.x6c{left:663.357000px;}
.xb1{left:666.027000px;}
.x6d{left:667.168500px;}
.xc8{left:668.757000px;}
.x1a{left:673.347000px;}
.x23{left:675.460500px;}
.xd5{left:678.223500px;}
.x1b{left:680.818500px;}
.x6e{left:682.113000px;}
.xac{left:685.138500px;}
.xc9{left:687.489000px;}
.xb5{left:688.500000px;}
.x2b{left:690.225000px;}
.x61{left:692.911500px;}
.x9b{left:700.269000px;}
.x9{left:701.339982px;}
.xd6{left:705.123000px;}
.x62{left:707.856000px;}
.x68{left:710.355000px;}
.xd2{left:711.519000px;}
.x82{left:714.828000px;}
.xb6{left:719.385000px;}
.xce{left:728.731500px;}
.x83{left:729.772500px;}
.x84{left:733.582500px;}
.xcf{left:736.299000px;}
.x35{left:738.514500px;}
.x85{left:748.527000px;}
.xd9{left:749.557500px;}
.x36{left:753.457500px;}
.x86{left:756.148500px;}
.x37{left:757.156500px;}
.xdc{left:761.446500px;}
.xd4{left:763.006500px;}
.x20{left:764.715000px;}
.x87{left:771.091500px;}
.x21{left:772.188000px;}
.xd3{left:776.382000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.477333pt;}
.v1{vertical-align:29.221333pt;}
.ls2c{letter-spacing:-0.261856pt;}
.ls27{letter-spacing:-0.181696pt;}
.ls29{letter-spacing:-0.149632pt;}
.ls2f{letter-spacing:-0.133600pt;}
.ls2b{letter-spacing:-0.080160pt;}
.ls24{letter-spacing:-0.076608pt;}
.ls30{letter-spacing:-0.043200pt;}
.ls2e{letter-spacing:-0.042752pt;}
.ls2a{letter-spacing:-0.016032pt;}
.ls26{letter-spacing:-0.010688pt;}
.ls25{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000222pt;}
.ls43{letter-spacing:0.000711pt;}
.ls40{letter-spacing:0.000921pt;}
.ls31{letter-spacing:0.001009pt;}
.lsb{letter-spacing:0.001349pt;}
.ls3b{letter-spacing:0.001512pt;}
.ls7{letter-spacing:0.001792pt;}
.ls4{letter-spacing:0.002097pt;}
.ls8{letter-spacing:0.002301pt;}
.ls45{letter-spacing:0.002525pt;}
.lsa{letter-spacing:0.002651pt;}
.ls35{letter-spacing:0.002729pt;}
.ls3{letter-spacing:0.003106pt;}
.lse{letter-spacing:0.003914pt;}
.lsf{letter-spacing:0.003942pt;}
.ls36{letter-spacing:0.004267pt;}
.lsd{letter-spacing:0.004576pt;}
.ls19{letter-spacing:0.005344pt;}
.ls10{letter-spacing:0.008512pt;}
.ls1b{letter-spacing:0.010688pt;}
.ls22{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.016032pt;}
.ls1f{letter-spacing:0.021376pt;}
.ls1e{letter-spacing:0.026720pt;}
.ls16{letter-spacing:0.032064pt;}
.ls21{letter-spacing:0.033600pt;}
.ls1c{letter-spacing:0.037408pt;}
.ls17{letter-spacing:0.042752pt;}
.ls15{letter-spacing:0.048096pt;}
.ls23{letter-spacing:0.052800pt;}
.ls14{letter-spacing:0.053440pt;}
.ls20{letter-spacing:0.064128pt;}
.ls1d{letter-spacing:0.069472pt;}
.ls28{letter-spacing:0.074816pt;}
.ls2d{letter-spacing:0.085504pt;}
.ls1a{letter-spacing:0.090848pt;}
.ls12{letter-spacing:0.161728pt;}
.ls11{letter-spacing:0.170240pt;}
.ls18{letter-spacing:0.171008pt;}
.ls3e{letter-spacing:0.466280pt;}
.ls3f{letter-spacing:0.471509pt;}
.ls6{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls5{letter-spacing:10.631867pt;}
.ls3c{letter-spacing:11.141399pt;}
.ls44{letter-spacing:11.734596pt;}
.ls34{letter-spacing:11.752599pt;}
.ls3a{letter-spacing:11.919341pt;}
.ls33{letter-spacing:11.954133pt;}
.ls3d{letter-spacing:11.959467pt;}
.ls41{letter-spacing:12.015319pt;}
.ls37{letter-spacing:12.090638pt;}
.ls32{letter-spacing:12.489244pt;}
.ls9{letter-spacing:14.399278pt;}
.ls42{letter-spacing:16.128460pt;}
.ls39{letter-spacing:16.253950pt;}
.ls38{letter-spacing:18.549375pt;}
.ls1{letter-spacing:28.452898pt;}
.ws27{word-spacing:-15.461955pt;}
.ws81{word-spacing:-13.915853pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.369595pt;}
.ws82{word-spacing:-11.955200pt;}
.ws99{word-spacing:-10.810240pt;}
.ws9a{word-spacing:-10.640000pt;}
.ws1f{word-spacing:-10.626800pt;}
.wsa{word-spacing:-4.144442pt;}
.ws119{word-spacing:-4.112589pt;}
.ws25{word-spacing:-3.825638pt;}
.wse1{word-spacing:-3.730022pt;}
.ws18{word-spacing:-3.613103pt;}
.wsa6{word-spacing:-3.505664pt;}
.ws89{word-spacing:-3.453701pt;}
.ws29{word-spacing:-3.347434pt;}
.wsa5{word-spacing:-3.168992pt;}
.ws120{word-spacing:-3.108352pt;}
.wsd1{word-spacing:-2.922363pt;}
.ws103{word-spacing:-2.869248pt;}
.ws5a{word-spacing:-2.869229pt;}
.ws2d{word-spacing:-2.762961pt;}
.ws97{word-spacing:-2.603559pt;}
.ws26{word-spacing:-2.497292pt;}
.ws35{word-spacing:-2.444158pt;}
.ws8{word-spacing:-2.391024pt;}
.ws1a{word-spacing:-2.337890pt;}
.ws19{word-spacing:-2.284756pt;}
.wscd{word-spacing:-2.231622pt;}
.ws8a{word-spacing:-2.178489pt;}
.ws116{word-spacing:-2.151936pt;}
.wsd{word-spacing:-2.125355pt;}
.ws28{word-spacing:-2.072221pt;}
.wsb8{word-spacing:-1.859712pt;}
.ws10b{word-spacing:-1.817190pt;}
.ws3f{word-spacing:-1.806551pt;}
.ws10c{word-spacing:-1.769370pt;}
.wsb9{word-spacing:-1.752832pt;}
.ws36{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws9f{word-spacing:-1.647150pt;}
.ws8f{word-spacing:-1.434614pt;}
.ws94{word-spacing:-1.275213pt;}
.wsb4{word-spacing:-1.266528pt;}
.ws95{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws2b{word-spacing:-1.168945pt;}
.wseb{word-spacing:-1.099878pt;}
.ws88{word-spacing:-1.062677pt;}
.ws5f{word-spacing:-0.903276pt;}
.ws8e{word-spacing:-0.850142pt;}
.wsec{word-spacing:-0.812954pt;}
.ws11d{word-spacing:-0.765133pt;}
.ws96{word-spacing:-0.743874pt;}
.ws85{word-spacing:-0.637606pt;}
.wsed{word-spacing:-0.573850pt;}
.ws7b{word-spacing:-0.526029pt;}
.ws52{word-spacing:-0.478208pt;}
.ws100{word-spacing:-0.382566pt;}
.ws101{word-spacing:-0.334746pt;}
.wsaa{word-spacing:-0.277888pt;}
.ws6{word-spacing:-0.265669pt;}
.ws51{word-spacing:-0.239104pt;}
.ws1d{word-spacing:-0.212535pt;}
.wsd9{word-spacing:-0.191283pt;}
.ws7{word-spacing:-0.159402pt;}
.ws7a{word-spacing:-0.143462pt;}
.wsfa{word-spacing:-0.107342pt;}
.ws10{word-spacing:-0.106268pt;}
.ws63{word-spacing:-0.095642pt;}
.wsa1{word-spacing:-0.085120pt;}
.wsb{word-spacing:-0.053134pt;}
.ws78{word-spacing:-0.047821pt;}
.wsfb{word-spacing:-0.022161pt;}
.wsf9{word-spacing:-0.021043pt;}
.wsdb{word-spacing:-0.008269pt;}
.ws108{word-spacing:-0.006357pt;}
.ws57{word-spacing:-0.005427pt;}
.wsab{word-spacing:-0.005344pt;}
.ws115{word-spacing:-0.005018pt;}
.ws4f{word-spacing:-0.004881pt;}
.ws55{word-spacing:-0.003439pt;}
.wsdd{word-spacing:-0.003012pt;}
.ws111{word-spacing:-0.002935pt;}
.ws56{word-spacing:-0.000529pt;}
.ws53{word-spacing:-0.000060pt;}
.ws0{word-spacing:0.000000pt;}
.ws54{word-spacing:0.000572pt;}
.ws4b{word-spacing:0.000836pt;}
.ws4c{word-spacing:0.001263pt;}
.ws50{word-spacing:0.001698pt;}
.wsbc{word-spacing:0.016032pt;}
.ws79{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.wsc6{word-spacing:0.058784pt;}
.wsbd{word-spacing:0.080160pt;}
.wsc7{word-spacing:0.090848pt;}
.ws4d{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.wscc{word-spacing:0.110400pt;}
.ws4e{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.wse8{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.wsc8{word-spacing:0.219104pt;}
.wsdf{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.wsfd{word-spacing:0.286925pt;}
.wsf{word-spacing:0.318803pt;}
.wsc{word-spacing:0.371937pt;}
.wsd8{word-spacing:0.382566pt;}
.ws11f{word-spacing:0.430387pt;}
.ws7e{word-spacing:0.478205pt;}
.ws7d{word-spacing:0.531339pt;}
.ws1c{word-spacing:0.584473pt;}
.ws6a{word-spacing:0.637606pt;}
.wsac{word-spacing:0.651968pt;}
.ws112{word-spacing:0.669491pt;}
.ws23{word-spacing:0.690740pt;}
.ws113{word-spacing:0.717312pt;}
.ws76{word-spacing:0.797008pt;}
.ws6f{word-spacing:0.850142pt;}
.ws11a{word-spacing:0.860774pt;}
.wsd3{word-spacing:0.956410pt;}
.wsea{word-spacing:0.956416pt;}
.wsda{word-spacing:1.004237pt;}
.wsb3{word-spacing:1.047424pt;}
.ws33{word-spacing:1.062677pt;}
.ws4a{word-spacing:1.115811pt;}
.ws38{word-spacing:1.168945pt;}
.wsad{word-spacing:1.197056pt;}
.ws5d{word-spacing:1.275213pt;}
.ws121{word-spacing:1.291162pt;}
.ws22{word-spacing:1.434614pt;}
.ws60{word-spacing:1.487748pt;}
.ws11e{word-spacing:1.578086pt;}
.ws2f{word-spacing:1.594016pt;}
.ws117{word-spacing:1.769370pt;}
.wsd4{word-spacing:1.806551pt;}
.wsd0{word-spacing:1.859685pt;}
.ws10e{word-spacing:1.912832pt;}
.ws45{word-spacing:2.019087pt;}
.wsfe{word-spacing:2.056294pt;}
.ws9d{word-spacing:2.072221pt;}
.wsff{word-spacing:2.104115pt;}
.ws7c{word-spacing:2.231622pt;}
.ws7f{word-spacing:2.284756pt;}
.wscf{word-spacing:2.391024pt;}
.ws58{word-spacing:2.444158pt;}
.ws3a{word-spacing:2.550426pt;}
.ws122{word-spacing:2.582323pt;}
.wsa0{word-spacing:2.603559pt;}
.ws10f{word-spacing:2.630144pt;}
.ws3d{word-spacing:2.656693pt;}
.ws15{word-spacing:2.709827pt;}
.ws9c{word-spacing:2.773606pt;}
.ws69{word-spacing:2.816095pt;}
.ws83{word-spacing:2.869229pt;}
.wsd5{word-spacing:2.917069pt;}
.ws84{word-spacing:2.922363pt;}
.ws46{word-spacing:2.975497pt;}
.ws106{word-spacing:3.012710pt;}
.ws9b{word-spacing:3.108352pt;}
.ws70{word-spacing:3.134898pt;}
.wsae{word-spacing:3.270528pt;}
.wsaf{word-spacing:3.281216pt;}
.ws3e{word-spacing:3.294300pt;}
.ws10d{word-spacing:3.299635pt;}
.wsd6{word-spacing:3.347456pt;}
.wse6{word-spacing:3.395277pt;}
.ws59{word-spacing:3.400567pt;}
.ws2c{word-spacing:3.719371pt;}
.ws9{word-spacing:3.772505pt;}
.ws105{word-spacing:3.873485pt;}
.ws6c{word-spacing:3.878772pt;}
.wsb7{word-spacing:3.885088pt;}
.ws3c{word-spacing:3.931906pt;}
.ws32{word-spacing:3.985040pt;}
.ws39{word-spacing:4.197575pt;}
.wsbb{word-spacing:4.232448pt;}
.ws1e{word-spacing:4.250720pt;}
.wse7{word-spacing:4.303872pt;}
.ws64{word-spacing:4.356977pt;}
.ws8b{word-spacing:4.410111pt;}
.ws4{word-spacing:4.463245pt;}
.ws68{word-spacing:4.516379pt;}
.wsba{word-spacing:4.537056pt;}
.wsa8{word-spacing:4.579808pt;}
.ws5b{word-spacing:4.675780pt;}
.ws98{word-spacing:4.728914pt;}
.wsf8{word-spacing:4.734259pt;}
.wsdc{word-spacing:4.776090pt;}
.wsf1{word-spacing:4.777190pt;}
.ws114{word-spacing:4.778283pt;}
.wsef{word-spacing:4.778291pt;}
.wse0{word-spacing:4.778513pt;}
.wsee{word-spacing:4.778709pt;}
.ws102{word-spacing:4.779494pt;}
.wsde{word-spacing:4.779913pt;}
.ws104{word-spacing:4.780433pt;}
.wsd7{word-spacing:4.781175pt;}
.wsfc{word-spacing:4.781534pt;}
.ws109{word-spacing:4.781781pt;}
.ws107{word-spacing:4.781858pt;}
.ws1{word-spacing:4.782080pt;}
.ws118{word-spacing:4.782711pt;}
.ws8c{word-spacing:4.835182pt;}
.wsa7{word-spacing:4.841664pt;}
.ws17{word-spacing:4.888316pt;}
.ws11b{word-spacing:4.925542pt;}
.ws31{word-spacing:4.941450pt;}
.wsf3{word-spacing:4.973363pt;}
.ws40{word-spacing:4.994583pt;}
.ws90{word-spacing:5.047717pt;}
.wsf0{word-spacing:5.069005pt;}
.ws9e{word-spacing:5.100851pt;}
.wse9{word-spacing:5.116826pt;}
.wse5{word-spacing:5.164646pt;}
.wsc0{word-spacing:5.178336pt;}
.wse2{word-spacing:5.212467pt;}
.wse{word-spacing:5.313387pt;}
.ws47{word-spacing:5.419654pt;}
.wsbf{word-spacing:5.466912pt;}
.ws41{word-spacing:5.525922pt;}
.ws80{word-spacing:5.791591pt;}
.wsc9{word-spacing:5.894400pt;}
.wsca{word-spacing:5.913600pt;}
.ws12{word-spacing:5.950993pt;}
.wscb{word-spacing:5.971200pt;}
.ws6b{word-spacing:6.163529pt;}
.ws5c{word-spacing:6.216662pt;}
.ws91{word-spacing:6.269796pt;}
.ws92{word-spacing:6.322930pt;}
.ws71{word-spacing:6.482332pt;}
.wse4{word-spacing:6.599270pt;}
.ws87{word-spacing:6.694867pt;}
.ws42{word-spacing:6.801135pt;}
.ws43{word-spacing:6.854269pt;}
.ws6d{word-spacing:7.173072pt;}
.ws13{word-spacing:7.226206pt;}
.ws65{word-spacing:7.279340pt;}
.wsc3{word-spacing:7.385408pt;}
.wsc5{word-spacing:7.460224pt;}
.ws86{word-spacing:7.598143pt;}
.ws14{word-spacing:7.651277pt;}
.wsf4{word-spacing:7.651328pt;}
.ws8d{word-spacing:7.810678pt;}
.wsc4{word-spacing:7.812928pt;}
.ws48{word-spacing:7.863812pt;}
.wsa2{word-spacing:8.086400pt;}
.ws2e{word-spacing:8.182615pt;}
.wsd2{word-spacing:8.288883pt;}
.ws67{word-spacing:8.395151pt;}
.ws5{word-spacing:8.448285pt;}
.ws16{word-spacing:8.501419pt;}
.ws44{word-spacing:8.607686pt;}
.ws11c{word-spacing:8.607744pt;}
.wsa4{word-spacing:8.710720pt;}
.wsa3{word-spacing:8.732096pt;}
.ws3b{word-spacing:8.820222pt;}
.ws93{word-spacing:8.926490pt;}
.ws49{word-spacing:9.245293pt;}
.ws66{word-spacing:9.829765pt;}
.ws74{word-spacing:10.626773pt;}
.wsb5{word-spacing:10.666624pt;}
.wsb6{word-spacing:10.671968pt;}
.ws75{word-spacing:10.892443pt;}
.wsf5{word-spacing:11.620454pt;}
.ws37{word-spacing:11.742585pt;}
.wsce{word-spacing:11.955120pt;}
.ws110{word-spacing:13.055078pt;}
.ws6e{word-spacing:13.708538pt;}
.wsc1{word-spacing:14.102816pt;}
.wsc2{word-spacing:14.129536pt;}
.ws5e{word-spacing:14.133609pt;}
.wsbe{word-spacing:14.150912pt;}
.ws72{word-spacing:14.718081pt;}
.ws73{word-spacing:15.993294pt;}
.wsa9{word-spacing:18.297856pt;}
.wsb0{word-spacing:20.162912pt;}
.wsb1{word-spacing:20.243072pt;}
.wse3{word-spacing:20.849869pt;}
.wsf2{word-spacing:22.045389pt;}
.wsb2{word-spacing:27.580384pt;}
.wsf7{word-spacing:31.800832pt;}
.wsf6{word-spacing:31.848653pt;}
.ws10a{word-spacing:43.015467pt;}
.ws61{word-spacing:173.176533pt;}
.ws21{word-spacing:355.572728pt;}
.ws77{word-spacing:747.056538pt;}
.ws62{word-spacing:1380.219153pt;}
._3d{margin-left:-18.650112pt;}
._36{margin-left:-8.749540pt;}
._a{margin-left:-5.844725pt;}
._4{margin-left:-4.447334pt;}
._1{margin-left:-3.101863pt;}
._6{margin-left:-2.144797pt;}
._0{margin-left:-1.103159pt;}
._2{width:1.272146pt;}
._3c{width:2.725786pt;}
._38{width:5.796047pt;}
._3a{width:8.541901pt;}
._42{width:9.718210pt;}
._12{width:10.614122pt;}
._39{width:11.770415pt;}
._d{width:12.686342pt;}
._18{width:13.961555pt;}
._3b{width:15.461955pt;}
._5{width:16.737280pt;}
._13{width:17.627792pt;}
._7{width:18.915657pt;}
._b{width:20.463330pt;}
._15{width:21.665966pt;}
._17{width:22.728643pt;}
._8{width:23.910240pt;}
._41{width:25.123630pt;}
._19{width:26.022943pt;}
._11{width:27.098272pt;}
._30{width:28.107815pt;}
._16{width:30.126902pt;}
._1b{width:31.814534pt;}
._3{width:33.474560pt;}
._34{width:34.364960pt;}
._c{width:35.446150pt;}
._e{width:36.928037pt;}
._2b{width:38.468919pt;}
._1c{width:39.478463pt;}
._f{width:40.647408pt;}
._10{width:41.770010pt;}
._9{width:44.419913pt;}
._1a{width:45.645524pt;}
._1d{width:46.704669pt;}
._2a{width:48.458086pt;}
._2d{width:50.836459pt;}
._40{width:54.993920pt;}
._2c{width:67.161207pt;}
._3e{width:83.208192pt;}
._3f{width:112.814328pt;}
._21{width:153.785204pt;}
._23{width:185.114317pt;}
._20{width:194.480704pt;}
._29{width:323.092548pt;}
._24{width:396.147507pt;}
._2f{width:432.589708pt;}
._1f{width:433.734656pt;}
._1e{width:447.261453pt;}
._22{width:503.616068pt;}
._32{width:571.324988pt;}
._25{width:631.724791pt;}
._31{width:711.002406pt;}
._2e{width:760.350720pt;}
._33{width:884.173995pt;}
._27{width:912.813321pt;}
._26{width:966.951799pt;}
._28{width:979.433028pt;}
._37{width:1297.501184pt;}
._35{width:1310.298996pt;}
._14{width:1331.552596pt;}
.fs11{font-size:26.566933pt;}
.fs6{font-size:34.633760pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:39.581440pt;}
.fsb{font-size:41.988267pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs5{font-size:49.476800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.y1c7{bottom:-38.974667pt;}
.y1c6{bottom:-21.614267pt;}
.y0{bottom:0.000000pt;}
.y1c5{bottom:1.105733pt;}
.y31{bottom:3.044747pt;}
.y25{bottom:11.257415pt;}
.y30{bottom:12.578910pt;}
.y24{bottom:23.131847pt;}
.y6{bottom:31.933340pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y1ab{bottom:96.577333pt;}
.y220{bottom:96.850667pt;}
.y1ec{bottom:97.328000pt;}
.y11d{bottom:99.824000pt;}
.y51{bottom:104.793333pt;}
.y1dc{bottom:108.566667pt;}
.y13e{bottom:109.109333pt;}
.y82{bottom:109.362667pt;}
.yeb{bottom:111.854667pt;}
.y21f{bottom:114.066667pt;}
.y1eb{bottom:114.542667pt;}
.y1aa{bottom:114.589333pt;}
.y11c{bottom:117.836000pt;}
.y50{bottom:122.805333pt;}
.y22{bottom:123.790666pt;}
.y1db{bottom:126.578667pt;}
.y13d{bottom:127.121333pt;}
.yea{bottom:129.868000pt;}
.y21e{bottom:131.281333pt;}
.y1ea{bottom:131.758667pt;}
.y1a9{bottom:132.602667pt;}
.y11b{bottom:135.849333pt;}
.y81{bottom:138.001333pt;}
.y4f{bottom:140.817333pt;}
.ye9{bottom:147.880000pt;}
.y21d{bottom:148.497333pt;}
.y1e9{bottom:148.974667pt;}
.y1a8{bottom:150.614667pt;}
.y1da{bottom:152.561333pt;}
.y11a{bottom:153.861333pt;}
.y4e{bottom:158.830667pt;}
.y21c{bottom:165.713333pt;}
.ye8{bottom:165.893333pt;}
.y1e8{bottom:166.189333pt;}
.y80{bottom:166.641333pt;}
.y1a7{bottom:168.626667pt;}
.y13c{bottom:168.808000pt;}
.y119{bottom:171.873333pt;}
.y19{bottom:175.052000pt;}
.y4d{bottom:176.842667pt;}
.y21b{bottom:182.928000pt;}
.y1e7{bottom:183.405333pt;}
.y13b{bottom:183.420000pt;}
.y1d9{bottom:183.512000pt;}
.ye7{bottom:183.905333pt;}
.y7f{bottom:184.653333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1a6{bottom:186.640000pt;}
.y118{bottom:189.886667pt;}
.y4c{bottom:194.856000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y21a{bottom:200.144000pt;}
.y1e6{bottom:200.620000pt;}
.y1d8{bottom:201.525333pt;}
.ye6{bottom:201.917333pt;}
.yab{bottom:202.665333pt;}
.y7e{bottom:203.994667pt;}
.y13a{bottom:204.433333pt;}
.y1a5{bottom:204.652000pt;}
.y117{bottom:207.898667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y4b{bottom:212.868000pt;}
.y219{bottom:217.358667pt;}
.y1e5{bottom:217.836000pt;}
.y139{bottom:219.045333pt;}
.y1d7{bottom:219.537333pt;}
.ye5{bottom:219.930667pt;}
.yaa{bottom:220.678667pt;}
.y7d{bottom:222.006667pt;}
.y1a4{bottom:222.664000pt;}
.y116{bottom:225.912000pt;}
.y18a{bottom:228.961333pt;}
.y4a{bottom:230.880000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y160{bottom:231.081333pt;}
.y138{bottom:233.657333pt;}
.y218{bottom:234.574667pt;}
.y1e4{bottom:235.052000pt;}
.y1d6{bottom:237.550667pt;}
.ye4{bottom:237.942667pt;}
.ya9{bottom:238.690667pt;}
.y1a3{bottom:240.677333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y115{bottom:243.924000pt;}
.y189{bottom:246.973333pt;}
.y49{bottom:248.893333pt;}
.y15f{bottom:249.093333pt;}
.y7c{bottom:250.646667pt;}
.y217{bottom:251.790667pt;}
.y1e3{bottom:252.266667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y137{bottom:254.672000pt;}
.y1d5{bottom:255.562667pt;}
.ye3{bottom:255.956000pt;}
.ya8{bottom:256.704000pt;}
.y1a2{bottom:258.689333pt;}
.y114{bottom:261.936000pt;}
.y188{bottom:264.986667pt;}
.y12e{bottom:266.597333pt;}
.y48{bottom:266.905333pt;}
.y15e{bottom:267.105333pt;}
.y7b{bottom:268.658667pt;}
.y216{bottom:269.005333pt;}
.y136{bottom:269.282667pt;}
.y1e2{bottom:269.482667pt;}
.y1d4{bottom:273.574667pt;}
.ye2{bottom:273.968000pt;}
.ya7{bottom:274.716000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1a1{bottom:276.702667pt;}
.y113{bottom:279.949333pt;}
.y187{bottom:282.998667pt;}
.y135{bottom:283.894667pt;}
.y47{bottom:284.918667pt;}
.y15d{bottom:285.118667pt;}
.y215{bottom:286.221333pt;}
.y7a{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1d3{bottom:291.588000pt;}
.ye1{bottom:291.980000pt;}
.ya6{bottom:292.728000pt;}
.y1e1{bottom:294.668000pt;}
.y1a0{bottom:294.714667pt;}
.y112{bottom:297.961333pt;}
.y186{bottom:301.010667pt;}
.y46{bottom:302.930667pt;}
.y15c{bottom:303.130667pt;}
.y214{bottom:303.437333pt;}
.y79{bottom:304.684000pt;}
.y134{bottom:304.909333pt;}
.y10{bottom:309.452000pt;}
.y1d2{bottom:309.600000pt;}
.ye0{bottom:309.993333pt;}
.ya5{bottom:310.741333pt;}
.y19f{bottom:312.726667pt;}
.y111{bottom:315.974667pt;}
.y185{bottom:319.024000pt;}
.y133{bottom:319.521333pt;}
.y213{bottom:320.652000pt;}
.y45{bottom:320.942667pt;}
.y15b{bottom:321.142667pt;}
.y78{bottom:322.696000pt;}
.y1d1{bottom:327.613333pt;}
.ydf{bottom:328.005333pt;}
.ya4{bottom:328.753333pt;}
.y1e0{bottom:329.736000pt;}
.y19e{bottom:330.740000pt;}
.y110{bottom:333.986667pt;}
.y132{bottom:334.133333pt;}
.y184{bottom:337.036000pt;}
.y212{bottom:337.868000pt;}
.y44{bottom:338.956000pt;}
.y15a{bottom:339.156000pt;}
.y77{bottom:340.709333pt;}
.yf{bottom:343.809333pt;}
.y1d0{bottom:345.625333pt;}
.yde{bottom:346.018667pt;}
.ya3{bottom:346.766667pt;}
.y1df{bottom:351.216000pt;}
.y10f{bottom:351.998667pt;}
.y183{bottom:355.049333pt;}
.y211{bottom:355.082667pt;}
.y131{bottom:355.146667pt;}
.y19d{bottom:356.722667pt;}
.y43{bottom:356.968000pt;}
.y159{bottom:357.168000pt;}
.y76{bottom:358.721333pt;}
.ye{bottom:362.706666pt;}
.y1cf{bottom:363.637333pt;}
.ya2{bottom:364.778667pt;}
.y130{bottom:369.758667pt;}
.y10e{bottom:370.012000pt;}
.y210{bottom:372.298667pt;}
.y1de{bottom:372.696000pt;}
.y182{bottom:373.061333pt;}
.y42{bottom:374.980000pt;}
.y158{bottom:375.181333pt;}
.y1ce{bottom:381.650667pt;}
.ya1{bottom:382.790667pt;}
.y12f{bottom:384.370667pt;}
.y75{bottom:384.704000pt;}
.y1dd{bottom:386.205333pt;}
.y19c{bottom:387.673333pt;}
.ydb{bottom:387.704000pt;}
.y20f{bottom:389.514667pt;}
.y181{bottom:391.073333pt;}
.y1cd{bottom:399.662667pt;}
.ya0{bottom:400.804000pt;}
.y41{bottom:400.962667pt;}
.yda{bottom:402.316000pt;}
.y19b{bottom:405.685333pt;}
.y12d{bottom:405.702667pt;}
.y20e{bottom:406.729333pt;}
.y180{bottom:409.086667pt;}
.ydd{bottom:409.621333pt;}
.y10d{bottom:411.697333pt;}
.y74{bottom:415.654667pt;}
.y157{bottom:416.866667pt;}
.yd7{bottom:416.928000pt;}
.y1cc{bottom:417.676000pt;}
.y9f{bottom:418.816000pt;}
.y10c{bottom:419.004000pt;}
.y19a{bottom:423.698667pt;}
.y20d{bottom:423.945333pt;}
.ydc{bottom:424.233333pt;}
.y17f{bottom:427.098667pt;}
.y156{bottom:431.478667pt;}
.yd9{bottom:431.540000pt;}
.y1c4{bottom:433.025733pt;}
.y73{bottom:433.666667pt;}
.y12c{bottom:433.808000pt;}
.y1cb{bottom:435.688000pt;}
.y9e{bottom:436.829333pt;}
.y10b{bottom:440.921333pt;}
.y20c{bottom:441.160000pt;}
.y199{bottom:441.710667pt;}
.y17e{bottom:445.112000pt;}
.y155{bottom:446.090667pt;}
.yd8{bottom:446.152000pt;}
.yd{bottom:446.990669pt;}
.y1c3{bottom:451.025949pt;}
.y72{bottom:451.680000pt;}
.y1ca{bottom:453.700000pt;}
.y9d{bottom:454.841333pt;}
.y109{bottom:455.533333pt;}
.y20b{bottom:458.376000pt;}
.y198{bottom:459.722667pt;}
.yc{bottom:462.990669pt;}
.y17d{bottom:463.124000pt;}
.y225{bottom:463.654667pt;}
.y12b{bottom:466.796000pt;}
.y154{bottom:467.104000pt;}
.yd4{bottom:467.165333pt;}
.y40{bottom:468.888000pt;}
.y1c2{bottom:469.025877pt;}
.y71{bottom:469.692000pt;}
.y10a{bottom:470.145333pt;}
.y9c{bottom:472.853333pt;}
.y20a{bottom:475.592000pt;}
.y197{bottom:477.736000pt;}
.yb{bottom:478.990666pt;}
.y224{bottom:480.870667pt;}
.y17c{bottom:481.136000pt;}
.y153{bottom:481.716000pt;}
.yd3{bottom:481.777333pt;}
.y108{bottom:484.757333pt;}
.y12a{bottom:484.809333pt;}
.y1c9{bottom:484.812000pt;}
.y3f{bottom:486.901333pt;}
.y1c1{bottom:487.025805pt;}
.y70{bottom:487.704000pt;}
.yd6{bottom:489.084000pt;}
.y9b{bottom:490.866667pt;}
.y107{bottom:492.062667pt;}
.y209{bottom:492.806667pt;}
.ya{bottom:494.990666pt;}
.y196{bottom:495.748000pt;}
.y152{bottom:496.328000pt;}
.yd0{bottom:496.389333pt;}
.y223{bottom:498.085333pt;}
.y17b{bottom:499.149333pt;}
.y1c8{bottom:501.908000pt;}
.y129{bottom:502.821333pt;}
.yd5{bottom:503.694667pt;}
.y1c0{bottom:505.025733pt;}
.y6f{bottom:505.717333pt;}
.y9a{bottom:508.878667pt;}
.y208{bottom:510.022667pt;}
.yd2{bottom:511.001333pt;}
.y195{bottom:513.761333pt;}
.y106{bottom:513.981333pt;}
.y17a{bottom:517.161333pt;}
.y151{bottom:517.342667pt;}
.y128{bottom:520.834667pt;}
.y3e{bottom:520.853333pt;}
.y1ac{bottom:521.845333pt;}
.y1bf{bottom:523.025733pt;}
.y6e{bottom:523.729333pt;}
.yd1{bottom:525.613333pt;}
.y99{bottom:526.892000pt;}
.y207{bottom:527.237333pt;}
.y104{bottom:528.592000pt;}
.y194{bottom:531.773333pt;}
.y150{bottom:531.954667pt;}
.y179{bottom:535.174667pt;}
.y127{bottom:538.846667pt;}
.y3d{bottom:538.866667pt;}
.y1be{bottom:541.026877pt;}
.y6d{bottom:541.742667pt;}
.y105{bottom:543.204000pt;}
.y206{bottom:544.453333pt;}
.y98{bottom:544.904000pt;}
.y14f{bottom:546.566667pt;}
.ycd{bottom:546.626667pt;}
.y193{bottom:549.785333pt;}
.y178{bottom:553.186667pt;}
.ycf{bottom:553.933333pt;}
.y126{bottom:556.858667pt;}
.y3c{bottom:556.878667pt;}
.y103{bottom:557.816000pt;}
.y1bd{bottom:558.946645pt;}
.y6c{bottom:559.754667pt;}
.ycc{bottom:561.238667pt;}
.y205{bottom:561.669333pt;}
.y97{bottom:562.916000pt;}
.y101{bottom:565.122667pt;}
.y14d{bottom:567.580000pt;}
.y192{bottom:567.798667pt;}
.yc9{bottom:568.545333pt;}
.y177{bottom:571.198667pt;}
.y102{bottom:572.428000pt;}
.y9{bottom:573.786667pt;}
.y125{bottom:574.872000pt;}
.y3b{bottom:574.892000pt;}
.ycb{bottom:575.850667pt;}
.y1bc{bottom:576.946573pt;}
.y6b{bottom:577.766667pt;}
.y204{bottom:578.884000pt;}
.y96{bottom:580.929333pt;}
.y14c{bottom:582.192000pt;}
.yce{bottom:583.157333pt;}
.y191{bottom:585.810667pt;}
.y100{bottom:587.040000pt;}
.y176{bottom:589.212000pt;}
.y14e{bottom:589.497333pt;}
.yca{bottom:590.462667pt;}
.y8{bottom:592.685334pt;}
.y124{bottom:592.884000pt;}
.y3a{bottom:592.904000pt;}
.y141{bottom:593.213333pt;}
.yff{bottom:594.346667pt;}
.y1bb{bottom:594.946501pt;}
.y6a{bottom:595.780000pt;}
.y203{bottom:596.100000pt;}
.y14b{bottom:596.804000pt;}
.y95{bottom:598.941333pt;}
.y190{bottom:603.824000pt;}
.y175{bottom:607.224000pt;}
.y123{bottom:610.896000pt;}
.y39{bottom:610.916000pt;}
.y14a{bottom:611.416000pt;}
.yc6{bottom:611.476000pt;}
.y1ba{bottom:612.946429pt;}
.y202{bottom:613.314667pt;}
.y69{bottom:613.792000pt;}
.yfe{bottom:616.264000pt;}
.y94{bottom:616.954667pt;}
.yc8{bottom:618.782667pt;}
.y18f{bottom:621.836000pt;}
.yfd{bottom:623.569333pt;}
.yc5{bottom:626.088000pt;}
.y122{bottom:628.909333pt;}
.y38{bottom:628.929333pt;}
.y201{bottom:630.530667pt;}
.y1b9{bottom:630.946357pt;}
.y68{bottom:631.805333pt;}
.y149{bottom:632.429333pt;}
.yc2{bottom:633.394667pt;}
.y93{bottom:634.966667pt;}
.yc4{bottom:640.700000pt;}
.y7{bottom:645.598667pt;}
.yfc{bottom:645.805333pt;}
.y222{bottom:646.008000pt;}
.y121{bottom:646.921333pt;}
.y37{bottom:646.941333pt;}
.y148{bottom:647.041333pt;}
.y200{bottom:647.746667pt;}
.yc7{bottom:648.006667pt;}
.y173{bottom:648.910667pt;}
.y1b8{bottom:648.946285pt;}
.y67{bottom:649.817333pt;}
.y92{bottom:652.978667pt;}
.yc3{bottom:655.312000pt;}
.yfb{bottom:660.417333pt;}
.y172{bottom:663.521333pt;}
.y120{bottom:664.934667pt;}
.y36{bottom:664.954667pt;}
.y1ff{bottom:664.961333pt;}
.y1b7{bottom:666.946213pt;}
.y66{bottom:667.829333pt;}
.y147{bottom:668.056000pt;}
.y3{bottom:668.977329pt;}
.y174{bottom:670.828000pt;}
.y91{bottom:670.992000pt;}
.yf9{bottom:675.029333pt;}
.yc1{bottom:676.326667pt;}
.y171{bottom:678.133333pt;}
.y1fe{bottom:682.177333pt;}
.y146{bottom:682.666667pt;}
.y11f{bottom:682.946667pt;}
.y35{bottom:682.966667pt;}
.y1b6{bottom:684.865981pt;}
.y65{bottom:685.842667pt;}
.y90{bottom:689.004000pt;}
.yfa{bottom:689.640000pt;}
.yc0{bottom:690.938667pt;}
.y170{bottom:692.745333pt;}
.y145{bottom:697.278667pt;}
.y1fd{bottom:699.392000pt;}
.y34{bottom:700.978667pt;}
.y1b5{bottom:702.865909pt;}
.y64{bottom:703.854667pt;}
.yf8{bottom:704.252000pt;}
.ybd{bottom:705.549333pt;}
.y11e{bottom:708.929333pt;}
.yf7{bottom:711.558667pt;}
.y16f{bottom:713.760000pt;}
.y8f{bottom:714.986667pt;}
.y1fc{bottom:716.608000pt;}
.y144{bottom:718.293333pt;}
.y33{bottom:718.992000pt;}
.ybf{bottom:720.161333pt;}
.y1b4{bottom:720.865837pt;}
.y63{bottom:721.868000pt;}
.y16e{bottom:728.372000pt;}
.y221{bottom:732.085333pt;}
.y143{bottom:732.905333pt;}
.yf6{bottom:733.476000pt;}
.y1fb{bottom:733.824000pt;}
.ybe{bottom:734.773333pt;}
.y18e{bottom:735.677333pt;}
.y32{bottom:737.004000pt;}
.y62{bottom:739.880000pt;}
.yf5{bottom:740.782667pt;}
.y16d{bottom:742.984000pt;}
.y8e{bottom:745.937333pt;}
.y1b3{bottom:746.865733pt;}
.y142{bottom:747.517333pt;}
.y1fa{bottom:751.038667pt;}
.ybc{bottom:755.788000pt;}
.y18d{bottom:757.594667pt;}
.y61{bottom:757.892000pt;}
.y8d{bottom:763.949333pt;}
.y16c{bottom:763.997333pt;}
.y1f9{bottom:768.254667pt;}
.y2f{bottom:768.499968pt;}
.y140{bottom:768.848000pt;}
.y2e{bottom:769.181333pt;}
.yf4{bottom:769.420000pt;}
.ybb{bottom:770.400000pt;}
.y60{bottom:775.905333pt;}
.yb8{bottom:777.705333pt;}
.y16b{bottom:778.609333pt;}
.y1b2{bottom:780.865733pt;}
.y2{bottom:781.661334pt;}
.y8c{bottom:781.962667pt;}
.yba{bottom:785.012000pt;}
.y1f8{bottom:785.469333pt;}
.y16a{bottom:793.221333pt;}
.y5f{bottom:793.917333pt;}
.y13f{bottom:796.954667pt;}
.yf3{bottom:797.525333pt;}
.y1b1{bottom:798.865805pt;}
.yb9{bottom:799.622667pt;}
.y8b{bottom:799.974667pt;}
.y1f7{bottom:802.685333pt;}
.y2d{bottom:803.853333pt;}
.y18c{bottom:807.833333pt;}
.y163{bottom:811.389333pt;}
.y5e{bottom:811.930667pt;}
.y168{bottom:814.234667pt;}
.y1b0{bottom:816.865733pt;}
.y8a{bottom:817.988000pt;}
.y1f6{bottom:819.901333pt;}
.y2c{bottom:819.992000pt;}
.y18b{bottom:820.220000pt;}
.yb7{bottom:820.637333pt;}
.y162{bottom:826.001333pt;}
.yf2{bottom:827.046667pt;}
.y167{bottom:828.846667pt;}
.y5d{bottom:829.942667pt;}
.y1af{bottom:834.785733pt;}
.yb6{bottom:835.249333pt;}
.y89{bottom:836.000000pt;}
.y2b{bottom:836.132000pt;}
.y169{bottom:836.153333pt;}
.y1f5{bottom:837.116000pt;}
.y161{bottom:840.613333pt;}
.y166{bottom:843.458667pt;}
.yf1{bottom:845.060000pt;}
.y5c{bottom:847.954667pt;}
.yb5{bottom:849.861333pt;}
.y1ae{bottom:852.785733pt;}
.y88{bottom:854.012000pt;}
.y1f4{bottom:854.332000pt;}
.yb1{bottom:857.166667pt;}
.y165{bottom:858.070667pt;}
.y1{bottom:859.312000pt;}
.y2a{bottom:860.241333pt;}
.yf0{bottom:863.072000pt;}
.yb4{bottom:864.473333pt;}
.y5b{bottom:865.968000pt;}
.y1f3{bottom:871.546667pt;}
.y87{bottom:872.025333pt;}
.yb3{bottom:879.085333pt;}
.yef{bottom:881.084000pt;}
.y5a{bottom:883.980000pt;}
.y1ad{bottom:885.985733pt;}
.y1f2{bottom:888.762667pt;}
.y86{bottom:890.037333pt;}
.yb2{bottom:893.696000pt;}
.y29{bottom:898.178667pt;}
.yee{bottom:899.097333pt;}
.y59{bottom:901.993333pt;}
.y1f1{bottom:905.978667pt;}
.y85{bottom:908.050667pt;}
.y164{bottom:908.308000pt;}
.yb0{bottom:914.710667pt;}
.yed{bottom:917.109333pt;}
.y58{bottom:920.005333pt;}
.y1f0{bottom:923.193333pt;}
.y28{bottom:925.198667pt;}
.yae{bottom:929.322667pt;}
.y84{bottom:936.689333pt;}
.y57{bottom:938.017333pt;}
.y1ef{bottom:940.409333pt;}
.yec{bottom:943.092000pt;}
.yaf{bottom:943.934667pt;}
.y27{bottom:952.217333pt;}
.y83{bottom:954.702667pt;}
.y56{bottom:956.030667pt;}
.y1ee{bottom:957.624000pt;}
.yad{bottom:965.265333pt;}
.y55{bottom:974.042667pt;}
.y1ed{bottom:974.840000pt;}
.y26{bottom:977.906667pt;}
.y54{bottom:992.056000pt;}
.yac{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h23{height:19.340727pt;}
.h10{height:22.673858pt;}
.hb{height:26.836216pt;}
.h7{height:28.560000pt;}
.h12{height:29.433775pt;}
.h11{height:30.399505pt;}
.h19{height:30.964062pt;}
.h14{height:31.200285pt;}
.ha{height:33.545270pt;}
.h24{height:33.713664pt;}
.h15{height:34.574438pt;}
.h1f{height:34.734375pt;}
.hf{height:34.813542pt;}
.h1e{height:34.921875pt;}
.h21{height:35.100467pt;}
.he{height:38.415786pt;}
.h1a{height:38.670937pt;}
.h13{height:38.681455pt;}
.h1b{height:38.879687pt;}
.hc{height:39.000258pt;}
.h6{height:40.800000pt;}
.h1c{height:41.462969pt;}
.h3{height:42.840000pt;}
.h20{height:43.660390pt;}
.h9{height:45.353733pt;}
.h22{height:46.290876pt;}
.h1d{height:46.312500pt;}
.h2{height:48.960000pt;}
.h16{height:64.034876pt;}
.h17{height:64.040209pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h18{height:413.165333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:207.298721pt;}
.w6{width:439.069333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc0{left:-78.812000pt;}
.xc1{left:-50.492094pt;}
.x0{left:0.000000pt;}
.xa{left:26.021437pt;}
.x6{left:50.623837pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:102.046667pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.x9a{left:112.970667pt;}
.xab{left:117.777333pt;}
.xb4{left:123.102667pt;}
.x48{left:124.896000pt;}
.xd{left:130.393333pt;}
.x2a{left:132.797333pt;}
.xb2{left:137.398667pt;}
.x66{left:140.468000pt;}
.xaa{left:141.585333pt;}
.xa9{left:146.948000pt;}
.x40{left:147.962667pt;}
.x41{left:149.960000pt;}
.xca{left:156.566667pt;}
.xda{left:158.988000pt;}
.x65{left:161.049333pt;}
.x7a{left:163.489333pt;}
.xdb{left:165.516000pt;}
.xdd{left:168.538667pt;}
.xb{left:170.366667pt;}
.xde{left:174.516000pt;}
.xbf{left:177.316000pt;}
.xc{left:179.585333pt;}
.x4{left:180.874667pt;}
.x7b{left:181.904000pt;}
.x28{left:183.520000pt;}
.xc3{left:184.829333pt;}
.xa1{left:188.501333pt;}
.x7c{left:190.890667pt;}
.x2c{left:192.412000pt;}
.xb3{left:193.554667pt;}
.x34{left:194.505333pt;}
.x29{left:196.804000pt;}
.xaf{left:198.168000pt;}
.x9e{left:199.582667pt;}
.xa2{left:201.785333pt;}
.x7d{left:204.174667pt;}
.x2d{left:205.696000pt;}
.x7e{left:207.561333pt;}
.x67{left:210.553333pt;}
.xb0{left:211.452000pt;}
.x9f{left:212.866667pt;}
.x3f{left:214.088000pt;}
.xa0{left:216.154667pt;}
.xa3{left:218.322667pt;}
.xcb{left:219.544000pt;}
.x7f{left:220.845333pt;}
.xe1{left:222.272000pt;}
.x80{left:224.232000pt;}
.xcc{left:225.521333pt;}
.x92{left:226.918667pt;}
.x42{left:229.752000pt;}
.xa4{left:234.861333pt;}
.x88{left:236.118667pt;}
.x81{left:237.516000pt;}
.x93{left:240.202667pt;}
.x94{left:243.590667pt;}
.xd7{left:244.568000pt;}
.xcd{left:249.270667pt;}
.xb7{left:251.397333pt;}
.x39{left:253.252000pt;}
.x2e{left:255.953333pt;}
.x95{left:256.873333pt;}
.x96{left:263.648000pt;}
.x3a{left:266.534667pt;}
.x2f{left:269.237333pt;}
.x3b{left:273.044000pt;}
.x1c{left:277.649333pt;}
.x49{left:279.468000pt;}
.x14{left:282.229333pt;}
.xa8{left:283.398667pt;}
.x1d{left:284.290667pt;}
.x3c{left:286.328000pt;}
.x15{left:288.872000pt;}
.xe0{left:291.097333pt;}
.x16{left:292.258667pt;}
.x97{left:293.602667pt;}
.x98{left:296.989333pt;}
.x17{left:298.900000pt;}
.xa5{left:306.173333pt;}
.x59{left:308.110667pt;}
.x69{left:310.645333pt;}
.x4c{left:312.004000pt;}
.x99{left:313.661333pt;}
.x38{left:316.613333pt;}
.xa6{left:319.456000pt;}
.x5a{left:321.394667pt;}
.xa7{left:322.813333pt;}
.x5b{left:324.781333pt;}
.x72{left:326.881333pt;}
.x1e{left:329.657333pt;}
.xb9{left:332.126667pt;}
.x73{left:333.522667pt;}
.x74{left:336.904000pt;}
.x5c{left:338.065333pt;}
.x26{left:341.601333pt;}
.x1f{left:342.941333pt;}
.xba{left:345.409333pt;}
.x89{left:346.437333pt;}
.x27{left:348.242667pt;}
.x75{left:350.186667pt;}
.xb8{left:351.456000pt;}
.x76{left:353.568000pt;}
.x78{left:359.620000pt;}
.x30{left:361.685333pt;}
.x77{left:366.852000pt;}
.x8a{left:369.484000pt;}
.x79{left:372.902667pt;}
.x31{left:374.969333pt;}
.x44{left:382.153333pt;}
.x8b{left:389.276000pt;}
.x8c{left:402.560000pt;}
.x3{left:404.408000pt;}
.x53{left:409.505333pt;}
.x24{left:411.100000pt;}
.x5d{left:414.757333pt;}
.xc4{left:417.613333pt;}
.x54{left:422.789333pt;}
.x25{left:424.382667pt;}
.x55{left:426.042667pt;}
.x5e{left:428.040000pt;}
.x5f{left:431.428000pt;}
.xc5{left:434.186667pt;}
.xc2{left:437.988000pt;}
.x56{left:439.326667pt;}
.x57{left:442.581333pt;}
.x60{left:444.712000pt;}
.x12{left:446.094667pt;}
.xc6{left:450.761333pt;}
.x13{left:452.737333pt;}
.x58{left:455.865333pt;}
.x6f{left:462.086667pt;}
.x18{left:463.022667pt;}
.x4d{left:464.396000pt;}
.x70{left:465.474667pt;}
.x4e{left:468.317333pt;}
.x19{left:469.664000pt;}
.x71{left:478.757333pt;}
.x4f{left:480.272000pt;}
.x63{left:481.609333pt;}
.xe{left:486.352000pt;}
.x8d{left:491.818667pt;}
.xf{left:492.993333pt;}
.x64{left:494.892000pt;}
.x10{left:499.768000pt;}
.x46{left:503.089333pt;}
.x11{left:506.409333pt;}
.x3d{left:507.897333pt;}
.xbd{left:510.020000pt;}
.x4b{left:513.096000pt;}
.x3e{left:514.538667pt;}
.x4a{left:515.481333pt;}
.x32{left:516.953333pt;}
.x9c{left:519.752000pt;}
.xbe{left:523.304000pt;}
.x6a{left:528.917333pt;}
.x33{left:530.237333pt;}
.x8e{left:531.402667pt;}
.x9d{left:533.036000pt;}
.x52{left:537.998667pt;}
.xd0{left:540.797333pt;}
.xad{left:542.637333pt;}
.xbb{left:543.533333pt;}
.x8f{left:544.686667pt;}
.x45{left:546.145333pt;}
.x90{left:547.941333pt;}
.x43{left:551.782667pt;}
.xae{left:555.920000pt;}
.xbc{left:556.817333pt;}
.xd8{left:557.876000pt;}
.x51{left:558.896000pt;}
.x91{left:561.224000pt;}
.xd1{left:564.708000pt;}
.x50{left:573.253333pt;}
.x6b{left:576.368000pt;}
.xdf{left:577.300000pt;}
.xc7{left:581.166667pt;}
.x47{left:583.565333pt;}
.x22{left:587.125333pt;}
.x6c{left:589.650667pt;}
.xb1{left:592.024000pt;}
.x6d{left:593.038667pt;}
.xc8{left:594.450667pt;}
.x1a{left:598.530667pt;}
.x23{left:600.409333pt;}
.xd5{left:602.865333pt;}
.x1b{left:605.172000pt;}
.x6e{left:606.322667pt;}
.xac{left:609.012000pt;}
.xc9{left:611.101333pt;}
.xb5{left:612.000000pt;}
.x2b{left:613.533333pt;}
.x61{left:615.921333pt;}
.x9b{left:622.461333pt;}
.x9{left:623.413317pt;}
.xd6{left:626.776000pt;}
.x62{left:629.205333pt;}
.x68{left:631.426667pt;}
.xd2{left:632.461333pt;}
.x82{left:635.402667pt;}
.xb6{left:639.453333pt;}
.xce{left:647.761333pt;}
.x83{left:648.686667pt;}
.x84{left:652.073333pt;}
.xcf{left:654.488000pt;}
.x35{left:656.457333pt;}
.x85{left:665.357333pt;}
.xd9{left:666.273333pt;}
.x36{left:669.740000pt;}
.x86{left:672.132000pt;}
.x37{left:673.028000pt;}
.xdc{left:676.841333pt;}
.xd4{left:678.228000pt;}
.x20{left:679.746667pt;}
.x87{left:685.414667pt;}
.x21{left:686.389333pt;}
.xd3{left:690.117333pt;}
}




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