
    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_1294f8d6454fb525d72b25b4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c6e590bac685eda2add8964a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_1ee4c08ccf4a53dceb09d2bd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_e3e413edc778405af6fc21c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_afaa5f229fcf3f2a2fb586e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_ccd4ff73882a4ab97c80ab79.woff')format("woff");}.ff6{font-family:ff6;line-height:0.917000;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_d094a24ce6476f8230f1648f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_e87bbe18dadcf473bb3bfbcb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_66bf483a53e7aecd01350f33.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21911c3cf48fd02505e7a66f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.999000;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_655e3261a9062b63082b31cb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.898474;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_649ff1d78a6168668e27f179.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922000;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_a6b16b55532738d4ef6e308d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.673000;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_a864e791456af73f33a312d7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.482000;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_db72730f9761aea75cb610ba.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dae2caf8dd12d4aa37e4bc2a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.922000;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_c8956b9ce4c23b64f987dbd6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.684000;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_06856a6c3e3d887f299ed6e1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.497000;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_974a6f6fef41b030fa051f38.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922000;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_b4f264beeb6894f63ed856ec.woff')format("woff");}.ff14{font-family:ff14;line-height:0.696000;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_97cc01f03c07d51e5a5966da.woff')format("woff");}.ff15{font-family:ff15;line-height:0.899000;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_5d534051e0965cd52c08f86a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.716000;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_3275cd788184eefa501b58f1.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-15.246000px;}
.v4{vertical-align:-8.970000px;}
.va{vertical-align:-6.360000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.714000px;}
.v5{vertical-align:8.970000px;}
.vc{vertical-align:14.136000px;}
.v7{vertical-align:16.212000px;}
.v6{vertical-align:19.650000px;}
.v1{vertical-align:21.690000px;}
.v9{vertical-align:22.854000px;}
.v8{vertical-align:35.934000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000352px;}
.ls1e{letter-spacing:0.000591px;}
.ls3c{letter-spacing:0.000605px;}
.ls2f{letter-spacing:0.000725px;}
.ls9{letter-spacing:0.000785px;}
.ls31{letter-spacing:0.000827px;}
.ls1b{letter-spacing:0.001064px;}
.ls38{letter-spacing:0.001191px;}
.ls21{letter-spacing:0.001655px;}
.ls2d{letter-spacing:0.001891px;}
.lsf{letter-spacing:0.002048px;}
.ls18{letter-spacing:0.002272px;}
.ls6{letter-spacing:0.003176px;}
.ls36{letter-spacing:0.003543px;}
.ls1f{letter-spacing:0.004036px;}
.ls29{letter-spacing:0.004080px;}
.ls1c{letter-spacing:0.382457px;}
.ls12{letter-spacing:0.458205px;}
.ls11{letter-spacing:2.987276px;}
.ls7{letter-spacing:2.989019px;}
.ls1{letter-spacing:2.989628px;}
.ls2{letter-spacing:2.992192px;}
.ls0{letter-spacing:2.993545px;}
.ls3f{letter-spacing:12.283655px;}
.lsd{letter-spacing:13.278352px;}
.lsc{letter-spacing:13.280272px;}
.lsb{letter-spacing:13.284352px;}
.ls32{letter-spacing:15.332510px;}
.ls22{letter-spacing:15.357458px;}
.ls24{letter-spacing:15.361467px;}
.ls23{letter-spacing:15.361655px;}
.ls26{letter-spacing:15.439655px;}
.ls25{letter-spacing:15.440416px;}
.lsa{letter-spacing:16.272539px;}
.lse{letter-spacing:16.278539px;}
.ls35{letter-spacing:16.429655px;}
.ls37{letter-spacing:16.537467px;}
.ls15{letter-spacing:16.600775px;}
.ls2e{letter-spacing:16.602352px;}
.ls17{letter-spacing:16.606775px;}
.ls5{letter-spacing:16.608352px;}
.ls20{letter-spacing:17.251467px;}
.ls3d{letter-spacing:17.845467px;}
.ls3b{letter-spacing:17.845655px;}
.ls2c{letter-spacing:17.926775px;}
.ls41{letter-spacing:18.348605px;}
.ls3a{letter-spacing:19.285655px;}
.ls4{letter-spacing:19.591019px;}
.ls13{letter-spacing:19.596539px;}
.ls10{letter-spacing:19.902352px;}
.ls14{letter-spacing:19.904316px;}
.ls28{letter-spacing:19.906080px;}
.ls1d{letter-spacing:20.238605px;}
.ls2b{letter-spacing:20.692080px;}
.ls3e{letter-spacing:23.035569px;}
.ls30{letter-spacing:23.047569px;}
.ls19{letter-spacing:24.074944px;}
.ls1a{letter-spacing:24.080675px;}
.ls27{letter-spacing:24.906157px;}
.ls34{letter-spacing:25.723467px;}
.ls2a{letter-spacing:26.220157px;}
.ls40{letter-spacing:30.102539px;}
.ls39{letter-spacing:32.851467px;}
.ls33{letter-spacing:33.403569px;}
.ls8{letter-spacing:785.169176px;}
.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;}
}
.wsbf{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557900px;}
.ws3{word-spacing:-59.775840px;}
.ws20{word-spacing:-53.798280px;}
.ws5a{word-spacing:-46.490276px;}
.ws59{word-spacing:-46.489571px;}
.ws104{word-spacing:-46.206724px;}
.wsf9{word-spacing:-45.788293px;}
.ws39{word-spacing:-45.190535px;}
.ws5e{word-spacing:-45.011208px;}
.ws46{word-spacing:-44.831888px;}
.wsfb{word-spacing:-44.831880px;}
.ws51{word-spacing:-44.772104px;}
.wsf1{word-spacing:-44.473225px;}
.ws49{word-spacing:-44.413449px;}
.ws45{word-spacing:-44.353673px;}
.wse4{word-spacing:-44.174346px;}
.wse5{word-spacing:-44.114570px;}
.ws48{word-spacing:-43.755915px;}
.wsfa{word-spacing:-43.696139px;}
.ws101{word-spacing:-43.516812px;}
.wsc9{word-spacing:-43.457036px;}
.ws52{word-spacing:-43.397260px;}
.wscc{word-spacing:-43.277708px;}
.ws62{word-spacing:-43.169990px;}
.ws35{word-spacing:-43.158156px;}
.wsf0{word-spacing:-42.919053px;}
.wsef{word-spacing:-42.560398px;}
.wsfd{word-spacing:-42.440846px;}
.ws27{word-spacing:-42.321295px;}
.wscb{word-spacing:-42.201743px;}
.wscd{word-spacing:-42.082191px;}
.wse3{word-spacing:-41.962640px;}
.ws4d{word-spacing:-41.902864px;}
.ws77{word-spacing:-41.843100px;}
.ws2c{word-spacing:-41.843088px;}
.ws2b{word-spacing:-41.603985px;}
.ws31{word-spacing:-41.544209px;}
.ws4f{word-spacing:-41.424657px;}
.wsba{word-spacing:-41.364881px;}
.ws55{word-spacing:-41.305105px;}
.ws6{word-spacing:-41.185554px;}
.ws5d{word-spacing:-41.125778px;}
.ws7b{word-spacing:-41.101886px;}
.ws4b{word-spacing:-41.066002px;}
.ws2f{word-spacing:-41.006226px;}
.ws18{word-spacing:-40.886675px;}
.wse8{word-spacing:-40.647571px;}
.wscf{word-spacing:-40.528020px;}
.ws4a{word-spacing:-40.468244px;}
.ws36{word-spacing:-40.408468px;}
.ws25{word-spacing:-40.348692px;}
.ws29{word-spacing:-40.288916px;}
.ws13{word-spacing:-40.229140px;}
.ws10{word-spacing:-40.169364px;}
.ws12{word-spacing:-40.109589px;}
.ws5{word-spacing:-40.049813px;}
.ws11{word-spacing:-39.990037px;}
.wsce{word-spacing:-39.956763px;}
.ws8{word-spacing:-39.930261px;}
.ws61{word-spacing:-39.873691px;}
.ws5f{word-spacing:-39.873067px;}
.ws67{word-spacing:-39.872760px;}
.ws63{word-spacing:-39.872748px;}
.ws60{word-spacing:-39.872016px;}
.wse6{word-spacing:-39.870896px;}
.wse9{word-spacing:-39.870699px;}
.ws2{word-spacing:-39.870485px;}
.wsd2{word-spacing:-39.870219px;}
.wsd6{word-spacing:-39.868638px;}
.ws68{word-spacing:-39.868630px;}
.ws64{word-spacing:-39.868390px;}
.ws8d{word-spacing:-39.868122px;}
.ws66{word-spacing:-39.867653px;}
.ws93{word-spacing:-39.867641px;}
.wsda{word-spacing:-39.867251px;}
.ws7c{word-spacing:-39.864525px;}
.ws16{word-spacing:-39.810709px;}
.ws23{word-spacing:-39.750934px;}
.wsb{word-spacing:-39.691158px;}
.ws19{word-spacing:-39.631382px;}
.ws14{word-spacing:-39.571606px;}
.ws40{word-spacing:-39.511830px;}
.ws1d{word-spacing:-39.487938px;}
.ws17{word-spacing:-39.452054px;}
.ws2d{word-spacing:-39.392279px;}
.ws2e{word-spacing:-39.332503px;}
.wsd1{word-spacing:-39.272727px;}
.ws9d{word-spacing:-39.218946px;}
.wsf8{word-spacing:-39.212951px;}
.ws53{word-spacing:-39.153175px;}
.ws2a{word-spacing:-39.033624px;}
.ws105{word-spacing:-38.914072px;}
.ws3f{word-spacing:-38.854296px;}
.wsd8{word-spacing:-38.794520px;}
.wse1{word-spacing:-38.734744px;}
.ws3a{word-spacing:-38.674968px;}
.wsd7{word-spacing:-38.615193px;}
.wse7{word-spacing:-38.555417px;}
.wsc7{word-spacing:-38.525579px;}
.wsbb{word-spacing:-38.495641px;}
.wsa{word-spacing:-38.435865px;}
.wsca{word-spacing:-38.376089px;}
.wsf2{word-spacing:-38.316313px;}
.ws9{word-spacing:-38.256538px;}
.wsd{word-spacing:-38.196762px;}
.wse{word-spacing:-38.136986px;}
.wsc5{word-spacing:-38.077210px;}
.ws54{word-spacing:-38.017434px;}
.wsd0{word-spacing:-37.957658px;}
.ws41{word-spacing:-37.838107px;}
.ws50{word-spacing:-37.778331px;}
.wsc{word-spacing:-37.718555px;}
.wsbc{word-spacing:-37.599003px;}
.ws28{word-spacing:-37.479452px;}
.ws47{word-spacing:-37.419676px;}
.wsf4{word-spacing:-37.359900px;}
.ws7a{word-spacing:-37.336006px;}
.ws33{word-spacing:-37.180572px;}
.ws32{word-spacing:-37.120797px;}
.ws44{word-spacing:-37.061021px;}
.wsd9{word-spacing:-37.001245px;}
.ws7{word-spacing:-36.941469px;}
.ws1{word-spacing:-36.881693px;}
.wsb8{word-spacing:-36.821917px;}
.ws103{word-spacing:-36.762142px;}
.wsb9{word-spacing:-36.702366px;}
.wsfc{word-spacing:-36.582814px;}
.wsc1{word-spacing:-36.463262px;}
.ws78{word-spacing:-36.421436px;}
.wsfe{word-spacing:-36.390285px;}
.wsf7{word-spacing:-36.224159px;}
.wsdb{word-spacing:-36.104607px;}
.wsc2{word-spacing:-36.044832px;}
.ws102{word-spacing:-36.014774px;}
.ws43{word-spacing:-35.925280px;}
.ws24{word-spacing:-35.865504px;}
.wsb0{word-spacing:-35.865480px;}
.ws69{word-spacing:-35.745952px;}
.ws106{word-spacing:-35.742877px;}
.ws34{word-spacing:-35.686176px;}
.ws30{word-spacing:-35.626401px;}
.ws95{word-spacing:-35.614461px;}
.wsde{word-spacing:-35.566625px;}
.ws96{word-spacing:-35.560663px;}
.ws37{word-spacing:-35.506849px;}
.ws100{word-spacing:-35.447073px;}
.ws1c{word-spacing:-35.399268px;}
.ws3d{word-spacing:-35.387297px;}
.ws1e{word-spacing:-35.345470px;}
.wsb2{word-spacing:-35.344232px;}
.ws9e{word-spacing:-35.327729px;}
.ws3e{word-spacing:-35.327521px;}
.ws85{word-spacing:-35.325425px;}
.ws98{word-spacing:-35.237873px;}
.wsb7{word-spacing:-35.148194px;}
.ws89{word-spacing:-35.130277px;}
.ws8b{word-spacing:-35.088418px;}
.ws86{word-spacing:-35.076479px;}
.ws56{word-spacing:-35.028642px;}
.ws7d{word-spacing:-35.022680px;}
.ws26{word-spacing:-34.729763px;}
.wsff{word-spacing:-34.669987px;}
.ws97{word-spacing:-34.664119px;}
.ws1a{word-spacing:-34.610211px;}
.ws7f{word-spacing:-34.592294px;}
.wsc6{word-spacing:-34.490660px;}
.wsc3{word-spacing:-34.311332px;}
.ws38{word-spacing:-34.251556px;}
.wsaf{word-spacing:-34.215706px;}
.ws4c{word-spacing:-34.191780px;}
.ws84{word-spacing:-34.161908px;}
.wsb5{word-spacing:-34.132005px;}
.ws7e{word-spacing:-34.126624px;}
.ws83{word-spacing:-34.108110px;}
.ws65{word-spacing:-34.072229px;}
.wsd3{word-spacing:-34.012453px;}
.wsc8{word-spacing:-33.892901px;}
.wsdc{word-spacing:-33.833125px;}
.ws3c{word-spacing:-33.773350px;}
.ws76{word-spacing:-33.713574px;}
.wsf5{word-spacing:-33.534246px;}
.wsaa{word-spacing:-33.354934px;}
.wsbe{word-spacing:-33.295143px;}
.ws15{word-spacing:-33.175591px;}
.wsf3{word-spacing:-33.056040px;}
.wsee{word-spacing:-32.816936px;}
.wsed{word-spacing:-32.458281px;}
.wsf{word-spacing:-32.398505px;}
.ws8e{word-spacing:-32.219178px;}
.ws3b{word-spacing:-32.159402px;}
.wsdd{word-spacing:-31.860523px;}
.ws1f{word-spacing:-31.796694px;}
.ws8a{word-spacing:-31.792302px;}
.wsea{word-spacing:-31.681195px;}
.ws99{word-spacing:-31.651803px;}
.wsf6{word-spacing:-31.561644px;}
.ws8f{word-spacing:-31.442092px;}
.wsd4{word-spacing:-31.322540px;}
.ws42{word-spacing:-31.262764px;}
.wsc0{word-spacing:-30.904109px;}
.wseb{word-spacing:-30.723938px;}
.wsec{word-spacing:-30.605230px;}
.ws4e{word-spacing:-30.545454px;}
.wse2{word-spacing:-30.366127px;}
.wsc4{word-spacing:-30.127023px;}
.ws9f{word-spacing:-29.589054px;}
.ws1b{word-spacing:-29.212466px;}
.wsd5{word-spacing:-29.170610px;}
.ws88{word-spacing:-28.835878px;}
.ws82{word-spacing:-28.351694px;}
.ws21{word-spacing:-27.490921px;}
.ws5b{word-spacing:-25.568107px;}
.wsa4{word-spacing:-25.392788px;}
.wsa9{word-spacing:-22.864269px;}
.ws91{word-spacing:-22.250880px;}
.ws72{word-spacing:-22.247759px;}
.ws6e{word-spacing:-20.909575px;}
.ws94{word-spacing:-18.948548px;}
.ws81{word-spacing:-15.628132px;}
.ws9c{word-spacing:-15.386308px;}
.wsab{word-spacing:-15.030369px;}
.wsa2{word-spacing:-11.405235px;}
.wsac{word-spacing:-6.091059px;}
.wsdf{word-spacing:-4.722291px;}
.ws4{word-spacing:-3.365424px;}
.wse0{word-spacing:-3.048568px;}
.ws57{word-spacing:-0.059776px;}
.ws79{word-spacing:-0.053798px;}
.wsa8{word-spacing:-0.035865px;}
.wsa5{word-spacing:-0.024369px;}
.ws22{word-spacing:0.000000px;}
.ws9a{word-spacing:7.585557px;}
.wsb3{word-spacing:7.650916px;}
.ws9b{word-spacing:7.656916px;}
.wsb4{word-spacing:12.230330px;}
.ws87{word-spacing:15.278712px;}
.wsa1{word-spacing:16.376330px;}
.wsa3{word-spacing:16.462274px;}
.ws58{word-spacing:16.498132px;}
.ws80{word-spacing:17.161651px;}
.wsae{word-spacing:17.753432px;}
.ws90{word-spacing:17.813200px;}
.wsbd{word-spacing:18.393393px;}
.wsb1{word-spacing:18.398330px;}
.wsa7{word-spacing:19.226330px;}
.ws92{word-spacing:19.844384px;}
.ws74{word-spacing:19.848464px;}
.ws73{word-spacing:19.850384px;}
.wsad{word-spacing:20.804555px;}
.ws75{word-spacing:23.970112px;}
.ws8c{word-spacing:25.105853px;}
.wsa0{word-spacing:25.661780px;}
.wsb6{word-spacing:27.018680px;}
.wsa6{word-spacing:32.763153px;}
.ws6f{word-spacing:35.829615px;}
.ws70{word-spacing:35.865480px;}
.ws6d{word-spacing:35.866936px;}
.ws5c{word-spacing:43.170854px;}
.ws71{word-spacing:63.912285px;}
.ws6c{word-spacing:94.075154px;}
.ws6a{word-spacing:180.762626px;}
.ws6b{word-spacing:188.848567px;}
._2b{margin-left:-15.375400px;}
._0{margin-left:-9.709508px;}
._9{margin-left:-6.819165px;}
._3{margin-left:-4.961395px;}
._2{margin-left:-3.202072px;}
._5{margin-left:-1.673724px;}
._4{width:1.673724px;}
._1{width:3.202072px;}
._29{width:13.933755px;}
._13{width:15.840598px;}
._19{width:17.394769px;}
._1a{width:19.950524px;}
._11{width:21.339975px;}
._c{width:22.864269px;}
._d{width:24.585814px;}
._6{width:26.485416px;}
._b{width:27.915317px;}
._10{width:29.708592px;}
._7{width:31.501868px;}
._16{width:32.577833px;}
._8{width:33.653798px;}
._12{width:35.447073px;}
._2a{width:36.463262px;}
._32{width:37.463419px;}
._2d{width:38.537473px;}
._f{width:39.894374px;}
._2c{width:41.424657px;}
._17{width:44.054794px;}
._2e{width:45.130759px;}
._28{width:46.157012px;}
._a{width:47.282689px;}
._e{width:48.902637px;}
._15{width:50.391033px;}
._30{width:51.466998px;}
._31{width:53.772432px;}
._14{width:59.775840px;}
._2f{width:63.601494px;}
._18{width:71.731020px;}
._21{width:81.665698px;}
._1e{width:84.732801px;}
._1d{width:88.487120px;}
._26{width:118.786470px;}
._34{width:122.552482px;}
._27{width:123.700041px;}
._20{width:140.700278px;}
._22{width:145.613849px;}
._1f{width:159.314462px;}
._33{width:168.550011px;}
._23{width:170.109972px;}
._25{width:178.181013px;}
._1b{width:206.979685px;}
._1c{width:213.919035px;}
._24{width:356.674557px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887920px;}
.fs4{font-size:35.865480px;}
.fs2{font-size:41.843100px;}
.fs5{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y67{bottom:63.168000px;}
.y30{bottom:78.339000px;}
.y2f{bottom:93.283500px;}
.y66{bottom:108.000000px;}
.y2e{bottom:108.226500px;}
.yc0{bottom:113.713500px;}
.y1c2{bottom:118.266000px;}
.y102{bottom:122.944500px;}
.y11d{bottom:124.159500px;}
.y65{bottom:124.363500px;}
.y13a{bottom:129.873000px;}
.y1c1{bottom:134.629500px;}
.ye3{bottom:136.224000px;}
.y101{bottom:137.887500px;}
.y11c{bottom:139.104000px;}
.y64{bottom:140.727000px;}
.ybf{bottom:142.468500px;}
.y100{bottom:143.601000px;}
.y11b{bottom:144.817500px;}
.y1c0{bottom:150.993000px;}
.ye2{bottom:152.587500px;}
.y169{bottom:153.814500px;}
.yff{bottom:154.047000px;}
.y11a{bottom:155.262000px;}
.y63{bottom:157.090500px;}
.ybe{bottom:158.832000px;}
.y94{bottom:165.310500px;}
.y2d{bottom:165.430500px;}
.ye1{bottom:168.951000px;}
.yfe{bottom:168.991500px;}
.y168{bottom:170.178000px;}
.y119{bottom:170.206500px;}
.y139{bottom:173.308500px;}
.y62{bottom:173.454000px;}
.yfd{bottom:174.705000px;}
.ybd{bottom:175.195500px;}
.y2c{bottom:175.966500px;}
.y93{bottom:181.674000px;}
.yfc{bottom:185.151000px;}
.y196{bottom:186.079500px;}
.y167{bottom:186.541500px;}
.y1bf{bottom:186.763500px;}
.y137{bottom:189.672000px;}
.y61{bottom:189.817500px;}
.y2b{bottom:190.909500px;}
.ybc{bottom:191.559000px;}
.y138{bottom:195.096000px;}
.y2a{bottom:196.623000px;}
.y92{bottom:198.037500px;}
.yfb{bottom:200.094000px;}
.y195{bottom:202.443000px;}
.y166{bottom:202.905000px;}
.y1be{bottom:203.127000px;}
.y118{bottom:205.807500px;}
.y136{bottom:206.035500px;}
.y60{bottom:206.182500px;}
.y29{bottom:212.782500px;}
.yfa{bottom:215.038500px;}
.y117{bottom:216.343500px;}
.ye0{bottom:218.148000px;}
.y194{bottom:218.806500px;}
.y165{bottom:219.268500px;}
.y1bd{bottom:219.490500px;}
.ybb{bottom:222.502500px;}
.y5f{bottom:222.546000px;}
.y91{bottom:222.619500px;}
.y28{bottom:229.206000px;}
.yf9{bottom:229.983000px;}
.y135{bottom:230.619000px;}
.y116{bottom:231.288000px;}
.ydf{bottom:234.513000px;}
.y193{bottom:235.170000px;}
.y5e{bottom:238.909500px;}
.y90{bottom:238.984500px;}
.yf8{bottom:244.926000px;}
.y115{bottom:246.231000px;}
.y134{bottom:246.982500px;}
.y164{bottom:248.380500px;}
.yde{bottom:250.876500px;}
.y192{bottom:251.533500px;}
.y114{bottom:251.944500px;}
.y1bc{bottom:255.261000px;}
.y5d{bottom:255.273000px;}
.y8f{bottom:255.348000px;}
.yf7{bottom:259.870500px;}
.yba{bottom:261.699000px;}
.y113{bottom:262.390500px;}
.y133{bottom:263.346000px;}
.y163{bottom:264.744000px;}
.ydd{bottom:267.240000px;}
.y1bb{bottom:271.624500px;}
.yf6{bottom:274.815000px;}
.y27{bottom:276.166500px;}
.y112{bottom:277.335000px;}
.yb9{bottom:278.062500px;}
.y5c{bottom:279.855000px;}
.y8e{bottom:279.930000px;}
.y191{bottom:280.522500px;}
.yf5{bottom:280.528500px;}
.y162{bottom:281.107500px;}
.y111{bottom:283.048500px;}
.ydc{bottom:283.603500px;}
.y132{bottom:287.929500px;}
.y1ba{bottom:287.988000px;}
.y26{bottom:292.530000px;}
.y110{bottom:293.494500px;}
.yb8{bottom:294.426000px;}
.y5b{bottom:296.218500px;}
.y8d{bottom:296.293500px;}
.yf4{bottom:296.688000px;}
.y190{bottom:296.886000px;}
.ydb{bottom:299.967000px;}
.y131{bottom:304.293000px;}
.y1b9{bottom:304.351500px;}
.y10f{bottom:308.439000px;}
.y25{bottom:308.895000px;}
.y161{bottom:310.218000px;}
.yb7{bottom:310.789500px;}
.y5a{bottom:312.583500px;}
.y8c{bottom:312.657000px;}
.y18f{bottom:313.249500px;}
.yda{bottom:316.330500px;}
.y130{bottom:320.656500px;}
.y1b8{bottom:320.715000px;}
.y10e{bottom:323.382000px;}
.y24{bottom:325.258500px;}
.y160{bottom:326.581500px;}
.y59{bottom:328.947000px;}
.y8b{bottom:329.020500px;}
.y18e{bottom:329.613000px;}
.yd9{bottom:332.694000px;}
.y12f{bottom:337.020000px;}
.y1b7{bottom:337.078500px;}
.y10d{bottom:338.326500px;}
.y22{bottom:341.622000px;}
.yb6{bottom:341.734500px;}
.y15f{bottom:342.946500px;}
.y10c{bottom:344.040000px;}
.y58{bottom:345.310500px;}
.y18d{bottom:345.976500px;}
.y23{bottom:347.044500px;}
.yd8{bottom:349.057500px;}
.y12e{bottom:353.383500px;}
.y21{bottom:357.985500px;}
.y15e{bottom:359.310000px;}
.y57{bottom:361.674000px;}
.y8a{bottom:362.047500px;}
.y18c{bottom:362.341500px;}
.yd7{bottom:365.421000px;}
.y12d{bottom:369.747000px;}
.y1b6{bottom:372.849000px;}
.y20{bottom:374.349000px;}
.y15d{bottom:375.673500px;}
.y56{bottom:378.037500px;}
.yb5{bottom:380.931000px;}
.y12c{bottom:386.110500px;}
.y10b{bottom:386.709000px;}
.yd6{bottom:386.940000px;}
.y1b5{bottom:389.212500px;}
.y1f{bottom:390.712500px;}
.y18b{bottom:391.329000px;}
.y15c{bottom:392.037000px;}
.y55{bottom:394.401000px;}
.yb4{bottom:397.294500px;}
.y1b4{bottom:405.576000px;}
.y89{bottom:406.453500px;}
.y1e{bottom:407.076000px;}
.y18a{bottom:407.692500px;}
.y12b{bottom:410.694000px;}
.yf3{bottom:411.162000px;}
.y109{bottom:411.291000px;}
.yb3{bottom:413.658000px;}
.y10a{bottom:416.715000px;}
.y54{bottom:418.983000px;}
.y15b{bottom:421.147500px;}
.y1b3{bottom:421.939500px;}
.yd5{bottom:421.942500px;}
.y88{bottom:422.817000px;}
.y1d{bottom:423.439500px;}
.y12a{bottom:427.057500px;}
.yf1{bottom:427.525500px;}
.yb2{bottom:430.021500px;}
.yf2{bottom:432.948000px;}
.y53{bottom:435.348000px;}
.y108{bottom:435.874500px;}
.y189{bottom:436.681500px;}
.y15a{bottom:437.512500px;}
.y1b2{bottom:438.303000px;}
.yd3{bottom:438.306000px;}
.y87{bottom:439.180500px;}
.y1c{bottom:439.803000px;}
.y129{bottom:443.421000px;}
.yd4{bottom:443.728500px;}
.yb1{bottom:446.385000px;}
.y52{bottom:451.711500px;}
.y107{bottom:452.238000px;}
.y188{bottom:453.045000px;}
.y159{bottom:453.876000px;}
.y1a{bottom:456.166500px;}
.y128{bottom:459.784500px;}
.y1b{bottom:461.590500px;}
.y86{bottom:463.764000px;}
.y51{bottom:468.075000px;}
.y187{bottom:469.408500px;}
.y158{bottom:470.239500px;}
.y19{bottom:472.530000px;}
.y1b1{bottom:474.073500px;}
.y127{bottom:476.148000px;}
.yb0{bottom:477.328500px;}
.y85{bottom:480.127500px;}
.y50{bottom:484.438500px;}
.y186{bottom:485.772000px;}
.yd2{bottom:487.503000px;}
.y18{bottom:488.895000px;}
.y1b0{bottom:490.437000px;}
.y126{bottom:492.511500px;}
.y84{bottom:496.491000px;}
.y157{bottom:499.350000px;}
.y4f{bottom:500.802000px;}
.y185{bottom:502.135500px;}
.yd1{bottom:503.866500px;}
.y17{bottom:505.258500px;}
.y106{bottom:506.749500px;}
.y1af{bottom:506.800500px;}
.y125{bottom:508.875000px;}
.y83{bottom:512.854500px;}
.yaf{bottom:513.385500px;}
.y156{bottom:515.713500px;}
.y4e{bottom:517.165500px;}
.yf0{bottom:517.890000px;}
.yd0{bottom:520.230000px;}
.y16{bottom:521.622000px;}
.y1ae{bottom:523.164000px;}
.y124{bottom:525.238500px;}
.y184{bottom:531.124500px;}
.y155{bottom:532.078500px;}
.y4d{bottom:533.529000px;}
.ycf{bottom:536.593500px;}
.y82{bottom:537.436500px;}
.y15{bottom:537.985500px;}
.y1ad{bottom:539.527500px;}
.y1dd{bottom:543.889500px;}
.y183{bottom:547.488000px;}
.y154{bottom:548.442000px;}
.y4c{bottom:549.892500px;}
.yce{bottom:552.957000px;}
.y81{bottom:553.801500px;}
.y14{bottom:554.349000px;}
.y1ac{bottom:555.891000px;}
.yae{bottom:558.427500px;}
.y1dc{bottom:560.253000px;}
.y182{bottom:563.851500px;}
.y123{bottom:566.008500px;}
.y4b{bottom:566.256000px;}
.ycd{bottom:569.322000px;}
.y80{bottom:570.165000px;}
.y13{bottom:570.712500px;}
.yac{bottom:574.791000px;}
.y1db{bottom:576.616500px;}
.y153{bottom:577.552500px;}
.yad{bottom:580.215000px;}
.y4a{bottom:582.619500px;}
.y12{bottom:587.076000px;}
.ycc{bottom:590.841000px;}
.yab{bottom:591.154500px;}
.y1ab{bottom:591.661500px;}
.y181{bottom:592.840500px;}
.y1da{bottom:592.980000px;}
.y152{bottom:593.916000px;}
.y7f{bottom:594.747000px;}
.y11{bottom:603.439500px;}
.y49{bottom:607.203000px;}
.yaa{bottom:607.518000px;}
.y1aa{bottom:608.025000px;}
.y180{bottom:609.204000px;}
.y1d9{bottom:609.343500px;}
.y151{bottom:610.279500px;}
.y7e{bottom:611.110500px;}
.y122{bottom:618.907500px;}
.y10{bottom:619.803000px;}
.y48{bottom:623.566500px;}
.ya9{bottom:623.883000px;}
.y1a9{bottom:624.388500px;}
.y150{bottom:626.644500px;}
.y7d{bottom:627.474000px;}
.ycb{bottom:628.755000px;}
.y1d8{bottom:633.927000px;}
.yf{bottom:636.166500px;}
.y17f{bottom:638.193000px;}
.y47{bottom:639.930000px;}
.ya8{bottom:640.246500px;}
.y1a8{bottom:640.752000px;}
.y121{bottom:643.491000px;}
.y7c{bottom:643.837500px;}
.yca{bottom:645.120000px;}
.y1d7{bottom:650.290500px;}
.ye{bottom:652.530000px;}
.y14f{bottom:652.924500px;}
.y17e{bottom:654.556500px;}
.y46{bottom:656.293500px;}
.ya7{bottom:656.610000px;}
.y11f{bottom:659.854500px;}
.yc9{bottom:661.483500px;}
.y120{bottom:665.277000px;}
.y1d6{bottom:666.654000px;}
.y7b{bottom:668.421000px;}
.y17d{bottom:670.920000px;}
.y45{bottom:672.657000px;}
.ya6{bottom:672.973500px;}
.y1a7{bottom:676.522500px;}
.y1d5{bottom:683.017500px;}
.y7a{bottom:684.784500px;}
.y105{bottom:685.294500px;}
.y17c{bottom:687.283500px;}
.y44{bottom:689.020500px;}
.ya5{bottom:689.337000px;}
.y1a6{bottom:692.886000px;}
.yd{bottom:693.756000px;}
.y14e{bottom:695.374500px;}
.yc8{bottom:696.544500px;}
.y1d4{bottom:699.381000px;}
.y79{bottom:701.148000px;}
.y104{bottom:701.658000px;}
.y17b{bottom:703.647000px;}
.y43{bottom:705.384000px;}
.ya4{bottom:705.700500px;}
.y1a5{bottom:709.249500px;}
.y14d{bottom:711.738000px;}
.y11e{bottom:714.700500px;}
.y1d3{bottom:715.744500px;}
.y78{bottom:717.511500px;}
.yc{bottom:718.218000px;}
.y17a{bottom:720.010500px;}
.y42{bottom:721.749000px;}
.ya3{bottom:722.064000px;}
.y1a4{bottom:725.613000px;}
.y1d2{bottom:732.108000px;}
.yef{bottom:732.288000px;}
.y14c{bottom:736.321500px;}
.y41{bottom:738.112500px;}
.y1a3{bottom:741.976500px;}
.y77{bottom:742.095000px;}
.yb{bottom:744.844500px;}
.ya2{bottom:746.647500px;}
.yee{bottom:748.651500px;}
.y179{bottom:748.999500px;}
.y14b{bottom:752.685000px;}
.yc7{bottom:753.972000px;}
.y103{bottom:756.169500px;}
.y1a2{bottom:758.340000px;}
.y76{bottom:758.458500px;}
.ya{bottom:761.209500px;}
.y40{bottom:762.694500px;}
.ya1{bottom:763.011000px;}
.y178{bottom:765.363000px;}
.y14a{bottom:769.048500px;}
.y1d1{bottom:772.192500px;}
.y1a1{bottom:774.703500px;}
.y75{bottom:774.822000px;}
.y9{bottom:777.573000px;}
.y3f{bottom:779.058000px;}
.ya0{bottom:779.374500px;}
.y177{bottom:781.726500px;}
.y149{bottom:785.412000px;}
.y1d0{bottom:787.135500px;}
.y74{bottom:791.185500px;}
.y8{bottom:793.936500px;}
.yc6{bottom:794.944500px;}
.y3e{bottom:795.421500px;}
.y9f{bottom:795.738000px;}
.y176{bottom:798.090000px;}
.y148{bottom:801.775500px;}
.y1cf{bottom:809.887500px;}
.y1a0{bottom:810.474000px;}
.yc5{bottom:811.308000px;}
.y3d{bottom:811.785000px;}
.y9e{bottom:812.101500px;}
.y175{bottom:814.453500px;}
.y147{bottom:818.139000px;}
.y146{bottom:823.561500px;}
.y73{bottom:824.212500px;}
.y19f{bottom:826.837500px;}
.yc4{bottom:827.671500px;}
.y3c{bottom:828.150000px;}
.y9d{bottom:828.465000px;}
.y174{bottom:830.817000px;}
.yed{bottom:832.555500px;}
.y1ce{bottom:841.606500px;}
.yec{bottom:841.971000px;}
.yc3{bottom:844.035000px;}
.y3b{bottom:844.513500px;}
.y9c{bottom:844.828500px;}
.yeb{bottom:846.085500px;}
.y173{bottom:847.180500px;}
.y145{bottom:852.639000px;}
.y7{bottom:855.828000px;}
.yea{bottom:860.065500px;}
.y3a{bottom:860.877000px;}
.y9b{bottom:861.192000px;}
.y19e{bottom:862.606500px;}
.ye9{bottom:864.180000px;}
.y72{bottom:868.617000px;}
.y6{bottom:872.191500px;}
.y144{bottom:873.561000px;}
.y1cd{bottom:875.320500px;}
.y172{bottom:876.169500px;}
.y39{bottom:877.240500px;}
.y9a{bottom:877.555500px;}
.y19d{bottom:878.971500px;}
.y71{bottom:884.982000px;}
.ye7{bottom:885.967500px;}
.ye8{bottom:885.985500px;}
.y5{bottom:888.555000px;}
.ye6{bottom:890.020500px;}
.y1cc{bottom:891.684000px;}
.y171{bottom:892.533000px;}
.y38{bottom:893.604000px;}
.y99{bottom:893.919000px;}
.y19c{bottom:895.335000px;}
.yc2{bottom:901.345500px;}
.y4{bottom:904.918500px;}
.y1cb{bottom:908.047500px;}
.y170{bottom:908.896500px;}
.y70{bottom:909.564000px;}
.y37{bottom:909.967500px;}
.y19b{bottom:911.698500px;}
.y143{bottom:916.011000px;}
.y3{bottom:921.283500px;}
.ye5{bottom:921.846000px;}
.y1ca{bottom:924.411000px;}
.y16f{bottom:925.260000px;}
.y6f{bottom:925.927500px;}
.y36{bottom:926.331000px;}
.y98{bottom:929.976000px;}
.y142{bottom:932.374500px;}
.y1c9{bottom:940.774500px;}
.y16e{bottom:941.625000px;}
.y6e{bottom:942.291000px;}
.y35{bottom:942.694500px;}
.y19a{bottom:947.467500px;}
.y141{bottom:948.738000px;}
.y1c8{bottom:957.138000px;}
.y16d{bottom:957.988500px;}
.yc1{bottom:958.654500px;}
.y34{bottom:959.058000px;}
.y199{bottom:963.831000px;}
.y140{bottom:965.101500px;}
.y6d{bottom:966.874500px;}
.y1c7{bottom:973.501500px;}
.y97{bottom:975.018000px;}
.y33{bottom:975.421500px;}
.y198{bottom:980.194500px;}
.y13f{bottom:981.465000px;}
.y6c{bottom:983.238000px;}
.y16c{bottom:986.976000px;}
.y96{bottom:991.383000px;}
.y32{bottom:991.785000px;}
.y197{bottom:996.559500px;}
.y2{bottom:996.646500px;}
.y13d{bottom:997.828500px;}
.y1c6{bottom:998.085000px;}
.y6b{bottom:999.601500px;}
.ye4{bottom:1001.323500px;}
.y13e{bottom:1003.251000px;}
.y16b{bottom:1003.339500px;}
.y95{bottom:1007.746500px;}
.y13c{bottom:1014.192000px;}
.y1c5{bottom:1014.448500px;}
.y6a{bottom:1015.965000px;}
.y16a{bottom:1019.704500px;}
.y1{bottom:1026.534000px;}
.y13b{bottom:1030.555500px;}
.y1c4{bottom:1030.812000px;}
.y69{bottom:1032.328500px;}
.y1c3{bottom:1036.234500px;}
.y68{bottom:1048.692000px;}
.y31{bottom:1065.055500px;}
.h7{height:25.249298px;}
.h13{height:26.845342px;}
.h8{height:26.899110px;}
.ha{height:29.349937px;}
.h6{height:29.834130px;}
.h15{height:37.336006px;}
.h16{height:37.981586px;}
.h9{height:40.348710px;}
.h4{height:41.484433px;}
.he{height:43.039110px;}
.h10{height:43.357110px;}
.h3{height:44.831880px;}
.h11{height:46.447110px;}
.hc{height:46.549110px;}
.hf{height:46.807110px;}
.h14{height:47.063199px;}
.h17{height:48.103298px;}
.h18{height:48.139163px;}
.h5{height:50.211714px;}
.h2{height:51.147542px;}
.hb{height:51.524130px;}
.h12{height:51.530130px;}
.hd{height:62.833110px;}
.h1{height:72.304848px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:159.877500px;}
.xd{left:161.461500px;}
.x22{left:166.237500px;}
.xa6{left:169.471500px;}
.x61{left:170.967000px;}
.x74{left:172.596000px;}
.x36{left:173.659500px;}
.x5a{left:176.944500px;}
.xc{left:180.607500px;}
.x1{left:183.945000px;}
.x2{left:185.881500px;}
.x5b{left:191.887500px;}
.x5e{left:196.510500px;}
.x49{left:198.096000px;}
.x5f{left:203.209500px;}
.x60{left:206.832000px;}
.xa5{left:208.383000px;}
.xf{left:215.799000px;}
.x5{left:221.554500px;}
.x4d{left:227.700000px;}
.x6{left:235.362000px;}
.x90{left:237.114000px;}
.x4e{left:242.643000px;}
.x91{left:244.026000px;}
.x88{left:250.219500px;}
.x3{left:254.797500px;}
.x12{left:259.765500px;}
.x13{left:266.464500px;}
.x62{left:271.287000px;}
.x40{left:276.709500px;}
.x20{left:282.112500px;}
.x41{left:284.181000px;}
.x66{left:287.383500px;}
.x4{left:289.803000px;}
.x42{left:293.799000px;}
.xab{left:295.375500px;}
.x21{left:297.055500px;}
.x78{left:298.737000px;}
.x43{left:308.743500px;}
.x25{left:319.503000px;}
.xa9{left:320.947500px;}
.x4f{left:325.303500px;}
.x26{left:326.974500px;}
.x55{left:332.251500px;}
.x23{left:337.128000px;}
.x50{left:340.248000px;}
.xa2{left:344.811000px;}
.x51{left:348.819000px;}
.x24{left:352.072500px;}
.x9d{left:353.293500px;}
.x64{left:355.248000px;}
.xa3{left:361.360500px;}
.x52{left:363.762000px;}
.x79{left:366.379500px;}
.x8b{left:367.546500px;}
.xa4{left:368.832000px;}
.x7a{left:375.271500px;}
.x29{left:376.521000px;}
.x2a{left:383.992500px;}
.x14{left:387.826500px;}
.x75{left:391.497000px;}
.x2b{left:393.427500px;}
.x9b{left:395.050500px;}
.xa8{left:396.672000px;}
.x15{left:401.649000px;}
.x67{left:404.053500px;}
.x16{left:408.424500px;}
.x8c{left:410.487000px;}
.x68{left:416.751000px;}
.xe{left:420.426000px;}
.x17{left:422.247000px;}
.x9c{left:427.461000px;}
.x69{left:429.547500px;}
.x1f{left:435.994500px;}
.xaa{left:442.969500px;}
.x93{left:445.267500px;}
.x89{left:447.862500px;}
.x9{left:451.066500px;}
.x8a{left:453.792000px;}
.x3d{left:455.263500px;}
.x5c{left:459.511500px;}
.xa{left:461.245500px;}
.x2e{left:471.619500px;}
.x94{left:473.415000px;}
.x76{left:474.418500px;}
.x5d{left:476.106000px;}
.x2f{left:479.092500px;}
.x98{left:480.207000px;}
.x77{left:481.330500px;}
.x7b{left:482.826000px;}
.x44{left:485.929500px;}
.x30{left:487.635000px;}
.x9f{left:491.058000px;}
.x2c{left:493.926000px;}
.x45{left:495.222000px;}
.x3e{left:497.559000px;}
.x95{left:498.814500px;}
.x31{left:502.579500px;}
.x6f{left:506.037000px;}
.x2d{left:508.869000px;}
.x32{left:511.123500px;}
.x3f{left:512.503500px;}
.xb{left:514.914000px;}
.xa0{left:516.120000px;}
.x10{left:517.140000px;}
.x70{left:521.047500px;}
.x8{left:524.523000px;}
.x33{left:526.066500px;}
.x11{left:528.802500px;}
.xa1{left:531.063000px;}
.x82{left:532.215000px;}
.x6a{left:533.821500px;}
.x7{left:536.350500px;}
.x7c{left:540.627000px;}
.x46{left:549.093000px;}
.x96{left:550.570500px;}
.x18{left:553.683000px;}
.x58{left:555.121500px;}
.x65{left:557.031000px;}
.x34{left:558.322500px;}
.x47{left:564.036000px;}
.x4a{left:565.971000px;}
.x83{left:567.442500px;}
.x19{left:568.626000px;}
.x59{left:571.317000px;}
.x35{left:573.267000px;}
.x63{left:574.947000px;}
.x1a{left:577.810500px;}
.x71{left:580.140000px;}
.x48{left:581.454000px;}
.x4b{left:583.377000px;}
.x1b{left:585.283500px;}
.x56{left:589.714500px;}
.x4c{left:590.848500px;}
.x6b{left:592.587000px;}
.x1c{left:594.468000px;}
.x57{left:597.186000px;}
.x27{left:607.536000px;}
.x1d{left:609.411000px;}
.xa7{left:616.348500px;}
.x99{left:618.328500px;}
.x28{left:622.480500px;}
.x53{left:630.687000px;}
.x9e{left:632.410500px;}
.x80{left:636.453000px;}
.x7d{left:640.503000px;}
.x54{left:642.372000px;}
.x81{left:648.223500px;}
.x84{left:650.887500px;}
.x6c{left:657.807000px;}
.x6d{left:668.419500px;}
.x92{left:675.514500px;}
.x72{left:680.893500px;}
.x85{left:683.757000px;}
.x97{left:687.712500px;}
.x7e{left:689.652000px;}
.x8f{left:692.823000px;}
.x7f{left:698.544000px;}
.x73{left:702.816000px;}
.x39{left:710.172000px;}
.x86{left:712.662000px;}
.x3a{left:725.116500px;}
.x6e{left:726.426000px;}
.x9a{left:731.572500px;}
.x37{left:733.921500px;}
.x3b{left:735.495000px;}
.x8d{left:742.060500px;}
.x38{left:748.864500px;}
.x3c{left:750.439500px;}
.x87{left:753.003000px;}
.x8e{left:754.711500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-13.552000pt;}
.v4{vertical-align:-7.973333pt;}
.va{vertical-align:-5.653333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.968000pt;}
.v5{vertical-align:7.973333pt;}
.vc{vertical-align:12.565333pt;}
.v7{vertical-align:14.410667pt;}
.v6{vertical-align:17.466667pt;}
.v1{vertical-align:19.280000pt;}
.v9{vertical-align:20.314667pt;}
.v8{vertical-align:31.941333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000313pt;}
.ls1e{letter-spacing:0.000525pt;}
.ls3c{letter-spacing:0.000538pt;}
.ls2f{letter-spacing:0.000645pt;}
.ls9{letter-spacing:0.000698pt;}
.ls31{letter-spacing:0.000736pt;}
.ls1b{letter-spacing:0.000946pt;}
.ls38{letter-spacing:0.001058pt;}
.ls21{letter-spacing:0.001471pt;}
.ls2d{letter-spacing:0.001681pt;}
.lsf{letter-spacing:0.001820pt;}
.ls18{letter-spacing:0.002019pt;}
.ls6{letter-spacing:0.002823pt;}
.ls36{letter-spacing:0.003149pt;}
.ls1f{letter-spacing:0.003588pt;}
.ls29{letter-spacing:0.003627pt;}
.ls1c{letter-spacing:0.339962pt;}
.ls12{letter-spacing:0.407293pt;}
.ls11{letter-spacing:2.655357pt;}
.ls7{letter-spacing:2.656906pt;}
.ls1{letter-spacing:2.657447pt;}
.ls2{letter-spacing:2.659726pt;}
.ls0{letter-spacing:2.660929pt;}
.ls3f{letter-spacing:10.918804pt;}
.lsd{letter-spacing:11.802979pt;}
.lsc{letter-spacing:11.804686pt;}
.lsb{letter-spacing:11.808313pt;}
.ls32{letter-spacing:13.628898pt;}
.ls22{letter-spacing:13.651074pt;}
.ls24{letter-spacing:13.654638pt;}
.ls23{letter-spacing:13.654804pt;}
.ls26{letter-spacing:13.724138pt;}
.ls25{letter-spacing:13.724814pt;}
.lsa{letter-spacing:14.464479pt;}
.lse{letter-spacing:14.469812pt;}
.ls35{letter-spacing:14.604138pt;}
.ls37{letter-spacing:14.699971pt;}
.ls15{letter-spacing:14.756244pt;}
.ls2e{letter-spacing:14.757646pt;}
.ls17{letter-spacing:14.761578pt;}
.ls5{letter-spacing:14.762979pt;}
.ls20{letter-spacing:15.334638pt;}
.ls3d{letter-spacing:15.862638pt;}
.ls3b{letter-spacing:15.862804pt;}
.ls2c{letter-spacing:15.934911pt;}
.ls41{letter-spacing:16.309871pt;}
.ls3a{letter-spacing:17.142804pt;}
.ls4{letter-spacing:17.414239pt;}
.ls13{letter-spacing:17.419146pt;}
.ls10{letter-spacing:17.690979pt;}
.ls14{letter-spacing:17.692726pt;}
.ls28{letter-spacing:17.694293pt;}
.ls1d{letter-spacing:17.989871pt;}
.ls2b{letter-spacing:18.392960pt;}
.ls3e{letter-spacing:20.476061pt;}
.ls30{letter-spacing:20.486728pt;}
.ls19{letter-spacing:21.399950pt;}
.ls1a{letter-spacing:21.405045pt;}
.ls27{letter-spacing:22.138806pt;}
.ls34{letter-spacing:22.865304pt;}
.ls2a{letter-spacing:23.306806pt;}
.ls40{letter-spacing:26.757812pt;}
.ls39{letter-spacing:29.201304pt;}
.ls33{letter-spacing:29.692061pt;}
.ls8{letter-spacing:697.928156pt;}
.wsbf{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384800pt;}
.ws3{word-spacing:-53.134080pt;}
.ws20{word-spacing:-47.820693pt;}
.ws5a{word-spacing:-41.324689pt;}
.ws59{word-spacing:-41.324063pt;}
.ws104{word-spacing:-41.072644pt;}
.wsf9{word-spacing:-40.700705pt;}
.ws39{word-spacing:-40.169364pt;}
.ws5e{word-spacing:-40.009962pt;}
.ws46{word-spacing:-39.850567pt;}
.wsfb{word-spacing:-39.850560pt;}
.ws51{word-spacing:-39.797426pt;}
.wsf1{word-spacing:-39.531756pt;}
.ws49{word-spacing:-39.478621pt;}
.ws45{word-spacing:-39.425487pt;}
.wse4{word-spacing:-39.266085pt;}
.wse5{word-spacing:-39.212951pt;}
.ws48{word-spacing:-38.894147pt;}
.wsfa{word-spacing:-38.841012pt;}
.ws101{word-spacing:-38.681610pt;}
.wsc9{word-spacing:-38.628476pt;}
.ws52{word-spacing:-38.575342pt;}
.wscc{word-spacing:-38.469074pt;}
.ws62{word-spacing:-38.373325pt;}
.ws35{word-spacing:-38.362806pt;}
.wsf0{word-spacing:-38.150269pt;}
.wsef{word-spacing:-37.831465pt;}
.wsfd{word-spacing:-37.725197pt;}
.ws27{word-spacing:-37.618929pt;}
.wscb{word-spacing:-37.512660pt;}
.wscd{word-spacing:-37.406392pt;}
.wse3{word-spacing:-37.300124pt;}
.ws4d{word-spacing:-37.246990pt;}
.ws77{word-spacing:-37.193867pt;}
.ws2c{word-spacing:-37.193856pt;}
.ws2b{word-spacing:-36.981320pt;}
.ws31{word-spacing:-36.928186pt;}
.ws4f{word-spacing:-36.821917pt;}
.wsba{word-spacing:-36.768783pt;}
.ws55{word-spacing:-36.715649pt;}
.ws6{word-spacing:-36.609381pt;}
.ws5d{word-spacing:-36.556247pt;}
.ws7b{word-spacing:-36.535010pt;}
.ws4b{word-spacing:-36.503113pt;}
.ws2f{word-spacing:-36.449979pt;}
.ws18{word-spacing:-36.343711pt;}
.wse8{word-spacing:-36.131174pt;}
.wscf{word-spacing:-36.024906pt;}
.ws4a{word-spacing:-35.971772pt;}
.ws36{word-spacing:-35.918638pt;}
.ws25{word-spacing:-35.865504pt;}
.ws29{word-spacing:-35.812370pt;}
.ws13{word-spacing:-35.759236pt;}
.ws10{word-spacing:-35.706102pt;}
.ws12{word-spacing:-35.652968pt;}
.ws5{word-spacing:-35.599834pt;}
.ws11{word-spacing:-35.546700pt;}
.wsce{word-spacing:-35.517123pt;}
.ws8{word-spacing:-35.493565pt;}
.ws61{word-spacing:-35.443281pt;}
.ws5f{word-spacing:-35.442726pt;}
.ws67{word-spacing:-35.442453pt;}
.ws63{word-spacing:-35.442443pt;}
.ws60{word-spacing:-35.441792pt;}
.wse6{word-spacing:-35.440797pt;}
.wse9{word-spacing:-35.440621pt;}
.ws2{word-spacing:-35.440431pt;}
.wsd2{word-spacing:-35.440195pt;}
.wsd6{word-spacing:-35.438790pt;}
.ws68{word-spacing:-35.438782pt;}
.ws64{word-spacing:-35.438569pt;}
.ws8d{word-spacing:-35.438330pt;}
.ws66{word-spacing:-35.437914pt;}
.ws93{word-spacing:-35.437903pt;}
.wsda{word-spacing:-35.437556pt;}
.ws7c{word-spacing:-35.435134pt;}
.ws16{word-spacing:-35.387297pt;}
.ws23{word-spacing:-35.334163pt;}
.wsb{word-spacing:-35.281029pt;}
.ws19{word-spacing:-35.227895pt;}
.ws14{word-spacing:-35.174761pt;}
.ws40{word-spacing:-35.121627pt;}
.ws1d{word-spacing:-35.100389pt;}
.ws17{word-spacing:-35.068493pt;}
.ws2d{word-spacing:-35.015359pt;}
.ws2e{word-spacing:-34.962225pt;}
.wsd1{word-spacing:-34.909091pt;}
.ws9d{word-spacing:-34.861285pt;}
.wsf8{word-spacing:-34.855956pt;}
.ws53{word-spacing:-34.802822pt;}
.ws2a{word-spacing:-34.696554pt;}
.ws105{word-spacing:-34.590286pt;}
.ws3f{word-spacing:-34.537152pt;}
.wsd8{word-spacing:-34.484018pt;}
.wse1{word-spacing:-34.430884pt;}
.ws3a{word-spacing:-34.377750pt;}
.wsd7{word-spacing:-34.324616pt;}
.wse7{word-spacing:-34.271482pt;}
.wsc7{word-spacing:-34.244959pt;}
.wsbb{word-spacing:-34.218348pt;}
.wsa{word-spacing:-34.165213pt;}
.wsca{word-spacing:-34.112079pt;}
.wsf2{word-spacing:-34.058945pt;}
.ws9{word-spacing:-34.005811pt;}
.wsd{word-spacing:-33.952677pt;}
.wse{word-spacing:-33.899543pt;}
.wsc5{word-spacing:-33.846409pt;}
.ws54{word-spacing:-33.793275pt;}
.wsd0{word-spacing:-33.740141pt;}
.ws41{word-spacing:-33.633873pt;}
.ws50{word-spacing:-33.580739pt;}
.wsc{word-spacing:-33.527604pt;}
.wsbc{word-spacing:-33.421336pt;}
.ws28{word-spacing:-33.315068pt;}
.ws47{word-spacing:-33.261934pt;}
.wsf4{word-spacing:-33.208800pt;}
.ws7a{word-spacing:-33.187561pt;}
.ws33{word-spacing:-33.049398pt;}
.ws32{word-spacing:-32.996264pt;}
.ws44{word-spacing:-32.943130pt;}
.wsd9{word-spacing:-32.889996pt;}
.ws7{word-spacing:-32.836861pt;}
.ws1{word-spacing:-32.783727pt;}
.wsb8{word-spacing:-32.730593pt;}
.ws103{word-spacing:-32.677459pt;}
.wsb9{word-spacing:-32.624325pt;}
.wsfc{word-spacing:-32.518057pt;}
.wsc1{word-spacing:-32.411789pt;}
.ws78{word-spacing:-32.374609pt;}
.wsfe{word-spacing:-32.346920pt;}
.wsf7{word-spacing:-32.199252pt;}
.wsdb{word-spacing:-32.092984pt;}
.wsc2{word-spacing:-32.039850pt;}
.ws102{word-spacing:-32.013132pt;}
.ws43{word-spacing:-31.933582pt;}
.ws24{word-spacing:-31.880448pt;}
.wsb0{word-spacing:-31.880427pt;}
.ws69{word-spacing:-31.774180pt;}
.ws106{word-spacing:-31.771447pt;}
.ws34{word-spacing:-31.721046pt;}
.ws30{word-spacing:-31.667912pt;}
.ws95{word-spacing:-31.657299pt;}
.wsde{word-spacing:-31.614778pt;}
.ws96{word-spacing:-31.609478pt;}
.ws37{word-spacing:-31.561644pt;}
.ws100{word-spacing:-31.508509pt;}
.ws1c{word-spacing:-31.466016pt;}
.ws3d{word-spacing:-31.455375pt;}
.ws1e{word-spacing:-31.418196pt;}
.wsb2{word-spacing:-31.417095pt;}
.ws9e{word-spacing:-31.402426pt;}
.ws3e{word-spacing:-31.402241pt;}
.ws85{word-spacing:-31.400378pt;}
.ws98{word-spacing:-31.322554pt;}
.wsb7{word-spacing:-31.242839pt;}
.ws89{word-spacing:-31.226913pt;}
.ws8b{word-spacing:-31.189705pt;}
.ws86{word-spacing:-31.179092pt;}
.ws56{word-spacing:-31.136571pt;}
.ws7d{word-spacing:-31.131271pt;}
.ws26{word-spacing:-30.870900pt;}
.wsff{word-spacing:-30.817766pt;}
.ws97{word-spacing:-30.812550pt;}
.ws1a{word-spacing:-30.764632pt;}
.ws7f{word-spacing:-30.748706pt;}
.wsc6{word-spacing:-30.658364pt;}
.wsc3{word-spacing:-30.498962pt;}
.ws38{word-spacing:-30.445828pt;}
.wsaf{word-spacing:-30.413961pt;}
.ws4c{word-spacing:-30.392694pt;}
.ws84{word-spacing:-30.366140pt;}
.wsb5{word-spacing:-30.339560pt;}
.ws7e{word-spacing:-30.334777pt;}
.ws83{word-spacing:-30.318320pt;}
.ws65{word-spacing:-30.286426pt;}
.wsd3{word-spacing:-30.233292pt;}
.wsc8{word-spacing:-30.127023pt;}
.wsdc{word-spacing:-30.073889pt;}
.ws3c{word-spacing:-30.020755pt;}
.ws76{word-spacing:-29.967621pt;}
.wsf5{word-spacing:-29.808219pt;}
.wsaa{word-spacing:-29.648830pt;}
.wsbe{word-spacing:-29.595683pt;}
.ws15{word-spacing:-29.489414pt;}
.wsf3{word-spacing:-29.383146pt;}
.wsee{word-spacing:-29.170610pt;}
.wsed{word-spacing:-28.851805pt;}
.wsf{word-spacing:-28.798671pt;}
.ws8e{word-spacing:-28.639269pt;}
.ws3b{word-spacing:-28.586135pt;}
.wsdd{word-spacing:-28.320465pt;}
.ws1f{word-spacing:-28.263728pt;}
.ws8a{word-spacing:-28.259824pt;}
.wsea{word-spacing:-28.161062pt;}
.ws99{word-spacing:-28.134936pt;}
.wsf6{word-spacing:-28.054794pt;}
.ws8f{word-spacing:-27.948526pt;}
.wsd4{word-spacing:-27.842258pt;}
.ws42{word-spacing:-27.789124pt;}
.wsc0{word-spacing:-27.470319pt;}
.wseb{word-spacing:-27.310167pt;}
.wsec{word-spacing:-27.204649pt;}
.ws4e{word-spacing:-27.151515pt;}
.wse2{word-spacing:-26.992113pt;}
.wsc4{word-spacing:-26.779576pt;}
.ws9f{word-spacing:-26.301381pt;}
.ws1b{word-spacing:-25.966636pt;}
.wsd5{word-spacing:-25.929431pt;}
.ws88{word-spacing:-25.631892pt;}
.ws82{word-spacing:-25.201505pt;}
.ws21{word-spacing:-24.436374pt;}
.ws5b{word-spacing:-22.727206pt;}
.wsa4{word-spacing:-22.571367pt;}
.wsa9{word-spacing:-20.323795pt;}
.ws91{word-spacing:-19.778560pt;}
.ws72{word-spacing:-19.775786pt;}
.ws6e{word-spacing:-18.586289pt;}
.ws94{word-spacing:-16.843154pt;}
.ws81{word-spacing:-13.891673pt;}
.ws9c{word-spacing:-13.676718pt;}
.wsab{word-spacing:-13.360328pt;}
.wsa2{word-spacing:-10.137987pt;}
.wsac{word-spacing:-5.414275pt;}
.wsdf{word-spacing:-4.197592pt;}
.ws4{word-spacing:-2.991488pt;}
.wse0{word-spacing:-2.709838pt;}
.ws57{word-spacing:-0.053134pt;}
.ws79{word-spacing:-0.047821pt;}
.wsa8{word-spacing:-0.031880pt;}
.wsa5{word-spacing:-0.021662pt;}
.ws22{word-spacing:0.000000pt;}
.ws9a{word-spacing:6.742718pt;}
.wsb3{word-spacing:6.800814pt;}
.ws9b{word-spacing:6.806147pt;}
.wsb4{word-spacing:10.871404pt;}
.ws87{word-spacing:13.581077pt;}
.wsa1{word-spacing:14.556737pt;}
.wsa3{word-spacing:14.633132pt;}
.ws58{word-spacing:14.665006pt;}
.ws80{word-spacing:15.254801pt;}
.wsae{word-spacing:15.780829pt;}
.ws90{word-spacing:15.833956pt;}
.wsbd{word-spacing:16.349683pt;}
.wsb1{word-spacing:16.354071pt;}
.wsa7{word-spacing:17.090071pt;}
.ws92{word-spacing:17.639453pt;}
.ws74{word-spacing:17.643079pt;}
.ws73{word-spacing:17.644786pt;}
.wsad{word-spacing:18.492938pt;}
.ws75{word-spacing:21.306766pt;}
.ws8c{word-spacing:22.316314pt;}
.wsa0{word-spacing:22.810471pt;}
.wsb6{word-spacing:24.016604pt;}
.wsa6{word-spacing:29.122802pt;}
.ws6f{word-spacing:31.848546pt;}
.ws70{word-spacing:31.880427pt;}
.ws6d{word-spacing:31.881721pt;}
.ws5c{word-spacing:38.374093pt;}
.ws71{word-spacing:56.810920pt;}
.ws6c{word-spacing:83.622359pt;}
.ws6a{word-spacing:160.677889pt;}
.ws6b{word-spacing:167.865393pt;}
._2b{margin-left:-13.667023pt;}
._0{margin-left:-8.630674pt;}
._9{margin-left:-6.061480pt;}
._3{margin-left:-4.410129pt;}
._2{margin-left:-2.846286pt;}
._5{margin-left:-1.487754pt;}
._4{width:1.487754pt;}
._1{width:2.846286pt;}
._29{width:12.385560pt;}
._13{width:14.080531pt;}
._19{width:15.462017pt;}
._1a{width:17.733799pt;}
._11{width:18.968867pt;}
._c{width:20.323795pt;}
._d{width:21.854057pt;}
._6{width:23.542592pt;}
._b{width:24.813615pt;}
._10{width:26.407638pt;}
._7{width:28.001660pt;}
._16{width:28.958074pt;}
._8{width:29.914487pt;}
._12{width:31.508509pt;}
._2a{width:32.411789pt;}
._32{width:33.300817pt;}
._2d{width:34.255532pt;}
._f{width:35.461665pt;}
._2c{width:36.821917pt;}
._17{width:39.159817pt;}
._2e{width:40.116230pt;}
._28{width:41.028455pt;}
._a{width:42.029057pt;}
._e{width:43.469010pt;}
._15{width:44.792029pt;}
._30{width:45.748443pt;}
._31{width:47.797718pt;}
._14{width:53.134080pt;}
._2f{width:56.534661pt;}
._18{width:63.760907pt;}
._21{width:72.591732pt;}
._1e{width:75.318046pt;}
._1d{width:78.655217pt;}
._26{width:105.587973pt;}
._34{width:108.935539pt;}
._27{width:109.955592pt;}
._20{width:125.066914pt;}
._22{width:129.434532pt;}
._1f{width:141.612855pt;}
._33{width:149.822232pt;}
._23{width:151.208864pt;}
._25{width:158.383123pt;}
._1b{width:183.981942pt;}
._1c{width:190.150254pt;}
._24{width:317.044051pt;}
.fs6{font-size:26.567040pt;}
.fs4{font-size:31.880427pt;}
.fs2{font-size:37.193867pt;}
.fs5{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:56.149333pt;}
.y30{bottom:69.634667pt;}
.y2f{bottom:82.918667pt;}
.y66{bottom:96.000000pt;}
.y2e{bottom:96.201333pt;}
.yc0{bottom:101.078667pt;}
.y1c2{bottom:105.125333pt;}
.y102{bottom:109.284000pt;}
.y11d{bottom:110.364000pt;}
.y65{bottom:110.545333pt;}
.y13a{bottom:115.442667pt;}
.y1c1{bottom:119.670667pt;}
.ye3{bottom:121.088000pt;}
.y101{bottom:122.566667pt;}
.y11c{bottom:123.648000pt;}
.y64{bottom:125.090667pt;}
.ybf{bottom:126.638667pt;}
.y100{bottom:127.645333pt;}
.y11b{bottom:128.726667pt;}
.y1c0{bottom:134.216000pt;}
.ye2{bottom:135.633333pt;}
.y169{bottom:136.724000pt;}
.yff{bottom:136.930667pt;}
.y11a{bottom:138.010667pt;}
.y63{bottom:139.636000pt;}
.ybe{bottom:141.184000pt;}
.y94{bottom:146.942667pt;}
.y2d{bottom:147.049333pt;}
.ye1{bottom:150.178667pt;}
.yfe{bottom:150.214667pt;}
.y168{bottom:151.269333pt;}
.y119{bottom:151.294667pt;}
.y139{bottom:154.052000pt;}
.y62{bottom:154.181333pt;}
.yfd{bottom:155.293333pt;}
.ybd{bottom:155.729333pt;}
.y2c{bottom:156.414667pt;}
.y93{bottom:161.488000pt;}
.yfc{bottom:164.578667pt;}
.y196{bottom:165.404000pt;}
.y167{bottom:165.814667pt;}
.y1bf{bottom:166.012000pt;}
.y137{bottom:168.597333pt;}
.y61{bottom:168.726667pt;}
.y2b{bottom:169.697333pt;}
.ybc{bottom:170.274667pt;}
.y138{bottom:173.418667pt;}
.y2a{bottom:174.776000pt;}
.y92{bottom:176.033333pt;}
.yfb{bottom:177.861333pt;}
.y195{bottom:179.949333pt;}
.y166{bottom:180.360000pt;}
.y1be{bottom:180.557333pt;}
.y118{bottom:182.940000pt;}
.y136{bottom:183.142667pt;}
.y60{bottom:183.273333pt;}
.y29{bottom:189.140000pt;}
.yfa{bottom:191.145333pt;}
.y117{bottom:192.305333pt;}
.ye0{bottom:193.909333pt;}
.y194{bottom:194.494667pt;}
.y165{bottom:194.905333pt;}
.y1bd{bottom:195.102667pt;}
.ybb{bottom:197.780000pt;}
.y5f{bottom:197.818667pt;}
.y91{bottom:197.884000pt;}
.y28{bottom:203.738667pt;}
.yf9{bottom:204.429333pt;}
.y135{bottom:204.994667pt;}
.y116{bottom:205.589333pt;}
.ydf{bottom:208.456000pt;}
.y193{bottom:209.040000pt;}
.y5e{bottom:212.364000pt;}
.y90{bottom:212.430667pt;}
.yf8{bottom:217.712000pt;}
.y115{bottom:218.872000pt;}
.y134{bottom:219.540000pt;}
.y164{bottom:220.782667pt;}
.yde{bottom:223.001333pt;}
.y192{bottom:223.585333pt;}
.y114{bottom:223.950667pt;}
.y1bc{bottom:226.898667pt;}
.y5d{bottom:226.909333pt;}
.y8f{bottom:226.976000pt;}
.yf7{bottom:230.996000pt;}
.yba{bottom:232.621333pt;}
.y113{bottom:233.236000pt;}
.y133{bottom:234.085333pt;}
.y163{bottom:235.328000pt;}
.ydd{bottom:237.546667pt;}
.y1bb{bottom:241.444000pt;}
.yf6{bottom:244.280000pt;}
.y27{bottom:245.481333pt;}
.y112{bottom:246.520000pt;}
.yb9{bottom:247.166667pt;}
.y5c{bottom:248.760000pt;}
.y8e{bottom:248.826667pt;}
.y191{bottom:249.353333pt;}
.yf5{bottom:249.358667pt;}
.y162{bottom:249.873333pt;}
.y111{bottom:251.598667pt;}
.ydc{bottom:252.092000pt;}
.y132{bottom:255.937333pt;}
.y1ba{bottom:255.989333pt;}
.y26{bottom:260.026667pt;}
.y110{bottom:260.884000pt;}
.yb8{bottom:261.712000pt;}
.y5b{bottom:263.305333pt;}
.y8d{bottom:263.372000pt;}
.yf4{bottom:263.722667pt;}
.y190{bottom:263.898667pt;}
.ydb{bottom:266.637333pt;}
.y131{bottom:270.482667pt;}
.y1b9{bottom:270.534667pt;}
.y10f{bottom:274.168000pt;}
.y25{bottom:274.573333pt;}
.y161{bottom:275.749333pt;}
.yb7{bottom:276.257333pt;}
.y5a{bottom:277.852000pt;}
.y8c{bottom:277.917333pt;}
.y18f{bottom:278.444000pt;}
.yda{bottom:281.182667pt;}
.y130{bottom:285.028000pt;}
.y1b8{bottom:285.080000pt;}
.y10e{bottom:287.450667pt;}
.y24{bottom:289.118667pt;}
.y160{bottom:290.294667pt;}
.y59{bottom:292.397333pt;}
.y8b{bottom:292.462667pt;}
.y18e{bottom:292.989333pt;}
.yd9{bottom:295.728000pt;}
.y12f{bottom:299.573333pt;}
.y1b7{bottom:299.625333pt;}
.y10d{bottom:300.734667pt;}
.y22{bottom:303.664000pt;}
.yb6{bottom:303.764000pt;}
.y15f{bottom:304.841333pt;}
.y10c{bottom:305.813333pt;}
.y58{bottom:306.942667pt;}
.y18d{bottom:307.534667pt;}
.y23{bottom:308.484000pt;}
.yd8{bottom:310.273333pt;}
.y12e{bottom:314.118667pt;}
.y21{bottom:318.209333pt;}
.y15e{bottom:319.386667pt;}
.y57{bottom:321.488000pt;}
.y8a{bottom:321.820000pt;}
.y18c{bottom:322.081333pt;}
.yd7{bottom:324.818667pt;}
.y12d{bottom:328.664000pt;}
.y1b6{bottom:331.421333pt;}
.y20{bottom:332.754667pt;}
.y15d{bottom:333.932000pt;}
.y56{bottom:336.033333pt;}
.yb5{bottom:338.605333pt;}
.y12c{bottom:343.209333pt;}
.y10b{bottom:343.741333pt;}
.yd6{bottom:343.946667pt;}
.y1b5{bottom:345.966667pt;}
.y1f{bottom:347.300000pt;}
.y18b{bottom:347.848000pt;}
.y15c{bottom:348.477333pt;}
.y55{bottom:350.578667pt;}
.yb4{bottom:353.150667pt;}
.y1b4{bottom:360.512000pt;}
.y89{bottom:361.292000pt;}
.y1e{bottom:361.845333pt;}
.y18a{bottom:362.393333pt;}
.y12b{bottom:365.061333pt;}
.yf3{bottom:365.477333pt;}
.y109{bottom:365.592000pt;}
.yb3{bottom:367.696000pt;}
.y10a{bottom:370.413333pt;}
.y54{bottom:372.429333pt;}
.y15b{bottom:374.353333pt;}
.y1b3{bottom:375.057333pt;}
.yd5{bottom:375.060000pt;}
.y88{bottom:375.837333pt;}
.y1d{bottom:376.390667pt;}
.y12a{bottom:379.606667pt;}
.yf1{bottom:380.022667pt;}
.yb2{bottom:382.241333pt;}
.yf2{bottom:384.842667pt;}
.y53{bottom:386.976000pt;}
.y108{bottom:387.444000pt;}
.y189{bottom:388.161333pt;}
.y15a{bottom:388.900000pt;}
.y1b2{bottom:389.602667pt;}
.yd3{bottom:389.605333pt;}
.y87{bottom:390.382667pt;}
.y1c{bottom:390.936000pt;}
.y129{bottom:394.152000pt;}
.yd4{bottom:394.425333pt;}
.yb1{bottom:396.786667pt;}
.y52{bottom:401.521333pt;}
.y107{bottom:401.989333pt;}
.y188{bottom:402.706667pt;}
.y159{bottom:403.445333pt;}
.y1a{bottom:405.481333pt;}
.y128{bottom:408.697333pt;}
.y1b{bottom:410.302667pt;}
.y86{bottom:412.234667pt;}
.y51{bottom:416.066667pt;}
.y187{bottom:417.252000pt;}
.y158{bottom:417.990667pt;}
.y19{bottom:420.026667pt;}
.y1b1{bottom:421.398667pt;}
.y127{bottom:423.242667pt;}
.yb0{bottom:424.292000pt;}
.y85{bottom:426.780000pt;}
.y50{bottom:430.612000pt;}
.y186{bottom:431.797333pt;}
.yd2{bottom:433.336000pt;}
.y18{bottom:434.573333pt;}
.y1b0{bottom:435.944000pt;}
.y126{bottom:437.788000pt;}
.y84{bottom:441.325333pt;}
.y157{bottom:443.866667pt;}
.y4f{bottom:445.157333pt;}
.y185{bottom:446.342667pt;}
.yd1{bottom:447.881333pt;}
.y17{bottom:449.118667pt;}
.y106{bottom:450.444000pt;}
.y1af{bottom:450.489333pt;}
.y125{bottom:452.333333pt;}
.y83{bottom:455.870667pt;}
.yaf{bottom:456.342667pt;}
.y156{bottom:458.412000pt;}
.y4e{bottom:459.702667pt;}
.yf0{bottom:460.346667pt;}
.yd0{bottom:462.426667pt;}
.y16{bottom:463.664000pt;}
.y1ae{bottom:465.034667pt;}
.y124{bottom:466.878667pt;}
.y184{bottom:472.110667pt;}
.y155{bottom:472.958667pt;}
.y4d{bottom:474.248000pt;}
.ycf{bottom:476.972000pt;}
.y82{bottom:477.721333pt;}
.y15{bottom:478.209333pt;}
.y1ad{bottom:479.580000pt;}
.y1dd{bottom:483.457333pt;}
.y183{bottom:486.656000pt;}
.y154{bottom:487.504000pt;}
.y4c{bottom:488.793333pt;}
.yce{bottom:491.517333pt;}
.y81{bottom:492.268000pt;}
.y14{bottom:492.754667pt;}
.y1ac{bottom:494.125333pt;}
.yae{bottom:496.380000pt;}
.y1dc{bottom:498.002667pt;}
.y182{bottom:501.201333pt;}
.y123{bottom:503.118667pt;}
.y4b{bottom:503.338667pt;}
.ycd{bottom:506.064000pt;}
.y80{bottom:506.813333pt;}
.y13{bottom:507.300000pt;}
.yac{bottom:510.925333pt;}
.y1db{bottom:512.548000pt;}
.y153{bottom:513.380000pt;}
.yad{bottom:515.746667pt;}
.y4a{bottom:517.884000pt;}
.y12{bottom:521.845333pt;}
.ycc{bottom:525.192000pt;}
.yab{bottom:525.470667pt;}
.y1ab{bottom:525.921333pt;}
.y181{bottom:526.969333pt;}
.y1da{bottom:527.093333pt;}
.y152{bottom:527.925333pt;}
.y7f{bottom:528.664000pt;}
.y11{bottom:536.390667pt;}
.y49{bottom:539.736000pt;}
.yaa{bottom:540.016000pt;}
.y1aa{bottom:540.466667pt;}
.y180{bottom:541.514667pt;}
.y1d9{bottom:541.638667pt;}
.y151{bottom:542.470667pt;}
.y7e{bottom:543.209333pt;}
.y122{bottom:550.140000pt;}
.y10{bottom:550.936000pt;}
.y48{bottom:554.281333pt;}
.ya9{bottom:554.562667pt;}
.y1a9{bottom:555.012000pt;}
.y150{bottom:557.017333pt;}
.y7d{bottom:557.754667pt;}
.ycb{bottom:558.893333pt;}
.y1d8{bottom:563.490667pt;}
.yf{bottom:565.481333pt;}
.y17f{bottom:567.282667pt;}
.y47{bottom:568.826667pt;}
.ya8{bottom:569.108000pt;}
.y1a8{bottom:569.557333pt;}
.y121{bottom:571.992000pt;}
.y7c{bottom:572.300000pt;}
.yca{bottom:573.440000pt;}
.y1d7{bottom:578.036000pt;}
.ye{bottom:580.026667pt;}
.y14f{bottom:580.377333pt;}
.y17e{bottom:581.828000pt;}
.y46{bottom:583.372000pt;}
.ya7{bottom:583.653333pt;}
.y11f{bottom:586.537333pt;}
.yc9{bottom:587.985333pt;}
.y120{bottom:591.357333pt;}
.y1d6{bottom:592.581333pt;}
.y7b{bottom:594.152000pt;}
.y17d{bottom:596.373333pt;}
.y45{bottom:597.917333pt;}
.ya6{bottom:598.198667pt;}
.y1a7{bottom:601.353333pt;}
.y1d5{bottom:607.126667pt;}
.y7a{bottom:608.697333pt;}
.y105{bottom:609.150667pt;}
.y17c{bottom:610.918667pt;}
.y44{bottom:612.462667pt;}
.ya5{bottom:612.744000pt;}
.y1a6{bottom:615.898667pt;}
.yd{bottom:616.672000pt;}
.y14e{bottom:618.110667pt;}
.yc8{bottom:619.150667pt;}
.y1d4{bottom:621.672000pt;}
.y79{bottom:623.242667pt;}
.y104{bottom:623.696000pt;}
.y17b{bottom:625.464000pt;}
.y43{bottom:627.008000pt;}
.ya4{bottom:627.289333pt;}
.y1a5{bottom:630.444000pt;}
.y14d{bottom:632.656000pt;}
.y11e{bottom:635.289333pt;}
.y1d3{bottom:636.217333pt;}
.y78{bottom:637.788000pt;}
.yc{bottom:638.416000pt;}
.y17a{bottom:640.009333pt;}
.y42{bottom:641.554667pt;}
.ya3{bottom:641.834667pt;}
.y1a4{bottom:644.989333pt;}
.y1d2{bottom:650.762667pt;}
.yef{bottom:650.922667pt;}
.y14c{bottom:654.508000pt;}
.y41{bottom:656.100000pt;}
.y1a3{bottom:659.534667pt;}
.y77{bottom:659.640000pt;}
.yb{bottom:662.084000pt;}
.ya2{bottom:663.686667pt;}
.yee{bottom:665.468000pt;}
.y179{bottom:665.777333pt;}
.y14b{bottom:669.053333pt;}
.yc7{bottom:670.197333pt;}
.y103{bottom:672.150667pt;}
.y1a2{bottom:674.080000pt;}
.y76{bottom:674.185333pt;}
.ya{bottom:676.630667pt;}
.y40{bottom:677.950667pt;}
.ya1{bottom:678.232000pt;}
.y178{bottom:680.322667pt;}
.y14a{bottom:683.598667pt;}
.y1d1{bottom:686.393333pt;}
.y1a1{bottom:688.625333pt;}
.y75{bottom:688.730667pt;}
.y9{bottom:691.176000pt;}
.y3f{bottom:692.496000pt;}
.ya0{bottom:692.777333pt;}
.y177{bottom:694.868000pt;}
.y149{bottom:698.144000pt;}
.y1d0{bottom:699.676000pt;}
.y74{bottom:703.276000pt;}
.y8{bottom:705.721333pt;}
.yc6{bottom:706.617333pt;}
.y3e{bottom:707.041333pt;}
.y9f{bottom:707.322667pt;}
.y176{bottom:709.413333pt;}
.y148{bottom:712.689333pt;}
.y1cf{bottom:719.900000pt;}
.y1a0{bottom:720.421333pt;}
.yc5{bottom:721.162667pt;}
.y3d{bottom:721.586667pt;}
.y9e{bottom:721.868000pt;}
.y175{bottom:723.958667pt;}
.y147{bottom:727.234667pt;}
.y146{bottom:732.054667pt;}
.y73{bottom:732.633333pt;}
.y19f{bottom:734.966667pt;}
.yc4{bottom:735.708000pt;}
.y3c{bottom:736.133333pt;}
.y9d{bottom:736.413333pt;}
.y174{bottom:738.504000pt;}
.yed{bottom:740.049333pt;}
.y1ce{bottom:748.094667pt;}
.yec{bottom:748.418667pt;}
.yc3{bottom:750.253333pt;}
.y3b{bottom:750.678667pt;}
.y9c{bottom:750.958667pt;}
.yeb{bottom:752.076000pt;}
.y173{bottom:753.049333pt;}
.y145{bottom:757.901333pt;}
.y7{bottom:760.736000pt;}
.yea{bottom:764.502667pt;}
.y3a{bottom:765.224000pt;}
.y9b{bottom:765.504000pt;}
.y19e{bottom:766.761333pt;}
.ye9{bottom:768.160000pt;}
.y72{bottom:772.104000pt;}
.y6{bottom:775.281333pt;}
.y144{bottom:776.498667pt;}
.y1cd{bottom:778.062667pt;}
.y172{bottom:778.817333pt;}
.y39{bottom:779.769333pt;}
.y9a{bottom:780.049333pt;}
.y19d{bottom:781.308000pt;}
.y71{bottom:786.650667pt;}
.ye7{bottom:787.526667pt;}
.ye8{bottom:787.542667pt;}
.y5{bottom:789.826667pt;}
.ye6{bottom:791.129333pt;}
.y1cc{bottom:792.608000pt;}
.y171{bottom:793.362667pt;}
.y38{bottom:794.314667pt;}
.y99{bottom:794.594667pt;}
.y19c{bottom:795.853333pt;}
.yc2{bottom:801.196000pt;}
.y4{bottom:804.372000pt;}
.y1cb{bottom:807.153333pt;}
.y170{bottom:807.908000pt;}
.y70{bottom:808.501333pt;}
.y37{bottom:808.860000pt;}
.y19b{bottom:810.398667pt;}
.y143{bottom:814.232000pt;}
.y3{bottom:818.918667pt;}
.ye5{bottom:819.418667pt;}
.y1ca{bottom:821.698667pt;}
.y16f{bottom:822.453333pt;}
.y6f{bottom:823.046667pt;}
.y36{bottom:823.405333pt;}
.y98{bottom:826.645333pt;}
.y142{bottom:828.777333pt;}
.y1c9{bottom:836.244000pt;}
.y16e{bottom:837.000000pt;}
.y6e{bottom:837.592000pt;}
.y35{bottom:837.950667pt;}
.y19a{bottom:842.193333pt;}
.y141{bottom:843.322667pt;}
.y1c8{bottom:850.789333pt;}
.y16d{bottom:851.545333pt;}
.yc1{bottom:852.137333pt;}
.y34{bottom:852.496000pt;}
.y199{bottom:856.738667pt;}
.y140{bottom:857.868000pt;}
.y6d{bottom:859.444000pt;}
.y1c7{bottom:865.334667pt;}
.y97{bottom:866.682667pt;}
.y33{bottom:867.041333pt;}
.y198{bottom:871.284000pt;}
.y13f{bottom:872.413333pt;}
.y6c{bottom:873.989333pt;}
.y16c{bottom:877.312000pt;}
.y96{bottom:881.229333pt;}
.y32{bottom:881.586667pt;}
.y197{bottom:885.830667pt;}
.y2{bottom:885.908000pt;}
.y13d{bottom:886.958667pt;}
.y1c6{bottom:887.186667pt;}
.y6b{bottom:888.534667pt;}
.ye4{bottom:890.065333pt;}
.y13e{bottom:891.778667pt;}
.y16b{bottom:891.857333pt;}
.y95{bottom:895.774667pt;}
.y13c{bottom:901.504000pt;}
.y1c5{bottom:901.732000pt;}
.y6a{bottom:903.080000pt;}
.y16a{bottom:906.404000pt;}
.y1{bottom:912.474667pt;}
.y13b{bottom:916.049333pt;}
.y1c4{bottom:916.277333pt;}
.y69{bottom:917.625333pt;}
.y1c3{bottom:921.097333pt;}
.y68{bottom:932.170667pt;}
.y31{bottom:946.716000pt;}
.h7{height:22.443820pt;}
.h13{height:23.862526pt;}
.h8{height:23.910320pt;}
.ha{height:26.088833pt;}
.h6{height:26.519227pt;}
.h15{height:33.187561pt;}
.h16{height:33.761409pt;}
.h9{height:35.865520pt;}
.h4{height:36.875052pt;}
.he{height:38.256987pt;}
.h10{height:38.539653pt;}
.h3{height:39.850560pt;}
.h11{height:41.286320pt;}
.hc{height:41.376987pt;}
.hf{height:41.606320pt;}
.h14{height:41.833955pt;}
.h17{height:42.758487pt;}
.h18{height:42.790367pt;}
.h5{height:44.632635pt;}
.h2{height:45.464482pt;}
.hb{height:45.799227pt;}
.h12{height:45.804560pt;}
.hd{height:55.851653pt;}
.h1{height:64.270976pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:142.113333pt;}
.xd{left:143.521333pt;}
.x22{left:147.766667pt;}
.xa6{left:150.641333pt;}
.x61{left:151.970667pt;}
.x74{left:153.418667pt;}
.x36{left:154.364000pt;}
.x5a{left:157.284000pt;}
.xc{left:160.540000pt;}
.x1{left:163.506667pt;}
.x2{left:165.228000pt;}
.x5b{left:170.566667pt;}
.x5e{left:174.676000pt;}
.x49{left:176.085333pt;}
.x5f{left:180.630667pt;}
.x60{left:183.850667pt;}
.xa5{left:185.229333pt;}
.xf{left:191.821333pt;}
.x5{left:196.937333pt;}
.x4d{left:202.400000pt;}
.x6{left:209.210667pt;}
.x90{left:210.768000pt;}
.x4e{left:215.682667pt;}
.x91{left:216.912000pt;}
.x88{left:222.417333pt;}
.x3{left:226.486667pt;}
.x12{left:230.902667pt;}
.x13{left:236.857333pt;}
.x62{left:241.144000pt;}
.x40{left:245.964000pt;}
.x20{left:250.766667pt;}
.x41{left:252.605333pt;}
.x66{left:255.452000pt;}
.x4{left:257.602667pt;}
.x42{left:261.154667pt;}
.xab{left:262.556000pt;}
.x21{left:264.049333pt;}
.x78{left:265.544000pt;}
.x43{left:274.438667pt;}
.x25{left:284.002667pt;}
.xa9{left:285.286667pt;}
.x4f{left:289.158667pt;}
.x26{left:290.644000pt;}
.x55{left:295.334667pt;}
.x23{left:299.669333pt;}
.x50{left:302.442667pt;}
.xa2{left:306.498667pt;}
.x51{left:310.061333pt;}
.x24{left:312.953333pt;}
.x9d{left:314.038667pt;}
.x64{left:315.776000pt;}
.xa3{left:321.209333pt;}
.x52{left:323.344000pt;}
.x79{left:325.670667pt;}
.x8b{left:326.708000pt;}
.xa4{left:327.850667pt;}
.x7a{left:333.574667pt;}
.x29{left:334.685333pt;}
.x2a{left:341.326667pt;}
.x14{left:344.734667pt;}
.x75{left:347.997333pt;}
.x2b{left:349.713333pt;}
.x9b{left:351.156000pt;}
.xa8{left:352.597333pt;}
.x15{left:357.021333pt;}
.x67{left:359.158667pt;}
.x16{left:363.044000pt;}
.x8c{left:364.877333pt;}
.x68{left:370.445333pt;}
.xe{left:373.712000pt;}
.x17{left:375.330667pt;}
.x9c{left:379.965333pt;}
.x69{left:381.820000pt;}
.x1f{left:387.550667pt;}
.xaa{left:393.750667pt;}
.x93{left:395.793333pt;}
.x89{left:398.100000pt;}
.x9{left:400.948000pt;}
.x8a{left:403.370667pt;}
.x3d{left:404.678667pt;}
.x5c{left:408.454667pt;}
.xa{left:409.996000pt;}
.x2e{left:419.217333pt;}
.x94{left:420.813333pt;}
.x76{left:421.705333pt;}
.x5d{left:423.205333pt;}
.x2f{left:425.860000pt;}
.x98{left:426.850667pt;}
.x77{left:427.849333pt;}
.x7b{left:429.178667pt;}
.x44{left:431.937333pt;}
.x30{left:433.453333pt;}
.x9f{left:436.496000pt;}
.x2c{left:439.045333pt;}
.x45{left:440.197333pt;}
.x3e{left:442.274667pt;}
.x95{left:443.390667pt;}
.x31{left:446.737333pt;}
.x6f{left:449.810667pt;}
.x2d{left:452.328000pt;}
.x32{left:454.332000pt;}
.x3f{left:455.558667pt;}
.xb{left:457.701333pt;}
.xa0{left:458.773333pt;}
.x10{left:459.680000pt;}
.x70{left:463.153333pt;}
.x8{left:466.242667pt;}
.x33{left:467.614667pt;}
.x11{left:470.046667pt;}
.xa1{left:472.056000pt;}
.x82{left:473.080000pt;}
.x6a{left:474.508000pt;}
.x7{left:476.756000pt;}
.x7c{left:480.557333pt;}
.x46{left:488.082667pt;}
.x96{left:489.396000pt;}
.x18{left:492.162667pt;}
.x58{left:493.441333pt;}
.x65{left:495.138667pt;}
.x34{left:496.286667pt;}
.x47{left:501.365333pt;}
.x4a{left:503.085333pt;}
.x83{left:504.393333pt;}
.x19{left:505.445333pt;}
.x59{left:507.837333pt;}
.x35{left:509.570667pt;}
.x63{left:511.064000pt;}
.x1a{left:513.609333pt;}
.x71{left:515.680000pt;}
.x48{left:516.848000pt;}
.x4b{left:518.557333pt;}
.x1b{left:520.252000pt;}
.x56{left:524.190667pt;}
.x4c{left:525.198667pt;}
.x6b{left:526.744000pt;}
.x1c{left:528.416000pt;}
.x57{left:530.832000pt;}
.x27{left:540.032000pt;}
.x1d{left:541.698667pt;}
.xa7{left:547.865333pt;}
.x99{left:549.625333pt;}
.x28{left:553.316000pt;}
.x53{left:560.610667pt;}
.x9e{left:562.142667pt;}
.x80{left:565.736000pt;}
.x7d{left:569.336000pt;}
.x54{left:570.997333pt;}
.x81{left:576.198667pt;}
.x84{left:578.566667pt;}
.x6c{left:584.717333pt;}
.x6d{left:594.150667pt;}
.x92{left:600.457333pt;}
.x72{left:605.238667pt;}
.x85{left:607.784000pt;}
.x97{left:611.300000pt;}
.x7e{left:613.024000pt;}
.x8f{left:615.842667pt;}
.x7f{left:620.928000pt;}
.x73{left:624.725333pt;}
.x39{left:631.264000pt;}
.x86{left:633.477333pt;}
.x3a{left:644.548000pt;}
.x6e{left:645.712000pt;}
.x9a{left:650.286667pt;}
.x37{left:652.374667pt;}
.x3b{left:653.773333pt;}
.x8d{left:659.609333pt;}
.x38{left:665.657333pt;}
.x3c{left:667.057333pt;}
.x87{left:669.336000pt;}
.x8e{left:670.854667pt;}
}




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