
    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_0149baac395edc2427e0e992.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_a0eeb0929b277b2ed2bf8f6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_ae3e6d3ba98dac046a02028a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_20e26151e3d3500cd3c43eda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.718000;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_791a1f9a64161fe14ed78e4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_ab2d04f1d1d52e3d448709f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_0a9c2a1f9705ad7e66ffd943.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012207;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_630eb7458deb6215ab7bf6a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015137;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_791a1f9a64161fe14ed78e4b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_ab2d04f1d1d52e3d448709f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_dd2165055409236231257749.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_0be28832a2255a205045b1e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_86cdfedcc06c2c30fdf5f530.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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:ff13;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958000;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:ff14;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;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:ff15;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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:ff16;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958000;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:ff17;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958000;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:ff18;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958000;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:ff19;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958000;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:ff1a;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958000;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:ff1b;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958000;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:ff1c;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958000;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:ff1d;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958000;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:ff1e;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958000;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:ff1f;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958000;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:ff20;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958000;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:ff21;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.958000;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:ff22;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.958000;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:ff23;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958000;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:ff24;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.958000;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:ff25;src:url('chunks/assets/font_9f5b8937668158e0f0519a3b.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.958000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-39.148800px;}
.v7{vertical-align:-30.564000px;}
.v8{vertical-align:-29.285400px;}
.v9{vertical-align:-25.876200px;}
.vc{vertical-align:-21.979200px;}
.v4{vertical-align:-1.218000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.505400px;}
.vd{vertical-align:8.766600px;}
.v2{vertical-align:17.582400px;}
.v6{vertical-align:26.119200px;}
.v1{vertical-align:27.972000px;}
.v3{vertical-align:29.759400px;}
.vb{vertical-align:35.556600px;}
.ls5{letter-spacing:-4.620000px;}
.ls13{letter-spacing:-2.772000px;}
.ls0{letter-spacing:-2.640000px;}
.ls27{letter-spacing:-2.268000px;}
.ls3e{letter-spacing:-2.246400px;}
.ls26{letter-spacing:-2.244000px;}
.ls16{letter-spacing:-1.848000px;}
.lsc{letter-spacing:-1.795200px;}
.ls2a{letter-spacing:-1.470000px;}
.ls2c{letter-spacing:-1.344000px;}
.ls29{letter-spacing:-1.275000px;}
.ls31{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-1.071000px;}
.ls2f{letter-spacing:-0.966000px;}
.ls33{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.858000px;}
.ls2e{letter-spacing:-0.816000px;}
.ls25{letter-spacing:-0.672000px;}
.lsb{letter-spacing:-0.633600px;}
.ls2d{letter-spacing:-0.612000px;}
.ls30{letter-spacing:-0.561000px;}
.lsd{letter-spacing:-0.475200px;}
.ls38{letter-spacing:-0.336000px;}
.lsf{letter-spacing:-0.316800px;}
.ls22{letter-spacing:-0.264000px;}
.ls23{letter-spacing:-0.205500px;}
.ls35{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.084000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.104400px;}
.lse{letter-spacing:0.105600px;}
.ls1c{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.153000px;}
.ls6{letter-spacing:0.158400px;}
.ls28{letter-spacing:0.171000px;}
.ls4{letter-spacing:0.198000px;}
.ls7{letter-spacing:0.210000px;}
.ls3c{letter-spacing:0.234000px;}
.ls21{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.316800px;}
.ls44{letter-spacing:0.336000px;}
.ls36{letter-spacing:0.369600px;}
.ls42{letter-spacing:0.421200px;}
.ls10{letter-spacing:0.422400px;}
.ls39{letter-spacing:0.468000px;}
.ls1d{letter-spacing:0.513000px;}
.ls41{letter-spacing:0.514800px;}
.ls11{letter-spacing:0.580800px;}
.ls24{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.627000px;}
.ls3a{letter-spacing:0.702000px;}
.ls37{letter-spacing:0.924000px;}
.ls8{letter-spacing:1.056000px;}
.ls18{letter-spacing:1.108800px;}
.ls1e{letter-spacing:1.116000px;}
.ls20{letter-spacing:1.275000px;}
.ls3b{letter-spacing:1.310400px;}
.ls14{letter-spacing:1.387838px;}
.ls3d{letter-spacing:1.404000px;}
.ls3{letter-spacing:1.592406px;}
.ls43{letter-spacing:1.684800px;}
.ls45{letter-spacing:1.722000px;}
.ls1{letter-spacing:2.123208px;}
.ls34{letter-spacing:2.263800px;}
.ls9{letter-spacing:2.323200px;}
.lsa{letter-spacing:2.587200px;}
.ls3f{letter-spacing:2.714400px;}
.ls40{letter-spacing:3.556800px;}
.ls32{letter-spacing:12.294000px;}
.ls1f{letter-spacing:205.086000px;}
.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;}
}
.ws72{word-spacing:-205.086000px;}
.ws25{word-spacing:-21.756000px;}
.ws105{word-spacing:-21.504000px;}
.ws7{word-spacing:-16.051200px;}
.ws109{word-spacing:-15.724800px;}
.ws108{word-spacing:-14.882400px;}
.wsd{word-spacing:-14.308800px;}
.wsc{word-spacing:-14.150400px;}
.ws6{word-spacing:-13.728000px;}
.ws107{word-spacing:-13.572000px;}
.ws10c{word-spacing:-13.478400px;}
.wsb{word-spacing:-13.411200px;}
.wsa{word-spacing:-13.252800px;}
.ws8{word-spacing:-13.094400px;}
.ws10a{word-spacing:-12.682800px;}
.ws113{word-spacing:-12.642000px;}
.ws106{word-spacing:-12.636000px;}
.ws10b{word-spacing:-12.589200px;}
.ws9{word-spacing:-11.932800px;}
.ws104{word-spacing:-11.844000px;}
.wsdf{word-spacing:-10.686000px;}
.ws95{word-spacing:-10.248000px;}
.wsde{word-spacing:-9.996000px;}
.wsc6{word-spacing:-9.954000px;}
.ws69{word-spacing:-9.468000px;}
.wsaf{word-spacing:-9.450000px;}
.ws3{word-spacing:-8.910000px;}
.wsa9{word-spacing:-4.382400px;}
.ws9c{word-spacing:-3.432000px;}
.wsee{word-spacing:-3.273600px;}
.ws1c{word-spacing:-2.970000px;}
.ws98{word-spacing:-2.851200px;}
.ws20{word-spacing:-2.706000px;}
.ws8e{word-spacing:-2.640000px;}
.ws84{word-spacing:-2.481600px;}
.ws15{word-spacing:-2.428800px;}
.ws8b{word-spacing:-2.376000px;}
.ws4f{word-spacing:-2.323200px;}
.ws79{word-spacing:-2.270400px;}
.wsb2{word-spacing:-2.164800px;}
.wsc0{word-spacing:-2.059200px;}
.wsb8{word-spacing:-2.006400px;}
.ws13{word-spacing:-1.953600px;}
.ws57{word-spacing:-1.900800px;}
.ws97{word-spacing:-1.795200px;}
.wsff{word-spacing:-1.742400px;}
.ws100{word-spacing:-1.689600px;}
.ws7b{word-spacing:-1.636800px;}
.ws103{word-spacing:-1.584000px;}
.ws3b{word-spacing:-1.478400px;}
.ws111{word-spacing:-1.450800px;}
.wsd9{word-spacing:-1.425600px;}
.ws31{word-spacing:-1.386000px;}
.ws14{word-spacing:-1.372800px;}
.ws80{word-spacing:-1.320000px;}
.ws86{word-spacing:-1.275000px;}
.wsf1{word-spacing:-1.233000px;}
.wscf{word-spacing:-1.214400px;}
.wsa5{word-spacing:-1.161600px;}
.ws10e{word-spacing:-1.076400px;}
.wsb7{word-spacing:-1.056000px;}
.ws70{word-spacing:-1.008000px;}
.ws52{word-spacing:-0.950400px;}
.ws11{word-spacing:-0.897600px;}
.ws2e{word-spacing:-0.858000px;}
.ws7d{word-spacing:-0.844800px;}
.wsc3{word-spacing:-0.739200px;}
.ws92{word-spacing:-0.686400px;}
.wsd1{word-spacing:-0.633600px;}
.wsf4{word-spacing:-0.627000px;}
.ws1e{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.475200px;}
.ws10d{word-spacing:-0.468000px;}
.ws94{word-spacing:-0.459000px;}
.ws54{word-spacing:-0.456000px;}
.ws12{word-spacing:-0.422400px;}
.wse8{word-spacing:-0.369600px;}
.ws6a{word-spacing:-0.342000px;}
.ws10{word-spacing:-0.316800px;}
.ws110{word-spacing:-0.234000px;}
.ws39{word-spacing:-0.211200px;}
.wsf{word-spacing:-0.210000px;}
.ws4{word-spacing:-0.198000px;}
.wsa6{word-spacing:-0.171000px;}
.ws40{word-spacing:-0.158400px;}
.ws5d{word-spacing:-0.153000px;}
.ws6f{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.105600px;}
.ws61{word-spacing:-0.052800px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.052800px;}
.ws3c{word-spacing:0.158400px;}
.ws93{word-spacing:0.205500px;}
.wse{word-spacing:0.210000px;}
.ws91{word-spacing:0.264000px;}
.ws47{word-spacing:0.316800px;}
.ws53{word-spacing:0.336000px;}
.ws4e{word-spacing:0.369600px;}
.ws1a{word-spacing:0.422400px;}
.ws8f{word-spacing:0.475200px;}
.ws2{word-spacing:0.530802px;}
.ws18{word-spacing:0.580800px;}
.ws9d{word-spacing:0.633600px;}
.ws4a{word-spacing:0.686400px;}
.ws16{word-spacing:0.739200px;}
.wsa8{word-spacing:0.792000px;}
.wsed{word-spacing:0.844800px;}
.ws9b{word-spacing:0.897600px;}
.wsbf{word-spacing:0.950400px;}
.ws83{word-spacing:1.003200px;}
.ws22{word-spacing:1.056000px;}
.ws81{word-spacing:1.108800px;}
.ws85{word-spacing:1.161600px;}
.wsb4{word-spacing:1.267200px;}
.ws5c{word-spacing:1.275000px;}
.wsfa{word-spacing:1.320000px;}
.ws41{word-spacing:1.372800px;}
.ws78{word-spacing:1.478400px;}
.ws7c{word-spacing:1.584000px;}
.wsf9{word-spacing:1.636800px;}
.ws2b{word-spacing:1.650000px;}
.wsab{word-spacing:1.689600px;}
.wsea{word-spacing:1.742400px;}
.ws33{word-spacing:1.795200px;}
.wsd4{word-spacing:1.836000px;}
.wsc4{word-spacing:1.887000px;}
.ws74{word-spacing:1.900800px;}
.ws21{word-spacing:1.914000px;}
.ws17{word-spacing:1.953600px;}
.ws44{word-spacing:2.006400px;}
.ws30{word-spacing:2.046000px;}
.wsc5{word-spacing:2.091000px;}
.ws8c{word-spacing:2.112000px;}
.ws23{word-spacing:2.178000px;}
.ws49{word-spacing:2.217600px;}
.ws42{word-spacing:2.270400px;}
.wsf7{word-spacing:2.323200px;}
.wsb9{word-spacing:2.346000px;}
.wsf5{word-spacing:2.376000px;}
.wsb6{word-spacing:2.428800px;}
.ws10f{word-spacing:2.480400px;}
.ws45{word-spacing:2.534400px;}
.wsae{word-spacing:2.550000px;}
.ws3a{word-spacing:2.640000px;}
.wse5{word-spacing:2.745600px;}
.wsb1{word-spacing:2.851200px;}
.wsad{word-spacing:2.904000px;}
.ws24{word-spacing:2.970000px;}
.wsc1{word-spacing:3.009600px;}
.ws6e{word-spacing:3.220800px;}
.wsd2{word-spacing:3.273600px;}
.ws7a{word-spacing:3.326400px;}
.wsf0{word-spacing:3.379200px;}
.ws0{word-spacing:3.432000px;}
.ws50{word-spacing:3.484800px;}
.ws9f{word-spacing:3.519000px;}
.wsfc{word-spacing:3.537600px;}
.wsa4{word-spacing:3.590400px;}
.ws60{word-spacing:3.643200px;}
.ws43{word-spacing:3.696000px;}
.ws51{word-spacing:3.801600px;}
.ws6d{word-spacing:3.854400px;}
.ws4c{word-spacing:3.907200px;}
.wse9{word-spacing:3.960000px;}
.ws75{word-spacing:4.012800px;}
.wsac{word-spacing:4.065600px;}
.ws1f{word-spacing:4.092000px;}
.ws32{word-spacing:4.158000px;}
.ws4d{word-spacing:4.171200px;}
.ws6b{word-spacing:4.224000px;}
.ws35{word-spacing:4.329600px;}
.ws99{word-spacing:4.488000px;}
.wsfe{word-spacing:4.540800px;}
.ws55{word-spacing:4.593600px;}
.wsd8{word-spacing:4.646400px;}
.ws2c{word-spacing:4.686000px;}
.ws3d{word-spacing:4.752000px;}
.wsf6{word-spacing:4.804800px;}
.ws5{word-spacing:4.818000px;}
.ws102{word-spacing:4.857600px;}
.ws6c{word-spacing:4.910400px;}
.wsdd{word-spacing:4.963200px;}
.ws101{word-spacing:5.016000px;}
.wsfb{word-spacing:5.068800px;}
.ws9a{word-spacing:5.121600px;}
.wsec{word-spacing:5.227200px;}
.wsd0{word-spacing:5.280000px;}
.ws48{word-spacing:5.332800px;}
.ws37{word-spacing:5.385600px;}
.wscd{word-spacing:5.438400px;}
.ws38{word-spacing:5.544000px;}
.ws62{word-spacing:5.596800px;}
.ws58{word-spacing:5.755200px;}
.ws56{word-spacing:5.808000px;}
.wsda{word-spacing:5.860800px;}
.ws5f{word-spacing:5.966400px;}
.ws2a{word-spacing:6.006000px;}
.wsb3{word-spacing:6.177600px;}
.wsa7{word-spacing:6.283200px;}
.ws76{word-spacing:6.336000px;}
.ws82{word-spacing:6.494400px;}
.ws36{word-spacing:6.758400px;}
.ws73{word-spacing:6.811200px;}
.ws2d{word-spacing:6.864000px;}
.wsdc{word-spacing:7.022400px;}
.wsd3{word-spacing:7.075200px;}
.ws28{word-spacing:7.194000px;}
.ws29{word-spacing:7.260000px;}
.wsef{word-spacing:7.286400px;}
.wsc2{word-spacing:7.339200px;}
.wsf8{word-spacing:7.392000px;}
.wsfd{word-spacing:7.444800px;}
.ws59{word-spacing:7.550400px;}
.ws65{word-spacing:7.579502px;}
.wse7{word-spacing:7.603200px;}
.ws8d{word-spacing:7.708800px;}
.wsce{word-spacing:7.761600px;}
.ws5a{word-spacing:7.814400px;}
.wsb5{word-spacing:7.920000px;}
.ws4b{word-spacing:7.972800px;}
.ws3f{word-spacing:8.078400px;}
.wsaa{word-spacing:8.184000px;}
.ws34{word-spacing:8.870400px;}
.ws5e{word-spacing:8.923200px;}
.ws27{word-spacing:9.372000px;}
.ws46{word-spacing:9.609600px;}
.wsdb{word-spacing:10.137600px;}
.wseb{word-spacing:10.401600px;}
.ws3e{word-spacing:10.665600px;}
.ws2f{word-spacing:11.022000px;}
.ws77{word-spacing:12.566400px;}
.ws1d{word-spacing:13.464000px;}
.ws90{word-spacing:15.364800px;}
.ws9e{word-spacing:15.840000px;}
.wse1{word-spacing:35.391677px;}
.wse0{word-spacing:35.392277px;}
.ws64{word-spacing:56.762102px;}
.wsbc{word-spacing:57.260158px;}
.ws87{word-spacing:67.112477px;}
.wscb{word-spacing:67.234877px;}
.wsa2{word-spacing:67.757472px;}
.wse6{word-spacing:69.340272px;}
.wsa1{word-spacing:77.803558px;}
.wsbd{word-spacing:82.431072px;}
.ws88{word-spacing:88.981558px;}
.wsc8{word-spacing:89.407558px;}
.wsd5{word-spacing:89.955358px;}
.wsf3{word-spacing:90.345672px;}
.ws66{word-spacing:91.511702px;}
.wsba{word-spacing:105.524573px;}
.wse2{word-spacing:120.178872px;}
.wsb0{word-spacing:120.179472px;}
.wse3{word-spacing:120.204677px;}
.wsf2{word-spacing:125.536872px;}
.wsc9{word-spacing:129.981672px;}
.wscc{word-spacing:129.982272px;}
.ws68{word-spacing:166.086672px;}
.wsbb{word-spacing:168.959598px;}
.wsca{word-spacing:170.861477px;}
.ws5b{word-spacing:178.335798px;}
.wsd6{word-spacing:184.474272px;}
.ws7e{word-spacing:186.189798px;}
.wse4{word-spacing:191.476272px;}
.wsa0{word-spacing:192.242758px;}
.wsc7{word-spacing:193.216558px;}
.ws89{word-spacing:196.102872px;}
.ws112{word-spacing:204.750000px;}
.ws26{word-spacing:205.086000px;}
.wsd7{word-spacing:206.220000px;}
.wsbe{word-spacing:206.430000px;}
.wsa3{word-spacing:207.354000px;}
.ws7f{word-spacing:246.344598px;}
.ws96{word-spacing:277.456398px;}
.ws71{word-spacing:298.133604px;}
.ws8a{word-spacing:346.743198px;}
.ws67{word-spacing:604.566666px;}
._4c{margin-left:-206.505600px;}
._f{margin-left:-139.469400px;}
._10{margin-left:-76.540800px;}
._18{margin-left:-27.825600px;}
._13{margin-left:-26.703600px;}
._14{margin-left:-24.860085px;}
._17{margin-left:-23.672085px;}
._d{margin-left:-18.696480px;}
._c{margin-left:-17.358000px;}
._15{margin-left:-15.618240px;}
._1b{margin-left:-14.097600px;}
._1a{margin-left:-12.619200px;}
._16{margin-left:-11.299200px;}
._12{margin-left:-9.385200px;}
._b{margin-left:-7.138957px;}
._3f{margin-left:-6.019200px;}
._4{margin-left:-4.925843px;}
._5{margin-left:-3.738371px;}
._8{margin-left:-2.597760px;}
._0{margin-left:-1.531200px;}
._1{width:1.742400px;}
._2{width:3.352800px;}
._3{width:4.968307px;}
._6{width:5.980043px;}
._e{width:7.920000px;}
._2e{width:9.890235px;}
._2f{width:10.990575px;}
._a{width:15.216000px;}
._7{width:16.219200px;}
._9{width:20.932800px;}
._1d{width:25.431000px;}
._27{width:26.821200px;}
._50{width:29.228400px;}
._2b{width:30.331909px;}
._19{width:41.160000px;}
._33{width:43.459271px;}
._23{width:65.616600px;}
._3b{width:68.110931px;}
._29{width:69.554885px;}
._3c{width:78.394141px;}
._3a{width:82.041067px;}
._32{width:86.009209px;}
._54{width:90.284938px;}
._40{width:91.373483px;}
._46{width:92.956283px;}
._37{width:95.170469px;}
._4d{width:96.692669px;}
._4a{width:101.926832px;}
._3e{width:109.843469px;}
._21{width:116.022728px;}
._53{width:117.698069px;}
._3d{width:122.346409px;}
._24{width:128.545200px;}
._43{width:135.649992px;}
._41{width:137.233392px;}
._47{width:138.816192px;}
._38{width:147.531869px;}
._51{width:152.889869px;}
._22{width:154.295764px;}
._20{width:157.637458px;}
._42{width:163.547036px;}
._48{width:165.129836px;}
._39{width:190.827919px;}
._1f{width:193.499669px;}
._1c{width:200.204119px;}
._25{width:205.086000px;}
._2c{width:208.058119px;}
._45{width:211.826069px;}
._49{width:218.888069px;}
._30{width:223.515869px;}
._2a{width:232.102411px;}
._31{width:258.717938px;}
._2d{width:268.273519px;}
._35{width:299.324719px;}
._28{width:318.707002px;}
._34{width:368.612119px;}
._4e{width:411.249919px;}
._4f{width:414.516377px;}
._1e{width:632.696186px;}
._52{width:776.471668px;}
._55{width:1864.972200px;}
._44{width:1866.442200px;}
._36{width:1867.618200px;}
._11{width:1889.332200px;}
._4b{width:2071.822200px;}
._26{width:2094.418200px;}
.fc5{color:transparent;}
.fc4{color:rgb(30,45,83);}
.fc3{color:rgb(160,32,44);}
.fc1{color:rgb(233,71,52);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:30.782400px;}
.fs18{font-size:31.477800px;}
.fsa{font-size:34.800000px;}
.fs14{font-size:36.000000px;}
.fs15{font-size:36.896400px;}
.fsb{font-size:39.331800px;}
.fsf{font-size:40.273200px;}
.fs16{font-size:40.610400px;}
.fse{font-size:41.100000px;}
.fs3{font-size:42.000000px;}
.fsc{font-size:43.289400px;}
.fs19{font-size:46.800000px;}
.fs6{font-size:48.972000px;}
.fs12{font-size:49.195200px;}
.fs10{font-size:50.430600px;}
.fs9{font-size:51.000000px;}
.fs17{font-size:51.630600px;}
.fs5{font-size:52.800000px;}
.fsd{font-size:55.101000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fs13{font-size:68.860800px;}
.fs11{font-size:70.567200px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:106.160400px;}
.fs0{font-size:264.000000px;}
.yad{bottom:-62.876100px;}
.y1eb{bottom:-59.457300px;}
.y24d{bottom:-59.194650px;}
.y19f{bottom:-58.438350px;}
.y26a{bottom:-57.565800px;}
.y11c{bottom:-57.312750px;}
.y1c9{bottom:-57.297150px;}
.y1dc{bottom:-57.048900px;}
.y17e{bottom:-56.844900px;}
.y22a{bottom:-56.834700px;}
.y25d{bottom:-56.801100px;}
.y203{bottom:-56.574450px;}
.ybf{bottom:-55.975350px;}
.y238{bottom:-55.792650px;}
.y214{bottom:-55.451700px;}
.y14f{bottom:-48.152700px;}
.y169{bottom:-47.813700px;}
.y1b6{bottom:-45.621150px;}
.yb2{bottom:-41.964018px;}
.y252{bottom:-38.783219px;}
.y1ef{bottom:-38.174978px;}
.y1a3{bottom:-38.026919px;}
.y26e{bottom:-37.154369px;}
.y120{bottom:-36.901319px;}
.y1cd{bottom:-36.885569px;}
.y183{bottom:-36.433319px;}
.y22e{bottom:-36.423269px;}
.y261{bottom:-36.389669px;}
.y1e0{bottom:-35.766578px;}
.yc4{bottom:-35.563919px;}
.y23c{bottom:-35.381219px;}
.y207{bottom:-35.291978px;}
.y218{bottom:-34.169378px;}
.y153{bottom:-31.805025px;}
.y16d{bottom:-31.466175px;}
.y1ba{bottom:-29.273625px;}
.yb1{bottom:-22.157400px;}
.y251{bottom:-21.552600px;}
.y1ee{bottom:-20.947650px;}
.y1a2{bottom:-20.796300px;}
.y26d{bottom:-19.923750px;}
.y11f{bottom:-19.670700px;}
.y1cc{bottom:-19.654950px;}
.y182{bottom:-19.202700px;}
.y22d{bottom:-19.192650px;}
.y260{bottom:-19.159050px;}
.y1df{bottom:-18.539250px;}
.yc3{bottom:-18.333300px;}
.y23b{bottom:-18.150600px;}
.y206{bottom:-18.064650px;}
.y152{bottom:-17.055600px;}
.y217{bottom:-16.942050px;}
.y16c{bottom:-16.716750px;}
.y1b9{bottom:-14.524200px;}
.y0{bottom:0.000000px;}
.y132{bottom:3.378750px;}
.y1ea{bottom:3.619500px;}
.y24c{bottom:3.882150px;}
.y148{bottom:3.888900px;}
.y162{bottom:4.227750px;}
.y19e{bottom:4.638450px;}
.y9d{bottom:4.661700px;}
.y269{bottom:5.511000px;}
.ya{bottom:47.111700px;}
.y5d{bottom:97.334700px;}
.y40{bottom:97.334850px;}
.yd6{bottom:97.369500px;}
.y170{bottom:102.862200px;}
.y270{bottom:102.897600px;}
.y1f1{bottom:103.023750px;}
.yd9{bottom:103.079550px;}
.yc8{bottom:103.438650px;}
.y3f{bottom:111.584850px;}
.yd5{bottom:114.233700px;}
.y5c{bottom:116.834700px;}
.y191{bottom:116.834850px;}
.y21c{bottom:120.499650px;}
.ycb{bottom:120.974850px;}
.y185{bottom:121.969650px;}
.y272{bottom:122.820000px;}
.y3e{bottom:125.834850px;}
.y1f7{bottom:126.009000px;}
.y285{bottom:126.584700px;}
.yd4{bottom:127.811100px;}
.y21{bottom:130.334550px;}
.yd2{bottom:136.053600px;}
.y80{bottom:136.334700px;}
.y190{bottom:136.334850px;}
.y21b{bottom:139.999650px;}
.y3d{bottom:140.085000px;}
.yca{bottom:140.474850px;}
.y184{bottom:141.469650px;}
.y9c{bottom:141.535500px;}
.y271{bottom:142.320000px;}
.y284{bottom:142.334700px;}
.y1f6{bottom:145.509000px;}
.y147{bottom:151.651500px;}
.y20{bottom:152.834550px;}
.y3c{bottom:154.335000px;}
.y5b{bottom:155.834700px;}
.y18f{bottom:155.834850px;}
.y283{bottom:158.084700px;}
.y9b{bottom:160.029900px;}
.y17d{bottom:161.823000px;}
.y213{bottom:163.723500px;}
.y146{bottom:166.362600px;}
.y268{bottom:166.608000px;}
.y17c{bottom:168.055050px;}
.y1e9{bottom:168.216000px;}
.y212{bottom:171.348600px;}
.y282{bottom:173.834700px;}
.y1f{bottom:175.334550px;}
.y5a{bottom:175.334700px;}
.y18e{bottom:175.334850px;}
.y17b{bottom:177.887850px;}
.ycf{bottom:179.685150px;}
.y210{bottom:179.725950px;}
.y1e7{bottom:180.212850px;}
.y266{bottom:180.496350px;}
.y179{bottom:186.265200px;}
.y28d{bottom:187.573200px;}
.y281{bottom:189.584700px;}
.y81{bottom:190.813950px;}
.y20e{bottom:191.349300px;}
.y9e{bottom:194.556150px;}
.y59{bottom:194.834700px;}
.y18d{bottom:194.834850px;}
.y13a{bottom:195.161250px;}
.y1e5{bottom:195.337050px;}
.y82{bottom:198.276150px;}
.y149{bottom:201.462750px;}
.y28c{bottom:203.323200px;}
.y20c{bottom:203.693850px;}
.y263{bottom:203.946600px;}
.y280{bottom:205.334700px;}
.y13b{bottom:207.779700px;}
.y1e3{bottom:213.770100px;}
.y3b{bottom:214.334700px;}
.y18c{bottom:214.334850px;}
.y9f{bottom:214.447800px;}
.y1e{bottom:214.842450px;}
.y250{bottom:216.536285px;}
.y83{bottom:218.167650px;}
.y181{bottom:218.886035px;}
.yc2{bottom:219.755585px;}
.y27f{bottom:221.084700px;}
.y262{bottom:224.952000px;}
.y160{bottom:225.103200px;}
.y20a{bottom:226.860600px;}
.y176{bottom:227.296050px;}
.y13c{bottom:228.876300px;}
.y84{bottom:230.619450px;}
.y1ed{bottom:233.488835px;}
.y24f{bottom:233.751485px;}
.y3a{bottom:233.834700px;}
.y18b{bottom:233.834850px;}
.ya0{bottom:234.339300px;}
.y1a1{bottom:234.507785px;}
.y14a{bottom:235.193100px;}
.y26c{bottom:235.380335px;}
.y11e{bottom:235.633385px;}
.y1cb{bottom:235.649135px;}
.y1de{bottom:235.897235px;}
.y180{bottom:236.101235px;}
.y22c{bottom:236.111435px;}
.y25f{bottom:236.145035px;}
.y205{bottom:236.371835px;}
.yc1{bottom:236.970785px;}
.y28b{bottom:237.073200px;}
.y23a{bottom:237.153485px;}
.y216{bottom:237.494435px;}
.y8{bottom:237.824700px;}
.y85{bottom:238.059300px;}
.y1e2{bottom:238.945950px;}
.y20f{bottom:239.829000px;}
.y13d{bottom:241.509900px;}
.y20b{bottom:245.308650px;}
.y209{bottom:247.591800px;}
.y86{bottom:250.510950px;}
.y1ec{bottom:250.721250px;}
.y24e{bottom:250.983900px;}
.y1a0{bottom:251.740200px;}
.y151{bottom:252.116850px;}
.y16b{bottom:252.455850px;}
.y27e{bottom:252.584700px;}
.y26b{bottom:252.612750px;}
.y11d{bottom:252.865800px;}
.y1ca{bottom:252.881550px;}
.y1dd{bottom:253.129650px;}
.y17f{bottom:253.333650px;}
.y39{bottom:253.334700px;}
.y18a{bottom:253.334850px;}
.y22b{bottom:253.343850px;}
.y25e{bottom:253.377450px;}
.y204{bottom:253.604250px;}
.yc0{bottom:254.203200px;}
.ya1{bottom:254.230950px;}
.y1d{bottom:254.350200px;}
.y239{bottom:254.385900px;}
.y1b8{bottom:254.648400px;}
.y215{bottom:254.726850px;}
.y87{bottom:257.973150px;}
.yd3{bottom:258.420900px;}
.y1e4{bottom:259.875150px;}
.y17a{bottom:260.368200px;}
.y13e{bottom:262.606650px;}
.y150{bottom:265.892100px;}
.y16a{bottom:266.231100px;}
.y211{bottom:267.345450px;}
.y1e8{bottom:267.832200px;}
.y267{bottom:268.115850px;}
.y27d{bottom:268.334700px;}
.y1b7{bottom:268.423650px;}
.y28a{bottom:268.573200px;}
.y14b{bottom:268.923450px;}
.y88{bottom:270.402600px;}
.y38{bottom:272.834700px;}
.y189{bottom:272.834850px;}
.y20d{bottom:273.422250px;}
.ya2{bottom:274.144800px;}
.y177{bottom:274.573350px;}
.y13f{bottom:275.240250px;}
.y1c{bottom:276.850200px;}
.y89{bottom:277.864650px;}
.y1e6{bottom:280.119450px;}
.y27c{bottom:284.084700px;}
.y289{bottom:284.323200px;}
.y135{bottom:288.990150px;}
.y8a{bottom:290.316450px;}
.y37{bottom:292.334700px;}
.ya3{bottom:294.036300px;}
.y178{bottom:295.578600px;}
.yf8{bottom:295.581300px;}
.y140{bottom:296.321700px;}
.y7e{bottom:296.365050px;}
.y8b{bottom:297.756300px;}
.y10f{bottom:297.897450px;}
.y1b{bottom:299.350200px;}
.y173{bottom:299.429550px;}
.y288{bottom:300.073200px;}
.y6{bottom:301.464600px;}
.y14c{bottom:302.638500px;}
.y134{bottom:302.765400px;}
.y141{bottom:308.955300px;}
.yf7{bottom:309.356550px;}
.y7d{bottom:310.140300px;}
.y8c{bottom:310.207950px;}
.yd1{bottom:311.196750px;}
.y10e{bottom:311.672700px;}
.y36{bottom:311.834700px;}
.y188{bottom:311.834850px;}
.y6e{bottom:312.854250px;}
.ya4{bottom:313.927950px;}
.y27b{bottom:315.584700px;}
.y287{bottom:315.823200px;}
.y133{bottom:316.540650px;}
.y8d{bottom:317.670150px;}
.yd8{bottom:318.108000px;}
.y1a{bottom:321.850200px;}
.y175{bottom:322.307100px;}
.yf6{bottom:323.131800px;}
.y7c{bottom:323.915550px;}
.y10d{bottom:325.447950px;}
.y6d{bottom:326.629500px;}
.y7f{bottom:330.033000px;}
.y142{bottom:330.051900px;}
.y8e{bottom:330.099600px;}
.yd7{bottom:331.015650px;}
.y35{bottom:331.334700px;}
.y187{bottom:331.334850px;}
.y286{bottom:331.573200px;}
.y5{bottom:332.251050px;}
.ya5{bottom:333.841800px;}
.y14d{bottom:336.368700px;}
.y8f{bottom:337.561650px;}
.y7b{bottom:339.760500px;}
.y6c{bottom:340.404750px;}
.y143{bottom:342.685500px;}
.y19{bottom:344.350200px;}
.y90{bottom:350.013450px;}
.y7a{bottom:350.514150px;}
.y34{bottom:350.834700px;}
.ya6{bottom:353.733300px;}
.y264{bottom:354.073950px;}
.y23e{bottom:356.362050px;}
.y91{bottom:357.453300px;}
.y4{bottom:363.037650px;}
.y144{bottom:363.782250px;}
.yb0{bottom:364.224750px;}
.y79{bottom:365.004750px;}
.y1e1{bottom:366.530550px;}
.y18{bottom:366.850200px;}
.y174{bottom:367.422900px;}
.y92{bottom:369.904950px;}
.y14e{bottom:370.099050px;}
.y33{bottom:370.334700px;}
.ya7{bottom:373.624950px;}
.y265{bottom:375.079200px;}
.y78{bottom:375.827100px;}
.y145{bottom:376.415850px;}
.y93{bottom:377.344800px;}
.y242{bottom:378.471300px;}
.yd0{bottom:380.727300px;}
.yaf{bottom:381.866550px;}
.y208{bottom:384.263400px;}
.y76{bottom:384.615900px;}
.y111{bottom:385.244850px;}
.y137{bottom:385.918200px;}
.y10c{bottom:389.244000px;}
.y17{bottom:389.350200px;}
.y94{bottom:389.796450px;}
.y32{bottom:389.834700px;}
.ya8{bottom:393.516450px;}
.y3{bottom:393.824250px;}
.y95{bottom:397.258650px;}
.y241{bottom:397.971300px;}
.yae{bottom:399.508350px;}
.y10b{bottom:401.530050px;}
.y139{bottom:404.498100px;}
.y1ce{bottom:408.103950px;}
.y58{bottom:409.334700px;}
.y96{bottom:409.688100px;}
.y21a{bottom:411.584550px;}
.y1f3{bottom:411.584700px;}
.ya9{bottom:413.430300px;}
.y102{bottom:415.731450px;}
.y97{bottom:417.150300px;}
.y75{bottom:418.644450px;}
.y138{bottom:423.998100px;}
.y1d1{bottom:424.189950px;}
.y2{bottom:424.610700px;}
.y101{bottom:426.569100px;}
.y237{bottom:426.802500px;}
.y219{bottom:428.834550px;}
.y31{bottom:428.834700px;}
.y16{bottom:428.858100px;}
.y98{bottom:429.601950px;}
.ydb{bottom:431.084700px;}
.yaa{bottom:433.321950px;}
.y236{bottom:434.086650px;}
.y234{bottom:442.464000px;}
.y1d0{bottom:443.689950px;}
.y11b{bottom:444.952500px;}
.yda{bottom:448.334700px;}
.y99{bottom:449.493600px;}
.y11a{bottom:450.716550px;}
.yab{bottom:453.213450px;}
.y74{bottom:455.997450px;}
.y103{bottom:457.361550px;}
.yf9{bottom:457.711650px;}
.y118{bottom:459.093900px;}
.y1c8{bottom:461.092500px;}
.y1c7{bottom:466.872300px;}
.y186{bottom:467.834700px;}
.y9a{bottom:469.385100px;}
.y117{bottom:469.484400px;}
.y1f0{bottom:472.809450px;}
.yac{bottom:473.127300px;}
.y26f{bottom:473.362200px;}
.y1c6{bottom:476.705100px;}
.y115{bottom:483.259650px;}
.y1c4{bottom:485.082450px;}
.y104{bottom:485.688300px;}
.yfa{bottom:486.038400px;}
.y57{bottom:487.334700px;}
.y232{bottom:489.126750px;}
.y1f5{bottom:490.896150px;}
.y77{bottom:491.872800px;}
.y1c2{bottom:498.304200px;}
.y231{bottom:502.019100px;}
.y71{bottom:503.137650px;}
.y56{bottom:506.834700px;}
.y16f{bottom:508.219500px;}
.y1f4{bottom:510.396150px;}
.y1c1{bottom:511.927200px;}
.y1c3{bottom:512.642550px;}
.y105{bottom:514.030350px;}
.yfb{bottom:514.380450px;}
.y114{bottom:521.815050px;}
.y172{bottom:524.911800px;}
.y55{bottom:526.334700px;}
.y25c{bottom:526.335000px;}
.yc9{bottom:528.584700px;}
.y235{bottom:530.083350px;}
.y22f{bottom:530.193600px;}
.y202{bottom:531.921000px;}
.y25b{bottom:532.610700px;}
.y1db{bottom:532.773000px;}
.y201{bottom:538.423500px;}
.y1da{bottom:538.800900px;}
.y259{bottom:540.987900px;}
.y230{bottom:541.914000px;}
.y106{bottom:542.372250px;}
.yfc{bottom:542.722350px;}
.y171{bottom:544.411800px;}
.y54{bottom:545.834700px;}
.y119{bottom:546.713400px;}
.y1ff{bottom:546.800700px;}
.y1d8{bottom:547.178250px;}
.y1{bottom:553.822200px;}
.y15f{bottom:554.737500px;}
.y1fe{bottom:557.602200px;}
.y53{bottom:565.334700px;}
.y1c5{bottom:567.800700px;}
.y1d7{bottom:568.832400px;}
.y1bb{bottom:568.961250px;}
.y161{bottom:569.787450px;}
.y107{bottom:570.699000px;}
.yfd{bottom:571.049100px;}
.y1be{bottom:575.232300px;}
.y72{bottom:579.624450px;}
.y116{bottom:580.477650px;}
.y1bc{bottom:584.091150px;}
.y1d6{bottom:584.312400px;}
.y52{bottom:584.834700px;}
.y1fd{bottom:591.043350px;}
.y73{bottom:593.856300px;}
.y256{bottom:594.819900px;}
.yc7{bottom:597.026250px;}
.y1d5{bottom:597.676650px;}
.y154{bottom:598.586100px;}
.y108{bottom:599.041050px;}
.yfe{bottom:599.391150px;}
.y51{bottom:604.334700px;}
.y163{bottom:604.887750px;}
.ycd{bottom:609.023400px;}
.y155{bottom:611.204550px;}
.y1fc{bottom:614.834100px;}
.y255{bottom:618.458550px;}
.y7{bottom:621.186900px;}
.y27a{bottom:623.834550px;}
.y50{bottom:623.834700px;}
.y109{bottom:627.367800px;}
.yff{bottom:627.717750px;}
.ycc{bottom:628.523400px;}
.y25a{bottom:628.607400px;}
.y1fb{bottom:629.994450px;}
.y1bf{bottom:630.257100px;}
.y156{bottom:632.301150px;}
.y200{bottom:634.420200px;}
.y112{bottom:634.528350px;}
.y1d9{bottom:634.797750px;}
.y1d4{bottom:636.156000px;}
.y164{bottom:638.617950px;}
.y1bd{bottom:642.175350px;}
.y279{bottom:643.334550px;}
.y4f{bottom:643.334700px;}
.ybe{bottom:643.827000px;}
.y157{bottom:644.934750px;}
.y233{bottom:649.497750px;}
.ybd{bottom:650.928450px;}
.y10a{bottom:655.709700px;}
.y100{bottom:656.059800px;}
.ybb{bottom:659.305800px;}
.y278{bottom:662.834550px;}
.y4e{bottom:662.834700px;}
.y158{bottom:666.031500px;}
.y1c0{bottom:666.514200px;}
.y113{bottom:666.538650px;}
.y70{bottom:667.334700px;}
.y165{bottom:672.348300px;}
.y1fa{bottom:672.385650px;}
.y159{bottom:678.665100px;}
.yb3{bottom:679.133400px;}
.y277{bottom:682.334550px;}
.y4d{bottom:682.334700px;}
.y6f{bottom:684.584700px;}
.yb6{bottom:694.035000px;}
.y1d2{bottom:694.301250px;}
.y1f8{bottom:697.713750px;}
.y15a{bottom:699.746550px;}
.y276{bottom:701.834550px;}
.y4c{bottom:701.834700px;}
.y1cf{bottom:704.084700px;}
.y166{bottom:706.063350px;}
.ydd{bottom:706.334700px;}
.yb7{bottom:710.961150px;}
.y15b{bottom:712.380150px;}
.y275{bottom:721.334550px;}
.y4b{bottom:721.334700px;}
.ydc{bottom:723.584700px;}
.y257{bottom:725.555250px;}
.yb8{bottom:728.983050px;}
.yb5{bottom:729.226650px;}
.y15c{bottom:733.476750px;}
.ybc{bottom:738.325350px;}
.y167{bottom:739.793550px;}
.y274{bottom:740.834550px;}
.y4a{bottom:740.834700px;}
.yb4{bottom:745.680750px;}
.y15d{bottom:746.110500px;}
.y1d3{bottom:747.940950px;}
.y258{bottom:749.193900px;}
.y60{bottom:749.283150px;}
.y6b{bottom:752.893500px;}
.y1f9{bottom:755.006550px;}
.y273{bottom:760.334550px;}
.yce{bottom:760.334700px;}
.y1a4{bottom:765.862200px;}
.y30{bottom:766.923000px;}
.y15e{bottom:767.207100px;}
.y168{bottom:773.523900px;}
.y23d{bottom:775.712100px;}
.y49{bottom:779.834700px;}
.y6a{bottom:780.136350px;}
.yf5{bottom:780.933000px;}
.y1f2{bottom:782.084700px;}
.y136{bottom:785.336250px;}
.y110{bottom:785.974050px;}
.y1a6{bottom:789.008850px;}
.y2f{bottom:789.423000px;}
.yf4{bottom:790.902900px;}
.y69{bottom:794.626950px;}
.y48{bottom:799.334700px;}
.y240{bottom:799.496250px;}
.yba{bottom:800.918700px;}
.y131{bottom:803.622000px;}
.ye9{bottom:805.104300px;}
.y68{bottom:805.449300px;}
.y1a5{bottom:808.508850px;}
.y2e{bottom:811.923000px;}
.y254{bottom:812.124900px;}
.y66{bottom:814.238100px;}
.ye8{bottom:815.941800px;}
.y47{bottom:818.834700px;}
.y23f{bottom:818.996250px;}
.y16e{bottom:821.084700px;}
.y129{bottom:821.202150px;}
.y1b5{bottom:825.639000px;}
.y19d{bottom:825.733500px;}
.y1b4{bottom:831.465750px;}
.y253{bottom:831.624900px;}
.y128{bottom:832.039800px;}
.y2d{bottom:834.423000px;}
.y1b2{bottom:838.169250px;}
.y46{bottom:838.334700px;}
.y19c{bottom:840.204900px;}
.y65{bottom:841.264950px;}
.yea{bottom:844.314300px;}
.yde{bottom:844.664400px;}
.y229{bottom:847.606500px;}
.y19a{bottom:848.582100px;}
.yb9{bottom:850.296450px;}
.y228{bottom:853.848600px;}
.y2c{bottom:856.923000px;}
.y45{bottom:857.834700px;}
.y24b{bottom:859.939500px;}
.y227{bottom:863.681550px;}
.y198{bottom:864.513150px;}
.y12a{bottom:864.567600px;}
.y121{bottom:864.917700px;}
.yeb{bottom:866.887350px;}
.ydf{bottom:867.237450px;}
.y196{bottom:870.221250px;}
.y225{bottom:872.058900px;}
.y249{bottom:872.199000px;}
.y1af{bottom:877.327350px;}
.y15{bottom:877.334700px;}
.yc6{bottom:879.584550px;}
.y61{bottom:881.205450px;}
.y197{bottom:885.183600px;}
.y1a7{bottom:889.397700px;}
.yec{bottom:889.460400px;}
.ye0{bottom:889.810500px;}
.y2b{bottom:896.430900px;}
.yc5{bottom:896.834550px;}
.y44{bottom:896.834700px;}
.y12b{bottom:897.049650px;}
.y122{bottom:897.399750px;}
.y64{bottom:897.735750px;}
.y1ab{bottom:898.439100px;}
.y1b1{bottom:906.704250px;}
.y195{bottom:906.873900px;}
.y1ac{bottom:910.022550px;}
.yed{bottom:912.048750px;}
.ye1{bottom:912.398850px;}
.y1ae{bottom:913.340850px;}
.y14{bottom:916.334700px;}
.y2a{bottom:918.930900px;}
.y192{bottom:921.349350px;}
.y67{bottom:921.495000px;}
.y223{bottom:925.038450px;}
.y243{bottom:928.816350px;}
.y12c{bottom:929.516550px;}
.y123{bottom:929.866650px;}
.y19b{bottom:931.300350px;}
.y222{bottom:932.801400px;}
.y1a9{bottom:933.676350px;}
.yee{bottom:934.621950px;}
.ye2{bottom:934.972050px;}
.y13{bottom:935.834700px;}
.y199{bottom:936.433650px;}
.y21d{bottom:940.077000px;}
.y1b3{bottom:940.737900px;}
.y193{bottom:940.817250px;}
.y224{bottom:943.714800px;}
.y24a{bottom:951.218400px;}
.y226{bottom:954.777150px;}
.y12{bottom:955.334700px;}
.yef{bottom:957.195000px;}
.ye3{bottom:957.545100px;}
.y29{bottom:958.438800px;}
.y21e{bottom:961.965150px;}
.y12d{bottom:961.998750px;}
.y124{bottom:962.348850px;}
.y248{bottom:962.866350px;}
.y246{bottom:964.342800px;}
.y11{bottom:974.834700px;}
.yf0{bottom:979.768200px;}
.ye4{bottom:980.118300px;}
.y28{bottom:980.938800px;}
.y1b0{bottom:983.206350px;}
.y220{bottom:984.797100px;}
.y10{bottom:994.334700px;}
.y12e{bottom:994.480950px;}
.y125{bottom:994.830900px;}
.y1aa{bottom:998.138250px;}
.yf1{bottom:1002.341250px;}
.ye5{bottom:1002.691350px;}
.y27{bottom:1003.438800px;}
.y245{bottom:1010.326200px;}
.y194{bottom:1013.224800px;}
.yf{bottom:1013.834700px;}
.y1ad{bottom:1016.540850px;}
.y21f{bottom:1022.043450px;}
.yf2{bottom:1024.929600px;}
.ye6{bottom:1025.279700px;}
.y26{bottom:1025.938800px;}
.y12f{bottom:1026.963000px;}
.y126{bottom:1027.313100px;}
.ye{bottom:1033.334700px;}
.y62{bottom:1034.072550px;}
.y1a8{bottom:1035.567300px;}
.y63{bottom:1045.092600px;}
.yf3{bottom:1047.502650px;}
.ye7{bottom:1047.852750px;}
.y25{bottom:1048.438800px;}
.y247{bottom:1051.240950px;}
.yd{bottom:1052.834700px;}
.y130{bottom:1059.445200px;}
.y127{bottom:1059.795300px;}
.y221{bottom:1060.827150px;}
.y244{bottom:1063.189650px;}
.y43{bottom:1072.334700px;}
.y24{bottom:1087.946700px;}
.yc{bottom:1091.834700px;}
.y5f{bottom:1096.334700px;}
.y23{bottom:1110.446700px;}
.y42{bottom:1111.334700px;}
.y5e{bottom:1113.584700px;}
.y41{bottom:1130.834700px;}
.yb{bottom:1131.113250px;}
.y22{bottom:1132.946700px;}
.y9{bottom:1197.611700px;}
.h29{height:23.199139px;}
.hf{height:25.607227px;}
.h20{height:27.192647px;}
.h1f{height:27.544922px;}
.h10{height:28.987537px;}
.h15{height:29.681348px;}
.h21{height:29.929865px;}
.h11{height:31.904288px;}
.h5{height:32.135742px;}
.h3a{height:33.675937px;}
.h31{height:33.918937px;}
.h40{height:36.036914px;}
.h3f{height:36.128320px;}
.h1c{height:36.256862px;}
.h41{height:36.265430px;}
.h19{height:37.167352px;}
.h38{height:37.754137px;}
.h23{height:38.051752px;}
.he{height:39.021973px;}
.h13{height:40.609437px;}
.h8{height:40.657031px;}
.h7{height:40.760156px;}
.hc{height:40.914844px;}
.hb{height:41.285449px;}
.hd{height:43.612793px;}
.h2f{height:49.318339px;}
.h1e{height:50.750410px;}
.h4{height:50.821289px;}
.h9{height:51.143555px;}
.h1b{height:52.008026px;}
.h26{height:56.325337px;}
.h2c{height:57.603337px;}
.h16{height:59.440748px;}
.h17{height:59.529548px;}
.h18{height:59.530148px;}
.h6{height:64.271484px;}
.h35{height:64.544137px;}
.ha{height:65.442275px;}
.h3{height:81.227220px;}
.h2{height:201.996094px;}
.h1d{height:220.618500px;}
.h3c{height:221.881500px;}
.h2d{height:227.232000px;}
.h2b{height:229.800000px;}
.h27{height:237.381000px;}
.h32{height:238.450500px;}
.h34{height:241.605000px;}
.h2e{height:242.625000px;}
.h3e{height:243.496500px;}
.h33{height:244.014000px;}
.h39{height:244.227000px;}
.h3d{height:244.261500px;}
.h36{height:244.488000px;}
.h3b{height:245.271000px;}
.h37{height:245.611500px;}
.h2a{height:250.866000px;}
.h30{height:251.148000px;}
.h28{height:280.110000px;}
.h24{height:291.685500px;}
.h25{height:292.500000px;}
.h14{height:293.617500px;}
.h12{height:308.823000px;}
.h22{height:312.000000px;}
.h1a{height:359.091000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:476.752500px;}
.w3{width:488.340000px;}
.w6{width:488.976000px;}
.w7{width:504.567000px;}
.w2{width:530.007000px;}
.w4{width:722.835000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc8{left:34.979400px;}
.xcc{left:40.604550px;}
.xad{left:42.634200px;}
.xbb{left:45.778650px;}
.xc7{left:47.109300px;}
.xba{left:48.632850px;}
.x19{left:49.960500px;}
.xc3{left:51.432750px;}
.x71{left:52.935450px;}
.x98{left:56.694000px;}
.x51{left:58.464000px;}
.x7{left:59.527500px;}
.xcb{left:62.716500px;}
.x8{left:63.779550px;}
.xc2{left:67.576350px;}
.x76{left:68.984700px;}
.x12{left:71.209500px;}
.x49{left:78.811447px;}
.x9{left:80.750250px;}
.xa{left:82.913400px;}
.x4{left:83.976300px;}
.x3{left:85.039350px;}
.xca{left:86.187750px;}
.x6f{left:87.250650px;}
.x1{left:89.291400px;}
.x2{left:91.510050px;}
.x18{left:92.595300px;}
.x94{left:93.695700px;}
.xac{left:95.850750px;}
.x95{left:97.617750px;}
.x50{left:99.211800px;}
.xdb{left:100.782300px;}
.x5{left:102.010050px;}
.x4f{left:103.312200px;}
.xe1{left:106.299150px;}
.x13{left:111.115050px;}
.x53{left:112.856271px;}
.xae{left:117.316350px;}
.x75{left:121.297350px;}
.xdc{left:123.585600px;}
.x32{left:125.223600px;}
.x33{left:126.351300px;}
.x1d{left:127.746300px;}
.xd{left:129.842100px;}
.x35{left:132.513450px;}
.x86{left:134.313150px;}
.xc5{left:138.826800px;}
.xdd{left:139.836749px;}
.x6c{left:141.155700px;}
.xaf{left:142.523550px;}
.xa1{left:143.979000px;}
.x1b{left:146.403309px;}
.xcd{left:148.901550px;}
.xd8{left:151.019100px;}
.x70{left:152.295750px;}
.x1c{left:154.461830px;}
.x87{left:157.026150px;}
.x99{left:159.471300px;}
.x1f{left:161.336812px;}
.x77{left:165.393600px;}
.x14{left:168.992400px;}
.x91{left:173.202900px;}
.x34{left:175.024650px;}
.x38{left:178.066200px;}
.x37{left:179.233500px;}
.x48{left:183.634800px;}
.x36{left:185.385600px;}
.xa5{left:195.534300px;}
.x6b{left:199.373356px;}
.xd9{left:202.923450px;}
.xb5{left:207.422850px;}
.xb0{left:211.189950px;}
.xe{left:212.651850px;}
.x78{left:215.433948px;}
.x1e{left:221.259150px;}
.x52{left:222.661650px;}
.x73{left:224.735250px;}
.x96{left:226.640250px;}
.x31{left:227.906850px;}
.x1a{left:234.069000px;}
.x3b{left:235.704922px;}
.x72{left:238.367250px;}
.xb1{left:241.906350px;}
.x6d{left:244.355850px;}
.x15{left:252.127950px;}
.x2f{left:257.418000px;}
.x3a{left:259.239083px;}
.xbc{left:264.348300px;}
.xa6{left:267.891750px;}
.x20{left:268.897200px;}
.x22{left:270.434100px;}
.x24{left:273.441300px;}
.x21{left:275.802450px;}
.x92{left:278.999550px;}
.x4b{left:280.712550px;}
.x23{left:283.309050px;}
.x25{left:286.338450px;}
.xda{left:289.623750px;}
.xa7{left:291.976050px;}
.xb2{left:293.202000px;}
.x62{left:295.441950px;}
.xf{left:298.195350px;}
.x2e{left:299.258100px;}
.x88{left:301.721376px;}
.x89{left:302.782050px;}
.x27{left:304.158450px;}
.x4d{left:306.392850px;}
.x29{left:308.769450px;}
.x28{left:323.537850px;}
.x47{left:326.338500px;}
.x97{left:327.775500px;}
.x2b{left:334.073850px;}
.xa8{left:335.859000px;}
.xc1{left:339.094500px;}
.xb{left:340.157400px;}
.x16{left:342.184050px;}
.x2a{left:343.273500px;}
.x61{left:345.362550px;}
.xa3{left:346.550100px;}
.x6e{left:347.571150px;}
.x45{left:349.809750px;}
.x5c{left:359.485050px;}
.x5d{left:360.978450px;}
.x26{left:363.031350px;}
.x74{left:366.011550px;}
.x6a{left:367.320000px;}
.xa0{left:375.619950px;}
.x9f{left:377.160300px;}
.x10{left:383.738700px;}
.xc6{left:385.411050px;}
.x85{left:388.793100px;}
.x4c{left:395.940900px;}
.x5e{left:397.675200px;}
.x3c{left:401.217150px;}
.x46{left:402.790350px;}
.x39{left:404.854500px;}
.x3d{left:406.981050px;}
.x30{left:413.531850px;}
.xbd{left:416.303250px;}
.x60{left:417.533250px;}
.x17{left:419.903400px;}
.x84{left:422.032500px;}
.x5f{left:424.145400px;}
.xc4{left:425.279550px;}
.xd5{left:427.396950px;}
.xa4{left:429.531450px;}
.xa9{left:434.503650px;}
.xe0{left:438.460650px;}
.x3e{left:442.848600px;}
.xb6{left:443.911650px;}
.xde{left:446.530050px;}
.x83{left:449.141850px;}
.xc9{left:452.152500px;}
.x4e{left:453.293250px;}
.xb7{left:455.373600px;}
.x9a{left:456.667500px;}
.xb3{left:459.975150px;}
.xe2{left:466.086600px;}
.x82{left:470.031300px;}
.x11{left:472.015800px;}
.xaa{left:476.198850px;}
.x8a{left:478.381650px;}
.x90{left:480.116850px;}
.x81{left:481.319250px;}
.x93{left:482.376900px;}
.x7f{left:484.941900px;}
.x79{left:486.037800px;}
.x7a{left:488.899500px;}
.xb4{left:490.691550px;}
.x80{left:494.089800px;}
.x5a{left:501.113100px;}
.xab{left:502.470750px;}
.xc{left:504.168600px;}
.x6{left:505.423200px;}
.x3f{left:507.310500px;}
.x55{left:513.588300px;}
.x66{left:518.535300px;}
.x8e{left:521.001000px;}
.xce{left:525.300000px;}
.x7d{left:527.089500px;}
.x69{left:528.322500px;}
.x56{left:532.858500px;}
.x54{left:542.478300px;}
.x57{left:547.303350px;}
.x40{left:548.645250px;}
.x7e{left:550.621650px;}
.x8f{left:553.939800px;}
.x64{left:557.638650px;}
.x9b{left:559.730550px;}
.x8d{left:563.377050px;}
.xd6{left:566.001750px;}
.x63{left:567.410700px;}
.xcf{left:576.595650px;}
.xa2{left:590.197200px;}
.x65{left:596.742000px;}
.x41{left:610.373550px;}
.xd7{left:617.906100px;}
.xb8{left:623.538000px;}
.xbe{left:625.543500px;}
.x9c{left:626.926050px;}
.xd3{left:640.101300px;}
.x5b{left:642.389400px;}
.x42{left:648.959550px;}
.xd0{left:658.623000px;}
.xbf{left:661.471800px;}
.x9d{left:662.778450px;}
.xb9{left:665.009700px;}
.x58{left:672.543900px;}
.x8c{left:696.989100px;}
.x7c{left:703.823550px;}
.x43{left:713.421450px;}
.x2d{left:716.669250px;}
.x2c{left:722.104350px;}
.xd4{left:727.305300px;}
.xc0{left:728.789250px;}
.x9e{left:729.973950px;}
.x68{left:733.581000px;}
.xdf{left:737.377650px;}
.xd1{left:743.368650px;}
.x44{left:752.022600px;}
.x8b{left:765.667350px;}
.xd2{left:771.351600px;}
.x67{left:772.684500px;}
.x59{left:778.514250px;}
.x4a{left:780.546600px;}
.x7b{left:794.785650px;}
@media print{
.va{vertical-align:-34.798933pt;}
.v7{vertical-align:-27.168000pt;}
.v8{vertical-align:-26.031467pt;}
.v9{vertical-align:-23.001067pt;}
.vc{vertical-align:-19.537067pt;}
.v4{vertical-align:-1.082667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.004800pt;}
.vd{vertical-align:7.792533pt;}
.v2{vertical-align:15.628800pt;}
.v6{vertical-align:23.217067pt;}
.v1{vertical-align:24.864000pt;}
.v3{vertical-align:26.452800pt;}
.vb{vertical-align:31.605867pt;}
.ls5{letter-spacing:-4.106667pt;}
.ls13{letter-spacing:-2.464000pt;}
.ls0{letter-spacing:-2.346667pt;}
.ls27{letter-spacing:-2.016000pt;}
.ls3e{letter-spacing:-1.996800pt;}
.ls26{letter-spacing:-1.994667pt;}
.ls16{letter-spacing:-1.642667pt;}
.lsc{letter-spacing:-1.595733pt;}
.ls2a{letter-spacing:-1.306667pt;}
.ls2c{letter-spacing:-1.194667pt;}
.ls29{letter-spacing:-1.133333pt;}
.ls31{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.952000pt;}
.ls2f{letter-spacing:-0.858667pt;}
.ls33{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.762667pt;}
.ls2e{letter-spacing:-0.725333pt;}
.ls25{letter-spacing:-0.597333pt;}
.lsb{letter-spacing:-0.563200pt;}
.ls2d{letter-spacing:-0.544000pt;}
.ls30{letter-spacing:-0.498667pt;}
.lsd{letter-spacing:-0.422400pt;}
.ls38{letter-spacing:-0.298667pt;}
.lsf{letter-spacing:-0.281600pt;}
.ls22{letter-spacing:-0.234667pt;}
.ls23{letter-spacing:-0.182667pt;}
.ls35{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.074667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.092800pt;}
.lse{letter-spacing:0.093867pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.136000pt;}
.ls6{letter-spacing:0.140800pt;}
.ls28{letter-spacing:0.152000pt;}
.ls4{letter-spacing:0.176000pt;}
.ls7{letter-spacing:0.186667pt;}
.ls3c{letter-spacing:0.208000pt;}
.ls21{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.281600pt;}
.ls44{letter-spacing:0.298667pt;}
.ls36{letter-spacing:0.328533pt;}
.ls42{letter-spacing:0.374400pt;}
.ls10{letter-spacing:0.375467pt;}
.ls39{letter-spacing:0.416000pt;}
.ls1d{letter-spacing:0.456000pt;}
.ls41{letter-spacing:0.457600pt;}
.ls11{letter-spacing:0.516267pt;}
.ls24{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.557333pt;}
.ls3a{letter-spacing:0.624000pt;}
.ls37{letter-spacing:0.821333pt;}
.ls8{letter-spacing:0.938667pt;}
.ls18{letter-spacing:0.985600pt;}
.ls1e{letter-spacing:0.992000pt;}
.ls20{letter-spacing:1.133333pt;}
.ls3b{letter-spacing:1.164800pt;}
.ls14{letter-spacing:1.233634pt;}
.ls3d{letter-spacing:1.248000pt;}
.ls3{letter-spacing:1.415472pt;}
.ls43{letter-spacing:1.497600pt;}
.ls45{letter-spacing:1.530667pt;}
.ls1{letter-spacing:1.887296pt;}
.ls34{letter-spacing:2.012267pt;}
.ls9{letter-spacing:2.065067pt;}
.lsa{letter-spacing:2.299733pt;}
.ls3f{letter-spacing:2.412800pt;}
.ls40{letter-spacing:3.161600pt;}
.ls32{letter-spacing:10.928000pt;}
.ls1f{letter-spacing:182.298667pt;}
.ws72{word-spacing:-182.298667pt;}
.ws25{word-spacing:-19.338667pt;}
.ws105{word-spacing:-19.114667pt;}
.ws7{word-spacing:-14.267733pt;}
.ws109{word-spacing:-13.977600pt;}
.ws108{word-spacing:-13.228800pt;}
.wsd{word-spacing:-12.718933pt;}
.wsc{word-spacing:-12.578133pt;}
.ws6{word-spacing:-12.202667pt;}
.ws107{word-spacing:-12.064000pt;}
.ws10c{word-spacing:-11.980800pt;}
.wsb{word-spacing:-11.921067pt;}
.wsa{word-spacing:-11.780267pt;}
.ws8{word-spacing:-11.639467pt;}
.ws10a{word-spacing:-11.273600pt;}
.ws113{word-spacing:-11.237333pt;}
.ws106{word-spacing:-11.232000pt;}
.ws10b{word-spacing:-11.190400pt;}
.ws9{word-spacing:-10.606933pt;}
.ws104{word-spacing:-10.528000pt;}
.wsdf{word-spacing:-9.498667pt;}
.ws95{word-spacing:-9.109333pt;}
.wsde{word-spacing:-8.885333pt;}
.wsc6{word-spacing:-8.848000pt;}
.ws69{word-spacing:-8.416000pt;}
.wsaf{word-spacing:-8.400000pt;}
.ws3{word-spacing:-7.920000pt;}
.wsa9{word-spacing:-3.895467pt;}
.ws9c{word-spacing:-3.050667pt;}
.wsee{word-spacing:-2.909867pt;}
.ws1c{word-spacing:-2.640000pt;}
.ws98{word-spacing:-2.534400pt;}
.ws20{word-spacing:-2.405333pt;}
.ws8e{word-spacing:-2.346667pt;}
.ws84{word-spacing:-2.205867pt;}
.ws15{word-spacing:-2.158933pt;}
.ws8b{word-spacing:-2.112000pt;}
.ws4f{word-spacing:-2.065067pt;}
.ws79{word-spacing:-2.018133pt;}
.wsb2{word-spacing:-1.924267pt;}
.wsc0{word-spacing:-1.830400pt;}
.wsb8{word-spacing:-1.783467pt;}
.ws13{word-spacing:-1.736533pt;}
.ws57{word-spacing:-1.689600pt;}
.ws97{word-spacing:-1.595733pt;}
.wsff{word-spacing:-1.548800pt;}
.ws100{word-spacing:-1.501867pt;}
.ws7b{word-spacing:-1.454933pt;}
.ws103{word-spacing:-1.408000pt;}
.ws3b{word-spacing:-1.314133pt;}
.ws111{word-spacing:-1.289600pt;}
.wsd9{word-spacing:-1.267200pt;}
.ws31{word-spacing:-1.232000pt;}
.ws14{word-spacing:-1.220267pt;}
.ws80{word-spacing:-1.173333pt;}
.ws86{word-spacing:-1.133333pt;}
.wsf1{word-spacing:-1.096000pt;}
.wscf{word-spacing:-1.079467pt;}
.wsa5{word-spacing:-1.032533pt;}
.ws10e{word-spacing:-0.956800pt;}
.wsb7{word-spacing:-0.938667pt;}
.ws70{word-spacing:-0.896000pt;}
.ws52{word-spacing:-0.844800pt;}
.ws11{word-spacing:-0.797867pt;}
.ws2e{word-spacing:-0.762667pt;}
.ws7d{word-spacing:-0.750933pt;}
.wsc3{word-spacing:-0.657067pt;}
.ws92{word-spacing:-0.610133pt;}
.wsd1{word-spacing:-0.563200pt;}
.wsf4{word-spacing:-0.557333pt;}
.ws1e{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.422400pt;}
.ws10d{word-spacing:-0.416000pt;}
.ws94{word-spacing:-0.408000pt;}
.ws54{word-spacing:-0.405333pt;}
.ws12{word-spacing:-0.375467pt;}
.wse8{word-spacing:-0.328533pt;}
.ws6a{word-spacing:-0.304000pt;}
.ws10{word-spacing:-0.281600pt;}
.ws110{word-spacing:-0.208000pt;}
.ws39{word-spacing:-0.187733pt;}
.wsf{word-spacing:-0.186667pt;}
.ws4{word-spacing:-0.176000pt;}
.wsa6{word-spacing:-0.152000pt;}
.ws40{word-spacing:-0.140800pt;}
.ws5d{word-spacing:-0.136000pt;}
.ws6f{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.093867pt;}
.ws61{word-spacing:-0.046933pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.046933pt;}
.ws3c{word-spacing:0.140800pt;}
.ws93{word-spacing:0.182667pt;}
.wse{word-spacing:0.186667pt;}
.ws91{word-spacing:0.234667pt;}
.ws47{word-spacing:0.281600pt;}
.ws53{word-spacing:0.298667pt;}
.ws4e{word-spacing:0.328533pt;}
.ws1a{word-spacing:0.375467pt;}
.ws8f{word-spacing:0.422400pt;}
.ws2{word-spacing:0.471824pt;}
.ws18{word-spacing:0.516267pt;}
.ws9d{word-spacing:0.563200pt;}
.ws4a{word-spacing:0.610133pt;}
.ws16{word-spacing:0.657067pt;}
.wsa8{word-spacing:0.704000pt;}
.wsed{word-spacing:0.750933pt;}
.ws9b{word-spacing:0.797867pt;}
.wsbf{word-spacing:0.844800pt;}
.ws83{word-spacing:0.891733pt;}
.ws22{word-spacing:0.938667pt;}
.ws81{word-spacing:0.985600pt;}
.ws85{word-spacing:1.032533pt;}
.wsb4{word-spacing:1.126400pt;}
.ws5c{word-spacing:1.133333pt;}
.wsfa{word-spacing:1.173333pt;}
.ws41{word-spacing:1.220267pt;}
.ws78{word-spacing:1.314133pt;}
.ws7c{word-spacing:1.408000pt;}
.wsf9{word-spacing:1.454933pt;}
.ws2b{word-spacing:1.466667pt;}
.wsab{word-spacing:1.501867pt;}
.wsea{word-spacing:1.548800pt;}
.ws33{word-spacing:1.595733pt;}
.wsd4{word-spacing:1.632000pt;}
.wsc4{word-spacing:1.677333pt;}
.ws74{word-spacing:1.689600pt;}
.ws21{word-spacing:1.701333pt;}
.ws17{word-spacing:1.736533pt;}
.ws44{word-spacing:1.783467pt;}
.ws30{word-spacing:1.818667pt;}
.wsc5{word-spacing:1.858667pt;}
.ws8c{word-spacing:1.877333pt;}
.ws23{word-spacing:1.936000pt;}
.ws49{word-spacing:1.971200pt;}
.ws42{word-spacing:2.018133pt;}
.wsf7{word-spacing:2.065067pt;}
.wsb9{word-spacing:2.085333pt;}
.wsf5{word-spacing:2.112000pt;}
.wsb6{word-spacing:2.158933pt;}
.ws10f{word-spacing:2.204800pt;}
.ws45{word-spacing:2.252800pt;}
.wsae{word-spacing:2.266667pt;}
.ws3a{word-spacing:2.346667pt;}
.wse5{word-spacing:2.440533pt;}
.wsb1{word-spacing:2.534400pt;}
.wsad{word-spacing:2.581333pt;}
.ws24{word-spacing:2.640000pt;}
.wsc1{word-spacing:2.675200pt;}
.ws6e{word-spacing:2.862933pt;}
.wsd2{word-spacing:2.909867pt;}
.ws7a{word-spacing:2.956800pt;}
.wsf0{word-spacing:3.003733pt;}
.ws0{word-spacing:3.050667pt;}
.ws50{word-spacing:3.097600pt;}
.ws9f{word-spacing:3.128000pt;}
.wsfc{word-spacing:3.144533pt;}
.wsa4{word-spacing:3.191467pt;}
.ws60{word-spacing:3.238400pt;}
.ws43{word-spacing:3.285333pt;}
.ws51{word-spacing:3.379200pt;}
.ws6d{word-spacing:3.426133pt;}
.ws4c{word-spacing:3.473067pt;}
.wse9{word-spacing:3.520000pt;}
.ws75{word-spacing:3.566933pt;}
.wsac{word-spacing:3.613867pt;}
.ws1f{word-spacing:3.637333pt;}
.ws32{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.707733pt;}
.ws6b{word-spacing:3.754667pt;}
.ws35{word-spacing:3.848533pt;}
.ws99{word-spacing:3.989333pt;}
.wsfe{word-spacing:4.036267pt;}
.ws55{word-spacing:4.083200pt;}
.wsd8{word-spacing:4.130133pt;}
.ws2c{word-spacing:4.165333pt;}
.ws3d{word-spacing:4.224000pt;}
.wsf6{word-spacing:4.270933pt;}
.ws5{word-spacing:4.282667pt;}
.ws102{word-spacing:4.317867pt;}
.ws6c{word-spacing:4.364800pt;}
.wsdd{word-spacing:4.411733pt;}
.ws101{word-spacing:4.458667pt;}
.wsfb{word-spacing:4.505600pt;}
.ws9a{word-spacing:4.552533pt;}
.wsec{word-spacing:4.646400pt;}
.wsd0{word-spacing:4.693333pt;}
.ws48{word-spacing:4.740267pt;}
.ws37{word-spacing:4.787200pt;}
.wscd{word-spacing:4.834133pt;}
.ws38{word-spacing:4.928000pt;}
.ws62{word-spacing:4.974933pt;}
.ws58{word-spacing:5.115733pt;}
.ws56{word-spacing:5.162667pt;}
.wsda{word-spacing:5.209600pt;}
.ws5f{word-spacing:5.303467pt;}
.ws2a{word-spacing:5.338667pt;}
.wsb3{word-spacing:5.491200pt;}
.wsa7{word-spacing:5.585067pt;}
.ws76{word-spacing:5.632000pt;}
.ws82{word-spacing:5.772800pt;}
.ws36{word-spacing:6.007467pt;}
.ws73{word-spacing:6.054400pt;}
.ws2d{word-spacing:6.101333pt;}
.wsdc{word-spacing:6.242133pt;}
.wsd3{word-spacing:6.289067pt;}
.ws28{word-spacing:6.394667pt;}
.ws29{word-spacing:6.453333pt;}
.wsef{word-spacing:6.476800pt;}
.wsc2{word-spacing:6.523733pt;}
.wsf8{word-spacing:6.570667pt;}
.wsfd{word-spacing:6.617600pt;}
.ws59{word-spacing:6.711467pt;}
.ws65{word-spacing:6.737335pt;}
.wse7{word-spacing:6.758400pt;}
.ws8d{word-spacing:6.852267pt;}
.wsce{word-spacing:6.899200pt;}
.ws5a{word-spacing:6.946133pt;}
.wsb5{word-spacing:7.040000pt;}
.ws4b{word-spacing:7.086933pt;}
.ws3f{word-spacing:7.180800pt;}
.wsaa{word-spacing:7.274667pt;}
.ws34{word-spacing:7.884800pt;}
.ws5e{word-spacing:7.931733pt;}
.ws27{word-spacing:8.330667pt;}
.ws46{word-spacing:8.541867pt;}
.wsdb{word-spacing:9.011200pt;}
.wseb{word-spacing:9.245867pt;}
.ws3e{word-spacing:9.480533pt;}
.ws2f{word-spacing:9.797333pt;}
.ws77{word-spacing:11.170133pt;}
.ws1d{word-spacing:11.968000pt;}
.ws90{word-spacing:13.657600pt;}
.ws9e{word-spacing:14.080000pt;}
.wse1{word-spacing:31.459268pt;}
.wse0{word-spacing:31.459802pt;}
.ws64{word-spacing:50.455202pt;}
.wsbc{word-spacing:50.897918pt;}
.ws87{word-spacing:59.655535pt;}
.wscb{word-spacing:59.764335pt;}
.wsa2{word-spacing:60.228864pt;}
.wse6{word-spacing:61.635797pt;}
.wsa1{word-spacing:69.158718pt;}
.wsbd{word-spacing:73.272064pt;}
.ws88{word-spacing:79.094718pt;}
.wsc8{word-spacing:79.473385pt;}
.wsd5{word-spacing:79.960318pt;}
.wsf3{word-spacing:80.307264pt;}
.ws66{word-spacing:81.343735pt;}
.wsba{word-spacing:93.799620pt;}
.wse2{word-spacing:106.825664pt;}
.wsb0{word-spacing:106.826197pt;}
.wse3{word-spacing:106.848602pt;}
.wsf2{word-spacing:111.588331pt;}
.wsc9{word-spacing:115.539264pt;}
.wscc{word-spacing:115.539797pt;}
.ws68{word-spacing:147.632597pt;}
.wsbb{word-spacing:150.186309pt;}
.wsca{word-spacing:151.876868pt;}
.ws5b{word-spacing:158.520709pt;}
.wsd6{word-spacing:163.977131pt;}
.ws7e{word-spacing:165.502043pt;}
.wse4{word-spacing:170.201131pt;}
.wsa0{word-spacing:170.882451pt;}
.wsc7{word-spacing:171.748051pt;}
.ws89{word-spacing:174.313664pt;}
.ws112{word-spacing:182.000000pt;}
.ws26{word-spacing:182.298667pt;}
.wsd7{word-spacing:183.306667pt;}
.wsbe{word-spacing:183.493333pt;}
.wsa3{word-spacing:184.314667pt;}
.ws7f{word-spacing:218.972976pt;}
.ws96{word-spacing:246.627909pt;}
.ws71{word-spacing:265.007648pt;}
.ws8a{word-spacing:308.216176pt;}
.ws67{word-spacing:537.392592pt;}
._4c{margin-left:-183.560533pt;}
._f{margin-left:-123.972800pt;}
._10{margin-left:-68.036267pt;}
._18{margin-left:-24.733867pt;}
._13{margin-left:-23.736533pt;}
._14{margin-left:-22.097853pt;}
._17{margin-left:-21.041853pt;}
._d{margin-left:-16.619093pt;}
._c{margin-left:-15.429333pt;}
._15{margin-left:-13.882880pt;}
._1b{margin-left:-12.531200pt;}
._1a{margin-left:-11.217067pt;}
._16{margin-left:-10.043733pt;}
._12{margin-left:-8.342400pt;}
._b{margin-left:-6.345740pt;}
._3f{margin-left:-5.350400pt;}
._4{margin-left:-4.378527pt;}
._5{margin-left:-3.322997pt;}
._8{margin-left:-2.309120pt;}
._0{margin-left:-1.361067pt;}
._1{width:1.548800pt;}
._2{width:2.980267pt;}
._3{width:4.416273pt;}
._6{width:5.315593pt;}
._e{width:7.040000pt;}
._2e{width:8.791320pt;}
._2f{width:9.769400pt;}
._a{width:13.525333pt;}
._7{width:14.417067pt;}
._9{width:18.606933pt;}
._1d{width:22.605333pt;}
._27{width:23.841067pt;}
._50{width:25.980800pt;}
._2b{width:26.961697pt;}
._19{width:36.586667pt;}
._33{width:38.630463pt;}
._23{width:58.325867pt;}
._3b{width:60.543050pt;}
._29{width:61.826564pt;}
._3c{width:69.683681pt;}
._3a{width:72.925393pt;}
._32{width:76.452630pt;}
._54{width:80.253278pt;}
._40{width:81.220874pt;}
._46{width:82.627807pt;}
._37{width:84.595972pt;}
._4d{width:85.949039pt;}
._4a{width:90.601629pt;}
._3e{width:97.638639pt;}
._21{width:103.131314pt;}
._53{width:104.620506pt;}
._3d{width:108.752363pt;}
._24{width:114.262400pt;}
._43{width:120.577771pt;}
._41{width:121.985237pt;}
._47{width:123.392171pt;}
._38{width:131.139439pt;}
._51{width:135.902106pt;}
._22{width:137.151790pt;}
._20{width:140.122185pt;}
._42{width:145.375143pt;}
._48{width:146.782077pt;}
._39{width:169.624817pt;}
._1f{width:171.999706pt;}
._1c{width:177.959217pt;}
._25{width:182.298667pt;}
._2c{width:184.940550pt;}
._45{width:188.289839pt;}
._49{width:194.567172pt;}
._30{width:198.680772pt;}
._2a{width:206.313254pt;}
._31{width:229.971501pt;}
._2d{width:238.465350pt;}
._35{width:266.066417pt;}
._28{width:283.295113pt;}
._34{width:327.655217pt;}
._4e{width:365.555484pt;}
._4f{width:368.459002pt;}
._1e{width:562.396610pt;}
._52{width:690.197038pt;}
._55{width:1657.753067pt;}
._44{width:1659.059733pt;}
._36{width:1660.105067pt;}
._11{width:1679.406400pt;}
._4b{width:1841.619733pt;}
._26{width:1861.705067pt;}
.fs7{font-size:27.362133pt;}
.fs18{font-size:27.980267pt;}
.fsa{font-size:30.933333pt;}
.fs14{font-size:32.000000pt;}
.fs15{font-size:32.796800pt;}
.fsb{font-size:34.961600pt;}
.fsf{font-size:35.798400pt;}
.fs16{font-size:36.098133pt;}
.fse{font-size:36.533333pt;}
.fs3{font-size:37.333333pt;}
.fsc{font-size:38.479467pt;}
.fs19{font-size:41.600000pt;}
.fs6{font-size:43.530667pt;}
.fs12{font-size:43.729067pt;}
.fs10{font-size:44.827200pt;}
.fs9{font-size:45.333333pt;}
.fs17{font-size:45.893867pt;}
.fs5{font-size:46.933333pt;}
.fsd{font-size:48.978667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fs13{font-size:61.209600pt;}
.fs11{font-size:62.726400pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:94.364800pt;}
.fs0{font-size:234.666667pt;}
.yad{bottom:-55.889867pt;}
.y1eb{bottom:-52.850933pt;}
.y24d{bottom:-52.617467pt;}
.y19f{bottom:-51.945200pt;}
.y26a{bottom:-51.169600pt;}
.y11c{bottom:-50.944667pt;}
.y1c9{bottom:-50.930800pt;}
.y1dc{bottom:-50.710133pt;}
.y17e{bottom:-50.528800pt;}
.y22a{bottom:-50.519733pt;}
.y25d{bottom:-50.489867pt;}
.y203{bottom:-50.288400pt;}
.ybf{bottom:-49.755867pt;}
.y238{bottom:-49.593467pt;}
.y214{bottom:-49.290400pt;}
.y14f{bottom:-42.802400pt;}
.y169{bottom:-42.501067pt;}
.y1b6{bottom:-40.552133pt;}
.yb2{bottom:-37.301349pt;}
.y252{bottom:-34.473972pt;}
.y1ef{bottom:-33.933314pt;}
.y1a3{bottom:-33.801706pt;}
.y26e{bottom:-33.026106pt;}
.y120{bottom:-32.801172pt;}
.y1cd{bottom:-32.787172pt;}
.y183{bottom:-32.385172pt;}
.y22e{bottom:-32.376239pt;}
.y261{bottom:-32.346372pt;}
.y1e0{bottom:-31.792514pt;}
.yc4{bottom:-31.612372pt;}
.y23c{bottom:-31.449972pt;}
.y207{bottom:-31.370647pt;}
.y218{bottom:-30.372781pt;}
.y153{bottom:-28.271133pt;}
.y16d{bottom:-27.969933pt;}
.y1ba{bottom:-26.021000pt;}
.yb1{bottom:-19.695467pt;}
.y251{bottom:-19.157867pt;}
.y1ee{bottom:-18.620133pt;}
.y1a2{bottom:-18.485600pt;}
.y26d{bottom:-17.710000pt;}
.y11f{bottom:-17.485067pt;}
.y1cc{bottom:-17.471067pt;}
.y182{bottom:-17.069067pt;}
.y22d{bottom:-17.060133pt;}
.y260{bottom:-17.030267pt;}
.y1df{bottom:-16.479333pt;}
.yc3{bottom:-16.296267pt;}
.y23b{bottom:-16.133867pt;}
.y206{bottom:-16.057467pt;}
.y152{bottom:-15.160533pt;}
.y217{bottom:-15.059600pt;}
.y16c{bottom:-14.859333pt;}
.y1b9{bottom:-12.910400pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:3.003333pt;}
.y1ea{bottom:3.217333pt;}
.y24c{bottom:3.450800pt;}
.y148{bottom:3.456800pt;}
.y162{bottom:3.758000pt;}
.y19e{bottom:4.123067pt;}
.y9d{bottom:4.143733pt;}
.y269{bottom:4.898667pt;}
.ya{bottom:41.877067pt;}
.y5d{bottom:86.519733pt;}
.y40{bottom:86.519867pt;}
.yd6{bottom:86.550667pt;}
.y170{bottom:91.433067pt;}
.y270{bottom:91.464533pt;}
.y1f1{bottom:91.576667pt;}
.yd9{bottom:91.626267pt;}
.yc8{bottom:91.945467pt;}
.y3f{bottom:99.186533pt;}
.yd5{bottom:101.541067pt;}
.y5c{bottom:103.853067pt;}
.y191{bottom:103.853200pt;}
.y21c{bottom:107.110800pt;}
.ycb{bottom:107.533200pt;}
.y185{bottom:108.417467pt;}
.y272{bottom:109.173333pt;}
.y3e{bottom:111.853200pt;}
.y1f7{bottom:112.008000pt;}
.y285{bottom:112.519733pt;}
.yd4{bottom:113.609867pt;}
.y21{bottom:115.852933pt;}
.yd2{bottom:120.936533pt;}
.y80{bottom:121.186400pt;}
.y190{bottom:121.186533pt;}
.y21b{bottom:124.444133pt;}
.y3d{bottom:124.520000pt;}
.yca{bottom:124.866533pt;}
.y184{bottom:125.750800pt;}
.y9c{bottom:125.809333pt;}
.y271{bottom:126.506667pt;}
.y284{bottom:126.519733pt;}
.y1f6{bottom:129.341333pt;}
.y147{bottom:134.801333pt;}
.y20{bottom:135.852933pt;}
.y3c{bottom:137.186667pt;}
.y5b{bottom:138.519733pt;}
.y18f{bottom:138.519867pt;}
.y283{bottom:140.519733pt;}
.y9b{bottom:142.248800pt;}
.y17d{bottom:143.842667pt;}
.y213{bottom:145.532000pt;}
.y146{bottom:147.877867pt;}
.y268{bottom:148.096000pt;}
.y17c{bottom:149.382267pt;}
.y1e9{bottom:149.525333pt;}
.y212{bottom:152.309867pt;}
.y282{bottom:154.519733pt;}
.y1f{bottom:155.852933pt;}
.y5a{bottom:155.853067pt;}
.y18e{bottom:155.853200pt;}
.y17b{bottom:158.122533pt;}
.ycf{bottom:159.720133pt;}
.y210{bottom:159.756400pt;}
.y1e7{bottom:160.189200pt;}
.y266{bottom:160.441200pt;}
.y179{bottom:165.569067pt;}
.y28d{bottom:166.731733pt;}
.y281{bottom:168.519733pt;}
.y81{bottom:169.612400pt;}
.y20e{bottom:170.088267pt;}
.y9e{bottom:172.938800pt;}
.y59{bottom:173.186400pt;}
.y18d{bottom:173.186533pt;}
.y13a{bottom:173.476667pt;}
.y1e5{bottom:173.632933pt;}
.y82{bottom:176.245467pt;}
.y149{bottom:179.078000pt;}
.y28c{bottom:180.731733pt;}
.y20c{bottom:181.061200pt;}
.y263{bottom:181.285867pt;}
.y280{bottom:182.519733pt;}
.y13b{bottom:184.693067pt;}
.y1e3{bottom:190.017867pt;}
.y3b{bottom:190.519733pt;}
.y18c{bottom:190.519867pt;}
.y9f{bottom:190.620267pt;}
.y1e{bottom:190.971067pt;}
.y250{bottom:192.476698pt;}
.y83{bottom:193.926800pt;}
.y181{bottom:194.565364pt;}
.yc2{bottom:195.338298pt;}
.y27f{bottom:196.519733pt;}
.y262{bottom:199.957333pt;}
.y160{bottom:200.091733pt;}
.y20a{bottom:201.653867pt;}
.y176{bottom:202.040933pt;}
.y13c{bottom:203.445600pt;}
.y84{bottom:204.995067pt;}
.y1ed{bottom:207.545631pt;}
.y24f{bottom:207.779098pt;}
.y3a{bottom:207.853067pt;}
.y18b{bottom:207.853200pt;}
.ya0{bottom:208.301600pt;}
.y1a1{bottom:208.451364pt;}
.y14a{bottom:209.060533pt;}
.y26c{bottom:209.226964pt;}
.y11e{bottom:209.451898pt;}
.y1cb{bottom:209.465898pt;}
.y1de{bottom:209.686431pt;}
.y180{bottom:209.867764pt;}
.y22c{bottom:209.876831pt;}
.y25f{bottom:209.906698pt;}
.y205{bottom:210.108298pt;}
.yc1{bottom:210.640698pt;}
.y28b{bottom:210.731733pt;}
.y23a{bottom:210.803098pt;}
.y216{bottom:211.106164pt;}
.y8{bottom:211.399733pt;}
.y85{bottom:211.608267pt;}
.y1e2{bottom:212.396400pt;}
.y20f{bottom:213.181333pt;}
.y13d{bottom:214.675467pt;}
.y20b{bottom:218.052133pt;}
.y209{bottom:220.081600pt;}
.y86{bottom:222.676400pt;}
.y1ec{bottom:222.863333pt;}
.y24e{bottom:223.096800pt;}
.y1a0{bottom:223.769067pt;}
.y151{bottom:224.103867pt;}
.y16b{bottom:224.405200pt;}
.y27e{bottom:224.519733pt;}
.y26b{bottom:224.544667pt;}
.y11d{bottom:224.769600pt;}
.y1ca{bottom:224.783600pt;}
.y1dd{bottom:225.004133pt;}
.y17f{bottom:225.185467pt;}
.y39{bottom:225.186400pt;}
.y18a{bottom:225.186533pt;}
.y22b{bottom:225.194533pt;}
.y25e{bottom:225.224400pt;}
.y204{bottom:225.426000pt;}
.yc0{bottom:225.958400pt;}
.ya1{bottom:225.983067pt;}
.y1d{bottom:226.089067pt;}
.y239{bottom:226.120800pt;}
.y1b8{bottom:226.354133pt;}
.y215{bottom:226.423867pt;}
.y87{bottom:229.309467pt;}
.yd3{bottom:229.707467pt;}
.y1e4{bottom:231.000133pt;}
.y17a{bottom:231.438400pt;}
.y13e{bottom:233.428133pt;}
.y150{bottom:236.348533pt;}
.y16a{bottom:236.649867pt;}
.y211{bottom:237.640400pt;}
.y1e8{bottom:238.073067pt;}
.y267{bottom:238.325200pt;}
.y27d{bottom:238.519733pt;}
.y1b7{bottom:238.598800pt;}
.y28a{bottom:238.731733pt;}
.y14b{bottom:239.043067pt;}
.y88{bottom:240.357867pt;}
.y38{bottom:242.519733pt;}
.y189{bottom:242.519867pt;}
.y20d{bottom:243.042000pt;}
.ya2{bottom:243.684267pt;}
.y177{bottom:244.065200pt;}
.y13f{bottom:244.658000pt;}
.y1c{bottom:246.089067pt;}
.y89{bottom:246.990800pt;}
.y1e6{bottom:248.995067pt;}
.y27c{bottom:252.519733pt;}
.y289{bottom:252.731733pt;}
.y135{bottom:256.880133pt;}
.y8a{bottom:258.059067pt;}
.y37{bottom:259.853067pt;}
.ya3{bottom:261.365600pt;}
.y178{bottom:262.736533pt;}
.yf8{bottom:262.738933pt;}
.y140{bottom:263.397067pt;}
.y7e{bottom:263.435600pt;}
.y8b{bottom:264.672267pt;}
.y10f{bottom:264.797733pt;}
.y1b{bottom:266.089067pt;}
.y173{bottom:266.159600pt;}
.y288{bottom:266.731733pt;}
.y6{bottom:267.968533pt;}
.y14c{bottom:269.012000pt;}
.y134{bottom:269.124800pt;}
.y141{bottom:274.626933pt;}
.yf7{bottom:274.983600pt;}
.y7d{bottom:275.680267pt;}
.y8c{bottom:275.740400pt;}
.yd1{bottom:276.619333pt;}
.y10e{bottom:277.042400pt;}
.y36{bottom:277.186400pt;}
.y188{bottom:277.186533pt;}
.y6e{bottom:278.092667pt;}
.ya4{bottom:279.047067pt;}
.y27b{bottom:280.519733pt;}
.y287{bottom:280.731733pt;}
.y133{bottom:281.369467pt;}
.y8d{bottom:282.373467pt;}
.yd8{bottom:282.762667pt;}
.y1a{bottom:286.089067pt;}
.y175{bottom:286.495200pt;}
.yf6{bottom:287.228267pt;}
.y7c{bottom:287.924933pt;}
.y10d{bottom:289.287067pt;}
.y6d{bottom:290.337333pt;}
.y7f{bottom:293.362667pt;}
.y142{bottom:293.379467pt;}
.y8e{bottom:293.421867pt;}
.yd7{bottom:294.236133pt;}
.y35{bottom:294.519733pt;}
.y187{bottom:294.519867pt;}
.y286{bottom:294.731733pt;}
.y5{bottom:295.334267pt;}
.ya5{bottom:296.748267pt;}
.y14d{bottom:298.994400pt;}
.y8f{bottom:300.054800pt;}
.y7b{bottom:302.009333pt;}
.y6c{bottom:302.582000pt;}
.y143{bottom:304.609333pt;}
.y19{bottom:306.089067pt;}
.y90{bottom:311.123067pt;}
.y7a{bottom:311.568133pt;}
.y34{bottom:311.853067pt;}
.ya6{bottom:314.429600pt;}
.y264{bottom:314.732400pt;}
.y23e{bottom:316.766267pt;}
.y91{bottom:317.736267pt;}
.y4{bottom:322.700133pt;}
.y144{bottom:323.362000pt;}
.yb0{bottom:323.755333pt;}
.y79{bottom:324.448667pt;}
.y1e1{bottom:325.804933pt;}
.y18{bottom:326.089067pt;}
.y174{bottom:326.598133pt;}
.y92{bottom:328.804400pt;}
.y14e{bottom:328.976933pt;}
.y33{bottom:329.186400pt;}
.ya7{bottom:332.111067pt;}
.y265{bottom:333.403733pt;}
.y78{bottom:334.068533pt;}
.y145{bottom:334.591867pt;}
.y93{bottom:335.417600pt;}
.y242{bottom:336.418933pt;}
.yd0{bottom:338.424267pt;}
.yaf{bottom:339.436933pt;}
.y208{bottom:341.567467pt;}
.y76{bottom:341.880800pt;}
.y111{bottom:342.439867pt;}
.y137{bottom:343.038400pt;}
.y10c{bottom:345.994667pt;}
.y17{bottom:346.089067pt;}
.y94{bottom:346.485733pt;}
.y32{bottom:346.519733pt;}
.ya8{bottom:349.792400pt;}
.y3{bottom:350.066000pt;}
.y95{bottom:353.118800pt;}
.y241{bottom:353.752267pt;}
.yae{bottom:355.118533pt;}
.y10b{bottom:356.915600pt;}
.y139{bottom:359.553867pt;}
.y1ce{bottom:362.759067pt;}
.y58{bottom:363.853067pt;}
.y96{bottom:364.167200pt;}
.y21a{bottom:365.852933pt;}
.y1f3{bottom:365.853067pt;}
.ya9{bottom:367.493600pt;}
.y102{bottom:369.539067pt;}
.y97{bottom:370.800267pt;}
.y75{bottom:372.128400pt;}
.y138{bottom:376.887200pt;}
.y1d1{bottom:377.057733pt;}
.y2{bottom:377.431733pt;}
.y101{bottom:379.172533pt;}
.y237{bottom:379.380000pt;}
.y219{bottom:381.186267pt;}
.y31{bottom:381.186400pt;}
.y16{bottom:381.207200pt;}
.y98{bottom:381.868400pt;}
.ydb{bottom:383.186400pt;}
.yaa{bottom:385.175067pt;}
.y236{bottom:385.854800pt;}
.y234{bottom:393.301333pt;}
.y1d0{bottom:394.391067pt;}
.y11b{bottom:395.513333pt;}
.yda{bottom:398.519733pt;}
.y99{bottom:399.549867pt;}
.y11a{bottom:400.636933pt;}
.yab{bottom:402.856400pt;}
.y74{bottom:405.331067pt;}
.y103{bottom:406.543600pt;}
.yf9{bottom:406.854800pt;}
.y118{bottom:408.083467pt;}
.y1c8{bottom:409.860000pt;}
.y1c7{bottom:414.997600pt;}
.y186{bottom:415.853067pt;}
.y9a{bottom:417.231200pt;}
.y117{bottom:417.319467pt;}
.y1f0{bottom:420.275067pt;}
.yac{bottom:420.557600pt;}
.y26f{bottom:420.766400pt;}
.y1c6{bottom:423.737867pt;}
.y115{bottom:429.564133pt;}
.y1c4{bottom:431.184400pt;}
.y104{bottom:431.722933pt;}
.yfa{bottom:432.034133pt;}
.y57{bottom:433.186400pt;}
.y232{bottom:434.779333pt;}
.y1f5{bottom:436.352133pt;}
.y77{bottom:437.220267pt;}
.y1c2{bottom:442.937067pt;}
.y231{bottom:446.239200pt;}
.y71{bottom:447.233467pt;}
.y56{bottom:450.519733pt;}
.y16f{bottom:451.750667pt;}
.y1f4{bottom:453.685467pt;}
.y1c1{bottom:455.046400pt;}
.y1c3{bottom:455.682267pt;}
.y105{bottom:456.915867pt;}
.yfb{bottom:457.227067pt;}
.y114{bottom:463.835600pt;}
.y172{bottom:466.588267pt;}
.y55{bottom:467.853067pt;}
.y25c{bottom:467.853333pt;}
.yc9{bottom:469.853067pt;}
.y235{bottom:471.185200pt;}
.y22f{bottom:471.283200pt;}
.y202{bottom:472.818667pt;}
.y25b{bottom:473.431733pt;}
.y1db{bottom:473.576000pt;}
.y201{bottom:478.598667pt;}
.y1da{bottom:478.934133pt;}
.y259{bottom:480.878133pt;}
.y230{bottom:481.701333pt;}
.y106{bottom:482.108667pt;}
.yfc{bottom:482.419867pt;}
.y171{bottom:483.921600pt;}
.y54{bottom:485.186400pt;}
.y119{bottom:485.967467pt;}
.y1ff{bottom:486.045067pt;}
.y1d8{bottom:486.380667pt;}
.y1{bottom:492.286400pt;}
.y15f{bottom:493.100000pt;}
.y1fe{bottom:495.646400pt;}
.y53{bottom:502.519733pt;}
.y1c5{bottom:504.711733pt;}
.y1d7{bottom:505.628800pt;}
.y1bb{bottom:505.743333pt;}
.y161{bottom:506.477733pt;}
.y107{bottom:507.288000pt;}
.yfd{bottom:507.599200pt;}
.y1be{bottom:511.317600pt;}
.y72{bottom:515.221733pt;}
.y116{bottom:515.980133pt;}
.y1bc{bottom:519.192133pt;}
.y1d6{bottom:519.388800pt;}
.y52{bottom:519.853067pt;}
.y1fd{bottom:525.371867pt;}
.y73{bottom:527.872267pt;}
.y256{bottom:528.728800pt;}
.yc7{bottom:530.690000pt;}
.y1d5{bottom:531.268133pt;}
.y154{bottom:532.076533pt;}
.y108{bottom:532.480933pt;}
.yfe{bottom:532.792133pt;}
.y51{bottom:537.186400pt;}
.y163{bottom:537.678000pt;}
.ycd{bottom:541.354133pt;}
.y155{bottom:543.292933pt;}
.y1fc{bottom:546.519200pt;}
.y255{bottom:549.740933pt;}
.y7{bottom:552.166133pt;}
.y27a{bottom:554.519600pt;}
.y50{bottom:554.519733pt;}
.y109{bottom:557.660267pt;}
.yff{bottom:557.971333pt;}
.ycc{bottom:558.687467pt;}
.y25a{bottom:558.762133pt;}
.y1fb{bottom:559.995067pt;}
.y1bf{bottom:560.228533pt;}
.y156{bottom:562.045467pt;}
.y200{bottom:563.929067pt;}
.y112{bottom:564.025200pt;}
.y1d9{bottom:564.264667pt;}
.y1d4{bottom:565.472000pt;}
.y164{bottom:567.660400pt;}
.y1bd{bottom:570.822533pt;}
.y279{bottom:571.852933pt;}
.y4f{bottom:571.853067pt;}
.ybe{bottom:572.290667pt;}
.y157{bottom:573.275333pt;}
.y233{bottom:577.331333pt;}
.ybd{bottom:578.603067pt;}
.y10a{bottom:582.853067pt;}
.y100{bottom:583.164267pt;}
.ybb{bottom:586.049600pt;}
.y278{bottom:589.186267pt;}
.y4e{bottom:589.186400pt;}
.y158{bottom:592.028000pt;}
.y1c0{bottom:592.457067pt;}
.y113{bottom:592.478800pt;}
.y70{bottom:593.186400pt;}
.y165{bottom:597.642933pt;}
.y1fa{bottom:597.676133pt;}
.y159{bottom:603.257867pt;}
.yb3{bottom:603.674133pt;}
.y277{bottom:606.519600pt;}
.y4d{bottom:606.519733pt;}
.y6f{bottom:608.519733pt;}
.yb6{bottom:616.920000pt;}
.y1d2{bottom:617.156667pt;}
.y1f8{bottom:620.190000pt;}
.y15a{bottom:621.996933pt;}
.y276{bottom:623.852933pt;}
.y4c{bottom:623.853067pt;}
.y1cf{bottom:625.853067pt;}
.y166{bottom:627.611867pt;}
.ydd{bottom:627.853067pt;}
.yb7{bottom:631.965467pt;}
.y15b{bottom:633.226800pt;}
.y275{bottom:641.186267pt;}
.y4b{bottom:641.186400pt;}
.ydc{bottom:643.186400pt;}
.y257{bottom:644.938000pt;}
.yb8{bottom:647.984933pt;}
.yb5{bottom:648.201467pt;}
.y15c{bottom:651.979333pt;}
.ybc{bottom:656.289200pt;}
.y167{bottom:657.594267pt;}
.y274{bottom:658.519600pt;}
.y4a{bottom:658.519733pt;}
.yb4{bottom:662.827333pt;}
.y15d{bottom:663.209333pt;}
.y1d3{bottom:664.836400pt;}
.y258{bottom:665.950133pt;}
.y60{bottom:666.029467pt;}
.y6b{bottom:669.238667pt;}
.y1f9{bottom:671.116933pt;}
.y273{bottom:675.852933pt;}
.yce{bottom:675.853067pt;}
.y1a4{bottom:680.766400pt;}
.y30{bottom:681.709333pt;}
.y15e{bottom:681.961867pt;}
.y168{bottom:687.576800pt;}
.y23d{bottom:689.521867pt;}
.y49{bottom:693.186400pt;}
.y6a{bottom:693.454533pt;}
.yf5{bottom:694.162667pt;}
.y1f2{bottom:695.186400pt;}
.y136{bottom:698.076667pt;}
.y110{bottom:698.643600pt;}
.y1a6{bottom:701.341200pt;}
.y2f{bottom:701.709333pt;}
.yf4{bottom:703.024800pt;}
.y69{bottom:706.335067pt;}
.y48{bottom:710.519733pt;}
.y240{bottom:710.663333pt;}
.yba{bottom:711.927733pt;}
.y131{bottom:714.330667pt;}
.ye9{bottom:715.648267pt;}
.y68{bottom:715.954933pt;}
.y1a5{bottom:718.674533pt;}
.y2e{bottom:721.709333pt;}
.y254{bottom:721.888800pt;}
.y66{bottom:723.767200pt;}
.ye8{bottom:725.281600pt;}
.y47{bottom:727.853067pt;}
.y23f{bottom:727.996667pt;}
.y16e{bottom:729.853067pt;}
.y129{bottom:729.957467pt;}
.y1b5{bottom:733.901333pt;}
.y19d{bottom:733.985333pt;}
.y1b4{bottom:739.080667pt;}
.y253{bottom:739.222133pt;}
.y128{bottom:739.590933pt;}
.y2d{bottom:741.709333pt;}
.y1b2{bottom:745.039333pt;}
.y46{bottom:745.186400pt;}
.y19c{bottom:746.848800pt;}
.y65{bottom:747.791067pt;}
.yea{bottom:750.501600pt;}
.yde{bottom:750.812800pt;}
.y229{bottom:753.428000pt;}
.y19a{bottom:754.295200pt;}
.yb9{bottom:755.819067pt;}
.y228{bottom:758.976533pt;}
.y2c{bottom:761.709333pt;}
.y45{bottom:762.519733pt;}
.y24b{bottom:764.390667pt;}
.y227{bottom:767.716933pt;}
.y198{bottom:768.456133pt;}
.y12a{bottom:768.504533pt;}
.y121{bottom:768.815733pt;}
.yeb{bottom:770.566533pt;}
.ydf{bottom:770.877733pt;}
.y196{bottom:773.530000pt;}
.y225{bottom:775.163467pt;}
.y249{bottom:775.288000pt;}
.y1af{bottom:779.846533pt;}
.y15{bottom:779.853067pt;}
.yc6{bottom:781.852933pt;}
.y61{bottom:783.293733pt;}
.y197{bottom:786.829867pt;}
.y1a7{bottom:790.575733pt;}
.yec{bottom:790.631467pt;}
.ye0{bottom:790.942667pt;}
.y2b{bottom:796.827467pt;}
.yc5{bottom:797.186267pt;}
.y44{bottom:797.186400pt;}
.y12b{bottom:797.377467pt;}
.y122{bottom:797.688667pt;}
.y64{bottom:797.987333pt;}
.y1ab{bottom:798.612533pt;}
.y1b1{bottom:805.959333pt;}
.y195{bottom:806.110133pt;}
.y1ac{bottom:808.908933pt;}
.yed{bottom:810.710000pt;}
.ye1{bottom:811.021200pt;}
.y1ae{bottom:811.858533pt;}
.y14{bottom:814.519733pt;}
.y2a{bottom:816.827467pt;}
.y192{bottom:818.977200pt;}
.y67{bottom:819.106667pt;}
.y223{bottom:822.256400pt;}
.y243{bottom:825.614533pt;}
.y12c{bottom:826.236933pt;}
.y123{bottom:826.548133pt;}
.y19b{bottom:827.822533pt;}
.y222{bottom:829.156800pt;}
.y1a9{bottom:829.934533pt;}
.yee{bottom:830.775067pt;}
.ye2{bottom:831.086267pt;}
.y13{bottom:831.853067pt;}
.y199{bottom:832.385467pt;}
.y21d{bottom:835.624000pt;}
.y1b3{bottom:836.211467pt;}
.y193{bottom:836.282000pt;}
.y224{bottom:838.857600pt;}
.y24a{bottom:845.527467pt;}
.y226{bottom:848.690800pt;}
.y12{bottom:849.186400pt;}
.yef{bottom:850.840000pt;}
.ye3{bottom:851.151200pt;}
.y29{bottom:851.945600pt;}
.y21e{bottom:855.080133pt;}
.y12d{bottom:855.110000pt;}
.y124{bottom:855.421200pt;}
.y248{bottom:855.881200pt;}
.y246{bottom:857.193600pt;}
.y11{bottom:866.519733pt;}
.yf0{bottom:870.905067pt;}
.ye4{bottom:871.216267pt;}
.y28{bottom:871.945600pt;}
.y1b0{bottom:873.961200pt;}
.y220{bottom:875.375200pt;}
.y10{bottom:883.853067pt;}
.y12e{bottom:883.983067pt;}
.y125{bottom:884.294133pt;}
.y1aa{bottom:887.234000pt;}
.yf1{bottom:890.970000pt;}
.ye5{bottom:891.281200pt;}
.y27{bottom:891.945600pt;}
.y245{bottom:898.067733pt;}
.y194{bottom:900.644267pt;}
.yf{bottom:901.186400pt;}
.y1ad{bottom:903.591867pt;}
.y21f{bottom:908.483067pt;}
.yf2{bottom:911.048533pt;}
.ye6{bottom:911.359733pt;}
.y26{bottom:911.945600pt;}
.y12f{bottom:912.856000pt;}
.y126{bottom:913.167200pt;}
.ye{bottom:918.519733pt;}
.y62{bottom:919.175600pt;}
.y1a8{bottom:920.504267pt;}
.y63{bottom:928.971200pt;}
.yf3{bottom:931.113467pt;}
.ye7{bottom:931.424667pt;}
.y25{bottom:931.945600pt;}
.y247{bottom:934.436400pt;}
.yd{bottom:935.853067pt;}
.y130{bottom:941.729067pt;}
.y127{bottom:942.040267pt;}
.y221{bottom:942.957467pt;}
.y244{bottom:945.057467pt;}
.y43{bottom:953.186400pt;}
.y24{bottom:967.063733pt;}
.yc{bottom:970.519733pt;}
.y5f{bottom:974.519733pt;}
.y23{bottom:987.063733pt;}
.y42{bottom:987.853067pt;}
.y5e{bottom:989.853067pt;}
.y41{bottom:1005.186400pt;}
.yb{bottom:1005.434000pt;}
.y22{bottom:1007.063733pt;}
.y9{bottom:1064.543733pt;}
.h29{height:20.621457pt;}
.hf{height:22.761979pt;}
.h20{height:24.171242pt;}
.h1f{height:24.484375pt;}
.h10{height:25.766699pt;}
.h15{height:26.383421pt;}
.h21{height:26.604324pt;}
.h11{height:28.359367pt;}
.h5{height:28.565104pt;}
.h3a{height:29.934166pt;}
.h31{height:30.150166pt;}
.h40{height:32.032812pt;}
.h3f{height:32.114062pt;}
.h1c{height:32.228322pt;}
.h41{height:32.235937pt;}
.h19{height:33.037646pt;}
.h38{height:33.559233pt;}
.h23{height:33.823780pt;}
.he{height:34.686198pt;}
.h13{height:36.097277pt;}
.h8{height:36.139583pt;}
.h7{height:36.231250pt;}
.hc{height:36.368750pt;}
.hb{height:36.698177pt;}
.hd{height:38.766927pt;}
.h2f{height:43.838523pt;}
.h1e{height:45.111475pt;}
.h4{height:45.174479pt;}
.h9{height:45.460938pt;}
.h1b{height:46.229357pt;}
.h26{height:50.066966pt;}
.h2c{height:51.202966pt;}
.h16{height:52.836221pt;}
.h17{height:52.915154pt;}
.h18{height:52.915687pt;}
.h6{height:57.130208pt;}
.h35{height:57.372566pt;}
.ha{height:58.170911pt;}
.h3{height:72.201973pt;}
.h2{height:179.552083pt;}
.h1d{height:196.105333pt;}
.h3c{height:197.228000pt;}
.h2d{height:201.984000pt;}
.h2b{height:204.266667pt;}
.h27{height:211.005333pt;}
.h32{height:211.956000pt;}
.h34{height:214.760000pt;}
.h2e{height:215.666667pt;}
.h3e{height:216.441333pt;}
.h33{height:216.901333pt;}
.h39{height:217.090667pt;}
.h3d{height:217.121333pt;}
.h36{height:217.322667pt;}
.h3b{height:218.018667pt;}
.h37{height:218.321333pt;}
.h2a{height:222.992000pt;}
.h30{height:223.242667pt;}
.h28{height:248.986667pt;}
.h24{height:259.276000pt;}
.h25{height:260.000000pt;}
.h14{height:260.993333pt;}
.h12{height:274.509333pt;}
.h22{height:277.333333pt;}
.h1a{height:319.192000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:423.780000pt;}
.w3{width:434.080000pt;}
.w6{width:434.645333pt;}
.w7{width:448.504000pt;}
.w2{width:471.117333pt;}
.w4{width:642.520000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc8{left:31.092800pt;}
.xcc{left:36.092933pt;}
.xad{left:37.897067pt;}
.xbb{left:40.692133pt;}
.xc7{left:41.874933pt;}
.xba{left:43.229200pt;}
.x19{left:44.409333pt;}
.xc3{left:45.718000pt;}
.x71{left:47.053733pt;}
.x98{left:50.394667pt;}
.x51{left:51.968000pt;}
.x7{left:52.913333pt;}
.xcb{left:55.748000pt;}
.x8{left:56.692933pt;}
.xc2{left:60.067867pt;}
.x76{left:61.319733pt;}
.x12{left:63.297333pt;}
.x49{left:70.054620pt;}
.x9{left:71.778000pt;}
.xa{left:73.700800pt;}
.x4{left:74.645600pt;}
.x3{left:75.590533pt;}
.xca{left:76.611333pt;}
.x6f{left:77.556133pt;}
.x1{left:79.370133pt;}
.x2{left:81.342267pt;}
.x18{left:82.306933pt;}
.x94{left:83.285067pt;}
.xac{left:85.200667pt;}
.x95{left:86.771333pt;}
.x50{left:88.188267pt;}
.xdb{left:89.584267pt;}
.x5{left:90.675600pt;}
.x4f{left:91.833067pt;}
.xe1{left:94.488133pt;}
.x13{left:98.768933pt;}
.x53{left:100.316686pt;}
.xae{left:104.281200pt;}
.x75{left:107.819867pt;}
.xdc{left:109.853867pt;}
.x32{left:111.309867pt;}
.x33{left:112.312267pt;}
.x1d{left:113.552267pt;}
.xd{left:115.415200pt;}
.x35{left:117.789733pt;}
.x86{left:119.389467pt;}
.xc5{left:123.401600pt;}
.xdd{left:124.299332pt;}
.x6c{left:125.471733pt;}
.xaf{left:126.687600pt;}
.xa1{left:127.981333pt;}
.x1b{left:130.136275pt;}
.xcd{left:132.356933pt;}
.xd8{left:134.239200pt;}
.x70{left:135.374000pt;}
.x1c{left:137.299405pt;}
.x87{left:139.578800pt;}
.x99{left:141.752267pt;}
.x1f{left:143.410500pt;}
.x77{left:147.016533pt;}
.x14{left:150.215467pt;}
.x91{left:153.958133pt;}
.x34{left:155.577467pt;}
.x38{left:158.281067pt;}
.x37{left:159.318667pt;}
.x48{left:163.230933pt;}
.x36{left:164.787200pt;}
.xa5{left:173.808267pt;}
.x6b{left:177.220761pt;}
.xd9{left:180.376400pt;}
.xb5{left:184.375867pt;}
.xb0{left:187.724400pt;}
.xe{left:189.023867pt;}
.x78{left:191.496843pt;}
.x1e{left:196.674800pt;}
.x52{left:197.921467pt;}
.x73{left:199.764667pt;}
.x96{left:201.458000pt;}
.x31{left:202.583867pt;}
.x1a{left:208.061333pt;}
.x3b{left:209.515486pt;}
.x72{left:211.882000pt;}
.xb1{left:215.027867pt;}
.x6d{left:217.205200pt;}
.x15{left:224.113733pt;}
.x2f{left:228.816000pt;}
.x3a{left:230.434740pt;}
.xbc{left:234.976267pt;}
.xa6{left:238.126000pt;}
.x20{left:239.019733pt;}
.x22{left:240.385867pt;}
.x24{left:243.058933pt;}
.x21{left:245.157733pt;}
.x92{left:247.999600pt;}
.x4b{left:249.522267pt;}
.x23{left:251.830267pt;}
.x25{left:254.523067pt;}
.xda{left:257.443333pt;}
.xa7{left:259.534267pt;}
.xb2{left:260.624000pt;}
.x62{left:262.615067pt;}
.xf{left:265.062533pt;}
.x2e{left:266.007200pt;}
.x88{left:268.196779pt;}
.x89{left:269.139600pt;}
.x27{left:270.363067pt;}
.x4d{left:272.349200pt;}
.x29{left:274.461733pt;}
.x28{left:287.589200pt;}
.x47{left:290.078667pt;}
.x97{left:291.356000pt;}
.x2b{left:296.954533pt;}
.xa8{left:298.541333pt;}
.xc1{left:301.417333pt;}
.xb{left:302.362133pt;}
.x16{left:304.163600pt;}
.x2a{left:305.132000pt;}
.x61{left:306.988933pt;}
.xa3{left:308.044533pt;}
.x6e{left:308.952133pt;}
.x45{left:310.942000pt;}
.x5c{left:319.542267pt;}
.x5d{left:320.869733pt;}
.x26{left:322.694533pt;}
.x74{left:325.343600pt;}
.x6a{left:326.506667pt;}
.xa0{left:333.884400pt;}
.x9f{left:335.253600pt;}
.x10{left:341.101067pt;}
.xc6{left:342.587600pt;}
.x85{left:345.593867pt;}
.x4c{left:351.947467pt;}
.x5e{left:353.489067pt;}
.x3c{left:356.637467pt;}
.x46{left:358.035867pt;}
.x39{left:359.870667pt;}
.x3d{left:361.760933pt;}
.x30{left:367.583867pt;}
.xbd{left:370.047333pt;}
.x60{left:371.140667pt;}
.x17{left:373.247467pt;}
.x84{left:375.140000pt;}
.x5f{left:377.018133pt;}
.xc4{left:378.026267pt;}
.xd5{left:379.908400pt;}
.xa4{left:381.805733pt;}
.xa9{left:386.225467pt;}
.xe0{left:389.742800pt;}
.x3e{left:393.643200pt;}
.xb6{left:394.588133pt;}
.xde{left:396.915600pt;}
.x83{left:399.237200pt;}
.xc9{left:401.913333pt;}
.x4e{left:402.927333pt;}
.xb7{left:404.776533pt;}
.x9a{left:405.926667pt;}
.xb3{left:408.866800pt;}
.xe2{left:414.299200pt;}
.x82{left:417.805600pt;}
.x11{left:419.569600pt;}
.xaa{left:423.287867pt;}
.x8a{left:425.228133pt;}
.x90{left:426.770533pt;}
.x81{left:427.839333pt;}
.x93{left:428.779467pt;}
.x7f{left:431.059467pt;}
.x79{left:432.033600pt;}
.x7a{left:434.577333pt;}
.xb4{left:436.170267pt;}
.x80{left:439.190933pt;}
.x5a{left:445.433867pt;}
.xab{left:446.640667pt;}
.xc{left:448.149867pt;}
.x6{left:449.265067pt;}
.x3f{left:450.942667pt;}
.x55{left:456.522933pt;}
.x66{left:460.920267pt;}
.x8e{left:463.112000pt;}
.xce{left:466.933333pt;}
.x7d{left:468.524000pt;}
.x69{left:469.620000pt;}
.x56{left:473.652000pt;}
.x54{left:482.202933pt;}
.x57{left:486.491867pt;}
.x40{left:487.684667pt;}
.x7e{left:489.441467pt;}
.x8f{left:492.390933pt;}
.x64{left:495.678800pt;}
.x9b{left:497.538267pt;}
.x8d{left:500.779600pt;}
.xd6{left:503.112667pt;}
.x63{left:504.365067pt;}
.xcf{left:512.529467pt;}
.xa2{left:524.619733pt;}
.x65{left:530.437333pt;}
.x41{left:542.554267pt;}
.xd7{left:549.249867pt;}
.xb8{left:554.256000pt;}
.xbe{left:556.038667pt;}
.x9c{left:557.267600pt;}
.xd3{left:568.978933pt;}
.x5b{left:571.012800pt;}
.x42{left:576.852933pt;}
.xd0{left:585.442667pt;}
.xbf{left:587.974933pt;}
.x9d{left:589.136400pt;}
.xb9{left:591.119733pt;}
.x58{left:597.816800pt;}
.x8c{left:619.545867pt;}
.x7c{left:625.620933pt;}
.x43{left:634.152400pt;}
.x2d{left:637.039333pt;}
.x2c{left:641.870533pt;}
.xd4{left:646.493600pt;}
.xc0{left:647.812667pt;}
.x9e{left:648.865733pt;}
.x68{left:652.072000pt;}
.xdf{left:655.446800pt;}
.xd1{left:660.772133pt;}
.x44{left:668.464533pt;}
.x8b{left:680.593200pt;}
.xd2{left:685.645867pt;}
.x67{left:686.830667pt;}
.x59{left:692.012667pt;}
.x4a{left:693.819200pt;}
.x7b{left:706.476133pt;}
}




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