
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_64e05dbd663b9d1d0da38905.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab1ed47a835605bf20be4ef4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4f6c043e117ce4f5dccc0ec0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_4823cb1c9bacd37aa6cb718f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_53e7692ba174be75bd5ff514.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.552000;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_200d2af61d81147694d4b492.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_e5c059bc8accb1560f552863.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914000;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_517fd83861b9e5ebaedda91f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.234000;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_d9a5360a9a40385512716ecc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.531000;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_4f90c6f795a7994a0f7f4b9f.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;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_0f2f9355308ff590ead2dae2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.873000;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_da0908a6c3bc3e24695d46d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933000;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_30fc7d2d3da7dbdb422cfac1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m21{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m3{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);}
.m2{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);}
.m29{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);}
.m1d{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);}
.m28{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);}
.m1c{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);}
.m1b{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);}
.m24{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);}
.m12{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);}
.m11{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);}
.m19{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);}
.m7{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);}
.mb{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);}
.md{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);}
.m4{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);}
.m26{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);}
.m9{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);}
.m18{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);}
.m25{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);}
.m10{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);}
.m27{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);}
.m13{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);}
.m1e{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);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mf{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);}
.m1a{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);}
.m8{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);}
.mc{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);}
.m17{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);}
.m20{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);}
.m1f{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);}
.m1{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);}
.me{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);}
.vb{vertical-align:-16.124400px;}
.ve{vertical-align:-12.210000px;}
.vd{vertical-align:-11.004000px;}
.v4{vertical-align:-9.676800px;}
.v15{vertical-align:-7.716300px;}
.v2{vertical-align:-1.452600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.672800px;}
.v3{vertical-align:16.124400px;}
.va{vertical-align:17.577000px;}
.v12{vertical-align:19.530000px;}
.v10{vertical-align:21.696000px;}
.v6{vertical-align:28.134000px;}
.v5{vertical-align:29.586600px;}
.vc{vertical-align:31.044600px;}
.v11{vertical-align:32.880000px;}
.v13{vertical-align:35.214000px;}
.vf{vertical-align:41.010000px;}
.v7{vertical-align:45.711000px;}
.v14{vertical-align:54.744000px;}
.v9{vertical-align:57.726000px;}
.v8{vertical-align:75.303000px;}
.ls6{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000026px;}
.ls1a{letter-spacing:0.000150px;}
.ls33{letter-spacing:0.000220px;}
.ls21{letter-spacing:0.000368px;}
.ls60{letter-spacing:0.000447px;}
.ls27{letter-spacing:0.000583px;}
.ls5b{letter-spacing:0.000600px;}
.ls5e{letter-spacing:0.000676px;}
.ls58{letter-spacing:0.000800px;}
.ls37{letter-spacing:0.000846px;}
.ls8{letter-spacing:0.000897px;}
.ls1b{letter-spacing:0.001331px;}
.ls2{letter-spacing:0.001518px;}
.ls14{letter-spacing:0.001541px;}
.ls17{letter-spacing:0.001897px;}
.ls51{letter-spacing:0.002016px;}
.ls40{letter-spacing:0.002058px;}
.ls43{letter-spacing:0.002440px;}
.ls52{letter-spacing:0.002506px;}
.ls34{letter-spacing:0.002692px;}
.ls38{letter-spacing:0.002779px;}
.ls3a{letter-spacing:0.002782px;}
.ls9{letter-spacing:0.002850px;}
.ls2f{letter-spacing:0.003167px;}
.ls15{letter-spacing:0.003226px;}
.ls35{letter-spacing:0.003280px;}
.ls5{letter-spacing:0.003488px;}
.ls42{letter-spacing:0.003494px;}
.ls3{letter-spacing:0.003598px;}
.ls28{letter-spacing:0.003724px;}
.ls3f{letter-spacing:0.003741px;}
.ls2e{letter-spacing:0.003859px;}
.ls4f{letter-spacing:0.004200px;}
.ls41{letter-spacing:0.004295px;}
.ls31{letter-spacing:0.004350px;}
.ls50{letter-spacing:0.004403px;}
.ls5a{letter-spacing:0.004800px;}
.ls32{letter-spacing:0.005548px;}
.ls5d{letter-spacing:0.524565px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls23{letter-spacing:1.871429px;}
.ls19{letter-spacing:1.914017px;}
.lsa{letter-spacing:2.689740px;}
.ls2d{letter-spacing:2.986216px;}
.ls25{letter-spacing:2.989200px;}
.ls39{letter-spacing:2.991598px;}
.ls1e{letter-spacing:6.811331px;}
.ls1f{letter-spacing:9.126571px;}
.ls1d{letter-spacing:11.622124px;}
.ls2c{letter-spacing:11.628124px;}
.ls4{letter-spacing:11.954850px;}
.ls36{letter-spacing:11.958019px;}
.lse{letter-spacing:12.104640px;}
.ls54{letter-spacing:13.448400px;}
.ls5f{letter-spacing:13.449178px;}
.ls62{letter-spacing:13.449859px;}
.ls56{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.463313px;}
.ls55{letter-spacing:13.469481px;}
.ls5c{letter-spacing:13.611129px;}
.ls3b{letter-spacing:13.887675px;}
.ls1c{letter-spacing:14.610571px;}
.ls3e{letter-spacing:14.750940px;}
.ls46{letter-spacing:14.766664px;}
.ls2a{letter-spacing:14.939675px;}
.ls26{letter-spacing:14.942100px;}
.ls16{letter-spacing:14.947897px;}
.ls3d{letter-spacing:15.032573px;}
.ls3c{letter-spacing:15.038695px;}
.ls29{letter-spacing:15.091368px;}
.ls57{letter-spacing:16.179812px;}
.ls30{letter-spacing:16.434600px;}
.ls2b{letter-spacing:17.354496px;}
.ls59{letter-spacing:19.185694px;}
.ls24{letter-spacing:19.679629px;}
.ls18{letter-spacing:20.337886px;}
.ls22{letter-spacing:28.520806px;}
.ls0{letter-spacing:32.009510px;}
.ls44{letter-spacing:146.926410px;}
.ls45{letter-spacing:164.072610px;}
.lsf{letter-spacing:264.335940px;}
.lsd{letter-spacing:308.506320px;}
.ls13{letter-spacing:317.833740px;}
.ls12{letter-spacing:337.198140px;}
.ls10{letter-spacing:342.041940px;}
.ls11{letter-spacing:343.251540px;}
.ls49{letter-spacing:353.376600px;}
.ls4d{letter-spacing:354.060600px;}
.lsc{letter-spacing:360.196740px;}
.ls4c{letter-spacing:365.328600px;}
.ls47{letter-spacing:365.334600px;}
.ls4e{letter-spacing:372.054600px;}
.ls4b{letter-spacing:372.060600px;}
.lsb{letter-spacing:372.303540px;}
.ls48{letter-spacing:378.780600px;}
.ls4a{letter-spacing:493.968600px;}
.ls20{letter-spacing:1167.936583px;}
.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;}
}
.ws3f{word-spacing:-24.209280px;}
.ws27{word-spacing:-17.394700px;}
.ws32{word-spacing:-16.123380px;}
.ws3{word-spacing:-15.655334px;}
.ws7d{word-spacing:-15.227637px;}
.ws1f{word-spacing:-14.943900px;}
.wsab{word-spacing:-13.449600px;}
.ws31{word-spacing:-12.104640px;}
.ws1b{word-spacing:-11.955150px;}
.ws7c{word-spacing:-11.432160px;}
.ws74{word-spacing:-11.357400px;}
.wsa7{word-spacing:-8.966400px;}
.wsaa{word-spacing:-5.272243px;}
.ws77{word-spacing:-3.646312px;}
.ws63{word-spacing:-3.466985px;}
.ws106{word-spacing:-2.797517px;}
.wsc{word-spacing:-2.331248px;}
.ws97{word-spacing:-2.211697px;}
.wsba{word-spacing:-2.098138px;}
.ws76{word-spacing:-1.972595px;}
.wsc6{word-spacing:-1.936742px;}
.ws26{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.wsbb{word-spacing:-1.882944px;}
.ws101{word-spacing:-1.775347px;}
.ws95{word-spacing:-1.733492px;}
.wsc7{word-spacing:-1.721549px;}
.ws5f{word-spacing:-1.673717px;}
.wsce{word-spacing:-1.613941px;}
.ws16{word-spacing:-1.554166px;}
.ws14{word-spacing:-1.494390px;}
.wscf{word-spacing:-1.452557px;}
.ws72{word-spacing:-1.434614px;}
.ws10d{word-spacing:-1.398758px;}
.ws53{word-spacing:-1.374839px;}
.ws4{word-spacing:-1.322630px;}
.ws41{word-spacing:-1.307301px;}
.wscd{word-spacing:-1.255288px;}
.ws15{word-spacing:-1.195512px;}
.ws103{word-spacing:-1.129766px;}
.ws6d{word-spacing:-1.075968px;}
.ws90{word-spacing:-1.075961px;}
.ws78{word-spacing:-1.016185px;}
.wsdd{word-spacing:-0.968371px;}
.wsd0{word-spacing:-0.914573px;}
.ws29{word-spacing:-0.896634px;}
.ws6e{word-spacing:-0.860774px;}
.ws93{word-spacing:-0.836858px;}
.wse2{word-spacing:-0.806976px;}
.ws21{word-spacing:-0.717307px;}
.ws13{word-spacing:-0.657532px;}
.ws73{word-spacing:-0.597756px;}
.ws0{word-spacing:-0.537984px;}
.ws47{word-spacing:-0.537980px;}
.ws99{word-spacing:-0.478205px;}
.ws58{word-spacing:-0.418429px;}
.ws4d{word-spacing:-0.358654px;}
.ws4a{word-spacing:-0.298878px;}
.wsd6{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.239102px;}
.wsd1{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.wse0{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.wsf7{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.wsd5{word-spacing:-0.053798px;}
.ws38{word-spacing:-0.048419px;}
.ws1c{word-spacing:-0.047821px;}
.ws12{word-spacing:-0.045430px;}
.ws89{word-spacing:-0.041843px;}
.ws34{word-spacing:-0.037659px;}
.ws7f{word-spacing:-0.035566px;}
.ws2{word-spacing:-0.017174px;}
.ws71{word-spacing:-0.007968px;}
.ws37{word-spacing:-0.000251px;}
.ws1{word-spacing:0.000000px;}
.wsb3{word-spacing:0.002400px;}
.ws2e{word-spacing:0.053798px;}
.wsb{word-spacing:0.059776px;}
.wsdb{word-spacing:0.107597px;}
.ws9{word-spacing:0.119551px;}
.ws104{word-spacing:0.161395px;}
.ws23{word-spacing:0.179327px;}
.ws2f{word-spacing:0.215194px;}
.wsa{word-spacing:0.239102px;}
.wse5{word-spacing:0.268992px;}
.wsd{word-spacing:0.298878px;}
.wsf4{word-spacing:0.322790px;}
.ws8d{word-spacing:0.358654px;}
.ws67{word-spacing:0.418429px;}
.ws10c{word-spacing:0.430387px;}
.ws66{word-spacing:0.478205px;}
.ws68{word-spacing:0.537980px;}
.ws48{word-spacing:0.597756px;}
.ws69{word-spacing:0.657532px;}
.wsf9{word-spacing:0.753178px;}
.ws52{word-spacing:0.777083px;}
.ws6b{word-spacing:0.836858px;}
.ws45{word-spacing:0.896634px;}
.ws49{word-spacing:1.016185px;}
.wsff{word-spacing:1.022170px;}
.wsf{word-spacing:1.135736px;}
.ws50{word-spacing:1.255288px;}
.ws2b{word-spacing:1.374839px;}
.ws25{word-spacing:1.434614px;}
.wsea{word-spacing:1.506355px;}
.ws98{word-spacing:1.554166px;}
.ws61{word-spacing:1.613941px;}
.ws20{word-spacing:1.673717px;}
.ws28{word-spacing:1.733492px;}
.ws19{word-spacing:1.853044px;}
.ws96{word-spacing:1.972595px;}
.ws8e{word-spacing:2.032370px;}
.wsdc{word-spacing:2.044339px;}
.ws10{word-spacing:2.092146px;}
.wse6{word-spacing:2.098138px;}
.ws5e{word-spacing:2.211697px;}
.wsfa{word-spacing:2.313331px;}
.ws91{word-spacing:2.331248px;}
.ws7b{word-spacing:2.391024px;}
.ws4f{word-spacing:2.570351px;}
.wsee{word-spacing:2.582323px;}
.ws24{word-spacing:2.630126px;}
.ws4c{word-spacing:2.689902px;}
.wsd3{word-spacing:2.851315px;}
.ws8{word-spacing:2.929004px;}
.ws5c{word-spacing:3.048556px;}
.ws7{word-spacing:3.168107px;}
.wscc{word-spacing:3.227882px;}
.ws92{word-spacing:3.287658px;}
.ws6{word-spacing:3.347434px;}
.ws55{word-spacing:3.407209px;}
.ws2a{word-spacing:3.526760px;}
.wsa9{word-spacing:3.586536px;}
.ws65{word-spacing:3.646312px;}
.ws56{word-spacing:3.706087px;}
.ws6a{word-spacing:3.825638px;}
.ws4e{word-spacing:4.004965px;}
.ws51{word-spacing:4.124516px;}
.ws62{word-spacing:4.244068px;}
.ws4b{word-spacing:4.303843px;}
.wsef{word-spacing:4.519066px;}
.wsb9{word-spacing:4.662497px;}
.ws60{word-spacing:4.722272px;}
.wsfd{word-spacing:4.788058px;}
.wsfe{word-spacing:4.895654px;}
.ws22{word-spacing:4.961375px;}
.ws7a{word-spacing:5.320028px;}
.wsfb{word-spacing:5.377507px;}
.wsd2{word-spacing:5.378822px;}
.ws100{word-spacing:5.378986px;}
.wsda{word-spacing:5.379840px;}
.wsf5{word-spacing:5.380829px;}
.wse3{word-spacing:5.382278px;}
.wsf1{word-spacing:5.756429px;}
.ws87{word-spacing:5.976000px;}
.ws17{word-spacing:5.977560px;}
.ws54{word-spacing:6.216662px;}
.ws79{word-spacing:6.276438px;}
.ws64{word-spacing:6.336214px;}
.ws2d{word-spacing:6.515540px;}
.wse1{word-spacing:6.617203px;}
.ws2c{word-spacing:6.635092px;}
.ws88{word-spacing:6.694867px;}
.ws94{word-spacing:7.352399px;}
.ws8f{word-spacing:7.531726px;}
.ws6c{word-spacing:7.591501px;}
.ws8c{word-spacing:8.428360px;}
.ws109{word-spacing:8.553946px;}
.ws46{word-spacing:8.846789px;}
.ws5a{word-spacing:8.966340px;}
.ws75{word-spacing:9.145667px;}
.wscb{word-spacing:9.444545px;}
.wsd8{word-spacing:9.791309px;}
.ws42{word-spacing:10.748920px;}
.wsa8{word-spacing:11.775793px;}
.wse8{word-spacing:11.997043px;}
.ws3d{word-spacing:12.047547px;}
.ws3b{word-spacing:12.048195px;}
.ws40{word-spacing:12.056221px;}
.wsde{word-spacing:12.427430px;}
.ws10b{word-spacing:13.126810px;}
.wsec{word-spacing:13.180608px;}
.ws10f{word-spacing:13.234406px;}
.ws108{word-spacing:13.342003px;}
.wsfc{word-spacing:13.389869px;}
.wse9{word-spacing:13.389907px;}
.wsd9{word-spacing:13.390867px;}
.wsf6{word-spacing:13.391366px;}
.wsd7{word-spacing:13.395802px;}
.ws110{word-spacing:13.503398px;}
.wsf3{word-spacing:13.664794px;}
.ws44{word-spacing:14.884124px;}
.ws1a{word-spacing:16.689389px;}
.ws57{word-spacing:17.574026px;}
.wsf0{word-spacing:17.914867px;}
.ws102{word-spacing:18.506650px;}
.wse4{word-spacing:18.764755px;}
.wsdf{word-spacing:18.770669px;}
.wseb{word-spacing:18.772320px;}
.ws107{word-spacing:18.773213px;}
.wsd4{word-spacing:18.775642px;}
.wsf8{word-spacing:18.829440px;}
.ws105{word-spacing:18.990835px;}
.ws10e{word-spacing:19.152230px;}
.wsed{word-spacing:19.206029px;}
.wsf2{word-spacing:19.582618px;}
.ws10a{word-spacing:21.949747px;}
.ws5b{word-spacing:24.029791px;}
.ws59{word-spacing:24.075407px;}
.wse7{word-spacing:25.608038px;}
.ws9a{word-spacing:102.797983px;}
.ws7e{word-spacing:133.313584px;}
.wsa3{word-spacing:154.667382px;}
.ws9d{word-spacing:158.418085px;}
.ws82{word-spacing:161.864820px;}
.wsa5{word-spacing:165.828964px;}
.wsa6{word-spacing:167.266569px;}
.wsa1{word-spacing:170.172206px;}
.ws9f{word-spacing:176.115052px;}
.ws33{word-spacing:192.851124px;}
.ws83{word-spacing:207.608026px;}
.ws9b{word-spacing:215.174108px;}
.wsa0{word-spacing:234.084908px;}
.ws9c{word-spacing:244.328124px;}
.wsa2{word-spacing:245.517068px;}
.ws9e{word-spacing:252.467821px;}
.wsa4{word-spacing:256.949228px;}
.ws81{word-spacing:261.991847px;}
.ws3a{word-spacing:272.209144px;}
.ws35{word-spacing:296.418424px;}
.ws85{word-spacing:300.586264px;}
.ws84{word-spacing:302.028969px;}
.ws3e{word-spacing:303.689831px;}
.ws80{word-spacing:304.929506px;}
.ws86{word-spacing:306.918898px;}
.ws36{word-spacing:313.859336px;}
.wsbd{word-spacing:328.209830px;}
.wsc4{word-spacing:340.823626px;}
.wsbe{word-spacing:345.236218px;}
.wsc8{word-spacing:353.058710px;}
.wsc0{word-spacing:353.948899px;}
.ws3c{word-spacing:354.327022px;}
.wsc3{word-spacing:355.646198px;}
.wsc2{word-spacing:359.064595px;}
.ws43{word-spacing:365.912009px;}
.wsbf{word-spacing:366.056179px;}
.wsc9{word-spacing:382.883213px;}
.ws39{word-spacing:388.665536px;}
.ws30{word-spacing:396.548006px;}
.wsbc{word-spacing:425.061158px;}
.wsb7{word-spacing:427.217626px;}
.wsac{word-spacing:430.010611px;}
.ws1d{word-spacing:430.815785px;}
.wsae{word-spacing:431.630218px;}
.wsca{word-spacing:436.735411px;}
.wsb2{word-spacing:440.342899px;}
.wsb6{word-spacing:442.040198px;}
.wsb4{word-spacing:445.458595px;}
.wsb0{word-spacing:452.450179px;}
.wsaf{word-spacing:462.612442px;}
.wsc1{word-spacing:478.213978px;}
.wsad{word-spacing:482.786842px;}
.wsb5{word-spacing:496.208400px;}
.wsb1{word-spacing:496.236442px;}
.wsb8{word-spacing:502.907443px;}
.wsc5{word-spacing:502.961242px;}
.ws8a{word-spacing:536.800435px;}
.ws8b{word-spacing:567.949709px;}
.ws5d{word-spacing:986.237624px;}
.ws6f{word-spacing:1106.955878px;}
.ws70{word-spacing:1149.133747px;}
._2c{margin-left:-12.109177px;}
._2{margin-left:-7.962163px;}
._4{margin-left:-6.635092px;}
._6{margin-left:-5.254355px;}
._d{margin-left:-3.394272px;}
._9{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._a{width:1.091170px;}
._3d{width:2.987593px;}
._5b{width:8.338752px;}
._0{width:10.165172px;}
._11{width:11.643305px;}
._15{width:13.018144px;}
._64{width:14.205628px;}
._10{width:15.416207px;}
._6a{width:16.796119px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._c{width:21.181527px;}
._16{width:22.296299px;}
._30{width:23.372260px;}
._e{width:24.747098px;}
._13{width:26.382004px;}
._f{width:28.045491px;}
._14{width:29.157556px;}
._b{width:31.070375px;}
._59{width:32.086560px;}
._32{width:33.461399px;}
._34{width:35.686033px;}
._3e{width:37.227262px;}
._31{width:38.960754px;}
._33{width:40.222986px;}
._69{width:42.686482px;}
._35{width:44.161231px;}
._2f{width:47.402051px;}
._3{width:54.425150px;}
._68{width:61.868160px;}
._5{width:69.367166px;}
._67{width:88.767360px;}
._45{width:152.230643px;}
._4b{width:163.785627px;}
._46{width:184.469334px;}
._47{width:195.901494px;}
._4f{width:211.219608px;}
._62{width:213.100113px;}
._43{width:219.040186px;}
._50{width:228.140185px;}
._44{width:230.472346px;}
._5e{width:234.686509px;}
._4c{width:237.697471px;}
._3f{width:250.135661px;}
._1b{width:255.160532px;}
._2b{width:262.092110px;}
._40{width:264.128625px;}
._54{width:267.192444px;}
._1f{width:276.650553px;}
._58{width:278.624604px;}
._1c{width:282.696782px;}
._28{width:284.313784px;}
._52{width:286.718573px;}
._51{width:293.714074px;}
._4e{width:298.196461px;}
._21{width:300.859781px;}
._25{width:308.523064px;}
._53{width:310.321641px;}
._4d{width:316.945204px;}
._41{width:319.185907px;}
._56{width:320.322034px;}
._55{width:328.009412px;}
._57{width:332.819151px;}
._23{width:342.464475px;}
._1e{width:344.123580px;}
._24{width:346.095867px;}
._3c{width:349.937357px;}
._48{width:351.556957px;}
._29{width:353.881345px;}
._5d{width:364.968346px;}
._22{width:373.694446px;}
._2e{width:375.872789px;}
._2d{width:380.320402px;}
._17{width:381.925601px;}
._5c{width:385.680730px;}
._61{width:391.630397px;}
._27{width:396.693262px;}
._1a{width:400.750701px;}
._19{width:402.600326px;}
._1d{width:403.665535px;}
._18{width:412.882246px;}
._2a{width:421.704092px;}
._20{width:424.365410px;}
._65{width:430.010611px;}
._42{width:435.287211px;}
._63{width:443.460211px;}
._26{width:459.079636px;}
._66{width:463.580813px;}
._60{width:502.907443px;}
._5f{width:524.910989px;}
._49{width:702.445709px;}
._4a{width:709.170509px;}
._3a{width:871.910669px;}
._36{width:891.816077px;}
._38{width:904.333216px;}
._3b{width:977.032742px;}
._37{width:1013.884646px;}
._39{width:1109.036128px;}
._5a{width:1514.691750px;}
._12{width:1538.602050px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fse{font-size:35.566380px;}
.fsf{font-size:35.865600px;}
.fsa{font-size:37.658520px;}
.fsc{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fsd{font-size:45.728640px;}
.fs5{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:48.418560px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y11{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y33{bottom:63.780000px;}
.y1ce{bottom:108.612000px;}
.yd1{bottom:110.079000px;}
.y9c{bottom:111.267000px;}
.y1a0{bottom:112.947000px;}
.y172{bottom:122.694000px;}
.y1fe{bottom:126.262500px;}
.y32{bottom:128.274000px;}
.y232{bottom:128.325000px;}
.y1cd{bottom:128.875500px;}
.y13b{bottom:129.456000px;}
.yd0{bottom:130.342500px;}
.y9b{bottom:131.532000px;}
.y19f{bottom:133.212000px;}
.y171{bottom:142.957500px;}
.y1fd{bottom:145.630500px;}
.y231{bottom:147.691500px;}
.y31{bottom:148.537500px;}
.y1cc{bottom:149.139000px;}
.y13a{bottom:149.719500px;}
.ycf{bottom:150.607500px;}
.y9a{bottom:151.795500px;}
.y19e{bottom:153.475500px;}
.y170{bottom:163.221000px;}
.y1fc{bottom:164.997000px;}
.y230{bottom:167.059500px;}
.y30{bottom:168.802500px;}
.y1cb{bottom:169.404000px;}
.y139{bottom:169.984500px;}
.yce{bottom:170.871000px;}
.y99{bottom:172.059000px;}
.y19d{bottom:173.740500px;}
.y14e{bottom:180.657000px;}
.y16f{bottom:180.688500px;}
.y16e{bottom:183.486000px;}
.y1fb{bottom:184.365000px;}
.y22f{bottom:186.427500px;}
.y2f{bottom:189.066000px;}
.y106{bottom:189.072000px;}
.y1ca{bottom:189.667500px;}
.y138{bottom:190.248000px;}
.y98{bottom:192.324000px;}
.y19c{bottom:194.004000px;}
.ycd{bottom:200.101500px;}
.y14d{bottom:200.920500px;}
.y1fa{bottom:203.731500px;}
.y16d{bottom:203.749500px;}
.y22e{bottom:205.794000px;}
.y105{bottom:207.094500px;}
.y104{bottom:209.335500px;}
.y1c9{bottom:209.932500px;}
.y137{bottom:210.511500px;}
.y97{bottom:212.587500px;}
.y19b{bottom:214.267500px;}
.y2e{bottom:218.296500px;}
.y14c{bottom:221.184000px;}
.y1f9{bottom:223.099500px;}
.y16c{bottom:224.014500px;}
.y22d{bottom:225.162000px;}
.y103{bottom:229.600500px;}
.y1c8{bottom:230.196000px;}
.y136{bottom:230.776500px;}
.y96{bottom:232.852500px;}
.ycc{bottom:234.175500px;}
.y19a{bottom:234.532500px;}
.y14b{bottom:241.449000px;}
.y1f8{bottom:242.467500px;}
.y16b{bottom:244.278000px;}
.yca{bottom:244.426500px;}
.y22c{bottom:244.528500px;}
.y102{bottom:249.864000px;}
.y1c7{bottom:250.459500px;}
.y135{bottom:251.040000px;}
.y95{bottom:253.116000px;}
.y199{bottom:254.796000px;}
.ycb{bottom:257.739000px;}
.y14a{bottom:261.712500px;}
.y1f7{bottom:261.834000px;}
.y22b{bottom:263.896500px;}
.y16a{bottom:264.541500px;}
.y101{bottom:270.127500px;}
.y1c6{bottom:270.724500px;}
.y134{bottom:271.305000px;}
.y94{bottom:273.379500px;}
.y198{bottom:275.061000px;}
.y1f6{bottom:281.202000px;}
.y149{bottom:281.977500px;}
.y169{bottom:282.009000px;}
.y22a{bottom:283.264500px;}
.y168{bottom:284.806500px;}
.y5f{bottom:285.234000px;}
.yc9{bottom:288.456000px;}
.y100{bottom:290.392500px;}
.y1c5{bottom:290.988000px;}
.y133{bottom:291.568500px;}
.y93{bottom:293.644500px;}
.y2d{bottom:294.712500px;}
.y197{bottom:295.324500px;}
.y1f5{bottom:300.568500px;}
.y148{bottom:302.241000px;}
.y229{bottom:302.631000px;}
.y167{bottom:305.070000px;}
.y5e{bottom:305.499000px;}
.yc8{bottom:308.719500px;}
.yff{bottom:310.656000px;}
.y1c4{bottom:311.253000px;}
.y132{bottom:311.832000px;}
.y92{bottom:313.908000px;}
.y196{bottom:315.588000px;}
.y1f4{bottom:319.936500px;}
.y228{bottom:321.999000px;}
.yd8{bottom:322.504500px;}
.y166{bottom:325.335000px;}
.y5d{bottom:325.762500px;}
.yc7{bottom:328.984500px;}
.yfe{bottom:330.921000px;}
.y1c3{bottom:331.516500px;}
.y131{bottom:332.097000px;}
.y2c{bottom:332.910000px;}
.y91{bottom:334.173000px;}
.y195{bottom:335.853000px;}
.y1f3{bottom:339.304500px;}
.y227{bottom:341.367000px;}
.yd7{bottom:342.769500px;}
.y165{bottom:345.598500px;}
.y5c{bottom:346.027500px;}
.yc6{bottom:346.419000px;}
.yc4{bottom:349.248000px;}
.yfd{bottom:351.184500px;}
.y1c2{bottom:351.780000px;}
.y130{bottom:352.360500px;}
.y2b{bottom:353.173500px;}
.y90{bottom:354.436500px;}
.yc5{bottom:354.672000px;}
.y194{bottom:356.116500px;}
.y1f2{bottom:358.671000px;}
.y226{bottom:360.733500px;}
.yd6{bottom:363.033000px;}
.y164{bottom:365.862000px;}
.y5b{bottom:366.291000px;}
.yc3{bottom:366.684000px;}
.yc1{bottom:369.511500px;}
.yfc{bottom:371.448000px;}
.y1c1{bottom:372.045000px;}
.y12e{bottom:372.625500px;}
.y2a{bottom:373.438500px;}
.y8f{bottom:374.700000px;}
.yc2{bottom:374.937000px;}
.y192{bottom:376.381500px;}
.y1f1{bottom:378.039000px;}
.y12f{bottom:378.049500px;}
.y225{bottom:380.101500px;}
.y193{bottom:381.805500px;}
.yd5{bottom:383.298000px;}
.y5a{bottom:386.554500px;}
.yfb{bottom:391.713000px;}
.y1c0{bottom:392.308500px;}
.y12d{bottom:392.889000px;}
.y29{bottom:393.702000px;}
.y8e{bottom:394.965000px;}
.y191{bottom:396.645000px;}
.y1f0{bottom:397.405500px;}
.y224{bottom:399.468000px;}
.y163{bottom:400.863000px;}
.yc0{bottom:401.484000px;}
.y147{bottom:403.561500px;}
.y59{bottom:406.819500px;}
.ybe{bottom:411.736500px;}
.yfa{bottom:411.976500px;}
.y8d{bottom:412.431000px;}
.yd4{bottom:412.528500px;}
.y1bf{bottom:412.573500px;}
.y12b{bottom:413.152500px;}
.y28{bottom:413.965500px;}
.y8c{bottom:415.228500px;}
.y1ef{bottom:416.773500px;}
.y190{bottom:416.908500px;}
.y12c{bottom:418.578000px;}
.y223{bottom:418.836000px;}
.y146{bottom:423.825000px;}
.ybf{bottom:426.261000px;}
.y58{bottom:427.083000px;}
.yf9{bottom:432.241500px;}
.y1be{bottom:432.837000px;}
.y12a{bottom:433.417500px;}
.y27{bottom:434.230500px;}
.y8b{bottom:435.493500px;}
.y1ee{bottom:436.141500px;}
.y18f{bottom:437.173500px;}
.y222{bottom:438.204000px;}
.y145{bottom:444.090000px;}
.y57{bottom:447.348000px;}
.yf8{bottom:452.505000px;}
.y1bd{bottom:453.100500px;}
.y129{bottom:453.681000px;}
.y26{bottom:454.494000px;}
.y1ed{bottom:455.508000px;}
.y8a{bottom:455.757000px;}
.y220{bottom:457.570500px;}
.y221{bottom:462.453000px;}
.ybd{bottom:464.353500px;}
.y18e{bottom:466.404000px;}
.y56{bottom:467.611500px;}
.yf7{bottom:472.768500px;}
.y1bc{bottom:473.365500px;}
.y128{bottom:473.946000px;}
.y24{bottom:474.759000px;}
.y1ec{bottom:474.876000px;}
.y89{bottom:476.020500px;}
.y21f{bottom:476.938500px;}
.y25{bottom:480.183000px;}
.ybc{bottom:484.618500px;}
.y55{bottom:487.875000px;}
.yf6{bottom:493.033500px;}
.y1bb{bottom:493.629000px;}
.y127{bottom:494.209500px;}
.y1eb{bottom:494.242500px;}
.y22{bottom:495.022500px;}
.y88{bottom:496.285500px;}
.y21e{bottom:496.305000px;}
.y23{bottom:500.446500px;}
.y18d{bottom:501.223500px;}
.ybb{bottom:504.882000px;}
.y53{bottom:508.140000px;}
.yf5{bottom:513.297000px;}
.y54{bottom:513.564000px;}
.y1ea{bottom:513.610500px;}
.y21{bottom:515.286000px;}
.y21d{bottom:515.673000px;}
.y87{bottom:516.549000px;}
.y18c{bottom:521.487000px;}
.y1ba{bottom:522.859500px;}
.yba{bottom:525.145500px;}
.y52{bottom:528.403500px;}
.y1e9{bottom:532.978500px;}
.yf4{bottom:533.562000px;}
.y21c{bottom:535.041000px;}
.y20{bottom:535.551000px;}
.y86{bottom:536.812500px;}
.y126{bottom:541.105500px;}
.y18b{bottom:541.752000px;}
.yb8{bottom:545.410500px;}
.y51{bottom:548.667000px;}
.yb9{bottom:550.834500px;}
.y1e8{bottom:552.345000px;}
.yf3{bottom:553.825500px;}
.yd3{bottom:554.092500px;}
.y21b{bottom:554.407500px;}
.y1f{bottom:555.814500px;}
.y85{bottom:557.077500px;}
.y125{bottom:557.544000px;}
.y1b9{bottom:557.679000px;}
.y18a{bottom:562.015500px;}
.yb7{bottom:565.674000px;}
.y50{bottom:568.932000px;}
.y1e7{bottom:571.713000px;}
.y21a{bottom:573.775500px;}
.yf1{bottom:574.089000px;}
.y1e{bottom:576.078000px;}
.y84{bottom:577.341000px;}
.y1b8{bottom:577.944000px;}
.yf2{bottom:579.514500px;}
.y123{bottom:581.185500px;}
.y189{bottom:582.279000px;}
.yb6{bottom:585.939000px;}
.y4f{bottom:589.195500px;}
.y122{bottom:589.404000px;}
.y1e6{bottom:591.079500px;}
.y219{bottom:593.142000px;}
.yf0{bottom:594.354000px;}
.y1c{bottom:596.343000px;}
.y124{bottom:597.624000px;}
.y1b7{bottom:598.207500px;}
.y1d{bottom:601.767000px;}
.yb5{bottom:606.202500px;}
.y83{bottom:606.571500px;}
.y4e{bottom:609.460500px;}
.y1e5{bottom:610.447500px;}
.y218{bottom:612.510000px;}
.yef{bottom:614.617500px;}
.y1b{bottom:616.606500px;}
.y1b6{bottom:618.471000px;}
.yb4{bottom:626.466000px;}
.y121{bottom:629.242500px;}
.y188{bottom:629.580000px;}
.y4d{bottom:629.724000px;}
.y1e4{bottom:629.815500px;}
.y217{bottom:631.878000px;}
.y1a{bottom:636.871500px;}
.y1b5{bottom:638.736000px;}
.y82{bottom:641.391000px;}
.yee{bottom:643.848000px;}
.yb2{bottom:646.731000px;}
.y187{bottom:646.825500px;}
.y1e3{bottom:649.182000px;}
.y4c{bottom:649.987500px;}
.y216{bottom:651.244500px;}
.yb3{bottom:652.155000px;}
.y19{bottom:657.135000px;}
.y1b4{bottom:658.999500px;}
.y186{bottom:664.072500px;}
.yb1{bottom:664.753500px;}
.y120{bottom:666.355500px;}
.yb0{bottom:666.994500px;}
.y1e2{bottom:668.550000px;}
.y4b{bottom:670.252500px;}
.y215{bottom:670.612500px;}
.y18{bottom:677.398500px;}
.yed{bottom:678.667500px;}
.y1b3{bottom:679.264500px;}
.y185{bottom:681.318000px;}
.y81{bottom:684.403050px;}
.y11f{bottom:686.619000px;}
.yaf{bottom:687.258000px;}
.y1e1{bottom:687.916500px;}
.y214{bottom:689.979000px;}
.y4a{bottom:690.516000px;}
.yd2{bottom:695.941500px;}
.y17{bottom:697.663500px;}
.y184{bottom:698.565000px;}
.yec{bottom:698.932500px;}
.y1b2{bottom:699.528000px;}
.y80{bottom:699.560850px;}
.y7e{bottom:699.924000px;}
.y11e{bottom:706.882500px;}
.y1e0{bottom:707.284500px;}
.y7d{bottom:707.322000px;}
.yad{bottom:707.523000px;}
.y213{bottom:709.347000px;}
.y49{bottom:710.781000px;}
.yae{bottom:712.947000px;}
.y7f{bottom:714.355500px;}
.y183{bottom:715.810500px;}
.y16{bottom:717.927000px;}
.yeb{bottom:719.196000px;}
.y1b1{bottom:719.791500px;}
.y1df{bottom:726.652500px;}
.y11d{bottom:727.147500px;}
.yac{bottom:727.786500px;}
.y212{bottom:728.715000px;}
.y7c{bottom:729.876450px;}
.y7a{bottom:730.239600px;}
.y48{bottom:731.044500px;}
.y182{bottom:733.056000px;}
.y79{bottom:737.637600px;}
.y15{bottom:738.192000px;}
.yea{bottom:739.459500px;}
.y1b0{bottom:740.056500px;}
.y7b{bottom:744.671100px;}
.y162{bottom:745.020000px;}
.y1de{bottom:746.019000px;}
.y11c{bottom:747.411000px;}
.yab{bottom:748.051500px;}
.y211{bottom:748.081500px;}
.y181{bottom:749.898000px;}
.y47{bottom:751.308000px;}
.y14{bottom:758.455500px;}
.ye9{bottom:759.724500px;}
.y1af{bottom:760.320000px;}
.y78{bottom:760.556550px;}
.y161{bottom:765.285000px;}
.y1dd{bottom:765.387000px;}
.y210{bottom:767.449500px;}
.y11b{bottom:767.676000px;}
.ya9{bottom:768.315000px;}
.y46{bottom:771.573000px;}
.y180{bottom:773.539500px;}
.yaa{bottom:773.740500px;}
.y77{bottom:776.077500px;}
.y13{bottom:778.719000px;}
.ye8{bottom:779.988000px;}
.y1ae{bottom:780.585000px;}
.y1dc{bottom:784.753500px;}
.y160{bottom:785.548500px;}
.y20f{bottom:786.816000px;}
.y11a{bottom:787.939500px;}
.ya8{bottom:788.578500px;}
.y75{bottom:791.235300px;}
.y45{bottom:791.836500px;}
.y74{bottom:798.633300px;}
.ye7{bottom:800.253000px;}
.y1ad{bottom:800.848500px;}
.y1db{bottom:804.121500px;}
.y17f{bottom:805.159500px;}
.y15f{bottom:805.812000px;}
.y76{bottom:806.029950px;}
.y20e{bottom:806.184000px;}
.y119{bottom:808.203000px;}
.ya7{bottom:808.843500px;}
.y44{bottom:812.101500px;}
.y10{bottom:814.151964px;}
.yf{bottom:814.918500px;}
.ye6{bottom:820.516500px;}
.y73{bottom:820.824600px;}
.y1ac{bottom:821.112000px;}
.y72{bottom:821.187750px;}
.y1da{bottom:823.489500px;}
.y20d{bottom:825.552000px;}
.y15e{bottom:826.077000px;}
.y118{bottom:828.468000px;}
.ya6{bottom:829.107000px;}
.y43{bottom:832.365000px;}
.y71{bottom:835.982400px;}
.ye5{bottom:840.780000px;}
.y1ab{bottom:841.377000px;}
.y17e{bottom:842.271000px;}
.y1d9{bottom:842.856000px;}
.y20c{bottom:844.918500px;}
.y15d{bottom:846.340500px;}
.y117{bottom:848.731500px;}
.ya5{bottom:849.372000px;}
.y70{bottom:851.140200px;}
.y42{bottom:852.628500px;}
.ye{bottom:853.924500px;}
.y1d8{bottom:862.224000px;}
.y17d{bottom:862.534500px;}
.y20b{bottom:864.286500px;}
.y6f{bottom:865.934850px;}
.ya4{bottom:869.635500px;}
.ye4{bottom:870.010500px;}
.yd{bottom:872.082000px;}
.y41{bottom:872.893500px;}
.y6e{bottom:881.092650px;}
.y1d7{bottom:881.590500px;}
.y20a{bottom:883.653000px;}
.y1aa{bottom:886.956000px;}
.ya3{bottom:889.899000px;}
.yc{bottom:890.238000px;}
.y40{bottom:893.157000px;}
.y6d{bottom:896.614950px;}
.y1d6{bottom:900.958500px;}
.y209{bottom:903.021000px;}
.y1a9{bottom:903.394500px;}
.y17c{bottom:905.662500px;}
.y15c{bottom:905.847000px;}
.y116{bottom:908.238000px;}
.yb{bottom:908.395500px;}
.ya2{bottom:910.164000px;}
.y6c{bottom:912.135900px;}
.y3f{bottom:913.422000px;}
.ye3{bottom:913.530000px;}
.y1a8{bottom:919.833000px;}
.y17b{bottom:919.860000px;}
.ye2{bottom:921.165000px;}
.y208{bottom:922.389000px;}
.y17a{bottom:924.199500px;}
.y15b{bottom:926.587725px;}
.y6b{bottom:927.293700px;}
.y235{bottom:928.267500px;}
.y115{bottom:928.634925px;}
.y1d5{bottom:929.292000px;}
.ya1{bottom:930.427500px;}
.y3e{bottom:933.685500px;}
.y114{bottom:934.781700px;}
.ya{bottom:935.518500px;}
.y1a7{bottom:936.270000px;}
.y144{bottom:939.394500px;}
.y15a{bottom:941.246400px;}
.y207{bottom:941.755500px;}
.y179{bottom:941.964000px;}
.y6a{bottom:942.088350px;}
.ye1{bottom:947.215500px;}
.y234{bottom:947.634000px;}
.ya0{bottom:950.692500px;}
.y1a6{bottom:952.708500px;}
.y3d{bottom:953.949000px;}
.y159{bottom:955.906350px;}
.y113{bottom:956.580375px;}
.y69{bottom:956.883000px;}
.y178{bottom:959.211000px;}
.y206{bottom:961.123500px;}
.y112{bottom:962.725875px;}
.ye0{bottom:963.652500px;}
.y233{bottom:967.002000px;}
.y1d4{bottom:968.745000px;}
.y158{bottom:970.565025px;}
.y9f{bottom:970.956000px;}
.y68{bottom:971.677650px;}
.y3c{bottom:974.214000px;}
.y1a4{bottom:976.350000px;}
.y177{bottom:976.456500px;}
.y9{bottom:980.055000px;}
.ydf{bottom:980.091000px;}
.y205{bottom:980.490000px;}
.y111{bottom:984.525825px;}
.y1a3{bottom:984.568500px;}
.y67{bottom:986.472300px;}
.y110{bottom:990.565500px;}
.y157{bottom:991.003275px;}
.y9e{bottom:991.219500px;}
.y143{bottom:991.680000px;}
.y1a5{bottom:992.788500px;}
.y1d3{bottom:992.908500px;}
.y176{bottom:993.703500px;}
.y3b{bottom:994.477500px;}
.yde{bottom:996.529500px;}
.y204{bottom:999.858000px;}
.y142{bottom:999.903000px;}
.y66{bottom:1001.630100px;}
.y8{bottom:1010.451000px;}
.y175{bottom:1010.949000px;}
.y156{bottom:1011.441525px;}
.y141{bottom:1011.945000px;}
.y10f{bottom:1012.471275px;}
.ydd{bottom:1012.968000px;}
.y3a{bottom:1014.742500px;}
.y1d2{bottom:1017.073500px;}
.y65{bottom:1017.151050px;}
.y10e{bottom:1018.616775px;}
.y203{bottom:1019.226000px;}
.y9d{bottom:1020.450000px;}
.y1a2{bottom:1024.407000px;}
.y155{bottom:1026.100200px;}
.y174{bottom:1028.194500px;}
.ydc{bottom:1029.406500px;}
.y13f{bottom:1032.208500px;}
.y1d1{bottom:1032.271500px;}
.y39{bottom:1035.006000px;}
.y202{bottom:1038.592500px;}
.y64{bottom:1038.791550px;}
.y154{bottom:1040.415900px;}
.y140{bottom:1040.430000px;}
.y7{bottom:1040.848500px;}
.y1a1{bottom:1043.640000px;}
.y173{bottom:1045.441500px;}
.ydb{bottom:1045.845000px;}
.y10d{bottom:1046.538000px;}
.y1d0{bottom:1047.469500px;}
.y109{bottom:1053.523725px;}
.y62{bottom:1053.586200px;}
.y38{bottom:1055.269500px;}
.y201{bottom:1057.960500px;}
.y10b{bottom:1060.510725px;}
.y152{bottom:1060.511175px;}
.y13e{bottom:1060.695000px;}
.yda{bottom:1062.283500px;}
.y1cf{bottom:1062.667500px;}
.y107{bottom:1067.496450px;}
.y150{bottom:1067.496900px;}
.y63{bottom:1068.380850px;}
.y6{bottom:1071.244500px;}
.y13c{bottom:1072.737000px;}
.y14f{bottom:1074.482625px;}
.y10a{bottom:1074.483450px;}
.y37{bottom:1075.534500px;}
.y200{bottom:1077.327000px;}
.y13d{bottom:1080.958500px;}
.y108{bottom:1081.469175px;}
.y153{bottom:1081.469625px;}
.yd9{bottom:1085.923500px;}
.y151{bottom:1088.455350px;}
.y10c{bottom:1088.456175px;}
.y36{bottom:1095.798000px;}
.y1ff{bottom:1096.695000px;}
.y61{bottom:1098.310500px;}
.y5{bottom:1100.145000px;}
.y35{bottom:1116.063000px;}
.y60{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.h27{height:21.446732px;}
.h22{height:24.849991px;}
.h9{height:25.508090px;}
.hf{height:27.855430px;}
.h37{height:32.565965px;}
.h1d{height:32.697253px;}
.h25{height:32.924621px;}
.hb{height:33.112997px;}
.h20{height:33.299897px;}
.h26{height:33.336179px;}
.ha{height:34.199443px;}
.h11{height:34.861363px;}
.h12{height:35.297130px;}
.h39{height:37.993262px;}
.h3a{height:38.143066px;}
.h28{height:38.515894px;}
.h2a{height:38.520994px;}
.h10{height:38.734848px;}
.h3{height:39.402747px;}
.h13{height:40.786934px;}
.h4{height:41.001535px;}
.hd{height:41.250077px;}
.h2c{height:41.521605px;}
.h32{height:42.380900px;}
.h7{height:43.038432px;}
.he{height:43.421105px;}
.h31{height:43.516637px;}
.h5{height:43.815515px;}
.h15{height:43.964052px;}
.h30{height:45.312816px;}
.h34{height:47.517773px;}
.h33{height:47.522873px;}
.h8{height:48.848947px;}
.h38{height:49.117939px;}
.h17{height:50.312936px;}
.h14{height:50.318336px;}
.h2{height:50.931027px;}
.h19{height:51.770936px;}
.hc{height:54.276245px;}
.h35{height:55.903262px;}
.h36{height:55.909262px;}
.h29{height:60.872621px;}
.h1e{height:61.960760px;}
.h21{height:62.946077px;}
.h2f{height:71.614848px;}
.h2e{height:72.825405px;}
.h2b{height:72.830505px;}
.h2d{height:73.253805px;}
.h1b{height:73.550652px;}
.h1a{height:73.556052px;}
.h1c{height:75.008652px;}
.h6{height:77.469696px;}
.h16{height:79.904936px;}
.h23{height:81.728947px;}
.h24{height:92.737262px;}
.h1f{height:95.286245px;}
.h18{height:109.496936px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:29.274117px;}
.x2{left:59.014071px;}
.x1{left:114.802500px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x9e{left:130.860450px;}
.x6a{left:136.203000px;}
.x45{left:141.460800px;}
.x70{left:143.238150px;}
.x39{left:144.274200px;}
.x1b{left:146.692500px;}
.x3c{left:148.495650px;}
.x7f{left:150.977400px;}
.x7d{left:152.063700px;}
.xa5{left:153.550350px;}
.xaa{left:154.917000px;}
.x38{left:157.192350px;}
.x44{left:158.856900px;}
.x4c{left:162.931500px;}
.x3a{left:167.802000px;}
.x40{left:170.399400px;}
.x3b{left:172.227300px;}
.x8b{left:174.505500px;}
.x36{left:175.966800px;}
.x4a{left:179.586000px;}
.x37{left:181.226400px;}
.x9a{left:184.197000px;}
.x3e{left:186.376650px;}
.x3f{left:187.593000px;}
.x81{left:189.370500px;}
.x7{left:190.809000px;}
.x31{left:191.987250px;}
.x53{left:193.189500px;}
.x12{left:194.502000px;}
.x4d{left:196.308000px;}
.x30{left:198.066000px;}
.x1a{left:201.679500px;}
.x7e{left:206.832600px;}
.x13{left:212.178000px;}
.x6b{left:215.448000px;}
.x82{left:216.679500px;}
.x91{left:218.887500px;}
.x69{left:226.354500px;}
.xa7{left:229.101000px;}
.x71{left:231.732075px;}
.x85{left:232.906500px;}
.x1e{left:234.727500px;}
.x86{left:239.013000px;}
.x4e{left:240.340500px;}
.xa{left:242.724000px;}
.xb8{left:245.098500px;}
.x68{left:246.636000px;}
.x1f{left:249.552000px;}
.xc3{left:251.667000px;}
.xc5{left:254.101500px;}
.xb0{left:255.790500px;}
.x4f{left:258.411000px;}
.xb{left:260.401500px;}
.x20{left:264.495000px;}
.xc4{left:267.238500px;}
.xab{left:274.389000px;}
.x80{left:277.260000px;}
.x50{left:278.307000px;}
.xac{left:281.076000px;}
.x9f{left:283.693425px;}
.x87{left:289.224000px;}
.xbf{left:291.856500px;}
.x64{left:294.670500px;}
.xc0{left:302.145000px;}
.x88{left:306.987000px;}
.x65{left:308.527500px;}
.x92{left:310.369500px;}
.x6f{left:314.007000px;}
.x66{left:320.010000px;}
.x93{left:324.393000px;}
.x67{left:326.697000px;}
.x72{left:334.829850px;}
.x73{left:343.397850px;}
.xa1{left:348.751575px;}
.xb6{left:355.419000px;}
.xa0{left:360.503250px;}
.xb9{left:361.524000px;}
.x46{left:362.863500px;}
.x3d{left:364.013700px;}
.xba{left:365.385000px;}
.x57{left:370.057500px;}
.x8c{left:378.624000px;}
.x1c{left:381.475500px;}
.x5f{left:382.524000px;}
.x58{left:384.081000px;}
.x1d{left:388.947000px;}
.x8d{left:394.132500px;}
.x14{left:395.602500px;}
.x54{left:397.483500px;}
.xa6{left:400.463025px;}
.x4b{left:405.037500px;}
.x75{left:406.604700px;}
.xa8{left:408.244500px;}
.x15{left:411.360000px;}
.x6e{left:415.387500px;}
.x74{left:417.152775px;}
.xa9{left:419.389500px;}
.x8{left:423.493500px;}
.x94{left:425.256000px;}
.x48{left:427.372500px;}
.x55{left:432.141000px;}
.x90{left:434.773500px;}
.x9{left:437.517000px;}
.x95{left:441.045000px;}
.x49{left:442.317000px;}
.xc{left:443.832000px;}
.x60{left:445.869000px;}
.xbb{left:449.067000px;}
.x33{left:452.276700px;}
.x56{left:457.075500px;}
.x5a{left:458.367000px;}
.xb1{left:459.843000px;}
.xd{left:461.509500px;}
.x8e{left:468.982500px;}
.x76{left:470.421000px;}
.x32{left:473.174700px;}
.x61{left:475.071000px;}
.x41{left:476.274300px;}
.x34{left:478.150800px;}
.x23{left:481.269000px;}
.x8f{left:483.006000px;}
.xae{left:485.775000px;}
.x5b{left:487.425000px;}
.x77{left:489.872400px;}
.x5c{left:491.329500px;}
.x43{left:494.151000px;}
.x24{left:496.212000px;}
.xad{left:499.176000px;}
.x25{left:503.833500px;}
.x6d{left:510.241500px;}
.x21{left:514.465500px;}
.x96{left:516.738000px;}
.x26{left:518.778000px;}
.x16{left:526.603500px;}
.x22{left:529.408500px;}
.x97{left:530.763000px;}
.xbd{left:534.495000px;}
.x9b{left:535.744500px;}
.x29{left:539.143500px;}
.xa2{left:541.805700px;}
.x17{left:544.281000px;}
.x83{left:545.397000px;}
.xe{left:546.451500px;}
.x9c{left:549.768000px;}
.x2a{left:554.086500px;}
.x78{left:557.684550px;}
.xf{left:564.130500px;}
.x6c{left:571.921500px;}
.x89{left:575.041500px;}
.x84{left:591.564000px;}
.x8a{left:593.559000px;}
.xbe{left:595.237500px;}
.xb2{left:607.081500px;}
.xaf{left:608.403000px;}
.x35{left:615.435000px;}
.x79{left:616.729800px;}
.x27{left:618.963000px;}
.x42{left:621.148200px;}
.xa3{left:630.642600px;}
.x28{left:633.907500px;}
.x2b{left:650.742000px;}
.x2c{left:659.973000px;}
.x47{left:671.152500px;}
.x7c{left:680.155950px;}
.x2d{left:682.467000px;}
.x7b{left:690.590550px;}
.x7a{left:693.670950px;}
.xbc{left:698.656500px;}
.x62{left:700.153500px;}
.x5{left:701.339982px;}
.x2e{left:706.273500px;}
.x63{left:712.258500px;}
.x2f{left:713.745000px;}
.xa4{left:717.763350px;}
.x51{left:720.466500px;}
.xb3{left:722.595000px;}
.x59{left:723.822000px;}
.x18{left:727.704000px;}
.x9d{left:734.163000px;}
.x52{left:735.409500px;}
.xc1{left:737.751000px;}
.x19{left:745.381500px;}
.x10{left:747.559500px;}
.xb4{left:749.494500px;}
.x98{left:752.484000px;}
.xc2{left:755.136000px;}
.x5d{left:756.391500px;}
.xb5{left:761.947500px;}
.x11{left:765.237000px;}
.x99{left:768.313500px;}
.x5e{left:771.336000px;}
.xb7{left:776.362500px;}
@media print{
.vb{vertical-align:-14.332800pt;}
.ve{vertical-align:-10.853333pt;}
.vd{vertical-align:-9.781333pt;}
.v4{vertical-align:-8.601600pt;}
.v15{vertical-align:-6.858933pt;}
.v2{vertical-align:-1.291200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.153600pt;}
.v3{vertical-align:14.332800pt;}
.va{vertical-align:15.624000pt;}
.v12{vertical-align:17.360000pt;}
.v10{vertical-align:19.285333pt;}
.v6{vertical-align:25.008000pt;}
.v5{vertical-align:26.299200pt;}
.vc{vertical-align:27.595200pt;}
.v11{vertical-align:29.226667pt;}
.v13{vertical-align:31.301333pt;}
.vf{vertical-align:36.453333pt;}
.v7{vertical-align:40.632000pt;}
.v14{vertical-align:48.661333pt;}
.v9{vertical-align:51.312000pt;}
.v8{vertical-align:66.936000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000023pt;}
.ls1a{letter-spacing:0.000133pt;}
.ls33{letter-spacing:0.000196pt;}
.ls21{letter-spacing:0.000327pt;}
.ls60{letter-spacing:0.000397pt;}
.ls27{letter-spacing:0.000518pt;}
.ls5b{letter-spacing:0.000533pt;}
.ls5e{letter-spacing:0.000600pt;}
.ls58{letter-spacing:0.000711pt;}
.ls37{letter-spacing:0.000752pt;}
.ls8{letter-spacing:0.000797pt;}
.ls1b{letter-spacing:0.001183pt;}
.ls2{letter-spacing:0.001349pt;}
.ls14{letter-spacing:0.001370pt;}
.ls17{letter-spacing:0.001686pt;}
.ls51{letter-spacing:0.001792pt;}
.ls40{letter-spacing:0.001829pt;}
.ls43{letter-spacing:0.002169pt;}
.ls52{letter-spacing:0.002227pt;}
.ls34{letter-spacing:0.002393pt;}
.ls38{letter-spacing:0.002471pt;}
.ls3a{letter-spacing:0.002473pt;}
.ls9{letter-spacing:0.002533pt;}
.ls2f{letter-spacing:0.002815pt;}
.ls15{letter-spacing:0.002868pt;}
.ls35{letter-spacing:0.002916pt;}
.ls5{letter-spacing:0.003100pt;}
.ls42{letter-spacing:0.003106pt;}
.ls3{letter-spacing:0.003198pt;}
.ls28{letter-spacing:0.003310pt;}
.ls3f{letter-spacing:0.003325pt;}
.ls2e{letter-spacing:0.003430pt;}
.ls4f{letter-spacing:0.003733pt;}
.ls41{letter-spacing:0.003817pt;}
.ls31{letter-spacing:0.003866pt;}
.ls50{letter-spacing:0.003914pt;}
.ls5a{letter-spacing:0.004267pt;}
.ls32{letter-spacing:0.004931pt;}
.ls5d{letter-spacing:0.466280pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls23{letter-spacing:1.663492pt;}
.ls19{letter-spacing:1.701348pt;}
.lsa{letter-spacing:2.390880pt;}
.ls2d{letter-spacing:2.654414pt;}
.ls25{letter-spacing:2.657067pt;}
.ls39{letter-spacing:2.659198pt;}
.ls1e{letter-spacing:6.054516pt;}
.ls1f{letter-spacing:8.112508pt;}
.ls1d{letter-spacing:10.330777pt;}
.ls2c{letter-spacing:10.336110pt;}
.ls4{letter-spacing:10.626533pt;}
.ls36{letter-spacing:10.629350pt;}
.lse{letter-spacing:10.759680pt;}
.ls54{letter-spacing:11.954133pt;}
.ls5f{letter-spacing:11.954825pt;}
.ls62{letter-spacing:11.955430pt;}
.ls56{letter-spacing:11.959467pt;}
.ls53{letter-spacing:11.967389pt;}
.ls55{letter-spacing:11.972872pt;}
.ls5c{letter-spacing:12.098781pt;}
.ls3b{letter-spacing:12.344600pt;}
.ls1c{letter-spacing:12.987174pt;}
.ls3e{letter-spacing:13.111947pt;}
.ls46{letter-spacing:13.125923pt;}
.ls2a{letter-spacing:13.279711pt;}
.ls26{letter-spacing:13.281867pt;}
.ls16{letter-spacing:13.287020pt;}
.ls3d{letter-spacing:13.362287pt;}
.ls3c{letter-spacing:13.367729pt;}
.ls29{letter-spacing:13.414550pt;}
.ls57{letter-spacing:14.382055pt;}
.ls30{letter-spacing:14.608533pt;}
.ls2b{letter-spacing:15.426219pt;}
.ls59{letter-spacing:17.053950pt;}
.ls24{letter-spacing:17.493004pt;}
.ls18{letter-spacing:18.078121pt;}
.ls22{letter-spacing:25.351827pt;}
.ls0{letter-spacing:28.452898pt;}
.ls44{letter-spacing:130.601253pt;}
.ls45{letter-spacing:145.842320pt;}
.lsf{letter-spacing:234.965280pt;}
.lsd{letter-spacing:274.227840pt;}
.ls13{letter-spacing:282.518880pt;}
.ls12{letter-spacing:299.731680pt;}
.ls10{letter-spacing:304.037280pt;}
.ls11{letter-spacing:305.112480pt;}
.ls49{letter-spacing:314.112533pt;}
.ls4d{letter-spacing:314.720533pt;}
.lsc{letter-spacing:320.174880pt;}
.ls4c{letter-spacing:324.736533pt;}
.ls47{letter-spacing:324.741867pt;}
.ls4e{letter-spacing:330.715200pt;}
.ls4b{letter-spacing:330.720533pt;}
.lsb{letter-spacing:330.936480pt;}
.ls48{letter-spacing:336.693867pt;}
.ls4a{letter-spacing:439.083200pt;}
.ls20{letter-spacing:1038.165852pt;}
.ws3f{word-spacing:-21.519360pt;}
.ws27{word-spacing:-15.461955pt;}
.ws32{word-spacing:-14.331894pt;}
.ws3{word-spacing:-13.915853pt;}
.ws7d{word-spacing:-13.535677pt;}
.ws1f{word-spacing:-13.283467pt;}
.wsab{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.759680pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws7c{word-spacing:-10.161920pt;}
.ws74{word-spacing:-10.095467pt;}
.wsa7{word-spacing:-7.970133pt;}
.wsaa{word-spacing:-4.686438pt;}
.ws77{word-spacing:-3.241166pt;}
.ws63{word-spacing:-3.081764pt;}
.ws106{word-spacing:-2.486682pt;}
.wsc{word-spacing:-2.072221pt;}
.ws97{word-spacing:-1.965953pt;}
.wsba{word-spacing:-1.865011pt;}
.ws76{word-spacing:-1.753418pt;}
.wsc6{word-spacing:-1.721549pt;}
.ws26{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.wsbb{word-spacing:-1.673728pt;}
.ws101{word-spacing:-1.578086pt;}
.ws95{word-spacing:-1.540882pt;}
.wsc7{word-spacing:-1.530266pt;}
.ws5f{word-spacing:-1.487748pt;}
.wsce{word-spacing:-1.434614pt;}
.ws16{word-spacing:-1.381481pt;}
.ws14{word-spacing:-1.328347pt;}
.wscf{word-spacing:-1.291162pt;}
.ws72{word-spacing:-1.275213pt;}
.ws10d{word-spacing:-1.243341pt;}
.ws53{word-spacing:-1.222079pt;}
.ws4{word-spacing:-1.175671pt;}
.ws41{word-spacing:-1.162045pt;}
.wscd{word-spacing:-1.115811pt;}
.ws15{word-spacing:-1.062677pt;}
.ws103{word-spacing:-1.004237pt;}
.ws6d{word-spacing:-0.956416pt;}
.ws90{word-spacing:-0.956410pt;}
.ws78{word-spacing:-0.903276pt;}
.wsdd{word-spacing:-0.860774pt;}
.wsd0{word-spacing:-0.812954pt;}
.ws29{word-spacing:-0.797008pt;}
.ws6e{word-spacing:-0.765133pt;}
.ws93{word-spacing:-0.743874pt;}
.wse2{word-spacing:-0.717312pt;}
.ws21{word-spacing:-0.637606pt;}
.ws13{word-spacing:-0.584473pt;}
.ws73{word-spacing:-0.531339pt;}
.ws0{word-spacing:-0.478208pt;}
.ws47{word-spacing:-0.478205pt;}
.ws99{word-spacing:-0.425071pt;}
.ws58{word-spacing:-0.371937pt;}
.ws4d{word-spacing:-0.318803pt;}
.ws4a{word-spacing:-0.265669pt;}
.wsd6{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.212535pt;}
.wsd1{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.wse0{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.wsf7{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.wsd5{word-spacing:-0.047821pt;}
.ws38{word-spacing:-0.043039pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws12{word-spacing:-0.040382pt;}
.ws89{word-spacing:-0.037194pt;}
.ws34{word-spacing:-0.033474pt;}
.ws7f{word-spacing:-0.031615pt;}
.ws2{word-spacing:-0.015266pt;}
.ws71{word-spacing:-0.007083pt;}
.ws37{word-spacing:-0.000223pt;}
.ws1{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.002133pt;}
.ws2e{word-spacing:0.047821pt;}
.wsb{word-spacing:0.053134pt;}
.wsdb{word-spacing:0.095642pt;}
.ws9{word-spacing:0.106268pt;}
.ws104{word-spacing:0.143462pt;}
.ws23{word-spacing:0.159402pt;}
.ws2f{word-spacing:0.191283pt;}
.wsa{word-spacing:0.212535pt;}
.wse5{word-spacing:0.239104pt;}
.wsd{word-spacing:0.265669pt;}
.wsf4{word-spacing:0.286925pt;}
.ws8d{word-spacing:0.318803pt;}
.ws67{word-spacing:0.371937pt;}
.ws10c{word-spacing:0.382566pt;}
.ws66{word-spacing:0.425071pt;}
.ws68{word-spacing:0.478205pt;}
.ws48{word-spacing:0.531339pt;}
.ws69{word-spacing:0.584473pt;}
.wsf9{word-spacing:0.669491pt;}
.ws52{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.743874pt;}
.ws45{word-spacing:0.797008pt;}
.ws49{word-spacing:0.903276pt;}
.wsff{word-spacing:0.908595pt;}
.wsf{word-spacing:1.009543pt;}
.ws50{word-spacing:1.115811pt;}
.ws2b{word-spacing:1.222079pt;}
.ws25{word-spacing:1.275213pt;}
.wsea{word-spacing:1.338982pt;}
.ws98{word-spacing:1.381481pt;}
.ws61{word-spacing:1.434614pt;}
.ws20{word-spacing:1.487748pt;}
.ws28{word-spacing:1.540882pt;}
.ws19{word-spacing:1.647150pt;}
.ws96{word-spacing:1.753418pt;}
.ws8e{word-spacing:1.806551pt;}
.wsdc{word-spacing:1.817190pt;}
.ws10{word-spacing:1.859685pt;}
.wse6{word-spacing:1.865011pt;}
.ws5e{word-spacing:1.965953pt;}
.wsfa{word-spacing:2.056294pt;}
.ws91{word-spacing:2.072221pt;}
.ws7b{word-spacing:2.125355pt;}
.ws4f{word-spacing:2.284756pt;}
.wsee{word-spacing:2.295398pt;}
.ws24{word-spacing:2.337890pt;}
.ws4c{word-spacing:2.391024pt;}
.wsd3{word-spacing:2.534502pt;}
.ws8{word-spacing:2.603559pt;}
.ws5c{word-spacing:2.709827pt;}
.ws7{word-spacing:2.816095pt;}
.wscc{word-spacing:2.869229pt;}
.ws92{word-spacing:2.922363pt;}
.ws6{word-spacing:2.975497pt;}
.ws55{word-spacing:3.028630pt;}
.ws2a{word-spacing:3.134898pt;}
.wsa9{word-spacing:3.188032pt;}
.ws65{word-spacing:3.241166pt;}
.ws56{word-spacing:3.294300pt;}
.ws6a{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.559969pt;}
.ws51{word-spacing:3.666237pt;}
.ws62{word-spacing:3.772505pt;}
.ws4b{word-spacing:3.825638pt;}
.wsef{word-spacing:4.016947pt;}
.wsb9{word-spacing:4.144442pt;}
.ws60{word-spacing:4.197575pt;}
.wsfd{word-spacing:4.256051pt;}
.wsfe{word-spacing:4.351693pt;}
.ws22{word-spacing:4.410111pt;}
.ws7a{word-spacing:4.728914pt;}
.wsfb{word-spacing:4.780006pt;}
.wsd2{word-spacing:4.781175pt;}
.ws100{word-spacing:4.781321pt;}
.wsda{word-spacing:4.782080pt;}
.wsf5{word-spacing:4.782959pt;}
.wse3{word-spacing:4.784247pt;}
.wsf1{word-spacing:5.116826pt;}
.ws87{word-spacing:5.312000pt;}
.ws17{word-spacing:5.313387pt;}
.ws54{word-spacing:5.525922pt;}
.ws79{word-spacing:5.579056pt;}
.ws64{word-spacing:5.632190pt;}
.ws2d{word-spacing:5.791591pt;}
.wse1{word-spacing:5.881958pt;}
.ws2c{word-spacing:5.897859pt;}
.ws88{word-spacing:5.950993pt;}
.ws94{word-spacing:6.535466pt;}
.ws8f{word-spacing:6.694867pt;}
.ws6c{word-spacing:6.748001pt;}
.ws8c{word-spacing:7.491875pt;}
.ws109{word-spacing:7.603507pt;}
.ws46{word-spacing:7.863812pt;}
.ws5a{word-spacing:7.970080pt;}
.ws75{word-spacing:8.129482pt;}
.wscb{word-spacing:8.395151pt;}
.wsd8{word-spacing:8.703386pt;}
.ws42{word-spacing:9.554596pt;}
.wsa8{word-spacing:10.467372pt;}
.wse8{word-spacing:10.664038pt;}
.ws3d{word-spacing:10.708931pt;}
.ws3b{word-spacing:10.709507pt;}
.ws40{word-spacing:10.716641pt;}
.wsde{word-spacing:11.046605pt;}
.ws10b{word-spacing:11.668275pt;}
.wsec{word-spacing:11.716096pt;}
.ws10f{word-spacing:11.763917pt;}
.ws108{word-spacing:11.859558pt;}
.wsfc{word-spacing:11.902106pt;}
.wse9{word-spacing:11.902140pt;}
.wsd9{word-spacing:11.902993pt;}
.wsf6{word-spacing:11.903437pt;}
.wsd7{word-spacing:11.907379pt;}
.ws110{word-spacing:12.003021pt;}
.wsf3{word-spacing:12.146483pt;}
.ws44{word-spacing:13.230333pt;}
.ws1a{word-spacing:14.835013pt;}
.ws57{word-spacing:15.621357pt;}
.wsf0{word-spacing:15.924326pt;}
.ws102{word-spacing:16.450355pt;}
.wse4{word-spacing:16.679782pt;}
.wsdf{word-spacing:16.685039pt;}
.wseb{word-spacing:16.686507pt;}
.ws107{word-spacing:16.687300pt;}
.wsd4{word-spacing:16.689459pt;}
.wsf8{word-spacing:16.737280pt;}
.ws105{word-spacing:16.880742pt;}
.ws10e{word-spacing:17.024205pt;}
.wsed{word-spacing:17.072026pt;}
.wsf2{word-spacing:17.406771pt;}
.ws10a{word-spacing:19.510886pt;}
.ws5b{word-spacing:21.359814pt;}
.ws59{word-spacing:21.400362pt;}
.wse7{word-spacing:22.762701pt;}
.ws9a{word-spacing:91.375985pt;}
.ws7e{word-spacing:118.500963pt;}
.wsa3{word-spacing:137.482117pt;}
.ws9d{word-spacing:140.816076pt;}
.ws82{word-spacing:143.879840pt;}
.wsa5{word-spacing:147.403524pt;}
.wsa6{word-spacing:148.681394pt;}
.wsa1{word-spacing:151.264183pt;}
.ws9f{word-spacing:156.546713pt;}
.ws33{word-spacing:171.423222pt;}
.ws83{word-spacing:184.540467pt;}
.ws9b{word-spacing:191.265874pt;}
.wsa0{word-spacing:208.075474pt;}
.ws9c{word-spacing:217.180554pt;}
.wsa2{word-spacing:218.237394pt;}
.ws9e{word-spacing:224.415841pt;}
.wsa4{word-spacing:228.399314pt;}
.ws81{word-spacing:232.881642pt;}
.ws3a{word-spacing:241.963684pt;}
.ws35{word-spacing:263.483044pt;}
.ws85{word-spacing:267.187791pt;}
.ws84{word-spacing:268.470194pt;}
.ws3e{word-spacing:269.946516pt;}
.ws80{word-spacing:271.048450pt;}
.ws86{word-spacing:272.816798pt;}
.ws36{word-spacing:278.986076pt;}
.wsbd{word-spacing:291.742071pt;}
.wsc4{word-spacing:302.954334pt;}
.wsbe{word-spacing:306.876638pt;}
.wsc8{word-spacing:313.829965pt;}
.wsc0{word-spacing:314.621244pt;}
.ws3c{word-spacing:314.957353pt;}
.wsc3{word-spacing:316.129954pt;}
.wsc2{word-spacing:319.168529pt;}
.ws43{word-spacing:325.255119pt;}
.wsbf{word-spacing:325.383270pt;}
.wsc9{word-spacing:340.340634pt;}
.ws39{word-spacing:345.480476pt;}
.ws30{word-spacing:352.487117pt;}
.wsbc{word-spacing:377.832141pt;}
.wsb7{word-spacing:379.749001pt;}
.wsac{word-spacing:382.231654pt;}
.ws1d{word-spacing:382.947365pt;}
.wsae{word-spacing:383.671305pt;}
.wsca{word-spacing:388.209254pt;}
.wsb2{word-spacing:391.415910pt;}
.wsb6{word-spacing:392.924621pt;}
.wsb4{word-spacing:395.963196pt;}
.wsb0{word-spacing:402.177937pt;}
.wsaf{word-spacing:411.211059pt;}
.wsc1{word-spacing:425.079091pt;}
.wsad{word-spacing:429.143859pt;}
.wsb5{word-spacing:441.074133pt;}
.wsb1{word-spacing:441.099059pt;}
.wsb8{word-spacing:447.028838pt;}
.wsc5{word-spacing:447.076659pt;}
.ws8a{word-spacing:477.155942pt;}
.ws8b{word-spacing:504.844186pt;}
.ws5d{word-spacing:876.655666pt;}
.ws6f{word-spacing:983.960781pt;}
.ws70{word-spacing:1021.452220pt;}
._2c{margin-left:-10.763713pt;}
._2{margin-left:-7.077478pt;}
._4{margin-left:-5.897859pt;}
._6{margin-left:-4.670538pt;}
._d{margin-left:-3.017131pt;}
._9{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._a{width:0.969929pt;}
._3d{width:2.655638pt;}
._5b{width:7.412224pt;}
._0{width:9.035708pt;}
._11{width:10.349604pt;}
._15{width:11.571683pt;}
._64{width:12.627225pt;}
._10{width:13.703295pt;}
._6a{width:14.929884pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._c{width:18.828024pt;}
._16{width:19.818932pt;}
._30{width:20.775342pt;}
._e{width:21.997421pt;}
._13{width:23.450670pt;}
._f{width:24.929325pt;}
._14{width:25.917827pt;}
._b{width:27.618111pt;}
._59{width:28.521387pt;}
._32{width:29.743466pt;}
._34{width:31.720918pt;}
._3e{width:33.090899pt;}
._31{width:34.631781pt;}
._33{width:35.753765pt;}
._69{width:37.943539pt;}
._35{width:39.254428pt;}
._2f{width:42.135156pt;}
._3{width:48.377911pt;}
._68{width:54.993920pt;}
._5{width:61.659703pt;}
._67{width:78.904320pt;}
._45{width:135.316127pt;}
._4b{width:145.587224pt;}
._46{width:163.972741pt;}
._47{width:174.134661pt;}
._4f{width:187.750763pt;}
._62{width:189.422322pt;}
._43{width:194.702387pt;}
._50{width:202.791276pt;}
._44{width:204.864307pt;}
._5e{width:208.610230pt;}
._4c{width:211.286641pt;}
._3f{width:222.342810pt;}
._1b{width:226.809362pt;}
._2b{width:232.970764pt;}
._40{width:234.781000pt;}
._54{width:237.504394pt;}
._1f{width:245.911602pt;}
._58{width:247.666314pt;}
._1c{width:251.286029pt;}
._28{width:252.723364pt;}
._52{width:254.860954pt;}
._51{width:261.079177pt;}
._4e{width:265.063521pt;}
._21{width:267.430916pt;}
._25{width:274.242724pt;}
._53{width:275.841458pt;}
._4d{width:281.729070pt;}
._41{width:283.720806pt;}
._56{width:284.730697pt;}
._55{width:291.563922pt;}
._57{width:295.839246pt;}
._23{width:304.412867pt;}
._1e{width:305.887626pt;}
._24{width:307.640771pt;}
._3c{width:311.055428pt;}
._48{width:312.495073pt;}
._29{width:314.561196pt;}
._5d{width:324.416307pt;}
._22{width:332.172841pt;}
._2e{width:334.109146pt;}
._2d{width:338.062579pt;}
._17{width:339.489423pt;}
._5c{width:342.827315pt;}
._61{width:348.115908pt;}
._27{width:352.616233pt;}
._1a{width:356.222845pt;}
._19{width:357.866957pt;}
._1d{width:358.813809pt;}
._18{width:367.006441pt;}
._2a{width:374.848082pt;}
._20{width:377.213698pt;}
._65{width:382.231654pt;}
._42{width:386.921966pt;}
._63{width:394.186854pt;}
._26{width:408.070787pt;}
._66{width:412.071834pt;}
._60{width:447.028838pt;}
._5f{width:466.587546pt;}
._49{width:624.396186pt;}
._4a{width:630.373786pt;}
._3a{width:775.031706pt;}
._36{width:792.725402pt;}
._38{width:803.851747pt;}
._3b{width:868.473549pt;}
._37{width:901.230797pt;}
._39{width:985.809891pt;}
._5a{width:1346.392666pt;}
._12{width:1367.646266pt;}
.fse{font-size:31.614560pt;}
.fsf{font-size:31.880533pt;}
.fsa{font-size:33.474240pt;}
.fsc{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fsd{font-size:40.647680pt;}
.fs5{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:43.038720pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y11{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y33{bottom:56.693333pt;}
.y1ce{bottom:96.544000pt;}
.yd1{bottom:97.848000pt;}
.y9c{bottom:98.904000pt;}
.y1a0{bottom:100.397333pt;}
.y172{bottom:109.061333pt;}
.y1fe{bottom:112.233333pt;}
.y32{bottom:114.021333pt;}
.y232{bottom:114.066667pt;}
.y1cd{bottom:114.556000pt;}
.y13b{bottom:115.072000pt;}
.yd0{bottom:115.860000pt;}
.y9b{bottom:116.917333pt;}
.y19f{bottom:118.410667pt;}
.y171{bottom:127.073333pt;}
.y1fd{bottom:129.449333pt;}
.y231{bottom:131.281333pt;}
.y31{bottom:132.033333pt;}
.y1cc{bottom:132.568000pt;}
.y13a{bottom:133.084000pt;}
.ycf{bottom:133.873333pt;}
.y9a{bottom:134.929333pt;}
.y19e{bottom:136.422667pt;}
.y170{bottom:145.085333pt;}
.y1fc{bottom:146.664000pt;}
.y230{bottom:148.497333pt;}
.y30{bottom:150.046667pt;}
.y1cb{bottom:150.581333pt;}
.y139{bottom:151.097333pt;}
.yce{bottom:151.885333pt;}
.y99{bottom:152.941333pt;}
.y19d{bottom:154.436000pt;}
.y14e{bottom:160.584000pt;}
.y16f{bottom:160.612000pt;}
.y16e{bottom:163.098667pt;}
.y1fb{bottom:163.880000pt;}
.y22f{bottom:165.713333pt;}
.y2f{bottom:168.058667pt;}
.y106{bottom:168.064000pt;}
.y1ca{bottom:168.593333pt;}
.y138{bottom:169.109333pt;}
.y98{bottom:170.954667pt;}
.y19c{bottom:172.448000pt;}
.ycd{bottom:177.868000pt;}
.y14d{bottom:178.596000pt;}
.y1fa{bottom:181.094667pt;}
.y16d{bottom:181.110667pt;}
.y22e{bottom:182.928000pt;}
.y105{bottom:184.084000pt;}
.y104{bottom:186.076000pt;}
.y1c9{bottom:186.606667pt;}
.y137{bottom:187.121333pt;}
.y97{bottom:188.966667pt;}
.y19b{bottom:190.460000pt;}
.y2e{bottom:194.041333pt;}
.y14c{bottom:196.608000pt;}
.y1f9{bottom:198.310667pt;}
.y16c{bottom:199.124000pt;}
.y22d{bottom:200.144000pt;}
.y103{bottom:204.089333pt;}
.y1c8{bottom:204.618667pt;}
.y136{bottom:205.134667pt;}
.y96{bottom:206.980000pt;}
.ycc{bottom:208.156000pt;}
.y19a{bottom:208.473333pt;}
.y14b{bottom:214.621333pt;}
.y1f8{bottom:215.526667pt;}
.y16b{bottom:217.136000pt;}
.yca{bottom:217.268000pt;}
.y22c{bottom:217.358667pt;}
.y102{bottom:222.101333pt;}
.y1c7{bottom:222.630667pt;}
.y135{bottom:223.146667pt;}
.y95{bottom:224.992000pt;}
.y199{bottom:226.485333pt;}
.ycb{bottom:229.101333pt;}
.y14a{bottom:232.633333pt;}
.y1f7{bottom:232.741333pt;}
.y22b{bottom:234.574667pt;}
.y16a{bottom:235.148000pt;}
.y101{bottom:240.113333pt;}
.y1c6{bottom:240.644000pt;}
.y134{bottom:241.160000pt;}
.y94{bottom:243.004000pt;}
.y198{bottom:244.498667pt;}
.y1f6{bottom:249.957333pt;}
.y149{bottom:250.646667pt;}
.y169{bottom:250.674667pt;}
.y22a{bottom:251.790667pt;}
.y168{bottom:253.161333pt;}
.y5f{bottom:253.541333pt;}
.yc9{bottom:256.405333pt;}
.y100{bottom:258.126667pt;}
.y1c5{bottom:258.656000pt;}
.y133{bottom:259.172000pt;}
.y93{bottom:261.017333pt;}
.y2d{bottom:261.966667pt;}
.y197{bottom:262.510667pt;}
.y1f5{bottom:267.172000pt;}
.y148{bottom:268.658667pt;}
.y229{bottom:269.005333pt;}
.y167{bottom:271.173333pt;}
.y5e{bottom:271.554667pt;}
.yc8{bottom:274.417333pt;}
.yff{bottom:276.138667pt;}
.y1c4{bottom:276.669333pt;}
.y132{bottom:277.184000pt;}
.y92{bottom:279.029333pt;}
.y196{bottom:280.522667pt;}
.y1f4{bottom:284.388000pt;}
.y228{bottom:286.221333pt;}
.yd8{bottom:286.670667pt;}
.y166{bottom:289.186667pt;}
.y5d{bottom:289.566667pt;}
.yc7{bottom:292.430667pt;}
.yfe{bottom:294.152000pt;}
.y1c3{bottom:294.681333pt;}
.y131{bottom:295.197333pt;}
.y2c{bottom:295.920000pt;}
.y91{bottom:297.042667pt;}
.y195{bottom:298.536000pt;}
.y1f3{bottom:301.604000pt;}
.y227{bottom:303.437333pt;}
.yd7{bottom:304.684000pt;}
.y165{bottom:307.198667pt;}
.y5c{bottom:307.580000pt;}
.yc6{bottom:307.928000pt;}
.yc4{bottom:310.442667pt;}
.yfd{bottom:312.164000pt;}
.y1c2{bottom:312.693333pt;}
.y130{bottom:313.209333pt;}
.y2b{bottom:313.932000pt;}
.y90{bottom:315.054667pt;}
.yc5{bottom:315.264000pt;}
.y194{bottom:316.548000pt;}
.y1f2{bottom:318.818667pt;}
.y226{bottom:320.652000pt;}
.yd6{bottom:322.696000pt;}
.y164{bottom:325.210667pt;}
.y5b{bottom:325.592000pt;}
.yc3{bottom:325.941333pt;}
.yc1{bottom:328.454667pt;}
.yfc{bottom:330.176000pt;}
.y1c1{bottom:330.706667pt;}
.y12e{bottom:331.222667pt;}
.y2a{bottom:331.945333pt;}
.y8f{bottom:333.066667pt;}
.yc2{bottom:333.277333pt;}
.y192{bottom:334.561333pt;}
.y1f1{bottom:336.034667pt;}
.y12f{bottom:336.044000pt;}
.y225{bottom:337.868000pt;}
.y193{bottom:339.382667pt;}
.yd5{bottom:340.709333pt;}
.y5a{bottom:343.604000pt;}
.yfb{bottom:348.189333pt;}
.y1c0{bottom:348.718667pt;}
.y12d{bottom:349.234667pt;}
.y29{bottom:349.957333pt;}
.y8e{bottom:351.080000pt;}
.y191{bottom:352.573333pt;}
.y1f0{bottom:353.249333pt;}
.y224{bottom:355.082667pt;}
.y163{bottom:356.322667pt;}
.yc0{bottom:356.874667pt;}
.y147{bottom:358.721333pt;}
.y59{bottom:361.617333pt;}
.ybe{bottom:365.988000pt;}
.yfa{bottom:366.201333pt;}
.y8d{bottom:366.605333pt;}
.yd4{bottom:366.692000pt;}
.y1bf{bottom:366.732000pt;}
.y12b{bottom:367.246667pt;}
.y28{bottom:367.969333pt;}
.y8c{bottom:369.092000pt;}
.y1ef{bottom:370.465333pt;}
.y190{bottom:370.585333pt;}
.y12c{bottom:372.069333pt;}
.y223{bottom:372.298667pt;}
.y146{bottom:376.733333pt;}
.ybf{bottom:378.898667pt;}
.y58{bottom:379.629333pt;}
.yf9{bottom:384.214667pt;}
.y1be{bottom:384.744000pt;}
.y12a{bottom:385.260000pt;}
.y27{bottom:385.982667pt;}
.y8b{bottom:387.105333pt;}
.y1ee{bottom:387.681333pt;}
.y18f{bottom:388.598667pt;}
.y222{bottom:389.514667pt;}
.y145{bottom:394.746667pt;}
.y57{bottom:397.642667pt;}
.yf8{bottom:402.226667pt;}
.y1bd{bottom:402.756000pt;}
.y129{bottom:403.272000pt;}
.y26{bottom:403.994667pt;}
.y1ed{bottom:404.896000pt;}
.y8a{bottom:405.117333pt;}
.y220{bottom:406.729333pt;}
.y221{bottom:411.069333pt;}
.ybd{bottom:412.758667pt;}
.y18e{bottom:414.581333pt;}
.y56{bottom:415.654667pt;}
.yf7{bottom:420.238667pt;}
.y1bc{bottom:420.769333pt;}
.y128{bottom:421.285333pt;}
.y24{bottom:422.008000pt;}
.y1ec{bottom:422.112000pt;}
.y89{bottom:423.129333pt;}
.y21f{bottom:423.945333pt;}
.y25{bottom:426.829333pt;}
.ybc{bottom:430.772000pt;}
.y55{bottom:433.666667pt;}
.yf6{bottom:438.252000pt;}
.y1bb{bottom:438.781333pt;}
.y127{bottom:439.297333pt;}
.y1eb{bottom:439.326667pt;}
.y22{bottom:440.020000pt;}
.y88{bottom:441.142667pt;}
.y21e{bottom:441.160000pt;}
.y23{bottom:444.841333pt;}
.y18d{bottom:445.532000pt;}
.ybb{bottom:448.784000pt;}
.y53{bottom:451.680000pt;}
.yf5{bottom:456.264000pt;}
.y54{bottom:456.501333pt;}
.y1ea{bottom:456.542667pt;}
.y21{bottom:458.032000pt;}
.y21d{bottom:458.376000pt;}
.y87{bottom:459.154667pt;}
.y18c{bottom:463.544000pt;}
.y1ba{bottom:464.764000pt;}
.yba{bottom:466.796000pt;}
.y52{bottom:469.692000pt;}
.y1e9{bottom:473.758667pt;}
.yf4{bottom:474.277333pt;}
.y21c{bottom:475.592000pt;}
.y20{bottom:476.045333pt;}
.y86{bottom:477.166667pt;}
.y126{bottom:480.982667pt;}
.y18b{bottom:481.557333pt;}
.yb8{bottom:484.809333pt;}
.y51{bottom:487.704000pt;}
.yb9{bottom:489.630667pt;}
.y1e8{bottom:490.973333pt;}
.yf3{bottom:492.289333pt;}
.yd3{bottom:492.526667pt;}
.y21b{bottom:492.806667pt;}
.y1f{bottom:494.057333pt;}
.y85{bottom:495.180000pt;}
.y125{bottom:495.594667pt;}
.y1b9{bottom:495.714667pt;}
.y18a{bottom:499.569333pt;}
.yb7{bottom:502.821333pt;}
.y50{bottom:505.717333pt;}
.y1e7{bottom:508.189333pt;}
.y21a{bottom:510.022667pt;}
.yf1{bottom:510.301333pt;}
.y1e{bottom:512.069333pt;}
.y84{bottom:513.192000pt;}
.y1b8{bottom:513.728000pt;}
.yf2{bottom:515.124000pt;}
.y123{bottom:516.609333pt;}
.y189{bottom:517.581333pt;}
.yb6{bottom:520.834667pt;}
.y4f{bottom:523.729333pt;}
.y122{bottom:523.914667pt;}
.y1e6{bottom:525.404000pt;}
.y219{bottom:527.237333pt;}
.yf0{bottom:528.314667pt;}
.y1c{bottom:530.082667pt;}
.y124{bottom:531.221333pt;}
.y1b7{bottom:531.740000pt;}
.y1d{bottom:534.904000pt;}
.yb5{bottom:538.846667pt;}
.y83{bottom:539.174667pt;}
.y4e{bottom:541.742667pt;}
.y1e5{bottom:542.620000pt;}
.y218{bottom:544.453333pt;}
.yef{bottom:546.326667pt;}
.y1b{bottom:548.094667pt;}
.y1b6{bottom:549.752000pt;}
.yb4{bottom:556.858667pt;}
.y121{bottom:559.326667pt;}
.y188{bottom:559.626667pt;}
.y4d{bottom:559.754667pt;}
.y1e4{bottom:559.836000pt;}
.y217{bottom:561.669333pt;}
.y1a{bottom:566.108000pt;}
.y1b5{bottom:567.765333pt;}
.y82{bottom:570.125333pt;}
.yee{bottom:572.309333pt;}
.yb2{bottom:574.872000pt;}
.y187{bottom:574.956000pt;}
.y1e3{bottom:577.050667pt;}
.y4c{bottom:577.766667pt;}
.y216{bottom:578.884000pt;}
.yb3{bottom:579.693333pt;}
.y19{bottom:584.120000pt;}
.y1b4{bottom:585.777333pt;}
.y186{bottom:590.286667pt;}
.yb1{bottom:590.892000pt;}
.y120{bottom:592.316000pt;}
.yb0{bottom:592.884000pt;}
.y1e2{bottom:594.266667pt;}
.y4b{bottom:595.780000pt;}
.y215{bottom:596.100000pt;}
.y18{bottom:602.132000pt;}
.yed{bottom:603.260000pt;}
.y1b3{bottom:603.790667pt;}
.y185{bottom:605.616000pt;}
.y81{bottom:608.358267pt;}
.y11f{bottom:610.328000pt;}
.yaf{bottom:610.896000pt;}
.y1e1{bottom:611.481333pt;}
.y214{bottom:613.314667pt;}
.y4a{bottom:613.792000pt;}
.yd2{bottom:618.614667pt;}
.y17{bottom:620.145333pt;}
.y184{bottom:620.946667pt;}
.yec{bottom:621.273333pt;}
.y1b2{bottom:621.802667pt;}
.y80{bottom:621.831867pt;}
.y7e{bottom:622.154667pt;}
.y11e{bottom:628.340000pt;}
.y1e0{bottom:628.697333pt;}
.y7d{bottom:628.730667pt;}
.yad{bottom:628.909333pt;}
.y213{bottom:630.530667pt;}
.y49{bottom:631.805333pt;}
.yae{bottom:633.730667pt;}
.y7f{bottom:634.982667pt;}
.y183{bottom:636.276000pt;}
.y16{bottom:638.157333pt;}
.yeb{bottom:639.285333pt;}
.y1b1{bottom:639.814667pt;}
.y1df{bottom:645.913333pt;}
.y11d{bottom:646.353333pt;}
.yac{bottom:646.921333pt;}
.y212{bottom:647.746667pt;}
.y7c{bottom:648.779067pt;}
.y7a{bottom:649.101867pt;}
.y48{bottom:649.817333pt;}
.y182{bottom:651.605333pt;}
.y79{bottom:655.677867pt;}
.y15{bottom:656.170667pt;}
.yea{bottom:657.297333pt;}
.y1b0{bottom:657.828000pt;}
.y7b{bottom:661.929867pt;}
.y162{bottom:662.240000pt;}
.y1de{bottom:663.128000pt;}
.y11c{bottom:664.365333pt;}
.yab{bottom:664.934667pt;}
.y211{bottom:664.961333pt;}
.y181{bottom:666.576000pt;}
.y47{bottom:667.829333pt;}
.y14{bottom:674.182667pt;}
.ye9{bottom:675.310667pt;}
.y1af{bottom:675.840000pt;}
.y78{bottom:676.050267pt;}
.y161{bottom:680.253333pt;}
.y1dd{bottom:680.344000pt;}
.y210{bottom:682.177333pt;}
.y11b{bottom:682.378667pt;}
.ya9{bottom:682.946667pt;}
.y46{bottom:685.842667pt;}
.y180{bottom:687.590667pt;}
.yaa{bottom:687.769333pt;}
.y77{bottom:689.846667pt;}
.y13{bottom:692.194667pt;}
.ye8{bottom:693.322667pt;}
.y1ae{bottom:693.853333pt;}
.y1dc{bottom:697.558667pt;}
.y160{bottom:698.265333pt;}
.y20f{bottom:699.392000pt;}
.y11a{bottom:700.390667pt;}
.ya8{bottom:700.958667pt;}
.y75{bottom:703.320267pt;}
.y45{bottom:703.854667pt;}
.y74{bottom:709.896267pt;}
.ye7{bottom:711.336000pt;}
.y1ad{bottom:711.865333pt;}
.y1db{bottom:714.774667pt;}
.y17f{bottom:715.697333pt;}
.y15f{bottom:716.277333pt;}
.y76{bottom:716.471067pt;}
.y20e{bottom:716.608000pt;}
.y119{bottom:718.402667pt;}
.ya7{bottom:718.972000pt;}
.y44{bottom:721.868000pt;}
.y10{bottom:723.690634pt;}
.yf{bottom:724.372000pt;}
.ye6{bottom:729.348000pt;}
.y73{bottom:729.621867pt;}
.y1ac{bottom:729.877333pt;}
.y72{bottom:729.944667pt;}
.y1da{bottom:731.990667pt;}
.y20d{bottom:733.824000pt;}
.y15e{bottom:734.290667pt;}
.y118{bottom:736.416000pt;}
.ya6{bottom:736.984000pt;}
.y43{bottom:739.880000pt;}
.y71{bottom:743.095467pt;}
.ye5{bottom:747.360000pt;}
.y1ab{bottom:747.890667pt;}
.y17e{bottom:748.685333pt;}
.y1d9{bottom:749.205333pt;}
.y20c{bottom:751.038667pt;}
.y15d{bottom:752.302667pt;}
.y117{bottom:754.428000pt;}
.ya5{bottom:754.997333pt;}
.y70{bottom:756.569067pt;}
.y42{bottom:757.892000pt;}
.ye{bottom:759.044000pt;}
.y1d8{bottom:766.421333pt;}
.y17d{bottom:766.697333pt;}
.y20b{bottom:768.254667pt;}
.y6f{bottom:769.719867pt;}
.ya4{bottom:773.009333pt;}
.ye4{bottom:773.342667pt;}
.yd{bottom:775.184000pt;}
.y41{bottom:775.905333pt;}
.y6e{bottom:783.193467pt;}
.y1d7{bottom:783.636000pt;}
.y20a{bottom:785.469333pt;}
.y1aa{bottom:788.405333pt;}
.ya3{bottom:791.021333pt;}
.yc{bottom:791.322667pt;}
.y40{bottom:793.917333pt;}
.y6d{bottom:796.991067pt;}
.y1d6{bottom:800.852000pt;}
.y209{bottom:802.685333pt;}
.y1a9{bottom:803.017333pt;}
.y17c{bottom:805.033333pt;}
.y15c{bottom:805.197333pt;}
.y116{bottom:807.322667pt;}
.yb{bottom:807.462667pt;}
.ya2{bottom:809.034667pt;}
.y6c{bottom:810.787467pt;}
.y3f{bottom:811.930667pt;}
.ye3{bottom:812.026667pt;}
.y1a8{bottom:817.629333pt;}
.y17b{bottom:817.653333pt;}
.ye2{bottom:818.813333pt;}
.y208{bottom:819.901333pt;}
.y17a{bottom:821.510667pt;}
.y15b{bottom:823.633533pt;}
.y6b{bottom:824.261067pt;}
.y235{bottom:825.126667pt;}
.y115{bottom:825.453267pt;}
.y1d5{bottom:826.037333pt;}
.ya1{bottom:827.046667pt;}
.y3e{bottom:829.942667pt;}
.y114{bottom:830.917067pt;}
.ya{bottom:831.572000pt;}
.y1a7{bottom:832.240000pt;}
.y144{bottom:835.017333pt;}
.y15a{bottom:836.663467pt;}
.y207{bottom:837.116000pt;}
.y179{bottom:837.301333pt;}
.y6a{bottom:837.411867pt;}
.ye1{bottom:841.969333pt;}
.y234{bottom:842.341333pt;}
.ya0{bottom:845.060000pt;}
.y1a6{bottom:846.852000pt;}
.y3d{bottom:847.954667pt;}
.y159{bottom:849.694533pt;}
.y113{bottom:850.293667pt;}
.y69{bottom:850.562667pt;}
.y178{bottom:852.632000pt;}
.y206{bottom:854.332000pt;}
.y112{bottom:855.756333pt;}
.ye0{bottom:856.580000pt;}
.y233{bottom:859.557333pt;}
.y1d4{bottom:861.106667pt;}
.y158{bottom:862.724467pt;}
.y9f{bottom:863.072000pt;}
.y68{bottom:863.713467pt;}
.y3c{bottom:865.968000pt;}
.y1a4{bottom:867.866667pt;}
.y177{bottom:867.961333pt;}
.y9{bottom:871.160000pt;}
.ydf{bottom:871.192000pt;}
.y205{bottom:871.546667pt;}
.y111{bottom:875.134067pt;}
.y1a3{bottom:875.172000pt;}
.y67{bottom:876.864267pt;}
.y110{bottom:880.502667pt;}
.y157{bottom:880.891800pt;}
.y9e{bottom:881.084000pt;}
.y143{bottom:881.493333pt;}
.y1a5{bottom:882.478667pt;}
.y1d3{bottom:882.585333pt;}
.y176{bottom:883.292000pt;}
.y3b{bottom:883.980000pt;}
.yde{bottom:885.804000pt;}
.y204{bottom:888.762667pt;}
.y142{bottom:888.802667pt;}
.y66{bottom:890.337867pt;}
.y8{bottom:898.178667pt;}
.y175{bottom:898.621333pt;}
.y156{bottom:899.059133pt;}
.y141{bottom:899.506667pt;}
.y10f{bottom:899.974467pt;}
.ydd{bottom:900.416000pt;}
.y3a{bottom:901.993333pt;}
.y1d2{bottom:904.065333pt;}
.y65{bottom:904.134267pt;}
.y10e{bottom:905.437133pt;}
.y203{bottom:905.978667pt;}
.y9d{bottom:907.066667pt;}
.y1a2{bottom:910.584000pt;}
.y155{bottom:912.089067pt;}
.y174{bottom:913.950667pt;}
.ydc{bottom:915.028000pt;}
.y13f{bottom:917.518667pt;}
.y1d1{bottom:917.574667pt;}
.y39{bottom:920.005333pt;}
.y202{bottom:923.193333pt;}
.y64{bottom:923.370267pt;}
.y154{bottom:924.814133pt;}
.y140{bottom:924.826667pt;}
.y7{bottom:925.198667pt;}
.y1a1{bottom:927.680000pt;}
.y173{bottom:929.281333pt;}
.ydb{bottom:929.640000pt;}
.y10d{bottom:930.256000pt;}
.y1d0{bottom:931.084000pt;}
.y109{bottom:936.465533pt;}
.y62{bottom:936.521067pt;}
.y38{bottom:938.017333pt;}
.y201{bottom:940.409333pt;}
.y10b{bottom:942.676200pt;}
.y152{bottom:942.676600pt;}
.y13e{bottom:942.840000pt;}
.yda{bottom:944.252000pt;}
.y1cf{bottom:944.593333pt;}
.y107{bottom:948.885733pt;}
.y150{bottom:948.886133pt;}
.y63{bottom:949.671867pt;}
.y6{bottom:952.217333pt;}
.y13c{bottom:953.544000pt;}
.y14f{bottom:955.095667pt;}
.y10a{bottom:955.096400pt;}
.y37{bottom:956.030667pt;}
.y200{bottom:957.624000pt;}
.y13d{bottom:960.852000pt;}
.y108{bottom:961.305933pt;}
.y153{bottom:961.306333pt;}
.yd9{bottom:965.265333pt;}
.y151{bottom:967.515867pt;}
.y10c{bottom:967.516600pt;}
.y36{bottom:974.042667pt;}
.y1ff{bottom:974.840000pt;}
.y61{bottom:976.276000pt;}
.y5{bottom:977.906667pt;}
.y35{bottom:992.056000pt;}
.y60{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.h27{height:19.063762pt;}
.h22{height:22.088881pt;}
.h9{height:22.673858pt;}
.hf{height:24.760382pt;}
.h37{height:28.947524pt;}
.h1d{height:29.064225pt;}
.h25{height:29.266330pt;}
.hb{height:29.433775pt;}
.h20{height:29.599908pt;}
.h26{height:29.632159pt;}
.ha{height:30.399505pt;}
.h11{height:30.987878pt;}
.h12{height:31.375227pt;}
.h39{height:33.771789pt;}
.h3a{height:33.904947pt;}
.h28{height:34.236350pt;}
.h2a{height:34.240883pt;}
.h10{height:34.430976pt;}
.h3{height:35.024664pt;}
.h13{height:36.255053pt;}
.h4{height:36.445809pt;}
.hd{height:36.666735pt;}
.h2c{height:36.908093pt;}
.h32{height:37.671911pt;}
.h7{height:38.256384pt;}
.he{height:38.596538pt;}
.h31{height:38.681455pt;}
.h5{height:38.947124pt;}
.h15{height:39.079158pt;}
.h30{height:40.278059pt;}
.h34{height:42.238020pt;}
.h33{height:42.242554pt;}
.h8{height:43.421286pt;}
.h38{height:43.660390pt;}
.h17{height:44.722610pt;}
.h14{height:44.727410pt;}
.h2{height:45.272024pt;}
.h19{height:46.018610pt;}
.hc{height:48.245551pt;}
.h35{height:49.691789pt;}
.h36{height:49.697122pt;}
.h29{height:54.108996pt;}
.h1e{height:55.076231pt;}
.h21{height:55.952068pt;}
.h2f{height:63.657643pt;}
.h2e{height:64.733693pt;}
.h2b{height:64.738227pt;}
.h2d{height:65.114493pt;}
.h1b{height:65.378358pt;}
.h1a{height:65.383158pt;}
.h1c{height:66.674358pt;}
.h6{height:68.861952pt;}
.h16{height:71.026610pt;}
.h23{height:72.647953pt;}
.h24{height:82.433122pt;}
.h1f{height:84.698884pt;}
.h18{height:97.330610pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:26.021437pt;}
.x2{left:52.456952pt;}
.x1{left:102.046667pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x9e{left:116.320400pt;}
.x6a{left:121.069333pt;}
.x45{left:125.742933pt;}
.x70{left:127.322800pt;}
.x39{left:128.243733pt;}
.x1b{left:130.393333pt;}
.x3c{left:131.996133pt;}
.x7f{left:134.202133pt;}
.x7d{left:135.167733pt;}
.xa5{left:136.489200pt;}
.xaa{left:137.704000pt;}
.x38{left:139.726533pt;}
.x44{left:141.206133pt;}
.x4c{left:144.828000pt;}
.x3a{left:149.157333pt;}
.x40{left:151.466133pt;}
.x3b{left:153.090933pt;}
.x8b{left:155.116000pt;}
.x36{left:156.414933pt;}
.x4a{left:159.632000pt;}
.x37{left:161.090133pt;}
.x9a{left:163.730667pt;}
.x3e{left:165.668133pt;}
.x3f{left:166.749333pt;}
.x81{left:168.329333pt;}
.x7{left:169.608000pt;}
.x31{left:170.655333pt;}
.x53{left:171.724000pt;}
.x12{left:172.890667pt;}
.x4d{left:174.496000pt;}
.x30{left:176.058667pt;}
.x1a{left:179.270667pt;}
.x7e{left:183.851200pt;}
.x13{left:188.602667pt;}
.x6b{left:191.509333pt;}
.x82{left:192.604000pt;}
.x91{left:194.566667pt;}
.x69{left:201.204000pt;}
.xa7{left:203.645333pt;}
.x71{left:205.984067pt;}
.x85{left:207.028000pt;}
.x1e{left:208.646667pt;}
.x86{left:212.456000pt;}
.x4e{left:213.636000pt;}
.xa{left:215.754667pt;}
.xb8{left:217.865333pt;}
.x68{left:219.232000pt;}
.x1f{left:221.824000pt;}
.xc3{left:223.704000pt;}
.xc5{left:225.868000pt;}
.xb0{left:227.369333pt;}
.x4f{left:229.698667pt;}
.xb{left:231.468000pt;}
.x20{left:235.106667pt;}
.xc4{left:237.545333pt;}
.xab{left:243.901333pt;}
.x80{left:246.453333pt;}
.x50{left:247.384000pt;}
.xac{left:249.845333pt;}
.x9f{left:252.171933pt;}
.x87{left:257.088000pt;}
.xbf{left:259.428000pt;}
.x64{left:261.929333pt;}
.xc0{left:268.573333pt;}
.x88{left:272.877333pt;}
.x65{left:274.246667pt;}
.x92{left:275.884000pt;}
.x6f{left:279.117333pt;}
.x66{left:284.453333pt;}
.x93{left:288.349333pt;}
.x67{left:290.397333pt;}
.x72{left:297.626533pt;}
.x73{left:305.242533pt;}
.xa1{left:310.001400pt;}
.xb6{left:315.928000pt;}
.xa0{left:320.447333pt;}
.xb9{left:321.354667pt;}
.x46{left:322.545333pt;}
.x3d{left:323.567733pt;}
.xba{left:324.786667pt;}
.x57{left:328.940000pt;}
.x8c{left:336.554667pt;}
.x1c{left:339.089333pt;}
.x5f{left:340.021333pt;}
.x58{left:341.405333pt;}
.x1d{left:345.730667pt;}
.x8d{left:350.340000pt;}
.x14{left:351.646667pt;}
.x54{left:353.318667pt;}
.xa6{left:355.967133pt;}
.x4b{left:360.033333pt;}
.x75{left:361.426400pt;}
.xa8{left:362.884000pt;}
.x15{left:365.653333pt;}
.x6e{left:369.233333pt;}
.x74{left:370.802467pt;}
.xa9{left:372.790667pt;}
.x8{left:376.438667pt;}
.x94{left:378.005333pt;}
.x48{left:379.886667pt;}
.x55{left:384.125333pt;}
.x90{left:386.465333pt;}
.x9{left:388.904000pt;}
.x95{left:392.040000pt;}
.x49{left:393.170667pt;}
.xc{left:394.517333pt;}
.x60{left:396.328000pt;}
.xbb{left:399.170667pt;}
.x33{left:402.023733pt;}
.x56{left:406.289333pt;}
.x5a{left:407.437333pt;}
.xb1{left:408.749333pt;}
.xd{left:410.230667pt;}
.x8e{left:416.873333pt;}
.x76{left:418.152000pt;}
.x32{left:420.599733pt;}
.x61{left:422.285333pt;}
.x41{left:423.354933pt;}
.x34{left:425.022933pt;}
.x23{left:427.794667pt;}
.x8f{left:429.338667pt;}
.xae{left:431.800000pt;}
.x5b{left:433.266667pt;}
.x77{left:435.442133pt;}
.x5c{left:436.737333pt;}
.x43{left:439.245333pt;}
.x24{left:441.077333pt;}
.xad{left:443.712000pt;}
.x25{left:447.852000pt;}
.x6d{left:453.548000pt;}
.x21{left:457.302667pt;}
.x96{left:459.322667pt;}
.x26{left:461.136000pt;}
.x16{left:468.092000pt;}
.x22{left:470.585333pt;}
.x97{left:471.789333pt;}
.xbd{left:475.106667pt;}
.x9b{left:476.217333pt;}
.x29{left:479.238667pt;}
.xa2{left:481.605067pt;}
.x17{left:483.805333pt;}
.x83{left:484.797333pt;}
.xe{left:485.734667pt;}
.x9c{left:488.682667pt;}
.x2a{left:492.521333pt;}
.x78{left:495.719600pt;}
.xf{left:501.449333pt;}
.x6c{left:508.374667pt;}
.x89{left:511.148000pt;}
.x84{left:525.834667pt;}
.x8a{left:527.608000pt;}
.xbe{left:529.100000pt;}
.xb2{left:539.628000pt;}
.xaf{left:540.802667pt;}
.x35{left:547.053333pt;}
.x79{left:548.204267pt;}
.x27{left:550.189333pt;}
.x42{left:552.131733pt;}
.xa3{left:560.571200pt;}
.x28{left:563.473333pt;}
.x2b{left:578.437333pt;}
.x2c{left:586.642667pt;}
.x47{left:596.580000pt;}
.x7c{left:604.583067pt;}
.x2d{left:606.637333pt;}
.x7b{left:613.858267pt;}
.x7a{left:616.596400pt;}
.xbc{left:621.028000pt;}
.x62{left:622.358667pt;}
.x5{left:623.413317pt;}
.x2e{left:627.798667pt;}
.x63{left:633.118667pt;}
.x2f{left:634.440000pt;}
.xa4{left:638.011867pt;}
.x51{left:640.414667pt;}
.xb3{left:642.306667pt;}
.x59{left:643.397333pt;}
.x18{left:646.848000pt;}
.x9d{left:652.589333pt;}
.x52{left:653.697333pt;}
.xc1{left:655.778667pt;}
.x19{left:662.561333pt;}
.x10{left:664.497333pt;}
.xb4{left:666.217333pt;}
.x98{left:668.874667pt;}
.xc2{left:671.232000pt;}
.x5d{left:672.348000pt;}
.xb5{left:677.286667pt;}
.x11{left:680.210667pt;}
.x99{left:682.945333pt;}
.x5e{left:685.632000pt;}
.xb7{left:690.100000pt;}
}




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