
    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_d655f90c1b0915d3d23932c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_eefae3f3d5e935f415287b8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_2d513cbed8b3b821d09c9615.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf2daf109c3c78147ea6b0c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_199c742b21751b378b62e125.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_79d41ae866fcb505a88c7e64.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_936d870b584a630e08bbadb9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a2b590f7c33bad6857c22248.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{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);}
.m7{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);}
.mc{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);}
.m2{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);}
.m29{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);}
.ma{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);}
.m8{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);}
.m23{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);}
.m27{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);}
.m17{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);}
.me{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);}
.m25{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);}
.m18{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);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m15{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);}
.mb{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);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.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);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m13{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);}
.m5{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);}
.m16{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);}
.m12{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);}
.m22{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);}
.m19{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);}
.m1b{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);}
.m3{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);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.912000px;}
.v1{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001831px;}
.lsf{letter-spacing:0.648088px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls6{letter-spacing:11.954850px;}
.lsd{letter-spacing:11.955150px;}
.lsc{letter-spacing:14.047266px;}
.lsa{letter-spacing:14.585246px;}
.lsb{letter-spacing:14.764573px;}
.lse{letter-spacing:14.824349px;}
.ls5{letter-spacing:14.943900px;}
.ls4{letter-spacing:15.003676px;}
.ls9{letter-spacing:21.877870px;}
.ls8{letter-spacing:22.834279px;}
.ls3{letter-spacing:28.453654px;}
.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;}
}
.ws1{word-spacing:-16.529216px;}
.ws64{word-spacing:-14.943900px;}
.ws8d{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.ws11{word-spacing:-10.460700px;}
.wsb9{word-spacing:-3.287658px;}
.ws4e{word-spacing:-3.227882px;}
.ws3f{word-spacing:-3.108331px;}
.ws3e{word-spacing:-3.048556px;}
.ws87{word-spacing:-2.689902px;}
.wsd8{word-spacing:-2.636122px;}
.wsd7{word-spacing:-2.582323px;}
.ws5c{word-spacing:-2.570351px;}
.ws4f{word-spacing:-2.450800px;}
.ws9b{word-spacing:-2.391024px;}
.wsc0{word-spacing:-2.331248px;}
.ws88{word-spacing:-2.271473px;}
.wsc5{word-spacing:-2.151936px;}
.ws4d{word-spacing:-2.151922px;}
.ws50{word-spacing:-2.092146px;}
.ws5a{word-spacing:-1.972595px;}
.ws31{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.wsa3{word-spacing:-1.793268px;}
.ws33{word-spacing:-1.733492px;}
.ws65{word-spacing:-1.673717px;}
.ws82{word-spacing:-1.613941px;}
.ws78{word-spacing:-1.554166px;}
.wsb3{word-spacing:-1.494390px;}
.ws76{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws7a{word-spacing:-1.315063px;}
.ws72{word-spacing:-1.255288px;}
.ws71{word-spacing:-1.195512px;}
.wsbe{word-spacing:-1.135736px;}
.wsdd{word-spacing:-1.129766px;}
.ws89{word-spacing:-1.016185px;}
.wsbb{word-spacing:-0.956410px;}
.wsee{word-spacing:-0.860774px;}
.ws7c{word-spacing:-0.836858px;}
.ws37{word-spacing:-0.777083px;}
.ws2e{word-spacing:-0.717307px;}
.ws35{word-spacing:-0.657532px;}
.wse8{word-spacing:-0.591782px;}
.ws95{word-spacing:-0.537984px;}
.ws5e{word-spacing:-0.537980px;}
.wsf9{word-spacing:-0.484186px;}
.wsbc{word-spacing:-0.478205px;}
.ws38{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.358654px;}
.wsca{word-spacing:-0.322790px;}
.ws54{word-spacing:-0.298878px;}
.wsf1{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.wsc6{word-spacing:-0.107597px;}
.ws1d{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.wsdf{word-spacing:-0.010579px;}
.wscb{word-spacing:-0.009302px;}
.wsd2{word-spacing:-0.007114px;}
.wsf0{word-spacing:-0.006662px;}
.wse7{word-spacing:-0.005856px;}
.wsdb{word-spacing:-0.003898px;}
.wse3{word-spacing:-0.003302px;}
.wsd9{word-spacing:-0.002467px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.001648px;}
.ws90{word-spacing:0.053798px;}
.ws34{word-spacing:0.059776px;}
.wsfd{word-spacing:0.075536px;}
.wsda{word-spacing:0.107597px;}
.ws45{word-spacing:0.119551px;}
.ws13{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws7{word-spacing:0.209214px;}
.ws18{word-spacing:0.215194px;}
.ws36{word-spacing:0.239102px;}
.wscf{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws28{word-spacing:0.298878px;}
.wsc8{word-spacing:0.322790px;}
.ws1c{word-spacing:0.358654px;}
.ws39{word-spacing:0.418429px;}
.wsa2{word-spacing:0.430385px;}
.wsea{word-spacing:0.430387px;}
.ws26{word-spacing:0.478205px;}
.wsfb{word-spacing:0.484186px;}
.wsae{word-spacing:0.537980px;}
.ws81{word-spacing:0.597756px;}
.ws44{word-spacing:0.657532px;}
.wsbf{word-spacing:0.717307px;}
.wscd{word-spacing:0.806976px;}
.wsc1{word-spacing:0.836858px;}
.wsf3{word-spacing:0.860774px;}
.ws6a{word-spacing:0.896634px;}
.wsed{word-spacing:0.914573px;}
.ws58{word-spacing:0.956410px;}
.ws19{word-spacing:0.968371px;}
.ws7f{word-spacing:1.016185px;}
.ws20{word-spacing:1.075961px;}
.wscc{word-spacing:1.075968px;}
.ws1f{word-spacing:1.135736px;}
.ws59{word-spacing:1.195512px;}
.wsde{word-spacing:1.237363px;}
.ws66{word-spacing:1.255288px;}
.ws80{word-spacing:1.315063px;}
.ws49{word-spacing:1.374839px;}
.ws79{word-spacing:1.434614px;}
.ws61{word-spacing:1.494390px;}
.ws7d{word-spacing:1.554166px;}
.ws29{word-spacing:1.613941px;}
.ws55{word-spacing:1.673717px;}
.wsef{word-spacing:1.721549px;}
.ws60{word-spacing:1.793268px;}
.ws85{word-spacing:1.853044px;}
.ws63{word-spacing:1.912819px;}
.wse2{word-spacing:1.936742px;}
.ws23{word-spacing:1.972595px;}
.ws8{word-spacing:2.008454px;}
.ws3c{word-spacing:2.032370px;}
.wsdc{word-spacing:2.044339px;}
.wsb5{word-spacing:2.092146px;}
.ws9c{word-spacing:2.151922px;}
.ws53{word-spacing:2.211697px;}
.ws6e{word-spacing:2.271473px;}
.ws15{word-spacing:2.313331px;}
.ws2f{word-spacing:2.391024px;}
.ws3b{word-spacing:2.450800px;}
.wsd4{word-spacing:2.474726px;}
.wsba{word-spacing:2.510575px;}
.wsad{word-spacing:2.570351px;}
.ws6d{word-spacing:2.630126px;}
.ws22{word-spacing:2.689902px;}
.wsf6{word-spacing:2.743718px;}
.wsf5{word-spacing:2.797517px;}
.wsd6{word-spacing:2.851315px;}
.ws43{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.wsf8{word-spacing:2.905114px;}
.ws84{word-spacing:2.929004px;}
.wsd1{word-spacing:2.958912px;}
.ws62{word-spacing:2.988780px;}
.ws57{word-spacing:3.048556px;}
.ws40{word-spacing:3.108331px;}
.wsd3{word-spacing:3.120307px;}
.ws86{word-spacing:3.168107px;}
.ws1a{word-spacing:3.219667px;}
.wsf4{word-spacing:3.223805px;}
.wsfc{word-spacing:3.224083px;}
.wsec{word-spacing:3.225725px;}
.wsfa{word-spacing:3.226454px;}
.wsf2{word-spacing:3.226934px;}
.ws56{word-spacing:3.227882px;}
.wsc9{word-spacing:3.227904px;}
.wsf7{word-spacing:3.228346px;}
.ws52{word-spacing:3.347434px;}
.wsd5{word-spacing:3.389299px;}
.ws7b{word-spacing:3.407209px;}
.wse9{word-spacing:3.443098px;}
.ws69{word-spacing:3.466985px;}
.wse6{word-spacing:3.496896px;}
.ws21{word-spacing:3.526760px;}
.wse4{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.ws46{word-spacing:3.646312px;}
.ws3a{word-spacing:3.706087px;}
.wsd0{word-spacing:3.765888px;}
.wsc7{word-spacing:3.819686px;}
.ws7e{word-spacing:3.825638px;}
.ws4c{word-spacing:3.885414px;}
.wsc2{word-spacing:4.034880px;}
.ws2b{word-spacing:4.064741px;}
.wsb8{word-spacing:4.184292px;}
.ws27{word-spacing:4.244068px;}
.wsa5{word-spacing:4.303843px;}
.ws5f{word-spacing:4.423394px;}
.wsbd{word-spacing:4.483170px;}
.ws42{word-spacing:4.542946px;}
.ws77{word-spacing:4.602721px;}
.wsc3{word-spacing:4.626662px;}
.ws2d{word-spacing:4.662497px;}
.ws51{word-spacing:4.841824px;}
.wse5{word-spacing:4.841856px;}
.ws83{word-spacing:4.901599px;}
.wsc4{word-spacing:5.003251px;}
.ws2a{word-spacing:5.021150px;}
.wsfe{word-spacing:5.057050px;}
.ws41{word-spacing:5.140702px;}
.ws73{word-spacing:5.260253px;}
.wse0{word-spacing:5.326042px;}
.ws4b{word-spacing:5.499355px;}
.ws6c{word-spacing:5.559131px;}
.wsb6{word-spacing:5.618906px;}
.ws74{word-spacing:5.738458px;}
.ws48{word-spacing:5.798233px;}
.ws47{word-spacing:5.917784px;}
.ws99{word-spacing:6.037336px;}
.wsf{word-spacing:6.067206px;}
.wsce{word-spacing:6.079219px;}
.ws10{word-spacing:6.150892px;}
.wsaf{word-spacing:6.156887px;}
.ws6b{word-spacing:6.276438px;}
.ws5b{word-spacing:6.395989px;}
.ws67{word-spacing:6.455765px;}
.ws5d{word-spacing:6.515540px;}
.ws6f{word-spacing:6.754643px;}
.ws70{word-spacing:6.814418px;}
.wseb{word-spacing:6.886195px;}
.ws9a{word-spacing:7.113296px;}
.wsb7{word-spacing:7.173072px;}
.wsa4{word-spacing:7.412174px;}
.ws68{word-spacing:7.890379px;}
.ws32{word-spacing:7.950155px;}
.wsb4{word-spacing:8.069706px;}
.ws4a{word-spacing:8.308808px;}
.wsd{word-spacing:8.661460px;}
.ws75{word-spacing:12.194222px;}
.wsff{word-spacing:13.449600px;}
.wse1{word-spacing:14.095181px;}
.ws6{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.wsc{word-spacing:17.699504px;}
.wse{word-spacing:27.448877px;}
.wsab{word-spacing:80.140704px;}
.wsa8{word-spacing:89.932819px;}
.ws91{word-spacing:97.591296px;}
.wsaa{word-spacing:100.710605px;}
.ws97{word-spacing:112.652016px;}
.wsa6{word-spacing:114.160205px;}
.ws96{word-spacing:116.846016px;}
.ws9f{word-spacing:118.786867px;}
.ws8e{word-spacing:119.480419px;}
.ws9e{word-spacing:123.467328px;}
.wsa0{word-spacing:123.521126px;}
.wsa1{word-spacing:127.125619px;}
.ws92{word-spacing:128.546016px;}
.ws9d{word-spacing:140.575219px;}
.wsa9{word-spacing:147.784205px;}
.wsa7{word-spacing:157.575514px;}
.ws8c{word-spacing:161.768419px;}
.ws93{word-spacing:161.876016px;}
.ws94{word-spacing:169.028016px;}
.ws8f{word-spacing:170.245296px;}
.ws98{word-spacing:177.908016px;}
.ws8a{word-spacing:309.340800px;}
.ws8b{word-spacing:354.974467px;}
.wsb2{word-spacing:431.086579px;}
.wsb1{word-spacing:441.496819px;}
.wsb0{word-spacing:453.520512px;}
.wsac{word-spacing:1612.176653px;}
._1{margin-left:-23.252708px;}
._62{margin-left:-22.248472px;}
._64{margin-left:-20.258064px;}
._8{margin-left:-16.276849px;}
._61{margin-left:-7.770828px;}
._3{margin-left:-6.635092px;}
._4{margin-left:-5.499355px;}
._9{margin-left:-3.849538px;}
._b{margin-left:-2.343197px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._7{width:2.343197px;}
._0{width:3.347434px;}
._63{width:4.542946px;}
._d{width:11.094379px;}
._a{width:12.971268px;}
._15{width:14.821688px;}
._e{width:16.408512px;}
._1d{width:17.574026px;}
._13{width:18.657554px;}
._f{width:20.013005px;}
._14{width:21.646334px;}
._10{width:23.336383px;}
._12{width:25.232870px;}
._11{width:27.197898px;}
._19{width:28.285680px;}
._18{width:29.620259px;}
._65{width:31.282217px;}
._c{width:32.637384px;}
._1a{width:33.916664px;}
._1b{width:36.650010px;}
._1e{width:38.256384px;}
._1c{width:39.451896px;}
._49{width:41.467934px;}
._4a{width:57.582176px;}
._2{width:84.310278px;}
._4c{width:118.679270px;}
._4b{width:123.144538px;}
._4d{width:124.650893px;}
._50{width:128.201587px;}
._4e{width:130.622515px;}
._35{width:138.315686px;}
._3f{width:140.575219px;}
._3b{width:146.062656px;}
._2a{width:148.698778px;}
._3c{width:150.097536px;}
._39{width:152.572262px;}
._3e{width:154.024819px;}
._3d{width:157.091328px;}
._51{width:160.642022px;}
._4f{width:161.825587px;}
._3a{width:168.980774px;}
._33{width:170.863718px;}
._55{width:195.019200px;}
._30{width:204.218726px;}
._2e{width:209.437171px;}
._2b{width:236.443968px;}
._2d{width:255.918989px;}
._2f{width:283.248576px;}
._38{width:289.327795px;}
._23{width:297.935539px;}
._32{width:302.185613px;}
._26{width:305.790106px;}
._31{width:324.834739px;}
._2c{width:340.005888px;}
._21{width:348.828826px;}
._56{width:355.392230px;}
._48{width:385.459682px;}
._40{width:402.250637px;}
._37{width:410.804582px;}
._60{width:420.004109px;}
._5e{width:428.880845px;}
._5f{width:439.317734px;}
._5c{width:449.455781px;}
._5b{width:466.970112px;}
._5d{width:472.080960px;}
._5a{width:477.060264px;}
._20{width:486.552730px;}
._25{width:488.220480px;}
._58{width:491.448384px;}
._59{width:507.014010px;}
._34{width:514.151309px;}
._24{width:525.825562px;}
._57{width:534.218112px;}
._28{width:577.741018px;}
._22{width:589.791859px;}
._27{width:593.181158px;}
._29{width:626.482368px;}
._41{width:663.872256px;}
._16{width:728.212097px;}
._52{width:834.413184px;}
._53{width:836.296128px;}
._54{width:863.464320px;}
._42{width:925.493875px;}
._1f{width:986.232269px;}
._43{width:1187.169293px;}
._44{width:1448.790912px;}
._45{width:1710.466330px;}
._46{width:1972.062470px;}
._47{width:2233.698470px;}
._36{width:2246.606402px;}
._17{width:2270.516402px;}
.fc5{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fs5{font-size:52.197584px;}
.fsd{font-size:53.798400px;}
.fse{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.425340px;}
.y25{bottom:5.788613px;}
.y2b{bottom:14.151273px;}
.y24{bottom:22.317924px;}
.y6f{bottom:31.890000px;}
.y23{bottom:38.654567px;}
.y5{bottom:66.525004px;}
.y248{bottom:88.993500px;}
.y130{bottom:94.591500px;}
.y4{bottom:97.125005px;}
.y296{bottom:97.191000px;}
.y45{bottom:102.823500px;}
.y2cb{bottom:103.557000px;}
.y6e{bottom:103.621500px;}
.y21a{bottom:103.666500px;}
.yd9{bottom:105.799500px;}
.y27c{bottom:106.246500px;}
.ya5{bottom:107.574000px;}
.y247{bottom:107.823000px;}
.y14a{bottom:112.524000px;}
.y12f{bottom:113.421000px;}
.y295{bottom:114.451500px;}
.y44{bottom:120.711000px;}
.y2ca{bottom:120.817500px;}
.y6d{bottom:122.449500px;}
.y219{bottom:122.496000px;}
.yd8{bottom:124.627500px;}
.y106{bottom:125.076000px;}
.ya4{bottom:126.403500px;}
.y246{bottom:126.652500px;}
.y294{bottom:131.712000px;}
.y12e{bottom:132.250500px;}
.y2c9{bottom:138.078000px;}
.y43{bottom:138.600000px;}
.y21{bottom:139.264499px;}
.y6c{bottom:141.279000px;}
.y218{bottom:141.325500px;}
.yd7{bottom:143.457000px;}
.y105{bottom:143.905500px;}
.ya3{bottom:145.233000px;}
.y245{bottom:145.482000px;}
.y293{bottom:148.972500px;}
.y149{bottom:149.286000px;}
.y12d{bottom:151.080000px;}
.y2c8{bottom:155.338500px;}
.y42{bottom:156.487500px;}
.y1e9{bottom:157.051500px;}
.y6b{bottom:160.108500px;}
.y217{bottom:160.155000px;}
.yd6{bottom:162.286500px;}
.y104{bottom:162.735000px;}
.ya2{bottom:164.062500px;}
.y244{bottom:164.311500px;}
.y292{bottom:166.233000px;}
.y148{bottom:168.115500px;}
.y12c{bottom:169.909500px;}
.y2c7{bottom:172.599000px;}
.y41{bottom:174.375000px;}
.y1e8{bottom:175.881000px;}
.y6a{bottom:178.938000px;}
.y216{bottom:178.984500px;}
.yd5{bottom:181.116000px;}
.y103{bottom:181.564500px;}
.ya1{bottom:182.892000px;}
.y243{bottom:183.141000px;}
.y291{bottom:183.493500px;}
.y147{bottom:186.945000px;}
.y1b8{bottom:189.811500px;}
.y1b4{bottom:189.847500px;}
.y2c6{bottom:189.858000px;}
.y40{bottom:192.264000px;}
.y12b{bottom:193.221000px;}
.y1e7{bottom:194.710500px;}
.y18{bottom:196.933500px;}
.y69{bottom:197.767500px;}
.y215{bottom:197.814000px;}
.yd4{bottom:199.945500px;}
.y102{bottom:200.394000px;}
.y290{bottom:200.752500px;}
.ya0{bottom:201.721500px;}
.y242{bottom:201.970500px;}
.y146{bottom:205.774500px;}
.y1b7{bottom:206.250000px;}
.y1b3{bottom:206.286000px;}
.y2c5{bottom:207.118500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3f{bottom:210.151500px;}
.y1e6{bottom:213.540000px;}
.y68{bottom:216.597000px;}
.y28f{bottom:218.013000px;}
.yd3{bottom:218.775000px;}
.y101{bottom:219.223500px;}
.y9f{bottom:220.551000px;}
.y241{bottom:220.800000px;}
.y214{bottom:221.125500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1b6{bottom:222.688500px;}
.y1b2{bottom:222.724500px;}
.y2c4{bottom:224.379000px;}
.y145{bottom:224.604000px;}
.y3e{bottom:228.039000px;}
.y1e5{bottom:232.369500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y28e{bottom:235.273500px;}
.y67{bottom:235.426500px;}
.yd2{bottom:237.604500px;}
.y100{bottom:238.053000px;}
.y1b5{bottom:239.127000px;}
.y1b1{bottom:239.163000px;}
.y9e{bottom:239.380500px;}
.y273{bottom:239.629500px;}
.y2c3{bottom:241.639500px;}
.y27b{bottom:242.536500px;}
.y144{bottom:243.433500px;}
.y12a{bottom:244.777500px;}
.y240{bottom:250.236000px;}
.y1e4{bottom:251.199000px;}
.y28d{bottom:252.534000px;}
.y66{bottom:254.256000px;}
.y213{bottom:254.749500px;}
.yd1{bottom:256.434000px;}
.yff{bottom:256.882500px;}
.y9d{bottom:258.210000px;}
.y272{bottom:258.459000px;}
.y2c2{bottom:258.900000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y143{bottom:262.263000px;}
.y1b0{bottom:262.767000px;}
.y129{bottom:263.607000px;}
.y1ac{bottom:266.709000px;}
.y23f{bottom:269.080500px;}
.y28c{bottom:269.794500px;}
.y1e3{bottom:270.028500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y65{bottom:273.085500px;}
.y212{bottom:273.579000px;}
.yd0{bottom:275.263500px;}
.yfe{bottom:275.712000px;}
.y27a{bottom:276.160500px;}
.y9c{bottom:277.039500px;}
.y271{bottom:277.288500px;}
.y1af{bottom:279.205500px;}
.y142{bottom:281.092500px;}
.y1ab{bottom:283.147500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y23e{bottom:285.519000px;}
.y28b{bottom:287.055000px;}
.y1e2{bottom:288.858000px;}
.y64{bottom:291.915000px;}
.y211{bottom:292.408500px;}
.y2c1{bottom:293.421000px;}
.ycf{bottom:294.093000px;}
.yfd{bottom:294.541500px;}
.y279{bottom:294.990000px;}
.y1ae{bottom:295.644000px;}
.y9b{bottom:295.869000px;}
.y270{bottom:296.118000px;}
.y141{bottom:299.922000px;}
.y128{bottom:300.370500px;}
.y23d{bottom:301.957500px;}
.y28a{bottom:304.315500px;}
.y3d{bottom:307.299000px;}
.y1e1{bottom:307.687500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2c0{bottom:310.681500px;}
.y63{bottom:310.744500px;}
.y210{bottom:311.238000px;}
.y1ad{bottom:312.082500px;}
.yce{bottom:312.922500px;}
.yfc{bottom:313.371000px;}
.y278{bottom:313.819500px;}
.y9a{bottom:314.698500px;}
.y26f{bottom:314.947500px;}
.y140{bottom:318.751500px;}
.y127{bottom:319.200000px;}
.y289{bottom:321.576000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y3c{bottom:325.186500px;}
.y23c{bottom:325.597500px;}
.y1e0{bottom:326.517000px;}
.y2bf{bottom:327.940500px;}
.y62{bottom:329.574000px;}
.y20f{bottom:330.067500px;}
.ycd{bottom:331.752000px;}
.yfb{bottom:332.200500px;}
.y277{bottom:332.649000px;}
.y99{bottom:333.528000px;}
.y26e{bottom:333.777000px;}
.y239{bottom:335.490000px;}
.y23b{bottom:335.641500px;}
.y1aa{bottom:335.724000px;}
.y13f{bottom:337.581000px;}
.y126{bottom:338.028000px;}
.y3b{bottom:343.074000px;}
.y288{bottom:343.318500px;}
.y1a9{bottom:343.942500px;}
.y2be{bottom:345.201000px;}
.yf{bottom:348.133500px;}
.y61{bottom:348.403500px;}
.y20e{bottom:348.897000px;}
.y23a{bottom:349.239000px;}
.y1df{bottom:349.830000px;}
.y169{bottom:350.581500px;}
.yfa{bottom:351.030000px;}
.y276{bottom:351.478500px;}
.y98{bottom:352.356000px;}
.y26d{bottom:352.606500px;}
.ycc{bottom:355.065000px;}
.y13e{bottom:356.410500px;}
.y125{bottom:356.857500px;}
.y3a{bottom:360.963000px;}
.y2bd{bottom:362.461500px;}
.y60{bottom:367.233000px;}
.y1a8{bottom:368.599500px;}
.y168{bottom:369.411000px;}
.y16b{bottom:369.859500px;}
.y1de{bottom:370.003500px;}
.y275{bottom:370.308000px;}
.y97{bottom:371.185500px;}
.y26c{bottom:371.436000px;}
.yf9{bottom:374.343000px;}
.y124{bottom:375.687000px;}
.y1a6{bottom:376.819500px;}
.y287{bottom:376.942500px;}
.y13d{bottom:379.722000px;}
.y238{bottom:380.857500px;}
.y20d{bottom:382.072500px;}
.y1a7{bottom:385.038000px;}
.y5f{bottom:386.062500px;}
.ye{bottom:386.785499px;}
.y167{bottom:388.240500px;}
.ycb{bottom:388.689000px;}
.y274{bottom:389.137500px;}
.y19e{bottom:389.184000px;}
.y96{bottom:390.015000px;}
.y26b{bottom:390.265500px;}
.y123{bottom:394.516500px;}
.y20c{bottom:396.270000px;}
.y2bc{bottom:396.982500px;}
.y39{bottom:399.024000px;}
.y1a5{bottom:401.476500px;}
.y286{bottom:403.483500px;}
.y1dd{bottom:403.627500px;}
.y5e{bottom:404.892000px;}
.y19d{bottom:405.622500px;}
.y166{bottom:407.070000px;}
.yca{bottom:407.518500px;}
.yf8{bottom:407.967000px;}
.yd{bottom:408.044999px;}
.y95{bottom:408.844500px;}
.y26a{bottom:409.095000px;}
.y1a3{bottom:409.696500px;}
.y16a{bottom:412.002000px;}
.y122{bottom:413.346000px;}
.y2bb{bottom:414.243000px;}
.y237{bottom:416.479500px;}
.y38{bottom:416.913000px;}
.y1a4{bottom:417.915000px;}
.y20b{bottom:419.017500px;}
.y285{bottom:421.057500px;}
.y19c{bottom:422.061000px;}
.y1dc{bottom:422.457000px;}
.y5d{bottom:423.721500px;}
.y165{bottom:425.899500px;}
.yc9{bottom:426.348000px;}
.yf7{bottom:426.796500px;}
.y269{bottom:427.923000px;}
.y13c{bottom:431.280000px;}
.y2ba{bottom:431.503500px;}
.y94{bottom:432.157500px;}
.y121{bottom:432.175500px;}
.y1a2{bottom:434.353500px;}
.y37{bottom:434.800500px;}
.y236{bottom:435.324000px;}
.y20a{bottom:435.454500px;}
.y284{bottom:438.631500px;}
.y1db{bottom:441.286500px;}
.y5c{bottom:442.551000px;}
.y164{bottom:444.729000px;}
.yc8{bottom:445.177500px;}
.yf6{bottom:445.626000px;}
.y268{bottom:446.752500px;}
.y2b9{bottom:448.764000px;}
.y13b{bottom:450.108000px;}
.y1a1{bottom:450.792000px;}
.y120{bottom:451.005000px;}
.y235{bottom:451.762500px;}
.y209{bottom:451.893000px;}
.y93{bottom:452.332500px;}
.y36{bottom:452.688000px;}
.y1a0{bottom:459.010500px;}
.y1da{bottom:460.116000px;}
.y5b{bottom:461.380500px;}
.y163{bottom:463.558500px;}
.yc7{bottom:464.007000px;}
.yf5{bottom:464.454000px;}
.y283{bottom:465.172500px;}
.y267{bottom:465.582000px;}
.y2b8{bottom:466.024500px;}
.y234{bottom:468.201000px;}
.y208{bottom:468.331500px;}
.y11f{bottom:469.834500px;}
.y35{bottom:470.577000px;}
.y1d9{bottom:478.945500px;}
.y5a{bottom:480.210000px;}
.y162{bottom:482.388000px;}
.y282{bottom:482.746500px;}
.yc6{bottom:482.836500px;}
.yf4{bottom:483.283500px;}
.y19f{bottom:483.669000px;}
.y266{bottom:484.411500px;}
.y207{bottom:484.770000px;}
.y92{bottom:485.956500px;}
.y13a{bottom:486.871500px;}
.y233{bottom:491.841000px;}
.y1d8{bottom:497.775000px;}
.y59{bottom:499.039500px;}
.y2b7{bottom:500.544000px;}
.y206{bottom:501.208500px;}
.y161{bottom:501.217500px;}
.yc5{bottom:501.666000px;}
.yf3{bottom:502.113000px;}
.yc{bottom:502.864502px;}
.y265{bottom:503.241000px;}
.y91{bottom:504.786000px;}
.y139{bottom:505.701000px;}
.y34{bottom:506.397000px;}
.y11e{bottom:506.596500px;}
.y19b{bottom:507.309000px;}
.y281{bottom:509.287500px;}
.y1d7{bottom:516.604500px;}
.y205{bottom:517.647000px;}
.y2b6{bottom:517.804500px;}
.y58{bottom:517.869000px;}
.y160{bottom:520.047000px;}
.yc4{bottom:520.495500px;}
.yb{bottom:520.864502px;}
.yf2{bottom:520.942500px;}
.y264{bottom:522.070500px;}
.y232{bottom:523.461000px;}
.y90{bottom:523.615500px;}
.y33{bottom:524.286000px;}
.y138{bottom:524.530500px;}
.y11d{bottom:525.426000px;}
.y280{bottom:526.861500px;}
.y19a{bottom:530.950500px;}
.y204{bottom:534.085500px;}
.y2b5{bottom:535.065000px;}
.y1d6{bottom:535.434000px;}
.y57{bottom:536.698500px;}
.ya{bottom:538.864499px;}
.y15f{bottom:538.876500px;}
.yc3{bottom:539.323500px;}
.yf1{bottom:539.772000px;}
.y263{bottom:540.900000px;}
.y32{bottom:542.173500px;}
.y8f{bottom:542.445000px;}
.y195{bottom:543.109500px;}
.y137{bottom:543.360000px;}
.y27f{bottom:544.435500px;}
.y199{bottom:547.389000px;}
.y203{bottom:550.524000px;}
.y2b4{bottom:552.325500px;}
.y1d5{bottom:554.263500px;}
.y9{bottom:556.864499px;}
.y15e{bottom:557.706000px;}
.yc2{bottom:558.153000px;}
.yf0{bottom:558.601500px;}
.y194{bottom:559.548000px;}
.y262{bottom:559.729500px;}
.y56{bottom:560.010000px;}
.y31{bottom:560.061000px;}
.y231{bottom:560.245500px;}
.y8e{bottom:561.274500px;}
.y27e{bottom:562.009500px;}
.y11c{bottom:562.188000px;}
.y198{bottom:563.827500px;}
.y202{bottom:566.962500px;}
.y2b3{bottom:569.586000px;}
.y197{bottom:572.046000px;}
.y1d4{bottom:573.093000px;}
.y193{bottom:575.986500px;}
.y15d{bottom:576.535500px;}
.yc1{bottom:576.982500px;}
.yef{bottom:577.431000px;}
.y30{bottom:577.950000px;}
.y261{bottom:578.559000px;}
.y230{bottom:579.075000px;}
.y27d{bottom:579.583500px;}
.y8d{bottom:580.104000px;}
.y11b{bottom:581.017500px;}
.y201{bottom:583.401000px;}
.y2b2{bottom:586.846500px;}
.y1d3{bottom:591.922500px;}
.y15c{bottom:595.365000px;}
.yc0{bottom:595.812000px;}
.y2f{bottom:595.837500px;}
.yee{bottom:596.260500px;}
.y196{bottom:596.703000px;}
.y260{bottom:597.388500px;}
.y22f{bottom:597.904500px;}
.y8c{bottom:598.932000px;}
.y200{bottom:599.838000px;}
.y11a{bottom:599.847000px;}
.y2b1{bottom:604.107000px;}
.y1d2{bottom:610.752000px;}
.y2e{bottom:613.725000px;}
.y15b{bottom:614.194500px;}
.ybf{bottom:614.641500px;}
.yed{bottom:615.090000px;}
.y25f{bottom:616.218000px;}
.y1ff{bottom:616.276500px;}
.y22e{bottom:616.734000px;}
.y8b{bottom:617.761500px;}
.y119{bottom:618.676500px;}
.y192{bottom:620.344500px;}
.y2b0{bottom:621.366000px;}
.y190{bottom:628.563000px;}
.y1d1{bottom:629.581500px;}
.y2d{bottom:631.614000px;}
.y1fe{bottom:632.715000px;}
.y15a{bottom:633.022500px;}
.ybe{bottom:633.471000px;}
.yec{bottom:633.919500px;}
.y25e{bottom:635.047500px;}
.y55{bottom:635.160000px;}
.y22d{bottom:635.563500px;}
.y8a{bottom:636.591000px;}
.y191{bottom:636.783000px;}
.y118{bottom:637.506000px;}
.y2af{bottom:638.626500px;}
.y8{bottom:645.510000px;}
.y1d0{bottom:648.411000px;}
.y1fd{bottom:649.153500px;}
.y159{bottom:651.852000px;}
.ybd{bottom:652.300500px;}
.yeb{bottom:652.749000px;}
.y18f{bottom:653.221500px;}
.y25d{bottom:653.877000px;}
.y2a{bottom:653.984964px;}
.y22c{bottom:654.393000px;}
.y89{bottom:655.420500px;}
.y2ae{bottom:655.887000px;}
.y117{bottom:656.335500px;}
.y188{bottom:661.272000px;}
.y1fc{bottom:665.592000px;}
.y7{bottom:666.771000px;}
.y1cf{bottom:667.240500px;}
.y18e{bottom:669.660000px;}
.y158{bottom:670.681500px;}
.ybc{bottom:671.130000px;}
.yea{bottom:671.578500px;}
.y54{bottom:672.550500px;}
.y25c{bottom:672.706500px;}
.y2ad{bottom:673.147500px;}
.y22b{bottom:673.222500px;}
.y88{bottom:674.250000px;}
.y116{bottom:675.165000px;}
.y187{bottom:677.709000px;}
.y1fb{bottom:682.030500px;}
.y1ce{bottom:686.070000px;}
.y18c{bottom:686.097000px;}
.y157{bottom:689.511000px;}
.ybb{bottom:689.959500px;}
.ye9{bottom:690.408000px;}
.y25b{bottom:691.536000px;}
.y53{bottom:692.007000px;}
.y22a{bottom:692.052000px;}
.y87{bottom:693.079500px;}
.y136{bottom:693.097500px;}
.y115{bottom:693.994500px;}
.y186{bottom:694.147500px;}
.y1fa{bottom:698.469000px;}
.y18d{bottom:702.535500px;}
.y1cd{bottom:704.899500px;}
.y2ac{bottom:707.668500px;}
.y156{bottom:708.340500px;}
.yba{bottom:708.789000px;}
.ye8{bottom:709.237500px;}
.y25a{bottom:710.365500px;}
.y185{bottom:710.586000px;}
.y229{bottom:710.880000px;}
.y52{bottom:711.465000px;}
.y86{bottom:711.909000px;}
.y114{bottom:712.824000px;}
.y1f9{bottom:714.907500px;}
.y18b{bottom:718.974000px;}
.y2ab{bottom:724.929000px;}
.y6{bottom:726.298500px;}
.y155{bottom:727.170000px;}
.yb9{bottom:727.618500px;}
.ye7{bottom:728.067000px;}
.y1cc{bottom:728.211000px;}
.y259{bottom:729.195000px;}
.y228{bottom:729.709500px;}
.y135{bottom:729.861000px;}
.y85{bottom:730.738500px;}
.y51{bottom:730.921500px;}
.y1f8{bottom:731.346000px;}
.y189{bottom:735.412500px;}
.y2aa{bottom:742.189500px;}
.y154{bottom:745.999500px;}
.yb8{bottom:746.448000px;}
.ye6{bottom:746.896500px;}
.y1f7{bottom:747.784500px;}
.y258{bottom:748.024500px;}
.y134{bottom:748.690500px;}
.y84{bottom:749.568000px;}
.y113{bottom:749.586000px;}
.y50{bottom:750.379500px;}
.y18a{bottom:751.851000px;}
.y3{bottom:752.599495px;}
.y2a9{bottom:759.450000px;}
.y1f6{bottom:764.221500px;}
.y153{bottom:764.829000px;}
.yb7{bottom:765.277500px;}
.ye5{bottom:765.726000px;}
.y257{bottom:766.854000px;}
.y133{bottom:767.518500px;}
.y227{bottom:768.114000px;}
.y1cb{bottom:768.195000px;}
.y83{bottom:768.397500px;}
.y4f{bottom:769.836000px;}
.y184{bottom:775.492500px;}
.y2a8{bottom:776.709000px;}
.y1f5{bottom:780.660000px;}
.y152{bottom:783.658500px;}
.yb6{bottom:784.107000px;}
.ye4{bottom:784.555500px;}
.y112{bottom:786.348000px;}
.y226{bottom:786.957000px;}
.y82{bottom:787.227000px;}
.y4e{bottom:789.292500px;}
.y1ca{bottom:789.897000px;}
.y256{bottom:790.167000px;}
.y17f{bottom:791.761500px;}
.y183{bottom:791.929500px;}
.y2a7{bottom:793.969500px;}
.y1f4{bottom:797.098500px;}
.y1c9{bottom:798.115500px;}
.y151{bottom:802.488000px;}
.yb5{bottom:802.936500px;}
.ye3{bottom:803.385000px;}
.y225{bottom:803.395500px;}
.y111{bottom:805.177500px;}
.y81{bottom:806.056500px;}
.y17e{bottom:808.200000px;}
.y182{bottom:808.368000px;}
.y4d{bottom:808.750500px;}
.y2a6{bottom:811.230000px;}
.y1f3{bottom:813.537000px;}
.y224{bottom:819.834000px;}
.y150{bottom:821.317500px;}
.yb4{bottom:821.766000px;}
.ye2{bottom:822.214500px;}
.y1c8{bottom:822.774000px;}
.y110{bottom:824.007000px;}
.y17d{bottom:824.638500px;}
.y181{bottom:824.806500px;}
.y80{bottom:824.886000px;}
.y255{bottom:826.917000px;}
.y4c{bottom:828.207000px;}
.y2a5{bottom:828.490500px;}
.y1f2{bottom:829.975500px;}
.y1c7{bottom:830.992500px;}
.y223{bottom:836.272500px;}
.y14f{bottom:840.147000px;}
.yb3{bottom:840.595500px;}
.ye1{bottom:841.044000px;}
.y180{bottom:841.245000px;}
.y10f{bottom:842.836500px;}
.y7f{bottom:843.715500px;}
.y2a4{bottom:845.751000px;}
.y254{bottom:845.761500px;}
.y1f1{bottom:846.414000px;}
.y1c1{bottom:847.261500px;}
.y4b{bottom:847.663500px;}
.y222{bottom:852.711000px;}
.y1c6{bottom:855.649500px;}
.y14e{bottom:858.976500px;}
.yb2{bottom:859.425000px;}
.ye0{bottom:859.873500px;}
.y10e{bottom:861.666000px;}
.y253{bottom:862.200000px;}
.y7e{bottom:862.545000px;}
.y1f0{bottom:862.852500px;}
.y2a3{bottom:863.011500px;}
.y1c0{bottom:863.700000px;}
.y1c5{bottom:863.869500px;}
.y17c{bottom:864.886500px;}
.y4a{bottom:867.121500px;}
.y220{bottom:869.148000px;}
.y221{bottom:869.149500px;}
.yb1{bottom:878.254500px;}
.y252{bottom:878.637000px;}
.ydf{bottom:878.703000px;}
.y1ef{bottom:879.291000px;}
.y2{bottom:879.369000px;}
.y2a2{bottom:880.272000px;}
.y10d{bottom:880.495500px;}
.y17b{bottom:881.325000px;}
.y7d{bottom:881.374500px;}
.y14d{bottom:882.289500px;}
.y175{bottom:885.265500px;}
.y21f{bottom:885.586500px;}
.y49{bottom:886.578000px;}
.y1c4{bottom:888.526500px;}
.y251{bottom:895.075500px;}
.y1ee{bottom:895.729500px;}
.yb0{bottom:897.084000px;}
.yde{bottom:897.532500px;}
.y17a{bottom:897.762000px;}
.y132{bottom:898.428000px;}
.y10c{bottom:899.325000px;}
.y7c{bottom:900.204000px;}
.y174{bottom:901.704000px;}
.y21e{bottom:902.025000px;}
.y14c{bottom:902.463000px;}
.y1c3{bottom:904.965000px;}
.y250{bottom:911.514000px;}
.y1ed{bottom:912.168000px;}
.y1c2{bottom:913.183500px;}
.y179{bottom:914.200500px;}
.y2a1{bottom:914.793000px;}
.yaf{bottom:915.913500px;}
.ydd{bottom:916.362000px;}
.y131{bottom:917.257500px;}
.y173{bottom:918.142500px;}
.y10b{bottom:918.154500px;}
.y21d{bottom:918.463500px;}
.y7b{bottom:919.033500px;}
.y48{bottom:921.826500px;}
.y24f{bottom:927.952500px;}
.y1ec{bottom:928.606500px;}
.y178{bottom:930.639000px;}
.y2a0{bottom:932.052000px;}
.y172{bottom:934.579500px;}
.yae{bottom:934.743000px;}
.ydc{bottom:935.191500px;}
.y14b{bottom:936.087000px;}
.y10a{bottom:936.984000px;}
.y7a{bottom:937.863000px;}
.y47{bottom:937.966500px;}
.y177{bottom:938.859000px;}
.y21c{bottom:942.105000px;}
.y24e{bottom:944.391000px;}
.y1bf{bottom:945.043500px;}
.y29f{bottom:949.312500px;}
.ydb{bottom:954.021000px;}
.y46{bottom:954.106500px;}
.y109{bottom:955.813500px;}
.y79{bottom:956.692500px;}
.yad{bottom:958.054500px;}
.y24d{bottom:960.829500px;}
.y1be{bottom:961.482000px;}
.y176{bottom:963.516000px;}
.y29e{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.yda{bottom:972.849000px;}
.y21b{bottom:973.723500px;}
.y1ba{bottom:973.848000px;}
.y78{bottom:975.522000px;}
.y24c{bottom:977.268000px;}
.y1bd{bottom:977.920500px;}
.y29d{bottom:983.833500px;}
.y1bc{bottom:986.140500px;}
.y171{bottom:987.157500px;}
.y1b9{bottom:990.286500px;}
.yac{bottom:991.678500px;}
.y108{bottom:992.575500px;}
.y24b{bottom:993.706500px;}
.y77{bottom:994.351500px;}
.y1eb{bottom:994.359000px;}
.y29{bottom:995.302500px;}
.y29c{bottom:1001.094000px;}
.yab{bottom:1010.508000px;}
.y170{bottom:1010.797500px;}
.y107{bottom:1011.405000px;}
.y76{bottom:1013.181000px;}
.y24a{bottom:1017.346500px;}
.y29b{bottom:1018.354500px;}
.y1bb{bottom:1019.017500px;}
.y16f{bottom:1027.236000px;}
.yaa{bottom:1029.337500px;}
.y75{bottom:1032.010500px;}
.y29a{bottom:1035.615000px;}
.y28{bottom:1041.199500px;}
.ya9{bottom:1048.167000px;}
.y249{bottom:1048.966500px;}
.y74{bottom:1050.840000px;}
.y16e{bottom:1050.876000px;}
.y299{bottom:1052.875500px;}
.y1ea{bottom:1061.119500px;}
.ya8{bottom:1066.996500px;}
.y27{bottom:1069.443000px;}
.y73{bottom:1069.669500px;}
.y298{bottom:1070.134500px;}
.y16d{bottom:1074.517500px;}
.ya7{bottom:1085.826000px;}
.y297{bottom:1087.395000px;}
.y72{bottom:1088.499000px;}
.y26{bottom:1097.688000px;}
.ya6{bottom:1104.655500px;}
.y16c{bottom:1106.137500px;}
.y71{bottom:1107.327000px;}
.y22{bottom:1141.174500px;}
.y70{bottom:1173.397500px;}
.h1e{height:15.135660px;}
.h11{height:25.508090px;}
.h14{height:30.461558px;}
.h15{height:30.670772px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h13{height:33.112997px;}
.h12{height:34.199443px;}
.h16{height:34.813397px;}
.h1a{height:35.052500px;}
.hc{height:36.277321px;}
.h17{height:38.734848px;}
.h18{height:39.165235px;}
.h1d{height:39.434227px;}
.h10{height:43.038432px;}
.h19{height:43.516637px;}
.he{height:43.815515px;}
.hd{height:44.827234px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hb{height:50.931027px;}
.h1f{height:52.077235px;}
.h2{height:55.152000px;}
.h1b{height:72.039235px;}
.h1c{height:72.045235px;}
.hf{height:77.469696px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x5{left:54.000000px;}
.x6{left:60.141348px;}
.x3b{left:62.967000px;}
.x22{left:64.096500px;}
.x47{left:66.127500px;}
.x3a{left:67.344000px;}
.x28{left:70.290000px;}
.x35{left:73.471500px;}
.x29{left:74.533500px;}
.x31{left:76.167000px;}
.x3e{left:77.667000px;}
.x41{left:81.493500px;}
.x26{left:85.918500px;}
.x34{left:89.710500px;}
.x21{left:91.218000px;}
.x1{left:102.045000px;}
.x1e{left:103.113000px;}
.x2{left:106.297500px;}
.x27{left:108.708000px;}
.x1c{left:111.741000px;}
.x1f{left:121.780500px;}
.x36{left:123.738000px;}
.x24{left:124.900500px;}
.x23{left:131.713500px;}
.x46{left:134.556000px;}
.x4{left:203.484001px;}
.x61{left:224.490000px;}
.x37{left:247.678500px;}
.x9{left:249.832500px;}
.x8{left:250.897500px;}
.x49{left:259.863000px;}
.x50{left:266.445000px;}
.x4a{left:267.607500px;}
.x58{left:272.968500px;}
.xb{left:282.786000px;}
.x59{left:286.707000px;}
.x5f{left:290.244000px;}
.x17{left:293.499000px;}
.x15{left:294.627000px;}
.x5e{left:297.534000px;}
.x5b{left:298.623000px;}
.x5a{left:302.160000px;}
.x54{left:303.969000px;}
.x44{left:308.398500px;}
.xa{left:309.433500px;}
.x5d{left:310.546500px;}
.x5c{left:311.709000px;}
.xe{left:315.171000px;}
.x2f{left:316.242000px;}
.x1b{left:322.594500px;}
.x2c{left:325.726500px;}
.x2b{left:327.717000px;}
.x4b{left:329.895000px;}
.x2d{left:333.520500px;}
.x53{left:335.133000px;}
.x2a{left:342.988500px;}
.x52{left:344.056500px;}
.x18{left:348.364500px;}
.x16{left:350.307000px;}
.x33{left:352.021500px;}
.x3d{left:353.286000px;}
.x12{left:362.332500px;}
.x20{left:363.439500px;}
.x13{left:372.591000px;}
.x60{left:375.795000px;}
.x4e{left:377.634000px;}
.x4d{left:382.770000px;}
.x1d{left:387.703500px;}
.x19{left:393.180000px;}
.x4c{left:394.539000px;}
.x2e{left:402.205500px;}
.x3c{left:405.483000px;}
.x10{left:412.053000px;}
.x57{left:414.430500px;}
.xf{left:422.796000px;}
.x39{left:437.478000px;}
.x4f{left:441.571500px;}
.x3{left:454.959000px;}
.x3f{left:458.418000px;}
.x43{left:468.760500px;}
.x38{left:499.681500px;}
.x55{left:515.773500px;}
.x30{left:516.930000px;}
.x45{left:525.889500px;}
.x42{left:528.079500px;}
.x11{left:529.360500px;}
.x32{left:537.070500px;}
.x25{left:541.030500px;}
.x40{left:550.305000px;}
.x1a{left:635.613000px;}
.x51{left:674.350500px;}
.x14{left:729.061500px;}
.x56{left:734.740500px;}
.x48{left:757.947000px;}
.xc{left:760.458000px;}
.xd{left:837.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.477333pt;}
.v1{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001628pt;}
.lsf{letter-spacing:0.576078pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls6{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.626800pt;}
.lsc{letter-spacing:12.486459pt;}
.lsa{letter-spacing:12.964663pt;}
.lsb{letter-spacing:13.124065pt;}
.lse{letter-spacing:13.177199pt;}
.ls5{letter-spacing:13.283467pt;}
.ls4{letter-spacing:13.336601pt;}
.ls9{letter-spacing:19.446995pt;}
.ls8{letter-spacing:20.297137pt;}
.ls3{letter-spacing:25.292137pt;}
.ws1{word-spacing:-14.692637pt;}
.ws64{word-spacing:-13.283467pt;}
.ws8d{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.ws11{word-spacing:-9.298400pt;}
.wsb9{word-spacing:-2.922363pt;}
.ws4e{word-spacing:-2.869229pt;}
.ws3f{word-spacing:-2.762961pt;}
.ws3e{word-spacing:-2.709827pt;}
.ws87{word-spacing:-2.391024pt;}
.wsd8{word-spacing:-2.343219pt;}
.wsd7{word-spacing:-2.295398pt;}
.ws5c{word-spacing:-2.284756pt;}
.ws4f{word-spacing:-2.178489pt;}
.ws9b{word-spacing:-2.125355pt;}
.wsc0{word-spacing:-2.072221pt;}
.ws88{word-spacing:-2.019087pt;}
.wsc5{word-spacing:-1.912832pt;}
.ws4d{word-spacing:-1.912819pt;}
.ws50{word-spacing:-1.859685pt;}
.ws5a{word-spacing:-1.753418pt;}
.ws31{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.wsa3{word-spacing:-1.594016pt;}
.ws33{word-spacing:-1.540882pt;}
.ws65{word-spacing:-1.487748pt;}
.ws82{word-spacing:-1.434614pt;}
.ws78{word-spacing:-1.381481pt;}
.wsb3{word-spacing:-1.328347pt;}
.ws76{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws7a{word-spacing:-1.168945pt;}
.ws72{word-spacing:-1.115811pt;}
.ws71{word-spacing:-1.062677pt;}
.wsbe{word-spacing:-1.009543pt;}
.wsdd{word-spacing:-1.004237pt;}
.ws89{word-spacing:-0.903276pt;}
.wsbb{word-spacing:-0.850142pt;}
.wsee{word-spacing:-0.765133pt;}
.ws7c{word-spacing:-0.743874pt;}
.ws37{word-spacing:-0.690740pt;}
.ws2e{word-spacing:-0.637606pt;}
.ws35{word-spacing:-0.584473pt;}
.wse8{word-spacing:-0.526029pt;}
.ws95{word-spacing:-0.478208pt;}
.ws5e{word-spacing:-0.478205pt;}
.wsf9{word-spacing:-0.430387pt;}
.wsbc{word-spacing:-0.425071pt;}
.ws38{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.318803pt;}
.wsca{word-spacing:-0.286925pt;}
.ws54{word-spacing:-0.265669pt;}
.wsf1{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.wsc6{word-spacing:-0.095642pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.wsdf{word-spacing:-0.009404pt;}
.wscb{word-spacing:-0.008269pt;}
.wsd2{word-spacing:-0.006323pt;}
.wsf0{word-spacing:-0.005922pt;}
.wse7{word-spacing:-0.005205pt;}
.wsdb{word-spacing:-0.003465pt;}
.wse3{word-spacing:-0.002935pt;}
.wsd9{word-spacing:-0.002193pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.001465pt;}
.ws90{word-spacing:0.047821pt;}
.ws34{word-spacing:0.053134pt;}
.wsfd{word-spacing:0.067143pt;}
.wsda{word-spacing:0.095642pt;}
.ws45{word-spacing:0.106268pt;}
.ws13{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws7{word-spacing:0.185968pt;}
.ws18{word-spacing:0.191283pt;}
.ws36{word-spacing:0.212535pt;}
.wscf{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws28{word-spacing:0.265669pt;}
.wsc8{word-spacing:0.286925pt;}
.ws1c{word-spacing:0.318803pt;}
.ws39{word-spacing:0.371937pt;}
.wsa2{word-spacing:0.382565pt;}
.wsea{word-spacing:0.382566pt;}
.ws26{word-spacing:0.425071pt;}
.wsfb{word-spacing:0.430387pt;}
.wsae{word-spacing:0.478205pt;}
.ws81{word-spacing:0.531339pt;}
.ws44{word-spacing:0.584473pt;}
.wsbf{word-spacing:0.637606pt;}
.wscd{word-spacing:0.717312pt;}
.wsc1{word-spacing:0.743874pt;}
.wsf3{word-spacing:0.765133pt;}
.ws6a{word-spacing:0.797008pt;}
.wsed{word-spacing:0.812954pt;}
.ws58{word-spacing:0.850142pt;}
.ws19{word-spacing:0.860774pt;}
.ws7f{word-spacing:0.903276pt;}
.ws20{word-spacing:0.956410pt;}
.wscc{word-spacing:0.956416pt;}
.ws1f{word-spacing:1.009543pt;}
.ws59{word-spacing:1.062677pt;}
.wsde{word-spacing:1.099878pt;}
.ws66{word-spacing:1.115811pt;}
.ws80{word-spacing:1.168945pt;}
.ws49{word-spacing:1.222079pt;}
.ws79{word-spacing:1.275213pt;}
.ws61{word-spacing:1.328347pt;}
.ws7d{word-spacing:1.381481pt;}
.ws29{word-spacing:1.434614pt;}
.ws55{word-spacing:1.487748pt;}
.wsef{word-spacing:1.530266pt;}
.ws60{word-spacing:1.594016pt;}
.ws85{word-spacing:1.647150pt;}
.ws63{word-spacing:1.700284pt;}
.wse2{word-spacing:1.721549pt;}
.ws23{word-spacing:1.753418pt;}
.ws8{word-spacing:1.785293pt;}
.ws3c{word-spacing:1.806551pt;}
.wsdc{word-spacing:1.817190pt;}
.wsb5{word-spacing:1.859685pt;}
.ws9c{word-spacing:1.912819pt;}
.ws53{word-spacing:1.965953pt;}
.ws6e{word-spacing:2.019087pt;}
.ws15{word-spacing:2.056294pt;}
.ws2f{word-spacing:2.125355pt;}
.ws3b{word-spacing:2.178489pt;}
.wsd4{word-spacing:2.199757pt;}
.wsba{word-spacing:2.231622pt;}
.wsad{word-spacing:2.284756pt;}
.ws6d{word-spacing:2.337890pt;}
.ws22{word-spacing:2.391024pt;}
.wsf6{word-spacing:2.438861pt;}
.wsf5{word-spacing:2.486682pt;}
.wsd6{word-spacing:2.534502pt;}
.ws43{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.wsf8{word-spacing:2.582323pt;}
.ws84{word-spacing:2.603559pt;}
.wsd1{word-spacing:2.630144pt;}
.ws62{word-spacing:2.656693pt;}
.ws57{word-spacing:2.709827pt;}
.ws40{word-spacing:2.762961pt;}
.wsd3{word-spacing:2.773606pt;}
.ws86{word-spacing:2.816095pt;}
.ws1a{word-spacing:2.861926pt;}
.wsf4{word-spacing:2.865604pt;}
.wsfc{word-spacing:2.865852pt;}
.wsec{word-spacing:2.867311pt;}
.wsfa{word-spacing:2.867959pt;}
.wsf2{word-spacing:2.868386pt;}
.ws56{word-spacing:2.869229pt;}
.wsc9{word-spacing:2.869248pt;}
.wsf7{word-spacing:2.869641pt;}
.ws52{word-spacing:2.975497pt;}
.wsd5{word-spacing:3.012710pt;}
.ws7b{word-spacing:3.028630pt;}
.wse9{word-spacing:3.060531pt;}
.ws69{word-spacing:3.081764pt;}
.wse6{word-spacing:3.108352pt;}
.ws21{word-spacing:3.134898pt;}
.wse4{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.ws46{word-spacing:3.241166pt;}
.ws3a{word-spacing:3.294300pt;}
.wsd0{word-spacing:3.347456pt;}
.wsc7{word-spacing:3.395277pt;}
.ws7e{word-spacing:3.400567pt;}
.ws4c{word-spacing:3.453701pt;}
.wsc2{word-spacing:3.586560pt;}
.ws2b{word-spacing:3.613103pt;}
.wsb8{word-spacing:3.719371pt;}
.ws27{word-spacing:3.772505pt;}
.wsa5{word-spacing:3.825638pt;}
.ws5f{word-spacing:3.931906pt;}
.wsbd{word-spacing:3.985040pt;}
.ws42{word-spacing:4.038174pt;}
.ws77{word-spacing:4.091308pt;}
.wsc3{word-spacing:4.112589pt;}
.ws2d{word-spacing:4.144442pt;}
.ws51{word-spacing:4.303843pt;}
.wse5{word-spacing:4.303872pt;}
.ws83{word-spacing:4.356977pt;}
.wsc4{word-spacing:4.447334pt;}
.ws2a{word-spacing:4.463245pt;}
.wsfe{word-spacing:4.495155pt;}
.ws41{word-spacing:4.569513pt;}
.ws73{word-spacing:4.675780pt;}
.wse0{word-spacing:4.734259pt;}
.ws4b{word-spacing:4.888316pt;}
.ws6c{word-spacing:4.941450pt;}
.wsb6{word-spacing:4.994583pt;}
.ws74{word-spacing:5.100851pt;}
.ws48{word-spacing:5.153985pt;}
.ws47{word-spacing:5.260253pt;}
.ws99{word-spacing:5.366521pt;}
.wsf{word-spacing:5.393072pt;}
.wsce{word-spacing:5.403750pt;}
.ws10{word-spacing:5.467459pt;}
.wsaf{word-spacing:5.472788pt;}
.ws6b{word-spacing:5.579056pt;}
.ws5b{word-spacing:5.685324pt;}
.ws67{word-spacing:5.738458pt;}
.ws5d{word-spacing:5.791591pt;}
.ws6f{word-spacing:6.004127pt;}
.ws70{word-spacing:6.057261pt;}
.wseb{word-spacing:6.121062pt;}
.ws9a{word-spacing:6.322930pt;}
.wsb7{word-spacing:6.376064pt;}
.wsa4{word-spacing:6.588599pt;}
.ws68{word-spacing:7.013670pt;}
.ws32{word-spacing:7.066804pt;}
.wsb4{word-spacing:7.173072pt;}
.ws4a{word-spacing:7.385607pt;}
.wsd{word-spacing:7.699075pt;}
.ws75{word-spacing:10.839309pt;}
.wsff{word-spacing:11.955200pt;}
.wse1{word-spacing:12.529050pt;}
.ws6{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.wsc{word-spacing:15.732893pt;}
.wse{word-spacing:24.399002pt;}
.wsab{word-spacing:71.236181pt;}
.wsa8{word-spacing:79.940284pt;}
.ws91{word-spacing:86.747819pt;}
.wsaa{word-spacing:89.520538pt;}
.ws97{word-spacing:100.135125pt;}
.wsa6{word-spacing:101.475738pt;}
.ws96{word-spacing:103.863125pt;}
.ws9f{word-spacing:105.588326pt;}
.ws8e{word-spacing:106.204817pt;}
.ws9e{word-spacing:109.748736pt;}
.wsa0{word-spacing:109.796557pt;}
.wsa1{word-spacing:113.000550pt;}
.ws92{word-spacing:114.263125pt;}
.ws9d{word-spacing:124.955750pt;}
.wsa9{word-spacing:131.363738pt;}
.wsa7{word-spacing:140.067123pt;}
.ws8c{word-spacing:143.794150pt;}
.ws93{word-spacing:143.889792pt;}
.ws94{word-spacing:150.247125pt;}
.ws8f{word-spacing:151.329152pt;}
.ws98{word-spacing:158.140459pt;}
.ws8a{word-spacing:274.969600pt;}
.ws8b{word-spacing:315.532860pt;}
.wsb2{word-spacing:383.188070pt;}
.wsb1{word-spacing:392.441617pt;}
.wsb0{word-spacing:403.129344pt;}
.wsac{word-spacing:1433.045914pt;}
._1{margin-left:-20.669074pt;}
._62{margin-left:-19.776419pt;}
._64{margin-left:-18.007168pt;}
._8{margin-left:-14.468310pt;}
._61{margin-left:-6.907403pt;}
._3{margin-left:-5.897859pt;}
._4{margin-left:-4.888316pt;}
._9{margin-left:-3.421811pt;}
._b{margin-left:-2.082842pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._7{width:2.082842pt;}
._0{width:2.975497pt;}
._63{width:4.038174pt;}
._d{width:9.861670pt;}
._a{width:11.530016pt;}
._15{width:13.174834pt;}
._e{width:14.585344pt;}
._1d{width:15.621357pt;}
._13{width:16.584493pt;}
._f{width:17.789338pt;}
._14{width:19.241186pt;}
._10{width:20.743452pt;}
._12{width:22.429218pt;}
._11{width:24.175909pt;}
._19{width:25.142827pt;}
._18{width:26.329119pt;}
._65{width:27.806415pt;}
._c{width:29.011008pt;}
._1a{width:30.148146pt;}
._1b{width:32.577787pt;}
._1e{width:34.005675pt;}
._1c{width:35.068352pt;}
._49{width:36.860386pt;}
._4a{width:51.184157pt;}
._2{width:74.942469pt;}
._4c{width:105.492685pt;}
._4b{width:109.461811pt;}
._4d{width:110.800794pt;}
._50{width:113.956966pt;}
._4e{width:116.108902pt;}
._35{width:122.947277pt;}
._3f{width:124.955750pt;}
._3b{width:129.833472pt;}
._2a{width:132.176691pt;}
._3c{width:133.420032pt;}
._39{width:135.619789pt;}
._3e{width:136.910950pt;}
._3d{width:139.636736pt;}
._51{width:142.792909pt;}
._4f{width:143.844966pt;}
._3a{width:150.205133pt;}
._33{width:151.878861pt;}
._55{width:173.350400pt;}
._30{width:181.527757pt;}
._2e{width:186.166374pt;}
._2b{width:210.172416pt;}
._2d{width:227.483546pt;}
._2f{width:251.776512pt;}
._38{width:257.180262pt;}
._23{width:264.831590pt;}
._32{width:268.609434pt;}
._26{width:271.813427pt;}
._31{width:288.741990pt;}
._2c{width:302.227456pt;}
._21{width:310.070067pt;}
._56{width:315.904205pt;}
._48{width:342.630829pt;}
._40{width:357.556122pt;}
._37{width:365.159629pt;}
._60{width:373.336986pt;}
._5e{width:381.227418pt;}
._5f{width:390.504653pt;}
._5c{width:399.516250pt;}
._5b{width:415.084544pt;}
._5d{width:419.627520pt;}
._5a{width:424.053568pt;}
._20{width:432.491315pt;}
._25{width:433.973760pt;}
._58{width:436.843008pt;}
._59{width:450.679120pt;}
._34{width:457.023386pt;}
._24{width:467.400499pt;}
._57{width:474.860544pt;}
._28{width:513.547571pt;}
._22{width:524.259430pt;}
._27{width:527.272141pt;}
._29{width:556.873216pt;}
._41{width:590.108672pt;}
._16{width:647.299642pt;}
._52{width:741.700608pt;}
._53{width:743.374336pt;}
._54{width:767.523840pt;}
._42{width:822.661222pt;}
._1f{width:876.650906pt;}
._43{width:1055.261594pt;}
._44{width:1287.814144pt;}
._45{width:1520.414515pt;}
._46{width:1752.944418pt;}
._47{width:1985.509751pt;}
._36{width:1996.983469pt;}
._17{width:2018.236802pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fs5{font-size:46.397853pt;}
.fsd{font-size:47.820800pt;}
.fse{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.044747pt;}
.y25{bottom:5.145434pt;}
.y2b{bottom:12.578910pt;}
.y24{bottom:19.838154pt;}
.y6f{bottom:28.346667pt;}
.y23{bottom:34.359615pt;}
.y5{bottom:59.133337pt;}
.y248{bottom:79.105333pt;}
.y130{bottom:84.081333pt;}
.y4{bottom:86.333337pt;}
.y296{bottom:86.392000pt;}
.y45{bottom:91.398667pt;}
.y2cb{bottom:92.050667pt;}
.y6e{bottom:92.108000pt;}
.y21a{bottom:92.148000pt;}
.yd9{bottom:94.044000pt;}
.y27c{bottom:94.441333pt;}
.ya5{bottom:95.621333pt;}
.y247{bottom:95.842667pt;}
.y14a{bottom:100.021333pt;}
.y12f{bottom:100.818667pt;}
.y295{bottom:101.734667pt;}
.y44{bottom:107.298667pt;}
.y2ca{bottom:107.393333pt;}
.y6d{bottom:108.844000pt;}
.y219{bottom:108.885333pt;}
.yd8{bottom:110.780000pt;}
.y106{bottom:111.178667pt;}
.ya4{bottom:112.358667pt;}
.y246{bottom:112.580000pt;}
.y294{bottom:117.077333pt;}
.y12e{bottom:117.556000pt;}
.y2c9{bottom:122.736000pt;}
.y43{bottom:123.200000pt;}
.y21{bottom:123.790666pt;}
.y6c{bottom:125.581333pt;}
.y218{bottom:125.622667pt;}
.yd7{bottom:127.517333pt;}
.y105{bottom:127.916000pt;}
.ya3{bottom:129.096000pt;}
.y245{bottom:129.317333pt;}
.y293{bottom:132.420000pt;}
.y149{bottom:132.698667pt;}
.y12d{bottom:134.293333pt;}
.y2c8{bottom:138.078667pt;}
.y42{bottom:139.100000pt;}
.y1e9{bottom:139.601333pt;}
.y6b{bottom:142.318667pt;}
.y217{bottom:142.360000pt;}
.yd6{bottom:144.254667pt;}
.y104{bottom:144.653333pt;}
.ya2{bottom:145.833333pt;}
.y244{bottom:146.054667pt;}
.y292{bottom:147.762667pt;}
.y148{bottom:149.436000pt;}
.y12c{bottom:151.030667pt;}
.y2c7{bottom:153.421333pt;}
.y41{bottom:155.000000pt;}
.y1e8{bottom:156.338667pt;}
.y6a{bottom:159.056000pt;}
.y216{bottom:159.097333pt;}
.yd5{bottom:160.992000pt;}
.y103{bottom:161.390667pt;}
.ya1{bottom:162.570667pt;}
.y243{bottom:162.792000pt;}
.y291{bottom:163.105333pt;}
.y147{bottom:166.173333pt;}
.y1b8{bottom:168.721333pt;}
.y1b4{bottom:168.753333pt;}
.y2c6{bottom:168.762667pt;}
.y40{bottom:170.901333pt;}
.y12b{bottom:171.752000pt;}
.y1e7{bottom:173.076000pt;}
.y18{bottom:175.052000pt;}
.y69{bottom:175.793333pt;}
.y215{bottom:175.834667pt;}
.yd4{bottom:177.729333pt;}
.y102{bottom:178.128000pt;}
.y290{bottom:178.446667pt;}
.ya0{bottom:179.308000pt;}
.y242{bottom:179.529333pt;}
.y146{bottom:182.910667pt;}
.y1b7{bottom:183.333333pt;}
.y1b3{bottom:183.365333pt;}
.y2c5{bottom:184.105333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3f{bottom:186.801333pt;}
.y1e6{bottom:189.813333pt;}
.y68{bottom:192.530667pt;}
.y28f{bottom:193.789333pt;}
.yd3{bottom:194.466667pt;}
.y101{bottom:194.865333pt;}
.y9f{bottom:196.045333pt;}
.y241{bottom:196.266667pt;}
.y214{bottom:196.556000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1b6{bottom:197.945333pt;}
.y1b2{bottom:197.977333pt;}
.y2c4{bottom:199.448000pt;}
.y145{bottom:199.648000pt;}
.y3e{bottom:202.701333pt;}
.y1e5{bottom:206.550667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y28e{bottom:209.132000pt;}
.y67{bottom:209.268000pt;}
.yd2{bottom:211.204000pt;}
.y100{bottom:211.602667pt;}
.y1b5{bottom:212.557333pt;}
.y1b1{bottom:212.589333pt;}
.y9e{bottom:212.782667pt;}
.y273{bottom:213.004000pt;}
.y2c3{bottom:214.790667pt;}
.y27b{bottom:215.588000pt;}
.y144{bottom:216.385333pt;}
.y12a{bottom:217.580000pt;}
.y240{bottom:222.432000pt;}
.y1e4{bottom:223.288000pt;}
.y28d{bottom:224.474667pt;}
.y66{bottom:226.005333pt;}
.y213{bottom:226.444000pt;}
.yd1{bottom:227.941333pt;}
.yff{bottom:228.340000pt;}
.y9d{bottom:229.520000pt;}
.y272{bottom:229.741333pt;}
.y2c2{bottom:230.133333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y143{bottom:233.122667pt;}
.y1b0{bottom:233.570667pt;}
.y129{bottom:234.317333pt;}
.y1ac{bottom:237.074667pt;}
.y23f{bottom:239.182667pt;}
.y28c{bottom:239.817333pt;}
.y1e3{bottom:240.025333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y65{bottom:242.742667pt;}
.y212{bottom:243.181333pt;}
.yd0{bottom:244.678667pt;}
.yfe{bottom:245.077333pt;}
.y27a{bottom:245.476000pt;}
.y9c{bottom:246.257333pt;}
.y271{bottom:246.478667pt;}
.y1af{bottom:248.182667pt;}
.y142{bottom:249.860000pt;}
.y1ab{bottom:251.686667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y23e{bottom:253.794667pt;}
.y28b{bottom:255.160000pt;}
.y1e2{bottom:256.762667pt;}
.y64{bottom:259.480000pt;}
.y211{bottom:259.918667pt;}
.y2c1{bottom:260.818667pt;}
.ycf{bottom:261.416000pt;}
.yfd{bottom:261.814667pt;}
.y279{bottom:262.213333pt;}
.y1ae{bottom:262.794667pt;}
.y9b{bottom:262.994667pt;}
.y270{bottom:263.216000pt;}
.y141{bottom:266.597333pt;}
.y128{bottom:266.996000pt;}
.y23d{bottom:268.406667pt;}
.y28a{bottom:270.502667pt;}
.y3d{bottom:273.154667pt;}
.y1e1{bottom:273.500000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2c0{bottom:276.161333pt;}
.y63{bottom:276.217333pt;}
.y210{bottom:276.656000pt;}
.y1ad{bottom:277.406667pt;}
.yce{bottom:278.153333pt;}
.yfc{bottom:278.552000pt;}
.y278{bottom:278.950667pt;}
.y9a{bottom:279.732000pt;}
.y26f{bottom:279.953333pt;}
.y140{bottom:283.334667pt;}
.y127{bottom:283.733333pt;}
.y289{bottom:285.845333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y3c{bottom:289.054667pt;}
.y23c{bottom:289.420000pt;}
.y1e0{bottom:290.237333pt;}
.y2bf{bottom:291.502667pt;}
.y62{bottom:292.954667pt;}
.y20f{bottom:293.393333pt;}
.ycd{bottom:294.890667pt;}
.yfb{bottom:295.289333pt;}
.y277{bottom:295.688000pt;}
.y99{bottom:296.469333pt;}
.y26e{bottom:296.690667pt;}
.y239{bottom:298.213333pt;}
.y23b{bottom:298.348000pt;}
.y1aa{bottom:298.421333pt;}
.y13f{bottom:300.072000pt;}
.y126{bottom:300.469333pt;}
.y3b{bottom:304.954667pt;}
.y288{bottom:305.172000pt;}
.y1a9{bottom:305.726667pt;}
.y2be{bottom:306.845333pt;}
.yf{bottom:309.452000pt;}
.y61{bottom:309.692000pt;}
.y20e{bottom:310.130667pt;}
.y23a{bottom:310.434667pt;}
.y1df{bottom:310.960000pt;}
.y169{bottom:311.628000pt;}
.yfa{bottom:312.026667pt;}
.y276{bottom:312.425333pt;}
.y98{bottom:313.205333pt;}
.y26d{bottom:313.428000pt;}
.ycc{bottom:315.613333pt;}
.y13e{bottom:316.809333pt;}
.y125{bottom:317.206667pt;}
.y3a{bottom:320.856000pt;}
.y2bd{bottom:322.188000pt;}
.y60{bottom:326.429333pt;}
.y1a8{bottom:327.644000pt;}
.y168{bottom:328.365333pt;}
.y16b{bottom:328.764000pt;}
.y1de{bottom:328.892000pt;}
.y275{bottom:329.162667pt;}
.y97{bottom:329.942667pt;}
.y26c{bottom:330.165333pt;}
.yf9{bottom:332.749333pt;}
.y124{bottom:333.944000pt;}
.y1a6{bottom:334.950667pt;}
.y287{bottom:335.060000pt;}
.y13d{bottom:337.530667pt;}
.y238{bottom:338.540000pt;}
.y20d{bottom:339.620000pt;}
.y1a7{bottom:342.256000pt;}
.y5f{bottom:343.166667pt;}
.ye{bottom:343.809333pt;}
.y167{bottom:345.102667pt;}
.ycb{bottom:345.501333pt;}
.y274{bottom:345.900000pt;}
.y19e{bottom:345.941333pt;}
.y96{bottom:346.680000pt;}
.y26b{bottom:346.902667pt;}
.y123{bottom:350.681333pt;}
.y20c{bottom:352.240000pt;}
.y2bc{bottom:352.873333pt;}
.y39{bottom:354.688000pt;}
.y1a5{bottom:356.868000pt;}
.y286{bottom:358.652000pt;}
.y1dd{bottom:358.780000pt;}
.y5e{bottom:359.904000pt;}
.y19d{bottom:360.553333pt;}
.y166{bottom:361.840000pt;}
.yca{bottom:362.238667pt;}
.yf8{bottom:362.637333pt;}
.yd{bottom:362.706666pt;}
.y95{bottom:363.417333pt;}
.y26a{bottom:363.640000pt;}
.y1a3{bottom:364.174667pt;}
.y16a{bottom:366.224000pt;}
.y122{bottom:367.418667pt;}
.y2bb{bottom:368.216000pt;}
.y237{bottom:370.204000pt;}
.y38{bottom:370.589333pt;}
.y1a4{bottom:371.480000pt;}
.y20b{bottom:372.460000pt;}
.y285{bottom:374.273333pt;}
.y19c{bottom:375.165333pt;}
.y1dc{bottom:375.517333pt;}
.y5d{bottom:376.641333pt;}
.y165{bottom:378.577333pt;}
.yc9{bottom:378.976000pt;}
.yf7{bottom:379.374667pt;}
.y269{bottom:380.376000pt;}
.y13c{bottom:383.360000pt;}
.y2ba{bottom:383.558667pt;}
.y94{bottom:384.140000pt;}
.y121{bottom:384.156000pt;}
.y1a2{bottom:386.092000pt;}
.y37{bottom:386.489333pt;}
.y236{bottom:386.954667pt;}
.y20a{bottom:387.070667pt;}
.y284{bottom:389.894667pt;}
.y1db{bottom:392.254667pt;}
.y5c{bottom:393.378667pt;}
.y164{bottom:395.314667pt;}
.yc8{bottom:395.713333pt;}
.yf6{bottom:396.112000pt;}
.y268{bottom:397.113333pt;}
.y2b9{bottom:398.901333pt;}
.y13b{bottom:400.096000pt;}
.y1a1{bottom:400.704000pt;}
.y120{bottom:400.893333pt;}
.y235{bottom:401.566667pt;}
.y209{bottom:401.682667pt;}
.y93{bottom:402.073333pt;}
.y36{bottom:402.389333pt;}
.y1a0{bottom:408.009333pt;}
.y1da{bottom:408.992000pt;}
.y5b{bottom:410.116000pt;}
.y163{bottom:412.052000pt;}
.yc7{bottom:412.450667pt;}
.yf5{bottom:412.848000pt;}
.y283{bottom:413.486667pt;}
.y267{bottom:413.850667pt;}
.y2b8{bottom:414.244000pt;}
.y234{bottom:416.178667pt;}
.y208{bottom:416.294667pt;}
.y11f{bottom:417.630667pt;}
.y35{bottom:418.290667pt;}
.y1d9{bottom:425.729333pt;}
.y5a{bottom:426.853333pt;}
.y162{bottom:428.789333pt;}
.y282{bottom:429.108000pt;}
.yc6{bottom:429.188000pt;}
.yf4{bottom:429.585333pt;}
.y19f{bottom:429.928000pt;}
.y266{bottom:430.588000pt;}
.y207{bottom:430.906667pt;}
.y92{bottom:431.961333pt;}
.y13a{bottom:432.774667pt;}
.y233{bottom:437.192000pt;}
.y1d8{bottom:442.466667pt;}
.y59{bottom:443.590667pt;}
.y2b7{bottom:444.928000pt;}
.y206{bottom:445.518667pt;}
.y161{bottom:445.526667pt;}
.yc5{bottom:445.925333pt;}
.yf3{bottom:446.322667pt;}
.yc{bottom:446.990669pt;}
.y265{bottom:447.325333pt;}
.y91{bottom:448.698667pt;}
.y139{bottom:449.512000pt;}
.y34{bottom:450.130667pt;}
.y11e{bottom:450.308000pt;}
.y19b{bottom:450.941333pt;}
.y281{bottom:452.700000pt;}
.y1d7{bottom:459.204000pt;}
.y205{bottom:460.130667pt;}
.y2b6{bottom:460.270667pt;}
.y58{bottom:460.328000pt;}
.y160{bottom:462.264000pt;}
.yc4{bottom:462.662667pt;}
.yb{bottom:462.990669pt;}
.yf2{bottom:463.060000pt;}
.y264{bottom:464.062667pt;}
.y232{bottom:465.298667pt;}
.y90{bottom:465.436000pt;}
.y33{bottom:466.032000pt;}
.y138{bottom:466.249333pt;}
.y11d{bottom:467.045333pt;}
.y280{bottom:468.321333pt;}
.y19a{bottom:471.956000pt;}
.y204{bottom:474.742667pt;}
.y2b5{bottom:475.613333pt;}
.y1d6{bottom:475.941333pt;}
.y57{bottom:477.065333pt;}
.ya{bottom:478.990666pt;}
.y15f{bottom:479.001333pt;}
.yc3{bottom:479.398667pt;}
.yf1{bottom:479.797333pt;}
.y263{bottom:480.800000pt;}
.y32{bottom:481.932000pt;}
.y8f{bottom:482.173333pt;}
.y195{bottom:482.764000pt;}
.y137{bottom:482.986667pt;}
.y27f{bottom:483.942667pt;}
.y199{bottom:486.568000pt;}
.y203{bottom:489.354667pt;}
.y2b4{bottom:490.956000pt;}
.y1d5{bottom:492.678667pt;}
.y9{bottom:494.990666pt;}
.y15e{bottom:495.738667pt;}
.yc2{bottom:496.136000pt;}
.yf0{bottom:496.534667pt;}
.y194{bottom:497.376000pt;}
.y262{bottom:497.537333pt;}
.y56{bottom:497.786667pt;}
.y31{bottom:497.832000pt;}
.y231{bottom:497.996000pt;}
.y8e{bottom:498.910667pt;}
.y27e{bottom:499.564000pt;}
.y11c{bottom:499.722667pt;}
.y198{bottom:501.180000pt;}
.y202{bottom:503.966667pt;}
.y2b3{bottom:506.298667pt;}
.y197{bottom:508.485333pt;}
.y1d4{bottom:509.416000pt;}
.y193{bottom:511.988000pt;}
.y15d{bottom:512.476000pt;}
.yc1{bottom:512.873333pt;}
.yef{bottom:513.272000pt;}
.y30{bottom:513.733333pt;}
.y261{bottom:514.274667pt;}
.y230{bottom:514.733333pt;}
.y27d{bottom:515.185333pt;}
.y8d{bottom:515.648000pt;}
.y11b{bottom:516.460000pt;}
.y201{bottom:518.578667pt;}
.y2b2{bottom:521.641333pt;}
.y1d3{bottom:526.153333pt;}
.y15c{bottom:529.213333pt;}
.yc0{bottom:529.610667pt;}
.y2f{bottom:529.633333pt;}
.yee{bottom:530.009333pt;}
.y196{bottom:530.402667pt;}
.y260{bottom:531.012000pt;}
.y22f{bottom:531.470667pt;}
.y8c{bottom:532.384000pt;}
.y200{bottom:533.189333pt;}
.y11a{bottom:533.197333pt;}
.y2b1{bottom:536.984000pt;}
.y1d2{bottom:542.890667pt;}
.y2e{bottom:545.533333pt;}
.y15b{bottom:545.950667pt;}
.ybf{bottom:546.348000pt;}
.yed{bottom:546.746667pt;}
.y25f{bottom:547.749333pt;}
.y1ff{bottom:547.801333pt;}
.y22e{bottom:548.208000pt;}
.y8b{bottom:549.121333pt;}
.y119{bottom:549.934667pt;}
.y192{bottom:551.417333pt;}
.y2b0{bottom:552.325333pt;}
.y190{bottom:558.722667pt;}
.y1d1{bottom:559.628000pt;}
.y2d{bottom:561.434667pt;}
.y1fe{bottom:562.413333pt;}
.y15a{bottom:562.686667pt;}
.ybe{bottom:563.085333pt;}
.yec{bottom:563.484000pt;}
.y25e{bottom:564.486667pt;}
.y55{bottom:564.586667pt;}
.y22d{bottom:564.945333pt;}
.y8a{bottom:565.858667pt;}
.y191{bottom:566.029333pt;}
.y118{bottom:566.672000pt;}
.y2af{bottom:567.668000pt;}
.y8{bottom:573.786667pt;}
.y1d0{bottom:576.365333pt;}
.y1fd{bottom:577.025333pt;}
.y159{bottom:579.424000pt;}
.ybd{bottom:579.822667pt;}
.yeb{bottom:580.221333pt;}
.y18f{bottom:580.641333pt;}
.y25d{bottom:581.224000pt;}
.y2a{bottom:581.319968pt;}
.y22c{bottom:581.682667pt;}
.y89{bottom:582.596000pt;}
.y2ae{bottom:583.010667pt;}
.y117{bottom:583.409333pt;}
.y188{bottom:587.797333pt;}
.y1fc{bottom:591.637333pt;}
.y7{bottom:592.685334pt;}
.y1cf{bottom:593.102667pt;}
.y18e{bottom:595.253333pt;}
.y158{bottom:596.161333pt;}
.ybc{bottom:596.560000pt;}
.yea{bottom:596.958667pt;}
.y54{bottom:597.822667pt;}
.y25c{bottom:597.961333pt;}
.y2ad{bottom:598.353333pt;}
.y22b{bottom:598.420000pt;}
.y88{bottom:599.333333pt;}
.y116{bottom:600.146667pt;}
.y187{bottom:602.408000pt;}
.y1fb{bottom:606.249333pt;}
.y1ce{bottom:609.840000pt;}
.y18c{bottom:609.864000pt;}
.y157{bottom:612.898667pt;}
.ybb{bottom:613.297333pt;}
.ye9{bottom:613.696000pt;}
.y25b{bottom:614.698667pt;}
.y53{bottom:615.117333pt;}
.y22a{bottom:615.157333pt;}
.y87{bottom:616.070667pt;}
.y136{bottom:616.086667pt;}
.y115{bottom:616.884000pt;}
.y186{bottom:617.020000pt;}
.y1fa{bottom:620.861333pt;}
.y18d{bottom:624.476000pt;}
.y1cd{bottom:626.577333pt;}
.y2ac{bottom:629.038667pt;}
.y156{bottom:629.636000pt;}
.yba{bottom:630.034667pt;}
.ye8{bottom:630.433333pt;}
.y25a{bottom:631.436000pt;}
.y185{bottom:631.632000pt;}
.y229{bottom:631.893333pt;}
.y52{bottom:632.413333pt;}
.y86{bottom:632.808000pt;}
.y114{bottom:633.621333pt;}
.y1f9{bottom:635.473333pt;}
.y18b{bottom:639.088000pt;}
.y2ab{bottom:644.381333pt;}
.y6{bottom:645.598667pt;}
.y155{bottom:646.373333pt;}
.yb9{bottom:646.772000pt;}
.ye7{bottom:647.170667pt;}
.y1cc{bottom:647.298667pt;}
.y259{bottom:648.173333pt;}
.y228{bottom:648.630667pt;}
.y135{bottom:648.765333pt;}
.y85{bottom:649.545333pt;}
.y51{bottom:649.708000pt;}
.y1f8{bottom:650.085333pt;}
.y189{bottom:653.700000pt;}
.y2aa{bottom:659.724000pt;}
.y154{bottom:663.110667pt;}
.yb8{bottom:663.509333pt;}
.ye6{bottom:663.908000pt;}
.y1f7{bottom:664.697333pt;}
.y258{bottom:664.910667pt;}
.y134{bottom:665.502667pt;}
.y84{bottom:666.282667pt;}
.y113{bottom:666.298667pt;}
.y50{bottom:667.004000pt;}
.y18a{bottom:668.312000pt;}
.y3{bottom:668.977329pt;}
.y2a9{bottom:675.066667pt;}
.y1f6{bottom:679.308000pt;}
.y153{bottom:679.848000pt;}
.yb7{bottom:680.246667pt;}
.ye5{bottom:680.645333pt;}
.y257{bottom:681.648000pt;}
.y133{bottom:682.238667pt;}
.y227{bottom:682.768000pt;}
.y1cb{bottom:682.840000pt;}
.y83{bottom:683.020000pt;}
.y4f{bottom:684.298667pt;}
.y184{bottom:689.326667pt;}
.y2a8{bottom:690.408000pt;}
.y1f5{bottom:693.920000pt;}
.y152{bottom:696.585333pt;}
.yb6{bottom:696.984000pt;}
.ye4{bottom:697.382667pt;}
.y112{bottom:698.976000pt;}
.y226{bottom:699.517333pt;}
.y82{bottom:699.757333pt;}
.y4e{bottom:701.593333pt;}
.y1ca{bottom:702.130667pt;}
.y256{bottom:702.370667pt;}
.y17f{bottom:703.788000pt;}
.y183{bottom:703.937333pt;}
.y2a7{bottom:705.750667pt;}
.y1f4{bottom:708.532000pt;}
.y1c9{bottom:709.436000pt;}
.y151{bottom:713.322667pt;}
.yb5{bottom:713.721333pt;}
.ye3{bottom:714.120000pt;}
.y225{bottom:714.129333pt;}
.y111{bottom:715.713333pt;}
.y81{bottom:716.494667pt;}
.y17e{bottom:718.400000pt;}
.y182{bottom:718.549333pt;}
.y4d{bottom:718.889333pt;}
.y2a6{bottom:721.093333pt;}
.y1f3{bottom:723.144000pt;}
.y224{bottom:728.741333pt;}
.y150{bottom:730.060000pt;}
.yb4{bottom:730.458667pt;}
.ye2{bottom:730.857333pt;}
.y1c8{bottom:731.354667pt;}
.y110{bottom:732.450667pt;}
.y17d{bottom:733.012000pt;}
.y181{bottom:733.161333pt;}
.y80{bottom:733.232000pt;}
.y255{bottom:735.037333pt;}
.y4c{bottom:736.184000pt;}
.y2a5{bottom:736.436000pt;}
.y1f2{bottom:737.756000pt;}
.y1c7{bottom:738.660000pt;}
.y223{bottom:743.353333pt;}
.y14f{bottom:746.797333pt;}
.yb3{bottom:747.196000pt;}
.ye1{bottom:747.594667pt;}
.y180{bottom:747.773333pt;}
.y10f{bottom:749.188000pt;}
.y7f{bottom:749.969333pt;}
.y2a4{bottom:751.778667pt;}
.y254{bottom:751.788000pt;}
.y1f1{bottom:752.368000pt;}
.y1c1{bottom:753.121333pt;}
.y4b{bottom:753.478667pt;}
.y222{bottom:757.965333pt;}
.y1c6{bottom:760.577333pt;}
.y14e{bottom:763.534667pt;}
.yb2{bottom:763.933333pt;}
.ye0{bottom:764.332000pt;}
.y10e{bottom:765.925333pt;}
.y253{bottom:766.400000pt;}
.y7e{bottom:766.706667pt;}
.y1f0{bottom:766.980000pt;}
.y2a3{bottom:767.121333pt;}
.y1c0{bottom:767.733333pt;}
.y1c5{bottom:767.884000pt;}
.y17c{bottom:768.788000pt;}
.y4a{bottom:770.774667pt;}
.y220{bottom:772.576000pt;}
.y221{bottom:772.577333pt;}
.yb1{bottom:780.670667pt;}
.y252{bottom:781.010667pt;}
.ydf{bottom:781.069333pt;}
.y1ef{bottom:781.592000pt;}
.y2{bottom:781.661334pt;}
.y2a2{bottom:782.464000pt;}
.y10d{bottom:782.662667pt;}
.y17b{bottom:783.400000pt;}
.y7d{bottom:783.444000pt;}
.y14d{bottom:784.257333pt;}
.y175{bottom:786.902667pt;}
.y21f{bottom:787.188000pt;}
.y49{bottom:788.069333pt;}
.y1c4{bottom:789.801333pt;}
.y251{bottom:795.622667pt;}
.y1ee{bottom:796.204000pt;}
.yb0{bottom:797.408000pt;}
.yde{bottom:797.806667pt;}
.y17a{bottom:798.010667pt;}
.y132{bottom:798.602667pt;}
.y10c{bottom:799.400000pt;}
.y7c{bottom:800.181333pt;}
.y174{bottom:801.514667pt;}
.y21e{bottom:801.800000pt;}
.y14c{bottom:802.189333pt;}
.y1c3{bottom:804.413333pt;}
.y250{bottom:810.234667pt;}
.y1ed{bottom:810.816000pt;}
.y1c2{bottom:811.718667pt;}
.y179{bottom:812.622667pt;}
.y2a1{bottom:813.149333pt;}
.yaf{bottom:814.145333pt;}
.ydd{bottom:814.544000pt;}
.y131{bottom:815.340000pt;}
.y173{bottom:816.126667pt;}
.y10b{bottom:816.137333pt;}
.y21d{bottom:816.412000pt;}
.y7b{bottom:816.918667pt;}
.y48{bottom:819.401333pt;}
.y24f{bottom:824.846667pt;}
.y1ec{bottom:825.428000pt;}
.y178{bottom:827.234667pt;}
.y2a0{bottom:828.490667pt;}
.y172{bottom:830.737333pt;}
.yae{bottom:830.882667pt;}
.ydc{bottom:831.281333pt;}
.y14b{bottom:832.077333pt;}
.y10a{bottom:832.874667pt;}
.y7a{bottom:833.656000pt;}
.y47{bottom:833.748000pt;}
.y177{bottom:834.541333pt;}
.y21c{bottom:837.426667pt;}
.y24e{bottom:839.458667pt;}
.y1bf{bottom:840.038667pt;}
.y29f{bottom:843.833333pt;}
.ydb{bottom:848.018667pt;}
.y46{bottom:848.094667pt;}
.y109{bottom:849.612000pt;}
.y79{bottom:850.393333pt;}
.yad{bottom:851.604000pt;}
.y24d{bottom:854.070667pt;}
.y1be{bottom:854.650667pt;}
.y176{bottom:856.458667pt;}
.y29e{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.yda{bottom:864.754667pt;}
.y21b{bottom:865.532000pt;}
.y1ba{bottom:865.642667pt;}
.y78{bottom:867.130667pt;}
.y24c{bottom:868.682667pt;}
.y1bd{bottom:869.262667pt;}
.y29d{bottom:874.518667pt;}
.y1bc{bottom:876.569333pt;}
.y171{bottom:877.473333pt;}
.y1b9{bottom:880.254667pt;}
.yac{bottom:881.492000pt;}
.y108{bottom:882.289333pt;}
.y24b{bottom:883.294667pt;}
.y77{bottom:883.868000pt;}
.y1eb{bottom:883.874667pt;}
.y29{bottom:884.713333pt;}
.y29c{bottom:889.861333pt;}
.yab{bottom:898.229333pt;}
.y170{bottom:898.486667pt;}
.y107{bottom:899.026667pt;}
.y76{bottom:900.605333pt;}
.y24a{bottom:904.308000pt;}
.y29b{bottom:905.204000pt;}
.y1bb{bottom:905.793333pt;}
.y16f{bottom:913.098667pt;}
.yaa{bottom:914.966667pt;}
.y75{bottom:917.342667pt;}
.y29a{bottom:920.546667pt;}
.y28{bottom:925.510667pt;}
.ya9{bottom:931.704000pt;}
.y249{bottom:932.414667pt;}
.y74{bottom:934.080000pt;}
.y16e{bottom:934.112000pt;}
.y299{bottom:935.889333pt;}
.y1ea{bottom:943.217333pt;}
.ya8{bottom:948.441333pt;}
.y27{bottom:950.616000pt;}
.y73{bottom:950.817333pt;}
.y298{bottom:951.230667pt;}
.y16d{bottom:955.126667pt;}
.ya7{bottom:965.178667pt;}
.y297{bottom:966.573333pt;}
.y72{bottom:967.554667pt;}
.y26{bottom:975.722667pt;}
.ya6{bottom:981.916000pt;}
.y16c{bottom:983.233333pt;}
.y71{bottom:984.290667pt;}
.y22{bottom:1014.377333pt;}
.y70{bottom:1043.020000pt;}
.h1e{height:13.453920pt;}
.h11{height:22.673858pt;}
.h14{height:27.076941pt;}
.h15{height:27.262909pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h13{height:29.433775pt;}
.h12{height:30.399505pt;}
.h16{height:30.945242pt;}
.h1a{height:31.157778pt;}
.hc{height:32.246508pt;}
.h17{height:34.430976pt;}
.h18{height:34.813542pt;}
.h1d{height:35.052646pt;}
.h10{height:38.256384pt;}
.h19{height:38.681455pt;}
.he{height:38.947124pt;}
.hd{height:39.846430pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hb{height:45.272024pt;}
.h1f{height:46.290876pt;}
.h2{height:49.024000pt;}
.h1b{height:64.034876pt;}
.h1c{height:64.040209pt;}
.hf{height:68.861952pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x5{left:48.000000pt;}
.x6{left:53.458976pt;}
.x3b{left:55.970667pt;}
.x22{left:56.974667pt;}
.x47{left:58.780000pt;}
.x3a{left:59.861333pt;}
.x28{left:62.480000pt;}
.x35{left:65.308000pt;}
.x29{left:66.252000pt;}
.x31{left:67.704000pt;}
.x3e{left:69.037333pt;}
.x41{left:72.438667pt;}
.x26{left:76.372000pt;}
.x34{left:79.742667pt;}
.x21{left:81.082667pt;}
.x1{left:90.706667pt;}
.x1e{left:91.656000pt;}
.x2{left:94.486667pt;}
.x27{left:96.629333pt;}
.x1c{left:99.325333pt;}
.x1f{left:108.249333pt;}
.x36{left:109.989333pt;}
.x24{left:111.022667pt;}
.x23{left:117.078667pt;}
.x46{left:119.605333pt;}
.x4{left:180.874667pt;}
.x61{left:199.546667pt;}
.x37{left:220.158667pt;}
.x9{left:222.073333pt;}
.x8{left:223.020000pt;}
.x49{left:230.989333pt;}
.x50{left:236.840000pt;}
.x4a{left:237.873333pt;}
.x58{left:242.638667pt;}
.xb{left:251.365333pt;}
.x59{left:254.850667pt;}
.x5f{left:257.994667pt;}
.x17{left:260.888000pt;}
.x15{left:261.890667pt;}
.x5e{left:264.474667pt;}
.x5b{left:265.442667pt;}
.x5a{left:268.586667pt;}
.x54{left:270.194667pt;}
.x44{left:274.132000pt;}
.xa{left:275.052000pt;}
.x5d{left:276.041333pt;}
.x5c{left:277.074667pt;}
.xe{left:280.152000pt;}
.x2f{left:281.104000pt;}
.x1b{left:286.750667pt;}
.x2c{left:289.534667pt;}
.x2b{left:291.304000pt;}
.x4b{left:293.240000pt;}
.x2d{left:296.462667pt;}
.x53{left:297.896000pt;}
.x2a{left:304.878667pt;}
.x52{left:305.828000pt;}
.x18{left:309.657333pt;}
.x16{left:311.384000pt;}
.x33{left:312.908000pt;}
.x3d{left:314.032000pt;}
.x12{left:322.073333pt;}
.x20{left:323.057333pt;}
.x13{left:331.192000pt;}
.x60{left:334.040000pt;}
.x4e{left:335.674667pt;}
.x4d{left:340.240000pt;}
.x1d{left:344.625333pt;}
.x19{left:349.493333pt;}
.x4c{left:350.701333pt;}
.x2e{left:357.516000pt;}
.x3c{left:360.429333pt;}
.x10{left:366.269333pt;}
.x57{left:368.382667pt;}
.xf{left:375.818667pt;}
.x39{left:388.869333pt;}
.x4f{left:392.508000pt;}
.x3{left:404.408000pt;}
.x3f{left:407.482667pt;}
.x43{left:416.676000pt;}
.x38{left:444.161333pt;}
.x55{left:458.465333pt;}
.x30{left:459.493333pt;}
.x45{left:467.457333pt;}
.x42{left:469.404000pt;}
.x11{left:470.542667pt;}
.x32{left:477.396000pt;}
.x25{left:480.916000pt;}
.x40{left:489.160000pt;}
.x1a{left:564.989333pt;}
.x51{left:599.422667pt;}
.x14{left:648.054667pt;}
.x56{left:653.102667pt;}
.x48{left:673.730667pt;}
.xc{left:675.962667pt;}
.xd{left:744.106667pt;}
}




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