
    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_72f58067941476b7899fc426.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_fc8742231983b5eb600913ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_424f8b1ddc9d14038bd6f189.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_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_15f2f78e8f9c3d5e61e571e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_408ecf225c1e1003509ed358.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3d092ad927fd7fc1cd797367.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.743000;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_4509d9cb7e97f6d83d177324.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_3e4585ccc0e90e183aabcee7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_1c0a37a47eeb561616d7aaa3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_67318b53e05973e7c5a67d20.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_658027fe06d3e2d508a70a4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_8d2de3c91c1c1c276efd9f92.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;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_4e53625f5e6e10c3a4b29be6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_3e4585ccc0e90e183aabcee7.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;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_1c0a37a47eeb561616d7aaa3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006836;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_67318b53e05973e7c5a67d20.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_658027fe06d3e2d508a70a4f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8d2de3c91c1c1c276efd9f92.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4e53625f5e6e10c3a4b29be6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;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;}
.m6{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);}
.m17{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m15{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m19{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);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m24{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);}
.m12{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);}
.m1f{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);}
.m20{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);}
.m1{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);}
.m22{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.mb{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);}
.m28{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);}
.mf{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1d{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);}
.m1b{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);}
.m26{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);}
.m1a{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);}
.m23{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);}
.m11{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);}
.md{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);}
.m25{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);}
.m7{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);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m4{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);}
.m3{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v8{vertical-align:-15.192000px;}
.v3{vertical-align:-11.958000px;}
.v6{vertical-align:-8.406000px;}
.v7{vertical-align:-7.176000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.368000px;}
.v4{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:41.844000px;}
.ls16{letter-spacing:-0.360000px;}
.ls7{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000406px;}
.ls23{letter-spacing:0.000503px;}
.ls32{letter-spacing:0.000589px;}
.ls34{letter-spacing:0.000676px;}
.ls2c{letter-spacing:0.000959px;}
.ls2d{letter-spacing:0.001102px;}
.ls3a{letter-spacing:0.001276px;}
.ls31{letter-spacing:0.001303px;}
.ls26{letter-spacing:0.002220px;}
.ls2{letter-spacing:0.002725px;}
.ls27{letter-spacing:0.002773px;}
.ls2a{letter-spacing:0.002928px;}
.ls2f{letter-spacing:0.003075px;}
.ls37{letter-spacing:0.003437px;}
.ls9{letter-spacing:0.003746px;}
.ls2b{letter-spacing:0.003968px;}
.ls35{letter-spacing:0.004749px;}
.ls33{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.140040px;}
.ls12{letter-spacing:0.180000px;}
.ls3{letter-spacing:2.989200px;}
.ls1c{letter-spacing:10.458600px;}
.ls1d{letter-spacing:10.460700px;}
.ls0{letter-spacing:10.461300px;}
.ls1a{letter-spacing:10.464600px;}
.ls1b{letter-spacing:10.961764px;}
.ls18{letter-spacing:10.967764px;}
.lsc{letter-spacing:11.951700px;}
.ls6{letter-spacing:11.954850px;}
.lsd{letter-spacing:11.957700px;}
.lsb{letter-spacing:12.524693px;}
.lsa{letter-spacing:12.530693px;}
.ls15{letter-spacing:13.444800px;}
.ls20{letter-spacing:13.447817px;}
.ls1f{letter-spacing:13.448047px;}
.ls19{letter-spacing:13.448100px;}
.ls25{letter-spacing:13.448400px;}
.ls14{letter-spacing:13.450800px;}
.ls39{letter-spacing:13.451499px;}
.ls22{letter-spacing:13.453817px;}
.ls21{letter-spacing:13.454047px;}
.ls1e{letter-spacing:13.454100px;}
.ls28{letter-spacing:13.454400px;}
.ls38{letter-spacing:13.547373px;}
.ls30{letter-spacing:13.559445px;}
.ls36{letter-spacing:13.696445px;}
.ls2e{letter-spacing:13.718596px;}
.ls3b{letter-spacing:14.115106px;}
.ls24{letter-spacing:14.726713px;}
.lsf{letter-spacing:15.157793px;}
.ls17{letter-spacing:15.601432px;}
.ls10{letter-spacing:15.663483px;}
.ls11{letter-spacing:16.677392px;}
.ls8{letter-spacing:16.914546px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.lse{letter-spacing:192.593740px;}
.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;}
}
.wsb{word-spacing:-28.532313px;}
.ws82{word-spacing:-20.921400px;}
.wsf{word-spacing:-14.943900px;}
.ws76{word-spacing:-13.500000px;}
.wsc1{word-spacing:-13.449600px;}
.ws74{word-spacing:-12.150000px;}
.ws75{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6d{word-spacing:-3.227882px;}
.wsa7{word-spacing:-3.108331px;}
.wsa8{word-spacing:-3.048556px;}
.ws3e{word-spacing:-2.988780px;}
.ws5c{word-spacing:-2.869229px;}
.ws6b{word-spacing:-2.749678px;}
.ws72{word-spacing:-2.689902px;}
.ws3b{word-spacing:-2.211697px;}
.ws35{word-spacing:-2.151922px;}
.wsba{word-spacing:-1.936742px;}
.wsa1{word-spacing:-1.912819px;}
.wsa2{word-spacing:-1.853044px;}
.ws42{word-spacing:-1.673717px;}
.wsc5{word-spacing:-1.506355px;}
.wsa3{word-spacing:-1.434614px;}
.ws2e{word-spacing:-1.315063px;}
.ws2f{word-spacing:-1.255288px;}
.wsd5{word-spacing:-1.183565px;}
.ws8f{word-spacing:-1.075961px;}
.ws66{word-spacing:-1.016185px;}
.ws5f{word-spacing:-0.956410px;}
.ws68{word-spacing:-0.896634px;}
.wsbc{word-spacing:-0.645581px;}
.ws19{word-spacing:-0.537984px;}
.ws79{word-spacing:-0.478205px;}
.ws33{word-spacing:-0.418429px;}
.ws3c{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws65{word-spacing:-0.298878px;}
.ws40{word-spacing:-0.239102px;}
.ws18{word-spacing:-0.215194px;}
.ws87{word-spacing:-0.191282px;}
.ws36{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws59{word-spacing:-0.143462px;}
.ws26{word-spacing:-0.119551px;}
.wsc7{word-spacing:-0.107597px;}
.ws88{word-spacing:-0.095641px;}
.wsc{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wsd2{word-spacing:-0.025190px;}
.ws10{word-spacing:-0.001500px;}
.ws1{word-spacing:0.000000px;}
.ws5a{word-spacing:0.000090px;}
.wsd{word-spacing:0.002134px;}
.ws1e{word-spacing:0.053798px;}
.ws63{word-spacing:0.059776px;}
.ws17{word-spacing:0.107597px;}
.ws3a{word-spacing:0.119551px;}
.ws1f{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws47{word-spacing:0.191282px;}
.wsb6{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.wsb9{word-spacing:0.268992px;}
.ws41{word-spacing:0.298878px;}
.ws6f{word-spacing:0.358654px;}
.wsbf{word-spacing:0.376589px;}
.ws34{word-spacing:0.418429px;}
.ws8d{word-spacing:0.478205px;}
.wsb3{word-spacing:0.484186px;}
.ws80{word-spacing:0.518400px;}
.ws81{word-spacing:0.519000px;}
.ws83{word-spacing:0.519600px;}
.ws84{word-spacing:0.520200px;}
.ws7f{word-spacing:0.524400px;}
.ws7c{word-spacing:0.525000px;}
.ws7e{word-spacing:0.525600px;}
.ws85{word-spacing:0.526200px;}
.wsa0{word-spacing:0.537980px;}
.ws48{word-spacing:0.592800px;}
.wsa5{word-spacing:0.597756px;}
.ws4d{word-spacing:0.598213px;}
.ws4c{word-spacing:0.598500px;}
.ws52{word-spacing:0.598800px;}
.ws56{word-spacing:0.601363px;}
.ws49{word-spacing:0.604213px;}
.ws4a{word-spacing:0.613124px;}
.ws57{word-spacing:0.615974px;}
.wsb4{word-spacing:0.645581px;}
.ws67{word-spacing:0.657532px;}
.ws64{word-spacing:0.717307px;}
.ws20{word-spacing:0.753178px;}
.ws69{word-spacing:0.777083px;}
.ws7b{word-spacing:0.956410px;}
.wsae{word-spacing:1.075961px;}
.wscd{word-spacing:1.129766px;}
.wsab{word-spacing:1.135736px;}
.ws62{word-spacing:1.195512px;}
.ws9a{word-spacing:1.255288px;}
.ws86{word-spacing:1.338977px;}
.ws8b{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws61{word-spacing:1.434614px;}
.ws15{word-spacing:1.506355px;}
.ws9b{word-spacing:1.554166px;}
.wsb5{word-spacing:1.560154px;}
.wsb2{word-spacing:1.613941px;}
.wscb{word-spacing:1.667750px;}
.wsbb{word-spacing:1.721549px;}
.ws60{word-spacing:1.733492px;}
.ws5e{word-spacing:1.912819px;}
.wsd0{word-spacing:1.936742px;}
.ws38{word-spacing:1.972595px;}
.ws45{word-spacing:2.211697px;}
.wsa6{word-spacing:2.271473px;}
.wsaa{word-spacing:2.331248px;}
.ws94{word-spacing:2.391024px;}
.ws1d{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.wsbd{word-spacing:2.582323px;}
.ws5b{word-spacing:2.749678px;}
.ws7a{word-spacing:2.809453px;}
.ws30{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.wsc9{word-spacing:2.958912px;}
.ws9e{word-spacing:2.988780px;}
.ws71{word-spacing:3.108331px;}
.ws70{word-spacing:3.168107px;}
.ws22{word-spacing:3.219667px;}
.wse1{word-spacing:3.221779px;}
.wsc6{word-spacing:3.221808px;}
.wsda{word-spacing:3.223651px;}
.wsac{word-spacing:3.227882px;}
.wsd8{word-spacing:3.227904px;}
.ws1c{word-spacing:3.281702px;}
.wsa9{word-spacing:3.287658px;}
.ws6c{word-spacing:3.347434px;}
.ws27{word-spacing:3.407209px;}
.ws6a{word-spacing:3.466985px;}
.wsbe{word-spacing:3.475844px;}
.wse5{word-spacing:3.496896px;}
.ws23{word-spacing:3.586536px;}
.wsb8{word-spacing:3.604493px;}
.ws24{word-spacing:3.706087px;}
.ws95{word-spacing:3.765863px;}
.ws96{word-spacing:3.825638px;}
.ws89{word-spacing:3.885414px;}
.wsaf{word-spacing:3.945190px;}
.wsb0{word-spacing:4.064741px;}
.ws21{word-spacing:4.088678px;}
.ws9f{word-spacing:4.124516px;}
.ws99{word-spacing:4.184292px;}
.ws44{word-spacing:4.244068px;}
.ws28{word-spacing:4.303843px;}
.ws14{word-spacing:4.411469px;}
.ws78{word-spacing:4.483170px;}
.ws37{word-spacing:4.542946px;}
.ws73{word-spacing:4.662497px;}
.wsa4{word-spacing:4.841824px;}
.ws29{word-spacing:4.961375px;}
.ws2a{word-spacing:5.021150px;}
.ws98{word-spacing:5.140702px;}
.ws8{word-spacing:5.481407px;}
.ws32{word-spacing:5.499355px;}
.ws8e{word-spacing:5.559131px;}
.ws9c{word-spacing:5.618906px;}
.ws2b{word-spacing:5.678682px;}
.ws6e{word-spacing:5.738458px;}
.ws91{word-spacing:5.858009px;}
.ws31{word-spacing:5.917784px;}
.ws54{word-spacing:5.976826px;}
.ws50{word-spacing:5.978026px;}
.ws97{word-spacing:6.037336px;}
.ws77{word-spacing:6.186816px;}
.wsad{word-spacing:6.216662px;}
.ws9d{word-spacing:6.336214px;}
.ws8c{word-spacing:6.515540px;}
.wsb1{word-spacing:6.754643px;}
.ws3d{word-spacing:6.814418px;}
.ws92{word-spacing:7.053521px;}
.ws39{word-spacing:7.113296px;}
.ws8a{word-spacing:7.292623px;}
.ws90{word-spacing:7.890379px;}
.ws93{word-spacing:8.846789px;}
.ws6{word-spacing:9.833058px;}
.wsb7{word-spacing:10.672940px;}
.ws7{word-spacing:11.841512px;}
.ws2c{word-spacing:11.910929px;}
.ws13{word-spacing:12.257096px;}
.ws2{word-spacing:12.929425px;}
.wsde{word-spacing:13.288205px;}
.wsc8{word-spacing:13.387238px;}
.wsd7{word-spacing:13.388342px;}
.wsd6{word-spacing:13.389936px;}
.wsc4{word-spacing:13.394957px;}
.wsd3{word-spacing:13.395802px;}
.wsc0{word-spacing:13.396579px;}
.wse3{word-spacing:13.441991px;}
.wse0{word-spacing:13.449600px;}
.wsd4{word-spacing:13.503398px;}
.wscc{word-spacing:13.658412px;}
.wse4{word-spacing:13.879987px;}
.wsce{word-spacing:14.525568px;}
.ws5d{word-spacing:14.884124px;}
.wsca{word-spacing:15.117350px;}
.wsc3{word-spacing:16.462310px;}
.wscf{word-spacing:16.615402px;}
.wsd1{word-spacing:16.615987px;}
.wse2{word-spacing:16.616678px;}
.wsdb{word-spacing:16.616986px;}
.wsdd{word-spacing:16.619846px;}
.wsdf{word-spacing:16.620230px;}
.wsc2{word-spacing:16.623706px;}
.wsdc{word-spacing:16.677504px;}
.wsd9{word-spacing:17.000294px;}
.ws43{word-spacing:18.470660px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.ws51{word-spacing:134.959687px;}
.ws53{word-spacing:151.516800px;}
.ws58{word-spacing:151.517100px;}
.ws4e{word-spacing:151.523100px;}
.ws4f{word-spacing:163.475100px;}
.ws4b{word-spacing:163.481100px;}
.ws55{word-spacing:166.495768px;}
.ws7d{word-spacing:192.616412px;}
.ws46{word-spacing:203.907038px;}
._37{margin-left:-10.460700px;}
._b{margin-left:-6.694867px;}
._1{margin-left:-5.397721px;}
._0{margin-left:-3.849538px;}
._25{margin-left:-2.692037px;}
._3{margin-left:-1.506341px;}
._24{width:1.020000px;}
._6{width:2.992788px;}
._27{width:4.311601px;}
._28{width:6.072120px;}
._2a{width:7.207718px;}
._26{width:8.476920px;}
._29{width:9.919800px;}
._23{width:11.527805px;}
._2{width:12.971268px;}
._10{width:14.824386px;}
._8{width:16.462282px;}
._2d{width:17.469968px;}
._c{width:18.470660px;}
._a{width:19.475021px;}
._e{width:21.280114px;}
._f{width:22.607128px;}
._13{width:24.029791px;}
._4{width:25.941685px;}
._9{width:27.006797px;}
._d{width:29.230268px;}
._3b{width:30.569233px;}
._5{width:33.355008px;}
._2c{width:35.678496px;}
._3e{width:37.180423px;}
._3c{width:38.925866px;}
._14{width:40.288754px;}
._3d{width:42.739554px;}
._7{width:54.410292px;}
._41{width:61.868160px;}
._3f{width:88.767360px;}
._21{width:106.496476px;}
._2f{width:114.894520px;}
._1c{width:118.451626px;}
._20{width:128.110487px;}
._2e{width:138.499668px;}
._1b{width:140.066537px;}
._18{width:142.361926px;}
._1f{width:154.919866px;}
._17{width:163.976837px;}
._3a{width:165.413012px;}
._31{width:175.877012px;}
._38{width:176.921012px;}
._32{width:186.335012px;}
._39{width:187.385012px;}
._1a{width:193.534435px;}
._30{width:197.843012px;}
._36{width:198.887012px;}
._1e{width:201.186727px;}
._35{width:208.307012px;}
._1d{width:209.813724px;}
._16{width:210.893890px;}
._33{width:217.721012px;}
._34{width:219.287012px;}
._15{width:228.821571px;}
._19{width:258.852908px;}
._2b{width:849.090000px;}
._11{width:878.988649px;}
._22{width:2104.945200px;}
._40{width:2467.370400px;}
._12{width:2491.280400px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs8{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.yd9{bottom:-679.027500px;}
.yd8{bottom:-656.887500px;}
.yd7{bottom:-637.597500px;}
.yd6{bottom:-618.427500px;}
.yd5{bottom:-599.167500px;}
.yd4{bottom:-579.907500px;}
.yd3{bottom:-560.737500px;}
.yd2{bottom:-541.477500px;}
.yd1{bottom:-522.307500px;}
.yd0{bottom:-498.547500px;}
.ycf{bottom:-461.287500px;}
.yce{bottom:-442.117500px;}
.ycd{bottom:-422.857500px;}
.ycc{bottom:-403.687500px;}
.ycb{bottom:-366.877500px;}
.yf5{bottom:-344.893500px;}
.yca{bottom:-344.377500px;}
.yf4{bottom:-322.753500px;}
.yf3{bottom:-303.463500px;}
.yf2{bottom:-284.293500px;}
.yf1{bottom:-265.033500px;}
.yf0{bottom:-245.773500px;}
.yef{bottom:-226.603500px;}
.yee{bottom:-207.343500px;}
.yed{bottom:-188.173500px;}
.yec{bottom:-164.413500px;}
.yeb{bottom:-127.153500px;}
.yea{bottom:-107.983500px;}
.ye9{bottom:-88.723500px;}
.ye8{bottom:-69.553500px;}
.yc9{bottom:-56.977500px;}
.yc8{bottom:-39.607500px;}
.ye7{bottom:-32.743500px;}
.yc7{bottom:-17.197500px;}
.ye6{bottom:-10.243500px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.739201px;}
.y19{bottom:30.271042px;}
.y47{bottom:31.890000px;}
.y17{bottom:104.646000px;}
.y46{bottom:110.602500px;}
.y171{bottom:114.948000px;}
.y187{bottom:119.596500px;}
.y81{bottom:121.465500px;}
.y16{bottom:122.535000px;}
.y1a8{bottom:122.601000px;}
.y45{bottom:129.432000px;}
.y7f{bottom:133.561500px;}
.y1dd{bottom:133.719000px;}
.y170{bottom:133.777500px;}
.y80{bottom:133.869000px;}
.y7e{bottom:135.663000px;}
.yb2{bottom:137.080500px;}
.y186{bottom:138.426000px;}
.y1a7{bottom:139.861500px;}
.y15{bottom:140.422500px;}
.ydf{bottom:143.229000px;}
.y44{bottom:148.261500px;}
.y1dc{bottom:150.978000px;}
.y16f{bottom:152.607000px;}
.y7d{bottom:153.162000px;}
.yb0{bottom:155.910000px;}
.y1a6{bottom:157.122000px;}
.y185{bottom:157.255500px;}
.y14{bottom:158.310000px;}
.yb1{bottom:161.335500px;}
.yde{bottom:162.058500px;}
.y7c{bottom:165.397500px;}
.y43{bottom:167.091000px;}
.y1db{bottom:168.238500px;}
.y16e{bottom:171.436500px;}
.y1a5{bottom:174.381000px;}
.yaf{bottom:174.739500px;}
.y184{bottom:176.085000px;}
.y13{bottom:176.199000px;}
.y7b{bottom:177.633000px;}
.ydd{bottom:180.888000px;}
.y1da{bottom:185.499000px;}
.y42{bottom:185.920500px;}
.y7a{bottom:189.870000px;}
.y16d{bottom:190.266000px;}
.y1a4{bottom:191.641500px;}
.yae{bottom:193.569000px;}
.y12{bottom:194.086500px;}
.y183{bottom:194.914500px;}
.ydc{bottom:199.717500px;}
.y79{bottom:202.105500px;}
.y1d9{bottom:202.759500px;}
.y41{bottom:204.750000px;}
.y1a3{bottom:208.902000px;}
.y16c{bottom:209.095500px;}
.y11{bottom:211.974000px;}
.yad{bottom:212.398500px;}
.y182{bottom:213.744000px;}
.y78{bottom:216.246000px;}
.y12e{bottom:218.706000px;}
.y1d8{bottom:220.020000px;}
.y40{bottom:223.579500px;}
.y16b{bottom:225.682500px;}
.y1a2{bottom:226.162500px;}
.y16a{bottom:227.925000px;}
.y77{bottom:228.481500px;}
.y12c{bottom:229.167000px;}
.y10{bottom:229.863000px;}
.yac{bottom:231.228000px;}
.y181{bottom:232.573500px;}
.y130{bottom:232.963500px;}
.ydb{bottom:233.283000px;}
.y1d7{bottom:237.280500px;}
.y12d{bottom:239.628000px;}
.y76{bottom:240.717000px;}
.y3f{bottom:242.409000px;}
.y1a1{bottom:243.423000px;}
.y169{bottom:246.754500px;}
.yab{bottom:250.057500px;}
.y12b{bottom:250.089000px;}
.y180{bottom:251.403000px;}
.yda{bottom:252.516000px;}
.y12f{bottom:253.885500px;}
.y1d6{bottom:254.541000px;}
.y75{bottom:260.155500px;}
.y1a0{bottom:260.683500px;}
.y3e{bottom:261.238500px;}
.y168{bottom:265.584000px;}
.yaa{bottom:268.887000px;}
.y17f{bottom:270.232500px;}
.y128{bottom:271.009500px;}
.y1d5{bottom:271.801500px;}
.yc4{bottom:274.944000px;}
.ye5{bottom:277.156500px;}
.y3d{bottom:280.068000px;}
.y126{bottom:281.470500px;}
.y19f{bottom:282.426000px;}
.y167{bottom:284.413500px;}
.y12a{bottom:285.268500px;}
.ya9{bottom:287.716500px;}
.y74{bottom:288.906000px;}
.y17e{bottom:289.062000px;}
.y127{bottom:291.931500px;}
.ye4{bottom:294.526500px;}
.yc6{bottom:294.772500px;}
.yf{bottom:297.166500px;}
.y3c{bottom:298.897500px;}
.y125{bottom:302.392500px;}
.y166{bottom:303.241500px;}
.yc5{bottom:304.402500px;}
.y129{bottom:306.189000px;}
.y1d4{bottom:306.321000px;}
.y17d{bottom:307.891500px;}
.ya8{bottom:311.029500px;}
.ye{bottom:315.054000px;}
.y19e{bottom:316.050000px;}
.ye3{bottom:316.936500px;}
.y3b{bottom:317.727000px;}
.y165{bottom:322.071000px;}
.y1d3{bottom:323.581500px;}
.y73{bottom:324.927000px;}
.y122{bottom:325.194000px;}
.y17c{bottom:326.719500px;}
.yd{bottom:332.943000px;}
.y120{bottom:335.655000px;}
.y124{bottom:339.453000px;}
.y1d2{bottom:340.842000px;}
.y164{bottom:340.900500px;}
.y3a{bottom:341.038500px;}
.y19d{bottom:342.591000px;}
.y72{bottom:343.756500px;}
.ya7{bottom:344.653500px;}
.y17b{bottom:345.549000px;}
.y121{bottom:346.116000px;}
.yc{bottom:350.830500px;}
.y11f{bottom:356.577000px;}
.y1d1{bottom:358.102500px;}
.y163{bottom:359.730000px;}
.y19c{bottom:360.165000px;}
.y123{bottom:360.373500px;}
.y71{bottom:362.586000px;}
.ya6{bottom:363.483000px;}
.y17a{bottom:364.378500px;}
.y1d0{bottom:375.363000px;}
.y11c{bottom:377.499000px;}
.y162{bottom:378.559500px;}
.yb{bottom:379.179000px;}
.y70{bottom:381.415500px;}
.ya5{bottom:382.312500px;}
.y179{bottom:383.208000px;}
.y19b{bottom:386.706000px;}
.y11a{bottom:387.960000px;}
.y11e{bottom:391.756500px;}
.y1cf{bottom:392.623500px;}
.ya{bottom:397.066500px;}
.y161{bottom:397.389000px;}
.y11b{bottom:398.419500px;}
.y6f{bottom:400.245000px;}
.ya4{bottom:401.142000px;}
.y178{bottom:402.037500px;}
.y19a{bottom:404.280000px;}
.y119{bottom:408.880500px;}
.y1ce{bottom:409.884000px;}
.y11d{bottom:412.678500px;}
.y39{bottom:416.188500px;}
.y160{bottom:416.218500px;}
.y6e{bottom:419.074500px;}
.ya3{bottom:419.971500px;}
.y177{bottom:420.867000px;}
.y9{bottom:423.921000px;}
.y1cd{bottom:427.144500px;}
.y116{bottom:429.802500px;}
.y199{bottom:430.821000px;}
.y15f{bottom:432.318000px;}
.y15e{bottom:435.048000px;}
.y6d{bottom:437.904000px;}
.ya2{bottom:438.801000px;}
.y176{bottom:439.696500px;}
.y114{bottom:440.263500px;}
.y8{bottom:441.810000px;}
.y118{bottom:444.060000px;}
.y1cc{bottom:444.403500px;}
.y115{bottom:450.724500px;}
.y38{bottom:453.579000px;}
.y15d{bottom:453.877500px;}
.y6c{bottom:456.733500px;}
.y198{bottom:457.360500px;}
.y175{bottom:458.526000px;}
.y7{bottom:459.697500px;}
.y113{bottom:461.185500px;}
.y1cb{bottom:461.664000px;}
.ya1{bottom:462.112500px;}
.y117{bottom:464.982000px;}
.y15c{bottom:472.707000px;}
.y37{bottom:473.035500px;}
.y197{bottom:474.934500px;}
.y174{bottom:477.355500px;}
.y6{bottom:477.585000px;}
.y1ca{bottom:478.924500px;}
.y6b{bottom:480.045000px;}
.y110{bottom:482.106000px;}
.y15b{bottom:491.536500px;}
.y36{bottom:492.493500px;}
.y196{bottom:492.510000px;}
.y10e{bottom:492.567000px;}
.y5{bottom:495.474000px;}
.ya0{bottom:495.736500px;}
.y173{bottom:496.185000px;}
.y112{bottom:496.365000px;}
.y6a{bottom:500.220000px;}
.y10f{bottom:503.028000px;}
.y15a{bottom:510.366000px;}
.y35{bottom:511.950000px;}
.y4{bottom:513.361500px;}
.y1c9{bottom:513.445500px;}
.y10d{bottom:513.489000px;}
.y9f{bottom:514.566000px;}
.y172{bottom:515.014500px;}
.y111{bottom:517.285500px;}
.y195{bottom:519.049500px;}
.y159{bottom:529.195500px;}
.y1c8{bottom:530.706000px;}
.yc3{bottom:531.154500px;}
.y3{bottom:531.249000px;}
.y34{bottom:531.406500px;}
.y9e{bottom:533.395500px;}
.y69{bottom:533.844000px;}
.y10a{bottom:534.411000px;}
.y194{bottom:536.623500px;}
.y108{bottom:544.870500px;}
.yc2{bottom:547.741500px;}
.y1c7{bottom:547.966500px;}
.y158{bottom:548.025000px;}
.y10c{bottom:548.668500px;}
.y2{bottom:549.138000px;}
.yc1{bottom:549.984000px;}
.y33{bottom:550.864500px;}
.y9d{bottom:552.225000px;}
.y68{bottom:552.673500px;}
.y193{bottom:554.197500px;}
.y109{bottom:555.331500px;}
.y1c6{bottom:565.227000px;}
.y107{bottom:565.792500px;}
.yc0{bottom:566.571000px;}
.y157{bottom:566.854500px;}
.y1{bottom:567.025500px;}
.ybf{bottom:568.813500px;}
.y10b{bottom:569.590500px;}
.y32{bottom:570.321000px;}
.y9c{bottom:571.054500px;}
.y67{bottom:571.503000px;}
.y192{bottom:571.771500px;}
.y1c5{bottom:582.487500px;}
.ybe{bottom:585.400500px;}
.y156{bottom:585.684000px;}
.ybd{bottom:587.643000px;}
.y191{bottom:589.347000px;}
.y31{bottom:589.779000px;}
.y9b{bottom:589.884000px;}
.y66{bottom:590.332500px;}
.y103{bottom:593.916000px;}
.y104{bottom:599.146500px;}
.y106{bottom:599.265000px;}
.y1c4{bottom:599.746500px;}
.y101{bottom:604.377000px;}
.y155{bottom:604.513500px;}
.ybc{bottom:606.472500px;}
.y9a{bottom:608.713500px;}
.y65{bottom:609.162000px;}
.y30{bottom:609.235500px;}
.y105{bottom:609.726000px;}
.y102{bottom:614.838000px;}
.y190{bottom:615.886500px;}
.y1c3{bottom:617.007000px;}
.y154{bottom:623.343000px;}
.ybb{bottom:625.302000px;}
.y99{bottom:627.543000px;}
.y64{bottom:627.991500px;}
.y2f{bottom:628.692000px;}
.ye2{bottom:628.906500px;}
.y18f{bottom:633.460500px;}
.y1c2{bottom:634.267500px;}
.ye1{bottom:638.536500px;}
.y153{bottom:642.172500px;}
.yba{bottom:644.131500px;}
.y100{bottom:645.498000px;}
.y98{bottom:646.372500px;}
.y63{bottom:646.821000px;}
.y2e{bottom:648.150000px;}
.y18e{bottom:651.034500px;}
.y1c1{bottom:651.528000px;}
.y152{bottom:661.002000px;}
.y97{bottom:665.202000px;}
.y62{bottom:665.650500px;}
.yb9{bottom:667.443000px;}
.y2d{bottom:667.606500px;}
.y18d{bottom:668.610000px;}
.y1c0{bottom:668.788500px;}
.yff{bottom:678.709500px;}
.y151{bottom:679.831500px;}
.y96{bottom:684.031500px;}
.y61{bottom:684.480000px;}
.y1bf{bottom:686.049000px;}
.y18c{bottom:686.184000px;}
.y2c{bottom:687.063000px;}
.yfe{bottom:697.539000px;}
.y150{bottom:698.661000px;}
.yb8{bottom:701.067000px;}
.y95{bottom:702.861000px;}
.y60{bottom:703.309500px;}
.y2b{bottom:706.521000px;}
.yfd{bottom:716.368500px;}
.yb7{bottom:717.166500px;}
.y14f{bottom:717.490500px;}
.yb6{bottom:719.896500px;}
.y1be{bottom:720.570000px;}
.y94{bottom:721.690500px;}
.y5f{bottom:722.139000px;}
.y2a{bottom:725.977500px;}
.yfc{bottom:735.196500px;}
.y14e{bottom:736.320000px;}
.y1bd{bottom:737.829000px;}
.y93{bottom:740.520000px;}
.y5e{bottom:740.968500px;}
.yb5{bottom:743.209500px;}
.y29{bottom:745.435500px;}
.yfb{bottom:754.026000px;}
.y1bc{bottom:755.089500px;}
.y14d{bottom:755.149500px;}
.y92{bottom:759.349500px;}
.y5d{bottom:759.798000px;}
.yb4{bottom:763.384500px;}
.y28{bottom:764.892000px;}
.y1bb{bottom:772.350000px;}
.yfa{bottom:772.855500px;}
.y14c{bottom:773.979000px;}
.y91{bottom:778.179000px;}
.y5c{bottom:778.627500px;}
.y27{bottom:784.348500px;}
.y1ba{bottom:789.610500px;}
.yf9{bottom:791.685000px;}
.y14b{bottom:792.808500px;}
.y90{bottom:794.766000px;}
.y8f{bottom:797.008500px;}
.y5b{bottom:797.457000px;}
.y1b9{bottom:806.871000px;}
.yf8{bottom:810.514500px;}
.y14a{bottom:811.636500px;}
.y8e{bottom:813.108000px;}
.y8d{bottom:815.838000px;}
.y5a{bottom:816.286500px;}
.y26{bottom:822.934500px;}
.y1b8{bottom:824.131500px;}
.y149{bottom:830.466000px;}
.yf7{bottom:833.827500px;}
.y8c{bottom:834.667500px;}
.y59{bottom:835.114500px;}
.y25{bottom:839.074500px;}
.y1b7{bottom:841.392000px;}
.y8b{bottom:853.497000px;}
.y148{bottom:853.779000px;}
.y58{bottom:853.944000px;}
.y1b6{bottom:858.652500px;}
.y24{bottom:859.552500px;}
.yf6{bottom:864.255000px;}
.y8a{bottom:872.326500px;}
.y57{bottom:872.773500px;}
.y23{bottom:875.692500px;}
.y1b5{bottom:875.913000px;}
.ye0{bottom:886.684500px;}
.y22{bottom:887.493000px;}
.y147{bottom:890.775000px;}
.y89{bottom:891.156000px;}
.y56{bottom:891.603000px;}
.y1b4{bottom:893.172000px;}
.y146{bottom:904.971000px;}
.y87{bottom:907.255500px;}
.y88{bottom:907.743000px;}
.y21{bottom:907.972500px;}
.y86{bottom:909.984000px;}
.y55{bottom:910.432500px;}
.y145{bottom:919.168500px;}
.y144{bottom:923.508000px;}
.y1b3{bottom:927.693000px;}
.y85{bottom:928.813500px;}
.y54{bottom:929.262000px;}
.y142{bottom:934.860000px;}
.y143{bottom:939.201000px;}
.y1e0{bottom:940.395000px;}
.y1b2{bottom:944.953500px;}
.y84{bottom:947.643000px;}
.y53{bottom:948.091500px;}
.y141{bottom:949.057500px;}
.yb3{bottom:952.126500px;}
.y20{bottom:952.648500px;}
.y1df{bottom:957.655500px;}
.y1b1{bottom:962.214000px;}
.y140{bottom:963.253500px;}
.y83{bottom:966.472500px;}
.y52{bottom:966.921000px;}
.y1f{bottom:971.478000px;}
.y1de{bottom:974.916000px;}
.y13f{bottom:977.451000px;}
.y1b0{bottom:979.474500px;}
.y51{bottom:983.020500px;}
.y18b{bottom:985.302000px;}
.y50{bottom:985.750500px;}
.y82{bottom:989.785500px;}
.y1af{bottom:996.735000px;}
.y13b{bottom:997.489500px;}
.y18a{bottom:1004.131500px;}
.y4f{bottom:1004.580000px;}
.y139{bottom:1007.950500px;}
.y1e{bottom:1008.240000px;}
.y13e{bottom:1011.748500px;}
.y1ae{bottom:1013.995500px;}
.y13d{bottom:1018.411500px;}
.y189{bottom:1022.961000px;}
.y4e{bottom:1023.409500px;}
.y13a{bottom:1028.872500px;}
.y1ad{bottom:1031.254500px;}
.y1d{bottom:1036.485000px;}
.y138{bottom:1039.333500px;}
.y4d{bottom:1042.239000px;}
.y13c{bottom:1043.130000px;}
.y188{bottom:1046.274000px;}
.y1ac{bottom:1048.515000px;}
.y4c{bottom:1061.068500px;}
.y1c{bottom:1064.728500px;}
.y1ab{bottom:1065.775500px;}
.y134{bottom:1067.457000px;}
.y135{bottom:1072.687500px;}
.y137{bottom:1072.804500px;}
.y132{bottom:1077.918000px;}
.y4b{bottom:1079.898000px;}
.y1aa{bottom:1083.036000px;}
.y136{bottom:1083.265500px;}
.y133{bottom:1088.379000px;}
.y1b{bottom:1092.972000px;}
.y4a{bottom:1098.727500px;}
.y1a9{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.y131{bottom:1119.037500px;}
.y18{bottom:1136.460000px;}
.y48{bottom:1177.662000px;}
.h21{height:21.758318px;}
.h9{height:26.110157px;}
.h23{height:29.037733px;}
.h1f{height:30.252344px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h10{height:33.072749px;}
.h24{height:33.186380px;}
.h12{height:34.574294px;}
.h13{height:34.717756px;}
.hb{height:34.813397px;}
.hf{height:35.052500px;}
.h15{height:35.610500px;}
.h14{height:35.616500px;}
.hc{height:39.165235px;}
.h1d{height:39.434227px;}
.h17{height:41.482876px;}
.hd{height:43.217759px;}
.h16{height:43.468157px;}
.he{height:43.516637px;}
.ha{height:43.660208px;}
.h6{height:43.815515px;}
.h1c{height:44.062559px;}
.h19{height:44.279648px;}
.h25{height:49.117939px;}
.h1b{height:49.939453px;}
.h4{height:50.931027px;}
.h20{height:51.174344px;}
.h8{height:54.541601px;}
.h11{height:54.575123px;}
.h1a{height:55.599258px;}
.h22{height:72.305558px;}
.h5{height:77.379634px;}
.h7{height:77.792486px;}
.h18{height:232.569000px;}
.h1e{height:245.817000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w4{width:543.642000px;}
.w3{width:545.604000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x49{left:-209.970000px;}
.x45{left:-207.517500px;}
.x4a{left:-14.370000px;}
.x47{left:-11.917500px;}
.x0{left:0.000000px;}
.x4b{left:17.490000px;}
.x48{left:19.942500px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.x4c{left:75.025500px;}
.x71{left:76.401000px;}
.x67{left:80.241000px;}
.x5f{left:81.825000px;}
.x53{left:84.216000px;}
.xaa{left:85.470000px;}
.x52{left:86.517000px;}
.x61{left:87.928500px;}
.x73{left:160.999500px;}
.x72{left:162.120000px;}
.x70{left:166.230000px;}
.x56{left:168.322500px;}
.x54{left:170.226000px;}
.x55{left:171.460500px;}
.x68{left:172.842000px;}
.x62{left:175.456500px;}
.x63{left:176.691000px;}
.x74{left:196.509000px;}
.x75{left:207.519000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x7a{left:258.324000px;}
.x25{left:265.123500px;}
.x5{left:269.914500px;}
.x81{left:271.137000px;}
.x3d{left:272.454000px;}
.x23{left:274.540500px;}
.x24{left:276.690000px;}
.x22{left:277.765500px;}
.x21{left:279.117000px;}
.x7{left:281.479500px;}
.x82{left:299.130000px;}
.x1a{left:304.485000px;}
.x3e{left:305.962500px;}
.x93{left:307.579500px;}
.x1b{left:311.956500px;}
.x94{left:315.051000px;}
.x2f{left:320.194500px;}
.xa0{left:321.624000px;}
.xa5{left:327.976500px;}
.xa6{left:342.921000px;}
.xa8{left:351.520500px;}
.x76{left:357.228000px;}
.x36{left:358.578000px;}
.x3f{left:359.635500px;}
.x6e{left:361.224000px;}
.x6d{left:362.458500px;}
.x57{left:364.551000px;}
.x4d{left:366.031500px;}
.x69{left:367.689000px;}
.x6a{left:369.070500px;}
.x64{left:371.685000px;}
.x37{left:373.522500px;}
.x8f{left:377.680500px;}
.x40{left:386.953500px;}
.x26{left:394.552500px;}
.x1e{left:396.273000px;}
.x90{left:409.918500px;}
.x30{left:414.231000px;}
.x27{left:416.809500px;}
.x79{left:425.463000px;}
.x83{left:427.116000px;}
.xa9{left:430.830000px;}
.x39{left:433.333500px;}
.x84{left:434.587500px;}
.x85{left:438.399000px;}
.x31{left:440.280000px;}
.xa4{left:442.584000px;}
.x86{left:445.870500px;}
.x87{left:449.682000px;}
.x41{left:452.841000px;}
.x32{left:456.375000px;}
.x88{left:460.155000px;}
.x10{left:462.385500px;}
.x78{left:466.296000px;}
.x16{left:467.488500px;}
.x11{left:469.857000px;}
.x33{left:471.319500px;}
.x12{left:473.667000px;}
.x17{left:474.961500px;}
.x60{left:476.955000px;}
.x42{left:478.884000px;}
.x13{left:481.140000px;}
.x58{left:483.492000px;}
.x89{left:486.343500px;}
.x2c{left:488.113500px;}
.x38{left:490.687500px;}
.x8a{left:493.890000px;}
.x14{left:499.477500px;}
.x7f{left:501.820500px;}
.xc{left:507.699000px;}
.x80{left:509.292000px;}
.xd{left:515.170500px;}
.x95{left:517.069500px;}
.x43{left:520.552500px;}
.x15{left:530.605500px;}
.x96{left:532.014000px;}
.x97{left:535.716000px;}
.x98{left:550.660500px;}
.x77{left:553.456500px;}
.x3a{left:557.050500px;}
.x6f{left:558.163500px;}
.x46{left:559.642500px;}
.x5a{left:560.779500px;}
.x4e{left:562.546500px;}
.x59{left:563.917500px;}
.x6b{left:565.297500px;}
.x66{left:567.652500px;}
.x65{left:569.148000px;}
.x3b{left:571.995000px;}
.xa{left:585.318000px;}
.x2a{left:589.282500px;}
.x18{left:591.673500px;}
.xb{left:592.789500px;}
.x2b{left:596.755500px;}
.x19{left:599.145000px;}
.x28{left:617.352000px;}
.x1c{left:618.898500px;}
.x2e{left:620.739000px;}
.x44{left:625.272000px;}
.x1d{left:633.843000px;}
.x29{left:635.125500px;}
.x1f{left:651.436500px;}
.x91{left:652.570500px;}
.x7c{left:658.095000px;}
.x7d{left:665.566500px;}
.x5b{left:667.860000px;}
.x7e{left:669.376500px;}
.x4f{left:670.980000px;}
.x5c{left:673.182000px;}
.xe{left:675.006000px;}
.x8b{left:677.845500px;}
.x6c{left:679.720500px;}
.xf{left:682.479000px;}
.x3c{left:683.923500px;}
.xa7{left:687.903000px;}
.x8c{left:696.600000px;}
.x8d{left:704.221500px;}
.x8{left:708.895500px;}
.x9e{left:712.677000px;}
.x9{left:716.367000px;}
.x8e{left:719.164500px;}
.x99{left:722.602500px;}
.x9f{left:727.620000px;}
.x9a{left:737.545500px;}
.x2d{left:739.333500px;}
.x7b{left:747.165000px;}
.x20{left:752.059500px;}
.x50{left:753.994500px;}
.xa1{left:760.792500px;}
.x9c{left:762.682500px;}
.x5d{left:765.843000px;}
.x51{left:769.095000px;}
.x5e{left:771.558000px;}
.x9d{left:777.625500px;}
.x9b{left:780.712500px;}
.x92{left:794.163000px;}
.x34{left:806.866500px;}
.xa2{left:817.767000px;}
.x35{left:819.850500px;}
.xa3{left:832.711500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v8{vertical-align:-13.504000pt;}
.v3{vertical-align:-10.629333pt;}
.v6{vertical-align:-7.472000pt;}
.v7{vertical-align:-6.378667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.882667pt;}
.v4{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:37.194667pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000361pt;}
.ls23{letter-spacing:0.000447pt;}
.ls32{letter-spacing:0.000523pt;}
.ls34{letter-spacing:0.000600pt;}
.ls2c{letter-spacing:0.000853pt;}
.ls2d{letter-spacing:0.000980pt;}
.ls3a{letter-spacing:0.001134pt;}
.ls31{letter-spacing:0.001158pt;}
.ls26{letter-spacing:0.001973pt;}
.ls2{letter-spacing:0.002422pt;}
.ls27{letter-spacing:0.002465pt;}
.ls2a{letter-spacing:0.002603pt;}
.ls2f{letter-spacing:0.002734pt;}
.ls37{letter-spacing:0.003055pt;}
.ls9{letter-spacing:0.003330pt;}
.ls2b{letter-spacing:0.003527pt;}
.ls35{letter-spacing:0.004221pt;}
.ls33{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.124480pt;}
.ls12{letter-spacing:0.160000pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1c{letter-spacing:9.296533pt;}
.ls1d{letter-spacing:9.298400pt;}
.ls0{letter-spacing:9.298933pt;}
.ls1a{letter-spacing:9.301867pt;}
.ls1b{letter-spacing:9.743791pt;}
.ls18{letter-spacing:9.749124pt;}
.lsc{letter-spacing:10.623733pt;}
.ls6{letter-spacing:10.626533pt;}
.lsd{letter-spacing:10.629067pt;}
.lsb{letter-spacing:11.133060pt;}
.lsa{letter-spacing:11.138393pt;}
.ls15{letter-spacing:11.950933pt;}
.ls20{letter-spacing:11.953615pt;}
.ls1f{letter-spacing:11.953819pt;}
.ls19{letter-spacing:11.953867pt;}
.ls25{letter-spacing:11.954133pt;}
.ls14{letter-spacing:11.956267pt;}
.ls39{letter-spacing:11.956888pt;}
.ls22{letter-spacing:11.958948pt;}
.ls21{letter-spacing:11.959153pt;}
.ls1e{letter-spacing:11.959200pt;}
.ls28{letter-spacing:11.959467pt;}
.ls38{letter-spacing:12.042109pt;}
.ls30{letter-spacing:12.052840pt;}
.ls36{letter-spacing:12.174617pt;}
.ls2e{letter-spacing:12.194307pt;}
.ls3b{letter-spacing:12.546761pt;}
.ls24{letter-spacing:13.090412pt;}
.lsf{letter-spacing:13.473594pt;}
.ls17{letter-spacing:13.867939pt;}
.ls10{letter-spacing:13.923096pt;}
.ls11{letter-spacing:14.824349pt;}
.ls8{letter-spacing:15.035152pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.lse{letter-spacing:171.194436pt;}
.wsb{word-spacing:-25.362056pt;}
.ws82{word-spacing:-18.596800pt;}
.wsf{word-spacing:-13.283467pt;}
.ws76{word-spacing:-12.000000pt;}
.wsc1{word-spacing:-11.955200pt;}
.ws74{word-spacing:-10.800000pt;}
.ws75{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6d{word-spacing:-2.869229pt;}
.wsa7{word-spacing:-2.762961pt;}
.wsa8{word-spacing:-2.709827pt;}
.ws3e{word-spacing:-2.656693pt;}
.ws5c{word-spacing:-2.550426pt;}
.ws6b{word-spacing:-2.444158pt;}
.ws72{word-spacing:-2.391024pt;}
.ws3b{word-spacing:-1.965953pt;}
.ws35{word-spacing:-1.912819pt;}
.wsba{word-spacing:-1.721549pt;}
.wsa1{word-spacing:-1.700284pt;}
.wsa2{word-spacing:-1.647150pt;}
.ws42{word-spacing:-1.487748pt;}
.wsc5{word-spacing:-1.338982pt;}
.wsa3{word-spacing:-1.275213pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws2f{word-spacing:-1.115811pt;}
.wsd5{word-spacing:-1.052058pt;}
.ws8f{word-spacing:-0.956410pt;}
.ws66{word-spacing:-0.903276pt;}
.ws5f{word-spacing:-0.850142pt;}
.ws68{word-spacing:-0.797008pt;}
.wsbc{word-spacing:-0.573850pt;}
.ws19{word-spacing:-0.478208pt;}
.ws79{word-spacing:-0.425071pt;}
.ws33{word-spacing:-0.371937pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws65{word-spacing:-0.265669pt;}
.ws40{word-spacing:-0.212535pt;}
.ws18{word-spacing:-0.191283pt;}
.ws87{word-spacing:-0.170029pt;}
.ws36{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws59{word-spacing:-0.127522pt;}
.ws26{word-spacing:-0.106268pt;}
.wsc7{word-spacing:-0.095642pt;}
.ws88{word-spacing:-0.085014pt;}
.wsc{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wsd2{word-spacing:-0.022391pt;}
.ws10{word-spacing:-0.001333pt;}
.ws1{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.000080pt;}
.wsd{word-spacing:0.001897pt;}
.ws1e{word-spacing:0.047821pt;}
.ws63{word-spacing:0.053134pt;}
.ws17{word-spacing:0.095642pt;}
.ws3a{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws47{word-spacing:0.170029pt;}
.wsb6{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.wsb9{word-spacing:0.239104pt;}
.ws41{word-spacing:0.265669pt;}
.ws6f{word-spacing:0.318803pt;}
.wsbf{word-spacing:0.334746pt;}
.ws34{word-spacing:0.371937pt;}
.ws8d{word-spacing:0.425071pt;}
.wsb3{word-spacing:0.430387pt;}
.ws80{word-spacing:0.460800pt;}
.ws81{word-spacing:0.461333pt;}
.ws83{word-spacing:0.461867pt;}
.ws84{word-spacing:0.462400pt;}
.ws7f{word-spacing:0.466133pt;}
.ws7c{word-spacing:0.466667pt;}
.ws7e{word-spacing:0.467200pt;}
.ws85{word-spacing:0.467733pt;}
.wsa0{word-spacing:0.478205pt;}
.ws48{word-spacing:0.526933pt;}
.wsa5{word-spacing:0.531339pt;}
.ws4d{word-spacing:0.531745pt;}
.ws4c{word-spacing:0.532000pt;}
.ws52{word-spacing:0.532267pt;}
.ws56{word-spacing:0.534545pt;}
.ws49{word-spacing:0.537078pt;}
.ws4a{word-spacing:0.544999pt;}
.ws57{word-spacing:0.547532pt;}
.wsb4{word-spacing:0.573850pt;}
.ws67{word-spacing:0.584473pt;}
.ws64{word-spacing:0.637606pt;}
.ws20{word-spacing:0.669491pt;}
.ws69{word-spacing:0.690740pt;}
.ws7b{word-spacing:0.850142pt;}
.wsae{word-spacing:0.956410pt;}
.wscd{word-spacing:1.004237pt;}
.wsab{word-spacing:1.009543pt;}
.ws62{word-spacing:1.062677pt;}
.ws9a{word-spacing:1.115811pt;}
.ws86{word-spacing:1.190202pt;}
.ws8b{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws61{word-spacing:1.275213pt;}
.ws15{word-spacing:1.338982pt;}
.ws9b{word-spacing:1.381481pt;}
.wsb5{word-spacing:1.386803pt;}
.wsb2{word-spacing:1.434614pt;}
.wscb{word-spacing:1.482445pt;}
.wsbb{word-spacing:1.530266pt;}
.ws60{word-spacing:1.540882pt;}
.ws5e{word-spacing:1.700284pt;}
.wsd0{word-spacing:1.721549pt;}
.ws38{word-spacing:1.753418pt;}
.ws45{word-spacing:1.965953pt;}
.wsa6{word-spacing:2.019087pt;}
.wsaa{word-spacing:2.072221pt;}
.ws94{word-spacing:2.125355pt;}
.ws1d{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.wsbd{word-spacing:2.295398pt;}
.ws5b{word-spacing:2.444158pt;}
.ws7a{word-spacing:2.497292pt;}
.ws30{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.wsc9{word-spacing:2.630144pt;}
.ws9e{word-spacing:2.656693pt;}
.ws71{word-spacing:2.762961pt;}
.ws70{word-spacing:2.816095pt;}
.ws22{word-spacing:2.861926pt;}
.wse1{word-spacing:2.863804pt;}
.wsc6{word-spacing:2.863829pt;}
.wsda{word-spacing:2.865468pt;}
.wsac{word-spacing:2.869229pt;}
.wsd8{word-spacing:2.869248pt;}
.ws1c{word-spacing:2.917069pt;}
.wsa9{word-spacing:2.922363pt;}
.ws6c{word-spacing:2.975497pt;}
.ws27{word-spacing:3.028630pt;}
.ws6a{word-spacing:3.081764pt;}
.wsbe{word-spacing:3.089639pt;}
.wse5{word-spacing:3.108352pt;}
.ws23{word-spacing:3.188032pt;}
.wsb8{word-spacing:3.203994pt;}
.ws24{word-spacing:3.294300pt;}
.ws95{word-spacing:3.347434pt;}
.ws96{word-spacing:3.400567pt;}
.ws89{word-spacing:3.453701pt;}
.wsaf{word-spacing:3.506835pt;}
.wsb0{word-spacing:3.613103pt;}
.ws21{word-spacing:3.634381pt;}
.ws9f{word-spacing:3.666237pt;}
.ws99{word-spacing:3.719371pt;}
.ws44{word-spacing:3.772505pt;}
.ws28{word-spacing:3.825638pt;}
.ws14{word-spacing:3.921306pt;}
.ws78{word-spacing:3.985040pt;}
.ws37{word-spacing:4.038174pt;}
.ws73{word-spacing:4.144442pt;}
.wsa4{word-spacing:4.303843pt;}
.ws29{word-spacing:4.410111pt;}
.ws2a{word-spacing:4.463245pt;}
.ws98{word-spacing:4.569513pt;}
.ws8{word-spacing:4.872362pt;}
.ws32{word-spacing:4.888316pt;}
.ws8e{word-spacing:4.941450pt;}
.ws9c{word-spacing:4.994583pt;}
.ws2b{word-spacing:5.047717pt;}
.ws6e{word-spacing:5.100851pt;}
.ws91{word-spacing:5.207119pt;}
.ws31{word-spacing:5.260253pt;}
.ws54{word-spacing:5.312734pt;}
.ws50{word-spacing:5.313801pt;}
.ws97{word-spacing:5.366521pt;}
.ws77{word-spacing:5.499392pt;}
.wsad{word-spacing:5.525922pt;}
.ws9d{word-spacing:5.632190pt;}
.ws8c{word-spacing:5.791591pt;}
.wsb1{word-spacing:6.004127pt;}
.ws3d{word-spacing:6.057261pt;}
.ws92{word-spacing:6.269796pt;}
.ws39{word-spacing:6.322930pt;}
.ws8a{word-spacing:6.482332pt;}
.ws90{word-spacing:7.013670pt;}
.ws93{word-spacing:7.863812pt;}
.ws6{word-spacing:8.740496pt;}
.wsb7{word-spacing:9.487058pt;}
.ws7{word-spacing:10.525789pt;}
.ws2c{word-spacing:10.587492pt;}
.ws13{word-spacing:10.895196pt;}
.ws2{word-spacing:11.492822pt;}
.wsde{word-spacing:11.811738pt;}
.wsc8{word-spacing:11.899767pt;}
.wsd7{word-spacing:11.900749pt;}
.wsd6{word-spacing:11.902165pt;}
.wsc4{word-spacing:11.906628pt;}
.wsd3{word-spacing:11.907379pt;}
.wsc0{word-spacing:11.908070pt;}
.wse3{word-spacing:11.948436pt;}
.wse0{word-spacing:11.955200pt;}
.wsd4{word-spacing:12.003021pt;}
.wscc{word-spacing:12.140811pt;}
.wse4{word-spacing:12.337766pt;}
.wsce{word-spacing:12.911616pt;}
.ws5d{word-spacing:13.230333pt;}
.wsca{word-spacing:13.437645pt;}
.wsc3{word-spacing:14.633165pt;}
.wscf{word-spacing:14.769246pt;}
.wsd1{word-spacing:14.769766pt;}
.wse2{word-spacing:14.770381pt;}
.wsdb{word-spacing:14.770654pt;}
.wsdd{word-spacing:14.773197pt;}
.wsdf{word-spacing:14.773538pt;}
.wsc2{word-spacing:14.776627pt;}
.wsdc{word-spacing:14.824448pt;}
.wsd9{word-spacing:15.111373pt;}
.ws43{word-spacing:16.418365pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.ws51{word-spacing:119.964166pt;}
.ws53{word-spacing:134.681600pt;}
.ws58{word-spacing:134.681867pt;}
.ws4e{word-spacing:134.687200pt;}
.ws4f{word-spacing:145.311200pt;}
.ws4b{word-spacing:145.316533pt;}
.ws55{word-spacing:147.996238pt;}
.ws7d{word-spacing:171.214589pt;}
.ws46{word-spacing:181.250701pt;}
._37{margin-left:-9.298400pt;}
._b{margin-left:-5.950993pt;}
._1{margin-left:-4.797974pt;}
._0{margin-left:-3.421811pt;}
._25{margin-left:-2.392922pt;}
._3{margin-left:-1.338970pt;}
._24{width:0.906667pt;}
._6{width:2.660256pt;}
._27{width:3.832534pt;}
._28{width:5.397440pt;}
._2a{width:6.406861pt;}
._26{width:7.535040pt;}
._29{width:8.817600pt;}
._23{width:10.246938pt;}
._2{width:11.530016pt;}
._10{width:13.177232pt;}
._8{width:14.633139pt;}
._2d{width:15.528861pt;}
._c{width:16.418365pt;}
._a{width:17.311130pt;}
._e{width:18.915657pt;}
._f{width:20.095225pt;}
._13{width:21.359814pt;}
._4{width:23.059276pt;}
._9{width:24.006042pt;}
._d{width:25.982461pt;}
._3b{width:27.172652pt;}
._5{width:29.648896pt;}
._2c{width:31.714219pt;}
._3e{width:33.049265pt;}
._3c{width:34.600770pt;}
._14{width:35.812226pt;}
._3d{width:37.990715pt;}
._7{width:48.364704pt;}
._41{width:54.993920pt;}
._3f{width:78.904320pt;}
._21{width:94.663534pt;}
._2f{width:102.128462pt;}
._1c{width:105.290334pt;}
._20{width:113.875989pt;}
._2e{width:123.110816pt;}
._1b{width:124.503589pt;}
._18{width:126.543934pt;}
._1f{width:137.706547pt;}
._17{width:145.757189pt;}
._3a{width:147.033789pt;}
._31{width:156.335122pt;}
._38{width:157.263122pt;}
._32{width:165.631122pt;}
._39{width:166.564455pt;}
._1a{width:172.030609pt;}
._30{width:175.860455pt;}
._36{width:176.788455pt;}
._1e{width:178.832646pt;}
._35{width:185.161789pt;}
._1d{width:186.501088pt;}
._16{width:187.461236pt;}
._33{width:193.529789pt;}
._34{width:194.921789pt;}
._15{width:203.396952pt;}
._19{width:230.091474pt;}
._2b{width:754.746667pt;}
._11{width:781.323243pt;}
._22{width:1871.062400pt;}
._40{width:2193.218133pt;}
._12{width:2214.471467pt;}
.fse{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs8{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.yd9{bottom:-603.580000pt;}
.yd8{bottom:-583.900000pt;}
.yd7{bottom:-566.753333pt;}
.yd6{bottom:-549.713333pt;}
.yd5{bottom:-532.593333pt;}
.yd4{bottom:-515.473333pt;}
.yd3{bottom:-498.433333pt;}
.yd2{bottom:-481.313333pt;}
.yd1{bottom:-464.273333pt;}
.yd0{bottom:-443.153333pt;}
.ycf{bottom:-410.033333pt;}
.yce{bottom:-392.993333pt;}
.ycd{bottom:-375.873333pt;}
.ycc{bottom:-358.833333pt;}
.ycb{bottom:-326.113333pt;}
.yf5{bottom:-306.572000pt;}
.yca{bottom:-306.113333pt;}
.yf4{bottom:-286.892000pt;}
.yf3{bottom:-269.745333pt;}
.yf2{bottom:-252.705333pt;}
.yf1{bottom:-235.585333pt;}
.yf0{bottom:-218.465333pt;}
.yef{bottom:-201.425333pt;}
.yee{bottom:-184.305333pt;}
.yed{bottom:-167.265333pt;}
.yec{bottom:-146.145333pt;}
.yeb{bottom:-113.025333pt;}
.yea{bottom:-95.985333pt;}
.ye9{bottom:-78.865333pt;}
.ye8{bottom:-61.825333pt;}
.yc9{bottom:-50.646667pt;}
.yc8{bottom:-35.206667pt;}
.ye7{bottom:-29.105333pt;}
.yc7{bottom:-15.286667pt;}
.ye6{bottom:-9.105333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.545957pt;}
.y19{bottom:26.907593pt;}
.y47{bottom:28.346667pt;}
.y17{bottom:93.018667pt;}
.y46{bottom:98.313333pt;}
.y171{bottom:102.176000pt;}
.y187{bottom:106.308000pt;}
.y81{bottom:107.969333pt;}
.y16{bottom:108.920000pt;}
.y1a8{bottom:108.978667pt;}
.y45{bottom:115.050667pt;}
.y7f{bottom:118.721333pt;}
.y1dd{bottom:118.861333pt;}
.y170{bottom:118.913333pt;}
.y80{bottom:118.994667pt;}
.y7e{bottom:120.589333pt;}
.yb2{bottom:121.849333pt;}
.y186{bottom:123.045333pt;}
.y1a7{bottom:124.321333pt;}
.y15{bottom:124.820000pt;}
.ydf{bottom:127.314667pt;}
.y44{bottom:131.788000pt;}
.y1dc{bottom:134.202667pt;}
.y16f{bottom:135.650667pt;}
.y7d{bottom:136.144000pt;}
.yb0{bottom:138.586667pt;}
.y1a6{bottom:139.664000pt;}
.y185{bottom:139.782667pt;}
.y14{bottom:140.720000pt;}
.yb1{bottom:143.409333pt;}
.yde{bottom:144.052000pt;}
.y7c{bottom:147.020000pt;}
.y43{bottom:148.525333pt;}
.y1db{bottom:149.545333pt;}
.y16e{bottom:152.388000pt;}
.y1a5{bottom:155.005333pt;}
.yaf{bottom:155.324000pt;}
.y184{bottom:156.520000pt;}
.y13{bottom:156.621333pt;}
.y7b{bottom:157.896000pt;}
.ydd{bottom:160.789333pt;}
.y1da{bottom:164.888000pt;}
.y42{bottom:165.262667pt;}
.y7a{bottom:168.773333pt;}
.y16d{bottom:169.125333pt;}
.y1a4{bottom:170.348000pt;}
.yae{bottom:172.061333pt;}
.y12{bottom:172.521333pt;}
.y183{bottom:173.257333pt;}
.ydc{bottom:177.526667pt;}
.y79{bottom:179.649333pt;}
.y1d9{bottom:180.230667pt;}
.y41{bottom:182.000000pt;}
.y1a3{bottom:185.690667pt;}
.y16c{bottom:185.862667pt;}
.y11{bottom:188.421333pt;}
.yad{bottom:188.798667pt;}
.y182{bottom:189.994667pt;}
.y78{bottom:192.218667pt;}
.y12e{bottom:194.405333pt;}
.y1d8{bottom:195.573333pt;}
.y40{bottom:198.737333pt;}
.y16b{bottom:200.606667pt;}
.y1a2{bottom:201.033333pt;}
.y16a{bottom:202.600000pt;}
.y77{bottom:203.094667pt;}
.y12c{bottom:203.704000pt;}
.y10{bottom:204.322667pt;}
.yac{bottom:205.536000pt;}
.y181{bottom:206.732000pt;}
.y130{bottom:207.078667pt;}
.ydb{bottom:207.362667pt;}
.y1d7{bottom:210.916000pt;}
.y12d{bottom:213.002667pt;}
.y76{bottom:213.970667pt;}
.y3f{bottom:215.474667pt;}
.y1a1{bottom:216.376000pt;}
.y169{bottom:219.337333pt;}
.yab{bottom:222.273333pt;}
.y12b{bottom:222.301333pt;}
.y180{bottom:223.469333pt;}
.yda{bottom:224.458667pt;}
.y12f{bottom:225.676000pt;}
.y1d6{bottom:226.258667pt;}
.y75{bottom:231.249333pt;}
.y1a0{bottom:231.718667pt;}
.y3e{bottom:232.212000pt;}
.y168{bottom:236.074667pt;}
.yaa{bottom:239.010667pt;}
.y17f{bottom:240.206667pt;}
.y128{bottom:240.897333pt;}
.y1d5{bottom:241.601333pt;}
.yc4{bottom:244.394667pt;}
.ye5{bottom:246.361333pt;}
.y3d{bottom:248.949333pt;}
.y126{bottom:250.196000pt;}
.y19f{bottom:251.045333pt;}
.y167{bottom:252.812000pt;}
.y12a{bottom:253.572000pt;}
.ya9{bottom:255.748000pt;}
.y74{bottom:256.805333pt;}
.y17e{bottom:256.944000pt;}
.y127{bottom:259.494667pt;}
.ye4{bottom:261.801333pt;}
.yc6{bottom:262.020000pt;}
.yf{bottom:264.148000pt;}
.y3c{bottom:265.686667pt;}
.y125{bottom:268.793333pt;}
.y166{bottom:269.548000pt;}
.yc5{bottom:270.580000pt;}
.y129{bottom:272.168000pt;}
.y1d4{bottom:272.285333pt;}
.y17d{bottom:273.681333pt;}
.ya8{bottom:276.470667pt;}
.ye{bottom:280.048000pt;}
.y19e{bottom:280.933333pt;}
.ye3{bottom:281.721333pt;}
.y3b{bottom:282.424000pt;}
.y165{bottom:286.285333pt;}
.y1d3{bottom:287.628000pt;}
.y73{bottom:288.824000pt;}
.y122{bottom:289.061333pt;}
.y17c{bottom:290.417333pt;}
.yd{bottom:295.949333pt;}
.y120{bottom:298.360000pt;}
.y124{bottom:301.736000pt;}
.y1d2{bottom:302.970667pt;}
.y164{bottom:303.022667pt;}
.y3a{bottom:303.145333pt;}
.y19d{bottom:304.525333pt;}
.y72{bottom:305.561333pt;}
.ya7{bottom:306.358667pt;}
.y17b{bottom:307.154667pt;}
.y121{bottom:307.658667pt;}
.yc{bottom:311.849333pt;}
.y11f{bottom:316.957333pt;}
.y1d1{bottom:318.313333pt;}
.y163{bottom:319.760000pt;}
.y19c{bottom:320.146667pt;}
.y123{bottom:320.332000pt;}
.y71{bottom:322.298667pt;}
.ya6{bottom:323.096000pt;}
.y17a{bottom:323.892000pt;}
.y1d0{bottom:333.656000pt;}
.y11c{bottom:335.554667pt;}
.y162{bottom:336.497333pt;}
.yb{bottom:337.048000pt;}
.y70{bottom:339.036000pt;}
.ya5{bottom:339.833333pt;}
.y179{bottom:340.629333pt;}
.y19b{bottom:343.738667pt;}
.y11a{bottom:344.853333pt;}
.y11e{bottom:348.228000pt;}
.y1cf{bottom:348.998667pt;}
.ya{bottom:352.948000pt;}
.y161{bottom:353.234667pt;}
.y11b{bottom:354.150667pt;}
.y6f{bottom:355.773333pt;}
.ya4{bottom:356.570667pt;}
.y178{bottom:357.366667pt;}
.y19a{bottom:359.360000pt;}
.y119{bottom:363.449333pt;}
.y1ce{bottom:364.341333pt;}
.y11d{bottom:366.825333pt;}
.y39{bottom:369.945333pt;}
.y160{bottom:369.972000pt;}
.y6e{bottom:372.510667pt;}
.ya3{bottom:373.308000pt;}
.y177{bottom:374.104000pt;}
.y9{bottom:376.818667pt;}
.y1cd{bottom:379.684000pt;}
.y116{bottom:382.046667pt;}
.y199{bottom:382.952000pt;}
.y15f{bottom:384.282667pt;}
.y15e{bottom:386.709333pt;}
.y6d{bottom:389.248000pt;}
.ya2{bottom:390.045333pt;}
.y176{bottom:390.841333pt;}
.y114{bottom:391.345333pt;}
.y8{bottom:392.720000pt;}
.y118{bottom:394.720000pt;}
.y1cc{bottom:395.025333pt;}
.y115{bottom:400.644000pt;}
.y38{bottom:403.181333pt;}
.y15d{bottom:403.446667pt;}
.y6c{bottom:405.985333pt;}
.y198{bottom:406.542667pt;}
.y175{bottom:407.578667pt;}
.y7{bottom:408.620000pt;}
.y113{bottom:409.942667pt;}
.y1cb{bottom:410.368000pt;}
.ya1{bottom:410.766667pt;}
.y117{bottom:413.317333pt;}
.y15c{bottom:420.184000pt;}
.y37{bottom:420.476000pt;}
.y197{bottom:422.164000pt;}
.y174{bottom:424.316000pt;}
.y6{bottom:424.520000pt;}
.y1ca{bottom:425.710667pt;}
.y6b{bottom:426.706667pt;}
.y110{bottom:428.538667pt;}
.y15b{bottom:436.921333pt;}
.y36{bottom:437.772000pt;}
.y196{bottom:437.786667pt;}
.y10e{bottom:437.837333pt;}
.y5{bottom:440.421333pt;}
.ya0{bottom:440.654667pt;}
.y173{bottom:441.053333pt;}
.y112{bottom:441.213333pt;}
.y6a{bottom:444.640000pt;}
.y10f{bottom:447.136000pt;}
.y15a{bottom:453.658667pt;}
.y35{bottom:455.066667pt;}
.y4{bottom:456.321333pt;}
.y1c9{bottom:456.396000pt;}
.y10d{bottom:456.434667pt;}
.y9f{bottom:457.392000pt;}
.y172{bottom:457.790667pt;}
.y111{bottom:459.809333pt;}
.y195{bottom:461.377333pt;}
.y159{bottom:470.396000pt;}
.y1c8{bottom:471.738667pt;}
.yc3{bottom:472.137333pt;}
.y3{bottom:472.221333pt;}
.y34{bottom:472.361333pt;}
.y9e{bottom:474.129333pt;}
.y69{bottom:474.528000pt;}
.y10a{bottom:475.032000pt;}
.y194{bottom:476.998667pt;}
.y108{bottom:484.329333pt;}
.yc2{bottom:486.881333pt;}
.y1c7{bottom:487.081333pt;}
.y158{bottom:487.133333pt;}
.y10c{bottom:487.705333pt;}
.y2{bottom:488.122667pt;}
.yc1{bottom:488.874667pt;}
.y33{bottom:489.657333pt;}
.y9d{bottom:490.866667pt;}
.y68{bottom:491.265333pt;}
.y193{bottom:492.620000pt;}
.y109{bottom:493.628000pt;}
.y1c6{bottom:502.424000pt;}
.y107{bottom:502.926667pt;}
.yc0{bottom:503.618667pt;}
.y157{bottom:503.870667pt;}
.y1{bottom:504.022667pt;}
.ybf{bottom:505.612000pt;}
.y10b{bottom:506.302667pt;}
.y32{bottom:506.952000pt;}
.y9c{bottom:507.604000pt;}
.y67{bottom:508.002667pt;}
.y192{bottom:508.241333pt;}
.y1c5{bottom:517.766667pt;}
.ybe{bottom:520.356000pt;}
.y156{bottom:520.608000pt;}
.ybd{bottom:522.349333pt;}
.y191{bottom:523.864000pt;}
.y31{bottom:524.248000pt;}
.y9b{bottom:524.341333pt;}
.y66{bottom:524.740000pt;}
.y103{bottom:527.925333pt;}
.y104{bottom:532.574667pt;}
.y106{bottom:532.680000pt;}
.y1c4{bottom:533.108000pt;}
.y101{bottom:537.224000pt;}
.y155{bottom:537.345333pt;}
.ybc{bottom:539.086667pt;}
.y9a{bottom:541.078667pt;}
.y65{bottom:541.477333pt;}
.y30{bottom:541.542667pt;}
.y105{bottom:541.978667pt;}
.y102{bottom:546.522667pt;}
.y190{bottom:547.454667pt;}
.y1c3{bottom:548.450667pt;}
.y154{bottom:554.082667pt;}
.ybb{bottom:555.824000pt;}
.y99{bottom:557.816000pt;}
.y64{bottom:558.214667pt;}
.y2f{bottom:558.837333pt;}
.ye2{bottom:559.028000pt;}
.y18f{bottom:563.076000pt;}
.y1c2{bottom:563.793333pt;}
.ye1{bottom:567.588000pt;}
.y153{bottom:570.820000pt;}
.yba{bottom:572.561333pt;}
.y100{bottom:573.776000pt;}
.y98{bottom:574.553333pt;}
.y63{bottom:574.952000pt;}
.y2e{bottom:576.133333pt;}
.y18e{bottom:578.697333pt;}
.y1c1{bottom:579.136000pt;}
.y152{bottom:587.557333pt;}
.y97{bottom:591.290667pt;}
.y62{bottom:591.689333pt;}
.yb9{bottom:593.282667pt;}
.y2d{bottom:593.428000pt;}
.y18d{bottom:594.320000pt;}
.y1c0{bottom:594.478667pt;}
.yff{bottom:603.297333pt;}
.y151{bottom:604.294667pt;}
.y96{bottom:608.028000pt;}
.y61{bottom:608.426667pt;}
.y1bf{bottom:609.821333pt;}
.y18c{bottom:609.941333pt;}
.y2c{bottom:610.722667pt;}
.yfe{bottom:620.034667pt;}
.y150{bottom:621.032000pt;}
.yb8{bottom:623.170667pt;}
.y95{bottom:624.765333pt;}
.y60{bottom:625.164000pt;}
.y2b{bottom:628.018667pt;}
.yfd{bottom:636.772000pt;}
.yb7{bottom:637.481333pt;}
.y14f{bottom:637.769333pt;}
.yb6{bottom:639.908000pt;}
.y1be{bottom:640.506667pt;}
.y94{bottom:641.502667pt;}
.y5f{bottom:641.901333pt;}
.y2a{bottom:645.313333pt;}
.yfc{bottom:653.508000pt;}
.y14e{bottom:654.506667pt;}
.y1bd{bottom:655.848000pt;}
.y93{bottom:658.240000pt;}
.y5e{bottom:658.638667pt;}
.yb5{bottom:660.630667pt;}
.y29{bottom:662.609333pt;}
.yfb{bottom:670.245333pt;}
.y1bc{bottom:671.190667pt;}
.y14d{bottom:671.244000pt;}
.y92{bottom:674.977333pt;}
.y5d{bottom:675.376000pt;}
.yb4{bottom:678.564000pt;}
.y28{bottom:679.904000pt;}
.y1bb{bottom:686.533333pt;}
.yfa{bottom:686.982667pt;}
.y14c{bottom:687.981333pt;}
.y91{bottom:691.714667pt;}
.y5c{bottom:692.113333pt;}
.y27{bottom:697.198667pt;}
.y1ba{bottom:701.876000pt;}
.yf9{bottom:703.720000pt;}
.y14b{bottom:704.718667pt;}
.y90{bottom:706.458667pt;}
.y8f{bottom:708.452000pt;}
.y5b{bottom:708.850667pt;}
.y1b9{bottom:717.218667pt;}
.yf8{bottom:720.457333pt;}
.y14a{bottom:721.454667pt;}
.y8e{bottom:722.762667pt;}
.y8d{bottom:725.189333pt;}
.y5a{bottom:725.588000pt;}
.y26{bottom:731.497333pt;}
.y1b8{bottom:732.561333pt;}
.y149{bottom:738.192000pt;}
.yf7{bottom:741.180000pt;}
.y8c{bottom:741.926667pt;}
.y59{bottom:742.324000pt;}
.y25{bottom:745.844000pt;}
.y1b7{bottom:747.904000pt;}
.y8b{bottom:758.664000pt;}
.y148{bottom:758.914667pt;}
.y58{bottom:759.061333pt;}
.y1b6{bottom:763.246667pt;}
.y24{bottom:764.046667pt;}
.yf6{bottom:768.226667pt;}
.y8a{bottom:775.401333pt;}
.y57{bottom:775.798667pt;}
.y23{bottom:778.393333pt;}
.y1b5{bottom:778.589333pt;}
.ye0{bottom:788.164000pt;}
.y22{bottom:788.882667pt;}
.y147{bottom:791.800000pt;}
.y89{bottom:792.138667pt;}
.y56{bottom:792.536000pt;}
.y1b4{bottom:793.930667pt;}
.y146{bottom:804.418667pt;}
.y87{bottom:806.449333pt;}
.y88{bottom:806.882667pt;}
.y21{bottom:807.086667pt;}
.y86{bottom:808.874667pt;}
.y55{bottom:809.273333pt;}
.y145{bottom:817.038667pt;}
.y144{bottom:820.896000pt;}
.y1b3{bottom:824.616000pt;}
.y85{bottom:825.612000pt;}
.y54{bottom:826.010667pt;}
.y142{bottom:830.986667pt;}
.y143{bottom:834.845333pt;}
.y1e0{bottom:835.906667pt;}
.y1b2{bottom:839.958667pt;}
.y84{bottom:842.349333pt;}
.y53{bottom:842.748000pt;}
.y141{bottom:843.606667pt;}
.yb3{bottom:846.334667pt;}
.y20{bottom:846.798667pt;}
.y1df{bottom:851.249333pt;}
.y1b1{bottom:855.301333pt;}
.y140{bottom:856.225333pt;}
.y83{bottom:859.086667pt;}
.y52{bottom:859.485333pt;}
.y1f{bottom:863.536000pt;}
.y1de{bottom:866.592000pt;}
.y13f{bottom:868.845333pt;}
.y1b0{bottom:870.644000pt;}
.y51{bottom:873.796000pt;}
.y18b{bottom:875.824000pt;}
.y50{bottom:876.222667pt;}
.y82{bottom:879.809333pt;}
.y1af{bottom:885.986667pt;}
.y13b{bottom:886.657333pt;}
.y18a{bottom:892.561333pt;}
.y4f{bottom:892.960000pt;}
.y139{bottom:895.956000pt;}
.y1e{bottom:896.213333pt;}
.y13e{bottom:899.332000pt;}
.y1ae{bottom:901.329333pt;}
.y13d{bottom:905.254667pt;}
.y189{bottom:909.298667pt;}
.y4e{bottom:909.697333pt;}
.y13a{bottom:914.553333pt;}
.y1ad{bottom:916.670667pt;}
.y1d{bottom:921.320000pt;}
.y138{bottom:923.852000pt;}
.y4d{bottom:926.434667pt;}
.y13c{bottom:927.226667pt;}
.y188{bottom:930.021333pt;}
.y1ac{bottom:932.013333pt;}
.y4c{bottom:943.172000pt;}
.y1c{bottom:946.425333pt;}
.y1ab{bottom:947.356000pt;}
.y134{bottom:948.850667pt;}
.y135{bottom:953.500000pt;}
.y137{bottom:953.604000pt;}
.y132{bottom:958.149333pt;}
.y4b{bottom:959.909333pt;}
.y1aa{bottom:962.698667pt;}
.y136{bottom:962.902667pt;}
.y133{bottom:967.448000pt;}
.y1b{bottom:971.530667pt;}
.y4a{bottom:976.646667pt;}
.y1a9{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.y131{bottom:994.700000pt;}
.y18{bottom:1010.186667pt;}
.y48{bottom:1046.810667pt;}
.h21{height:19.340727pt;}
.h9{height:23.209028pt;}
.h23{height:25.811318pt;}
.h1f{height:26.890973pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h10{height:29.397999pt;}
.h24{height:29.499005pt;}
.h12{height:30.732706pt;}
.h13{height:30.860227pt;}
.hb{height:30.945242pt;}
.hf{height:31.157778pt;}
.h15{height:31.653778pt;}
.h14{height:31.659111pt;}
.hc{height:34.813542pt;}
.h1d{height:35.052646pt;}
.h17{height:36.873667pt;}
.hd{height:38.415786pt;}
.h16{height:38.638362pt;}
.he{height:38.681455pt;}
.ha{height:38.809074pt;}
.h6{height:38.947124pt;}
.h1c{height:39.166719pt;}
.h19{height:39.359687pt;}
.h25{height:43.660390pt;}
.h1b{height:44.390625pt;}
.h4{height:45.272024pt;}
.h20{height:45.488306pt;}
.h8{height:48.481423pt;}
.h11{height:48.511220pt;}
.h1a{height:49.421563pt;}
.h22{height:64.271607pt;}
.h5{height:68.781897pt;}
.h7{height:69.148877pt;}
.h18{height:206.728000pt;}
.h1e{height:218.504000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w4{width:483.237333pt;}
.w3{width:484.981333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x49{left:-186.640000pt;}
.x45{left:-184.460000pt;}
.x4a{left:-12.773333pt;}
.x47{left:-10.593333pt;}
.x0{left:0.000000pt;}
.x4b{left:15.546667pt;}
.x48{left:17.726667pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.x4c{left:66.689333pt;}
.x71{left:67.912000pt;}
.x67{left:71.325333pt;}
.x5f{left:72.733333pt;}
.x53{left:74.858667pt;}
.xaa{left:75.973333pt;}
.x52{left:76.904000pt;}
.x61{left:78.158667pt;}
.x73{left:143.110667pt;}
.x72{left:144.106667pt;}
.x70{left:147.760000pt;}
.x56{left:149.620000pt;}
.x54{left:151.312000pt;}
.x55{left:152.409333pt;}
.x68{left:153.637333pt;}
.x62{left:155.961333pt;}
.x63{left:157.058667pt;}
.x74{left:174.674667pt;}
.x75{left:184.461333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x7a{left:229.621333pt;}
.x25{left:235.665333pt;}
.x5{left:239.924000pt;}
.x81{left:241.010667pt;}
.x3d{left:242.181333pt;}
.x23{left:244.036000pt;}
.x24{left:245.946667pt;}
.x22{left:246.902667pt;}
.x21{left:248.104000pt;}
.x7{left:250.204000pt;}
.x82{left:265.893333pt;}
.x1a{left:270.653333pt;}
.x3e{left:271.966667pt;}
.x93{left:273.404000pt;}
.x1b{left:277.294667pt;}
.x94{left:280.045333pt;}
.x2f{left:284.617333pt;}
.xa0{left:285.888000pt;}
.xa5{left:291.534667pt;}
.xa6{left:304.818667pt;}
.xa8{left:312.462667pt;}
.x76{left:317.536000pt;}
.x36{left:318.736000pt;}
.x3f{left:319.676000pt;}
.x6e{left:321.088000pt;}
.x6d{left:322.185333pt;}
.x57{left:324.045333pt;}
.x4d{left:325.361333pt;}
.x69{left:326.834667pt;}
.x6a{left:328.062667pt;}
.x64{left:330.386667pt;}
.x37{left:332.020000pt;}
.x8f{left:335.716000pt;}
.x40{left:343.958667pt;}
.x26{left:350.713333pt;}
.x1e{left:352.242667pt;}
.x90{left:364.372000pt;}
.x30{left:368.205333pt;}
.x27{left:370.497333pt;}
.x79{left:378.189333pt;}
.x83{left:379.658667pt;}
.xa9{left:382.960000pt;}
.x39{left:385.185333pt;}
.x84{left:386.300000pt;}
.x85{left:389.688000pt;}
.x31{left:391.360000pt;}
.xa4{left:393.408000pt;}
.x86{left:396.329333pt;}
.x87{left:399.717333pt;}
.x41{left:402.525333pt;}
.x32{left:405.666667pt;}
.x88{left:409.026667pt;}
.x10{left:411.009333pt;}
.x78{left:414.485333pt;}
.x16{left:415.545333pt;}
.x11{left:417.650667pt;}
.x33{left:418.950667pt;}
.x12{left:421.037333pt;}
.x17{left:422.188000pt;}
.x60{left:423.960000pt;}
.x42{left:425.674667pt;}
.x13{left:427.680000pt;}
.x58{left:429.770667pt;}
.x89{left:432.305333pt;}
.x2c{left:433.878667pt;}
.x38{left:436.166667pt;}
.x8a{left:439.013333pt;}
.x14{left:443.980000pt;}
.x7f{left:446.062667pt;}
.xc{left:451.288000pt;}
.x80{left:452.704000pt;}
.xd{left:457.929333pt;}
.x95{left:459.617333pt;}
.x43{left:462.713333pt;}
.x15{left:471.649333pt;}
.x96{left:472.901333pt;}
.x97{left:476.192000pt;}
.x98{left:489.476000pt;}
.x77{left:491.961333pt;}
.x3a{left:495.156000pt;}
.x6f{left:496.145333pt;}
.x46{left:497.460000pt;}
.x5a{left:498.470667pt;}
.x4e{left:500.041333pt;}
.x59{left:501.260000pt;}
.x6b{left:502.486667pt;}
.x66{left:504.580000pt;}
.x65{left:505.909333pt;}
.x3b{left:508.440000pt;}
.xa{left:520.282667pt;}
.x2a{left:523.806667pt;}
.x18{left:525.932000pt;}
.xb{left:526.924000pt;}
.x2b{left:530.449333pt;}
.x19{left:532.573333pt;}
.x28{left:548.757333pt;}
.x1c{left:550.132000pt;}
.x2e{left:551.768000pt;}
.x44{left:555.797333pt;}
.x1d{left:563.416000pt;}
.x29{left:564.556000pt;}
.x1f{left:579.054667pt;}
.x91{left:580.062667pt;}
.x7c{left:584.973333pt;}
.x7d{left:591.614667pt;}
.x5b{left:593.653333pt;}
.x7e{left:595.001333pt;}
.x4f{left:596.426667pt;}
.x5c{left:598.384000pt;}
.xe{left:600.005333pt;}
.x8b{left:602.529333pt;}
.x6c{left:604.196000pt;}
.xf{left:606.648000pt;}
.x3c{left:607.932000pt;}
.xa7{left:611.469333pt;}
.x8c{left:619.200000pt;}
.x8d{left:625.974667pt;}
.x8{left:630.129333pt;}
.x9e{left:633.490667pt;}
.x9{left:636.770667pt;}
.x8e{left:639.257333pt;}
.x99{left:642.313333pt;}
.x9f{left:646.773333pt;}
.x9a{left:655.596000pt;}
.x2d{left:657.185333pt;}
.x7b{left:664.146667pt;}
.x20{left:668.497333pt;}
.x50{left:670.217333pt;}
.xa1{left:676.260000pt;}
.x9c{left:677.940000pt;}
.x5d{left:680.749333pt;}
.x51{left:683.640000pt;}
.x5e{left:685.829333pt;}
.x9d{left:691.222667pt;}
.x9b{left:693.966667pt;}
.x92{left:705.922667pt;}
.x34{left:717.214667pt;}
.xa2{left:726.904000pt;}
.x35{left:728.756000pt;}
.xa3{left:740.188000pt;}
}




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