
    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_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_16abd7a7aed3f553d85e21dd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_196c230f545edf62660fc263.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7b08bd5d31606092d4dd784f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e74f0a0179d3ea57ad0a79ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_a4c9cffde7cfdab8571ed9b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ddb9461dfadd19d5b389c7fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914000;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_d0d8b1db441a9ed2162f4a7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.391000;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_3fe5f00eee603b4cdd76c118.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873000;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_df28b77b55dc4d4d159abdb2.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8c3a780281e60bc36c600023.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1a{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);}
.m23{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);}
.m9{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);}
.m13{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);}
.m2a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m25{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);}
.m21{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);}
.m7{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);}
.m4{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);}
.m1c{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);}
.m14{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);}
.m1e{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m24{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);}
.m5{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);}
.m1d{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);}
.m3{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);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.mf{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);}
.m19{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);}
.m29{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);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m6{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);}
.m10{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);}
.m11{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);}
.ma{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);}
.me{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:-19.524000px;}
.v6{vertical-align:-10.746000px;}
.v8{vertical-align:-1.371900px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.228600px;}
.v7{vertical-align:16.595400px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:27.290400px;}
.v3{vertical-align:38.077080px;}
.v4{vertical-align:44.585940px;}
.lse{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000500px;}
.ls4e{letter-spacing:0.000503px;}
.ls16{letter-spacing:0.000701px;}
.ls1f{letter-spacing:0.000747px;}
.ls12{letter-spacing:0.000838px;}
.ls9{letter-spacing:0.000933px;}
.ls2e{letter-spacing:0.000963px;}
.ls18{letter-spacing:0.001080px;}
.ls11{letter-spacing:0.001133px;}
.ls29{letter-spacing:0.001331px;}
.ls22{letter-spacing:0.001518px;}
.ls39{letter-spacing:0.001541px;}
.ls21{letter-spacing:0.001596px;}
.ls35{letter-spacing:0.001695px;}
.ls15{letter-spacing:0.002003px;}
.ls13{letter-spacing:0.002016px;}
.ls3e{letter-spacing:0.002403px;}
.ls36{letter-spacing:0.002779px;}
.ls3d{letter-spacing:0.002804px;}
.ls6{letter-spacing:0.002870px;}
.ls4d{letter-spacing:0.002918px;}
.ls3f{letter-spacing:0.002930px;}
.lsb{letter-spacing:0.002939px;}
.ls38{letter-spacing:0.002982px;}
.ls46{letter-spacing:0.002988px;}
.ls17{letter-spacing:0.003203px;}
.ls14{letter-spacing:0.003226px;}
.ls3a{letter-spacing:0.003284px;}
.ls4a{letter-spacing:0.003331px;}
.lsa{letter-spacing:0.003394px;}
.lsc{letter-spacing:0.003494px;}
.ls1e{letter-spacing:0.003562px;}
.ls42{letter-spacing:0.003859px;}
.ls23{letter-spacing:0.003909px;}
.ls50{letter-spacing:0.004013px;}
.ls33{letter-spacing:0.004403px;}
.ls1a{letter-spacing:0.004435px;}
.ls2a{letter-spacing:0.004646px;}
.ls51{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.005415px;}
.ls44{letter-spacing:0.524565px;}
.ls4c{letter-spacing:0.530097px;}
.ls45{letter-spacing:0.530447px;}
.ls43{letter-spacing:0.535907px;}
.ls4b{letter-spacing:0.536050px;}
.ls4f{letter-spacing:0.537726px;}
.ls41{letter-spacing:0.537859px;}
.ls3c{letter-spacing:0.539637px;}
.ls49{letter-spacing:0.545573px;}
.ls48{letter-spacing:0.551696px;}
.lsf{letter-spacing:1.275394px;}
.ls8{letter-spacing:1.861130px;}
.ls2c{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls2f{letter-spacing:11.428080px;}
.ls31{letter-spacing:11.433180px;}
.ls47{letter-spacing:11.787135px;}
.lsd{letter-spacing:11.954850px;}
.ls3b{letter-spacing:13.448400px;}
.ls5{letter-spacing:13.449859px;}
.ls40{letter-spacing:13.454400px;}
.ls2d{letter-spacing:13.969410px;}
.ls25{letter-spacing:13.987490px;}
.ls24{letter-spacing:14.350313px;}
.ls1d{letter-spacing:14.704798px;}
.ls1c{letter-spacing:14.764573px;}
.ls10{letter-spacing:14.943900px;}
.ls2b{letter-spacing:14.944200px;}
.ls27{letter-spacing:14.947144px;}
.ls26{letter-spacing:14.953138px;}
.ls32{letter-spacing:14.958246px;}
.ls20{letter-spacing:15.155421px;}
.ls28{letter-spacing:15.191603px;}
.ls3{letter-spacing:17.935200px;}
.ls34{letter-spacing:19.128192px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.359510px;}
.ls19{letter-spacing:93.543361px;}
.ls30{letter-spacing:340.269392px;}
.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;}
}
.ws45{word-spacing:-19.905275px;}
.wsb0{word-spacing:-17.914867px;}
.ws9{word-spacing:-17.394700px;}
.ws4{word-spacing:-15.655334px;}
.wsb{word-spacing:-14.943900px;}
.ws3c{word-spacing:-14.869340px;}
.ws1f{word-spacing:-13.915795px;}
.ws28{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws3d{word-spacing:-11.163168px;}
.ws30{word-spacing:-5.379804px;}
.ws84{word-spacing:-5.260253px;}
.ws39{word-spacing:-5.080926px;}
.ws31{word-spacing:-5.021150px;}
.ws8a{word-spacing:-4.901599px;}
.ws49{word-spacing:-4.662497px;}
.wsd1{word-spacing:-4.303872px;}
.ws3f{word-spacing:-4.244068px;}
.ws8{word-spacing:-4.064741px;}
.ws40{word-spacing:-3.765863px;}
.wsbb{word-spacing:-3.646312px;}
.wsbc{word-spacing:-3.466985px;}
.ws5a{word-spacing:-3.443098px;}
.ws5b{word-spacing:-3.227904px;}
.ws5c{word-spacing:-3.168107px;}
.ws72{word-spacing:-3.048556px;}
.ws6c{word-spacing:-2.869229px;}
.ws91{word-spacing:-2.809453px;}
.ws36{word-spacing:-2.630126px;}
.ws9c{word-spacing:-2.570351px;}
.ws9d{word-spacing:-2.510575px;}
.ws44{word-spacing:-2.450800px;}
.ws38{word-spacing:-2.391024px;}
.wscb{word-spacing:-2.367130px;}
.wsb8{word-spacing:-2.211697px;}
.wsb3{word-spacing:-2.151922px;}
.ws73{word-spacing:-2.092146px;}
.wsc1{word-spacing:-2.044339px;}
.ws69{word-spacing:-2.032370px;}
.wse{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.wsd3{word-spacing:-1.775347px;}
.ws33{word-spacing:-1.673717px;}
.wsbf{word-spacing:-1.667750px;}
.ws37{word-spacing:-1.613941px;}
.wsa1{word-spacing:-1.554774px;}
.ws85{word-spacing:-1.494390px;}
.ws9e{word-spacing:-1.434614px;}
.ws9f{word-spacing:-1.374839px;}
.wsc8{word-spacing:-1.344960px;}
.ws6{word-spacing:-1.322630px;}
.ws29{word-spacing:-1.315063px;}
.ws22{word-spacing:-1.255288px;}
.ws25{word-spacing:-1.075961px;}
.ws6b{word-spacing:-0.956410px;}
.ws6a{word-spacing:-0.896634px;}
.ws2e{word-spacing:-0.836858px;}
.ws61{word-spacing:-0.806976px;}
.wsb2{word-spacing:-0.777083px;}
.ws63{word-spacing:-0.717307px;}
.ws97{word-spacing:-0.699379px;}
.ws8c{word-spacing:-0.645581px;}
.wsf{word-spacing:-0.597756px;}
.ws57{word-spacing:-0.572883px;}
.ws87{word-spacing:-0.537980px;}
.ws8d{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.358654px;}
.ws60{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.ws77{word-spacing:-0.295768px;}
.ws76{word-spacing:-0.287782px;}
.ws27{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.wsd7{word-spacing:-0.215194px;}
.ws12{word-spacing:-0.179327px;}
.ws78{word-spacing:-0.161395px;}
.ws7f{word-spacing:-0.150834px;}
.wsc{word-spacing:-0.119551px;}
.ws4e{word-spacing:-0.119074px;}
.ws79{word-spacing:-0.107597px;}
.ws21{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.053798px;}
.ws54{word-spacing:-0.047981px;}
.wsa0{word-spacing:-0.045729px;}
.ws3e{word-spacing:-0.044653px;}
.ws1d{word-spacing:-0.003082px;}
.ws2{word-spacing:-0.001974px;}
.ws0{word-spacing:0.000000px;}
.ws55{word-spacing:0.001466px;}
.wsb1{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.wsa3{word-spacing:0.091457px;}
.wsae{word-spacing:0.107597px;}
.ws11{word-spacing:0.119551px;}
.wsa6{word-spacing:0.143462px;}
.wscd{word-spacing:0.161395px;}
.wscc{word-spacing:0.169577px;}
.wsd{word-spacing:0.179327px;}
.wsce{word-spacing:0.215194px;}
.ws18{word-spacing:0.239102px;}
.wsc0{word-spacing:0.268992px;}
.wsa{word-spacing:0.298878px;}
.wsca{word-spacing:0.322790px;}
.ws24{word-spacing:0.358654px;}
.ws4a{word-spacing:0.418429px;}
.ws6e{word-spacing:0.537980px;}
.wsd0{word-spacing:0.591782px;}
.ws17{word-spacing:0.597756px;}
.ws90{word-spacing:0.657532px;}
.wsc2{word-spacing:0.753178px;}
.ws7d{word-spacing:0.777083px;}
.ws51{word-spacing:0.836858px;}
.ws50{word-spacing:0.839040px;}
.wsb5{word-spacing:0.896634px;}
.ws6f{word-spacing:0.956410px;}
.ws3a{word-spacing:1.075961px;}
.ws48{word-spacing:1.135736px;}
.ws86{word-spacing:1.255288px;}
.wsba{word-spacing:1.315063px;}
.wsc4{word-spacing:1.506355px;}
.ws81{word-spacing:1.613941px;}
.ws75{word-spacing:1.673717px;}
.wsbd{word-spacing:1.775347px;}
.wsad{word-spacing:1.793268px;}
.wsbe{word-spacing:1.882944px;}
.ws1c{word-spacing:1.912819px;}
.ws83{word-spacing:1.972595px;}
.ws58{word-spacing:2.092146px;}
.ws82{word-spacing:2.120552px;}
.ws7b{word-spacing:2.151922px;}
.ws89{word-spacing:2.151936px;}
.ws5f{word-spacing:2.211697px;}
.ws1a{word-spacing:2.271473px;}
.ws71{word-spacing:2.331248px;}
.ws2b{word-spacing:2.391024px;}
.ws56{word-spacing:2.417191px;}
.wsa7{word-spacing:2.450800px;}
.ws88{word-spacing:2.474726px;}
.wsb6{word-spacing:2.510575px;}
.ws7e{word-spacing:2.570351px;}
.ws99{word-spacing:2.630126px;}
.ws9a{word-spacing:2.749678px;}
.ws8f{word-spacing:2.809453px;}
.ws5d{word-spacing:2.869229px;}
.ws92{word-spacing:2.988780px;}
.wsb9{word-spacing:3.108331px;}
.ws43{word-spacing:3.227882px;}
.wsb7{word-spacing:3.287658px;}
.ws80{word-spacing:3.347434px;}
.ws68{word-spacing:3.407209px;}
.ws53{word-spacing:3.466985px;}
.ws2f{word-spacing:3.526760px;}
.ws64{word-spacing:3.586536px;}
.ws59{word-spacing:3.646312px;}
.ws15{word-spacing:3.765863px;}
.ws5e{word-spacing:3.825638px;}
.ws35{word-spacing:4.004965px;}
.ws8b{word-spacing:4.064741px;}
.wsd2{word-spacing:4.088678px;}
.ws70{word-spacing:4.124516px;}
.wsac{word-spacing:4.184292px;}
.ws74{word-spacing:4.244068px;}
.ws42{word-spacing:4.303843px;}
.ws41{word-spacing:4.363619px;}
.ws65{word-spacing:4.722272px;}
.ws66{word-spacing:4.722608px;}
.wsab{word-spacing:4.841824px;}
.ws7c{word-spacing:5.021150px;}
.ws46{word-spacing:5.080926px;}
.ws47{word-spacing:5.200477px;}
.wsd5{word-spacing:5.326042px;}
.ws5{word-spacing:5.379840px;}
.ws95{word-spacing:5.439580px;}
.wsc5{word-spacing:5.487437px;}
.ws23{word-spacing:5.499355px;}
.ws4c{word-spacing:5.559131px;}
.ws62{word-spacing:5.678682px;}
.ws2a{word-spacing:5.858009px;}
.wsb4{word-spacing:5.917784px;}
.ws13{word-spacing:5.971475px;}
.ws14{word-spacing:5.977560px;}
.ws16{word-spacing:6.097111px;}
.wsd6{word-spacing:6.186816px;}
.wsa9{word-spacing:6.276438px;}
.wsa8{word-spacing:6.336214px;}
.wscf{word-spacing:6.563405px;}
.ws94{word-spacing:6.575316px;}
.ws8e{word-spacing:7.053521px;}
.ws52{word-spacing:7.471950px;}
.wsd4{word-spacing:7.585574px;}
.ws19{word-spacing:7.651277px;}
.ws4b{word-spacing:8.069706px;}
.ws93{word-spacing:8.189257px;}
.ws67{word-spacing:8.308808px;}
.wsc9{word-spacing:8.392550px;}
.wsc3{word-spacing:8.607744px;}
.ws7a{word-spacing:8.846789px;}
.ws4d{word-spacing:9.384769px;}
.ws32{word-spacing:9.803198px;}
.ws98{word-spacing:9.982525px;}
.ws4f{word-spacing:10.221628px;}
.ws2d{word-spacing:12.194222px;}
.wsaa{word-spacing:13.987490px;}
.ws9b{word-spacing:14.704798px;}
.ws6d{word-spacing:15.183002px;}
.wsc7{word-spacing:24.155482px;}
.wsc6{word-spacing:24.209280px;}
.ws1{word-spacing:40.042186px;}
.ws3b{word-spacing:203.571532px;}
.ws96{word-spacing:281.258035px;}
.wsa4{word-spacing:295.864301px;}
.wsa2{word-spacing:307.296461px;}
.wsa5{word-spacing:313.319128px;}
.ws20{word-spacing:751.309447px;}
.wsaf{word-spacing:988.222810px;}
._2{margin-left:-11.943245px;}
._3{margin-left:-6.637307px;}
._6{margin-left:-4.949453px;}
._5{margin-left:-3.927283px;}
._8{margin-left:-2.245824px;}
._0{margin-left:-1.075961px;}
._9{width:1.091170px;}
._4{width:2.996287px;}
._27{width:4.542946px;}
._12{width:10.808672px;}
._20{width:12.373625px;}
._13{width:13.401985px;}
._5f{width:14.633165px;}
._10{width:15.839456px;}
._f{width:17.645875px;}
._7{width:18.829440px;}
._a{width:20.737946px;}
._c{width:22.535401px;}
._d{width:24.567772px;}
._25{width:26.121937px;}
._22{width:28.094532px;}
._24{width:29.443722px;}
._26{width:30.970163px;}
._11{width:32.039722px;}
._b{width:33.508463px;}
._56{width:35.972989px;}
._1{width:37.658880px;}
._21{width:38.708940px;}
._57{width:40.288754px;}
._23{width:46.385866px;}
._4e{width:65.619872px;}
._4f{width:68.181402px;}
._4d{width:71.153764px;}
._4c{width:74.486595px;}
._5d{width:88.767360px;}
._5e{width:90.879994px;}
._58{width:93.548814px;}
._35{width:122.229965px;}
._3a{width:124.059110px;}
._40{width:129.707942px;}
._38{width:135.733363px;}
._34{width:151.980480px;}
._16{width:154.751078px;}
._3d{width:157.521715px;}
._5c{width:160.749619px;}
._37{width:166.398451px;}
._3f{width:170.002944px;}
._3c{width:171.885888px;}
._44{width:175.813171px;}
._36{width:177.911309px;}
._39{width:181.272095px;}
._17{width:191.673499px;}
._1e{width:194.552170px;}
._1d{width:197.588074px;}
._3e{width:199.699661px;}
._3b{width:201.313613px;}
._43{width:219.013286px;}
._1f{width:222.147043px;}
._19{width:223.888497px;}
._4a{width:228.320410px;}
._54{width:229.884720px;}
._14{width:234.471181px;}
._33{width:243.383962px;}
._1a{width:251.037322px;}
._32{width:252.744883px;}
._49{width:258.070925px;}
._45{width:274.627124px;}
._55{width:282.882492px;}
._2e{width:285.023923px;}
._2f{width:286.207488px;}
._2d{width:290.941747px;}
._1b{width:293.769929px;}
._31{width:295.891200px;}
._18{width:298.771028px;}
._47{width:303.422976px;}
._1c{width:311.720303px;}
._48{width:314.613043px;}
._52{width:318.728621px;}
._53{width:319.917565px;}
._2c{width:334.195661px;}
._2a{width:337.961549px;}
._46{width:347.537664px;}
._30{width:387.994061px;}
._51{width:389.882385px;}
._2b{width:404.241178px;}
._15{width:419.278048px;}
._29{width:424.307981px;}
._42{width:430.333402px;}
._41{width:442.438042px;}
._59{width:456.533222px;}
._5b{width:472.928026px;}
._50{width:489.021000px;}
._5a{width:539.813146px;}
._4b{width:811.729089px;}
._28{width:1922.198700px;}
._e{width:1946.108700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fsb{font-size:35.566380px;}
.fsc{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs9{font-size:44.652672px;}
.fs3{font-size:45.429600px;}
.fsa{font-size:45.728640px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.425340px;}
.y13{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y2f{bottom:63.780000px;}
.yde{bottom:109.755000px;}
.yb5{bottom:112.078500px;}
.y1da{bottom:112.654500px;}
.y15c{bottom:112.930500px;}
.y98{bottom:117.364500px;}
.y1fb{bottom:118.147500px;}
.y11b{bottom:119.592000px;}
.y2e{bottom:126.570000px;}
.yd1{bottom:128.275500px;}
.ydd{bottom:128.988000px;}
.y188{bottom:129.550500px;}
.yb4{bottom:132.342000px;}
.y1d9{bottom:132.919500px;}
.y15b{bottom:133.194000px;}
.y1fa{bottom:137.514000px;}
.y97{bottom:137.629500px;}
.y11a{bottom:139.857000px;}
.y13f{bottom:140.911500px;}
.y106{bottom:143.386500px;}
.y2d{bottom:146.835000px;}
.ydc{bottom:148.219500px;}
.yd0{bottom:148.540500px;}
.y187{bottom:149.814000px;}
.yb3{bottom:152.607000px;}
.y1d8{bottom:153.183000px;}
.y15a{bottom:153.459000px;}
.y1f9{bottom:156.882000px;}
.y96{bottom:157.893000px;}
.y119{bottom:160.120500px;}
.y13e{bottom:161.175000px;}
.y105{bottom:163.650000px;}
.y1b2{bottom:164.485500px;}
.y2c{bottom:167.098500px;}
.ycf{bottom:168.804000px;}
.y55{bottom:169.557000px;}
.y186{bottom:170.079000px;}
.y1d7{bottom:173.446500px;}
.y159{bottom:173.722500px;}
.y1f8{bottom:176.248500px;}
.y95{bottom:178.158000px;}
.y118{bottom:180.384000px;}
.y13d{bottom:181.438500px;}
.y104{bottom:183.913500px;}
.y1b1{bottom:184.749000px;}
.y2b{bottom:187.363500px;}
.yb2{bottom:187.815000px;}
.yce{bottom:189.069000px;}
.y54{bottom:189.820500px;}
.y185{bottom:190.342500px;}
.y1d6{bottom:193.711500px;}
.y158{bottom:193.986000px;}
.y1f7{bottom:195.616500px;}
.y94{bottom:198.421500px;}
.y117{bottom:200.649000px;}
.y13c{bottom:201.703500px;}
.y103{bottom:204.178500px;}
.y2a{bottom:207.627000px;}
.y53{bottom:210.084000px;}
.y184{bottom:210.606000px;}
.y1d5{bottom:213.975000px;}
.y157{bottom:214.251000px;}
.y1f6{bottom:214.984500px;}
.ycd{bottom:218.299500px;}
.y93{bottom:218.685000px;}
.y1b0{bottom:219.957000px;}
.y116{bottom:220.912500px;}
.y13b{bottom:221.967000px;}
.yb1{bottom:223.023000px;}
.y102{bottom:224.442000px;}
.y29{bottom:227.890500px;}
.y52{bottom:230.349000px;}
.y183{bottom:230.871000px;}
.y1d4{bottom:234.240000px;}
.y1f5{bottom:234.351000px;}
.y156{bottom:234.514500px;}
.y92{bottom:238.950000px;}
.y115{bottom:241.177500px;}
.y13a{bottom:242.232000px;}
.yb0{bottom:243.286500px;}
.y101{bottom:244.707000px;}
.y28{bottom:248.155500px;}
.y182{bottom:248.337000px;}
.ycc{bottom:249.922500px;}
.y51{bottom:250.612500px;}
.y181{bottom:251.134500px;}
.y1f4{bottom:253.719000px;}
.y1d3{bottom:254.503500px;}
.y155{bottom:254.779500px;}
.y1af{bottom:255.165000px;}
.y91{bottom:259.213500px;}
.y114{bottom:261.441000px;}
.y139{bottom:262.495500px;}
.yaf{bottom:263.551500px;}
.y100{bottom:264.970500px;}
.y27{bottom:268.419000px;}
.ycb{bottom:269.155500px;}
.y50{bottom:270.877500px;}
.y180{bottom:271.399500px;}
.y1f3{bottom:273.085500px;}
.y1d2{bottom:274.767000px;}
.y154{bottom:275.043000px;}
.y1ae{bottom:275.428500px;}
.y113{bottom:281.704500px;}
.y138{bottom:282.759000px;}
.yae{bottom:283.815000px;}
.yff{bottom:285.234000px;}
.y90{bottom:288.444000px;}
.y26{bottom:288.682500px;}
.y4f{bottom:291.141000px;}
.y17f{bottom:291.663000px;}
.y1f2{bottom:292.453500px;}
.y1d1{bottom:295.032000px;}
.y153{bottom:295.306500px;}
.y1ad{bottom:295.693500px;}
.y112{bottom:301.969500px;}
.y137{bottom:303.024000px;}
.yad{bottom:304.078500px;}
.yfe{bottom:305.499000px;}
.y25{bottom:308.947500px;}
.y4e{bottom:311.404500px;}
.y1f1{bottom:311.821500px;}
.y17e{bottom:311.926500px;}
.y1d0{bottom:315.295500px;}
.y152{bottom:315.571500px;}
.y1ac{bottom:315.957000px;}
.y111{bottom:322.233000px;}
.y136{bottom:323.287500px;}
.yac{bottom:324.343500px;}
.yfd{bottom:325.762500px;}
.y24{bottom:329.211000px;}
.y8f{bottom:330.484395px;}
.y1f0{bottom:331.188000px;}
.y4d{bottom:331.669500px;}
.y17d{bottom:332.191500px;}
.y1cf{bottom:335.560500px;}
.y151{bottom:335.835000px;}
.y8c{bottom:337.306995px;}
.y110{bottom:342.498000px;}
.y135{bottom:343.552500px;}
.y8e{bottom:344.128350px;}
.yab{bottom:344.607000px;}
.y83{bottom:345.411945px;}
.yfc{bottom:346.027500px;}
.y1ef{bottom:350.556000px;}
.y8b{bottom:350.950950px;}
.y1ab{bottom:351.165000px;}
.y4c{bottom:351.933000px;}
.y17c{bottom:352.455000px;}
.y1ce{bottom:355.824000px;}
.y150{bottom:356.100000px;}
.y8d{bottom:357.772305px;}
.y23{bottom:358.441500px;}
.y85{bottom:360.152745px;}
.y10f{bottom:362.761500px;}
.y134{bottom:363.816000px;}
.yaa{bottom:364.872000px;}
.yfb{bottom:366.291000px;}
.y17b{bottom:369.922500px;}
.y4b{bottom:372.198000px;}
.y17a{bottom:372.720000px;}
.y84{bottom:373.796700px;}
.y1cd{bottom:376.087500px;}
.y14f{bottom:376.363500px;}
.y8a{bottom:377.394750px;}
.y10e{bottom:383.025000px;}
.y1aa{bottom:383.385000px;}
.y133{bottom:384.079500px;}
.y87{bottom:384.216105px;}
.ya9{bottom:385.135500px;}
.yfa{bottom:386.554500px;}
.y1ee{bottom:389.290500px;}
.y179{bottom:390.186000px;}
.y89{bottom:391.038705px;}
.y4a{bottom:392.461500px;}
.y178{bottom:392.983500px;}
.y1cc{bottom:396.352500px;}
.y14e{bottom:396.627000px;}
.y86{bottom:397.860060px;}
.ydb{bottom:399.154500px;}
.y10d{bottom:403.290000px;}
.y1a9{bottom:403.648500px;}
.y132{bottom:404.344500px;}
.y88{bottom:404.682660px;}
.ya8{bottom:405.399000px;}
.yf9{bottom:406.819500px;}
.y1ed{bottom:408.658500px;}
.y49{bottom:412.725000px;}
.y177{bottom:413.247000px;}
.y1cb{bottom:416.616000px;}
.y14d{bottom:416.892000px;}
.yda{bottom:419.419500px;}
.y10c{bottom:423.553500px;}
.y1a8{bottom:423.913500px;}
.y82{bottom:424.303860px;}
.y131{bottom:424.608000px;}
.ya7{bottom:425.664000px;}
.yf8{bottom:427.083000px;}
.y1ec{bottom:428.025000px;}
.y48{bottom:432.990000px;}
.y176{bottom:433.512000px;}
.y22{bottom:434.857500px;}
.y1ca{bottom:436.881000px;}
.y14c{bottom:437.155500px;}
.y81{bottom:437.947815px;}
.yd9{bottom:439.683000px;}
.y7f{bottom:440.517495px;}
.y10b{bottom:443.818500px;}
.y1a7{bottom:444.177000px;}
.y130{bottom:444.873000px;}
.ya6{bottom:445.927500px;}
.yf7{bottom:447.348000px;}
.y1eb{bottom:447.393000px;}
.y47{bottom:453.253500px;}
.y175{bottom:453.775500px;}
.y1c9{bottom:457.144500px;}
.y21c{bottom:457.365000px;}
.y14b{bottom:457.420500px;}
.y80{bottom:457.866570px;}
.yd8{bottom:459.948000px;}
.y10a{bottom:464.082000px;}
.y1a6{bottom:464.440500px;}
.y12f{bottom:465.136500px;}
.ya5{bottom:466.192500px;}
.y1ea{bottom:466.761000px;}
.yf6{bottom:467.611500px;}
.y21{bottom:473.055000px;}
.y46{bottom:473.518500px;}
.y174{bottom:474.040500px;}
.y21b{bottom:476.733000px;}
.y1c8{bottom:477.408000px;}
.y7e{bottom:477.487770px;}
.y14a{bottom:477.684000px;}
.y7d{bottom:484.309125px;}
.y109{bottom:484.345500px;}
.y1a5{bottom:484.705500px;}
.y12e{bottom:485.400000px;}
.y1e9{bottom:486.127500px;}
.ya4{bottom:486.456000px;}
.yf5{bottom:487.875000px;}
.y20{bottom:493.318500px;}
.y7b{bottom:493.701405px;}
.y45{bottom:493.782000px;}
.y173{bottom:494.304000px;}
.yd7{bottom:494.947500px;}
.y21a{bottom:496.099500px;}
.y1c7{bottom:497.673000px;}
.y1a4{bottom:504.969000px;}
.y1e8{bottom:505.495500px;}
.y12d{bottom:505.665000px;}
.ya3{bottom:506.719500px;}
.yf4{bottom:508.140000px;}
.yca{bottom:510.172500px;}
.y7c{bottom:511.050480px;}
.y149{bottom:512.685000px;}
.y1f{bottom:513.583500px;}
.y44{bottom:514.045500px;}
.y172{bottom:514.567500px;}
.y1c6{bottom:517.936500px;}
.y108{bottom:519.346500px;}
.y72{bottom:520.912125px;}
.y68{bottom:521.403900px;}
.y1e7{bottom:524.862000px;}
.y219{bottom:525.445500px;}
.ya2{bottom:526.984500px;}
.yf3{bottom:528.403500px;}
.yc9{bottom:530.436000px;}
.y7a{bottom:530.967990px;}
.y148{bottom:531.916500px;}
.y1e{bottom:533.847000px;}
.y43{bottom:534.310500px;}
.y71{bottom:534.556080px;}
.y171{bottom:534.832500px;}
.y12c{bottom:534.895500px;}
.y107{bottom:538.579500px;}
.y1a3{bottom:540.177000px;}
.y218{bottom:540.645000px;}
.y1e6{bottom:544.230000px;}
.y1c5{bottom:547.167000px;}
.yf2{bottom:548.667000px;}
.yc8{bottom:550.701000px;}
.y79{bottom:550.886745px;}
.y77{bottom:552.538860px;}
.y1d{bottom:554.110500px;}
.y42{bottom:554.574000px;}
.y170{bottom:555.096000px;}
.ya1{bottom:556.215000px;}
.y1a2{bottom:561.936000px;}
.y1e5{bottom:563.598000px;}
.y76{bottom:566.182815px;}
.yf1{bottom:568.932000px;}
.y12b{bottom:569.715000px;}
.y78{bottom:570.804255px;}
.yc7{bottom:570.964500px;}
.y217{bottom:573.775500px;}
.y1c{bottom:574.375500px;}
.y41{bottom:574.839000px;}
.y16f{bottom:575.361000px;}
.y1c4{bottom:581.986500px;}
.y1a1{bottom:582.199500px;}
.y1e4{bottom:582.964500px;}
.yf0{bottom:589.195500px;}
.y12a{bottom:589.978500px;}
.y75{bottom:590.723010px;}
.ya0{bottom:591.034500px;}
.yc6{bottom:591.229500px;}
.y216{bottom:593.142000px;}
.y1b{bottom:594.639000px;}
.y40{bottom:595.102500px;}
.y16e{bottom:595.624500px;}
.y1c3{bottom:602.251500px;}
.y1a0{bottom:603.958500px;}
.yef{bottom:609.460500px;}
.y73{bottom:609.893520px;}
.y129{bottom:610.243500px;}
.y74{bottom:610.641765px;}
.y9f{bottom:611.298000px;}
.yc5{bottom:611.493000px;}
.y215{bottom:612.510000px;}
.y1a{bottom:614.904000px;}
.y3f{bottom:615.366000px;}
.y16d{bottom:615.888000px;}
.y1c2{bottom:622.515000px;}
.y19f{bottom:624.222000px;}
.yee{bottom:629.724000px;}
.y128{bottom:630.507000px;}
.y9e{bottom:631.563000px;}
.yc4{bottom:631.756500px;}
.y214{bottom:631.878000px;}
.y19{bottom:635.167500px;}
.y3e{bottom:635.631000px;}
.y1c1{bottom:642.778500px;}
.y19e{bottom:644.487000px;}
.yed{bottom:649.987500px;}
.y70{bottom:650.181720px;}
.y1e3{bottom:650.751000px;}
.y127{bottom:650.770500px;}
.y213{bottom:651.244500px;}
.y9d{bottom:651.826500px;}
.y18{bottom:655.431000px;}
.y3d{bottom:655.894500px;}
.y1c0{bottom:663.043500px;}
.y16c{bottom:663.142500px;}
.y6f{bottom:663.825675px;}
.y19d{bottom:664.750500px;}
.y6a{bottom:665.584860px;}
.yc3{bottom:666.964500px;}
.y6c{bottom:667.041510px;}
.yec{bottom:670.252500px;}
.y212{bottom:670.612500px;}
.y126{bottom:671.035500px;}
.y9c{bottom:672.090000px;}
.y1e2{bottom:674.914500px;}
.y17{bottom:675.696000px;}
.y3c{bottom:676.159500px;}
.y69{bottom:679.228815px;}
.y16b{bottom:679.938000px;}
.y6b{bottom:680.685465px;}
.y6e{bottom:683.446875px;}
.y211{bottom:689.979000px;}
.y1e1{bottom:690.112500px;}
.yeb{bottom:690.516000px;}
.y125{bottom:691.299000px;}
.y9b{bottom:692.355000px;}
.y16{bottom:695.959500px;}
.y16a{bottom:696.733500px;}
.y147{bottom:697.011000px;}
.y6d{bottom:697.090830px;}
.y19c{bottom:699.958500px;}
.yc2{bottom:702.172500px;}
.y1e0{bottom:705.310500px;}
.y210{bottom:709.347000px;}
.y1bf{bottom:710.296500px;}
.yea{bottom:710.781000px;}
.y3b{bottom:711.159000px;}
.y124{bottom:711.564000px;}
.y169{bottom:713.529000px;}
.y15{bottom:716.224500px;}
.y67{bottom:717.009585px;}
.y146{bottom:717.274500px;}
.y19b{bottom:720.223500px;}
.yc1{bottom:722.437500px;}
.y9a{bottom:727.354500px;}
.y20f{bottom:728.715000px;}
.y1df{bottom:729.475500px;}
.y168{bottom:730.324500px;}
.y3a{bottom:730.392000px;}
.ye9{bottom:731.044500px;}
.y123{bottom:731.827500px;}
.y1be{bottom:734.295000px;}
.y145{bottom:737.538000px;}
.y19a{bottom:740.487000px;}
.yd6{bottom:740.785500px;}
.yc0{bottom:742.701000px;}
.y1de{bottom:744.673500px;}
.y66{bottom:745.759500px;}
.y99{bottom:746.587500px;}
.y167{bottom:747.120000px;}
.y20e{bottom:748.081500px;}
.ye8{bottom:751.308000px;}
.y12{bottom:751.655964px;}
.y122{bottom:752.091000px;}
.y11{bottom:752.422500px;}
.y144{bottom:757.803000px;}
.y1bd{bottom:758.293500px;}
.yd5{bottom:761.049000px;}
.ybf{bottom:762.966000px;}
.y166{bottom:763.915500px;}
.y20d{bottom:767.449500px;}
.y1dd{bottom:768.838500px;}
.ye7{bottom:771.573000px;}
.y121{bottom:772.356000px;}
.y199{bottom:772.707000px;}
.y143{bottom:778.066500px;}
.y165{bottom:780.711000px;}
.yd4{bottom:781.314000px;}
.y1bc{bottom:782.290500px;}
.y65{bottom:782.871000px;}
.y1dc{bottom:784.036500px;}
.y20c{bottom:786.816000px;}
.y10{bottom:791.428500px;}
.ye6{bottom:791.836500px;}
.y120{bottom:792.619500px;}
.y198{bottom:792.970500px;}
.y164{bottom:797.506500px;}
.ybe{bottom:798.174000px;}
.y142{bottom:798.331500px;}
.y1db{bottom:799.234500px;}
.yd3{bottom:801.577500px;}
.y64{bottom:803.134500px;}
.y20b{bottom:806.184000px;}
.y1bb{bottom:806.289000px;}
.yf{bottom:809.586000px;}
.ye5{bottom:812.101500px;}
.y11f{bottom:812.884500px;}
.y197{bottom:813.234000px;}
.y163{bottom:814.302000px;}
.y63{bottom:823.398000px;}
.y20a{bottom:825.552000px;}
.ye{bottom:827.742000px;}
.y1ba{bottom:830.286000px;}
.y162{bottom:831.097500px;}
.ye4{bottom:832.365000px;}
.y11e{bottom:833.148000px;}
.y141{bottom:833.331000px;}
.ybd{bottom:833.382000px;}
.y196{bottom:833.499000px;}
.yd2{bottom:836.578500px;}
.y62{bottom:843.663000px;}
.y209{bottom:844.918500px;}
.y161{bottom:847.893000px;}
.yd{bottom:850.782000px;}
.y140{bottom:852.564000px;}
.ye3{bottom:852.628500px;}
.y11d{bottom:853.411500px;}
.ybc{bottom:853.645500px;}
.y1b9{bottom:854.284500px;}
.y61{bottom:863.926500px;}
.yc{bottom:864.057000px;}
.y208{bottom:864.286500px;}
.y160{bottom:864.688500px;}
.ye2{bottom:872.893500px;}
.y195{bottom:876.627000px;}
.y15f{bottom:881.484000px;}
.yb{bottom:882.213000px;}
.y207{bottom:883.653000px;}
.y60{bottom:884.191500px;}
.y1b8{bottom:885.904500px;}
.y11c{bottom:888.412500px;}
.ybb{bottom:888.853500px;}
.y193{bottom:890.823000px;}
.ye1{bottom:893.157000px;}
.y194{bottom:895.164000px;}
.ya{bottom:900.370500px;}
.y206{bottom:903.021000px;}
.y5f{bottom:904.455000px;}
.y1b7{bottom:905.137500px;}
.y15e{bottom:905.482500px;}
.y192{bottom:911.563200px;}
.ye0{bottom:913.422000px;}
.y205{bottom:922.389000px;}
.y9{bottom:923.409000px;}
.yba{bottom:924.061500px;}
.y5e{bottom:924.718500px;}
.y191{bottom:926.183625px;}
.ydf{bottom:933.685500px;}
.y15d{bottom:937.102500px;}
.y204{bottom:941.755500px;}
.yb9{bottom:944.326500px;}
.y5d{bottom:944.983500px;}
.y8{bottom:945.651000px;}
.y190{bottom:946.581075px;}
.y1b6{bottom:950.304000px;}
.y39{bottom:953.949000px;}
.y18f{bottom:960.553800px;}
.y203{bottom:961.123500px;}
.yb8{bottom:964.590000px;}
.y5c{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.y1b5{bottom:970.567500px;}
.y38{bottom:974.214000px;}
.y18e{bottom:974.526525px;}
.y202{bottom:980.490000px;}
.yb7{bottom:984.853500px;}
.y5b{bottom:985.512000px;}
.y18d{bottom:988.802700px;}
.y1b4{bottom:992.326500px;}
.y37{bottom:994.477500px;}
.y201{bottom:999.858000px;}
.y5a{bottom:1005.775500px;}
.y18c{bottom:1009.201425px;}
.y6{bottom:1010.451000px;}
.y1b3{bottom:1014.084000px;}
.y36{bottom:1014.742500px;}
.y200{bottom:1019.226000px;}
.yb6{bottom:1020.061500px;}
.y59{bottom:1026.039000px;}
.y18b{bottom:1029.598875px;}
.y35{bottom:1035.006000px;}
.y1ff{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y58{bottom:1046.304000px;}
.y34{bottom:1055.269500px;}
.y1fe{bottom:1057.960500px;}
.y18a{bottom:1058.686500px;}
.y57{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y1fd{bottom:1077.327000px;}
.y56{bottom:1086.832500px;}
.y32{bottom:1095.798000px;}
.y1fc{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y189{bottom:1113.265500px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h21{height:26.110157px;}
.h22{height:27.855430px;}
.h8{height:30.461558px;}
.h14{height:32.507145px;}
.h12{height:32.551798px;}
.h1b{height:33.061807px;}
.h1a{height:33.072749px;}
.hc{height:33.112997px;}
.h1d{height:33.290450px;}
.hb{height:34.199443px;}
.h20{height:34.813397px;}
.hf{height:35.052500px;}
.h26{height:38.143066px;}
.h25{height:38.465856px;}
.h10{height:38.896243px;}
.h9{height:39.165235px;}
.h23{height:39.219034px;}
.h19{height:39.434227px;}
.h13{height:40.767890px;}
.h1f{height:41.120925px;}
.h1c{height:42.309893px;}
.h18{height:42.380900px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h17{height:43.576412px;}
.h4{height:43.815515px;}
.h24{height:49.117939px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h11{height:54.575123px;}
.h16{height:59.797545px;}
.h1e{height:61.238450px;}
.h3{height:69.505289px;}
.h5{height:77.792486px;}
.h15{height:115.170165px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.111683px;}
.x10{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.109000px;}
.x3{left:123.307500px;}
.x68{left:125.034975px;}
.x15{left:126.429000px;}
.x17{left:133.805865px;}
.x6b{left:139.485825px;}
.x69{left:142.114875px;}
.x4e{left:144.885000px;}
.x4{left:146.170500px;}
.x6d{left:149.397000px;}
.x4f{left:155.769000px;}
.x18{left:158.754420px;}
.x71{left:175.180500px;}
.x55{left:178.741500px;}
.x8{left:188.416500px;}
.x19{left:190.562925px;}
.x11{left:191.772000px;}
.x54{left:194.146500px;}
.x22{left:196.027230px;}
.x6e{left:198.027000px;}
.x12{left:199.245000px;}
.x7c{left:201.285000px;}
.x40{left:203.317500px;}
.xb{left:204.448500px;}
.x3a{left:207.841500px;}
.x1a{left:209.489415px;}
.x4d{left:210.967500px;}
.x42{left:213.895500px;}
.x48{left:215.685000px;}
.x51{left:217.812000px;}
.x41{left:219.666000px;}
.x3b{left:222.786000px;}
.x2c{left:224.855205px;}
.x3c{left:226.492500px;}
.x59{left:228.328500px;}
.x50{left:238.570500px;}
.x3d{left:241.435500px;}
.x53{left:243.304500px;}
.x16{left:244.345500px;}
.x5e{left:248.251500px;}
.x58{left:250.197000px;}
.x62{left:252.255000px;}
.x7f{left:253.657500px;}
.x5f{left:254.677500px;}
.x70{left:257.784000px;}
.x7e{left:267.238500px;}
.x36{left:273.175500px;}
.x66{left:274.806000px;}
.x37{left:280.647000px;}
.x6a{left:285.452925px;}
.x63{left:298.569000px;}
.x9{left:300.295500px;}
.xa{left:307.768500px;}
.x64{left:309.781500px;}
.x23{left:324.917100px;}
.x72{left:328.138500px;}
.x33{left:329.712840px;}
.x73{left:331.999500px;}
.x2d{left:333.630855px;}
.x1b{left:334.651755px;}
.x26{left:338.385510px;}
.x2b{left:341.751990px;}
.x1c{left:353.545875px;}
.x27{left:355.270200px;}
.x29{left:359.473320px;}
.x7d{left:367.788000px;}
.x49{left:369.598500px;}
.x45{left:374.584500px;}
.x4a{left:377.817000px;}
.x67{left:387.375150px;}
.x13{left:391.162500px;}
.x14{left:398.635500px;}
.x74{left:413.215500px;}
.x79{left:416.034000px;}
.x75{left:419.658000px;}
.x65{left:423.906000px;}
.x43{left:430.171500px;}
.x6f{left:433.822500px;}
.x44{left:437.644500px;}
.x38{left:439.767000px;}
.x46{left:449.034000px;}
.x39{left:454.711500px;}
.x76{left:458.637000px;}
.x6c{left:462.769500px;}
.x47{left:463.977000px;}
.x1e{left:465.675555px;}
.x2f{left:468.577650px;}
.x2e{left:470.882145px;}
.x28{left:481.387455px;}
.x25{left:483.307245px;}
.x56{left:487.822500px;}
.x61{left:495.454500px;}
.x1d{left:499.984020px;}
.x30{left:516.048255px;}
.x77{left:544.384500px;}
.x3e{left:547.074000px;}
.x3f{left:562.018500px;}
.x7a{left:569.724000px;}
.x78{left:571.014000px;}
.x7b{left:577.066500px;}
.x60{left:600.496500px;}
.x4b{left:605.334000px;}
.x4c{left:611.305500px;}
.xc{left:617.790000px;}
.x24{left:619.119315px;}
.x31{left:622.585395px;}
.xd{left:624.514500px;}
.x34{left:627.742185px;}
.x1f{left:633.491595px;}
.x32{left:639.458880px;}
.x21{left:641.468310px;}
.x35{left:642.556440px;}
.x52{left:653.649000px;}
.x57{left:656.380500px;}
.x20{left:658.920720px;}
.x2a{left:663.157455px;}
.x5a{left:668.473500px;}
.x5b{left:674.899500px;}
.xe{left:695.830500px;}
.x6{left:701.339982px;}
.xf{left:703.302000px;}
.x5c{left:757.174500px;}
.x5d{left:772.117500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v6{vertical-align:-9.552000pt;}
.v8{vertical-align:-1.219467pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.536533pt;}
.v7{vertical-align:14.751467pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:24.258133pt;}
.v3{vertical-align:33.846293pt;}
.v4{vertical-align:39.631947pt;}
.lse{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000444pt;}
.ls4e{letter-spacing:0.000447pt;}
.ls16{letter-spacing:0.000623pt;}
.ls1f{letter-spacing:0.000664pt;}
.ls12{letter-spacing:0.000745pt;}
.ls9{letter-spacing:0.000830pt;}
.ls2e{letter-spacing:0.000856pt;}
.ls18{letter-spacing:0.000960pt;}
.ls11{letter-spacing:0.001007pt;}
.ls29{letter-spacing:0.001183pt;}
.ls22{letter-spacing:0.001349pt;}
.ls39{letter-spacing:0.001370pt;}
.ls21{letter-spacing:0.001418pt;}
.ls35{letter-spacing:0.001506pt;}
.ls15{letter-spacing:0.001781pt;}
.ls13{letter-spacing:0.001792pt;}
.ls3e{letter-spacing:0.002136pt;}
.ls36{letter-spacing:0.002471pt;}
.ls3d{letter-spacing:0.002492pt;}
.ls6{letter-spacing:0.002551pt;}
.ls4d{letter-spacing:0.002594pt;}
.ls3f{letter-spacing:0.002604pt;}
.lsb{letter-spacing:0.002613pt;}
.ls38{letter-spacing:0.002651pt;}
.ls46{letter-spacing:0.002656pt;}
.ls17{letter-spacing:0.002847pt;}
.ls14{letter-spacing:0.002868pt;}
.ls3a{letter-spacing:0.002919pt;}
.ls4a{letter-spacing:0.002961pt;}
.lsa{letter-spacing:0.003017pt;}
.lsc{letter-spacing:0.003106pt;}
.ls1e{letter-spacing:0.003166pt;}
.ls42{letter-spacing:0.003430pt;}
.ls23{letter-spacing:0.003475pt;}
.ls50{letter-spacing:0.003567pt;}
.ls33{letter-spacing:0.003914pt;}
.ls1a{letter-spacing:0.003942pt;}
.ls2a{letter-spacing:0.004130pt;}
.ls51{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.004813pt;}
.ls44{letter-spacing:0.466280pt;}
.ls4c{letter-spacing:0.471198pt;}
.ls45{letter-spacing:0.471509pt;}
.ls43{letter-spacing:0.476362pt;}
.ls4b{letter-spacing:0.476489pt;}
.ls4f{letter-spacing:0.477979pt;}
.ls41{letter-spacing:0.478097pt;}
.ls3c{letter-spacing:0.479677pt;}
.ls49{letter-spacing:0.484954pt;}
.ls48{letter-spacing:0.490396pt;}
.lsf{letter-spacing:1.133683pt;}
.ls8{letter-spacing:1.654338pt;}
.ls2c{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2f{letter-spacing:10.158293pt;}
.ls31{letter-spacing:10.162827pt;}
.ls47{letter-spacing:10.477453pt;}
.lsd{letter-spacing:10.626533pt;}
.ls3b{letter-spacing:11.954133pt;}
.ls5{letter-spacing:11.955430pt;}
.ls40{letter-spacing:11.959467pt;}
.ls2d{letter-spacing:12.417253pt;}
.ls25{letter-spacing:12.433325pt;}
.ls24{letter-spacing:12.755834pt;}
.ls1d{letter-spacing:13.070931pt;}
.ls1c{letter-spacing:13.124065pt;}
.ls10{letter-spacing:13.283467pt;}
.ls2b{letter-spacing:13.283733pt;}
.ls27{letter-spacing:13.286351pt;}
.ls26{letter-spacing:13.291679pt;}
.ls32{letter-spacing:13.296219pt;}
.ls20{letter-spacing:13.471485pt;}
.ls28{letter-spacing:13.503647pt;}
.ls3{letter-spacing:15.942400pt;}
.ls34{letter-spacing:17.002837pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.319565pt;}
.ls19{letter-spacing:83.149654pt;}
.ls30{letter-spacing:302.461682pt;}
.ws45{word-spacing:-17.693578pt;}
.wsb0{word-spacing:-15.924326pt;}
.ws9{word-spacing:-15.461955pt;}
.ws4{word-spacing:-13.915853pt;}
.wsb{word-spacing:-13.283467pt;}
.ws3c{word-spacing:-13.217191pt;}
.ws1f{word-spacing:-12.369595pt;}
.ws28{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws3d{word-spacing:-9.922816pt;}
.ws30{word-spacing:-4.782048pt;}
.ws84{word-spacing:-4.675780pt;}
.ws39{word-spacing:-4.516379pt;}
.ws31{word-spacing:-4.463245pt;}
.ws8a{word-spacing:-4.356977pt;}
.ws49{word-spacing:-4.144442pt;}
.wsd1{word-spacing:-3.825664pt;}
.ws3f{word-spacing:-3.772505pt;}
.ws8{word-spacing:-3.613103pt;}
.ws40{word-spacing:-3.347434pt;}
.wsbb{word-spacing:-3.241166pt;}
.wsbc{word-spacing:-3.081764pt;}
.ws5a{word-spacing:-3.060531pt;}
.ws5b{word-spacing:-2.869248pt;}
.ws5c{word-spacing:-2.816095pt;}
.ws72{word-spacing:-2.709827pt;}
.ws6c{word-spacing:-2.550426pt;}
.ws91{word-spacing:-2.497292pt;}
.ws36{word-spacing:-2.337890pt;}
.ws9c{word-spacing:-2.284756pt;}
.ws9d{word-spacing:-2.231622pt;}
.ws44{word-spacing:-2.178489pt;}
.ws38{word-spacing:-2.125355pt;}
.wscb{word-spacing:-2.104115pt;}
.wsb8{word-spacing:-1.965953pt;}
.wsb3{word-spacing:-1.912819pt;}
.ws73{word-spacing:-1.859685pt;}
.wsc1{word-spacing:-1.817190pt;}
.ws69{word-spacing:-1.806551pt;}
.wse{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.wsd3{word-spacing:-1.578086pt;}
.ws33{word-spacing:-1.487748pt;}
.wsbf{word-spacing:-1.482445pt;}
.ws37{word-spacing:-1.434614pt;}
.wsa1{word-spacing:-1.382021pt;}
.ws85{word-spacing:-1.328347pt;}
.ws9e{word-spacing:-1.275213pt;}
.ws9f{word-spacing:-1.222079pt;}
.wsc8{word-spacing:-1.195520pt;}
.ws6{word-spacing:-1.175671pt;}
.ws29{word-spacing:-1.168945pt;}
.ws22{word-spacing:-1.115811pt;}
.ws25{word-spacing:-0.956410pt;}
.ws6b{word-spacing:-0.850142pt;}
.ws6a{word-spacing:-0.797008pt;}
.ws2e{word-spacing:-0.743874pt;}
.ws61{word-spacing:-0.717312pt;}
.wsb2{word-spacing:-0.690740pt;}
.ws63{word-spacing:-0.637606pt;}
.ws97{word-spacing:-0.621670pt;}
.ws8c{word-spacing:-0.573850pt;}
.wsf{word-spacing:-0.531339pt;}
.ws57{word-spacing:-0.509229pt;}
.ws87{word-spacing:-0.478205pt;}
.ws8d{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.318803pt;}
.ws60{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws77{word-spacing:-0.262905pt;}
.ws76{word-spacing:-0.255806pt;}
.ws27{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.wsd7{word-spacing:-0.191283pt;}
.ws12{word-spacing:-0.159402pt;}
.ws78{word-spacing:-0.143462pt;}
.ws7f{word-spacing:-0.134075pt;}
.wsc{word-spacing:-0.106268pt;}
.ws4e{word-spacing:-0.105844pt;}
.ws79{word-spacing:-0.095642pt;}
.ws21{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.047821pt;}
.ws54{word-spacing:-0.042649pt;}
.wsa0{word-spacing:-0.040648pt;}
.ws3e{word-spacing:-0.039691pt;}
.ws1d{word-spacing:-0.002739pt;}
.ws2{word-spacing:-0.001755pt;}
.ws0{word-spacing:0.000000pt;}
.ws55{word-spacing:0.001303pt;}
.wsb1{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.wsa3{word-spacing:0.081295pt;}
.wsae{word-spacing:0.095642pt;}
.ws11{word-spacing:0.106268pt;}
.wsa6{word-spacing:0.127522pt;}
.wscd{word-spacing:0.143462pt;}
.wscc{word-spacing:0.150735pt;}
.wsd{word-spacing:0.159402pt;}
.wsce{word-spacing:0.191283pt;}
.ws18{word-spacing:0.212535pt;}
.wsc0{word-spacing:0.239104pt;}
.wsa{word-spacing:0.265669pt;}
.wsca{word-spacing:0.286925pt;}
.ws24{word-spacing:0.318803pt;}
.ws4a{word-spacing:0.371937pt;}
.ws6e{word-spacing:0.478205pt;}
.wsd0{word-spacing:0.526029pt;}
.ws17{word-spacing:0.531339pt;}
.ws90{word-spacing:0.584473pt;}
.wsc2{word-spacing:0.669491pt;}
.ws7d{word-spacing:0.690740pt;}
.ws51{word-spacing:0.743874pt;}
.ws50{word-spacing:0.745813pt;}
.wsb5{word-spacing:0.797008pt;}
.ws6f{word-spacing:0.850142pt;}
.ws3a{word-spacing:0.956410pt;}
.ws48{word-spacing:1.009543pt;}
.ws86{word-spacing:1.115811pt;}
.wsba{word-spacing:1.168945pt;}
.wsc4{word-spacing:1.338982pt;}
.ws81{word-spacing:1.434614pt;}
.ws75{word-spacing:1.487748pt;}
.wsbd{word-spacing:1.578086pt;}
.wsad{word-spacing:1.594016pt;}
.wsbe{word-spacing:1.673728pt;}
.ws1c{word-spacing:1.700284pt;}
.ws83{word-spacing:1.753418pt;}
.ws58{word-spacing:1.859685pt;}
.ws82{word-spacing:1.884935pt;}
.ws7b{word-spacing:1.912819pt;}
.ws89{word-spacing:1.912832pt;}
.ws5f{word-spacing:1.965953pt;}
.ws1a{word-spacing:2.019087pt;}
.ws71{word-spacing:2.072221pt;}
.ws2b{word-spacing:2.125355pt;}
.ws56{word-spacing:2.148614pt;}
.wsa7{word-spacing:2.178489pt;}
.ws88{word-spacing:2.199757pt;}
.wsb6{word-spacing:2.231622pt;}
.ws7e{word-spacing:2.284756pt;}
.ws99{word-spacing:2.337890pt;}
.ws9a{word-spacing:2.444158pt;}
.ws8f{word-spacing:2.497292pt;}
.ws5d{word-spacing:2.550426pt;}
.ws92{word-spacing:2.656693pt;}
.wsb9{word-spacing:2.762961pt;}
.ws43{word-spacing:2.869229pt;}
.wsb7{word-spacing:2.922363pt;}
.ws80{word-spacing:2.975497pt;}
.ws68{word-spacing:3.028630pt;}
.ws53{word-spacing:3.081764pt;}
.ws2f{word-spacing:3.134898pt;}
.ws64{word-spacing:3.188032pt;}
.ws59{word-spacing:3.241166pt;}
.ws15{word-spacing:3.347434pt;}
.ws5e{word-spacing:3.400567pt;}
.ws35{word-spacing:3.559969pt;}
.ws8b{word-spacing:3.613103pt;}
.wsd2{word-spacing:3.634381pt;}
.ws70{word-spacing:3.666237pt;}
.wsac{word-spacing:3.719371pt;}
.ws74{word-spacing:3.772505pt;}
.ws42{word-spacing:3.825638pt;}
.ws41{word-spacing:3.878772pt;}
.ws65{word-spacing:4.197575pt;}
.ws66{word-spacing:4.197873pt;}
.wsab{word-spacing:4.303843pt;}
.ws7c{word-spacing:4.463245pt;}
.ws46{word-spacing:4.516379pt;}
.ws47{word-spacing:4.622646pt;}
.wsd5{word-spacing:4.734259pt;}
.ws5{word-spacing:4.782080pt;}
.ws95{word-spacing:4.835182pt;}
.wsc5{word-spacing:4.877722pt;}
.ws23{word-spacing:4.888316pt;}
.ws4c{word-spacing:4.941450pt;}
.ws62{word-spacing:5.047717pt;}
.ws2a{word-spacing:5.207119pt;}
.wsb4{word-spacing:5.260253pt;}
.ws13{word-spacing:5.307978pt;}
.ws14{word-spacing:5.313387pt;}
.ws16{word-spacing:5.419654pt;}
.wsd6{word-spacing:5.499392pt;}
.wsa9{word-spacing:5.579056pt;}
.wsa8{word-spacing:5.632190pt;}
.wscf{word-spacing:5.834138pt;}
.ws94{word-spacing:5.844725pt;}
.ws8e{word-spacing:6.269796pt;}
.ws52{word-spacing:6.641733pt;}
.wsd4{word-spacing:6.742733pt;}
.ws19{word-spacing:6.801135pt;}
.ws4b{word-spacing:7.173072pt;}
.ws93{word-spacing:7.279340pt;}
.ws67{word-spacing:7.385607pt;}
.wsc9{word-spacing:7.460045pt;}
.wsc3{word-spacing:7.651328pt;}
.ws7a{word-spacing:7.863812pt;}
.ws4d{word-spacing:8.342017pt;}
.ws32{word-spacing:8.713954pt;}
.ws98{word-spacing:8.873356pt;}
.ws4f{word-spacing:9.085891pt;}
.ws2d{word-spacing:10.839309pt;}
.wsaa{word-spacing:12.433325pt;}
.ws9b{word-spacing:13.070931pt;}
.ws6d{word-spacing:13.496002pt;}
.wsc7{word-spacing:21.471539pt;}
.wsc6{word-spacing:21.519360pt;}
.ws1{word-spacing:35.593054pt;}
.ws3b{word-spacing:180.952473pt;}
.ws96{word-spacing:250.007142pt;}
.wsa4{word-spacing:262.990490pt;}
.wsa2{word-spacing:273.152410pt;}
.wsa5{word-spacing:278.505892pt;}
.ws20{word-spacing:667.830619pt;}
.wsaf{word-spacing:878.420275pt;}
._2{margin-left:-10.616218pt;}
._3{margin-left:-5.899828pt;}
._6{margin-left:-4.399514pt;}
._5{margin-left:-3.490918pt;}
._8{margin-left:-1.996288pt;}
._0{margin-left:-0.956410pt;}
._9{width:0.969929pt;}
._4{width:2.663366pt;}
._27{width:4.038174pt;}
._12{width:9.607709pt;}
._20{width:10.998778pt;}
._13{width:11.912876pt;}
._5f{width:13.007258pt;}
._10{width:14.079516pt;}
._f{width:15.685222pt;}
._7{width:16.737280pt;}
._a{width:18.433730pt;}
._c{width:20.031468pt;}
._d{width:21.838019pt;}
._25{width:23.219500pt;}
._22{width:24.972917pt;}
._24{width:26.172198pt;}
._26{width:27.529034pt;}
._11{width:28.479753pt;}
._b{width:29.785301pt;}
._56{width:31.975990pt;}
._1{width:33.474560pt;}
._21{width:34.407947pt;}
._57{width:35.812226pt;}
._23{width:41.231881pt;}
._4e{width:58.328775pt;}
._4f{width:60.605691pt;}
._4d{width:63.247790pt;}
._4c{width:66.210306pt;}
._5d{width:78.904320pt;}
._5e{width:80.782217pt;}
._58{width:83.154501pt;}
._35{width:108.648858pt;}
._3a{width:110.274765pt;}
._40{width:115.295949pt;}
._38{width:120.651878pt;}
._34{width:135.093760pt;}
._16{width:137.556514pt;}
._3d{width:140.019302pt;}
._5c{width:142.888550pt;}
._37{width:147.909734pt;}
._3f{width:151.113728pt;}
._3c{width:152.787456pt;}
._44{width:156.278374pt;}
._36{width:158.143386pt;}
._39{width:161.130751pt;}
._17{width:170.376443pt;}
._1e{width:172.935262pt;}
._1d{width:175.633843pt;}
._3e{width:177.510810pt;}
._3b{width:178.945434pt;}
._43{width:194.678477pt;}
._1f{width:197.464038pt;}
._19{width:199.011998pt;}
._4a{width:202.951475pt;}
._54{width:204.341973pt;}
._14{width:208.418827pt;}
._33{width:216.341299pt;}
._1a{width:223.144286pt;}
._32{width:224.662118pt;}
._49{width:229.396378pt;}
._45{width:244.112999pt;}
._55{width:251.451104pt;}
._2e{width:253.354598pt;}
._2f{width:254.406656pt;}
._2d{width:258.614886pt;}
._1b{width:261.128826pt;}
._31{width:263.014400pt;}
._18{width:265.574247pt;}
._47{width:269.709312pt;}
._1c{width:277.084714pt;}
._48{width:279.656038pt;}
._52{width:283.314330pt;}
._53{width:284.371169pt;}
._2c{width:297.062810pt;}
._2a{width:300.410266pt;}
._46{width:308.922368pt;}
._30{width:344.883610pt;}
._51{width:346.562120pt;}
._2b{width:359.325491pt;}
._15{width:372.691599pt;}
._29{width:377.162650pt;}
._42{width:382.518579pt;}
._41{width:393.278259pt;}
._59{width:405.807309pt;}
._5b{width:420.380468pt;}
._50{width:434.685334pt;}
._5a{width:479.833907pt;}
._4b{width:721.536968pt;}
._28{width:1708.621067pt;}
._e{width:1729.874400pt;}
.fsb{font-size:31.614560pt;}
.fsc{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs9{font-size:39.691264pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:40.647680pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.044747pt;}
.y13{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y2f{bottom:56.693333pt;}
.yde{bottom:97.560000pt;}
.yb5{bottom:99.625333pt;}
.y1da{bottom:100.137333pt;}
.y15c{bottom:100.382667pt;}
.y98{bottom:104.324000pt;}
.y1fb{bottom:105.020000pt;}
.y11b{bottom:106.304000pt;}
.y2e{bottom:112.506667pt;}
.yd1{bottom:114.022667pt;}
.ydd{bottom:114.656000pt;}
.y188{bottom:115.156000pt;}
.yb4{bottom:117.637333pt;}
.y1d9{bottom:118.150667pt;}
.y15b{bottom:118.394667pt;}
.y1fa{bottom:122.234667pt;}
.y97{bottom:122.337333pt;}
.y11a{bottom:124.317333pt;}
.y13f{bottom:125.254667pt;}
.y106{bottom:127.454667pt;}
.y2d{bottom:130.520000pt;}
.ydc{bottom:131.750667pt;}
.yd0{bottom:132.036000pt;}
.y187{bottom:133.168000pt;}
.yb3{bottom:135.650667pt;}
.y1d8{bottom:136.162667pt;}
.y15a{bottom:136.408000pt;}
.y1f9{bottom:139.450667pt;}
.y96{bottom:140.349333pt;}
.y119{bottom:142.329333pt;}
.y13e{bottom:143.266667pt;}
.y105{bottom:145.466667pt;}
.y1b2{bottom:146.209333pt;}
.y2c{bottom:148.532000pt;}
.ycf{bottom:150.048000pt;}
.y55{bottom:150.717333pt;}
.y186{bottom:151.181333pt;}
.y1d7{bottom:154.174667pt;}
.y159{bottom:154.420000pt;}
.y1f8{bottom:156.665333pt;}
.y95{bottom:158.362667pt;}
.y118{bottom:160.341333pt;}
.y13d{bottom:161.278667pt;}
.y104{bottom:163.478667pt;}
.y1b1{bottom:164.221333pt;}
.y2b{bottom:166.545333pt;}
.yb2{bottom:166.946667pt;}
.yce{bottom:168.061333pt;}
.y54{bottom:168.729333pt;}
.y185{bottom:169.193333pt;}
.y1d6{bottom:172.188000pt;}
.y158{bottom:172.432000pt;}
.y1f7{bottom:173.881333pt;}
.y94{bottom:176.374667pt;}
.y117{bottom:178.354667pt;}
.y13c{bottom:179.292000pt;}
.y103{bottom:181.492000pt;}
.y2a{bottom:184.557333pt;}
.y53{bottom:186.741333pt;}
.y184{bottom:187.205333pt;}
.y1d5{bottom:190.200000pt;}
.y157{bottom:190.445333pt;}
.y1f6{bottom:191.097333pt;}
.ycd{bottom:194.044000pt;}
.y93{bottom:194.386667pt;}
.y1b0{bottom:195.517333pt;}
.y116{bottom:196.366667pt;}
.y13b{bottom:197.304000pt;}
.yb1{bottom:198.242667pt;}
.y102{bottom:199.504000pt;}
.y29{bottom:202.569333pt;}
.y52{bottom:204.754667pt;}
.y183{bottom:205.218667pt;}
.y1d4{bottom:208.213333pt;}
.y1f5{bottom:208.312000pt;}
.y156{bottom:208.457333pt;}
.y92{bottom:212.400000pt;}
.y115{bottom:214.380000pt;}
.y13a{bottom:215.317333pt;}
.yb0{bottom:216.254667pt;}
.y101{bottom:217.517333pt;}
.y28{bottom:220.582667pt;}
.y182{bottom:220.744000pt;}
.ycc{bottom:222.153333pt;}
.y51{bottom:222.766667pt;}
.y181{bottom:223.230667pt;}
.y1f4{bottom:225.528000pt;}
.y1d3{bottom:226.225333pt;}
.y155{bottom:226.470667pt;}
.y1af{bottom:226.813333pt;}
.y91{bottom:230.412000pt;}
.y114{bottom:232.392000pt;}
.y139{bottom:233.329333pt;}
.yaf{bottom:234.268000pt;}
.y100{bottom:235.529333pt;}
.y27{bottom:238.594667pt;}
.ycb{bottom:239.249333pt;}
.y50{bottom:240.780000pt;}
.y180{bottom:241.244000pt;}
.y1f3{bottom:242.742667pt;}
.y1d2{bottom:244.237333pt;}
.y154{bottom:244.482667pt;}
.y1ae{bottom:244.825333pt;}
.y113{bottom:250.404000pt;}
.y138{bottom:251.341333pt;}
.yae{bottom:252.280000pt;}
.yff{bottom:253.541333pt;}
.y90{bottom:256.394667pt;}
.y26{bottom:256.606667pt;}
.y4f{bottom:258.792000pt;}
.y17f{bottom:259.256000pt;}
.y1f2{bottom:259.958667pt;}
.y1d1{bottom:262.250667pt;}
.y153{bottom:262.494667pt;}
.y1ad{bottom:262.838667pt;}
.y112{bottom:268.417333pt;}
.y137{bottom:269.354667pt;}
.yad{bottom:270.292000pt;}
.yfe{bottom:271.554667pt;}
.y25{bottom:274.620000pt;}
.y4e{bottom:276.804000pt;}
.y1f1{bottom:277.174667pt;}
.y17e{bottom:277.268000pt;}
.y1d0{bottom:280.262667pt;}
.y152{bottom:280.508000pt;}
.y1ac{bottom:280.850667pt;}
.y111{bottom:286.429333pt;}
.y136{bottom:287.366667pt;}
.yac{bottom:288.305333pt;}
.yfd{bottom:289.566667pt;}
.y24{bottom:292.632000pt;}
.y8f{bottom:293.763907pt;}
.y1f0{bottom:294.389333pt;}
.y4d{bottom:294.817333pt;}
.y17d{bottom:295.281333pt;}
.y1cf{bottom:298.276000pt;}
.y151{bottom:298.520000pt;}
.y8c{bottom:299.828440pt;}
.y110{bottom:304.442667pt;}
.y135{bottom:305.380000pt;}
.y8e{bottom:305.891867pt;}
.yab{bottom:306.317333pt;}
.y83{bottom:307.032840pt;}
.yfc{bottom:307.580000pt;}
.y1ef{bottom:311.605333pt;}
.y8b{bottom:311.956400pt;}
.y1ab{bottom:312.146667pt;}
.y4c{bottom:312.829333pt;}
.y17c{bottom:313.293333pt;}
.y1ce{bottom:316.288000pt;}
.y150{bottom:316.533333pt;}
.y8d{bottom:318.019827pt;}
.y23{bottom:318.614667pt;}
.y85{bottom:320.135773pt;}
.y10f{bottom:322.454667pt;}
.y134{bottom:323.392000pt;}
.yaa{bottom:324.330667pt;}
.yfb{bottom:325.592000pt;}
.y17b{bottom:328.820000pt;}
.y4b{bottom:330.842667pt;}
.y17a{bottom:331.306667pt;}
.y84{bottom:332.263733pt;}
.y1cd{bottom:334.300000pt;}
.y14f{bottom:334.545333pt;}
.y8a{bottom:335.462000pt;}
.y10e{bottom:340.466667pt;}
.y1aa{bottom:340.786667pt;}
.y133{bottom:341.404000pt;}
.y87{bottom:341.525427pt;}
.ya9{bottom:342.342667pt;}
.yfa{bottom:343.604000pt;}
.y1ee{bottom:346.036000pt;}
.y179{bottom:346.832000pt;}
.y89{bottom:347.589960pt;}
.y4a{bottom:348.854667pt;}
.y178{bottom:349.318667pt;}
.y1cc{bottom:352.313333pt;}
.y14e{bottom:352.557333pt;}
.y86{bottom:353.653387pt;}
.ydb{bottom:354.804000pt;}
.y10d{bottom:358.480000pt;}
.y1a9{bottom:358.798667pt;}
.y132{bottom:359.417333pt;}
.y88{bottom:359.717920pt;}
.ya8{bottom:360.354667pt;}
.yf9{bottom:361.617333pt;}
.y1ed{bottom:363.252000pt;}
.y49{bottom:366.866667pt;}
.y177{bottom:367.330667pt;}
.y1cb{bottom:370.325333pt;}
.y14d{bottom:370.570667pt;}
.yda{bottom:372.817333pt;}
.y10c{bottom:376.492000pt;}
.y1a8{bottom:376.812000pt;}
.y82{bottom:377.158987pt;}
.y131{bottom:377.429333pt;}
.ya7{bottom:378.368000pt;}
.yf8{bottom:379.629333pt;}
.y1ec{bottom:380.466667pt;}
.y48{bottom:384.880000pt;}
.y176{bottom:385.344000pt;}
.y22{bottom:386.540000pt;}
.y1ca{bottom:388.338667pt;}
.y14c{bottom:388.582667pt;}
.y81{bottom:389.286947pt;}
.yd9{bottom:390.829333pt;}
.y7f{bottom:391.571107pt;}
.y10b{bottom:394.505333pt;}
.y1a7{bottom:394.824000pt;}
.y130{bottom:395.442667pt;}
.ya6{bottom:396.380000pt;}
.yf7{bottom:397.642667pt;}
.y1eb{bottom:397.682667pt;}
.y47{bottom:402.892000pt;}
.y175{bottom:403.356000pt;}
.y1c9{bottom:406.350667pt;}
.y21c{bottom:406.546667pt;}
.y14b{bottom:406.596000pt;}
.y80{bottom:406.992507pt;}
.yd8{bottom:408.842667pt;}
.y10a{bottom:412.517333pt;}
.y1a6{bottom:412.836000pt;}
.y12f{bottom:413.454667pt;}
.ya5{bottom:414.393333pt;}
.y1ea{bottom:414.898667pt;}
.yf6{bottom:415.654667pt;}
.y21{bottom:420.493333pt;}
.y46{bottom:420.905333pt;}
.y174{bottom:421.369333pt;}
.y21b{bottom:423.762667pt;}
.y1c8{bottom:424.362667pt;}
.y7e{bottom:424.433573pt;}
.y14a{bottom:424.608000pt;}
.y7d{bottom:430.497000pt;}
.y109{bottom:430.529333pt;}
.y1a5{bottom:430.849333pt;}
.y12e{bottom:431.466667pt;}
.y1e9{bottom:432.113333pt;}
.ya4{bottom:432.405333pt;}
.yf5{bottom:433.666667pt;}
.y20{bottom:438.505333pt;}
.y7b{bottom:438.845693pt;}
.y45{bottom:438.917333pt;}
.y173{bottom:439.381333pt;}
.yd7{bottom:439.953333pt;}
.y21a{bottom:440.977333pt;}
.y1c7{bottom:442.376000pt;}
.y1a4{bottom:448.861333pt;}
.y1e8{bottom:449.329333pt;}
.y12d{bottom:449.480000pt;}
.ya3{bottom:450.417333pt;}
.yf4{bottom:451.680000pt;}
.yca{bottom:453.486667pt;}
.y7c{bottom:454.267093pt;}
.y149{bottom:455.720000pt;}
.y1f{bottom:456.518667pt;}
.y44{bottom:456.929333pt;}
.y172{bottom:457.393333pt;}
.y1c6{bottom:460.388000pt;}
.y108{bottom:461.641333pt;}
.y72{bottom:463.033000pt;}
.y68{bottom:463.470133pt;}
.y1e7{bottom:466.544000pt;}
.y219{bottom:467.062667pt;}
.ya2{bottom:468.430667pt;}
.yf3{bottom:469.692000pt;}
.yc9{bottom:471.498667pt;}
.y7a{bottom:471.971547pt;}
.y148{bottom:472.814667pt;}
.y1e{bottom:474.530667pt;}
.y43{bottom:474.942667pt;}
.y71{bottom:475.160960pt;}
.y171{bottom:475.406667pt;}
.y12c{bottom:475.462667pt;}
.y107{bottom:478.737333pt;}
.y1a3{bottom:480.157333pt;}
.y218{bottom:480.573333pt;}
.y1e6{bottom:483.760000pt;}
.y1c5{bottom:486.370667pt;}
.yf2{bottom:487.704000pt;}
.yc8{bottom:489.512000pt;}
.y79{bottom:489.677107pt;}
.y77{bottom:491.145653pt;}
.y1d{bottom:492.542667pt;}
.y42{bottom:492.954667pt;}
.y170{bottom:493.418667pt;}
.ya1{bottom:494.413333pt;}
.y1a2{bottom:499.498667pt;}
.y1e5{bottom:500.976000pt;}
.y76{bottom:503.273613pt;}
.yf1{bottom:505.717333pt;}
.y12b{bottom:506.413333pt;}
.y78{bottom:507.381560pt;}
.yc7{bottom:507.524000pt;}
.y217{bottom:510.022667pt;}
.y1c{bottom:510.556000pt;}
.y41{bottom:510.968000pt;}
.y16f{bottom:511.432000pt;}
.y1c4{bottom:517.321333pt;}
.y1a1{bottom:517.510667pt;}
.y1e4{bottom:518.190667pt;}
.yf0{bottom:523.729333pt;}
.y12a{bottom:524.425333pt;}
.y75{bottom:525.087120pt;}
.ya0{bottom:525.364000pt;}
.yc6{bottom:525.537333pt;}
.y216{bottom:527.237333pt;}
.y1b{bottom:528.568000pt;}
.y40{bottom:528.980000pt;}
.y16e{bottom:529.444000pt;}
.y1c3{bottom:535.334667pt;}
.y1a0{bottom:536.852000pt;}
.yef{bottom:541.742667pt;}
.y73{bottom:542.127573pt;}
.y129{bottom:542.438667pt;}
.y74{bottom:542.792680pt;}
.y9f{bottom:543.376000pt;}
.yc5{bottom:543.549333pt;}
.y215{bottom:544.453333pt;}
.y1a{bottom:546.581333pt;}
.y3f{bottom:546.992000pt;}
.y16d{bottom:547.456000pt;}
.y1c2{bottom:553.346667pt;}
.y19f{bottom:554.864000pt;}
.yee{bottom:559.754667pt;}
.y128{bottom:560.450667pt;}
.y9e{bottom:561.389333pt;}
.yc4{bottom:561.561333pt;}
.y214{bottom:561.669333pt;}
.y19{bottom:564.593333pt;}
.y3e{bottom:565.005333pt;}
.y1c1{bottom:571.358667pt;}
.y19e{bottom:572.877333pt;}
.yed{bottom:577.766667pt;}
.y70{bottom:577.939307pt;}
.y1e3{bottom:578.445333pt;}
.y127{bottom:578.462667pt;}
.y213{bottom:578.884000pt;}
.y9d{bottom:579.401333pt;}
.y18{bottom:582.605333pt;}
.y3d{bottom:583.017333pt;}
.y1c0{bottom:589.372000pt;}
.y16c{bottom:589.460000pt;}
.y6f{bottom:590.067267pt;}
.y19d{bottom:590.889333pt;}
.y6a{bottom:591.630987pt;}
.yc3{bottom:592.857333pt;}
.y6c{bottom:592.925787pt;}
.yec{bottom:595.780000pt;}
.y212{bottom:596.100000pt;}
.y126{bottom:596.476000pt;}
.y9c{bottom:597.413333pt;}
.y1e2{bottom:599.924000pt;}
.y17{bottom:600.618667pt;}
.y3c{bottom:601.030667pt;}
.y69{bottom:603.758947pt;}
.y16b{bottom:604.389333pt;}
.y6b{bottom:605.053747pt;}
.y6e{bottom:607.508333pt;}
.y211{bottom:613.314667pt;}
.y1e1{bottom:613.433333pt;}
.yeb{bottom:613.792000pt;}
.y125{bottom:614.488000pt;}
.y9b{bottom:615.426667pt;}
.y16{bottom:618.630667pt;}
.y16a{bottom:619.318667pt;}
.y147{bottom:619.565333pt;}
.y6d{bottom:619.636293pt;}
.y19c{bottom:622.185333pt;}
.yc2{bottom:624.153333pt;}
.y1e0{bottom:626.942667pt;}
.y210{bottom:630.530667pt;}
.y1bf{bottom:631.374667pt;}
.yea{bottom:631.805333pt;}
.y3b{bottom:632.141333pt;}
.y124{bottom:632.501333pt;}
.y169{bottom:634.248000pt;}
.y15{bottom:636.644000pt;}
.y67{bottom:637.341853pt;}
.y146{bottom:637.577333pt;}
.y19b{bottom:640.198667pt;}
.yc1{bottom:642.166667pt;}
.y9a{bottom:646.537333pt;}
.y20f{bottom:647.746667pt;}
.y1df{bottom:648.422667pt;}
.y168{bottom:649.177333pt;}
.y3a{bottom:649.237333pt;}
.ye9{bottom:649.817333pt;}
.y123{bottom:650.513333pt;}
.y1be{bottom:652.706667pt;}
.y145{bottom:655.589333pt;}
.y19a{bottom:658.210667pt;}
.yd6{bottom:658.476000pt;}
.yc0{bottom:660.178667pt;}
.y1de{bottom:661.932000pt;}
.y66{bottom:662.897333pt;}
.y99{bottom:663.633333pt;}
.y167{bottom:664.106667pt;}
.y20e{bottom:664.961333pt;}
.ye8{bottom:667.829333pt;}
.y12{bottom:668.138634pt;}
.y122{bottom:668.525333pt;}
.y11{bottom:668.820000pt;}
.y144{bottom:673.602667pt;}
.y1bd{bottom:674.038667pt;}
.yd5{bottom:676.488000pt;}
.ybf{bottom:678.192000pt;}
.y166{bottom:679.036000pt;}
.y20d{bottom:682.177333pt;}
.y1dd{bottom:683.412000pt;}
.ye7{bottom:685.842667pt;}
.y121{bottom:686.538667pt;}
.y199{bottom:686.850667pt;}
.y143{bottom:691.614667pt;}
.y165{bottom:693.965333pt;}
.yd4{bottom:694.501333pt;}
.y1bc{bottom:695.369333pt;}
.y65{bottom:695.885333pt;}
.y1dc{bottom:696.921333pt;}
.y20c{bottom:699.392000pt;}
.y10{bottom:703.492000pt;}
.ye6{bottom:703.854667pt;}
.y120{bottom:704.550667pt;}
.y198{bottom:704.862667pt;}
.y164{bottom:708.894667pt;}
.ybe{bottom:709.488000pt;}
.y142{bottom:709.628000pt;}
.y1db{bottom:710.430667pt;}
.yd3{bottom:712.513333pt;}
.y64{bottom:713.897333pt;}
.y20b{bottom:716.608000pt;}
.y1bb{bottom:716.701333pt;}
.yf{bottom:719.632000pt;}
.ye5{bottom:721.868000pt;}
.y11f{bottom:722.564000pt;}
.y197{bottom:722.874667pt;}
.y163{bottom:723.824000pt;}
.y63{bottom:731.909333pt;}
.y20a{bottom:733.824000pt;}
.ye{bottom:735.770667pt;}
.y1ba{bottom:738.032000pt;}
.y162{bottom:738.753333pt;}
.ye4{bottom:739.880000pt;}
.y11e{bottom:740.576000pt;}
.y141{bottom:740.738667pt;}
.ybd{bottom:740.784000pt;}
.y196{bottom:740.888000pt;}
.yd2{bottom:743.625333pt;}
.y62{bottom:749.922667pt;}
.y209{bottom:751.038667pt;}
.y161{bottom:753.682667pt;}
.yd{bottom:756.250667pt;}
.y140{bottom:757.834667pt;}
.ye3{bottom:757.892000pt;}
.y11d{bottom:758.588000pt;}
.ybc{bottom:758.796000pt;}
.y1b9{bottom:759.364000pt;}
.y61{bottom:767.934667pt;}
.yc{bottom:768.050667pt;}
.y208{bottom:768.254667pt;}
.y160{bottom:768.612000pt;}
.ye2{bottom:775.905333pt;}
.y195{bottom:779.224000pt;}
.y15f{bottom:783.541333pt;}
.yb{bottom:784.189333pt;}
.y207{bottom:785.469333pt;}
.y60{bottom:785.948000pt;}
.y1b8{bottom:787.470667pt;}
.y11c{bottom:789.700000pt;}
.ybb{bottom:790.092000pt;}
.y193{bottom:791.842667pt;}
.ye1{bottom:793.917333pt;}
.y194{bottom:795.701333pt;}
.ya{bottom:800.329333pt;}
.y206{bottom:802.685333pt;}
.y5f{bottom:803.960000pt;}
.y1b7{bottom:804.566667pt;}
.y15e{bottom:804.873333pt;}
.y192{bottom:810.278400pt;}
.ye0{bottom:811.930667pt;}
.y205{bottom:819.901333pt;}
.y9{bottom:820.808000pt;}
.yba{bottom:821.388000pt;}
.y5e{bottom:821.972000pt;}
.y191{bottom:823.274333pt;}
.ydf{bottom:829.942667pt;}
.y15d{bottom:832.980000pt;}
.y204{bottom:837.116000pt;}
.yb9{bottom:839.401333pt;}
.y5d{bottom:839.985333pt;}
.y8{bottom:840.578667pt;}
.y190{bottom:841.405400pt;}
.y1b6{bottom:844.714667pt;}
.y39{bottom:847.954667pt;}
.y18f{bottom:853.825600pt;}
.y203{bottom:854.332000pt;}
.yb8{bottom:857.413333pt;}
.y5c{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.y1b5{bottom:862.726667pt;}
.y38{bottom:865.968000pt;}
.y18e{bottom:866.245800pt;}
.y202{bottom:871.546667pt;}
.yb7{bottom:875.425333pt;}
.y5b{bottom:876.010667pt;}
.y18d{bottom:878.935733pt;}
.y1b4{bottom:882.068000pt;}
.y37{bottom:883.980000pt;}
.y201{bottom:888.762667pt;}
.y5a{bottom:894.022667pt;}
.y18c{bottom:897.067933pt;}
.y6{bottom:898.178667pt;}
.y1b3{bottom:901.408000pt;}
.y36{bottom:901.993333pt;}
.y200{bottom:905.978667pt;}
.yb6{bottom:906.721333pt;}
.y59{bottom:912.034667pt;}
.y18b{bottom:915.199000pt;}
.y35{bottom:920.005333pt;}
.y1ff{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y58{bottom:930.048000pt;}
.y34{bottom:938.017333pt;}
.y1fe{bottom:940.409333pt;}
.y18a{bottom:941.054667pt;}
.y57{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y1fd{bottom:957.624000pt;}
.y56{bottom:966.073333pt;}
.y32{bottom:974.042667pt;}
.y1fc{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y189{bottom:989.569333pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h21{height:23.209028pt;}
.h22{height:24.760382pt;}
.h8{height:27.076941pt;}
.h14{height:28.895240pt;}
.h12{height:28.934931pt;}
.h1b{height:29.388273pt;}
.h1a{height:29.397999pt;}
.hc{height:29.433775pt;}
.h1d{height:29.591511pt;}
.hb{height:30.399505pt;}
.h20{height:30.945242pt;}
.hf{height:31.157778pt;}
.h26{height:33.904947pt;}
.h25{height:34.191872pt;}
.h10{height:34.574438pt;}
.h9{height:34.813542pt;}
.h23{height:34.861363pt;}
.h19{height:35.052646pt;}
.h13{height:36.238124pt;}
.h1f{height:36.551933pt;}
.h1c{height:37.608794pt;}
.h18{height:37.671911pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h17{height:38.734589pt;}
.h4{height:38.947124pt;}
.h24{height:43.660390pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h11{height:48.511220pt;}
.h16{height:53.153374pt;}
.h1e{height:54.434178pt;}
.h3{height:61.782479pt;}
.h5{height:69.148877pt;}
.h15{height:102.373480pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.765941pt;}
.x10{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.541333pt;}
.x3{left:109.606667pt;}
.x68{left:111.142200pt;}
.x15{left:112.381333pt;}
.x17{left:118.938547pt;}
.x6b{left:123.987400pt;}
.x69{left:126.324333pt;}
.x4e{left:128.786667pt;}
.x4{left:129.929333pt;}
.x6d{left:132.797333pt;}
.x4f{left:138.461333pt;}
.x18{left:141.115040pt;}
.x71{left:155.716000pt;}
.x55{left:158.881333pt;}
.x8{left:167.481333pt;}
.x19{left:169.389267pt;}
.x11{left:170.464000pt;}
.x54{left:172.574667pt;}
.x22{left:174.246427pt;}
.x6e{left:176.024000pt;}
.x12{left:177.106667pt;}
.x7c{left:178.920000pt;}
.x40{left:180.726667pt;}
.xb{left:181.732000pt;}
.x3a{left:184.748000pt;}
.x1a{left:186.212813pt;}
.x4d{left:187.526667pt;}
.x42{left:190.129333pt;}
.x48{left:191.720000pt;}
.x51{left:193.610667pt;}
.x41{left:195.258667pt;}
.x3b{left:198.032000pt;}
.x2c{left:199.871293pt;}
.x3c{left:201.326667pt;}
.x59{left:202.958667pt;}
.x50{left:212.062667pt;}
.x3d{left:214.609333pt;}
.x53{left:216.270667pt;}
.x16{left:217.196000pt;}
.x5e{left:220.668000pt;}
.x58{left:222.397333pt;}
.x62{left:224.226667pt;}
.x7f{left:225.473333pt;}
.x5f{left:226.380000pt;}
.x70{left:229.141333pt;}
.x7e{left:237.545333pt;}
.x36{left:242.822667pt;}
.x66{left:244.272000pt;}
.x37{left:249.464000pt;}
.x6a{left:253.735933pt;}
.x63{left:265.394667pt;}
.x9{left:266.929333pt;}
.xa{left:273.572000pt;}
.x64{left:275.361333pt;}
.x23{left:288.815200pt;}
.x72{left:291.678667pt;}
.x33{left:293.078080pt;}
.x73{left:295.110667pt;}
.x2d{left:296.560760pt;}
.x1b{left:297.468227pt;}
.x26{left:300.787120pt;}
.x2b{left:303.779547pt;}
.x1c{left:314.263000pt;}
.x27{left:315.795733pt;}
.x29{left:319.531840pt;}
.x7d{left:326.922667pt;}
.x49{left:328.532000pt;}
.x45{left:332.964000pt;}
.x4a{left:335.837333pt;}
.x67{left:344.333467pt;}
.x13{left:347.700000pt;}
.x14{left:354.342667pt;}
.x74{left:367.302667pt;}
.x79{left:369.808000pt;}
.x75{left:373.029333pt;}
.x65{left:376.805333pt;}
.x43{left:382.374667pt;}
.x6f{left:385.620000pt;}
.x44{left:389.017333pt;}
.x38{left:390.904000pt;}
.x46{left:399.141333pt;}
.x39{left:404.188000pt;}
.x76{left:407.677333pt;}
.x6c{left:411.350667pt;}
.x47{left:412.424000pt;}
.x1e{left:413.933827pt;}
.x2f{left:416.513467pt;}
.x2e{left:418.561907pt;}
.x28{left:427.899960pt;}
.x25{left:429.606440pt;}
.x56{left:433.620000pt;}
.x61{left:440.404000pt;}
.x1d{left:444.430240pt;}
.x30{left:458.709560pt;}
.x77{left:483.897333pt;}
.x3e{left:486.288000pt;}
.x3f{left:499.572000pt;}
.x7a{left:506.421333pt;}
.x78{left:507.568000pt;}
.x7b{left:512.948000pt;}
.x60{left:533.774667pt;}
.x4b{left:538.074667pt;}
.x4c{left:543.382667pt;}
.xc{left:549.146667pt;}
.x24{left:550.328280pt;}
.x31{left:553.409240pt;}
.xd{left:555.124000pt;}
.x34{left:557.993053pt;}
.x1f{left:563.103640pt;}
.x32{left:568.407893pt;}
.x21{left:570.194053pt;}
.x35{left:571.161280pt;}
.x52{left:581.021333pt;}
.x57{left:583.449333pt;}
.x20{left:585.707307pt;}
.x2a{left:589.473293pt;}
.x5a{left:594.198667pt;}
.x5b{left:599.910667pt;}
.xe{left:618.516000pt;}
.x6{left:623.413317pt;}
.xf{left:625.157333pt;}
.x5c{left:673.044000pt;}
.x5d{left:686.326667pt;}
}




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