
    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_9d42b5a9f3a63ab776b13742.woff2')format("woff");}.ff1{font-family:ff1;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: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_98f442203b7d0f8eff94d3aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_708ab09570b15f5ccc9dcecc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_de826795e68a72307d469b84.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3be0747dcad6b8a83ba9871e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_6904354f8876d79ca8a0dacf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8ae6edb3fc661e9f7e247438.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_4460705bf67302b085784645.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m22{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);}
.m7{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);}
.m1b{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);}
.m26{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);}
.m17{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);}
.m15{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);}
.m19{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);}
.mf{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);}
.m20{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);}
.m14{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);}
.m1e{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);}
.md{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);}
.m1f{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);}
.m21{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);}
.m4{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);}
.me{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);}
.m3{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);}
.m1c{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);}
.mb{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);}
.m25{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);}
.ma{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);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m12{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);}
.m1d{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);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m27{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);}
.m8{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);}
.m6{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);}
.m29{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);}
.m23{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);}
.m24{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);}
.m9{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);}
.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);}
.v4{vertical-align:-18.798000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v5{vertical-align:-10.464000px;}
.v6{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.282000px;}
.v7{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v9{vertical-align:28.392000px;}
.va{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.002544px;}
.ls3a{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.497764px;}
.ls33{letter-spacing:0.503764px;}
.ls10{letter-spacing:0.542815px;}
.ls8{letter-spacing:0.564600px;}
.ls17{letter-spacing:0.570600px;}
.ls36{letter-spacing:0.572693px;}
.ls37{letter-spacing:0.578693px;}
.ls32{letter-spacing:0.642088px;}
.ls2f{letter-spacing:0.648088px;}
.ls28{letter-spacing:0.694954px;}
.ls25{letter-spacing:0.700954px;}
.ls6{letter-spacing:0.717483px;}
.ls2b{letter-spacing:0.746725px;}
.ls16{letter-spacing:0.882571px;}
.ls7{letter-spacing:0.888571px;}
.ls29{letter-spacing:0.994766px;}
.ls27{letter-spacing:1.000766px;}
.lsf{letter-spacing:1.137943px;}
.lsd{letter-spacing:1.939625px;}
.ls15{letter-spacing:1.945625px;}
.ls14{letter-spacing:2.961483px;}
.ls1d{letter-spacing:3.684374px;}
.ls3{letter-spacing:11.954850px;}
.ls1b{letter-spacing:12.339483px;}
.ls1c{letter-spacing:13.089483px;}
.lsb{letter-spacing:13.419634px;}
.ls2d{letter-spacing:14.094088px;}
.ls31{letter-spacing:14.100088px;}
.ls18{letter-spacing:14.577483px;}
.lsc{letter-spacing:14.583483px;}
.ls2c{letter-spacing:14.585246px;}
.ls38{letter-spacing:14.704798px;}
.ls22{letter-spacing:14.991483px;}
.ls35{letter-spacing:15.242778px;}
.ls11{letter-spacing:15.361200px;}
.ls20{letter-spacing:15.417338px;}
.ls21{letter-spacing:15.763200px;}
.ls13{letter-spacing:15.927943px;}
.ls2a{letter-spacing:16.106383px;}
.ls26{letter-spacing:16.242571px;}
.ls5{letter-spacing:17.935200px;}
.ls4{letter-spacing:17.983200px;}
.ls24{letter-spacing:18.075483px;}
.ls1a{letter-spacing:18.439200px;}
.ls12{letter-spacing:18.679200px;}
.ls19{letter-spacing:19.993200px;}
.lse{letter-spacing:20.473200px;}
.ls9{letter-spacing:20.907943px;}
.ls23{letter-spacing:20.913943px;}
.ls1f{letter-spacing:23.270618px;}
.ls1e{letter-spacing:23.277078px;}
.lsa{letter-spacing:61.239483px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.ls30{letter-spacing:249.666600px;}
.ls2e{letter-spacing:260.796600px;}
.ls34{letter-spacing:303.972600px;}
.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;}
}
.ws5b{word-spacing:-14.943900px;}
.ws77{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.wsb{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws69{word-spacing:-5.379804px;}
.ws2f{word-spacing:-3.347434px;}
.ws8f{word-spacing:-2.450800px;}
.ws5c{word-spacing:-2.391024px;}
.ws90{word-spacing:-2.331248px;}
.ws92{word-spacing:-2.211697px;}
.wsb3{word-spacing:-2.205734px;}
.ws41{word-spacing:-2.032370px;}
.ws3e{word-spacing:-1.853044px;}
.ws6d{word-spacing:-1.822880px;}
.ws65{word-spacing:-1.793268px;}
.ws93{word-spacing:-1.673717px;}
.ws95{word-spacing:-1.506355px;}
.ws14{word-spacing:-1.452557px;}
.ws29{word-spacing:-1.434614px;}
.ws1e{word-spacing:-1.315063px;}
.ws5f{word-spacing:-1.255288px;}
.ws66{word-spacing:-1.135736px;}
.ws43{word-spacing:-1.075961px;}
.ws34{word-spacing:-1.016185px;}
.ws98{word-spacing:-0.968371px;}
.ws51{word-spacing:-0.836858px;}
.ws45{word-spacing:-0.777083px;}
.ws60{word-spacing:-0.717307px;}
.ws53{word-spacing:-0.657532px;}
.ws91{word-spacing:-0.597756px;}
.wsa1{word-spacing:-0.484186px;}
.ws87{word-spacing:-0.478205px;}
.wsaf{word-spacing:-0.430387px;}
.ws54{word-spacing:-0.418429px;}
.wsb8{word-spacing:-0.376589px;}
.ws38{word-spacing:-0.358654px;}
.wsa6{word-spacing:-0.322790px;}
.ws1a{word-spacing:-0.298878px;}
.wsa0{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws2c{word-spacing:-0.179327px;}
.ws24{word-spacing:-0.119551px;}
.ws9e{word-spacing:-0.107597px;}
.wsa5{word-spacing:-0.095641px;}
.ws1d{word-spacing:-0.059776px;}
.ws96{word-spacing:-0.053798px;}
.ws8d{word-spacing:-0.027198px;}
.wsa8{word-spacing:-0.007920px;}
.wsad{word-spacing:-0.006864px;}
.ws2{word-spacing:-0.005369px;}
.wsb5{word-spacing:-0.005328px;}
.wsaa{word-spacing:-0.003418px;}
.ws26{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.053798px;}
.ws19{word-spacing:0.059776px;}
.ws8c{word-spacing:0.095641px;}
.ws10{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.wsf{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.ws9b{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.ws9d{word-spacing:0.322790px;}
.ws70{word-spacing:0.326729px;}
.ws2b{word-spacing:0.358654px;}
.ws28{word-spacing:0.418429px;}
.ws56{word-spacing:0.478205px;}
.ws3b{word-spacing:0.537980px;}
.ws73{word-spacing:0.597756px;}
.wsb0{word-spacing:0.645581px;}
.ws94{word-spacing:0.657532px;}
.ws78{word-spacing:0.667200px;}
.ws76{word-spacing:0.673200px;}
.ws4b{word-spacing:0.717307px;}
.ws67{word-spacing:0.746092px;}
.ws25{word-spacing:0.777083px;}
.ws52{word-spacing:0.836858px;}
.ws5a{word-spacing:0.896634px;}
.ws4a{word-spacing:1.016185px;}
.ws6b{word-spacing:1.075961px;}
.ws2a{word-spacing:1.195512px;}
.wsa{word-spacing:1.380812px;}
.wsb1{word-spacing:1.398758px;}
.ws4e{word-spacing:1.434614px;}
.wsb4{word-spacing:1.452557px;}
.ws30{word-spacing:1.494390px;}
.ws47{word-spacing:1.554166px;}
.ws46{word-spacing:1.613941px;}
.ws9a{word-spacing:1.667750px;}
.wsac{word-spacing:1.721549px;}
.ws4d{word-spacing:1.733492px;}
.ws64{word-spacing:1.853044px;}
.ws37{word-spacing:1.912819px;}
.ws8e{word-spacing:1.972595px;}
.ws61{word-spacing:2.032370px;}
.ws6a{word-spacing:2.092146px;}
.ws4c{word-spacing:2.211697px;}
.wsae{word-spacing:2.420928px;}
.ws2d{word-spacing:2.450800px;}
.ws1{word-spacing:2.511541px;}
.ws5e{word-spacing:2.809453px;}
.ws32{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.ws11{word-spacing:2.958912px;}
.ws42{word-spacing:2.988780px;}
.ws63{word-spacing:3.048556px;}
.wse{word-spacing:3.066509px;}
.ws35{word-spacing:3.108331px;}
.ws3a{word-spacing:3.168107px;}
.ws12{word-spacing:3.174106px;}
.ws17{word-spacing:3.219667px;}
.ws99{word-spacing:3.224822px;}
.wsa7{word-spacing:3.225101px;}
.ws1b{word-spacing:3.227882px;}
.ws74{word-spacing:3.227904px;}
.wsd{word-spacing:3.252560px;}
.ws6c{word-spacing:3.287658px;}
.wsab{word-spacing:3.335501px;}
.ws71{word-spacing:3.407209px;}
.wsb7{word-spacing:3.496896px;}
.ws2e{word-spacing:3.526760px;}
.ws18{word-spacing:3.586536px;}
.ws4f{word-spacing:3.646312px;}
.ws33{word-spacing:3.706087px;}
.wsa2{word-spacing:3.712090px;}
.ws9c{word-spacing:3.765888px;}
.ws68{word-spacing:3.825638px;}
.ws55{word-spacing:3.885414px;}
.ws9f{word-spacing:3.927283px;}
.ws36{word-spacing:3.945190px;}
.ws3c{word-spacing:4.004965px;}
.ws3f{word-spacing:4.064741px;}
.ws7d{word-spacing:4.124516px;}
.ws1c{word-spacing:4.184292px;}
.ws6f{word-spacing:4.303843px;}
.ws50{word-spacing:4.662497px;}
.ws72{word-spacing:4.722272px;}
.ws49{word-spacing:5.080926px;}
.ws62{word-spacing:5.260253px;}
.ws88{word-spacing:5.320028px;}
.ws7c{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws44{word-spacing:5.499355px;}
.ws3d{word-spacing:5.559131px;}
.ws5d{word-spacing:5.738458px;}
.ws97{word-spacing:5.756429px;}
.ws31{word-spacing:5.917784px;}
.wsb2{word-spacing:6.240614px;}
.ws40{word-spacing:6.515540px;}
.ws39{word-spacing:6.575316px;}
.ws48{word-spacing:6.814418px;}
.wsb6{word-spacing:7.155187px;}
.ws57{word-spacing:7.232848px;}
.ws58{word-spacing:7.651277px;}
.ws59{word-spacing:7.711052px;}
.ws6e{word-spacing:8.308808px;}
.ws6{word-spacing:9.833058px;}
.ws7{word-spacing:11.841512px;}
.wsa9{word-spacing:12.911616px;}
.ws3{word-spacing:15.481836px;}
.ws9{word-spacing:16.067635px;}
.ws5{word-spacing:22.339429px;}
.ws84{word-spacing:141.118591px;}
.ws81{word-spacing:165.292754px;}
.ws83{word-spacing:168.364500px;}
.ws85{word-spacing:187.743676px;}
.ws82{word-spacing:204.453583px;}
.ws7e{word-spacing:207.684866px;}
.ws80{word-spacing:223.821583px;}
.ws7f{word-spacing:229.299777px;}
.ws86{word-spacing:230.925677px;}
.ws7b{word-spacing:322.575206px;}
.ws7a{word-spacing:366.313306px;}
.ws79{word-spacing:366.990000px;}
.ws75{word-spacing:388.801037px;}
.ws89{word-spacing:893.972248px;}
.ws8a{word-spacing:929.855501px;}
.wsa4{word-spacing:961.971792px;}
.ws8b{word-spacing:975.423792px;}
.wsa3{word-spacing:976.766248px;}
._d{margin-left:-7.454103px;}
._7{margin-left:-6.168857px;}
._0{margin-left:-4.602708px;}
._c{margin-left:-3.287658px;}
._2{margin-left:-1.506341px;}
._1c{width:1.075961px;}
._1e{width:2.097380px;}
._5{width:3.177696px;}
._1d{width:4.602613px;}
._1f{width:5.853416px;}
._a{width:10.974874px;}
._1{width:12.971268px;}
._f{width:14.822586px;}
._9{width:16.139520px;}
._8{width:17.269272px;}
._b{width:18.530436px;}
._12{width:19.965050px;}
._e{width:21.172513px;}
._13{width:22.415850px;}
._15{width:24.191271px;}
._3{width:25.314894px;}
._4c{width:26.821397px;}
._14{width:28.704239px;}
._18{width:29.947576px;}
._4{width:31.256572px;}
._1b{width:34.562234px;}
._17{width:35.650159px;}
._16{width:38.495486px;}
._19{width:39.511672px;}
._1a{width:42.572178px;}
._53{width:55.471873px;}
._52{width:56.889016px;}
._6{width:69.171384px;}
._3e{width:132.391285px;}
._27{width:171.294106px;}
._39{width:179.040326px;}
._3a{width:181.240074px;}
._3c{width:190.873028px;}
._3f{width:207.732686px;}
._3b{width:219.687836px;}
._40{width:221.265916px;}
._36{width:235.413014px;}
._3d{width:241.254927px;}
._42{width:244.030095px;}
._41{width:262.917659px;}
._35{width:266.033088px;}
._2b{width:275.985792px;}
._2c{width:288.897408px;}
._2d{width:293.853082px;}
._2f{width:295.622208px;}
._33{width:297.558950px;}
._2e{width:300.625459px;}
._21{width:309.125606px;}
._32{width:312.778044px;}
._28{width:322.521408px;}
._30{width:333.980467px;}
._26{width:336.024806px;}
._22{width:345.331930px;}
._31{width:348.452237px;}
._25{width:352.911650px;}
._23{width:356.575795px;}
._20{width:362.852249px;}
._34{width:375.351437px;}
._29{width:388.801037px;}
._24{width:403.703194px;}
._2a{width:429.096038px;}
._37{width:448.786253px;}
._38{width:496.397837px;}
._43{width:722.512512px;}
._10{width:723.860422px;}
._4e{width:815.906534px;}
._4a{width:828.225168px;}
._4b{width:853.080029px;}
._44{width:858.353222px;}
._49{width:866.855146px;}
._45{width:882.994186px;}
._51{width:888.050189px;}
._48{width:901.502189px;}
._4f{width:918.954749px;}
._46{width:921.942749px;}
._50{width:932.757226px;}
._47{width:934.101226px;}
._4d{width:2500.851000px;}
._11{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;}
.fsf{font-size:43.600200px;}
.fs8{font-size:45.429600px;}
.fsd{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fs10{font-size:49.829400px;}
.fsb{font-size:53.798400px;}
.fse{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;}
.y62{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y35{bottom:104.646000px;}
.y17c{bottom:106.972500px;}
.y188{bottom:108.210000px;}
.y1c0{bottom:112.267500px;}
.y61{bottom:114.369000px;}
.ybb{bottom:117.802500px;}
.yd6{bottom:118.699500px;}
.y98{bottom:119.148000px;}
.y34{bottom:122.535000px;}
.y187{bottom:125.784000px;}
.y17b{bottom:125.802000px;}
.y1f9{bottom:128.349000px;}
.y1bf{bottom:129.528000px;}
.y60{bottom:133.198500px;}
.yf2{bottom:136.185000px;}
.yba{bottom:136.632000px;}
.yd5{bottom:137.529000px;}
.y97{bottom:137.977500px;}
.y21{bottom:139.264499px;}
.y33{bottom:140.422500px;}
.y186{bottom:143.358000px;}
.y17a{bottom:144.631500px;}
.y1f8{bottom:145.609500px;}
.y1be{bottom:146.788500px;}
.y1bd{bottom:151.671000px;}
.y5f{bottom:152.026500px;}
.y14b{bottom:152.728500px;}
.yf1{bottom:155.013000px;}
.yb9{bottom:155.461500px;}
.yd4{bottom:156.358500px;}
.y96{bottom:156.807000px;}
.y32{bottom:158.310000px;}
.y185{bottom:160.932000px;}
.y1f7{bottom:162.870000px;}
.y179{bottom:163.461000px;}
.y1bc{bottom:167.418000px;}
.y5e{bottom:170.856000px;}
.y14a{bottom:171.558000px;}
.yf0{bottom:173.842500px;}
.yb8{bottom:174.291000px;}
.yd3{bottom:175.188000px;}
.y95{bottom:175.636500px;}
.y31{bottom:176.199000px;}
.y1f6{bottom:180.130500px;}
.y178{bottom:182.290500px;}
.y1bb{bottom:184.678500px;}
.y184{bottom:187.471500px;}
.y1ba{bottom:189.561000px;}
.y5d{bottom:189.685500px;}
.y149{bottom:190.387500px;}
.yef{bottom:192.672000px;}
.yb7{bottom:193.120500px;}
.yd2{bottom:194.017500px;}
.y30{bottom:194.086500px;}
.y94{bottom:194.466000px;}
.y18{bottom:196.933500px;}
.y1f5{bottom:197.391000px;}
.y177{bottom:201.120000px;}
.y1b9{bottom:201.939000px;}
.y5c{bottom:208.515000px;}
.y148{bottom:209.217000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yee{bottom:211.501500px;}
.y2f{bottom:211.974000px;}
.yd1{bottom:212.847000px;}
.y93{bottom:213.295500px;}
.y183{bottom:214.012500px;}
.y1f4{bottom:214.651500px;}
.yb6{bottom:216.433500px;}
.y1b8{bottom:219.199500px;}
.y176{bottom:219.949500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y5b{bottom:227.344500px;}
.y147{bottom:228.046500px;}
.y2e{bottom:229.863000px;}
.yed{bottom:230.331000px;}
.yd0{bottom:231.676500px;}
.y1f3{bottom:231.910500px;}
.y92{bottom:232.125000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1b7{bottom:236.460000px;}
.yb5{bottom:236.608500px;}
.y175{bottom:238.779000px;}
.y182{bottom:240.553500px;}
.y11d{bottom:243.720000px;}
.y5a{bottom:246.174000px;}
.y146{bottom:246.876000px;}
.yec{bottom:249.160500px;}
.y1f2{bottom:249.171000px;}
.ycf{bottom:250.506000px;}
.y91{bottom:250.954500px;}
.y1b6{bottom:253.720500px;}
.y174{bottom:257.608500px;}
.y181{bottom:258.127500px;}
.y1b5{bottom:258.603000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y11c{bottom:262.549500px;}
.y59{bottom:265.003500px;}
.y145{bottom:265.705500px;}
.y1f1{bottom:266.431500px;}
.yeb{bottom:267.990000px;}
.yce{bottom:269.335500px;}
.y90{bottom:269.784000px;}
.yb4{bottom:270.232500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1b4{bottom:274.350000px;}
.y180{bottom:275.701500px;}
.y173{bottom:276.438000px;}
.y11b{bottom:281.379000px;}
.y1f0{bottom:283.692000px;}
.y58{bottom:283.833000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yea{bottom:286.819500px;}
.ycd{bottom:288.165000px;}
.y8f{bottom:288.613500px;}
.y144{bottom:289.018500px;}
.yb3{bottom:289.062000px;}
.y1b3{bottom:291.610500px;}
.y17f{bottom:293.275500px;}
.y172{bottom:295.267500px;}
.y1b2{bottom:296.493000px;}
.y2d{bottom:297.166500px;}
.y11a{bottom:300.208500px;}
.y1ef{bottom:300.952500px;}
.y57{bottom:302.662500px;}
.ye9{bottom:305.649000px;}
.ycc{bottom:306.994500px;}
.y8e{bottom:307.443000px;}
.yb2{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y17e{bottom:310.849500px;}
.y171{bottom:314.097000px;}
.y2c{bottom:315.054000px;}
.y1ee{bottom:318.213000px;}
.y1b1{bottom:318.580500px;}
.y119{bottom:319.038000px;}
.y56{bottom:321.492000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ye8{bottom:324.478500px;}
.ycb{bottom:325.824000px;}
.y8d{bottom:326.272500px;}
.yb1{bottom:326.719500px;}
.y17d{bottom:328.423500px;}
.y170{bottom:332.926500px;}
.y2b{bottom:332.943000px;}
.y143{bottom:333.658500px;}
.y1ed{bottom:335.473500px;}
.y118{bottom:337.867500px;}
.y55{bottom:340.321500px;}
.ye7{bottom:343.308000px;}
.yca{bottom:344.653500px;}
.y8c{bottom:345.102000px;}
.yb0{bottom:345.549000px;}
.y142{bottom:347.854500px;}
.yf{bottom:348.133500px;}
.y2a{bottom:350.830500px;}
.y16f{bottom:351.756000px;}
.y1ec{bottom:352.734000px;}
.y1b0{bottom:357.303000px;}
.y54{bottom:359.151000px;}
.y117{bottom:361.180500px;}
.y141{bottom:362.052000px;}
.ye6{bottom:362.137500px;}
.yc9{bottom:363.483000px;}
.y8b{bottom:363.931500px;}
.yaf{bottom:364.378500px;}
.y1eb{bottom:369.993000px;}
.y16e{bottom:370.585500px;}
.y1af{bottom:371.499000px;}
.y140{bottom:376.248000px;}
.y53{bottom:377.980500px;}
.y29{bottom:379.179000px;}
.ye5{bottom:380.967000px;}
.y116{bottom:381.354000px;}
.yc8{bottom:382.312500px;}
.y8a{bottom:382.761000px;}
.yae{bottom:383.208000px;}
.ye{bottom:386.785499px;}
.y1ea{bottom:387.253500px;}
.y16d{bottom:389.415000px;}
.y1ae{bottom:390.343500px;}
.y13f{bottom:390.445500px;}
.y52{bottom:396.810000px;}
.ye3{bottom:399.796500px;}
.yc7{bottom:401.142000px;}
.y89{bottom:401.589000px;}
.yad{bottom:402.037500px;}
.y1e9{bottom:404.514000px;}
.y13e{bottom:404.641500px;}
.ye4{bottom:405.220500px;}
.y28{bottom:406.033500px;}
.y1ad{bottom:406.782000px;}
.yd{bottom:408.044999px;}
.y16c{bottom:408.244500px;}
.y115{bottom:414.978000px;}
.y51{bottom:415.639500px;}
.ye2{bottom:418.626000px;}
.y13d{bottom:418.839000px;}
.yc6{bottom:419.971500px;}
.y88{bottom:420.418500px;}
.yac{bottom:420.867000px;}
.y1e8{bottom:421.774500px;}
.y1ac{bottom:423.220500px;}
.y27{bottom:423.921000px;}
.y16b{bottom:427.072500px;}
.y13c{bottom:433.035000px;}
.y114{bottom:433.807500px;}
.y50{bottom:434.469000px;}
.ye1{bottom:437.455500px;}
.yc5{bottom:438.801000px;}
.y1e7{bottom:439.035000px;}
.y87{bottom:439.248000px;}
.y1ab{bottom:439.659000px;}
.yab{bottom:439.696500px;}
.y26{bottom:441.810000px;}
.y16a{bottom:445.902000px;}
.y13b{bottom:447.232500px;}
.y113{bottom:452.637000px;}
.y4f{bottom:453.298500px;}
.ye0{bottom:456.285000px;}
.y1e6{bottom:456.295500px;}
.yc4{bottom:457.630500px;}
.y86{bottom:458.077500px;}
.yaa{bottom:458.526000px;}
.y25{bottom:459.697500px;}
.y13a{bottom:461.428500px;}
.y1aa{bottom:463.299000px;}
.y169{bottom:464.731500px;}
.y112{bottom:471.466500px;}
.y1a9{bottom:471.517500px;}
.y4e{bottom:472.128000px;}
.y1e5{bottom:473.556000px;}
.ydf{bottom:475.114500px;}
.y139{bottom:475.626000px;}
.y85{bottom:476.907000px;}
.ya9{bottom:477.355500px;}
.y24{bottom:477.585000px;}
.yc3{bottom:480.942000px;}
.y168{bottom:483.561000px;}
.y138{bottom:489.822000px;}
.y111{bottom:490.296000px;}
.y1e4{bottom:490.816500px;}
.y4d{bottom:490.957500px;}
.yde{bottom:493.944000px;}
.y23{bottom:495.474000px;}
.y84{bottom:495.736500px;}
.y1a8{bottom:496.176000px;}
.ya8{bottom:496.185000px;}
.y167{bottom:502.390500px;}
.yc{bottom:502.864502px;}
.y1a7{bottom:504.394500px;}
.y1e3{bottom:508.077000px;}
.y110{bottom:509.125500px;}
.y4c{bottom:509.787000px;}
.y137{bottom:511.221000px;}
.ydd{bottom:512.773500px;}
.y22{bottom:513.361500px;}
.y83{bottom:514.566000px;}
.ya7{bottom:515.014500px;}
.yb{bottom:520.864502px;}
.y166{bottom:521.220000px;}
.y1e2{bottom:525.336000px;}
.y136{bottom:525.418500px;}
.y10f{bottom:527.955000px;}
.y1a6{bottom:529.053000px;}
.ydc{bottom:531.603000px;}
.y4b{bottom:533.100000px;}
.y82{bottom:533.395500px;}
.ya6{bottom:533.844000px;}
.y1a5{bottom:537.271500px;}
.ya{bottom:538.864499px;}
.y1e1{bottom:542.596500px;}
.y10e{bottom:546.784500px;}
.ydb{bottom:550.432500px;}
.y81{bottom:552.225000px;}
.ya5{bottom:552.673500px;}
.y4a{bottom:553.273500px;}
.y9{bottom:556.864499px;}
.y135{bottom:558.457500px;}
.y1e0{bottom:559.857000px;}
.y165{bottom:559.942500px;}
.y1a4{bottom:561.928500px;}
.y10d{bottom:565.614000px;}
.yd9{bottom:569.262000px;}
.y1a3{bottom:570.148500px;}
.y80{bottom:571.054500px;}
.ya4{bottom:571.503000px;}
.y164{bottom:574.140000px;}
.yda{bottom:574.686000px;}
.y1df{bottom:577.117500px;}
.y10c{bottom:584.443500px;}
.y7f{bottom:589.884000px;}
.ya3{bottom:590.332500px;}
.yd8{bottom:592.573500px;}
.y163{bottom:592.983000px;}
.y1de{bottom:594.378000px;}
.y1a2{bottom:594.805500px;}
.y134{bottom:595.561500px;}
.y1a1{bottom:603.025500px;}
.y10b{bottom:603.273000px;}
.y7e{bottom:608.713500px;}
.ya2{bottom:609.162000px;}
.y162{bottom:609.421500px;}
.y1dd{bottom:611.638500px;}
.yd7{bottom:612.748500px;}
.y133{bottom:614.391000px;}
.y10a{bottom:622.102500px;}
.y161{bottom:625.860000px;}
.y7d{bottom:627.543000px;}
.y1a0{bottom:627.682500px;}
.ya1{bottom:627.991500px;}
.y49{bottom:628.423500px;}
.y1dc{bottom:628.899000px;}
.y211{bottom:629.710500px;}
.y19f{bottom:635.901000px;}
.y132{bottom:637.704000px;}
.y109{bottom:640.932000px;}
.y160{bottom:642.298500px;}
.y8{bottom:645.510000px;}
.y1db{bottom:646.159500px;}
.y7c{bottom:646.372500px;}
.ya0{bottom:646.821000px;}
.y210{bottom:646.969500px;}
.y108{bottom:659.761500px;}
.y19e{bottom:660.559500px;}
.y1da{bottom:663.420000px;}
.y20f{bottom:664.230000px;}
.y7b{bottom:665.202000px;}
.y9f{bottom:665.650500px;}
.y48{bottom:665.814000px;}
.y15f{bottom:665.940000px;}
.y7{bottom:666.771000px;}
.y19d{bottom:668.778000px;}
.y131{bottom:671.328000px;}
.y15e{bottom:674.158500px;}
.y107{bottom:678.591000px;}
.y1d9{bottom:680.679000px;}
.y7a{bottom:684.031500px;}
.y9e{bottom:684.480000px;}
.y47{bottom:685.270500px;}
.y130{bottom:690.157500px;}
.y19c{bottom:693.436500px;}
.y106{bottom:697.420500px;}
.y1d8{bottom:697.939500px;}
.y15d{bottom:698.815500px;}
.y19b{bottom:701.655000px;}
.y79{bottom:702.861000px;}
.y9d{bottom:703.309500px;}
.y46{bottom:704.727000px;}
.y15c{bottom:707.035500px;}
.y12f{bottom:708.987000px;}
.y1d7{bottom:715.200000px;}
.y105{bottom:716.250000px;}
.y20e{bottom:720.570000px;}
.y78{bottom:721.690500px;}
.y9c{bottom:722.139000px;}
.y45{bottom:724.185000px;}
.y6{bottom:726.298500px;}
.y19a{bottom:726.312000px;}
.y12e{bottom:727.816500px;}
.y15b{bottom:731.692500px;}
.y1d6{bottom:732.460500px;}
.y199{bottom:734.532000px;}
.y104{bottom:735.079500px;}
.y20d{bottom:737.829000px;}
.y15a{bottom:739.912500px;}
.yc2{bottom:740.520000px;}
.y9b{bottom:740.968500px;}
.y44{bottom:743.641500px;}
.y77{bottom:745.003500px;}
.y12d{bottom:746.646000px;}
.y1d5{bottom:749.721000px;}
.y3{bottom:752.599495px;}
.y103{bottom:753.909000px;}
.y20c{bottom:755.089500px;}
.yc1{bottom:759.349500px;}
.y9a{bottom:759.798000px;}
.y43{bottom:763.099500px;}
.y159{bottom:764.569500px;}
.y12c{bottom:765.475500px;}
.y198{bottom:766.392000px;}
.y1d4{bottom:766.981500px;}
.y20b{bottom:772.350000px;}
.y102{bottom:772.738500px;}
.y158{bottom:772.788000px;}
.yc0{bottom:778.179000px;}
.y76{bottom:778.627500px;}
.y42{bottom:782.556000px;}
.y1d3{bottom:784.242000px;}
.y12b{bottom:784.303500px;}
.y20a{bottom:789.610500px;}
.ybf{bottom:797.008500px;}
.y157{bottom:797.446500px;}
.y75{bottom:797.457000px;}
.y197{bottom:798.010500px;}
.y1d2{bottom:801.502500px;}
.y41{bottom:802.012500px;}
.y12a{bottom:803.133000px;}
.y156{bottom:805.665000px;}
.y209{bottom:806.871000px;}
.y100{bottom:807.184500px;}
.ybe{bottom:815.838000px;}
.y74{bottom:816.286500px;}
.y1d1{bottom:818.761500px;}
.y40{bottom:821.470500px;}
.y129{bottom:821.962500px;}
.y208{bottom:824.131500px;}
.y101{bottom:826.443000px;}
.yff{bottom:826.813500px;}
.y155{bottom:830.323500px;}
.ybd{bottom:834.667500px;}
.y73{bottom:835.114500px;}
.y196{bottom:835.116000px;}
.y1d0{bottom:836.022000px;}
.y154{bottom:838.542000px;}
.y3f{bottom:840.927000px;}
.y207{bottom:841.392000px;}
.yfe{bottom:846.442500px;}
.y1cf{bottom:853.282500px;}
.y72{bottom:853.944000px;}
.y195{bottom:853.945500px;}
.ybc{bottom:857.979000px;}
.y206{bottom:858.652500px;}
.y3e{bottom:860.383500px;}
.y153{bottom:863.199000px;}
.y128{bottom:870.414000px;}
.y1ce{bottom:870.543000px;}
.y152{bottom:871.419000px;}
.y71{bottom:872.773500px;}
.y194{bottom:872.775000px;}
.y205{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y3d{bottom:879.841500px;}
.yfd{bottom:886.672500px;}
.y1cd{bottom:887.803500px;}
.y70{bottom:891.603000px;}
.y204{bottom:893.172000px;}
.y127{bottom:894.367500px;}
.y151{bottom:896.076000px;}
.y193{bottom:896.086500px;}
.y99{bottom:897.028500px;}
.y150{bottom:904.296000px;}
.y1cc{bottom:905.064000px;}
.yfc{bottom:905.502000px;}
.y6f{bottom:910.432500px;}
.y126{bottom:918.319500px;}
.y3c{bottom:918.426000px;}
.y1cb{bottom:922.324500px;}
.y203{bottom:927.693000px;}
.yfb{bottom:928.813500px;}
.y14f{bottom:928.953000px;}
.y6e{bottom:929.262000px;}
.y192{bottom:932.848500px;}
.y14e{bottom:937.173000px;}
.y3b{bottom:938.905500px;}
.y1ca{bottom:939.585000px;}
.y125{bottom:941.961000px;}
.y202{bottom:944.953500px;}
.y6d{bottom:948.091500px;}
.y3a{bottom:955.045500px;}
.y1c9{bottom:956.844000px;}
.y191{bottom:959.389500px;}
.y201{bottom:962.214000px;}
.yfa{bottom:962.437500px;}
.y124{bottom:965.601000px;}
.y1{bottom:966.726000px;}
.y6c{bottom:966.921000px;}
.y14d{bottom:969.031500px;}
.y1c8{bottom:974.104500px;}
.y190{bottom:976.963500px;}
.y200{bottom:979.474500px;}
.yf9{bottom:981.267000px;}
.y6b{bottom:985.750500px;}
.y123{bottom:989.242500px;}
.y1c7{bottom:991.365000px;}
.y18f{bottom:994.537500px;}
.y1ff{bottom:996.735000px;}
.y39{bottom:999.721500px;}
.yf8{bottom:1000.096500px;}
.y14c{bottom:1000.651500px;}
.y6a{bottom:1004.580000px;}
.y18e{bottom:1012.111500px;}
.y1c6{bottom:1013.109000px;}
.y122{bottom:1013.194500px;}
.y1fe{bottom:1013.995500px;}
.yf7{bottom:1018.926000px;}
.y69{bottom:1023.409500px;}
.y18d{bottom:1029.685500px;}
.y1fd{bottom:1031.254500px;}
.y38{bottom:1036.485000px;}
.y121{bottom:1037.148000px;}
.yf6{bottom:1037.755500px;}
.y68{bottom:1042.239000px;}
.y1c5{bottom:1046.733000px;}
.y18c{bottom:1047.261000px;}
.y1fc{bottom:1048.515000px;}
.yf5{bottom:1056.585000px;}
.y120{bottom:1060.789500px;}
.y67{bottom:1061.068500px;}
.y1c4{bottom:1063.993500px;}
.y37{bottom:1064.728500px;}
.y18b{bottom:1064.835000px;}
.y1fb{bottom:1065.775500px;}
.yf4{bottom:1075.414500px;}
.y66{bottom:1079.898000px;}
.y1c3{bottom:1081.254000px;}
.y18a{bottom:1082.409000px;}
.y1fa{bottom:1083.036000px;}
.y11f{bottom:1084.429500px;}
.y1c2{bottom:1086.135000px;}
.y36{bottom:1092.972000px;}
.yf3{bottom:1094.244000px;}
.y65{bottom:1098.727500px;}
.y189{bottom:1099.983000px;}
.y1c1{bottom:1100.296500px;}
.y64{bottom:1117.557000px;}
.y11e{bottom:1119.037500px;}
.y63{bottom:1177.662000px;}
.he{height:26.217754px;}
.h16{height:30.582721px;}
.h9{height:30.587087px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h14{height:33.209038px;}
.h1b{height:34.574294px;}
.hf{height:34.956859px;}
.h13{height:35.052500px;}
.h18{height:38.896243px;}
.h10{height:39.326630px;}
.h1f{height:39.434227px;}
.h17{height:42.500452px;}
.h11{height:43.217759px;}
.h12{height:43.695964px;}
.hb{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1a{height:48.863087px;}
.h19{height:48.869087px;}
.hd{height:54.547601px;}
.h15{height:54.911038px;}
.h2{height:55.080000px;}
.h1c{height:63.348859px;}
.h1d{height:72.200630px;}
.h1e{height:72.206630px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{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;}
.x24{left:62.671500px;}
.x3d{left:64.666500px;}
.x3f{left:67.086000px;}
.x3b{left:71.301000px;}
.x3a{left:73.584000px;}
.x3c{left:76.179000px;}
.x4f{left:84.220500px;}
.x4e{left:85.324500px;}
.x29{left:86.355000px;}
.x3e{left:87.763500px;}
.x25{left:89.085000px;}
.x28{left:91.876500px;}
.x26{left:95.004000px;}
.x27{left:97.929000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x23{left:107.962500px;}
.x2a{left:109.239000px;}
.x22{left:114.808500px;}
.x2c{left:170.533500px;}
.x12{left:173.370000px;}
.x2b{left:178.837500px;}
.x4{left:203.484001px;}
.x2d{left:242.041500px;}
.xb{left:247.348500px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x2e{left:256.333500px;}
.x8{left:281.479500px;}
.x13{left:287.931000px;}
.x4a{left:324.448500px;}
.x2f{left:326.271000px;}
.x30{left:330.246000px;}
.x42{left:332.223000px;}
.x47{left:334.105500px;}
.x43{left:338.140500px;}
.x46{left:348.214500px;}
.x45{left:350.581500px;}
.x41{left:351.754500px;}
.x44{left:354.267000px;}
.x48{left:356.989500px;}
.x40{left:361.246500px;}
.x49{left:370.056000px;}
.x4c{left:372.453000px;}
.x4b{left:384.594000px;}
.x1b{left:420.822000px;}
.x32{left:423.783000px;}
.x15{left:425.386500px;}
.x31{left:429.432000px;}
.x16{left:445.303500px;}
.x3{left:454.959000px;}
.x19{left:457.675500px;}
.xc{left:496.083000px;}
.x33{left:500.287500px;}
.xd{left:506.511000px;}
.x1a{left:510.759000px;}
.x34{left:512.236500px;}
.x1c{left:518.548500px;}
.x17{left:533.647500px;}
.x1d{left:537.703500px;}
.x18{left:552.064500px;}
.x36{left:579.109500px;}
.x35{left:598.698000px;}
.x1e{left:617.385000px;}
.x1f{left:624.282000px;}
.x37{left:662.244000px;}
.x4d{left:668.389500px;}
.x20{left:671.770500px;}
.x9{left:675.868500px;}
.xa{left:686.046000px;}
.x21{left:692.196000px;}
.xe{left:698.134500px;}
.xf{left:704.560500px;}
.x10{left:732.108000px;}
.x11{left:744.399000px;}
.x38{left:765.000000px;}
.x39{left:788.604000px;}
.x14{left:822.982500px;}
@media print{
.v4{vertical-align:-16.709333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v5{vertical-align:-9.301333pt;}
.v6{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.250667pt;}
.v7{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v9{vertical-align:25.237333pt;}
.va{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.002262pt;}
.ls3a{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.442457pt;}
.ls33{letter-spacing:0.447791pt;}
.ls10{letter-spacing:0.482502pt;}
.ls8{letter-spacing:0.501867pt;}
.ls17{letter-spacing:0.507200pt;}
.ls36{letter-spacing:0.509060pt;}
.ls37{letter-spacing:0.514393pt;}
.ls32{letter-spacing:0.570745pt;}
.ls2f{letter-spacing:0.576078pt;}
.ls28{letter-spacing:0.617737pt;}
.ls25{letter-spacing:0.623070pt;}
.ls6{letter-spacing:0.637762pt;}
.ls2b{letter-spacing:0.663756pt;}
.ls16{letter-spacing:0.784508pt;}
.ls7{letter-spacing:0.789841pt;}
.ls29{letter-spacing:0.884237pt;}
.ls27{letter-spacing:0.889570pt;}
.lsf{letter-spacing:1.011505pt;}
.lsd{letter-spacing:1.724111pt;}
.ls15{letter-spacing:1.729444pt;}
.ls14{letter-spacing:2.632429pt;}
.ls1d{letter-spacing:3.274999pt;}
.ls3{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:10.968429pt;}
.ls1c{letter-spacing:11.635096pt;}
.lsb{letter-spacing:11.928563pt;}
.ls2d{letter-spacing:12.528078pt;}
.ls31{letter-spacing:12.533411pt;}
.ls18{letter-spacing:12.957762pt;}
.lsc{letter-spacing:12.963096pt;}
.ls2c{letter-spacing:12.964663pt;}
.ls38{letter-spacing:13.070931pt;}
.ls22{letter-spacing:13.325762pt;}
.ls35{letter-spacing:13.549136pt;}
.ls11{letter-spacing:13.654400pt;}
.ls20{letter-spacing:13.704300pt;}
.ls21{letter-spacing:14.011733pt;}
.ls13{letter-spacing:14.158172pt;}
.ls2a{letter-spacing:14.316785pt;}
.ls26{letter-spacing:14.437841pt;}
.ls5{letter-spacing:15.942400pt;}
.ls4{letter-spacing:15.985067pt;}
.ls24{letter-spacing:16.067096pt;}
.ls1a{letter-spacing:16.390400pt;}
.ls12{letter-spacing:16.603733pt;}
.ls19{letter-spacing:17.771733pt;}
.lse{letter-spacing:18.198400pt;}
.ls9{letter-spacing:18.584838pt;}
.ls23{letter-spacing:18.590172pt;}
.ls1f{letter-spacing:20.684994pt;}
.ls1e{letter-spacing:20.690736pt;}
.lsa{letter-spacing:54.435096pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ls30{letter-spacing:221.925867pt;}
.ls2e{letter-spacing:231.819200pt;}
.ls34{letter-spacing:270.197867pt;}
.ws5b{word-spacing:-13.283467pt;}
.ws77{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.wsb{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws69{word-spacing:-4.782048pt;}
.ws2f{word-spacing:-2.975497pt;}
.ws8f{word-spacing:-2.178489pt;}
.ws5c{word-spacing:-2.125355pt;}
.ws90{word-spacing:-2.072221pt;}
.ws92{word-spacing:-1.965953pt;}
.wsb3{word-spacing:-1.960653pt;}
.ws41{word-spacing:-1.806551pt;}
.ws3e{word-spacing:-1.647150pt;}
.ws6d{word-spacing:-1.620338pt;}
.ws65{word-spacing:-1.594016pt;}
.ws93{word-spacing:-1.487748pt;}
.ws95{word-spacing:-1.338982pt;}
.ws14{word-spacing:-1.291162pt;}
.ws29{word-spacing:-1.275213pt;}
.ws1e{word-spacing:-1.168945pt;}
.ws5f{word-spacing:-1.115811pt;}
.ws66{word-spacing:-1.009543pt;}
.ws43{word-spacing:-0.956410pt;}
.ws34{word-spacing:-0.903276pt;}
.ws98{word-spacing:-0.860774pt;}
.ws51{word-spacing:-0.743874pt;}
.ws45{word-spacing:-0.690740pt;}
.ws60{word-spacing:-0.637606pt;}
.ws53{word-spacing:-0.584473pt;}
.ws91{word-spacing:-0.531339pt;}
.wsa1{word-spacing:-0.430387pt;}
.ws87{word-spacing:-0.425071pt;}
.wsaf{word-spacing:-0.382566pt;}
.ws54{word-spacing:-0.371937pt;}
.wsb8{word-spacing:-0.334746pt;}
.ws38{word-spacing:-0.318803pt;}
.wsa6{word-spacing:-0.286925pt;}
.ws1a{word-spacing:-0.265669pt;}
.wsa0{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws2c{word-spacing:-0.159402pt;}
.ws24{word-spacing:-0.106268pt;}
.ws9e{word-spacing:-0.095642pt;}
.wsa5{word-spacing:-0.085014pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws96{word-spacing:-0.047821pt;}
.ws8d{word-spacing:-0.024176pt;}
.wsa8{word-spacing:-0.007040pt;}
.wsad{word-spacing:-0.006101pt;}
.ws2{word-spacing:-0.004772pt;}
.wsb5{word-spacing:-0.004736pt;}
.wsaa{word-spacing:-0.003038pt;}
.ws26{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.047821pt;}
.ws19{word-spacing:0.053134pt;}
.ws8c{word-spacing:0.085014pt;}
.ws10{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.wsf{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.ws9d{word-spacing:0.286925pt;}
.ws70{word-spacing:0.290426pt;}
.ws2b{word-spacing:0.318803pt;}
.ws28{word-spacing:0.371937pt;}
.ws56{word-spacing:0.425071pt;}
.ws3b{word-spacing:0.478205pt;}
.ws73{word-spacing:0.531339pt;}
.wsb0{word-spacing:0.573850pt;}
.ws94{word-spacing:0.584473pt;}
.ws78{word-spacing:0.593067pt;}
.ws76{word-spacing:0.598400pt;}
.ws4b{word-spacing:0.637606pt;}
.ws67{word-spacing:0.663193pt;}
.ws25{word-spacing:0.690740pt;}
.ws52{word-spacing:0.743874pt;}
.ws5a{word-spacing:0.797008pt;}
.ws4a{word-spacing:0.903276pt;}
.ws6b{word-spacing:0.956410pt;}
.ws2a{word-spacing:1.062677pt;}
.wsa{word-spacing:1.227389pt;}
.wsb1{word-spacing:1.243341pt;}
.ws4e{word-spacing:1.275213pt;}
.wsb4{word-spacing:1.291162pt;}
.ws30{word-spacing:1.328347pt;}
.ws47{word-spacing:1.381481pt;}
.ws46{word-spacing:1.434614pt;}
.ws9a{word-spacing:1.482445pt;}
.wsac{word-spacing:1.530266pt;}
.ws4d{word-spacing:1.540882pt;}
.ws64{word-spacing:1.647150pt;}
.ws37{word-spacing:1.700284pt;}
.ws8e{word-spacing:1.753418pt;}
.ws61{word-spacing:1.806551pt;}
.ws6a{word-spacing:1.859685pt;}
.ws4c{word-spacing:1.965953pt;}
.wsae{word-spacing:2.151936pt;}
.ws2d{word-spacing:2.178489pt;}
.ws1{word-spacing:2.232481pt;}
.ws5e{word-spacing:2.497292pt;}
.ws32{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.ws11{word-spacing:2.630144pt;}
.ws42{word-spacing:2.656693pt;}
.ws63{word-spacing:2.709827pt;}
.wse{word-spacing:2.725786pt;}
.ws35{word-spacing:2.762961pt;}
.ws3a{word-spacing:2.816095pt;}
.ws12{word-spacing:2.821427pt;}
.ws17{word-spacing:2.861926pt;}
.ws99{word-spacing:2.866509pt;}
.wsa7{word-spacing:2.866756pt;}
.ws1b{word-spacing:2.869229pt;}
.ws74{word-spacing:2.869248pt;}
.wsd{word-spacing:2.891165pt;}
.ws6c{word-spacing:2.922363pt;}
.wsab{word-spacing:2.964890pt;}
.ws71{word-spacing:3.028630pt;}
.wsb7{word-spacing:3.108352pt;}
.ws2e{word-spacing:3.134898pt;}
.ws18{word-spacing:3.188032pt;}
.ws4f{word-spacing:3.241166pt;}
.ws33{word-spacing:3.294300pt;}
.wsa2{word-spacing:3.299635pt;}
.ws9c{word-spacing:3.347456pt;}
.ws68{word-spacing:3.400567pt;}
.ws55{word-spacing:3.453701pt;}
.ws9f{word-spacing:3.490918pt;}
.ws36{word-spacing:3.506835pt;}
.ws3c{word-spacing:3.559969pt;}
.ws3f{word-spacing:3.613103pt;}
.ws7d{word-spacing:3.666237pt;}
.ws1c{word-spacing:3.719371pt;}
.ws6f{word-spacing:3.825638pt;}
.ws50{word-spacing:4.144442pt;}
.ws72{word-spacing:4.197575pt;}
.ws49{word-spacing:4.516379pt;}
.ws62{word-spacing:4.675780pt;}
.ws88{word-spacing:4.728914pt;}
.ws7c{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws44{word-spacing:4.888316pt;}
.ws3d{word-spacing:4.941450pt;}
.ws5d{word-spacing:5.100851pt;}
.ws97{word-spacing:5.116826pt;}
.ws31{word-spacing:5.260253pt;}
.wsb2{word-spacing:5.547213pt;}
.ws40{word-spacing:5.791591pt;}
.ws39{word-spacing:5.844725pt;}
.ws48{word-spacing:6.057261pt;}
.wsb6{word-spacing:6.360166pt;}
.ws57{word-spacing:6.429198pt;}
.ws58{word-spacing:6.801135pt;}
.ws59{word-spacing:6.854269pt;}
.ws6e{word-spacing:7.385607pt;}
.ws6{word-spacing:8.740496pt;}
.ws7{word-spacing:10.525789pt;}
.wsa9{word-spacing:11.476992pt;}
.ws3{word-spacing:13.761632pt;}
.ws9{word-spacing:14.282342pt;}
.ws5{word-spacing:19.857270pt;}
.ws84{word-spacing:125.438747pt;}
.ws81{word-spacing:146.926892pt;}
.ws83{word-spacing:149.657333pt;}
.ws85{word-spacing:166.883267pt;}
.ws82{word-spacing:181.736518pt;}
.ws7e{word-spacing:184.608770pt;}
.ws80{word-spacing:198.952518pt;}
.ws7f{word-spacing:203.822024pt;}
.ws86{word-spacing:205.267269pt;}
.ws7b{word-spacing:286.733517pt;}
.ws7a{word-spacing:325.611827pt;}
.ws79{word-spacing:326.213333pt;}
.ws75{word-spacing:345.600922pt;}
.ws89{word-spacing:794.641998pt;}
.ws8a{word-spacing:826.538223pt;}
.wsa4{word-spacing:855.086037pt;}
.ws8b{word-spacing:867.043371pt;}
.wsa3{word-spacing:868.236665pt;}
._d{margin-left:-6.625869pt;}
._7{margin-left:-5.483429pt;}
._0{margin-left:-4.091296pt;}
._c{margin-left:-2.922363pt;}
._2{margin-left:-1.338970pt;}
._1c{width:0.956410pt;}
._1e{width:1.864338pt;}
._5{width:2.824619pt;}
._1d{width:4.091212pt;}
._1f{width:5.203037pt;}
._a{width:9.755443pt;}
._1{width:11.530016pt;}
._f{width:13.175632pt;}
._9{width:14.346240pt;}
._8{width:15.350464pt;}
._b{width:16.471499pt;}
._12{width:17.746711pt;}
._e{width:18.820012pt;}
._13{width:19.925200pt;}
._15{width:21.503352pt;}
._3{width:22.502128pt;}
._4c{width:23.841242pt;}
._14{width:25.514879pt;}
._18{width:26.620067pt;}
._4{width:27.783619pt;}
._1b{width:30.721986pt;}
._17{width:31.689030pt;}
._16{width:34.218210pt;}
._19{width:35.121486pt;}
._1a{width:37.841936pt;}
._53{width:49.308332pt;}
._52{width:50.568014pt;}
._6{width:61.485675pt;}
._3e{width:117.681142pt;}
._27{width:152.261427pt;}
._39{width:159.146957pt;}
._3a{width:161.102288pt;}
._3c{width:169.664914pt;}
._3f{width:184.651277pt;}
._3b{width:195.278077pt;}
._40{width:196.680814pt;}
._36{width:209.256013pt;}
._3d{width:214.448824pt;}
._42{width:216.915640pt;}
._41{width:233.704586pt;}
._35{width:236.473856pt;}
._2b{width:245.320704pt;}
._2c{width:256.797696pt;}
._2d{width:261.202739pt;}
._2f{width:262.775296pt;}
._33{width:264.496845pt;}
._2e{width:267.222630pt;}
._21{width:274.778317pt;}
._32{width:278.024928pt;}
._28{width:286.685696pt;}
._30{width:296.871526pt;}
._26{width:298.688717pt;}
._22{width:306.961715pt;}
._31{width:309.735322pt;}
._25{width:313.699245pt;}
._23{width:316.956262pt;}
._20{width:322.535333pt;}
._34{width:333.645722pt;}
._29{width:345.600922pt;}
._24{width:358.847283pt;}
._2a{width:381.418701pt;}
._37{width:398.921114pt;}
._38{width:441.242522pt;}
._43{width:642.233344pt;}
._10{width:643.431486pt;}
._4e{width:725.250253pt;}
._4a{width:736.200149pt;}
._4b{width:758.293359pt;}
._44{width:762.980642pt;}
._49{width:770.537907pt;}
._45{width:784.883721pt;}
._51{width:789.377946pt;}
._48{width:801.335279pt;}
._4f{width:816.848666pt;}
._46{width:819.504666pt;}
._50{width:829.117534pt;}
._47{width:830.312201pt;}
._4d{width:2222.978667pt;}
._11{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:38.755733pt;}
.fs8{font-size:40.381867pt;}
.fsd{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fs10{font-size:44.292800pt;}
.fsb{font-size:47.820800pt;}
.fse{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;}
.y62{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y35{bottom:93.018667pt;}
.y17c{bottom:95.086667pt;}
.y188{bottom:96.186667pt;}
.y1c0{bottom:99.793333pt;}
.y61{bottom:101.661333pt;}
.ybb{bottom:104.713333pt;}
.yd6{bottom:105.510667pt;}
.y98{bottom:105.909333pt;}
.y34{bottom:108.920000pt;}
.y187{bottom:111.808000pt;}
.y17b{bottom:111.824000pt;}
.y1f9{bottom:114.088000pt;}
.y1bf{bottom:115.136000pt;}
.y60{bottom:118.398667pt;}
.yf2{bottom:121.053333pt;}
.yba{bottom:121.450667pt;}
.yd5{bottom:122.248000pt;}
.y97{bottom:122.646667pt;}
.y21{bottom:123.790666pt;}
.y33{bottom:124.820000pt;}
.y186{bottom:127.429333pt;}
.y17a{bottom:128.561333pt;}
.y1f8{bottom:129.430667pt;}
.y1be{bottom:130.478667pt;}
.y1bd{bottom:134.818667pt;}
.y5f{bottom:135.134667pt;}
.y14b{bottom:135.758667pt;}
.yf1{bottom:137.789333pt;}
.yb9{bottom:138.188000pt;}
.yd4{bottom:138.985333pt;}
.y96{bottom:139.384000pt;}
.y32{bottom:140.720000pt;}
.y185{bottom:143.050667pt;}
.y1f7{bottom:144.773333pt;}
.y179{bottom:145.298667pt;}
.y1bc{bottom:148.816000pt;}
.y5e{bottom:151.872000pt;}
.y14a{bottom:152.496000pt;}
.yf0{bottom:154.526667pt;}
.yb8{bottom:154.925333pt;}
.yd3{bottom:155.722667pt;}
.y95{bottom:156.121333pt;}
.y31{bottom:156.621333pt;}
.y1f6{bottom:160.116000pt;}
.y178{bottom:162.036000pt;}
.y1bb{bottom:164.158667pt;}
.y184{bottom:166.641333pt;}
.y1ba{bottom:168.498667pt;}
.y5d{bottom:168.609333pt;}
.y149{bottom:169.233333pt;}
.yef{bottom:171.264000pt;}
.yb7{bottom:171.662667pt;}
.yd2{bottom:172.460000pt;}
.y30{bottom:172.521333pt;}
.y94{bottom:172.858667pt;}
.y18{bottom:175.052000pt;}
.y1f5{bottom:175.458667pt;}
.y177{bottom:178.773333pt;}
.y1b9{bottom:179.501333pt;}
.y5c{bottom:185.346667pt;}
.y148{bottom:185.970667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yee{bottom:188.001333pt;}
.y2f{bottom:188.421333pt;}
.yd1{bottom:189.197333pt;}
.y93{bottom:189.596000pt;}
.y183{bottom:190.233333pt;}
.y1f4{bottom:190.801333pt;}
.yb6{bottom:192.385333pt;}
.y1b8{bottom:194.844000pt;}
.y176{bottom:195.510667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y5b{bottom:202.084000pt;}
.y147{bottom:202.708000pt;}
.y2e{bottom:204.322667pt;}
.yed{bottom:204.738667pt;}
.yd0{bottom:205.934667pt;}
.y1f3{bottom:206.142667pt;}
.y92{bottom:206.333333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1b7{bottom:210.186667pt;}
.yb5{bottom:210.318667pt;}
.y175{bottom:212.248000pt;}
.y182{bottom:213.825333pt;}
.y11d{bottom:216.640000pt;}
.y5a{bottom:218.821333pt;}
.y146{bottom:219.445333pt;}
.yec{bottom:221.476000pt;}
.y1f2{bottom:221.485333pt;}
.ycf{bottom:222.672000pt;}
.y91{bottom:223.070667pt;}
.y1b6{bottom:225.529333pt;}
.y174{bottom:228.985333pt;}
.y181{bottom:229.446667pt;}
.y1b5{bottom:229.869333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y11c{bottom:233.377333pt;}
.y59{bottom:235.558667pt;}
.y145{bottom:236.182667pt;}
.y1f1{bottom:236.828000pt;}
.yeb{bottom:238.213333pt;}
.yce{bottom:239.409333pt;}
.y90{bottom:239.808000pt;}
.yb4{bottom:240.206667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1b4{bottom:243.866667pt;}
.y180{bottom:245.068000pt;}
.y173{bottom:245.722667pt;}
.y11b{bottom:250.114667pt;}
.y1f0{bottom:252.170667pt;}
.y58{bottom:252.296000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yea{bottom:254.950667pt;}
.ycd{bottom:256.146667pt;}
.y8f{bottom:256.545333pt;}
.y144{bottom:256.905333pt;}
.yb3{bottom:256.944000pt;}
.y1b3{bottom:259.209333pt;}
.y17f{bottom:260.689333pt;}
.y172{bottom:262.460000pt;}
.y1b2{bottom:263.549333pt;}
.y2d{bottom:264.148000pt;}
.y11a{bottom:266.852000pt;}
.y1ef{bottom:267.513333pt;}
.y57{bottom:269.033333pt;}
.ye9{bottom:271.688000pt;}
.ycc{bottom:272.884000pt;}
.y8e{bottom:273.282667pt;}
.yb2{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y17e{bottom:276.310667pt;}
.y171{bottom:279.197333pt;}
.y2c{bottom:280.048000pt;}
.y1ee{bottom:282.856000pt;}
.y1b1{bottom:283.182667pt;}
.y119{bottom:283.589333pt;}
.y56{bottom:285.770667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ye8{bottom:288.425333pt;}
.ycb{bottom:289.621333pt;}
.y8d{bottom:290.020000pt;}
.yb1{bottom:290.417333pt;}
.y17d{bottom:291.932000pt;}
.y170{bottom:295.934667pt;}
.y2b{bottom:295.949333pt;}
.y143{bottom:296.585333pt;}
.y1ed{bottom:298.198667pt;}
.y118{bottom:300.326667pt;}
.y55{bottom:302.508000pt;}
.ye7{bottom:305.162667pt;}
.yca{bottom:306.358667pt;}
.y8c{bottom:306.757333pt;}
.yb0{bottom:307.154667pt;}
.y142{bottom:309.204000pt;}
.yf{bottom:309.452000pt;}
.y2a{bottom:311.849333pt;}
.y16f{bottom:312.672000pt;}
.y1ec{bottom:313.541333pt;}
.y1b0{bottom:317.602667pt;}
.y54{bottom:319.245333pt;}
.y117{bottom:321.049333pt;}
.y141{bottom:321.824000pt;}
.ye6{bottom:321.900000pt;}
.yc9{bottom:323.096000pt;}
.y8b{bottom:323.494667pt;}
.yaf{bottom:323.892000pt;}
.y1eb{bottom:328.882667pt;}
.y16e{bottom:329.409333pt;}
.y1af{bottom:330.221333pt;}
.y140{bottom:334.442667pt;}
.y53{bottom:335.982667pt;}
.y29{bottom:337.048000pt;}
.ye5{bottom:338.637333pt;}
.y116{bottom:338.981333pt;}
.yc8{bottom:339.833333pt;}
.y8a{bottom:340.232000pt;}
.yae{bottom:340.629333pt;}
.ye{bottom:343.809333pt;}
.y1ea{bottom:344.225333pt;}
.y16d{bottom:346.146667pt;}
.y1ae{bottom:346.972000pt;}
.y13f{bottom:347.062667pt;}
.y52{bottom:352.720000pt;}
.ye3{bottom:355.374667pt;}
.yc7{bottom:356.570667pt;}
.y89{bottom:356.968000pt;}
.yad{bottom:357.366667pt;}
.y1e9{bottom:359.568000pt;}
.y13e{bottom:359.681333pt;}
.ye4{bottom:360.196000pt;}
.y28{bottom:360.918667pt;}
.y1ad{bottom:361.584000pt;}
.yd{bottom:362.706666pt;}
.y16c{bottom:362.884000pt;}
.y115{bottom:368.869333pt;}
.y51{bottom:369.457333pt;}
.ye2{bottom:372.112000pt;}
.y13d{bottom:372.301333pt;}
.yc6{bottom:373.308000pt;}
.y88{bottom:373.705333pt;}
.yac{bottom:374.104000pt;}
.y1e8{bottom:374.910667pt;}
.y1ac{bottom:376.196000pt;}
.y27{bottom:376.818667pt;}
.y16b{bottom:379.620000pt;}
.y13c{bottom:384.920000pt;}
.y114{bottom:385.606667pt;}
.y50{bottom:386.194667pt;}
.ye1{bottom:388.849333pt;}
.yc5{bottom:390.045333pt;}
.y1e7{bottom:390.253333pt;}
.y87{bottom:390.442667pt;}
.y1ab{bottom:390.808000pt;}
.yab{bottom:390.841333pt;}
.y26{bottom:392.720000pt;}
.y16a{bottom:396.357333pt;}
.y13b{bottom:397.540000pt;}
.y113{bottom:402.344000pt;}
.y4f{bottom:402.932000pt;}
.ye0{bottom:405.586667pt;}
.y1e6{bottom:405.596000pt;}
.yc4{bottom:406.782667pt;}
.y86{bottom:407.180000pt;}
.yaa{bottom:407.578667pt;}
.y25{bottom:408.620000pt;}
.y13a{bottom:410.158667pt;}
.y1aa{bottom:411.821333pt;}
.y169{bottom:413.094667pt;}
.y112{bottom:419.081333pt;}
.y1a9{bottom:419.126667pt;}
.y4e{bottom:419.669333pt;}
.y1e5{bottom:420.938667pt;}
.ydf{bottom:422.324000pt;}
.y139{bottom:422.778667pt;}
.y85{bottom:423.917333pt;}
.ya9{bottom:424.316000pt;}
.y24{bottom:424.520000pt;}
.yc3{bottom:427.504000pt;}
.y168{bottom:429.832000pt;}
.y138{bottom:435.397333pt;}
.y111{bottom:435.818667pt;}
.y1e4{bottom:436.281333pt;}
.y4d{bottom:436.406667pt;}
.yde{bottom:439.061333pt;}
.y23{bottom:440.421333pt;}
.y84{bottom:440.654667pt;}
.y1a8{bottom:441.045333pt;}
.ya8{bottom:441.053333pt;}
.y167{bottom:446.569333pt;}
.yc{bottom:446.990669pt;}
.y1a7{bottom:448.350667pt;}
.y1e3{bottom:451.624000pt;}
.y110{bottom:452.556000pt;}
.y4c{bottom:453.144000pt;}
.y137{bottom:454.418667pt;}
.ydd{bottom:455.798667pt;}
.y22{bottom:456.321333pt;}
.y83{bottom:457.392000pt;}
.ya7{bottom:457.790667pt;}
.yb{bottom:462.990669pt;}
.y166{bottom:463.306667pt;}
.y1e2{bottom:466.965333pt;}
.y136{bottom:467.038667pt;}
.y10f{bottom:469.293333pt;}
.y1a6{bottom:470.269333pt;}
.ydc{bottom:472.536000pt;}
.y4b{bottom:473.866667pt;}
.y82{bottom:474.129333pt;}
.ya6{bottom:474.528000pt;}
.y1a5{bottom:477.574667pt;}
.ya{bottom:478.990666pt;}
.y1e1{bottom:482.308000pt;}
.y10e{bottom:486.030667pt;}
.ydb{bottom:489.273333pt;}
.y81{bottom:490.866667pt;}
.ya5{bottom:491.265333pt;}
.y4a{bottom:491.798667pt;}
.y9{bottom:494.990666pt;}
.y135{bottom:496.406667pt;}
.y1e0{bottom:497.650667pt;}
.y165{bottom:497.726667pt;}
.y1a4{bottom:499.492000pt;}
.y10d{bottom:502.768000pt;}
.yd9{bottom:506.010667pt;}
.y1a3{bottom:506.798667pt;}
.y80{bottom:507.604000pt;}
.ya4{bottom:508.002667pt;}
.y164{bottom:510.346667pt;}
.yda{bottom:510.832000pt;}
.y1df{bottom:512.993333pt;}
.y10c{bottom:519.505333pt;}
.y7f{bottom:524.341333pt;}
.ya3{bottom:524.740000pt;}
.yd8{bottom:526.732000pt;}
.y163{bottom:527.096000pt;}
.y1de{bottom:528.336000pt;}
.y1a2{bottom:528.716000pt;}
.y134{bottom:529.388000pt;}
.y1a1{bottom:536.022667pt;}
.y10b{bottom:536.242667pt;}
.y7e{bottom:541.078667pt;}
.ya2{bottom:541.477333pt;}
.y162{bottom:541.708000pt;}
.y1dd{bottom:543.678667pt;}
.yd7{bottom:544.665333pt;}
.y133{bottom:546.125333pt;}
.y10a{bottom:552.980000pt;}
.y161{bottom:556.320000pt;}
.y7d{bottom:557.816000pt;}
.y1a0{bottom:557.940000pt;}
.ya1{bottom:558.214667pt;}
.y49{bottom:558.598667pt;}
.y1dc{bottom:559.021333pt;}
.y211{bottom:559.742667pt;}
.y19f{bottom:565.245333pt;}
.y132{bottom:566.848000pt;}
.y109{bottom:569.717333pt;}
.y160{bottom:570.932000pt;}
.y8{bottom:573.786667pt;}
.y1db{bottom:574.364000pt;}
.y7c{bottom:574.553333pt;}
.ya0{bottom:574.952000pt;}
.y210{bottom:575.084000pt;}
.y108{bottom:586.454667pt;}
.y19e{bottom:587.164000pt;}
.y1da{bottom:589.706667pt;}
.y20f{bottom:590.426667pt;}
.y7b{bottom:591.290667pt;}
.y9f{bottom:591.689333pt;}
.y48{bottom:591.834667pt;}
.y15f{bottom:591.946667pt;}
.y7{bottom:592.685334pt;}
.y19d{bottom:594.469333pt;}
.y131{bottom:596.736000pt;}
.y15e{bottom:599.252000pt;}
.y107{bottom:603.192000pt;}
.y1d9{bottom:605.048000pt;}
.y7a{bottom:608.028000pt;}
.y9e{bottom:608.426667pt;}
.y47{bottom:609.129333pt;}
.y130{bottom:613.473333pt;}
.y19c{bottom:616.388000pt;}
.y106{bottom:619.929333pt;}
.y1d8{bottom:620.390667pt;}
.y15d{bottom:621.169333pt;}
.y19b{bottom:623.693333pt;}
.y79{bottom:624.765333pt;}
.y9d{bottom:625.164000pt;}
.y46{bottom:626.424000pt;}
.y15c{bottom:628.476000pt;}
.y12f{bottom:630.210667pt;}
.y1d7{bottom:635.733333pt;}
.y105{bottom:636.666667pt;}
.y20e{bottom:640.506667pt;}
.y78{bottom:641.502667pt;}
.y9c{bottom:641.901333pt;}
.y45{bottom:643.720000pt;}
.y6{bottom:645.598667pt;}
.y19a{bottom:645.610667pt;}
.y12e{bottom:646.948000pt;}
.y15b{bottom:650.393333pt;}
.y1d6{bottom:651.076000pt;}
.y199{bottom:652.917333pt;}
.y104{bottom:653.404000pt;}
.y20d{bottom:655.848000pt;}
.y15a{bottom:657.700000pt;}
.yc2{bottom:658.240000pt;}
.y9b{bottom:658.638667pt;}
.y44{bottom:661.014667pt;}
.y77{bottom:662.225333pt;}
.y12d{bottom:663.685333pt;}
.y1d5{bottom:666.418667pt;}
.y3{bottom:668.977329pt;}
.y103{bottom:670.141333pt;}
.y20c{bottom:671.190667pt;}
.yc1{bottom:674.977333pt;}
.y9a{bottom:675.376000pt;}
.y43{bottom:678.310667pt;}
.y159{bottom:679.617333pt;}
.y12c{bottom:680.422667pt;}
.y198{bottom:681.237333pt;}
.y1d4{bottom:681.761333pt;}
.y20b{bottom:686.533333pt;}
.y102{bottom:686.878667pt;}
.y158{bottom:686.922667pt;}
.yc0{bottom:691.714667pt;}
.y76{bottom:692.113333pt;}
.y42{bottom:695.605333pt;}
.y1d3{bottom:697.104000pt;}
.y12b{bottom:697.158667pt;}
.y20a{bottom:701.876000pt;}
.ybf{bottom:708.452000pt;}
.y157{bottom:708.841333pt;}
.y75{bottom:708.850667pt;}
.y197{bottom:709.342667pt;}
.y1d2{bottom:712.446667pt;}
.y41{bottom:712.900000pt;}
.y12a{bottom:713.896000pt;}
.y156{bottom:716.146667pt;}
.y209{bottom:717.218667pt;}
.y100{bottom:717.497333pt;}
.ybe{bottom:725.189333pt;}
.y74{bottom:725.588000pt;}
.y1d1{bottom:727.788000pt;}
.y40{bottom:730.196000pt;}
.y129{bottom:730.633333pt;}
.y208{bottom:732.561333pt;}
.y101{bottom:734.616000pt;}
.yff{bottom:734.945333pt;}
.y155{bottom:738.065333pt;}
.ybd{bottom:741.926667pt;}
.y73{bottom:742.324000pt;}
.y196{bottom:742.325333pt;}
.y1d0{bottom:743.130667pt;}
.y154{bottom:745.370667pt;}
.y3f{bottom:747.490667pt;}
.y207{bottom:747.904000pt;}
.yfe{bottom:752.393333pt;}
.y1cf{bottom:758.473333pt;}
.y72{bottom:759.061333pt;}
.y195{bottom:759.062667pt;}
.ybc{bottom:762.648000pt;}
.y206{bottom:763.246667pt;}
.y3e{bottom:764.785333pt;}
.y153{bottom:767.288000pt;}
.y128{bottom:773.701333pt;}
.y1ce{bottom:773.816000pt;}
.y152{bottom:774.594667pt;}
.y71{bottom:775.798667pt;}
.y194{bottom:775.800000pt;}
.y205{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y3d{bottom:782.081333pt;}
.yfd{bottom:788.153333pt;}
.y1cd{bottom:789.158667pt;}
.y70{bottom:792.536000pt;}
.y204{bottom:793.930667pt;}
.y127{bottom:794.993333pt;}
.y151{bottom:796.512000pt;}
.y193{bottom:796.521333pt;}
.y99{bottom:797.358667pt;}
.y150{bottom:803.818667pt;}
.y1cc{bottom:804.501333pt;}
.yfc{bottom:804.890667pt;}
.y6f{bottom:809.273333pt;}
.y126{bottom:816.284000pt;}
.y3c{bottom:816.378667pt;}
.y1cb{bottom:819.844000pt;}
.y203{bottom:824.616000pt;}
.yfb{bottom:825.612000pt;}
.y14f{bottom:825.736000pt;}
.y6e{bottom:826.010667pt;}
.y192{bottom:829.198667pt;}
.y14e{bottom:833.042667pt;}
.y3b{bottom:834.582667pt;}
.y1ca{bottom:835.186667pt;}
.y125{bottom:837.298667pt;}
.y202{bottom:839.958667pt;}
.y6d{bottom:842.748000pt;}
.y3a{bottom:848.929333pt;}
.y1c9{bottom:850.528000pt;}
.y191{bottom:852.790667pt;}
.y201{bottom:855.301333pt;}
.yfa{bottom:855.500000pt;}
.y124{bottom:858.312000pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:859.485333pt;}
.y14d{bottom:861.361333pt;}
.y1c8{bottom:865.870667pt;}
.y190{bottom:868.412000pt;}
.y200{bottom:870.644000pt;}
.yf9{bottom:872.237333pt;}
.y6b{bottom:876.222667pt;}
.y123{bottom:879.326667pt;}
.y1c7{bottom:881.213333pt;}
.y18f{bottom:884.033333pt;}
.y1ff{bottom:885.986667pt;}
.y39{bottom:888.641333pt;}
.yf8{bottom:888.974667pt;}
.y14c{bottom:889.468000pt;}
.y6a{bottom:892.960000pt;}
.y18e{bottom:899.654667pt;}
.y1c6{bottom:900.541333pt;}
.y122{bottom:900.617333pt;}
.y1fe{bottom:901.329333pt;}
.yf7{bottom:905.712000pt;}
.y69{bottom:909.697333pt;}
.y18d{bottom:915.276000pt;}
.y1fd{bottom:916.670667pt;}
.y38{bottom:921.320000pt;}
.y121{bottom:921.909333pt;}
.yf6{bottom:922.449333pt;}
.y68{bottom:926.434667pt;}
.y1c5{bottom:930.429333pt;}
.y18c{bottom:930.898667pt;}
.y1fc{bottom:932.013333pt;}
.yf5{bottom:939.186667pt;}
.y120{bottom:942.924000pt;}
.y67{bottom:943.172000pt;}
.y1c4{bottom:945.772000pt;}
.y37{bottom:946.425333pt;}
.y18b{bottom:946.520000pt;}
.y1fb{bottom:947.356000pt;}
.yf4{bottom:955.924000pt;}
.y66{bottom:959.909333pt;}
.y1c3{bottom:961.114667pt;}
.y18a{bottom:962.141333pt;}
.y1fa{bottom:962.698667pt;}
.y11f{bottom:963.937333pt;}
.y1c2{bottom:965.453333pt;}
.y36{bottom:971.530667pt;}
.yf3{bottom:972.661333pt;}
.y65{bottom:976.646667pt;}
.y189{bottom:977.762667pt;}
.y1c1{bottom:978.041333pt;}
.y64{bottom:993.384000pt;}
.y11e{bottom:994.700000pt;}
.y63{bottom:1046.810667pt;}
.he{height:23.304670pt;}
.h16{height:27.184641pt;}
.h9{height:27.188522pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h14{height:29.519145pt;}
.h1b{height:30.732706pt;}
.hf{height:31.072763pt;}
.h13{height:31.157778pt;}
.h18{height:34.574438pt;}
.h10{height:34.957005pt;}
.h1f{height:35.052646pt;}
.h17{height:37.778179pt;}
.h11{height:38.415786pt;}
.h12{height:38.840857pt;}
.hb{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1a{height:43.433855pt;}
.h19{height:43.439188pt;}
.hd{height:48.486756pt;}
.h15{height:48.809811pt;}
.h2{height:48.960000pt;}
.h1c{height:56.310097pt;}
.h1d{height:64.178338pt;}
.h1e{height:64.183671pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{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;}
.x24{left:55.708000pt;}
.x3d{left:57.481333pt;}
.x3f{left:59.632000pt;}
.x3b{left:63.378667pt;}
.x3a{left:65.408000pt;}
.x3c{left:67.714667pt;}
.x4f{left:74.862667pt;}
.x4e{left:75.844000pt;}
.x29{left:76.760000pt;}
.x3e{left:78.012000pt;}
.x25{left:79.186667pt;}
.x28{left:81.668000pt;}
.x26{left:84.448000pt;}
.x27{left:87.048000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x23{left:95.966667pt;}
.x2a{left:97.101333pt;}
.x22{left:102.052000pt;}
.x2c{left:151.585333pt;}
.x12{left:154.106667pt;}
.x2b{left:158.966667pt;}
.x4{left:180.874667pt;}
.x2d{left:215.148000pt;}
.xb{left:219.865333pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x2e{left:227.852000pt;}
.x8{left:250.204000pt;}
.x13{left:255.938667pt;}
.x4a{left:288.398667pt;}
.x2f{left:290.018667pt;}
.x30{left:293.552000pt;}
.x42{left:295.309333pt;}
.x47{left:296.982667pt;}
.x43{left:300.569333pt;}
.x46{left:309.524000pt;}
.x45{left:311.628000pt;}
.x41{left:312.670667pt;}
.x44{left:314.904000pt;}
.x48{left:317.324000pt;}
.x40{left:321.108000pt;}
.x49{left:328.938667pt;}
.x4c{left:331.069333pt;}
.x4b{left:341.861333pt;}
.x1b{left:374.064000pt;}
.x32{left:376.696000pt;}
.x15{left:378.121333pt;}
.x31{left:381.717333pt;}
.x16{left:395.825333pt;}
.x3{left:404.408000pt;}
.x19{left:406.822667pt;}
.xc{left:440.962667pt;}
.x33{left:444.700000pt;}
.xd{left:450.232000pt;}
.x1a{left:454.008000pt;}
.x34{left:455.321333pt;}
.x1c{left:460.932000pt;}
.x17{left:474.353333pt;}
.x1d{left:477.958667pt;}
.x18{left:490.724000pt;}
.x36{left:514.764000pt;}
.x35{left:532.176000pt;}
.x1e{left:548.786667pt;}
.x1f{left:554.917333pt;}
.x37{left:588.661333pt;}
.x4d{left:594.124000pt;}
.x20{left:597.129333pt;}
.x9{left:600.772000pt;}
.xa{left:609.818667pt;}
.x21{left:615.285333pt;}
.xe{left:620.564000pt;}
.xf{left:626.276000pt;}
.x10{left:650.762667pt;}
.x11{left:661.688000pt;}
.x38{left:680.000000pt;}
.x39{left:700.981333pt;}
.x14{left:731.540000pt;}
}




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