
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c3b0718aef55d5757561f957.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d6f1111c8900d63eeba95fd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_29e4863a4e21e60679165767.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_9651c6f1abd78e18063ec802.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_2bfea3592509d70f265dcff8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_fe1a6855cebaa3a83d367e9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_c6698ad9e53d0bae562fc1b9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_4ae748754433cdb364d75131.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987000;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_f7be4e8d12b0c82c5a59459b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1e{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);}
.m12{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);}
.m24{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);}
.m28{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);}
.m18{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mc{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m9{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);}
.m27{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);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m19{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);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m11{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);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m13{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);}
.m26{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);}
.m1d{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);}
.m10{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);}
.m1b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m6{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-18.372000px;}
.v2{vertical-align:-17.364000px;}
.v5{vertical-align:-12.510000px;}
.v4{vertical-align:-10.854000px;}
.v9{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.510000px;}
.vc{vertical-align:19.530000px;}
.vb{vertical-align:20.628000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:23.550000px;}
.v8{vertical-align:29.388000px;}
.v7{vertical-align:48.384000px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000840px;}
.ls90{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.298766px;}
.ls39{letter-spacing:0.420583px;}
.ls1e{letter-spacing:0.470851px;}
.ls73{letter-spacing:0.503764px;}
.ls38{letter-spacing:0.542815px;}
.ls40{letter-spacing:0.562543px;}
.ls6f{letter-spacing:0.565133px;}
.ls3a{letter-spacing:0.568543px;}
.ls7e{letter-spacing:0.645088px;}
.ls7c{letter-spacing:0.648088px;}
.ls75{letter-spacing:0.651088px;}
.ls3e{letter-spacing:0.670741px;}
.ls7b{letter-spacing:0.670800px;}
.ls18{letter-spacing:0.671510px;}
.ls41{letter-spacing:0.676741px;}
.ls8a{letter-spacing:0.706723px;}
.ls3c{letter-spacing:0.717483px;}
.ls89{letter-spacing:0.727731px;}
.ls4a{letter-spacing:0.742825px;}
.ls36{letter-spacing:0.746700px;}
.ls3d{letter-spacing:0.748200px;}
.ls68{letter-spacing:0.748766px;}
.ls43{letter-spacing:0.748825px;}
.ls28{letter-spacing:0.955860px;}
.ls33{letter-spacing:0.994825px;}
.ls49{letter-spacing:1.013675px;}
.ls56{letter-spacing:1.019675px;}
.ls2e{letter-spacing:1.183860px;}
.lsa{letter-spacing:1.195512px;}
.ls7{letter-spacing:1.275394px;}
.ls59{letter-spacing:1.317634px;}
.ls65{letter-spacing:1.318200px;}
.ls26{letter-spacing:1.420741px;}
.ls55{letter-spacing:1.432592px;}
.ls37{letter-spacing:1.452571px;}
.ls45{letter-spacing:1.490725px;}
.ls54{letter-spacing:1.491292px;}
.ls57{letter-spacing:1.492483px;}
.ls32{letter-spacing:1.496700px;}
.ls48{letter-spacing:1.496725px;}
.ls58{letter-spacing:1.497292px;}
.ls5b{letter-spacing:1.498200px;}
.ls53{letter-spacing:1.498483px;}
.ls0{letter-spacing:1.861130px;}
.ls86{letter-spacing:2.064017px;}
.ls85{letter-spacing:2.314741px;}
.ls1f{letter-spacing:2.452200px;}
.ls88{letter-spacing:2.573675px;}
.ls35{letter-spacing:2.614741px;}
.ls47{letter-spacing:2.620741px;}
.ls22{letter-spacing:2.680200px;}
.ls64{letter-spacing:2.990143px;}
.ls42{letter-spacing:3.509675px;}
.ls4b{letter-spacing:3.515675px;}
.ls76{letter-spacing:3.660600px;}
.ls46{letter-spacing:3.733200px;}
.ls44{letter-spacing:3.739200px;}
.ls4c{letter-spacing:4.303200px;}
.ls34{letter-spacing:4.620571px;}
.ls29{letter-spacing:4.759142px;}
.ls5d{letter-spacing:8.410741px;}
.ls87{letter-spacing:9.512100px;}
.ls1{letter-spacing:10.461300px;}
.ls14{letter-spacing:10.707634px;}
.ls25{letter-spacing:10.708200px;}
.ls72{letter-spacing:11.106088px;}
.ls71{letter-spacing:11.134800px;}
.ls30{letter-spacing:11.895483px;}
.ls3f{letter-spacing:11.906100px;}
.ls6{letter-spacing:11.954850px;}
.ls4e{letter-spacing:12.339483px;}
.ls31{letter-spacing:12.342783px;}
.ls5c{letter-spacing:12.370200px;}
.ls91{letter-spacing:12.388723px;}
.ls51{letter-spacing:13.042741px;}
.ls52{letter-spacing:13.083483px;}
.ls24{letter-spacing:13.089483px;}
.ls5e{letter-spacing:13.099200px;}
.ls27{letter-spacing:13.114483px;}
.ls2d{letter-spacing:13.116172px;}
.ls4d{letter-spacing:13.118725px;}
.ls92{letter-spacing:13.250697px;}
.ls8c{letter-spacing:13.448400px;}
.lsf{letter-spacing:13.449510px;}
.ls8f{letter-spacing:13.454400px;}
.ls8e{letter-spacing:13.517234px;}
.ls11{letter-spacing:13.856693px;}
.ls84{letter-spacing:13.880467px;}
.ls79{letter-spacing:14.094088px;}
.ls83{letter-spacing:14.095555px;}
.ls78{letter-spacing:14.122800px;}
.ls8d{letter-spacing:14.468047px;}
.ls10{letter-spacing:14.481746px;}
.ls80{letter-spacing:14.645022px;}
.ls17{letter-spacing:14.764573px;}
.ls6a{letter-spacing:14.940017px;}
.ls8b{letter-spacing:15.281914px;}
.ls7f{letter-spacing:15.302554px;}
.ls23{letter-spacing:15.925142px;}
.lsd{letter-spacing:16.199188px;}
.ls82{letter-spacing:16.391675px;}
.lse{letter-spacing:16.557841px;}
.ls81{letter-spacing:16.632017px;}
.lsc{letter-spacing:16.737168px;}
.ls1d{letter-spacing:17.097276px;}
.ls74{letter-spacing:17.106600px;}
.ls7d{letter-spacing:17.112600px;}
.ls6c{letter-spacing:17.319483px;}
.ls67{letter-spacing:17.325483px;}
.ls3{letter-spacing:17.935200px;}
.ls4f{letter-spacing:18.022741px;}
.ls2a{letter-spacing:18.069483px;}
.ls50{letter-spacing:18.129483px;}
.ls6b{letter-spacing:18.142483px;}
.ls9{letter-spacing:18.410885px;}
.ls5f{letter-spacing:18.694200px;}
.ls63{letter-spacing:18.704725px;}
.ls62{letter-spacing:18.705634px;}
.ls61{letter-spacing:18.706200px;}
.ls15{letter-spacing:18.910200px;}
.ls70{letter-spacing:18.954088px;}
.ls21{letter-spacing:19.083483px;}
.ls12{letter-spacing:19.198200px;}
.ls60{letter-spacing:19.300200px;}
.ls16{letter-spacing:19.779483px;}
.ls13{letter-spacing:20.061483px;}
.ls19{letter-spacing:20.548200px;}
.ls66{letter-spacing:20.905200px;}
.ls2c{letter-spacing:21.057483px;}
.ls20{letter-spacing:21.361142px;}
.ls2b{letter-spacing:21.367142px;}
.ls1a{letter-spacing:22.317483px;}
.ls5a{letter-spacing:22.798200px;}
.ls69{letter-spacing:22.957200px;}
.ls3b{letter-spacing:23.329200px;}
.ls2f{letter-spacing:24.045483px;}
.lsb{letter-spacing:24.388445px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls77{letter-spacing:684.741341px;}
.ls7a{letter-spacing:933.208800px;}
.ls6e{letter-spacing:981.152045px;}
.ls6d{letter-spacing:1036.236845px;}
.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;}
}
.ws12{word-spacing:-28.532313px;}
.ws39{word-spacing:-14.943900px;}
.ws93{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws91{word-spacing:-5.021150px;}
.ws80{word-spacing:-4.961375px;}
.ws7f{word-spacing:-4.233600px;}
.ws79{word-spacing:-4.184292px;}
.ws6b{word-spacing:-3.168107px;}
.ws3c{word-spacing:-2.749678px;}
.ws60{word-spacing:-2.450800px;}
.ws69{word-spacing:-2.331248px;}
.wsb9{word-spacing:-2.211697px;}
.ws5b{word-spacing:-2.092146px;}
.ws57{word-spacing:-2.032370px;}
.wsa6{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws77{word-spacing:-1.793268px;}
.ws52{word-spacing:-1.733492px;}
.ws50{word-spacing:-1.673717px;}
.wse9{word-spacing:-1.667750px;}
.ws58{word-spacing:-1.554166px;}
.ws45{word-spacing:-1.494390px;}
.ws92{word-spacing:-1.452557px;}
.ws61{word-spacing:-1.434614px;}
.ws53{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws55{word-spacing:-1.315063px;}
.ws48{word-spacing:-1.195512px;}
.wsaf{word-spacing:-1.183565px;}
.ws8{word-spacing:-1.171598px;}
.ws42{word-spacing:-1.135736px;}
.wse5{word-spacing:-1.075968px;}
.ws5f{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.wsb0{word-spacing:-0.914573px;}
.ws44{word-spacing:-0.896634px;}
.wsc0{word-spacing:-0.860774px;}
.wsb4{word-spacing:-0.836858px;}
.wsa7{word-spacing:-0.820235px;}
.ws43{word-spacing:-0.777083px;}
.wsb6{word-spacing:-0.753178px;}
.ws5c{word-spacing:-0.717307px;}
.ws41{word-spacing:-0.657532px;}
.ws3f{word-spacing:-0.597756px;}
.wsc1{word-spacing:-0.591782px;}
.ws5d{word-spacing:-0.537980px;}
.wsb7{word-spacing:-0.484186px;}
.ws1e{word-spacing:-0.430387px;}
.ws4b{word-spacing:-0.418429px;}
.wsc3{word-spacing:-0.376589px;}
.ws26{word-spacing:-0.358654px;}
.wsc7{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.wsb8{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws33{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws83{word-spacing:-0.062287px;}
.ws3b{word-spacing:-0.059776px;}
.ws9c{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047821px;}
.ws7d{word-spacing:-0.045430px;}
.ws7{word-spacing:-0.041843px;}
.wsdc{word-spacing:-0.008794px;}
.wsb1{word-spacing:-0.006989px;}
.ws3{word-spacing:0.000000px;}
.wsb2{word-spacing:0.001709px;}
.wsd0{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.wsc5{word-spacing:0.107597px;}
.ws28{word-spacing:0.119551px;}
.wsa2{word-spacing:0.161395px;}
.ws5a{word-spacing:0.179327px;}
.wsb3{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wsc2{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.wsda{word-spacing:0.322790px;}
.wsa0{word-spacing:0.358654px;}
.wsa5{word-spacing:0.418429px;}
.wsf3{word-spacing:0.430387px;}
.ws56{word-spacing:0.478205px;}
.ws4e{word-spacing:0.537980px;}
.ws66{word-spacing:0.597756px;}
.ws6a{word-spacing:0.657532px;}
.ws9f{word-spacing:0.666499px;}
.ws9a{word-spacing:0.670570px;}
.ws47{word-spacing:0.717307px;}
.ws86{word-spacing:0.748009px;}
.wsce{word-spacing:0.753178px;}
.ws67{word-spacing:0.777083px;}
.ws97{word-spacing:0.810900px;}
.ws82{word-spacing:0.836858px;}
.wsbd{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws5e{word-spacing:1.016185px;}
.ws94{word-spacing:1.075961px;}
.wsea{word-spacing:1.129766px;}
.ws74{word-spacing:1.135736px;}
.ws46{word-spacing:1.195512px;}
.ws16{word-spacing:1.237363px;}
.wsa1{word-spacing:1.255288px;}
.ws34{word-spacing:1.315063px;}
.ws1f{word-spacing:1.398758px;}
.wscb{word-spacing:1.560154px;}
.wsa8{word-spacing:1.613941px;}
.wsed{word-spacing:1.721549px;}
.ws78{word-spacing:1.733492px;}
.ws1b{word-spacing:1.775347px;}
.ws59{word-spacing:1.793268px;}
.ws51{word-spacing:1.853044px;}
.ws37{word-spacing:1.912819px;}
.wsca{word-spacing:2.098138px;}
.ws71{word-spacing:2.151922px;}
.ws17{word-spacing:2.151936px;}
.ws8e{word-spacing:2.211697px;}
.ws62{word-spacing:2.271473px;}
.ws1a{word-spacing:2.367130px;}
.ws36{word-spacing:2.391024px;}
.ws68{word-spacing:2.450800px;}
.ws2{word-spacing:2.511541px;}
.ws4{word-spacing:2.514521px;}
.wsf5{word-spacing:2.582323px;}
.ws75{word-spacing:2.630126px;}
.wsc9{word-spacing:2.636122px;}
.ws72{word-spacing:2.749678px;}
.wsbb{word-spacing:2.797517px;}
.ws8c{word-spacing:2.809453px;}
.wsd5{word-spacing:2.851315px;}
.ws54{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.ws3e{word-spacing:2.929004px;}
.wsbf{word-spacing:3.048556px;}
.wsba{word-spacing:3.120307px;}
.ws84{word-spacing:3.168107px;}
.wsd1{word-spacing:3.174106px;}
.ws22{word-spacing:3.219667px;}
.wsbc{word-spacing:3.227882px;}
.wsd6{word-spacing:3.227904px;}
.ws70{word-spacing:3.287658px;}
.ws20{word-spacing:3.389299px;}
.wsae{word-spacing:3.407209px;}
.ws38{word-spacing:3.466985px;}
.ws8b{word-spacing:3.526760px;}
.ws64{word-spacing:3.534002px;}
.ws23{word-spacing:3.586536px;}
.ws6f{word-spacing:3.646312px;}
.ws21{word-spacing:3.712090px;}
.ws3a{word-spacing:3.765863px;}
.wsf9{word-spacing:3.819686px;}
.ws1c{word-spacing:3.873485px;}
.ws6c{word-spacing:4.244068px;}
.wsec{word-spacing:4.411469px;}
.wsc4{word-spacing:4.572864px;}
.wsac{word-spacing:4.626662px;}
.ws10{word-spacing:4.770079px;}
.wsb5{word-spacing:4.782048px;}
.wseb{word-spacing:4.788058px;}
.ws2c{word-spacing:4.841824px;}
.ws11{word-spacing:4.853765px;}
.wsad{word-spacing:4.901599px;}
.wsee{word-spacing:4.949453px;}
.wsab{word-spacing:5.003251px;}
.ws63{word-spacing:5.140702px;}
.ws19{word-spacing:5.272243px;}
.wsa4{word-spacing:5.487437px;}
.ws3d{word-spacing:5.499355px;}
.wsa3{word-spacing:5.864026px;}
.wsd7{word-spacing:5.971622px;}
.ws24{word-spacing:6.037336px;}
.ws2d{word-spacing:6.097111px;}
.ws4c{word-spacing:6.156887px;}
.ws4d{word-spacing:6.216662px;}
.wsbe{word-spacing:6.276438px;}
.ws65{word-spacing:6.336214px;}
.ws2f{word-spacing:6.395989px;}
.ws98{word-spacing:6.694867px;}
.ws2e{word-spacing:6.874194px;}
.ws7b{word-spacing:6.996158px;}
.ws40{word-spacing:7.053521px;}
.wse{word-spacing:7.782761px;}
.ws49{word-spacing:7.890379px;}
.ws6e{word-spacing:8.069706px;}
.ws6d{word-spacing:8.129482px;}
.wsaa{word-spacing:8.392550px;}
.wsa9{word-spacing:8.822938px;}
.wscc{word-spacing:9.135072px;}
.wsf7{word-spacing:9.138394px;}
.wsd4{word-spacing:9.139229px;}
.wsf4{word-spacing:9.139862px;}
.wsd3{word-spacing:9.139997px;}
.wse0{word-spacing:9.142416px;}
.ws4a{word-spacing:9.982525px;}
.ws30{word-spacing:11.910929px;}
.wsc{word-spacing:12.176255px;}
.ws8d{word-spacing:12.552876px;}
.ws5{word-spacing:12.924974px;}
.ws87{word-spacing:12.968604px;}
.wsde{word-spacing:13.342003px;}
.wsd8{word-spacing:13.386538px;}
.wsfa{word-spacing:13.391942px;}
.wsf8{word-spacing:13.392192px;}
.wsef{word-spacing:13.395581px;}
.wscd{word-spacing:13.395802px;}
.wsd2{word-spacing:13.449600px;}
.wsd9{word-spacing:13.664794px;}
.ws76{word-spacing:14.884124px;}
.ws85{word-spacing:15.542604px;}
.wse6{word-spacing:15.547738px;}
.wsd{word-spacing:16.109478px;}
.wsc8{word-spacing:16.300915px;}
.wsdf{word-spacing:16.354714px;}
.wse8{word-spacing:16.408512px;}
.wse4{word-spacing:16.615690px;}
.wsf1{word-spacing:16.616563px;}
.wsdb{word-spacing:16.617485px;}
.wsf2{word-spacing:16.618320px;}
.wsf0{word-spacing:16.619846px;}
.wsf6{word-spacing:16.620854px;}
.wse1{word-spacing:16.620883px;}
.wsc6{word-spacing:16.623706px;}
.wse3{word-spacing:17.054093px;}
.wse2{word-spacing:17.215488px;}
.ws8f{word-spacing:17.285110px;}
.wse7{word-spacing:17.376883px;}
.ws89{word-spacing:17.938541px;}
.ws7c{word-spacing:18.038234px;}
.ws90{word-spacing:18.623693px;}
.wscf{word-spacing:19.367424px;}
.ws9b{word-spacing:19.503532px;}
.ws7a{word-spacing:19.818943px;}
.wsdd{word-spacing:20.819981px;}
.ws96{word-spacing:20.865230px;}
.ws95{word-spacing:21.316927px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws4f{word-spacing:151.686943px;}
.ws81{word-spacing:311.490652px;}
.ws88{word-spacing:456.407570px;}
.ws8a{word-spacing:458.909570px;}
.ws9d{word-spacing:694.397287px;}
.ws73{word-spacing:707.802880px;}
.ws9e{word-spacing:780.443681px;}
.ws7e{word-spacing:797.346728px;}
.ws99{word-spacing:993.172262px;}
._7{margin-left:-11.943245px;}
._41{margin-left:-8.641847px;}
._b{margin-left:-6.617203px;}
._9{margin-left:-5.308087px;}
._2{margin-left:-3.765852px;}
._a{margin-left:-2.630133px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._45{width:3.653885px;}
._11{width:4.943464px;}
._5{width:11.398711px;}
._3{width:12.971268px;}
._14{width:14.054833px;}
._16{width:15.592139px;}
._c{width:16.838899px;}
._10{width:18.757687px;}
._e{width:20.120602px;}
._19{width:21.347456px;}
._13{width:22.535401px;}
._d{width:23.541370px;}
._43{width:24.590138px;}
._40{width:26.129504px;}
._12{width:27.468653px;}
._f{width:28.728346px;}
._6{width:30.587087px;}
._47{width:32.824372px;}
._48{width:34.323379px;}
._42{width:35.478280px;}
._4a{width:36.521734px;}
._15{width:38.256384px;}
._44{width:39.332345px;}
._1a{width:42.799330px;}
._4d{width:45.854192px;}
._4c{width:48.015590px;}
._4b{width:49.171738px;}
._8{width:55.114272px;}
._49{width:61.868160px;}
._37{width:78.234502px;}
._1f{width:138.010252px;}
._2c{width:139.157946px;}
._3c{width:143.653082px;}
._23{width:148.530784px;}
._28{width:152.452073px;}
._1e{width:167.898127px;}
._35{width:174.258266px;}
._26{width:179.375071px;}
._1b{width:206.477375px;}
._22{width:208.306534px;}
._36{width:213.758082px;}
._3e{width:216.005650px;}
._3f{width:235.899020px;}
._31{width:281.089487px;}
._2d{width:282.189361px;}
._2f{width:286.541035px;}
._20{width:289.027706px;}
._38{width:293.809766px;}
._33{width:295.483487px;}
._29{width:303.421707px;}
._24{width:307.725561px;}
._3a{width:338.665489px;}
._1c{width:342.347675px;}
._3d{width:356.311291px;}
._32{width:388.590196px;}
._34{width:393.276614px;}
._2b{width:413.743831px;}
._21{width:427.563985px;}
._2a{width:463.429435px;}
._3b{width:465.198797px;}
._27{width:476.775805px;}
._30{width:501.064247px;}
._25{width:503.550918px;}
._1d{width:513.497603px;}
._2e{width:515.553889px;}
._39{width:523.492108px;}
._17{width:926.811049px;}
._46{width:2490.856253px;}
._18{width:2514.766253px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(74,73,130);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fse{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y1f{bottom:1.739201px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1e{bottom:30.271042px;}
.y4d{bottom:31.890000px;}
.y177{bottom:88.468500px;}
.y134{bottom:91.665000px;}
.ye6{bottom:91.728000px;}
.y126{bottom:93.543000px;}
.y162{bottom:96.792000px;}
.ya2{bottom:97.771500px;}
.y4c{bottom:103.621500px;}
.y74{bottom:103.854000px;}
.y1ff{bottom:104.503500px;}
.y1c{bottom:104.646000px;}
.yc1{bottom:107.641500px;}
.y176{bottom:107.701500px;}
.y133{bottom:110.494500px;}
.ye5{bottom:110.557500px;}
.y125{bottom:112.372500px;}
.y193{bottom:114.927000px;}
.y161{bottom:115.621500px;}
.ya1{bottom:116.601000px;}
.y1fe{bottom:121.762500px;}
.y4b{bottom:122.449500px;}
.y1b{bottom:122.535000px;}
.y73{bottom:122.683500px;}
.y1c9{bottom:124.857000px;}
.yc0{bottom:126.471000px;}
.y132{bottom:129.324000px;}
.ye4{bottom:129.387000px;}
.y124{bottom:131.202000px;}
.y192{bottom:132.501000px;}
.yfb{bottom:133.008000px;}
.y160{bottom:134.451000px;}
.y1fd{bottom:139.023000px;}
.y1a{bottom:140.422500px;}
.y4a{bottom:141.279000px;}
.y72{bottom:141.511500px;}
.y1c8{bottom:142.117500px;}
.y167{bottom:143.085000px;}
.ybf{bottom:145.300500px;}
.y131{bottom:148.153500px;}
.ye3{bottom:148.216500px;}
.y123{bottom:150.031500px;}
.y191{bottom:150.075000px;}
.y15f{bottom:153.280500px;}
.y1fc{bottom:156.283500px;}
.y19{bottom:158.310000px;}
.y1c7{bottom:159.378000px;}
.y49{bottom:160.108500px;}
.y71{bottom:160.341000px;}
.ya0{bottom:161.389500px;}
.y166{bottom:162.318000px;}
.ybe{bottom:164.130000px;}
.y130{bottom:166.983000px;}
.ye2{bottom:167.046000px;}
.y190{bottom:167.650500px;}
.y122{bottom:168.861000px;}
.y159{bottom:171.676500px;}
.y15e{bottom:172.110000px;}
.y1fb{bottom:173.544000px;}
.y18{bottom:176.199000px;}
.y1c6{bottom:176.638500px;}
.y14b{bottom:177.259500px;}
.y48{bottom:178.938000px;}
.y70{bottom:179.170500px;}
.y165{bottom:181.549500px;}
.ybd{bottom:182.959500px;}
.y9f{bottom:183.088500px;}
.y12f{bottom:185.812500px;}
.ye1{bottom:185.875500px;}
.y121{bottom:187.690500px;}
.y158{bottom:190.506000px;}
.y1fa{bottom:190.804500px;}
.y1c5{bottom:193.897500px;}
.y17{bottom:194.086500px;}
.y18f{bottom:194.190000px;}
.y14a{bottom:196.492500px;}
.y47{bottom:197.767500px;}
.y6f{bottom:198.000000px;}
.ybc{bottom:201.789000px;}
.y12e{bottom:204.642000px;}
.ye0{bottom:204.705000px;}
.y9e{bottom:204.786000px;}
.y15d{bottom:205.675500px;}
.y120{bottom:206.520000px;}
.y1f9{bottom:208.065000px;}
.y157{bottom:209.335500px;}
.y1c4{bottom:211.158000px;}
.y18e{bottom:211.764000px;}
.y16{bottom:211.974000px;}
.y46{bottom:216.597000px;}
.y6e{bottom:216.829500px;}
.y11f{bottom:220.192500px;}
.ybb{bottom:220.618500px;}
.y12d{bottom:223.471500px;}
.ydf{bottom:223.534500px;}
.y15c{bottom:224.908500px;}
.y1f8{bottom:225.325500px;}
.y11e{bottom:225.349500px;}
.y9d{bottom:226.483500px;}
.y156{bottom:228.165000px;}
.y1c3{bottom:228.418500px;}
.y18d{bottom:229.338000px;}
.y15{bottom:229.863000px;}
.y45{bottom:235.426500px;}
.y6d{bottom:235.659000px;}
.yba{bottom:239.446500px;}
.y12c{bottom:242.301000px;}
.yde{bottom:242.364000px;}
.y1f7{bottom:242.586000px;}
.y11d{bottom:244.179000px;}
.y1c2{bottom:245.679000px;}
.y18c{bottom:246.913500px;}
.y155{bottom:246.994500px;}
.y9c{bottom:248.182500px;}
.y44{bottom:254.256000px;}
.y6c{bottom:254.488500px;}
.yb9{bottom:258.276000px;}
.y1f6{bottom:259.846500px;}
.y12b{bottom:261.130500px;}
.ydd{bottom:261.193500px;}
.y1c1{bottom:262.939500px;}
.y11c{bottom:263.007000px;}
.y154{bottom:265.824000px;}
.y9b{bottom:269.880000px;}
.y43{bottom:273.085500px;}
.y6b{bottom:273.318000px;}
.yb8{bottom:277.105500px;}
.y1c0{bottom:280.200000px;}
.y11b{bottom:281.836500px;}
.y18b{bottom:282.420000px;}
.ydc{bottom:284.506500px;}
.y153{bottom:284.653500px;}
.y9a{bottom:291.577500px;}
.y42{bottom:291.915000px;}
.y6a{bottom:292.147500px;}
.y12a{bottom:292.252500px;}
.y1f5{bottom:294.366000px;}
.yb7{bottom:295.935000px;}
.y1bf{bottom:297.460500px;}
.y14{bottom:300.154500px;}
.y11a{bottom:300.666000px;}
.y18a{bottom:301.249500px;}
.y152{bottom:303.481500px;}
.y41{bottom:310.744500px;}
.y69{bottom:310.977000px;}
.y1f4{bottom:311.626500px;}
.y99{bottom:313.276500px;}
.y1be{bottom:314.721000px;}
.yb6{bottom:314.764500px;}
.y13{bottom:318.043500px;}
.ydb{bottom:318.130500px;}
.y119{bottom:319.495500px;}
.y189{bottom:320.079000px;}
.y151{bottom:322.311000px;}
.y1f3{bottom:328.887000px;}
.y40{bottom:329.574000px;}
.y68{bottom:329.806500px;}
.y1bd{bottom:331.980000px;}
.yb5{bottom:333.594000px;}
.y98{bottom:334.974000px;}
.y12{bottom:335.931000px;}
.yda{bottom:336.960000px;}
.y118{bottom:338.325000px;}
.y188{bottom:338.908500px;}
.yfa{bottom:340.920000px;}
.y150{bottom:341.140500px;}
.y1f2{bottom:346.147500px;}
.y3f{bottom:348.403500px;}
.y67{bottom:348.636000px;}
.y1bc{bottom:349.240500px;}
.y175{bottom:350.311500px;}
.yb4{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.yd9{bottom:355.789500px;}
.y97{bottom:356.671500px;}
.y117{bottom:357.154500px;}
.y187{bottom:357.738000px;}
.yf9{bottom:359.749500px;}
.y1f1{bottom:363.408000px;}
.y1bb{bottom:366.501000px;}
.y3e{bottom:367.233000px;}
.y174{bottom:369.141000px;}
.yb3{bottom:371.253000px;}
.yd8{bottom:374.619000px;}
.y14f{bottom:374.707500px;}
.y116{bottom:375.984000px;}
.y186{bottom:376.567500px;}
.y96{bottom:378.369000px;}
.yf8{bottom:378.579000px;}
.y1f0{bottom:380.668500px;}
.y10{bottom:380.673000px;}
.y66{bottom:382.201500px;}
.y1ba{bottom:383.761500px;}
.y3d{bottom:386.062500px;}
.y173{bottom:387.970500px;}
.yb2{bottom:390.082500px;}
.yd7{bottom:393.447000px;}
.y14e{bottom:393.939000px;}
.y115{bottom:394.813500px;}
.y185{bottom:395.397000px;}
.yf7{bottom:397.408500px;}
.y1ef{bottom:397.929000px;}
.yf{bottom:398.562000px;}
.y95{bottom:400.068000px;}
.y1b9{bottom:401.022000px;}
.y3c{bottom:404.892000px;}
.y172{bottom:406.800000px;}
.yb1{bottom:408.912000px;}
.yd6{bottom:412.276500px;}
.y114{bottom:413.643000px;}
.y184{bottom:414.226500px;}
.y1ee{bottom:415.188000px;}
.yf6{bottom:416.238000px;}
.ye{bottom:416.449500px;}
.y1b8{bottom:418.282500px;}
.y94{bottom:421.765500px;}
.y171{bottom:425.629500px;}
.yb0{bottom:427.741500px;}
.y3b{bottom:428.205000px;}
.yd5{bottom:431.106000px;}
.y1ed{bottom:432.448500px;}
.y113{bottom:432.472500px;}
.y183{bottom:433.054500px;}
.yf5{bottom:435.067500px;}
.y1b7{bottom:435.543000px;}
.y93{bottom:443.463000px;}
.y170{bottom:444.459000px;}
.yd{bottom:444.798000px;}
.yaf{bottom:446.571000px;}
.y1ec{bottom:449.709000px;}
.yd4{bottom:449.935500px;}
.y112{bottom:451.302000px;}
.y182{bottom:451.884000px;}
.y1b6{bottom:452.803500px;}
.yf4{bottom:453.897000px;}
.yc{bottom:462.685500px;}
.y16f{bottom:463.288500px;}
.y92{bottom:465.162000px;}
.yae{bottom:465.400500px;}
.y1eb{bottom:466.969500px;}
.yd3{bottom:468.765000px;}
.y1b5{bottom:470.064000px;}
.y111{bottom:470.131500px;}
.y181{bottom:470.713500px;}
.yf3{bottom:472.726500px;}
.yad{bottom:484.230000px;}
.y16e{bottom:486.601500px;}
.y91{bottom:486.859500px;}
.y1b4{bottom:487.323000px;}
.yb{bottom:489.540000px;}
.y180{bottom:489.543000px;}
.yf2{bottom:491.556000px;}
.y110{bottom:493.444500px;}
.y1ea{bottom:501.490500px;}
.yd2{bottom:502.330500px;}
.yac{bottom:503.059500px;}
.y3a{bottom:503.355000px;}
.y1b3{bottom:504.583500px;}
.ya{bottom:507.429000px;}
.y17f{bottom:508.372500px;}
.y90{bottom:508.557000px;}
.yf1{bottom:514.869000px;}
.y16d{bottom:516.994500px;}
.y1e9{bottom:518.751000px;}
.y1b2{bottom:521.844000px;}
.yab{bottom:521.889000px;}
.y129{bottom:524.511000px;}
.y9{bottom:525.316500px;}
.y10f{bottom:527.068500px;}
.y17e{bottom:527.202000px;}
.y8f{bottom:530.256000px;}
.y1e8{bottom:536.011500px;}
.y16c{bottom:536.227500px;}
.y1b1{bottom:539.104500px;}
.yaa{bottom:540.718500px;}
.y39{bottom:540.744000px;}
.y8{bottom:543.204000px;}
.y128{bottom:543.744000px;}
.y10e{bottom:545.898000px;}
.y17d{bottom:550.515000px;}
.yef{bottom:550.929000px;}
.y8e{bottom:551.953500px;}
.y1e7{bottom:553.272000px;}
.y16b{bottom:555.460500px;}
.y1b0{bottom:556.365000px;}
.ya9{bottom:559.548000px;}
.yec{bottom:560.074500px;}
.y38{bottom:560.202000px;}
.y149{bottom:560.566500px;}
.y7{bottom:561.093000px;}
.y10d{bottom:564.727500px;}
.yee{bottom:569.757000px;}
.yf0{bottom:569.787000px;}
.y1e6{bottom:570.531000px;}
.y1af{bottom:573.625500px;}
.y8d{bottom:573.651000px;}
.ya8{bottom:578.377500px;}
.y6{bottom:578.980500px;}
.y148{bottom:579.396000px;}
.y37{bottom:579.658500px;}
.y10c{bottom:583.557000px;}
.y17c{bottom:584.139000px;}
.y164{bottom:585.300000px;}
.yeb{bottom:586.972500px;}
.y1e5{bottom:587.791500px;}
.yed{bottom:588.586500px;}
.y1ae{bottom:590.886000px;}
.y8c{bottom:595.348500px;}
.y5{bottom:596.868000px;}
.ya7{bottom:597.207000px;}
.y147{bottom:598.225500px;}
.y36{bottom:599.115000px;}
.yea{bottom:600.423000px;}
.y10b{bottom:602.386500px;}
.y17b{bottom:602.968500px;}
.y163{bottom:604.533000px;}
.y1e4{bottom:605.052000px;}
.y1ad{bottom:608.146500px;}
.ye9{bottom:613.125000px;}
.y4{bottom:614.757000px;}
.ya6{bottom:616.036500px;}
.y8b{bottom:617.047500px;}
.y146{bottom:617.055000px;}
.y35{bottom:618.573000px;}
.y10a{bottom:621.216000px;}
.y17a{bottom:621.798000px;}
.y1e3{bottom:622.312500px;}
.y1ac{bottom:625.405500px;}
.ye8{bottom:631.954500px;}
.y1{bottom:632.644464px;}
.ya5{bottom:634.866000px;}
.y145{bottom:635.884500px;}
.y34{bottom:638.029500px;}
.y8a{bottom:638.745000px;}
.y1e2{bottom:639.573000px;}
.y179{bottom:640.627500px;}
.y1ab{bottom:642.666000px;}
.y109{bottom:649.459500px;}
.ya4{bottom:653.695500px;}
.y144{bottom:654.714000px;}
.y1e1{bottom:656.833500px;}
.y33{bottom:657.487500px;}
.y1aa{bottom:659.926500px;}
.y89{bottom:660.442500px;}
.ye7{bottom:665.520000px;}
.y15b{bottom:665.637000px;}
.ya3{bottom:672.525000px;}
.y143{bottom:673.543500px;}
.y1e0{bottom:674.094000px;}
.y178{bottom:674.193000px;}
.y32{bottom:676.944000px;}
.y1a9{bottom:677.187000px;}
.y88{bottom:682.141500px;}
.y15a{bottom:684.870000px;}
.y108{bottom:687.567000px;}
.y65{bottom:691.354500px;}
.y142{bottom:692.373000px;}
.y1a8{bottom:694.447500px;}
.y31{bottom:696.400500px;}
.y127{bottom:703.489500px;}
.y87{bottom:703.839000px;}
.y1df{bottom:708.613500px;}
.y64{bottom:710.184000px;}
.y141{bottom:711.202500px;}
.y1a7{bottom:711.708000px;}
.y16a{bottom:715.341000px;}
.y30{bottom:715.858500px;}
.y107{bottom:716.259000px;}
.y86{bottom:725.536500px;}
.y1de{bottom:725.874000px;}
.y1a6{bottom:728.968500px;}
.y63{bottom:729.013500px;}
.y140{bottom:730.032000px;}
.y169{bottom:734.574000px;}
.y106{bottom:735.088500px;}
.y2f{bottom:735.315000px;}
.y1dd{bottom:743.134500px;}
.y1a5{bottom:746.229000px;}
.y85{bottom:747.235500px;}
.yd1{bottom:747.394500px;}
.y62{bottom:747.843000px;}
.y13f{bottom:748.861500px;}
.y105{bottom:753.918000px;}
.y2e{bottom:754.771500px;}
.y1dc{bottom:760.395000px;}
.y1a4{bottom:763.489500px;}
.yd0{bottom:766.224000px;}
.y61{bottom:766.671000px;}
.y84{bottom:768.933000px;}
.y14d{bottom:771.687000px;}
.y13e{bottom:772.174500px;}
.y2d{bottom:774.229500px;}
.y1db{bottom:777.655500px;}
.y1a3{bottom:780.748500px;}
.y104{bottom:782.163000px;}
.ycf{bottom:785.053500px;}
.y60{bottom:785.500500px;}
.y83{bottom:790.630500px;}
.y14c{bottom:790.920000px;}
.y13d{bottom:792.348000px;}
.y2c{bottom:793.686000px;}
.y1da{bottom:794.916000px;}
.y1a2{bottom:798.009000px;}
.yce{bottom:803.883000px;}
.y5f{bottom:804.330000px;}
.y103{bottom:810.855000px;}
.y1d9{bottom:812.176500px;}
.y2b{bottom:813.144000px;}
.y1a1{bottom:815.269500px;}
.y82{bottom:820.681500px;}
.ycd{bottom:822.712500px;}
.y5e{bottom:823.159500px;}
.y102{bottom:824.985000px;}
.y1d8{bottom:829.437000px;}
.y101{bottom:829.482000px;}
.y100{bottom:829.684500px;}
.y1a0{bottom:832.530000px;}
.y2a{bottom:832.600500px;}
.y13c{bottom:834.672000px;}
.ycc{bottom:841.540500px;}
.y5d{bottom:841.989000px;}
.y1d7{bottom:846.697500px;}
.y19f{bottom:849.790500px;}
.yff{bottom:850.465500px;}
.y81{bottom:856.335000px;}
.y13b{bottom:859.132500px;}
.ycb{bottom:860.370000px;}
.y5c{bottom:860.818500px;}
.y1d6{bottom:863.956500px;}
.y19e{bottom:867.051000px;}
.y29{bottom:869.215500px;}
.y80{bottom:875.164500px;}
.yfd{bottom:878.454000px;}
.yca{bottom:879.199500px;}
.y5b{bottom:879.648000px;}
.y1d5{bottom:881.217000px;}
.y13a{bottom:883.591500px;}
.y19d{bottom:884.311500px;}
.y28{bottom:885.355500px;}
.yfc{bottom:888.705000px;}
.yfe{bottom:888.706500px;}
.y7f{bottom:893.994000px;}
.yc9{bottom:898.029000px;}
.y5a{bottom:898.477500px;}
.y19c{bottom:901.572000px;}
.y27{bottom:905.835000px;}
.y139{bottom:908.050500px;}
.y7e{bottom:912.823500px;}
.y1d4{bottom:915.738000px;}
.yc8{bottom:916.858500px;}
.y59{bottom:917.307000px;}
.y19b{bottom:918.831000px;}
.y26{bottom:921.973500px;}
.y7d{bottom:931.653000px;}
.y138{bottom:932.511000px;}
.y1d3{bottom:932.998500px;}
.y25{bottom:933.774000px;}
.yc7{bottom:935.688000px;}
.y19a{bottom:936.091500px;}
.y58{bottom:936.136500px;}
.y1d2{bottom:950.259000px;}
.y7c{bottom:950.482500px;}
.y199{bottom:953.352000px;}
.y24{bottom:954.253500px;}
.yc6{bottom:954.517500px;}
.y57{bottom:954.966000px;}
.y137{bottom:956.449500px;}
.y1d1{bottom:967.519500px;}
.y7b{bottom:969.312000px;}
.y198{bottom:970.612500px;}
.yc5{bottom:973.347000px;}
.y56{bottom:973.795500px;}
.y136{bottom:980.389500px;}
.y1d0{bottom:984.780000px;}
.yc4{bottom:987.021000px;}
.y7a{bottom:988.141500px;}
.yc3{bottom:992.176500px;}
.y197{bottom:992.356500px;}
.y55{bottom:992.625000px;}
.y23{bottom:996.958500px;}
.y1cf{bottom:1002.039000px;}
.y200{bottom:1002.040500px;}
.y79{bottom:1006.971000px;}
.y54{bottom:1011.454500px;}
.y135{bottom:1012.009500px;}
.yc2{bottom:1015.489500px;}
.y1ce{bottom:1019.299500px;}
.y168{bottom:1025.644500px;}
.y78{bottom:1025.800500px;}
.y196{bottom:1025.980500px;}
.y53{bottom:1030.284000px;}
.y1cd{bottom:1036.560000px;}
.y22{bottom:1036.878000px;}
.y77{bottom:1044.630000px;}
.y52{bottom:1049.113500px;}
.y195{bottom:1052.520000px;}
.y1cc{bottom:1053.820500px;}
.y76{bottom:1063.459500px;}
.y21{bottom:1065.123000px;}
.y51{bottom:1067.943000px;}
.y1cb{bottom:1071.081000px;}
.y194{bottom:1079.061000px;}
.y75{bottom:1082.289000px;}
.y50{bottom:1086.772500px;}
.y1ca{bottom:1088.341500px;}
.y20{bottom:1093.366500px;}
.y4f{bottom:1105.602000px;}
.y1d{bottom:1136.853000px;}
.y4e{bottom:1168.366500px;}
.h1a{height:0.597756px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h16{height:33.299897px;}
.h3{height:34.199443px;}
.h13{height:34.430832px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.h1e{height:35.503200px;}
.h14{height:37.372050px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h18{height:39.434227px;}
.h19{height:42.500452px;}
.h10{height:43.038432px;}
.h11{height:43.516637px;}
.h9{height:43.815515px;}
.h1f{height:46.090950px;}
.h1b{height:46.714950px;}
.h24{height:47.338950px;}
.h7{height:50.931027px;}
.h23{height:52.224150px;}
.h22{height:52.230150px;}
.hb{height:54.411312px;}
.h17{height:54.774749px;}
.h20{height:55.850446px;}
.h15{height:56.849897px;}
.h1d{height:62.460749px;}
.h21{height:67.342950px;}
.h8{height:77.379634px;}
.ha{height:77.469696px;}
.h1c{height:95.098950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.054042px;}
.xb3{left:85.848000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x2a{left:259.369500px;}
.x28{left:265.677000px;}
.x29{left:266.842500px;}
.x5{left:269.914500px;}
.x8{left:281.479500px;}
.x45{left:285.303000px;}
.xa3{left:288.690000px;}
.x8e{left:295.801500px;}
.x66{left:297.403500px;}
.x46{left:300.844500px;}
.x47{left:304.798500px;}
.x9c{left:306.694500px;}
.x7{left:308.130000px;}
.xb2{left:309.468000px;}
.xae{left:313.156500px;}
.xa7{left:316.759500px;}
.x4a{left:318.324000px;}
.x15{left:319.759500px;}
.x6b{left:321.820500px;}
.x6d{left:323.665500px;}
.x51{left:325.741500px;}
.x27{left:330.825000px;}
.xa6{left:332.503500px;}
.x16{left:334.704000px;}
.x6c{left:336.765000px;}
.xb{left:338.172000px;}
.xa5{left:339.409500px;}
.x52{left:340.686000px;}
.xa8{left:342.618000px;}
.x53{left:344.497500px;}
.xc{left:345.643500px;}
.x2b{left:348.619500px;}
.x36{left:349.714500px;}
.xd{left:353.049000px;}
.x67{left:357.705000px;}
.x54{left:359.440500px;}
.xe{left:360.520500px;}
.x55{left:363.252000px;}
.x7c{left:365.098500px;}
.x2c{left:366.472500px;}
.x25{left:367.741500px;}
.x2d{left:369.978000px;}
.x37{left:372.303000px;}
.x56{left:378.195000px;}
.x7d{left:380.041500px;}
.x26{left:382.686000px;}
.x2e{left:384.324000px;}
.x38{left:386.650500px;}
.x94{left:388.782000px;}
.xb1{left:390.384000px;}
.xa4{left:394.189500px;}
.x57{left:396.949500px;}
.x34{left:398.083500px;}
.x90{left:400.924500px;}
.x40{left:405.931500px;}
.x5b{left:412.488000px;}
.x83{left:415.705500px;}
.xb0{left:416.806500px;}
.x21{left:420.814500px;}
.x41{left:424.536000px;}
.x95{left:426.336000px;}
.x5c{left:427.431000px;}
.x5d{left:431.242500px;}
.x11{left:433.359000px;}
.x22{left:435.759000px;}
.x42{left:439.480500px;}
.x12{left:440.832000px;}
.x5e{left:446.185500px;}
.x78{left:447.882000px;}
.x5f{left:449.997000px;}
.x61{left:456.084000px;}
.x8f{left:458.646000px;}
.x96{left:462.915000px;}
.x60{left:464.941500px;}
.x79{left:469.251000px;}
.x62{left:471.028500px;}
.x89{left:479.092500px;}
.xa2{left:482.505000px;}
.x97{left:488.269500px;}
.x7a{left:491.986500px;}
.xa9{left:492.996000px;}
.x8a{left:500.535000px;}
.x7e{left:507.117000px;}
.x58{left:509.251500px;}
.x4b{left:514.681500px;}
.x59{left:520.500000px;}
.x75{left:521.548500px;}
.x43{left:526.671000px;}
.x9{left:530.448000px;}
.x84{left:531.649500px;}
.x4c{left:534.177000px;}
.x98{left:535.408500px;}
.xa{left:537.919500px;}
.x44{left:541.615500px;}
.x4d{left:549.718500px;}
.x73{left:552.759000px;}
.xf{left:560.113500px;}
.x99{left:563.313000px;}
.x10{left:567.585000px;}
.x1d{left:569.901000px;}
.x76{left:570.910500px;}
.x4e{left:582.229500px;}
.x1e{left:584.844000px;}
.x1f{left:588.610500px;}
.x77{left:591.654000px;}
.x74{left:598.653000px;}
.x70{left:601.498500px;}
.x20{left:603.555000px;}
.x48{left:605.166000px;}
.x68{left:610.161000px;}
.x71{left:616.441500px;}
.x49{left:620.707500px;}
.xaa{left:624.790500px;}
.x9a{left:631.749000px;}
.xad{left:633.613500px;}
.x9d{left:635.808000px;}
.x7b{left:637.072500px;}
.x8d{left:638.947500px;}
.xab{left:641.197500px;}
.x39{left:649.485000px;}
.x19{left:660.052500px;}
.x35{left:663.301500px;}
.x3f{left:664.327500px;}
.x3a{left:667.302000px;}
.x93{left:668.466000px;}
.x23{left:670.813500px;}
.x1a{left:674.995500px;}
.x2f{left:676.743000px;}
.x1b{left:679.444500px;}
.x3b{left:681.648000px;}
.x9b{left:683.025000px;}
.x24{left:685.756500px;}
.x9e{left:689.643000px;}
.x30{left:691.089000px;}
.x1c{left:694.389000px;}
.x3c{left:699.466500px;}
.x72{left:700.983000px;}
.x3d{left:702.937500px;}
.x69{left:706.317000px;}
.x31{left:708.940500px;}
.x6a{left:713.433000px;}
.x5a{left:714.699000px;}
.x3e{left:717.283500px;}
.x63{left:718.347000px;}
.xaf{left:722.121000px;}
.x65{left:724.264500px;}
.x17{left:726.982500px;}
.x64{left:733.290000px;}
.xb5{left:735.034500px;}
.x91{left:739.036500px;}
.x18{left:741.927000px;}
.x8b{left:747.868500px;}
.xb6{left:749.886000px;}
.x4f{left:753.490500px;}
.x7f{left:758.244000px;}
.x86{left:759.507000px;}
.x32{left:761.433000px;}
.x9f{left:763.017000px;}
.x92{left:765.183000px;}
.x50{left:767.838000px;}
.x13{left:769.365000px;}
.x80{left:772.590000px;}
.x33{left:775.779000px;}
.xb7{left:776.784000px;}
.x8c{left:777.889500px;}
.xa0{left:781.675500px;}
.x14{left:784.309500px;}
.x81{left:786.832500px;}
.x6e{left:791.260500px;}
.xa1{left:796.618500px;}
.x82{left:801.178500px;}
.x6f{left:806.205000px;}
.xb4{left:810.282000px;}
.x87{left:817.788000px;}
.xac{left:820.899000px;}
.x85{left:823.408500px;}
.x88{left:837.075000px;}
@media print{
.va{vertical-align:-16.330667pt;}
.v2{vertical-align:-15.434667pt;}
.v5{vertical-align:-11.120000pt;}
.v4{vertical-align:-9.648000pt;}
.v9{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.120000pt;}
.vc{vertical-align:17.360000pt;}
.vb{vertical-align:18.336000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:20.933333pt;}
.v8{vertical-align:26.122667pt;}
.v7{vertical-align:43.008000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000747pt;}
.ls90{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.265570pt;}
.ls39{letter-spacing:0.373852pt;}
.ls1e{letter-spacing:0.418534pt;}
.ls73{letter-spacing:0.447791pt;}
.ls38{letter-spacing:0.482502pt;}
.ls40{letter-spacing:0.500038pt;}
.ls6f{letter-spacing:0.502340pt;}
.ls3a{letter-spacing:0.505372pt;}
.ls7e{letter-spacing:0.573411pt;}
.ls7c{letter-spacing:0.576078pt;}
.ls75{letter-spacing:0.578745pt;}
.ls3e{letter-spacing:0.596214pt;}
.ls7b{letter-spacing:0.596267pt;}
.ls18{letter-spacing:0.596898pt;}
.ls41{letter-spacing:0.601548pt;}
.ls8a{letter-spacing:0.628198pt;}
.ls3c{letter-spacing:0.637762pt;}
.ls89{letter-spacing:0.646872pt;}
.ls4a{letter-spacing:0.660289pt;}
.ls36{letter-spacing:0.663733pt;}
.ls3d{letter-spacing:0.665067pt;}
.ls68{letter-spacing:0.665570pt;}
.ls43{letter-spacing:0.665622pt;}
.ls28{letter-spacing:0.849653pt;}
.ls33{letter-spacing:0.884289pt;}
.ls49{letter-spacing:0.901044pt;}
.ls56{letter-spacing:0.906378pt;}
.ls2e{letter-spacing:1.052320pt;}
.lsa{letter-spacing:1.062677pt;}
.ls7{letter-spacing:1.133683pt;}
.ls59{letter-spacing:1.171230pt;}
.ls65{letter-spacing:1.171733pt;}
.ls26{letter-spacing:1.262881pt;}
.ls55{letter-spacing:1.273415pt;}
.ls37{letter-spacing:1.291174pt;}
.ls45{letter-spacing:1.325089pt;}
.ls54{letter-spacing:1.325593pt;}
.ls57{letter-spacing:1.326652pt;}
.ls32{letter-spacing:1.330400pt;}
.ls48{letter-spacing:1.330422pt;}
.ls58{letter-spacing:1.330926pt;}
.ls5b{letter-spacing:1.331733pt;}
.ls53{letter-spacing:1.331985pt;}
.ls0{letter-spacing:1.654338pt;}
.ls86{letter-spacing:1.834682pt;}
.ls85{letter-spacing:2.057548pt;}
.ls1f{letter-spacing:2.179733pt;}
.ls88{letter-spacing:2.287711pt;}
.ls35{letter-spacing:2.324214pt;}
.ls47{letter-spacing:2.329548pt;}
.ls22{letter-spacing:2.382400pt;}
.ls64{letter-spacing:2.657905pt;}
.ls42{letter-spacing:3.119711pt;}
.ls4b{letter-spacing:3.125044pt;}
.ls76{letter-spacing:3.253867pt;}
.ls46{letter-spacing:3.318400pt;}
.ls44{letter-spacing:3.323733pt;}
.ls4c{letter-spacing:3.825067pt;}
.ls34{letter-spacing:4.107174pt;}
.ls29{letter-spacing:4.230349pt;}
.ls5d{letter-spacing:7.476214pt;}
.ls87{letter-spacing:8.455200pt;}
.ls1{letter-spacing:9.298933pt;}
.ls14{letter-spacing:9.517897pt;}
.ls25{letter-spacing:9.518400pt;}
.ls72{letter-spacing:9.872078pt;}
.ls71{letter-spacing:9.897600pt;}
.ls30{letter-spacing:10.573762pt;}
.ls3f{letter-spacing:10.583200pt;}
.ls6{letter-spacing:10.626533pt;}
.ls4e{letter-spacing:10.968429pt;}
.ls31{letter-spacing:10.971362pt;}
.ls5c{letter-spacing:10.995733pt;}
.ls91{letter-spacing:11.012199pt;}
.ls51{letter-spacing:11.593548pt;}
.ls52{letter-spacing:11.629762pt;}
.ls24{letter-spacing:11.635096pt;}
.ls5e{letter-spacing:11.643733pt;}
.ls27{letter-spacing:11.657318pt;}
.ls2d{letter-spacing:11.658819pt;}
.ls4d{letter-spacing:11.661089pt;}
.ls92{letter-spacing:11.778397pt;}
.ls8c{letter-spacing:11.954133pt;}
.lsf{letter-spacing:11.955120pt;}
.ls8f{letter-spacing:11.959467pt;}
.ls8e{letter-spacing:12.015319pt;}
.ls11{letter-spacing:12.317060pt;}
.ls84{letter-spacing:12.338193pt;}
.ls79{letter-spacing:12.528078pt;}
.ls83{letter-spacing:12.529382pt;}
.ls78{letter-spacing:12.553600pt;}
.ls8d{letter-spacing:12.860486pt;}
.ls10{letter-spacing:12.872663pt;}
.ls80{letter-spacing:13.017797pt;}
.ls17{letter-spacing:13.124065pt;}
.ls6a{letter-spacing:13.280015pt;}
.ls8b{letter-spacing:13.583923pt;}
.ls7f{letter-spacing:13.602270pt;}
.ls23{letter-spacing:14.155682pt;}
.lsd{letter-spacing:14.399278pt;}
.ls82{letter-spacing:14.570378pt;}
.lse{letter-spacing:14.718081pt;}
.ls81{letter-spacing:14.784015pt;}
.lsc{letter-spacing:14.877483pt;}
.ls1d{letter-spacing:15.197579pt;}
.ls74{letter-spacing:15.205867pt;}
.ls7d{letter-spacing:15.211200pt;}
.ls6c{letter-spacing:15.395096pt;}
.ls67{letter-spacing:15.400429pt;}
.ls3{letter-spacing:15.942400pt;}
.ls4f{letter-spacing:16.020214pt;}
.ls2a{letter-spacing:16.061762pt;}
.ls50{letter-spacing:16.115096pt;}
.ls6b{letter-spacing:16.126652pt;}
.ls9{letter-spacing:16.365231pt;}
.ls5f{letter-spacing:16.617067pt;}
.ls63{letter-spacing:16.626422pt;}
.ls62{letter-spacing:16.627230pt;}
.ls61{letter-spacing:16.627733pt;}
.ls15{letter-spacing:16.809067pt;}
.ls70{letter-spacing:16.848078pt;}
.ls21{letter-spacing:16.963096pt;}
.ls12{letter-spacing:17.065067pt;}
.ls60{letter-spacing:17.155733pt;}
.ls16{letter-spacing:17.581762pt;}
.ls13{letter-spacing:17.832429pt;}
.ls19{letter-spacing:18.265067pt;}
.ls66{letter-spacing:18.582400pt;}
.ls2c{letter-spacing:18.717762pt;}
.ls20{letter-spacing:18.987682pt;}
.ls2b{letter-spacing:18.993015pt;}
.ls1a{letter-spacing:19.837762pt;}
.ls5a{letter-spacing:20.265067pt;}
.ls69{letter-spacing:20.406400pt;}
.ls3b{letter-spacing:20.737067pt;}
.ls2f{letter-spacing:21.373762pt;}
.lsb{letter-spacing:21.678618pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls77{letter-spacing:608.658970pt;}
.ls7a{letter-spacing:829.518933pt;}
.ls6e{letter-spacing:872.135151pt;}
.ls6d{letter-spacing:921.099418pt;}
.ws12{word-spacing:-25.362056pt;}
.ws39{word-spacing:-13.283467pt;}
.ws93{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws91{word-spacing:-4.463245pt;}
.ws80{word-spacing:-4.410111pt;}
.ws7f{word-spacing:-3.763200pt;}
.ws79{word-spacing:-3.719371pt;}
.ws6b{word-spacing:-2.816095pt;}
.ws3c{word-spacing:-2.444158pt;}
.ws60{word-spacing:-2.178489pt;}
.ws69{word-spacing:-2.072221pt;}
.wsb9{word-spacing:-1.965953pt;}
.ws5b{word-spacing:-1.859685pt;}
.ws57{word-spacing:-1.806551pt;}
.wsa6{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws77{word-spacing:-1.594016pt;}
.ws52{word-spacing:-1.540882pt;}
.ws50{word-spacing:-1.487748pt;}
.wse9{word-spacing:-1.482445pt;}
.ws58{word-spacing:-1.381481pt;}
.ws45{word-spacing:-1.328347pt;}
.ws92{word-spacing:-1.291162pt;}
.ws61{word-spacing:-1.275213pt;}
.ws53{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws55{word-spacing:-1.168945pt;}
.ws48{word-spacing:-1.062677pt;}
.wsaf{word-spacing:-1.052058pt;}
.ws8{word-spacing:-1.041421pt;}
.ws42{word-spacing:-1.009543pt;}
.wse5{word-spacing:-0.956416pt;}
.ws5f{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.wsb0{word-spacing:-0.812954pt;}
.ws44{word-spacing:-0.797008pt;}
.wsc0{word-spacing:-0.765133pt;}
.wsb4{word-spacing:-0.743874pt;}
.wsa7{word-spacing:-0.729098pt;}
.ws43{word-spacing:-0.690740pt;}
.wsb6{word-spacing:-0.669491pt;}
.ws5c{word-spacing:-0.637606pt;}
.ws41{word-spacing:-0.584473pt;}
.ws3f{word-spacing:-0.531339pt;}
.wsc1{word-spacing:-0.526029pt;}
.ws5d{word-spacing:-0.478205pt;}
.wsb7{word-spacing:-0.430387pt;}
.ws1e{word-spacing:-0.382566pt;}
.ws4b{word-spacing:-0.371937pt;}
.wsc3{word-spacing:-0.334746pt;}
.ws26{word-spacing:-0.318803pt;}
.wsc7{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.wsb8{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws33{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws83{word-spacing:-0.055366pt;}
.ws3b{word-spacing:-0.053134pt;}
.ws9c{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.ws7d{word-spacing:-0.040382pt;}
.ws7{word-spacing:-0.037194pt;}
.wsdc{word-spacing:-0.007817pt;}
.wsb1{word-spacing:-0.006212pt;}
.ws3{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.001519pt;}
.wsd0{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.wsc5{word-spacing:0.095642pt;}
.ws28{word-spacing:0.106268pt;}
.wsa2{word-spacing:0.143462pt;}
.ws5a{word-spacing:0.159402pt;}
.wsb3{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wsc2{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.wsda{word-spacing:0.286925pt;}
.wsa0{word-spacing:0.318803pt;}
.wsa5{word-spacing:0.371937pt;}
.wsf3{word-spacing:0.382566pt;}
.ws56{word-spacing:0.425071pt;}
.ws4e{word-spacing:0.478205pt;}
.ws66{word-spacing:0.531339pt;}
.ws6a{word-spacing:0.584473pt;}
.ws9f{word-spacing:0.592444pt;}
.ws9a{word-spacing:0.596062pt;}
.ws47{word-spacing:0.637606pt;}
.ws86{word-spacing:0.664897pt;}
.wsce{word-spacing:0.669491pt;}
.ws67{word-spacing:0.690740pt;}
.ws97{word-spacing:0.720800pt;}
.ws82{word-spacing:0.743874pt;}
.wsbd{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws5e{word-spacing:0.903276pt;}
.ws94{word-spacing:0.956410pt;}
.wsea{word-spacing:1.004237pt;}
.ws74{word-spacing:1.009543pt;}
.ws46{word-spacing:1.062677pt;}
.ws16{word-spacing:1.099878pt;}
.wsa1{word-spacing:1.115811pt;}
.ws34{word-spacing:1.168945pt;}
.ws1f{word-spacing:1.243341pt;}
.wscb{word-spacing:1.386803pt;}
.wsa8{word-spacing:1.434614pt;}
.wsed{word-spacing:1.530266pt;}
.ws78{word-spacing:1.540882pt;}
.ws1b{word-spacing:1.578086pt;}
.ws59{word-spacing:1.594016pt;}
.ws51{word-spacing:1.647150pt;}
.ws37{word-spacing:1.700284pt;}
.wsca{word-spacing:1.865011pt;}
.ws71{word-spacing:1.912819pt;}
.ws17{word-spacing:1.912832pt;}
.ws8e{word-spacing:1.965953pt;}
.ws62{word-spacing:2.019087pt;}
.ws1a{word-spacing:2.104115pt;}
.ws36{word-spacing:2.125355pt;}
.ws68{word-spacing:2.178489pt;}
.ws2{word-spacing:2.232481pt;}
.ws4{word-spacing:2.235130pt;}
.wsf5{word-spacing:2.295398pt;}
.ws75{word-spacing:2.337890pt;}
.wsc9{word-spacing:2.343219pt;}
.ws72{word-spacing:2.444158pt;}
.wsbb{word-spacing:2.486682pt;}
.ws8c{word-spacing:2.497292pt;}
.wsd5{word-spacing:2.534502pt;}
.ws54{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.ws3e{word-spacing:2.603559pt;}
.wsbf{word-spacing:2.709827pt;}
.wsba{word-spacing:2.773606pt;}
.ws84{word-spacing:2.816095pt;}
.wsd1{word-spacing:2.821427pt;}
.ws22{word-spacing:2.861926pt;}
.wsbc{word-spacing:2.869229pt;}
.wsd6{word-spacing:2.869248pt;}
.ws70{word-spacing:2.922363pt;}
.ws20{word-spacing:3.012710pt;}
.wsae{word-spacing:3.028630pt;}
.ws38{word-spacing:3.081764pt;}
.ws8b{word-spacing:3.134898pt;}
.ws64{word-spacing:3.141335pt;}
.ws23{word-spacing:3.188032pt;}
.ws6f{word-spacing:3.241166pt;}
.ws21{word-spacing:3.299635pt;}
.ws3a{word-spacing:3.347434pt;}
.wsf9{word-spacing:3.395277pt;}
.ws1c{word-spacing:3.443098pt;}
.ws6c{word-spacing:3.772505pt;}
.wsec{word-spacing:3.921306pt;}
.wsc4{word-spacing:4.064768pt;}
.wsac{word-spacing:4.112589pt;}
.ws10{word-spacing:4.240070pt;}
.wsb5{word-spacing:4.250709pt;}
.wseb{word-spacing:4.256051pt;}
.ws2c{word-spacing:4.303843pt;}
.ws11{word-spacing:4.314458pt;}
.wsad{word-spacing:4.356977pt;}
.wsee{word-spacing:4.399514pt;}
.wsab{word-spacing:4.447334pt;}
.ws63{word-spacing:4.569513pt;}
.ws19{word-spacing:4.686438pt;}
.wsa4{word-spacing:4.877722pt;}
.ws3d{word-spacing:4.888316pt;}
.wsa3{word-spacing:5.212467pt;}
.wsd7{word-spacing:5.308109pt;}
.ws24{word-spacing:5.366521pt;}
.ws2d{word-spacing:5.419654pt;}
.ws4c{word-spacing:5.472788pt;}
.ws4d{word-spacing:5.525922pt;}
.wsbe{word-spacing:5.579056pt;}
.ws65{word-spacing:5.632190pt;}
.ws2f{word-spacing:5.685324pt;}
.ws98{word-spacing:5.950993pt;}
.ws2e{word-spacing:6.110395pt;}
.ws7b{word-spacing:6.218807pt;}
.ws40{word-spacing:6.269796pt;}
.wse{word-spacing:6.918010pt;}
.ws49{word-spacing:7.013670pt;}
.ws6e{word-spacing:7.173072pt;}
.ws6d{word-spacing:7.226206pt;}
.wsaa{word-spacing:7.460045pt;}
.wsa9{word-spacing:7.842611pt;}
.wscc{word-spacing:8.120064pt;}
.wsf7{word-spacing:8.123017pt;}
.wsd4{word-spacing:8.123759pt;}
.wsf4{word-spacing:8.124322pt;}
.wsd3{word-spacing:8.124442pt;}
.wse0{word-spacing:8.126592pt;}
.ws4a{word-spacing:8.873356pt;}
.ws30{word-spacing:10.587492pt;}
.wsc{word-spacing:10.823338pt;}
.ws8d{word-spacing:11.158112pt;}
.ws5{word-spacing:11.488866pt;}
.ws87{word-spacing:11.527648pt;}
.wsde{word-spacing:11.859558pt;}
.wsd8{word-spacing:11.899145pt;}
.wsfa{word-spacing:11.903949pt;}
.wsf8{word-spacing:11.904171pt;}
.wsef{word-spacing:11.907183pt;}
.wscd{word-spacing:11.907379pt;}
.wsd2{word-spacing:11.955200pt;}
.wsd9{word-spacing:12.146483pt;}
.ws76{word-spacing:13.230333pt;}
.ws85{word-spacing:13.815648pt;}
.wse6{word-spacing:13.820211pt;}
.wsd{word-spacing:14.319536pt;}
.wsc8{word-spacing:14.489702pt;}
.wsdf{word-spacing:14.537523pt;}
.wse8{word-spacing:14.585344pt;}
.wse4{word-spacing:14.769502pt;}
.wsf1{word-spacing:14.770278pt;}
.wsdb{word-spacing:14.771098pt;}
.wsf2{word-spacing:14.771840pt;}
.wsf0{word-spacing:14.773197pt;}
.wsf6{word-spacing:14.774093pt;}
.wse1{word-spacing:14.774118pt;}
.wsc6{word-spacing:14.776627pt;}
.wse3{word-spacing:15.159194pt;}
.wse2{word-spacing:15.302656pt;}
.ws8f{word-spacing:15.364542pt;}
.wse7{word-spacing:15.446118pt;}
.ws89{word-spacing:15.945370pt;}
.ws7c{word-spacing:16.033986pt;}
.ws90{word-spacing:16.554394pt;}
.wscf{word-spacing:17.215488pt;}
.ws9b{word-spacing:17.336473pt;}
.ws7a{word-spacing:17.616838pt;}
.wsdd{word-spacing:18.506650pt;}
.ws96{word-spacing:18.546871pt;}
.ws95{word-spacing:18.948380pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws4f{word-spacing:134.832838pt;}
.ws81{word-spacing:276.880579pt;}
.ws88{word-spacing:405.695618pt;}
.ws8a{word-spacing:407.919618pt;}
.ws9d{word-spacing:617.242033pt;}
.ws73{word-spacing:629.158115pt;}
.ws9e{word-spacing:693.727716pt;}
.ws7e{word-spacing:708.752647pt;}
.ws99{word-spacing:882.819789pt;}
._7{margin-left:-10.616218pt;}
._41{margin-left:-7.681642pt;}
._b{margin-left:-5.881958pt;}
._9{margin-left:-4.718299pt;}
._2{margin-left:-3.347424pt;}
._a{margin-left:-2.337896pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._45{width:3.247898pt;}
._11{width:4.394190pt;}
._5{width:10.132188pt;}
._3{width:11.530016pt;}
._14{width:12.493185pt;}
._16{width:13.859679pt;}
._c{width:14.967910pt;}
._10{width:16.673499pt;}
._e{width:17.884979pt;}
._19{width:18.975517pt;}
._13{width:20.031468pt;}
._d{width:20.925662pt;}
._43{width:21.857900pt;}
._40{width:23.226226pt;}
._12{width:24.416580pt;}
._f{width:25.536307pt;}
._6{width:27.188522pt;}
._47{width:29.177219pt;}
._48{width:30.509670pt;}
._42{width:31.536249pt;}
._4a{width:32.463763pt;}
._15{width:34.005675pt;}
._44{width:34.962084pt;}
._1a{width:38.043849pt;}
._4d{width:40.759282pt;}
._4c{width:42.680525pt;}
._4b{width:43.708211pt;}
._8{width:48.990464pt;}
._49{width:54.993920pt;}
._37{width:69.541779pt;}
._1f{width:122.675779pt;}
._2c{width:123.695952pt;}
._3c{width:127.691629pt;}
._23{width:132.027363pt;}
._28{width:135.512954pt;}
._1e{width:149.242779pt;}
._35{width:154.896237pt;}
._26{width:159.444507pt;}
._1b{width:183.535445pt;}
._22{width:185.161363pt;}
._36{width:190.007184pt;}
._3e{width:192.005022pt;}
._3f{width:209.688018pt;}
._31{width:249.857322pt;}
._2d{width:250.834987pt;}
._2f{width:254.703142pt;}
._20{width:256.913517pt;}
._38{width:261.164237pt;}
._33{width:262.651989pt;}
._29{width:269.708184pt;}
._24{width:273.533832pt;}
._3a{width:301.035990pt;}
._1c{width:304.309045pt;}
._3d{width:316.721147pt;}
._32{width:345.413507pt;}
._34{width:349.579213pt;}
._2b{width:367.772294pt;}
._21{width:380.056875pt;}
._2a{width:411.937275pt;}
._3b{width:413.510042pt;}
._27{width:423.800716pt;}
._30{width:445.390442pt;}
._25{width:447.600816pt;}
._1d{width:456.442314pt;}
._2e{width:458.270123pt;}
._39{width:465.326318pt;}
._17{width:823.832043pt;}
._46{width:2214.094447pt;}
._18{width:2235.347780pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fse{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:1.545957pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1e{bottom:26.907593pt;}
.y4d{bottom:28.346667pt;}
.y177{bottom:78.638667pt;}
.y134{bottom:81.480000pt;}
.ye6{bottom:81.536000pt;}
.y126{bottom:83.149333pt;}
.y162{bottom:86.037333pt;}
.ya2{bottom:86.908000pt;}
.y4c{bottom:92.108000pt;}
.y74{bottom:92.314667pt;}
.y1ff{bottom:92.892000pt;}
.y1c{bottom:93.018667pt;}
.yc1{bottom:95.681333pt;}
.y176{bottom:95.734667pt;}
.y133{bottom:98.217333pt;}
.ye5{bottom:98.273333pt;}
.y125{bottom:99.886667pt;}
.y193{bottom:102.157333pt;}
.y161{bottom:102.774667pt;}
.ya1{bottom:103.645333pt;}
.y1fe{bottom:108.233333pt;}
.y4b{bottom:108.844000pt;}
.y1b{bottom:108.920000pt;}
.y73{bottom:109.052000pt;}
.y1c9{bottom:110.984000pt;}
.yc0{bottom:112.418667pt;}
.y132{bottom:114.954667pt;}
.ye4{bottom:115.010667pt;}
.y124{bottom:116.624000pt;}
.y192{bottom:117.778667pt;}
.yfb{bottom:118.229333pt;}
.y160{bottom:119.512000pt;}
.y1fd{bottom:123.576000pt;}
.y1a{bottom:124.820000pt;}
.y4a{bottom:125.581333pt;}
.y72{bottom:125.788000pt;}
.y1c8{bottom:126.326667pt;}
.y167{bottom:127.186667pt;}
.ybf{bottom:129.156000pt;}
.y131{bottom:131.692000pt;}
.ye3{bottom:131.748000pt;}
.y123{bottom:133.361333pt;}
.y191{bottom:133.400000pt;}
.y15f{bottom:136.249333pt;}
.y1fc{bottom:138.918667pt;}
.y19{bottom:140.720000pt;}
.y1c7{bottom:141.669333pt;}
.y49{bottom:142.318667pt;}
.y71{bottom:142.525333pt;}
.ya0{bottom:143.457333pt;}
.y166{bottom:144.282667pt;}
.ybe{bottom:145.893333pt;}
.y130{bottom:148.429333pt;}
.ye2{bottom:148.485333pt;}
.y190{bottom:149.022667pt;}
.y122{bottom:150.098667pt;}
.y159{bottom:152.601333pt;}
.y15e{bottom:152.986667pt;}
.y1fb{bottom:154.261333pt;}
.y18{bottom:156.621333pt;}
.y1c6{bottom:157.012000pt;}
.y14b{bottom:157.564000pt;}
.y48{bottom:159.056000pt;}
.y70{bottom:159.262667pt;}
.y165{bottom:161.377333pt;}
.ybd{bottom:162.630667pt;}
.y9f{bottom:162.745333pt;}
.y12f{bottom:165.166667pt;}
.ye1{bottom:165.222667pt;}
.y121{bottom:166.836000pt;}
.y158{bottom:169.338667pt;}
.y1fa{bottom:169.604000pt;}
.y1c5{bottom:172.353333pt;}
.y17{bottom:172.521333pt;}
.y18f{bottom:172.613333pt;}
.y14a{bottom:174.660000pt;}
.y47{bottom:175.793333pt;}
.y6f{bottom:176.000000pt;}
.ybc{bottom:179.368000pt;}
.y12e{bottom:181.904000pt;}
.ye0{bottom:181.960000pt;}
.y9e{bottom:182.032000pt;}
.y15d{bottom:182.822667pt;}
.y120{bottom:183.573333pt;}
.y1f9{bottom:184.946667pt;}
.y157{bottom:186.076000pt;}
.y1c4{bottom:187.696000pt;}
.y18e{bottom:188.234667pt;}
.y16{bottom:188.421333pt;}
.y46{bottom:192.530667pt;}
.y6e{bottom:192.737333pt;}
.y11f{bottom:195.726667pt;}
.ybb{bottom:196.105333pt;}
.y12d{bottom:198.641333pt;}
.ydf{bottom:198.697333pt;}
.y15c{bottom:199.918667pt;}
.y1f8{bottom:200.289333pt;}
.y11e{bottom:200.310667pt;}
.y9d{bottom:201.318667pt;}
.y156{bottom:202.813333pt;}
.y1c3{bottom:203.038667pt;}
.y18d{bottom:203.856000pt;}
.y15{bottom:204.322667pt;}
.y45{bottom:209.268000pt;}
.y6d{bottom:209.474667pt;}
.yba{bottom:212.841333pt;}
.y12c{bottom:215.378667pt;}
.yde{bottom:215.434667pt;}
.y1f7{bottom:215.632000pt;}
.y11d{bottom:217.048000pt;}
.y1c2{bottom:218.381333pt;}
.y18c{bottom:219.478667pt;}
.y155{bottom:219.550667pt;}
.y9c{bottom:220.606667pt;}
.y44{bottom:226.005333pt;}
.y6c{bottom:226.212000pt;}
.yb9{bottom:229.578667pt;}
.y1f6{bottom:230.974667pt;}
.y12b{bottom:232.116000pt;}
.ydd{bottom:232.172000pt;}
.y1c1{bottom:233.724000pt;}
.y11c{bottom:233.784000pt;}
.y154{bottom:236.288000pt;}
.y9b{bottom:239.893333pt;}
.y43{bottom:242.742667pt;}
.y6b{bottom:242.949333pt;}
.yb8{bottom:246.316000pt;}
.y1c0{bottom:249.066667pt;}
.y11b{bottom:250.521333pt;}
.y18b{bottom:251.040000pt;}
.ydc{bottom:252.894667pt;}
.y153{bottom:253.025333pt;}
.y9a{bottom:259.180000pt;}
.y42{bottom:259.480000pt;}
.y6a{bottom:259.686667pt;}
.y12a{bottom:259.780000pt;}
.y1f5{bottom:261.658667pt;}
.yb7{bottom:263.053333pt;}
.y1bf{bottom:264.409333pt;}
.y14{bottom:266.804000pt;}
.y11a{bottom:267.258667pt;}
.y18a{bottom:267.777333pt;}
.y152{bottom:269.761333pt;}
.y41{bottom:276.217333pt;}
.y69{bottom:276.424000pt;}
.y1f4{bottom:277.001333pt;}
.y99{bottom:278.468000pt;}
.y1be{bottom:279.752000pt;}
.yb6{bottom:279.790667pt;}
.y13{bottom:282.705333pt;}
.ydb{bottom:282.782667pt;}
.y119{bottom:283.996000pt;}
.y189{bottom:284.514667pt;}
.y151{bottom:286.498667pt;}
.y1f3{bottom:292.344000pt;}
.y40{bottom:292.954667pt;}
.y68{bottom:293.161333pt;}
.y1bd{bottom:295.093333pt;}
.yb5{bottom:296.528000pt;}
.y98{bottom:297.754667pt;}
.y12{bottom:298.605333pt;}
.yda{bottom:299.520000pt;}
.y118{bottom:300.733333pt;}
.y188{bottom:301.252000pt;}
.yfa{bottom:303.040000pt;}
.y150{bottom:303.236000pt;}
.y1f2{bottom:307.686667pt;}
.y3f{bottom:309.692000pt;}
.y67{bottom:309.898667pt;}
.y1bc{bottom:310.436000pt;}
.y175{bottom:311.388000pt;}
.yb4{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.yd9{bottom:316.257333pt;}
.y97{bottom:317.041333pt;}
.y117{bottom:317.470667pt;}
.y187{bottom:317.989333pt;}
.yf9{bottom:319.777333pt;}
.y1f1{bottom:323.029333pt;}
.y1bb{bottom:325.778667pt;}
.y3e{bottom:326.429333pt;}
.y174{bottom:328.125333pt;}
.yb3{bottom:330.002667pt;}
.yd8{bottom:332.994667pt;}
.y14f{bottom:333.073333pt;}
.y116{bottom:334.208000pt;}
.y186{bottom:334.726667pt;}
.y96{bottom:336.328000pt;}
.yf8{bottom:336.514667pt;}
.y1f0{bottom:338.372000pt;}
.y10{bottom:338.376000pt;}
.y66{bottom:339.734667pt;}
.y1ba{bottom:341.121333pt;}
.y3d{bottom:343.166667pt;}
.y173{bottom:344.862667pt;}
.yb2{bottom:346.740000pt;}
.yd7{bottom:349.730667pt;}
.y14e{bottom:350.168000pt;}
.y115{bottom:350.945333pt;}
.y185{bottom:351.464000pt;}
.yf7{bottom:353.252000pt;}
.y1ef{bottom:353.714667pt;}
.yf{bottom:354.277333pt;}
.y95{bottom:355.616000pt;}
.y1b9{bottom:356.464000pt;}
.y3c{bottom:359.904000pt;}
.y172{bottom:361.600000pt;}
.yb1{bottom:363.477333pt;}
.yd6{bottom:366.468000pt;}
.y114{bottom:367.682667pt;}
.y184{bottom:368.201333pt;}
.y1ee{bottom:369.056000pt;}
.yf6{bottom:369.989333pt;}
.ye{bottom:370.177333pt;}
.y1b8{bottom:371.806667pt;}
.y94{bottom:374.902667pt;}
.y171{bottom:378.337333pt;}
.yb0{bottom:380.214667pt;}
.y3b{bottom:380.626667pt;}
.yd5{bottom:383.205333pt;}
.y1ed{bottom:384.398667pt;}
.y113{bottom:384.420000pt;}
.y183{bottom:384.937333pt;}
.yf5{bottom:386.726667pt;}
.y1b7{bottom:387.149333pt;}
.y93{bottom:394.189333pt;}
.y170{bottom:395.074667pt;}
.yd{bottom:395.376000pt;}
.yaf{bottom:396.952000pt;}
.y1ec{bottom:399.741333pt;}
.yd4{bottom:399.942667pt;}
.y112{bottom:401.157333pt;}
.y182{bottom:401.674667pt;}
.y1b6{bottom:402.492000pt;}
.yf4{bottom:403.464000pt;}
.yc{bottom:411.276000pt;}
.y16f{bottom:411.812000pt;}
.y92{bottom:413.477333pt;}
.yae{bottom:413.689333pt;}
.y1eb{bottom:415.084000pt;}
.yd3{bottom:416.680000pt;}
.y1b5{bottom:417.834667pt;}
.y111{bottom:417.894667pt;}
.y181{bottom:418.412000pt;}
.yf3{bottom:420.201333pt;}
.yad{bottom:430.426667pt;}
.y16e{bottom:432.534667pt;}
.y91{bottom:432.764000pt;}
.y1b4{bottom:433.176000pt;}
.yb{bottom:435.146667pt;}
.y180{bottom:435.149333pt;}
.yf2{bottom:436.938667pt;}
.y110{bottom:438.617333pt;}
.y1ea{bottom:445.769333pt;}
.yd2{bottom:446.516000pt;}
.yac{bottom:447.164000pt;}
.y3a{bottom:447.426667pt;}
.y1b3{bottom:448.518667pt;}
.ya{bottom:451.048000pt;}
.y17f{bottom:451.886667pt;}
.y90{bottom:452.050667pt;}
.yf1{bottom:457.661333pt;}
.y16d{bottom:459.550667pt;}
.y1e9{bottom:461.112000pt;}
.y1b2{bottom:463.861333pt;}
.yab{bottom:463.901333pt;}
.y129{bottom:466.232000pt;}
.y9{bottom:466.948000pt;}
.y10f{bottom:468.505333pt;}
.y17e{bottom:468.624000pt;}
.y8f{bottom:471.338667pt;}
.y1e8{bottom:476.454667pt;}
.y16c{bottom:476.646667pt;}
.y1b1{bottom:479.204000pt;}
.yaa{bottom:480.638667pt;}
.y39{bottom:480.661333pt;}
.y8{bottom:482.848000pt;}
.y128{bottom:483.328000pt;}
.y10e{bottom:485.242667pt;}
.y17d{bottom:489.346667pt;}
.yef{bottom:489.714667pt;}
.y8e{bottom:490.625333pt;}
.y1e7{bottom:491.797333pt;}
.y16b{bottom:493.742667pt;}
.y1b0{bottom:494.546667pt;}
.ya9{bottom:497.376000pt;}
.yec{bottom:497.844000pt;}
.y38{bottom:497.957333pt;}
.y149{bottom:498.281333pt;}
.y7{bottom:498.749333pt;}
.y10d{bottom:501.980000pt;}
.yee{bottom:506.450667pt;}
.yf0{bottom:506.477333pt;}
.y1e6{bottom:507.138667pt;}
.y1af{bottom:509.889333pt;}
.y8d{bottom:509.912000pt;}
.ya8{bottom:514.113333pt;}
.y6{bottom:514.649333pt;}
.y148{bottom:515.018667pt;}
.y37{bottom:515.252000pt;}
.y10c{bottom:518.717333pt;}
.y17c{bottom:519.234667pt;}
.y164{bottom:520.266667pt;}
.yeb{bottom:521.753333pt;}
.y1e5{bottom:522.481333pt;}
.yed{bottom:523.188000pt;}
.y1ae{bottom:525.232000pt;}
.y8c{bottom:529.198667pt;}
.y5{bottom:530.549333pt;}
.ya7{bottom:530.850667pt;}
.y147{bottom:531.756000pt;}
.y36{bottom:532.546667pt;}
.yea{bottom:533.709333pt;}
.y10b{bottom:535.454667pt;}
.y17b{bottom:535.972000pt;}
.y163{bottom:537.362667pt;}
.y1e4{bottom:537.824000pt;}
.y1ad{bottom:540.574667pt;}
.ye9{bottom:545.000000pt;}
.y4{bottom:546.450667pt;}
.ya6{bottom:547.588000pt;}
.y8b{bottom:548.486667pt;}
.y146{bottom:548.493333pt;}
.y35{bottom:549.842667pt;}
.y10a{bottom:552.192000pt;}
.y17a{bottom:552.709333pt;}
.y1e3{bottom:553.166667pt;}
.y1ac{bottom:555.916000pt;}
.ye8{bottom:561.737333pt;}
.y1{bottom:562.350634pt;}
.ya5{bottom:564.325333pt;}
.y145{bottom:565.230667pt;}
.y34{bottom:567.137333pt;}
.y8a{bottom:567.773333pt;}
.y1e2{bottom:568.509333pt;}
.y179{bottom:569.446667pt;}
.y1ab{bottom:571.258667pt;}
.y109{bottom:577.297333pt;}
.ya4{bottom:581.062667pt;}
.y144{bottom:581.968000pt;}
.y1e1{bottom:583.852000pt;}
.y33{bottom:584.433333pt;}
.y1aa{bottom:586.601333pt;}
.y89{bottom:587.060000pt;}
.ye7{bottom:591.573333pt;}
.y15b{bottom:591.677333pt;}
.ya3{bottom:597.800000pt;}
.y143{bottom:598.705333pt;}
.y1e0{bottom:599.194667pt;}
.y178{bottom:599.282667pt;}
.y32{bottom:601.728000pt;}
.y1a9{bottom:601.944000pt;}
.y88{bottom:606.348000pt;}
.y15a{bottom:608.773333pt;}
.y108{bottom:611.170667pt;}
.y65{bottom:614.537333pt;}
.y142{bottom:615.442667pt;}
.y1a8{bottom:617.286667pt;}
.y31{bottom:619.022667pt;}
.y127{bottom:625.324000pt;}
.y87{bottom:625.634667pt;}
.y1df{bottom:629.878667pt;}
.y64{bottom:631.274667pt;}
.y141{bottom:632.180000pt;}
.y1a7{bottom:632.629333pt;}
.y16a{bottom:635.858667pt;}
.y30{bottom:636.318667pt;}
.y107{bottom:636.674667pt;}
.y86{bottom:644.921333pt;}
.y1de{bottom:645.221333pt;}
.y1a6{bottom:647.972000pt;}
.y63{bottom:648.012000pt;}
.y140{bottom:648.917333pt;}
.y169{bottom:652.954667pt;}
.y106{bottom:653.412000pt;}
.y2f{bottom:653.613333pt;}
.y1dd{bottom:660.564000pt;}
.y1a5{bottom:663.314667pt;}
.y85{bottom:664.209333pt;}
.yd1{bottom:664.350667pt;}
.y62{bottom:664.749333pt;}
.y13f{bottom:665.654667pt;}
.y105{bottom:670.149333pt;}
.y2e{bottom:670.908000pt;}
.y1dc{bottom:675.906667pt;}
.y1a4{bottom:678.657333pt;}
.yd0{bottom:681.088000pt;}
.y61{bottom:681.485333pt;}
.y84{bottom:683.496000pt;}
.y14d{bottom:685.944000pt;}
.y13e{bottom:686.377333pt;}
.y2d{bottom:688.204000pt;}
.y1db{bottom:691.249333pt;}
.y1a3{bottom:693.998667pt;}
.y104{bottom:695.256000pt;}
.ycf{bottom:697.825333pt;}
.y60{bottom:698.222667pt;}
.y83{bottom:702.782667pt;}
.y14c{bottom:703.040000pt;}
.y13d{bottom:704.309333pt;}
.y2c{bottom:705.498667pt;}
.y1da{bottom:706.592000pt;}
.y1a2{bottom:709.341333pt;}
.yce{bottom:714.562667pt;}
.y5f{bottom:714.960000pt;}
.y103{bottom:720.760000pt;}
.y1d9{bottom:721.934667pt;}
.y2b{bottom:722.794667pt;}
.y1a1{bottom:724.684000pt;}
.y82{bottom:729.494667pt;}
.ycd{bottom:731.300000pt;}
.y5e{bottom:731.697333pt;}
.y102{bottom:733.320000pt;}
.y1d8{bottom:737.277333pt;}
.y101{bottom:737.317333pt;}
.y100{bottom:737.497333pt;}
.y1a0{bottom:740.026667pt;}
.y2a{bottom:740.089333pt;}
.y13c{bottom:741.930667pt;}
.ycc{bottom:748.036000pt;}
.y5d{bottom:748.434667pt;}
.y1d7{bottom:752.620000pt;}
.y19f{bottom:755.369333pt;}
.yff{bottom:755.969333pt;}
.y81{bottom:761.186667pt;}
.y13b{bottom:763.673333pt;}
.ycb{bottom:764.773333pt;}
.y5c{bottom:765.172000pt;}
.y1d6{bottom:767.961333pt;}
.y19e{bottom:770.712000pt;}
.y29{bottom:772.636000pt;}
.y80{bottom:777.924000pt;}
.yfd{bottom:780.848000pt;}
.yca{bottom:781.510667pt;}
.y5b{bottom:781.909333pt;}
.y1d5{bottom:783.304000pt;}
.y13a{bottom:785.414667pt;}
.y19d{bottom:786.054667pt;}
.y28{bottom:786.982667pt;}
.yfc{bottom:789.960000pt;}
.yfe{bottom:789.961333pt;}
.y7f{bottom:794.661333pt;}
.yc9{bottom:798.248000pt;}
.y5a{bottom:798.646667pt;}
.y19c{bottom:801.397333pt;}
.y27{bottom:805.186667pt;}
.y139{bottom:807.156000pt;}
.y7e{bottom:811.398667pt;}
.y1d4{bottom:813.989333pt;}
.yc8{bottom:814.985333pt;}
.y59{bottom:815.384000pt;}
.y19b{bottom:816.738667pt;}
.y26{bottom:819.532000pt;}
.y7d{bottom:828.136000pt;}
.y138{bottom:828.898667pt;}
.y1d3{bottom:829.332000pt;}
.y25{bottom:830.021333pt;}
.yc7{bottom:831.722667pt;}
.y19a{bottom:832.081333pt;}
.y58{bottom:832.121333pt;}
.y1d2{bottom:844.674667pt;}
.y7c{bottom:844.873333pt;}
.y199{bottom:847.424000pt;}
.y24{bottom:848.225333pt;}
.yc6{bottom:848.460000pt;}
.y57{bottom:848.858667pt;}
.y137{bottom:850.177333pt;}
.y1d1{bottom:860.017333pt;}
.y7b{bottom:861.610667pt;}
.y198{bottom:862.766667pt;}
.yc5{bottom:865.197333pt;}
.y56{bottom:865.596000pt;}
.y136{bottom:871.457333pt;}
.y1d0{bottom:875.360000pt;}
.yc4{bottom:877.352000pt;}
.y7a{bottom:878.348000pt;}
.yc3{bottom:881.934667pt;}
.y197{bottom:882.094667pt;}
.y55{bottom:882.333333pt;}
.y23{bottom:886.185333pt;}
.y1cf{bottom:890.701333pt;}
.y200{bottom:890.702667pt;}
.y79{bottom:895.085333pt;}
.y54{bottom:899.070667pt;}
.y135{bottom:899.564000pt;}
.yc2{bottom:902.657333pt;}
.y1ce{bottom:906.044000pt;}
.y168{bottom:911.684000pt;}
.y78{bottom:911.822667pt;}
.y196{bottom:911.982667pt;}
.y53{bottom:915.808000pt;}
.y1cd{bottom:921.386667pt;}
.y22{bottom:921.669333pt;}
.y77{bottom:928.560000pt;}
.y52{bottom:932.545333pt;}
.y195{bottom:935.573333pt;}
.y1cc{bottom:936.729333pt;}
.y76{bottom:945.297333pt;}
.y21{bottom:946.776000pt;}
.y51{bottom:949.282667pt;}
.y1cb{bottom:952.072000pt;}
.y194{bottom:959.165333pt;}
.y75{bottom:962.034667pt;}
.y50{bottom:966.020000pt;}
.y1ca{bottom:967.414667pt;}
.y20{bottom:971.881333pt;}
.y4f{bottom:982.757333pt;}
.y1d{bottom:1010.536000pt;}
.y4e{bottom:1038.548000pt;}
.h1a{height:0.531339pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h16{height:29.599908pt;}
.h3{height:30.399505pt;}
.h13{height:30.605184pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.h1e{height:31.558400pt;}
.h14{height:33.219600pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h18{height:35.052646pt;}
.h19{height:37.778179pt;}
.h10{height:38.256384pt;}
.h11{height:38.681455pt;}
.h9{height:38.947124pt;}
.h1f{height:40.969733pt;}
.h1b{height:41.524400pt;}
.h24{height:42.079067pt;}
.h7{height:45.272024pt;}
.h23{height:46.421467pt;}
.h22{height:46.426800pt;}
.hb{height:48.365611pt;}
.h17{height:48.688666pt;}
.h20{height:49.644841pt;}
.h15{height:50.533242pt;}
.h1d{height:55.520666pt;}
.h21{height:59.860400pt;}
.h8{height:68.781897pt;}
.ha{height:68.861952pt;}
.h1c{height:84.532400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:51.603593pt;}
.xb3{left:76.309333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x2a{left:230.550667pt;}
.x28{left:236.157333pt;}
.x29{left:237.193333pt;}
.x5{left:239.924000pt;}
.x8{left:250.204000pt;}
.x45{left:253.602667pt;}
.xa3{left:256.613333pt;}
.x8e{left:262.934667pt;}
.x66{left:264.358667pt;}
.x46{left:267.417333pt;}
.x47{left:270.932000pt;}
.x9c{left:272.617333pt;}
.x7{left:273.893333pt;}
.xb2{left:275.082667pt;}
.xae{left:278.361333pt;}
.xa7{left:281.564000pt;}
.x4a{left:282.954667pt;}
.x15{left:284.230667pt;}
.x6b{left:286.062667pt;}
.x6d{left:287.702667pt;}
.x51{left:289.548000pt;}
.x27{left:294.066667pt;}
.xa6{left:295.558667pt;}
.x16{left:297.514667pt;}
.x6c{left:299.346667pt;}
.xb{left:300.597333pt;}
.xa5{left:301.697333pt;}
.x52{left:302.832000pt;}
.xa8{left:304.549333pt;}
.x53{left:306.220000pt;}
.xc{left:307.238667pt;}
.x2b{left:309.884000pt;}
.x36{left:310.857333pt;}
.xd{left:313.821333pt;}
.x67{left:317.960000pt;}
.x54{left:319.502667pt;}
.xe{left:320.462667pt;}
.x55{left:322.890667pt;}
.x7c{left:324.532000pt;}
.x2c{left:325.753333pt;}
.x25{left:326.881333pt;}
.x2d{left:328.869333pt;}
.x37{left:330.936000pt;}
.x56{left:336.173333pt;}
.x7d{left:337.814667pt;}
.x26{left:340.165333pt;}
.x2e{left:341.621333pt;}
.x38{left:343.689333pt;}
.x94{left:345.584000pt;}
.xb1{left:347.008000pt;}
.xa4{left:350.390667pt;}
.x57{left:352.844000pt;}
.x34{left:353.852000pt;}
.x90{left:356.377333pt;}
.x40{left:360.828000pt;}
.x5b{left:366.656000pt;}
.x83{left:369.516000pt;}
.xb0{left:370.494667pt;}
.x21{left:374.057333pt;}
.x41{left:377.365333pt;}
.x95{left:378.965333pt;}
.x5c{left:379.938667pt;}
.x5d{left:383.326667pt;}
.x11{left:385.208000pt;}
.x22{left:387.341333pt;}
.x42{left:390.649333pt;}
.x12{left:391.850667pt;}
.x5e{left:396.609333pt;}
.x78{left:398.117333pt;}
.x5f{left:399.997333pt;}
.x61{left:405.408000pt;}
.x8f{left:407.685333pt;}
.x96{left:411.480000pt;}
.x60{left:413.281333pt;}
.x79{left:417.112000pt;}
.x62{left:418.692000pt;}
.x89{left:425.860000pt;}
.xa2{left:428.893333pt;}
.x97{left:434.017333pt;}
.x7a{left:437.321333pt;}
.xa9{left:438.218667pt;}
.x8a{left:444.920000pt;}
.x7e{left:450.770667pt;}
.x58{left:452.668000pt;}
.x4b{left:457.494667pt;}
.x59{left:462.666667pt;}
.x75{left:463.598667pt;}
.x43{left:468.152000pt;}
.x9{left:471.509333pt;}
.x84{left:472.577333pt;}
.x4c{left:474.824000pt;}
.x98{left:475.918667pt;}
.xa{left:478.150667pt;}
.x44{left:481.436000pt;}
.x4d{left:488.638667pt;}
.x73{left:491.341333pt;}
.xf{left:497.878667pt;}
.x99{left:500.722667pt;}
.x10{left:504.520000pt;}
.x1d{left:506.578667pt;}
.x76{left:507.476000pt;}
.x4e{left:517.537333pt;}
.x1e{left:519.861333pt;}
.x1f{left:523.209333pt;}
.x77{left:525.914667pt;}
.x74{left:532.136000pt;}
.x70{left:534.665333pt;}
.x20{left:536.493333pt;}
.x48{left:537.925333pt;}
.x68{left:542.365333pt;}
.x71{left:547.948000pt;}
.x49{left:551.740000pt;}
.xaa{left:555.369333pt;}
.x9a{left:561.554667pt;}
.xad{left:563.212000pt;}
.x9d{left:565.162667pt;}
.x7b{left:566.286667pt;}
.x8d{left:567.953333pt;}
.xab{left:569.953333pt;}
.x39{left:577.320000pt;}
.x19{left:586.713333pt;}
.x35{left:589.601333pt;}
.x3f{left:590.513333pt;}
.x3a{left:593.157333pt;}
.x93{left:594.192000pt;}
.x23{left:596.278667pt;}
.x1a{left:599.996000pt;}
.x2f{left:601.549333pt;}
.x1b{left:603.950667pt;}
.x3b{left:605.909333pt;}
.x9b{left:607.133333pt;}
.x24{left:609.561333pt;}
.x9e{left:613.016000pt;}
.x30{left:614.301333pt;}
.x1c{left:617.234667pt;}
.x3c{left:621.748000pt;}
.x72{left:623.096000pt;}
.x3d{left:624.833333pt;}
.x69{left:627.837333pt;}
.x31{left:630.169333pt;}
.x6a{left:634.162667pt;}
.x5a{left:635.288000pt;}
.x3e{left:637.585333pt;}
.x63{left:638.530667pt;}
.xaf{left:641.885333pt;}
.x65{left:643.790667pt;}
.x17{left:646.206667pt;}
.x64{left:651.813333pt;}
.xb5{left:653.364000pt;}
.x91{left:656.921333pt;}
.x18{left:659.490667pt;}
.x8b{left:664.772000pt;}
.xb6{left:666.565333pt;}
.x4f{left:669.769333pt;}
.x7f{left:673.994667pt;}
.x86{left:675.117333pt;}
.x32{left:676.829333pt;}
.x9f{left:678.237333pt;}
.x92{left:680.162667pt;}
.x50{left:682.522667pt;}
.x13{left:683.880000pt;}
.x80{left:686.746667pt;}
.x33{left:689.581333pt;}
.xb7{left:690.474667pt;}
.x8c{left:691.457333pt;}
.xa0{left:694.822667pt;}
.x14{left:697.164000pt;}
.x81{left:699.406667pt;}
.x6e{left:703.342667pt;}
.xa1{left:708.105333pt;}
.x82{left:712.158667pt;}
.x6f{left:716.626667pt;}
.xb4{left:720.250667pt;}
.x87{left:726.922667pt;}
.xac{left:729.688000pt;}
.x85{left:731.918667pt;}
.x88{left:744.066667pt;}
}




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