
    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_844c8194a6f2dba11cb43992.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_159e90f230c4da0fa8175ae3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ae9a82ebfffe3d664e27867a.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_acc28a29be960508fe980238.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_5de38666fe05fa25788853fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_11ac9c5342ac45690bc5728d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9513cc0e5d04adad1612bb59.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.186000;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_b0eccde5b64fb6593bf8ba9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0419fbe0cfd7e1db0e91484f.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.400000;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_f2a5df346d326ef58cc3d469.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_20228ef142c95fe8b12cba42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m25{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);}
.m22{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);}
.m8{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);}
.m1a{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);}
.m18{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);}
.m20{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);}
.m5{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);}
.m1e{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);}
.m23{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);}
.m1{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);}
.m17{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);}
.m1c{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);}
.m9{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);}
.m10{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);}
.m12{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);}
.me{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);}
.m7{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);}
.m13{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);}
.m11{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);}
.m26{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);}
.m27{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);}
.m29{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);}
.m1f{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);}
.m28{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);}
.m19{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);}
.mb{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);}
.m15{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);}
.mf{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);}
.m1b{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);}
.m24{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);}
.m3{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);}
.ma{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);}
.m16{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);}
.m21{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);}
.m14{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);}
.m6{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);}
.m1d{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);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v3{vertical-align:-86.976000px;}
.v8{vertical-align:-66.384000px;}
.v5{vertical-align:-23.892000px;}
.v9{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.892000px;}
.v7{vertical-align:42.492000px;}
.v6{vertical-align:66.384000px;}
.ls8{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000088px;}
.ls25{letter-spacing:0.000566px;}
.ls3{letter-spacing:0.000583px;}
.ls2a{letter-spacing:0.000800px;}
.ls24{letter-spacing:0.001036px;}
.ls20{letter-spacing:0.001132px;}
.ls2b{letter-spacing:0.001584px;}
.ls27{letter-spacing:0.002293px;}
.ls29{letter-spacing:0.002544px;}
.ls1f{letter-spacing:0.003668px;}
.ls9{letter-spacing:0.004403px;}
.ls1e{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.428370px;}
.ls1c{letter-spacing:0.434370px;}
.ls6{letter-spacing:0.503764px;}
.ls14{letter-spacing:0.548815px;}
.ls17{letter-spacing:0.572693px;}
.ls1d{letter-spacing:0.575393px;}
.ls18{letter-spacing:0.578693px;}
.ls13{letter-spacing:1.147200px;}
.lsb{letter-spacing:1.891200px;}
.ls12{letter-spacing:1.897200px;}
.ls2{letter-spacing:2.989200px;}
.lsa{letter-spacing:10.245483px;}
.lsf{letter-spacing:10.251483px;}
.lsd{letter-spacing:10.276200px;}
.ls11{letter-spacing:10.282200px;}
.ls0{letter-spacing:10.461300px;}
.lse{letter-spacing:10.995483px;}
.ls7{letter-spacing:11.954850px;}
.ls1a{letter-spacing:12.448524px;}
.ls19{letter-spacing:12.450728px;}
.lsc{letter-spacing:13.006741px;}
.ls10{letter-spacing:13.064012px;}
.ls2c{letter-spacing:13.378971px;}
.ls21{letter-spacing:13.448400px;}
.ls23{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.684274px;}
.ls15{letter-spacing:14.944200px;}
.ls1{letter-spacing:14.945108px;}
.ls28{letter-spacing:15.820988px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls16{letter-spacing:174.123746px;}
.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;}
}
.ws60{word-spacing:-47.324343px;}
.ws12{word-spacing:-14.943900px;}
.ws97{word-spacing:-13.449600px;}
.ws1b{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws35{word-spacing:-2.869229px;}
.ws94{word-spacing:-2.797517px;}
.ws5b{word-spacing:-2.689902px;}
.ws63{word-spacing:-2.630126px;}
.ws7e{word-spacing:-2.510575px;}
.ws39{word-spacing:-2.391024px;}
.ws3a{word-spacing:-2.331248px;}
.wsb8{word-spacing:-2.098138px;}
.ws81{word-spacing:-1.972595px;}
.ws40{word-spacing:-1.793268px;}
.ws59{word-spacing:-1.733492px;}
.wsb7{word-spacing:-1.613952px;}
.ws93{word-spacing:-1.344960px;}
.ws8a{word-spacing:-1.315063px;}
.ws8{word-spacing:-1.171598px;}
.ws8c{word-spacing:-1.135736px;}
.wsa{word-spacing:-1.046070px;}
.ws65{word-spacing:-1.016185px;}
.ws2c{word-spacing:-0.956410px;}
.ws98{word-spacing:-0.888351px;}
.ws9a{word-spacing:-0.860774px;}
.ws64{word-spacing:-0.836858px;}
.wsb9{word-spacing:-0.645581px;}
.ws3f{word-spacing:-0.418429px;}
.ws47{word-spacing:-0.358654px;}
.ws22{word-spacing:-0.322790px;}
.ws33{word-spacing:-0.298878px;}
.wsa2{word-spacing:-0.268992px;}
.ws3c{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.215194px;}
.ws30{word-spacing:-0.179327px;}
.wsba{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.083686px;}
.ws61{word-spacing:-0.062287px;}
.ws13{word-spacing:-0.059776px;}
.ws28{word-spacing:-0.053798px;}
.ws38{word-spacing:-0.047821px;}
.ws5c{word-spacing:-0.047338px;}
.ws7{word-spacing:-0.041843px;}
.ws6f{word-spacing:-0.005422px;}
.ws14{word-spacing:-0.002966px;}
.ws18{word-spacing:-0.002083px;}
.ws17{word-spacing:-0.001775px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.001225px;}
.ws19{word-spacing:0.003025px;}
.ws1a{word-spacing:0.047821px;}
.ws23{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.ws9e{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws7a{word-spacing:0.143462px;}
.ws9d{word-spacing:0.161395px;}
.ws42{word-spacing:0.179327px;}
.ws24{word-spacing:0.215194px;}
.ws41{word-spacing:0.239102px;}
.ws21{word-spacing:0.268992px;}
.ws57{word-spacing:0.298878px;}
.wsa7{word-spacing:0.322790px;}
.ws5a{word-spacing:0.358654px;}
.ws49{word-spacing:0.418429px;}
.ws79{word-spacing:0.478206px;}
.ws34{word-spacing:0.537980px;}
.wsbf{word-spacing:0.591782px;}
.ws84{word-spacing:0.597756px;}
.ws8e{word-spacing:0.645581px;}
.ws87{word-spacing:0.657532px;}
.ws89{word-spacing:0.717307px;}
.ws8f{word-spacing:0.860774px;}
.ws2e{word-spacing:0.896634px;}
.ws9{word-spacing:1.004227px;}
.ws6a{word-spacing:1.016185px;}
.ws8d{word-spacing:1.195512px;}
.ws3e{word-spacing:1.255288px;}
.ws86{word-spacing:1.434614px;}
.ws53{word-spacing:1.494390px;}
.ws6b{word-spacing:1.554166px;}
.ws6e{word-spacing:1.613941px;}
.ws9b{word-spacing:1.613952px;}
.ws69{word-spacing:1.673717px;}
.ws44{word-spacing:1.793268px;}
.ws1f{word-spacing:1.829146px;}
.ws43{word-spacing:2.032370px;}
.ws2f{word-spacing:2.151922px;}
.wsb4{word-spacing:2.151936px;}
.ws7f{word-spacing:2.211697px;}
.ws36{word-spacing:2.271473px;}
.wsb0{word-spacing:2.367130px;}
.ws26{word-spacing:2.420928px;}
.ws72{word-spacing:2.450800px;}
.ws3{word-spacing:2.509343px;}
.ws0{word-spacing:2.511541px;}
.ws25{word-spacing:2.528525px;}
.ws4b{word-spacing:2.630126px;}
.wsb2{word-spacing:2.797517px;}
.ws20{word-spacing:2.905114px;}
.ws7d{word-spacing:2.988780px;}
.ws4f{word-spacing:3.168107px;}
.wsc0{word-spacing:3.219082px;}
.ws29{word-spacing:3.219667px;}
.ws95{word-spacing:3.221194px;}
.wsb5{word-spacing:3.222154px;}
.wsbc{word-spacing:3.222250px;}
.wsa9{word-spacing:3.223411px;}
.ws90{word-spacing:3.224822px;}
.wsa4{word-spacing:3.225178px;}
.ws45{word-spacing:3.227882px;}
.ws27{word-spacing:3.281702px;}
.ws88{word-spacing:3.287658px;}
.wsab{word-spacing:3.443098px;}
.ws51{word-spacing:3.526760px;}
.wsb1{word-spacing:3.550694px;}
.ws2a{word-spacing:3.586536px;}
.ws4e{word-spacing:3.646312px;}
.ws46{word-spacing:3.765863px;}
.ws58{word-spacing:4.064741px;}
.ws92{word-spacing:4.088678px;}
.wsa3{word-spacing:4.196275px;}
.ws48{word-spacing:4.244068px;}
.ws4a{word-spacing:4.303843px;}
.ws91{word-spacing:4.411469px;}
.wsad{word-spacing:4.572864px;}
.ws54{word-spacing:4.662497px;}
.ws10{word-spacing:4.770079px;}
.ws5d{word-spacing:4.782048px;}
.ws4d{word-spacing:4.841824px;}
.ws11{word-spacing:4.853765px;}
.ws67{word-spacing:5.021150px;}
.wsa5{word-spacing:5.164646px;}
.ws68{word-spacing:5.320028px;}
.ws6d{word-spacing:5.379804px;}
.ws85{word-spacing:5.559131px;}
.ws52{word-spacing:5.738458px;}
.ws8b{word-spacing:5.858009px;}
.ws82{word-spacing:6.336214px;}
.ws3d{word-spacing:6.455765px;}
.ws32{word-spacing:6.515540px;}
.ws73{word-spacing:6.575316px;}
.ws6c{word-spacing:6.814418px;}
.ws70{word-spacing:6.933970px;}
.ws56{word-spacing:6.993745px;}
.ws1e{word-spacing:7.101389px;}
.ws66{word-spacing:7.232848px;}
.ws5e{word-spacing:7.651277px;}
.ws2b{word-spacing:7.770828px;}
.wse{word-spacing:7.782761px;}
.ws83{word-spacing:8.009930px;}
.ws50{word-spacing:8.249033px;}
.ws71{word-spacing:8.308808px;}
.ws5{word-spacing:10.418056px;}
.ws80{word-spacing:10.819384px;}
.ws9c{word-spacing:11.997043px;}
.wsc{word-spacing:12.176255px;}
.ws99{word-spacing:12.481229px;}
.ws4{word-spacing:12.929425px;}
.wsbb{word-spacing:13.234406px;}
.wsbe{word-spacing:13.388314px;}
.wsc1{word-spacing:13.390358px;}
.wsac{word-spacing:13.390579px;}
.wsb6{word-spacing:13.391424px;}
.wsae{word-spacing:13.392192px;}
.wsbd{word-spacing:13.393363px;}
.wsa8{word-spacing:13.393498px;}
.ws96{word-spacing:13.395802px;}
.wsa6{word-spacing:13.557197px;}
.wsa1{word-spacing:13.610995px;}
.ws37{word-spacing:14.776565px;}
.ws55{word-spacing:14.884124px;}
.wsaf{word-spacing:15.224947px;}
.wsd{word-spacing:16.109478px;}
.ws9f{word-spacing:16.615920px;}
.wsb3{word-spacing:16.620883px;}
.wsaa{word-spacing:16.623706px;}
.ws4c{word-spacing:18.470660px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws5f{word-spacing:32.398375px;}
.ws62{word-spacing:41.185388px;}
.ws7b{word-spacing:67.857431px;}
.wsa0{word-spacing:75.317760px;}
.ws76{word-spacing:91.767731px;}
.ws78{word-spacing:95.736841px;}
.ws7c{word-spacing:103.722881px;}
.ws77{word-spacing:115.678031px;}
.ws75{word-spacing:140.927308px;}
.ws74{word-spacing:268.560490px;}
._4f{margin-left:-20.216221px;}
._1d{margin-left:-8.916299px;}
._4d{margin-left:-7.738417px;}
._15{margin-left:-6.575316px;}
._9{margin-left:-5.559075px;}
._8{margin-left:-4.399495px;}
._21{margin-left:-3.347434px;}
._4{margin-left:-2.301354px;}
._6{margin-left:-1.066253px;}
._4b{width:1.000957px;}
._3{width:2.301354px;}
._7{width:3.681846px;}
._0{width:10.460700px;}
._10{width:11.955150px;}
._2{width:12.971268px;}
._4c{width:14.059222px;}
._1e{width:15.173906px;}
._a{width:16.354714px;}
._d{width:17.412851px;}
._f{width:18.649987px;}
._b{width:20.550989px;}
._13{width:21.688835px;}
._c{width:22.702925px;}
._e{width:24.747098px;}
._1{width:25.946136px;}
._49{width:27.664289px;}
._16{width:29.122423px;}
._5{width:30.587087px;}
._14{width:31.920170px;}
._1f{width:34.072092px;}
._20{width:35.207828px;}
._1c{width:36.515163px;}
._23{width:42.660306px;}
._22{width:44.094921px;}
._4e{width:61.868160px;}
._41{width:79.669120px;}
._45{width:88.324648px;}
._2c{width:91.815552px;}
._3b{width:93.011342px;}
._2d{width:96.286666px;}
._46{width:100.290899px;}
._44{width:103.770702px;}
._2e{width:107.691991px;}
._35{width:109.224919px;}
._3f{width:110.699353px;}
._31{width:112.521872px;}
._2f{width:115.678031px;}
._34{width:120.220988px;}
._37{width:121.797913px;}
._29{width:127.681002px;}
._3c{width:133.515115px;}
._48{width:146.904883px;}
._2a{width:148.882451px;}
._38{width:151.830405px;}
._42{width:168.041588px;}
._33{width:179.996738px;}
._43{width:186.165596px;}
._3a{width:190.804194px;}
._30{width:195.155869px;}
._40{width:196.447025px;}
._2b{width:198.120746px;}
._1a{width:204.326323px;}
._32{width:208.402175px;}
._3e{width:210.314999px;}
._47{width:219.209630px;}
._36{width:225.617591px;}
._39{width:231.164780px;}
._27{width:287.162703px;}
._26{width:293.809766px;}
._1b{width:336.132403px;}
._17{width:342.845226px;}
._11{width:432.983214px;}
._18{width:447.333696px;}
._28{width:723.095293px;}
._19{width:925.493875px;}
._3d{width:1914.040877px;}
._25{width:1947.232877px;}
._4a{width:2011.511773px;}
._12{width:2035.421773px;}
._24{width:3513.401773px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(40,82,46);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fse{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs5{font-size:45.429600px;}
.fsc{font-size:47.337600px;}
.fs7{font-size:47.820600px;}
.fsd{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:60.474240px;}
.fsb{font-size:62.286600px;}
.fs4{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1d{bottom:6.350457px;}
.y1c{bottom:20.308195px;}
.y4f{bottom:31.890000px;}
.y1b{bottom:37.114269px;}
.yb3{bottom:94.246500px;}
.y4e{bottom:103.621500px;}
.y19{bottom:104.646000px;}
.y151{bottom:105.399000px;}
.y85{bottom:105.847500px;}
.y184{bottom:106.281000px;}
.yb1{bottom:113.076000px;}
.yb2{bottom:118.501500px;}
.y4d{bottom:122.449500px;}
.y18{bottom:122.535000px;}
.y183{bottom:123.541500px;}
.y150{bottom:124.228500px;}
.y84{bottom:124.677000px;}
.y1bd{bottom:124.752000px;}
.yb0{bottom:131.905500px;}
.y17{bottom:140.422500px;}
.y182{bottom:140.802000px;}
.y4c{bottom:141.279000px;}
.y1bc{bottom:142.012500px;}
.y14f{bottom:143.058000px;}
.y83{bottom:143.506500px;}
.yaf{bottom:150.735000px;}
.y181{bottom:158.062500px;}
.y16{bottom:158.310000px;}
.y1bb{bottom:159.273000px;}
.y4b{bottom:160.108500px;}
.y14e{bottom:161.887500px;}
.y82{bottom:162.336000px;}
.yae{bottom:169.564500px;}
.y180{bottom:175.323000px;}
.y15{bottom:176.199000px;}
.y1ba{bottom:176.533500px;}
.y4a{bottom:178.938000px;}
.y14d{bottom:180.717000px;}
.y81{bottom:181.165500px;}
.y17f{bottom:192.583500px;}
.y1b9{bottom:193.794000px;}
.y14{bottom:194.086500px;}
.yac{bottom:195.394500px;}
.yf5{bottom:196.930500px;}
.y49{bottom:197.767500px;}
.y119{bottom:198.424500px;}
.y14c{bottom:199.546500px;}
.y80{bottom:199.995000px;}
.y17e{bottom:209.844000px;}
.y1b8{bottom:211.053000px;}
.yf3{bottom:211.126500px;}
.y13{bottom:211.974000px;}
.y117{bottom:212.620500px;}
.yf4{bottom:215.466000px;}
.y48{bottom:216.597000px;}
.y118{bottom:216.961500px;}
.yad{bottom:217.138500px;}
.y14b{bottom:218.376000px;}
.y7f{bottom:218.824500px;}
.yab{bottom:224.013000px;}
.yf2{bottom:225.324000px;}
.y116{bottom:226.818000px;}
.y17d{bottom:227.104500px;}
.y1b7{bottom:228.313500px;}
.y12{bottom:229.863000px;}
.y47{bottom:235.426500px;}
.y14a{bottom:237.205500px;}
.y7e{bottom:242.137500px;}
.ya9{bottom:242.842500px;}
.y17c{bottom:244.365000px;}
.y1b6{bottom:245.574000px;}
.yf1{bottom:246.483000px;}
.y115{bottom:247.978500px;}
.yaa{bottom:248.266500px;}
.y46{bottom:254.256000px;}
.y149{bottom:256.035000px;}
.yf0{bottom:260.680500px;}
.y17b{bottom:261.624000px;}
.ya7{bottom:261.672000px;}
.y114{bottom:262.174500px;}
.y7d{bottom:262.311000px;}
.y1b5{bottom:262.834500px;}
.ya8{bottom:267.096000px;}
.y45{bottom:273.085500px;}
.y148{bottom:274.864500px;}
.yef{bottom:274.876500px;}
.yd0{bottom:276.210000px;}
.y113{bottom:276.372000px;}
.y17a{bottom:278.884500px;}
.y1b4{bottom:280.095000px;}
.ya5{bottom:280.501500px;}
.ya6{bottom:285.925500px;}
.yee{bottom:289.074000px;}
.y112{bottom:290.568000px;}
.y44{bottom:291.915000px;}
.y147{bottom:293.694000px;}
.ycf{bottom:295.039500px;}
.y7c{bottom:295.935000px;}
.y179{bottom:296.145000px;}
.y1b3{bottom:297.355500px;}
.ya4{bottom:299.331000px;}
.y11{bottom:300.154500px;}
.yed{bottom:303.270000px;}
.y111{bottom:304.765500px;}
.y43{bottom:310.744500px;}
.y146{bottom:312.523500px;}
.y178{bottom:313.405500px;}
.yce{bottom:313.869000px;}
.y1b2{bottom:314.616000px;}
.y7b{bottom:314.764500px;}
.yec{bottom:317.467500px;}
.y10{bottom:318.043500px;}
.y110{bottom:318.961500px;}
.ya3{bottom:322.642500px;}
.y42{bottom:329.574000px;}
.y177{bottom:330.666000px;}
.y145{bottom:331.353000px;}
.yeb{bottom:331.663500px;}
.y1b1{bottom:331.876500px;}
.ycd{bottom:332.698500px;}
.y10f{bottom:333.159000px;}
.y7a{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.yea{bottom:345.861000px;}
.y10e{bottom:347.355000px;}
.y176{bottom:347.926500px;}
.y41{bottom:348.403500px;}
.y1b0{bottom:349.135500px;}
.y144{bottom:350.182500px;}
.ycc{bottom:351.528000px;}
.y79{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.ya2{bottom:356.266500px;}
.ye9{bottom:360.057000px;}
.y10d{bottom:361.552500px;}
.y175{bottom:365.187000px;}
.y1af{bottom:366.396000px;}
.y40{bottom:367.233000px;}
.y143{bottom:369.012000px;}
.ycb{bottom:370.357500px;}
.y78{bottom:371.253000px;}
.ye8{bottom:374.254500px;}
.ya0{bottom:375.096000px;}
.y10c{bottom:375.748500px;}
.ya1{bottom:380.521500px;}
.yd{bottom:380.673000px;}
.y174{bottom:382.447500px;}
.y1ae{bottom:383.656500px;}
.y3f{bottom:386.062500px;}
.y142{bottom:387.841500px;}
.ye7{bottom:388.450500px;}
.yca{bottom:389.187000px;}
.y10b{bottom:389.946000px;}
.y77{bottom:390.082500px;}
.y9f{bottom:393.925500px;}
.yc{bottom:398.562000px;}
.y1ad{bottom:400.917000px;}
.ye6{bottom:402.648000px;}
.y10a{bottom:404.142000px;}
.y173{bottom:404.190000px;}
.y141{bottom:406.671000px;}
.yc9{bottom:408.015000px;}
.y76{bottom:408.912000px;}
.y3e{bottom:409.375500px;}
.y9e{bottom:412.755000px;}
.yb{bottom:416.449500px;}
.y1ac{bottom:418.177500px;}
.ye5{bottom:424.047000px;}
.y140{bottom:425.500500px;}
.y109{bottom:425.541000px;}
.yc8{bottom:426.844500px;}
.y75{bottom:427.741500px;}
.y9d{bottom:431.584500px;}
.y1ab{bottom:435.438000px;}
.y172{bottom:437.814000px;}
.y13f{bottom:444.330000px;}
.ya{bottom:444.798000px;}
.ye4{bottom:445.446000px;}
.yc7{bottom:445.674000px;}
.y74{bottom:446.571000px;}
.y108{bottom:446.940000px;}
.y9c{bottom:450.414000px;}
.y1aa{bottom:452.698500px;}
.y13e{bottom:463.159500px;}
.y171{bottom:464.355000px;}
.yc6{bottom:464.503500px;}
.y73{bottom:465.400500px;}
.ye3{bottom:466.845000px;}
.y107{bottom:468.339000px;}
.y9b{bottom:469.243500px;}
.y1a9{bottom:469.959000px;}
.y9{bottom:471.652500px;}
.y13d{bottom:481.989000px;}
.yc5{bottom:483.333000px;}
.y3d{bottom:484.176000px;}
.y72{bottom:484.230000px;}
.y1a8{bottom:487.219500px;}
.y9a{bottom:488.073000px;}
.ye2{bottom:488.244000px;}
.y8{bottom:489.540000px;}
.y106{bottom:489.738000px;}
.y170{bottom:490.896000px;}
.y13c{bottom:500.818500px;}
.yc4{bottom:502.162500px;}
.ye1{bottom:502.441500px;}
.y71{bottom:503.059500px;}
.y105{bottom:503.935500px;}
.y1a7{bottom:504.478500px;}
.y99{bottom:506.902500px;}
.y7{bottom:507.429000px;}
.ye0{bottom:516.637500px;}
.y16f{bottom:517.435500px;}
.y104{bottom:518.131500px;}
.y13b{bottom:519.648000px;}
.yc3{bottom:520.992000px;}
.y3c{bottom:521.565000px;}
.y1a6{bottom:521.739000px;}
.y70{bottom:521.889000px;}
.y6{bottom:525.316500px;}
.y98{bottom:525.732000px;}
.ydf{bottom:530.835000px;}
.y103{bottom:532.329000px;}
.y16e{bottom:535.009500px;}
.y13a{bottom:538.476000px;}
.y1a5{bottom:538.999500px;}
.yc2{bottom:539.821500px;}
.y6f{bottom:540.718500px;}
.y3b{bottom:541.023000px;}
.y5{bottom:543.204000px;}
.y96{bottom:544.561500px;}
.yde{bottom:545.031000px;}
.y102{bottom:546.525000px;}
.y97{bottom:549.985500px;}
.y1a4{bottom:556.260000px;}
.y139{bottom:557.305500px;}
.yc1{bottom:558.651000px;}
.ydd{bottom:559.228500px;}
.y6e{bottom:559.548000px;}
.y3a{bottom:560.479500px;}
.y101{bottom:560.722500px;}
.y4{bottom:561.093000px;}
.y16d{bottom:561.550500px;}
.y95{bottom:567.874500px;}
.ydc{bottom:573.424500px;}
.y1a3{bottom:573.520500px;}
.y100{bottom:574.918500px;}
.y138{bottom:576.135000px;}
.yc0{bottom:577.480500px;}
.y6d{bottom:578.377500px;}
.y3{bottom:578.980500px;}
.y39{bottom:579.936000px;}
.ydb{bottom:587.620500px;}
.y16c{bottom:588.091500px;}
.yff{bottom:589.116000px;}
.y1a2{bottom:590.781000px;}
.y137{bottom:594.964500px;}
.ybf{bottom:596.310000px;}
.y2{bottom:596.868000px;}
.y6c{bottom:597.207000px;}
.y38{bottom:599.394000px;}
.yda{bottom:601.818000px;}
.yfe{bottom:603.312000px;}
.y16b{bottom:605.665500px;}
.y1a1{bottom:608.041500px;}
.y94{bottom:610.197000px;}
.y136{bottom:613.794000px;}
.y1{bottom:614.757000px;}
.yd9{bottom:616.014000px;}
.y6b{bottom:616.036500px;}
.yfd{bottom:617.509500px;}
.y37{bottom:618.850500px;}
.ybe{bottom:619.623000px;}
.y16a{bottom:623.239500px;}
.y1a0{bottom:625.302000px;}
.y93{bottom:626.635500px;}
.yd8{bottom:630.211500px;}
.yfc{bottom:631.705500px;}
.y135{bottom:632.623500px;}
.y6a{bottom:634.866000px;}
.y36{bottom:638.307000px;}
.y169{bottom:640.813500px;}
.y19f{bottom:642.561000px;}
.y92{bottom:643.074000px;}
.yd7{bottom:644.407500px;}
.yfb{bottom:645.903000px;}
.y134{bottom:651.453000px;}
.ybd{bottom:653.247000px;}
.y69{bottom:653.695500px;}
.y34{bottom:657.765000px;}
.y168{bottom:658.387500px;}
.y91{bottom:659.512500px;}
.y19e{bottom:659.821500px;}
.y35{bottom:662.647500px;}
.yd6{bottom:665.808000px;}
.yfa{bottom:667.302000px;}
.y133{bottom:670.282500px;}
.ybc{bottom:672.076500px;}
.y68{bottom:672.525000px;}
.y19d{bottom:677.082000px;}
.y32{bottom:677.221500px;}
.y33{bottom:682.104000px;}
.y90{bottom:683.154000px;}
.yd3{bottom:687.169500px;}
.yd5{bottom:687.207000px;}
.yf7{bottom:688.665000px;}
.yf9{bottom:688.701000px;}
.y11a{bottom:688.798500px;}
.y132{bottom:689.112000px;}
.yba{bottom:690.906000px;}
.y67{bottom:691.354500px;}
.y167{bottom:693.894000px;}
.y19c{bottom:694.342500px;}
.ybb{bottom:696.330000px;}
.y31{bottom:696.679500px;}
.y131{bottom:707.941500px;}
.yd4{bottom:708.606000px;}
.yb9{bottom:709.735500px;}
.yf8{bottom:710.100000px;}
.y66{bottom:710.184000px;}
.y19b{bottom:711.603000px;}
.y166{bottom:712.723500px;}
.y8f{bottom:714.772500px;}
.y2f{bottom:716.136000px;}
.y30{bottom:721.018500px;}
.y130{bottom:726.771000px;}
.yb8{bottom:728.565000px;}
.y19a{bottom:728.863500px;}
.y65{bottom:729.013500px;}
.y165{bottom:731.553000px;}
.y2e{bottom:735.592500px;}
.yd2{bottom:738.655500px;}
.yf6{bottom:740.151000px;}
.y12f{bottom:745.600500px;}
.y199{bottom:746.124000px;}
.y8e{bottom:747.394500px;}
.y64{bottom:747.843000px;}
.y164{bottom:750.382500px;}
.y2d{bottom:755.050500px;}
.y198{bottom:763.384500px;}
.y12e{bottom:764.430000px;}
.y8d{bottom:766.224000px;}
.y63{bottom:766.671000px;}
.y163{bottom:769.212000px;}
.y2c{bottom:774.507000px;}
.y197{bottom:780.645000px;}
.y12d{bottom:783.259500px;}
.y8c{bottom:785.053500px;}
.y62{bottom:785.500500px;}
.y162{bottom:788.041500px;}
.y2b{bottom:793.963500px;}
.y196{bottom:797.904000px;}
.yd1{bottom:801.433500px;}
.y12c{bottom:802.089000px;}
.y8b{bottom:803.883000px;}
.y61{bottom:804.330000px;}
.y161{bottom:806.871000px;}
.y2a{bottom:813.421500px;}
.y195{bottom:815.164500px;}
.y12b{bottom:820.918500px;}
.y8a{bottom:822.712500px;}
.y60{bottom:823.159500px;}
.y160{bottom:825.700500px;}
.y194{bottom:832.425000px;}
.y12a{bottom:839.748000px;}
.y89{bottom:841.540500px;}
.y5f{bottom:841.989000px;}
.y15f{bottom:844.530000px;}
.y193{bottom:849.685500px;}
.y29{bottom:850.008000px;}
.y129{bottom:858.577500px;}
.y88{bottom:860.370000px;}
.y5e{bottom:860.818500px;}
.y15e{bottom:863.359500px;}
.y28{bottom:866.148000px;}
.y192{bottom:866.946000px;}
.y128{bottom:877.407000px;}
.y87{bottom:879.199500px;}
.y5d{bottom:879.648000px;}
.y191{bottom:884.206500px;}
.y27{bottom:886.627500px;}
.y15d{bottom:886.672500px;}
.y127{bottom:896.236500px;}
.yb7{bottom:898.029000px;}
.y26{bottom:898.426500px;}
.y5c{bottom:898.477500px;}
.y190{bottom:901.467000px;}
.y86{bottom:902.512500px;}
.y126{bottom:915.066000px;}
.yb6{bottom:916.858500px;}
.y5b{bottom:917.307000px;}
.y18f{bottom:918.727500px;}
.y25{bottom:918.906000px;}
.y15c{bottom:920.296500px;}
.y24{bottom:930.706500px;}
.y125{bottom:933.895500px;}
.y23{bottom:935.046000px;}
.y18e{bottom:935.986500px;}
.y5a{bottom:936.136500px;}
.y15b{bottom:939.126000px;}
.yb5{bottom:940.171500px;}
.y124{bottom:952.725000px;}
.y18d{bottom:953.247000px;}
.y59{bottom:954.966000px;}
.y15a{bottom:957.955500px;}
.y18c{bottom:970.507500px;}
.y123{bottom:971.554500px;}
.y58{bottom:973.795500px;}
.y159{bottom:976.785000px;}
.y22{bottom:977.724000px;}
.y18b{bottom:987.768000px;}
.y122{bottom:990.384000px;}
.y57{bottom:992.625000px;}
.y158{bottom:995.614500px;}
.y21{bottom:996.553500px;}
.y18a{bottom:1005.028500px;}
.y121{bottom:1009.213500px;}
.y56{bottom:1011.454500px;}
.y157{bottom:1014.444000px;}
.yb4{bottom:1016.878500px;}
.y189{bottom:1022.289000px;}
.y120{bottom:1028.043000px;}
.y55{bottom:1030.284000px;}
.y156{bottom:1033.272000px;}
.y20{bottom:1036.884000px;}
.y188{bottom:1039.549500px;}
.y11f{bottom:1046.871000px;}
.y54{bottom:1049.113500px;}
.y155{bottom:1052.101500px;}
.y187{bottom:1056.810000px;}
.y1f{bottom:1065.127500px;}
.y11e{bottom:1065.700500px;}
.y53{bottom:1067.943000px;}
.y154{bottom:1070.931000px;}
.y186{bottom:1074.070500px;}
.y11d{bottom:1084.530000px;}
.y52{bottom:1086.772500px;}
.y153{bottom:1089.760500px;}
.y185{bottom:1091.329500px;}
.y1e{bottom:1093.372500px;}
.y51{bottom:1105.602000px;}
.y11c{bottom:1107.843000px;}
.y152{bottom:1108.590000px;}
.y1a{bottom:1136.859000px;}
.y50{bottom:1168.366500px;}
.y11b{bottom:1171.354500px;}
.h14{height:2.391024px;}
.h9{height:32.565965px;}
.h19{height:33.186380px;}
.h18{height:34.574294px;}
.hd{height:37.334628px;}
.h2{height:37.993262px;}
.hb{height:38.896243px;}
.h4{height:39.402747px;}
.h5{height:41.001535px;}
.h12{height:41.250077px;}
.h10{height:41.482876px;}
.h11{height:41.783144px;}
.he{height:43.217759px;}
.ha{height:43.421105px;}
.h6{height:43.815515px;}
.hc{height:48.848947px;}
.h1b{height:49.117939px;}
.h1a{height:49.923965px;}
.h3{height:50.931027px;}
.hf{height:54.276245px;}
.h13{height:54.575123px;}
.h8{height:55.352206px;}
.h15{height:62.946077px;}
.h7{height:77.792486px;}
.h16{height:892.914000px;}
.h17{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:59.014071px;}
.x6c{left:74.769000px;}
.x6e{left:76.005000px;}
.x7c{left:77.524500px;}
.x65{left:82.843500px;}
.x70{left:85.743000px;}
.x6a{left:86.836500px;}
.x68{left:90.567000px;}
.x69{left:92.115000px;}
.x6b{left:93.138000px;}
.x6f{left:95.833500px;}
.x6d{left:97.441500px;}
.x67{left:172.630500px;}
.x9a{left:177.142500px;}
.x66{left:192.739500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x16{left:261.583500px;}
.x17{left:265.639500px;}
.x4{left:269.742000px;}
.x41{left:280.452000px;}
.x24{left:281.479500px;}
.x18{left:289.315500px;}
.x57{left:292.032000px;}
.x42{left:297.490500px;}
.x19{left:303.897000px;}
.x6{left:308.155500px;}
.x85{left:318.739500px;}
.x9{left:322.357500px;}
.x5f{left:323.965500px;}
.x86{left:333.684000px;}
.x87{left:337.458000px;}
.x5b{left:338.511000px;}
.x39{left:343.531500px;}
.x37{left:344.962500px;}
.x88{left:352.401000px;}
.x5c{left:353.455500px;}
.x5d{left:357.265500px;}
.x3a{left:358.476000px;}
.x38{left:359.905500px;}
.x33{left:367.782000px;}
.x99{left:371.028000px;}
.x5e{left:372.210000px;}
.x34{left:382.725000px;}
.x51{left:386.259000px;}
.x64{left:388.134000px;}
.x52{left:390.241500px;}
.x59{left:396.343500px;}
.x71{left:398.805000px;}
.x72{left:402.409500px;}
.x1e{left:405.481500px;}
.x1f{left:409.537500px;}
.x5a{left:411.235500px;}
.x53{left:415.611000px;}
.x49{left:418.756500px;}
.x73{left:423.304500px;}
.x95{left:426.888000px;}
.x54{left:430.521000px;}
.x20{left:433.213500px;}
.x74{left:435.909000px;}
.x21{left:447.795000px;}
.x43{left:451.231500px;}
.xa{left:458.674500px;}
.x8e{left:465.124500px;}
.x44{left:468.270000px;}
.xb{left:473.635500px;}
.x1a{left:476.767500px;}
.x1b{left:480.823500px;}
.x30{left:484.770000px;}
.x31{left:492.241500px;}
.x98{left:494.631000px;}
.x2e{left:501.658500px;}
.x1c{left:504.499500px;}
.x2f{left:509.131500px;}
.x94{left:515.080500px;}
.x1d{left:519.081000px;}
.xe{left:529.482000px;}
.xf{left:533.536500px;}
.x10{left:541.393500px;}
.x8b{left:550.675500px;}
.x3e{left:554.811000px;}
.x11{left:555.975000px;}
.x8c{left:565.620000px;}
.x3f{left:569.755500px;}
.x2b{left:570.924000px;}
.x2c{left:578.395500px;}
.x93{left:580.933500px;}
.x8d{left:584.374500px;}
.x8f{left:588.141000px;}
.x60{left:599.962500px;}
.x90{left:603.085500px;}
.x61{left:604.468500px;}
.x9e{left:609.088500px;}
.x91{left:610.707000px;}
.x62{left:613.134000px;}
.x75{left:617.883000px;}
.x76{left:621.487500px;}
.x92{left:625.650000px;}
.xc{left:629.685000px;}
.x9f{left:635.988000px;}
.x96{left:642.187500px;}
.x27{left:643.257000px;}
.xd{left:644.646000px;}
.x28{left:650.730000px;}
.x77{left:654.988500px;}
.x97{left:657.132000px;}
.x45{left:661.387500px;}
.x48{left:663.615000px;}
.x84{left:691.056000px;}
.x4a{left:699.634500px;}
.x46{left:701.571000px;}
.x4b{left:703.617000px;}
.x35{left:705.408000px;}
.x47{left:709.041000px;}
.x22{left:712.756500px;}
.x25{left:716.119500px;}
.x2d{left:717.127500px;}
.x36{left:720.352500px;}
.x26{left:723.591000px;}
.x23{left:724.671000px;}
.x4c{left:726.955500px;}
.x40{left:728.037000px;}
.x9c{left:734.277000px;}
.x4d{left:746.581500px;}
.x4e{left:750.564000px;}
.x9b{left:751.638000px;}
.x80{left:756.837000px;}
.x9d{left:761.176500px;}
.x7d{left:762.231000px;}
.x89{left:769.134000px;}
.x81{left:771.780000px;}
.x4f{left:775.045500px;}
.x7e{left:777.174000px;}
.x82{left:779.401500px;}
.x58{left:780.982500px;}
.x8a{left:784.078500px;}
.x55{left:788.169000px;}
.x50{left:789.955500px;}
.x56{left:792.151500px;}
.x83{left:794.346000px;}
.x7f{left:795.780000px;}
.x3b{left:799.441500px;}
.x7{left:801.147000px;}
.x63{left:804.562500px;}
.x12{left:809.344500px;}
.x13{left:813.399000px;}
.x32{left:816.951000px;}
.x3c{left:818.046000px;}
.x14{left:821.256000px;}
.x29{left:824.422500px;}
.x2a{left:831.894000px;}
.x3d{left:832.990500px;}
.x15{left:835.837500px;}
.x8{left:837.300000px;}
.x78{left:1166.323500px;}
.x79{left:1169.928000px;}
.x7a{left:1190.823000px;}
.x7b{left:1203.429000px;}
@media print{
.v3{vertical-align:-77.312000pt;}
.v8{vertical-align:-59.008000pt;}
.v5{vertical-align:-21.237333pt;}
.v9{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.237333pt;}
.v7{vertical-align:37.770667pt;}
.v6{vertical-align:59.008000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000078pt;}
.ls25{letter-spacing:0.000503pt;}
.ls3{letter-spacing:0.000518pt;}
.ls2a{letter-spacing:0.000711pt;}
.ls24{letter-spacing:0.000921pt;}
.ls20{letter-spacing:0.001006pt;}
.ls2b{letter-spacing:0.001408pt;}
.ls27{letter-spacing:0.002038pt;}
.ls29{letter-spacing:0.002262pt;}
.ls1f{letter-spacing:0.003261pt;}
.ls9{letter-spacing:0.003914pt;}
.ls1e{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.380773pt;}
.ls1c{letter-spacing:0.386106pt;}
.ls6{letter-spacing:0.447791pt;}
.ls14{letter-spacing:0.487835pt;}
.ls17{letter-spacing:0.509060pt;}
.ls1d{letter-spacing:0.511460pt;}
.ls18{letter-spacing:0.514393pt;}
.ls13{letter-spacing:1.019733pt;}
.lsb{letter-spacing:1.681067pt;}
.ls12{letter-spacing:1.686400pt;}
.ls2{letter-spacing:2.657067pt;}
.lsa{letter-spacing:9.107096pt;}
.lsf{letter-spacing:9.112429pt;}
.lsd{letter-spacing:9.134400pt;}
.ls11{letter-spacing:9.139733pt;}
.ls0{letter-spacing:9.298933pt;}
.lse{letter-spacing:9.773762pt;}
.ls7{letter-spacing:10.626533pt;}
.ls1a{letter-spacing:11.065354pt;}
.ls19{letter-spacing:11.067314pt;}
.lsc{letter-spacing:11.561548pt;}
.ls10{letter-spacing:11.612455pt;}
.ls2c{letter-spacing:11.892419pt;}
.ls21{letter-spacing:11.954133pt;}
.ls23{letter-spacing:11.959467pt;}
.ls26{letter-spacing:12.163799pt;}
.ls15{letter-spacing:13.283733pt;}
.ls1{letter-spacing:13.284541pt;}
.ls28{letter-spacing:14.063101pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls16{letter-spacing:154.776663pt;}
.ws60{word-spacing:-42.066082pt;}
.ws12{word-spacing:-13.283467pt;}
.ws97{word-spacing:-11.955200pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws15{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws35{word-spacing:-2.550426pt;}
.ws94{word-spacing:-2.486682pt;}
.ws5b{word-spacing:-2.391024pt;}
.ws63{word-spacing:-2.337890pt;}
.ws7e{word-spacing:-2.231622pt;}
.ws39{word-spacing:-2.125355pt;}
.ws3a{word-spacing:-2.072221pt;}
.wsb8{word-spacing:-1.865011pt;}
.ws81{word-spacing:-1.753418pt;}
.ws40{word-spacing:-1.594016pt;}
.ws59{word-spacing:-1.540882pt;}
.wsb7{word-spacing:-1.434624pt;}
.ws93{word-spacing:-1.195520pt;}
.ws8a{word-spacing:-1.168945pt;}
.ws8{word-spacing:-1.041421pt;}
.ws8c{word-spacing:-1.009543pt;}
.wsa{word-spacing:-0.929840pt;}
.ws65{word-spacing:-0.903276pt;}
.ws2c{word-spacing:-0.850142pt;}
.ws98{word-spacing:-0.789645pt;}
.ws9a{word-spacing:-0.765133pt;}
.ws64{word-spacing:-0.743874pt;}
.wsb9{word-spacing:-0.573850pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws47{word-spacing:-0.318803pt;}
.ws22{word-spacing:-0.286925pt;}
.ws33{word-spacing:-0.265669pt;}
.wsa2{word-spacing:-0.239104pt;}
.ws3c{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws30{word-spacing:-0.159402pt;}
.wsba{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.074387pt;}
.ws61{word-spacing:-0.055366pt;}
.ws13{word-spacing:-0.053134pt;}
.ws28{word-spacing:-0.047821pt;}
.ws38{word-spacing:-0.042507pt;}
.ws5c{word-spacing:-0.042078pt;}
.ws7{word-spacing:-0.037194pt;}
.ws6f{word-spacing:-0.004819pt;}
.ws14{word-spacing:-0.002637pt;}
.ws18{word-spacing:-0.001852pt;}
.ws17{word-spacing:-0.001578pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.001089pt;}
.ws19{word-spacing:0.002689pt;}
.ws1a{word-spacing:0.042507pt;}
.ws23{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.ws9e{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws7a{word-spacing:0.127522pt;}
.ws9d{word-spacing:0.143462pt;}
.ws42{word-spacing:0.159402pt;}
.ws24{word-spacing:0.191283pt;}
.ws41{word-spacing:0.212535pt;}
.ws21{word-spacing:0.239104pt;}
.ws57{word-spacing:0.265669pt;}
.wsa7{word-spacing:0.286925pt;}
.ws5a{word-spacing:0.318803pt;}
.ws49{word-spacing:0.371937pt;}
.ws79{word-spacing:0.425072pt;}
.ws34{word-spacing:0.478205pt;}
.wsbf{word-spacing:0.526029pt;}
.ws84{word-spacing:0.531339pt;}
.ws8e{word-spacing:0.573850pt;}
.ws87{word-spacing:0.584473pt;}
.ws89{word-spacing:0.637606pt;}
.ws8f{word-spacing:0.765133pt;}
.ws2e{word-spacing:0.797008pt;}
.ws9{word-spacing:0.892646pt;}
.ws6a{word-spacing:0.903276pt;}
.ws8d{word-spacing:1.062677pt;}
.ws3e{word-spacing:1.115811pt;}
.ws86{word-spacing:1.275213pt;}
.ws53{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.381481pt;}
.ws6e{word-spacing:1.434614pt;}
.ws9b{word-spacing:1.434624pt;}
.ws69{word-spacing:1.487748pt;}
.ws44{word-spacing:1.594016pt;}
.ws1f{word-spacing:1.625907pt;}
.ws43{word-spacing:1.806551pt;}
.ws2f{word-spacing:1.912819pt;}
.wsb4{word-spacing:1.912832pt;}
.ws7f{word-spacing:1.965953pt;}
.ws36{word-spacing:2.019087pt;}
.wsb0{word-spacing:2.104115pt;}
.ws26{word-spacing:2.151936pt;}
.ws72{word-spacing:2.178489pt;}
.ws3{word-spacing:2.230527pt;}
.ws0{word-spacing:2.232481pt;}
.ws25{word-spacing:2.247578pt;}
.ws4b{word-spacing:2.337890pt;}
.wsb2{word-spacing:2.486682pt;}
.ws20{word-spacing:2.582323pt;}
.ws7d{word-spacing:2.656693pt;}
.ws4f{word-spacing:2.816095pt;}
.wsc0{word-spacing:2.861406pt;}
.ws29{word-spacing:2.861926pt;}
.ws95{word-spacing:2.863283pt;}
.wsb5{word-spacing:2.864137pt;}
.wsbc{word-spacing:2.864222pt;}
.wsa9{word-spacing:2.865254pt;}
.ws90{word-spacing:2.866509pt;}
.wsa4{word-spacing:2.866825pt;}
.ws45{word-spacing:2.869229pt;}
.ws27{word-spacing:2.917069pt;}
.ws88{word-spacing:2.922363pt;}
.wsab{word-spacing:3.060531pt;}
.ws51{word-spacing:3.134898pt;}
.wsb1{word-spacing:3.156173pt;}
.ws2a{word-spacing:3.188032pt;}
.ws4e{word-spacing:3.241166pt;}
.ws46{word-spacing:3.347434pt;}
.ws58{word-spacing:3.613103pt;}
.ws92{word-spacing:3.634381pt;}
.wsa3{word-spacing:3.730022pt;}
.ws48{word-spacing:3.772505pt;}
.ws4a{word-spacing:3.825638pt;}
.ws91{word-spacing:3.921306pt;}
.wsad{word-spacing:4.064768pt;}
.ws54{word-spacing:4.144442pt;}
.ws10{word-spacing:4.240070pt;}
.ws5d{word-spacing:4.250709pt;}
.ws4d{word-spacing:4.303843pt;}
.ws11{word-spacing:4.314458pt;}
.ws67{word-spacing:4.463245pt;}
.wsa5{word-spacing:4.590797pt;}
.ws68{word-spacing:4.728914pt;}
.ws6d{word-spacing:4.782048pt;}
.ws85{word-spacing:4.941450pt;}
.ws52{word-spacing:5.100851pt;}
.ws8b{word-spacing:5.207119pt;}
.ws82{word-spacing:5.632190pt;}
.ws3d{word-spacing:5.738458pt;}
.ws32{word-spacing:5.791591pt;}
.ws73{word-spacing:5.844725pt;}
.ws6c{word-spacing:6.057261pt;}
.ws70{word-spacing:6.163529pt;}
.ws56{word-spacing:6.216662pt;}
.ws1e{word-spacing:6.312346pt;}
.ws66{word-spacing:6.429198pt;}
.ws5e{word-spacing:6.801135pt;}
.ws2b{word-spacing:6.907403pt;}
.wse{word-spacing:6.918010pt;}
.ws83{word-spacing:7.119938pt;}
.ws50{word-spacing:7.332474pt;}
.ws71{word-spacing:7.385607pt;}
.ws5{word-spacing:9.260494pt;}
.ws80{word-spacing:9.617230pt;}
.ws9c{word-spacing:10.664038pt;}
.wsc{word-spacing:10.823338pt;}
.ws99{word-spacing:11.094426pt;}
.ws4{word-spacing:11.492822pt;}
.wsbb{word-spacing:11.763917pt;}
.wsbe{word-spacing:11.900723pt;}
.wsc1{word-spacing:11.902541pt;}
.wsac{word-spacing:11.902737pt;}
.wsb6{word-spacing:11.903488pt;}
.wsae{word-spacing:11.904171pt;}
.wsbd{word-spacing:11.905212pt;}
.wsa8{word-spacing:11.905331pt;}
.ws96{word-spacing:11.907379pt;}
.wsa6{word-spacing:12.050842pt;}
.wsa1{word-spacing:12.098662pt;}
.ws37{word-spacing:13.134725pt;}
.ws55{word-spacing:13.230333pt;}
.wsaf{word-spacing:13.533286pt;}
.wsd{word-spacing:14.319536pt;}
.ws9f{word-spacing:14.769707pt;}
.wsb3{word-spacing:14.774118pt;}
.wsaa{word-spacing:14.776627pt;}
.ws4c{word-spacing:16.418365pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws5f{word-spacing:28.798556pt;}
.ws62{word-spacing:36.609234pt;}
.ws7b{word-spacing:60.317717pt;}
.wsa0{word-spacing:66.949120pt;}
.ws76{word-spacing:81.571317pt;}
.ws78{word-spacing:85.099414pt;}
.ws7c{word-spacing:92.198117pt;}
.ws77{word-spacing:102.824917pt;}
.ws75{word-spacing:125.268718pt;}
.ws74{word-spacing:238.720435pt;}
._4f{margin-left:-17.969974pt;}
._1d{margin-left:-7.925599pt;}
._4d{margin-left:-6.878593pt;}
._15{margin-left:-5.844725pt;}
._9{margin-left:-4.941400pt;}
._8{margin-left:-3.910662pt;}
._21{margin-left:-2.975497pt;}
._4{margin-left:-2.045648pt;}
._6{margin-left:-0.947780pt;}
._4b{width:0.889740pt;}
._3{width:2.045648pt;}
._7{width:3.272752pt;}
._0{width:9.298400pt;}
._10{width:10.626800pt;}
._2{width:11.530016pt;}
._4c{width:12.497086pt;}
._1e{width:13.487916pt;}
._a{width:14.537523pt;}
._d{width:15.478090pt;}
._f{width:16.577766pt;}
._b{width:18.267546pt;}
._13{width:19.278964pt;}
._c{width:20.180378pt;}
._e{width:21.997421pt;}
._1{width:23.063232pt;}
._49{width:24.590479pt;}
._16{width:25.886598pt;}
._5{width:27.188522pt;}
._14{width:28.373485pt;}
._1f{width:30.286304pt;}
._20{width:31.295847pt;}
._1c{width:32.457923pt;}
._23{width:37.920272pt;}
._22{width:39.195485pt;}
._4e{width:54.993920pt;}
._41{width:70.816995pt;}
._45{width:78.510798pt;}
._2c{width:81.613824pt;}
._3b{width:82.676749pt;}
._2d{width:85.588147pt;}
._46{width:89.147466pt;}
._44{width:92.240624pt;}
._2e{width:95.726214pt;}
._35{width:97.088817pt;}
._3f{width:98.399425pt;}
._31{width:100.019442pt;}
._2f{width:102.824917pt;}
._34{width:106.863101pt;}
._37{width:108.264812pt;}
._29{width:113.494224pt;}
._3c{width:118.680102pt;}
._48{width:130.582118pt;}
._2a{width:132.339957pt;}
._38{width:134.960360pt;}
._42{width:149.370301pt;}
._33{width:159.997101pt;}
._43{width:165.480530pt;}
._3a{width:169.603728pt;}
._30{width:173.471883pt;}
._40{width:174.619578pt;}
._2b{width:176.107330pt;}
._1a{width:181.623398pt;}
._32{width:185.246378pt;}
._3e{width:186.946666pt;}
._47{width:194.853005pt;}
._36{width:200.548970pt;}
._39{width:205.479805pt;}
._27{width:255.255736pt;}
._26{width:261.164237pt;}
._1b{width:298.784358pt;}
._17{width:304.751312pt;}
._11{width:384.873968pt;}
._18{width:397.629952pt;}
._28{width:642.751371pt;}
._19{width:822.661222pt;}
._3d{width:1701.369668pt;}
._25{width:1730.873668pt;}
._4a{width:1788.010465pt;}
._12{width:1809.263798pt;}
._24{width:3123.023798pt;}
.fs6{font-size:31.880533pt;}
.fse{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs5{font-size:40.381867pt;}
.fsc{font-size:42.077867pt;}
.fs7{font-size:42.507200pt;}
.fsd{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:53.754880pt;}
.fsb{font-size:55.365867pt;}
.fs4{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:5.644850pt;}
.y1c{bottom:18.051729pt;}
.y4f{bottom:28.346667pt;}
.y1b{bottom:32.990462pt;}
.yb3{bottom:83.774667pt;}
.y4e{bottom:92.108000pt;}
.y19{bottom:93.018667pt;}
.y151{bottom:93.688000pt;}
.y85{bottom:94.086667pt;}
.y184{bottom:94.472000pt;}
.yb1{bottom:100.512000pt;}
.yb2{bottom:105.334667pt;}
.y4d{bottom:108.844000pt;}
.y18{bottom:108.920000pt;}
.y183{bottom:109.814667pt;}
.y150{bottom:110.425333pt;}
.y84{bottom:110.824000pt;}
.y1bd{bottom:110.890667pt;}
.yb0{bottom:117.249333pt;}
.y17{bottom:124.820000pt;}
.y182{bottom:125.157333pt;}
.y4c{bottom:125.581333pt;}
.y1bc{bottom:126.233333pt;}
.y14f{bottom:127.162667pt;}
.y83{bottom:127.561333pt;}
.yaf{bottom:133.986667pt;}
.y181{bottom:140.500000pt;}
.y16{bottom:140.720000pt;}
.y1bb{bottom:141.576000pt;}
.y4b{bottom:142.318667pt;}
.y14e{bottom:143.900000pt;}
.y82{bottom:144.298667pt;}
.yae{bottom:150.724000pt;}
.y180{bottom:155.842667pt;}
.y15{bottom:156.621333pt;}
.y1ba{bottom:156.918667pt;}
.y4a{bottom:159.056000pt;}
.y14d{bottom:160.637333pt;}
.y81{bottom:161.036000pt;}
.y17f{bottom:171.185333pt;}
.y1b9{bottom:172.261333pt;}
.y14{bottom:172.521333pt;}
.yac{bottom:173.684000pt;}
.yf5{bottom:175.049333pt;}
.y49{bottom:175.793333pt;}
.y119{bottom:176.377333pt;}
.y14c{bottom:177.374667pt;}
.y80{bottom:177.773333pt;}
.y17e{bottom:186.528000pt;}
.y1b8{bottom:187.602667pt;}
.yf3{bottom:187.668000pt;}
.y13{bottom:188.421333pt;}
.y117{bottom:188.996000pt;}
.yf4{bottom:191.525333pt;}
.y48{bottom:192.530667pt;}
.y118{bottom:192.854667pt;}
.yad{bottom:193.012000pt;}
.y14b{bottom:194.112000pt;}
.y7f{bottom:194.510667pt;}
.yab{bottom:199.122667pt;}
.yf2{bottom:200.288000pt;}
.y116{bottom:201.616000pt;}
.y17d{bottom:201.870667pt;}
.y1b7{bottom:202.945333pt;}
.y12{bottom:204.322667pt;}
.y47{bottom:209.268000pt;}
.y14a{bottom:210.849333pt;}
.y7e{bottom:215.233333pt;}
.ya9{bottom:215.860000pt;}
.y17c{bottom:217.213333pt;}
.y1b6{bottom:218.288000pt;}
.yf1{bottom:219.096000pt;}
.y115{bottom:220.425333pt;}
.yaa{bottom:220.681333pt;}
.y46{bottom:226.005333pt;}
.y149{bottom:227.586667pt;}
.yf0{bottom:231.716000pt;}
.y17b{bottom:232.554667pt;}
.ya7{bottom:232.597333pt;}
.y114{bottom:233.044000pt;}
.y7d{bottom:233.165333pt;}
.y1b5{bottom:233.630667pt;}
.ya8{bottom:237.418667pt;}
.y45{bottom:242.742667pt;}
.y148{bottom:244.324000pt;}
.yef{bottom:244.334667pt;}
.yd0{bottom:245.520000pt;}
.y113{bottom:245.664000pt;}
.y17a{bottom:247.897333pt;}
.y1b4{bottom:248.973333pt;}
.ya5{bottom:249.334667pt;}
.ya6{bottom:254.156000pt;}
.yee{bottom:256.954667pt;}
.y112{bottom:258.282667pt;}
.y44{bottom:259.480000pt;}
.y147{bottom:261.061333pt;}
.ycf{bottom:262.257333pt;}
.y7c{bottom:263.053333pt;}
.y179{bottom:263.240000pt;}
.y1b3{bottom:264.316000pt;}
.ya4{bottom:266.072000pt;}
.y11{bottom:266.804000pt;}
.yed{bottom:269.573333pt;}
.y111{bottom:270.902667pt;}
.y43{bottom:276.217333pt;}
.y146{bottom:277.798667pt;}
.y178{bottom:278.582667pt;}
.yce{bottom:278.994667pt;}
.y1b2{bottom:279.658667pt;}
.y7b{bottom:279.790667pt;}
.yec{bottom:282.193333pt;}
.y10{bottom:282.705333pt;}
.y110{bottom:283.521333pt;}
.ya3{bottom:286.793333pt;}
.y42{bottom:292.954667pt;}
.y177{bottom:293.925333pt;}
.y145{bottom:294.536000pt;}
.yeb{bottom:294.812000pt;}
.y1b1{bottom:295.001333pt;}
.ycd{bottom:295.732000pt;}
.y10f{bottom:296.141333pt;}
.y7a{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.yea{bottom:307.432000pt;}
.y10e{bottom:308.760000pt;}
.y176{bottom:309.268000pt;}
.y41{bottom:309.692000pt;}
.y1b0{bottom:310.342667pt;}
.y144{bottom:311.273333pt;}
.ycc{bottom:312.469333pt;}
.y79{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.ya2{bottom:316.681333pt;}
.ye9{bottom:320.050667pt;}
.y10d{bottom:321.380000pt;}
.y175{bottom:324.610667pt;}
.y1af{bottom:325.685333pt;}
.y40{bottom:326.429333pt;}
.y143{bottom:328.010667pt;}
.ycb{bottom:329.206667pt;}
.y78{bottom:330.002667pt;}
.ye8{bottom:332.670667pt;}
.ya0{bottom:333.418667pt;}
.y10c{bottom:333.998667pt;}
.ya1{bottom:338.241333pt;}
.yd{bottom:338.376000pt;}
.y174{bottom:339.953333pt;}
.y1ae{bottom:341.028000pt;}
.y3f{bottom:343.166667pt;}
.y142{bottom:344.748000pt;}
.ye7{bottom:345.289333pt;}
.yca{bottom:345.944000pt;}
.y10b{bottom:346.618667pt;}
.y77{bottom:346.740000pt;}
.y9f{bottom:350.156000pt;}
.yc{bottom:354.277333pt;}
.y1ad{bottom:356.370667pt;}
.ye6{bottom:357.909333pt;}
.y10a{bottom:359.237333pt;}
.y173{bottom:359.280000pt;}
.y141{bottom:361.485333pt;}
.yc9{bottom:362.680000pt;}
.y76{bottom:363.477333pt;}
.y3e{bottom:363.889333pt;}
.y9e{bottom:366.893333pt;}
.yb{bottom:370.177333pt;}
.y1ac{bottom:371.713333pt;}
.ye5{bottom:376.930667pt;}
.y140{bottom:378.222667pt;}
.y109{bottom:378.258667pt;}
.yc8{bottom:379.417333pt;}
.y75{bottom:380.214667pt;}
.y9d{bottom:383.630667pt;}
.y1ab{bottom:387.056000pt;}
.y172{bottom:389.168000pt;}
.y13f{bottom:394.960000pt;}
.ya{bottom:395.376000pt;}
.ye4{bottom:395.952000pt;}
.yc7{bottom:396.154667pt;}
.y74{bottom:396.952000pt;}
.y108{bottom:397.280000pt;}
.y9c{bottom:400.368000pt;}
.y1aa{bottom:402.398667pt;}
.y13e{bottom:411.697333pt;}
.y171{bottom:412.760000pt;}
.yc6{bottom:412.892000pt;}
.y73{bottom:413.689333pt;}
.ye3{bottom:414.973333pt;}
.y107{bottom:416.301333pt;}
.y9b{bottom:417.105333pt;}
.y1a9{bottom:417.741333pt;}
.y9{bottom:419.246667pt;}
.y13d{bottom:428.434667pt;}
.yc5{bottom:429.629333pt;}
.y3d{bottom:430.378667pt;}
.y72{bottom:430.426667pt;}
.y1a8{bottom:433.084000pt;}
.y9a{bottom:433.842667pt;}
.ye2{bottom:433.994667pt;}
.y8{bottom:435.146667pt;}
.y106{bottom:435.322667pt;}
.y170{bottom:436.352000pt;}
.y13c{bottom:445.172000pt;}
.yc4{bottom:446.366667pt;}
.ye1{bottom:446.614667pt;}
.y71{bottom:447.164000pt;}
.y105{bottom:447.942667pt;}
.y1a7{bottom:448.425333pt;}
.y99{bottom:450.580000pt;}
.y7{bottom:451.048000pt;}
.ye0{bottom:459.233333pt;}
.y16f{bottom:459.942667pt;}
.y104{bottom:460.561333pt;}
.y13b{bottom:461.909333pt;}
.yc3{bottom:463.104000pt;}
.y3c{bottom:463.613333pt;}
.y1a6{bottom:463.768000pt;}
.y70{bottom:463.901333pt;}
.y6{bottom:466.948000pt;}
.y98{bottom:467.317333pt;}
.ydf{bottom:471.853333pt;}
.y103{bottom:473.181333pt;}
.y16e{bottom:475.564000pt;}
.y13a{bottom:478.645333pt;}
.y1a5{bottom:479.110667pt;}
.yc2{bottom:479.841333pt;}
.y6f{bottom:480.638667pt;}
.y3b{bottom:480.909333pt;}
.y5{bottom:482.848000pt;}
.y96{bottom:484.054667pt;}
.yde{bottom:484.472000pt;}
.y102{bottom:485.800000pt;}
.y97{bottom:488.876000pt;}
.y1a4{bottom:494.453333pt;}
.y139{bottom:495.382667pt;}
.yc1{bottom:496.578667pt;}
.ydd{bottom:497.092000pt;}
.y6e{bottom:497.376000pt;}
.y3a{bottom:498.204000pt;}
.y101{bottom:498.420000pt;}
.y4{bottom:498.749333pt;}
.y16d{bottom:499.156000pt;}
.y95{bottom:504.777333pt;}
.ydc{bottom:509.710667pt;}
.y1a3{bottom:509.796000pt;}
.y100{bottom:511.038667pt;}
.y138{bottom:512.120000pt;}
.yc0{bottom:513.316000pt;}
.y6d{bottom:514.113333pt;}
.y3{bottom:514.649333pt;}
.y39{bottom:515.498667pt;}
.ydb{bottom:522.329333pt;}
.y16c{bottom:522.748000pt;}
.yff{bottom:523.658667pt;}
.y1a2{bottom:525.138667pt;}
.y137{bottom:528.857333pt;}
.ybf{bottom:530.053333pt;}
.y2{bottom:530.549333pt;}
.y6c{bottom:530.850667pt;}
.y38{bottom:532.794667pt;}
.yda{bottom:534.949333pt;}
.yfe{bottom:536.277333pt;}
.y16b{bottom:538.369333pt;}
.y1a1{bottom:540.481333pt;}
.y94{bottom:542.397333pt;}
.y136{bottom:545.594667pt;}
.y1{bottom:546.450667pt;}
.yd9{bottom:547.568000pt;}
.y6b{bottom:547.588000pt;}
.yfd{bottom:548.897333pt;}
.y37{bottom:550.089333pt;}
.ybe{bottom:550.776000pt;}
.y16a{bottom:553.990667pt;}
.y1a0{bottom:555.824000pt;}
.y93{bottom:557.009333pt;}
.yd8{bottom:560.188000pt;}
.yfc{bottom:561.516000pt;}
.y135{bottom:562.332000pt;}
.y6a{bottom:564.325333pt;}
.y36{bottom:567.384000pt;}
.y169{bottom:569.612000pt;}
.y19f{bottom:571.165333pt;}
.y92{bottom:571.621333pt;}
.yd7{bottom:572.806667pt;}
.yfb{bottom:574.136000pt;}
.y134{bottom:579.069333pt;}
.ybd{bottom:580.664000pt;}
.y69{bottom:581.062667pt;}
.y34{bottom:584.680000pt;}
.y168{bottom:585.233333pt;}
.y91{bottom:586.233333pt;}
.y19e{bottom:586.508000pt;}
.y35{bottom:589.020000pt;}
.yd6{bottom:591.829333pt;}
.yfa{bottom:593.157333pt;}
.y133{bottom:595.806667pt;}
.ybc{bottom:597.401333pt;}
.y68{bottom:597.800000pt;}
.y19d{bottom:601.850667pt;}
.y32{bottom:601.974667pt;}
.y33{bottom:606.314667pt;}
.y90{bottom:607.248000pt;}
.yd3{bottom:610.817333pt;}
.yd5{bottom:610.850667pt;}
.yf7{bottom:612.146667pt;}
.yf9{bottom:612.178667pt;}
.y11a{bottom:612.265333pt;}
.y132{bottom:612.544000pt;}
.yba{bottom:614.138667pt;}
.y67{bottom:614.537333pt;}
.y167{bottom:616.794667pt;}
.y19c{bottom:617.193333pt;}
.ybb{bottom:618.960000pt;}
.y31{bottom:619.270667pt;}
.y131{bottom:629.281333pt;}
.yd4{bottom:629.872000pt;}
.yb9{bottom:630.876000pt;}
.yf8{bottom:631.200000pt;}
.y66{bottom:631.274667pt;}
.y19b{bottom:632.536000pt;}
.y166{bottom:633.532000pt;}
.y8f{bottom:635.353333pt;}
.y2f{bottom:636.565333pt;}
.y30{bottom:640.905333pt;}
.y130{bottom:646.018667pt;}
.yb8{bottom:647.613333pt;}
.y19a{bottom:647.878667pt;}
.y65{bottom:648.012000pt;}
.y165{bottom:650.269333pt;}
.y2e{bottom:653.860000pt;}
.yd2{bottom:656.582667pt;}
.yf6{bottom:657.912000pt;}
.y12f{bottom:662.756000pt;}
.y199{bottom:663.221333pt;}
.y8e{bottom:664.350667pt;}
.y64{bottom:664.749333pt;}
.y164{bottom:667.006667pt;}
.y2d{bottom:671.156000pt;}
.y198{bottom:678.564000pt;}
.y12e{bottom:679.493333pt;}
.y8d{bottom:681.088000pt;}
.y63{bottom:681.485333pt;}
.y163{bottom:683.744000pt;}
.y2c{bottom:688.450667pt;}
.y197{bottom:693.906667pt;}
.y12d{bottom:696.230667pt;}
.y8c{bottom:697.825333pt;}
.y62{bottom:698.222667pt;}
.y162{bottom:700.481333pt;}
.y2b{bottom:705.745333pt;}
.y196{bottom:709.248000pt;}
.yd1{bottom:712.385333pt;}
.y12c{bottom:712.968000pt;}
.y8b{bottom:714.562667pt;}
.y61{bottom:714.960000pt;}
.y161{bottom:717.218667pt;}
.y2a{bottom:723.041333pt;}
.y195{bottom:724.590667pt;}
.y12b{bottom:729.705333pt;}
.y8a{bottom:731.300000pt;}
.y60{bottom:731.697333pt;}
.y160{bottom:733.956000pt;}
.y194{bottom:739.933333pt;}
.y12a{bottom:746.442667pt;}
.y89{bottom:748.036000pt;}
.y5f{bottom:748.434667pt;}
.y15f{bottom:750.693333pt;}
.y193{bottom:755.276000pt;}
.y29{bottom:755.562667pt;}
.y129{bottom:763.180000pt;}
.y88{bottom:764.773333pt;}
.y5e{bottom:765.172000pt;}
.y15e{bottom:767.430667pt;}
.y28{bottom:769.909333pt;}
.y192{bottom:770.618667pt;}
.y128{bottom:779.917333pt;}
.y87{bottom:781.510667pt;}
.y5d{bottom:781.909333pt;}
.y191{bottom:785.961333pt;}
.y27{bottom:788.113333pt;}
.y15d{bottom:788.153333pt;}
.y127{bottom:796.654667pt;}
.yb7{bottom:798.248000pt;}
.y26{bottom:798.601333pt;}
.y5c{bottom:798.646667pt;}
.y190{bottom:801.304000pt;}
.y86{bottom:802.233333pt;}
.y126{bottom:813.392000pt;}
.yb6{bottom:814.985333pt;}
.y5b{bottom:815.384000pt;}
.y18f{bottom:816.646667pt;}
.y25{bottom:816.805333pt;}
.y15c{bottom:818.041333pt;}
.y24{bottom:827.294667pt;}
.y125{bottom:830.129333pt;}
.y23{bottom:831.152000pt;}
.y18e{bottom:831.988000pt;}
.y5a{bottom:832.121333pt;}
.y15b{bottom:834.778667pt;}
.yb5{bottom:835.708000pt;}
.y124{bottom:846.866667pt;}
.y18d{bottom:847.330667pt;}
.y59{bottom:848.858667pt;}
.y15a{bottom:851.516000pt;}
.y18c{bottom:862.673333pt;}
.y123{bottom:863.604000pt;}
.y58{bottom:865.596000pt;}
.y159{bottom:868.253333pt;}
.y22{bottom:869.088000pt;}
.y18b{bottom:878.016000pt;}
.y122{bottom:880.341333pt;}
.y57{bottom:882.333333pt;}
.y158{bottom:884.990667pt;}
.y21{bottom:885.825333pt;}
.y18a{bottom:893.358667pt;}
.y121{bottom:897.078667pt;}
.y56{bottom:899.070667pt;}
.y157{bottom:901.728000pt;}
.yb4{bottom:903.892000pt;}
.y189{bottom:908.701333pt;}
.y120{bottom:913.816000pt;}
.y55{bottom:915.808000pt;}
.y156{bottom:918.464000pt;}
.y20{bottom:921.674667pt;}
.y188{bottom:924.044000pt;}
.y11f{bottom:930.552000pt;}
.y54{bottom:932.545333pt;}
.y155{bottom:935.201333pt;}
.y187{bottom:939.386667pt;}
.y1f{bottom:946.780000pt;}
.y11e{bottom:947.289333pt;}
.y53{bottom:949.282667pt;}
.y154{bottom:951.938667pt;}
.y186{bottom:954.729333pt;}
.y11d{bottom:964.026667pt;}
.y52{bottom:966.020000pt;}
.y153{bottom:968.676000pt;}
.y185{bottom:970.070667pt;}
.y1e{bottom:971.886667pt;}
.y51{bottom:982.757333pt;}
.y11c{bottom:984.749333pt;}
.y152{bottom:985.413333pt;}
.y1a{bottom:1010.541333pt;}
.y50{bottom:1038.548000pt;}
.y11b{bottom:1041.204000pt;}
.h14{height:2.125355pt;}
.h9{height:28.947524pt;}
.h19{height:29.499005pt;}
.h18{height:30.732706pt;}
.hd{height:33.186336pt;}
.h2{height:33.771789pt;}
.hb{height:34.574438pt;}
.h4{height:35.024664pt;}
.h5{height:36.445809pt;}
.h12{height:36.666735pt;}
.h10{height:36.873667pt;}
.h11{height:37.140573pt;}
.he{height:38.415786pt;}
.ha{height:38.596538pt;}
.h6{height:38.947124pt;}
.hc{height:43.421286pt;}
.h1b{height:43.660390pt;}
.h1a{height:44.376858pt;}
.h3{height:45.272024pt;}
.hf{height:48.245551pt;}
.h13{height:48.511220pt;}
.h8{height:49.201961pt;}
.h15{height:55.952068pt;}
.h7{height:69.148877pt;}
.h16{height:793.701333pt;}
.h17{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:52.456952pt;}
.x6c{left:66.461333pt;}
.x6e{left:67.560000pt;}
.x7c{left:68.910667pt;}
.x65{left:73.638667pt;}
.x70{left:76.216000pt;}
.x6a{left:77.188000pt;}
.x68{left:80.504000pt;}
.x69{left:81.880000pt;}
.x6b{left:82.789333pt;}
.x6f{left:85.185333pt;}
.x6d{left:86.614667pt;}
.x67{left:153.449333pt;}
.x9a{left:157.460000pt;}
.x66{left:171.324000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x16{left:232.518667pt;}
.x17{left:236.124000pt;}
.x4{left:239.770667pt;}
.x41{left:249.290667pt;}
.x24{left:250.204000pt;}
.x18{left:257.169333pt;}
.x57{left:259.584000pt;}
.x42{left:264.436000pt;}
.x19{left:270.130667pt;}
.x6{left:273.916000pt;}
.x85{left:283.324000pt;}
.x9{left:286.540000pt;}
.x5f{left:287.969333pt;}
.x86{left:296.608000pt;}
.x87{left:299.962667pt;}
.x5b{left:300.898667pt;}
.x39{left:305.361333pt;}
.x37{left:306.633333pt;}
.x88{left:313.245333pt;}
.x5c{left:314.182667pt;}
.x5d{left:317.569333pt;}
.x3a{left:318.645333pt;}
.x38{left:319.916000pt;}
.x33{left:326.917333pt;}
.x99{left:329.802667pt;}
.x5e{left:330.853333pt;}
.x34{left:340.200000pt;}
.x51{left:343.341333pt;}
.x64{left:345.008000pt;}
.x52{left:346.881333pt;}
.x59{left:352.305333pt;}
.x71{left:354.493333pt;}
.x72{left:357.697333pt;}
.x1e{left:360.428000pt;}
.x1f{left:364.033333pt;}
.x5a{left:365.542667pt;}
.x53{left:369.432000pt;}
.x49{left:372.228000pt;}
.x73{left:376.270667pt;}
.x95{left:379.456000pt;}
.x54{left:382.685333pt;}
.x20{left:385.078667pt;}
.x74{left:387.474667pt;}
.x21{left:398.040000pt;}
.x43{left:401.094667pt;}
.xa{left:407.710667pt;}
.x8e{left:413.444000pt;}
.x44{left:416.240000pt;}
.xb{left:421.009333pt;}
.x1a{left:423.793333pt;}
.x1b{left:427.398667pt;}
.x30{left:430.906667pt;}
.x31{left:437.548000pt;}
.x98{left:439.672000pt;}
.x2e{left:445.918667pt;}
.x1c{left:448.444000pt;}
.x2f{left:452.561333pt;}
.x94{left:457.849333pt;}
.x1d{left:461.405333pt;}
.xe{left:470.650667pt;}
.xf{left:474.254667pt;}
.x10{left:481.238667pt;}
.x8b{left:489.489333pt;}
.x3e{left:493.165333pt;}
.x11{left:494.200000pt;}
.x8c{left:502.773333pt;}
.x3f{left:506.449333pt;}
.x2b{left:507.488000pt;}
.x2c{left:514.129333pt;}
.x93{left:516.385333pt;}
.x8d{left:519.444000pt;}
.x8f{left:522.792000pt;}
.x60{left:533.300000pt;}
.x90{left:536.076000pt;}
.x61{left:537.305333pt;}
.x9e{left:541.412000pt;}
.x91{left:542.850667pt;}
.x62{left:545.008000pt;}
.x75{left:549.229333pt;}
.x76{left:552.433333pt;}
.x92{left:556.133333pt;}
.xc{left:559.720000pt;}
.x9f{left:565.322667pt;}
.x96{left:570.833333pt;}
.x27{left:571.784000pt;}
.xd{left:573.018667pt;}
.x28{left:578.426667pt;}
.x77{left:582.212000pt;}
.x97{left:584.117333pt;}
.x45{left:587.900000pt;}
.x48{left:589.880000pt;}
.x84{left:614.272000pt;}
.x4a{left:621.897333pt;}
.x46{left:623.618667pt;}
.x4b{left:625.437333pt;}
.x35{left:627.029333pt;}
.x47{left:630.258667pt;}
.x22{left:633.561333pt;}
.x25{left:636.550667pt;}
.x2d{left:637.446667pt;}
.x36{left:640.313333pt;}
.x26{left:643.192000pt;}
.x23{left:644.152000pt;}
.x4c{left:646.182667pt;}
.x40{left:647.144000pt;}
.x9c{left:652.690667pt;}
.x4d{left:663.628000pt;}
.x4e{left:667.168000pt;}
.x9b{left:668.122667pt;}
.x80{left:672.744000pt;}
.x9d{left:676.601333pt;}
.x7d{left:677.538667pt;}
.x89{left:683.674667pt;}
.x81{left:686.026667pt;}
.x4f{left:688.929333pt;}
.x7e{left:690.821333pt;}
.x82{left:692.801333pt;}
.x58{left:694.206667pt;}
.x8a{left:696.958667pt;}
.x55{left:700.594667pt;}
.x50{left:702.182667pt;}
.x56{left:704.134667pt;}
.x83{left:706.085333pt;}
.x7f{left:707.360000pt;}
.x3b{left:710.614667pt;}
.x7{left:712.130667pt;}
.x63{left:715.166667pt;}
.x12{left:719.417333pt;}
.x13{left:723.021333pt;}
.x32{left:726.178667pt;}
.x3c{left:727.152000pt;}
.x14{left:730.005333pt;}
.x29{left:732.820000pt;}
.x2a{left:739.461333pt;}
.x3d{left:740.436000pt;}
.x15{left:742.966667pt;}
.x8{left:744.266667pt;}
.x78{left:1036.732000pt;}
.x79{left:1039.936000pt;}
.x7a{left:1058.509333pt;}
.x7b{left:1069.714667pt;}
}




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