
    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_8f2101645182b980bdb6e6a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_9c08a7b32bc6c262b15a9410.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_46eb40378422469148023a91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_24d1b30149678eeea3bc0f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_3b13b31e4898681af65a8987.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935000;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_8a00d8f2064a649b2af2822a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.842000;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_cfa7e568817f31ede4fdf698.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.830000;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_c27452c00c9e163f6856c4fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7a099606646ad88996fa51b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.259000;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_a7a1a6d804ef82fa94d32c53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_1932d9e73f14b905dabdb451.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952148;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_f7c63ca574fbbf45df98beab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936523;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_8b0b0002f9fe04059b76c95d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932129;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_0871bb897d420db133dc8e1b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932129;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_6d52eb2ded74ba698d8a2a7f.woff2')format("woff");}.fff{font-family:fff;line-height:0.936523;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;}
.m0{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);}
.m16{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);}
.mb{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);}
.m4{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);}
.m14{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);}
.m1e{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);}
.mc{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);}
.m25{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);}
.m24{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m15{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);}
.m8{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);}
.m13{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);}
.mf{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);}
.m12{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);}
.ma{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);}
.md{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);}
.m9{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);}
.m1{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);}
.m1f{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);}
.m6{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);}
.m1b{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);}
.m10{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);}
.m21{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);}
.m27{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);}
.m5{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);}
.me{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);}
.m17{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);}
.m22{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);}
.m23{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);}
.m20{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.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);}
.m1c{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);}
.m18{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);}
.m3{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);}
.m7{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);}
.m19{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);}
.m1a{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:-15.840000px;}
.v7{vertical-align:-4.313664px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.444909px;}
.v5{vertical-align:6.470496px;}
.v1{vertical-align:19.524000px;}
.v6{vertical-align:23.725153px;}
.v3{vertical-align:36.906000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.538320px;}
.ls3{letter-spacing:0.541133px;}
.ls0{letter-spacing:2.988195px;}
.ls8{letter-spacing:4.576291px;}
.ls9{letter-spacing:7.708320px;}
.ls2{letter-spacing:9.519504px;}
.ls7{letter-spacing:11.411846px;}
.ls6{letter-spacing:12.764467px;}
.ls4{letter-spacing:17.635133px;}
.lsa{letter-spacing:51.315332px;}
.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;}
}
.ws6b{word-spacing:-25.285248px;}
.wsb5{word-spacing:-18.120338px;}
.ws3{word-spacing:-14.943900px;}
.ws19{word-spacing:-13.449600px;}
.ws2d{word-spacing:-10.460700px;}
.wsb8{word-spacing:-9.587793px;}
.wsb2{word-spacing:-8.389319px;}
.ws50{word-spacing:-8.219250px;}
.wsbd{word-spacing:-6.711455px;}
.ws36{word-spacing:-4.034880px;}
.ws8c{word-spacing:-3.981082px;}
.ws5f{word-spacing:-3.335501px;}
.wsa8{word-spacing:-3.305581px;}
.ws37{word-spacing:-3.066509px;}
.wsad{word-spacing:-3.054524px;}
.ws83{word-spacing:-3.012710px;}
.ws11{word-spacing:-2.958912px;}
.ws78{word-spacing:-2.905114px;}
.ws7c{word-spacing:-2.851315px;}
.ws21{word-spacing:-2.797517px;}
.ws26{word-spacing:-2.743718px;}
.ws4a{word-spacing:-2.636122px;}
.ws9b{word-spacing:-2.582323px;}
.ws46{word-spacing:-2.528525px;}
.ws8d{word-spacing:-2.474726px;}
.ws9d{word-spacing:-2.468725px;}
.wsc{word-spacing:-2.420928px;}
.ws62{word-spacing:-2.259533px;}
.ws63{word-spacing:-2.205734px;}
.ws4f{word-spacing:-2.151936px;}
.ws2b{word-spacing:-2.098138px;}
.wsa5{word-spacing:-2.008454px;}
.ws96{word-spacing:-1.990541px;}
.ws22{word-spacing:-1.936742px;}
.ws73{word-spacing:-1.775347px;}
.ws8b{word-spacing:-1.721549px;}
.ws5e{word-spacing:-1.667750px;}
.ws91{word-spacing:-1.613952px;}
.ws16{word-spacing:-1.452557px;}
.ws23{word-spacing:-1.344960px;}
.ws47{word-spacing:-1.291162px;}
.ws51{word-spacing:-1.237363px;}
.ws1e{word-spacing:-1.129766px;}
.ws3e{word-spacing:-1.075968px;}
.ws61{word-spacing:-1.022170px;}
.ws39{word-spacing:-0.968371px;}
.ws7b{word-spacing:-0.914573px;}
.ws6c{word-spacing:-0.860774px;}
.ws28{word-spacing:-0.806976px;}
.ws6f{word-spacing:-0.645581px;}
.ws90{word-spacing:-0.591782px;}
.ws34{word-spacing:-0.537984px;}
.ws8f{word-spacing:-0.484186px;}
.ws59{word-spacing:-0.430387px;}
.ws3d{word-spacing:-0.376589px;}
.ws6{word-spacing:-0.322790px;}
.wsa{word-spacing:-0.268992px;}
.ws12{word-spacing:-0.215194px;}
.wsaa{word-spacing:-0.167371px;}
.ws8{word-spacing:-0.161395px;}
.wsa2{word-spacing:-0.125528px;}
.ws9{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.065455px;}
.ws20{word-spacing:-0.053798px;}
.ws9f{word-spacing:-0.041843px;}
.wsac{word-spacing:-0.001034px;}
.ws2{word-spacing:0.000000px;}
.ws92{word-spacing:0.021331px;}
.wsa3{word-spacing:0.041843px;}
.wse{word-spacing:0.053798px;}
.wsa6{word-spacing:0.083686px;}
.wsd{word-spacing:0.107597px;}
.ws9e{word-spacing:0.125528px;}
.ws24{word-spacing:0.161395px;}
.ws1d{word-spacing:0.167371px;}
.wsf{word-spacing:0.215194px;}
.ws27{word-spacing:0.268992px;}
.wsc0{word-spacing:0.286826px;}
.wsbe{word-spacing:0.286847px;}
.ws7{word-spacing:0.322790px;}
.ws3f{word-spacing:0.484186px;}
.ws43{word-spacing:0.537984px;}
.wsa1{word-spacing:0.585799px;}
.ws7d{word-spacing:0.591782px;}
.wsb{word-spacing:0.645581px;}
.ws57{word-spacing:0.753178px;}
.ws75{word-spacing:0.806976px;}
.ws49{word-spacing:0.860774px;}
.ws17{word-spacing:0.914573px;}
.ws4d{word-spacing:0.968371px;}
.ws4b{word-spacing:1.022170px;}
.ws2c{word-spacing:1.075968px;}
.ws55{word-spacing:1.129766px;}
.ws48{word-spacing:1.183565px;}
.ws66{word-spacing:1.237363px;}
.ws60{word-spacing:1.344960px;}
.ws76{word-spacing:1.398758px;}
.ws4e{word-spacing:1.452557px;}
.ws40{word-spacing:1.506355px;}
.ws6d{word-spacing:1.613952px;}
.ws13{word-spacing:1.667750px;}
.ws35{word-spacing:1.775347px;}
.ws5b{word-spacing:1.829146px;}
.ws7f{word-spacing:1.882944px;}
.ws7e{word-spacing:1.936742px;}
.ws9c{word-spacing:1.990541px;}
.ws67{word-spacing:2.044339px;}
.ws79{word-spacing:2.098138px;}
.ws8a{word-spacing:2.205734px;}
.wsae{word-spacing:2.259511px;}
.ws65{word-spacing:2.259533px;}
.ws84{word-spacing:2.313331px;}
.ws98{word-spacing:2.367130px;}
.ws77{word-spacing:2.420928px;}
.ws1b{word-spacing:2.468725px;}
.ws71{word-spacing:2.474726px;}
.ws5a{word-spacing:2.528525px;}
.ws58{word-spacing:2.582323px;}
.wsc2{word-spacing:2.649992px;}
.wsbf{word-spacing:2.652032px;}
.wsc4{word-spacing:2.658078px;}
.wsc1{word-spacing:2.662158px;}
.wsc3{word-spacing:2.666118px;}
.wsbc{word-spacing:2.669069px;}
.wsaf{word-spacing:2.677939px;}
.wsc5{word-spacing:2.679019px;}
.ws42{word-spacing:2.689920px;}
.ws85{word-spacing:2.743718px;}
.ws70{word-spacing:2.797517px;}
.ws3b{word-spacing:2.851315px;}
.wsa0{word-spacing:2.887153px;}
.ws82{word-spacing:2.905114px;}
.ws2a{word-spacing:2.958912px;}
.ws64{word-spacing:3.012710px;}
.ws33{word-spacing:3.066509px;}
.ws29{word-spacing:3.120307px;}
.ws86{word-spacing:3.174106px;}
.ws5c{word-spacing:3.227904px;}
.ws1c{word-spacing:3.263738px;}
.ws6e{word-spacing:3.281702px;}
.ws5{word-spacing:3.335501px;}
.ws74{word-spacing:3.443098px;}
.ws94{word-spacing:3.496896px;}
.ws44{word-spacing:3.550694px;}
.ws87{word-spacing:3.927283px;}
.ws68{word-spacing:3.981082px;}
.ws6a{word-spacing:4.034880px;}
.ws69{word-spacing:4.088678px;}
.wsa9{word-spacing:4.142437px;}
.ws25{word-spacing:4.250074px;}
.ws38{word-spacing:4.357670px;}
.ws32{word-spacing:4.572864px;}
.ws89{word-spacing:4.734259px;}
.ws8e{word-spacing:4.788058px;}
.ws31{word-spacing:4.949453px;}
.ws99{word-spacing:5.003251px;}
.ws3a{word-spacing:5.164646px;}
.ws72{word-spacing:5.218445px;}
.ws88{word-spacing:5.433638px;}
.ws54{word-spacing:5.541235px;}
.ws41{word-spacing:5.648832px;}
.ws81{word-spacing:5.971622px;}
.ws3c{word-spacing:6.240614px;}
.ws53{word-spacing:7.424179px;}
.wsab{word-spacing:10.251486px;}
.wsb0{word-spacing:10.377014px;}
.ws2e{word-spacing:10.418857px;}
.wsa4{word-spacing:10.460700px;}
.wsa7{word-spacing:10.502543px;}
.ws15{word-spacing:11.943245px;}
.ws1f{word-spacing:12.319834px;}
.ws97{word-spacing:12.726532px;}
.ws14{word-spacing:13.180608px;}
.ws18{word-spacing:13.234406px;}
.ws5d{word-spacing:13.288205px;}
.wsb3{word-spacing:13.395802px;}
.wsc6{word-spacing:13.449600px;}
.ws1a{word-spacing:13.503398px;}
.ws95{word-spacing:13.912235px;}
.ws4c{word-spacing:14.364173px;}
.ws7a{word-spacing:14.469968px;}
.ws93{word-spacing:14.678938px;}
.ws52{word-spacing:14.708561px;}
.ws45{word-spacing:14.923905px;}
.ws2f{word-spacing:16.298195px;}
.ws80{word-spacing:16.513204px;}
.ws30{word-spacing:18.345254px;}
.ws9a{word-spacing:19.611492px;}
.ws56{word-spacing:20.457568px;}
.ws0{word-spacing:24.893468px;}
.ws1{word-spacing:25.719808px;}
.wsb9{word-spacing:29.252035px;}
.wsb1{word-spacing:36.904156px;}
.wsb4{word-spacing:42.176178px;}
.ws10{word-spacing:65.389145px;}
.wsbb{word-spacing:194.856299px;}
.wsba{word-spacing:237.588534px;}
.wsb6{word-spacing:249.100625px;}
.wsb7{word-spacing:1338.524944px;}
._d{margin-left:-4.705570px;}
._0{margin-left:-3.615234px;}
._1{margin-left:-1.962556px;}
._3{width:1.075961px;}
._2{width:2.510575px;}
._7{width:3.891373px;}
._4{width:12.750221px;}
._5{width:14.382433px;}
._6{width:15.966548px;}
._b{width:18.022464px;}
._9{width:19.614380px;}
._a{width:20.621667px;}
._c{width:28.028966px;}
._12{width:49.623988px;}
._11{width:60.408151px;}
._8{width:65.454600px;}
._10{width:76.613352px;}
._13{width:92.418358px;}
._f{width:93.439907px;}
._15{width:96.439262px;}
._e{width:98.135870px;}
._14{width:115.614837px;}
._16{width:206.634635px;}
.fc9{color:transparent;}
.fc8{color:rgb(248,249,250);}
.fc7{color:rgb(214,51,132);}
.fc6{color:rgb(207,244,252);}
.fc4{color:rgb(73,80,87);}
.fc3{color:rgb(44,62,80);}
.fc2{color:rgb(5,81,96);}
.fc1{color:rgb(33,37,41);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:20.705589px;}
.fsa{font-size:22.646737px;}
.fs10{font-size:24.156519px;}
.fsd{font-size:25.881985px;}
.fs9{font-size:26.421193px;}
.fsf{font-size:29.332917px;}
.fs8{font-size:30.195650px;}
.fs6{font-size:32.877000px;}
.fsb{font-size:34.509313px;}
.fs7{font-size:41.842800px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fsc{font-size:92.873192px;}
.fs0{font-size:103.292400px;}
.y234{bottom:-192.686935px;}
.y244{bottom:-185.677230px;}
.y233{bottom:-184.598814px;}
.y245{bottom:-181.363565px;}
.y231{bottom:-160.873661px;}
.y243{bottom:-153.863957px;}
.y230{bottom:-152.785541px;}
.y232{bottom:-150.089501px;}
.y241{bottom:-128.521180px;}
.y240{bottom:-110.727316px;}
.y22f{bottom:-98.864739px;}
.y242{bottom:-92.933451px;}
.y23f{bottom:-91.855035px;}
.y22e{bottom:-90.776619px;}
.y23d{bottom:-65.973050px;}
.y22b{bottom:-54.110473px;}
.y1fd{bottom:-52.901748px;}
.y219{bottom:-51.953640px;}
.y22d{bottom:-51.414433px;}
.y23e{bottom:-48.179185px;}
.y23c{bottom:-47.100769px;}
.y22a{bottom:-46.022353px;}
.y22c{bottom:-43.865521px;}
.y1fc{bottom:-33.557660px;}
.y218{bottom:-30.385319px;}
.y229{bottom:-22.297200px;}
.y23b{bottom:-15.287496px;}
.y1fb{bottom:-14.213572px;}
.y228{bottom:-14.209080px;}
.y217{bottom:-8.816998px;}
.y0{bottom:0.000000px;}
.y21d{bottom:1.617616px;}
.y24d{bottom:1.617620px;}
.y21b{bottom:2.156831px;}
.y21f{bottom:2.264664px;}
.y1fa{bottom:5.130516px;}
.y239{bottom:10.055281px;}
.y249{bottom:10.541514px;}
.y216{bottom:13.290530px;}
.y1f9{bottom:24.474604px;}
.y238{bottom:27.849146px;}
.y215{bottom:34.858851px;}
.y226{bottom:39.711722px;}
.y1f8{bottom:43.818692px;}
.y23a{bottom:45.643010px;}
.y237{bottom:46.721427px;}
.y225{bottom:47.799843px;}
.y227{bottom:50.495883px;}
.y247{bottom:56.427172px;}
.y1ee{bottom:62.690973px;}
.y223{bottom:71.524995px;}
.y1ed{bottom:72.598920px;}
.y214{bottom:77.456285px;}
.y236{bottom:78.534700px;}
.y222{bottom:79.613116px;}
.y224{bottom:82.309156px;}
.y1ec{bottom:82.978675px;}
.y213{bottom:99.024606px;}
.y221{bottom:103.338269px;}
.y235{bottom:110.347973px;}
.y220{bottom:111.426389px;}
.y1eb{bottom:120.251430px;}
.y212{bottom:120.592927px;}
.y34{bottom:126.979500px;}
.y98{bottom:130.938000px;}
.y60{bottom:130.939500px;}
.y254{bottom:132.084000px;}
.y24a{bottom:132.455502px;}
.y24e{bottom:132.994710px;}
.y1ea{bottom:135.349254px;}
.y33{bottom:139.311000px;}
.y246{bottom:142.700455px;}
.yfe{bottom:143.416500px;}
.y5f{bottom:143.556000px;}
.y1e9{bottom:145.729009px;}
.y24f{bottom:145.935702px;}
.y253{bottom:148.522500px;}
.y24b{bottom:149.170950px;}
.y1d1{bottom:149.503454px;}
.y32{bottom:151.266000px;}
.y184{bottom:152.749500px;}
.y97{bottom:156.174000px;}
.y250{bottom:158.337487px;}
.y15b{bottom:158.652000px;}
.y1d0{bottom:159.411402px;}
.yfd{bottom:159.855000px;}
.y12a{bottom:160.564500px;}
.y31{bottom:163.221000px;}
.y211{bottom:164.268776px;}
.y252{bottom:164.961000px;}
.y30{bottom:167.181000px;}
.yd2{bottom:168.792000px;}
.y183{bottom:169.188000px;}
.y1cf{bottom:169.319349px;}
.y251{bottom:170.739271px;}
.y15a{bottom:175.090500px;}
.yfc{bottom:176.293500px;}
.y129{bottom:177.003000px;}
.yd1{bottom:181.410000px;}
.y1e8{bottom:183.001764px;}
.y96{bottom:184.957500px;}
.y182{bottom:185.626500px;}
.y210{bottom:185.837097px;}
.y159{bottom:191.529000px;}
.yfb{bottom:192.732000px;}
.y128{bottom:193.441500px;}
.yd0{bottom:194.028000px;}
.y202{bottom:195.895500px;}
.y2f{bottom:196.564500px;}
.y1e7{bottom:198.099588px;}
.y5e{bottom:198.784500px;}
.y95{bottom:201.396000px;}
.y181{bottom:202.063500px;}
.y206{bottom:206.327001px;}
.y20f{bottom:207.405418px;}
.y158{bottom:207.967500px;}
.y1e6{bottom:208.007536px;}
.yfa{bottom:209.170500px;}
.y127{bottom:209.880000px;}
.y1e2{bottom:210.366560px;}
.y2e{bottom:213.003000px;}
.y5d{bottom:215.223000px;}
.y94{bottom:217.834500px;}
.y1e5{bottom:218.387290px;}
.y180{bottom:218.502000px;}
.y20a{bottom:220.346409px;}
.y1e1{bottom:221.689929px;}
.ycf{bottom:222.175500px;}
.y157{bottom:224.406000px;}
.yf9{bottom:225.609000px;}
.y126{bottom:226.318500px;}
.y1cd{bottom:227.823420px;}
.y205{bottom:227.895321px;}
.y2d{bottom:229.441500px;}
.y20e{bottom:229.512947px;}
.y5c{bottom:231.661500px;}
.y1e0{bottom:233.013297px;}
.y209{bottom:233.287402px;}
.y93{bottom:234.273000px;}
.y17f{bottom:234.940500px;}
.yce{bottom:238.614000px;}
.y156{bottom:240.844500px;}
.y1f7{bottom:241.505835px;}
.yf8{bottom:242.047500px;}
.y125{bottom:242.757000px;}
.y1df{bottom:244.336666px;}
.y2c{bottom:245.880000px;}
.y208{bottom:246.228394px;}
.y1cc{bottom:247.167508px;}
.y5b{bottom:248.100000px;}
.y91{bottom:250.711500px;}
.y17e{bottom:251.379000px;}
.y20d{bottom:251.620476px;}
.ycd{bottom:255.052500px;}
.y92{bottom:255.594000px;}
.y1de{bottom:255.660035px;}
.y155{bottom:257.281500px;}
.yf7{bottom:258.486000px;}
.y207{bottom:259.169387px;}
.y124{bottom:259.195500px;}
.y1f6{bottom:260.849923px;}
.y2b{bottom:262.318500px;}
.y5a{bottom:264.537000px;}
.y1cb{bottom:266.039789px;}
.y1dd{bottom:266.983403px;}
.y90{bottom:267.150000px;}
.y17d{bottom:267.817500px;}
.ycc{bottom:271.491000px;}
.y154{bottom:273.720000px;}
.y20c{bottom:273.728004px;}
.y123{bottom:275.634000px;}
.y1dc{bottom:278.306772px;}
.y2a{bottom:278.757000px;}
.y204{bottom:279.659291px;}
.y1f5{bottom:280.194011px;}
.y59{bottom:280.975500px;}
.y8f{bottom:283.588500px;}
.y17c{bottom:284.256000px;}
.y1ca{bottom:284.912070px;}
.ycb{bottom:287.929500px;}
.yf6{bottom:288.561000px;}
.y1db{bottom:289.630140px;}
.y153{bottom:290.158500px;}
.y122{bottom:292.072500px;}
.y29{bottom:295.195500px;}
.y58{bottom:297.414000px;}
.y1f4{bottom:299.538098px;}
.y17b{bottom:300.694500px;}
.y1da{bottom:300.953509px;}
.y1c9{bottom:303.784351px;}
.yca{bottom:304.368000px;}
.yf5{bottom:304.998000px;}
.y152{bottom:306.597000px;}
.y121{bottom:308.511000px;}
.y8e{bottom:310.078500px;}
.y28{bottom:311.634000px;}
.y1d9{bottom:312.276877px;}
.y57{bottom:313.852500px;}
.y203{bottom:315.247022px;}
.y20b{bottom:315.659853px;}
.y17a{bottom:317.133000px;}
.y1f3{bottom:318.882186px;}
.yc9{bottom:320.805000px;}
.yf4{bottom:321.436500px;}
.y1c8{bottom:322.656632px;}
.y151{bottom:323.035500px;}
.y1d8{bottom:323.600246px;}
.y120{bottom:324.948000px;}
.y8d{bottom:326.517000px;}
.y27{bottom:328.072500px;}
.y24c{bottom:328.890214px;}
.y56{bottom:330.291000px;}
.y179{bottom:333.571500px;}
.y1d7{bottom:334.923615px;}
.yc8{bottom:337.243500px;}
.yf3{bottom:337.875000px;}
.y1f2{bottom:338.226274px;}
.y150{bottom:339.474000px;}
.y11f{bottom:341.386500px;}
.y1ff{bottom:341.528913px;}
.y8c{bottom:342.954000px;}
.y26{bottom:344.509500px;}
.y1d6{bottom:346.246983px;}
.y55{bottom:346.729500px;}
.y178{bottom:350.010000px;}
.yc7{bottom:353.682000px;}
.yf2{bottom:354.313500px;}
.y14f{bottom:355.912500px;}
.y1d5{bottom:357.570352px;}
.y1e4{bottom:357.570362px;}
.y11e{bottom:357.825000px;}
.y8b{bottom:359.392500px;}
.y1fe{bottom:360.401194px;}
.y25{bottom:360.948000px;}
.y53{bottom:363.168000px;}
.y177{bottom:366.447000px;}
.y54{bottom:368.050500px;}
.y1d4{bottom:368.893720px;}
.yc6{bottom:370.120500px;}
.y19d{bottom:370.566000px;}
.yf1{bottom:370.752000px;}
.y14e{bottom:372.351000px;}
.y11d{bottom:374.263500px;}
.y8a{bottom:375.831000px;}
.y1f1{bottom:376.914450px;}
.y24{bottom:377.386500px;}
.y52{bottom:379.606500px;}
.y1c7{bottom:379.745282px;}
.y1d3{bottom:380.217089px;}
.y176{bottom:382.885500px;}
.y21e{bottom:385.938431px;}
.yc5{bottom:386.559000px;}
.y19c{bottom:387.003000px;}
.yf0{bottom:387.190500px;}
.y14d{bottom:388.789500px;}
.y11c{bottom:390.702000px;}
.y1d2{bottom:391.540457px;}
.y89{bottom:392.269500px;}
.y23{bottom:393.825000px;}
.y51{bottom:396.045000px;}
.y1f0{bottom:396.258538px;}
.y1c6{bottom:399.089370px;}
.y175{bottom:399.324000px;}
.y21c{bottom:400.604888px;}
.yc4{bottom:402.997500px;}
.y19b{bottom:403.441500px;}
.yef{bottom:403.629000px;}
.y14c{bottom:405.228000px;}
.y11b{bottom:407.140500px;}
.y88{bottom:408.708000px;}
.y22{bottom:410.263500px;}
.y50{bottom:412.483500px;}
.y1ef{bottom:415.602626px;}
.y1ce{bottom:416.546230px;}
.y1c2{bottom:417.265500px;}
.y1c5{bottom:418.433458px;}
.yc3{bottom:419.436000px;}
.y174{bottom:419.872500px;}
.y19a{bottom:419.880000px;}
.yee{bottom:420.067500px;}
.y11a{bottom:423.579000px;}
.y87{bottom:425.146500px;}
.y14b{bottom:425.775000px;}
.y21{bottom:426.702000px;}
.y4f{bottom:428.920500px;}
.y1c1{bottom:429.220500px;}
.y1e3{bottom:434.946714px;}
.yc2{bottom:435.874500px;}
.y199{bottom:436.318500px;}
.yed{bottom:436.506000px;}
.y21a{bottom:439.427849px;}
.y119{bottom:440.017500px;}
.y1c0{bottom:441.175500px;}
.y86{bottom:441.585000px;}
.y248{bottom:441.773417px;}
.y20{bottom:443.140500px;}
.y4e{bottom:445.359000px;}
.y173{bottom:452.193000px;}
.yc0{bottom:452.313000px;}
.y198{bottom:452.757000px;}
.yec{bottom:452.944500px;}
.y1bf{bottom:453.130500px;}
.y1c4{bottom:454.762598px;}
.y118{bottom:456.456000px;}
.yc1{bottom:457.194000px;}
.y85{bottom:458.023500px;}
.y14a{bottom:459.169500px;}
.y1e{bottom:459.579000px;}
.y4d{bottom:461.797500px;}
.y1f{bottom:464.461500px;}
.y1be{bottom:465.085500px;}
.y172{bottom:468.631500px;}
.ybe{bottom:468.751500px;}
.y197{bottom:469.195500px;}
.yeb{bottom:469.383000px;}
.y117{bottom:472.894500px;}
.ybf{bottom:473.632500px;}
.y84{bottom:474.462000px;}
.y149{bottom:475.606500px;}
.y1d{bottom:476.017500px;}
.y1bd{bottom:477.040500px;}
.y4c{bottom:478.236000px;}
.y171{bottom:485.070000px;}
.ybd{bottom:485.190000px;}
.y196{bottom:485.634000px;}
.yea{bottom:485.820000px;}
.y1bc{bottom:488.995500px;}
.y116{bottom:489.333000px;}
.y83{bottom:490.900500px;}
.y148{bottom:492.045000px;}
.y1c{bottom:492.456000px;}
.y4b{bottom:494.674500px;}
.y1bb{bottom:500.952000px;}
.y16f{bottom:501.508500px;}
.y195{bottom:502.072500px;}
.ye9{bottom:502.258500px;}
.y115{bottom:505.770000px;}
.y170{bottom:506.389500px;}
.y82{bottom:507.339000px;}
.y147{bottom:508.483500px;}
.y4a{bottom:511.113000px;}
.ybc{bottom:511.563000px;}
.y1ba{bottom:512.907000px;}
.y1b{bottom:513.003000px;}
.y16e{bottom:517.945500px;}
.y194{bottom:518.511000px;}
.ye8{bottom:518.697000px;}
.y114{bottom:522.208500px;}
.y81{bottom:523.776000px;}
.y1b9{bottom:524.862000px;}
.y146{bottom:524.922000px;}
.y49{bottom:527.551500px;}
.ybb{bottom:528.001500px;}
.y16d{bottom:534.384000px;}
.y193{bottom:534.949500px;}
.ye7{bottom:535.135500px;}
.y1b8{bottom:536.817000px;}
.y113{bottom:538.647000px;}
.y80{bottom:540.214500px;}
.y145{bottom:541.360500px;}
.y48{bottom:543.990000px;}
.yba{bottom:544.440000px;}
.y201{bottom:545.160000px;}
.y1b7{bottom:548.772000px;}
.y16c{bottom:550.822500px;}
.y192{bottom:551.388000px;}
.y1a{bottom:551.392500px;}
.ye6{bottom:551.574000px;}
.y112{bottom:555.085500px;}
.y7f{bottom:556.653000px;}
.y144{bottom:557.799000px;}
.y47{bottom:560.428500px;}
.y1b6{bottom:560.727000px;}
.yb9{bottom:560.878500px;}
.y200{bottom:561.597000px;}
.y16b{bottom:567.261000px;}
.y191{bottom:567.825000px;}
.ye5{bottom:568.012500px;}
.y111{bottom:571.524000px;}
.y19{bottom:571.941000px;}
.y1b5{bottom:572.682000px;}
.y7e{bottom:573.091500px;}
.y143{bottom:574.237500px;}
.y46{bottom:576.867000px;}
.yb8{bottom:577.317000px;}
.y16a{bottom:583.699500px;}
.y190{bottom:584.263500px;}
.ye4{bottom:584.451000px;}
.y1b4{bottom:584.637000px;}
.y110{bottom:587.962500px;}
.y7d{bottom:589.530000px;}
.y142{bottom:590.676000px;}
.y1c3{bottom:592.531500px;}
.y45{bottom:593.305500px;}
.yb7{bottom:593.755500px;}
.y1b3{bottom:596.593500px;}
.y169{bottom:600.138000px;}
.y18f{bottom:600.702000px;}
.ye3{bottom:600.889500px;}
.y18{bottom:605.634000px;}
.y7c{bottom:605.968500px;}
.y141{bottom:607.114500px;}
.y1b2{bottom:608.548500px;}
.y44{bottom:609.742500px;}
.yb6{bottom:610.194000px;}
.y10f{bottom:610.915500px;}
.y168{bottom:616.576500px;}
.y18e{bottom:617.140500px;}
.y10d{bottom:620.142000px;}
.y1b1{bottom:620.503500px;}
.y17{bottom:622.072500px;}
.y7b{bottom:622.407000px;}
.y140{bottom:623.553000px;}
.y43{bottom:626.181000px;}
.yb5{bottom:626.632500px;}
.y10e{bottom:629.247000px;}
.ye2{bottom:630.964500px;}
.y1b0{bottom:632.458500px;}
.y167{bottom:633.015000px;}
.y18d{bottom:633.579000px;}
.y16{bottom:638.511000px;}
.y7a{bottom:638.845500px;}
.y13f{bottom:639.991500px;}
.y42{bottom:642.619500px;}
.yb4{bottom:643.071000px;}
.y1af{bottom:644.413500px;}
.ye1{bottom:647.401500px;}
.y166{bottom:649.453500px;}
.y18c{bottom:650.017500px;}
.y10c{bottom:653.005500px;}
.y15{bottom:654.948000px;}
.y79{bottom:655.284000px;}
.y1ae{bottom:656.368500px;}
.y13e{bottom:656.428500px;}
.y40{bottom:659.058000px;}
.yb3{bottom:659.508000px;}
.ye0{bottom:663.840000px;}
.y41{bottom:663.940500px;}
.y165{bottom:665.892000px;}
.y18b{bottom:666.456000px;}
.y1ad{bottom:668.323500px;}
.y10b{bottom:669.444000px;}
.y14{bottom:671.386500px;}
.y78{bottom:671.722500px;}
.y13d{bottom:672.867000px;}
.y3f{bottom:675.496500px;}
.yb2{bottom:675.946500px;}
.ydf{bottom:680.278500px;}
.y164{bottom:682.329000px;}
.y18a{bottom:682.894500px;}
.y10a{bottom:685.882500px;}
.y13{bottom:687.825000px;}
.y77{bottom:688.159500px;}
.y13c{bottom:689.305500px;}
.y3e{bottom:691.935000px;}
.y1ac{bottom:692.233500px;}
.yb1{bottom:692.385000px;}
.yde{bottom:696.717000px;}
.y163{bottom:698.767500px;}
.y189{bottom:699.333000px;}
.y108{bottom:702.321000px;}
.y1ab{bottom:704.190000px;}
.y12{bottom:704.263500px;}
.y76{bottom:704.598000px;}
.y109{bottom:707.203500px;}
.y3d{bottom:708.373500px;}
.yb0{bottom:708.823500px;}
.y13b{bottom:710.197500px;}
.ydd{bottom:713.155500px;}
.y162{bottom:715.206000px;}
.y188{bottom:715.771500px;}
.y1aa{bottom:716.145000px;}
.y107{bottom:718.759500px;}
.y11{bottom:720.702000px;}
.y75{bottom:721.036500px;}
.y3c{bottom:724.812000px;}
.yaf{bottom:725.262000px;}
.y13a{bottom:726.636000px;}
.y1a9{bottom:728.100000px;}
.ydc{bottom:729.594000px;}
.y161{bottom:731.644500px;}
.y187{bottom:732.208500px;}
.y106{bottom:735.198000px;}
.y10{bottom:737.140500px;}
.y74{bottom:737.475000px;}
.y1a8{bottom:740.055000px;}
.y3b{bottom:741.250500px;}
.yae{bottom:741.700500px;}
.y139{bottom:743.074500px;}
.ydb{bottom:746.032500px;}
.y160{bottom:748.083000px;}
.y186{bottom:748.647000px;}
.y105{bottom:751.636500px;}
.y1a7{bottom:752.010000px;}
.yf{bottom:753.579000px;}
.y73{bottom:753.913500px;}
.y3a{bottom:757.689000px;}
.yac{bottom:758.139000px;}
.y138{bottom:759.511500px;}
.yda{bottom:762.471000px;}
.yad{bottom:763.021500px;}
.y1a6{bottom:763.965000px;}
.y15f{bottom:764.521500px;}
.y104{bottom:768.075000px;}
.y185{bottom:769.195500px;}
.ye{bottom:770.017500px;}
.y72{bottom:770.352000px;}
.y39{bottom:774.126000px;}
.yab{bottom:774.577500px;}
.y1a5{bottom:775.920000px;}
.y137{bottom:775.950000px;}
.yd9{bottom:778.909500px;}
.y15e{bottom:780.960000px;}
.y103{bottom:784.513500px;}
.yd{bottom:786.456000px;}
.y71{bottom:786.790500px;}
.y1a4{bottom:787.875000px;}
.y38{bottom:790.564500px;}
.yaa{bottom:791.016000px;}
.y136{bottom:792.388500px;}
.y15d{bottom:797.398500px;}
.y1a3{bottom:799.830000px;}
.y102{bottom:800.952000px;}
.yc{bottom:802.894500px;}
.y70{bottom:803.229000px;}
.y37{bottom:807.003000px;}
.ya9{bottom:807.454500px;}
.y135{bottom:808.827000px;}
.yd8{bottom:808.984500px;}
.y1a2{bottom:811.786500px;}
.y101{bottom:817.390500px;}
.y15c{bottom:817.945500px;}
.yb{bottom:819.331500px;}
.y6f{bottom:819.667500px;}
.y36{bottom:823.441500px;}
.y1a1{bottom:823.741500px;}
.ya8{bottom:823.893000px;}
.yd7{bottom:825.421500px;}
.y134{bottom:829.719000px;}
.y100{bottom:833.827500px;}
.y1a0{bottom:835.696500px;}
.ya{bottom:835.770000px;}
.y6e{bottom:836.106000px;}
.y35{bottom:839.880000px;}
.ya7{bottom:840.330000px;}
.yd6{bottom:841.860000px;}
.y133{bottom:846.157500px;}
.y19f{bottom:847.651500px;}
.yff{bottom:850.266000px;}
.y6d{bottom:852.544500px;}
.y9{bottom:856.318500px;}
.yd5{bottom:858.298500px;}
.y132{bottom:862.594500px;}
.y19e{bottom:863.716500px;}
.ya6{bottom:866.704500px;}
.y6c{bottom:868.981500px;}
.yd4{bottom:874.737000px;}
.y131{bottom:879.033000px;}
.ya5{bottom:883.143000px;}
.y6b{bottom:885.420000px;}
.y8{bottom:886.296000px;}
.yd3{bottom:895.285500px;}
.y130{bottom:895.471500px;}
.ya3{bottom:899.581500px;}
.y6a{bottom:901.858500px;}
.y7{bottom:904.228500px;}
.ya4{bottom:904.464000px;}
.y12f{bottom:911.910000px;}
.ya1{bottom:916.020000px;}
.y69{bottom:918.297000px;}
.ya2{bottom:920.902500px;}
.y6{bottom:922.161000px;}
.y12e{bottom:928.348500px;}
.ya0{bottom:932.458500px;}
.y68{bottom:934.735500px;}
.y5{bottom:940.095000px;}
.y12d{bottom:944.787000px;}
.y9f{bottom:948.897000px;}
.y67{bottom:951.174000px;}
.y4{bottom:958.027500px;}
.y12c{bottom:961.225500px;}
.y9e{bottom:965.335500px;}
.y66{bottom:967.612500px;}
.y12b{bottom:977.664000px;}
.y3{bottom:978.948000px;}
.y9c{bottom:981.774000px;}
.y9d{bottom:986.655000px;}
.y65{bottom:994.102500px;}
.y9b{bottom:998.211000px;}
.y64{bottom:1010.541000px;}
.y9a{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y63{bottom:1026.979500px;}
.y99{bottom:1031.088000px;}
.y1{bottom:1044.562500px;}
.y62{bottom:1047.526500px;}
.y61{bottom:1088.323500px;}
.h25{height:8.627328px;}
.h1d{height:9.274377px;}
.h1c{height:9.705744px;}
.h1e{height:9.921427px;}
.h21{height:15.003464px;}
.h16{height:16.410038px;}
.h26{height:17.504040px;}
.h20{height:18.754329px;}
.h15{height:19.557876px;}
.h24{height:21.254906px;}
.h14{height:21.880051px;}
.h12{height:22.351858px;}
.h10{height:23.796767px;}
.h7{height:24.197472px;}
.h19{height:25.005772px;}
.h1f{height:25.224825px;}
.h23{height:25.666300px;}
.ha{height:29.206274px;}
.h8{height:30.796301px;}
.h6{height:32.116243px;}
.hb{height:36.044928px;}
.hd{height:38.573453px;}
.h17{height:38.734848px;}
.h5{height:39.595622px;}
.h3{height:43.994842px;}
.h4{height:47.127312px;}
.h22{height:48.730925px;}
.h9{height:51.640243px;}
.hc{height:51.646243px;}
.h2{height:52.794163px;}
.h1b{height:67.296785px;}
.h1{height:72.098095px;}
.he{height:72.305347px;}
.h1a{height:305.002068px;}
.h18{height:330.882293px;}
.h13{height:442.023808px;}
.h11{height:445.798264px;}
.hf{height:468.444139px;}
.h0{height:1188.000000px;}
.wb{width:72.253882px;}
.w8{width:110.645477px;}
.w6{width:119.164976px;}
.w2{width:119.838986px;}
.w9{width:122.508052px;}
.wa{width:150.331197px;}
.w4{width:251.944979px;}
.w7{width:284.162656px;}
.w3{width:363.763225px;}
.w5{width:630.440189px;}
.w1{width:756.614868px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x62{left:5.499922px;}
.x51{left:8.627328px;}
.x52{left:10.784160px;}
.x5a{left:12.940992px;}
.x47{left:17.456860px;}
.x4c{left:18.746957px;}
.x56{left:19.950697px;}
.x45{left:21.231316px;}
.x46{left:22.646737px;}
.x50{left:24.533965px;}
.x55{left:25.881985px;}
.x4a{left:27.165765px;}
.x48{left:28.780228px;}
.x4d{left:29.974490px;}
.x57{left:32.891689px;}
.x4e{left:39.978273px;}
.x4f{left:47.527186px;}
.x1{left:80.697000px;}
.x43{left:82.192500px;}
.xc{left:84.763500px;}
.x1d{left:93.958500px;}
.xb{left:95.641500px;}
.x3c{left:101.895000px;}
.x19{left:114.073500px;}
.x1f{left:117.627000px;}
.x3d{left:123.234000px;}
.x5c{left:125.416416px;}
.x2{left:157.165500px;}
.x27{left:163.860000px;}
.x7{left:170.589000px;}
.x53{left:173.624983px;}
.x1a{left:181.321500px;}
.x20{left:189.891000px;}
.x21{left:195.018000px;}
.x14{left:201.316500px;}
.x1e{left:208.281000px;}
.x49{left:210.052205px;}
.x61{left:218.552814px;}
.x9{left:219.952500px;}
.x58{left:224.004211px;}
.xa{left:228.348000px;}
.x59{left:229.935486px;}
.x64{left:237.420031px;}
.x65{left:241.455669px;}
.x63{left:243.415698px;}
.x8{left:268.501500px;}
.x1b{left:272.311500px;}
.x67{left:308.325886px;}
.x66{left:311.670663px;}
.x68{left:315.697873px;}
.x54{left:319.750356px;}
.x17{left:323.982000px;}
.x25{left:329.436000px;}
.x26{left:338.632500px;}
.x24{left:340.195500px;}
.x1c{left:341.872500px;}
.x22{left:349.020000px;}
.x18{left:367.686000px;}
.x6{left:379.348500px;}
.x23{left:382.644000px;}
.x69{left:385.921290px;}
.x5{left:391.438500px;}
.x15{left:402.090000px;}
.x4{left:404.505000px;}
.x3{left:419.847000px;}
.x5d{left:427.962666px;}
.x16{left:432.346500px;}
.x5f{left:438.645725px;}
.x6b{left:453.962602px;}
.x5b{left:455.209521px;}
.x6a{left:457.307379px;}
.x6c{left:459.657987px;}
.x37{left:475.413000px;}
.xd{left:476.596500px;}
.x41{left:481.797000px;}
.xe{left:491.877000px;}
.x3b{left:500.959500px;}
.x5e{left:505.237915px;}
.x42{left:509.053500px;}
.x6f{left:514.513980px;}
.x32{left:515.971500px;}
.x6e{left:520.554793px;}
.x6d{left:523.899570px;}
.x3e{left:563.980500px;}
.x4b{left:574.287224px;}
.x71{left:576.463924px;}
.x3f{left:578.226000px;}
.x70{left:579.808702px;}
.x72{left:582.496314px;}
.x33{left:593.187000px;}
.x44{left:596.909605px;}
.x35{left:599.745000px;}
.x40{left:600.991500px;}
.x2a{left:603.663000px;}
.x39{left:607.857000px;}
.x36{left:614.433000px;}
.xf{left:633.145500px;}
.x10{left:642.195000px;}
.x3a{left:664.069500px;}
.x11{left:672.910500px;}
.x2b{left:677.635500px;}
.x2c{left:680.535000px;}
.x12{left:682.435500px;}
.x38{left:683.743500px;}
.x2d{left:689.703000px;}
.x34{left:698.731500px;}
.x60{left:706.648961px;}
.x30{left:714.037500px;}
.x2e{left:716.223000px;}
.x31{left:728.307000px;}
.x13{left:787.321500px;}
.x28{left:794.286000px;}
.x29{left:803.484000px;}
.x2f{left:831.483000px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v7{vertical-align:-3.834368pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.284364pt;}
.v5{vertical-align:5.751552pt;}
.v1{vertical-align:17.354667pt;}
.v6{vertical-align:21.089025pt;}
.v3{vertical-align:32.805333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.478507pt;}
.ls3{letter-spacing:0.481007pt;}
.ls0{letter-spacing:2.656173pt;}
.ls8{letter-spacing:4.067814pt;}
.ls9{letter-spacing:6.851840pt;}
.ls2{letter-spacing:8.461781pt;}
.ls7{letter-spacing:10.143863pt;}
.ls6{letter-spacing:11.346193pt;}
.ls4{letter-spacing:15.675674pt;}
.lsa{letter-spacing:45.613629pt;}
.ws6b{word-spacing:-22.475776pt;}
.wsb5{word-spacing:-16.106967pt;}
.ws3{word-spacing:-13.283467pt;}
.ws19{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-9.298400pt;}
.wsb8{word-spacing:-8.522482pt;}
.wsb2{word-spacing:-7.457172pt;}
.ws50{word-spacing:-7.306000pt;}
.wsbd{word-spacing:-5.965737pt;}
.ws36{word-spacing:-3.586560pt;}
.ws8c{word-spacing:-3.538739pt;}
.ws5f{word-spacing:-2.964890pt;}
.wsa8{word-spacing:-2.938294pt;}
.ws37{word-spacing:-2.725786pt;}
.wsad{word-spacing:-2.715133pt;}
.ws83{word-spacing:-2.677965pt;}
.ws11{word-spacing:-2.630144pt;}
.ws78{word-spacing:-2.582323pt;}
.ws7c{word-spacing:-2.534502pt;}
.ws21{word-spacing:-2.486682pt;}
.ws26{word-spacing:-2.438861pt;}
.ws4a{word-spacing:-2.343219pt;}
.ws9b{word-spacing:-2.295398pt;}
.ws46{word-spacing:-2.247578pt;}
.ws8d{word-spacing:-2.199757pt;}
.ws9d{word-spacing:-2.194422pt;}
.wsc{word-spacing:-2.151936pt;}
.ws62{word-spacing:-2.008474pt;}
.ws63{word-spacing:-1.960653pt;}
.ws4f{word-spacing:-1.912832pt;}
.ws2b{word-spacing:-1.865011pt;}
.wsa5{word-spacing:-1.785293pt;}
.ws96{word-spacing:-1.769370pt;}
.ws22{word-spacing:-1.721549pt;}
.ws73{word-spacing:-1.578086pt;}
.ws8b{word-spacing:-1.530266pt;}
.ws5e{word-spacing:-1.482445pt;}
.ws91{word-spacing:-1.434624pt;}
.ws16{word-spacing:-1.291162pt;}
.ws23{word-spacing:-1.195520pt;}
.ws47{word-spacing:-1.147699pt;}
.ws51{word-spacing:-1.099878pt;}
.ws1e{word-spacing:-1.004237pt;}
.ws3e{word-spacing:-0.956416pt;}
.ws61{word-spacing:-0.908595pt;}
.ws39{word-spacing:-0.860774pt;}
.ws7b{word-spacing:-0.812954pt;}
.ws6c{word-spacing:-0.765133pt;}
.ws28{word-spacing:-0.717312pt;}
.ws6f{word-spacing:-0.573850pt;}
.ws90{word-spacing:-0.526029pt;}
.ws34{word-spacing:-0.478208pt;}
.ws8f{word-spacing:-0.430387pt;}
.ws59{word-spacing:-0.382566pt;}
.ws3d{word-spacing:-0.334746pt;}
.ws6{word-spacing:-0.286925pt;}
.wsa{word-spacing:-0.239104pt;}
.ws12{word-spacing:-0.191283pt;}
.wsaa{word-spacing:-0.148774pt;}
.ws8{word-spacing:-0.143462pt;}
.wsa2{word-spacing:-0.111581pt;}
.ws9{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.058182pt;}
.ws20{word-spacing:-0.047821pt;}
.ws9f{word-spacing:-0.037194pt;}
.wsac{word-spacing:-0.000919pt;}
.ws2{word-spacing:0.000000pt;}
.ws92{word-spacing:0.018961pt;}
.wsa3{word-spacing:0.037194pt;}
.wse{word-spacing:0.047821pt;}
.wsa6{word-spacing:0.074387pt;}
.wsd{word-spacing:0.095642pt;}
.ws9e{word-spacing:0.111581pt;}
.ws24{word-spacing:0.143462pt;}
.ws1d{word-spacing:0.148774pt;}
.wsf{word-spacing:0.191283pt;}
.ws27{word-spacing:0.239104pt;}
.wsc0{word-spacing:0.254956pt;}
.wsbe{word-spacing:0.254975pt;}
.ws7{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.430387pt;}
.ws43{word-spacing:0.478208pt;}
.wsa1{word-spacing:0.520710pt;}
.ws7d{word-spacing:0.526029pt;}
.wsb{word-spacing:0.573850pt;}
.ws57{word-spacing:0.669491pt;}
.ws75{word-spacing:0.717312pt;}
.ws49{word-spacing:0.765133pt;}
.ws17{word-spacing:0.812954pt;}
.ws4d{word-spacing:0.860774pt;}
.ws4b{word-spacing:0.908595pt;}
.ws2c{word-spacing:0.956416pt;}
.ws55{word-spacing:1.004237pt;}
.ws48{word-spacing:1.052058pt;}
.ws66{word-spacing:1.099878pt;}
.ws60{word-spacing:1.195520pt;}
.ws76{word-spacing:1.243341pt;}
.ws4e{word-spacing:1.291162pt;}
.ws40{word-spacing:1.338982pt;}
.ws6d{word-spacing:1.434624pt;}
.ws13{word-spacing:1.482445pt;}
.ws35{word-spacing:1.578086pt;}
.ws5b{word-spacing:1.625907pt;}
.ws7f{word-spacing:1.673728pt;}
.ws7e{word-spacing:1.721549pt;}
.ws9c{word-spacing:1.769370pt;}
.ws67{word-spacing:1.817190pt;}
.ws79{word-spacing:1.865011pt;}
.ws8a{word-spacing:1.960653pt;}
.wsae{word-spacing:2.008454pt;}
.ws65{word-spacing:2.008474pt;}
.ws84{word-spacing:2.056294pt;}
.ws98{word-spacing:2.104115pt;}
.ws77{word-spacing:2.151936pt;}
.ws1b{word-spacing:2.194422pt;}
.ws71{word-spacing:2.199757pt;}
.ws5a{word-spacing:2.247578pt;}
.ws58{word-spacing:2.295398pt;}
.wsc2{word-spacing:2.355549pt;}
.wsbf{word-spacing:2.357362pt;}
.wsc4{word-spacing:2.362736pt;}
.wsc1{word-spacing:2.366363pt;}
.wsc3{word-spacing:2.369883pt;}
.wsbc{word-spacing:2.372506pt;}
.wsaf{word-spacing:2.380390pt;}
.wsc5{word-spacing:2.381350pt;}
.ws42{word-spacing:2.391040pt;}
.ws85{word-spacing:2.438861pt;}
.ws70{word-spacing:2.486682pt;}
.ws3b{word-spacing:2.534502pt;}
.wsa0{word-spacing:2.566358pt;}
.ws82{word-spacing:2.582323pt;}
.ws2a{word-spacing:2.630144pt;}
.ws64{word-spacing:2.677965pt;}
.ws33{word-spacing:2.725786pt;}
.ws29{word-spacing:2.773606pt;}
.ws86{word-spacing:2.821427pt;}
.ws5c{word-spacing:2.869248pt;}
.ws1c{word-spacing:2.901101pt;}
.ws6e{word-spacing:2.917069pt;}
.ws5{word-spacing:2.964890pt;}
.ws74{word-spacing:3.060531pt;}
.ws94{word-spacing:3.108352pt;}
.ws44{word-spacing:3.156173pt;}
.ws87{word-spacing:3.490918pt;}
.ws68{word-spacing:3.538739pt;}
.ws6a{word-spacing:3.586560pt;}
.ws69{word-spacing:3.634381pt;}
.wsa9{word-spacing:3.682166pt;}
.ws25{word-spacing:3.777843pt;}
.ws38{word-spacing:3.873485pt;}
.ws32{word-spacing:4.064768pt;}
.ws89{word-spacing:4.208230pt;}
.ws8e{word-spacing:4.256051pt;}
.ws31{word-spacing:4.399514pt;}
.ws99{word-spacing:4.447334pt;}
.ws3a{word-spacing:4.590797pt;}
.ws72{word-spacing:4.638618pt;}
.ws88{word-spacing:4.829901pt;}
.ws54{word-spacing:4.925542pt;}
.ws41{word-spacing:5.021184pt;}
.ws81{word-spacing:5.308109pt;}
.ws3c{word-spacing:5.547213pt;}
.ws53{word-spacing:6.599270pt;}
.wsab{word-spacing:9.112432pt;}
.wsb0{word-spacing:9.224013pt;}
.ws2e{word-spacing:9.261206pt;}
.wsa4{word-spacing:9.298400pt;}
.wsa7{word-spacing:9.335594pt;}
.ws15{word-spacing:10.616218pt;}
.ws1f{word-spacing:10.950963pt;}
.ws97{word-spacing:11.312473pt;}
.ws14{word-spacing:11.716096pt;}
.ws18{word-spacing:11.763917pt;}
.ws5d{word-spacing:11.811738pt;}
.wsb3{word-spacing:11.907379pt;}
.wsc6{word-spacing:11.955200pt;}
.ws1a{word-spacing:12.003021pt;}
.ws95{word-spacing:12.366431pt;}
.ws4c{word-spacing:12.768154pt;}
.ws7a{word-spacing:12.862193pt;}
.ws93{word-spacing:13.047945pt;}
.ws52{word-spacing:13.074276pt;}
.ws45{word-spacing:13.265693pt;}
.ws2f{word-spacing:14.487285pt;}
.ws80{word-spacing:14.678403pt;}
.ws30{word-spacing:16.306893pt;}
.ws9a{word-spacing:17.432437pt;}
.ws56{word-spacing:18.184505pt;}
.ws0{word-spacing:22.127527pt;}
.ws1{word-spacing:22.862051pt;}
.wsb9{word-spacing:26.001809pt;}
.wsb1{word-spacing:32.803694pt;}
.wsb4{word-spacing:37.489936pt;}
.ws10{word-spacing:58.123685pt;}
.wsbb{word-spacing:173.205599pt;}
.wsba{word-spacing:211.189808pt;}
.wsb6{word-spacing:221.422778pt;}
.wsb7{word-spacing:1189.799951pt;}
._d{margin-left:-4.182729pt;}
._0{margin-left:-3.213541pt;}
._1{margin-left:-1.744494pt;}
._3{width:0.956410pt;}
._2{width:2.231622pt;}
._7{width:3.458998pt;}
._4{width:11.333530pt;}
._5{width:12.784385pt;}
._6{width:14.192487pt;}
._b{width:16.019968pt;}
._9{width:17.435004pt;}
._a{width:18.330371pt;}
._c{width:24.914637pt;}
._12{width:44.110212pt;}
._11{width:53.696134pt;}
._8{width:58.181867pt;}
._10{width:68.100757pt;}
._13{width:82.149651pt;}
._f{width:83.057695pt;}
._15{width:85.723789pt;}
._e{width:87.231885pt;}
._14{width:102.768744pt;}
._16{width:183.675231pt;}
.fse{font-size:18.404968pt;}
.fsa{font-size:20.130433pt;}
.fs10{font-size:21.472461pt;}
.fsd{font-size:23.006209pt;}
.fs9{font-size:23.485505pt;}
.fsf{font-size:26.073704pt;}
.fs8{font-size:26.840577pt;}
.fs6{font-size:29.224000pt;}
.fsb{font-size:30.674945pt;}
.fs7{font-size:37.193600pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fsc{font-size:82.553948pt;}
.fs0{font-size:91.815467pt;}
.y234{bottom:-171.277275pt;}
.y244{bottom:-165.046427pt;}
.y233{bottom:-164.087835pt;}
.y245{bottom:-161.212058pt;}
.y231{bottom:-142.998810pt;}
.y243{bottom:-136.767962pt;}
.y230{bottom:-135.809370pt;}
.y232{bottom:-133.412890pt;}
.y241{bottom:-114.241049pt;}
.y240{bottom:-98.424280pt;}
.y22f{bottom:-87.879768pt;}
.y242{bottom:-82.607512pt;}
.y23f{bottom:-81.648920pt;}
.y22e{bottom:-80.690328pt;}
.y23d{bottom:-58.642711pt;}
.y22b{bottom:-48.098199pt;}
.y1fd{bottom:-47.023776pt;}
.y219{bottom:-46.181013pt;}
.y22d{bottom:-45.701718pt;}
.y23e{bottom:-42.825942pt;}
.y23c{bottom:-41.867350pt;}
.y22a{bottom:-40.908758pt;}
.y22c{bottom:-38.991574pt;}
.y1fc{bottom:-29.829031pt;}
.y218{bottom:-27.009173pt;}
.y229{bottom:-19.819733pt;}
.y23b{bottom:-13.588885pt;}
.y1fb{bottom:-12.634286pt;}
.y228{bottom:-12.630293pt;}
.y217{bottom:-7.837332pt;}
.y0{bottom:0.000000pt;}
.y21d{bottom:1.437881pt;}
.y24d{bottom:1.437884pt;}
.y21b{bottom:1.917183pt;}
.y21f{bottom:2.013035pt;}
.y1fa{bottom:4.560459pt;}
.y239{bottom:8.938028pt;}
.y249{bottom:9.370235pt;}
.y216{bottom:11.813805pt;}
.y1f9{bottom:21.755203pt;}
.y238{bottom:24.754796pt;}
.y215{bottom:30.985646pt;}
.y226{bottom:35.299309pt;}
.y1f8{bottom:38.949948pt;}
.y23a{bottom:40.571565pt;}
.y237{bottom:41.530157pt;}
.y225{bottom:42.488749pt;}
.y227{bottom:44.885229pt;}
.y247{bottom:50.157486pt;}
.y1ee{bottom:55.725309pt;}
.y223{bottom:63.577774pt;}
.y1ed{bottom:64.532373pt;}
.y214{bottom:68.850031pt;}
.y236{bottom:69.808622pt;}
.y222{bottom:70.767214pt;}
.y224{bottom:73.163694pt;}
.y1ec{bottom:73.758822pt;}
.y213{bottom:88.021872pt;}
.y221{bottom:91.856239pt;}
.y235{bottom:98.087087pt;}
.y220{bottom:99.045679pt;}
.y1eb{bottom:106.890160pt;}
.y212{bottom:107.193712pt;}
.y34{bottom:112.870667pt;}
.y98{bottom:116.389333pt;}
.y60{bottom:116.390667pt;}
.y254{bottom:117.408000pt;}
.y24a{bottom:117.738224pt;}
.y24e{bottom:118.217520pt;}
.y1ea{bottom:120.310448pt;}
.y33{bottom:123.832000pt;}
.y246{bottom:126.844849pt;}
.yfe{bottom:127.481333pt;}
.y5f{bottom:127.605333pt;}
.y1e9{bottom:129.536897pt;}
.y24f{bottom:129.720624pt;}
.y253{bottom:132.020000pt;}
.y24b{bottom:132.596400pt;}
.y1d1{bottom:132.891959pt;}
.y32{bottom:134.458667pt;}
.y184{bottom:135.777333pt;}
.y97{bottom:138.821333pt;}
.y250{bottom:140.744433pt;}
.y15b{bottom:141.024000pt;}
.y1d0{bottom:141.699024pt;}
.yfd{bottom:142.093333pt;}
.y12a{bottom:142.724000pt;}
.y31{bottom:145.085333pt;}
.y211{bottom:146.016690pt;}
.y252{bottom:146.632000pt;}
.y30{bottom:148.605333pt;}
.yd2{bottom:150.037333pt;}
.y183{bottom:150.389333pt;}
.y1cf{bottom:150.506088pt;}
.y251{bottom:151.768241pt;}
.y15a{bottom:155.636000pt;}
.yfc{bottom:156.705333pt;}
.y129{bottom:157.336000pt;}
.yd1{bottom:161.253333pt;}
.y1e8{bottom:162.668234pt;}
.y96{bottom:164.406667pt;}
.y182{bottom:165.001333pt;}
.y210{bottom:165.188531pt;}
.y159{bottom:170.248000pt;}
.yfb{bottom:171.317333pt;}
.y128{bottom:171.948000pt;}
.yd0{bottom:172.469333pt;}
.y202{bottom:174.129333pt;}
.y2f{bottom:174.724000pt;}
.y1e7{bottom:176.088523pt;}
.y5e{bottom:176.697333pt;}
.y95{bottom:179.018667pt;}
.y181{bottom:179.612000pt;}
.y206{bottom:183.401778pt;}
.y20f{bottom:184.360371pt;}
.y158{bottom:184.860000pt;}
.y1e6{bottom:184.895587pt;}
.yfa{bottom:185.929333pt;}
.y127{bottom:186.560000pt;}
.y1e2{bottom:186.992498pt;}
.y2e{bottom:189.336000pt;}
.y5d{bottom:191.309333pt;}
.y94{bottom:193.630667pt;}
.y1e5{bottom:194.122036pt;}
.y180{bottom:194.224000pt;}
.y20a{bottom:195.863475pt;}
.y1e1{bottom:197.057715pt;}
.ycf{bottom:197.489333pt;}
.y157{bottom:199.472000pt;}
.yf9{bottom:200.541333pt;}
.y126{bottom:201.172000pt;}
.y1cd{bottom:202.509707pt;}
.y205{bottom:202.573619pt;}
.y2d{bottom:203.948000pt;}
.y20e{bottom:204.011508pt;}
.y5c{bottom:205.921333pt;}
.y1e0{bottom:207.122931pt;}
.y209{bottom:207.366579pt;}
.y93{bottom:208.242667pt;}
.y17f{bottom:208.836000pt;}
.yce{bottom:212.101333pt;}
.y156{bottom:214.084000pt;}
.y1f7{bottom:214.671853pt;}
.yf8{bottom:215.153333pt;}
.y125{bottom:215.784000pt;}
.y1df{bottom:217.188148pt;}
.y2c{bottom:218.560000pt;}
.y208{bottom:218.869684pt;}
.y1cc{bottom:219.704452pt;}
.y5b{bottom:220.533333pt;}
.y91{bottom:222.854667pt;}
.y17e{bottom:223.448000pt;}
.y20d{bottom:223.662645pt;}
.ycd{bottom:226.713333pt;}
.y92{bottom:227.194667pt;}
.y1de{bottom:227.253364pt;}
.y155{bottom:228.694667pt;}
.yf7{bottom:229.765333pt;}
.y207{bottom:230.372788pt;}
.y124{bottom:230.396000pt;}
.y1f6{bottom:231.866598pt;}
.y2b{bottom:233.172000pt;}
.y5a{bottom:235.144000pt;}
.y1cb{bottom:236.479813pt;}
.y1dd{bottom:237.318581pt;}
.y90{bottom:237.466667pt;}
.y17d{bottom:238.060000pt;}
.ycc{bottom:241.325333pt;}
.y154{bottom:243.306667pt;}
.y20c{bottom:243.313782pt;}
.y123{bottom:245.008000pt;}
.y1dc{bottom:247.383797pt;}
.y2a{bottom:247.784000pt;}
.y204{bottom:248.586037pt;}
.y1f5{bottom:249.061343pt;}
.y59{bottom:249.756000pt;}
.y8f{bottom:252.078667pt;}
.y17c{bottom:252.672000pt;}
.y1ca{bottom:253.255173pt;}
.ycb{bottom:255.937333pt;}
.yf6{bottom:256.498667pt;}
.y1db{bottom:257.449014pt;}
.y153{bottom:257.918667pt;}
.y122{bottom:259.620000pt;}
.y29{bottom:262.396000pt;}
.y58{bottom:264.368000pt;}
.y1f4{bottom:266.256088pt;}
.y17b{bottom:267.284000pt;}
.y1da{bottom:267.514230pt;}
.y1c9{bottom:270.030534pt;}
.yca{bottom:270.549333pt;}
.yf5{bottom:271.109333pt;}
.y152{bottom:272.530667pt;}
.y121{bottom:274.232000pt;}
.y8e{bottom:275.625333pt;}
.y28{bottom:277.008000pt;}
.y1d9{bottom:277.579447pt;}
.y57{bottom:278.980000pt;}
.y203{bottom:280.219575pt;}
.y20b{bottom:280.586536pt;}
.y17a{bottom:281.896000pt;}
.y1f3{bottom:283.450832pt;}
.yc9{bottom:285.160000pt;}
.yf4{bottom:285.721333pt;}
.y1c8{bottom:286.805895pt;}
.y151{bottom:287.142667pt;}
.y1d8{bottom:287.644663pt;}
.y120{bottom:288.842667pt;}
.y8d{bottom:290.237333pt;}
.y27{bottom:291.620000pt;}
.y24c{bottom:292.346857pt;}
.y56{bottom:293.592000pt;}
.y179{bottom:296.508000pt;}
.y1d7{bottom:297.709880pt;}
.yc8{bottom:299.772000pt;}
.yf3{bottom:300.333333pt;}
.y1f2{bottom:300.645577pt;}
.y150{bottom:301.754667pt;}
.y11f{bottom:303.454667pt;}
.y1ff{bottom:303.581256pt;}
.y8c{bottom:304.848000pt;}
.y26{bottom:306.230667pt;}
.y1d6{bottom:307.775096pt;}
.y55{bottom:308.204000pt;}
.y178{bottom:311.120000pt;}
.yc7{bottom:314.384000pt;}
.yf2{bottom:314.945333pt;}
.y14f{bottom:316.366667pt;}
.y1d5{bottom:317.840313pt;}
.y1e4{bottom:317.840322pt;}
.y11e{bottom:318.066667pt;}
.y8b{bottom:319.460000pt;}
.y1fe{bottom:320.356617pt;}
.y25{bottom:320.842667pt;}
.y53{bottom:322.816000pt;}
.y177{bottom:325.730667pt;}
.y54{bottom:327.156000pt;}
.y1d4{bottom:327.905529pt;}
.yc6{bottom:328.996000pt;}
.y19d{bottom:329.392000pt;}
.yf1{bottom:329.557333pt;}
.y14e{bottom:330.978667pt;}
.y11d{bottom:332.678667pt;}
.y8a{bottom:334.072000pt;}
.y1f1{bottom:335.035067pt;}
.y24{bottom:335.454667pt;}
.y52{bottom:337.428000pt;}
.y1c7{bottom:337.551362pt;}
.y1d3{bottom:337.970746pt;}
.y176{bottom:340.342667pt;}
.y21e{bottom:343.056383pt;}
.yc5{bottom:343.608000pt;}
.y19c{bottom:344.002667pt;}
.yf0{bottom:344.169333pt;}
.y14d{bottom:345.590667pt;}
.y11c{bottom:347.290667pt;}
.y1d2{bottom:348.035962pt;}
.y89{bottom:348.684000pt;}
.y23{bottom:350.066667pt;}
.y51{bottom:352.040000pt;}
.y1f0{bottom:352.229812pt;}
.y1c6{bottom:354.746106pt;}
.y175{bottom:354.954667pt;}
.y21c{bottom:356.093234pt;}
.yc4{bottom:358.220000pt;}
.y19b{bottom:358.614667pt;}
.yef{bottom:358.781333pt;}
.y14c{bottom:360.202667pt;}
.y11b{bottom:361.902667pt;}
.y88{bottom:363.296000pt;}
.y22{bottom:364.678667pt;}
.y50{bottom:366.652000pt;}
.y1ef{bottom:369.424557pt;}
.y1ce{bottom:370.263315pt;}
.y1c2{bottom:370.902667pt;}
.y1c5{bottom:371.940851pt;}
.yc3{bottom:372.832000pt;}
.y174{bottom:373.220000pt;}
.y19a{bottom:373.226667pt;}
.yee{bottom:373.393333pt;}
.y11a{bottom:376.514667pt;}
.y87{bottom:377.908000pt;}
.y14b{bottom:378.466667pt;}
.y21{bottom:379.290667pt;}
.y4f{bottom:381.262667pt;}
.y1c1{bottom:381.529333pt;}
.y1e3{bottom:386.619302pt;}
.yc2{bottom:387.444000pt;}
.y199{bottom:387.838667pt;}
.yed{bottom:388.005333pt;}
.y21a{bottom:390.602533pt;}
.y119{bottom:391.126667pt;}
.y1c0{bottom:392.156000pt;}
.y86{bottom:392.520000pt;}
.y248{bottom:392.687482pt;}
.y20{bottom:393.902667pt;}
.y4e{bottom:395.874667pt;}
.y173{bottom:401.949333pt;}
.yc0{bottom:402.056000pt;}
.y198{bottom:402.450667pt;}
.yec{bottom:402.617333pt;}
.y1bf{bottom:402.782667pt;}
.y1c4{bottom:404.233421pt;}
.y118{bottom:405.738667pt;}
.yc1{bottom:406.394667pt;}
.y85{bottom:407.132000pt;}
.y14a{bottom:408.150667pt;}
.y1e{bottom:408.514667pt;}
.y4d{bottom:410.486667pt;}
.y1f{bottom:412.854667pt;}
.y1be{bottom:413.409333pt;}
.y172{bottom:416.561333pt;}
.ybe{bottom:416.668000pt;}
.y197{bottom:417.062667pt;}
.yeb{bottom:417.229333pt;}
.y117{bottom:420.350667pt;}
.ybf{bottom:421.006667pt;}
.y84{bottom:421.744000pt;}
.y149{bottom:422.761333pt;}
.y1d{bottom:423.126667pt;}
.y1bd{bottom:424.036000pt;}
.y4c{bottom:425.098667pt;}
.y171{bottom:431.173333pt;}
.ybd{bottom:431.280000pt;}
.y196{bottom:431.674667pt;}
.yea{bottom:431.840000pt;}
.y1bc{bottom:434.662667pt;}
.y116{bottom:434.962667pt;}
.y83{bottom:436.356000pt;}
.y148{bottom:437.373333pt;}
.y1c{bottom:437.738667pt;}
.y4b{bottom:439.710667pt;}
.y1bb{bottom:445.290667pt;}
.y16f{bottom:445.785333pt;}
.y195{bottom:446.286667pt;}
.ye9{bottom:446.452000pt;}
.y115{bottom:449.573333pt;}
.y170{bottom:450.124000pt;}
.y82{bottom:450.968000pt;}
.y147{bottom:451.985333pt;}
.y4a{bottom:454.322667pt;}
.ybc{bottom:454.722667pt;}
.y1ba{bottom:455.917333pt;}
.y1b{bottom:456.002667pt;}
.y16e{bottom:460.396000pt;}
.y194{bottom:460.898667pt;}
.ye8{bottom:461.064000pt;}
.y114{bottom:464.185333pt;}
.y81{bottom:465.578667pt;}
.y1b9{bottom:466.544000pt;}
.y146{bottom:466.597333pt;}
.y49{bottom:468.934667pt;}
.ybb{bottom:469.334667pt;}
.y16d{bottom:475.008000pt;}
.y193{bottom:475.510667pt;}
.ye7{bottom:475.676000pt;}
.y1b8{bottom:477.170667pt;}
.y113{bottom:478.797333pt;}
.y80{bottom:480.190667pt;}
.y145{bottom:481.209333pt;}
.y48{bottom:483.546667pt;}
.yba{bottom:483.946667pt;}
.y201{bottom:484.586667pt;}
.y1b7{bottom:487.797333pt;}
.y16c{bottom:489.620000pt;}
.y192{bottom:490.122667pt;}
.y1a{bottom:490.126667pt;}
.ye6{bottom:490.288000pt;}
.y112{bottom:493.409333pt;}
.y7f{bottom:494.802667pt;}
.y144{bottom:495.821333pt;}
.y47{bottom:498.158667pt;}
.y1b6{bottom:498.424000pt;}
.yb9{bottom:498.558667pt;}
.y200{bottom:499.197333pt;}
.y16b{bottom:504.232000pt;}
.y191{bottom:504.733333pt;}
.ye5{bottom:504.900000pt;}
.y111{bottom:508.021333pt;}
.y19{bottom:508.392000pt;}
.y1b5{bottom:509.050667pt;}
.y7e{bottom:509.414667pt;}
.y143{bottom:510.433333pt;}
.y46{bottom:512.770667pt;}
.yb8{bottom:513.170667pt;}
.y16a{bottom:518.844000pt;}
.y190{bottom:519.345333pt;}
.ye4{bottom:519.512000pt;}
.y1b4{bottom:519.677333pt;}
.y110{bottom:522.633333pt;}
.y7d{bottom:524.026667pt;}
.y142{bottom:525.045333pt;}
.y1c3{bottom:526.694667pt;}
.y45{bottom:527.382667pt;}
.yb7{bottom:527.782667pt;}
.y1b3{bottom:530.305333pt;}
.y169{bottom:533.456000pt;}
.y18f{bottom:533.957333pt;}
.ye3{bottom:534.124000pt;}
.y18{bottom:538.341333pt;}
.y7c{bottom:538.638667pt;}
.y141{bottom:539.657333pt;}
.y1b2{bottom:540.932000pt;}
.y44{bottom:541.993333pt;}
.yb6{bottom:542.394667pt;}
.y10f{bottom:543.036000pt;}
.y168{bottom:548.068000pt;}
.y18e{bottom:548.569333pt;}
.y10d{bottom:551.237333pt;}
.y1b1{bottom:551.558667pt;}
.y17{bottom:552.953333pt;}
.y7b{bottom:553.250667pt;}
.y140{bottom:554.269333pt;}
.y43{bottom:556.605333pt;}
.yb5{bottom:557.006667pt;}
.y10e{bottom:559.330667pt;}
.ye2{bottom:560.857333pt;}
.y1b0{bottom:562.185333pt;}
.y167{bottom:562.680000pt;}
.y18d{bottom:563.181333pt;}
.y16{bottom:567.565333pt;}
.y7a{bottom:567.862667pt;}
.y13f{bottom:568.881333pt;}
.y42{bottom:571.217333pt;}
.yb4{bottom:571.618667pt;}
.y1af{bottom:572.812000pt;}
.ye1{bottom:575.468000pt;}
.y166{bottom:577.292000pt;}
.y18c{bottom:577.793333pt;}
.y10c{bottom:580.449333pt;}
.y15{bottom:582.176000pt;}
.y79{bottom:582.474667pt;}
.y1ae{bottom:583.438667pt;}
.y13e{bottom:583.492000pt;}
.y40{bottom:585.829333pt;}
.yb3{bottom:586.229333pt;}
.ye0{bottom:590.080000pt;}
.y41{bottom:590.169333pt;}
.y165{bottom:591.904000pt;}
.y18b{bottom:592.405333pt;}
.y1ad{bottom:594.065333pt;}
.y10b{bottom:595.061333pt;}
.y14{bottom:596.788000pt;}
.y78{bottom:597.086667pt;}
.y13d{bottom:598.104000pt;}
.y3f{bottom:600.441333pt;}
.yb2{bottom:600.841333pt;}
.ydf{bottom:604.692000pt;}
.y164{bottom:606.514667pt;}
.y18a{bottom:607.017333pt;}
.y10a{bottom:609.673333pt;}
.y13{bottom:611.400000pt;}
.y77{bottom:611.697333pt;}
.y13c{bottom:612.716000pt;}
.y3e{bottom:615.053333pt;}
.y1ac{bottom:615.318667pt;}
.yb1{bottom:615.453333pt;}
.yde{bottom:619.304000pt;}
.y163{bottom:621.126667pt;}
.y189{bottom:621.629333pt;}
.y108{bottom:624.285333pt;}
.y1ab{bottom:625.946667pt;}
.y12{bottom:626.012000pt;}
.y76{bottom:626.309333pt;}
.y109{bottom:628.625333pt;}
.y3d{bottom:629.665333pt;}
.yb0{bottom:630.065333pt;}
.y13b{bottom:631.286667pt;}
.ydd{bottom:633.916000pt;}
.y162{bottom:635.738667pt;}
.y188{bottom:636.241333pt;}
.y1aa{bottom:636.573333pt;}
.y107{bottom:638.897333pt;}
.y11{bottom:640.624000pt;}
.y75{bottom:640.921333pt;}
.y3c{bottom:644.277333pt;}
.yaf{bottom:644.677333pt;}
.y13a{bottom:645.898667pt;}
.y1a9{bottom:647.200000pt;}
.ydc{bottom:648.528000pt;}
.y161{bottom:650.350667pt;}
.y187{bottom:650.852000pt;}
.y106{bottom:653.509333pt;}
.y10{bottom:655.236000pt;}
.y74{bottom:655.533333pt;}
.y1a8{bottom:657.826667pt;}
.y3b{bottom:658.889333pt;}
.yae{bottom:659.289333pt;}
.y139{bottom:660.510667pt;}
.ydb{bottom:663.140000pt;}
.y160{bottom:664.962667pt;}
.y186{bottom:665.464000pt;}
.y105{bottom:668.121333pt;}
.y1a7{bottom:668.453333pt;}
.yf{bottom:669.848000pt;}
.y73{bottom:670.145333pt;}
.y3a{bottom:673.501333pt;}
.yac{bottom:673.901333pt;}
.y138{bottom:675.121333pt;}
.yda{bottom:677.752000pt;}
.yad{bottom:678.241333pt;}
.y1a6{bottom:679.080000pt;}
.y15f{bottom:679.574667pt;}
.y104{bottom:682.733333pt;}
.y185{bottom:683.729333pt;}
.ye{bottom:684.460000pt;}
.y72{bottom:684.757333pt;}
.y39{bottom:688.112000pt;}
.yab{bottom:688.513333pt;}
.y1a5{bottom:689.706667pt;}
.y137{bottom:689.733333pt;}
.yd9{bottom:692.364000pt;}
.y15e{bottom:694.186667pt;}
.y103{bottom:697.345333pt;}
.yd{bottom:699.072000pt;}
.y71{bottom:699.369333pt;}
.y1a4{bottom:700.333333pt;}
.y38{bottom:702.724000pt;}
.yaa{bottom:703.125333pt;}
.y136{bottom:704.345333pt;}
.y15d{bottom:708.798667pt;}
.y1a3{bottom:710.960000pt;}
.y102{bottom:711.957333pt;}
.yc{bottom:713.684000pt;}
.y70{bottom:713.981333pt;}
.y37{bottom:717.336000pt;}
.ya9{bottom:717.737333pt;}
.y135{bottom:718.957333pt;}
.yd8{bottom:719.097333pt;}
.y1a2{bottom:721.588000pt;}
.y101{bottom:726.569333pt;}
.y15c{bottom:727.062667pt;}
.yb{bottom:728.294667pt;}
.y6f{bottom:728.593333pt;}
.y36{bottom:731.948000pt;}
.y1a1{bottom:732.214667pt;}
.ya8{bottom:732.349333pt;}
.yd7{bottom:733.708000pt;}
.y134{bottom:737.528000pt;}
.y100{bottom:741.180000pt;}
.y1a0{bottom:742.841333pt;}
.ya{bottom:742.906667pt;}
.y6e{bottom:743.205333pt;}
.y35{bottom:746.560000pt;}
.ya7{bottom:746.960000pt;}
.yd6{bottom:748.320000pt;}
.y133{bottom:752.140000pt;}
.y19f{bottom:753.468000pt;}
.yff{bottom:755.792000pt;}
.y6d{bottom:757.817333pt;}
.y9{bottom:761.172000pt;}
.yd5{bottom:762.932000pt;}
.y132{bottom:766.750667pt;}
.y19e{bottom:767.748000pt;}
.ya6{bottom:770.404000pt;}
.y6c{bottom:772.428000pt;}
.yd4{bottom:777.544000pt;}
.y131{bottom:781.362667pt;}
.ya5{bottom:785.016000pt;}
.y6b{bottom:787.040000pt;}
.y8{bottom:787.818667pt;}
.yd3{bottom:795.809333pt;}
.y130{bottom:795.974667pt;}
.ya3{bottom:799.628000pt;}
.y6a{bottom:801.652000pt;}
.y7{bottom:803.758667pt;}
.ya4{bottom:803.968000pt;}
.y12f{bottom:810.586667pt;}
.ya1{bottom:814.240000pt;}
.y69{bottom:816.264000pt;}
.ya2{bottom:818.580000pt;}
.y6{bottom:819.698667pt;}
.y12e{bottom:825.198667pt;}
.ya0{bottom:828.852000pt;}
.y68{bottom:830.876000pt;}
.y5{bottom:835.640000pt;}
.y12d{bottom:839.810667pt;}
.y9f{bottom:843.464000pt;}
.y67{bottom:845.488000pt;}
.y4{bottom:851.580000pt;}
.y12c{bottom:854.422667pt;}
.y9e{bottom:858.076000pt;}
.y66{bottom:860.100000pt;}
.y12b{bottom:869.034667pt;}
.y3{bottom:870.176000pt;}
.y9c{bottom:872.688000pt;}
.y9d{bottom:877.026667pt;}
.y65{bottom:883.646667pt;}
.y9b{bottom:887.298667pt;}
.y64{bottom:898.258667pt;}
.y9a{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y63{bottom:912.870667pt;}
.y99{bottom:916.522667pt;}
.y1{bottom:928.500000pt;}
.y62{bottom:931.134667pt;}
.y61{bottom:967.398667pt;}
.h25{height:7.668736pt;}
.h1d{height:8.243891pt;}
.h1c{height:8.627328pt;}
.h1e{height:8.819046pt;}
.h21{height:13.336412pt;}
.h16{height:14.586700pt;}
.h26{height:15.559147pt;}
.h20{height:16.670515pt;}
.h15{height:17.384778pt;}
.h24{height:18.893250pt;}
.h14{height:19.448934pt;}
.h12{height:19.868318pt;}
.h10{height:21.152682pt;}
.h7{height:21.508864pt;}
.h19{height:22.227353pt;}
.h1f{height:22.422067pt;}
.h23{height:22.814489pt;}
.ha{height:25.961133pt;}
.h8{height:27.374490pt;}
.h6{height:28.547772pt;}
.hb{height:32.039936pt;}
.hd{height:34.287514pt;}
.h17{height:34.430976pt;}
.h5{height:35.196109pt;}
.h3{height:39.106526pt;}
.h4{height:41.890944pt;}
.h22{height:43.316378pt;}
.h9{height:45.902438pt;}
.hc{height:45.907772pt;}
.h2{height:46.928145pt;}
.h1b{height:59.819365pt;}
.h1{height:64.087196pt;}
.he{height:64.271420pt;}
.h1a{height:271.112950pt;}
.h18{height:294.117594pt;}
.h13{height:392.910052pt;}
.h11{height:396.265123pt;}
.hf{height:416.394791pt;}
.h0{height:1056.000000pt;}
.wb{width:64.225673pt;}
.w8{width:98.351535pt;}
.w6{width:105.924423pt;}
.w2{width:106.523543pt;}
.w9{width:108.896047pt;}
.wa{width:133.627731pt;}
.w4{width:223.951093pt;}
.w7{width:252.589027pt;}
.w3{width:323.345089pt;}
.w5{width:560.391279pt;}
.w1{width:672.546550pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x62{left:4.888819pt;}
.x51{left:7.668736pt;}
.x52{left:9.585920pt;}
.x5a{left:11.503104pt;}
.x47{left:15.517209pt;}
.x4c{left:16.663962pt;}
.x56{left:17.733953pt;}
.x45{left:18.872281pt;}
.x46{left:20.130433pt;}
.x50{left:21.807969pt;}
.x55{left:23.006209pt;}
.x4a{left:24.147347pt;}
.x48{left:25.582425pt;}
.x4d{left:26.643991pt;}
.x57{left:29.237057pt;}
.x4e{left:35.536243pt;}
.x4f{left:42.246387pt;}
.x1{left:71.730667pt;}
.x43{left:73.060000pt;}
.xc{left:75.345333pt;}
.x1d{left:83.518667pt;}
.xb{left:85.014667pt;}
.x3c{left:90.573333pt;}
.x19{left:101.398667pt;}
.x1f{left:104.557333pt;}
.x3d{left:109.541333pt;}
.x5c{left:111.481258pt;}
.x2{left:139.702667pt;}
.x27{left:145.653333pt;}
.x7{left:151.634667pt;}
.x53{left:154.333318pt;}
.x1a{left:161.174667pt;}
.x20{left:168.792000pt;}
.x21{left:173.349333pt;}
.x14{left:178.948000pt;}
.x1e{left:185.138667pt;}
.x49{left:186.713071pt;}
.x61{left:194.269168pt;}
.x9{left:195.513333pt;}
.x58{left:199.114854pt;}
.xa{left:202.976000pt;}
.x59{left:204.387099pt;}
.x64{left:211.040027pt;}
.x65{left:214.627261pt;}
.x63{left:216.369510pt;}
.x8{left:238.668000pt;}
.x1b{left:242.054667pt;}
.x67{left:274.067454pt;}
.x66{left:277.040589pt;}
.x68{left:280.620332pt;}
.x54{left:284.222539pt;}
.x17{left:287.984000pt;}
.x25{left:292.832000pt;}
.x26{left:301.006667pt;}
.x24{left:302.396000pt;}
.x1c{left:303.886667pt;}
.x22{left:310.240000pt;}
.x18{left:326.832000pt;}
.x6{left:337.198667pt;}
.x23{left:340.128000pt;}
.x69{left:343.041147pt;}
.x5{left:347.945333pt;}
.x15{left:357.413333pt;}
.x4{left:359.560000pt;}
.x3{left:373.197333pt;}
.x5d{left:380.411259pt;}
.x16{left:384.308000pt;}
.x5f{left:389.907311pt;}
.x6b{left:403.522313pt;}
.x5b{left:404.630686pt;}
.x6a{left:406.495448pt;}
.x6c{left:408.584877pt;}
.x37{left:422.589333pt;}
.xd{left:423.641333pt;}
.x41{left:428.264000pt;}
.xe{left:437.224000pt;}
.x3b{left:445.297333pt;}
.x5e{left:449.100369pt;}
.x42{left:452.492000pt;}
.x6f{left:457.345760pt;}
.x32{left:458.641333pt;}
.x6e{left:462.715371pt;}
.x6d{left:465.688507pt;}
.x3e{left:501.316000pt;}
.x4b{left:510.477532pt;}
.x71{left:512.412377pt;}
.x3f{left:513.978667pt;}
.x70{left:515.385513pt;}
.x72{left:517.774501pt;}
.x33{left:527.277333pt;}
.x44{left:530.586315pt;}
.x35{left:533.106667pt;}
.x40{left:534.214667pt;}
.x2a{left:536.589333pt;}
.x39{left:540.317333pt;}
.x36{left:546.162667pt;}
.xf{left:562.796000pt;}
.x10{left:570.840000pt;}
.x3a{left:590.284000pt;}
.x11{left:598.142667pt;}
.x2b{left:602.342667pt;}
.x2c{left:604.920000pt;}
.x12{left:606.609333pt;}
.x38{left:607.772000pt;}
.x2d{left:613.069333pt;}
.x34{left:621.094667pt;}
.x60{left:628.132410pt;}
.x30{left:634.700000pt;}
.x2e{left:636.642667pt;}
.x31{left:647.384000pt;}
.x13{left:699.841333pt;}
.x28{left:706.032000pt;}
.x29{left:714.208000pt;}
.x2f{left:739.096000pt;}
}




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