
    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_4724a965f49415787cc499f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fa72ab53a908c388eebe92ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_51ec80c56ac62cae453f8785.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_4e978a3f5aaa648f400d81a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_981f4f95e01be718e9ec6354.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_472602c5dc6d36a04b5bd837.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_61a291032d7b9642afa32305.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_df2c4bfbe5a32ec757162ee7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.040000;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_45be183968b92da549f3c8f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_aff69eb9130636b8e6105c6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;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_5242e1c535c76c7065077978.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.870000;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_795a4a9171ae2ed39a5a765c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_12f5c6d9078db3b712198015.woff2')format("woff");}.fff{font-family:fff;line-height:0.726000;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;}
.m9{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);}
.m27{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);}
.me{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);}
.m1f{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);}
.mb{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);}
.m22{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);}
.m20{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);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1{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);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.md{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);}
.m1b{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);}
.m25{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);}
.m2{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);}
.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);}
.mc{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);}
.m19{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);}
.m18{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);}
.mf{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);}
.m6{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);}
.m4{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);}
.m26{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);}
.m1a{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);}
.m5{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);}
.m12{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);}
.m14{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);}
.m23{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);}
.m16{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);}
.m1d{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);}
.m11{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);}
.m13{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);}
.m28{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);}
.ma{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);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.248000px;}
.v5{vertical-align:17.358000px;}
.v3{vertical-align:18.750000px;}
.v1{vertical-align:21.696000px;}
.lse{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000216px;}
.ls16{letter-spacing:0.000435px;}
.ls8{letter-spacing:0.000583px;}
.ls2c{letter-spacing:0.000705px;}
.ls38{letter-spacing:0.000800px;}
.ls3d{letter-spacing:0.001036px;}
.lsa{letter-spacing:0.001573px;}
.ls3b{letter-spacing:0.001932px;}
.ls29{letter-spacing:0.002412px;}
.ls20{letter-spacing:0.002669px;}
.ls4{letter-spacing:0.002725px;}
.ls27{letter-spacing:0.002973px;}
.ls3c{letter-spacing:0.003646px;}
.ls28{letter-spacing:0.004172px;}
.ls17{letter-spacing:0.642088px;}
.ls1f{letter-spacing:0.670282px;}
.ls10{letter-spacing:0.717483px;}
.lsd{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls6{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls1{letter-spacing:10.461300px;}
.ls19{letter-spacing:11.951700px;}
.lsc{letter-spacing:11.954850px;}
.ls18{letter-spacing:11.955787px;}
.ls2e{letter-spacing:12.901420px;}
.ls25{letter-spacing:12.969343px;}
.ls1c{letter-spacing:13.073424px;}
.ls2d{letter-spacing:13.164728px;}
.ls33{letter-spacing:13.248028px;}
.ls13{letter-spacing:13.444800px;}
.ls3e{letter-spacing:13.448196px;}
.ls2a{letter-spacing:13.448400px;}
.ls36{letter-spacing:13.448806px;}
.ls14{letter-spacing:13.450800px;}
.ls30{letter-spacing:13.454400px;}
.ls1d{letter-spacing:13.455740px;}
.ls32{letter-spacing:13.505174px;}
.ls34{letter-spacing:13.611252px;}
.ls31{letter-spacing:13.648160px;}
.ls2f{letter-spacing:13.659933px;}
.ls35{letter-spacing:13.779812px;}
.ls39{letter-spacing:14.562165px;}
.ls12{letter-spacing:14.704798px;}
.lsf{letter-spacing:14.706365px;}
.ls1b{letter-spacing:14.900435px;}
.ls23{letter-spacing:14.941200px;}
.ls26{letter-spacing:14.944200px;}
.ls2{letter-spacing:14.945108px;}
.ls24{letter-spacing:14.947200px;}
.ls3a{letter-spacing:15.815106px;}
.ls1a{letter-spacing:16.218082px;}
.ls37{letter-spacing:17.273929px;}
.ls7{letter-spacing:17.929200px;}
.ls15{letter-spacing:18.291334px;}
.ls2b{letter-spacing:19.197459px;}
.ls5{letter-spacing:57.415200px;}
.ls9{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.ls22{letter-spacing:716.652600px;}
.ls1e{letter-spacing:736.284600px;}
.ls21{letter-spacing:1001.136600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-14.943900px;}
.wsb7{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws48{word-spacing:-3.287658px;}
.ws84{word-spacing:-3.227882px;}
.ws83{word-spacing:-3.168107px;}
.wsaf{word-spacing:-2.743718px;}
.ws32{word-spacing:-2.689902px;}
.ws45{word-spacing:-2.570351px;}
.wsb0{word-spacing:-2.474726px;}
.ws62{word-spacing:-2.331248px;}
.ws69{word-spacing:-2.092146px;}
.ws8d{word-spacing:-1.972595px;}
.ws1{word-spacing:-1.908367px;}
.ws61{word-spacing:-1.853044px;}
.wsd9{word-spacing:-1.829146px;}
.wsa8{word-spacing:-1.793268px;}
.ws56{word-spacing:-1.733492px;}
.ws4e{word-spacing:-1.554166px;}
.ws8e{word-spacing:-1.521631px;}
.ws6c{word-spacing:-1.494390px;}
.ws0{word-spacing:-1.322630px;}
.ws65{word-spacing:-1.315063px;}
.ws90{word-spacing:-1.255288px;}
.ws60{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.171598px;}
.ws9{word-spacing:-1.046070px;}
.wsa9{word-spacing:-1.016185px;}
.ws66{word-spacing:-0.956410px;}
.ws4b{word-spacing:-0.896634px;}
.wsa4{word-spacing:-0.777083px;}
.wsc0{word-spacing:-0.753178px;}
.ws93{word-spacing:-0.717307px;}
.ws92{word-spacing:-0.657532px;}
.wsa7{word-spacing:-0.597756px;}
.wsc2{word-spacing:-0.537984px;}
.ws33{word-spacing:-0.478205px;}
.ws2f{word-spacing:-0.418429px;}
.wsac{word-spacing:-0.376589px;}
.ws6a{word-spacing:-0.358654px;}
.wsad{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.298878px;}
.ws20{word-spacing:-0.268992px;}
.ws3a{word-spacing:-0.239102px;}
.wsaa{word-spacing:-0.215194px;}
.ws31{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.wse7{word-spacing:-0.028944px;}
.ws4{word-spacing:-0.002909px;}
.ws8b{word-spacing:-0.001949px;}
.ws16{word-spacing:-0.001706px;}
.ws3{word-spacing:0.000000px;}
.ws8f{word-spacing:0.000564px;}
.ws17{word-spacing:0.002375px;}
.ws14{word-spacing:0.003608px;}
.ws86{word-spacing:0.022778px;}
.ws19{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.ws1a{word-spacing:0.107597px;}
.ws3e{word-spacing:0.119551px;}
.ws21{word-spacing:0.161395px;}
.ws23{word-spacing:0.179327px;}
.wsc3{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.wse6{word-spacing:0.268992px;}
.ws39{word-spacing:0.298878px;}
.wsd5{word-spacing:0.322790px;}
.ws25{word-spacing:0.358654px;}
.wsab{word-spacing:0.376589px;}
.ws9a{word-spacing:0.537980px;}
.wsd6{word-spacing:0.537984px;}
.ws7c{word-spacing:0.597756px;}
.ws38{word-spacing:0.657532px;}
.ws37{word-spacing:0.717307px;}
.wsdf{word-spacing:0.806976px;}
.ws73{word-spacing:0.836858px;}
.ws2e{word-spacing:0.896634px;}
.ws1b{word-spacing:0.914573px;}
.ws8{word-spacing:1.004227px;}
.ws4c{word-spacing:1.016185px;}
.ws70{word-spacing:1.075961px;}
.wsca{word-spacing:1.129766px;}
.ws47{word-spacing:1.255288px;}
.ws42{word-spacing:1.434614px;}
.ws72{word-spacing:1.494390px;}
.ws97{word-spacing:1.554166px;}
.ws3c{word-spacing:1.613941px;}
.wse5{word-spacing:1.613952px;}
.ws85{word-spacing:1.663724px;}
.ws68{word-spacing:1.673717px;}
.wsbe{word-spacing:1.829146px;}
.ws35{word-spacing:1.853044px;}
.ws4a{word-spacing:1.972595px;}
.ws78{word-spacing:2.032370px;}
.wsd1{word-spacing:2.044339px;}
.ws49{word-spacing:2.092146px;}
.ws8c{word-spacing:2.151922px;}
.ws71{word-spacing:2.211697px;}
.ws3d{word-spacing:2.271473px;}
.ws6d{word-spacing:2.331248px;}
.wse3{word-spacing:2.367130px;}
.ws98{word-spacing:2.391024px;}
.wsa5{word-spacing:2.450800px;}
.ws80{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws76{word-spacing:2.570351px;}
.ws5c{word-spacing:2.749678px;}
.ws4f{word-spacing:2.809453px;}
.ws50{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws44{word-spacing:2.929004px;}
.wsdc{word-spacing:3.012710px;}
.ws3f{word-spacing:3.048556px;}
.ws94{word-spacing:3.108331px;}
.ws40{word-spacing:3.168107px;}
.wsce{word-spacing:3.220339px;}
.wsd8{word-spacing:3.221875px;}
.wscf{word-spacing:3.223296px;}
.wsae{word-spacing:3.224822px;}
.ws9b{word-spacing:3.227882px;}
.ws82{word-spacing:3.227904px;}
.ws7d{word-spacing:3.287658px;}
.ws7a{word-spacing:3.347434px;}
.ws77{word-spacing:3.407209px;}
.wscb{word-spacing:3.496896px;}
.ws9f{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.ws28{word-spacing:3.646312px;}
.wsa0{word-spacing:3.765863px;}
.wse1{word-spacing:3.765888px;}
.wsde{word-spacing:3.819686px;}
.wsa2{word-spacing:3.825638px;}
.ws7e{word-spacing:3.885414px;}
.ws95{word-spacing:3.945190px;}
.ws59{word-spacing:4.004965px;}
.wseb{word-spacing:4.088678px;}
.ws5e{word-spacing:4.124516px;}
.wsa1{word-spacing:4.184292px;}
.ws54{word-spacing:4.244068px;}
.ws27{word-spacing:4.303843px;}
.wsc6{word-spacing:4.303872px;}
.wsb8{word-spacing:4.519066px;}
.ws58{word-spacing:4.542946px;}
.ws9c{word-spacing:4.602721px;}
.ws53{word-spacing:4.722272px;}
.wsf{word-spacing:4.770079px;}
.ws46{word-spacing:4.841824px;}
.ws10{word-spacing:4.853765px;}
.ws51{word-spacing:5.080926px;}
.ws1f{word-spacing:5.110848px;}
.ws9e{word-spacing:5.200477px;}
.ws6f{word-spacing:5.499355px;}
.ws24{word-spacing:5.559131px;}
.wsa6{word-spacing:5.618906px;}
.ws5b{word-spacing:5.678682px;}
.wsba{word-spacing:5.756429px;}
.ws36{word-spacing:5.798233px;}
.wsb4{word-spacing:5.864026px;}
.wsa3{word-spacing:5.917784px;}
.ws7f{word-spacing:5.969606px;}
.ws6e{word-spacing:6.097111px;}
.ws79{word-spacing:6.216662px;}
.wsb3{word-spacing:6.240614px;}
.ws74{word-spacing:6.575316px;}
.ws52{word-spacing:6.754643px;}
.ws4d{word-spacing:7.053521px;}
.wsd7{word-spacing:7.208986px;}
.ws91{word-spacing:7.232848px;}
.ws30{word-spacing:7.292623px;}
.ws96{word-spacing:7.412174px;}
.ws55{word-spacing:7.531726px;}
.ws6b{word-spacing:7.591501px;}
.ws99{word-spacing:7.651277px;}
.ws2a{word-spacing:7.770828px;}
.wsd{word-spacing:7.782761px;}
.ws57{word-spacing:7.890379px;}
.ws43{word-spacing:7.950155px;}
.ws7b{word-spacing:8.189257px;}
.ws9d{word-spacing:8.488135px;}
.ws5a{word-spacing:8.547911px;}
.ws75{word-spacing:8.966340px;}
.wsda{word-spacing:11.566656px;}
.ws2b{word-spacing:11.904248px;}
.wsb{word-spacing:12.176255px;}
.wsb2{word-spacing:12.212237px;}
.ws5d{word-spacing:12.313774px;}
.wsc1{word-spacing:12.642624px;}
.wsb1{word-spacing:12.696422px;}
.wsbd{word-spacing:13.073011px;}
.wsc9{word-spacing:13.180608px;}
.wscd{word-spacing:13.234406px;}
.wsd0{word-spacing:13.388640px;}
.wse4{word-spacing:13.390608px;}
.wsc5{word-spacing:13.394640px;}
.wsbc{word-spacing:13.395802px;}
.wsc8{word-spacing:13.449600px;}
.wsd3{word-spacing:13.503398px;}
.wscc{word-spacing:13.557197px;}
.wse8{word-spacing:13.718592px;}
.ws87{word-spacing:13.987490px;}
.ws63{word-spacing:14.764573px;}
.ws41{word-spacing:14.884124px;}
.ws64{word-spacing:15.003676px;}
.wsc{word-spacing:16.109478px;}
.wsbf{word-spacing:16.615622px;}
.wsea{word-spacing:16.615920px;}
.wsb6{word-spacing:16.616438px;}
.wsd2{word-spacing:16.617504px;}
.wsbb{word-spacing:16.623706px;}
.wsdb{word-spacing:16.677504px;}
.wsb5{word-spacing:16.785101px;}
.wse9{word-spacing:16.838899px;}
.wsc4{word-spacing:16.892698px;}
.wsc7{word-spacing:16.946496px;}
.wsd4{word-spacing:17.699674px;}
.ws67{word-spacing:18.470660px;}
.ws5f{word-spacing:18.649987px;}
.wse0{word-spacing:19.582618px;}
.wse2{word-spacing:22.595328px;}
.wsdd{word-spacing:26.092224px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.wsb9{word-spacing:30.718886px;}
.ws13{word-spacing:40.042186px;}
.ws81{word-spacing:145.632269px;}
.ws8a{word-spacing:655.694899px;}
.ws89{word-spacing:678.182630px;}
.ws88{word-spacing:957.374198px;}
._a{margin-left:-7.962163px;}
._1d{margin-left:-6.754643px;}
._3{margin-left:-5.397721px;}
._2{margin-left:-3.849538px;}
._21{margin-left:-2.764050px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._7{width:2.301354px;}
._4{width:3.891380px;}
._b{width:5.917824px;}
._20{width:10.356313px;}
._8{width:11.398711px;}
._6{width:12.971268px;}
._14{width:14.822586px;}
._d{width:15.901997px;}
._e{width:16.924166px;}
._12{width:18.829314px;}
._1c{width:20.323704px;}
._10{width:21.937645px;}
._18{width:23.858032px;}
._5{width:25.946136px;}
._1f{width:27.101048px;}
._19{width:28.759631px;}
._9{width:30.587087px;}
._f{width:32.494234px;}
._1a{width:34.251419px;}
._11{width:35.626258px;}
._38{width:37.561016px;}
._1b{width:38.929050px;}
._17{width:40.886510px;}
._13{width:42.321125px;}
._1e{width:45.067277px;}
._c{width:54.201684px;}
._3a{width:61.868160px;}
._2b{width:116.581133px;}
._2a{width:138.848822px;}
._2f{width:151.012109px;}
._2c{width:168.227597px;}
._33{width:180.601229px;}
._23{width:184.474714px;}
._29{width:199.376870px;}
._26{width:201.851597px;}
._2d{width:204.563846px;}
._28{width:206.155469px;}
._24{width:219.658867px;}
._25{width:223.424755px;}
._34{width:266.624870px;}
._22{width:364.621600px;}
._2e{width:411.019776px;}
._27{width:438.371693px;}
._32{width:545.139187px;}
._30{width:684.746035px;}
._31{width:690.556262px;}
._37{width:729.235651px;}
._15{width:746.336104px;}
._36{width:917.693107px;}
._35{width:998.175514px;}
._39{width:2410.328700px;}
._16{width:2434.238700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(61,100,144);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1f{bottom:18.594411px;}
.y4d{bottom:31.890000px;}
.y185{bottom:94.789500px;}
.y11e{bottom:97.770000px;}
.y106{bottom:100.020000px;}
.y1e9{bottom:104.503500px;}
.y1d{bottom:104.646000px;}
.y135{bottom:105.540000px;}
.y4c{bottom:107.983500px;}
.y1b2{bottom:108.135000px;}
.yd6{bottom:110.182500px;}
.y184{bottom:113.619000px;}
.y11d{bottom:116.250000px;}
.y105{bottom:118.849500px;}
.y1e8{bottom:121.762500px;}
.y1c{bottom:122.535000px;}
.y1b1{bottom:125.395500px;}
.yaa{bottom:125.574000px;}
.y82{bottom:126.022500px;}
.y4b{bottom:126.813000px;}
.yd5{bottom:129.012000px;}
.y11c{bottom:132.688500px;}
.y183{bottom:136.932000px;}
.y104{bottom:137.679000px;}
.y1e7{bottom:139.023000px;}
.y1b{bottom:140.422500px;}
.y1b0{bottom:142.656000px;}
.ya9{bottom:144.403500px;}
.y81{bottom:144.852000px;}
.y4a{bottom:145.642500px;}
.yd4{bottom:147.840000px;}
.y11b{bottom:149.127000px;}
.y1e6{bottom:156.283500px;}
.y103{bottom:156.508500px;}
.y1a{bottom:158.310000px;}
.y15a{bottom:159.198000px;}
.y1af{bottom:159.915000px;}
.ya8{bottom:163.233000px;}
.y80{bottom:163.681500px;}
.y49{bottom:164.472000px;}
.y11a{bottom:165.565500px;}
.yd3{bottom:166.669500px;}
.y182{bottom:170.556000px;}
.y1e5{bottom:173.544000px;}
.y102{bottom:175.338000px;}
.y19{bottom:176.199000px;}
.y1ae{bottom:177.175500px;}
.y159{bottom:178.027500px;}
.ya7{bottom:182.062500px;}
.y7f{bottom:182.511000px;}
.y48{bottom:183.301500px;}
.yd2{bottom:185.499000px;}
.y119{bottom:189.205500px;}
.y181{bottom:189.385500px;}
.y1e4{bottom:190.804500px;}
.y18{bottom:194.086500px;}
.y101{bottom:194.167500px;}
.y1ad{bottom:194.436000px;}
.y158{bottom:196.857000px;}
.ya6{bottom:200.892000px;}
.y7e{bottom:201.340500px;}
.y47{bottom:202.131000px;}
.yd1{bottom:204.328500px;}
.y1e3{bottom:208.065000px;}
.y180{bottom:208.215000px;}
.y1ac{bottom:211.696500px;}
.y17{bottom:211.974000px;}
.y100{bottom:212.997000px;}
.y157{bottom:215.686500px;}
.ya5{bottom:219.721500px;}
.y7d{bottom:220.170000px;}
.y118{bottom:220.825500px;}
.y46{bottom:220.960500px;}
.yd0{bottom:223.158000px;}
.y1e2{bottom:225.325500px;}
.y17f{bottom:227.044500px;}
.y1ab{bottom:228.957000px;}
.y16{bottom:229.863000px;}
.yff{bottom:231.826500px;}
.y156{bottom:234.516000px;}
.ya4{bottom:238.551000px;}
.y7c{bottom:238.999500px;}
.y45{bottom:239.790000px;}
.ycf{bottom:241.987500px;}
.y1e1{bottom:242.586000px;}
.y17e{bottom:245.874000px;}
.y1aa{bottom:246.217500px;}
.yfe{bottom:250.656000px;}
.y155{bottom:253.345500px;}
.ya3{bottom:257.380500px;}
.y7b{bottom:257.829000px;}
.y117{bottom:257.929500px;}
.y44{bottom:258.619500px;}
.y1e0{bottom:259.846500px;}
.yce{bottom:260.817000px;}
.y1a9{bottom:263.478000px;}
.y17d{bottom:264.702000px;}
.yfd{bottom:269.485500px;}
.y154{bottom:272.175000px;}
.ya2{bottom:276.210000px;}
.y7a{bottom:276.658500px;}
.y116{bottom:276.759000px;}
.y1df{bottom:277.105500px;}
.y43{bottom:277.449000px;}
.ycd{bottom:279.646500px;}
.y1a8{bottom:280.738500px;}
.y17c{bottom:283.531500px;}
.yfc{bottom:288.315000px;}
.y153{bottom:291.004500px;}
.y1de{bottom:294.366000px;}
.ya1{bottom:295.039500px;}
.y79{bottom:295.488000px;}
.y115{bottom:295.588500px;}
.y42{bottom:296.278500px;}
.y1a7{bottom:297.999000px;}
.ycc{bottom:298.476000px;}
.y15{bottom:300.154500px;}
.y17b{bottom:302.361000px;}
.yfb{bottom:307.144500px;}
.y152{bottom:309.834000px;}
.y1dd{bottom:311.626500px;}
.ya0{bottom:313.869000px;}
.y78{bottom:314.317500px;}
.y114{bottom:314.418000px;}
.y41{bottom:315.108000px;}
.y1a6{bottom:315.258000px;}
.y14{bottom:318.043500px;}
.y17a{bottom:321.190500px;}
.ycb{bottom:321.789000px;}
.y151{bottom:328.663500px;}
.y1dc{bottom:328.887000px;}
.yfa{bottom:330.456000px;}
.y1a5{bottom:332.518500px;}
.y9f{bottom:332.698500px;}
.y77{bottom:333.145500px;}
.y113{bottom:333.247500px;}
.y40{bottom:333.937500px;}
.y13{bottom:335.931000px;}
.y179{bottom:340.020000px;}
.yca{bottom:341.964000px;}
.y1db{bottom:346.147500px;}
.y150{bottom:347.493000px;}
.y1a4{bottom:349.779000px;}
.y9e{bottom:351.528000px;}
.y76{bottom:351.975000px;}
.y3f{bottom:352.765500px;}
.y12{bottom:353.818500px;}
.y178{bottom:358.849500px;}
.y1da{bottom:363.408000px;}
.yf9{bottom:364.080000px;}
.y14f{bottom:366.322500px;}
.y112{bottom:366.813000px;}
.y1a3{bottom:367.039500px;}
.y9d{bottom:370.357500px;}
.y75{bottom:370.804500px;}
.yc9{bottom:375.588000px;}
.y3e{bottom:376.078500px;}
.y177{bottom:377.679000px;}
.y1d9{bottom:380.668500px;}
.y11{bottom:380.673000px;}
.yf8{bottom:382.909500px;}
.y1a2{bottom:384.300000px;}
.y14e{bottom:385.152000px;}
.y9c{bottom:389.187000px;}
.y74{bottom:389.634000px;}
.yc8{bottom:394.416000px;}
.y176{bottom:396.508500px;}
.y1d8{bottom:397.929000px;}
.y10{bottom:398.562000px;}
.y1a1{bottom:401.560500px;}
.yf7{bottom:401.739000px;}
.y14d{bottom:403.981500px;}
.y9b{bottom:408.015000px;}
.y73{bottom:408.463500px;}
.yc7{bottom:413.245500px;}
.y1d7{bottom:415.188000px;}
.y175{bottom:415.338000px;}
.yf{bottom:416.449500px;}
.y1a0{bottom:418.821000px;}
.yf6{bottom:420.568500px;}
.y14c{bottom:422.811000px;}
.y9a{bottom:426.844500px;}
.y72{bottom:431.776500px;}
.yc6{bottom:432.075000px;}
.y1d6{bottom:432.448500px;}
.y174{bottom:434.167500px;}
.y19f{bottom:436.081500px;}
.yf5{bottom:439.398000px;}
.y14b{bottom:441.639000px;}
.ye{bottom:444.798000px;}
.y99{bottom:445.674000px;}
.y1d5{bottom:449.709000px;}
.yc5{bottom:450.904500px;}
.y3d{bottom:451.228500px;}
.y19d{bottom:453.340500px;}
.y19e{bottom:453.342000px;}
.y173{bottom:457.480500px;}
.y14a{bottom:460.468500px;}
.yd{bottom:462.685500px;}
.yf4{bottom:462.711000px;}
.y98{bottom:464.503500px;}
.y71{bottom:465.400500px;}
.y1d4{bottom:466.969500px;}
.yc4{bottom:469.734000px;}
.y19c{bottom:470.601000px;}
.y3c{bottom:470.686500px;}
.y149{bottom:479.298000px;}
.y97{bottom:483.333000px;}
.y70{bottom:484.230000px;}
.y19b{bottom:487.861500px;}
.yc{bottom:489.540000px;}
.y172{bottom:491.104500px;}
.yc3{bottom:493.047000px;}
.y134{bottom:495.591000px;}
.yf3{bottom:496.335000px;}
.y148{bottom:498.127500px;}
.y1d3{bottom:501.490500px;}
.y96{bottom:502.162500px;}
.y6f{bottom:503.059500px;}
.y19a{bottom:505.122000px;}
.yb{bottom:507.429000px;}
.y3b{bottom:508.075500px;}
.y171{bottom:509.934000px;}
.y133{bottom:514.419000px;}
.yf2{bottom:515.164500px;}
.y147{bottom:516.957000px;}
.y1d2{bottom:518.751000px;}
.y95{bottom:520.992000px;}
.y6e{bottom:521.889000px;}
.y199{bottom:522.382500px;}
.yc2{bottom:523.683000px;}
.ya{bottom:525.316500px;}
.y3a{bottom:527.533500px;}
.y170{bottom:528.763500px;}
.y132{bottom:533.248500px;}
.yf1{bottom:533.994000px;}
.y146{bottom:535.786500px;}
.y1d1{bottom:536.011500px;}
.y198{bottom:539.643000px;}
.y6d{bottom:540.718500px;}
.yc1{bottom:542.511000px;}
.y9{bottom:543.204000px;}
.y94{bottom:544.305000px;}
.y39{bottom:546.990000px;}
.y16f{bottom:547.593000px;}
.y131{bottom:552.078000px;}
.yf0{bottom:552.823500px;}
.y1d0{bottom:553.272000px;}
.y145{bottom:554.616000px;}
.y197{bottom:556.903500px;}
.y6c{bottom:559.548000px;}
.y8{bottom:561.093000px;}
.yc0{bottom:561.340500px;}
.y16e{bottom:566.422500px;}
.y38{bottom:566.446500px;}
.y1cf{bottom:570.531000px;}
.y130{bottom:570.907500px;}
.yef{bottom:571.653000px;}
.y144{bottom:573.445500px;}
.y93{bottom:577.929000px;}
.y6b{bottom:578.377500px;}
.y196{bottom:578.646000px;}
.y7{bottom:578.980500px;}
.y16d{bottom:585.252000px;}
.y37{bottom:585.904500px;}
.y1ce{bottom:587.791500px;}
.y12f{bottom:589.737000px;}
.yee{bottom:590.482500px;}
.ybf{bottom:592.126500px;}
.y143{bottom:592.275000px;}
.y92{bottom:596.758500px;}
.y6{bottom:596.868000px;}
.y6a{bottom:597.207000px;}
.y16c{bottom:604.081500px;}
.y1cd{bottom:605.052000px;}
.y36{bottom:605.361000px;}
.yed{bottom:609.312000px;}
.ybe{bottom:610.954500px;}
.y142{bottom:611.104500px;}
.y195{bottom:612.270000px;}
.y12e{bottom:613.050000px;}
.y5{bottom:614.757000px;}
.y91{bottom:615.588000px;}
.y69{bottom:616.036500px;}
.y1cc{bottom:622.312500px;}
.y16b{bottom:622.911000px;}
.y35{bottom:624.817500px;}
.ybd{bottom:629.784000px;}
.y141{bottom:629.934000px;}
.yec{bottom:632.623500px;}
.y4{bottom:632.644500px;}
.y90{bottom:634.417500px;}
.y68{bottom:634.866000px;}
.y194{bottom:638.811000px;}
.y1cb{bottom:639.573000px;}
.y16a{bottom:641.740500px;}
.y34{bottom:644.275500px;}
.y12d{bottom:648.408000px;}
.ybc{bottom:648.613500px;}
.y140{bottom:648.763500px;}
.y1{bottom:650.532055px;}
.y8f{bottom:653.247000px;}
.y67{bottom:653.695500px;}
.y193{bottom:656.385000px;}
.y1ca{bottom:656.833500px;}
.y169{bottom:660.570000px;}
.y33{bottom:663.732000px;}
.y12c{bottom:664.815000px;}
.yeb{bottom:666.247500px;}
.ybb{bottom:667.443000px;}
.y13f{bottom:667.593000px;}
.y8e{bottom:672.076500px;}
.y66{bottom:672.525000px;}
.y192{bottom:673.959000px;}
.y1c9{bottom:674.094000px;}
.y168{bottom:679.398000px;}
.y12b{bottom:681.879000px;}
.y32{bottom:683.190000px;}
.yea{bottom:685.077000px;}
.yba{bottom:686.272500px;}
.y13e{bottom:686.422500px;}
.y8d{bottom:690.906000px;}
.y65{bottom:691.354500px;}
.y167{bottom:698.227500px;}
.y12a{bottom:698.941500px;}
.y191{bottom:700.500000px;}
.y31{bottom:702.646500px;}
.ye9{bottom:703.906500px;}
.yb9{bottom:705.102000px;}
.y1c8{bottom:708.613500px;}
.y8c{bottom:709.735500px;}
.y64{bottom:710.184000px;}
.y129{bottom:715.380000px;}
.y166{bottom:717.057000px;}
.y190{bottom:718.074000px;}
.y30{bottom:722.103000px;}
.ye8{bottom:722.736000px;}
.yb8{bottom:723.931500px;}
.y1c7{bottom:725.874000px;}
.y8b{bottom:728.565000px;}
.y63{bottom:729.013500px;}
.y128{bottom:732.442500px;}
.y165{bottom:735.886500px;}
.y2f{bottom:741.561000px;}
.ye7{bottom:741.565500px;}
.yb7{bottom:742.761000px;}
.y1c6{bottom:743.134500px;}
.y13d{bottom:743.359500px;}
.y18f{bottom:744.615000px;}
.y8a{bottom:747.394500px;}
.y62{bottom:747.843000px;}
.y127{bottom:748.881000px;}
.y164{bottom:754.716000px;}
.ye6{bottom:760.395000px;}
.y2e{bottom:761.017500px;}
.yb6{bottom:761.590500px;}
.y13c{bottom:762.189000px;}
.y111{bottom:764.878500px;}
.y126{bottom:765.319500px;}
.y89{bottom:766.224000px;}
.y61{bottom:766.671000px;}
.y163{bottom:773.545500px;}
.y1c5{bottom:777.655500px;}
.ye5{bottom:779.224500px;}
.y18e{bottom:779.763000px;}
.yb5{bottom:780.420000px;}
.y13b{bottom:781.018500px;}
.y125{bottom:782.382000px;}
.y110{bottom:783.708000px;}
.y88{bottom:785.053500px;}
.y60{bottom:785.500500px;}
.y162{bottom:792.375000px;}
.y1c4{bottom:794.916000px;}
.ye4{bottom:798.054000px;}
.y124{bottom:798.820500px;}
.yb4{bottom:799.249500px;}
.y2d{bottom:799.603500px;}
.y13a{bottom:799.848000px;}
.y10f{bottom:802.537500px;}
.y87{bottom:803.883000px;}
.y5f{bottom:804.330000px;}
.y18d{bottom:806.304000px;}
.y161{bottom:811.204500px;}
.y1c3{bottom:812.176500px;}
.y123{bottom:815.259000px;}
.y2c{bottom:815.742000px;}
.ye3{bottom:816.883500px;}
.yb3{bottom:818.079000px;}
.y139{bottom:818.677500px;}
.y10e{bottom:821.367000px;}
.y86{bottom:822.712500px;}
.y5e{bottom:823.159500px;}
.y1c2{bottom:829.437000px;}
.y160{bottom:830.034000px;}
.y18c{bottom:832.843500px;}
.y2b{bottom:836.221500px;}
.yb2{bottom:836.908500px;}
.y138{bottom:837.507000px;}
.y122{bottom:839.094000px;}
.ye2{bottom:840.196500px;}
.y85{bottom:841.540500px;}
.y5d{bottom:841.989000px;}
.y1c1{bottom:846.697500px;}
.y2a{bottom:848.022000px;}
.y15f{bottom:848.863500px;}
.y18b{bottom:850.417500px;}
.yb1{bottom:855.738000px;}
.y137{bottom:856.335000px;}
.y10d{bottom:859.026000px;}
.y84{bottom:860.370000px;}
.y5c{bottom:860.818500px;}
.y121{bottom:862.930500px;}
.y1c0{bottom:863.956500px;}
.y15e{bottom:867.693000px;}
.y18a{bottom:867.991500px;}
.y29{bottom:868.501500px;}
.yb0{bottom:874.567500px;}
.y136{bottom:875.164500px;}
.y10c{bottom:877.855500px;}
.y5b{bottom:879.648000px;}
.y1bf{bottom:881.217000px;}
.y83{bottom:883.683000px;}
.y28{bottom:884.640000px;}
.y189{bottom:885.567000px;}
.y15d{bottom:886.522500px;}
.yaf{bottom:893.397000px;}
.ye1{bottom:893.994000px;}
.y120{bottom:894.549000px;}
.y27{bottom:896.440500px;}
.y10b{bottom:896.685000px;}
.y5a{bottom:898.477500px;}
.y188{bottom:903.141000px;}
.y15c{bottom:905.352000px;}
.yae{bottom:912.226500px;}
.y26{bottom:912.580500px;}
.ye0{bottom:912.823500px;}
.y10a{bottom:915.514500px;}
.y1be{bottom:915.738000px;}
.y59{bottom:917.307000px;}
.y187{bottom:920.715000px;}
.y15b{bottom:924.181500px;}
.yad{bottom:931.056000px;}
.ydf{bottom:931.653000px;}
.y1bd{bottom:932.998500px;}
.y25{bottom:933.058500px;}
.y109{bottom:934.344000px;}
.y58{bottom:936.136500px;}
.y186{bottom:938.289000px;}
.y1bc{bottom:950.259000px;}
.yde{bottom:950.482500px;}
.y57{bottom:954.966000px;}
.y108{bottom:957.655500px;}
.yac{bottom:961.840500px;}
.y1bb{bottom:967.519500px;}
.ydd{bottom:969.312000px;}
.y56{bottom:973.795500px;}
.y24{bottom:977.736000px;}
.y107{bottom:977.830500px;}
.yab{bottom:980.670000px;}
.y1ba{bottom:984.780000px;}
.ydc{bottom:988.141500px;}
.y55{bottom:992.625000px;}
.y11f{bottom:993.567000px;}
.y23{bottom:996.565500px;}
.y1b8{bottom:1002.039000px;}
.y1b9{bottom:1002.040500px;}
.ydb{bottom:1006.971000px;}
.y54{bottom:1011.454500px;}
.y1b7{bottom:1019.299500px;}
.yda{bottom:1025.800500px;}
.y53{bottom:1030.284000px;}
.y22{bottom:1036.485000px;}
.y1b6{bottom:1036.560000px;}
.yd9{bottom:1044.630000px;}
.y52{bottom:1049.113500px;}
.y1b5{bottom:1053.820500px;}
.yd8{bottom:1063.459500px;}
.y21{bottom:1064.728500px;}
.y51{bottom:1067.943000px;}
.y1b4{bottom:1071.081000px;}
.yd7{bottom:1082.289000px;}
.y50{bottom:1086.772500px;}
.y1b3{bottom:1088.341500px;}
.y20{bottom:1092.972000px;}
.y4f{bottom:1105.602000px;}
.y1e{bottom:1136.460000px;}
.y4e{bottom:1168.366500px;}
.h13{height:16.817382px;}
.h2{height:25.508090px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:37.993262px;}
.he{height:38.896243px;}
.h16{height:41.250077px;}
.h14{height:41.723369px;}
.h15{height:41.842920px;}
.h10{height:43.217759px;}
.hc{height:43.421105px;}
.hd{height:43.660208px;}
.h8{height:43.815515px;}
.hf{height:48.848947px;}
.h17{height:49.002344px;}
.h1a{height:49.117939px;}
.h6{height:50.931027px;}
.h11{height:54.276245px;}
.h12{height:54.575123px;}
.ha{height:55.352206px;}
.h19{height:57.517262px;}
.h18{height:57.523262px;}
.h7{height:69.505289px;}
.h9{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.x83{left:85.848000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5a{left:258.556500px;}
.x5{left:269.914500px;}
.x9{left:281.479500px;}
.x36{left:283.836000px;}
.x37{left:291.307500px;}
.x27{left:293.011500px;}
.x47{left:294.523500px;}
.x7{left:308.131500px;}
.x48{left:309.468000px;}
.x28{left:311.698500px;}
.x8{left:319.918500px;}
.x29{left:326.643000px;}
.x13{left:332.734500px;}
.x14{left:340.206000px;}
.x73{left:342.363000px;}
.x53{left:347.925000px;}
.x21{left:354.745500px;}
.x6b{left:360.796500px;}
.x2e{left:361.842000px;}
.x15{left:367.987500px;}
.x2f{left:376.786500px;}
.x1d{left:379.125000px;}
.x30{left:380.448000px;}
.x16{left:382.930500px;}
.x17{left:386.722500px;}
.x7f{left:390.625500px;}
.x22{left:392.539500px;}
.x1e{left:394.069500px;}
.x31{left:395.391000px;}
.x18{left:401.667000px;}
.x5e{left:403.362000px;}
.x23{left:407.484000px;}
.x77{left:409.059000px;}
.x19{left:413.893500px;}
.x78{left:424.570500px;}
.x4e{left:426.837000px;}
.x1a{left:428.838000px;}
.x82{left:434.250000px;}
.xc{left:436.899000px;}
.x4f{left:441.781500px;}
.xd{left:444.370500px;}
.x81{left:447.652500px;}
.x12{left:451.834500px;}
.x26{left:459.636000px;}
.x3e{left:465.844500px;}
.x60{left:469.359000px;}
.x5b{left:470.421000px;}
.x5c{left:479.850000px;}
.x79{left:480.987000px;}
.x80{left:486.708000px;}
.x5d{left:492.141000px;}
.x6c{left:496.701000px;}
.x43{left:504.978000px;}
.xe{left:509.106000px;}
.x6d{left:511.645500px;}
.x6e{left:515.307000px;}
.xf{left:516.579000px;}
.x74{left:518.710500px;}
.x44{left:519.922500px;}
.x4c{left:521.554500px;}
.x4a{left:527.950500px;}
.x6f{left:530.251500px;}
.x45{left:531.436500px;}
.x75{left:533.653500px;}
.x4d{left:536.497500px;}
.x3f{left:538.398000px;}
.x61{left:539.839500px;}
.x4b{left:542.893500px;}
.x46{left:546.381000px;}
.x62{left:549.741000px;}
.x40{left:553.342500px;}
.x63{left:557.941500px;}
.x58{left:564.396000px;}
.x64{left:570.232500px;}
.x59{left:576.688500px;}
.x3c{left:579.928500px;}
.xa{left:581.511000px;}
.x10{left:585.877500px;}
.xb{left:588.982500px;}
.x2c{left:590.901000px;}
.x11{left:593.349000px;}
.x3d{left:594.873000px;}
.x2d{left:605.844000px;}
.x2a{left:617.320500px;}
.x7e{left:620.706000px;}
.x76{left:623.224500px;}
.x2b{left:632.265000px;}
.x1f{left:637.279500px;}
.x7a{left:644.316000px;}
.x54{left:650.952000px;}
.x20{left:652.222500px;}
.x41{left:656.158500px;}
.x7b{left:659.260500px;}
.x8c{left:664.087500px;}
.x55{left:665.895000px;}
.x42{left:671.103000px;}
.x90{left:681.999000px;}
.x65{left:684.747000px;}
.x70{left:688.072500px;}
.x8d{left:690.987000px;}
.x8a{left:697.072500px;}
.x87{left:698.340000px;}
.x66{left:699.691500px;}
.x67{left:703.446000px;}
.x91{left:708.898500px;}
.x51{left:713.182500px;}
.x68{left:718.390500px;}
.x69{left:722.145000px;}
.x56{left:723.855000px;}
.x1b{left:725.521500px;}
.x52{left:728.125500px;}
.x8e{left:734.280000px;}
.x85{left:735.709500px;}
.x6a{left:737.088000px;}
.x57{left:738.798000px;}
.x1c{left:740.466000px;}
.x84{left:746.272500px;}
.x7d{left:747.681000px;}
.x8f{left:761.179500px;}
.x86{left:762.607500px;}
.x88{left:764.911500px;}
.x8b{left:767.295000px;}
.x5f{left:772.206000px;}
.x3a{left:777.208500px;}
.x49{left:779.020500px;}
.x32{left:782.028000px;}
.x7c{left:786.421500px;}
.x33{left:789.499500px;}
.x3b{left:792.153000px;}
.x34{left:793.221000px;}
.x71{left:796.227000px;}
.x38{left:798.195000px;}
.x35{left:800.692500px;}
.x50{left:804.505500px;}
.x72{left:811.170000px;}
.x39{left:813.138000px;}
.x24{left:817.707000px;}
.x89{left:824.037000px;}
.x25{left:832.650000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.109333pt;}
.v5{vertical-align:15.429333pt;}
.v3{vertical-align:16.666667pt;}
.v1{vertical-align:19.285333pt;}
.lse{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000192pt;}
.ls16{letter-spacing:0.000387pt;}
.ls8{letter-spacing:0.000518pt;}
.ls2c{letter-spacing:0.000627pt;}
.ls38{letter-spacing:0.000711pt;}
.ls3d{letter-spacing:0.000921pt;}
.lsa{letter-spacing:0.001398pt;}
.ls3b{letter-spacing:0.001718pt;}
.ls29{letter-spacing:0.002144pt;}
.ls20{letter-spacing:0.002372pt;}
.ls4{letter-spacing:0.002422pt;}
.ls27{letter-spacing:0.002643pt;}
.ls3c{letter-spacing:0.003241pt;}
.ls28{letter-spacing:0.003708pt;}
.ls17{letter-spacing:0.570745pt;}
.ls1f{letter-spacing:0.595806pt;}
.ls10{letter-spacing:0.637762pt;}
.lsd{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls6{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1{letter-spacing:9.298933pt;}
.ls19{letter-spacing:10.623733pt;}
.lsc{letter-spacing:10.626533pt;}
.ls18{letter-spacing:10.627366pt;}
.ls2e{letter-spacing:11.467929pt;}
.ls25{letter-spacing:11.528305pt;}
.ls1c{letter-spacing:11.620822pt;}
.ls2d{letter-spacing:11.701980pt;}
.ls33{letter-spacing:11.776025pt;}
.ls13{letter-spacing:11.950933pt;}
.ls3e{letter-spacing:11.953952pt;}
.ls2a{letter-spacing:11.954133pt;}
.ls36{letter-spacing:11.954495pt;}
.ls14{letter-spacing:11.956267pt;}
.ls30{letter-spacing:11.959467pt;}
.ls1d{letter-spacing:11.960658pt;}
.ls32{letter-spacing:12.004599pt;}
.ls34{letter-spacing:12.098891pt;}
.ls31{letter-spacing:12.131697pt;}
.ls2f{letter-spacing:12.142163pt;}
.ls35{letter-spacing:12.248722pt;}
.ls39{letter-spacing:12.944146pt;}
.ls12{letter-spacing:13.070931pt;}
.lsf{letter-spacing:13.072324pt;}
.ls1b{letter-spacing:13.244831pt;}
.ls23{letter-spacing:13.281067pt;}
.ls26{letter-spacing:13.283733pt;}
.ls2{letter-spacing:13.284541pt;}
.ls24{letter-spacing:13.286400pt;}
.ls3a{letter-spacing:14.057872pt;}
.ls1a{letter-spacing:14.416073pt;}
.ls37{letter-spacing:15.354604pt;}
.ls7{letter-spacing:15.937067pt;}
.ls15{letter-spacing:16.258963pt;}
.ls2b{letter-spacing:17.064408pt;}
.ls5{letter-spacing:51.035733pt;}
.ls9{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ls22{letter-spacing:637.024533pt;}
.ls1e{letter-spacing:654.475200pt;}
.ls21{letter-spacing:889.899200pt;}
.ws12{word-spacing:-13.283467pt;}
.wsb7{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws15{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws48{word-spacing:-2.922363pt;}
.ws84{word-spacing:-2.869229pt;}
.ws83{word-spacing:-2.816095pt;}
.wsaf{word-spacing:-2.438861pt;}
.ws32{word-spacing:-2.391024pt;}
.ws45{word-spacing:-2.284756pt;}
.wsb0{word-spacing:-2.199757pt;}
.ws62{word-spacing:-2.072221pt;}
.ws69{word-spacing:-1.859685pt;}
.ws8d{word-spacing:-1.753418pt;}
.ws1{word-spacing:-1.696326pt;}
.ws61{word-spacing:-1.647150pt;}
.wsd9{word-spacing:-1.625907pt;}
.wsa8{word-spacing:-1.594016pt;}
.ws56{word-spacing:-1.540882pt;}
.ws4e{word-spacing:-1.381481pt;}
.ws8e{word-spacing:-1.352561pt;}
.ws6c{word-spacing:-1.328347pt;}
.ws0{word-spacing:-1.175671pt;}
.ws65{word-spacing:-1.168945pt;}
.ws90{word-spacing:-1.115811pt;}
.ws60{word-spacing:-1.062677pt;}
.ws7{word-spacing:-1.041421pt;}
.ws9{word-spacing:-0.929840pt;}
.wsa9{word-spacing:-0.903276pt;}
.ws66{word-spacing:-0.850142pt;}
.ws4b{word-spacing:-0.797008pt;}
.wsa4{word-spacing:-0.690740pt;}
.wsc0{word-spacing:-0.669491pt;}
.ws93{word-spacing:-0.637606pt;}
.ws92{word-spacing:-0.584473pt;}
.wsa7{word-spacing:-0.531339pt;}
.wsc2{word-spacing:-0.478208pt;}
.ws33{word-spacing:-0.425071pt;}
.ws2f{word-spacing:-0.371937pt;}
.wsac{word-spacing:-0.334746pt;}
.ws6a{word-spacing:-0.318803pt;}
.wsad{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws20{word-spacing:-0.239104pt;}
.ws3a{word-spacing:-0.212535pt;}
.wsaa{word-spacing:-0.191283pt;}
.ws31{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.wse7{word-spacing:-0.025728pt;}
.ws4{word-spacing:-0.002586pt;}
.ws8b{word-spacing:-0.001732pt;}
.ws16{word-spacing:-0.001517pt;}
.ws3{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.000501pt;}
.ws17{word-spacing:0.002111pt;}
.ws14{word-spacing:0.003207pt;}
.ws86{word-spacing:0.020247pt;}
.ws19{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.ws1a{word-spacing:0.095642pt;}
.ws3e{word-spacing:0.106268pt;}
.ws21{word-spacing:0.143462pt;}
.ws23{word-spacing:0.159402pt;}
.wsc3{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.wse6{word-spacing:0.239104pt;}
.ws39{word-spacing:0.265669pt;}
.wsd5{word-spacing:0.286925pt;}
.ws25{word-spacing:0.318803pt;}
.wsab{word-spacing:0.334746pt;}
.ws9a{word-spacing:0.478205pt;}
.wsd6{word-spacing:0.478208pt;}
.ws7c{word-spacing:0.531339pt;}
.ws38{word-spacing:0.584473pt;}
.ws37{word-spacing:0.637606pt;}
.wsdf{word-spacing:0.717312pt;}
.ws73{word-spacing:0.743874pt;}
.ws2e{word-spacing:0.797008pt;}
.ws1b{word-spacing:0.812954pt;}
.ws8{word-spacing:0.892646pt;}
.ws4c{word-spacing:0.903276pt;}
.ws70{word-spacing:0.956410pt;}
.wsca{word-spacing:1.004237pt;}
.ws47{word-spacing:1.115811pt;}
.ws42{word-spacing:1.275213pt;}
.ws72{word-spacing:1.328347pt;}
.ws97{word-spacing:1.381481pt;}
.ws3c{word-spacing:1.434614pt;}
.wse5{word-spacing:1.434624pt;}
.ws85{word-spacing:1.478865pt;}
.ws68{word-spacing:1.487748pt;}
.wsbe{word-spacing:1.625907pt;}
.ws35{word-spacing:1.647150pt;}
.ws4a{word-spacing:1.753418pt;}
.ws78{word-spacing:1.806551pt;}
.wsd1{word-spacing:1.817190pt;}
.ws49{word-spacing:1.859685pt;}
.ws8c{word-spacing:1.912819pt;}
.ws71{word-spacing:1.965953pt;}
.ws3d{word-spacing:2.019087pt;}
.ws6d{word-spacing:2.072221pt;}
.wse3{word-spacing:2.104115pt;}
.ws98{word-spacing:2.125355pt;}
.wsa5{word-spacing:2.178489pt;}
.ws80{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws76{word-spacing:2.284756pt;}
.ws5c{word-spacing:2.444158pt;}
.ws4f{word-spacing:2.497292pt;}
.ws50{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws44{word-spacing:2.603559pt;}
.wsdc{word-spacing:2.677965pt;}
.ws3f{word-spacing:2.709827pt;}
.ws94{word-spacing:2.762961pt;}
.ws40{word-spacing:2.816095pt;}
.wsce{word-spacing:2.862524pt;}
.wsd8{word-spacing:2.863889pt;}
.wscf{word-spacing:2.865152pt;}
.wsae{word-spacing:2.866509pt;}
.ws9b{word-spacing:2.869229pt;}
.ws82{word-spacing:2.869248pt;}
.ws7d{word-spacing:2.922363pt;}
.ws7a{word-spacing:2.975497pt;}
.ws77{word-spacing:3.028630pt;}
.wscb{word-spacing:3.108352pt;}
.ws9f{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.ws28{word-spacing:3.241166pt;}
.wsa0{word-spacing:3.347434pt;}
.wse1{word-spacing:3.347456pt;}
.wsde{word-spacing:3.395277pt;}
.wsa2{word-spacing:3.400567pt;}
.ws7e{word-spacing:3.453701pt;}
.ws95{word-spacing:3.506835pt;}
.ws59{word-spacing:3.559969pt;}
.wseb{word-spacing:3.634381pt;}
.ws5e{word-spacing:3.666237pt;}
.wsa1{word-spacing:3.719371pt;}
.ws54{word-spacing:3.772505pt;}
.ws27{word-spacing:3.825638pt;}
.wsc6{word-spacing:3.825664pt;}
.wsb8{word-spacing:4.016947pt;}
.ws58{word-spacing:4.038174pt;}
.ws9c{word-spacing:4.091308pt;}
.ws53{word-spacing:4.197575pt;}
.wsf{word-spacing:4.240070pt;}
.ws46{word-spacing:4.303843pt;}
.ws10{word-spacing:4.314458pt;}
.ws51{word-spacing:4.516379pt;}
.ws1f{word-spacing:4.542976pt;}
.ws9e{word-spacing:4.622646pt;}
.ws6f{word-spacing:4.888316pt;}
.ws24{word-spacing:4.941450pt;}
.wsa6{word-spacing:4.994583pt;}
.ws5b{word-spacing:5.047717pt;}
.wsba{word-spacing:5.116826pt;}
.ws36{word-spacing:5.153985pt;}
.wsb4{word-spacing:5.212467pt;}
.wsa3{word-spacing:5.260253pt;}
.ws7f{word-spacing:5.306316pt;}
.ws6e{word-spacing:5.419654pt;}
.ws79{word-spacing:5.525922pt;}
.wsb3{word-spacing:5.547213pt;}
.ws74{word-spacing:5.844725pt;}
.ws52{word-spacing:6.004127pt;}
.ws4d{word-spacing:6.269796pt;}
.wsd7{word-spacing:6.407987pt;}
.ws91{word-spacing:6.429198pt;}
.ws30{word-spacing:6.482332pt;}
.ws96{word-spacing:6.588599pt;}
.ws55{word-spacing:6.694867pt;}
.ws6b{word-spacing:6.748001pt;}
.ws99{word-spacing:6.801135pt;}
.ws2a{word-spacing:6.907403pt;}
.wsd{word-spacing:6.918010pt;}
.ws57{word-spacing:7.013670pt;}
.ws43{word-spacing:7.066804pt;}
.ws7b{word-spacing:7.279340pt;}
.ws9d{word-spacing:7.545009pt;}
.ws5a{word-spacing:7.598143pt;}
.ws75{word-spacing:7.970080pt;}
.wsda{word-spacing:10.281472pt;}
.ws2b{word-spacing:10.581554pt;}
.wsb{word-spacing:10.823338pt;}
.wsb2{word-spacing:10.855322pt;}
.ws5d{word-spacing:10.945577pt;}
.wsc1{word-spacing:11.237888pt;}
.wsb1{word-spacing:11.285709pt;}
.wsbd{word-spacing:11.620454pt;}
.wsc9{word-spacing:11.716096pt;}
.wscd{word-spacing:11.763917pt;}
.wsd0{word-spacing:11.901013pt;}
.wse4{word-spacing:11.902763pt;}
.wsc5{word-spacing:11.906347pt;}
.wsbc{word-spacing:11.907379pt;}
.wsc8{word-spacing:11.955200pt;}
.wsd3{word-spacing:12.003021pt;}
.wscc{word-spacing:12.050842pt;}
.wse8{word-spacing:12.194304pt;}
.ws87{word-spacing:12.433325pt;}
.ws63{word-spacing:13.124065pt;}
.ws41{word-spacing:13.230333pt;}
.ws64{word-spacing:13.336601pt;}
.wsc{word-spacing:14.319536pt;}
.wsbf{word-spacing:14.769442pt;}
.wsea{word-spacing:14.769707pt;}
.wsb6{word-spacing:14.770167pt;}
.wsd2{word-spacing:14.771115pt;}
.wsbb{word-spacing:14.776627pt;}
.wsdb{word-spacing:14.824448pt;}
.wsb5{word-spacing:14.920090pt;}
.wse9{word-spacing:14.967910pt;}
.wsc4{word-spacing:15.015731pt;}
.wsc7{word-spacing:15.063552pt;}
.wsd4{word-spacing:15.733043pt;}
.ws67{word-spacing:16.418365pt;}
.ws5f{word-spacing:16.577766pt;}
.wse0{word-spacing:17.406771pt;}
.wse2{word-spacing:20.084736pt;}
.wsdd{word-spacing:23.193088pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.wsb9{word-spacing:27.305677pt;}
.ws13{word-spacing:35.593054pt;}
.ws81{word-spacing:129.450906pt;}
.ws8a{word-spacing:582.839910pt;}
.ws89{word-spacing:602.829005pt;}
.ws88{word-spacing:850.999287pt;}
._a{margin-left:-7.077478pt;}
._1d{margin-left:-6.004127pt;}
._3{margin-left:-4.797974pt;}
._2{margin-left:-3.421811pt;}
._21{margin-left:-2.456933pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._7{width:2.045648pt;}
._4{width:3.459005pt;}
._b{width:5.260288pt;}
._20{width:9.205612pt;}
._8{width:10.132188pt;}
._6{width:11.530016pt;}
._14{width:13.175632pt;}
._d{width:14.135108pt;}
._e{width:15.043703pt;}
._12{width:16.737168pt;}
._1c{width:18.065515pt;}
._10{width:19.500129pt;}
._18{width:21.207139pt;}
._5{width:23.063232pt;}
._1f{width:24.089821pt;}
._19{width:25.564116pt;}
._9{width:27.188522pt;}
._f{width:28.883763pt;}
._1a{width:30.445706pt;}
._11{width:31.667785pt;}
._38{width:33.387570pt;}
._1b{width:34.603600pt;}
._17{width:36.343565pt;}
._13{width:37.618778pt;}
._1e{width:40.059802pt;}
._c{width:48.179275pt;}
._3a{width:54.993920pt;}
._2b{width:103.627674pt;}
._2a{width:123.421175pt;}
._2f{width:134.232986pt;}
._2c{width:149.535642pt;}
._33{width:160.534426pt;}
._23{width:163.977523pt;}
._29{width:177.223885pt;}
._26{width:179.423642pt;}
._2d{width:181.834530pt;}
._28{width:183.249306pt;}
._24{width:195.252326pt;}
._25{width:198.599782pt;}
._34{width:236.999885pt;}
._22{width:324.108089pt;}
._2e{width:365.350912pt;}
._27{width:389.663727pt;}
._32{width:484.568166pt;}
._30{width:608.663142pt;}
._31{width:613.827789pt;}
._37{width:648.209468pt;}
._15{width:663.409870pt;}
._36{width:815.727206pt;}
._35{width:887.267123pt;}
._39{width:2142.514400pt;}
._16{width:2163.767733pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:16.528366pt;}
.y4d{bottom:28.346667pt;}
.y185{bottom:84.257333pt;}
.y11e{bottom:86.906667pt;}
.y106{bottom:88.906667pt;}
.y1e9{bottom:92.892000pt;}
.y1d{bottom:93.018667pt;}
.y135{bottom:93.813333pt;}
.y4c{bottom:95.985333pt;}
.y1b2{bottom:96.120000pt;}
.yd6{bottom:97.940000pt;}
.y184{bottom:100.994667pt;}
.y11d{bottom:103.333333pt;}
.y105{bottom:105.644000pt;}
.y1e8{bottom:108.233333pt;}
.y1c{bottom:108.920000pt;}
.y1b1{bottom:111.462667pt;}
.yaa{bottom:111.621333pt;}
.y82{bottom:112.020000pt;}
.y4b{bottom:112.722667pt;}
.yd5{bottom:114.677333pt;}
.y11c{bottom:117.945333pt;}
.y183{bottom:121.717333pt;}
.y104{bottom:122.381333pt;}
.y1e7{bottom:123.576000pt;}
.y1b{bottom:124.820000pt;}
.y1b0{bottom:126.805333pt;}
.ya9{bottom:128.358667pt;}
.y81{bottom:128.757333pt;}
.y4a{bottom:129.460000pt;}
.yd4{bottom:131.413333pt;}
.y11b{bottom:132.557333pt;}
.y1e6{bottom:138.918667pt;}
.y103{bottom:139.118667pt;}
.y1a{bottom:140.720000pt;}
.y15a{bottom:141.509333pt;}
.y1af{bottom:142.146667pt;}
.ya8{bottom:145.096000pt;}
.y80{bottom:145.494667pt;}
.y49{bottom:146.197333pt;}
.y11a{bottom:147.169333pt;}
.yd3{bottom:148.150667pt;}
.y182{bottom:151.605333pt;}
.y1e5{bottom:154.261333pt;}
.y102{bottom:155.856000pt;}
.y19{bottom:156.621333pt;}
.y1ae{bottom:157.489333pt;}
.y159{bottom:158.246667pt;}
.ya7{bottom:161.833333pt;}
.y7f{bottom:162.232000pt;}
.y48{bottom:162.934667pt;}
.yd2{bottom:164.888000pt;}
.y119{bottom:168.182667pt;}
.y181{bottom:168.342667pt;}
.y1e4{bottom:169.604000pt;}
.y18{bottom:172.521333pt;}
.y101{bottom:172.593333pt;}
.y1ad{bottom:172.832000pt;}
.y158{bottom:174.984000pt;}
.ya6{bottom:178.570667pt;}
.y7e{bottom:178.969333pt;}
.y47{bottom:179.672000pt;}
.yd1{bottom:181.625333pt;}
.y1e3{bottom:184.946667pt;}
.y180{bottom:185.080000pt;}
.y1ac{bottom:188.174667pt;}
.y17{bottom:188.421333pt;}
.y100{bottom:189.330667pt;}
.y157{bottom:191.721333pt;}
.ya5{bottom:195.308000pt;}
.y7d{bottom:195.706667pt;}
.y118{bottom:196.289333pt;}
.y46{bottom:196.409333pt;}
.yd0{bottom:198.362667pt;}
.y1e2{bottom:200.289333pt;}
.y17f{bottom:201.817333pt;}
.y1ab{bottom:203.517333pt;}
.y16{bottom:204.322667pt;}
.yff{bottom:206.068000pt;}
.y156{bottom:208.458667pt;}
.ya4{bottom:212.045333pt;}
.y7c{bottom:212.444000pt;}
.y45{bottom:213.146667pt;}
.ycf{bottom:215.100000pt;}
.y1e1{bottom:215.632000pt;}
.y17e{bottom:218.554667pt;}
.y1aa{bottom:218.860000pt;}
.yfe{bottom:222.805333pt;}
.y155{bottom:225.196000pt;}
.ya3{bottom:228.782667pt;}
.y7b{bottom:229.181333pt;}
.y117{bottom:229.270667pt;}
.y44{bottom:229.884000pt;}
.y1e0{bottom:230.974667pt;}
.yce{bottom:231.837333pt;}
.y1a9{bottom:234.202667pt;}
.y17d{bottom:235.290667pt;}
.yfd{bottom:239.542667pt;}
.y154{bottom:241.933333pt;}
.ya2{bottom:245.520000pt;}
.y7a{bottom:245.918667pt;}
.y116{bottom:246.008000pt;}
.y1df{bottom:246.316000pt;}
.y43{bottom:246.621333pt;}
.ycd{bottom:248.574667pt;}
.y1a8{bottom:249.545333pt;}
.y17c{bottom:252.028000pt;}
.yfc{bottom:256.280000pt;}
.y153{bottom:258.670667pt;}
.y1de{bottom:261.658667pt;}
.ya1{bottom:262.257333pt;}
.y79{bottom:262.656000pt;}
.y115{bottom:262.745333pt;}
.y42{bottom:263.358667pt;}
.y1a7{bottom:264.888000pt;}
.ycc{bottom:265.312000pt;}
.y15{bottom:266.804000pt;}
.y17b{bottom:268.765333pt;}
.yfb{bottom:273.017333pt;}
.y152{bottom:275.408000pt;}
.y1dd{bottom:277.001333pt;}
.ya0{bottom:278.994667pt;}
.y78{bottom:279.393333pt;}
.y114{bottom:279.482667pt;}
.y41{bottom:280.096000pt;}
.y1a6{bottom:280.229333pt;}
.y14{bottom:282.705333pt;}
.y17a{bottom:285.502667pt;}
.ycb{bottom:286.034667pt;}
.y151{bottom:292.145333pt;}
.y1dc{bottom:292.344000pt;}
.yfa{bottom:293.738667pt;}
.y1a5{bottom:295.572000pt;}
.y9f{bottom:295.732000pt;}
.y77{bottom:296.129333pt;}
.y113{bottom:296.220000pt;}
.y40{bottom:296.833333pt;}
.y13{bottom:298.605333pt;}
.y179{bottom:302.240000pt;}
.yca{bottom:303.968000pt;}
.y1db{bottom:307.686667pt;}
.y150{bottom:308.882667pt;}
.y1a4{bottom:310.914667pt;}
.y9e{bottom:312.469333pt;}
.y76{bottom:312.866667pt;}
.y3f{bottom:313.569333pt;}
.y12{bottom:314.505333pt;}
.y178{bottom:318.977333pt;}
.y1da{bottom:323.029333pt;}
.yf9{bottom:323.626667pt;}
.y14f{bottom:325.620000pt;}
.y112{bottom:326.056000pt;}
.y1a3{bottom:326.257333pt;}
.y9d{bottom:329.206667pt;}
.y75{bottom:329.604000pt;}
.yc9{bottom:333.856000pt;}
.y3e{bottom:334.292000pt;}
.y177{bottom:335.714667pt;}
.y1d9{bottom:338.372000pt;}
.y11{bottom:338.376000pt;}
.yf8{bottom:340.364000pt;}
.y1a2{bottom:341.600000pt;}
.y14e{bottom:342.357333pt;}
.y9c{bottom:345.944000pt;}
.y74{bottom:346.341333pt;}
.yc8{bottom:350.592000pt;}
.y176{bottom:352.452000pt;}
.y1d8{bottom:353.714667pt;}
.y10{bottom:354.277333pt;}
.y1a1{bottom:356.942667pt;}
.yf7{bottom:357.101333pt;}
.y14d{bottom:359.094667pt;}
.y9b{bottom:362.680000pt;}
.y73{bottom:363.078667pt;}
.yc7{bottom:367.329333pt;}
.y1d7{bottom:369.056000pt;}
.y175{bottom:369.189333pt;}
.yf{bottom:370.177333pt;}
.y1a0{bottom:372.285333pt;}
.yf6{bottom:373.838667pt;}
.y14c{bottom:375.832000pt;}
.y9a{bottom:379.417333pt;}
.y72{bottom:383.801333pt;}
.yc6{bottom:384.066667pt;}
.y1d6{bottom:384.398667pt;}
.y174{bottom:385.926667pt;}
.y19f{bottom:387.628000pt;}
.yf5{bottom:390.576000pt;}
.y14b{bottom:392.568000pt;}
.ye{bottom:395.376000pt;}
.y99{bottom:396.154667pt;}
.y1d5{bottom:399.741333pt;}
.yc5{bottom:400.804000pt;}
.y3d{bottom:401.092000pt;}
.y19d{bottom:402.969333pt;}
.y19e{bottom:402.970667pt;}
.y173{bottom:406.649333pt;}
.y14a{bottom:409.305333pt;}
.yd{bottom:411.276000pt;}
.yf4{bottom:411.298667pt;}
.y98{bottom:412.892000pt;}
.y71{bottom:413.689333pt;}
.y1d4{bottom:415.084000pt;}
.yc4{bottom:417.541333pt;}
.y19c{bottom:418.312000pt;}
.y3c{bottom:418.388000pt;}
.y149{bottom:426.042667pt;}
.y97{bottom:429.629333pt;}
.y70{bottom:430.426667pt;}
.y19b{bottom:433.654667pt;}
.yc{bottom:435.146667pt;}
.y172{bottom:436.537333pt;}
.yc3{bottom:438.264000pt;}
.y134{bottom:440.525333pt;}
.yf3{bottom:441.186667pt;}
.y148{bottom:442.780000pt;}
.y1d3{bottom:445.769333pt;}
.y96{bottom:446.366667pt;}
.y6f{bottom:447.164000pt;}
.y19a{bottom:448.997333pt;}
.yb{bottom:451.048000pt;}
.y3b{bottom:451.622667pt;}
.y171{bottom:453.274667pt;}
.y133{bottom:457.261333pt;}
.yf2{bottom:457.924000pt;}
.y147{bottom:459.517333pt;}
.y1d2{bottom:461.112000pt;}
.y95{bottom:463.104000pt;}
.y6e{bottom:463.901333pt;}
.y199{bottom:464.340000pt;}
.yc2{bottom:465.496000pt;}
.ya{bottom:466.948000pt;}
.y3a{bottom:468.918667pt;}
.y170{bottom:470.012000pt;}
.y132{bottom:473.998667pt;}
.yf1{bottom:474.661333pt;}
.y146{bottom:476.254667pt;}
.y1d1{bottom:476.454667pt;}
.y198{bottom:479.682667pt;}
.y6d{bottom:480.638667pt;}
.yc1{bottom:482.232000pt;}
.y9{bottom:482.848000pt;}
.y94{bottom:483.826667pt;}
.y39{bottom:486.213333pt;}
.y16f{bottom:486.749333pt;}
.y131{bottom:490.736000pt;}
.yf0{bottom:491.398667pt;}
.y1d0{bottom:491.797333pt;}
.y145{bottom:492.992000pt;}
.y197{bottom:495.025333pt;}
.y6c{bottom:497.376000pt;}
.y8{bottom:498.749333pt;}
.yc0{bottom:498.969333pt;}
.y16e{bottom:503.486667pt;}
.y38{bottom:503.508000pt;}
.y1cf{bottom:507.138667pt;}
.y130{bottom:507.473333pt;}
.yef{bottom:508.136000pt;}
.y144{bottom:509.729333pt;}
.y93{bottom:513.714667pt;}
.y6b{bottom:514.113333pt;}
.y196{bottom:514.352000pt;}
.y7{bottom:514.649333pt;}
.y16d{bottom:520.224000pt;}
.y37{bottom:520.804000pt;}
.y1ce{bottom:522.481333pt;}
.y12f{bottom:524.210667pt;}
.yee{bottom:524.873333pt;}
.ybf{bottom:526.334667pt;}
.y143{bottom:526.466667pt;}
.y92{bottom:530.452000pt;}
.y6{bottom:530.549333pt;}
.y6a{bottom:530.850667pt;}
.y16c{bottom:536.961333pt;}
.y1cd{bottom:537.824000pt;}
.y36{bottom:538.098667pt;}
.yed{bottom:541.610667pt;}
.ybe{bottom:543.070667pt;}
.y142{bottom:543.204000pt;}
.y195{bottom:544.240000pt;}
.y12e{bottom:544.933333pt;}
.y5{bottom:546.450667pt;}
.y91{bottom:547.189333pt;}
.y69{bottom:547.588000pt;}
.y1cc{bottom:553.166667pt;}
.y16b{bottom:553.698667pt;}
.y35{bottom:555.393333pt;}
.ybd{bottom:559.808000pt;}
.y141{bottom:559.941333pt;}
.yec{bottom:562.332000pt;}
.y4{bottom:562.350667pt;}
.y90{bottom:563.926667pt;}
.y68{bottom:564.325333pt;}
.y194{bottom:567.832000pt;}
.y1cb{bottom:568.509333pt;}
.y16a{bottom:570.436000pt;}
.y34{bottom:572.689333pt;}
.y12d{bottom:576.362667pt;}
.ybc{bottom:576.545333pt;}
.y140{bottom:576.678667pt;}
.y1{bottom:578.250715pt;}
.y8f{bottom:580.664000pt;}
.y67{bottom:581.062667pt;}
.y193{bottom:583.453333pt;}
.y1ca{bottom:583.852000pt;}
.y169{bottom:587.173333pt;}
.y33{bottom:589.984000pt;}
.y12c{bottom:590.946667pt;}
.yeb{bottom:592.220000pt;}
.ybb{bottom:593.282667pt;}
.y13f{bottom:593.416000pt;}
.y8e{bottom:597.401333pt;}
.y66{bottom:597.800000pt;}
.y192{bottom:599.074667pt;}
.y1c9{bottom:599.194667pt;}
.y168{bottom:603.909333pt;}
.y12b{bottom:606.114667pt;}
.y32{bottom:607.280000pt;}
.yea{bottom:608.957333pt;}
.yba{bottom:610.020000pt;}
.y13e{bottom:610.153333pt;}
.y8d{bottom:614.138667pt;}
.y65{bottom:614.537333pt;}
.y167{bottom:620.646667pt;}
.y12a{bottom:621.281333pt;}
.y191{bottom:622.666667pt;}
.y31{bottom:624.574667pt;}
.ye9{bottom:625.694667pt;}
.yb9{bottom:626.757333pt;}
.y1c8{bottom:629.878667pt;}
.y8c{bottom:630.876000pt;}
.y64{bottom:631.274667pt;}
.y129{bottom:635.893333pt;}
.y166{bottom:637.384000pt;}
.y190{bottom:638.288000pt;}
.y30{bottom:641.869333pt;}
.ye8{bottom:642.432000pt;}
.yb8{bottom:643.494667pt;}
.y1c7{bottom:645.221333pt;}
.y8b{bottom:647.613333pt;}
.y63{bottom:648.012000pt;}
.y128{bottom:651.060000pt;}
.y165{bottom:654.121333pt;}
.y2f{bottom:659.165333pt;}
.ye7{bottom:659.169333pt;}
.yb7{bottom:660.232000pt;}
.y1c6{bottom:660.564000pt;}
.y13d{bottom:660.764000pt;}
.y18f{bottom:661.880000pt;}
.y8a{bottom:664.350667pt;}
.y62{bottom:664.749333pt;}
.y127{bottom:665.672000pt;}
.y164{bottom:670.858667pt;}
.ye6{bottom:675.906667pt;}
.y2e{bottom:676.460000pt;}
.yb6{bottom:676.969333pt;}
.y13c{bottom:677.501333pt;}
.y111{bottom:679.892000pt;}
.y126{bottom:680.284000pt;}
.y89{bottom:681.088000pt;}
.y61{bottom:681.485333pt;}
.y163{bottom:687.596000pt;}
.y1c5{bottom:691.249333pt;}
.ye5{bottom:692.644000pt;}
.y18e{bottom:693.122667pt;}
.yb5{bottom:693.706667pt;}
.y13b{bottom:694.238667pt;}
.y125{bottom:695.450667pt;}
.y110{bottom:696.629333pt;}
.y88{bottom:697.825333pt;}
.y60{bottom:698.222667pt;}
.y162{bottom:704.333333pt;}
.y1c4{bottom:706.592000pt;}
.ye4{bottom:709.381333pt;}
.y124{bottom:710.062667pt;}
.yb4{bottom:710.444000pt;}
.y2d{bottom:710.758667pt;}
.y13a{bottom:710.976000pt;}
.y10f{bottom:713.366667pt;}
.y87{bottom:714.562667pt;}
.y5f{bottom:714.960000pt;}
.y18d{bottom:716.714667pt;}
.y161{bottom:721.070667pt;}
.y1c3{bottom:721.934667pt;}
.y123{bottom:724.674667pt;}
.y2c{bottom:725.104000pt;}
.ye3{bottom:726.118667pt;}
.yb3{bottom:727.181333pt;}
.y139{bottom:727.713333pt;}
.y10e{bottom:730.104000pt;}
.y86{bottom:731.300000pt;}
.y5e{bottom:731.697333pt;}
.y1c2{bottom:737.277333pt;}
.y160{bottom:737.808000pt;}
.y18c{bottom:740.305333pt;}
.y2b{bottom:743.308000pt;}
.yb2{bottom:743.918667pt;}
.y138{bottom:744.450667pt;}
.y122{bottom:745.861333pt;}
.ye2{bottom:746.841333pt;}
.y85{bottom:748.036000pt;}
.y5d{bottom:748.434667pt;}
.y1c1{bottom:752.620000pt;}
.y2a{bottom:753.797333pt;}
.y15f{bottom:754.545333pt;}
.y18b{bottom:755.926667pt;}
.yb1{bottom:760.656000pt;}
.y137{bottom:761.186667pt;}
.y10d{bottom:763.578667pt;}
.y84{bottom:764.773333pt;}
.y5c{bottom:765.172000pt;}
.y121{bottom:767.049333pt;}
.y1c0{bottom:767.961333pt;}
.y15e{bottom:771.282667pt;}
.y18a{bottom:771.548000pt;}
.y29{bottom:772.001333pt;}
.yb0{bottom:777.393333pt;}
.y136{bottom:777.924000pt;}
.y10c{bottom:780.316000pt;}
.y5b{bottom:781.909333pt;}
.y1bf{bottom:783.304000pt;}
.y83{bottom:785.496000pt;}
.y28{bottom:786.346667pt;}
.y189{bottom:787.170667pt;}
.y15d{bottom:788.020000pt;}
.yaf{bottom:794.130667pt;}
.ye1{bottom:794.661333pt;}
.y120{bottom:795.154667pt;}
.y27{bottom:796.836000pt;}
.y10b{bottom:797.053333pt;}
.y5a{bottom:798.646667pt;}
.y188{bottom:802.792000pt;}
.y15c{bottom:804.757333pt;}
.yae{bottom:810.868000pt;}
.y26{bottom:811.182667pt;}
.ye0{bottom:811.398667pt;}
.y10a{bottom:813.790667pt;}
.y1be{bottom:813.989333pt;}
.y59{bottom:815.384000pt;}
.y187{bottom:818.413333pt;}
.y15b{bottom:821.494667pt;}
.yad{bottom:827.605333pt;}
.ydf{bottom:828.136000pt;}
.y1bd{bottom:829.332000pt;}
.y25{bottom:829.385333pt;}
.y109{bottom:830.528000pt;}
.y58{bottom:832.121333pt;}
.y186{bottom:834.034667pt;}
.y1bc{bottom:844.674667pt;}
.yde{bottom:844.873333pt;}
.y57{bottom:848.858667pt;}
.y108{bottom:851.249333pt;}
.yac{bottom:854.969333pt;}
.y1bb{bottom:860.017333pt;}
.ydd{bottom:861.610667pt;}
.y56{bottom:865.596000pt;}
.y24{bottom:869.098667pt;}
.y107{bottom:869.182667pt;}
.yab{bottom:871.706667pt;}
.y1ba{bottom:875.360000pt;}
.ydc{bottom:878.348000pt;}
.y55{bottom:882.333333pt;}
.y11f{bottom:883.170667pt;}
.y23{bottom:885.836000pt;}
.y1b8{bottom:890.701333pt;}
.y1b9{bottom:890.702667pt;}
.ydb{bottom:895.085333pt;}
.y54{bottom:899.070667pt;}
.y1b7{bottom:906.044000pt;}
.yda{bottom:911.822667pt;}
.y53{bottom:915.808000pt;}
.y22{bottom:921.320000pt;}
.y1b6{bottom:921.386667pt;}
.yd9{bottom:928.560000pt;}
.y52{bottom:932.545333pt;}
.y1b5{bottom:936.729333pt;}
.yd8{bottom:945.297333pt;}
.y21{bottom:946.425333pt;}
.y51{bottom:949.282667pt;}
.y1b4{bottom:952.072000pt;}
.yd7{bottom:962.034667pt;}
.y50{bottom:966.020000pt;}
.y1b3{bottom:967.414667pt;}
.y20{bottom:971.530667pt;}
.y4f{bottom:982.757333pt;}
.y1e{bottom:1010.186667pt;}
.y4e{bottom:1038.548000pt;}
.h13{height:14.948784pt;}
.h2{height:22.673858pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:33.771789pt;}
.he{height:34.574438pt;}
.h16{height:36.666735pt;}
.h14{height:37.087439pt;}
.h15{height:37.193707pt;}
.h10{height:38.415786pt;}
.hc{height:38.596538pt;}
.hd{height:38.809074pt;}
.h8{height:38.947124pt;}
.hf{height:43.421286pt;}
.h17{height:43.557639pt;}
.h1a{height:43.660390pt;}
.h6{height:45.272024pt;}
.h11{height:48.245551pt;}
.h12{height:48.511220pt;}
.ha{height:49.201961pt;}
.h19{height:51.126455pt;}
.h18{height:51.131789pt;}
.h7{height:61.782479pt;}
.h9{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.x83{left:76.309333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5a{left:229.828000pt;}
.x5{left:239.924000pt;}
.x9{left:250.204000pt;}
.x36{left:252.298667pt;}
.x37{left:258.940000pt;}
.x27{left:260.454667pt;}
.x47{left:261.798667pt;}
.x7{left:273.894667pt;}
.x48{left:275.082667pt;}
.x28{left:277.065333pt;}
.x8{left:284.372000pt;}
.x29{left:290.349333pt;}
.x13{left:295.764000pt;}
.x14{left:302.405333pt;}
.x73{left:304.322667pt;}
.x53{left:309.266667pt;}
.x21{left:315.329333pt;}
.x6b{left:320.708000pt;}
.x2e{left:321.637333pt;}
.x15{left:327.100000pt;}
.x2f{left:334.921333pt;}
.x1d{left:337.000000pt;}
.x30{left:338.176000pt;}
.x16{left:340.382667pt;}
.x17{left:343.753333pt;}
.x7f{left:347.222667pt;}
.x22{left:348.924000pt;}
.x1e{left:350.284000pt;}
.x31{left:351.458667pt;}
.x18{left:357.037333pt;}
.x5e{left:358.544000pt;}
.x23{left:362.208000pt;}
.x77{left:363.608000pt;}
.x19{left:367.905333pt;}
.x78{left:377.396000pt;}
.x4e{left:379.410667pt;}
.x1a{left:381.189333pt;}
.x82{left:386.000000pt;}
.xc{left:388.354667pt;}
.x4f{left:392.694667pt;}
.xd{left:394.996000pt;}
.x81{left:397.913333pt;}
.x12{left:401.630667pt;}
.x26{left:408.565333pt;}
.x3e{left:414.084000pt;}
.x60{left:417.208000pt;}
.x5b{left:418.152000pt;}
.x5c{left:426.533333pt;}
.x79{left:427.544000pt;}
.x80{left:432.629333pt;}
.x5d{left:437.458667pt;}
.x6c{left:441.512000pt;}
.x43{left:448.869333pt;}
.xe{left:452.538667pt;}
.x6d{left:454.796000pt;}
.x6e{left:458.050667pt;}
.xf{left:459.181333pt;}
.x74{left:461.076000pt;}
.x44{left:462.153333pt;}
.x4c{left:463.604000pt;}
.x4a{left:469.289333pt;}
.x6f{left:471.334667pt;}
.x45{left:472.388000pt;}
.x75{left:474.358667pt;}
.x4d{left:476.886667pt;}
.x3f{left:478.576000pt;}
.x61{left:479.857333pt;}
.x4b{left:482.572000pt;}
.x46{left:485.672000pt;}
.x62{left:488.658667pt;}
.x40{left:491.860000pt;}
.x63{left:495.948000pt;}
.x58{left:501.685333pt;}
.x64{left:506.873333pt;}
.x59{left:512.612000pt;}
.x3c{left:515.492000pt;}
.xa{left:516.898667pt;}
.x10{left:520.780000pt;}
.xb{left:523.540000pt;}
.x2c{left:525.245333pt;}
.x11{left:527.421333pt;}
.x3d{left:528.776000pt;}
.x2d{left:538.528000pt;}
.x2a{left:548.729333pt;}
.x7e{left:551.738667pt;}
.x76{left:553.977333pt;}
.x2b{left:562.013333pt;}
.x1f{left:566.470667pt;}
.x7a{left:572.725333pt;}
.x54{left:578.624000pt;}
.x20{left:579.753333pt;}
.x41{left:583.252000pt;}
.x7b{left:586.009333pt;}
.x8c{left:590.300000pt;}
.x55{left:591.906667pt;}
.x42{left:596.536000pt;}
.x90{left:606.221333pt;}
.x65{left:608.664000pt;}
.x70{left:611.620000pt;}
.x8d{left:614.210667pt;}
.x8a{left:619.620000pt;}
.x87{left:620.746667pt;}
.x66{left:621.948000pt;}
.x67{left:625.285333pt;}
.x91{left:630.132000pt;}
.x51{left:633.940000pt;}
.x68{left:638.569333pt;}
.x69{left:641.906667pt;}
.x56{left:643.426667pt;}
.x1b{left:644.908000pt;}
.x52{left:647.222667pt;}
.x8e{left:652.693333pt;}
.x85{left:653.964000pt;}
.x6a{left:655.189333pt;}
.x57{left:656.709333pt;}
.x1c{left:658.192000pt;}
.x84{left:663.353333pt;}
.x7d{left:664.605333pt;}
.x8f{left:676.604000pt;}
.x86{left:677.873333pt;}
.x88{left:679.921333pt;}
.x8b{left:682.040000pt;}
.x5f{left:686.405333pt;}
.x3a{left:690.852000pt;}
.x49{left:692.462667pt;}
.x32{left:695.136000pt;}
.x7c{left:699.041333pt;}
.x33{left:701.777333pt;}
.x3b{left:704.136000pt;}
.x34{left:705.085333pt;}
.x71{left:707.757333pt;}
.x38{left:709.506667pt;}
.x35{left:711.726667pt;}
.x50{left:715.116000pt;}
.x72{left:721.040000pt;}
.x39{left:722.789333pt;}
.x24{left:726.850667pt;}
.x89{left:732.477333pt;}
.x25{left:740.133333pt;}
}




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