
    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_39b384ebad9b613506a9d03d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2543811cf7501043da2ef0b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_3441b918469f81ab30fc7e98.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e6d17e702053b9f82deabf52.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c8fa5fcf07a667f40fb287f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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_b3cd44ffc3c4b86ddc124243.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_d43f3cde16fc1c31854cb0dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ce66c0afce1705f7ac014e8a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d7fb421cdf0c124d3f8f3d93.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_193653762a2a44cf5e80e503.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_448343a5feca9f78c98920c7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.724000;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_5fa64f0bbd5a9f41991aa54c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.190000;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;}
.m2{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);}
.me{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);}
.mf{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);}
.m29{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);}
.m23{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);}
.m10{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);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1a{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);}
.ma{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);}
.m6{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);}
.m25{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);}
.m14{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);}
.m12{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);}
.m17{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);}
.m3{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);}
.m1f{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);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8{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);}
.m15{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m20{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m1e{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);}
.md{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);}
.m21{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);}
.m28{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);}
.m26{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);}
.m1c{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);}
.m22{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);}
.m19{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);}
.m1d{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);}
.m24{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);}
.m13{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);}
.m4{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-10.494000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.248000px;}
.va{vertical-align:12.912000px;}
.v5{vertical-align:19.110000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:26.412000px;}
.v7{vertical-align:32.880000px;}
.v8{vertical-align:65.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000263px;}
.ls32{letter-spacing:0.000453px;}
.ls24{letter-spacing:0.000608px;}
.ls19{letter-spacing:0.000612px;}
.ls2b{letter-spacing:0.000676px;}
.ls2d{letter-spacing:0.000762px;}
.ls2c{letter-spacing:0.000800px;}
.ls1b{letter-spacing:0.001148px;}
.ls2a{letter-spacing:0.001188px;}
.ls30{letter-spacing:0.002283px;}
.ls2e{letter-spacing:0.002683px;}
.ls31{letter-spacing:0.003830px;}
.ls17{letter-spacing:0.004665px;}
.ls1d{letter-spacing:0.642088px;}
.ls11{letter-spacing:0.648088px;}
.ls18{letter-spacing:2.983200px;}
.ls20{letter-spacing:2.988600px;}
.ls16{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls5{letter-spacing:11.954850px;}
.ls1e{letter-spacing:13.450090px;}
.ls26{letter-spacing:13.822200px;}
.ls21{letter-spacing:14.525471px;}
.lsb{letter-spacing:14.704798px;}
.ls13{letter-spacing:14.884124px;}
.ls15{letter-spacing:14.943767px;}
.ls8{letter-spacing:14.943900px;}
.ls14{letter-spacing:14.943986px;}
.ls2{letter-spacing:14.944200px;}
.ls9{letter-spacing:15.003676px;}
.ls28{letter-spacing:15.060840px;}
.lsa{letter-spacing:15.063451px;}
.ls27{letter-spacing:15.118082px;}
.ls29{letter-spacing:15.121356px;}
.ls6{letter-spacing:15.123227px;}
.ls22{letter-spacing:15.240510px;}
.ls7{letter-spacing:15.242778px;}
.lsc{letter-spacing:15.422105px;}
.ls1c{letter-spacing:15.840534px;}
.ls1a{letter-spacing:17.931986px;}
.ls23{letter-spacing:18.112200px;}
.ls25{letter-spacing:20.653376px;}
.ls12{letter-spacing:25.404630px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.lsf{letter-spacing:366.019133px;}
.lsd{letter-spacing:442.369133px;}
.lse{letter-spacing:468.139133px;}
.ls10{letter-spacing:485.683133px;}
.ls1f{letter-spacing:1077.738600px;}
.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;}
}
.ws8c{word-spacing:-45.088735px;}
.ws76{word-spacing:-14.943900px;}
.ws80{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws54{word-spacing:-2.988780px;}
.ws26{word-spacing:-2.689902px;}
.ws52{word-spacing:-2.570351px;}
.wsdc{word-spacing:-2.474726px;}
.ws7e{word-spacing:-2.450800px;}
.wsdb{word-spacing:-2.420928px;}
.wsc9{word-spacing:-2.313331px;}
.ws46{word-spacing:-2.151922px;}
.ws8d{word-spacing:-1.972595px;}
.ws47{word-spacing:-1.912819px;}
.ws45{word-spacing:-1.853044px;}
.wsca{word-spacing:-1.829146px;}
.ws21{word-spacing:-1.775347px;}
.ws6e{word-spacing:-1.733492px;}
.wsc4{word-spacing:-1.673717px;}
.ws5c{word-spacing:-1.434614px;}
.wsc3{word-spacing:-1.315063px;}
.ws53{word-spacing:-1.255288px;}
.ws57{word-spacing:-1.195512px;}
.ws20{word-spacing:-1.136333px;}
.wsc2{word-spacing:-1.135736px;}
.ws7c{word-spacing:-1.075961px;}
.ws73{word-spacing:-1.016185px;}
.ws5b{word-spacing:-0.956410px;}
.wsd8{word-spacing:-0.914573px;}
.ws49{word-spacing:-0.896634px;}
.wse2{word-spacing:-0.753178px;}
.ws43{word-spacing:-0.657532px;}
.ws56{word-spacing:-0.597756px;}
.wsf0{word-spacing:-0.591782px;}
.ws23{word-spacing:-0.537980px;}
.ws69{word-spacing:-0.478205px;}
.wsf5{word-spacing:-0.430387px;}
.ws68{word-spacing:-0.418429px;}
.ws55{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.ws67{word-spacing:-0.239102px;}
.wse0{word-spacing:-0.215194px;}
.ws44{word-spacing:-0.179327px;}
.wscc{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws34{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.047821px;}
.wsec{word-spacing:-0.011933px;}
.wse5{word-spacing:-0.011779px;}
.wse8{word-spacing:-0.009302px;}
.wsd1{word-spacing:-0.008467px;}
.wse7{word-spacing:-0.008208px;}
.wsf1{word-spacing:-0.007363px;}
.wsf3{word-spacing:-0.005933px;}
.wse3{word-spacing:-0.004723px;}
.wsd6{word-spacing:-0.003898px;}
.wsd5{word-spacing:-0.003888px;}
.ws10{word-spacing:-0.002100px;}
.ws2f{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.041667px;}
.ws1c{word-spacing:0.053798px;}
.ws2e{word-spacing:0.059776px;}
.ws12{word-spacing:0.095641px;}
.ws1f{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.ws3b{word-spacing:0.179327px;}
.ws2{word-spacing:0.209214px;}
.wsdf{word-spacing:0.215194px;}
.ws2d{word-spacing:0.239102px;}
.wsd9{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.wsd{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws37{word-spacing:0.418429px;}
.ws1a{word-spacing:0.430387px;}
.ws3a{word-spacing:0.478205px;}
.ws7a{word-spacing:0.537980px;}
.wsef{word-spacing:0.699379px;}
.ws8a{word-spacing:0.777083px;}
.ws4b{word-spacing:0.836858px;}
.ws8e{word-spacing:0.896634px;}
.ws29{word-spacing:1.016185px;}
.ws4c{word-spacing:1.075961px;}
.ws85{word-spacing:1.195512px;}
.ws24{word-spacing:1.315063px;}
.wsc{word-spacing:1.380812px;}
.ws16{word-spacing:1.398758px;}
.wse4{word-spacing:1.452557px;}
.ws63{word-spacing:1.494390px;}
.wsc8{word-spacing:1.613941px;}
.wsc5{word-spacing:1.673717px;}
.wsd7{word-spacing:1.721549px;}
.ws36{word-spacing:1.733492px;}
.ws66{word-spacing:1.793268px;}
.wse6{word-spacing:1.829146px;}
.ws86{word-spacing:1.853044px;}
.ws4d{word-spacing:1.912819px;}
.ws39{word-spacing:2.032370px;}
.ws1b{word-spacing:2.044339px;}
.ws6b{word-spacing:2.092146px;}
.ws48{word-spacing:2.151922px;}
.ws1e{word-spacing:2.151936px;}
.ws35{word-spacing:2.211697px;}
.wsae{word-spacing:2.271473px;}
.ws71{word-spacing:2.331248px;}
.ws62{word-spacing:2.391024px;}
.ws72{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws3{word-spacing:2.562943px;}
.ws59{word-spacing:2.570351px;}
.wscf{word-spacing:2.582323px;}
.ws51{word-spacing:2.630126px;}
.wsea{word-spacing:2.636122px;}
.ws60{word-spacing:2.749678px;}
.ws61{word-spacing:2.809453px;}
.wsda{word-spacing:2.851315px;}
.wsd4{word-spacing:2.905114px;}
.ws87{word-spacing:2.929004px;}
.wsee{word-spacing:3.012710px;}
.ws70{word-spacing:3.048556px;}
.wse9{word-spacing:3.066509px;}
.ws88{word-spacing:3.168107px;}
.wse1{word-spacing:3.218333px;}
.wsf2{word-spacing:3.218794px;}
.wsf4{word-spacing:3.221088px;}
.wsd0{word-spacing:3.221510px;}
.wseb{word-spacing:3.221875px;}
.wsed{word-spacing:3.223642px;}
.ws6a{word-spacing:3.227882px;}
.wsb1{word-spacing:3.227904px;}
.ws38{word-spacing:3.287658px;}
.wsd2{word-spacing:3.389299px;}
.ws58{word-spacing:3.466985px;}
.ws82{word-spacing:3.472952px;}
.wsf6{word-spacing:3.496896px;}
.ws5a{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.ws41{word-spacing:3.646312px;}
.ws5e{word-spacing:3.706087px;}
.ws64{word-spacing:3.825638px;}
.ws7d{word-spacing:3.885414px;}
.wscb{word-spacing:3.927283px;}
.wsc7{word-spacing:3.945190px;}
.ws42{word-spacing:4.004965px;}
.ws75{word-spacing:4.124516px;}
.ws3c{word-spacing:4.184292px;}
.ws78{word-spacing:4.244068px;}
.ws14{word-spacing:4.250074px;}
.wsde{word-spacing:4.411469px;}
.ws84{word-spacing:4.423394px;}
.wsdd{word-spacing:4.465267px;}
.ws3e{word-spacing:4.483170px;}
.ws3d{word-spacing:4.602721px;}
.wsd3{word-spacing:4.680461px;}
.ws28{word-spacing:4.722272px;}
.ws4a{word-spacing:4.782048px;}
.wsc0{word-spacing:4.841824px;}
.ws17{word-spacing:4.841856px;}
.ws50{word-spacing:5.021150px;}
.ws89{word-spacing:5.140702px;}
.wsc1{word-spacing:5.260253px;}
.ws6c{word-spacing:5.320028px;}
.ws79{word-spacing:5.379804px;}
.wsa{word-spacing:5.481407px;}
.wsc6{word-spacing:5.618906px;}
.ws6d{word-spacing:5.678682px;}
.ws83{word-spacing:5.738458px;}
.ws8f{word-spacing:5.798233px;}
.ws4e{word-spacing:5.858009px;}
.wsaf{word-spacing:6.216662px;}
.wsb0{word-spacing:6.276438px;}
.ws7f{word-spacing:6.336214px;}
.ws8b{word-spacing:6.572537px;}
.wsce{word-spacing:6.724800px;}
.wsad{word-spacing:6.790525px;}
.ws40{word-spacing:6.874194px;}
.ws65{word-spacing:7.173072px;}
.ws74{word-spacing:7.292623px;}
.ws4f{word-spacing:7.352399px;}
.ws5d{word-spacing:7.412174px;}
.ws5f{word-spacing:7.651277px;}
.ws3f{word-spacing:7.711052px;}
.ws2a{word-spacing:7.770828px;}
.ws6f{word-spacing:7.890379px;}
.ws25{word-spacing:7.950155px;}
.ws77{word-spacing:8.009930px;}
.ws7b{word-spacing:8.069706px;}
.ws2b{word-spacing:9.145667px;}
.ws8{word-spacing:9.833058px;}
.ws9{word-spacing:11.841512px;}
.ws13{word-spacing:11.892390px;}
.ws5{word-spacing:15.565522px;}
.wsb{word-spacing:16.067635px;}
.wscd{word-spacing:16.843528px;}
.ws7{word-spacing:22.339429px;}
.wsf{word-spacing:40.042186px;}
.wsa5{word-spacing:100.000800px;}
.wsa8{word-spacing:121.792800px;}
.wsa4{word-spacing:121.799578px;}
.wsab{word-spacing:122.464800px;}
.ws96{word-spacing:126.901200px;}
.ws9c{word-spacing:144.064800px;}
.wsa0{word-spacing:144.250800px;}
.ws91{word-spacing:156.822336px;}
.ws92{word-spacing:157.698000px;}
.ws90{word-spacing:171.132710px;}
.ws98{word-spacing:171.150000px;}
.wsac{word-spacing:176.932800px;}
.ws9d{word-spacing:182.314800px;}
.wsa6{word-spacing:182.322778px;}
.wsa1{word-spacing:188.932800px;}
.ws97{word-spacing:203.895936px;}
.ws9b{word-spacing:203.914800px;}
.wsa2{word-spacing:204.772800px;}
.wsa9{word-spacing:204.778800px;}
.ws93{word-spacing:217.368000px;}
.ws95{word-spacing:218.206310px;}
.wsb3{word-spacing:228.418656px;}
.wsb5{word-spacing:247.257446px;}
.ws94{word-spacing:262.211366px;}
.wsb8{word-spacing:274.150800px;}
.wsbb{word-spacing:274.156646px;}
.wsbf{word-spacing:295.105594px;}
.wsbe{word-spacing:296.590579px;}
.wsbd{word-spacing:296.614800px;}
.wsb2{word-spacing:296.644378px;}
.wsb7{word-spacing:304.467437px;}
.wsb4{word-spacing:305.654966px;}
.wsba{word-spacing:309.958310px;}
.wsbc{word-spacing:314.505446px;}
.wsb9{word-spacing:327.949200px;}
.wsb6{word-spacing:327.955046px;}
.wsaa{word-spacing:351.108432px;}
.ws9e{word-spacing:377.925437px;}
.wsa3{word-spacing:378.116026px;}
.ws9a{word-spacing:378.145824px;}
.ws9f{word-spacing:383.416310px;}
.wsa7{word-spacing:388.502208px;}
.ws99{word-spacing:391.514371px;}
.ws81{word-spacing:588.608294px;}
._15{margin-left:-22.903696px;}
._20{margin-left:-20.913288px;}
._26{margin-left:-7.890379px;}
._16{margin-left:-6.880176px;}
._9{margin-left:-5.864026px;}
._8{margin-left:-4.307504px;}
._f{margin-left:-3.222652px;}
._0{margin-left:-1.548184px;}
._22{width:1.339930px;}
._5{width:2.998421px;}
._48{width:11.805887px;}
._1{width:13.264168px;}
._12{width:14.822586px;}
._d{width:15.912356px;}
._a{width:17.000294px;}
._b{width:18.775642px;}
._17{width:20.323704px;}
._e{width:22.380134px;}
._1b{width:24.268894px;}
._2{width:25.314894px;}
._11{width:26.540366px;}
._25{width:28.632512px;}
._c{width:29.804314px;}
._3{width:31.256572px;}
._4{width:33.355008px;}
._1c{width:35.086552px;}
._1a{width:37.054890px;}
._19{width:39.690998px;}
._18{width:42.614021px;}
._10{width:46.565192px;}
._6{width:54.391618px;}
._7{width:69.330676px;}
._30{width:149.427926px;}
._27{width:156.553344px;}
._36{width:157.697933px;}
._34{width:176.266800px;}
._23{width:180.721862px;}
._32{width:184.600733px;}
._2c{width:190.607731px;}
._2b{width:193.943232px;}
._2d{width:195.126797px;}
._33{width:198.051600px;}
._28{width:203.196557px;}
._2f{width:206.209267px;}
._29{width:214.494221px;}
._2a{width:216.968947px;}
._21{width:277.381806px;}
._39{width:286.799270px;}
._31{width:293.599795px;}
._3f{width:301.717354px;}
._3d{width:310.064400px;}
._3e{width:315.168154px;}
._40{width:323.328384px;}
._3b{width:336.939379px;}
._3a{width:339.898291px;}
._38{width:343.664179px;}
._2e{width:350.496576px;}
._3c{width:363.892378px;}
._37{width:374.784566px;}
._35{width:382.983878px;}
._1e{width:454.314188px;}
._1f{width:519.461239px;}
._42{width:631.635821px;}
._13{width:723.860422px;}
._24{width:804.348202px;}
._45{width:809.124605px;}
._41{width:835.735930px;}
._46{width:910.996502px;}
._43{width:944.046576px;}
._44{width:974.204582px;}
._1d{width:985.042685px;}
._47{width:2500.851000px;}
._14{width:2524.761000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y67{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y39{bottom:104.646000px;}
.y1d7{bottom:105.834000px;}
.y66{bottom:110.763000px;}
.y181{bottom:115.425000px;}
.y20d{bottom:116.458500px;}
.ycc{bottom:117.355500px;}
.y115{bottom:119.148000px;}
.yfb{bottom:120.493500px;}
.y38{bottom:122.535000px;}
.y1d6{bottom:123.093000px;}
.y180{bottom:123.643500px;}
.y150{bottom:126.273000px;}
.y65{bottom:129.592500px;}
.y182{bottom:131.863500px;}
.y20c{bottom:133.719000px;}
.ycb{bottom:136.185000px;}
.y114{bottom:137.977500px;}
.y9d{bottom:138.426000px;}
.y23{bottom:139.264499px;}
.yfa{bottom:139.323000px;}
.y1d5{bottom:140.353500px;}
.y37{bottom:140.422500px;}
.y1b8{bottom:143.953500px;}
.y14f{bottom:145.102500px;}
.y17f{bottom:148.300500px;}
.y64{bottom:148.422000px;}
.y20b{bottom:150.978000px;}
.yca{bottom:155.013000px;}
.y113{bottom:156.807000px;}
.y9c{bottom:157.255500px;}
.y1d4{bottom:157.614000px;}
.yf9{bottom:158.152500px;}
.y36{bottom:158.310000px;}
.y1b7{bottom:162.783000px;}
.y14e{bottom:163.932000px;}
.y17e{bottom:164.739000px;}
.y63{bottom:167.251500px;}
.y20a{bottom:168.238500px;}
.y17d{bottom:172.959000px;}
.yc9{bottom:173.842500px;}
.y1d3{bottom:174.874500px;}
.y112{bottom:175.636500px;}
.y9b{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.yf8{bottom:176.982000px;}
.y1b6{bottom:181.612500px;}
.y14d{bottom:182.761500px;}
.y209{bottom:185.499000px;}
.y62{bottom:186.081000px;}
.y1d2{bottom:192.135000px;}
.yc8{bottom:192.672000px;}
.y34{bottom:194.086500px;}
.y111{bottom:194.466000px;}
.y9a{bottom:194.914500px;}
.yf7{bottom:195.811500px;}
.y1a{bottom:196.933500px;}
.y17c{bottom:197.616000px;}
.y1b5{bottom:200.442000px;}
.y14c{bottom:201.591000px;}
.y208{bottom:202.759500px;}
.y61{bottom:204.910500px;}
.y1d1{bottom:209.395500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yc7{bottom:211.501500px;}
.y33{bottom:211.974000px;}
.y110{bottom:213.295500px;}
.y99{bottom:213.744000px;}
.yf6{bottom:214.641000px;}
.y17b{bottom:214.653000px;}
.y1ba{bottom:217.779000px;}
.y1b4{bottom:219.271500px;}
.y207{bottom:220.020000px;}
.y14b{bottom:220.420500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y60{bottom:223.740000px;}
.y1d0{bottom:226.656000px;}
.y32{bottom:229.863000px;}
.yc6{bottom:230.331000px;}
.y17a{bottom:231.090000px;}
.y10f{bottom:232.125000px;}
.y98{bottom:232.573500px;}
.yf5{bottom:233.470500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y206{bottom:237.280500px;}
.y1b3{bottom:238.101000px;}
.y14a{bottom:239.250000px;}
.y5f{bottom:242.569500px;}
.y1cf{bottom:243.916500px;}
.y179{bottom:247.528500px;}
.yc5{bottom:249.160500px;}
.y10e{bottom:250.954500px;}
.y97{bottom:251.403000px;}
.yf4{bottom:252.300000px;}
.y205{bottom:254.541000px;}
.y1b2{bottom:256.930500px;}
.y149{bottom:258.079500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1ce{bottom:261.175500px;}
.y5e{bottom:261.399000px;}
.y178{bottom:263.967000px;}
.yc4{bottom:267.990000px;}
.y11c{bottom:269.784000px;}
.y96{bottom:270.232500px;}
.yf3{bottom:271.128000px;}
.y204{bottom:271.801500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y10d{bottom:274.267500px;}
.y1b1{bottom:275.760000px;}
.y148{bottom:276.909000px;}
.y1cd{bottom:278.436000px;}
.y5d{bottom:280.228500px;}
.y177{bottom:280.405500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yc3{bottom:286.819500px;}
.y11b{bottom:288.613500px;}
.y95{bottom:289.062000px;}
.yf2{bottom:289.957500px;}
.y10c{bottom:294.441000px;}
.y1b0{bottom:294.589500px;}
.y1cc{bottom:295.696500px;}
.y147{bottom:295.738500px;}
.y31{bottom:297.166500px;}
.y5c{bottom:299.058000px;}
.y176{bottom:304.047000px;}
.yc2{bottom:305.649000px;}
.y203{bottom:306.321000px;}
.y94{bottom:307.891500px;}
.yf1{bottom:308.787000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y11a{bottom:311.926500px;}
.y1cb{bottom:312.957000px;}
.y1af{bottom:313.419000px;}
.y146{bottom:314.568000px;}
.y30{bottom:315.054000px;}
.y5b{bottom:317.887500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y202{bottom:323.581500px;}
.yc1{bottom:324.478500px;}
.y93{bottom:326.719500px;}
.yf0{bottom:327.616500px;}
.y10b{bottom:328.065000px;}
.y1ca{bottom:330.217500px;}
.y119{bottom:332.100000px;}
.y1ae{bottom:332.248500px;}
.y2f{bottom:332.941500px;}
.y145{bottom:333.396000px;}
.y5a{bottom:336.717000px;}
.y175{bottom:338.655000px;}
.y201{bottom:340.842000px;}
.yc0{bottom:343.308000px;}
.y92{bottom:345.549000px;}
.yef{bottom:346.446000px;}
.y1c9{bottom:347.478000px;}
.y11{bottom:348.133500px;}
.y2e{bottom:350.830500px;}
.y1ad{bottom:351.078000px;}
.y144{bottom:352.225500px;}
.y200{bottom:358.102500px;}
.y59{bottom:360.028500px;}
.ybf{bottom:362.137500px;}
.y91{bottom:364.378500px;}
.y1c8{bottom:364.738500px;}
.y10a{bottom:364.827000px;}
.yee{bottom:365.275500px;}
.y118{bottom:365.724000px;}
.y143{bottom:371.055000px;}
.y174{bottom:373.345500px;}
.y1ff{bottom:375.363000px;}
.y2d{bottom:379.179000px;}
.ybe{bottom:380.967000px;}
.y1c7{bottom:381.999000px;}
.y90{bottom:383.208000px;}
.y109{bottom:383.656500px;}
.yed{bottom:384.105000px;}
.y10{bottom:386.785499px;}
.y142{bottom:389.884500px;}
.y1ac{bottom:391.210500px;}
.y173{bottom:392.175000px;}
.y1fe{bottom:392.623500px;}
.y2c{bottom:397.066500px;}
.ybd{bottom:399.796500px;}
.y8f{bottom:402.037500px;}
.y108{bottom:402.486000px;}
.yec{bottom:402.934500px;}
.y1c6{bottom:403.741500px;}
.y1ab{bottom:405.408000px;}
.yf{bottom:408.044999px;}
.y141{bottom:408.714000px;}
.y1fd{bottom:409.884000px;}
.y172{bottom:411.004500px;}
.ybc{bottom:418.626000px;}
.y8e{bottom:420.867000px;}
.y107{bottom:421.315500px;}
.yeb{bottom:421.764000px;}
.y1aa{bottom:421.977000px;}
.y2b{bottom:423.921000px;}
.y1fc{bottom:427.144500px;}
.y140{bottom:427.543500px;}
.y171{bottom:429.834000px;}
.y58{bottom:435.178500px;}
.y1c5{bottom:437.365500px;}
.ybb{bottom:437.455500px;}
.y1a9{bottom:438.415500px;}
.y8d{bottom:439.696500px;}
.y106{bottom:440.145000px;}
.yea{bottom:440.593500px;}
.y2a{bottom:441.810000px;}
.y1fb{bottom:444.403500px;}
.y13f{bottom:446.373000px;}
.y170{bottom:448.663500px;}
.y1a8{bottom:454.854000px;}
.yba{bottom:456.285000px;}
.y8c{bottom:458.526000px;}
.y105{bottom:458.974500px;}
.ye9{bottom:459.423000px;}
.y29{bottom:459.697500px;}
.y1fa{bottom:461.664000px;}
.y1c4{bottom:463.906500px;}
.y13e{bottom:465.202500px;}
.y16f{bottom:467.493000px;}
.y1a7{bottom:471.292500px;}
.y57{bottom:472.569000px;}
.yb9{bottom:475.114500px;}
.y8b{bottom:477.355500px;}
.y28{bottom:477.585000px;}
.y104{bottom:477.804000px;}
.y1f9{bottom:478.924500px;}
.y1c3{bottom:481.480500px;}
.ye8{bottom:482.736000px;}
.y13d{bottom:484.032000px;}
.ye{bottom:484.864502px;}
.y16e{bottom:486.322500px;}
.y1a6{bottom:487.731000px;}
.y56{bottom:492.025500px;}
.yb8{bottom:493.944000px;}
.y27{bottom:495.474000px;}
.y8a{bottom:496.185000px;}
.y103{bottom:496.633500px;}
.y13c{bottom:502.861500px;}
.yd{bottom:502.864502px;}
.y1a5{bottom:504.169500px;}
.y16d{bottom:505.152000px;}
.y1c2{bottom:508.021500px;}
.y55{bottom:511.483500px;}
.y26{bottom:513.361500px;}
.y1f8{bottom:513.445500px;}
.y89{bottom:515.014500px;}
.y102{bottom:515.463000px;}
.ye7{bottom:516.360000px;}
.yb7{bottom:517.257000px;}
.y1a4{bottom:520.608000px;}
.yc{bottom:520.864502px;}
.y13b{bottom:521.691000px;}
.y16c{bottom:523.981500px;}
.y1f7{bottom:530.706000px;}
.y54{bottom:530.940000px;}
.y25{bottom:531.249000px;}
.y88{bottom:533.844000px;}
.y101{bottom:534.292500px;}
.y1c1{bottom:534.561000px;}
.ye6{bottom:535.189500px;}
.y1a3{bottom:537.046500px;}
.yb6{bottom:537.430500px;}
.yb{bottom:538.864499px;}
.y13a{bottom:540.520500px;}
.y16b{bottom:542.811000px;}
.y1f6{bottom:547.966500px;}
.y24{bottom:549.138000px;}
.y53{bottom:550.396500px;}
.y1c0{bottom:552.135000px;}
.y87{bottom:552.673500px;}
.y100{bottom:553.122000px;}
.y1a2{bottom:553.485000px;}
.ya{bottom:556.864499px;}
.y16a{bottom:561.640500px;}
.y1f5{bottom:565.227000px;}
.y52{bottom:569.854500px;}
.y1a1{bottom:569.923500px;}
.yb5{bottom:571.054500px;}
.y86{bottom:571.503000px;}
.ye5{bottom:571.951500px;}
.y1bf{bottom:578.676000px;}
.y169{bottom:580.470000px;}
.y1f4{bottom:582.487500px;}
.y139{bottom:588.972000px;}
.y51{bottom:589.311000px;}
.yb4{bottom:589.884000px;}
.y85{bottom:590.332500px;}
.ye4{bottom:590.781000px;}
.y1a0{bottom:592.066500px;}
.y1be{bottom:596.250000px;}
.y138{bottom:597.190500px;}
.y1f3{bottom:599.746500px;}
.y168{bottom:603.781500px;}
.y19f{bottom:608.505000px;}
.yb3{bottom:608.713500px;}
.y50{bottom:608.769000px;}
.y84{bottom:609.162000px;}
.ye3{bottom:609.610500px;}
.y1bd{bottom:613.824000px;}
.y1f2{bottom:617.007000px;}
.y167{bottom:623.956500px;}
.y19e{bottom:624.943500px;}
.yb2{bottom:627.543000px;}
.y83{bottom:627.991500px;}
.y4f{bottom:628.225500px;}
.ye2{bottom:628.440000px;}
.y136{bottom:629.050500px;}
.y1bc{bottom:631.398000px;}
.y1f1{bottom:634.267500px;}
.y135{bottom:637.269000px;}
.y19d{bottom:641.382000px;}
.y137{bottom:645.489000px;}
.y9{bottom:645.510000px;}
.yb1{bottom:646.372500px;}
.y82{bottom:646.821000px;}
.ye1{bottom:647.269500px;}
.y4e{bottom:647.682000px;}
.y1bb{bottom:648.973500px;}
.y1f0{bottom:651.528000px;}
.y166{bottom:657.580500px;}
.y19c{bottom:657.820500px;}
.yb0{bottom:665.202000px;}
.y81{bottom:665.650500px;}
.ye0{bottom:666.099000px;}
.y8{bottom:666.771000px;}
.y4d{bottom:667.140000px;}
.y1ef{bottom:668.788500px;}
.y134{bottom:669.129000px;}
.y19b{bottom:674.259000px;}
.y165{bottom:676.410000px;}
.yaf{bottom:684.031500px;}
.y80{bottom:684.480000px;}
.ydf{bottom:684.928500px;}
.y1ee{bottom:686.049000px;}
.y4c{bottom:686.596500px;}
.y19a{bottom:690.697500px;}
.y133{bottom:692.770500px;}
.y164{bottom:695.239500px;}
.y210{bottom:698.751000px;}
.yae{bottom:702.861000px;}
.y7f{bottom:703.309500px;}
.y131{bottom:703.515000px;}
.yde{bottom:703.758000px;}
.y4b{bottom:706.054500px;}
.y199{bottom:707.134500px;}
.y130{bottom:709.209000px;}
.y163{bottom:714.069000px;}
.y20f{bottom:716.011500px;}
.y1ed{bottom:720.570000px;}
.yad{bottom:721.690500px;}
.y7e{bottom:722.139000px;}
.ydd{bottom:722.587500px;}
.y4a{bottom:725.511000px;}
.y132{bottom:725.647500px;}
.y7{bottom:726.298500px;}
.y198{bottom:730.776000px;}
.y162{bottom:732.898500px;}
.y20e{bottom:733.272000px;}
.y1ec{bottom:737.829000px;}
.yac{bottom:740.520000px;}
.y7d{bottom:740.968500px;}
.ydc{bottom:741.417000px;}
.y12f{bottom:744.580500px;}
.y49{bottom:744.967500px;}
.y12e{bottom:751.183500px;}
.y161{bottom:751.728000px;}
.y3{bottom:752.599495px;}
.y1eb{bottom:755.089500px;}
.yab{bottom:759.349500px;}
.y7c{bottom:759.798000px;}
.ydb{bottom:760.246500px;}
.y197{bottom:762.396000px;}
.y48{bottom:764.425500px;}
.y1ea{bottom:772.350000px;}
.y12d{bottom:776.415000px;}
.yaa{bottom:778.179000px;}
.y7b{bottom:778.627500px;}
.yda{bottom:779.076000px;}
.y12b{bottom:779.101500px;}
.y47{bottom:783.882000px;}
.y12a{bottom:784.635000px;}
.y160{bottom:786.249000px;}
.y1e9{bottom:789.610500px;}
.y12c{bottom:792.853500px;}
.ya9{bottom:797.008500px;}
.y7a{bottom:797.457000px;}
.yd9{bottom:797.904000px;}
.y196{bottom:799.500000px;}
.y1e8{bottom:806.871000px;}
.ya8{bottom:815.838000px;}
.y79{bottom:816.286500px;}
.y129{bottom:816.493500px;}
.yd8{bottom:816.733500px;}
.y195{bottom:818.329500px;}
.y46{bottom:822.468000px;}
.y1e7{bottom:824.131500px;}
.y15f{bottom:830.632500px;}
.y127{bottom:832.932000px;}
.ya7{bottom:834.667500px;}
.y78{bottom:835.114500px;}
.yd7{bottom:835.563000px;}
.y194{bottom:837.159000px;}
.y45{bottom:838.606500px;}
.y1e6{bottom:841.392000px;}
.y128{bottom:849.370500px;}
.y15e{bottom:849.462000px;}
.ya6{bottom:853.497000px;}
.y77{bottom:853.944000px;}
.yd6{bottom:854.392500px;}
.y193{bottom:855.988500px;}
.y1e5{bottom:858.652500px;}
.y117{bottom:858.876000px;}
.y44{bottom:859.086000px;}
.y15d{bottom:868.291500px;}
.y43{bottom:870.886500px;}
.ya5{bottom:872.326500px;}
.y76{bottom:872.773500px;}
.y126{bottom:873.012000px;}
.yd5{bottom:873.222000px;}
.y1e4{bottom:875.913000px;}
.y192{bottom:879.300000px;}
.y2{bottom:879.369000px;}
.y42{bottom:887.025000px;}
.y15c{bottom:887.121000px;}
.ya4{bottom:891.156000px;}
.y41{bottom:891.366000px;}
.y75{bottom:891.603000px;}
.yd4{bottom:892.051500px;}
.y116{bottom:892.500000px;}
.y1e3{bottom:893.172000px;}
.y125{bottom:896.652000px;}
.y40{bottom:903.165000px;}
.y15b{bottom:905.950500px;}
.ya3{bottom:909.984000px;}
.y74{bottom:910.432500px;}
.yd3{bottom:910.881000px;}
.y124{bottom:913.090500px;}
.y121{bottom:915.777000px;}
.y191{bottom:916.296000px;}
.y120{bottom:921.310500px;}
.y3f{bottom:923.644500px;}
.y15a{bottom:924.778500px;}
.y1e2{bottom:927.693000px;}
.ya2{bottom:928.813500px;}
.y73{bottom:929.262000px;}
.y123{bottom:929.529000px;}
.yd2{bottom:929.710500px;}
.y190{bottom:930.492000px;}
.y159{bottom:943.608000px;}
.y1e1{bottom:944.953500px;}
.y122{bottom:945.967500px;}
.ya1{bottom:947.643000px;}
.y72{bottom:948.091500px;}
.yd1{bottom:948.540000px;}
.y18e{bottom:952.324500px;}
.y18d{bottom:960.544500px;}
.y1e0{bottom:962.214000px;}
.y158{bottom:962.437500px;}
.ya0{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.yd0{bottom:967.369500px;}
.y3e{bottom:968.320500px;}
.y18f{bottom:968.763000px;}
.y11f{bottom:969.607500px;}
.y1df{bottom:979.474500px;}
.y157{bottom:981.267000px;}
.y18b{bottom:985.201500px;}
.y9f{bottom:985.302000px;}
.y70{bottom:985.750500px;}
.ycf{bottom:986.199000px;}
.y11e{bottom:993.249000px;}
.y18a{bottom:993.421500px;}
.y1de{bottom:996.735000px;}
.y156{bottom:1000.096500px;}
.y18c{bottom:1001.640000px;}
.y6f{bottom:1004.580000px;}
.yff{bottom:1005.028500px;}
.y3d{bottom:1008.240000px;}
.y9e{bottom:1008.615000px;}
.yce{bottom:1009.512000px;}
.y1dd{bottom:1013.995500px;}
.y189{bottom:1018.078500px;}
.y155{bottom:1018.926000px;}
.y6e{bottom:1023.409500px;}
.y188{bottom:1026.297000px;}
.y11d{bottom:1027.857000px;}
.yfe{bottom:1028.341500px;}
.y1dc{bottom:1031.254500px;}
.y3c{bottom:1036.485000px;}
.y154{bottom:1037.755500px;}
.y6d{bottom:1042.239000px;}
.ycd{bottom:1043.136000px;}
.y1db{bottom:1048.515000px;}
.y186{bottom:1050.955500px;}
.y153{bottom:1056.585000px;}
.y185{bottom:1059.174000px;}
.y6c{bottom:1061.068500px;}
.yfd{bottom:1061.965500px;}
.y3b{bottom:1064.728500px;}
.y1da{bottom:1065.775500px;}
.y187{bottom:1067.394000px;}
.y152{bottom:1075.414500px;}
.y6b{bottom:1079.898000px;}
.yfc{bottom:1080.795000px;}
.y1d9{bottom:1083.036000px;}
.y184{bottom:1084.429500px;}
.y3a{bottom:1092.972000px;}
.y151{bottom:1094.244000px;}
.y6a{bottom:1098.727500px;}
.y1d8{bottom:1100.296500px;}
.y1b9{bottom:1104.151500px;}
.y69{bottom:1117.557000px;}
.y183{bottom:1119.037500px;}
.y68{bottom:1177.662000px;}
.h16{height:16.817382px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h10{height:32.565965px;}
.h24{height:37.605082px;}
.hb{height:37.993262px;}
.hc{height:38.202476px;}
.h17{height:38.734848px;}
.h1f{height:39.488026px;}
.h22{height:41.250077px;}
.h1e{height:41.783144px;}
.h13{height:43.038432px;}
.h11{height:43.421105px;}
.hd{height:43.875290px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:48.848947px;}
.h23{height:49.117939px;}
.h14{height:54.276245px;}
.hf{height:54.411312px;}
.h15{height:54.575123px;}
.h2{height:55.152000px;}
.h1b{height:56.467262px;}
.h18{height:57.103262px;}
.h21{height:57.517262px;}
.h19{height:60.109262px;}
.h25{height:61.760947px;}
.h1a{height:75.260947px;}
.he{height:77.469696px;}
.h5{height:78.132000px;}
.h1d{height:81.722947px;}
.h1c{height:81.728947px;}
.h20{height:114.602947px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x30{left:64.795500px;}
.x28{left:65.917500px;}
.x2b{left:77.275500px;}
.x17{left:82.507500px;}
.x57{left:85.848000px;}
.x25{left:87.498000px;}
.x1c{left:90.792000px;}
.x31{left:94.464000px;}
.x16{left:98.640000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3e{left:108.432000px;}
.x21{left:111.061500px;}
.x2f{left:112.543500px;}
.x32{left:114.571500px;}
.x38{left:116.508000px;}
.x3a{left:117.778500px;}
.x1d{left:119.863500px;}
.x34{left:122.157000px;}
.x15{left:128.632500px;}
.x4{left:203.484001px;}
.x33{left:225.253500px;}
.x39{left:230.701500px;}
.x8{left:248.526000px;}
.x6{left:249.591000px;}
.x4b{left:258.726000px;}
.x7{left:269.914500px;}
.x9{left:281.479500px;}
.x29{left:290.064000px;}
.x48{left:291.738000px;}
.x43{left:292.834500px;}
.x44{left:294.132000px;}
.x46{left:295.449000px;}
.x47{left:296.721000px;}
.xa{left:299.760000px;}
.x45{left:301.098000px;}
.x2c{left:303.789000px;}
.x4a{left:309.750000px;}
.x22{left:313.171500px;}
.x52{left:322.359000px;}
.x35{left:323.683500px;}
.x12{left:326.331000px;}
.x4c{left:336.828000px;}
.x13{left:338.622000px;}
.x51{left:344.365500px;}
.x4e{left:350.596500px;}
.x4f{left:352.579500px;}
.x4d{left:356.595000px;}
.x49{left:359.974500px;}
.x11{left:370.870500px;}
.x37{left:383.478000px;}
.xc{left:390.031500px;}
.x36{left:400.095000px;}
.xb{left:435.585000px;}
.x3{left:454.959000px;}
.x23{left:456.216000px;}
.x1a{left:461.731500px;}
.x19{left:463.513500px;}
.x1e{left:465.840000px;}
.x18{left:472.437000px;}
.x1f{left:475.651500px;}
.x26{left:484.656000px;}
.x20{left:507.507000px;}
.x1b{left:511.642500px;}
.x2a{left:531.777000px;}
.x27{left:534.937500px;}
.x3b{left:536.302500px;}
.x3f{left:541.749000px;}
.x53{left:554.181000px;}
.x54{left:560.607000px;}
.x24{left:565.204500px;}
.x5a{left:574.678500px;}
.x40{left:612.714000px;}
.x3d{left:618.160500px;}
.x3c{left:629.331000px;}
.xf{left:642.708000px;}
.x50{left:650.347500px;}
.x58{left:670.464000px;}
.x59{left:677.374500px;}
.x2d{left:685.671000px;}
.x42{left:689.125500px;}
.x2e{left:693.141000px;}
.x14{left:701.923500px;}
.x41{left:705.742500px;}
.xd{left:711.303000px;}
.x10{left:769.237500px;}
.x55{left:783.483000px;}
.x56{left:832.177500px;}
.xe{left:837.834000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-9.328000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.109333pt;}
.va{vertical-align:11.477333pt;}
.v5{vertical-align:16.986667pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:23.477333pt;}
.v7{vertical-align:29.226667pt;}
.v8{vertical-align:58.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000234pt;}
.ls32{letter-spacing:0.000403pt;}
.ls24{letter-spacing:0.000540pt;}
.ls19{letter-spacing:0.000544pt;}
.ls2b{letter-spacing:0.000600pt;}
.ls2d{letter-spacing:0.000677pt;}
.ls2c{letter-spacing:0.000711pt;}
.ls1b{letter-spacing:0.001021pt;}
.ls2a{letter-spacing:0.001056pt;}
.ls30{letter-spacing:0.002030pt;}
.ls2e{letter-spacing:0.002385pt;}
.ls31{letter-spacing:0.003405pt;}
.ls17{letter-spacing:0.004147pt;}
.ls1d{letter-spacing:0.570745pt;}
.ls11{letter-spacing:0.576078pt;}
.ls18{letter-spacing:2.651733pt;}
.ls20{letter-spacing:2.656533pt;}
.ls16{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls5{letter-spacing:10.626533pt;}
.ls1e{letter-spacing:11.955635pt;}
.ls26{letter-spacing:12.286400pt;}
.ls21{letter-spacing:12.911530pt;}
.lsb{letter-spacing:13.070931pt;}
.ls13{letter-spacing:13.230333pt;}
.ls15{letter-spacing:13.283349pt;}
.ls8{letter-spacing:13.283467pt;}
.ls14{letter-spacing:13.283543pt;}
.ls2{letter-spacing:13.283733pt;}
.ls9{letter-spacing:13.336601pt;}
.ls28{letter-spacing:13.387414pt;}
.lsa{letter-spacing:13.389734pt;}
.ls27{letter-spacing:13.438295pt;}
.ls29{letter-spacing:13.441205pt;}
.ls6{letter-spacing:13.442868pt;}
.ls22{letter-spacing:13.547120pt;}
.ls7{letter-spacing:13.549136pt;}
.lsc{letter-spacing:13.708538pt;}
.ls1c{letter-spacing:14.080475pt;}
.ls1a{letter-spacing:15.939543pt;}
.ls23{letter-spacing:16.099733pt;}
.ls25{letter-spacing:18.358557pt;}
.ls12{letter-spacing:22.581893pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.lsf{letter-spacing:325.350340pt;}
.lsd{letter-spacing:393.217007pt;}
.lse{letter-spacing:416.123674pt;}
.ls10{letter-spacing:431.718340pt;}
.ls1f{letter-spacing:957.989867pt;}
.ws8c{word-spacing:-40.078876pt;}
.ws76{word-spacing:-13.283467pt;}
.ws80{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws54{word-spacing:-2.656693pt;}
.ws26{word-spacing:-2.391024pt;}
.ws52{word-spacing:-2.284756pt;}
.wsdc{word-spacing:-2.199757pt;}
.ws7e{word-spacing:-2.178489pt;}
.wsdb{word-spacing:-2.151936pt;}
.wsc9{word-spacing:-2.056294pt;}
.ws46{word-spacing:-1.912819pt;}
.ws8d{word-spacing:-1.753418pt;}
.ws47{word-spacing:-1.700284pt;}
.ws45{word-spacing:-1.647150pt;}
.wsca{word-spacing:-1.625907pt;}
.ws21{word-spacing:-1.578086pt;}
.ws6e{word-spacing:-1.540882pt;}
.wsc4{word-spacing:-1.487748pt;}
.ws5c{word-spacing:-1.275213pt;}
.wsc3{word-spacing:-1.168945pt;}
.ws53{word-spacing:-1.115811pt;}
.ws57{word-spacing:-1.062677pt;}
.ws20{word-spacing:-1.010074pt;}
.wsc2{word-spacing:-1.009543pt;}
.ws7c{word-spacing:-0.956410pt;}
.ws73{word-spacing:-0.903276pt;}
.ws5b{word-spacing:-0.850142pt;}
.wsd8{word-spacing:-0.812954pt;}
.ws49{word-spacing:-0.797008pt;}
.wse2{word-spacing:-0.669491pt;}
.ws43{word-spacing:-0.584473pt;}
.ws56{word-spacing:-0.531339pt;}
.wsf0{word-spacing:-0.526029pt;}
.ws23{word-spacing:-0.478205pt;}
.ws69{word-spacing:-0.425071pt;}
.wsf5{word-spacing:-0.382566pt;}
.ws68{word-spacing:-0.371937pt;}
.ws55{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.ws67{word-spacing:-0.212535pt;}
.wse0{word-spacing:-0.191283pt;}
.ws44{word-spacing:-0.159402pt;}
.wscc{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws34{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.042507pt;}
.wsec{word-spacing:-0.010607pt;}
.wse5{word-spacing:-0.010470pt;}
.wse8{word-spacing:-0.008269pt;}
.wsd1{word-spacing:-0.007526pt;}
.wse7{word-spacing:-0.007296pt;}
.wsf1{word-spacing:-0.006545pt;}
.wsf3{word-spacing:-0.005274pt;}
.wse3{word-spacing:-0.004198pt;}
.wsd6{word-spacing:-0.003465pt;}
.wsd5{word-spacing:-0.003456pt;}
.ws10{word-spacing:-0.001867pt;}
.ws2f{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.037038pt;}
.ws1c{word-spacing:0.047821pt;}
.ws2e{word-spacing:0.053134pt;}
.ws12{word-spacing:0.085014pt;}
.ws1f{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.ws3b{word-spacing:0.159402pt;}
.ws2{word-spacing:0.185968pt;}
.wsdf{word-spacing:0.191283pt;}
.ws2d{word-spacing:0.212535pt;}
.wsd9{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.wsd{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws37{word-spacing:0.371937pt;}
.ws1a{word-spacing:0.382566pt;}
.ws3a{word-spacing:0.425071pt;}
.ws7a{word-spacing:0.478205pt;}
.wsef{word-spacing:0.621670pt;}
.ws8a{word-spacing:0.690740pt;}
.ws4b{word-spacing:0.743874pt;}
.ws8e{word-spacing:0.797008pt;}
.ws29{word-spacing:0.903276pt;}
.ws4c{word-spacing:0.956410pt;}
.ws85{word-spacing:1.062677pt;}
.ws24{word-spacing:1.168945pt;}
.wsc{word-spacing:1.227389pt;}
.ws16{word-spacing:1.243341pt;}
.wse4{word-spacing:1.291162pt;}
.ws63{word-spacing:1.328347pt;}
.wsc8{word-spacing:1.434614pt;}
.wsc5{word-spacing:1.487748pt;}
.wsd7{word-spacing:1.530266pt;}
.ws36{word-spacing:1.540882pt;}
.ws66{word-spacing:1.594016pt;}
.wse6{word-spacing:1.625907pt;}
.ws86{word-spacing:1.647150pt;}
.ws4d{word-spacing:1.700284pt;}
.ws39{word-spacing:1.806551pt;}
.ws1b{word-spacing:1.817190pt;}
.ws6b{word-spacing:1.859685pt;}
.ws48{word-spacing:1.912819pt;}
.ws1e{word-spacing:1.912832pt;}
.ws35{word-spacing:1.965953pt;}
.wsae{word-spacing:2.019087pt;}
.ws71{word-spacing:2.072221pt;}
.ws62{word-spacing:2.125355pt;}
.ws72{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws3{word-spacing:2.278172pt;}
.ws59{word-spacing:2.284756pt;}
.wscf{word-spacing:2.295398pt;}
.ws51{word-spacing:2.337890pt;}
.wsea{word-spacing:2.343219pt;}
.ws60{word-spacing:2.444158pt;}
.ws61{word-spacing:2.497292pt;}
.wsda{word-spacing:2.534502pt;}
.wsd4{word-spacing:2.582323pt;}
.ws87{word-spacing:2.603559pt;}
.wsee{word-spacing:2.677965pt;}
.ws70{word-spacing:2.709827pt;}
.wse9{word-spacing:2.725786pt;}
.ws88{word-spacing:2.816095pt;}
.wse1{word-spacing:2.860740pt;}
.wsf2{word-spacing:2.861150pt;}
.wsf4{word-spacing:2.863189pt;}
.wsd0{word-spacing:2.863565pt;}
.wseb{word-spacing:2.863889pt;}
.wsed{word-spacing:2.865459pt;}
.ws6a{word-spacing:2.869229pt;}
.wsb1{word-spacing:2.869248pt;}
.ws38{word-spacing:2.922363pt;}
.wsd2{word-spacing:3.012710pt;}
.ws58{word-spacing:3.081764pt;}
.ws82{word-spacing:3.087069pt;}
.wsf6{word-spacing:3.108352pt;}
.ws5a{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.ws41{word-spacing:3.241166pt;}
.ws5e{word-spacing:3.294300pt;}
.ws64{word-spacing:3.400567pt;}
.ws7d{word-spacing:3.453701pt;}
.wscb{word-spacing:3.490918pt;}
.wsc7{word-spacing:3.506835pt;}
.ws42{word-spacing:3.559969pt;}
.ws75{word-spacing:3.666237pt;}
.ws3c{word-spacing:3.719371pt;}
.ws78{word-spacing:3.772505pt;}
.ws14{word-spacing:3.777843pt;}
.wsde{word-spacing:3.921306pt;}
.ws84{word-spacing:3.931906pt;}
.wsdd{word-spacing:3.969126pt;}
.ws3e{word-spacing:3.985040pt;}
.ws3d{word-spacing:4.091308pt;}
.wsd3{word-spacing:4.160410pt;}
.ws28{word-spacing:4.197575pt;}
.ws4a{word-spacing:4.250709pt;}
.wsc0{word-spacing:4.303843pt;}
.ws17{word-spacing:4.303872pt;}
.ws50{word-spacing:4.463245pt;}
.ws89{word-spacing:4.569513pt;}
.wsc1{word-spacing:4.675780pt;}
.ws6c{word-spacing:4.728914pt;}
.ws79{word-spacing:4.782048pt;}
.wsa{word-spacing:4.872362pt;}
.wsc6{word-spacing:4.994583pt;}
.ws6d{word-spacing:5.047717pt;}
.ws83{word-spacing:5.100851pt;}
.ws8f{word-spacing:5.153985pt;}
.ws4e{word-spacing:5.207119pt;}
.wsaf{word-spacing:5.525922pt;}
.wsb0{word-spacing:5.579056pt;}
.ws7f{word-spacing:5.632190pt;}
.ws8b{word-spacing:5.842255pt;}
.wsce{word-spacing:5.977600pt;}
.wsad{word-spacing:6.036022pt;}
.ws40{word-spacing:6.110395pt;}
.ws65{word-spacing:6.376064pt;}
.ws74{word-spacing:6.482332pt;}
.ws4f{word-spacing:6.535466pt;}
.ws5d{word-spacing:6.588599pt;}
.ws5f{word-spacing:6.801135pt;}
.ws3f{word-spacing:6.854269pt;}
.ws2a{word-spacing:6.907403pt;}
.ws6f{word-spacing:7.013670pt;}
.ws25{word-spacing:7.066804pt;}
.ws77{word-spacing:7.119938pt;}
.ws7b{word-spacing:7.173072pt;}
.ws2b{word-spacing:8.129482pt;}
.ws8{word-spacing:8.740496pt;}
.ws9{word-spacing:10.525789pt;}
.ws13{word-spacing:10.571013pt;}
.ws5{word-spacing:13.836019pt;}
.wsb{word-spacing:14.282342pt;}
.wscd{word-spacing:14.972025pt;}
.ws7{word-spacing:19.857270pt;}
.wsf{word-spacing:35.593054pt;}
.wsa5{word-spacing:88.889600pt;}
.wsa8{word-spacing:108.260267pt;}
.wsa4{word-spacing:108.266291pt;}
.wsab{word-spacing:108.857600pt;}
.ws96{word-spacing:112.801067pt;}
.ws9c{word-spacing:128.057600pt;}
.wsa0{word-spacing:128.222933pt;}
.ws91{word-spacing:139.397632pt;}
.ws92{word-spacing:140.176000pt;}
.ws90{word-spacing:152.117965pt;}
.ws98{word-spacing:152.133333pt;}
.wsac{word-spacing:157.273600pt;}
.ws9d{word-spacing:162.057600pt;}
.wsa6{word-spacing:162.064691pt;}
.wsa1{word-spacing:167.940267pt;}
.ws97{word-spacing:181.240832pt;}
.ws9b{word-spacing:181.257600pt;}
.wsa2{word-spacing:182.020267pt;}
.wsa9{word-spacing:182.025600pt;}
.ws93{word-spacing:193.216000pt;}
.ws95{word-spacing:193.961165pt;}
.wsb3{word-spacing:203.038805pt;}
.wsb5{word-spacing:219.784397pt;}
.ws94{word-spacing:233.076770pt;}
.wsb8{word-spacing:243.689600pt;}
.wsbb{word-spacing:243.694797pt;}
.wsbf{word-spacing:262.316083pt;}
.wsbe{word-spacing:263.636070pt;}
.wsbd{word-spacing:263.657600pt;}
.wsb2{word-spacing:263.683891pt;}
.wsb7{word-spacing:270.637722pt;}
.wsb4{word-spacing:271.693303pt;}
.wsba{word-spacing:275.518498pt;}
.wsbc{word-spacing:279.560397pt;}
.wsb9{word-spacing:291.510400pt;}
.wsb6{word-spacing:291.515597pt;}
.wsaa{word-spacing:312.096384pt;}
.ws9e{word-spacing:335.933722pt;}
.wsa3{word-spacing:336.103134pt;}
.ws9a{word-spacing:336.129621pt;}
.ws9f{word-spacing:340.814498pt;}
.wsa7{word-spacing:345.335296pt;}
.ws99{word-spacing:348.012774pt;}
.ws81{word-spacing:523.207373pt;}
._15{margin-left:-20.358841pt;}
._20{margin-left:-18.589589pt;}
._26{margin-left:-7.013670pt;}
._16{margin-left:-6.115712pt;}
._9{margin-left:-5.212467pt;}
._8{margin-left:-3.828892pt;}
._f{margin-left:-2.864579pt;}
._0{margin-left:-1.376163pt;}
._22{width:1.191049pt;}
._5{width:2.665263pt;}
._48{width:10.494122pt;}
._1{width:11.790371pt;}
._12{width:13.175632pt;}
._d{width:14.144317pt;}
._a{width:15.111373pt;}
._b{width:16.689459pt;}
._17{width:18.065515pt;}
._e{width:19.893453pt;}
._1b{width:21.572350pt;}
._2{width:22.502128pt;}
._11{width:23.591437pt;}
._25{width:25.451122pt;}
._c{width:26.492723pt;}
._3{width:27.783619pt;}
._4{width:29.648896pt;}
._1c{width:31.188046pt;}
._1a{width:32.937680pt;}
._19{width:35.280887pt;}
._18{width:37.879130pt;}
._10{width:41.391282pt;}
._6{width:48.348105pt;}
._7{width:61.627267pt;}
._30{width:132.824823pt;}
._27{width:139.158528pt;}
._36{width:140.175940pt;}
._34{width:156.681600pt;}
._23{width:160.641655pt;}
._32{width:164.089540pt;}
._2c{width:169.429094pt;}
._2b{width:172.393984pt;}
._2d{width:173.446042pt;}
._33{width:176.045867pt;}
._28{width:180.619162pt;}
._2f{width:183.297126pt;}
._29{width:190.661530pt;}
._2a{width:192.861286pt;}
._21{width:246.561605pt;}
._39{width:254.932685pt;}
._31{width:260.977596pt;}
._3f{width:268.193203pt;}
._3d{width:275.612800pt;}
._3e{width:280.149470pt;}
._40{width:287.403008pt;}
._3b{width:299.501670pt;}
._3a{width:302.131814pt;}
._38{width:305.479270pt;}
._2e{width:311.552512pt;}
._3c{width:323.459891pt;}
._37{width:333.141837pt;}
._35{width:340.430114pt;}
._1e{width:403.834834pt;}
._1f{width:461.743324pt;}
._42{width:561.454063pt;}
._13{width:643.431486pt;}
._24{width:714.976179pt;}
._45{width:719.221871pt;}
._41{width:742.876382pt;}
._46{width:809.774669pt;}
._43{width:839.152512pt;}
._44{width:865.959629pt;}
._1d{width:875.593498pt;}
._47{width:2222.978667pt;}
._14{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y39{bottom:93.018667pt;}
.y1d7{bottom:94.074667pt;}
.y66{bottom:98.456000pt;}
.y181{bottom:102.600000pt;}
.y20d{bottom:103.518667pt;}
.ycc{bottom:104.316000pt;}
.y115{bottom:105.909333pt;}
.yfb{bottom:107.105333pt;}
.y38{bottom:108.920000pt;}
.y1d6{bottom:109.416000pt;}
.y180{bottom:109.905333pt;}
.y150{bottom:112.242667pt;}
.y65{bottom:115.193333pt;}
.y182{bottom:117.212000pt;}
.y20c{bottom:118.861333pt;}
.ycb{bottom:121.053333pt;}
.y114{bottom:122.646667pt;}
.y9d{bottom:123.045333pt;}
.y23{bottom:123.790666pt;}
.yfa{bottom:123.842667pt;}
.y1d5{bottom:124.758667pt;}
.y37{bottom:124.820000pt;}
.y1b8{bottom:127.958667pt;}
.y14f{bottom:128.980000pt;}
.y17f{bottom:131.822667pt;}
.y64{bottom:131.930667pt;}
.y20b{bottom:134.202667pt;}
.yca{bottom:137.789333pt;}
.y113{bottom:139.384000pt;}
.y9c{bottom:139.782667pt;}
.y1d4{bottom:140.101333pt;}
.yf9{bottom:140.580000pt;}
.y36{bottom:140.720000pt;}
.y1b7{bottom:144.696000pt;}
.y14e{bottom:145.717333pt;}
.y17e{bottom:146.434667pt;}
.y63{bottom:148.668000pt;}
.y20a{bottom:149.545333pt;}
.y17d{bottom:153.741333pt;}
.yc9{bottom:154.526667pt;}
.y1d3{bottom:155.444000pt;}
.y112{bottom:156.121333pt;}
.y9b{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.yf8{bottom:157.317333pt;}
.y1b6{bottom:161.433333pt;}
.y14d{bottom:162.454667pt;}
.y209{bottom:164.888000pt;}
.y62{bottom:165.405333pt;}
.y1d2{bottom:170.786667pt;}
.yc8{bottom:171.264000pt;}
.y34{bottom:172.521333pt;}
.y111{bottom:172.858667pt;}
.y9a{bottom:173.257333pt;}
.yf7{bottom:174.054667pt;}
.y1a{bottom:175.052000pt;}
.y17c{bottom:175.658667pt;}
.y1b5{bottom:178.170667pt;}
.y14c{bottom:179.192000pt;}
.y208{bottom:180.230667pt;}
.y61{bottom:182.142667pt;}
.y1d1{bottom:186.129333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yc7{bottom:188.001333pt;}
.y33{bottom:188.421333pt;}
.y110{bottom:189.596000pt;}
.y99{bottom:189.994667pt;}
.yf6{bottom:190.792000pt;}
.y17b{bottom:190.802667pt;}
.y1ba{bottom:193.581333pt;}
.y1b4{bottom:194.908000pt;}
.y207{bottom:195.573333pt;}
.y14b{bottom:195.929333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y60{bottom:198.880000pt;}
.y1d0{bottom:201.472000pt;}
.y32{bottom:204.322667pt;}
.yc6{bottom:204.738667pt;}
.y17a{bottom:205.413333pt;}
.y10f{bottom:206.333333pt;}
.y98{bottom:206.732000pt;}
.yf5{bottom:207.529333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y206{bottom:210.916000pt;}
.y1b3{bottom:211.645333pt;}
.y14a{bottom:212.666667pt;}
.y5f{bottom:215.617333pt;}
.y1cf{bottom:216.814667pt;}
.y179{bottom:220.025333pt;}
.yc5{bottom:221.476000pt;}
.y10e{bottom:223.070667pt;}
.y97{bottom:223.469333pt;}
.yf4{bottom:224.266667pt;}
.y205{bottom:226.258667pt;}
.y1b2{bottom:228.382667pt;}
.y149{bottom:229.404000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1ce{bottom:232.156000pt;}
.y5e{bottom:232.354667pt;}
.y178{bottom:234.637333pt;}
.yc4{bottom:238.213333pt;}
.y11c{bottom:239.808000pt;}
.y96{bottom:240.206667pt;}
.yf3{bottom:241.002667pt;}
.y204{bottom:241.601333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y10d{bottom:243.793333pt;}
.y1b1{bottom:245.120000pt;}
.y148{bottom:246.141333pt;}
.y1cd{bottom:247.498667pt;}
.y5d{bottom:249.092000pt;}
.y177{bottom:249.249333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yc3{bottom:254.950667pt;}
.y11b{bottom:256.545333pt;}
.y95{bottom:256.944000pt;}
.yf2{bottom:257.740000pt;}
.y10c{bottom:261.725333pt;}
.y1b0{bottom:261.857333pt;}
.y1cc{bottom:262.841333pt;}
.y147{bottom:262.878667pt;}
.y31{bottom:264.148000pt;}
.y5c{bottom:265.829333pt;}
.y176{bottom:270.264000pt;}
.yc2{bottom:271.688000pt;}
.y203{bottom:272.285333pt;}
.y94{bottom:273.681333pt;}
.yf1{bottom:274.477333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y11a{bottom:277.268000pt;}
.y1cb{bottom:278.184000pt;}
.y1af{bottom:278.594667pt;}
.y146{bottom:279.616000pt;}
.y30{bottom:280.048000pt;}
.y5b{bottom:282.566667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y202{bottom:287.628000pt;}
.yc1{bottom:288.425333pt;}
.y93{bottom:290.417333pt;}
.yf0{bottom:291.214667pt;}
.y10b{bottom:291.613333pt;}
.y1ca{bottom:293.526667pt;}
.y119{bottom:295.200000pt;}
.y1ae{bottom:295.332000pt;}
.y2f{bottom:295.948000pt;}
.y145{bottom:296.352000pt;}
.y5a{bottom:299.304000pt;}
.y175{bottom:301.026667pt;}
.y201{bottom:302.970667pt;}
.yc0{bottom:305.162667pt;}
.y92{bottom:307.154667pt;}
.yef{bottom:307.952000pt;}
.y1c9{bottom:308.869333pt;}
.y11{bottom:309.452000pt;}
.y2e{bottom:311.849333pt;}
.y1ad{bottom:312.069333pt;}
.y144{bottom:313.089333pt;}
.y200{bottom:318.313333pt;}
.y59{bottom:320.025333pt;}
.ybf{bottom:321.900000pt;}
.y91{bottom:323.892000pt;}
.y1c8{bottom:324.212000pt;}
.y10a{bottom:324.290667pt;}
.yee{bottom:324.689333pt;}
.y118{bottom:325.088000pt;}
.y143{bottom:329.826667pt;}
.y174{bottom:331.862667pt;}
.y1ff{bottom:333.656000pt;}
.y2d{bottom:337.048000pt;}
.ybe{bottom:338.637333pt;}
.y1c7{bottom:339.554667pt;}
.y90{bottom:340.629333pt;}
.y109{bottom:341.028000pt;}
.yed{bottom:341.426667pt;}
.y10{bottom:343.809333pt;}
.y142{bottom:346.564000pt;}
.y1ac{bottom:347.742667pt;}
.y173{bottom:348.600000pt;}
.y1fe{bottom:348.998667pt;}
.y2c{bottom:352.948000pt;}
.ybd{bottom:355.374667pt;}
.y8f{bottom:357.366667pt;}
.y108{bottom:357.765333pt;}
.yec{bottom:358.164000pt;}
.y1c6{bottom:358.881333pt;}
.y1ab{bottom:360.362667pt;}
.yf{bottom:362.706666pt;}
.y141{bottom:363.301333pt;}
.y1fd{bottom:364.341333pt;}
.y172{bottom:365.337333pt;}
.ybc{bottom:372.112000pt;}
.y8e{bottom:374.104000pt;}
.y107{bottom:374.502667pt;}
.yeb{bottom:374.901333pt;}
.y1aa{bottom:375.090667pt;}
.y2b{bottom:376.818667pt;}
.y1fc{bottom:379.684000pt;}
.y140{bottom:380.038667pt;}
.y171{bottom:382.074667pt;}
.y58{bottom:386.825333pt;}
.y1c5{bottom:388.769333pt;}
.ybb{bottom:388.849333pt;}
.y1a9{bottom:389.702667pt;}
.y8d{bottom:390.841333pt;}
.y106{bottom:391.240000pt;}
.yea{bottom:391.638667pt;}
.y2a{bottom:392.720000pt;}
.y1fb{bottom:395.025333pt;}
.y13f{bottom:396.776000pt;}
.y170{bottom:398.812000pt;}
.y1a8{bottom:404.314667pt;}
.yba{bottom:405.586667pt;}
.y8c{bottom:407.578667pt;}
.y105{bottom:407.977333pt;}
.ye9{bottom:408.376000pt;}
.y29{bottom:408.620000pt;}
.y1fa{bottom:410.368000pt;}
.y1c4{bottom:412.361333pt;}
.y13e{bottom:413.513333pt;}
.y16f{bottom:415.549333pt;}
.y1a7{bottom:418.926667pt;}
.y57{bottom:420.061333pt;}
.yb9{bottom:422.324000pt;}
.y8b{bottom:424.316000pt;}
.y28{bottom:424.520000pt;}
.y104{bottom:424.714667pt;}
.y1f9{bottom:425.710667pt;}
.y1c3{bottom:427.982667pt;}
.ye8{bottom:429.098667pt;}
.y13d{bottom:430.250667pt;}
.ye{bottom:430.990669pt;}
.y16e{bottom:432.286667pt;}
.y1a6{bottom:433.538667pt;}
.y56{bottom:437.356000pt;}
.yb8{bottom:439.061333pt;}
.y27{bottom:440.421333pt;}
.y8a{bottom:441.053333pt;}
.y103{bottom:441.452000pt;}
.y13c{bottom:446.988000pt;}
.yd{bottom:446.990669pt;}
.y1a5{bottom:448.150667pt;}
.y16d{bottom:449.024000pt;}
.y1c2{bottom:451.574667pt;}
.y55{bottom:454.652000pt;}
.y26{bottom:456.321333pt;}
.y1f8{bottom:456.396000pt;}
.y89{bottom:457.790667pt;}
.y102{bottom:458.189333pt;}
.ye7{bottom:458.986667pt;}
.yb7{bottom:459.784000pt;}
.y1a4{bottom:462.762667pt;}
.yc{bottom:462.990669pt;}
.y13b{bottom:463.725333pt;}
.y16c{bottom:465.761333pt;}
.y1f7{bottom:471.738667pt;}
.y54{bottom:471.946667pt;}
.y25{bottom:472.221333pt;}
.y88{bottom:474.528000pt;}
.y101{bottom:474.926667pt;}
.y1c1{bottom:475.165333pt;}
.ye6{bottom:475.724000pt;}
.y1a3{bottom:477.374667pt;}
.yb6{bottom:477.716000pt;}
.yb{bottom:478.990666pt;}
.y13a{bottom:480.462667pt;}
.y16b{bottom:482.498667pt;}
.y1f6{bottom:487.081333pt;}
.y24{bottom:488.122667pt;}
.y53{bottom:489.241333pt;}
.y1c0{bottom:490.786667pt;}
.y87{bottom:491.265333pt;}
.y100{bottom:491.664000pt;}
.y1a2{bottom:491.986667pt;}
.ya{bottom:494.990666pt;}
.y16a{bottom:499.236000pt;}
.y1f5{bottom:502.424000pt;}
.y52{bottom:506.537333pt;}
.y1a1{bottom:506.598667pt;}
.yb5{bottom:507.604000pt;}
.y86{bottom:508.002667pt;}
.ye5{bottom:508.401333pt;}
.y1bf{bottom:514.378667pt;}
.y169{bottom:515.973333pt;}
.y1f4{bottom:517.766667pt;}
.y139{bottom:523.530667pt;}
.y51{bottom:523.832000pt;}
.yb4{bottom:524.341333pt;}
.y85{bottom:524.740000pt;}
.ye4{bottom:525.138667pt;}
.y1a0{bottom:526.281333pt;}
.y1be{bottom:530.000000pt;}
.y138{bottom:530.836000pt;}
.y1f3{bottom:533.108000pt;}
.y168{bottom:536.694667pt;}
.y19f{bottom:540.893333pt;}
.yb3{bottom:541.078667pt;}
.y50{bottom:541.128000pt;}
.y84{bottom:541.477333pt;}
.ye3{bottom:541.876000pt;}
.y1bd{bottom:545.621333pt;}
.y1f2{bottom:548.450667pt;}
.y167{bottom:554.628000pt;}
.y19e{bottom:555.505333pt;}
.yb2{bottom:557.816000pt;}
.y83{bottom:558.214667pt;}
.y4f{bottom:558.422667pt;}
.ye2{bottom:558.613333pt;}
.y136{bottom:559.156000pt;}
.y1bc{bottom:561.242667pt;}
.y1f1{bottom:563.793333pt;}
.y135{bottom:566.461333pt;}
.y19d{bottom:570.117333pt;}
.y137{bottom:573.768000pt;}
.y9{bottom:573.786667pt;}
.yb1{bottom:574.553333pt;}
.y82{bottom:574.952000pt;}
.ye1{bottom:575.350667pt;}
.y4e{bottom:575.717333pt;}
.y1bb{bottom:576.865333pt;}
.y1f0{bottom:579.136000pt;}
.y166{bottom:584.516000pt;}
.y19c{bottom:584.729333pt;}
.yb0{bottom:591.290667pt;}
.y81{bottom:591.689333pt;}
.ye0{bottom:592.088000pt;}
.y8{bottom:592.685334pt;}
.y4d{bottom:593.013333pt;}
.y1ef{bottom:594.478667pt;}
.y134{bottom:594.781333pt;}
.y19b{bottom:599.341333pt;}
.y165{bottom:601.253333pt;}
.yaf{bottom:608.028000pt;}
.y80{bottom:608.426667pt;}
.ydf{bottom:608.825333pt;}
.y1ee{bottom:609.821333pt;}
.y4c{bottom:610.308000pt;}
.y19a{bottom:613.953333pt;}
.y133{bottom:615.796000pt;}
.y164{bottom:617.990667pt;}
.y210{bottom:621.112000pt;}
.yae{bottom:624.765333pt;}
.y7f{bottom:625.164000pt;}
.y131{bottom:625.346667pt;}
.yde{bottom:625.562667pt;}
.y4b{bottom:627.604000pt;}
.y199{bottom:628.564000pt;}
.y130{bottom:630.408000pt;}
.y163{bottom:634.728000pt;}
.y20f{bottom:636.454667pt;}
.y1ed{bottom:640.506667pt;}
.yad{bottom:641.502667pt;}
.y7e{bottom:641.901333pt;}
.ydd{bottom:642.300000pt;}
.y4a{bottom:644.898667pt;}
.y132{bottom:645.020000pt;}
.y7{bottom:645.598667pt;}
.y198{bottom:649.578667pt;}
.y162{bottom:651.465333pt;}
.y20e{bottom:651.797333pt;}
.y1ec{bottom:655.848000pt;}
.yac{bottom:658.240000pt;}
.y7d{bottom:658.638667pt;}
.ydc{bottom:659.037333pt;}
.y12f{bottom:661.849333pt;}
.y49{bottom:662.193333pt;}
.y12e{bottom:667.718667pt;}
.y161{bottom:668.202667pt;}
.y3{bottom:668.977329pt;}
.y1eb{bottom:671.190667pt;}
.yab{bottom:674.977333pt;}
.y7c{bottom:675.376000pt;}
.ydb{bottom:675.774667pt;}
.y197{bottom:677.685333pt;}
.y48{bottom:679.489333pt;}
.y1ea{bottom:686.533333pt;}
.y12d{bottom:690.146667pt;}
.yaa{bottom:691.714667pt;}
.y7b{bottom:692.113333pt;}
.yda{bottom:692.512000pt;}
.y12b{bottom:692.534667pt;}
.y47{bottom:696.784000pt;}
.y12a{bottom:697.453333pt;}
.y160{bottom:698.888000pt;}
.y1e9{bottom:701.876000pt;}
.y12c{bottom:704.758667pt;}
.ya9{bottom:708.452000pt;}
.y7a{bottom:708.850667pt;}
.yd9{bottom:709.248000pt;}
.y196{bottom:710.666667pt;}
.y1e8{bottom:717.218667pt;}
.ya8{bottom:725.189333pt;}
.y79{bottom:725.588000pt;}
.y129{bottom:725.772000pt;}
.yd8{bottom:725.985333pt;}
.y195{bottom:727.404000pt;}
.y46{bottom:731.082667pt;}
.y1e7{bottom:732.561333pt;}
.y15f{bottom:738.340000pt;}
.y127{bottom:740.384000pt;}
.ya7{bottom:741.926667pt;}
.y78{bottom:742.324000pt;}
.yd7{bottom:742.722667pt;}
.y194{bottom:744.141333pt;}
.y45{bottom:745.428000pt;}
.y1e6{bottom:747.904000pt;}
.y128{bottom:754.996000pt;}
.y15e{bottom:755.077333pt;}
.ya6{bottom:758.664000pt;}
.y77{bottom:759.061333pt;}
.yd6{bottom:759.460000pt;}
.y193{bottom:760.878667pt;}
.y1e5{bottom:763.246667pt;}
.y117{bottom:763.445333pt;}
.y44{bottom:763.632000pt;}
.y15d{bottom:771.814667pt;}
.y43{bottom:774.121333pt;}
.ya5{bottom:775.401333pt;}
.y76{bottom:775.798667pt;}
.y126{bottom:776.010667pt;}
.yd5{bottom:776.197333pt;}
.y1e4{bottom:778.589333pt;}
.y192{bottom:781.600000pt;}
.y2{bottom:781.661334pt;}
.y42{bottom:788.466667pt;}
.y15c{bottom:788.552000pt;}
.ya4{bottom:792.138667pt;}
.y41{bottom:792.325333pt;}
.y75{bottom:792.536000pt;}
.yd4{bottom:792.934667pt;}
.y116{bottom:793.333333pt;}
.y1e3{bottom:793.930667pt;}
.y125{bottom:797.024000pt;}
.y40{bottom:802.813333pt;}
.y15b{bottom:805.289333pt;}
.ya3{bottom:808.874667pt;}
.y74{bottom:809.273333pt;}
.yd3{bottom:809.672000pt;}
.y124{bottom:811.636000pt;}
.y121{bottom:814.024000pt;}
.y191{bottom:814.485333pt;}
.y120{bottom:818.942667pt;}
.y3f{bottom:821.017333pt;}
.y15a{bottom:822.025333pt;}
.y1e2{bottom:824.616000pt;}
.ya2{bottom:825.612000pt;}
.y73{bottom:826.010667pt;}
.y123{bottom:826.248000pt;}
.yd2{bottom:826.409333pt;}
.y190{bottom:827.104000pt;}
.y159{bottom:838.762667pt;}
.y1e1{bottom:839.958667pt;}
.y122{bottom:840.860000pt;}
.ya1{bottom:842.349333pt;}
.y72{bottom:842.748000pt;}
.yd1{bottom:843.146667pt;}
.y18e{bottom:846.510667pt;}
.y18d{bottom:853.817333pt;}
.y1e0{bottom:855.301333pt;}
.y158{bottom:855.500000pt;}
.ya0{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.yd0{bottom:859.884000pt;}
.y3e{bottom:860.729333pt;}
.y18f{bottom:861.122667pt;}
.y11f{bottom:861.873333pt;}
.y1df{bottom:870.644000pt;}
.y157{bottom:872.237333pt;}
.y18b{bottom:875.734667pt;}
.y9f{bottom:875.824000pt;}
.y70{bottom:876.222667pt;}
.ycf{bottom:876.621333pt;}
.y11e{bottom:882.888000pt;}
.y18a{bottom:883.041333pt;}
.y1de{bottom:885.986667pt;}
.y156{bottom:888.974667pt;}
.y18c{bottom:890.346667pt;}
.y6f{bottom:892.960000pt;}
.yff{bottom:893.358667pt;}
.y3d{bottom:896.213333pt;}
.y9e{bottom:896.546667pt;}
.yce{bottom:897.344000pt;}
.y1dd{bottom:901.329333pt;}
.y189{bottom:904.958667pt;}
.y155{bottom:905.712000pt;}
.y6e{bottom:909.697333pt;}
.y188{bottom:912.264000pt;}
.y11d{bottom:913.650667pt;}
.yfe{bottom:914.081333pt;}
.y1dc{bottom:916.670667pt;}
.y3c{bottom:921.320000pt;}
.y154{bottom:922.449333pt;}
.y6d{bottom:926.434667pt;}
.ycd{bottom:927.232000pt;}
.y1db{bottom:932.013333pt;}
.y186{bottom:934.182667pt;}
.y153{bottom:939.186667pt;}
.y185{bottom:941.488000pt;}
.y6c{bottom:943.172000pt;}
.yfd{bottom:943.969333pt;}
.y3b{bottom:946.425333pt;}
.y1da{bottom:947.356000pt;}
.y187{bottom:948.794667pt;}
.y152{bottom:955.924000pt;}
.y6b{bottom:959.909333pt;}
.yfc{bottom:960.706667pt;}
.y1d9{bottom:962.698667pt;}
.y184{bottom:963.937333pt;}
.y3a{bottom:971.530667pt;}
.y151{bottom:972.661333pt;}
.y6a{bottom:976.646667pt;}
.y1d8{bottom:978.041333pt;}
.y1b9{bottom:981.468000pt;}
.y69{bottom:993.384000pt;}
.y183{bottom:994.700000pt;}
.y68{bottom:1046.810667pt;}
.h16{height:14.948784pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h10{height:28.947524pt;}
.h24{height:33.426739pt;}
.hb{height:33.771789pt;}
.hc{height:33.957757pt;}
.h17{height:34.430976pt;}
.h1f{height:35.100467pt;}
.h22{height:36.666735pt;}
.h1e{height:37.140573pt;}
.h13{height:38.256384pt;}
.h11{height:38.596538pt;}
.hd{height:39.000258pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:43.421286pt;}
.h23{height:43.660390pt;}
.h14{height:48.245551pt;}
.hf{height:48.365611pt;}
.h15{height:48.511220pt;}
.h2{height:49.024000pt;}
.h1b{height:50.193122pt;}
.h18{height:50.758455pt;}
.h21{height:51.126455pt;}
.h19{height:53.430455pt;}
.h25{height:54.898620pt;}
.h1a{height:66.898620pt;}
.he{height:68.861952pt;}
.h5{height:69.450667pt;}
.h1d{height:72.642620pt;}
.h1c{height:72.647953pt;}
.h20{height:101.869286pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x30{left:57.596000pt;}
.x28{left:58.593333pt;}
.x2b{left:68.689333pt;}
.x17{left:73.340000pt;}
.x57{left:76.309333pt;}
.x25{left:77.776000pt;}
.x1c{left:80.704000pt;}
.x31{left:83.968000pt;}
.x16{left:87.680000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3e{left:96.384000pt;}
.x21{left:98.721333pt;}
.x2f{left:100.038667pt;}
.x32{left:101.841333pt;}
.x38{left:103.562667pt;}
.x3a{left:104.692000pt;}
.x1d{left:106.545333pt;}
.x34{left:108.584000pt;}
.x15{left:114.340000pt;}
.x4{left:180.874667pt;}
.x33{left:200.225333pt;}
.x39{left:205.068000pt;}
.x8{left:220.912000pt;}
.x6{left:221.858667pt;}
.x4b{left:229.978667pt;}
.x7{left:239.924000pt;}
.x9{left:250.204000pt;}
.x29{left:257.834667pt;}
.x48{left:259.322667pt;}
.x43{left:260.297333pt;}
.x44{left:261.450667pt;}
.x46{left:262.621333pt;}
.x47{left:263.752000pt;}
.xa{left:266.453333pt;}
.x45{left:267.642667pt;}
.x2c{left:270.034667pt;}
.x4a{left:275.333333pt;}
.x22{left:278.374667pt;}
.x52{left:286.541333pt;}
.x35{left:287.718667pt;}
.x12{left:290.072000pt;}
.x4c{left:299.402667pt;}
.x13{left:300.997333pt;}
.x51{left:306.102667pt;}
.x4e{left:311.641333pt;}
.x4f{left:313.404000pt;}
.x4d{left:316.973333pt;}
.x49{left:319.977333pt;}
.x11{left:329.662667pt;}
.x37{left:340.869333pt;}
.xc{left:346.694667pt;}
.x36{left:355.640000pt;}
.xb{left:387.186667pt;}
.x3{left:404.408000pt;}
.x23{left:405.525333pt;}
.x1a{left:410.428000pt;}
.x19{left:412.012000pt;}
.x1e{left:414.080000pt;}
.x18{left:419.944000pt;}
.x1f{left:422.801333pt;}
.x26{left:430.805333pt;}
.x20{left:451.117333pt;}
.x1b{left:454.793333pt;}
.x2a{left:472.690667pt;}
.x27{left:475.500000pt;}
.x3b{left:476.713333pt;}
.x3f{left:481.554667pt;}
.x53{left:492.605333pt;}
.x54{left:498.317333pt;}
.x24{left:502.404000pt;}
.x5a{left:510.825333pt;}
.x40{left:544.634667pt;}
.x3d{left:549.476000pt;}
.x3c{left:559.405333pt;}
.xf{left:571.296000pt;}
.x50{left:578.086667pt;}
.x58{left:595.968000pt;}
.x59{left:602.110667pt;}
.x2d{left:609.485333pt;}
.x42{left:612.556000pt;}
.x2e{left:616.125333pt;}
.x14{left:623.932000pt;}
.x41{left:627.326667pt;}
.xd{left:632.269333pt;}
.x10{left:683.766667pt;}
.x55{left:696.429333pt;}
.x56{left:739.713333pt;}
.xe{left:744.741333pt;}
}




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