
    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_5ab492c43c351d1056bba7ca.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_befc40173d3418cca720eaca.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_1f6fec360cfd6ef553e51e4c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.603000;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_4077efa58e7a7e01c28d7bb3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_981a4b3a72f35898a039e87a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_3dde5924825d43a5ea355321.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_226c0482db485126510bb264.woff')format("woff");}.ff7{font-family:ff7;line-height:1.025000;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_9e267a7bceceb8cfffa8db1b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.782000;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_1e6d53ffda2122f288a4aba7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_0ca74397053f0ccb6f0ffed6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_5f0079e109bf2468f5819014.woff')format("woff");}.ffb{font-family:ffb;line-height:0.872000;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_4b444caae1ebbaf802c71bf2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.440000;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_829fa8538da41df870b410c0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.655000;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_d683b1bcee56d93934782ded.woff')format("woff");}.ffe{font-family:ffe;line-height:0.901000;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_3c82b77c3fc9745900cb8374.woff')format("woff");}.fff{font-family:fff;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b1ae55232dc22b28972aa511.woff')format("woff");}.ff10{font-family:ff10;line-height:0.634000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fcbedfe30549cd5d7b92fb6b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.926000;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;}
.m27{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.ma{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);}
.m9{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);}
.m12{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);}
.m1e{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);}
.m19{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);}
.m4{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);}
.mf{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);}
.mc{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);}
.m5{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);}
.m2{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);}
.m25{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);}
.m21{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);}
.m1d{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);}
.m24{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);}
.m11{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);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{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.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);}
.m26{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);}
.m1f{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);}
.m22{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);}
.m6{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);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m8{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);}
.m17{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);}
.m7{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);}
.m16{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);}
.m1c{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);}
.m1b{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);}
.me{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);}
.m15{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);}
.ve{vertical-align:-25.344000px;}
.vd{vertical-align:-14.946000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:6.594000px;}
.v6{vertical-align:14.778000px;}
.v8{vertical-align:16.662000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:24.684000px;}
.vb{vertical-align:37.254000px;}
.v9{vertical-align:38.550000px;}
.v7{vertical-align:40.350000px;}
.v4{vertical-align:48.420000px;}
.v3{vertical-align:56.790000px;}
.va{vertical-align:97.788000px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000062px;}
.ls22{letter-spacing:0.000564px;}
.ls4e{letter-spacing:0.000993px;}
.ls38{letter-spacing:0.001120px;}
.ls2f{letter-spacing:0.001202px;}
.ls2{letter-spacing:0.001559px;}
.ls50{letter-spacing:0.001866px;}
.ls26{letter-spacing:0.002023px;}
.ls59{letter-spacing:0.002245px;}
.ls12{letter-spacing:0.002338px;}
.ls2c{letter-spacing:0.002481px;}
.ls28{letter-spacing:0.003030px;}
.ls2e{letter-spacing:0.003269px;}
.ls30{letter-spacing:0.003413px;}
.ls19{letter-spacing:0.004200px;}
.ls5f{letter-spacing:0.004648px;}
.ls66{letter-spacing:0.005110px;}
.ls70{letter-spacing:0.587498px;}
.ls37{letter-spacing:1.496282px;}
.ls44{letter-spacing:1.606648px;}
.ls36{letter-spacing:1.612648px;}
.ls72{letter-spacing:2.075425px;}
.ls71{letter-spacing:2.087498px;}
.ls74{letter-spacing:2.092140px;}
.ls6f{letter-spacing:2.095751px;}
.ls34{letter-spacing:2.144023px;}
.ls29{letter-spacing:2.148767px;}
.ls5c{letter-spacing:2.420908px;}
.ls41{letter-spacing:2.984525px;}
.ls51{letter-spacing:2.985319px;}
.ls4d{letter-spacing:2.986982px;}
.ls1d{letter-spacing:2.988615px;}
.ls32{letter-spacing:2.989202px;}
.ls35{letter-spacing:2.989409px;}
.ls1c{letter-spacing:2.990525px;}
.ls16{letter-spacing:3.441652px;}
.ls23{letter-spacing:3.447652px;}
.ls4f{letter-spacing:4.115110px;}
.ls58{letter-spacing:4.275333px;}
.ls61{letter-spacing:4.281333px;}
.ls75{letter-spacing:5.021190px;}
.ls5a{letter-spacing:5.408908px;}
.ls2a{letter-spacing:6.277140px;}
.ls40{letter-spacing:6.943202px;}
.ls53{letter-spacing:7.174893px;}
.ls49{letter-spacing:7.427134px;}
.ls25{letter-spacing:7.474454px;}
.ls67{letter-spacing:7.739996px;}
.ls52{letter-spacing:9.660538px;}
.ls5b{letter-spacing:9.848908px;}
.ls76{letter-spacing:9.956338px;}
.ls6b{letter-spacing:9.962338px;}
.ls5{letter-spacing:12.313774px;}
.lse{letter-spacing:12.612652px;}
.ls31{letter-spacing:12.955202px;}
.ls4{letter-spacing:13.270183px;}
.ls3f{letter-spacing:13.278538px;}
.ls13{letter-spacing:13.282893px;}
.ls47{letter-spacing:13.284538px;}
.ls6d{letter-spacing:13.286481px;}
.ls8{letter-spacing:13.569061px;}
.ls4a{letter-spacing:13.928023px;}
.ls6c{letter-spacing:14.107042px;}
.lsa{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.764573px;}
.ls3a{letter-spacing:14.824349px;}
.ls10{letter-spacing:14.884124px;}
.ls46{letter-spacing:14.890648px;}
.ls3c{letter-spacing:14.942725px;}
.ls62{letter-spacing:14.943269px;}
.ls9{letter-spacing:14.943900px;}
.ls68{letter-spacing:14.944200px;}
.lsb{letter-spacing:15.063451px;}
.lsf{letter-spacing:15.123227px;}
.lsc{letter-spacing:15.242778px;}
.ls54{letter-spacing:15.422023px;}
.ls1{letter-spacing:15.661207px;}
.ls3e{letter-spacing:16.273202px;}
.ls6e{letter-spacing:16.600893px;}
.ls1a{letter-spacing:16.601183px;}
.ls18{letter-spacing:16.601607px;}
.ls1b{letter-spacing:16.602538px;}
.ls63{letter-spacing:16.604400px;}
.ls57{letter-spacing:16.608538px;}
.lsd{letter-spacing:16.737168px;}
.ls48{letter-spacing:17.134893px;}
.ls5e{letter-spacing:17.948207px;}
.ls56{letter-spacing:18.208648px;}
.ls64{letter-spacing:18.692908px;}
.ls17{letter-spacing:18.750767px;}
.ls24{letter-spacing:18.752023px;}
.ls11{letter-spacing:19.478446px;}
.ls1e{letter-spacing:19.591140px;}
.ls27{letter-spacing:19.591202px;}
.ls45{letter-spacing:19.594982px;}
.ls5d{letter-spacing:20.024408px;}
.ls3{letter-spacing:21.519216px;}
.ls60{letter-spacing:22.010908px;}
.ls65{letter-spacing:24.347996px;}
.ls43{letter-spacing:25.604481px;}
.ls14{letter-spacing:25.754338px;}
.ls15{letter-spacing:25.758538px;}
.ls3d{letter-spacing:26.623690px;}
.ls69{letter-spacing:26.659918px;}
.ls20{letter-spacing:28.223607px;}
.ls3b{letter-spacing:29.026648px;}
.ls1f{letter-spacing:29.836648px;}
.ls4c{letter-spacing:30.453319px;}
.ls6a{letter-spacing:34.808685px;}
.ls0{letter-spacing:39.852600px;}
.ls2b{letter-spacing:66.805140px;}
.ls42{letter-spacing:265.400338px;}
.ls2d{letter-spacing:305.997507px;}
.ls39{letter-spacing:307.460338px;}
.ls73{letter-spacing:307.936348px;}
.ls55{letter-spacing:314.468338px;}
.ls33{letter-spacing:366.332338px;}
.ls4b{letter-spacing:431.378338px;}
.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;}
}
.ws53{word-spacing:-59.775600px;}
.ws58{word-spacing:-47.324343px;}
.ws52{word-spacing:-43.185409px;}
.ws81{word-spacing:-43.157983px;}
.ws54{word-spacing:-38.937826px;}
.ws67{word-spacing:-32.359200px;}
.ws59{word-spacing:-31.633157px;}
.ws60{word-spacing:-31.095989px;}
.ws4f{word-spacing:-29.015076px;}
.ws51{word-spacing:-28.955301px;}
.ws8a{word-spacing:-24.986201px;}
.wsaf{word-spacing:-17.932800px;}
.ws6e{word-spacing:-17.383387px;}
.ws27{word-spacing:-14.943900px;}
.ws1f{word-spacing:-13.449600px;}
.wsa3{word-spacing:-12.552840px;}
.ws9e{word-spacing:-10.460700px;}
.wsa2{word-spacing:-10.444075px;}
.ws82{word-spacing:-9.620192px;}
.ws9c{word-spacing:-8.368650px;}
.wsa6{word-spacing:-5.054665px;}
.ws1{word-spacing:-4.981766px;}
.wsc6{word-spacing:-3.277346px;}
.wsc7{word-spacing:-3.227882px;}
.ws93{word-spacing:-3.168107px;}
.ws4{word-spacing:-2.809453px;}
.ws10{word-spacing:-2.749678px;}
.ws34{word-spacing:-2.630126px;}
.wsc5{word-spacing:-2.570351px;}
.wsad{word-spacing:-2.510575px;}
.ws42{word-spacing:-2.391024px;}
.ws71{word-spacing:-2.331248px;}
.wsa5{word-spacing:-2.092140px;}
.ws2{word-spacing:-1.972595px;}
.ws5c{word-spacing:-1.936742px;}
.wsca{word-spacing:-1.793268px;}
.ws32{word-spacing:-1.733492px;}
.ws77{word-spacing:-1.673717px;}
.ws8f{word-spacing:-1.554166px;}
.ws4d{word-spacing:-1.434614px;}
.ws3a{word-spacing:-1.374839px;}
.ws30{word-spacing:-1.315063px;}
.ws16{word-spacing:-1.135736px;}
.ws92{word-spacing:-1.095993px;}
.ws74{word-spacing:-1.075961px;}
.wsc1{word-spacing:-1.017163px;}
.ws36{word-spacing:-1.016185px;}
.wsbf{word-spacing:-0.956410px;}
.ws75{word-spacing:-0.896634px;}
.ws21{word-spacing:-0.860774px;}
.wsf{word-spacing:-0.836858px;}
.ws31{word-spacing:-0.777083px;}
.ws8c{word-spacing:-0.597756px;}
.wsce{word-spacing:-0.537980px;}
.ws49{word-spacing:-0.418429px;}
.ws11{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.298878px;}
.ws24{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.179327px;}
.wsbe{word-spacing:-0.151680px;}
.wse{word-spacing:-0.119551px;}
.ws9{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws84{word-spacing:-0.003516px;}
.ws80{word-spacing:-0.002975px;}
.ws7b{word-spacing:-0.002366px;}
.ws83{word-spacing:-0.000346px;}
.ws56{word-spacing:-0.000258px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.001049px;}
.ws98{word-spacing:0.002476px;}
.ws3c{word-spacing:0.026606px;}
.wsd{word-spacing:0.059776px;}
.wsc4{word-spacing:0.064617px;}
.ws1e{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.ws3{word-spacing:0.179327px;}
.ws57{word-spacing:0.216657px;}
.ws76{word-spacing:0.238873px;}
.ws18{word-spacing:0.239102px;}
.ws9b{word-spacing:0.268992px;}
.ws8{word-spacing:0.298878px;}
.ws15{word-spacing:0.358654px;}
.ws19{word-spacing:0.418429px;}
.ws65{word-spacing:0.478205px;}
.ws25{word-spacing:0.597756px;}
.ws1d{word-spacing:0.657532px;}
.ws8e{word-spacing:0.717307px;}
.ws44{word-spacing:0.777083px;}
.wscd{word-spacing:0.822589px;}
.wsb9{word-spacing:0.836858px;}
.ws22{word-spacing:0.896634px;}
.ws3d{word-spacing:0.956410px;}
.ws29{word-spacing:1.075961px;}
.ws91{word-spacing:1.135736px;}
.ws4e{word-spacing:1.195512px;}
.ws64{word-spacing:1.255288px;}
.ws38{word-spacing:1.434614px;}
.ws40{word-spacing:1.494390px;}
.ws45{word-spacing:1.554166px;}
.ws69{word-spacing:1.611156px;}
.ws9a{word-spacing:1.613941px;}
.ws1b{word-spacing:1.733492px;}
.ws41{word-spacing:1.793268px;}
.ws73{word-spacing:1.912819px;}
.ws62{word-spacing:2.032370px;}
.wsa1{word-spacing:2.090455px;}
.wsa4{word-spacing:2.092140px;}
.ws7a{word-spacing:2.092146px;}
.ws7{word-spacing:2.211697px;}
.ws3e{word-spacing:2.331248px;}
.ws70{word-spacing:2.450800px;}
.ws4a{word-spacing:2.510575px;}
.wsb6{word-spacing:2.570351px;}
.wsba{word-spacing:2.630126px;}
.ws4c{word-spacing:2.689902px;}
.wsa{word-spacing:2.749678px;}
.ws8d{word-spacing:2.809453px;}
.ws97{word-spacing:2.869229px;}
.ws1a{word-spacing:2.929004px;}
.wsc2{word-spacing:2.967197px;}
.ws28{word-spacing:2.988780px;}
.ws43{word-spacing:3.048556px;}
.ws2b{word-spacing:3.108331px;}
.wsc8{word-spacing:3.227882px;}
.ws39{word-spacing:3.287658px;}
.ws7c{word-spacing:3.291078px;}
.ws7d{word-spacing:3.583158px;}
.ws3b{word-spacing:3.646312px;}
.ws90{word-spacing:3.706087px;}
.ws35{word-spacing:3.765863px;}
.ws72{word-spacing:4.004965px;}
.ws47{word-spacing:4.124516px;}
.ws9f{word-spacing:4.135180px;}
.wsa0{word-spacing:4.152098px;}
.wsb7{word-spacing:4.184292px;}
.ws2d{word-spacing:4.363619px;}
.ws6d{word-spacing:4.423394px;}
.ws6b{word-spacing:4.483170px;}
.ws50{word-spacing:4.542946px;}
.ws46{word-spacing:4.722272px;}
.wscb{word-spacing:4.782048px;}
.wsaa{word-spacing:5.021150px;}
.ws6{word-spacing:5.080926px;}
.ws96{word-spacing:5.140702px;}
.ws1c{word-spacing:5.260253px;}
.ws66{word-spacing:5.439580px;}
.wscc{word-spacing:5.499355px;}
.ws63{word-spacing:5.618906px;}
.ws33{word-spacing:5.798233px;}
.ws55{word-spacing:5.858009px;}
.ws2a{word-spacing:5.917784px;}
.ws37{word-spacing:6.156887px;}
.ws23{word-spacing:6.216662px;}
.ws61{word-spacing:6.276438px;}
.wsab{word-spacing:6.395989px;}
.wsb5{word-spacing:6.515540px;}
.wsbd{word-spacing:6.571234px;}
.ws2e{word-spacing:6.575316px;}
.ws94{word-spacing:6.694867px;}
.ws95{word-spacing:6.705305px;}
.ws85{word-spacing:6.754643px;}
.wsbb{word-spacing:6.774911px;}
.ws4b{word-spacing:6.814418px;}
.wsae{word-spacing:6.933970px;}
.ws79{word-spacing:6.993745px;}
.wsac{word-spacing:7.232848px;}
.ws26{word-spacing:7.292623px;}
.ws68{word-spacing:7.412174px;}
.ws14{word-spacing:7.711052px;}
.ws2c{word-spacing:7.950155px;}
.ws2f{word-spacing:8.009930px;}
.ws3f{word-spacing:8.069706px;}
.ws5{word-spacing:8.249033px;}
.ws48{word-spacing:8.368584px;}
.wsc{word-spacing:8.428360px;}
.wsbc{word-spacing:8.547911px;}
.ws5e{word-spacing:8.846789px;}
.wsc0{word-spacing:8.966340px;}
.ws13{word-spacing:9.265218px;}
.ws8b{word-spacing:9.324994px;}
.wsb8{word-spacing:9.857608px;}
.wsc9{word-spacing:10.341179px;}
.ws5f{word-spacing:10.759608px;}
.wsb1{word-spacing:10.819384px;}
.ws89{word-spacing:11.656242px;}
.ws88{word-spacing:11.716018px;}
.wsb4{word-spacing:11.835569px;}
.wsc3{word-spacing:12.971305px;}
.ws5b{word-spacing:13.395802px;}
.ws7f{word-spacing:14.869346px;}
.wsb3{word-spacing:15.422105px;}
.ws5a{word-spacing:16.524415px;}
.ws6f{word-spacing:16.530415px;}
.ws6a{word-spacing:16.557841px;}
.wsa9{word-spacing:17.753353px;}
.wsa8{word-spacing:17.813129px;}
.ws78{word-spacing:18.291334px;}
.ws87{word-spacing:22.714728px;}
.ws6c{word-spacing:25.524181px;}
.wsb0{word-spacing:27.974981px;}
.wsb2{word-spacing:28.453186px;}
.ws5d{word-spacing:33.175458px;}
.ws86{word-spacing:38.495486px;}
.wsa7{word-spacing:43.656342px;}
.ws99{word-spacing:44.303818px;}
.ws9d{word-spacing:299.543437px;}
._19{margin-left:-33.232507px;}
._12{margin-left:-7.412174px;}
._c{margin-left:-5.858009px;}
._e{margin-left:-4.782048px;}
._3{margin-left:-3.347434px;}
._6{margin-left:-2.331248px;}
._0{margin-left:-1.291158px;}
._8{width:1.016185px;}
._15{width:2.151922px;}
._14{width:3.344703px;}
._1c{width:5.384693px;}
._1b{width:7.375507px;}
._2{width:10.054483px;}
._1{width:14.943900px;}
._28{width:16.019861px;}
._d{width:17.072010px;}
._4{width:18.829314px;}
._b{width:20.263928px;}
._2b{width:21.280114px;}
._f{width:22.356074px;}
._a{width:24.209118px;}
._10{width:25.225303px;}
._2e{width:26.241488px;}
._7{width:27.377225px;}
._1a{width:28.991166px;}
._2c{width:31.561517px;}
._16{width:33.172727px;}
._5{width:34.311194px;}
._17{width:35.925136px;}
._11{width:37.419526px;}
._13{width:39.272569px;}
._18{width:41.304940px;}
._9{width:42.321125px;}
._1d{width:43.397086px;}
._2a{width:44.807795px;}
._27{width:48.075713px;}
._29{width:51.466792px;}
._1e{width:54.216469px;}
._2d{width:55.890186px;}
._20{width:57.771174px;}
._1f{width:59.665892px;}
._24{width:72.256755px;}
._26{width:75.823380px;}
._25{width:87.334920px;}
._23{width:110.350920px;}
._21{width:154.701092px;}
._22{width:165.101846px;}
.fc2{color:rgb(42,60,147);}
.fc1{color:rgb(0,20,115);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.961920px;}
.fs6{font-size:29.887800px;}
.fs7{font-size:33.474600px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y147{bottom:7.655208px;}
.y146{bottom:16.043784px;}
.y56{bottom:78.049500px;}
.yd3{bottom:110.842500px;}
.y2c{bottom:115.408500px;}
.yd2{bottom:121.093500px;}
.y8b{bottom:121.852500px;}
.y55{bottom:130.071000px;}
.y2b{bottom:130.353000px;}
.yf5{bottom:133.341000px;}
.y8a{bottom:139.786500px;}
.ya9{bottom:146.103000px;}
.y54{bottom:148.003500px;}
.yf4{bottom:151.275000px;}
.yd1{bottom:157.479000px;}
.y89{bottom:157.719000px;}
.yab{bottom:159.570000px;}
.yaa{bottom:160.041000px;}
.y2a{bottom:160.240500px;}
.ya8{bottom:163.735500px;}
.yf3{bottom:169.207500px;}
.y53{bottom:174.903000px;}
.y29{bottom:175.185000px;}
.yd0{bottom:175.411500px;}
.y88{bottom:175.651500px;}
.y28{bottom:180.898500px;}
.y196{bottom:181.804500px;}
.yf2{bottom:187.140000px;}
.y52{bottom:192.835500px;}
.ycf{bottom:193.345500px;}
.y16c{bottom:198.033000px;}
.ya7{bottom:199.636500px;}
.y195{bottom:199.737000px;}
.y87{bottom:202.551000px;}
.y27{bottom:203.698500px;}
.yf1{bottom:205.072500px;}
.y51{bottom:210.768000px;}
.y16b{bottom:215.965500px;}
.y194{bottom:217.671000px;}
.y86{bottom:220.483500px;}
.y26{bottom:221.631000px;}
.ycd{bottom:222.528000px;}
.y121{bottom:223.005000px;}
.ya6{bottom:226.536000px;}
.y4f{bottom:228.700500px;}
.y50{bottom:228.775500px;}
.ycc{bottom:230.136000px;}
.y144{bottom:231.972000px;}
.yf0{bottom:233.050500px;}
.y16a{bottom:233.898000px;}
.y193{bottom:235.603500px;}
.yce{bottom:236.692500px;}
.y85{bottom:238.416000px;}
.y25{bottom:239.563500px;}
.ycb{bottom:240.387000px;}
.y120{bottom:240.937500px;}
.ya5{bottom:244.468500px;}
.y4e{bottom:246.633000px;}
.y143{bottom:249.904500px;}
.y169{bottom:251.830500px;}
.y192{bottom:253.536000px;}
.y84{bottom:256.348500px;}
.y24{bottom:257.496000px;}
.ya4{bottom:262.401000px;}
.y4d{bottom:264.565500px;}
.y142{bottom:267.837000px;}
.y168{bottom:269.763000px;}
.yef{bottom:270.751500px;}
.y83{bottom:274.281000px;}
.y23{bottom:275.428500px;}
.yca{bottom:279.051000px;}
.y11f{bottom:280.135500px;}
.ya3{bottom:280.335000px;}
.y4c{bottom:282.499500px;}
.y191{bottom:283.423500px;}
.y141{bottom:285.769500px;}
.yee{bottom:288.684000px;}
.y82{bottom:292.215000px;}
.y22{bottom:293.362500px;}
.yc9{bottom:296.983500px;}
.y11e{bottom:298.068000px;}
.y167{bottom:298.588500px;}
.y4b{bottom:300.432000px;}
.y190{bottom:301.356000px;}
.yed{bottom:306.616500px;}
.ya2{bottom:307.233000px;}
.y81{bottom:310.147500px;}
.y21{bottom:311.295000px;}
.y140{bottom:314.829000px;}
.yc8{bottom:314.917500px;}
.y11d{bottom:316.000500px;}
.y166{bottom:316.522500px;}
.y4a{bottom:318.364500px;}
.y18f{bottom:319.290000px;}
.yec{bottom:324.549000px;}
.ya1{bottom:325.165500px;}
.y80{bottom:328.080000px;}
.y20{bottom:329.227500px;}
.yc6{bottom:332.850000px;}
.yc7{bottom:332.925000px;}
.y11c{bottom:333.933000px;}
.y165{bottom:334.455000px;}
.y49{bottom:336.297000px;}
.y18e{bottom:337.222500px;}
.ya0{bottom:338.961000px;}
.yeb{bottom:342.481500px;}
.y9f{bottom:343.099500px;}
.y7f{bottom:346.012500px;}
.y1f{bottom:347.160000px;}
.yc5{bottom:350.782500px;}
.y11b{bottom:351.865500px;}
.y164{bottom:352.387500px;}
.y48{bottom:354.229500px;}
.y13f{bottom:357.676500px;}
.yea{bottom:360.414000px;}
.y9e{bottom:361.032000px;}
.y7e{bottom:363.945000px;}
.y1e{bottom:365.092500px;}
.y18d{bottom:367.110000px;}
.yc4{bottom:368.715000px;}
.y11a{bottom:369.798000px;}
.y13e{bottom:375.610500px;}
.ye9{bottom:378.348000px;}
.y9d{bottom:378.964500px;}
.y47{bottom:381.129000px;}
.y163{bottom:381.213000px;}
.y7d{bottom:381.877500px;}
.y1d{bottom:383.025000px;}
.y18c{bottom:385.042500px;}
.yc3{bottom:386.647500px;}
.y119{bottom:387.732000px;}
.y13d{bottom:393.543000px;}
.ye8{bottom:396.280500px;}
.y46{bottom:399.061500px;}
.y162{bottom:399.145500px;}
.y7c{bottom:399.811500px;}
.y1c{bottom:400.959000px;}
.y18b{bottom:402.975000px;}
.y9c{bottom:405.864000px;}
.y13c{bottom:411.475500px;}
.ye7{bottom:414.213000px;}
.yc2{bottom:414.627000px;}
.y118{bottom:414.630000px;}
.y45{bottom:416.994000px;}
.y161{bottom:417.078000px;}
.y7b{bottom:417.744000px;}
.y1b{bottom:418.891500px;}
.y9b{bottom:423.796500px;}
.ye6{bottom:432.145500px;}
.y117{bottom:432.564000px;}
.y18a{bottom:432.864000px;}
.y44{bottom:434.928000px;}
.y160{bottom:435.010500px;}
.y7a{bottom:435.676500px;}
.y1a{bottom:436.824000px;}
.y13b{bottom:438.375000px;}
.y9a{bottom:441.729000px;}
.ye5{bottom:450.078000px;}
.y116{bottom:450.496500px;}
.y189{bottom:450.796500px;}
.yc1{bottom:452.326500px;}
.y43{bottom:452.860500px;}
.y15f{bottom:452.944500px;}
.y79{bottom:453.609000px;}
.y13a{bottom:456.307500px;}
.y99{bottom:459.661500px;}
.y19{bottom:465.883500px;}
.ye4{bottom:468.012000px;}
.y115{bottom:468.429000px;}
.y188{bottom:468.729000px;}
.yc0{bottom:470.259000px;}
.y42{bottom:470.793000px;}
.y78{bottom:471.541500px;}
.y139{bottom:474.240000px;}
.y98{bottom:477.594000px;}
.y15e{bottom:481.770000px;}
.ye3{bottom:485.944500px;}
.y114{bottom:486.361500px;}
.ybf{bottom:488.191500px;}
.y41{bottom:488.725500px;}
.y138{bottom:492.172500px;}
.y77{bottom:498.441000px;}
.y187{bottom:498.616500px;}
.y15d{bottom:499.702500px;}
.ye2{bottom:503.877000px;}
.y113{bottom:504.294000px;}
.y97{bottom:505.573500px;}
.ybe{bottom:506.124000px;}
.y40{bottom:506.658000px;}
.y137{bottom:510.105000px;}
.y76{bottom:516.373500px;}
.y186{bottom:516.549000px;}
.y15c{bottom:517.635000px;}
.y18{bottom:518.658000px;}
.y112{bottom:522.226500px;}
.ybd{bottom:524.056500px;}
.y3f{bottom:524.590500px;}
.y136{bottom:528.037500px;}
.ye1{bottom:530.776500px;}
.y74{bottom:534.306000px;}
.y75{bottom:534.381000px;}
.y185{bottom:534.483000px;}
.y15b{bottom:535.567500px;}
.y17{bottom:536.590500px;}
.y111{bottom:540.160500px;}
.ybc{bottom:541.990500px;}
.y3e{bottom:542.524500px;}
.y96{bottom:543.273000px;}
.y135{bottom:545.971500px;}
.ye0{bottom:548.709000px;}
.y73{bottom:552.238500px;}
.y184{bottom:552.415500px;}
.y16{bottom:554.523000px;}
.y110{bottom:558.093000px;}
.ybb{bottom:559.923000px;}
.y3d{bottom:560.457000px;}
.y95{bottom:561.205500px;}
.y134{bottom:563.904000px;}
.y15a{bottom:564.393000px;}
.ydf{bottom:566.641500px;}
.y71{bottom:570.172500px;}
.y72{bottom:570.246000px;}
.y183{bottom:570.348000px;}
.y15{bottom:572.455500px;}
.yba{bottom:577.855500px;}
.y3c{bottom:578.389500px;}
.y94{bottom:579.138000px;}
.y133{bottom:581.836500px;}
.y159{bottom:582.325500px;}
.yde{bottom:584.574000px;}
.y70{bottom:588.105000px;}
.y14{bottom:590.388000px;}
.yb9{bottom:595.788000px;}
.y3b{bottom:596.322000px;}
.y93{bottom:597.070500px;}
.y10f{bottom:597.289500px;}
.y132{bottom:599.769000px;}
.y182{bottom:600.235500px;}
.y158{bottom:600.258000px;}
.ydd{bottom:602.506500px;}
.y6f{bottom:606.037500px;}
.y13{bottom:608.320500px;}
.yb8{bottom:613.720500px;}
.y3a{bottom:614.254500px;}
.y92{bottom:615.004500px;}
.y10e{bottom:615.222000px;}
.y181{bottom:618.168000px;}
.y6e{bottom:623.970000px;}
.y12{bottom:626.254500px;}
.y157{bottom:629.083500px;}
.ydc{bottom:629.406000px;}
.yb7{bottom:631.654500px;}
.y39{bottom:632.187000px;}
.y90{bottom:632.937000px;}
.y91{bottom:633.012000px;}
.y10d{bottom:633.154500px;}
.y180{bottom:636.102000px;}
.y6d{bottom:641.902500px;}
.y11{bottom:644.187000px;}
.y156{bottom:647.016000px;}
.ydb{bottom:647.338500px;}
.yb6{bottom:649.587000px;}
.y38{bottom:650.121000px;}
.y8f{bottom:650.869500px;}
.y10c{bottom:651.087000px;}
.y17f{bottom:654.034500px;}
.y10{bottom:662.119500px;}
.yda{bottom:665.271000px;}
.y37{bottom:668.053500px;}
.y6c{bottom:668.802000px;}
.y10b{bottom:669.019500px;}
.y12e{bottom:670.876500px;}
.y17e{bottom:671.967000px;}
.y131{bottom:672.402000px;}
.y155{bottom:675.841500px;}
.yf{bottom:680.052000px;}
.y130{bottom:685.552500px;}
.y36{bottom:685.986000px;}
.y6b{bottom:686.734500px;}
.y10a{bottom:686.953500px;}
.yb5{bottom:687.963000px;}
.yd9{bottom:693.250500px;}
.y154{bottom:693.775500px;}
.yb4{bottom:697.600500px;}
.ye{bottom:697.984500px;}
.y12f{bottom:698.703000px;}
.y17d{bottom:701.854500px;}
.y6a{bottom:704.667000px;}
.y153{bottom:711.708000px;}
.y35{bottom:712.885500px;}
.yd{bottom:715.918500px;}
.y109{bottom:716.013000px;}
.y12d{bottom:719.356500px;}
.y17c{bottom:719.787000px;}
.y69{bottom:722.601000px;}
.y12b{bottom:727.047000px;}
.y152{bottom:729.640500px;}
.yb3{bottom:729.729000px;}
.y34{bottom:730.818000px;}
.yd8{bottom:730.950000px;}
.y12c{bottom:733.375500px;}
.yc{bottom:733.851000px;}
.y17b{bottom:737.721000px;}
.y68{bottom:740.533500px;}
.yb2{bottom:747.661500px;}
.y33{bottom:748.750500px;}
.yd7{bottom:748.882500px;}
.yb{bottom:751.783500px;}
.y67{bottom:758.466000px;}
.y108{bottom:758.860500px;}
.yb1{bottom:765.594000px;}
.y32{bottom:766.683000px;}
.yd6{bottom:766.815000px;}
.y17a{bottom:767.608500px;}
.ya{bottom:769.716000px;}
.y66{bottom:776.398500px;}
.y107{bottom:776.793000px;}
.y12a{bottom:781.194000px;}
.y31{bottom:784.615500px;}
.y179{bottom:785.541000px;}
.y9{bottom:787.648500px;}
.yb0{bottom:793.782000px;}
.y8e{bottom:794.331000px;}
.y106{bottom:794.725500px;}
.yd5{bottom:794.767500px;}
.y129{bottom:797.632500px;}
.y30{bottom:802.549500px;}
.y65{bottom:803.298000px;}
.y178{bottom:803.473500px;}
.yd4{bottom:805.018500px;}
.y8{bottom:805.581000px;}
.yaf{bottom:811.639500px;}
.y8d{bottom:812.263500px;}
.y105{bottom:812.658000px;}
.y2f{bottom:820.482000px;}
.y64{bottom:821.230500px;}
.y7{bottom:823.515000px;}
.y8c{bottom:830.197500px;}
.y177{bottom:833.361000px;}
.y63{bottom:839.163000px;}
.y6{bottom:841.447500px;}
.yae{bottom:846.255000px;}
.y2e{bottom:847.380000px;}
.y128{bottom:849.145500px;}
.y176{bottom:851.295000px;}
.y62{bottom:857.095500px;}
.y5{bottom:859.380000px;}
.yad{bottom:864.189000px;}
.y2d{bottom:865.314000px;}
.y127{bottom:867.078000px;}
.y175{bottom:869.227500px;}
.y104{bottom:871.219500px;}
.y61{bottom:875.028000px;}
.y151{bottom:882.010500px;}
.y4{bottom:883.246500px;}
.y126{bottom:885.010500px;}
.y174{bottom:887.160000px;}
.y103{bottom:889.152000px;}
.yac{bottom:891.225000px;}
.y60{bottom:892.962000px;}
.y150{bottom:899.943000px;}
.y125{bottom:902.943000px;}
.y102{bottom:907.084500px;}
.y5f{bottom:910.894500px;}
.y173{bottom:917.047500px;}
.y14f{bottom:917.875500px;}
.y124{bottom:920.875500px;}
.y101{bottom:921.127500px;}
.y100{bottom:925.017000px;}
.y5e{bottom:928.827000px;}
.y172{bottom:934.980000px;}
.y3{bottom:935.125500px;}
.y14e{bottom:935.809500px;}
.y123{bottom:938.808000px;}
.yff{bottom:939.060000px;}
.yfe{bottom:942.949500px;}
.y171{bottom:952.914000px;}
.y14d{bottom:953.742000px;}
.y5d{bottom:957.886500px;}
.yfd{bottom:960.882000px;}
.y170{bottom:970.846500px;}
.y14c{bottom:971.674500px;}
.yfc{bottom:978.816000px;}
.y145{bottom:978.919500px;}
.y122{bottom:982.801500px;}
.y16e{bottom:988.779000px;}
.y16f{bottom:988.854000px;}
.y14b{bottom:989.607000px;}
.yfb{bottom:996.748500px;}
.y5c{bottom:1000.734000px;}
.y14a{bottom:1007.539500px;}
.y2{bottom:1009.716000px;}
.yfa{bottom:1014.681000px;}
.y5b{bottom:1018.666500px;}
.y149{bottom:1025.472000px;}
.yf9{bottom:1032.613500px;}
.y5a{bottom:1036.599000px;}
.y1{bottom:1036.615500px;}
.y148{bottom:1043.406000px;}
.yf8{bottom:1046.656500px;}
.yf7{bottom:1050.546000px;}
.y59{bottom:1054.531500px;}
.y58{bottom:1072.465500px;}
.y16d{bottom:1072.539000px;}
.yf6{bottom:1072.929000px;}
.y57{bottom:1106.836500px;}
.h26{height:20.020735px;}
.h23{height:20.687303px;}
.h5{height:24.675533px;}
.hd{height:28.662318px;}
.h21{height:28.787846px;}
.h24{height:29.038903px;}
.h10{height:29.457331px;}
.h7{height:36.744307px;}
.h20{height:36.941321px;}
.h6{height:37.013299px;}
.h8{height:37.336090px;}
.h27{height:40.826735px;}
.h4{height:41.125613px;}
.h9{height:41.484266px;}
.ha{height:44.831700px;}
.hb{height:46.326090px;}
.h3{height:49.781453px;}
.h1b{height:50.352318px;}
.h1c{height:50.358318px;}
.h2{height:50.483846px;}
.hc{height:51.147331px;}
.he{height:51.153331px;}
.h22{height:54.131846px;}
.h17{height:54.135331px;}
.h11{height:54.141331px;}
.hf{height:59.181024px;}
.h1{height:59.737577px;}
.h1f{height:61.884090px;}
.h1e{height:66.711331px;}
.h18{height:67.239619px;}
.h13{height:67.473024px;}
.h12{height:69.807331px;}
.h25{height:73.583790px;}
.h14{height:83.381700px;}
.h15{height:85.265700px;}
.h19{height:85.271700px;}
.h1a{height:85.835700px;}
.h1d{height:87.330090px;}
.h16{height:100.179024px;}
.h0{height:1188.000000px;}
.w1{width:72.601461px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6f{left:3.247411px;}
.x6e{left:17.812076px;}
.x63{left:82.039500px;}
.x6{left:83.160000px;}
.x71{left:98.104500px;}
.x7{left:100.752000px;}
.x8{left:105.982500px;}
.x2f{left:109.551000px;}
.x5{left:113.049000px;}
.x5c{left:123.508500px;}
.x5d{left:124.534500px;}
.x30{left:126.840000px;}
.x2a{left:134.335500px;}
.x33{left:152.917500px;}
.x10{left:158.364000px;}
.x3f{left:165.934500px;}
.x34{left:169.266000px;}
.x31{left:176.449500px;}
.x70{left:183.064500px;}
.x2d{left:191.167500px;}
.x61{left:206.220000px;}
.x48{left:207.429000px;}
.x45{left:217.006500px;}
.x4{left:225.297000px;}
.x60{left:227.262000px;}
.x5e{left:229.434000px;}
.x64{left:233.856000px;}
.x40{left:238.684500px;}
.x62{left:239.893500px;}
.x5f{left:243.978000px;}
.x44{left:245.461500px;}
.x46{left:251.605500px;}
.x41{left:259.095000px;}
.x59{left:262.024500px;}
.x2e{left:263.089500px;}
.x32{left:266.401500px;}
.xd{left:269.737500px;}
.x5a{left:276.903000px;}
.x42{left:282.166500px;}
.x49{left:286.167000px;}
.x1{left:289.614000px;}
.x5b{left:298.330500px;}
.x2b{left:310.614000px;}
.x35{left:315.735000px;}
.x2c{left:321.714000px;}
.x2{left:323.721000px;}
.x43{left:327.313500px;}
.x37{left:331.602000px;}
.x3{left:333.181500px;}
.xe{left:339.669000px;}
.x3c{left:345.078000px;}
.x36{left:346.321500px;}
.xf{left:350.577000px;}
.x3e{left:353.412000px;}
.x39{left:365.569500px;}
.x3a{left:387.883500px;}
.x47{left:392.841000px;}
.x3b{left:398.553000px;}
.x3d{left:399.856500px;}
.x38{left:405.322500px;}
.xc{left:443.925000px;}
.x14{left:459.412500px;}
.x9{left:461.160000px;}
.x69{left:466.959000px;}
.x66{left:468.117000px;}
.x76{left:474.984000px;}
.x74{left:476.104500px;}
.x67{left:477.345000px;}
.x75{left:481.911000px;}
.x6b{left:487.335000px;}
.x6a{left:490.210500px;}
.x72{left:500.022000px;}
.x15{left:504.088500px;}
.x65{left:506.700000px;}
.x73{left:511.027500px;}
.x4e{left:513.955500px;}
.x4f{left:527.049000px;}
.x16{left:536.161500px;}
.x20{left:542.236500px;}
.xa{left:543.852000px;}
.x68{left:552.507000px;}
.xb{left:554.425500px;}
.x4c{left:556.201500px;}
.x1d{left:583.276500px;}
.x4a{left:586.488000px;}
.x21{left:588.247500px;}
.x25{left:592.399500px;}
.x11{left:595.852500px;}
.x17{left:599.611500px;}
.x53{left:601.264500px;}
.x12{left:606.814500px;}
.x54{left:608.694000px;}
.x26{left:611.829000px;}
.x1b{left:623.934000px;}
.x50{left:628.285500px;}
.x1e{left:637.285500px;}
.x27{left:639.703500px;}
.x29{left:649.876500px;}
.x28{left:659.386500px;}
.x4d{left:669.190500px;}
.x6c{left:677.665500px;}
.x6d{left:689.961000px;}
.x23{left:692.133000px;}
.x1c{left:694.965000px;}
.x58{left:721.225500px;}
.x55{left:731.526000px;}
.x22{left:737.232000px;}
.x56{left:746.365500px;}
.x1f{left:747.931500px;}
.x18{left:751.336500px;}
.x24{left:759.450000px;}
.x57{left:761.692500px;}
.x19{left:772.216500px;}
.x51{left:776.451000px;}
.x4b{left:778.510500px;}
.x13{left:783.918000px;}
.x52{left:800.301000px;}
.x1a{left:810.300000px;}
@media print{
.ve{vertical-align:-22.528000pt;}
.vd{vertical-align:-13.285333pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.861333pt;}
.v6{vertical-align:13.136000pt;}
.v8{vertical-align:14.810667pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.941333pt;}
.vb{vertical-align:33.114667pt;}
.v9{vertical-align:34.266667pt;}
.v7{vertical-align:35.866667pt;}
.v4{vertical-align:43.040000pt;}
.v3{vertical-align:50.480000pt;}
.va{vertical-align:86.922667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000055pt;}
.ls22{letter-spacing:0.000501pt;}
.ls4e{letter-spacing:0.000882pt;}
.ls38{letter-spacing:0.000996pt;}
.ls2f{letter-spacing:0.001069pt;}
.ls2{letter-spacing:0.001386pt;}
.ls50{letter-spacing:0.001659pt;}
.ls26{letter-spacing:0.001799pt;}
.ls59{letter-spacing:0.001995pt;}
.ls12{letter-spacing:0.002079pt;}
.ls2c{letter-spacing:0.002205pt;}
.ls28{letter-spacing:0.002693pt;}
.ls2e{letter-spacing:0.002906pt;}
.ls30{letter-spacing:0.003033pt;}
.ls19{letter-spacing:0.003733pt;}
.ls5f{letter-spacing:0.004132pt;}
.ls66{letter-spacing:0.004542pt;}
.ls70{letter-spacing:0.522221pt;}
.ls37{letter-spacing:1.330028pt;}
.ls44{letter-spacing:1.428132pt;}
.ls36{letter-spacing:1.433465pt;}
.ls72{letter-spacing:1.844822pt;}
.ls71{letter-spacing:1.855554pt;}
.ls74{letter-spacing:1.859680pt;}
.ls6f{letter-spacing:1.862890pt;}
.ls34{letter-spacing:1.905799pt;}
.ls29{letter-spacing:1.910015pt;}
.ls5c{letter-spacing:2.151919pt;}
.ls41{letter-spacing:2.652911pt;}
.ls51{letter-spacing:2.653617pt;}
.ls4d{letter-spacing:2.655095pt;}
.ls1d{letter-spacing:2.656546pt;}
.ls32{letter-spacing:2.657069pt;}
.ls35{letter-spacing:2.657253pt;}
.ls1c{letter-spacing:2.658245pt;}
.ls16{letter-spacing:3.059246pt;}
.ls23{letter-spacing:3.064580pt;}
.ls4f{letter-spacing:3.657876pt;}
.ls58{letter-spacing:3.800296pt;}
.ls61{letter-spacing:3.805629pt;}
.ls75{letter-spacing:4.463280pt;}
.ls5a{letter-spacing:4.807919pt;}
.ls2a{letter-spacing:5.579680pt;}
.ls40{letter-spacing:6.171735pt;}
.ls53{letter-spacing:6.377682pt;}
.ls49{letter-spacing:6.601897pt;}
.ls25{letter-spacing:6.643959pt;}
.ls67{letter-spacing:6.879996pt;}
.ls52{letter-spacing:8.587145pt;}
.ls5b{letter-spacing:8.754585pt;}
.ls76{letter-spacing:8.850079pt;}
.ls6b{letter-spacing:8.855412pt;}
.ls5{letter-spacing:10.945577pt;}
.lse{letter-spacing:11.211246pt;}
.ls31{letter-spacing:11.515735pt;}
.ls4{letter-spacing:11.795718pt;}
.ls3f{letter-spacing:11.803145pt;}
.ls13{letter-spacing:11.807016pt;}
.ls47{letter-spacing:11.808479pt;}
.ls6d{letter-spacing:11.810205pt;}
.ls8{letter-spacing:12.061388pt;}
.ls4a{letter-spacing:12.380465pt;}
.ls6c{letter-spacing:12.539593pt;}
.lsa{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.124065pt;}
.ls3a{letter-spacing:13.177199pt;}
.ls10{letter-spacing:13.230333pt;}
.ls46{letter-spacing:13.236132pt;}
.ls3c{letter-spacing:13.282422pt;}
.ls62{letter-spacing:13.282906pt;}
.ls9{letter-spacing:13.283467pt;}
.ls68{letter-spacing:13.283733pt;}
.lsb{letter-spacing:13.389734pt;}
.lsf{letter-spacing:13.442868pt;}
.lsc{letter-spacing:13.549136pt;}
.ls54{letter-spacing:13.708465pt;}
.ls1{letter-spacing:13.921073pt;}
.ls3e{letter-spacing:14.465069pt;}
.ls6e{letter-spacing:14.756349pt;}
.ls1a{letter-spacing:14.756607pt;}
.ls18{letter-spacing:14.756984pt;}
.ls1b{letter-spacing:14.757812pt;}
.ls63{letter-spacing:14.759467pt;}
.ls57{letter-spacing:14.763145pt;}
.lsd{letter-spacing:14.877483pt;}
.ls48{letter-spacing:15.231016pt;}
.ls5e{letter-spacing:15.953962pt;}
.ls56{letter-spacing:16.185465pt;}
.ls64{letter-spacing:16.615919pt;}
.ls17{letter-spacing:16.667348pt;}
.ls24{letter-spacing:16.668465pt;}
.ls11{letter-spacing:17.314174pt;}
.ls1e{letter-spacing:17.414347pt;}
.ls27{letter-spacing:17.414402pt;}
.ls45{letter-spacing:17.417761pt;}
.ls5d{letter-spacing:17.799474pt;}
.ls3{letter-spacing:19.128192pt;}
.ls60{letter-spacing:19.565252pt;}
.ls65{letter-spacing:21.642663pt;}
.ls43{letter-spacing:22.759538pt;}
.ls14{letter-spacing:22.892745pt;}
.ls15{letter-spacing:22.896479pt;}
.ls3d{letter-spacing:23.665503pt;}
.ls69{letter-spacing:23.697705pt;}
.ls20{letter-spacing:25.087651pt;}
.ls3b{letter-spacing:25.801465pt;}
.ls1f{letter-spacing:26.521465pt;}
.ls4c{letter-spacing:27.069617pt;}
.ls6a{letter-spacing:30.941053pt;}
.ls0{letter-spacing:35.424533pt;}
.ls2b{letter-spacing:59.382347pt;}
.ls42{letter-spacing:235.911412pt;}
.ls2d{letter-spacing:271.997784pt;}
.ls39{letter-spacing:273.298079pt;}
.ls73{letter-spacing:273.721198pt;}
.ls55{letter-spacing:279.527412pt;}
.ls33{letter-spacing:325.628745pt;}
.ls4b{letter-spacing:383.447412pt;}
.ws53{word-spacing:-53.133867pt;}
.ws58{word-spacing:-42.066082pt;}
.ws52{word-spacing:-38.387031pt;}
.ws81{word-spacing:-38.362652pt;}
.ws54{word-spacing:-34.611401pt;}
.ws67{word-spacing:-28.763733pt;}
.ws59{word-spacing:-28.118362pt;}
.ws60{word-spacing:-27.640879pt;}
.ws4f{word-spacing:-25.791179pt;}
.ws51{word-spacing:-25.738045pt;}
.ws8a{word-spacing:-22.209956pt;}
.wsaf{word-spacing:-15.940267pt;}
.ws6e{word-spacing:-15.451899pt;}
.ws27{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-11.955200pt;}
.wsa3{word-spacing:-11.158080pt;}
.ws9e{word-spacing:-9.298400pt;}
.wsa2{word-spacing:-9.283622pt;}
.ws82{word-spacing:-8.551281pt;}
.ws9c{word-spacing:-7.438800pt;}
.wsa6{word-spacing:-4.493035pt;}
.ws1{word-spacing:-4.428237pt;}
.wsc6{word-spacing:-2.913197pt;}
.wsc7{word-spacing:-2.869229pt;}
.ws93{word-spacing:-2.816095pt;}
.ws4{word-spacing:-2.497292pt;}
.ws10{word-spacing:-2.444158pt;}
.ws34{word-spacing:-2.337890pt;}
.wsc5{word-spacing:-2.284756pt;}
.wsad{word-spacing:-2.231622pt;}
.ws42{word-spacing:-2.125355pt;}
.ws71{word-spacing:-2.072221pt;}
.wsa5{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.753418pt;}
.ws5c{word-spacing:-1.721549pt;}
.wsca{word-spacing:-1.594016pt;}
.ws32{word-spacing:-1.540882pt;}
.ws77{word-spacing:-1.487748pt;}
.ws8f{word-spacing:-1.381481pt;}
.ws4d{word-spacing:-1.275213pt;}
.ws3a{word-spacing:-1.222079pt;}
.ws30{word-spacing:-1.168945pt;}
.ws16{word-spacing:-1.009543pt;}
.ws92{word-spacing:-0.974216pt;}
.ws74{word-spacing:-0.956410pt;}
.wsc1{word-spacing:-0.904145pt;}
.ws36{word-spacing:-0.903276pt;}
.wsbf{word-spacing:-0.850142pt;}
.ws75{word-spacing:-0.797008pt;}
.ws21{word-spacing:-0.765133pt;}
.wsf{word-spacing:-0.743874pt;}
.ws31{word-spacing:-0.690740pt;}
.ws8c{word-spacing:-0.531339pt;}
.wsce{word-spacing:-0.478205pt;}
.ws49{word-spacing:-0.371937pt;}
.ws11{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.265669pt;}
.ws24{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.159402pt;}
.wsbe{word-spacing:-0.134827pt;}
.wse{word-spacing:-0.106268pt;}
.ws9{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws84{word-spacing:-0.003125pt;}
.ws80{word-spacing:-0.002644pt;}
.ws7b{word-spacing:-0.002103pt;}
.ws83{word-spacing:-0.000307pt;}
.ws56{word-spacing:-0.000229pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.000932pt;}
.ws98{word-spacing:0.002201pt;}
.ws3c{word-spacing:0.023650pt;}
.wsd{word-spacing:0.053134pt;}
.wsc4{word-spacing:0.057437pt;}
.ws1e{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.ws3{word-spacing:0.159402pt;}
.ws57{word-spacing:0.192584pt;}
.ws76{word-spacing:0.212331pt;}
.ws18{word-spacing:0.212535pt;}
.ws9b{word-spacing:0.239104pt;}
.ws8{word-spacing:0.265669pt;}
.ws15{word-spacing:0.318803pt;}
.ws19{word-spacing:0.371937pt;}
.ws65{word-spacing:0.425071pt;}
.ws25{word-spacing:0.531339pt;}
.ws1d{word-spacing:0.584473pt;}
.ws8e{word-spacing:0.637606pt;}
.ws44{word-spacing:0.690740pt;}
.wscd{word-spacing:0.731190pt;}
.wsb9{word-spacing:0.743874pt;}
.ws22{word-spacing:0.797008pt;}
.ws3d{word-spacing:0.850142pt;}
.ws29{word-spacing:0.956410pt;}
.ws91{word-spacing:1.009543pt;}
.ws4e{word-spacing:1.062677pt;}
.ws64{word-spacing:1.115811pt;}
.ws38{word-spacing:1.275213pt;}
.ws40{word-spacing:1.328347pt;}
.ws45{word-spacing:1.381481pt;}
.ws69{word-spacing:1.432139pt;}
.ws9a{word-spacing:1.434614pt;}
.ws1b{word-spacing:1.540882pt;}
.ws41{word-spacing:1.594016pt;}
.ws73{word-spacing:1.700284pt;}
.ws62{word-spacing:1.806551pt;}
.wsa1{word-spacing:1.858182pt;}
.wsa4{word-spacing:1.859680pt;}
.ws7a{word-spacing:1.859685pt;}
.ws7{word-spacing:1.965953pt;}
.ws3e{word-spacing:2.072221pt;}
.ws70{word-spacing:2.178489pt;}
.ws4a{word-spacing:2.231622pt;}
.wsb6{word-spacing:2.284756pt;}
.wsba{word-spacing:2.337890pt;}
.ws4c{word-spacing:2.391024pt;}
.wsa{word-spacing:2.444158pt;}
.ws8d{word-spacing:2.497292pt;}
.ws97{word-spacing:2.550426pt;}
.ws1a{word-spacing:2.603559pt;}
.wsc2{word-spacing:2.637508pt;}
.ws28{word-spacing:2.656693pt;}
.ws43{word-spacing:2.709827pt;}
.ws2b{word-spacing:2.762961pt;}
.wsc8{word-spacing:2.869229pt;}
.ws39{word-spacing:2.922363pt;}
.ws7c{word-spacing:2.925403pt;}
.ws7d{word-spacing:3.185029pt;}
.ws3b{word-spacing:3.241166pt;}
.ws90{word-spacing:3.294300pt;}
.ws35{word-spacing:3.347434pt;}
.ws72{word-spacing:3.559969pt;}
.ws47{word-spacing:3.666237pt;}
.ws9f{word-spacing:3.675715pt;}
.wsa0{word-spacing:3.690754pt;}
.wsb7{word-spacing:3.719371pt;}
.ws2d{word-spacing:3.878772pt;}
.ws6d{word-spacing:3.931906pt;}
.ws6b{word-spacing:3.985040pt;}
.ws50{word-spacing:4.038174pt;}
.ws46{word-spacing:4.197575pt;}
.wscb{word-spacing:4.250709pt;}
.wsaa{word-spacing:4.463245pt;}
.ws6{word-spacing:4.516379pt;}
.ws96{word-spacing:4.569513pt;}
.ws1c{word-spacing:4.675780pt;}
.ws66{word-spacing:4.835182pt;}
.wscc{word-spacing:4.888316pt;}
.ws63{word-spacing:4.994583pt;}
.ws33{word-spacing:5.153985pt;}
.ws55{word-spacing:5.207119pt;}
.ws2a{word-spacing:5.260253pt;}
.ws37{word-spacing:5.472788pt;}
.ws23{word-spacing:5.525922pt;}
.ws61{word-spacing:5.579056pt;}
.wsab{word-spacing:5.685324pt;}
.wsb5{word-spacing:5.791591pt;}
.wsbd{word-spacing:5.841097pt;}
.ws2e{word-spacing:5.844725pt;}
.ws94{word-spacing:5.950993pt;}
.ws95{word-spacing:5.960271pt;}
.ws85{word-spacing:6.004127pt;}
.wsbb{word-spacing:6.022143pt;}
.ws4b{word-spacing:6.057261pt;}
.wsae{word-spacing:6.163529pt;}
.ws79{word-spacing:6.216662pt;}
.wsac{word-spacing:6.429198pt;}
.ws26{word-spacing:6.482332pt;}
.ws68{word-spacing:6.588599pt;}
.ws14{word-spacing:6.854269pt;}
.ws2c{word-spacing:7.066804pt;}
.ws2f{word-spacing:7.119938pt;}
.ws3f{word-spacing:7.173072pt;}
.ws5{word-spacing:7.332474pt;}
.ws48{word-spacing:7.438741pt;}
.wsc{word-spacing:7.491875pt;}
.wsbc{word-spacing:7.598143pt;}
.ws5e{word-spacing:7.863812pt;}
.wsc0{word-spacing:7.970080pt;}
.ws13{word-spacing:8.235749pt;}
.ws8b{word-spacing:8.288883pt;}
.wsb8{word-spacing:8.762319pt;}
.wsc9{word-spacing:9.192159pt;}
.ws5f{word-spacing:9.564096pt;}
.wsb1{word-spacing:9.617230pt;}
.ws89{word-spacing:10.361104pt;}
.ws88{word-spacing:10.414238pt;}
.wsb4{word-spacing:10.520506pt;}
.wsc3{word-spacing:11.530049pt;}
.ws5b{word-spacing:11.907379pt;}
.ws7f{word-spacing:13.217196pt;}
.wsb3{word-spacing:13.708538pt;}
.ws5a{word-spacing:14.688369pt;}
.ws6f{word-spacing:14.693702pt;}
.ws6a{word-spacing:14.718081pt;}
.wsa9{word-spacing:15.780758pt;}
.wsa8{word-spacing:15.833892pt;}
.ws78{word-spacing:16.258963pt;}
.ws87{word-spacing:20.190869pt;}
.ws6c{word-spacing:22.688161pt;}
.wsb0{word-spacing:24.866650pt;}
.wsb2{word-spacing:25.291721pt;}
.ws5d{word-spacing:29.489296pt;}
.ws86{word-spacing:34.218210pt;}
.wsa7{word-spacing:38.805637pt;}
.ws99{word-spacing:39.381171pt;}
.ws9d{word-spacing:266.260833pt;}
._19{margin-left:-29.540006pt;}
._12{margin-left:-6.588599pt;}
._c{margin-left:-5.207119pt;}
._e{margin-left:-4.250709pt;}
._3{margin-left:-2.975497pt;}
._6{margin-left:-2.072221pt;}
._0{margin-left:-1.147696pt;}
._8{width:0.903276pt;}
._15{width:1.912819pt;}
._14{width:2.973069pt;}
._1c{width:4.786394pt;}
._1b{width:6.556006pt;}
._2{width:8.937318pt;}
._1{width:13.283467pt;}
._28{width:14.239876pt;}
._d{width:15.175120pt;}
._4{width:16.737168pt;}
._b{width:18.012381pt;}
._2b{width:18.915657pt;}
._f{width:19.872066pt;}
._a{width:21.519216pt;}
._10{width:22.422492pt;}
._2e{width:23.325767pt;}
._7{width:24.335311pt;}
._1a{width:25.769925pt;}
._2c{width:28.054682pt;}
._16{width:29.486869pt;}
._5{width:30.498839pt;}
._17{width:31.933454pt;}
._11{width:33.261801pt;}
._13{width:34.908950pt;}
._18{width:36.715502pt;}
._9{width:37.618778pt;}
._1d{width:38.575187pt;}
._2a{width:39.829151pt;}
._27{width:42.733967pt;}
._29{width:45.748259pt;}
._1e{width:48.192417pt;}
._2d{width:49.680165pt;}
._20{width:51.352154pt;}
._1f{width:53.036349pt;}
._24{width:64.228226pt;}
._26{width:67.398560pt;}
._25{width:77.631040pt;}
._23{width:98.089707pt;}
._21{width:137.512082pt;}
._22{width:146.757196pt;}
.fs8{font-size:24.855040pt;}
.fs6{font-size:26.566933pt;}
.fs7{font-size:29.755200pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:6.804629pt;}
.y146{bottom:14.261141pt;}
.y56{bottom:69.377333pt;}
.yd3{bottom:98.526667pt;}
.y2c{bottom:102.585333pt;}
.yd2{bottom:107.638667pt;}
.y8b{bottom:108.313333pt;}
.y55{bottom:115.618667pt;}
.y2b{bottom:115.869333pt;}
.yf5{bottom:118.525333pt;}
.y8a{bottom:124.254667pt;}
.ya9{bottom:129.869333pt;}
.y54{bottom:131.558667pt;}
.yf4{bottom:134.466667pt;}
.yd1{bottom:139.981333pt;}
.y89{bottom:140.194667pt;}
.yab{bottom:141.840000pt;}
.yaa{bottom:142.258667pt;}
.y2a{bottom:142.436000pt;}
.ya8{bottom:145.542667pt;}
.yf3{bottom:150.406667pt;}
.y53{bottom:155.469333pt;}
.y29{bottom:155.720000pt;}
.yd0{bottom:155.921333pt;}
.y88{bottom:156.134667pt;}
.y28{bottom:160.798667pt;}
.y196{bottom:161.604000pt;}
.yf2{bottom:166.346667pt;}
.y52{bottom:171.409333pt;}
.ycf{bottom:171.862667pt;}
.y16c{bottom:176.029333pt;}
.ya7{bottom:177.454667pt;}
.y195{bottom:177.544000pt;}
.y87{bottom:180.045333pt;}
.y27{bottom:181.065333pt;}
.yf1{bottom:182.286667pt;}
.y51{bottom:187.349333pt;}
.y16b{bottom:191.969333pt;}
.y194{bottom:193.485333pt;}
.y86{bottom:195.985333pt;}
.y26{bottom:197.005333pt;}
.ycd{bottom:197.802667pt;}
.y121{bottom:198.226667pt;}
.ya6{bottom:201.365333pt;}
.y4f{bottom:203.289333pt;}
.y50{bottom:203.356000pt;}
.ycc{bottom:204.565333pt;}
.y144{bottom:206.197333pt;}
.yf0{bottom:207.156000pt;}
.y16a{bottom:207.909333pt;}
.y193{bottom:209.425333pt;}
.yce{bottom:210.393333pt;}
.y85{bottom:211.925333pt;}
.y25{bottom:212.945333pt;}
.ycb{bottom:213.677333pt;}
.y120{bottom:214.166667pt;}
.ya5{bottom:217.305333pt;}
.y4e{bottom:219.229333pt;}
.y143{bottom:222.137333pt;}
.y169{bottom:223.849333pt;}
.y192{bottom:225.365333pt;}
.y84{bottom:227.865333pt;}
.y24{bottom:228.885333pt;}
.ya4{bottom:233.245333pt;}
.y4d{bottom:235.169333pt;}
.y142{bottom:238.077333pt;}
.y168{bottom:239.789333pt;}
.yef{bottom:240.668000pt;}
.y83{bottom:243.805333pt;}
.y23{bottom:244.825333pt;}
.yca{bottom:248.045333pt;}
.y11f{bottom:249.009333pt;}
.ya3{bottom:249.186667pt;}
.y4c{bottom:251.110667pt;}
.y191{bottom:251.932000pt;}
.y141{bottom:254.017333pt;}
.yee{bottom:256.608000pt;}
.y82{bottom:259.746667pt;}
.y22{bottom:260.766667pt;}
.yc9{bottom:263.985333pt;}
.y11e{bottom:264.949333pt;}
.y167{bottom:265.412000pt;}
.y4b{bottom:267.050667pt;}
.y190{bottom:267.872000pt;}
.yed{bottom:272.548000pt;}
.ya2{bottom:273.096000pt;}
.y81{bottom:275.686667pt;}
.y21{bottom:276.706667pt;}
.y140{bottom:279.848000pt;}
.yc8{bottom:279.926667pt;}
.y11d{bottom:280.889333pt;}
.y166{bottom:281.353333pt;}
.y4a{bottom:282.990667pt;}
.y18f{bottom:283.813333pt;}
.yec{bottom:288.488000pt;}
.ya1{bottom:289.036000pt;}
.y80{bottom:291.626667pt;}
.y20{bottom:292.646667pt;}
.yc6{bottom:295.866667pt;}
.yc7{bottom:295.933333pt;}
.y11c{bottom:296.829333pt;}
.y165{bottom:297.293333pt;}
.y49{bottom:298.930667pt;}
.y18e{bottom:299.753333pt;}
.ya0{bottom:301.298667pt;}
.yeb{bottom:304.428000pt;}
.y9f{bottom:304.977333pt;}
.y7f{bottom:307.566667pt;}
.y1f{bottom:308.586667pt;}
.yc5{bottom:311.806667pt;}
.y11b{bottom:312.769333pt;}
.y164{bottom:313.233333pt;}
.y48{bottom:314.870667pt;}
.y13f{bottom:317.934667pt;}
.yea{bottom:320.368000pt;}
.y9e{bottom:320.917333pt;}
.y7e{bottom:323.506667pt;}
.y1e{bottom:324.526667pt;}
.y18d{bottom:326.320000pt;}
.yc4{bottom:327.746667pt;}
.y11a{bottom:328.709333pt;}
.y13e{bottom:333.876000pt;}
.ye9{bottom:336.309333pt;}
.y9d{bottom:336.857333pt;}
.y47{bottom:338.781333pt;}
.y163{bottom:338.856000pt;}
.y7d{bottom:339.446667pt;}
.y1d{bottom:340.466667pt;}
.y18c{bottom:342.260000pt;}
.yc3{bottom:343.686667pt;}
.y119{bottom:344.650667pt;}
.y13d{bottom:349.816000pt;}
.ye8{bottom:352.249333pt;}
.y46{bottom:354.721333pt;}
.y162{bottom:354.796000pt;}
.y7c{bottom:355.388000pt;}
.y1c{bottom:356.408000pt;}
.y18b{bottom:358.200000pt;}
.y9c{bottom:360.768000pt;}
.y13c{bottom:365.756000pt;}
.ye7{bottom:368.189333pt;}
.yc2{bottom:368.557333pt;}
.y118{bottom:368.560000pt;}
.y45{bottom:370.661333pt;}
.y161{bottom:370.736000pt;}
.y7b{bottom:371.328000pt;}
.y1b{bottom:372.348000pt;}
.y9b{bottom:376.708000pt;}
.ye6{bottom:384.129333pt;}
.y117{bottom:384.501333pt;}
.y18a{bottom:384.768000pt;}
.y44{bottom:386.602667pt;}
.y160{bottom:386.676000pt;}
.y7a{bottom:387.268000pt;}
.y1a{bottom:388.288000pt;}
.y13b{bottom:389.666667pt;}
.y9a{bottom:392.648000pt;}
.ye5{bottom:400.069333pt;}
.y116{bottom:400.441333pt;}
.y189{bottom:400.708000pt;}
.yc1{bottom:402.068000pt;}
.y43{bottom:402.542667pt;}
.y15f{bottom:402.617333pt;}
.y79{bottom:403.208000pt;}
.y13a{bottom:405.606667pt;}
.y99{bottom:408.588000pt;}
.y19{bottom:414.118667pt;}
.ye4{bottom:416.010667pt;}
.y115{bottom:416.381333pt;}
.y188{bottom:416.648000pt;}
.yc0{bottom:418.008000pt;}
.y42{bottom:418.482667pt;}
.y78{bottom:419.148000pt;}
.y139{bottom:421.546667pt;}
.y98{bottom:424.528000pt;}
.y15e{bottom:428.240000pt;}
.ye3{bottom:431.950667pt;}
.y114{bottom:432.321333pt;}
.ybf{bottom:433.948000pt;}
.y41{bottom:434.422667pt;}
.y138{bottom:437.486667pt;}
.y77{bottom:443.058667pt;}
.y187{bottom:443.214667pt;}
.y15d{bottom:444.180000pt;}
.ye2{bottom:447.890667pt;}
.y113{bottom:448.261333pt;}
.y97{bottom:449.398667pt;}
.ybe{bottom:449.888000pt;}
.y40{bottom:450.362667pt;}
.y137{bottom:453.426667pt;}
.y76{bottom:458.998667pt;}
.y186{bottom:459.154667pt;}
.y15c{bottom:460.120000pt;}
.y18{bottom:461.029333pt;}
.y112{bottom:464.201333pt;}
.ybd{bottom:465.828000pt;}
.y3f{bottom:466.302667pt;}
.y136{bottom:469.366667pt;}
.ye1{bottom:471.801333pt;}
.y74{bottom:474.938667pt;}
.y75{bottom:475.005333pt;}
.y185{bottom:475.096000pt;}
.y15b{bottom:476.060000pt;}
.y17{bottom:476.969333pt;}
.y111{bottom:480.142667pt;}
.ybc{bottom:481.769333pt;}
.y3e{bottom:482.244000pt;}
.y96{bottom:482.909333pt;}
.y135{bottom:485.308000pt;}
.ye0{bottom:487.741333pt;}
.y73{bottom:490.878667pt;}
.y184{bottom:491.036000pt;}
.y16{bottom:492.909333pt;}
.y110{bottom:496.082667pt;}
.ybb{bottom:497.709333pt;}
.y3d{bottom:498.184000pt;}
.y95{bottom:498.849333pt;}
.y134{bottom:501.248000pt;}
.y15a{bottom:501.682667pt;}
.ydf{bottom:503.681333pt;}
.y71{bottom:506.820000pt;}
.y72{bottom:506.885333pt;}
.y183{bottom:506.976000pt;}
.y15{bottom:508.849333pt;}
.yba{bottom:513.649333pt;}
.y3c{bottom:514.124000pt;}
.y94{bottom:514.789333pt;}
.y133{bottom:517.188000pt;}
.y159{bottom:517.622667pt;}
.yde{bottom:519.621333pt;}
.y70{bottom:522.760000pt;}
.y14{bottom:524.789333pt;}
.yb9{bottom:529.589333pt;}
.y3b{bottom:530.064000pt;}
.y93{bottom:530.729333pt;}
.y10f{bottom:530.924000pt;}
.y132{bottom:533.128000pt;}
.y182{bottom:533.542667pt;}
.y158{bottom:533.562667pt;}
.ydd{bottom:535.561333pt;}
.y6f{bottom:538.700000pt;}
.y13{bottom:540.729333pt;}
.yb8{bottom:545.529333pt;}
.y3a{bottom:546.004000pt;}
.y92{bottom:546.670667pt;}
.y10e{bottom:546.864000pt;}
.y181{bottom:549.482667pt;}
.y6e{bottom:554.640000pt;}
.y12{bottom:556.670667pt;}
.y157{bottom:559.185333pt;}
.ydc{bottom:559.472000pt;}
.yb7{bottom:561.470667pt;}
.y39{bottom:561.944000pt;}
.y90{bottom:562.610667pt;}
.y91{bottom:562.677333pt;}
.y10d{bottom:562.804000pt;}
.y180{bottom:565.424000pt;}
.y6d{bottom:570.580000pt;}
.y11{bottom:572.610667pt;}
.y156{bottom:575.125333pt;}
.ydb{bottom:575.412000pt;}
.yb6{bottom:577.410667pt;}
.y38{bottom:577.885333pt;}
.y8f{bottom:578.550667pt;}
.y10c{bottom:578.744000pt;}
.y17f{bottom:581.364000pt;}
.y10{bottom:588.550667pt;}
.yda{bottom:591.352000pt;}
.y37{bottom:593.825333pt;}
.y6c{bottom:594.490667pt;}
.y10b{bottom:594.684000pt;}
.y12e{bottom:596.334667pt;}
.y17e{bottom:597.304000pt;}
.y131{bottom:597.690667pt;}
.y155{bottom:600.748000pt;}
.yf{bottom:604.490667pt;}
.y130{bottom:609.380000pt;}
.y36{bottom:609.765333pt;}
.y6b{bottom:610.430667pt;}
.y10a{bottom:610.625333pt;}
.yb5{bottom:611.522667pt;}
.yd9{bottom:616.222667pt;}
.y154{bottom:616.689333pt;}
.yb4{bottom:620.089333pt;}
.ye{bottom:620.430667pt;}
.y12f{bottom:621.069333pt;}
.y17d{bottom:623.870667pt;}
.y6a{bottom:626.370667pt;}
.y153{bottom:632.629333pt;}
.y35{bottom:633.676000pt;}
.yd{bottom:636.372000pt;}
.y109{bottom:636.456000pt;}
.y12d{bottom:639.428000pt;}
.y17c{bottom:639.810667pt;}
.y69{bottom:642.312000pt;}
.y12b{bottom:646.264000pt;}
.y152{bottom:648.569333pt;}
.yb3{bottom:648.648000pt;}
.y34{bottom:649.616000pt;}
.yd8{bottom:649.733333pt;}
.y12c{bottom:651.889333pt;}
.yc{bottom:652.312000pt;}
.y17b{bottom:655.752000pt;}
.y68{bottom:658.252000pt;}
.yb2{bottom:664.588000pt;}
.y33{bottom:665.556000pt;}
.yd7{bottom:665.673333pt;}
.yb{bottom:668.252000pt;}
.y67{bottom:674.192000pt;}
.y108{bottom:674.542667pt;}
.yb1{bottom:680.528000pt;}
.y32{bottom:681.496000pt;}
.yd6{bottom:681.613333pt;}
.y17a{bottom:682.318667pt;}
.ya{bottom:684.192000pt;}
.y66{bottom:690.132000pt;}
.y107{bottom:690.482667pt;}
.y12a{bottom:694.394667pt;}
.y31{bottom:697.436000pt;}
.y179{bottom:698.258667pt;}
.y9{bottom:700.132000pt;}
.yb0{bottom:705.584000pt;}
.y8e{bottom:706.072000pt;}
.y106{bottom:706.422667pt;}
.yd5{bottom:706.460000pt;}
.y129{bottom:709.006667pt;}
.y30{bottom:713.377333pt;}
.y65{bottom:714.042667pt;}
.y178{bottom:714.198667pt;}
.yd4{bottom:715.572000pt;}
.y8{bottom:716.072000pt;}
.yaf{bottom:721.457333pt;}
.y8d{bottom:722.012000pt;}
.y105{bottom:722.362667pt;}
.y2f{bottom:729.317333pt;}
.y64{bottom:729.982667pt;}
.y7{bottom:732.013333pt;}
.y8c{bottom:737.953333pt;}
.y177{bottom:740.765333pt;}
.y63{bottom:745.922667pt;}
.y6{bottom:747.953333pt;}
.yae{bottom:752.226667pt;}
.y2e{bottom:753.226667pt;}
.y128{bottom:754.796000pt;}
.y176{bottom:756.706667pt;}
.y62{bottom:761.862667pt;}
.y5{bottom:763.893333pt;}
.yad{bottom:768.168000pt;}
.y2d{bottom:769.168000pt;}
.y127{bottom:770.736000pt;}
.y175{bottom:772.646667pt;}
.y104{bottom:774.417333pt;}
.y61{bottom:777.802667pt;}
.y151{bottom:784.009333pt;}
.y4{bottom:785.108000pt;}
.y126{bottom:786.676000pt;}
.y174{bottom:788.586667pt;}
.y103{bottom:790.357333pt;}
.yac{bottom:792.200000pt;}
.y60{bottom:793.744000pt;}
.y150{bottom:799.949333pt;}
.y125{bottom:802.616000pt;}
.y102{bottom:806.297333pt;}
.y5f{bottom:809.684000pt;}
.y173{bottom:815.153333pt;}
.y14f{bottom:815.889333pt;}
.y124{bottom:818.556000pt;}
.y101{bottom:818.780000pt;}
.y100{bottom:822.237333pt;}
.y5e{bottom:825.624000pt;}
.y172{bottom:831.093333pt;}
.y3{bottom:831.222667pt;}
.y14e{bottom:831.830667pt;}
.y123{bottom:834.496000pt;}
.yff{bottom:834.720000pt;}
.yfe{bottom:838.177333pt;}
.y171{bottom:847.034667pt;}
.y14d{bottom:847.770667pt;}
.y5d{bottom:851.454667pt;}
.yfd{bottom:854.117333pt;}
.y170{bottom:862.974667pt;}
.y14c{bottom:863.710667pt;}
.yfc{bottom:870.058667pt;}
.y145{bottom:870.150667pt;}
.y122{bottom:873.601333pt;}
.y16e{bottom:878.914667pt;}
.y16f{bottom:878.981333pt;}
.y14b{bottom:879.650667pt;}
.yfb{bottom:885.998667pt;}
.y5c{bottom:889.541333pt;}
.y14a{bottom:895.590667pt;}
.y2{bottom:897.525333pt;}
.yfa{bottom:901.938667pt;}
.y5b{bottom:905.481333pt;}
.y149{bottom:911.530667pt;}
.yf9{bottom:917.878667pt;}
.y5a{bottom:921.421333pt;}
.y1{bottom:921.436000pt;}
.y148{bottom:927.472000pt;}
.yf8{bottom:930.361333pt;}
.yf7{bottom:933.818667pt;}
.y59{bottom:937.361333pt;}
.y58{bottom:953.302667pt;}
.y16d{bottom:953.368000pt;}
.yf6{bottom:953.714667pt;}
.y57{bottom:983.854667pt;}
.h26{height:17.796209pt;}
.h23{height:18.388714pt;}
.h5{height:21.933807pt;}
.hd{height:25.477616pt;}
.h21{height:25.589197pt;}
.h24{height:25.812358pt;}
.h10{height:26.184294pt;}
.h7{height:32.661606pt;}
.h20{height:32.836730pt;}
.h6{height:32.900710pt;}
.h8{height:33.187635pt;}
.h27{height:36.290431pt;}
.h4{height:36.556100pt;}
.h9{height:36.874903pt;}
.ha{height:39.850400pt;}
.hb{height:41.178747pt;}
.h3{height:44.250180pt;}
.h1b{height:44.757616pt;}
.h1c{height:44.762949pt;}
.h2{height:44.874530pt;}
.hc{height:45.464294pt;}
.he{height:45.469628pt;}
.h22{height:48.117197pt;}
.h17{height:48.120294pt;}
.h11{height:48.125628pt;}
.hf{height:52.605355pt;}
.h1{height:53.100068pt;}
.h1f{height:55.008080pt;}
.h1e{height:59.298961pt;}
.h18{height:59.768550pt;}
.h13{height:59.976021pt;}
.h12{height:62.050961pt;}
.h25{height:65.407813pt;}
.h14{height:74.117067pt;}
.h15{height:75.791733pt;}
.h19{height:75.797067pt;}
.h1a{height:76.298400pt;}
.h1d{height:77.626747pt;}
.h16{height:89.048021pt;}
.h0{height:1056.000000pt;}
.w1{width:64.534632pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:2.886587pt;}
.x6e{left:15.832956pt;}
.x63{left:72.924000pt;}
.x6{left:73.920000pt;}
.x71{left:87.204000pt;}
.x7{left:89.557333pt;}
.x8{left:94.206667pt;}
.x2f{left:97.378667pt;}
.x5{left:100.488000pt;}
.x5c{left:109.785333pt;}
.x5d{left:110.697333pt;}
.x30{left:112.746667pt;}
.x2a{left:119.409333pt;}
.x33{left:135.926667pt;}
.x10{left:140.768000pt;}
.x3f{left:147.497333pt;}
.x34{left:150.458667pt;}
.x31{left:156.844000pt;}
.x70{left:162.724000pt;}
.x2d{left:169.926667pt;}
.x61{left:183.306667pt;}
.x48{left:184.381333pt;}
.x45{left:192.894667pt;}
.x4{left:200.264000pt;}
.x60{left:202.010667pt;}
.x5e{left:203.941333pt;}
.x64{left:207.872000pt;}
.x40{left:212.164000pt;}
.x62{left:213.238667pt;}
.x5f{left:216.869333pt;}
.x44{left:218.188000pt;}
.x46{left:223.649333pt;}
.x41{left:230.306667pt;}
.x59{left:232.910667pt;}
.x2e{left:233.857333pt;}
.x32{left:236.801333pt;}
.xd{left:239.766667pt;}
.x5a{left:246.136000pt;}
.x42{left:250.814667pt;}
.x49{left:254.370667pt;}
.x1{left:257.434667pt;}
.x5b{left:265.182667pt;}
.x2b{left:276.101333pt;}
.x35{left:280.653333pt;}
.x2c{left:285.968000pt;}
.x2{left:287.752000pt;}
.x43{left:290.945333pt;}
.x37{left:294.757333pt;}
.x3{left:296.161333pt;}
.xe{left:301.928000pt;}
.x3c{left:306.736000pt;}
.x36{left:307.841333pt;}
.xf{left:311.624000pt;}
.x3e{left:314.144000pt;}
.x39{left:324.950667pt;}
.x3a{left:344.785333pt;}
.x47{left:349.192000pt;}
.x3b{left:354.269333pt;}
.x3d{left:355.428000pt;}
.x38{left:360.286667pt;}
.xc{left:394.600000pt;}
.x14{left:408.366667pt;}
.x9{left:409.920000pt;}
.x69{left:415.074667pt;}
.x66{left:416.104000pt;}
.x76{left:422.208000pt;}
.x74{left:423.204000pt;}
.x67{left:424.306667pt;}
.x75{left:428.365333pt;}
.x6b{left:433.186667pt;}
.x6a{left:435.742667pt;}
.x72{left:444.464000pt;}
.x15{left:448.078667pt;}
.x65{left:450.400000pt;}
.x73{left:454.246667pt;}
.x4e{left:456.849333pt;}
.x4f{left:468.488000pt;}
.x16{left:476.588000pt;}
.x20{left:481.988000pt;}
.xa{left:483.424000pt;}
.x68{left:491.117333pt;}
.xb{left:492.822667pt;}
.x4c{left:494.401333pt;}
.x1d{left:518.468000pt;}
.x4a{left:521.322667pt;}
.x21{left:522.886667pt;}
.x25{left:526.577333pt;}
.x11{left:529.646667pt;}
.x17{left:532.988000pt;}
.x53{left:534.457333pt;}
.x12{left:539.390667pt;}
.x54{left:541.061333pt;}
.x26{left:543.848000pt;}
.x1b{left:554.608000pt;}
.x50{left:558.476000pt;}
.x1e{left:566.476000pt;}
.x27{left:568.625333pt;}
.x29{left:577.668000pt;}
.x28{left:586.121333pt;}
.x4d{left:594.836000pt;}
.x6c{left:602.369333pt;}
.x6d{left:613.298667pt;}
.x23{left:615.229333pt;}
.x1c{left:617.746667pt;}
.x58{left:641.089333pt;}
.x55{left:650.245333pt;}
.x22{left:655.317333pt;}
.x56{left:663.436000pt;}
.x1f{left:664.828000pt;}
.x18{left:667.854667pt;}
.x24{left:675.066667pt;}
.x57{left:677.060000pt;}
.x19{left:686.414667pt;}
.x51{left:690.178667pt;}
.x4b{left:692.009333pt;}
.x13{left:696.816000pt;}
.x52{left:711.378667pt;}
.x1a{left:720.266667pt;}
}




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