
    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_e028b7bd602262b6aa0ebb9e.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_2889fceb6d84c5b1070a56e9.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_ba3b43ebcee9a451511e39ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_1658f68de5456656d45c1c61.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_a8e8e6ccb3b3a34d6753ed1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac04a25545e83a1ea84ef7b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c650031654849580be5279cb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7d140c598567370f6b55f365.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d9b6acce67f79b9692c9c506.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966000;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_7d8e1dc5998ccd8510e9c2a6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_78864033df407ce612ad9453.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.870000;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_14df5c8620613e1858fe3924.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.726000;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;}
.mc{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);}
.m1c{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);}
.m21{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);}
.me{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);}
.m1d{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);}
.m28{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);}
.m4{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);}
.m29{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);}
.m1b{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);}
.m26{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);}
.m23{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);}
.m13{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);}
.m18{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);}
.m8{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);}
.m14{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);}
.m27{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);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m25{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);}
.mf{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);}
.m7{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);}
.m10{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);}
.m6{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);}
.m16{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);}
.m22{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);}
.m24{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);}
.m1e{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);}
.m20{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);}
.m17{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);}
.m5{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);}
.m9{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);}
.md{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.248000px;}
.v6{vertical-align:17.358000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000216px;}
.ls4d{letter-spacing:0.000496px;}
.ls51{letter-spacing:0.000566px;}
.ls4b{letter-spacing:0.000589px;}
.ls2{letter-spacing:0.000600px;}
.ls4c{letter-spacing:0.000800px;}
.ls46{letter-spacing:0.000901px;}
.ls26{letter-spacing:0.001133px;}
.ls45{letter-spacing:0.001155px;}
.ls4e{letter-spacing:0.002045px;}
.ls19{letter-spacing:0.002971px;}
.ls49{letter-spacing:0.003021px;}
.ls29{letter-spacing:0.003389px;}
.ls4a{letter-spacing:0.003431px;}
.lse{letter-spacing:0.003439px;}
.ls16{letter-spacing:0.003794px;}
.ls42{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004221px;}
.ls1{letter-spacing:0.004711px;}
.ls24{letter-spacing:0.005843px;}
.ls35{letter-spacing:0.642088px;}
.ls1f{letter-spacing:0.648088px;}
.ls1d{letter-spacing:0.717483px;}
.ls22{letter-spacing:2.988600px;}
.ls38{letter-spacing:2.989200px;}
.ls37{letter-spacing:6.451873px;}
.ls21{letter-spacing:11.949746px;}
.ls7{letter-spacing:11.954850px;}
.ls39{letter-spacing:11.955746px;}
.ls20{letter-spacing:11.957700px;}
.ls32{letter-spacing:13.444800px;}
.ls4f{letter-spacing:13.445510px;}
.ls36{letter-spacing:13.450560px;}
.ls34{letter-spacing:13.450800px;}
.ls50{letter-spacing:13.451510px;}
.ls2f{letter-spacing:13.503398px;}
.ls47{letter-spacing:13.602918px;}
.ls52{letter-spacing:13.639245px;}
.ls28{letter-spacing:14.011746px;}
.lsa{letter-spacing:14.226593px;}
.ls9{letter-spacing:14.286368px;}
.ls8{letter-spacing:14.346144px;}
.ls11{letter-spacing:14.405920px;}
.ls10{letter-spacing:14.525471px;}
.ls6{letter-spacing:14.585246px;}
.ls14{letter-spacing:14.704798px;}
.ls15{letter-spacing:14.764573px;}
.lsd{letter-spacing:14.824349px;}
.ls2e{letter-spacing:14.884124px;}
.ls3c{letter-spacing:14.891084px;}
.ls1c{letter-spacing:14.910159px;}
.lsb{letter-spacing:14.943900px;}
.ls1e{letter-spacing:14.944200px;}
.ls3d{letter-spacing:14.944665px;}
.ls1a{letter-spacing:15.027352px;}
.lsf{letter-spacing:15.123227px;}
.ls13{letter-spacing:15.183002px;}
.ls3f{letter-spacing:15.242778px;}
.ls17{letter-spacing:15.302554px;}
.ls3b{letter-spacing:15.900435px;}
.ls3a{letter-spacing:15.906318px;}
.ls53{letter-spacing:16.148213px;}
.ls18{letter-spacing:16.378514px;}
.ls25{letter-spacing:16.434600px;}
.ls33{letter-spacing:16.440600px;}
.ls1b{letter-spacing:18.859259px;}
.lsc{letter-spacing:19.187968px;}
.ls3e{letter-spacing:19.247743px;}
.ls41{letter-spacing:19.905275px;}
.ls40{letter-spacing:21.002782px;}
.ls12{letter-spacing:23.192933px;}
.ls44{letter-spacing:25.823059px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.ls2a{letter-spacing:222.534600px;}
.ls2c{letter-spacing:249.894600px;}
.ls2d{letter-spacing:260.358600px;}
.ls2b{letter-spacing:265.872600px;}
.ls30{letter-spacing:315.057740px;}
.ls31{letter-spacing:324.940090px;}
.ls23{letter-spacing:547.327133px;}
.ls27{letter-spacing:601.393133px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws28{word-spacing:-14.943900px;}
.ws17{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws90{word-spacing:-3.407209px;}
.ws54{word-spacing:-2.450800px;}
.ws25{word-spacing:-2.271473px;}
.ws72{word-spacing:-2.211697px;}
.ws5b{word-spacing:-2.092146px;}
.ws58{word-spacing:-1.972595px;}
.ws8d{word-spacing:-1.912819px;}
.ws8e{word-spacing:-1.853044px;}
.ws6e{word-spacing:-1.793268px;}
.wsa8{word-spacing:-1.775347px;}
.ws78{word-spacing:-1.733492px;}
.ws65{word-spacing:-1.673717px;}
.ws73{word-spacing:-1.613941px;}
.ws105{word-spacing:-1.560154px;}
.ws74{word-spacing:-1.554166px;}
.ws67{word-spacing:-1.434614px;}
.ws64{word-spacing:-1.374839px;}
.wsb1{word-spacing:-1.255288px;}
.ws62{word-spacing:-1.195512px;}
.ws4e{word-spacing:-1.135736px;}
.ws3b{word-spacing:-1.075961px;}
.ws31{word-spacing:-0.956410px;}
.ws33{word-spacing:-0.896634px;}
.ws34{word-spacing:-0.836858px;}
.ws39{word-spacing:-0.777083px;}
.ws41{word-spacing:-0.717307px;}
.ws22{word-spacing:-0.699379px;}
.ws3e{word-spacing:-0.657532px;}
.wsca{word-spacing:-0.645581px;}
.ws30{word-spacing:-0.597756px;}
.ws24{word-spacing:-0.537980px;}
.ws92{word-spacing:-0.478205px;}
.ws8b{word-spacing:-0.430385px;}
.ws29{word-spacing:-0.418429px;}
.ws1e{word-spacing:-0.376589px;}
.ws2b{word-spacing:-0.358654px;}
.wsa9{word-spacing:-0.322790px;}
.wsf0{word-spacing:-0.302520px;}
.ws2c{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws82{word-spacing:-0.143462px;}
.ws36{word-spacing:-0.119551px;}
.wsd5{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.wse2{word-spacing:-0.014794px;}
.wse5{word-spacing:-0.013075px;}
.ws103{word-spacing:-0.011866px;}
.wsd2{word-spacing:-0.010637px;}
.wsf8{word-spacing:-0.010339px;}
.wscc{word-spacing:-0.009302px;}
.wsf6{word-spacing:-0.009082px;}
.wsee{word-spacing:-0.007786px;}
.ws100{word-spacing:-0.005942px;}
.wsfc{word-spacing:-0.005518px;}
.wsa2{word-spacing:-0.005021px;}
.wsdd{word-spacing:-0.004406px;}
.ws101{word-spacing:-0.003466px;}
.ws97{word-spacing:-0.002822px;}
.ws95{word-spacing:-0.002400px;}
.ws93{word-spacing:-0.001622px;}
.ws96{word-spacing:-0.000739px;}
.ws94{word-spacing:-0.000490px;}
.ws3{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.wsf1{word-spacing:0.000806px;}
.wsf{word-spacing:0.000984px;}
.ws2e{word-spacing:0.003599px;}
.ws7d{word-spacing:0.005100px;}
.ws1b{word-spacing:0.053798px;}
.ws3c{word-spacing:0.059776px;}
.ws8a{word-spacing:0.095641px;}
.ws9f{word-spacing:0.107597px;}
.ws37{word-spacing:0.119551px;}
.ws9a{word-spacing:0.143462px;}
.ws13{word-spacing:0.161395px;}
.ws40{word-spacing:0.179327px;}
.wsa6{word-spacing:0.191282px;}
.wscf{word-spacing:0.215194px;}
.ws44{word-spacing:0.239102px;}
.ws20{word-spacing:0.268992px;}
.ws3a{word-spacing:0.298878px;}
.wsdf{word-spacing:0.322790px;}
.ws3f{word-spacing:0.358654px;}
.ws6d{word-spacing:0.418429px;}
.wsa7{word-spacing:0.430385px;}
.wseb{word-spacing:0.430387px;}
.ws91{word-spacing:0.453507px;}
.ws32{word-spacing:0.478205px;}
.wsea{word-spacing:0.484186px;}
.ws46{word-spacing:0.537980px;}
.wsec{word-spacing:0.591782px;}
.ws6f{word-spacing:0.597756px;}
.wsd4{word-spacing:0.645581px;}
.ws27{word-spacing:0.657532px;}
.ws8f{word-spacing:0.717307px;}
.ws104{word-spacing:0.753178px;}
.ws9c{word-spacing:0.765130px;}
.ws9b{word-spacing:0.812950px;}
.wsc1{word-spacing:0.836858px;}
.ws99{word-spacing:0.860771px;}
.wsff{word-spacing:0.860774px;}
.wsab{word-spacing:0.896634px;}
.ws5d{word-spacing:0.956410px;}
.ws45{word-spacing:1.016185px;}
.ws102{word-spacing:1.022170px;}
.ws75{word-spacing:1.075961px;}
.wscd{word-spacing:1.075968px;}
.ws9d{word-spacing:1.129766px;}
.wsbc{word-spacing:1.135736px;}
.wsfd{word-spacing:1.183565px;}
.wsc5{word-spacing:1.195512px;}
.ws12{word-spacing:1.237363px;}
.ws19{word-spacing:1.291162px;}
.wscb{word-spacing:1.344960px;}
.wsb8{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.wsce{word-spacing:1.398758px;}
.ws5e{word-spacing:1.434614px;}
.ws4d{word-spacing:1.494390px;}
.wsaa{word-spacing:1.506355px;}
.ws43{word-spacing:1.554166px;}
.wsd3{word-spacing:1.560154px;}
.wsbf{word-spacing:1.613941px;}
.wsfe{word-spacing:1.613952px;}
.wsd9{word-spacing:1.667750px;}
.ws6b{word-spacing:1.673717px;}
.ws56{word-spacing:1.793268px;}
.ws1d{word-spacing:1.829146px;}
.ws5f{word-spacing:1.853044px;}
.ws76{word-spacing:1.912819px;}
.wsb5{word-spacing:1.972595px;}
.wsae{word-spacing:2.032370px;}
.wsed{word-spacing:2.044339px;}
.ws8c{word-spacing:2.056286px;}
.wsaf{word-spacing:2.092146px;}
.ws6c{word-spacing:2.151922px;}
.wsc8{word-spacing:2.205734px;}
.wsb9{word-spacing:2.211697px;}
.ws1f{word-spacing:2.259533px;}
.wsbe{word-spacing:2.331248px;}
.wsba{word-spacing:2.391024px;}
.wsf4{word-spacing:2.474726px;}
.ws60{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsc2{word-spacing:2.570351px;}
.ws53{word-spacing:2.630126px;}
.ws49{word-spacing:2.689902px;}
.wsf7{word-spacing:2.689920px;}
.ws4c{word-spacing:2.749678px;}
.wse1{word-spacing:2.797517px;}
.wsbb{word-spacing:2.809453px;}
.wsd7{word-spacing:2.851315px;}
.ws10{word-spacing:2.869236px;}
.wsf2{word-spacing:2.905114px;}
.wse9{word-spacing:2.958912px;}
.ws48{word-spacing:2.988780px;}
.wse0{word-spacing:3.012710px;}
.ws21{word-spacing:3.086933px;}
.ws52{word-spacing:3.108331px;}
.wsdb{word-spacing:3.120307px;}
.wsb2{word-spacing:3.168107px;}
.wsd8{word-spacing:3.174106px;}
.wsd6{word-spacing:3.218400px;}
.wsd0{word-spacing:3.220176px;}
.wse6{word-spacing:3.222845px;}
.wsdc{word-spacing:3.224400px;}
.wsc9{word-spacing:3.224822px;}
.ws26{word-spacing:3.227882px;}
.ws15{word-spacing:3.227904px;}
.ws83{word-spacing:3.251801px;}
.wsf3{word-spacing:3.281702px;}
.wsb3{word-spacing:3.287658px;}
.ws35{word-spacing:3.347434px;}
.ws9e{word-spacing:3.389299px;}
.ws5c{word-spacing:3.407209px;}
.wse7{word-spacing:3.443098px;}
.ws106{word-spacing:3.496896px;}
.ws4f{word-spacing:3.526760px;}
.wsd1{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws6a{word-spacing:3.646312px;}
.ws1a{word-spacing:3.658291px;}
.ws47{word-spacing:3.706087px;}
.wse4{word-spacing:3.712090px;}
.wsad{word-spacing:3.825638px;}
.ws51{word-spacing:3.885414px;}
.ws7c{word-spacing:3.945190px;}
.ws68{word-spacing:4.004965px;}
.ws4a{word-spacing:4.124516px;}
.ws57{word-spacing:4.184292px;}
.wsfb{word-spacing:4.196275px;}
.wsc6{word-spacing:4.303872px;}
.wsda{word-spacing:4.357670px;}
.wse3{word-spacing:4.411469px;}
.ws66{word-spacing:4.483170px;}
.ws77{word-spacing:4.542946px;}
.ws50{word-spacing:4.602721px;}
.ws5a{word-spacing:4.662497px;}
.wse8{word-spacing:4.680461px;}
.ws59{word-spacing:4.722272px;}
.wsf9{word-spacing:4.768494px;}
.ws7a{word-spacing:4.782048px;}
.wsfa{word-spacing:4.788058px;}
.wsde{word-spacing:4.895654px;}
.ws4b{word-spacing:5.021150px;}
.ws61{word-spacing:5.080926px;}
.wsc7{word-spacing:5.164646px;}
.ws55{word-spacing:5.260253px;}
.ws69{word-spacing:5.320028px;}
.wsf5{word-spacing:5.326042px;}
.ws38{word-spacing:5.379804px;}
.ws14{word-spacing:5.433638px;}
.ws9{word-spacing:5.481407px;}
.wsc0{word-spacing:5.618906px;}
.wsac{word-spacing:5.678682px;}
.ws42{word-spacing:5.738458px;}
.ws71{word-spacing:5.798233px;}
.ws11{word-spacing:5.864026px;}
.ws3d{word-spacing:5.917784px;}
.wsb0{word-spacing:6.037336px;}
.ws79{word-spacing:6.097111px;}
.wsc4{word-spacing:6.395989px;}
.ws70{word-spacing:6.455765px;}
.wsef{word-spacing:6.563405px;}
.ws7b{word-spacing:6.754643px;}
.wsc3{word-spacing:7.173072px;}
.wsb4{word-spacing:7.292623px;}
.wsbd{word-spacing:7.352399px;}
.ws63{word-spacing:7.651277px;}
.wsb7{word-spacing:7.830604px;}
.wsb6{word-spacing:7.890379px;}
.ws7{word-spacing:9.833058px;}
.ws8{word-spacing:11.841512px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.067635px;}
.ws6{word-spacing:22.339429px;}
.ws81{word-spacing:109.716000px;}
.wsa5{word-spacing:191.898893px;}
.ws7e{word-spacing:200.088883px;}
.wsa1{word-spacing:205.402291px;}
.wsa3{word-spacing:214.332826px;}
.wsa4{word-spacing:214.386624px;}
.ws80{word-spacing:218.959488px;}
.wsa0{word-spacing:243.326659px;}
.ws7f{word-spacing:245.428301px;}
.ws98{word-spacing:258.393715px;}
.ws87{word-spacing:614.054938px;}
.ws88{word-spacing:619.327181px;}
.ws89{word-spacing:648.378317px;}
.ws85{word-spacing:692.315155px;}
.ws86{word-spacing:695.505715px;}
._1e{margin-left:-22.595177px;}
._52{margin-left:-19.767911px;}
._39{margin-left:-8.009964px;}
._6{margin-left:-6.635092px;}
._f{margin-left:-5.116837px;}
._0{margin-left:-3.849538px;}
._9{margin-left:-2.630133px;}
._4{margin-left:-1.464498px;}
._1d{width:1.853044px;}
._7{width:2.998937px;}
._10{width:4.566875px;}
._4e{width:11.142200px;}
._4f{width:12.427430px;}
._1{width:13.724438px;}
._14{width:14.824386px;}
._12{width:15.885673px;}
._b{width:16.892698px;}
._e{width:18.183859px;}
._a{width:19.310228px;}
._1a{width:20.509098px;}
._d{width:21.567170px;}
._18{width:22.929965px;}
._11{width:23.994086px;}
._2{width:25.314894px;}
._c{width:26.482586px;}
._19{width:27.825538px;}
._13{width:28.871596px;}
._1c{width:30.186678px;}
._3{width:31.256572px;}
._5{width:33.355008px;}
._1b{width:35.536590px;}
._17{width:36.642443px;}
._1f{width:38.824248px;}
._51{width:40.145338px;}
._50{width:43.307425px;}
._8{width:54.404143px;}
._2c{width:144.948422px;}
._31{width:150.581722px;}
._2d{width:163.869926px;}
._30{width:167.420621px;}
._2a{width:175.059994px;}
._2b{width:176.213914px;}
._2f{width:184.528512px;}
._2e{width:188.509594px;}
._28{width:198.085709px;}
._25{width:201.959194px;}
._4c{width:205.936022px;}
._26{width:211.481510px;}
._32{width:217.237939px;}
._21{width:247.349146px;}
._23{width:251.830310px;}
._41{width:253.229069px;}
._22{width:262.320998px;}
._47{width:265.602701px;}
._29{width:267.862234px;}
._3c{width:268.938202px;}
._4a{width:276.362381px;}
._44{width:279.375091px;}
._3b{width:282.441600px;}
._40{width:307.027469px;}
._48{width:331.780828px;}
._49{width:366.205851px;}
._45{width:372.822912px;}
._3f{width:377.879962px;}
._4d{width:387.079488px;}
._43{width:409.513421px;}
._4b{width:423.769997px;}
._3d{width:426.406118px;}
._33{width:433.184717px;}
._3a{width:440.662694px;}
._46{width:508.072090px;}
._42{width:509.470848px;}
._27{width:535.294080px;}
._20{width:569.294669px;}
._24{width:572.791565px;}
._34{width:661.827917px;}
._38{width:676.030694px;}
._35{width:677.859840px;}
._37{width:679.312397px;}
._36{width:689.318899px;}
._15{width:881.284037px;}
._3e{width:2513.997000px;}
._16{width:2537.907000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fse{font-size:56.058000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3a{bottom:9.233944px;}
.y39{bottom:26.903761px;}
.y67{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y15d{bottom:100.555500px;}
.y15c{bottom:103.621500px;}
.y37{bottom:104.646000px;}
.y66{bottom:111.033000px;}
.y100{bottom:115.113000px;}
.y1ed{bottom:116.458500px;}
.y126{bottom:118.251000px;}
.y197{bottom:119.148000px;}
.y9e{bottom:119.596500px;}
.ycb{bottom:120.045000px;}
.y1b7{bottom:122.286000px;}
.y15b{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y65{bottom:129.862500px;}
.y1ec{bottom:133.719000px;}
.yff{bottom:133.942500px;}
.y125{bottom:137.080500px;}
.y196{bottom:137.977500px;}
.y9d{bottom:138.426000px;}
.yca{bottom:138.874500px;}
.y22{bottom:139.264499px;}
.y1b6{bottom:139.546500px;}
.y35{bottom:140.422500px;}
.y15a{bottom:141.279000px;}
.y64{bottom:148.690500px;}
.y1eb{bottom:150.978000px;}
.yfe{bottom:152.772000px;}
.y124{bottom:155.910000px;}
.y195{bottom:156.807000px;}
.y9c{bottom:157.255500px;}
.y177{bottom:157.725000px;}
.y34{bottom:158.310000px;}
.y159{bottom:160.108500px;}
.y63{bottom:167.520000px;}
.y1ea{bottom:168.238500px;}
.yfd{bottom:171.601500px;}
.y1b5{bottom:174.067500px;}
.yc9{bottom:175.636500px;}
.y9b{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.y176{bottom:176.958000px;}
.y158{bottom:178.938000px;}
.y123{bottom:179.223000px;}
.y1e9{bottom:185.499000px;}
.y62{bottom:186.349500px;}
.yfc{bottom:190.431000px;}
.y1b4{bottom:191.328000px;}
.y12a{bottom:194.017500px;}
.y32{bottom:194.086500px;}
.yc8{bottom:194.466000px;}
.y9a{bottom:194.914500px;}
.y175{bottom:196.191000px;}
.y19{bottom:196.933500px;}
.y193{bottom:197.767500px;}
.y157{bottom:202.251000px;}
.y1e8{bottom:202.759500px;}
.y61{bottom:205.179000px;}
.y1b3{bottom:208.588500px;}
.yfb{bottom:209.260500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y31{bottom:211.974000px;}
.y122{bottom:212.847000px;}
.yc7{bottom:213.295500px;}
.y99{bottom:213.744000px;}
.y174{bottom:215.424000px;}
.y1e7{bottom:220.020000px;}
.y192{bottom:221.080500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y60{bottom:224.008500px;}
.y1b2{bottom:225.849000px;}
.yfa{bottom:228.090000px;}
.y30{bottom:229.863000px;}
.y121{bottom:231.676500px;}
.yc6{bottom:232.125000px;}
.y98{bottom:232.573500px;}
.y173{bottom:234.657000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y156{bottom:235.875000px;}
.y198{bottom:236.608500px;}
.y1e6{bottom:237.280500px;}
.y5f{bottom:242.838000px;}
.y1b1{bottom:243.109500px;}
.yf9{bottom:246.919500px;}
.y120{bottom:250.506000px;}
.yc5{bottom:250.954500px;}
.y97{bottom:251.403000px;}
.y172{bottom:253.888500px;}
.y1e5{bottom:254.541000px;}
.y155{bottom:254.704500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1b0{bottom:260.370000px;}
.y5e{bottom:261.667500px;}
.yf8{bottom:265.749000px;}
.y11f{bottom:269.335500px;}
.yc4{bottom:269.784000px;}
.y96{bottom:270.232500px;}
.y1e4{bottom:271.801500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y154{bottom:273.534000px;}
.y1af{bottom:277.629000px;}
.y5d{bottom:280.497000px;}
.yf7{bottom:284.578500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y11e{bottom:288.165000px;}
.yc3{bottom:288.613500px;}
.y95{bottom:289.062000px;}
.y153{bottom:292.363500px;}
.y1ae{bottom:294.889500px;}
.y2f{bottom:299.890500px;}
.yf6{bottom:303.408000px;}
.y5c{bottom:303.810000px;}
.y1e3{bottom:306.321000px;}
.y11d{bottom:306.994500px;}
.yc2{bottom:307.443000px;}
.y94{bottom:307.891500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y152{bottom:311.193000px;}
.y1ad{bottom:312.150000px;}
.y2e{bottom:317.779500px;}
.yf5{bottom:322.237500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1e2{bottom:323.581500px;}
.y11c{bottom:325.824000px;}
.yc1{bottom:326.272500px;}
.y93{bottom:326.719500px;}
.y1ac{bottom:329.410500px;}
.y151{bottom:330.022500px;}
.y2d{bottom:335.667000px;}
.y1e1{bottom:340.842000px;}
.yf4{bottom:341.067000px;}
.y11b{bottom:344.653500px;}
.yc0{bottom:345.102000px;}
.y92{bottom:345.549000px;}
.y1ab{bottom:346.671000px;}
.y10{bottom:348.133500px;}
.y150{bottom:348.852000px;}
.y2c{bottom:353.554500px;}
.y1e0{bottom:358.102500px;}
.yf3{bottom:359.896500px;}
.y11a{bottom:363.483000px;}
.ybf{bottom:363.931500px;}
.y91{bottom:364.378500px;}
.y14f{bottom:367.681500px;}
.y1df{bottom:375.363000px;}
.yf2{bottom:378.726000px;}
.y5b{bottom:378.960000px;}
.y191{bottom:380.332500px;}
.y2b{bottom:380.409000px;}
.y1aa{bottom:381.192000px;}
.y119{bottom:382.312500px;}
.ybe{bottom:382.761000px;}
.y90{bottom:383.208000px;}
.y14e{bottom:386.511000px;}
.yf{bottom:386.785499px;}
.y1de{bottom:392.623500px;}
.yf1{bottom:397.555500px;}
.y2a{bottom:398.298000px;}
.y5a{bottom:398.416500px;}
.y1a9{bottom:398.452500px;}
.y190{bottom:399.565500px;}
.y118{bottom:401.142000px;}
.ybd{bottom:401.589000px;}
.y8f{bottom:402.037500px;}
.y1f0{bottom:405.325500px;}
.ye{bottom:408.044999px;}
.y14d{bottom:409.824000px;}
.y1dd{bottom:409.884000px;}
.y1a8{bottom:415.711500px;}
.y29{bottom:416.185500px;}
.yf0{bottom:416.383500px;}
.y18f{bottom:418.798500px;}
.y117{bottom:419.971500px;}
.ybc{bottom:420.418500px;}
.y8e{bottom:420.867000px;}
.y1ef{bottom:422.586000px;}
.y1dc{bottom:427.144500px;}
.y28{bottom:434.073000px;}
.yef{bottom:435.213000px;}
.y59{bottom:435.807000px;}
.y1a7{bottom:437.455500px;}
.y18e{bottom:438.031500px;}
.y116{bottom:438.801000px;}
.ybb{bottom:439.248000px;}
.y8d{bottom:439.696500px;}
.y1ee{bottom:439.846500px;}
.y129{bottom:443.283000px;}
.y1db{bottom:444.403500px;}
.y14c{bottom:445.821000px;}
.y27{bottom:451.962000px;}
.yee{bottom:454.042500px;}
.y58{bottom:455.263500px;}
.y18d{bottom:457.264500px;}
.y115{bottom:457.630500px;}
.yba{bottom:458.077500px;}
.y8c{bottom:458.526000px;}
.y14b{bottom:460.018500px;}
.y1da{bottom:461.664000px;}
.y26{bottom:469.849500px;}
.y1a6{bottom:471.079500px;}
.yed{bottom:472.872000px;}
.y14a{bottom:474.214500px;}
.y57{bottom:474.721500px;}
.y114{bottom:476.458500px;}
.y18c{bottom:476.497500px;}
.yb9{bottom:476.907000px;}
.y8b{bottom:477.355500px;}
.y1d9{bottom:478.924500px;}
.yd{bottom:484.864502px;}
.y25{bottom:487.737000px;}
.y149{bottom:488.412000px;}
.yec{bottom:491.701500px;}
.y56{bottom:494.178000px;}
.y113{bottom:495.288000px;}
.yb8{bottom:495.736500px;}
.y8a{bottom:496.185000px;}
.y1a5{bottom:497.620500px;}
.yc{bottom:502.864502px;}
.y24{bottom:505.626000px;}
.y148{bottom:507.255000px;}
.yeb{bottom:510.531000px;}
.y1d8{bottom:513.445500px;}
.y55{bottom:513.634500px;}
.y112{bottom:514.117500px;}
.yb7{bottom:514.566000px;}
.y89{bottom:515.014500px;}
.yb{bottom:520.864502px;}
.y23{bottom:523.513500px;}
.y147{bottom:523.693500px;}
.y1a4{bottom:524.160000px;}
.yea{bottom:529.360500px;}
.y1d7{bottom:530.706000px;}
.y111{bottom:532.947000px;}
.y54{bottom:533.092500px;}
.yb6{bottom:533.395500px;}
.y88{bottom:533.844000px;}
.ya{bottom:538.864499px;}
.y146{bottom:540.132000px;}
.y1d6{bottom:547.966500px;}
.ye9{bottom:548.190000px;}
.y1a3{bottom:550.701000px;}
.y110{bottom:551.776500px;}
.yb5{bottom:552.225000px;}
.y53{bottom:552.549000px;}
.y87{bottom:552.673500px;}
.y145{bottom:556.570500px;}
.y9{bottom:556.864499px;}
.y1d5{bottom:565.227000px;}
.ye8{bottom:567.019500px;}
.y1a2{bottom:568.275000px;}
.y10f{bottom:570.606000px;}
.yb4{bottom:571.054500px;}
.y86{bottom:571.503000px;}
.y52{bottom:572.007000px;}
.y144{bottom:573.009000px;}
.y1d4{bottom:582.487500px;}
.ye7{bottom:585.849000px;}
.y10e{bottom:589.435500px;}
.y143{bottom:589.447500px;}
.yb3{bottom:589.884000px;}
.y85{bottom:590.332500px;}
.y51{bottom:591.463500px;}
.y194{bottom:594.367500px;}
.y1d3{bottom:599.746500px;}
.y1a1{bottom:603.423000px;}
.ye6{bottom:604.678500px;}
.y142{bottom:605.884500px;}
.y10d{bottom:608.265000px;}
.yb2{bottom:608.713500px;}
.y84{bottom:609.162000px;}
.y50{bottom:610.920000px;}
.y1d2{bottom:617.007000px;}
.y141{bottom:622.948500px;}
.ye5{bottom:623.508000px;}
.y10c{bottom:627.094500px;}
.yb1{bottom:627.543000px;}
.y83{bottom:627.991500px;}
.y1a0{bottom:629.964000px;}
.y4f{bottom:630.378000px;}
.y1d1{bottom:634.267500px;}
.ye4{bottom:642.337500px;}
.y8{bottom:645.510000px;}
.y10b{bottom:645.924000px;}
.yb0{bottom:646.372500px;}
.y82{bottom:646.821000px;}
.y140{bottom:647.214000px;}
.y4e{bottom:649.834500px;}
.y1d0{bottom:651.528000px;}
.y19f{bottom:656.505000px;}
.ye3{bottom:661.167000px;}
.y10a{bottom:664.753500px;}
.yaf{bottom:665.202000px;}
.y81{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1cf{bottom:668.788500px;}
.y4d{bottom:669.291000px;}
.y19e{bottom:674.079000px;}
.y13f{bottom:678.832500px;}
.ye2{bottom:679.996500px;}
.y109{bottom:683.583000px;}
.yae{bottom:684.031500px;}
.y80{bottom:684.480000px;}
.y1ce{bottom:686.049000px;}
.y4c{bottom:688.749000px;}
.y19d{bottom:691.653000px;}
.ye1{bottom:698.826000px;}
.y171{bottom:699.375000px;}
.y108{bottom:702.412500px;}
.yad{bottom:702.861000px;}
.y7f{bottom:703.309500px;}
.y4b{bottom:708.205500px;}
.y19c{bottom:709.227000px;}
.y13e{bottom:713.098500px;}
.ye0{bottom:717.655500px;}
.y16f{bottom:718.204500px;}
.y1cd{bottom:720.570000px;}
.y107{bottom:721.242000px;}
.yac{bottom:721.690500px;}
.y7e{bottom:722.139000px;}
.y170{bottom:723.628500px;}
.y6{bottom:726.298500px;}
.y19b{bottom:726.801000px;}
.y13d{bottom:727.296000px;}
.y4a{bottom:727.663500px;}
.ydf{bottom:736.485000px;}
.y16e{bottom:737.034000px;}
.y1cc{bottom:737.829000px;}
.y106{bottom:740.071500px;}
.yab{bottom:740.520000px;}
.y7d{bottom:740.968500px;}
.y13c{bottom:741.493500px;}
.y19a{bottom:744.375000px;}
.y49{bottom:747.120000px;}
.y3{bottom:752.599495px;}
.y1cb{bottom:755.089500px;}
.yde{bottom:755.314500px;}
.y16d{bottom:755.863500px;}
.y105{bottom:758.901000px;}
.yaa{bottom:759.349500px;}
.y7c{bottom:759.798000px;}
.y199{bottom:761.949000px;}
.y13b{bottom:763.324500px;}
.y48{bottom:766.576500px;}
.y1ca{bottom:772.350000px;}
.ydd{bottom:774.144000px;}
.y16c{bottom:774.693000px;}
.ya9{bottom:778.179000px;}
.y7b{bottom:778.627500px;}
.y13a{bottom:779.763000px;}
.y104{bottom:782.214000px;}
.y47{bottom:786.034500px;}
.y1c9{bottom:789.610500px;}
.ydc{bottom:792.973500px;}
.y16b{bottom:793.522500px;}
.y139{bottom:796.201500px;}
.ya8{bottom:797.008500px;}
.y7a{bottom:797.457000px;}
.y103{bottom:802.387500px;}
.y46{bottom:805.491000px;}
.y1c8{bottom:806.871000px;}
.ydb{bottom:811.803000px;}
.y16a{bottom:812.352000px;}
.y138{bottom:812.640000px;}
.ya7{bottom:815.838000px;}
.y79{bottom:816.286500px;}
.y1c7{bottom:824.131500px;}
.y45{bottom:824.947500px;}
.y18b{bottom:828.829500px;}
.y137{bottom:829.078500px;}
.yda{bottom:830.632500px;}
.ya6{bottom:834.667500px;}
.y78{bottom:835.114500px;}
.y169{bottom:835.663500px;}
.y102{bottom:836.011500px;}
.y1c6{bottom:841.392000px;}
.y189{bottom:843.025500px;}
.y44{bottom:844.405500px;}
.y18a{bottom:847.366500px;}
.yd9{bottom:849.462000px;}
.y136{bottom:852.720000px;}
.ya5{bottom:853.497000px;}
.y77{bottom:853.944000px;}
.y101{bottom:854.841000px;}
.y168{bottom:855.838500px;}
.y188{bottom:857.223000px;}
.y1c5{bottom:858.652500px;}
.y187{bottom:861.562500px;}
.yd8{bottom:868.291500px;}
.y185{bottom:871.419000px;}
.ya4{bottom:872.326500px;}
.y76{bottom:872.773500px;}
.y186{bottom:875.760000px;}
.y1c4{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y43{bottom:882.990000px;}
.yd7{bottom:887.121000px;}
.y135{bottom:887.328000px;}
.ya3{bottom:891.156000px;}
.y75{bottom:891.603000px;}
.y167{bottom:892.833000px;}
.y1c3{bottom:893.172000px;}
.y184{bottom:895.156500px;}
.y42{bottom:899.130000px;}
.yd6{bottom:905.950500px;}
.y166{bottom:907.030500px;}
.ya2{bottom:909.984000px;}
.y74{bottom:910.432500px;}
.y165{bottom:911.370000px;}
.y183{bottom:911.595000px;}
.y41{bottom:919.609500px;}
.y164{bottom:921.226500px;}
.y134{bottom:923.434500px;}
.yd5{bottom:924.778500px;}
.y1c2{bottom:927.693000px;}
.y182{bottom:928.032000px;}
.ya1{bottom:928.813500px;}
.y73{bottom:929.262000px;}
.y40{bottom:931.410000px;}
.y163{bottom:935.424000px;}
.y133{bottom:942.264000px;}
.yd4{bottom:943.608000px;}
.y181{bottom:944.470500px;}
.y1c1{bottom:944.953500px;}
.ya0{bottom:947.643000px;}
.y72{bottom:948.091500px;}
.y3f{bottom:951.888000px;}
.y162{bottom:954.267000px;}
.y180{bottom:960.909000px;}
.y132{bottom:961.093500px;}
.y1c0{bottom:962.214000px;}
.yd3{bottom:962.437500px;}
.y128{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.y161{bottom:970.705500px;}
.y9f{bottom:970.956000px;}
.y17f{bottom:977.347500px;}
.y1bf{bottom:979.474500px;}
.y131{bottom:979.923000px;}
.yd2{bottom:981.267000px;}
.y70{bottom:985.750500px;}
.y160{bottom:987.144000px;}
.y127{bottom:989.785500px;}
.y17e{bottom:993.786000px;}
.y3e{bottom:996.565500px;}
.y1be{bottom:996.735000px;}
.y130{bottom:998.752500px;}
.yd1{bottom:1000.096500px;}
.y6f{bottom:1004.580000px;}
.y15f{bottom:1010.785500px;}
.y17d{bottom:1010.848500px;}
.y1bd{bottom:1013.995500px;}
.y12f{bottom:1017.582000px;}
.yd0{bottom:1018.926000px;}
.y6e{bottom:1023.409500px;}
.y17c{bottom:1027.287000px;}
.y1bc{bottom:1031.254500px;}
.y12e{bottom:1036.411500px;}
.y3d{bottom:1036.485000px;}
.ycf{bottom:1037.755500px;}
.y6d{bottom:1042.239000px;}
.y15e{bottom:1042.794000px;}
.y17b{bottom:1043.725500px;}
.y1bb{bottom:1048.515000px;}
.y12d{bottom:1055.241000px;}
.yce{bottom:1056.585000px;}
.y17a{bottom:1060.164000px;}
.y6c{bottom:1061.068500px;}
.y3c{bottom:1064.728500px;}
.y1ba{bottom:1065.775500px;}
.y12c{bottom:1074.070500px;}
.ycd{bottom:1075.414500px;}
.y6b{bottom:1079.898000px;}
.y1b9{bottom:1083.036000px;}
.y179{bottom:1084.429500px;}
.y3b{bottom:1092.972000px;}
.ycc{bottom:1094.244000px;}
.y12b{bottom:1097.382000px;}
.y6a{bottom:1098.727500px;}
.y1b8{bottom:1100.296500px;}
.y69{bottom:1117.557000px;}
.y178{bottom:1119.037500px;}
.y38{bottom:1136.460000px;}
.y68{bottom:1177.662000px;}
.h13{height:26.110157px;}
.hb{height:30.461558px;}
.hd{height:30.670772px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1f{height:33.072749px;}
.h1d{height:33.299897px;}
.h14{height:34.813397px;}
.h18{height:35.052500px;}
.hc{height:38.202476px;}
.h1a{height:38.734848px;}
.h15{height:39.165235px;}
.h22{height:39.434227px;}
.h21{height:41.723369px;}
.h16{height:43.038432px;}
.h20{height:43.468157px;}
.h17{height:43.516637px;}
.h10{height:43.815515px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h23{height:49.117939px;}
.h1e{height:49.650816px;}
.h1b{height:49.991558px;}
.he{height:50.930649px;}
.h12{height:54.405312px;}
.h19{height:54.575123px;}
.h1c{height:54.768749px;}
.h2{height:55.152000px;}
.hf{height:61.613006px;}
.h11{height:77.469696px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xe{left:62.541000px;}
.x38{left:83.977500px;}
.x37{left:85.848000px;}
.x29{left:95.754000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x28{left:122.980500px;}
.x4{left:203.484001px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xb{left:254.173500px;}
.x1d{left:258.556500px;}
.x8{left:269.914500px;}
.xf{left:271.041000px;}
.xa{left:281.442000px;}
.x10{left:315.801000px;}
.xd{left:318.391500px;}
.x12{left:324.085500px;}
.x13{left:325.404000px;}
.x11{left:335.248500px;}
.x14{left:336.675000px;}
.x15{left:339.540000px;}
.x31{left:343.743000px;}
.x32{left:357.381000px;}
.x1e{left:362.881500px;}
.x1c{left:367.968000px;}
.x1f{left:371.361000px;}
.x1a{left:386.847000px;}
.x1b{left:414.957000px;}
.x2e{left:452.998500px;}
.x3{left:454.959000px;}
.xc{left:467.092500px;}
.x20{left:485.151000px;}
.x21{left:493.630500px;}
.x16{left:498.351000px;}
.x26{left:506.005500px;}
.x17{left:513.393000px;}
.x27{left:516.183000px;}
.x33{left:580.909500px;}
.x34{left:594.547500px;}
.x22{left:617.007000px;}
.x23{left:625.488000px;}
.x18{left:636.169500px;}
.x2f{left:649.840500px;}
.x19{left:651.213000px;}
.x30{left:663.796500px;}
.x2c{left:713.082000px;}
.x2d{left:721.474500px;}
.x2a{left:722.538000px;}
.x2b{left:730.759500px;}
.x35{left:738.112500px;}
.x24{left:782.104500px;}
.x25{left:790.585500px;}
.x36{left:833.055000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.109333pt;}
.v6{vertical-align:15.429333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000192pt;}
.ls4d{letter-spacing:0.000441pt;}
.ls51{letter-spacing:0.000503pt;}
.ls4b{letter-spacing:0.000523pt;}
.ls2{letter-spacing:0.000533pt;}
.ls4c{letter-spacing:0.000711pt;}
.ls46{letter-spacing:0.000801pt;}
.ls26{letter-spacing:0.001007pt;}
.ls45{letter-spacing:0.001026pt;}
.ls4e{letter-spacing:0.001818pt;}
.ls19{letter-spacing:0.002641pt;}
.ls49{letter-spacing:0.002686pt;}
.ls29{letter-spacing:0.003012pt;}
.ls4a{letter-spacing:0.003050pt;}
.lse{letter-spacing:0.003057pt;}
.ls16{letter-spacing:0.003372pt;}
.ls42{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.003752pt;}
.ls1{letter-spacing:0.004188pt;}
.ls24{letter-spacing:0.005193pt;}
.ls35{letter-spacing:0.570745pt;}
.ls1f{letter-spacing:0.576078pt;}
.ls1d{letter-spacing:0.637762pt;}
.ls22{letter-spacing:2.656533pt;}
.ls38{letter-spacing:2.657067pt;}
.ls37{letter-spacing:5.734998pt;}
.ls21{letter-spacing:10.621997pt;}
.ls7{letter-spacing:10.626533pt;}
.ls39{letter-spacing:10.627330pt;}
.ls20{letter-spacing:10.629067pt;}
.ls32{letter-spacing:11.950933pt;}
.ls4f{letter-spacing:11.951565pt;}
.ls36{letter-spacing:11.956053pt;}
.ls34{letter-spacing:11.956267pt;}
.ls50{letter-spacing:11.956898pt;}
.ls2f{letter-spacing:12.003021pt;}
.ls47{letter-spacing:12.091482pt;}
.ls52{letter-spacing:12.123773pt;}
.ls28{letter-spacing:12.454886pt;}
.lsa{letter-spacing:12.645860pt;}
.ls9{letter-spacing:12.698994pt;}
.ls8{letter-spacing:12.752128pt;}
.ls11{letter-spacing:12.805262pt;}
.ls10{letter-spacing:12.911530pt;}
.ls6{letter-spacing:12.964663pt;}
.ls14{letter-spacing:13.070931pt;}
.ls15{letter-spacing:13.124065pt;}
.lsd{letter-spacing:13.177199pt;}
.ls2e{letter-spacing:13.230333pt;}
.ls3c{letter-spacing:13.236520pt;}
.ls1c{letter-spacing:13.253475pt;}
.lsb{letter-spacing:13.283467pt;}
.ls1e{letter-spacing:13.283733pt;}
.ls3d{letter-spacing:13.284147pt;}
.ls1a{letter-spacing:13.357646pt;}
.lsf{letter-spacing:13.442868pt;}
.ls13{letter-spacing:13.496002pt;}
.ls3f{letter-spacing:13.549136pt;}
.ls17{letter-spacing:13.602270pt;}
.ls3b{letter-spacing:14.133720pt;}
.ls3a{letter-spacing:14.138949pt;}
.ls53{letter-spacing:14.353968pt;}
.ls18{letter-spacing:14.558679pt;}
.ls25{letter-spacing:14.608533pt;}
.ls33{letter-spacing:14.613867pt;}
.ls1b{letter-spacing:16.763786pt;}
.lsc{letter-spacing:17.055971pt;}
.ls3e{letter-spacing:17.109105pt;}
.ls41{letter-spacing:17.693578pt;}
.ls40{letter-spacing:18.669139pt;}
.ls12{letter-spacing:20.615940pt;}
.ls44{letter-spacing:22.953830pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ls2a{letter-spacing:197.808533pt;}
.ls2c{letter-spacing:222.128533pt;}
.ls2d{letter-spacing:231.429867pt;}
.ls2b{letter-spacing:236.331200pt;}
.ls30{letter-spacing:280.051325pt;}
.ls31{letter-spacing:288.835635pt;}
.ls23{letter-spacing:486.513007pt;}
.ls27{letter-spacing:534.571674pt;}
.wsc{word-spacing:-20.194365pt;}
.ws28{word-spacing:-13.283467pt;}
.ws17{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws90{word-spacing:-3.028630pt;}
.ws54{word-spacing:-2.178489pt;}
.ws25{word-spacing:-2.019087pt;}
.ws72{word-spacing:-1.965953pt;}
.ws5b{word-spacing:-1.859685pt;}
.ws58{word-spacing:-1.753418pt;}
.ws8d{word-spacing:-1.700284pt;}
.ws8e{word-spacing:-1.647150pt;}
.ws6e{word-spacing:-1.594016pt;}
.wsa8{word-spacing:-1.578086pt;}
.ws78{word-spacing:-1.540882pt;}
.ws65{word-spacing:-1.487748pt;}
.ws73{word-spacing:-1.434614pt;}
.ws105{word-spacing:-1.386803pt;}
.ws74{word-spacing:-1.381481pt;}
.ws67{word-spacing:-1.275213pt;}
.ws64{word-spacing:-1.222079pt;}
.wsb1{word-spacing:-1.115811pt;}
.ws62{word-spacing:-1.062677pt;}
.ws4e{word-spacing:-1.009543pt;}
.ws3b{word-spacing:-0.956410pt;}
.ws31{word-spacing:-0.850142pt;}
.ws33{word-spacing:-0.797008pt;}
.ws34{word-spacing:-0.743874pt;}
.ws39{word-spacing:-0.690740pt;}
.ws41{word-spacing:-0.637606pt;}
.ws22{word-spacing:-0.621670pt;}
.ws3e{word-spacing:-0.584473pt;}
.wsca{word-spacing:-0.573850pt;}
.ws30{word-spacing:-0.531339pt;}
.ws24{word-spacing:-0.478205pt;}
.ws92{word-spacing:-0.425071pt;}
.ws8b{word-spacing:-0.382565pt;}
.ws29{word-spacing:-0.371937pt;}
.ws1e{word-spacing:-0.334746pt;}
.ws2b{word-spacing:-0.318803pt;}
.wsa9{word-spacing:-0.286925pt;}
.wsf0{word-spacing:-0.268907pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws82{word-spacing:-0.127522pt;}
.ws36{word-spacing:-0.106268pt;}
.wsd5{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.wse2{word-spacing:-0.013150pt;}
.wse5{word-spacing:-0.011622pt;}
.ws103{word-spacing:-0.010547pt;}
.wsd2{word-spacing:-0.009455pt;}
.wsf8{word-spacing:-0.009190pt;}
.wscc{word-spacing:-0.008269pt;}
.wsf6{word-spacing:-0.008073pt;}
.wsee{word-spacing:-0.006921pt;}
.ws100{word-spacing:-0.005282pt;}
.wsfc{word-spacing:-0.004905pt;}
.wsa2{word-spacing:-0.004463pt;}
.wsdd{word-spacing:-0.003917pt;}
.ws101{word-spacing:-0.003081pt;}
.ws97{word-spacing:-0.002509pt;}
.ws95{word-spacing:-0.002133pt;}
.ws93{word-spacing:-0.001442pt;}
.ws96{word-spacing:-0.000657pt;}
.ws94{word-spacing:-0.000435pt;}
.ws3{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.000717pt;}
.wsf{word-spacing:0.000875pt;}
.ws2e{word-spacing:0.003199pt;}
.ws7d{word-spacing:0.004533pt;}
.ws1b{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.053134pt;}
.ws8a{word-spacing:0.085014pt;}
.ws9f{word-spacing:0.095642pt;}
.ws37{word-spacing:0.106268pt;}
.ws9a{word-spacing:0.127522pt;}
.ws13{word-spacing:0.143462pt;}
.ws40{word-spacing:0.159402pt;}
.wsa6{word-spacing:0.170029pt;}
.wscf{word-spacing:0.191283pt;}
.ws44{word-spacing:0.212535pt;}
.ws20{word-spacing:0.239104pt;}
.ws3a{word-spacing:0.265669pt;}
.wsdf{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.318803pt;}
.ws6d{word-spacing:0.371937pt;}
.wsa7{word-spacing:0.382565pt;}
.wseb{word-spacing:0.382566pt;}
.ws91{word-spacing:0.403117pt;}
.ws32{word-spacing:0.425071pt;}
.wsea{word-spacing:0.430387pt;}
.ws46{word-spacing:0.478205pt;}
.wsec{word-spacing:0.526029pt;}
.ws6f{word-spacing:0.531339pt;}
.wsd4{word-spacing:0.573850pt;}
.ws27{word-spacing:0.584473pt;}
.ws8f{word-spacing:0.637606pt;}
.ws104{word-spacing:0.669491pt;}
.ws9c{word-spacing:0.680115pt;}
.ws9b{word-spacing:0.722622pt;}
.wsc1{word-spacing:0.743874pt;}
.ws99{word-spacing:0.765130pt;}
.wsff{word-spacing:0.765133pt;}
.wsab{word-spacing:0.797008pt;}
.ws5d{word-spacing:0.850142pt;}
.ws45{word-spacing:0.903276pt;}
.ws102{word-spacing:0.908595pt;}
.ws75{word-spacing:0.956410pt;}
.wscd{word-spacing:0.956416pt;}
.ws9d{word-spacing:1.004237pt;}
.wsbc{word-spacing:1.009543pt;}
.wsfd{word-spacing:1.052058pt;}
.wsc5{word-spacing:1.062677pt;}
.ws12{word-spacing:1.099878pt;}
.ws19{word-spacing:1.147699pt;}
.wscb{word-spacing:1.195520pt;}
.wsb8{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.wsce{word-spacing:1.243341pt;}
.ws5e{word-spacing:1.275213pt;}
.ws4d{word-spacing:1.328347pt;}
.wsaa{word-spacing:1.338982pt;}
.ws43{word-spacing:1.381481pt;}
.wsd3{word-spacing:1.386803pt;}
.wsbf{word-spacing:1.434614pt;}
.wsfe{word-spacing:1.434624pt;}
.wsd9{word-spacing:1.482445pt;}
.ws6b{word-spacing:1.487748pt;}
.ws56{word-spacing:1.594016pt;}
.ws1d{word-spacing:1.625907pt;}
.ws5f{word-spacing:1.647150pt;}
.ws76{word-spacing:1.700284pt;}
.wsb5{word-spacing:1.753418pt;}
.wsae{word-spacing:1.806551pt;}
.wsed{word-spacing:1.817190pt;}
.ws8c{word-spacing:1.827810pt;}
.wsaf{word-spacing:1.859685pt;}
.ws6c{word-spacing:1.912819pt;}
.wsc8{word-spacing:1.960653pt;}
.wsb9{word-spacing:1.965953pt;}
.ws1f{word-spacing:2.008474pt;}
.wsbe{word-spacing:2.072221pt;}
.wsba{word-spacing:2.125355pt;}
.wsf4{word-spacing:2.199757pt;}
.ws60{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsc2{word-spacing:2.284756pt;}
.ws53{word-spacing:2.337890pt;}
.ws49{word-spacing:2.391024pt;}
.wsf7{word-spacing:2.391040pt;}
.ws4c{word-spacing:2.444158pt;}
.wse1{word-spacing:2.486682pt;}
.wsbb{word-spacing:2.497292pt;}
.wsd7{word-spacing:2.534502pt;}
.ws10{word-spacing:2.550432pt;}
.wsf2{word-spacing:2.582323pt;}
.wse9{word-spacing:2.630144pt;}
.ws48{word-spacing:2.656693pt;}
.wse0{word-spacing:2.677965pt;}
.ws21{word-spacing:2.743940pt;}
.ws52{word-spacing:2.762961pt;}
.wsdb{word-spacing:2.773606pt;}
.wsb2{word-spacing:2.816095pt;}
.wsd8{word-spacing:2.821427pt;}
.wsd6{word-spacing:2.860800pt;}
.wsd0{word-spacing:2.862379pt;}
.wse6{word-spacing:2.864751pt;}
.wsdc{word-spacing:2.866133pt;}
.wsc9{word-spacing:2.866509pt;}
.ws26{word-spacing:2.869229pt;}
.ws15{word-spacing:2.869248pt;}
.ws83{word-spacing:2.890490pt;}
.wsf3{word-spacing:2.917069pt;}
.wsb3{word-spacing:2.922363pt;}
.ws35{word-spacing:2.975497pt;}
.ws9e{word-spacing:3.012710pt;}
.ws5c{word-spacing:3.028630pt;}
.wse7{word-spacing:3.060531pt;}
.ws106{word-spacing:3.108352pt;}
.ws4f{word-spacing:3.134898pt;}
.wsd1{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws6a{word-spacing:3.241166pt;}
.ws1a{word-spacing:3.251814pt;}
.ws47{word-spacing:3.294300pt;}
.wse4{word-spacing:3.299635pt;}
.wsad{word-spacing:3.400567pt;}
.ws51{word-spacing:3.453701pt;}
.ws7c{word-spacing:3.506835pt;}
.ws68{word-spacing:3.559969pt;}
.ws4a{word-spacing:3.666237pt;}
.ws57{word-spacing:3.719371pt;}
.wsfb{word-spacing:3.730022pt;}
.wsc6{word-spacing:3.825664pt;}
.wsda{word-spacing:3.873485pt;}
.wse3{word-spacing:3.921306pt;}
.ws66{word-spacing:3.985040pt;}
.ws77{word-spacing:4.038174pt;}
.ws50{word-spacing:4.091308pt;}
.ws5a{word-spacing:4.144442pt;}
.wse8{word-spacing:4.160410pt;}
.ws59{word-spacing:4.197575pt;}
.wsf9{word-spacing:4.238661pt;}
.ws7a{word-spacing:4.250709pt;}
.wsfa{word-spacing:4.256051pt;}
.wsde{word-spacing:4.351693pt;}
.ws4b{word-spacing:4.463245pt;}
.ws61{word-spacing:4.516379pt;}
.wsc7{word-spacing:4.590797pt;}
.ws55{word-spacing:4.675780pt;}
.ws69{word-spacing:4.728914pt;}
.wsf5{word-spacing:4.734259pt;}
.ws38{word-spacing:4.782048pt;}
.ws14{word-spacing:4.829901pt;}
.ws9{word-spacing:4.872362pt;}
.wsc0{word-spacing:4.994583pt;}
.wsac{word-spacing:5.047717pt;}
.ws42{word-spacing:5.100851pt;}
.ws71{word-spacing:5.153985pt;}
.ws11{word-spacing:5.212467pt;}
.ws3d{word-spacing:5.260253pt;}
.wsb0{word-spacing:5.366521pt;}
.ws79{word-spacing:5.419654pt;}
.wsc4{word-spacing:5.685324pt;}
.ws70{word-spacing:5.738458pt;}
.wsef{word-spacing:5.834138pt;}
.ws7b{word-spacing:6.004127pt;}
.wsc3{word-spacing:6.376064pt;}
.wsb4{word-spacing:6.482332pt;}
.wsbd{word-spacing:6.535466pt;}
.ws63{word-spacing:6.801135pt;}
.wsb7{word-spacing:6.960537pt;}
.wsb6{word-spacing:7.013670pt;}
.ws7{word-spacing:8.740496pt;}
.ws8{word-spacing:10.525789pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.282342pt;}
.ws6{word-spacing:19.857270pt;}
.ws81{word-spacing:97.525333pt;}
.wsa5{word-spacing:170.576794pt;}
.ws7e{word-spacing:177.856785pt;}
.wsa1{word-spacing:182.579814pt;}
.wsa3{word-spacing:190.518067pt;}
.wsa4{word-spacing:190.565888pt;}
.ws80{word-spacing:194.630656pt;}
.wsa0{word-spacing:216.290364pt;}
.ws7f{word-spacing:218.158490pt;}
.ws98{word-spacing:229.683302pt;}
.ws87{word-spacing:545.826611pt;}
.ws88{word-spacing:550.513050pt;}
.ws89{word-spacing:576.336282pt;}
.ws85{word-spacing:615.391249pt;}
.ws86{word-spacing:618.227302pt;}
._1e{margin-left:-20.084602pt;}
._52{margin-left:-17.571476pt;}
._39{margin-left:-7.119968pt;}
._6{margin-left:-5.897859pt;}
._f{margin-left:-4.548299pt;}
._0{margin-left:-3.421811pt;}
._9{margin-left:-2.337896pt;}
._4{margin-left:-1.301776pt;}
._1d{width:1.647150pt;}
._7{width:2.665722pt;}
._10{width:4.059445pt;}
._4e{width:9.904178pt;}
._4f{width:11.046605pt;}
._1{width:12.199501pt;}
._14{width:13.177232pt;}
._12{width:14.120598pt;}
._b{width:15.015731pt;}
._e{width:16.163430pt;}
._a{width:17.164647pt;}
._1a{width:18.230309pt;}
._d{width:19.170818pt;}
._18{width:20.382191pt;}
._11{width:21.328077pt;}
._2{width:22.502128pt;}
._c{width:23.540077pt;}
._19{width:24.733811pt;}
._13{width:25.663641pt;}
._1c{width:26.832603pt;}
._3{width:27.783619pt;}
._5{width:29.648896pt;}
._1b{width:31.588080pt;}
._17{width:32.571060pt;}
._1f{width:34.510443pt;}
._51{width:35.684745pt;}
._50{width:38.495489pt;}
._8{width:48.359238pt;}
._2c{width:128.843042pt;}
._31{width:133.850419pt;}
._2d{width:145.662157pt;}
._30{width:148.818330pt;}
._2a{width:155.608883pt;}
._2b{width:156.634590pt;}
._2f{width:164.025344pt;}
._2e{width:167.564083pt;}
._28{width:176.076186pt;}
._25{width:179.519283pt;}
._4c{width:183.054242pt;}
._26{width:187.983565pt;}
._32{width:193.100390pt;}
._21{width:219.865907pt;}
._23{width:223.849165pt;}
._41{width:225.092506pt;}
._22{width:233.174221pt;}
._47{width:236.091290pt;}
._29{width:238.099763pt;}
._3c{width:239.056179pt;}
._4a{width:245.655450pt;}
._44{width:248.333414pt;}
._3b{width:251.059200pt;}
._40{width:272.913306pt;}
._48{width:294.916291pt;}
._49{width:325.516312pt;}
._45{width:331.398144pt;}
._3f{width:335.893299pt;}
._4d{width:344.070656pt;}
._43{width:364.011930pt;}
._4b{width:376.684442pt;}
._3d{width:379.027661pt;}
._33{width:385.053082pt;}
._3a{width:391.700173pt;}
._46{width:451.619635pt;}
._42{width:452.862976pt;}
._27{width:475.816960pt;}
._20{width:506.039706pt;}
._24{width:509.148058pt;}
._34{width:588.291482pt;}
._38{width:600.916173pt;}
._35{width:602.542080pt;}
._37{width:603.833242pt;}
._36{width:612.727910pt;}
._15{width:783.363589pt;}
._3e{width:2234.664000pt;}
._16{width:2255.917333pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fse{font-size:49.829333pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:8.207950pt;}
.y39{bottom:23.914454pt;}
.y67{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y15d{bottom:89.382667pt;}
.y15c{bottom:92.108000pt;}
.y37{bottom:93.018667pt;}
.y66{bottom:98.696000pt;}
.y100{bottom:102.322667pt;}
.y1ed{bottom:103.518667pt;}
.y126{bottom:105.112000pt;}
.y197{bottom:105.909333pt;}
.y9e{bottom:106.308000pt;}
.ycb{bottom:106.706667pt;}
.y1b7{bottom:108.698667pt;}
.y15b{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y65{bottom:115.433333pt;}
.y1ec{bottom:118.861333pt;}
.yff{bottom:119.060000pt;}
.y125{bottom:121.849333pt;}
.y196{bottom:122.646667pt;}
.y9d{bottom:123.045333pt;}
.yca{bottom:123.444000pt;}
.y22{bottom:123.790666pt;}
.y1b6{bottom:124.041333pt;}
.y35{bottom:124.820000pt;}
.y15a{bottom:125.581333pt;}
.y64{bottom:132.169333pt;}
.y1eb{bottom:134.202667pt;}
.yfe{bottom:135.797333pt;}
.y124{bottom:138.586667pt;}
.y195{bottom:139.384000pt;}
.y9c{bottom:139.782667pt;}
.y177{bottom:140.200000pt;}
.y34{bottom:140.720000pt;}
.y159{bottom:142.318667pt;}
.y63{bottom:148.906667pt;}
.y1ea{bottom:149.545333pt;}
.yfd{bottom:152.534667pt;}
.y1b5{bottom:154.726667pt;}
.yc9{bottom:156.121333pt;}
.y9b{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.y176{bottom:157.296000pt;}
.y158{bottom:159.056000pt;}
.y123{bottom:159.309333pt;}
.y1e9{bottom:164.888000pt;}
.y62{bottom:165.644000pt;}
.yfc{bottom:169.272000pt;}
.y1b4{bottom:170.069333pt;}
.y12a{bottom:172.460000pt;}
.y32{bottom:172.521333pt;}
.yc8{bottom:172.858667pt;}
.y9a{bottom:173.257333pt;}
.y175{bottom:174.392000pt;}
.y19{bottom:175.052000pt;}
.y193{bottom:175.793333pt;}
.y157{bottom:179.778667pt;}
.y1e8{bottom:180.230667pt;}
.y61{bottom:182.381333pt;}
.y1b3{bottom:185.412000pt;}
.yfb{bottom:186.009333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y31{bottom:188.421333pt;}
.y122{bottom:189.197333pt;}
.yc7{bottom:189.596000pt;}
.y99{bottom:189.994667pt;}
.y174{bottom:191.488000pt;}
.y1e7{bottom:195.573333pt;}
.y192{bottom:196.516000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y60{bottom:199.118667pt;}
.y1b2{bottom:200.754667pt;}
.yfa{bottom:202.746667pt;}
.y30{bottom:204.322667pt;}
.y121{bottom:205.934667pt;}
.yc6{bottom:206.333333pt;}
.y98{bottom:206.732000pt;}
.y173{bottom:208.584000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y156{bottom:209.666667pt;}
.y198{bottom:210.318667pt;}
.y1e6{bottom:210.916000pt;}
.y5f{bottom:215.856000pt;}
.y1b1{bottom:216.097333pt;}
.yf9{bottom:219.484000pt;}
.y120{bottom:222.672000pt;}
.yc5{bottom:223.070667pt;}
.y97{bottom:223.469333pt;}
.y172{bottom:225.678667pt;}
.y1e5{bottom:226.258667pt;}
.y155{bottom:226.404000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1b0{bottom:231.440000pt;}
.y5e{bottom:232.593333pt;}
.yf8{bottom:236.221333pt;}
.y11f{bottom:239.409333pt;}
.yc4{bottom:239.808000pt;}
.y96{bottom:240.206667pt;}
.y1e4{bottom:241.601333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y154{bottom:243.141333pt;}
.y1af{bottom:246.781333pt;}
.y5d{bottom:249.330667pt;}
.yf7{bottom:252.958667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y11e{bottom:256.146667pt;}
.yc3{bottom:256.545333pt;}
.y95{bottom:256.944000pt;}
.y153{bottom:259.878667pt;}
.y1ae{bottom:262.124000pt;}
.y2f{bottom:266.569333pt;}
.yf6{bottom:269.696000pt;}
.y5c{bottom:270.053333pt;}
.y1e3{bottom:272.285333pt;}
.y11d{bottom:272.884000pt;}
.yc2{bottom:273.282667pt;}
.y94{bottom:273.681333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y152{bottom:276.616000pt;}
.y1ad{bottom:277.466667pt;}
.y2e{bottom:282.470667pt;}
.yf5{bottom:286.433333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1e2{bottom:287.628000pt;}
.y11c{bottom:289.621333pt;}
.yc1{bottom:290.020000pt;}
.y93{bottom:290.417333pt;}
.y1ac{bottom:292.809333pt;}
.y151{bottom:293.353333pt;}
.y2d{bottom:298.370667pt;}
.y1e1{bottom:302.970667pt;}
.yf4{bottom:303.170667pt;}
.y11b{bottom:306.358667pt;}
.yc0{bottom:306.757333pt;}
.y92{bottom:307.154667pt;}
.y1ab{bottom:308.152000pt;}
.y10{bottom:309.452000pt;}
.y150{bottom:310.090667pt;}
.y2c{bottom:314.270667pt;}
.y1e0{bottom:318.313333pt;}
.yf3{bottom:319.908000pt;}
.y11a{bottom:323.096000pt;}
.ybf{bottom:323.494667pt;}
.y91{bottom:323.892000pt;}
.y14f{bottom:326.828000pt;}
.y1df{bottom:333.656000pt;}
.yf2{bottom:336.645333pt;}
.y5b{bottom:336.853333pt;}
.y191{bottom:338.073333pt;}
.y2b{bottom:338.141333pt;}
.y1aa{bottom:338.837333pt;}
.y119{bottom:339.833333pt;}
.ybe{bottom:340.232000pt;}
.y90{bottom:340.629333pt;}
.y14e{bottom:343.565333pt;}
.yf{bottom:343.809333pt;}
.y1de{bottom:348.998667pt;}
.yf1{bottom:353.382667pt;}
.y2a{bottom:354.042667pt;}
.y5a{bottom:354.148000pt;}
.y1a9{bottom:354.180000pt;}
.y190{bottom:355.169333pt;}
.y118{bottom:356.570667pt;}
.ybd{bottom:356.968000pt;}
.y8f{bottom:357.366667pt;}
.y1f0{bottom:360.289333pt;}
.ye{bottom:362.706666pt;}
.y14d{bottom:364.288000pt;}
.y1dd{bottom:364.341333pt;}
.y1a8{bottom:369.521333pt;}
.y29{bottom:369.942667pt;}
.yf0{bottom:370.118667pt;}
.y18f{bottom:372.265333pt;}
.y117{bottom:373.308000pt;}
.ybc{bottom:373.705333pt;}
.y8e{bottom:374.104000pt;}
.y1ef{bottom:375.632000pt;}
.y1dc{bottom:379.684000pt;}
.y28{bottom:385.842667pt;}
.yef{bottom:386.856000pt;}
.y59{bottom:387.384000pt;}
.y1a7{bottom:388.849333pt;}
.y18e{bottom:389.361333pt;}
.y116{bottom:390.045333pt;}
.ybb{bottom:390.442667pt;}
.y8d{bottom:390.841333pt;}
.y1ee{bottom:390.974667pt;}
.y129{bottom:394.029333pt;}
.y1db{bottom:395.025333pt;}
.y14c{bottom:396.285333pt;}
.y27{bottom:401.744000pt;}
.yee{bottom:403.593333pt;}
.y58{bottom:404.678667pt;}
.y18d{bottom:406.457333pt;}
.y115{bottom:406.782667pt;}
.yba{bottom:407.180000pt;}
.y8c{bottom:407.578667pt;}
.y14b{bottom:408.905333pt;}
.y1da{bottom:410.368000pt;}
.y26{bottom:417.644000pt;}
.y1a6{bottom:418.737333pt;}
.yed{bottom:420.330667pt;}
.y14a{bottom:421.524000pt;}
.y57{bottom:421.974667pt;}
.y114{bottom:423.518667pt;}
.y18c{bottom:423.553333pt;}
.yb9{bottom:423.917333pt;}
.y8b{bottom:424.316000pt;}
.y1d9{bottom:425.710667pt;}
.yd{bottom:430.990669pt;}
.y25{bottom:433.544000pt;}
.y149{bottom:434.144000pt;}
.yec{bottom:437.068000pt;}
.y56{bottom:439.269333pt;}
.y113{bottom:440.256000pt;}
.yb8{bottom:440.654667pt;}
.y8a{bottom:441.053333pt;}
.y1a5{bottom:442.329333pt;}
.yc{bottom:446.990669pt;}
.y24{bottom:449.445333pt;}
.y148{bottom:450.893333pt;}
.yeb{bottom:453.805333pt;}
.y1d8{bottom:456.396000pt;}
.y55{bottom:456.564000pt;}
.y112{bottom:456.993333pt;}
.yb7{bottom:457.392000pt;}
.y89{bottom:457.790667pt;}
.yb{bottom:462.990669pt;}
.y23{bottom:465.345333pt;}
.y147{bottom:465.505333pt;}
.y1a4{bottom:465.920000pt;}
.yea{bottom:470.542667pt;}
.y1d7{bottom:471.738667pt;}
.y111{bottom:473.730667pt;}
.y54{bottom:473.860000pt;}
.yb6{bottom:474.129333pt;}
.y88{bottom:474.528000pt;}
.ya{bottom:478.990666pt;}
.y146{bottom:480.117333pt;}
.y1d6{bottom:487.081333pt;}
.ye9{bottom:487.280000pt;}
.y1a3{bottom:489.512000pt;}
.y110{bottom:490.468000pt;}
.yb5{bottom:490.866667pt;}
.y53{bottom:491.154667pt;}
.y87{bottom:491.265333pt;}
.y145{bottom:494.729333pt;}
.y9{bottom:494.990666pt;}
.y1d5{bottom:502.424000pt;}
.ye8{bottom:504.017333pt;}
.y1a2{bottom:505.133333pt;}
.y10f{bottom:507.205333pt;}
.yb4{bottom:507.604000pt;}
.y86{bottom:508.002667pt;}
.y52{bottom:508.450667pt;}
.y144{bottom:509.341333pt;}
.y1d4{bottom:517.766667pt;}
.ye7{bottom:520.754667pt;}
.y10e{bottom:523.942667pt;}
.y143{bottom:523.953333pt;}
.yb3{bottom:524.341333pt;}
.y85{bottom:524.740000pt;}
.y51{bottom:525.745333pt;}
.y194{bottom:528.326667pt;}
.y1d3{bottom:533.108000pt;}
.y1a1{bottom:536.376000pt;}
.ye6{bottom:537.492000pt;}
.y142{bottom:538.564000pt;}
.y10d{bottom:540.680000pt;}
.yb2{bottom:541.078667pt;}
.y84{bottom:541.477333pt;}
.y50{bottom:543.040000pt;}
.y1d2{bottom:548.450667pt;}
.y141{bottom:553.732000pt;}
.ye5{bottom:554.229333pt;}
.y10c{bottom:557.417333pt;}
.yb1{bottom:557.816000pt;}
.y83{bottom:558.214667pt;}
.y1a0{bottom:559.968000pt;}
.y4f{bottom:560.336000pt;}
.y1d1{bottom:563.793333pt;}
.ye4{bottom:570.966667pt;}
.y8{bottom:573.786667pt;}
.y10b{bottom:574.154667pt;}
.yb0{bottom:574.553333pt;}
.y82{bottom:574.952000pt;}
.y140{bottom:575.301333pt;}
.y4e{bottom:577.630667pt;}
.y1d0{bottom:579.136000pt;}
.y19f{bottom:583.560000pt;}
.ye3{bottom:587.704000pt;}
.y10a{bottom:590.892000pt;}
.yaf{bottom:591.290667pt;}
.y81{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1cf{bottom:594.478667pt;}
.y4d{bottom:594.925333pt;}
.y19e{bottom:599.181333pt;}
.y13f{bottom:603.406667pt;}
.ye2{bottom:604.441333pt;}
.y109{bottom:607.629333pt;}
.yae{bottom:608.028000pt;}
.y80{bottom:608.426667pt;}
.y1ce{bottom:609.821333pt;}
.y4c{bottom:612.221333pt;}
.y19d{bottom:614.802667pt;}
.ye1{bottom:621.178667pt;}
.y171{bottom:621.666667pt;}
.y108{bottom:624.366667pt;}
.yad{bottom:624.765333pt;}
.y7f{bottom:625.164000pt;}
.y4b{bottom:629.516000pt;}
.y19c{bottom:630.424000pt;}
.y13e{bottom:633.865333pt;}
.ye0{bottom:637.916000pt;}
.y16f{bottom:638.404000pt;}
.y1cd{bottom:640.506667pt;}
.y107{bottom:641.104000pt;}
.yac{bottom:641.502667pt;}
.y7e{bottom:641.901333pt;}
.y170{bottom:643.225333pt;}
.y6{bottom:645.598667pt;}
.y19b{bottom:646.045333pt;}
.y13d{bottom:646.485333pt;}
.y4a{bottom:646.812000pt;}
.ydf{bottom:654.653333pt;}
.y16e{bottom:655.141333pt;}
.y1cc{bottom:655.848000pt;}
.y106{bottom:657.841333pt;}
.yab{bottom:658.240000pt;}
.y7d{bottom:658.638667pt;}
.y13c{bottom:659.105333pt;}
.y19a{bottom:661.666667pt;}
.y49{bottom:664.106667pt;}
.y3{bottom:668.977329pt;}
.y1cb{bottom:671.190667pt;}
.yde{bottom:671.390667pt;}
.y16d{bottom:671.878667pt;}
.y105{bottom:674.578667pt;}
.yaa{bottom:674.977333pt;}
.y7c{bottom:675.376000pt;}
.y199{bottom:677.288000pt;}
.y13b{bottom:678.510667pt;}
.y48{bottom:681.401333pt;}
.y1ca{bottom:686.533333pt;}
.ydd{bottom:688.128000pt;}
.y16c{bottom:688.616000pt;}
.ya9{bottom:691.714667pt;}
.y7b{bottom:692.113333pt;}
.y13a{bottom:693.122667pt;}
.y104{bottom:695.301333pt;}
.y47{bottom:698.697333pt;}
.y1c9{bottom:701.876000pt;}
.ydc{bottom:704.865333pt;}
.y16b{bottom:705.353333pt;}
.y139{bottom:707.734667pt;}
.ya8{bottom:708.452000pt;}
.y7a{bottom:708.850667pt;}
.y103{bottom:713.233333pt;}
.y46{bottom:715.992000pt;}
.y1c8{bottom:717.218667pt;}
.ydb{bottom:721.602667pt;}
.y16a{bottom:722.090667pt;}
.y138{bottom:722.346667pt;}
.ya7{bottom:725.189333pt;}
.y79{bottom:725.588000pt;}
.y1c7{bottom:732.561333pt;}
.y45{bottom:733.286667pt;}
.y18b{bottom:736.737333pt;}
.y137{bottom:736.958667pt;}
.yda{bottom:738.340000pt;}
.ya6{bottom:741.926667pt;}
.y78{bottom:742.324000pt;}
.y169{bottom:742.812000pt;}
.y102{bottom:743.121333pt;}
.y1c6{bottom:747.904000pt;}
.y189{bottom:749.356000pt;}
.y44{bottom:750.582667pt;}
.y18a{bottom:753.214667pt;}
.yd9{bottom:755.077333pt;}
.y136{bottom:757.973333pt;}
.ya5{bottom:758.664000pt;}
.y77{bottom:759.061333pt;}
.y101{bottom:759.858667pt;}
.y168{bottom:760.745333pt;}
.y188{bottom:761.976000pt;}
.y1c5{bottom:763.246667pt;}
.y187{bottom:765.833333pt;}
.yd8{bottom:771.814667pt;}
.y185{bottom:774.594667pt;}
.ya4{bottom:775.401333pt;}
.y76{bottom:775.798667pt;}
.y186{bottom:778.453333pt;}
.y1c4{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y43{bottom:784.880000pt;}
.yd7{bottom:788.552000pt;}
.y135{bottom:788.736000pt;}
.ya3{bottom:792.138667pt;}
.y75{bottom:792.536000pt;}
.y167{bottom:793.629333pt;}
.y1c3{bottom:793.930667pt;}
.y184{bottom:795.694667pt;}
.y42{bottom:799.226667pt;}
.yd6{bottom:805.289333pt;}
.y166{bottom:806.249333pt;}
.ya2{bottom:808.874667pt;}
.y74{bottom:809.273333pt;}
.y165{bottom:810.106667pt;}
.y183{bottom:810.306667pt;}
.y41{bottom:817.430667pt;}
.y164{bottom:818.868000pt;}
.y134{bottom:820.830667pt;}
.yd5{bottom:822.025333pt;}
.y1c2{bottom:824.616000pt;}
.y182{bottom:824.917333pt;}
.ya1{bottom:825.612000pt;}
.y73{bottom:826.010667pt;}
.y40{bottom:827.920000pt;}
.y163{bottom:831.488000pt;}
.y133{bottom:837.568000pt;}
.yd4{bottom:838.762667pt;}
.y181{bottom:839.529333pt;}
.y1c1{bottom:839.958667pt;}
.ya0{bottom:842.349333pt;}
.y72{bottom:842.748000pt;}
.y3f{bottom:846.122667pt;}
.y162{bottom:848.237333pt;}
.y180{bottom:854.141333pt;}
.y132{bottom:854.305333pt;}
.y1c0{bottom:855.301333pt;}
.yd3{bottom:855.500000pt;}
.y128{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.y161{bottom:862.849333pt;}
.y9f{bottom:863.072000pt;}
.y17f{bottom:868.753333pt;}
.y1bf{bottom:870.644000pt;}
.y131{bottom:871.042667pt;}
.yd2{bottom:872.237333pt;}
.y70{bottom:876.222667pt;}
.y160{bottom:877.461333pt;}
.y127{bottom:879.809333pt;}
.y17e{bottom:883.365333pt;}
.y3e{bottom:885.836000pt;}
.y1be{bottom:885.986667pt;}
.y130{bottom:887.780000pt;}
.yd1{bottom:888.974667pt;}
.y6f{bottom:892.960000pt;}
.y15f{bottom:898.476000pt;}
.y17d{bottom:898.532000pt;}
.y1bd{bottom:901.329333pt;}
.y12f{bottom:904.517333pt;}
.yd0{bottom:905.712000pt;}
.y6e{bottom:909.697333pt;}
.y17c{bottom:913.144000pt;}
.y1bc{bottom:916.670667pt;}
.y12e{bottom:921.254667pt;}
.y3d{bottom:921.320000pt;}
.ycf{bottom:922.449333pt;}
.y6d{bottom:926.434667pt;}
.y15e{bottom:926.928000pt;}
.y17b{bottom:927.756000pt;}
.y1bb{bottom:932.013333pt;}
.y12d{bottom:937.992000pt;}
.yce{bottom:939.186667pt;}
.y17a{bottom:942.368000pt;}
.y6c{bottom:943.172000pt;}
.y3c{bottom:946.425333pt;}
.y1ba{bottom:947.356000pt;}
.y12c{bottom:954.729333pt;}
.ycd{bottom:955.924000pt;}
.y6b{bottom:959.909333pt;}
.y1b9{bottom:962.698667pt;}
.y179{bottom:963.937333pt;}
.y3b{bottom:971.530667pt;}
.ycc{bottom:972.661333pt;}
.y12b{bottom:975.450667pt;}
.y6a{bottom:976.646667pt;}
.y1b8{bottom:978.041333pt;}
.y69{bottom:993.384000pt;}
.y178{bottom:994.700000pt;}
.y38{bottom:1010.186667pt;}
.y68{bottom:1046.810667pt;}
.h13{height:23.209028pt;}
.hb{height:27.076941pt;}
.hd{height:27.262909pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1f{height:29.397999pt;}
.h1d{height:29.599908pt;}
.h14{height:30.945242pt;}
.h18{height:31.157778pt;}
.hc{height:33.957757pt;}
.h1a{height:34.430976pt;}
.h15{height:34.813542pt;}
.h22{height:35.052646pt;}
.h21{height:37.087439pt;}
.h16{height:38.256384pt;}
.h20{height:38.638362pt;}
.h17{height:38.681455pt;}
.h10{height:38.947124pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h23{height:43.660390pt;}
.h1e{height:44.134059pt;}
.h1b{height:44.436941pt;}
.he{height:45.271688pt;}
.h12{height:48.360277pt;}
.h19{height:48.511220pt;}
.h1c{height:48.683332pt;}
.h2{height:49.024000pt;}
.hf{height:54.767117pt;}
.h11{height:68.861952pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xe{left:55.592000pt;}
.x38{left:74.646667pt;}
.x37{left:76.309333pt;}
.x29{left:85.114667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x28{left:109.316000pt;}
.x4{left:180.874667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xb{left:225.932000pt;}
.x1d{left:229.828000pt;}
.x8{left:239.924000pt;}
.xf{left:240.925333pt;}
.xa{left:250.170667pt;}
.x10{left:280.712000pt;}
.xd{left:283.014667pt;}
.x12{left:288.076000pt;}
.x13{left:289.248000pt;}
.x11{left:297.998667pt;}
.x14{left:299.266667pt;}
.x15{left:301.813333pt;}
.x31{left:305.549333pt;}
.x32{left:317.672000pt;}
.x1e{left:322.561333pt;}
.x1c{left:327.082667pt;}
.x1f{left:330.098667pt;}
.x1a{left:343.864000pt;}
.x1b{left:368.850667pt;}
.x2e{left:402.665333pt;}
.x3{left:404.408000pt;}
.xc{left:415.193333pt;}
.x20{left:431.245333pt;}
.x21{left:438.782667pt;}
.x16{left:442.978667pt;}
.x26{left:449.782667pt;}
.x17{left:456.349333pt;}
.x27{left:458.829333pt;}
.x33{left:516.364000pt;}
.x34{left:528.486667pt;}
.x22{left:548.450667pt;}
.x23{left:555.989333pt;}
.x18{left:565.484000pt;}
.x2f{left:577.636000pt;}
.x19{left:578.856000pt;}
.x30{left:590.041333pt;}
.x2c{left:633.850667pt;}
.x2d{left:641.310667pt;}
.x2a{left:642.256000pt;}
.x2b{left:649.564000pt;}
.x35{left:656.100000pt;}
.x24{left:695.204000pt;}
.x25{left:702.742667pt;}
.x36{left:740.493333pt;}
}




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