
    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_dec1dcf295ad450ef57e2669.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ede94fc53fe1e29fb3695ed5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a3c3b0ffc84345c7dab11fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1f3cfd614e218a525b67941.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0f2315376b84d2c1ad08056.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.663000;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_9ddc8b1003db268515f74e53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_eb85efc0a04a8dca4c5a542e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.852000;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_a38253be81b18ad52f065608.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.667000;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_c391a9c7a967b61eae7ec0c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cb1e2fd3b4682d40e10e4afb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689000;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_3ff9b5689d1bcf35f483b020.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{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);}
.m7{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);}
.m15{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);}
.m16{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);}
.m21{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);}
.m1d{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);}
.m29{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);}
.m28{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);}
.m22{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);}
.me{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);}
.m27{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);}
.m24{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);}
.m17{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);}
.m6{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);}
.m20{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);}
.m13{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);}
.m11{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);}
.m19{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);}
.m25{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);}
.mf{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);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m23{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);}
.md{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);}
.m1a{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);}
.m1c{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);}
.m1e{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);}
.m10{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);}
.m2{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);}
.ma{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);}
.m4{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);}
.m1b{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);}
.m12{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);}
.m9{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);}
.m26{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);}
.m18{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);}
.m1f{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);}
.m8{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);}
.mb{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);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v4{vertical-align:-10.944000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:35.862000px;}
.lsc{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.000374px;}
.ls4f{letter-spacing:0.000800px;}
.ls26{letter-spacing:0.001834px;}
.ls34{letter-spacing:0.003389px;}
.ls59{letter-spacing:0.106800px;}
.ls33{letter-spacing:0.717483px;}
.ls2a{letter-spacing:0.745694px;}
.ls29{letter-spacing:0.751694px;}
.ls3c{letter-spacing:2.203200px;}
.ls3a{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.lsb{letter-spacing:11.954850px;}
.ls4{letter-spacing:11.957700px;}
.ls14{letter-spacing:12.612652px;}
.ls49{letter-spacing:12.672427px;}
.ls44{letter-spacing:13.090856px;}
.ls5b{letter-spacing:13.306836px;}
.ls53{letter-spacing:13.325548px;}
.ls50{letter-spacing:13.398464px;}
.ls4e{letter-spacing:13.448400px;}
.ls51{letter-spacing:13.454400px;}
.ls3b{letter-spacing:13.485527px;}
.ls4a{letter-spacing:13.509286px;}
.ls4b{letter-spacing:13.569061px;}
.ls5a{letter-spacing:13.595993px;}
.ls57{letter-spacing:13.623422px;}
.ls58{letter-spacing:13.629992px;}
.ls54{letter-spacing:13.660156px;}
.ls9{letter-spacing:13.688612px;}
.ls52{letter-spacing:13.727589px;}
.ls4d{letter-spacing:13.808164px;}
.ls3f{letter-spacing:13.966745px;}
.ls40{letter-spacing:13.986439px;}
.ls19{letter-spacing:13.987490px;}
.ls3d{letter-spacing:14.057154px;}
.ls41{letter-spacing:14.166817px;}
.ls24{letter-spacing:14.189256px;}
.ls23{letter-spacing:14.465695px;}
.ls15{letter-spacing:14.525471px;}
.ls46{letter-spacing:14.585246px;}
.ls45{letter-spacing:14.645022px;}
.ls48{letter-spacing:14.704798px;}
.ls20{letter-spacing:14.764573px;}
.ls2b{letter-spacing:14.770713px;}
.ls8{letter-spacing:14.824349px;}
.lsd{letter-spacing:14.884124px;}
.ls25{letter-spacing:14.901807px;}
.lsa{letter-spacing:14.943900px;}
.ls1f{letter-spacing:15.003676px;}
.ls38{letter-spacing:15.023965px;}
.ls35{letter-spacing:15.036974px;}
.ls13{letter-spacing:15.063451px;}
.ls2d{letter-spacing:15.091702px;}
.ls1c{letter-spacing:15.123227px;}
.ls12{letter-spacing:15.183002px;}
.ls18{letter-spacing:15.242778px;}
.ls1d{letter-spacing:15.302554px;}
.ls1e{letter-spacing:15.362329px;}
.ls39{letter-spacing:15.494553px;}
.ls4c{letter-spacing:15.541656px;}
.ls27{letter-spacing:15.601432px;}
.ls7{letter-spacing:15.661207px;}
.ls2e{letter-spacing:15.690476px;}
.ls32{letter-spacing:15.691246px;}
.ls3e{letter-spacing:16.010213px;}
.ls1a{letter-spacing:16.139412px;}
.ls17{letter-spacing:16.378514px;}
.ls28{letter-spacing:16.498066px;}
.ls42{letter-spacing:16.557841px;}
.ls56{letter-spacing:16.676400px;}
.ls1b{letter-spacing:16.916495px;}
.ls37{letter-spacing:16.994553px;}
.ls10{letter-spacing:17.095822px;}
.ls16{letter-spacing:17.454475px;}
.ls2c{letter-spacing:17.500233px;}
.ls43{letter-spacing:17.514251px;}
.ls22{letter-spacing:17.574026px;}
.ls30{letter-spacing:17.929200px;}
.ls36{letter-spacing:18.030252px;}
.ls11{letter-spacing:18.291334px;}
.lse{letter-spacing:18.829314px;}
.ls6{letter-spacing:18.948865px;}
.ls21{letter-spacing:19.068416px;}
.ls47{letter-spacing:20.084602px;}
.lsf{letter-spacing:20.921460px;}
.ls31{letter-spacing:32.875200px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.ls2f{letter-spacing:327.486583px;}
.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;}
}
.wsf{word-spacing:-14.943900px;}
.wsbd{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws4d{word-spacing:-3.287658px;}
.ws4e{word-spacing:-2.988780px;}
.wsa0{word-spacing:-2.869229px;}
.ws9{word-spacing:-2.809453px;}
.wsd6{word-spacing:-2.743718px;}
.ws97{word-spacing:-2.689902px;}
.ws38{word-spacing:-2.391024px;}
.ws39{word-spacing:-2.331248px;}
.wsb9{word-spacing:-2.313331px;}
.ws6c{word-spacing:-2.271473px;}
.wsba{word-spacing:-2.259533px;}
.ws42{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws4f{word-spacing:-1.853044px;}
.ws51{word-spacing:-1.793268px;}
.ws50{word-spacing:-1.673717px;}
.ws98{word-spacing:-1.613941px;}
.wsc8{word-spacing:-1.560154px;}
.ws53{word-spacing:-1.554166px;}
.ws99{word-spacing:-1.494390px;}
.ws86{word-spacing:-1.374839px;}
.ws66{word-spacing:-1.315063px;}
.ws21{word-spacing:-1.255288px;}
.ws93{word-spacing:-1.195512px;}
.ws87{word-spacing:-1.135736px;}
.ws8c{word-spacing:-1.075961px;}
.wsb6{word-spacing:-1.022170px;}
.ws3a{word-spacing:-1.016185px;}
.wsaf{word-spacing:-0.968371px;}
.ws22{word-spacing:-0.956410px;}
.ws63{word-spacing:-0.896634px;}
.wsb5{word-spacing:-0.860774px;}
.ws9c{word-spacing:-0.836858px;}
.wsb7{word-spacing:-0.806976px;}
.ws5b{word-spacing:-0.777083px;}
.wsab{word-spacing:-0.753178px;}
.ws8a{word-spacing:-0.717307px;}
.ws12{word-spacing:-0.657532px;}
.ws6b{word-spacing:-0.597756px;}
.ws95{word-spacing:-0.537980px;}
.ws94{word-spacing:-0.478205px;}
.ws82{word-spacing:-0.430387px;}
.ws3b{word-spacing:-0.418429px;}
.wsc7{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.358654px;}
.wsc9{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.wsac{word-spacing:-0.268992px;}
.ws13{word-spacing:-0.239102px;}
.wsa9{word-spacing:-0.215194px;}
.ws14{word-spacing:-0.179327px;}
.wsa2{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.119551px;}
.wsa4{word-spacing:-0.107597px;}
.wsa{word-spacing:-0.059776px;}
.wsa5{word-spacing:-0.053798px;}
.ws85{word-spacing:-0.047821px;}
.ws5e{word-spacing:-0.005014px;}
.ws6{word-spacing:-0.000757px;}
.ws3{word-spacing:0.000000px;}
.ws23{word-spacing:0.001386px;}
.ws5f{word-spacing:0.001450px;}
.wsaa{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.ws7e{word-spacing:0.079631px;}
.wsa6{word-spacing:0.107597px;}
.ws27{word-spacing:0.119551px;}
.ws73{word-spacing:0.160455px;}
.wsa8{word-spacing:0.161395px;}
.ws80{word-spacing:0.163549px;}
.wsb{word-spacing:0.179327px;}
.ws10{word-spacing:0.182797px;}
.wsc2{word-spacing:0.215194px;}
.ws32{word-spacing:0.239102px;}
.wsc3{word-spacing:0.268992px;}
.ws16{word-spacing:0.298878px;}
.wsc0{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws1{word-spacing:0.417541px;}
.ws1c{word-spacing:0.418429px;}
.ws2{word-spacing:0.418621px;}
.ws5{word-spacing:0.422252px;}
.ws4a{word-spacing:0.478205px;}
.ws70{word-spacing:0.537980px;}
.ws65{word-spacing:0.597756px;}
.wsce{word-spacing:0.645581px;}
.ws1f{word-spacing:0.657532px;}
.ws1e{word-spacing:0.717307px;}
.ws81{word-spacing:0.751784px;}
.wsc1{word-spacing:0.806976px;}
.ws64{word-spacing:0.836858px;}
.ws9d{word-spacing:0.956410px;}
.wsb8{word-spacing:0.968371px;}
.ws3f{word-spacing:1.075961px;}
.ws92{word-spacing:1.135736px;}
.wsad{word-spacing:1.183565px;}
.ws45{word-spacing:1.195512px;}
.wsa3{word-spacing:1.237363px;}
.ws7f{word-spacing:1.243425px;}
.ws2f{word-spacing:1.255288px;}
.wscb{word-spacing:1.291162px;}
.ws52{word-spacing:1.315063px;}
.ws37{word-spacing:1.434614px;}
.wscd{word-spacing:1.506355px;}
.ws6f{word-spacing:1.554166px;}
.wsbe{word-spacing:1.560154px;}
.ws84{word-spacing:1.578080px;}
.ws31{word-spacing:1.613941px;}
.wsd8{word-spacing:1.613952px;}
.ws6e{word-spacing:1.673717px;}
.wscf{word-spacing:1.721549px;}
.ws15{word-spacing:1.793268px;}
.ws55{word-spacing:1.912819px;}
.wsc4{word-spacing:1.936742px;}
.ws25{word-spacing:2.032370px;}
.ws57{word-spacing:2.092146px;}
.ws2c{word-spacing:2.151922px;}
.ws91{word-spacing:2.211697px;}
.ws3d{word-spacing:2.271473px;}
.wsd{word-spacing:2.391024px;}
.wse{word-spacing:2.397803px;}
.ws30{word-spacing:2.450800px;}
.ws41{word-spacing:2.510575px;}
.ws72{word-spacing:2.570351px;}
.ws4c{word-spacing:2.630126px;}
.ws88{word-spacing:2.689902px;}
.ws5c{word-spacing:2.733097px;}
.ws2e{word-spacing:2.749678px;}
.ws8{word-spacing:2.869236px;}
.ws46{word-spacing:2.929004px;}
.wsca{word-spacing:3.012710px;}
.ws1a{word-spacing:3.108331px;}
.ws59{word-spacing:3.168107px;}
.wscc{word-spacing:3.215750px;}
.wsd4{word-spacing:3.219379px;}
.wsd5{word-spacing:3.219514px;}
.wsc6{word-spacing:3.224093px;}
.ws3e{word-spacing:3.227882px;}
.wsbf{word-spacing:3.227904px;}
.ws9a{word-spacing:3.287658px;}
.wsc5{word-spacing:3.335501px;}
.wsbb{word-spacing:3.389299px;}
.ws40{word-spacing:3.407209px;}
.wsa7{word-spacing:3.454580px;}
.ws6d{word-spacing:3.466985px;}
.wsda{word-spacing:3.496896px;}
.ws49{word-spacing:3.526760px;}
.ws58{word-spacing:3.586536px;}
.wsae{word-spacing:3.604493px;}
.ws61{word-spacing:3.646312px;}
.ws36{word-spacing:3.765863px;}
.ws2a{word-spacing:3.825638px;}
.wsd9{word-spacing:3.873485px;}
.ws29{word-spacing:3.885414px;}
.ws1d{word-spacing:4.004965px;}
.ws96{word-spacing:4.064741px;}
.ws60{word-spacing:4.124516px;}
.ws71{word-spacing:4.184292px;}
.ws6a{word-spacing:4.244068px;}
.ws77{word-spacing:4.256033px;}
.ws19{word-spacing:4.303872px;}
.ws3c{word-spacing:4.363619px;}
.ws35{word-spacing:4.483170px;}
.ws20{word-spacing:4.542946px;}
.wsd3{word-spacing:4.626662px;}
.ws43{word-spacing:4.662497px;}
.ws8f{word-spacing:4.722272px;}
.wsc{word-spacing:4.782048px;}
.wsd7{word-spacing:4.788058px;}
.ws44{word-spacing:4.901599px;}
.ws9b{word-spacing:4.961375px;}
.ws48{word-spacing:5.080926px;}
.ws8e{word-spacing:5.140702px;}
.ws62{word-spacing:5.200477px;}
.ws9e{word-spacing:5.260253px;}
.ws11{word-spacing:5.320028px;}
.wsb4{word-spacing:5.379840px;}
.ws18{word-spacing:5.559131px;}
.wsb0{word-spacing:5.756429px;}
.ws54{word-spacing:5.798233px;}
.wsd2{word-spacing:5.810227px;}
.wsd1{word-spacing:6.079219px;}
.ws47{word-spacing:6.156887px;}
.wsd0{word-spacing:6.294413px;}
.wsa1{word-spacing:6.336214px;}
.ws2d{word-spacing:6.455765px;}
.ws4b{word-spacing:6.515540px;}
.ws5d{word-spacing:6.578772px;}
.ws5a{word-spacing:6.874194px;}
.ws9f{word-spacing:7.113296px;}
.ws8d{word-spacing:7.292623px;}
.ws89{word-spacing:7.352399px;}
.ws56{word-spacing:7.770828px;}
.wsb3{word-spacing:7.854566px;}
.ws8b{word-spacing:8.368584px;}
.ws90{word-spacing:8.428360px;}
.ws7d{word-spacing:10.699832px;}
.wsb2{word-spacing:13.664794px;}
.wsbc{word-spacing:13.879987px;}
.wsb1{word-spacing:14.049517px;}
.ws17{word-spacing:14.904181px;}
.ws2b{word-spacing:15.720983px;}
.ws7a{word-spacing:117.267317px;}
.ws78{word-spacing:152.939543px;}
.ws7b{word-spacing:169.531001px;}
.ws7c{word-spacing:174.843630px;}
.ws79{word-spacing:176.021024px;}
.ws69{word-spacing:207.540883px;}
.ws68{word-spacing:222.484783px;}
.ws75{word-spacing:223.033242px;}
.ws76{word-spacing:312.447061px;}
.ws74{word-spacing:319.137300px;}
.ws83{word-spacing:532.899474px;}
.ws67{word-spacing:1242.761442px;}
._25{margin-left:-8.057755px;}
._9{margin-left:-6.575316px;}
._2{margin-left:-5.397721px;}
._6{margin-left:-4.303843px;}
._4{margin-left:-3.287148px;}
._1{margin-left:-1.506341px;}
._5{width:2.996354px;}
._3e{width:4.363619px;}
._0{width:10.879128px;}
._3f{width:11.975716px;}
._c{width:13.808164px;}
._f{width:15.798676px;}
._17{width:17.275294px;}
._a{width:18.351109px;}
._e{width:20.084092px;}
._8{width:21.758318px;}
._b{width:23.372260px;}
._13{width:24.388445px;}
._14{width:25.823059px;}
._12{width:27.317449px;}
._3d{width:28.453186px;}
._15{width:29.839975px;}
._d{width:31.633243px;}
._3{width:33.355008px;}
._7{width:35.088277px;}
._4d{width:36.332586px;}
._16{width:38.866091px;}
._4a{width:41.137564px;}
._4c{width:42.392909px;}
._4b{width:44.473046px;}
._33{width:119.108033px;}
._30{width:138.434169px;}
._26{width:151.291923px;}
._31{width:156.611562px;}
._32{width:164.920880px;}
._18{width:166.546772px;}
._34{width:181.359170px;}
._35{width:185.782565px;}
._3b{width:190.580972px;}
._1a{width:192.178554px;}
._38{width:201.503548px;}
._3c{width:205.479928px;}
._1e{width:206.524698px;}
._19{width:207.540883px;}
._27{width:213.117104px;}
._37{width:220.571964px;}
._1c{width:222.484783px;}
._41{width:227.446158px;}
._3a{width:229.657855px;}
._40{width:230.972918px;}
._23{width:237.428683px;}
._29{width:249.264252px;}
._48{width:252.312808px;}
._39{width:255.480914px;}
._2a{width:256.795978px;}
._36{width:263.789723px;}
._47{width:267.196932px;}
._42{width:274.071126px;}
._2b{width:276.641477px;}
._28{width:280.467115px;}
._45{width:282.200608px;}
._46{width:285.249163px;}
._43{width:292.003806px;}
._44{width:297.084732px;}
._2d{width:314.061002px;}
._2f{width:324.880386px;}
._2e{width:328.646249px;}
._2c{width:343.948802px;}
._1b{width:391.769282px;}
._21{width:511.691087px;}
._22{width:669.905149px;}
._24{width:676.420690px;}
._1f{width:787.501672px;}
._20{width:1281.937188px;}
._10{width:1873.989725px;}
._1d{width:1974.320063px;}
._49{width:2493.645725px;}
._11{width:2517.555725px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y121{bottom:3.252746px;}
.y44{bottom:45.921000px;}
.y43{bottom:99.720000px;}
.y17{bottom:100.260000px;}
.y128{bottom:104.547000px;}
.y178{bottom:111.924000px;}
.yc0{bottom:113.299500px;}
.y16{bottom:118.147500px;}
.y9c{bottom:118.365000px;}
.y75{bottom:120.322500px;}
.y152{bottom:120.460500px;}
.y42{bottom:120.610500px;}
.y1df{bottom:120.628500px;}
.y210{bottom:125.112000px;}
.y127{bottom:125.439000px;}
.y177{bottom:132.816000px;}
.ybf{bottom:134.191500px;}
.y15{bottom:136.035000px;}
.y185{bottom:137.298000px;}
.y9b{bottom:139.255500px;}
.y1de{bottom:139.779000px;}
.y74{bottom:141.213000px;}
.y151{bottom:141.352500px;}
.y41{bottom:141.502500px;}
.y20f{bottom:144.262500px;}
.y126{bottom:146.329500px;}
.y1ae{bottom:151.615500px;}
.y176{bottom:153.706500px;}
.y14{bottom:153.922500px;}
.ybe{bottom:155.083500px;}
.y184{bottom:158.190000px;}
.y1dd{bottom:158.929500px;}
.y9a{bottom:160.147500px;}
.y73{bottom:162.105000px;}
.y150{bottom:162.243000px;}
.y40{bottom:162.394500px;}
.y20e{bottom:163.413000px;}
.y125{bottom:167.221500px;}
.y10a{bottom:169.048500px;}
.y1ad{bottom:171.114000px;}
.y13{bottom:171.811500px;}
.y175{bottom:174.598500px;}
.ybd{bottom:175.974000px;}
.y1dc{bottom:178.080000px;}
.y183{bottom:179.082000px;}
.y99{bottom:181.039500px;}
.y20d{bottom:182.563500px;}
.y72{bottom:182.997000px;}
.y14f{bottom:183.135000px;}
.y3f{bottom:183.285000px;}
.y124{bottom:188.113500px;}
.y12{bottom:189.699000px;}
.y109{bottom:189.939000px;}
.y1ac{bottom:190.612500px;}
.y174{bottom:195.490500px;}
.ybc{bottom:196.866000px;}
.y1db{bottom:197.230500px;}
.y182{bottom:199.972500px;}
.y20c{bottom:201.714000px;}
.y98{bottom:201.930000px;}
.y71{bottom:203.887500px;}
.y14e{bottom:204.027000px;}
.y3e{bottom:204.177000px;}
.y11{bottom:207.586500px;}
.y123{bottom:209.004000px;}
.y108{bottom:210.831000px;}
.y173{bottom:216.381000px;}
.yd9{bottom:217.308000px;}
.ybb{bottom:217.758000px;}
.y1ab{bottom:219.078000px;}
.y181{bottom:220.864500px;}
.y97{bottom:222.822000px;}
.y70{bottom:224.779500px;}
.y14d{bottom:224.917500px;}
.y3d{bottom:225.069000px;}
.y10{bottom:225.475500px;}
.y107{bottom:231.723000px;}
.y1da{bottom:235.531500px;}
.y172{bottom:237.273000px;}
.yd8{bottom:238.200000px;}
.y1aa{bottom:238.576500px;}
.yba{bottom:238.648500px;}
.y20b{bottom:240.015000px;}
.y180{bottom:241.756500px;}
.y96{bottom:243.714000px;}
.y122{bottom:244.632000px;}
.y6f{bottom:245.671500px;}
.y14c{bottom:245.809500px;}
.y3c{bottom:245.961000px;}
.yf{bottom:252.330000px;}
.y106{bottom:252.613500px;}
.y1d9{bottom:254.682000px;}
.y1a9{bottom:258.075000px;}
.y171{bottom:258.165000px;}
.yd7{bottom:259.090500px;}
.y20a{bottom:259.165500px;}
.yb9{bottom:259.540500px;}
.y17f{bottom:262.647000px;}
.y95{bottom:264.606000px;}
.y6e{bottom:266.563500px;}
.y3b{bottom:266.851500px;}
.y120{bottom:267.061200px;}
.ye{bottom:270.217500px;}
.y105{bottom:273.505500px;}
.y1d8{bottom:273.832500px;}
.y1a8{bottom:277.573500px;}
.y209{bottom:278.316000px;}
.y170{bottom:279.055500px;}
.yb8{bottom:280.432500px;}
.y17e{bottom:283.539000px;}
.yd6{bottom:284.466000px;}
.y94{bottom:285.496500px;}
.y6d{bottom:287.454000px;}
.y3a{bottom:287.743500px;}
.y14b{bottom:288.006000px;}
.yd{bottom:288.105000px;}
.y1d7{bottom:292.984500px;}
.y104{bottom:294.397500px;}
.y1a7{bottom:297.072000px;}
.y208{bottom:297.466500px;}
.y16f{bottom:299.947500px;}
.yb7{bottom:301.323000px;}
.y14a{bottom:302.202000px;}
.y17d{bottom:304.431000px;}
.yc{bottom:305.994000px;}
.y93{bottom:306.388500px;}
.y6c{bottom:308.346000px;}
.y39{bottom:308.635500px;}
.y1d6{bottom:312.135000px;}
.y103{bottom:315.288000px;}
.y1a6{bottom:316.572000px;}
.y207{bottom:316.617000px;}
.yd5{bottom:319.807500px;}
.y16e{bottom:320.839500px;}
.y149{bottom:321.493500px;}
.yb6{bottom:322.215000px;}
.yb{bottom:323.881500px;}
.y17c{bottom:325.323000px;}
.y92{bottom:327.280500px;}
.y6b{bottom:329.238000px;}
.y38{bottom:329.526000px;}
.y1d5{bottom:331.285500px;}
.y206{bottom:335.767500px;}
.y1a5{bottom:336.070500px;}
.y102{bottom:336.180000px;}
.y148{bottom:339.427500px;}
.yd4{bottom:340.699500px;}
.y16d{bottom:341.730000px;}
.ya{bottom:341.769000px;}
.yb5{bottom:343.107000px;}
.y17b{bottom:346.213500px;}
.y91{bottom:348.171000px;}
.y6a{bottom:350.128500px;}
.y37{bottom:350.418000px;}
.y1d4{bottom:350.436000px;}
.y205{bottom:354.918000px;}
.y1a4{bottom:355.569000px;}
.y101{bottom:357.072000px;}
.y147{bottom:357.360000px;}
.y9{bottom:359.658000px;}
.yd3{bottom:361.591500px;}
.y16c{bottom:362.622000px;}
.yb4{bottom:363.999000px;}
.y17a{bottom:367.105500px;}
.y18b{bottom:369.063000px;}
.y1d3{bottom:369.586500px;}
.y69{bottom:371.020500px;}
.y90{bottom:373.546500px;}
.y204{bottom:374.070000px;}
.y146{bottom:375.292500px;}
.y36{bottom:375.792000px;}
.y8{bottom:377.545500px;}
.y100{bottom:377.964000px;}
.yd2{bottom:382.482000px;}
.y16b{bottom:383.514000px;}
.y1a3{bottom:384.034500px;}
.yb3{bottom:384.889500px;}
.y179{bottom:387.997500px;}
.y1d2{bottom:388.737000px;}
.y18a{bottom:389.955000px;}
.y68{bottom:391.912500px;}
.y203{bottom:393.220500px;}
.y7{bottom:395.433000px;}
.yff{bottom:398.854500px;}
.y145{bottom:400.428000px;}
.yd1{bottom:403.374000px;}
.y1a2{bottom:403.533000px;}
.y16a{bottom:404.406000px;}
.yb2{bottom:405.781500px;}
.y213{bottom:407.640000px;}
.y1d1{bottom:407.887500px;}
.y8f{bottom:408.888000px;}
.y189{bottom:410.845500px;}
.y202{bottom:412.371000px;}
.y67{bottom:412.803000px;}
.y6{bottom:419.299500px;}
.yfe{bottom:419.746500px;}
.y1a1{bottom:423.031500px;}
.yd0{bottom:424.266000px;}
.y169{bottom:425.296500px;}
.y144{bottom:425.562000px;}
.yb1{bottom:426.673500px;}
.y212{bottom:426.790500px;}
.y1d0{bottom:427.038000px;}
.y8e{bottom:429.780000px;}
.y201{bottom:431.521500px;}
.y188{bottom:431.737500px;}
.ya1{bottom:433.695000px;}
.y5{bottom:437.187000px;}
.y66{bottom:438.178500px;}
.yfd{bottom:440.638500px;}
.ycf{bottom:445.156500px;}
.y211{bottom:445.942500px;}
.y168{bottom:446.188500px;}
.yb0{bottom:447.564000px;}
.y8d{bottom:450.672000px;}
.y1a0{bottom:451.497000px;}
.y187{bottom:452.629500px;}
.ya0{bottom:454.587000px;}
.y35{bottom:455.004000px;}
.y4{bottom:455.074500px;}
.y143{bottom:458.227500px;}
.yfc{bottom:461.529000px;}
.y1cf{bottom:465.339000px;}
.yce{bottom:466.048500px;}
.y167{bottom:467.080500px;}
.yaf{bottom:468.456000px;}
.y200{bottom:469.822500px;}
.y19f{bottom:470.995500px;}
.y8c{bottom:471.562500px;}
.y3{bottom:472.963500px;}
.y65{bottom:473.520000px;}
.y9f{bottom:475.477500px;}
.y34{bottom:475.896000px;}
.y142{bottom:477.460500px;}
.yfb{bottom:482.421000px;}
.y1ce{bottom:484.489500px;}
.ycd{bottom:486.940500px;}
.y166{bottom:487.971000px;}
.y1ff{bottom:488.973000px;}
.yae{bottom:489.348000px;}
.y8b{bottom:492.454500px;}
.y64{bottom:494.412000px;}
.y2{bottom:496.828500px;}
.y19e{bottom:499.461000px;}
.y9e{bottom:500.853000px;}
.yfa{bottom:503.313000px;}
.y1cd{bottom:503.640000px;}
.ycc{bottom:507.831000px;}
.y1fe{bottom:508.123500px;}
.y165{bottom:508.863000px;}
.y8a{bottom:513.346500px;}
.y141{bottom:514.564500px;}
.y1{bottom:514.716000px;}
.y33{bottom:514.720500px;}
.yad{bottom:514.722000px;}
.y63{bottom:515.304000px;}
.y19d{bottom:518.959500px;}
.y1cc{bottom:522.790500px;}
.yf9{bottom:524.203500px;}
.y1fd{bottom:527.274000px;}
.ycb{bottom:528.723000px;}
.y164{bottom:529.755000px;}
.y89{bottom:534.237000px;}
.y140{bottom:535.456500px;}
.y32{bottom:535.612500px;}
.y62{bottom:536.194500px;}
.y19c{bottom:538.458000px;}
.y1cb{bottom:541.941000px;}
.yf8{bottom:545.095500px;}
.y1fc{bottom:546.424500px;}
.yca{bottom:549.615000px;}
.yac{bottom:550.065000px;}
.y163{bottom:550.645500px;}
.y88{bottom:555.129000px;}
.y13f{bottom:556.348500px;}
.y31{bottom:556.503000px;}
.y61{bottom:557.086500px;}
.y19b{bottom:557.956500px;}
.y1ca{bottom:561.091500px;}
.y1fb{bottom:565.575000px;}
.yf7{bottom:565.987500px;}
.yc9{bottom:570.507000px;}
.yab{bottom:570.955500px;}
.y162{bottom:571.537500px;}
.y87{bottom:576.021000px;}
.y13e{bottom:577.239000px;}
.y30{bottom:577.395000px;}
.y19a{bottom:577.455000px;}
.y60{bottom:577.978500px;}
.y1c9{bottom:580.242000px;}
.y1fa{bottom:584.725500px;}
.yf6{bottom:586.878000px;}
.yc8{bottom:591.397500px;}
.yaa{bottom:591.847500px;}
.y161{bottom:592.429500px;}
.y86{bottom:596.913000px;}
.y199{bottom:596.953500px;}
.y13d{bottom:598.131000px;}
.y2f{bottom:598.287000px;}
.y5f{bottom:598.870500px;}
.y1c8{bottom:599.392500px;}
.y1f9{bottom:603.876000px;}
.yf5{bottom:607.770000px;}
.yc7{bottom:612.289500px;}
.ya9{bottom:612.739500px;}
.y160{bottom:613.320000px;}
.y198{bottom:616.453500px;}
.y85{bottom:617.803500px;}
.y1c7{bottom:618.543000px;}
.y13c{bottom:619.023000px;}
.y2e{bottom:619.177500px;}
.y5e{bottom:619.761000px;}
.y1f8{bottom:623.026500px;}
.yf4{bottom:628.662000px;}
.ya8{bottom:630.895500px;}
.yc6{bottom:633.181500px;}
.ya7{bottom:633.631500px;}
.y15f{bottom:634.212000px;}
.y197{bottom:635.952000px;}
.y1c6{bottom:637.693500px;}
.y84{bottom:638.695500px;}
.y13b{bottom:639.915000px;}
.y2d{bottom:640.069500px;}
.y5d{bottom:640.653000px;}
.y1f7{bottom:642.177000px;}
.yf3{bottom:649.554000px;}
.yc5{bottom:654.072000px;}
.ya6{bottom:654.522000px;}
.y15e{bottom:655.104000px;}
.y196{bottom:655.450500px;}
.y1c5{bottom:656.844000px;}
.y83{bottom:659.587500px;}
.y13a{bottom:660.805500px;}
.y2c{bottom:660.961500px;}
.y1f6{bottom:661.327500px;}
.y5c{bottom:661.545000px;}
.y11f{bottom:666.876000px;}
.yf2{bottom:670.444500px;}
.y195{bottom:674.949000px;}
.yc4{bottom:674.964000px;}
.ya5{bottom:675.414000px;}
.y15d{bottom:675.996000px;}
.y82{bottom:680.478000px;}
.y11e{bottom:681.072000px;}
.y139{bottom:681.697500px;}
.y2b{bottom:681.852000px;}
.y5b{bottom:682.435500px;}
.yf1{bottom:691.336500px;}
.y194{bottom:694.447500px;}
.y1c4{bottom:695.146500px;}
.yc3{bottom:695.856000px;}
.ya4{bottom:696.306000px;}
.y15c{bottom:696.886500px;}
.y1f5{bottom:699.628500px;}
.y81{bottom:701.370000px;}
.y138{bottom:702.589500px;}
.y2a{bottom:702.744000px;}
.y5a{bottom:703.327500px;}
.y11d{bottom:703.353000px;}
.yf0{bottom:712.228500px;}
.y1c3{bottom:714.297000px;}
.yc2{bottom:716.746500px;}
.y15b{bottom:717.778500px;}
.y1f4{bottom:718.779000px;}
.y11c{bottom:721.285500px;}
.y29{bottom:721.393500px;}
.ya3{bottom:721.680000px;}
.y80{bottom:722.262000px;}
.y193{bottom:722.913000px;}
.y137{bottom:723.480000px;}
.y28{bottom:723.636000px;}
.y59{bottom:724.219500px;}
.yef{bottom:733.119000px;}
.y1c2{bottom:733.447500px;}
.y1f3{bottom:737.929500px;}
.y15a{bottom:738.670500px;}
.y27{bottom:742.285500px;}
.y192{bottom:742.411500px;}
.y7f{bottom:743.152500px;}
.y136{bottom:744.372000px;}
.y26{bottom:744.526500px;}
.y58{bottom:745.110000px;}
.ya2{bottom:746.112000px;}
.y11b{bottom:746.421000px;}
.y1c1{bottom:752.598000px;}
.y1f2{bottom:757.081500px;}
.y159{bottom:759.561000px;}
.y7e{bottom:764.044500px;}
.y11a{bottom:764.353500px;}
.y135{bottom:765.264000px;}
.y25{bottom:765.418500px;}
.y57{bottom:766.002000px;}
.y191{bottom:770.877000px;}
.y1c0{bottom:771.748500px;}
.yee{bottom:775.315500px;}
.y1f1{bottom:776.232000px;}
.y158{bottom:780.453000px;}
.y7d{bottom:784.936500px;}
.y134{bottom:786.154500px;}
.y24{bottom:786.310500px;}
.y56{bottom:786.894000px;}
.y119{bottom:789.489000px;}
.yed{bottom:789.511500px;}
.y190{bottom:790.375500px;}
.y1bf{bottom:790.899000px;}
.y9d{bottom:791.377500px;}
.y1f0{bottom:795.382500px;}
.y157{bottom:801.345000px;}
.y7c{bottom:805.827000px;}
.y133{bottom:807.046500px;}
.y23{bottom:807.202500px;}
.y118{bottom:807.421500px;}
.y55{bottom:807.784500px;}
.y18f{bottom:809.874000px;}
.y1be{bottom:810.049500px;}
.yec{bottom:811.792500px;}
.y1ef{bottom:814.533000px;}
.y156{bottom:822.235500px;}
.y7b{bottom:826.719000px;}
.y132{bottom:827.938500px;}
.y22{bottom:828.093000px;}
.y54{bottom:828.676500px;}
.y1bd{bottom:829.200000px;}
.y18e{bottom:829.372500px;}
.yeb{bottom:829.725000px;}
.y117{bottom:832.800000px;}
.yc1{bottom:833.160000px;}
.y1ee{bottom:833.683500px;}
.y155{bottom:843.127500px;}
.y7a{bottom:847.611000px;}
.yea{bottom:847.657500px;}
.y1bc{bottom:848.350500px;}
.y131{bottom:848.829000px;}
.y18d{bottom:848.872500px;}
.y53{bottom:849.568500px;}
.y1ed{bottom:852.834000px;}
.y21{bottom:857.950500px;}
.y154{bottom:864.019500px;}
.ye9{bottom:865.591500px;}
.y1bb{bottom:867.501000px;}
.y18c{bottom:868.371000px;}
.y79{bottom:868.503000px;}
.y116{bottom:868.698000px;}
.y52{bottom:870.460500px;}
.y1ec{bottom:871.984500px;}
.y186{bottom:874.942500px;}
.ye8{bottom:883.524000px;}
.y153{bottom:884.910000px;}
.y1ba{bottom:886.651500px;}
.y78{bottom:889.393500px;}
.y130{bottom:891.025500px;}
.y1eb{bottom:891.135000px;}
.y51{bottom:891.351000px;}
.y20{bottom:893.296500px;}
.ye7{bottom:901.456500px;}
.y115{bottom:905.802000px;}
.y1f{bottom:909.436500px;}
.y77{bottom:910.285500px;}
.y12f{bottom:913.306500px;}
.y50{bottom:916.726500px;}
.ye6{bottom:919.389000px;}
.y1b9{bottom:924.952500px;}
.y114{bottom:926.694000px;}
.y1ea{bottom:929.436000px;}
.y1e{bottom:929.916000px;}
.y76{bottom:931.177500px;}
.y12e{bottom:931.239000px;}
.ye5{bottom:937.321500px;}
.y1d{bottom:941.715000px;}
.y1b8{bottom:944.103000px;}
.y113{bottom:947.584500px;}
.y1e9{bottom:948.586500px;}
.y4f{bottom:952.068000px;}
.ye4{bottom:955.254000px;}
.y12d{bottom:956.617500px;}
.y1c{bottom:962.194500px;}
.y1b7{bottom:963.253500px;}
.y1e8{bottom:967.737000px;}
.y112{bottom:968.476500px;}
.y4e{bottom:972.960000px;}
.ye3{bottom:973.188000px;}
.y12c{bottom:981.996000px;}
.y1b6{bottom:982.404000px;}
.y1e7{bottom:986.887500px;}
.y111{bottom:989.368500px;}
.ye2{bottom:991.120500px;}
.y4d{bottom:993.852000px;}
.y12b{bottom:999.928500px;}
.y1b5{bottom:1001.554500px;}
.y1b{bottom:1002.196500px;}
.y1e6{bottom:1006.038000px;}
.ye1{bottom:1009.053000px;}
.y110{bottom:1010.260500px;}
.y4c{bottom:1014.742500px;}
.y1b4{bottom:1020.705000px;}
.y1e5{bottom:1025.188500px;}
.y12a{bottom:1025.307000px;}
.ye0{bottom:1026.985500px;}
.y10f{bottom:1031.151000px;}
.y4b{bottom:1035.634500px;}
.y1b3{bottom:1039.855500px;}
.y1a{bottom:1041.021000px;}
.y1e4{bottom:1044.339000px;}
.ydf{bottom:1044.918000px;}
.y10e{bottom:1052.043000px;}
.y4a{bottom:1056.526500px;}
.y1b2{bottom:1059.007500px;}
.y129{bottom:1061.205000px;}
.yde{bottom:1062.850500px;}
.y1e3{bottom:1063.489500px;}
.y19{bottom:1072.359000px;}
.y10d{bottom:1072.935000px;}
.y49{bottom:1077.417000px;}
.y1b1{bottom:1078.158000px;}
.y1e2{bottom:1082.640000px;}
.ydc{bottom:1087.986000px;}
.y10c{bottom:1093.825500px;}
.ydb{bottom:1096.953000px;}
.y1b0{bottom:1097.308500px;}
.y48{bottom:1098.309000px;}
.y1e1{bottom:1101.790500px;}
.y18{bottom:1103.695500px;}
.ydd{bottom:1105.918500px;}
.y10b{bottom:1114.717500px;}
.y1af{bottom:1116.459000px;}
.y47{bottom:1119.201000px;}
.y1e0{bottom:1120.941000px;}
.y46{bottom:1140.091500px;}
.yda{bottom:1141.573500px;}
.y45{bottom:1200.196500px;}
.h6{height:32.565965px;}
.ha{height:33.299897px;}
.h2{height:37.993262px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hc{height:48.848947px;}
.h16{height:49.117939px;}
.h13{height:49.923965px;}
.hb{height:51.861658px;}
.h10{height:53.569601px;}
.h9{height:54.276245px;}
.h5{height:54.547601px;}
.h15{height:54.575123px;}
.h12{height:55.599258px;}
.hf{height:62.946077px;}
.h14{height:62.952077px;}
.h4{height:77.792486px;}
.hd{height:79.079759px;}
.he{height:90.138245px;}
.h11{height:377.016300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:574.950000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x13{left:62.541000px;}
.x1c{left:72.772500px;}
.x1f{left:76.918500px;}
.x18{left:82.569000px;}
.x2a{left:85.323000px;}
.x17{left:87.223500px;}
.x1d{left:88.464000px;}
.x19{left:90.967500px;}
.x1b{left:93.471000px;}
.x1a{left:94.621500px;}
.x1e{left:106.993500px;}
.xb{left:247.513500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x8{left:267.799500px;}
.x4{left:269.914500px;}
.xa{left:281.479500px;}
.xe{left:283.720500px;}
.x9{left:287.391000px;}
.x26{left:288.580500px;}
.x24{left:290.305500px;}
.x27{left:293.092500px;}
.x25{left:294.789000px;}
.xf{left:348.903000px;}
.x23{left:392.980500px;}
.x22{left:433.860000px;}
.x20{left:478.140000px;}
.x21{left:493.183500px;}
.x15{left:552.123000px;}
.x16{left:571.408500px;}
.x6{left:587.035500px;}
.x7{left:607.345500px;}
.xc{left:689.851500px;}
.x10{left:696.213000px;}
.x14{left:712.090500px;}
.xd{left:718.447500px;}
.x28{left:764.260500px;}
.x12{left:774.250500px;}
.x11{left:783.987000px;}
.x29{left:837.108000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v4{vertical-align:-9.728000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:31.877333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.000332pt;}
.ls4f{letter-spacing:0.000711pt;}
.ls26{letter-spacing:0.001630pt;}
.ls34{letter-spacing:0.003012pt;}
.ls59{letter-spacing:0.094933pt;}
.ls33{letter-spacing:0.637762pt;}
.ls2a{letter-spacing:0.662839pt;}
.ls29{letter-spacing:0.668173pt;}
.ls3c{letter-spacing:1.958400pt;}
.ls3a{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.lsb{letter-spacing:10.626533pt;}
.ls4{letter-spacing:10.629067pt;}
.ls14{letter-spacing:11.211246pt;}
.ls49{letter-spacing:11.264380pt;}
.ls44{letter-spacing:11.636317pt;}
.ls5b{letter-spacing:11.828298pt;}
.ls53{letter-spacing:11.844931pt;}
.ls50{letter-spacing:11.909745pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls51{letter-spacing:11.959467pt;}
.ls3b{letter-spacing:11.987135pt;}
.ls4a{letter-spacing:12.008254pt;}
.ls4b{letter-spacing:12.061388pt;}
.ls5a{letter-spacing:12.085327pt;}
.ls57{letter-spacing:12.109709pt;}
.ls58{letter-spacing:12.115548pt;}
.ls54{letter-spacing:12.142361pt;}
.ls9{letter-spacing:12.167655pt;}
.ls52{letter-spacing:12.202302pt;}
.ls4d{letter-spacing:12.273923pt;}
.ls3f{letter-spacing:12.414885pt;}
.ls40{letter-spacing:12.432391pt;}
.ls19{letter-spacing:12.433325pt;}
.ls3d{letter-spacing:12.495248pt;}
.ls41{letter-spacing:12.592726pt;}
.ls24{letter-spacing:12.612672pt;}
.ls23{letter-spacing:12.858396pt;}
.ls15{letter-spacing:12.911530pt;}
.ls46{letter-spacing:12.964663pt;}
.ls45{letter-spacing:13.017797pt;}
.ls48{letter-spacing:13.070931pt;}
.ls20{letter-spacing:13.124065pt;}
.ls2b{letter-spacing:13.129523pt;}
.ls8{letter-spacing:13.177199pt;}
.lsd{letter-spacing:13.230333pt;}
.ls25{letter-spacing:13.246051pt;}
.lsa{letter-spacing:13.283467pt;}
.ls1f{letter-spacing:13.336601pt;}
.ls38{letter-spacing:13.354635pt;}
.ls35{letter-spacing:13.366199pt;}
.ls13{letter-spacing:13.389734pt;}
.ls2d{letter-spacing:13.414847pt;}
.ls1c{letter-spacing:13.442868pt;}
.ls12{letter-spacing:13.496002pt;}
.ls18{letter-spacing:13.549136pt;}
.ls1d{letter-spacing:13.602270pt;}
.ls1e{letter-spacing:13.655404pt;}
.ls39{letter-spacing:13.772936pt;}
.ls4c{letter-spacing:13.814805pt;}
.ls27{letter-spacing:13.867939pt;}
.ls7{letter-spacing:13.921073pt;}
.ls2e{letter-spacing:13.947090pt;}
.ls32{letter-spacing:13.947774pt;}
.ls3e{letter-spacing:14.231300pt;}
.ls1a{letter-spacing:14.346144pt;}
.ls17{letter-spacing:14.558679pt;}
.ls28{letter-spacing:14.664947pt;}
.ls42{letter-spacing:14.718081pt;}
.ls56{letter-spacing:14.823467pt;}
.ls1b{letter-spacing:15.036884pt;}
.ls37{letter-spacing:15.106269pt;}
.ls10{letter-spacing:15.196286pt;}
.ls16{letter-spacing:15.515089pt;}
.ls2c{letter-spacing:15.555762pt;}
.ls43{letter-spacing:15.568223pt;}
.ls22{letter-spacing:15.621357pt;}
.ls30{letter-spacing:15.937067pt;}
.ls36{letter-spacing:16.026891pt;}
.ls11{letter-spacing:16.258963pt;}
.lse{letter-spacing:16.737168pt;}
.ls6{letter-spacing:16.843436pt;}
.ls21{letter-spacing:16.949703pt;}
.ls47{letter-spacing:17.852979pt;}
.lsf{letter-spacing:18.596853pt;}
.ls31{letter-spacing:29.222400pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ls2f{letter-spacing:291.099185pt;}
.wsf{word-spacing:-13.283467pt;}
.wsbd{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws4d{word-spacing:-2.922363pt;}
.ws4e{word-spacing:-2.656693pt;}
.wsa0{word-spacing:-2.550426pt;}
.ws9{word-spacing:-2.497292pt;}
.wsd6{word-spacing:-2.438861pt;}
.ws97{word-spacing:-2.391024pt;}
.ws38{word-spacing:-2.125355pt;}
.ws39{word-spacing:-2.072221pt;}
.wsb9{word-spacing:-2.056294pt;}
.ws6c{word-spacing:-2.019087pt;}
.wsba{word-spacing:-2.008474pt;}
.ws42{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws4f{word-spacing:-1.647150pt;}
.ws51{word-spacing:-1.594016pt;}
.ws50{word-spacing:-1.487748pt;}
.ws98{word-spacing:-1.434614pt;}
.wsc8{word-spacing:-1.386803pt;}
.ws53{word-spacing:-1.381481pt;}
.ws99{word-spacing:-1.328347pt;}
.ws86{word-spacing:-1.222079pt;}
.ws66{word-spacing:-1.168945pt;}
.ws21{word-spacing:-1.115811pt;}
.ws93{word-spacing:-1.062677pt;}
.ws87{word-spacing:-1.009543pt;}
.ws8c{word-spacing:-0.956410pt;}
.wsb6{word-spacing:-0.908595pt;}
.ws3a{word-spacing:-0.903276pt;}
.wsaf{word-spacing:-0.860774pt;}
.ws22{word-spacing:-0.850142pt;}
.ws63{word-spacing:-0.797008pt;}
.wsb5{word-spacing:-0.765133pt;}
.ws9c{word-spacing:-0.743874pt;}
.wsb7{word-spacing:-0.717312pt;}
.ws5b{word-spacing:-0.690740pt;}
.wsab{word-spacing:-0.669491pt;}
.ws8a{word-spacing:-0.637606pt;}
.ws12{word-spacing:-0.584473pt;}
.ws6b{word-spacing:-0.531339pt;}
.ws95{word-spacing:-0.478205pt;}
.ws94{word-spacing:-0.425071pt;}
.ws82{word-spacing:-0.382566pt;}
.ws3b{word-spacing:-0.371937pt;}
.wsc7{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.318803pt;}
.wsc9{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.wsac{word-spacing:-0.239104pt;}
.ws13{word-spacing:-0.212535pt;}
.wsa9{word-spacing:-0.191283pt;}
.ws14{word-spacing:-0.159402pt;}
.wsa2{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.106268pt;}
.wsa4{word-spacing:-0.095642pt;}
.wsa{word-spacing:-0.053134pt;}
.wsa5{word-spacing:-0.047821pt;}
.ws85{word-spacing:-0.042507pt;}
.ws5e{word-spacing:-0.004457pt;}
.ws6{word-spacing:-0.000673pt;}
.ws3{word-spacing:0.000000pt;}
.ws23{word-spacing:0.001232pt;}
.ws5f{word-spacing:0.001289pt;}
.wsaa{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.ws7e{word-spacing:0.070783pt;}
.wsa6{word-spacing:0.095642pt;}
.ws27{word-spacing:0.106268pt;}
.ws73{word-spacing:0.142627pt;}
.wsa8{word-spacing:0.143462pt;}
.ws80{word-spacing:0.145377pt;}
.wsb{word-spacing:0.159402pt;}
.ws10{word-spacing:0.162486pt;}
.wsc2{word-spacing:0.191283pt;}
.ws32{word-spacing:0.212535pt;}
.wsc3{word-spacing:0.239104pt;}
.ws16{word-spacing:0.265669pt;}
.wsc0{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws1{word-spacing:0.371148pt;}
.ws1c{word-spacing:0.371937pt;}
.ws2{word-spacing:0.372108pt;}
.ws5{word-spacing:0.375335pt;}
.ws4a{word-spacing:0.425071pt;}
.ws70{word-spacing:0.478205pt;}
.ws65{word-spacing:0.531339pt;}
.wsce{word-spacing:0.573850pt;}
.ws1f{word-spacing:0.584473pt;}
.ws1e{word-spacing:0.637606pt;}
.ws81{word-spacing:0.668253pt;}
.wsc1{word-spacing:0.717312pt;}
.ws64{word-spacing:0.743874pt;}
.ws9d{word-spacing:0.850142pt;}
.wsb8{word-spacing:0.860774pt;}
.ws3f{word-spacing:0.956410pt;}
.ws92{word-spacing:1.009543pt;}
.wsad{word-spacing:1.052058pt;}
.ws45{word-spacing:1.062677pt;}
.wsa3{word-spacing:1.099878pt;}
.ws7f{word-spacing:1.105267pt;}
.ws2f{word-spacing:1.115811pt;}
.wscb{word-spacing:1.147699pt;}
.ws52{word-spacing:1.168945pt;}
.ws37{word-spacing:1.275213pt;}
.wscd{word-spacing:1.338982pt;}
.ws6f{word-spacing:1.381481pt;}
.wsbe{word-spacing:1.386803pt;}
.ws84{word-spacing:1.402738pt;}
.ws31{word-spacing:1.434614pt;}
.wsd8{word-spacing:1.434624pt;}
.ws6e{word-spacing:1.487748pt;}
.wscf{word-spacing:1.530266pt;}
.ws15{word-spacing:1.594016pt;}
.ws55{word-spacing:1.700284pt;}
.wsc4{word-spacing:1.721549pt;}
.ws25{word-spacing:1.806551pt;}
.ws57{word-spacing:1.859685pt;}
.ws2c{word-spacing:1.912819pt;}
.ws91{word-spacing:1.965953pt;}
.ws3d{word-spacing:2.019087pt;}
.wsd{word-spacing:2.125355pt;}
.wse{word-spacing:2.131380pt;}
.ws30{word-spacing:2.178489pt;}
.ws41{word-spacing:2.231622pt;}
.ws72{word-spacing:2.284756pt;}
.ws4c{word-spacing:2.337890pt;}
.ws88{word-spacing:2.391024pt;}
.ws5c{word-spacing:2.429419pt;}
.ws2e{word-spacing:2.444158pt;}
.ws8{word-spacing:2.550432pt;}
.ws46{word-spacing:2.603559pt;}
.wsca{word-spacing:2.677965pt;}
.ws1a{word-spacing:2.762961pt;}
.ws59{word-spacing:2.816095pt;}
.wscc{word-spacing:2.858445pt;}
.wsd4{word-spacing:2.861670pt;}
.wsd5{word-spacing:2.861790pt;}
.wsc6{word-spacing:2.865860pt;}
.ws3e{word-spacing:2.869229pt;}
.wsbf{word-spacing:2.869248pt;}
.ws9a{word-spacing:2.922363pt;}
.wsc5{word-spacing:2.964890pt;}
.wsbb{word-spacing:3.012710pt;}
.ws40{word-spacing:3.028630pt;}
.wsa7{word-spacing:3.070738pt;}
.ws6d{word-spacing:3.081764pt;}
.wsda{word-spacing:3.108352pt;}
.ws49{word-spacing:3.134898pt;}
.ws58{word-spacing:3.188032pt;}
.wsae{word-spacing:3.203994pt;}
.ws61{word-spacing:3.241166pt;}
.ws36{word-spacing:3.347434pt;}
.ws2a{word-spacing:3.400567pt;}
.wsd9{word-spacing:3.443098pt;}
.ws29{word-spacing:3.453701pt;}
.ws1d{word-spacing:3.559969pt;}
.ws96{word-spacing:3.613103pt;}
.ws60{word-spacing:3.666237pt;}
.ws71{word-spacing:3.719371pt;}
.ws6a{word-spacing:3.772505pt;}
.ws77{word-spacing:3.783141pt;}
.ws19{word-spacing:3.825664pt;}
.ws3c{word-spacing:3.878772pt;}
.ws35{word-spacing:3.985040pt;}
.ws20{word-spacing:4.038174pt;}
.wsd3{word-spacing:4.112589pt;}
.ws43{word-spacing:4.144442pt;}
.ws8f{word-spacing:4.197575pt;}
.wsc{word-spacing:4.250709pt;}
.wsd7{word-spacing:4.256051pt;}
.ws44{word-spacing:4.356977pt;}
.ws9b{word-spacing:4.410111pt;}
.ws48{word-spacing:4.516379pt;}
.ws8e{word-spacing:4.569513pt;}
.ws62{word-spacing:4.622646pt;}
.ws9e{word-spacing:4.675780pt;}
.ws11{word-spacing:4.728914pt;}
.wsb4{word-spacing:4.782080pt;}
.ws18{word-spacing:4.941450pt;}
.wsb0{word-spacing:5.116826pt;}
.ws54{word-spacing:5.153985pt;}
.wsd2{word-spacing:5.164646pt;}
.wsd1{word-spacing:5.403750pt;}
.ws47{word-spacing:5.472788pt;}
.wsd0{word-spacing:5.595034pt;}
.wsa1{word-spacing:5.632190pt;}
.ws2d{word-spacing:5.738458pt;}
.ws4b{word-spacing:5.791591pt;}
.ws5d{word-spacing:5.847797pt;}
.ws5a{word-spacing:6.110395pt;}
.ws9f{word-spacing:6.322930pt;}
.ws8d{word-spacing:6.482332pt;}
.ws89{word-spacing:6.535466pt;}
.ws56{word-spacing:6.907403pt;}
.wsb3{word-spacing:6.981837pt;}
.ws8b{word-spacing:7.438741pt;}
.ws90{word-spacing:7.491875pt;}
.ws7d{word-spacing:9.510962pt;}
.wsb2{word-spacing:12.146483pt;}
.wsbc{word-spacing:12.337766pt;}
.wsb1{word-spacing:12.488460pt;}
.ws17{word-spacing:13.248161pt;}
.ws2b{word-spacing:13.974207pt;}
.ws7a{word-spacing:104.237615pt;}
.ws78{word-spacing:135.946260pt;}
.ws7b{word-spacing:150.694223pt;}
.ws7c{word-spacing:155.416560pt;}
.ws79{word-spacing:156.463133pt;}
.ws69{word-spacing:184.480785pt;}
.ws68{word-spacing:197.764252pt;}
.ws75{word-spacing:198.251771pt;}
.ws76{word-spacing:277.730721pt;}
.ws74{word-spacing:283.677600pt;}
.ws83{word-spacing:473.688421pt;}
.ws67{word-spacing:1104.676837pt;}
._25{margin-left:-7.162449pt;}
._9{margin-left:-5.844725pt;}
._2{margin-left:-4.797974pt;}
._6{margin-left:-3.825638pt;}
._4{margin-left:-2.921909pt;}
._1{margin-left:-1.338970pt;}
._5{width:2.663426pt;}
._3e{width:3.878772pt;}
._0{width:9.670336pt;}
._3f{width:10.645081pt;}
._c{width:12.273923pt;}
._f{width:14.043267pt;}
._17{width:15.355817pt;}
._a{width:16.312097pt;}
._e{width:17.852526pt;}
._8{width:19.340727pt;}
._b{width:20.775342pt;}
._13{width:21.678618pt;}
._14{width:22.953830pt;}
._12{width:24.282177pt;}
._3d{width:25.291721pt;}
._15{width:26.524422pt;}
._d{width:28.118438pt;}
._3{width:29.648896pt;}
._7{width:31.189580pt;}
._4d{width:32.295632pt;}
._16{width:34.547636pt;}
._4a{width:36.566723pt;}
._4c{width:37.682586pt;}
._4b{width:39.531597pt;}
._33{width:105.873807pt;}
._30{width:123.052595pt;}
._26{width:134.481710pt;}
._31{width:139.210277pt;}
._32{width:146.596338pt;}
._18{width:148.041575pt;}
._34{width:161.208151pt;}
._35{width:165.140058pt;}
._3b{width:169.405309pt;}
._1a{width:170.825381pt;}
._38{width:179.114265pt;}
._3c{width:182.648825pt;}
._1e{width:183.577509pt;}
._19{width:184.480785pt;}
._27{width:189.437426pt;}
._37{width:196.063968pt;}
._1c{width:197.764252pt;}
._41{width:202.174363pt;}
._3a{width:204.140316pt;}
._40{width:205.309261pt;}
._23{width:211.047718pt;}
._29{width:221.568224pt;}
._48{width:224.278051pt;}
._39{width:227.094146pt;}
._2a{width:228.263091pt;}
._36{width:234.479754pt;}
._47{width:237.508384pt;}
._42{width:243.618779pt;}
._2b{width:245.903535pt;}
._28{width:249.304102pt;}
._45{width:250.844985pt;}
._46{width:253.554812pt;}
._43{width:259.558939pt;}
._44{width:264.075317pt;}
._2d{width:279.165335pt;}
._2f{width:288.782565pt;}
._2e{width:292.129999pt;}
._2c{width:305.732269pt;}
._1b{width:348.239362pt;}
._21{width:454.836522pt;}
._22{width:595.471244pt;}
._24{width:601.262835pt;}
._1f{width:700.001486pt;}
._20{width:1139.499723pt;}
._10{width:1665.768645pt;}
._1d{width:1754.951167pt;}
._49{width:2216.573978pt;}
._11{width:2237.827311pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:2.891330pt;}
.y44{bottom:40.818667pt;}
.y43{bottom:88.640000pt;}
.y17{bottom:89.120000pt;}
.y128{bottom:92.930667pt;}
.y178{bottom:99.488000pt;}
.yc0{bottom:100.710667pt;}
.y16{bottom:105.020000pt;}
.y9c{bottom:105.213333pt;}
.y75{bottom:106.953333pt;}
.y152{bottom:107.076000pt;}
.y42{bottom:107.209333pt;}
.y1df{bottom:107.225333pt;}
.y210{bottom:111.210667pt;}
.y127{bottom:111.501333pt;}
.y177{bottom:118.058667pt;}
.ybf{bottom:119.281333pt;}
.y15{bottom:120.920000pt;}
.y185{bottom:122.042667pt;}
.y9b{bottom:123.782667pt;}
.y1de{bottom:124.248000pt;}
.y74{bottom:125.522667pt;}
.y151{bottom:125.646667pt;}
.y41{bottom:125.780000pt;}
.y20f{bottom:128.233333pt;}
.y126{bottom:130.070667pt;}
.y1ae{bottom:134.769333pt;}
.y176{bottom:136.628000pt;}
.y14{bottom:136.820000pt;}
.ybe{bottom:137.852000pt;}
.y184{bottom:140.613333pt;}
.y1dd{bottom:141.270667pt;}
.y9a{bottom:142.353333pt;}
.y73{bottom:144.093333pt;}
.y150{bottom:144.216000pt;}
.y40{bottom:144.350667pt;}
.y20e{bottom:145.256000pt;}
.y125{bottom:148.641333pt;}
.y10a{bottom:150.265333pt;}
.y1ad{bottom:152.101333pt;}
.y13{bottom:152.721333pt;}
.y175{bottom:155.198667pt;}
.ybd{bottom:156.421333pt;}
.y1dc{bottom:158.293333pt;}
.y183{bottom:159.184000pt;}
.y99{bottom:160.924000pt;}
.y20d{bottom:162.278667pt;}
.y72{bottom:162.664000pt;}
.y14f{bottom:162.786667pt;}
.y3f{bottom:162.920000pt;}
.y124{bottom:167.212000pt;}
.y12{bottom:168.621333pt;}
.y109{bottom:168.834667pt;}
.y1ac{bottom:169.433333pt;}
.y174{bottom:173.769333pt;}
.ybc{bottom:174.992000pt;}
.y1db{bottom:175.316000pt;}
.y182{bottom:177.753333pt;}
.y20c{bottom:179.301333pt;}
.y98{bottom:179.493333pt;}
.y71{bottom:181.233333pt;}
.y14e{bottom:181.357333pt;}
.y3e{bottom:181.490667pt;}
.y11{bottom:184.521333pt;}
.y123{bottom:185.781333pt;}
.y108{bottom:187.405333pt;}
.y173{bottom:192.338667pt;}
.yd9{bottom:193.162667pt;}
.ybb{bottom:193.562667pt;}
.y1ab{bottom:194.736000pt;}
.y181{bottom:196.324000pt;}
.y97{bottom:198.064000pt;}
.y70{bottom:199.804000pt;}
.y14d{bottom:199.926667pt;}
.y3d{bottom:200.061333pt;}
.y10{bottom:200.422667pt;}
.y107{bottom:205.976000pt;}
.y1da{bottom:209.361333pt;}
.y172{bottom:210.909333pt;}
.yd8{bottom:211.733333pt;}
.y1aa{bottom:212.068000pt;}
.yba{bottom:212.132000pt;}
.y20b{bottom:213.346667pt;}
.y180{bottom:214.894667pt;}
.y96{bottom:216.634667pt;}
.y122{bottom:217.450667pt;}
.y6f{bottom:218.374667pt;}
.y14c{bottom:218.497333pt;}
.y3c{bottom:218.632000pt;}
.yf{bottom:224.293333pt;}
.y106{bottom:224.545333pt;}
.y1d9{bottom:226.384000pt;}
.y1a9{bottom:229.400000pt;}
.y171{bottom:229.480000pt;}
.yd7{bottom:230.302667pt;}
.y20a{bottom:230.369333pt;}
.yb9{bottom:230.702667pt;}
.y17f{bottom:233.464000pt;}
.y95{bottom:235.205333pt;}
.y6e{bottom:236.945333pt;}
.y3b{bottom:237.201333pt;}
.y120{bottom:237.387733pt;}
.ye{bottom:240.193333pt;}
.y105{bottom:243.116000pt;}
.y1d8{bottom:243.406667pt;}
.y1a8{bottom:246.732000pt;}
.y209{bottom:247.392000pt;}
.y170{bottom:248.049333pt;}
.yb8{bottom:249.273333pt;}
.y17e{bottom:252.034667pt;}
.yd6{bottom:252.858667pt;}
.y94{bottom:253.774667pt;}
.y6d{bottom:255.514667pt;}
.y3a{bottom:255.772000pt;}
.y14b{bottom:256.005333pt;}
.yd{bottom:256.093333pt;}
.y1d7{bottom:260.430667pt;}
.y104{bottom:261.686667pt;}
.y1a7{bottom:264.064000pt;}
.y208{bottom:264.414667pt;}
.y16f{bottom:266.620000pt;}
.yb7{bottom:267.842667pt;}
.y14a{bottom:268.624000pt;}
.y17d{bottom:270.605333pt;}
.yc{bottom:271.994667pt;}
.y93{bottom:272.345333pt;}
.y6c{bottom:274.085333pt;}
.y39{bottom:274.342667pt;}
.y1d6{bottom:277.453333pt;}
.y103{bottom:280.256000pt;}
.y1a6{bottom:281.397333pt;}
.y207{bottom:281.437333pt;}
.yd5{bottom:284.273333pt;}
.y16e{bottom:285.190667pt;}
.y149{bottom:285.772000pt;}
.yb6{bottom:286.413333pt;}
.yb{bottom:287.894667pt;}
.y17c{bottom:289.176000pt;}
.y92{bottom:290.916000pt;}
.y6b{bottom:292.656000pt;}
.y38{bottom:292.912000pt;}
.y1d5{bottom:294.476000pt;}
.y206{bottom:298.460000pt;}
.y1a5{bottom:298.729333pt;}
.y102{bottom:298.826667pt;}
.y148{bottom:301.713333pt;}
.yd4{bottom:302.844000pt;}
.y16d{bottom:303.760000pt;}
.ya{bottom:303.794667pt;}
.yb5{bottom:304.984000pt;}
.y17b{bottom:307.745333pt;}
.y91{bottom:309.485333pt;}
.y6a{bottom:311.225333pt;}
.y37{bottom:311.482667pt;}
.y1d4{bottom:311.498667pt;}
.y205{bottom:315.482667pt;}
.y1a4{bottom:316.061333pt;}
.y101{bottom:317.397333pt;}
.y147{bottom:317.653333pt;}
.y9{bottom:319.696000pt;}
.yd3{bottom:321.414667pt;}
.y16c{bottom:322.330667pt;}
.yb4{bottom:323.554667pt;}
.y17a{bottom:326.316000pt;}
.y18b{bottom:328.056000pt;}
.y1d3{bottom:328.521333pt;}
.y69{bottom:329.796000pt;}
.y90{bottom:332.041333pt;}
.y204{bottom:332.506667pt;}
.y146{bottom:333.593333pt;}
.y36{bottom:334.037333pt;}
.y8{bottom:335.596000pt;}
.y100{bottom:335.968000pt;}
.yd2{bottom:339.984000pt;}
.y16b{bottom:340.901333pt;}
.y1a3{bottom:341.364000pt;}
.yb3{bottom:342.124000pt;}
.y179{bottom:344.886667pt;}
.y1d2{bottom:345.544000pt;}
.y18a{bottom:346.626667pt;}
.y68{bottom:348.366667pt;}
.y203{bottom:349.529333pt;}
.y7{bottom:351.496000pt;}
.yff{bottom:354.537333pt;}
.y145{bottom:355.936000pt;}
.yd1{bottom:358.554667pt;}
.y1a2{bottom:358.696000pt;}
.y16a{bottom:359.472000pt;}
.yb2{bottom:360.694667pt;}
.y213{bottom:362.346667pt;}
.y1d1{bottom:362.566667pt;}
.y8f{bottom:363.456000pt;}
.y189{bottom:365.196000pt;}
.y202{bottom:366.552000pt;}
.y67{bottom:366.936000pt;}
.y6{bottom:372.710667pt;}
.yfe{bottom:373.108000pt;}
.y1a1{bottom:376.028000pt;}
.yd0{bottom:377.125333pt;}
.y169{bottom:378.041333pt;}
.y144{bottom:378.277333pt;}
.yb1{bottom:379.265333pt;}
.y212{bottom:379.369333pt;}
.y1d0{bottom:379.589333pt;}
.y8e{bottom:382.026667pt;}
.y201{bottom:383.574667pt;}
.y188{bottom:383.766667pt;}
.ya1{bottom:385.506667pt;}
.y5{bottom:388.610667pt;}
.y66{bottom:389.492000pt;}
.yfd{bottom:391.678667pt;}
.ycf{bottom:395.694667pt;}
.y211{bottom:396.393333pt;}
.y168{bottom:396.612000pt;}
.yb0{bottom:397.834667pt;}
.y8d{bottom:400.597333pt;}
.y1a0{bottom:401.330667pt;}
.y187{bottom:402.337333pt;}
.ya0{bottom:404.077333pt;}
.y35{bottom:404.448000pt;}
.y4{bottom:404.510667pt;}
.y143{bottom:407.313333pt;}
.yfc{bottom:410.248000pt;}
.y1cf{bottom:413.634667pt;}
.yce{bottom:414.265333pt;}
.y167{bottom:415.182667pt;}
.yaf{bottom:416.405333pt;}
.y200{bottom:417.620000pt;}
.y19f{bottom:418.662667pt;}
.y8c{bottom:419.166667pt;}
.y3{bottom:420.412000pt;}
.y65{bottom:420.906667pt;}
.y9f{bottom:422.646667pt;}
.y34{bottom:423.018667pt;}
.y142{bottom:424.409333pt;}
.yfb{bottom:428.818667pt;}
.y1ce{bottom:430.657333pt;}
.ycd{bottom:432.836000pt;}
.y166{bottom:433.752000pt;}
.y1ff{bottom:434.642667pt;}
.yae{bottom:434.976000pt;}
.y8b{bottom:437.737333pt;}
.y64{bottom:439.477333pt;}
.y2{bottom:441.625333pt;}
.y19e{bottom:443.965333pt;}
.y9e{bottom:445.202667pt;}
.yfa{bottom:447.389333pt;}
.y1cd{bottom:447.680000pt;}
.ycc{bottom:451.405333pt;}
.y1fe{bottom:451.665333pt;}
.y165{bottom:452.322667pt;}
.y8a{bottom:456.308000pt;}
.y141{bottom:457.390667pt;}
.y1{bottom:457.525333pt;}
.y33{bottom:457.529333pt;}
.yad{bottom:457.530667pt;}
.y63{bottom:458.048000pt;}
.y19d{bottom:461.297333pt;}
.y1cc{bottom:464.702667pt;}
.yf9{bottom:465.958667pt;}
.y1fd{bottom:468.688000pt;}
.ycb{bottom:469.976000pt;}
.y164{bottom:470.893333pt;}
.y89{bottom:474.877333pt;}
.y140{bottom:475.961333pt;}
.y32{bottom:476.100000pt;}
.y62{bottom:476.617333pt;}
.y19c{bottom:478.629333pt;}
.y1cb{bottom:481.725333pt;}
.yf8{bottom:484.529333pt;}
.y1fc{bottom:485.710667pt;}
.yca{bottom:488.546667pt;}
.yac{bottom:488.946667pt;}
.y163{bottom:489.462667pt;}
.y88{bottom:493.448000pt;}
.y13f{bottom:494.532000pt;}
.y31{bottom:494.669333pt;}
.y61{bottom:495.188000pt;}
.y19b{bottom:495.961333pt;}
.y1ca{bottom:498.748000pt;}
.y1fb{bottom:502.733333pt;}
.yf7{bottom:503.100000pt;}
.yc9{bottom:507.117333pt;}
.yab{bottom:507.516000pt;}
.y162{bottom:508.033333pt;}
.y87{bottom:512.018667pt;}
.y13e{bottom:513.101333pt;}
.y30{bottom:513.240000pt;}
.y19a{bottom:513.293333pt;}
.y60{bottom:513.758667pt;}
.y1c9{bottom:515.770667pt;}
.y1fa{bottom:519.756000pt;}
.yf6{bottom:521.669333pt;}
.yc8{bottom:525.686667pt;}
.yaa{bottom:526.086667pt;}
.y161{bottom:526.604000pt;}
.y86{bottom:530.589333pt;}
.y199{bottom:530.625333pt;}
.y13d{bottom:531.672000pt;}
.y2f{bottom:531.810667pt;}
.y5f{bottom:532.329333pt;}
.y1c8{bottom:532.793333pt;}
.y1f9{bottom:536.778667pt;}
.yf5{bottom:540.240000pt;}
.yc7{bottom:544.257333pt;}
.ya9{bottom:544.657333pt;}
.y160{bottom:545.173333pt;}
.y198{bottom:547.958667pt;}
.y85{bottom:549.158667pt;}
.y1c7{bottom:549.816000pt;}
.y13c{bottom:550.242667pt;}
.y2e{bottom:550.380000pt;}
.y5e{bottom:550.898667pt;}
.y1f8{bottom:553.801333pt;}
.yf4{bottom:558.810667pt;}
.ya8{bottom:560.796000pt;}
.yc6{bottom:562.828000pt;}
.ya7{bottom:563.228000pt;}
.y15f{bottom:563.744000pt;}
.y197{bottom:565.290667pt;}
.y1c6{bottom:566.838667pt;}
.y84{bottom:567.729333pt;}
.y13b{bottom:568.813333pt;}
.y2d{bottom:568.950667pt;}
.y5d{bottom:569.469333pt;}
.y1f7{bottom:570.824000pt;}
.yf3{bottom:577.381333pt;}
.yc5{bottom:581.397333pt;}
.ya6{bottom:581.797333pt;}
.y15e{bottom:582.314667pt;}
.y196{bottom:582.622667pt;}
.y1c5{bottom:583.861333pt;}
.y83{bottom:586.300000pt;}
.y13a{bottom:587.382667pt;}
.y2c{bottom:587.521333pt;}
.y1f6{bottom:587.846667pt;}
.y5c{bottom:588.040000pt;}
.y11f{bottom:592.778667pt;}
.yf2{bottom:595.950667pt;}
.y195{bottom:599.954667pt;}
.yc4{bottom:599.968000pt;}
.ya5{bottom:600.368000pt;}
.y15d{bottom:600.885333pt;}
.y82{bottom:604.869333pt;}
.y11e{bottom:605.397333pt;}
.y139{bottom:605.953333pt;}
.y2b{bottom:606.090667pt;}
.y5b{bottom:606.609333pt;}
.yf1{bottom:614.521333pt;}
.y194{bottom:617.286667pt;}
.y1c4{bottom:617.908000pt;}
.yc3{bottom:618.538667pt;}
.ya4{bottom:618.938667pt;}
.y15c{bottom:619.454667pt;}
.y1f5{bottom:621.892000pt;}
.y81{bottom:623.440000pt;}
.y138{bottom:624.524000pt;}
.y2a{bottom:624.661333pt;}
.y5a{bottom:625.180000pt;}
.y11d{bottom:625.202667pt;}
.yf0{bottom:633.092000pt;}
.y1c3{bottom:634.930667pt;}
.yc2{bottom:637.108000pt;}
.y15b{bottom:638.025333pt;}
.y1f4{bottom:638.914667pt;}
.y11c{bottom:641.142667pt;}
.y29{bottom:641.238667pt;}
.ya3{bottom:641.493333pt;}
.y80{bottom:642.010667pt;}
.y193{bottom:642.589333pt;}
.y137{bottom:643.093333pt;}
.y28{bottom:643.232000pt;}
.y59{bottom:643.750667pt;}
.yef{bottom:651.661333pt;}
.y1c2{bottom:651.953333pt;}
.y1f3{bottom:655.937333pt;}
.y15a{bottom:656.596000pt;}
.y27{bottom:659.809333pt;}
.y192{bottom:659.921333pt;}
.y7f{bottom:660.580000pt;}
.y136{bottom:661.664000pt;}
.y26{bottom:661.801333pt;}
.y58{bottom:662.320000pt;}
.ya2{bottom:663.210667pt;}
.y11b{bottom:663.485333pt;}
.y1c1{bottom:668.976000pt;}
.y1f2{bottom:672.961333pt;}
.y159{bottom:675.165333pt;}
.y7e{bottom:679.150667pt;}
.y11a{bottom:679.425333pt;}
.y135{bottom:680.234667pt;}
.y25{bottom:680.372000pt;}
.y57{bottom:680.890667pt;}
.y191{bottom:685.224000pt;}
.y1c0{bottom:685.998667pt;}
.yee{bottom:689.169333pt;}
.y1f1{bottom:689.984000pt;}
.y158{bottom:693.736000pt;}
.y7d{bottom:697.721333pt;}
.y134{bottom:698.804000pt;}
.y24{bottom:698.942667pt;}
.y56{bottom:699.461333pt;}
.y119{bottom:701.768000pt;}
.yed{bottom:701.788000pt;}
.y190{bottom:702.556000pt;}
.y1bf{bottom:703.021333pt;}
.y9d{bottom:703.446667pt;}
.y1f0{bottom:707.006667pt;}
.y157{bottom:712.306667pt;}
.y7c{bottom:716.290667pt;}
.y133{bottom:717.374667pt;}
.y23{bottom:717.513333pt;}
.y118{bottom:717.708000pt;}
.y55{bottom:718.030667pt;}
.y18f{bottom:719.888000pt;}
.y1be{bottom:720.044000pt;}
.yec{bottom:721.593333pt;}
.y1ef{bottom:724.029333pt;}
.y156{bottom:730.876000pt;}
.y7b{bottom:734.861333pt;}
.y132{bottom:735.945333pt;}
.y22{bottom:736.082667pt;}
.y54{bottom:736.601333pt;}
.y1bd{bottom:737.066667pt;}
.y18e{bottom:737.220000pt;}
.yeb{bottom:737.533333pt;}
.y117{bottom:740.266667pt;}
.yc1{bottom:740.586667pt;}
.y1ee{bottom:741.052000pt;}
.y155{bottom:749.446667pt;}
.y7a{bottom:753.432000pt;}
.yea{bottom:753.473333pt;}
.y1bc{bottom:754.089333pt;}
.y131{bottom:754.514667pt;}
.y18d{bottom:754.553333pt;}
.y53{bottom:755.172000pt;}
.y1ed{bottom:758.074667pt;}
.y21{bottom:762.622667pt;}
.y154{bottom:768.017333pt;}
.ye9{bottom:769.414667pt;}
.y1bb{bottom:771.112000pt;}
.y18c{bottom:771.885333pt;}
.y79{bottom:772.002667pt;}
.y116{bottom:772.176000pt;}
.y52{bottom:773.742667pt;}
.y1ec{bottom:775.097333pt;}
.y186{bottom:777.726667pt;}
.ye8{bottom:785.354667pt;}
.y153{bottom:786.586667pt;}
.y1ba{bottom:788.134667pt;}
.y78{bottom:790.572000pt;}
.y130{bottom:792.022667pt;}
.y1eb{bottom:792.120000pt;}
.y51{bottom:792.312000pt;}
.y20{bottom:794.041333pt;}
.ye7{bottom:801.294667pt;}
.y115{bottom:805.157333pt;}
.y1f{bottom:808.388000pt;}
.y77{bottom:809.142667pt;}
.y12f{bottom:811.828000pt;}
.y50{bottom:814.868000pt;}
.ye6{bottom:817.234667pt;}
.y1b9{bottom:822.180000pt;}
.y114{bottom:823.728000pt;}
.y1ea{bottom:826.165333pt;}
.y1e{bottom:826.592000pt;}
.y76{bottom:827.713333pt;}
.y12e{bottom:827.768000pt;}
.ye5{bottom:833.174667pt;}
.y1d{bottom:837.080000pt;}
.y1b8{bottom:839.202667pt;}
.y113{bottom:842.297333pt;}
.y1e9{bottom:843.188000pt;}
.y4f{bottom:846.282667pt;}
.ye4{bottom:849.114667pt;}
.y12d{bottom:850.326667pt;}
.y1c{bottom:855.284000pt;}
.y1b7{bottom:856.225333pt;}
.y1e8{bottom:860.210667pt;}
.y112{bottom:860.868000pt;}
.y4e{bottom:864.853333pt;}
.ye3{bottom:865.056000pt;}
.y12c{bottom:872.885333pt;}
.y1b6{bottom:873.248000pt;}
.y1e7{bottom:877.233333pt;}
.y111{bottom:879.438667pt;}
.ye2{bottom:880.996000pt;}
.y4d{bottom:883.424000pt;}
.y12b{bottom:888.825333pt;}
.y1b5{bottom:890.270667pt;}
.y1b{bottom:890.841333pt;}
.y1e6{bottom:894.256000pt;}
.ye1{bottom:896.936000pt;}
.y110{bottom:898.009333pt;}
.y4c{bottom:901.993333pt;}
.y1b4{bottom:907.293333pt;}
.y1e5{bottom:911.278667pt;}
.y12a{bottom:911.384000pt;}
.ye0{bottom:912.876000pt;}
.y10f{bottom:916.578667pt;}
.y4b{bottom:920.564000pt;}
.y1b3{bottom:924.316000pt;}
.y1a{bottom:925.352000pt;}
.y1e4{bottom:928.301333pt;}
.ydf{bottom:928.816000pt;}
.y10e{bottom:935.149333pt;}
.y4a{bottom:939.134667pt;}
.y1b2{bottom:941.340000pt;}
.y129{bottom:943.293333pt;}
.yde{bottom:944.756000pt;}
.y1e3{bottom:945.324000pt;}
.y19{bottom:953.208000pt;}
.y10d{bottom:953.720000pt;}
.y49{bottom:957.704000pt;}
.y1b1{bottom:958.362667pt;}
.y1e2{bottom:962.346667pt;}
.ydc{bottom:967.098667pt;}
.y10c{bottom:972.289333pt;}
.ydb{bottom:975.069333pt;}
.y1b0{bottom:975.385333pt;}
.y48{bottom:976.274667pt;}
.y1e1{bottom:979.369333pt;}
.y18{bottom:981.062667pt;}
.ydd{bottom:983.038667pt;}
.y10b{bottom:990.860000pt;}
.y1af{bottom:992.408000pt;}
.y47{bottom:994.845333pt;}
.y1e0{bottom:996.392000pt;}
.y46{bottom:1013.414667pt;}
.yda{bottom:1014.732000pt;}
.y45{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.ha{height:29.599908pt;}
.h2{height:33.771789pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hc{height:43.421286pt;}
.h16{height:43.660390pt;}
.h13{height:44.376858pt;}
.hb{height:46.099251pt;}
.h10{height:47.617423pt;}
.h9{height:48.245551pt;}
.h5{height:48.486756pt;}
.h15{height:48.511220pt;}
.h12{height:49.421563pt;}
.hf{height:55.952068pt;}
.h14{height:55.957402pt;}
.h4{height:69.148877pt;}
.hd{height:70.293119pt;}
.he{height:80.122884pt;}
.h11{height:335.125600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:511.066667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x13{left:55.592000pt;}
.x1c{left:64.686667pt;}
.x1f{left:68.372000pt;}
.x18{left:73.394667pt;}
.x2a{left:75.842667pt;}
.x17{left:77.532000pt;}
.x1d{left:78.634667pt;}
.x19{left:80.860000pt;}
.x1b{left:83.085333pt;}
.x1a{left:84.108000pt;}
.x1e{left:95.105333pt;}
.xb{left:220.012000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x8{left:238.044000pt;}
.x4{left:239.924000pt;}
.xa{left:250.204000pt;}
.xe{left:252.196000pt;}
.x9{left:255.458667pt;}
.x26{left:256.516000pt;}
.x24{left:258.049333pt;}
.x27{left:260.526667pt;}
.x25{left:262.034667pt;}
.xf{left:310.136000pt;}
.x23{left:349.316000pt;}
.x22{left:385.653333pt;}
.x20{left:425.013333pt;}
.x21{left:438.385333pt;}
.x15{left:490.776000pt;}
.x16{left:507.918667pt;}
.x6{left:521.809333pt;}
.x7{left:539.862667pt;}
.xc{left:613.201333pt;}
.x10{left:618.856000pt;}
.x14{left:632.969333pt;}
.xd{left:638.620000pt;}
.x28{left:679.342667pt;}
.x12{left:688.222667pt;}
.x11{left:696.877333pt;}
.x29{left:744.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; }
  